From 245d1b878ed51582fda01f992fd58a78abffafb3 Mon Sep 17 00:00:00 2001 From: Timothy Carambat <rambat1010@gmail.com> Date: Mon, 1 Jul 2024 16:32:23 -0700 Subject: [PATCH] Patch Embed styles with prefixing (#1799) * Patch Embed styles with prefixing * forgot files --- .vscode/settings.json | 2 + embed/package.json | 15 +- embed/postcss.config.js | 10 + embed/src/App.jsx | 26 +- .../HistoricalMessage/Actions/index.jsx | 12 +- .../ChatHistory/HistoricalMessage/index.jsx | 46 +- .../ChatHistory/PromptReply/index.jsx | 62 ++- .../ChatContainer/ChatHistory/index.jsx | 27 +- .../ChatContainer/PromptInput/index.jsx | 23 +- .../ChatWindow/ChatContainer/index.jsx | 4 +- .../components/ChatWindow/Header/index.jsx | 29 +- embed/src/components/ChatWindow/index.jsx | 14 +- embed/src/components/Head.jsx | 51 +-- embed/src/components/OpenButton/index.jsx | 3 +- embed/src/components/ResetChat/index.jsx | 5 +- embed/src/components/SessionId/index.jsx | 4 +- embed/src/components/Sponsor/index.jsx | 5 +- embed/src/index.css | 3 + embed/src/main.jsx | 13 +- embed/src/static/tailwind@3.4.1.js | 209 --------- embed/src/utils/constants.js | 14 + embed/tailwind.config.js | 103 +++++ embed/vite.config.js | 4 + embed/yarn.lock | 429 +++++++++++++++++- .../embed/anythingllm-chat-widget.min.css | 1 + .../embed/anythingllm-chat-widget.min.js | 11 +- 26 files changed, 733 insertions(+), 392 deletions(-) create mode 100644 embed/postcss.config.js create mode 100644 embed/src/index.css delete mode 100644 embed/src/static/tailwind@3.4.1.js create mode 100644 embed/tailwind.config.js create mode 100644 frontend/public/embed/anythingllm-chat-widget.min.css diff --git a/.vscode/settings.json b/.vscode/settings.json index b9bde6850..aafdb17d8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -3,9 +3,11 @@ "adoc", "aibitat", "AIbitat", + "allm", "anythingllm", "Astra", "Chartable", + "cleancss", "comkey", "cooldown", "cooldowns", diff --git a/embed/package.json b/embed/package.json index 712af8e6c..111b68f8b 100644 --- a/embed/package.json +++ b/embed/package.json @@ -6,9 +6,12 @@ "scripts": { "dev": "nodemon -e js,jsx,css --watch src --exec \"yarn run dev:preview\"", "dev:preview": "yarn run dev:build && yarn serve . -p 3080 --no-clipboard", - "dev:build": "vite build && cat src/static/tailwind@3.4.1.js >> dist/anythingllm-chat-widget.js", - "build": "vite build && cat src/static/tailwind@3.4.1.js >> dist/anythingllm-chat-widget.js && npx terser --compress -o dist/anythingllm-chat-widget.min.js -- dist/anythingllm-chat-widget.js", - "build:publish": "yarn build && mkdir -p ../frontend/public/embed && cp -r dist/anythingllm-chat-widget.min.js ../frontend/public/embed/anythingllm-chat-widget.min.js", + "dev:build": "vite build && yarn styles", + "styles": "npx cleancss -o dist/anythingllm-chat-widget.min.css dist/style.css", + "build": "vite build && yarn styles && npx terser --compress -o dist/anythingllm-chat-widget.min.js -- dist/anythingllm-chat-widget.js", + "build:publish": "yarn build:publish:js && yarn build:publish:css", + "build:publish:js": "yarn build && mkdir -p ../frontend/public/embed && cp -r dist/anythingllm-chat-widget.min.js ../frontend/public/embed/anythingllm-chat-widget.min.js", + "build:publish:css": "cp -r dist/anythingllm-chat-widget.min.css ../frontend/public/embed/anythingllm-chat-widget.min.css", "lint": "yarn prettier --ignore-path ../.prettierignore --write ./src" }, "dependencies": { @@ -29,16 +32,20 @@ "@types/react-dom": "^18.2.15", "@vitejs/plugin-react": "^4.2.0", "autoprefixer": "^10.4.14", + "clean-css": "^5.3.3", + "clean-css-cli": "^5.6.3", "eslint": "^8.53.0", "eslint-plugin-react": "^7.33.2", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.4", "globals": "^13.21.0", "nodemon": "^2.0.22", + "postcss": "^8.4.23", "prettier": "^3.0.3", "serve": "^14.2.1", + "tailwindcss": "3.4.1", "terser": "^5.27.0", "vite": "^5.0.0", "vite-plugin-singlefile": "^0.13.5" } -} +} \ No newline at end of file diff --git a/embed/postcss.config.js b/embed/postcss.config.js new file mode 100644 index 000000000..568a99e36 --- /dev/null +++ b/embed/postcss.config.js @@ -0,0 +1,10 @@ +import tailwind from 'tailwindcss' +import autoprefixer from 'autoprefixer' +import tailwindConfig from './tailwind.config.js' + +export default { + plugins: [ + tailwind(tailwindConfig), + autoprefixer, + ], +} \ No newline at end of file diff --git a/embed/src/App.jsx b/embed/src/App.jsx index 44653031d..50e3f1f18 100644 --- a/embed/src/App.jsx +++ b/embed/src/App.jsx @@ -20,29 +20,29 @@ export default function App() { if (!embedSettings.loaded) return null; const positionClasses = { - "bottom-left": "bottom-0 left-0 ml-4", - "bottom-right": "bottom-0 right-0 mr-4", - "top-left": "top-0 left-0 ml-4 mt-4", - "top-right": "top-0 right-0 mr-4 mt-4", + "bottom-left": "allm-bottom-0 allm-left-0 allm-ml-4", + "bottom-right": "allm-bottom-0 allm-right-0 allm-mr-4", + "top-left": "allm-top-0 allm-left-0 allm-ml-4 allm-mt-4", + "top-right": "allm-top-0 allm-right-0 allm-mr-4 allm-mt-4", }; const position = embedSettings.position || "bottom-right"; - const windowWidth = embedSettings.windowWidth - ? `max-w-[${embedSettings.windowWidth}]` - : "max-w-[400px]"; - const windowHeight = embedSettings.windowHeight - ? `max-h-[${embedSettings.windowHeight}]` - : "max-h-[700px]"; + const windowWidth = embedSettings.windowWidth ?? "400px"; + const windowHeight = embedSettings.windowHeight ?? "700px"; return ( <> <Head /> <div id="anything-llm-embed-chat-container" - className={`fixed inset-0 z-50 ${isChatOpen ? "block" : "hidden"}`} + className={`allm-fixed allm-inset-0 allm-z-50 ${isChatOpen ? "allm-block" : "allm-hidden"}`} > <div - className={`${windowHeight} ${windowWidth} h-full w-full bg-white fixed bottom-0 right-0 mb-4 md:mr-4 rounded-2xl border border-gray-300 shadow-[0_4px_14px_rgba(0,0,0,0.25)] ${positionClasses[position]}`} + style={{ + maxWidth: windowWidth, + maxHeight: windowHeight, + }} + className={`allm-h-full allm-w-full allm-bg-white allm-fixed allm-bottom-0 allm-right-0 allm-mb-4 allm-md:mr-4 allm-rounded-2xl allm-border allm-border-gray-300 allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)] ${positionClasses[position]}`} id="anything-llm-chat" > {isChatOpen && ( @@ -57,7 +57,7 @@ export default function App() { {!isChatOpen && ( <div id="anything-llm-embed-chat-button-container" - className={`fixed bottom-0 ${positionClasses[position]} mb-4 z-50`} + className={`allm-fixed allm-bottom-0 ${positionClasses[position]} allm-mb-4 allm-z-50`} > <OpenButton settings={embedSettings} diff --git a/embed/src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/Actions/index.jsx b/embed/src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/Actions/index.jsx index 12fa7dc73..13d82aae8 100644 --- a/embed/src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/Actions/index.jsx +++ b/embed/src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/Actions/index.jsx @@ -5,7 +5,7 @@ import { Tooltip } from "react-tooltip"; const Actions = ({ message }) => { return ( - <div className="flex justify-start items-center gap-x-4"> + <div className="allm-flex allm-justify-start allm-items-center allm-gap-x-4"> <CopyMessage message={message} /> {/* Other actions to go here later. */} </div> @@ -16,17 +16,17 @@ function CopyMessage({ message }) { const { copied, copyText } = useCopyText(); return ( <> - <div className="mt-3 relative"> + <div className="allm-mt-3 allm-relative"> <button data-tooltip-id="copy-assistant-text" data-tooltip-content="Copy" - className="text-zinc-300" + className="allm-border-none allm-text-zinc-300" onClick={() => copyText(message)} > {copied ? ( - <Check size={18} className="mb-1" /> + <Check size={18} className="allm-mb-1" /> ) : ( - <ClipboardText size={18} className="mb-1" /> + <ClipboardText size={18} className="allm-mb-1" /> )} </button> </div> @@ -34,7 +34,7 @@ function CopyMessage({ message }) { id="copy-assistant-text" place="bottom" delayShow={300} - className="tooltip !text-xs" + className="allm-tooltip !allm-text-xs" /> </> ); diff --git a/embed/src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/index.jsx b/embed/src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/index.jsx index 2eab8cca2..d4bc867e9 100644 --- a/embed/src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/index.jsx +++ b/embed/src/components/ChatWindow/ChatContainer/ChatHistory/HistoricalMessage/index.jsx @@ -14,14 +14,14 @@ const HistoricalMessage = forwardRef( ref ) => { const textSize = !!embedderSettings.settings.textSize - ? `text-[${embedderSettings.settings.textSize}px]` - : "text-sm"; + ? `allm-text-[${embedderSettings.settings.textSize}px]` + : "allm-text-sm"; return ( <div className="py-[5px]"> {role === "assistant" && ( <div - className={`text-[10px] font-medium text-gray-400 ml-[54px] mr-6 mb-2 text-left`} + className={`allm-text-[10px] allm-text-gray-400 allm-ml-[54px] allm-mr-6 allm-mb-2 allm-text-left allm-font-sans`} > {embedderSettings.settings.assistantName || "Anything LLM Chat Assistant"} @@ -30,42 +30,48 @@ const HistoricalMessage = forwardRef( <div key={uuid} ref={ref} - className={`flex items-start w-full h-fit ${ - role === "user" ? "justify-end" : "justify-start" + className={`allm-flex allm-items-start allm-w-full allm-h-fit ${ + role === "user" ? "allm-justify-end" : "allm-justify-start" }`} > {role === "assistant" && ( <img src={embedderSettings.settings.assistantIcon || AnythingLLMIcon} alt="Anything LLM Icon" - className="w-9 h-9 flex-shrink-0 ml-2 mt-2" + className="allm-w-9 allm-h-9 allm-flex-shrink-0 allm-ml-2 allm-mt-2" id="anything-llm-icon" /> )} <div - style={{ wordBreak: "break-word" }} - className={`py-[11px] px-4 flex flex-col ${ + style={{ + wordBreak: "break-word", + backgroundColor: + role === "user" + ? embedderSettings.USER_STYLES.msgBg + : embedderSettings.ASSISTANT_STYLES.msgBg, + }} + className={`allm-py-[11px] allm-px-4 allm-flex allm-flex-col allm-font-sans ${ error - ? "bg-red-200 rounded-lg mr-[37px] ml-[9px]" + ? "allm-bg-red-200 allm-rounded-lg allm-mr-[37px] allm-ml-[9px]" : role === "user" - ? `${embedderSettings.USER_STYLES} anything-llm-user-message` - : `${embedderSettings.ASSISTANT_STYLES} anything-llm-assistant-message` - } shadow-[0_4px_14px_rgba(0,0,0,0.25)]`} + ? `${embedderSettings.USER_STYLES.base} allm-anything-llm-user-message` + : `${embedderSettings.ASSISTANT_STYLES.base} allm-anything-llm-assistant-message` + } allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)]`} > - <div className="flex"> + <div className="allm-flex"> {error ? ( - <div className="p-2 rounded-lg bg-red-50 text-red-500"> - <span className={`inline-block `}> - <Warning className="h-4 w-4 mb-1 inline-block" /> Could not - respond to message. + <div className="allm-p-2 allm-rounded-lg allm-bg-red-50 allm-text-red-500"> + <span className={`allm-inline-block `}> + <Warning className="allm-h-4 allm-w-4 allm-mb-1 allm-inline-block" />{" "} + Could not respond to message. </span> - <p className="text-xs font-mono mt-2 border-l-2 border-red-500 pl-2 bg-red-300 p-2 rounded-sm"> + <p className="allm-text-xs allm-font-mono allm-mt-2 allm-border-l-2 allm-border-red-500 allm-pl-2 allm-bg-red-300 allm-p-2 allm-rounded-sm"> {error} </p> </div> ) : ( <span - className={`whitespace-pre-line font-medium flex flex-col gap-y-1 ${textSize} leading-[20px]`} + className={`allm-whitespace-pre-line allm-flex allm-flex-col allm-gap-y-1 ${textSize} allm-leading-[20px]`} dangerouslySetInnerHTML={{ __html: DOMPurify.sanitize(renderMarkdown(message)), }} @@ -77,7 +83,7 @@ const HistoricalMessage = forwardRef( {sentAt && ( <div - className={`text-[10px] font-medium text-gray-400 ml-[54px] mr-6 mt-2 ${role === "user" ? "text-right" : "text-left"}`} + className={`allm-font-sans allm-text-[10px] allm-text-gray-400 allm-ml-[54px] allm-mr-6 allm-mt-2 ${role === "user" ? "allm-text-right" : "allm-text-left"}`} > {formatDate(sentAt)} </div> diff --git a/embed/src/components/ChatWindow/ChatContainer/ChatHistory/PromptReply/index.jsx b/embed/src/components/ChatWindow/ChatContainer/ChatHistory/PromptReply/index.jsx index 877012226..adc442851 100644 --- a/embed/src/components/ChatWindow/ChatContainer/ChatHistory/PromptReply/index.jsx +++ b/embed/src/components/ChatWindow/ChatContainer/ChatHistory/PromptReply/index.jsx @@ -11,18 +11,23 @@ const PromptReply = forwardRef( if (pending) { return ( - <div className={`flex items-start w-full h-fit justify-start`}> + <div + className={`allm-flex allm-items-start allm-w-full allm-h-fit allm-justify-start`} + > <img src={embedderSettings.settings.assistantIcon || AnythingLLMIcon} alt="Anything LLM Icon" - className="w-9 h-9 flex-shrink-0 ml-2" + className="allm-w-9 allm-h-9 allm-flex-shrink-0 allm-ml-2" /> <div - style={{ wordBreak: "break-word" }} - className={`py-[11px] px-4 flex flex-col ${embedderSettings.ASSISTANT_STYLES} shadow-[0_4px_14px_rgba(0,0,0,0.25)]`} + style={{ + wordBreak: "break-word", + backgroundColor: embedderSettings.ASSISTANT_STYLES.msgBg, + }} + className={`allm-py-[11px] allm-px-4 allm-flex allm-flex-col ${embedderSettings.ASSISTANT_STYLES.base} allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)]`} > - <div className="flex gap-x-5"> - <div className="mx-4 my-1 dot-falling"></div> + <div className="allm-flex allm-gap-x-5"> + <div className="allm-mx-4 allm-my-1 allm-dot-falling"></div> </div> </div> </div> @@ -31,23 +36,27 @@ const PromptReply = forwardRef( if (error) { return ( - <div className={`flex items-end w-full h-fit justify-start`}> + <div + className={`allm-flex allm-items-end allm-w-full allm-h-fit allm-justify-start`} + > <img src={embedderSettings.settings.assistantIcon || AnythingLLMIcon} alt="Anything LLM Icon" - className="w-9 h-9 flex-shrink-0 ml-2" + className="allm-w-9 allm-h-9 allm-flex-shrink-0 allm-ml-2" /> <div style={{ wordBreak: "break-word" }} - className={`py-[11px] px-4 rounded-lg flex flex-col bg-red-200 shadow-[0_4px_14px_rgba(0,0,0,0.25)] mr-[37px] ml-[9px]`} + className={`allm-py-[11px] allm-px-4 allm-rounded-lg allm-flex allm-flex-col allm-bg-red-200 allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)] allm-mr-[37px] allm-ml-[9px]`} > - <div className="flex gap-x-5"> + <div className="allm-flex allm-gap-x-5"> <span - className={`inline-block p-2 rounded-lg bg-red-50 text-red-500`} + className={`allm-inline-block allm-p-2 allm-rounded-lg allm-bg-red-50 allm-text-red-500`} > - <Warning className="h-4 w-4 mb-1 inline-block" /> Could not - respond to message. - <span className="text-xs">Reason: {error || "unknown"}</span> + <Warning className="allm-h-4 allm-w-4 allm-mb-1 allm-inline-block" />{" "} + Could not respond to message. + <span className="allm-text-xs"> + Reason: {error || "unknown"} + </span> </span> </div> </div> @@ -56,9 +65,9 @@ const PromptReply = forwardRef( } return ( - <div className="py-[5px]"> + <div className="allm-py-[5px]"> <div - className={`text-[10px] font-medium text-gray-400 ml-[54px] mr-6 mb-2 text-left`} + className={`allm-text-[10px] allm-text-gray-400 allm-ml-[54px] allm-mr-6 allm-mb-2 allm-text-left allm-font-sans`} > {embedderSettings.settings.assistantName || "Anything LLM Chat Assistant"} @@ -66,29 +75,32 @@ const PromptReply = forwardRef( <div key={uuid} ref={ref} - className={`flex items-start w-full h-fit justify-start`} + className={`allm-flex allm-items-start allm-w-full allm-h-fit allm-justify-start`} > <img src={embedderSettings.settings.assistantIcon || AnythingLLMIcon} alt="Anything LLM Icon" - className="w-9 h-9 flex-shrink-0 ml-2" + className="allm-w-9 allm-h-9 allm-flex-shrink-0 allm-ml-2" /> <div - style={{ wordBreak: "break-word" }} - className={`py-[11px] px-4 flex flex-col ${ - error ? "bg-red-200" : embedderSettings.ASSISTANT_STYLES - } shadow-[0_4px_14px_rgba(0,0,0,0.25)]`} + style={{ + wordBreak: "break-word", + backgroundColor: embedderSettings.ASSISTANT_STYLES.msgBg, + }} + className={`allm-py-[11px] allm-px-4 allm-flex allm-flex-col ${ + error ? "allm-bg-red-200" : embedderSettings.ASSISTANT_STYLES.base + } allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)]`} > - <div className="flex gap-x-5"> + <div className="allm-flex allm-gap-x-5"> <span - className={`reply whitespace-pre-line font-normal text-sm md:text-sm flex flex-col gap-y-1`} + className={`allm-font-sans allm-reply allm-whitespace-pre-line allm-font-normal allm-text-sm allm-md:text-sm allm-flex allm-flex-col allm-gap-y-1`} dangerouslySetInnerHTML={{ __html: renderMarkdown(reply) }} /> </div> </div> </div> <div - className={`text-[10px] font-medium text-gray-400 ml-[54px] mr-6 mt-2 text-left`} + className={`allm-text-[10px] allm-text-gray-400 allm-ml-[54px] allm-mr-6 allm-mt-2 allm-text-left allm-font-sans`} > {formatDate(Date.now() / 1000)} </div> diff --git a/embed/src/components/ChatWindow/ChatContainer/ChatHistory/index.jsx b/embed/src/components/ChatWindow/ChatContainer/ChatHistory/index.jsx index 0719043ff..70bf2ca20 100644 --- a/embed/src/components/ChatWindow/ChatContainer/ChatHistory/index.jsx +++ b/embed/src/components/ChatWindow/ChatContainer/ChatHistory/index.jsx @@ -46,9 +46,9 @@ export default function ChatHistory({ settings = {}, history = [] }) { if (history.length === 0) { return ( - <div className="pb-[100px] pt-[5px] rounded-lg px-2 h-full mt-2 gap-y-2 overflow-y-scroll flex flex-col justify-start no-scroll"> - <div className="flex h-full flex-col items-center justify-center"> - <p className="text-slate-400 text-sm font-base py-4 text-center"> + <div className="allm-pb-[100px] allm-pt-[5px] allm-rounded-lg allm-px-2 allm-h-full allm-mt-2 allm-gap-y-2 allm-overflow-y-scroll allm-flex allm-flex-col allm-justify-start allm-no-scroll"> + <div className="allm-flex allm-h-full allm-flex-col allm-items-center allm-justify-center"> + <p className="allm-text-slate-400 allm-text-sm allm-font-sans allm-py-4 allm-text-center"> {settings?.greeting ?? "Send a chat to get started."} </p> </div> @@ -58,7 +58,7 @@ export default function ChatHistory({ settings = {}, history = [] }) { return ( <div - className="pb-[30px] pt-[5px] rounded-lg px-2 h-full gap-y-2 overflow-y-scroll flex flex-col justify-start no-scroll md:max-h-[500px]" + className="allm-pb-[30px] allm-pt-[5px] allm-rounded-lg allm-px-2 allm-h-full allm-gap-y-2 allm-overflow-y-scroll allm-flex allm-flex-col allm-justify-start allm-no-scroll allm-md:max-h-[500px]" id="chat-history" ref={chatHistoryRef} > @@ -97,12 +97,12 @@ export default function ChatHistory({ settings = {}, history = [] }) { ); })} {!isAtBottom && ( - <div className="fixed bottom-[10rem] right-[50px] z-50 cursor-pointer animate-pulse"> - <div className="flex flex-col items-center"> - <div className="p-1 rounded-full border border-white/10 bg-black/20 hover:bg-black/50"> + <div className="allm-fixed allm-bottom-[10rem] allm-right-[50px] allm-z-50 allm-cursor-pointer allm-animate-pulse"> + <div className="allm-flex allm-flex-col allm-items-center"> + <div className="allm-p-1 allm-rounded-full allm-border allm-border-white/10 allm-bg-black/20 hover:allm-bg-black/50"> <ArrowDown weight="bold" - className="text-white/50 w-5 h-5" + className="allm-text-white/50 allm-w-5 allm-h-5" onClick={scrollToBottom} id="scroll-to-bottom-button" aria-label="Scroll to bottom" @@ -117,10 +117,13 @@ export default function ChatHistory({ settings = {}, history = [] }) { export function ChatHistoryLoading() { return ( - <div className="h-full w-full relative"> - <div className="h-full max-h-[82vh] pb-[100px] pt-[5px] bg-gray-100 rounded-lg px-2 h-full mt-2 gap-y-2 overflow-y-scroll flex flex-col justify-start no-scroll"> - <div className="flex h-full flex-col items-center justify-center"> - <CircleNotch size={14} className="text-slate-400 animate-spin" /> + <div className="allm-h-full allm-w-full allm-relative"> + <div className="allm-h-full allm-max-h-[82vh] allm-pb-[100px] allm-pt-[5px] allm-bg-gray-100 allm-rounded-lg allm-px-2 allm-h-full allm-mt-2 allm-gap-y-2 allm-overflow-y-scroll allm-flex allm-flex-col allm-justify-start allm-no-scroll"> + <div className="allm-flex allm-h-full allm-flex-col allm-items-center allm-justify-center"> + <CircleNotch + size={14} + className="allm-text-slate-400 allm-animate-spin" + /> </div> </div> </div> diff --git a/embed/src/components/ChatWindow/ChatContainer/PromptInput/index.jsx b/embed/src/components/ChatWindow/ChatContainer/PromptInput/index.jsx index 8a8b58cf2..14961ca65 100644 --- a/embed/src/components/ChatWindow/ChatContainer/PromptInput/index.jsx +++ b/embed/src/components/ChatWindow/ChatContainer/PromptInput/index.jsx @@ -46,14 +46,17 @@ export default function PromptInput({ }; return ( - <div className="w-full sticky bottom-0 z-10 flex justify-center items-center px-5 bg-white"> + <div className="allm-w-full allm-sticky allm-bottom-0 allm-z-10 allm-flex allm-justify-center allm-items-center allm-bg-white"> <form onSubmit={handleSubmit} - className="flex flex-col gap-y-1 rounded-t-lg w-full items-center justify-center" + className="allm-flex allm-flex-col allm-gap-y-1 allm-rounded-t-lg allm-w-full allm-items-center allm-justify-center" > - <div className="flex items-center w-full"> - <div className="bg-white border-[1.5px] border-[#22262833]/20 rounded-2xl flex flex-col px-4 overflow-hidden w-full"> - <div className="flex items-center w-full"> + <div className="allm-flex allm-items-center allm-w-full"> + <div className="allm-bg-white allm-flex allm-flex-col allm-px-4 allm-overflow-hidden allm-w-full"> + <div + style={{ border: "1.5px solid #22262833" }} + className="allm-flex allm-items-center allm-w-full allm-rounded-2xl" + > <textarea ref={textareaRef} onKeyUp={adjustTextArea} @@ -67,7 +70,7 @@ export default function PromptInput({ adjustTextArea(e); }} value={message} - className="cursor-text max-h-[100px] text-[14px] mx-2 py-2 w-full text-black bg-transparent placeholder:text-slate-800/60 resize-none active:outline-none focus:outline-none flex-grow" + className="allm-font-sans allm-border-none allm-cursor-text allm-max-h-[100px] allm-text-[14px] allm-mx-2 allm-py-2 allm-w-full allm-text-black allm-bg-transparent placeholder:allm-text-slate-800/60 allm-resize-none active:allm-outline-none focus:allm-outline-none allm-flex-grow" placeholder={"Send a message"} id="message-input" /> @@ -75,20 +78,20 @@ export default function PromptInput({ ref={formRef} type="submit" disabled={buttonDisabled} - className="inline-flex justify-center rounded-2xl cursor-pointer text-black group ml-4" + className="allm-bg-transparent allm-border-none allm-inline-flex allm-justify-center allm-rounded-2xl allm-cursor-pointer allm-text-black group" id="send-message-button" aria-label="Send message" > {buttonDisabled ? ( - <CircleNotch className="w-4 h-4 animate-spin" /> + <CircleNotch className="allm-w-4 allm-h-4 allm-animate-spin" /> ) : ( <PaperPlaneRight size={24} - className="my-3 text-[#22262899]/60 group-hover:text-[#22262899]/90" + className="allm-my-3 allm-text-[#22262899]/60 group-hover:allm-text-[#22262899]/90" weight="fill" /> )} - <span className="sr-only">Send message</span> + <span className="allm-sr-only">Send message</span> </button> </div> </div> diff --git a/embed/src/components/ChatWindow/ChatContainer/index.jsx b/embed/src/components/ChatWindow/ChatContainer/index.jsx index 1af5cf8b4..3a5864db6 100644 --- a/embed/src/components/ChatWindow/ChatContainer/index.jsx +++ b/embed/src/components/ChatWindow/ChatContainer/index.jsx @@ -77,8 +77,8 @@ export default function ChatContainer({ }, [loadingResponse, chatHistory]); return ( - <div className="h-full w-full flex flex-col"> - <div className="flex-grow overflow-y-auto"> + <div className="allm-h-full allm-w-full allm-flex allm-flex-col"> + <div className="allm-flex-grow allm-overflow-y-auto"> <ChatHistory settings={settings} history={chatHistory} /> </div> <PromptInput diff --git a/embed/src/components/ChatWindow/Header/index.jsx b/embed/src/components/ChatWindow/Header/index.jsx index 84c91be63..2cc00fe20 100644 --- a/embed/src/components/ChatWindow/Header/index.jsx +++ b/embed/src/components/ChatWindow/Header/index.jsx @@ -45,23 +45,24 @@ export default function ChatWindowHeader({ return ( <div - className="flex items-center relative rounded-t-2xl bg-black/10" + style={{ borderBottom: "1px solid #E9E9E9" }} + className="allm-flex allm-items-center allm-relative allm-rounded-t-2xl" id="anything-llm-header" > - <div className="flex justify-center items-center w-full h-[76px]"> + <div className="allm-flex allm-justify-center allm-items-center allm-w-full allm-h-[76px]"> <img style={{ maxWidth: 48, maxHeight: 48 }} src={iconUrl ?? AnythingLLMIcon} alt={iconUrl ? "Brand" : "AnythingLLM Logo"} /> </div> - <div className="absolute right-0 flex gap-x-1 items-center px-[22px]"> + <div className="allm-absolute allm-right-0 allm-flex allm-gap-x-1 allm-items-center allm-px-[22px]"> {settings.loaded && ( <button ref={buttonRef} type="button" onClick={() => setShowOptions(!showingOptions)} - className="hover:bg-gray-100 rounded-sm text-slate-800" + className="allm-bg-transparent hover:allm-cursor-pointer allm-border-none hover:allm-bg-gray-100 allm-rounded-sm allm-text-slate-800/60" aria-label="Options" > <DotsThreeOutlineVertical size={20} weight="fill" /> @@ -70,7 +71,7 @@ export default function ChatWindowHeader({ <button type="button" onClick={closeChat} - className="hover:bg-gray-100 rounded-sm text-slate-800" + className="allm-bg-transparent hover:allm-cursor-pointer allm-border-none hover:allm-bg-gray-100 allm-rounded-sm allm-text-slate-800/60" aria-label="Close" > <X size={20} weight="bold" /> @@ -92,14 +93,14 @@ function OptionsMenu({ settings, showing, resetChat, sessionId, menuRef }) { return ( <div ref={menuRef} - className="absolute z-10 bg-white flex flex-col gap-y-1 rounded-xl shadow-lg border border-gray-300 top-[64px] right-[46px]" + className="allm-bg-white allm-absolute allm-z-10 allm-flex allm-flex-col allm-gap-y-1 allm-rounded-xl allm-shadow-lg allm-top-[64px] allm-right-[46px]" > <button onClick={resetChat} - className="flex items-center gap-x-2 hover:bg-gray-100 text-sm text-gray-700 py-2.5 px-4 rounded-xl" + className="hover:allm-cursor-pointer allm-bg-white allm-gap-x-[12px] hover:allm-bg-gray-100 allm-rounded-lg allm-border-none allm-flex allm-items-center allm-text-base allm-text-[#7A7D7E] allm-font-bold allm-px-4" > <ArrowCounterClockwise size={24} /> - <p className="text-sm text-[#7A7D7E] font-bold">Reset Chat</p> + <p className="allm-text-[14px]">Reset Chat</p> </button> <ContactSupport email={settings.supportEmail} /> <SessionID sessionId={sessionId} /> @@ -120,9 +121,9 @@ function SessionID({ sessionId }) { if (sessionIdCopied) { return ( - <div className="flex items-center gap-x-2 hover:bg-gray-100 text-sm text-gray-700 py-2.5 px-4 rounded-xl"> + <div className="hover:allm-cursor-pointer allm-bg-white allm-gap-x-[12px] hover:allm-bg-gray-100 allm-rounded-lg allm-border-none allm-flex allm-items-center allm-text-base allm-text-[#7A7D7E] allm-font-bold allm-px-4"> <Check size={24} /> - <p className="text-sm text-[#7A7D7E] font-bold">Copied!</p> + <p className="allm-text-[14px] allm-font-sans">Copied!</p> </div> ); } @@ -130,10 +131,10 @@ function SessionID({ sessionId }) { return ( <button onClick={copySessionId} - className="flex items-center gap-x-2 hover:bg-gray-100 text-sm text-gray-700 py-2.5 px-4 rounded-xl" + className="hover:allm-cursor-pointer allm-bg-white allm-gap-x-[12px] hover:allm-bg-gray-100 allm-rounded-lg allm-border-none allm-flex allm-items-center allm-text-base allm-text-[#7A7D7E] allm-font-bold allm-px-4" > <Copy size={24} /> - <p className="text-sm text-[#7A7D7E] font-bold">Session ID</p> + <p className="allm-text-[14px]">Session ID</p> </button> ); } @@ -145,10 +146,10 @@ function ContactSupport({ email = null }) { return ( <a href={`mailto:${email}?Subject=${encodeURIComponent(subject)}`} - className="flex items-center gap-x-2 hover:bg-gray-100 text-sm text-gray-700 py-2.5 px-4 rounded-xl" + className="allm-no-underline hover:allm-underline hover:allm-cursor-pointer allm-bg-white allm-gap-x-[12px] hover:allm-bg-gray-100 allm-rounded-lg allm-border-none allm-flex allm-items-center allm-text-base allm-text-[#7A7D7E] allm-font-bold allm-px-4" > <Envelope size={24} /> - <p className="text-sm text-[#7A7D7E] font-bold">Email Support</p> + <p className="allm-text-[14px] allm-font-sans">Email Support</p> </a> ); } diff --git a/embed/src/components/ChatWindow/index.jsx b/embed/src/components/ChatWindow/index.jsx index 8bdaddd1e..511ad46c5 100644 --- a/embed/src/components/ChatWindow/index.jsx +++ b/embed/src/components/ChatWindow/index.jsx @@ -14,7 +14,7 @@ export default function ChatWindow({ closeChat, settings, sessionId }) { if (loading) { return ( - <div className="flex flex-col h-full"> + <div className="allm-flex allm-flex-col allm-h-full"> <ChatWindowHeader sessionId={sessionId} settings={settings} @@ -23,7 +23,7 @@ export default function ChatWindow({ closeChat, settings, sessionId }) { setChatHistory={setChatHistory} /> <ChatHistoryLoading /> - <div className="pt-4 pb-2 h-fit gap-y-1"> + <div className="allm-pt-4 allm-pb-2 allm-h-fit allm-gap-y-1"> <SessionId /> <Sponsor settings={settings} /> </div> @@ -34,7 +34,7 @@ export default function ChatWindow({ closeChat, settings, sessionId }) { setEventDelegatorForCodeSnippets(); return ( - <div className="flex flex-col h-full"> + <div className="allm-flex allm-flex-col allm-h-full"> <ChatWindowHeader sessionId={sessionId} settings={settings} @@ -42,14 +42,14 @@ export default function ChatWindow({ closeChat, settings, sessionId }) { closeChat={closeChat} setChatHistory={setChatHistory} /> - <div className="flex-grow overflow-y-auto"> + <div className="allm-flex-grow allm-overflow-y-auto"> <ChatContainer sessionId={sessionId} settings={settings} knownHistory={chatHistory} /> </div> - <div className="mt-4 pb-4 h-fit gap-y-2 z-10"> + <div className="allm-mt-4 allm-pb-4 allm-h-fit allm-gap-y-2 allm-z-10"> <Sponsor settings={settings} /> <ResetChat setChatHistory={setChatHistory} @@ -76,13 +76,13 @@ function copyCodeSnippet(uuid) { window.navigator.clipboard.writeText(markdown); - target.classList.add("text-green-500"); + target.classList.add("allm-text-green-500"); const originalText = target.innerHTML; target.innerText = "Copied!"; target.setAttribute("disabled", true); setTimeout(() => { - target.classList.remove("text-green-500"); + target.classList.remove("allm-text-green-500"); target.innerHTML = originalText; target.removeAttribute("disabled"); }, 2500); diff --git a/embed/src/components/Head.jsx b/embed/src/components/Head.jsx index 4a9f1d07b..7eda78fd2 100644 --- a/embed/src/components/Head.jsx +++ b/embed/src/components/Head.jsx @@ -1,3 +1,5 @@ +import { embedderSettings } from "@/main"; + const hljsCss = ` pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*! Theme: GitHub Dark Dimmed @@ -16,7 +18,7 @@ const customCss = ` * Dot Falling * ============================================== */ - .dot-falling { + .allm-dot-falling { position: relative; left: -9999px; width: 10px; @@ -29,15 +31,15 @@ const customCss = ` animation-delay: 0.1s; } - .dot-falling::before, - .dot-falling::after { + .allm-dot-falling::before, + .allm-dot-falling::after { content: ""; display: inline-block; position: absolute; top: 0; } - .dot-falling::before { + .allm-dot-falling::before { width: 10px; height: 10px; border-radius: 5px; @@ -47,7 +49,7 @@ const customCss = ` animation-delay: 0s; } - .dot-falling::after { + .allm-dot-falling::after { width: 10px; height: 10px; border-radius: 5px; @@ -101,50 +103,20 @@ const customCss = ` #chat-history::-webkit-scrollbar, #chat-container::-webkit-scrollbar, - .no-scroll::-webkit-scrollbar { + .allm-no-scroll::-webkit-scrollbar { display: none !important; } /* Hide scrollbar for IE, Edge and Firefox */ #chat-history, #chat-container, - .no-scroll { + .allm-no-scroll { -ms-overflow-style: none !important; /* IE and Edge */ scrollbar-width: none !important; /* Firefox */ } - .animate-slow-pulse { - transform: scale(1); - animation: subtlePulse 20s infinite; - will-change: transform; - } - - @keyframes subtlePulse { - 0% { - transform: scale(1); - } - 50% { - transform: scale(1.1); - } - 100% { - transform: scale(1); - } - } - - @keyframes subtleShift { - 0% { - background-position: 0% 50%; - } - 50% { - background-position: 100% 50%; - } - 100% { - background-position: 0% 50%; - } - } - - .bg-black-900 { - background: #141414; + span.allm-whitespace-pre-line>p { + margin: 0px; } `; @@ -153,6 +125,7 @@ export default function Head() { <head> <style>{hljsCss}</style> <style>{customCss}</style> + <link rel="stylesheet" href={embedderSettings.stylesSrc} /> </head> ); } diff --git a/embed/src/components/OpenButton/index.jsx b/embed/src/components/OpenButton/index.jsx index 93ae5c326..c489cc07b 100644 --- a/embed/src/components/OpenButton/index.jsx +++ b/embed/src/components/OpenButton/index.jsx @@ -23,9 +23,10 @@ export default function OpenButton({ settings, isOpen, toggleOpen }) { : CHAT_ICONS.plus; return ( <button + style={{ backgroundColor: settings.buttonColor }} id="anything-llm-embed-chat-button" onClick={toggleOpen} - className={`flex items-center justify-center p-4 rounded-full bg-[${settings.buttonColor}] text-white text-2xl`} + className={`hover:allm-cursor-pointer allm-border-none allm-flex allm-items-center allm-justify-center allm-p-4 allm-rounded-full allm-text-white allm-text-2xl hover:allm-opacity-95`} aria-label="Toggle Menu" > <ChatIcon className="text-white" /> diff --git a/embed/src/components/ResetChat/index.jsx b/embed/src/components/ResetChat/index.jsx index 7e004e127..176b29145 100644 --- a/embed/src/components/ResetChat/index.jsx +++ b/embed/src/components/ResetChat/index.jsx @@ -7,9 +7,10 @@ export default function ResetChat({ setChatHistory, settings, sessionId }) { }; return ( - <div className="w-full flex justify-center"> + <div className="allm-w-full allm-flex allm-justify-center"> <button - className="text-sm text-[#7A7D7E] hover:text-[#7A7D7E]/80 hover:underline" + style={{ color: "#7A7D7E" }} + className="hover:allm-cursor-pointer allm-border-none allm-text-sm allm-bg-transparent hover:allm-opacity-80 hover:allm-underline" onClick={() => handleChatReset()} > Reset Chat diff --git a/embed/src/components/SessionId/index.jsx b/embed/src/components/SessionId/index.jsx index 398c82835..2f05eff8d 100644 --- a/embed/src/components/SessionId/index.jsx +++ b/embed/src/components/SessionId/index.jsx @@ -5,6 +5,8 @@ export default function SessionId() { if (!sessionId) return null; return ( - <div className="text-xs text-gray-300 w-full text-center">{sessionId}</div> + <div className="allm-text-xs allm-text-gray-300 allm-w-full allm-text-center"> + {sessionId} + </div> ); } diff --git a/embed/src/components/Sponsor/index.jsx b/embed/src/components/Sponsor/index.jsx index eb7e1183d..cf4281d9b 100644 --- a/embed/src/components/Sponsor/index.jsx +++ b/embed/src/components/Sponsor/index.jsx @@ -2,12 +2,13 @@ export default function Sponsor({ settings }) { if (!!settings.noSponsor) return null; return ( - <div className="flex w-full items-center justify-center"> + <div className="allm-flex allm-w-full allm-items-center allm-justify-center"> <a + style={{ color: "#0119D9" }} href={settings.sponsorLink ?? "#"} target="_blank" rel="noreferrer" - className="text-xs text-[#0119D9] hover:text-[#0119D9]/80 hover:underline" + className="allm-text-xs allm-font-sans hover:allm-opacity-80 hover:allm-underline" > {settings.sponsorText} </a> diff --git a/embed/src/index.css b/embed/src/index.css new file mode 100644 index 000000000..b5c61c956 --- /dev/null +++ b/embed/src/index.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/embed/src/main.jsx b/embed/src/main.jsx index add07e07a..8a05566e9 100644 --- a/embed/src/main.jsx +++ b/embed/src/main.jsx @@ -1,6 +1,8 @@ import React from "react"; import ReactDOM from "react-dom/client"; import App from "./App.jsx"; +import "./index.css"; +import { parseStylesSrc } from "./utils/constants.js"; const appElement = document.createElement("div"); document.body.appendChild(appElement); @@ -17,6 +19,13 @@ const scriptSettings = Object.assign( ); export const embedderSettings = { settings: scriptSettings, - USER_STYLES: `bg-[${scriptSettings?.userBgColor ?? "#3DBEF5"}] text-white rounded-t-[18px] rounded-bl-[18px] rounded-br-[4px] mx-[20px]`, - ASSISTANT_STYLES: `bg-[${scriptSettings?.assistantBgColor ?? "#FFFFFF"}] text-[#222628] rounded-t-[18px] rounded-br-[18px] rounded-bl-[4px] mr-[37px] ml-[9px]`, + stylesSrc: parseStylesSrc(document?.currentScript?.src), + USER_STYLES: { + msgBg: scriptSettings?.userBgColor ?? "#3DBEF5", + base: `allm-text-white allm-rounded-t-[18px] allm-rounded-bl-[18px] allm-rounded-br-[4px] allm-mx-[20px]`, + }, + ASSISTANT_STYLES: { + msgBg: scriptSettings?.userBgColor ?? "#FFFFFF", + base: `allm-text-[#222628] allm-rounded-t-[18px] allm-rounded-br-[18px] allm-rounded-bl-[4px] allm-mr-[37px] allm-ml-[9px]`, + }, }; diff --git a/embed/src/static/tailwind@3.4.1.js b/embed/src/static/tailwind@3.4.1.js deleted file mode 100644 index 2fcfdde69..000000000 --- a/embed/src/static/tailwind@3.4.1.js +++ /dev/null @@ -1,209 +0,0 @@ -(() => { - var xb = Object.create; var li = Object.defineProperty; var kb = Object.getOwnPropertyDescriptor; var Sb = Object.getOwnPropertyNames; var Cb = Object.getPrototypeOf, Ab = Object.prototype.hasOwnProperty; var uu = i => li(i, "__esModule", { value: !0 }); var fu = i => { if (typeof require != "undefined") return require(i); throw new Error('Dynamic require of "' + i + '" is not supported') }; var C = (i, e) => () => (i && (e = i(i = 0)), e); var v = (i, e) => () => (e || i((e = { exports: {} }).exports, e), e.exports), Ae = (i, e) => { uu(i); for (var t in e) li(i, t, { get: e[t], enumerable: !0 }) }, _b = (i, e, t) => { if (e && typeof e == "object" || typeof e == "function") for (let r of Sb(e)) !Ab.call(i, r) && r !== "default" && li(i, r, { get: () => e[r], enumerable: !(t = kb(e, r)) || t.enumerable }); return i }, K = i => _b(uu(li(i != null ? xb(Cb(i)) : {}, "default", i && i.__esModule && "default" in i ? { get: () => i.default, enumerable: !0 } : { value: i, enumerable: !0 })), i); var h, l = C(() => { h = { platform: "", env: {}, versions: { node: "14.17.6" } } }); var Ob, re, je = C(() => { l(); Ob = 0, re = { readFileSync: i => self[i] || "", statSync: () => ({ mtimeMs: Ob++ }), promises: { readFile: i => Promise.resolve(self[i] || "") } } }); var Qn = v((XO, pu) => { l(); "use strict"; var cu = class { constructor(e = {}) { if (!(e.maxSize && e.maxSize > 0)) throw new TypeError("`maxSize` must be a number greater than 0"); if (typeof e.maxAge == "number" && e.maxAge === 0) throw new TypeError("`maxAge` must be a number greater than 0"); this.maxSize = e.maxSize, this.maxAge = e.maxAge || 1 / 0, this.onEviction = e.onEviction, this.cache = new Map, this.oldCache = new Map, this._size = 0 } _emitEvictions(e) { if (typeof this.onEviction == "function") for (let [t, r] of e) this.onEviction(t, r.value) } _deleteIfExpired(e, t) { return typeof t.expiry == "number" && t.expiry <= Date.now() ? (typeof this.onEviction == "function" && this.onEviction(e, t.value), this.delete(e)) : !1 } _getOrDeleteIfExpired(e, t) { if (this._deleteIfExpired(e, t) === !1) return t.value } _getItemValue(e, t) { return t.expiry ? this._getOrDeleteIfExpired(e, t) : t.value } _peek(e, t) { let r = t.get(e); return this._getItemValue(e, r) } _set(e, t) { this.cache.set(e, t), this._size++, this._size >= this.maxSize && (this._size = 0, this._emitEvictions(this.oldCache), this.oldCache = this.cache, this.cache = new Map) } _moveToRecent(e, t) { this.oldCache.delete(e), this._set(e, t) } *_entriesAscending() { for (let e of this.oldCache) { let [t, r] = e; this.cache.has(t) || this._deleteIfExpired(t, r) === !1 && (yield e) } for (let e of this.cache) { let [t, r] = e; this._deleteIfExpired(t, r) === !1 && (yield e) } } get(e) { if (this.cache.has(e)) { let t = this.cache.get(e); return this._getItemValue(e, t) } if (this.oldCache.has(e)) { let t = this.oldCache.get(e); if (this._deleteIfExpired(e, t) === !1) return this._moveToRecent(e, t), t.value } } set(e, t, { maxAge: r = this.maxAge === 1 / 0 ? void 0 : Date.now() + this.maxAge } = {}) { this.cache.has(e) ? this.cache.set(e, { value: t, maxAge: r }) : this._set(e, { value: t, expiry: r }) } has(e) { return this.cache.has(e) ? !this._deleteIfExpired(e, this.cache.get(e)) : this.oldCache.has(e) ? !this._deleteIfExpired(e, this.oldCache.get(e)) : !1 } peek(e) { if (this.cache.has(e)) return this._peek(e, this.cache); if (this.oldCache.has(e)) return this._peek(e, this.oldCache) } delete(e) { let t = this.cache.delete(e); return t && this._size--, this.oldCache.delete(e) || t } clear() { this.cache.clear(), this.oldCache.clear(), this._size = 0 } resize(e) { if (!(e && e > 0)) throw new TypeError("`maxSize` must be a number greater than 0"); let t = [...this._entriesAscending()], r = t.length - e; r < 0 ? (this.cache = new Map(t), this.oldCache = new Map, this._size = t.length) : (r > 0 && this._emitEvictions(t.slice(0, r)), this.oldCache = new Map(t.slice(r)), this.cache = new Map, this._size = 0), this.maxSize = e } *keys() { for (let [e] of this) yield e } *values() { for (let [, e] of this) yield e } *[Symbol.iterator]() { for (let e of this.cache) { let [t, r] = e; this._deleteIfExpired(t, r) === !1 && (yield [t, r.value]) } for (let e of this.oldCache) { let [t, r] = e; this.cache.has(t) || this._deleteIfExpired(t, r) === !1 && (yield [t, r.value]) } } *entriesDescending() { let e = [...this.cache]; for (let t = e.length - 1; t >= 0; --t) { let r = e[t], [n, a] = r; this._deleteIfExpired(n, a) === !1 && (yield [n, a.value]) } e = [...this.oldCache]; for (let t = e.length - 1; t >= 0; --t) { let r = e[t], [n, a] = r; this.cache.has(n) || this._deleteIfExpired(n, a) === !1 && (yield [n, a.value]) } } *entriesAscending() { for (let [e, t] of this._entriesAscending()) yield [e, t.value] } get size() { if (!this._size) return this.oldCache.size; let e = 0; for (let t of this.oldCache.keys()) this.cache.has(t) || e++; return Math.min(this._size + e, this.maxSize) } }; pu.exports = cu }); var du, hu = C(() => { l(); du = i => i && i._hash }); function ui(i) { return du(i, { ignoreUnknown: !0 }) } var mu = C(() => { l(); hu() }); function Xe(i) { if (i = `${i}`, i === "0") return "0"; if (/^[+-]?(\d+|\d*\.\d+)(e[+-]?\d+)?(%|\w+)?$/.test(i)) return i.replace(/^[+-]?/, t => t === "-" ? "" : "-"); let e = ["var", "calc", "min", "max", "clamp"]; for (let t of e) if (i.includes(`${t}(`)) return `calc(${i} * -1)` } var fi = C(() => { l() }); var gu, yu = C(() => { l(); gu = ["preflight", "container", "accessibility", "pointerEvents", "visibility", "position", "inset", "isolation", "zIndex", "order", "gridColumn", "gridColumnStart", "gridColumnEnd", "gridRow", "gridRowStart", "gridRowEnd", "float", "clear", "margin", "boxSizing", "lineClamp", "display", "aspectRatio", "size", "height", "maxHeight", "minHeight", "width", "minWidth", "maxWidth", "flex", "flexShrink", "flexGrow", "flexBasis", "tableLayout", "captionSide", "borderCollapse", "borderSpacing", "transformOrigin", "translate", "rotate", "skew", "scale", "transform", "animation", "cursor", "touchAction", "userSelect", "resize", "scrollSnapType", "scrollSnapAlign", "scrollSnapStop", "scrollMargin", "scrollPadding", "listStylePosition", "listStyleType", "listStyleImage", "appearance", "columns", "breakBefore", "breakInside", "breakAfter", "gridAutoColumns", "gridAutoFlow", "gridAutoRows", "gridTemplateColumns", "gridTemplateRows", "flexDirection", "flexWrap", "placeContent", "placeItems", "alignContent", "alignItems", "justifyContent", "justifyItems", "gap", "space", "divideWidth", "divideStyle", "divideColor", "divideOpacity", "placeSelf", "alignSelf", "justifySelf", "overflow", "overscrollBehavior", "scrollBehavior", "textOverflow", "hyphens", "whitespace", "textWrap", "wordBreak", "borderRadius", "borderWidth", "borderStyle", "borderColor", "borderOpacity", "backgroundColor", "backgroundOpacity", "backgroundImage", "gradientColorStops", "boxDecorationBreak", "backgroundSize", "backgroundAttachment", "backgroundClip", "backgroundPosition", "backgroundRepeat", "backgroundOrigin", "fill", "stroke", "strokeWidth", "objectFit", "objectPosition", "padding", "textAlign", "textIndent", "verticalAlign", "fontFamily", "fontSize", "fontWeight", "textTransform", "fontStyle", "fontVariantNumeric", "lineHeight", "letterSpacing", "textColor", "textOpacity", "textDecoration", "textDecorationColor", "textDecorationStyle", "textDecorationThickness", "textUnderlineOffset", "fontSmoothing", "placeholderColor", "placeholderOpacity", "caretColor", "accentColor", "opacity", "backgroundBlendMode", "mixBlendMode", "boxShadow", "boxShadowColor", "outlineStyle", "outlineWidth", "outlineOffset", "outlineColor", "ringWidth", "ringColor", "ringOpacity", "ringOffsetWidth", "ringOffsetColor", "blur", "brightness", "contrast", "dropShadow", "grayscale", "hueRotate", "invert", "saturate", "sepia", "filter", "backdropBlur", "backdropBrightness", "backdropContrast", "backdropGrayscale", "backdropHueRotate", "backdropInvert", "backdropOpacity", "backdropSaturate", "backdropSepia", "backdropFilter", "transitionProperty", "transitionDelay", "transitionDuration", "transitionTimingFunction", "willChange", "content", "forcedColorAdjust"] }); function wu(i, e) { return i === void 0 ? e : Array.isArray(i) ? i : [...new Set(e.filter(r => i !== !1 && i[r] !== !1).concat(Object.keys(i).filter(r => i[r] !== !1)))] } var bu = C(() => { l() }); var vu = {}; Ae(vu, { default: () => _e }); var _e, ci = C(() => { l(); _e = new Proxy({}, { get: () => String }) }); function Jn(i, e, t) { typeof h != "undefined" && h.env.JEST_WORKER_ID || t && xu.has(t) || (t && xu.add(t), console.warn(""), e.forEach(r => console.warn(i, "-", r))) } function Xn(i) { return _e.dim(i) } var xu, F, Oe = C(() => { l(); ci(); xu = new Set; F = { info(i, e) { Jn(_e.bold(_e.cyan("info")), ...Array.isArray(i) ? [i] : [e, i]) }, warn(i, e) { ["content-problems"].includes(i) || Jn(_e.bold(_e.yellow("warn")), ...Array.isArray(i) ? [i] : [e, i]) }, risk(i, e) { Jn(_e.bold(_e.magenta("risk")), ...Array.isArray(i) ? [i] : [e, i]) } } }); var ku = {}; Ae(ku, { default: () => Kn }); function sr({ version: i, from: e, to: t }) { F.warn(`${e}-color-renamed`, [`As of Tailwind CSS ${i}, \`${e}\` has been renamed to \`${t}\`.`, "Update your configuration file to silence this warning."]) } var Kn, Zn = C(() => { l(); Oe(); Kn = { inherit: "inherit", current: "currentColor", transparent: "transparent", black: "#000", white: "#fff", slate: { 50: "#f8fafc", 100: "#f1f5f9", 200: "#e2e8f0", 300: "#cbd5e1", 400: "#94a3b8", 500: "#64748b", 600: "#475569", 700: "#334155", 800: "#1e293b", 900: "#0f172a", 950: "#020617" }, gray: { 50: "#f9fafb", 100: "#f3f4f6", 200: "#e5e7eb", 300: "#d1d5db", 400: "#9ca3af", 500: "#6b7280", 600: "#4b5563", 700: "#374151", 800: "#1f2937", 900: "#111827", 950: "#030712" }, zinc: { 50: "#fafafa", 100: "#f4f4f5", 200: "#e4e4e7", 300: "#d4d4d8", 400: "#a1a1aa", 500: "#71717a", 600: "#52525b", 700: "#3f3f46", 800: "#27272a", 900: "#18181b", 950: "#09090b" }, neutral: { 50: "#fafafa", 100: "#f5f5f5", 200: "#e5e5e5", 300: "#d4d4d4", 400: "#a3a3a3", 500: "#737373", 600: "#525252", 700: "#404040", 800: "#262626", 900: "#171717", 950: "#0a0a0a" }, stone: { 50: "#fafaf9", 100: "#f5f5f4", 200: "#e7e5e4", 300: "#d6d3d1", 400: "#a8a29e", 500: "#78716c", 600: "#57534e", 700: "#44403c", 800: "#292524", 900: "#1c1917", 950: "#0c0a09" }, red: { 50: "#fef2f2", 100: "#fee2e2", 200: "#fecaca", 300: "#fca5a5", 400: "#f87171", 500: "#ef4444", 600: "#dc2626", 700: "#b91c1c", 800: "#991b1b", 900: "#7f1d1d", 950: "#450a0a" }, orange: { 50: "#fff7ed", 100: "#ffedd5", 200: "#fed7aa", 300: "#fdba74", 400: "#fb923c", 500: "#f97316", 600: "#ea580c", 700: "#c2410c", 800: "#9a3412", 900: "#7c2d12", 950: "#431407" }, amber: { 50: "#fffbeb", 100: "#fef3c7", 200: "#fde68a", 300: "#fcd34d", 400: "#fbbf24", 500: "#f59e0b", 600: "#d97706", 700: "#b45309", 800: "#92400e", 900: "#78350f", 950: "#451a03" }, yellow: { 50: "#fefce8", 100: "#fef9c3", 200: "#fef08a", 300: "#fde047", 400: "#facc15", 500: "#eab308", 600: "#ca8a04", 700: "#a16207", 800: "#854d0e", 900: "#713f12", 950: "#422006" }, lime: { 50: "#f7fee7", 100: "#ecfccb", 200: "#d9f99d", 300: "#bef264", 400: "#a3e635", 500: "#84cc16", 600: "#65a30d", 700: "#4d7c0f", 800: "#3f6212", 900: "#365314", 950: "#1a2e05" }, green: { 50: "#f0fdf4", 100: "#dcfce7", 200: "#bbf7d0", 300: "#86efac", 400: "#4ade80", 500: "#22c55e", 600: "#16a34a", 700: "#15803d", 800: "#166534", 900: "#14532d", 950: "#052e16" }, emerald: { 50: "#ecfdf5", 100: "#d1fae5", 200: "#a7f3d0", 300: "#6ee7b7", 400: "#34d399", 500: "#10b981", 600: "#059669", 700: "#047857", 800: "#065f46", 900: "#064e3b", 950: "#022c22" }, teal: { 50: "#f0fdfa", 100: "#ccfbf1", 200: "#99f6e4", 300: "#5eead4", 400: "#2dd4bf", 500: "#14b8a6", 600: "#0d9488", 700: "#0f766e", 800: "#115e59", 900: "#134e4a", 950: "#042f2e" }, cyan: { 50: "#ecfeff", 100: "#cffafe", 200: "#a5f3fc", 300: "#67e8f9", 400: "#22d3ee", 500: "#06b6d4", 600: "#0891b2", 700: "#0e7490", 800: "#155e75", 900: "#164e63", 950: "#083344" }, sky: { 50: "#f0f9ff", 100: "#e0f2fe", 200: "#bae6fd", 300: "#7dd3fc", 400: "#38bdf8", 500: "#0ea5e9", 600: "#0284c7", 700: "#0369a1", 800: "#075985", 900: "#0c4a6e", 950: "#082f49" }, blue: { 50: "#eff6ff", 100: "#dbeafe", 200: "#bfdbfe", 300: "#93c5fd", 400: "#60a5fa", 500: "#3b82f6", 600: "#2563eb", 700: "#1d4ed8", 800: "#1e40af", 900: "#1e3a8a", 950: "#172554" }, indigo: { 50: "#eef2ff", 100: "#e0e7ff", 200: "#c7d2fe", 300: "#a5b4fc", 400: "#818cf8", 500: "#6366f1", 600: "#4f46e5", 700: "#4338ca", 800: "#3730a3", 900: "#312e81", 950: "#1e1b4b" }, violet: { 50: "#f5f3ff", 100: "#ede9fe", 200: "#ddd6fe", 300: "#c4b5fd", 400: "#a78bfa", 500: "#8b5cf6", 600: "#7c3aed", 700: "#6d28d9", 800: "#5b21b6", 900: "#4c1d95", 950: "#2e1065" }, purple: { 50: "#faf5ff", 100: "#f3e8ff", 200: "#e9d5ff", 300: "#d8b4fe", 400: "#c084fc", 500: "#a855f7", 600: "#9333ea", 700: "#7e22ce", 800: "#6b21a8", 900: "#581c87", 950: "#3b0764" }, fuchsia: { 50: "#fdf4ff", 100: "#fae8ff", 200: "#f5d0fe", 300: "#f0abfc", 400: "#e879f9", 500: "#d946ef", 600: "#c026d3", 700: "#a21caf", 800: "#86198f", 900: "#701a75", 950: "#4a044e" }, pink: { 50: "#fdf2f8", 100: "#fce7f3", 200: "#fbcfe8", 300: "#f9a8d4", 400: "#f472b6", 500: "#ec4899", 600: "#db2777", 700: "#be185d", 800: "#9d174d", 900: "#831843", 950: "#500724" }, rose: { 50: "#fff1f2", 100: "#ffe4e6", 200: "#fecdd3", 300: "#fda4af", 400: "#fb7185", 500: "#f43f5e", 600: "#e11d48", 700: "#be123c", 800: "#9f1239", 900: "#881337", 950: "#4c0519" }, get lightBlue() { return sr({ version: "v2.2", from: "lightBlue", to: "sky" }), this.sky }, get warmGray() { return sr({ version: "v3.0", from: "warmGray", to: "stone" }), this.stone }, get trueGray() { return sr({ version: "v3.0", from: "trueGray", to: "neutral" }), this.neutral }, get coolGray() { return sr({ version: "v3.0", from: "coolGray", to: "gray" }), this.gray }, get blueGray() { return sr({ version: "v3.0", from: "blueGray", to: "slate" }), this.slate } } }); function es(i, ...e) { for (let t of e) { for (let r in t) i?.hasOwnProperty?.(r) || (i[r] = t[r]); for (let r of Object.getOwnPropertySymbols(t)) i?.hasOwnProperty?.(r) || (i[r] = t[r]) } return i } var Su = C(() => { l() }); function Ke(i) { if (Array.isArray(i)) return i; let e = i.split("[").length - 1, t = i.split("]").length - 1; if (e !== t) throw new Error(`Path is invalid. Has unbalanced brackets: ${i}`); return i.split(/\.(?![^\[]*\])|[\[\]]/g).filter(Boolean) } var pi = C(() => { l() }); function Z(i, e) { return di.future.includes(e) ? i.future === "all" || (i?.future?.[e] ?? Cu[e] ?? !1) : di.experimental.includes(e) ? i.experimental === "all" || (i?.experimental?.[e] ?? Cu[e] ?? !1) : !1 } function Au(i) { return i.experimental === "all" ? di.experimental : Object.keys(i?.experimental ?? {}).filter(e => di.experimental.includes(e) && i.experimental[e]) } function _u(i) { if (h.env.JEST_WORKER_ID === void 0 && Au(i).length > 0) { let e = Au(i).map(t => _e.yellow(t)).join(", "); F.warn("experimental-flags-enabled", [`You have enabled experimental features: ${e}`, "Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time."]) } } var Cu, di, ze = C(() => { l(); ci(); Oe(); Cu = { optimizeUniversalDefaults: !1, generalizedModifiers: !0, get disableColorOpacityUtilitiesByDefault() { return !1 }, get relativeContentPathsByDefault() { return !1 } }, di = { future: ["hoverOnlyWhenSupported", "respectDefaultRingColorOpacity", "disableColorOpacityUtilitiesByDefault", "relativeContentPathsByDefault"], experimental: ["optimizeUniversalDefaults", "generalizedModifiers"] } }); function Ou(i) { (() => { if (i.purge || !i.content || !Array.isArray(i.content) && !(typeof i.content == "object" && i.content !== null)) return !1; if (Array.isArray(i.content)) return i.content.every(t => typeof t == "string" ? !0 : !(typeof t?.raw != "string" || t?.extension && typeof t?.extension != "string")); if (typeof i.content == "object" && i.content !== null) { if (Object.keys(i.content).some(t => !["files", "relative", "extract", "transform"].includes(t))) return !1; if (Array.isArray(i.content.files)) { if (!i.content.files.every(t => typeof t == "string" ? !0 : !(typeof t?.raw != "string" || t?.extension && typeof t?.extension != "string"))) return !1; if (typeof i.content.extract == "object") { for (let t of Object.values(i.content.extract)) if (typeof t != "function") return !1 } else if (!(i.content.extract === void 0 || typeof i.content.extract == "function")) return !1; if (typeof i.content.transform == "object") { for (let t of Object.values(i.content.transform)) if (typeof t != "function") return !1 } else if (!(i.content.transform === void 0 || typeof i.content.transform == "function")) return !1; if (typeof i.content.relative != "boolean" && typeof i.content.relative != "undefined") return !1 } return !0 } return !1 })() || F.warn("purge-deprecation", ["The `purge`/`content` options have changed in Tailwind CSS v3.0.", "Update your configuration file to eliminate this warning.", "https://tailwindcss.com/docs/upgrade-guide#configure-content-sources"]), i.safelist = (() => { let { content: t, purge: r, safelist: n } = i; return Array.isArray(n) ? n : Array.isArray(t?.safelist) ? t.safelist : Array.isArray(r?.safelist) ? r.safelist : Array.isArray(r?.options?.safelist) ? r.options.safelist : [] })(), i.blocklist = (() => { let { blocklist: t } = i; if (Array.isArray(t)) { if (t.every(r => typeof r == "string")) return t; F.warn("blocklist-invalid", ["The `blocklist` option must be an array of strings.", "https://tailwindcss.com/docs/content-configuration#discarding-classes"]) } return [] })(), typeof i.prefix == "function" ? (F.warn("prefix-function", ["As of Tailwind CSS v3.0, `prefix` cannot be a function.", "Update `prefix` in your configuration to be a string to eliminate this warning.", "https://tailwindcss.com/docs/upgrade-guide#prefix-cannot-be-a-function"]), i.prefix = "") : i.prefix = i.prefix ?? "", i.content = { relative: (() => { let { content: t } = i; return t?.relative ? t.relative : Z(i, "relativeContentPathsByDefault") })(), files: (() => { let { content: t, purge: r } = i; return Array.isArray(r) ? r : Array.isArray(r?.content) ? r.content : Array.isArray(t) ? t : Array.isArray(t?.content) ? t.content : Array.isArray(t?.files) ? t.files : [] })(), extract: (() => { let t = (() => i.purge?.extract ? i.purge.extract : i.content?.extract ? i.content.extract : i.purge?.extract?.DEFAULT ? i.purge.extract.DEFAULT : i.content?.extract?.DEFAULT ? i.content.extract.DEFAULT : i.purge?.options?.extractors ? i.purge.options.extractors : i.content?.options?.extractors ? i.content.options.extractors : {})(), r = {}, n = (() => { if (i.purge?.options?.defaultExtractor) return i.purge.options.defaultExtractor; if (i.content?.options?.defaultExtractor) return i.content.options.defaultExtractor })(); if (n !== void 0 && (r.DEFAULT = n), typeof t == "function") r.DEFAULT = t; else if (Array.isArray(t)) for (let { extensions: a, extractor: s } of t ?? []) for (let o of a) r[o] = s; else typeof t == "object" && t !== null && Object.assign(r, t); return r })(), transform: (() => { let t = (() => i.purge?.transform ? i.purge.transform : i.content?.transform ? i.content.transform : i.purge?.transform?.DEFAULT ? i.purge.transform.DEFAULT : i.content?.transform?.DEFAULT ? i.content.transform.DEFAULT : {})(), r = {}; return typeof t == "function" && (r.DEFAULT = t), typeof t == "object" && t !== null && Object.assign(r, t), r })() }; for (let t of i.content.files) if (typeof t == "string" && /{([^,]*?)}/g.test(t)) { F.warn("invalid-glob-braces", [`The glob pattern ${Xn(t)} in your Tailwind CSS configuration is invalid.`, `Update it to ${Xn(t.replace(/{([^,]*?)}/g, "$1"))} to silence this warning.`]); break } return i } var Eu = C(() => { l(); ze(); Oe() }); function ne(i) { if (Object.prototype.toString.call(i) !== "[object Object]") return !1; let e = Object.getPrototypeOf(i); return e === null || Object.getPrototypeOf(e) === null } var kt = C(() => { l() }); function Ze(i) { return Array.isArray(i) ? i.map(e => Ze(e)) : typeof i == "object" && i !== null ? Object.fromEntries(Object.entries(i).map(([e, t]) => [e, Ze(t)])) : i } var hi = C(() => { l() }); function mt(i) { return i.replace(/\\,/g, "\\2c ") } var mi = C(() => { l() }); var ts, Tu = C(() => { l(); ts = { aliceblue: [240, 248, 255], antiquewhite: [250, 235, 215], aqua: [0, 255, 255], aquamarine: [127, 255, 212], azure: [240, 255, 255], beige: [245, 245, 220], bisque: [255, 228, 196], black: [0, 0, 0], blanchedalmond: [255, 235, 205], blue: [0, 0, 255], blueviolet: [138, 43, 226], brown: [165, 42, 42], burlywood: [222, 184, 135], cadetblue: [95, 158, 160], chartreuse: [127, 255, 0], chocolate: [210, 105, 30], coral: [255, 127, 80], cornflowerblue: [100, 149, 237], cornsilk: [255, 248, 220], crimson: [220, 20, 60], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgoldenrod: [184, 134, 11], darkgray: [169, 169, 169], darkgreen: [0, 100, 0], darkgrey: [169, 169, 169], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkseagreen: [143, 188, 143], darkslateblue: [72, 61, 139], darkslategray: [47, 79, 79], darkslategrey: [47, 79, 79], darkturquoise: [0, 206, 209], darkviolet: [148, 0, 211], deeppink: [255, 20, 147], deepskyblue: [0, 191, 255], dimgray: [105, 105, 105], dimgrey: [105, 105, 105], dodgerblue: [30, 144, 255], firebrick: [178, 34, 34], floralwhite: [255, 250, 240], forestgreen: [34, 139, 34], fuchsia: [255, 0, 255], gainsboro: [220, 220, 220], ghostwhite: [248, 248, 255], gold: [255, 215, 0], goldenrod: [218, 165, 32], gray: [128, 128, 128], green: [0, 128, 0], greenyellow: [173, 255, 47], grey: [128, 128, 128], honeydew: [240, 255, 240], hotpink: [255, 105, 180], indianred: [205, 92, 92], indigo: [75, 0, 130], ivory: [255, 255, 240], khaki: [240, 230, 140], lavender: [230, 230, 250], lavenderblush: [255, 240, 245], lawngreen: [124, 252, 0], lemonchiffon: [255, 250, 205], lightblue: [173, 216, 230], lightcoral: [240, 128, 128], lightcyan: [224, 255, 255], lightgoldenrodyellow: [250, 250, 210], lightgray: [211, 211, 211], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightsalmon: [255, 160, 122], lightseagreen: [32, 178, 170], lightskyblue: [135, 206, 250], lightslategray: [119, 136, 153], lightslategrey: [119, 136, 153], lightsteelblue: [176, 196, 222], lightyellow: [255, 255, 224], lime: [0, 255, 0], limegreen: [50, 205, 50], linen: [250, 240, 230], magenta: [255, 0, 255], maroon: [128, 0, 0], mediumaquamarine: [102, 205, 170], mediumblue: [0, 0, 205], mediumorchid: [186, 85, 211], mediumpurple: [147, 112, 219], mediumseagreen: [60, 179, 113], mediumslateblue: [123, 104, 238], mediumspringgreen: [0, 250, 154], mediumturquoise: [72, 209, 204], mediumvioletred: [199, 21, 133], midnightblue: [25, 25, 112], mintcream: [245, 255, 250], mistyrose: [255, 228, 225], moccasin: [255, 228, 181], navajowhite: [255, 222, 173], navy: [0, 0, 128], oldlace: [253, 245, 230], olive: [128, 128, 0], olivedrab: [107, 142, 35], orange: [255, 165, 0], orangered: [255, 69, 0], orchid: [218, 112, 214], palegoldenrod: [238, 232, 170], palegreen: [152, 251, 152], paleturquoise: [175, 238, 238], palevioletred: [219, 112, 147], papayawhip: [255, 239, 213], peachpuff: [255, 218, 185], peru: [205, 133, 63], pink: [255, 192, 203], plum: [221, 160, 221], powderblue: [176, 224, 230], purple: [128, 0, 128], rebeccapurple: [102, 51, 153], red: [255, 0, 0], rosybrown: [188, 143, 143], royalblue: [65, 105, 225], saddlebrown: [139, 69, 19], salmon: [250, 128, 114], sandybrown: [244, 164, 96], seagreen: [46, 139, 87], seashell: [255, 245, 238], sienna: [160, 82, 45], silver: [192, 192, 192], skyblue: [135, 206, 235], slateblue: [106, 90, 205], slategray: [112, 128, 144], slategrey: [112, 128, 144], snow: [255, 250, 250], springgreen: [0, 255, 127], steelblue: [70, 130, 180], tan: [210, 180, 140], teal: [0, 128, 128], thistle: [216, 191, 216], tomato: [255, 99, 71], turquoise: [64, 224, 208], violet: [238, 130, 238], wheat: [245, 222, 179], white: [255, 255, 255], whitesmoke: [245, 245, 245], yellow: [255, 255, 0], yellowgreen: [154, 205, 50] } }); function ar(i, { loose: e = !1 } = {}) { if (typeof i != "string") return null; if (i = i.trim(), i === "transparent") return { mode: "rgb", color: ["0", "0", "0"], alpha: "0" }; if (i in ts) return { mode: "rgb", color: ts[i].map(a => a.toString()) }; let t = i.replace(Tb, (a, s, o, u, c) => ["#", s, s, o, o, u, u, c ? c + c : ""].join("")).match(Eb); if (t !== null) return { mode: "rgb", color: [parseInt(t[1], 16), parseInt(t[2], 16), parseInt(t[3], 16)].map(a => a.toString()), alpha: t[4] ? (parseInt(t[4], 16) / 255).toString() : void 0 }; let r = i.match(Pb) ?? i.match(Db); if (r === null) return null; let n = [r[2], r[3], r[4]].filter(Boolean).map(a => a.toString()); return n.length === 2 && n[0].startsWith("var(") ? { mode: r[1], color: [n[0]], alpha: n[1] } : !e && n.length !== 3 || n.length < 3 && !n.some(a => /^var\(.*?\)$/.test(a)) ? null : { mode: r[1], color: n, alpha: r[5]?.toString?.() } } function rs({ mode: i, color: e, alpha: t }) { let r = t !== void 0; return i === "rgba" || i === "hsla" ? `${i}(${e.join(", ")}${r ? `, ${t}` : ""})` : `${i}(${e.join(" ")}${r ? ` / ${t}` : ""})` } var Eb, Tb, et, gi, Pu, tt, Pb, Db, is = C(() => { l(); Tu(); Eb = /^#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i, Tb = /^#([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i, et = /(?:\d+|\d*\.\d+)%?/, gi = /(?:\s*,\s*|\s+)/, Pu = /\s*[,/]\s*/, tt = /var\(--(?:[^ )]*?)(?:,(?:[^ )]*?|var\(--[^ )]*?\)))?\)/, Pb = new RegExp(`^(rgba?)\\(\\s*(${et.source}|${tt.source})(?:${gi.source}(${et.source}|${tt.source}))?(?:${gi.source}(${et.source}|${tt.source}))?(?:${Pu.source}(${et.source}|${tt.source}))?\\s*\\)$`), Db = new RegExp(`^(hsla?)\\(\\s*((?:${et.source})(?:deg|rad|grad|turn)?|${tt.source})(?:${gi.source}(${et.source}|${tt.source}))?(?:${gi.source}(${et.source}|${tt.source}))?(?:${Pu.source}(${et.source}|${tt.source}))?\\s*\\)$`) }); function De(i, e, t) { if (typeof i == "function") return i({ opacityValue: e }); let r = ar(i, { loose: !0 }); return r === null ? t : rs({ ...r, alpha: e }) } function ae({ color: i, property: e, variable: t }) { let r = [].concat(e); if (typeof i == "function") return { [t]: "1", ...Object.fromEntries(r.map(a => [a, i({ opacityVariable: t, opacityValue: `var(${t})` })])) }; let n = ar(i); return n === null ? Object.fromEntries(r.map(a => [a, i])) : n.alpha !== void 0 ? Object.fromEntries(r.map(a => [a, i])) : { [t]: "1", ...Object.fromEntries(r.map(a => [a, rs({ ...n, alpha: `var(${t})` })])) } } var or = C(() => { l(); is() }); function oe(i, e) { let t = [], r = [], n = 0, a = !1; for (let s = 0; s < i.length; s++) { let o = i[s]; t.length === 0 && o === e[0] && !a && (e.length === 1 || i.slice(s, s + e.length) === e) && (r.push(i.slice(n, s)), n = s + e.length), a ? a = !1 : o === "\\" && (a = !0), o === "(" || o === "[" || o === "{" ? t.push(o) : (o === ")" && t[t.length - 1] === "(" || o === "]" && t[t.length - 1] === "[" || o === "}" && t[t.length - 1] === "{") && t.pop() } return r.push(i.slice(n)), r } var St = C(() => { l() }); function yi(i) { return oe(i, ",").map(t => { let r = t.trim(), n = { raw: r }, a = r.split(qb), s = new Set; for (let o of a) Du.lastIndex = 0, !s.has("KEYWORD") && Ib.has(o) ? (n.keyword = o, s.add("KEYWORD")) : Du.test(o) ? s.has("X") ? s.has("Y") ? s.has("BLUR") ? s.has("SPREAD") || (n.spread = o, s.add("SPREAD")) : (n.blur = o, s.add("BLUR")) : (n.y = o, s.add("Y")) : (n.x = o, s.add("X")) : n.color ? (n.unknown || (n.unknown = []), n.unknown.push(o)) : n.color = o; return n.valid = n.x !== void 0 && n.y !== void 0, n }) } function Iu(i) { return i.map(e => e.valid ? [e.keyword, e.x, e.y, e.blur, e.spread, e.color].filter(Boolean).join(" ") : e.raw).join(", ") } var Ib, qb, Du, ns = C(() => { l(); St(); Ib = new Set(["inset", "inherit", "initial", "revert", "unset"]), qb = /\ +(?![^(]*\))/g, Du = /^-?(\d+|\.\d+)(.*?)$/g }); function ss(i) { return Rb.some(e => new RegExp(`^${e}\\(.*\\)`).test(i)) } function N(i, e = null, t = !0) { let r = e && Mb.has(e.property); return i.startsWith("--") && !r ? `var(${i})` : i.includes("url(") ? i.split(/(url\(.*?\))/g).filter(Boolean).map(n => /^url\(.*?\)$/.test(n) ? n : N(n, e, !1)).join("") : (i = i.replace(/([^\\])_+/g, (n, a) => a + " ".repeat(n.length - 1)).replace(/^_/g, " ").replace(/\\_/g, "_"), t && (i = i.trim()), i = Bb(i), i) } function Bb(i) { let e = ["theme"], t = ["min-content", "max-content", "fit-content", "safe-area-inset-top", "safe-area-inset-right", "safe-area-inset-bottom", "safe-area-inset-left", "titlebar-area-x", "titlebar-area-y", "titlebar-area-width", "titlebar-area-height", "keyboard-inset-top", "keyboard-inset-right", "keyboard-inset-bottom", "keyboard-inset-left", "keyboard-inset-width", "keyboard-inset-height", "radial-gradient", "linear-gradient", "conic-gradient", "repeating-radial-gradient", "repeating-linear-gradient", "repeating-conic-gradient"]; return i.replace(/(calc|min|max|clamp)\(.+\)/g, r => { let n = ""; function a() { let s = n.trimEnd(); return s[s.length - 1] } for (let s = 0; s < r.length; s++) { let o = function (f) { return f.split("").every((d, p) => r[s + p] === d) }, u = function (f) { let d = 1 / 0; for (let m of f) { let w = r.indexOf(m, s); w !== -1 && w < d && (d = w) } let p = r.slice(s, d); return s += p.length - 1, p }, c = r[s]; if (o("var")) n += u([")", ","]); else if (t.some(f => o(f))) { let f = t.find(d => o(d)); n += f, s += f.length - 1 } else e.some(f => o(f)) ? n += u([")"]) : o("[") ? n += u(["]"]) : ["+", "-", "*", "/"].includes(c) && !["(", "+", "-", "*", "/", ","].includes(a()) ? n += ` ${c} ` : n += c } return n.replace(/\s+/g, " ") }) } function as(i) { return i.startsWith("url(") } function os(i) { return !isNaN(Number(i)) || ss(i) } function lr(i) { return i.endsWith("%") && os(i.slice(0, -1)) || ss(i) } function ur(i) { return i === "0" || new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${Nb}$`).test(i) || ss(i) } function qu(i) { return Lb.has(i) } function Ru(i) { let e = yi(N(i)); for (let t of e) if (!t.valid) return !1; return !0 } function Mu(i) { let e = 0; return oe(i, "_").every(r => (r = N(r), r.startsWith("var(") ? !0 : ar(r, { loose: !0 }) !== null ? (e++, !0) : !1)) ? e > 0 : !1 } function Bu(i) { let e = 0; return oe(i, ",").every(r => (r = N(r), r.startsWith("var(") ? !0 : as(r) || jb(r) || ["element(", "image(", "cross-fade(", "image-set("].some(n => r.startsWith(n)) ? (e++, !0) : !1)) ? e > 0 : !1 } function jb(i) { i = N(i); for (let e of $b) if (i.startsWith(`${e}(`)) return !0; return !1 } function Fu(i) { let e = 0; return oe(i, "_").every(r => (r = N(r), r.startsWith("var(") ? !0 : zb.has(r) || ur(r) || lr(r) ? (e++, !0) : !1)) ? e > 0 : !1 } function Nu(i) { let e = 0; return oe(i, ",").every(r => (r = N(r), r.startsWith("var(") ? !0 : r.includes(" ") && !/(['"])([^"']+)\1/g.test(r) || /^\d/g.test(r) ? !1 : (e++, !0))) ? e > 0 : !1 } function Lu(i) { return Vb.has(i) } function $u(i) { return Ub.has(i) } function ju(i) { return Wb.has(i) } var Rb, Mb, Fb, Nb, Lb, $b, zb, Vb, Ub, Wb, fr = C(() => { l(); is(); ns(); St(); Rb = ["min", "max", "clamp", "calc"]; Mb = new Set(["scroll-timeline-name", "timeline-scope", "view-timeline-name", "font-palette", "scroll-timeline", "animation-timeline", "view-timeline"]); Fb = ["cm", "mm", "Q", "in", "pc", "pt", "px", "em", "ex", "ch", "rem", "lh", "rlh", "vw", "vh", "vmin", "vmax", "vb", "vi", "svw", "svh", "lvw", "lvh", "dvw", "dvh", "cqw", "cqh", "cqi", "cqb", "cqmin", "cqmax"], Nb = `(?:${Fb.join("|")})`; Lb = new Set(["thin", "medium", "thick"]); $b = new Set(["conic-gradient", "linear-gradient", "radial-gradient", "repeating-conic-gradient", "repeating-linear-gradient", "repeating-radial-gradient"]); zb = new Set(["center", "top", "right", "bottom", "left"]); Vb = new Set(["serif", "sans-serif", "monospace", "cursive", "fantasy", "system-ui", "ui-serif", "ui-sans-serif", "ui-monospace", "ui-rounded", "math", "emoji", "fangsong"]); Ub = new Set(["xx-small", "x-small", "small", "medium", "large", "x-large", "x-large", "xxx-large"]); Wb = new Set(["larger", "smaller"]) }); function zu(i) { let e = ["cover", "contain"]; return oe(i, ",").every(t => { let r = oe(t, "_").filter(Boolean); return r.length === 1 && e.includes(r[0]) ? !0 : r.length !== 1 && r.length !== 2 ? !1 : r.every(n => ur(n) || lr(n) || n === "auto") }) } var Vu = C(() => { l(); fr(); St() }); function Uu(i, e) { i.walkClasses(t => { t.value = e(t.value), t.raws && t.raws.value && (t.raws.value = mt(t.raws.value)) }) } function Wu(i, e) { if (!rt(i)) return; let t = i.slice(1, -1); if (!!e(t)) return N(t) } function Gb(i, e = {}, t) { let r = e[i]; if (r !== void 0) return Xe(r); if (rt(i)) { let n = Wu(i, t); return n === void 0 ? void 0 : Xe(n) } } function wi(i, e = {}, { validate: t = () => !0 } = {}) { let r = e.values?.[i]; return r !== void 0 ? r : e.supportsNegativeValues && i.startsWith("-") ? Gb(i.slice(1), e.values, t) : Wu(i, t) } function rt(i) { return i.startsWith("[") && i.endsWith("]") } function Gu(i) { let e = i.lastIndexOf("/"), t = i.lastIndexOf("[", e), r = i.indexOf("]", e); return i[e - 1] === "]" || i[e + 1] === "[" || t !== -1 && r !== -1 && t < e && e < r && (e = i.lastIndexOf("/", t)), e === -1 || e === i.length - 1 ? [i, void 0] : rt(i) && !i.includes("]/[") ? [i, void 0] : [i.slice(0, e), i.slice(e + 1)] } function Ct(i) { if (typeof i == "string" && i.includes("<alpha-value>")) { let e = i; return ({ opacityValue: t = 1 }) => e.replace("<alpha-value>", t) } return i } function Hu(i) { return N(i.slice(1, -1)) } function Hb(i, e = {}, { tailwindConfig: t = {} } = {}) { if (e.values?.[i] !== void 0) return Ct(e.values?.[i]); let [r, n] = Gu(i); if (n !== void 0) { let a = e.values?.[r] ?? (rt(r) ? r.slice(1, -1) : void 0); return a === void 0 ? void 0 : (a = Ct(a), rt(n) ? De(a, Hu(n)) : t.theme?.opacity?.[n] === void 0 ? void 0 : De(a, t.theme.opacity[n])) } return wi(i, e, { validate: Mu }) } function Yb(i, e = {}) { return e.values?.[i] } function me(i) { return (e, t) => wi(e, t, { validate: i }) } function Qb(i, e) { let t = i.indexOf(e); return t === -1 ? [void 0, i] : [i.slice(0, t), i.slice(t + 1)] } function us(i, e, t, r) { if (t.values && e in t.values) for (let { type: a } of i ?? []) { let s = ls[a](e, t, { tailwindConfig: r }); if (s !== void 0) return [s, a, null] } if (rt(e)) { let a = e.slice(1, -1), [s, o] = Qb(a, ":"); if (!/^[\w-_]+$/g.test(s)) o = a; else if (s !== void 0 && !Yu.includes(s)) return []; if (o.length > 0 && Yu.includes(s)) return [wi(`[${o}]`, t), s, null] } let n = fs(i, e, t, r); for (let a of n) return a; return [] } function* fs(i, e, t, r) { let n = Z(r, "generalizedModifiers"), [a, s] = Gu(e); if (n && t.modifiers != null && (t.modifiers === "any" || typeof t.modifiers == "object" && (s && rt(s) || s in t.modifiers)) || (a = e, s = void 0), s !== void 0 && a === "" && (a = "DEFAULT"), s !== void 0 && typeof t.modifiers == "object") { let u = t.modifiers?.[s] ?? null; u !== null ? s = u : rt(s) && (s = Hu(s)) } for (let { type: u } of i ?? []) { let c = ls[u](a, t, { tailwindConfig: r }); c !== void 0 && (yield [c, u, s ?? null]) } } var ls, Yu, cr = C(() => { l(); mi(); or(); fr(); fi(); Vu(); ze(); ls = { any: wi, color: Hb, url: me(as), image: me(Bu), length: me(ur), percentage: me(lr), position: me(Fu), lookup: Yb, "generic-name": me(Lu), "family-name": me(Nu), number: me(os), "line-width": me(qu), "absolute-size": me($u), "relative-size": me(ju), shadow: me(Ru), size: me(zu) }, Yu = Object.keys(ls) }); function L(i) { return typeof i == "function" ? i({}) : i } var cs = C(() => { l() }); function At(i) { return typeof i == "function" } function pr(i, ...e) { let t = e.pop(); for (let r of e) for (let n in r) { let a = t(i[n], r[n]); a === void 0 ? ne(i[n]) && ne(r[n]) ? i[n] = pr({}, i[n], r[n], t) : i[n] = r[n] : i[n] = a } return i } function Jb(i, ...e) { return At(i) ? i(...e) : i } function Xb(i) { return i.reduce((e, { extend: t }) => pr(e, t, (r, n) => r === void 0 ? [n] : Array.isArray(r) ? [n, ...r] : [n, r]), {}) } function Kb(i) { return { ...i.reduce((e, t) => es(e, t), {}), extend: Xb(i) } } function Qu(i, e) { if (Array.isArray(i) && ne(i[0])) return i.concat(e); if (Array.isArray(e) && ne(e[0]) && ne(i)) return [i, ...e]; if (Array.isArray(e)) return e } function Zb({ extend: i, ...e }) { return pr(e, i, (t, r) => !At(t) && !r.some(At) ? pr({}, t, ...r, Qu) : (n, a) => pr({}, ...[t, ...r].map(s => Jb(s, n, a)), Qu)) } function* e0(i) { let e = Ke(i); if (e.length === 0 || (yield e, Array.isArray(i))) return; let t = /^(.*?)\s*\/\s*([^/]+)$/, r = i.match(t); if (r !== null) { let [, n, a] = r, s = Ke(n); s.alpha = a, yield s } } function t0(i) { let e = (t, r) => { for (let n of e0(t)) { let a = 0, s = i; for (; s != null && a < n.length;)s = s[n[a++]], s = At(s) && (n.alpha === void 0 || a <= n.length - 1) ? s(e, ps) : s; if (s !== void 0) { if (n.alpha !== void 0) { let o = Ct(s); return De(o, n.alpha, L(o)) } return ne(s) ? Ze(s) : s } } return r }; return Object.assign(e, { theme: e, ...ps }), Object.keys(i).reduce((t, r) => (t[r] = At(i[r]) ? i[r](e, ps) : i[r], t), {}) } function Ju(i) { let e = []; return i.forEach(t => { e = [...e, t]; let r = t?.plugins ?? []; r.length !== 0 && r.forEach(n => { n.__isOptionsFunction && (n = n()), e = [...e, ...Ju([n?.config ?? {}])] }) }), e } function r0(i) { return [...i].reduceRight((t, r) => At(r) ? r({ corePlugins: t }) : wu(r, t), gu) } function i0(i) { return [...i].reduceRight((t, r) => [...t, ...r], []) } function ds(i) { let e = [...Ju(i), { prefix: "", important: !1, separator: ":" }]; return Ou(es({ theme: t0(Zb(Kb(e.map(t => t?.theme ?? {})))), corePlugins: r0(e.map(t => t.corePlugins)), plugins: i0(i.map(t => t?.plugins ?? [])) }, ...e)) } var ps, Xu = C(() => { l(); fi(); yu(); bu(); Zn(); Su(); pi(); Eu(); kt(); hi(); cr(); or(); cs(); ps = { colors: Kn, negative(i) { return Object.keys(i).filter(e => i[e] !== "0").reduce((e, t) => { let r = Xe(i[t]); return r !== void 0 && (e[`-${t}`] = r), e }, {}) }, breakpoints(i) { return Object.keys(i).filter(e => typeof i[e] == "string").reduce((e, t) => ({ ...e, [`screen-${t}`]: i[t] }), {}) } } }); var bi = v((eT, Ku) => { l(); Ku.exports = { content: [], presets: [], darkMode: "media", theme: { accentColor: ({ theme: i }) => ({ ...i("colors"), auto: "auto" }), animation: { none: "none", spin: "spin 1s linear infinite", ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite", pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite", bounce: "bounce 1s infinite" }, aria: { busy: 'busy="true"', checked: 'checked="true"', disabled: 'disabled="true"', expanded: 'expanded="true"', hidden: 'hidden="true"', pressed: 'pressed="true"', readonly: 'readonly="true"', required: 'required="true"', selected: 'selected="true"' }, aspectRatio: { auto: "auto", square: "1 / 1", video: "16 / 9" }, backdropBlur: ({ theme: i }) => i("blur"), backdropBrightness: ({ theme: i }) => i("brightness"), backdropContrast: ({ theme: i }) => i("contrast"), backdropGrayscale: ({ theme: i }) => i("grayscale"), backdropHueRotate: ({ theme: i }) => i("hueRotate"), backdropInvert: ({ theme: i }) => i("invert"), backdropOpacity: ({ theme: i }) => i("opacity"), backdropSaturate: ({ theme: i }) => i("saturate"), backdropSepia: ({ theme: i }) => i("sepia"), backgroundColor: ({ theme: i }) => i("colors"), backgroundImage: { none: "none", "gradient-to-t": "linear-gradient(to top, var(--tw-gradient-stops))", "gradient-to-tr": "linear-gradient(to top right, var(--tw-gradient-stops))", "gradient-to-r": "linear-gradient(to right, var(--tw-gradient-stops))", "gradient-to-br": "linear-gradient(to bottom right, var(--tw-gradient-stops))", "gradient-to-b": "linear-gradient(to bottom, var(--tw-gradient-stops))", "gradient-to-bl": "linear-gradient(to bottom left, var(--tw-gradient-stops))", "gradient-to-l": "linear-gradient(to left, var(--tw-gradient-stops))", "gradient-to-tl": "linear-gradient(to top left, var(--tw-gradient-stops))" }, backgroundOpacity: ({ theme: i }) => i("opacity"), backgroundPosition: { bottom: "bottom", center: "center", left: "left", "left-bottom": "left bottom", "left-top": "left top", right: "right", "right-bottom": "right bottom", "right-top": "right top", top: "top" }, backgroundSize: { auto: "auto", cover: "cover", contain: "contain" }, blur: { 0: "0", none: "0", sm: "4px", DEFAULT: "8px", md: "12px", lg: "16px", xl: "24px", "2xl": "40px", "3xl": "64px" }, borderColor: ({ theme: i }) => ({ ...i("colors"), DEFAULT: i("colors.gray.200", "currentColor") }), borderOpacity: ({ theme: i }) => i("opacity"), borderRadius: { none: "0px", sm: "0.125rem", DEFAULT: "0.25rem", md: "0.375rem", lg: "0.5rem", xl: "0.75rem", "2xl": "1rem", "3xl": "1.5rem", full: "9999px" }, borderSpacing: ({ theme: i }) => ({ ...i("spacing") }), borderWidth: { DEFAULT: "1px", 0: "0px", 2: "2px", 4: "4px", 8: "8px" }, boxShadow: { sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)", DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)", md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)", lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)", xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)", "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)", inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)", none: "none" }, boxShadowColor: ({ theme: i }) => i("colors"), brightness: { 0: "0", 50: ".5", 75: ".75", 90: ".9", 95: ".95", 100: "1", 105: "1.05", 110: "1.1", 125: "1.25", 150: "1.5", 200: "2" }, caretColor: ({ theme: i }) => i("colors"), colors: ({ colors: i }) => ({ inherit: i.inherit, current: i.current, transparent: i.transparent, black: i.black, white: i.white, slate: i.slate, gray: i.gray, zinc: i.zinc, neutral: i.neutral, stone: i.stone, red: i.red, orange: i.orange, amber: i.amber, yellow: i.yellow, lime: i.lime, green: i.green, emerald: i.emerald, teal: i.teal, cyan: i.cyan, sky: i.sky, blue: i.blue, indigo: i.indigo, violet: i.violet, purple: i.purple, fuchsia: i.fuchsia, pink: i.pink, rose: i.rose }), columns: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12", "3xs": "16rem", "2xs": "18rem", xs: "20rem", sm: "24rem", md: "28rem", lg: "32rem", xl: "36rem", "2xl": "42rem", "3xl": "48rem", "4xl": "56rem", "5xl": "64rem", "6xl": "72rem", "7xl": "80rem" }, container: {}, content: { none: "none" }, contrast: { 0: "0", 50: ".5", 75: ".75", 100: "1", 125: "1.25", 150: "1.5", 200: "2" }, cursor: { auto: "auto", default: "default", pointer: "pointer", wait: "wait", text: "text", move: "move", help: "help", "not-allowed": "not-allowed", none: "none", "context-menu": "context-menu", progress: "progress", cell: "cell", crosshair: "crosshair", "vertical-text": "vertical-text", alias: "alias", copy: "copy", "no-drop": "no-drop", grab: "grab", grabbing: "grabbing", "all-scroll": "all-scroll", "col-resize": "col-resize", "row-resize": "row-resize", "n-resize": "n-resize", "e-resize": "e-resize", "s-resize": "s-resize", "w-resize": "w-resize", "ne-resize": "ne-resize", "nw-resize": "nw-resize", "se-resize": "se-resize", "sw-resize": "sw-resize", "ew-resize": "ew-resize", "ns-resize": "ns-resize", "nesw-resize": "nesw-resize", "nwse-resize": "nwse-resize", "zoom-in": "zoom-in", "zoom-out": "zoom-out" }, divideColor: ({ theme: i }) => i("borderColor"), divideOpacity: ({ theme: i }) => i("borderOpacity"), divideWidth: ({ theme: i }) => i("borderWidth"), dropShadow: { sm: "0 1px 1px rgb(0 0 0 / 0.05)", DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"], md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"], lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"], xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"], "2xl": "0 25px 25px rgb(0 0 0 / 0.15)", none: "0 0 #0000" }, fill: ({ theme: i }) => ({ none: "none", ...i("colors") }), flex: { 1: "1 1 0%", auto: "1 1 auto", initial: "0 1 auto", none: "none" }, flexBasis: ({ theme: i }) => ({ auto: "auto", ...i("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", "1/5": "20%", "2/5": "40%", "3/5": "60%", "4/5": "80%", "1/6": "16.666667%", "2/6": "33.333333%", "3/6": "50%", "4/6": "66.666667%", "5/6": "83.333333%", "1/12": "8.333333%", "2/12": "16.666667%", "3/12": "25%", "4/12": "33.333333%", "5/12": "41.666667%", "6/12": "50%", "7/12": "58.333333%", "8/12": "66.666667%", "9/12": "75%", "10/12": "83.333333%", "11/12": "91.666667%", full: "100%" }), flexGrow: { 0: "0", DEFAULT: "1" }, flexShrink: { 0: "0", DEFAULT: "1" }, fontFamily: { sans: ["ui-sans-serif", "system-ui", "sans-serif", '"Apple Color Emoji"', '"Segoe UI Emoji"', '"Segoe UI Symbol"', '"Noto Color Emoji"'], serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"], mono: ["ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", '"Liberation Mono"', '"Courier New"', "monospace"] }, fontSize: { xs: ["0.75rem", { lineHeight: "1rem" }], sm: ["0.875rem", { lineHeight: "1.25rem" }], base: ["1rem", { lineHeight: "1.5rem" }], lg: ["1.125rem", { lineHeight: "1.75rem" }], xl: ["1.25rem", { lineHeight: "1.75rem" }], "2xl": ["1.5rem", { lineHeight: "2rem" }], "3xl": ["1.875rem", { lineHeight: "2.25rem" }], "4xl": ["2.25rem", { lineHeight: "2.5rem" }], "5xl": ["3rem", { lineHeight: "1" }], "6xl": ["3.75rem", { lineHeight: "1" }], "7xl": ["4.5rem", { lineHeight: "1" }], "8xl": ["6rem", { lineHeight: "1" }], "9xl": ["8rem", { lineHeight: "1" }] }, fontWeight: { thin: "100", extralight: "200", light: "300", normal: "400", medium: "500", semibold: "600", bold: "700", extrabold: "800", black: "900" }, gap: ({ theme: i }) => i("spacing"), gradientColorStops: ({ theme: i }) => i("colors"), gradientColorStopPositions: { "0%": "0%", "5%": "5%", "10%": "10%", "15%": "15%", "20%": "20%", "25%": "25%", "30%": "30%", "35%": "35%", "40%": "40%", "45%": "45%", "50%": "50%", "55%": "55%", "60%": "60%", "65%": "65%", "70%": "70%", "75%": "75%", "80%": "80%", "85%": "85%", "90%": "90%", "95%": "95%", "100%": "100%" }, grayscale: { 0: "0", DEFAULT: "100%" }, gridAutoColumns: { auto: "auto", min: "min-content", max: "max-content", fr: "minmax(0, 1fr)" }, gridAutoRows: { auto: "auto", min: "min-content", max: "max-content", fr: "minmax(0, 1fr)" }, gridColumn: { auto: "auto", "span-1": "span 1 / span 1", "span-2": "span 2 / span 2", "span-3": "span 3 / span 3", "span-4": "span 4 / span 4", "span-5": "span 5 / span 5", "span-6": "span 6 / span 6", "span-7": "span 7 / span 7", "span-8": "span 8 / span 8", "span-9": "span 9 / span 9", "span-10": "span 10 / span 10", "span-11": "span 11 / span 11", "span-12": "span 12 / span 12", "span-full": "1 / -1" }, gridColumnEnd: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12", 13: "13" }, gridColumnStart: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12", 13: "13" }, gridRow: { auto: "auto", "span-1": "span 1 / span 1", "span-2": "span 2 / span 2", "span-3": "span 3 / span 3", "span-4": "span 4 / span 4", "span-5": "span 5 / span 5", "span-6": "span 6 / span 6", "span-7": "span 7 / span 7", "span-8": "span 8 / span 8", "span-9": "span 9 / span 9", "span-10": "span 10 / span 10", "span-11": "span 11 / span 11", "span-12": "span 12 / span 12", "span-full": "1 / -1" }, gridRowEnd: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12", 13: "13" }, gridRowStart: { auto: "auto", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12", 13: "13" }, gridTemplateColumns: { none: "none", subgrid: "subgrid", 1: "repeat(1, minmax(0, 1fr))", 2: "repeat(2, minmax(0, 1fr))", 3: "repeat(3, minmax(0, 1fr))", 4: "repeat(4, minmax(0, 1fr))", 5: "repeat(5, minmax(0, 1fr))", 6: "repeat(6, minmax(0, 1fr))", 7: "repeat(7, minmax(0, 1fr))", 8: "repeat(8, minmax(0, 1fr))", 9: "repeat(9, minmax(0, 1fr))", 10: "repeat(10, minmax(0, 1fr))", 11: "repeat(11, minmax(0, 1fr))", 12: "repeat(12, minmax(0, 1fr))" }, gridTemplateRows: { none: "none", subgrid: "subgrid", 1: "repeat(1, minmax(0, 1fr))", 2: "repeat(2, minmax(0, 1fr))", 3: "repeat(3, minmax(0, 1fr))", 4: "repeat(4, minmax(0, 1fr))", 5: "repeat(5, minmax(0, 1fr))", 6: "repeat(6, minmax(0, 1fr))", 7: "repeat(7, minmax(0, 1fr))", 8: "repeat(8, minmax(0, 1fr))", 9: "repeat(9, minmax(0, 1fr))", 10: "repeat(10, minmax(0, 1fr))", 11: "repeat(11, minmax(0, 1fr))", 12: "repeat(12, minmax(0, 1fr))" }, height: ({ theme: i }) => ({ auto: "auto", ...i("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", "1/5": "20%", "2/5": "40%", "3/5": "60%", "4/5": "80%", "1/6": "16.666667%", "2/6": "33.333333%", "3/6": "50%", "4/6": "66.666667%", "5/6": "83.333333%", full: "100%", screen: "100vh", svh: "100svh", lvh: "100lvh", dvh: "100dvh", min: "min-content", max: "max-content", fit: "fit-content" }), hueRotate: { 0: "0deg", 15: "15deg", 30: "30deg", 60: "60deg", 90: "90deg", 180: "180deg" }, inset: ({ theme: i }) => ({ auto: "auto", ...i("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", full: "100%" }), invert: { 0: "0", DEFAULT: "100%" }, keyframes: { spin: { to: { transform: "rotate(360deg)" } }, ping: { "75%, 100%": { transform: "scale(2)", opacity: "0" } }, pulse: { "50%": { opacity: ".5" } }, bounce: { "0%, 100%": { transform: "translateY(-25%)", animationTimingFunction: "cubic-bezier(0.8,0,1,1)" }, "50%": { transform: "none", animationTimingFunction: "cubic-bezier(0,0,0.2,1)" } } }, letterSpacing: { tighter: "-0.05em", tight: "-0.025em", normal: "0em", wide: "0.025em", wider: "0.05em", widest: "0.1em" }, lineHeight: { none: "1", tight: "1.25", snug: "1.375", normal: "1.5", relaxed: "1.625", loose: "2", 3: ".75rem", 4: "1rem", 5: "1.25rem", 6: "1.5rem", 7: "1.75rem", 8: "2rem", 9: "2.25rem", 10: "2.5rem" }, listStyleType: { none: "none", disc: "disc", decimal: "decimal" }, listStyleImage: { none: "none" }, margin: ({ theme: i }) => ({ auto: "auto", ...i("spacing") }), lineClamp: { 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6" }, maxHeight: ({ theme: i }) => ({ ...i("spacing"), none: "none", full: "100%", screen: "100vh", svh: "100svh", lvh: "100lvh", dvh: "100dvh", min: "min-content", max: "max-content", fit: "fit-content" }), maxWidth: ({ theme: i, breakpoints: e }) => ({ ...i("spacing"), none: "none", xs: "20rem", sm: "24rem", md: "28rem", lg: "32rem", xl: "36rem", "2xl": "42rem", "3xl": "48rem", "4xl": "56rem", "5xl": "64rem", "6xl": "72rem", "7xl": "80rem", full: "100%", min: "min-content", max: "max-content", fit: "fit-content", prose: "65ch", ...e(i("screens")) }), minHeight: ({ theme: i }) => ({ ...i("spacing"), full: "100%", screen: "100vh", svh: "100svh", lvh: "100lvh", dvh: "100dvh", min: "min-content", max: "max-content", fit: "fit-content" }), minWidth: ({ theme: i }) => ({ ...i("spacing"), full: "100%", min: "min-content", max: "max-content", fit: "fit-content" }), objectPosition: { bottom: "bottom", center: "center", left: "left", "left-bottom": "left bottom", "left-top": "left top", right: "right", "right-bottom": "right bottom", "right-top": "right top", top: "top" }, opacity: { 0: "0", 5: "0.05", 10: "0.1", 15: "0.15", 20: "0.2", 25: "0.25", 30: "0.3", 35: "0.35", 40: "0.4", 45: "0.45", 50: "0.5", 55: "0.55", 60: "0.6", 65: "0.65", 70: "0.7", 75: "0.75", 80: "0.8", 85: "0.85", 90: "0.9", 95: "0.95", 100: "1" }, order: { first: "-9999", last: "9999", none: "0", 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6", 7: "7", 8: "8", 9: "9", 10: "10", 11: "11", 12: "12" }, outlineColor: ({ theme: i }) => i("colors"), outlineOffset: { 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, outlineWidth: { 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, padding: ({ theme: i }) => i("spacing"), placeholderColor: ({ theme: i }) => i("colors"), placeholderOpacity: ({ theme: i }) => i("opacity"), ringColor: ({ theme: i }) => ({ DEFAULT: i("colors.blue.500", "#3b82f6"), ...i("colors") }), ringOffsetColor: ({ theme: i }) => i("colors"), ringOffsetWidth: { 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, ringOpacity: ({ theme: i }) => ({ DEFAULT: "0.5", ...i("opacity") }), ringWidth: { DEFAULT: "3px", 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, rotate: { 0: "0deg", 1: "1deg", 2: "2deg", 3: "3deg", 6: "6deg", 12: "12deg", 45: "45deg", 90: "90deg", 180: "180deg" }, saturate: { 0: "0", 50: ".5", 100: "1", 150: "1.5", 200: "2" }, scale: { 0: "0", 50: ".5", 75: ".75", 90: ".9", 95: ".95", 100: "1", 105: "1.05", 110: "1.1", 125: "1.25", 150: "1.5" }, screens: { sm: "640px", md: "768px", lg: "1024px", xl: "1280px", "2xl": "1536px" }, scrollMargin: ({ theme: i }) => ({ ...i("spacing") }), scrollPadding: ({ theme: i }) => i("spacing"), sepia: { 0: "0", DEFAULT: "100%" }, skew: { 0: "0deg", 1: "1deg", 2: "2deg", 3: "3deg", 6: "6deg", 12: "12deg" }, space: ({ theme: i }) => ({ ...i("spacing") }), spacing: { px: "1px", 0: "0px", .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", 11: "2.75rem", 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" }, stroke: ({ theme: i }) => ({ none: "none", ...i("colors") }), strokeWidth: { 0: "0", 1: "1", 2: "2" }, supports: {}, data: {}, textColor: ({ theme: i }) => i("colors"), textDecorationColor: ({ theme: i }) => i("colors"), textDecorationThickness: { auto: "auto", "from-font": "from-font", 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, textIndent: ({ theme: i }) => ({ ...i("spacing") }), textOpacity: ({ theme: i }) => i("opacity"), textUnderlineOffset: { auto: "auto", 0: "0px", 1: "1px", 2: "2px", 4: "4px", 8: "8px" }, transformOrigin: { center: "center", top: "top", "top-right": "top right", right: "right", "bottom-right": "bottom right", bottom: "bottom", "bottom-left": "bottom left", left: "left", "top-left": "top left" }, transitionDelay: { 0: "0s", 75: "75ms", 100: "100ms", 150: "150ms", 200: "200ms", 300: "300ms", 500: "500ms", 700: "700ms", 1e3: "1000ms" }, transitionDuration: { DEFAULT: "150ms", 0: "0s", 75: "75ms", 100: "100ms", 150: "150ms", 200: "200ms", 300: "300ms", 500: "500ms", 700: "700ms", 1e3: "1000ms" }, transitionProperty: { none: "none", all: "all", DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter", colors: "color, background-color, border-color, text-decoration-color, fill, stroke", opacity: "opacity", shadow: "box-shadow", transform: "transform" }, transitionTimingFunction: { DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)", linear: "linear", in: "cubic-bezier(0.4, 0, 1, 1)", out: "cubic-bezier(0, 0, 0.2, 1)", "in-out": "cubic-bezier(0.4, 0, 0.2, 1)" }, translate: ({ theme: i }) => ({ ...i("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", full: "100%" }), size: ({ theme: i }) => ({ auto: "auto", ...i("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", "1/5": "20%", "2/5": "40%", "3/5": "60%", "4/5": "80%", "1/6": "16.666667%", "2/6": "33.333333%", "3/6": "50%", "4/6": "66.666667%", "5/6": "83.333333%", "1/12": "8.333333%", "2/12": "16.666667%", "3/12": "25%", "4/12": "33.333333%", "5/12": "41.666667%", "6/12": "50%", "7/12": "58.333333%", "8/12": "66.666667%", "9/12": "75%", "10/12": "83.333333%", "11/12": "91.666667%", full: "100%", min: "min-content", max: "max-content", fit: "fit-content" }), width: ({ theme: i }) => ({ auto: "auto", ...i("spacing"), "1/2": "50%", "1/3": "33.333333%", "2/3": "66.666667%", "1/4": "25%", "2/4": "50%", "3/4": "75%", "1/5": "20%", "2/5": "40%", "3/5": "60%", "4/5": "80%", "1/6": "16.666667%", "2/6": "33.333333%", "3/6": "50%", "4/6": "66.666667%", "5/6": "83.333333%", "1/12": "8.333333%", "2/12": "16.666667%", "3/12": "25%", "4/12": "33.333333%", "5/12": "41.666667%", "6/12": "50%", "7/12": "58.333333%", "8/12": "66.666667%", "9/12": "75%", "10/12": "83.333333%", "11/12": "91.666667%", full: "100%", screen: "100vw", svw: "100svw", lvw: "100lvw", dvw: "100dvw", min: "min-content", max: "max-content", fit: "fit-content" }), willChange: { auto: "auto", scroll: "scroll-position", contents: "contents", transform: "transform" }, zIndex: { auto: "auto", 0: "0", 10: "10", 20: "20", 30: "30", 40: "40", 50: "50" } }, plugins: [] } }); function vi(i) { let e = (i?.presets ?? [Zu.default]).slice().reverse().flatMap(n => vi(n instanceof Function ? n() : n)), t = { respectDefaultRingColorOpacity: { theme: { ringColor: ({ theme: n }) => ({ DEFAULT: "#3b82f67f", ...n("colors") }) } }, disableColorOpacityUtilitiesByDefault: { corePlugins: { backgroundOpacity: !1, borderOpacity: !1, divideOpacity: !1, placeholderOpacity: !1, ringOpacity: !1, textOpacity: !1 } } }, r = Object.keys(t).filter(n => Z(i, n)).map(n => t[n]); return [i, ...r, ...e] } var Zu, ef = C(() => { l(); Zu = K(bi()); ze() }); var tf = {}; Ae(tf, { default: () => dr }); function dr(...i) { let [, ...e] = vi(i[0]); return ds([...i, ...e]) } var hs = C(() => { l(); Xu(); ef() }); var rf = {}; Ae(rf, { default: () => ee }); var ee, gt = C(() => { l(); ee = { resolve: i => i, extname: i => "." + i.split(".").pop() } }); function xi(i) { return typeof i == "object" && i !== null } function s0(i) { return Object.keys(i).length === 0 } function nf(i) { return typeof i == "string" || i instanceof String } function ms(i) { return xi(i) && i.config === void 0 && !s0(i) ? null : xi(i) && i.config !== void 0 && nf(i.config) ? ee.resolve(i.config) : xi(i) && i.config !== void 0 && xi(i.config) ? null : nf(i) ? ee.resolve(i) : a0() } function a0() { for (let i of n0) try { let e = ee.resolve(i); return re.accessSync(e), e } catch (e) { } return null } var n0, sf = C(() => { l(); je(); gt(); n0 = ["./tailwind.config.js", "./tailwind.config.cjs", "./tailwind.config.mjs", "./tailwind.config.ts"] }); var af = {}; Ae(af, { default: () => gs }); var gs, ys = C(() => { l(); gs = { parse: i => ({ href: i }) } }); var ws = v(() => { l() }); var ki = v((fT, uf) => { - l(); "use strict"; var of = (ci(), vu), lf = ws(), _t = class extends Error { - constructor(e, t, r, n, a, s) { super(e); this.name = "CssSyntaxError", this.reason = e, a && (this.file = a), n && (this.source = n), s && (this.plugin = s), typeof t != "undefined" && typeof r != "undefined" && (typeof t == "number" ? (this.line = t, this.column = r) : (this.line = t.line, this.column = t.column, this.endLine = r.line, this.endColumn = r.column)), this.setMessage(), Error.captureStackTrace && Error.captureStackTrace(this, _t) } setMessage() { this.message = this.plugin ? this.plugin + ": " : "", this.message += this.file ? this.file : "<css input>", typeof this.line != "undefined" && (this.message += ":" + this.line + ":" + this.column), this.message += ": " + this.reason } showSourceCode(e) { - if (!this.source) return ""; let t = this.source; e == null && (e = of.isColorSupported), lf && e && (t = lf(t)); let r = t.split(/\r?\n/), n = Math.max(this.line - 3, 0), a = Math.min(this.line + 2, r.length), s = String(a).length, o, u; if (e) { let { bold: c, red: f, gray: d } = of.createColors(!0); o = p => c(f(p)), u = p => d(p) } else o = u = c => c; return r.slice(n, a).map((c, f) => { - let d = n + 1 + f, p = " " + (" " + d).slice(-s) + " | "; if (d === this.line) { - let m = u(p.replace(/\d/g, " ")) + c.slice(0, this.column - 1).replace(/[^\t]/g, " "); return o(">") + u(p) + c + ` - `+ m + o("^") - } return " " + u(p) + c - }).join(` -`) - } toString() { - let e = this.showSourceCode(); return e && (e = ` - -`+ e + ` -`), this.name + ": " + this.message + e - } - }; uf.exports = _t; _t.default = _t - }); var Si = v((cT, bs) => { l(); "use strict"; bs.exports.isClean = Symbol("isClean"); bs.exports.my = Symbol("my") }); var vs = v((pT, cf) => { - l(); "use strict"; var ff = { - colon: ": ", indent: " ", beforeDecl: ` -`, beforeRule: ` -`, beforeOpen: " ", beforeClose: ` -`, beforeComment: ` -`, after: ` -`, emptyBody: "", commentLeft: " ", commentRight: " ", semicolon: !1 - }; function o0(i) { return i[0].toUpperCase() + i.slice(1) } var Ci = class { - constructor(e) { this.builder = e } stringify(e, t) { if (!this[e.type]) throw new Error("Unknown AST node type " + e.type + ". Maybe you need to change PostCSS stringifier."); this[e.type](e, t) } document(e) { this.body(e) } root(e) { this.body(e), e.raws.after && this.builder(e.raws.after) } comment(e) { let t = this.raw(e, "left", "commentLeft"), r = this.raw(e, "right", "commentRight"); this.builder("/*" + t + e.text + r + "*/", e) } decl(e, t) { let r = this.raw(e, "between", "colon"), n = e.prop + r + this.rawValue(e, "value"); e.important && (n += e.raws.important || " !important"), t && (n += ";"), this.builder(n, e) } rule(e) { this.block(e, this.rawValue(e, "selector")), e.raws.ownSemicolon && this.builder(e.raws.ownSemicolon, e, "end") } atrule(e, t) { let r = "@" + e.name, n = e.params ? this.rawValue(e, "params") : ""; if (typeof e.raws.afterName != "undefined" ? r += e.raws.afterName : n && (r += " "), e.nodes) this.block(e, r + n); else { let a = (e.raws.between || "") + (t ? ";" : ""); this.builder(r + n + a, e) } } body(e) { let t = e.nodes.length - 1; for (; t > 0 && e.nodes[t].type === "comment";)t -= 1; let r = this.raw(e, "semicolon"); for (let n = 0; n < e.nodes.length; n++) { let a = e.nodes[n], s = this.raw(a, "before"); s && this.builder(s), this.stringify(a, t !== n || r) } } block(e, t) { let r = this.raw(e, "between", "beforeOpen"); this.builder(t + r + "{", e, "start"); let n; e.nodes && e.nodes.length ? (this.body(e), n = this.raw(e, "after")) : n = this.raw(e, "after", "emptyBody"), n && this.builder(n), this.builder("}", e, "end") } raw(e, t, r) { let n; if (r || (r = t), t && (n = e.raws[t], typeof n != "undefined")) return n; let a = e.parent; if (r === "before" && (!a || a.type === "root" && a.first === e || a && a.type === "document")) return ""; if (!a) return ff[r]; let s = e.root(); if (s.rawCache || (s.rawCache = {}), typeof s.rawCache[r] != "undefined") return s.rawCache[r]; if (r === "before" || r === "after") return this.beforeAfter(e, r); { let o = "raw" + o0(r); this[o] ? n = this[o](s, e) : s.walk(u => { if (n = u.raws[t], typeof n != "undefined") return !1 }) } return typeof n == "undefined" && (n = ff[r]), s.rawCache[r] = n, n } rawSemicolon(e) { let t; return e.walk(r => { if (r.nodes && r.nodes.length && r.last.type === "decl" && (t = r.raws.semicolon, typeof t != "undefined")) return !1 }), t } rawEmptyBody(e) { let t; return e.walk(r => { if (r.nodes && r.nodes.length === 0 && (t = r.raws.after, typeof t != "undefined")) return !1 }), t } rawIndent(e) { - if (e.raws.indent) return e.raws.indent; let t; return e.walk(r => { - let n = r.parent; if (n && n !== e && n.parent && n.parent === e && typeof r.raws.before != "undefined") { - let a = r.raws.before.split(` -`); return t = a[a.length - 1], t = t.replace(/\S/g, ""), !1 - } - }), t - } rawBeforeComment(e, t) { - let r; return e.walkComments(n => { - if (typeof n.raws.before != "undefined") return r = n.raws.before, r.includes(` -`) && (r = r.replace(/[^\n]+$/, "")), !1 - }), typeof r == "undefined" ? r = this.raw(t, null, "beforeDecl") : r && (r = r.replace(/\S/g, "")), r - } rawBeforeDecl(e, t) { - let r; return e.walkDecls(n => { - if (typeof n.raws.before != "undefined") return r = n.raws.before, r.includes(` -`) && (r = r.replace(/[^\n]+$/, "")), !1 - }), typeof r == "undefined" ? r = this.raw(t, null, "beforeRule") : r && (r = r.replace(/\S/g, "")), r - } rawBeforeRule(e) { - let t; return e.walk(r => { - if (r.nodes && (r.parent !== e || e.first !== r) && typeof r.raws.before != "undefined") return t = r.raws.before, t.includes(` -`) && (t = t.replace(/[^\n]+$/, "")), !1 - }), t && (t = t.replace(/\S/g, "")), t - } rawBeforeClose(e) { - let t; return e.walk(r => { - if (r.nodes && r.nodes.length > 0 && typeof r.raws.after != "undefined") return t = r.raws.after, t.includes(` -`) && (t = t.replace(/[^\n]+$/, "")), !1 - }), t && (t = t.replace(/\S/g, "")), t - } rawBeforeOpen(e) { let t; return e.walk(r => { if (r.type !== "decl" && (t = r.raws.between, typeof t != "undefined")) return !1 }), t } rawColon(e) { let t; return e.walkDecls(r => { if (typeof r.raws.between != "undefined") return t = r.raws.between.replace(/[^\s:]/g, ""), !1 }), t } beforeAfter(e, t) { - let r; e.type === "decl" ? r = this.raw(e, null, "beforeDecl") : e.type === "comment" ? r = this.raw(e, null, "beforeComment") : t === "before" ? r = this.raw(e, null, "beforeRule") : r = this.raw(e, null, "beforeClose"); let n = e.parent, a = 0; for (; n && n.type !== "root";)a += 1, n = n.parent; if (r.includes(` -`)) { let s = this.raw(e, null, "indent"); if (s.length) for (let o = 0; o < a; o++)r += s } return r - } rawValue(e, t) { let r = e[t], n = e.raws[t]; return n && n.value === r ? n.raw : r } - }; cf.exports = Ci; Ci.default = Ci - }); var hr = v((dT, pf) => { l(); "use strict"; var l0 = vs(); function xs(i, e) { new l0(e).stringify(i) } pf.exports = xs; xs.default = xs }); var mr = v((hT, df) => { - l(); "use strict"; var { isClean: Ai, my: u0 } = Si(), f0 = ki(), c0 = vs(), p0 = hr(); function ks(i, e) { let t = new i.constructor; for (let r in i) { if (!Object.prototype.hasOwnProperty.call(i, r) || r === "proxyCache") continue; let n = i[r], a = typeof n; r === "parent" && a === "object" ? e && (t[r] = e) : r === "source" ? t[r] = n : Array.isArray(n) ? t[r] = n.map(s => ks(s, t)) : (a === "object" && n !== null && (n = ks(n)), t[r] = n) } return t } var _i = class { - constructor(e = {}) { this.raws = {}, this[Ai] = !1, this[u0] = !0; for (let t in e) if (t === "nodes") { this.nodes = []; for (let r of e[t]) typeof r.clone == "function" ? this.append(r.clone()) : this.append(r) } else this[t] = e[t] } error(e, t = {}) { if (this.source) { let { start: r, end: n } = this.rangeBy(t); return this.source.input.error(e, { line: r.line, column: r.column }, { line: n.line, column: n.column }, t) } return new f0(e) } warn(e, t, r) { let n = { node: this }; for (let a in r) n[a] = r[a]; return e.warn(t, n) } remove() { return this.parent && this.parent.removeChild(this), this.parent = void 0, this } toString(e = p0) { e.stringify && (e = e.stringify); let t = ""; return e(this, r => { t += r }), t } assign(e = {}) { for (let t in e) this[t] = e[t]; return this } clone(e = {}) { let t = ks(this); for (let r in e) t[r] = e[r]; return t } cloneBefore(e = {}) { let t = this.clone(e); return this.parent.insertBefore(this, t), t } cloneAfter(e = {}) { let t = this.clone(e); return this.parent.insertAfter(this, t), t } replaceWith(...e) { if (this.parent) { let t = this, r = !1; for (let n of e) n === this ? r = !0 : r ? (this.parent.insertAfter(t, n), t = n) : this.parent.insertBefore(t, n); r || this.remove() } return this } next() { if (!this.parent) return; let e = this.parent.index(this); return this.parent.nodes[e + 1] } prev() { if (!this.parent) return; let e = this.parent.index(this); return this.parent.nodes[e - 1] } before(e) { return this.parent.insertBefore(this, e), this } after(e) { return this.parent.insertAfter(this, e), this } root() { let e = this; for (; e.parent && e.parent.type !== "document";)e = e.parent; return e } raw(e, t) { return new c0().raw(this, e, t) } cleanRaws(e) { delete this.raws.before, delete this.raws.after, e || delete this.raws.between } toJSON(e, t) { let r = {}, n = t == null; t = t || new Map; let a = 0; for (let s in this) { if (!Object.prototype.hasOwnProperty.call(this, s) || s === "parent" || s === "proxyCache") continue; let o = this[s]; if (Array.isArray(o)) r[s] = o.map(u => typeof u == "object" && u.toJSON ? u.toJSON(null, t) : u); else if (typeof o == "object" && o.toJSON) r[s] = o.toJSON(null, t); else if (s === "source") { let u = t.get(o.input); u == null && (u = a, t.set(o.input, a), a++), r[s] = { inputId: u, start: o.start, end: o.end } } else r[s] = o } return n && (r.inputs = [...t.keys()].map(s => s.toJSON())), r } positionInside(e) { - let t = this.toString(), r = this.source.start.column, n = this.source.start.line; for (let a = 0; a < e; a++)t[a] === ` -`? (r = 1, n += 1) : r += 1; return { line: n, column: r } - } positionBy(e) { let t = this.source.start; if (e.index) t = this.positionInside(e.index); else if (e.word) { let r = this.toString().indexOf(e.word); r !== -1 && (t = this.positionInside(r)) } return t } rangeBy(e) { let t = { line: this.source.start.line, column: this.source.start.column }, r = this.source.end ? { line: this.source.end.line, column: this.source.end.column + 1 } : { line: t.line, column: t.column + 1 }; if (e.word) { let n = this.toString().indexOf(e.word); n !== -1 && (t = this.positionInside(n), r = this.positionInside(n + e.word.length)) } else e.start ? t = { line: e.start.line, column: e.start.column } : e.index && (t = this.positionInside(e.index)), e.end ? r = { line: e.end.line, column: e.end.column } : e.endIndex ? r = this.positionInside(e.endIndex) : e.index && (r = this.positionInside(e.index + 1)); return (r.line < t.line || r.line === t.line && r.column <= t.column) && (r = { line: t.line, column: t.column + 1 }), { start: t, end: r } } getProxyProcessor() { return { set(e, t, r) { return e[t] === r || (e[t] = r, (t === "prop" || t === "value" || t === "name" || t === "params" || t === "important" || t === "text") && e.markDirty()), !0 }, get(e, t) { return t === "proxyOf" ? e : t === "root" ? () => e.root().toProxy() : e[t] } } } toProxy() { return this.proxyCache || (this.proxyCache = new Proxy(this, this.getProxyProcessor())), this.proxyCache } addToError(e) { if (e.postcssNode = this, e.stack && this.source && /\n\s{4}at /.test(e.stack)) { let t = this.source; e.stack = e.stack.replace(/\n\s{4}at /, `$&${t.input.from}:${t.start.line}:${t.start.column}$&`) } return e } markDirty() { if (this[Ai]) { this[Ai] = !1; let e = this; for (; e = e.parent;)e[Ai] = !1 } } get proxyOf() { return this } - }; df.exports = _i; _i.default = _i - }); var gr = v((mT, hf) => { l(); "use strict"; var d0 = mr(), Oi = class extends d0 { constructor(e) { e && typeof e.value != "undefined" && typeof e.value != "string" && (e = { ...e, value: String(e.value) }); super(e); this.type = "decl" } get variable() { return this.prop.startsWith("--") || this.prop[0] === "$" } }; hf.exports = Oi; Oi.default = Oi }); var Ss = v((gT, mf) => { l(); mf.exports = function (i, e) { return { generate: () => { let t = ""; return i(e, r => { t += r }), [t] } } } }); var yr = v((yT, gf) => { l(); "use strict"; var h0 = mr(), Ei = class extends h0 { constructor(e) { super(e); this.type = "comment" } }; gf.exports = Ei; Ei.default = Ei }); var it = v((wT, Af) => { l(); "use strict"; var { isClean: yf, my: wf } = Si(), bf = gr(), vf = yr(), m0 = mr(), xf, Cs, As, kf; function Sf(i) { return i.map(e => (e.nodes && (e.nodes = Sf(e.nodes)), delete e.source, e)) } function Cf(i) { if (i[yf] = !1, i.proxyOf.nodes) for (let e of i.proxyOf.nodes) Cf(e) } var we = class extends m0 { push(e) { return e.parent = this, this.proxyOf.nodes.push(e), this } each(e) { if (!this.proxyOf.nodes) return; let t = this.getIterator(), r, n; for (; this.indexes[t] < this.proxyOf.nodes.length && (r = this.indexes[t], n = e(this.proxyOf.nodes[r], r), n !== !1);)this.indexes[t] += 1; return delete this.indexes[t], n } walk(e) { return this.each((t, r) => { let n; try { n = e(t, r) } catch (a) { throw t.addToError(a) } return n !== !1 && t.walk && (n = t.walk(e)), n }) } walkDecls(e, t) { return t ? e instanceof RegExp ? this.walk((r, n) => { if (r.type === "decl" && e.test(r.prop)) return t(r, n) }) : this.walk((r, n) => { if (r.type === "decl" && r.prop === e) return t(r, n) }) : (t = e, this.walk((r, n) => { if (r.type === "decl") return t(r, n) })) } walkRules(e, t) { return t ? e instanceof RegExp ? this.walk((r, n) => { if (r.type === "rule" && e.test(r.selector)) return t(r, n) }) : this.walk((r, n) => { if (r.type === "rule" && r.selector === e) return t(r, n) }) : (t = e, this.walk((r, n) => { if (r.type === "rule") return t(r, n) })) } walkAtRules(e, t) { return t ? e instanceof RegExp ? this.walk((r, n) => { if (r.type === "atrule" && e.test(r.name)) return t(r, n) }) : this.walk((r, n) => { if (r.type === "atrule" && r.name === e) return t(r, n) }) : (t = e, this.walk((r, n) => { if (r.type === "atrule") return t(r, n) })) } walkComments(e) { return this.walk((t, r) => { if (t.type === "comment") return e(t, r) }) } append(...e) { for (let t of e) { let r = this.normalize(t, this.last); for (let n of r) this.proxyOf.nodes.push(n) } return this.markDirty(), this } prepend(...e) { e = e.reverse(); for (let t of e) { let r = this.normalize(t, this.first, "prepend").reverse(); for (let n of r) this.proxyOf.nodes.unshift(n); for (let n in this.indexes) this.indexes[n] = this.indexes[n] + r.length } return this.markDirty(), this } cleanRaws(e) { if (super.cleanRaws(e), this.nodes) for (let t of this.nodes) t.cleanRaws(e) } insertBefore(e, t) { let r = this.index(e), n = r === 0 ? "prepend" : !1, a = this.normalize(t, this.proxyOf.nodes[r], n).reverse(); r = this.index(e); for (let o of a) this.proxyOf.nodes.splice(r, 0, o); let s; for (let o in this.indexes) s = this.indexes[o], r <= s && (this.indexes[o] = s + a.length); return this.markDirty(), this } insertAfter(e, t) { let r = this.index(e), n = this.normalize(t, this.proxyOf.nodes[r]).reverse(); r = this.index(e); for (let s of n) this.proxyOf.nodes.splice(r + 1, 0, s); let a; for (let s in this.indexes) a = this.indexes[s], r < a && (this.indexes[s] = a + n.length); return this.markDirty(), this } removeChild(e) { e = this.index(e), this.proxyOf.nodes[e].parent = void 0, this.proxyOf.nodes.splice(e, 1); let t; for (let r in this.indexes) t = this.indexes[r], t >= e && (this.indexes[r] = t - 1); return this.markDirty(), this } removeAll() { for (let e of this.proxyOf.nodes) e.parent = void 0; return this.proxyOf.nodes = [], this.markDirty(), this } replaceValues(e, t, r) { return r || (r = t, t = {}), this.walkDecls(n => { t.props && !t.props.includes(n.prop) || t.fast && !n.value.includes(t.fast) || (n.value = n.value.replace(e, r)) }), this.markDirty(), this } every(e) { return this.nodes.every(e) } some(e) { return this.nodes.some(e) } index(e) { return typeof e == "number" ? e : (e.proxyOf && (e = e.proxyOf), this.proxyOf.nodes.indexOf(e)) } get first() { if (!!this.proxyOf.nodes) return this.proxyOf.nodes[0] } get last() { if (!!this.proxyOf.nodes) return this.proxyOf.nodes[this.proxyOf.nodes.length - 1] } normalize(e, t) { if (typeof e == "string") e = Sf(xf(e).nodes); else if (Array.isArray(e)) { e = e.slice(0); for (let n of e) n.parent && n.parent.removeChild(n, "ignore") } else if (e.type === "root" && this.type !== "document") { e = e.nodes.slice(0); for (let n of e) n.parent && n.parent.removeChild(n, "ignore") } else if (e.type) e = [e]; else if (e.prop) { if (typeof e.value == "undefined") throw new Error("Value field is missed in node creation"); typeof e.value != "string" && (e.value = String(e.value)), e = [new bf(e)] } else if (e.selector) e = [new Cs(e)]; else if (e.name) e = [new As(e)]; else if (e.text) e = [new vf(e)]; else throw new Error("Unknown node type in node creation"); return e.map(n => (n[wf] || we.rebuild(n), n = n.proxyOf, n.parent && n.parent.removeChild(n), n[yf] && Cf(n), typeof n.raws.before == "undefined" && t && typeof t.raws.before != "undefined" && (n.raws.before = t.raws.before.replace(/\S/g, "")), n.parent = this.proxyOf, n)) } getProxyProcessor() { return { set(e, t, r) { return e[t] === r || (e[t] = r, (t === "name" || t === "params" || t === "selector") && e.markDirty()), !0 }, get(e, t) { return t === "proxyOf" ? e : e[t] ? t === "each" || typeof t == "string" && t.startsWith("walk") ? (...r) => e[t](...r.map(n => typeof n == "function" ? (a, s) => n(a.toProxy(), s) : n)) : t === "every" || t === "some" ? r => e[t]((n, ...a) => r(n.toProxy(), ...a)) : t === "root" ? () => e.root().toProxy() : t === "nodes" ? e.nodes.map(r => r.toProxy()) : t === "first" || t === "last" ? e[t].toProxy() : e[t] : e[t] } } } getIterator() { this.lastEach || (this.lastEach = 0), this.indexes || (this.indexes = {}), this.lastEach += 1; let e = this.lastEach; return this.indexes[e] = 0, e } }; we.registerParse = i => { xf = i }; we.registerRule = i => { Cs = i }; we.registerAtRule = i => { As = i }; we.registerRoot = i => { kf = i }; Af.exports = we; we.default = we; we.rebuild = i => { i.type === "atrule" ? Object.setPrototypeOf(i, As.prototype) : i.type === "rule" ? Object.setPrototypeOf(i, Cs.prototype) : i.type === "decl" ? Object.setPrototypeOf(i, bf.prototype) : i.type === "comment" ? Object.setPrototypeOf(i, vf.prototype) : i.type === "root" && Object.setPrototypeOf(i, kf.prototype), i[wf] = !0, i.nodes && i.nodes.forEach(e => { we.rebuild(e) }) } }); var Ti = v((bT, Ef) => { l(); "use strict"; var g0 = it(), _f, Of, Ot = class extends g0 { constructor(e) { super({ type: "document", ...e }); this.nodes || (this.nodes = []) } toResult(e = {}) { return new _f(new Of, this, e).stringify() } }; Ot.registerLazyResult = i => { _f = i }; Ot.registerProcessor = i => { Of = i }; Ef.exports = Ot; Ot.default = Ot }); var _s = v((vT, Pf) => { l(); "use strict"; var Tf = {}; Pf.exports = function (e) { Tf[e] || (Tf[e] = !0, typeof console != "undefined" && console.warn && console.warn(e)) } }); var Os = v((xT, Df) => { l(); "use strict"; var Pi = class { constructor(e, t = {}) { if (this.type = "warning", this.text = e, t.node && t.node.source) { let r = t.node.rangeBy(t); this.line = r.start.line, this.column = r.start.column, this.endLine = r.end.line, this.endColumn = r.end.column } for (let r in t) this[r] = t[r] } toString() { return this.node ? this.node.error(this.text, { plugin: this.plugin, index: this.index, word: this.word }).message : this.plugin ? this.plugin + ": " + this.text : this.text } }; Df.exports = Pi; Pi.default = Pi }); var Ii = v((kT, If) => { l(); "use strict"; var y0 = Os(), Di = class { constructor(e, t, r) { this.processor = e, this.messages = [], this.root = t, this.opts = r, this.css = void 0, this.map = void 0 } toString() { return this.css } warn(e, t = {}) { t.plugin || this.lastPlugin && this.lastPlugin.postcssPlugin && (t.plugin = this.lastPlugin.postcssPlugin); let r = new y0(e, t); return this.messages.push(r), r } warnings() { return this.messages.filter(e => e.type === "warning") } get content() { return this.css } }; If.exports = Di; Di.default = Di }); var Ff = v((ST, Bf) => { - l(); "use strict"; var Es = "'".charCodeAt(0), qf = '"'.charCodeAt(0), qi = "\\".charCodeAt(0), Rf = "/".charCodeAt(0), Ri = ` -`.charCodeAt(0), wr = " ".charCodeAt(0), Mi = "\f".charCodeAt(0), Bi = " ".charCodeAt(0), Fi = "\r".charCodeAt(0), w0 = "[".charCodeAt(0), b0 = "]".charCodeAt(0), v0 = "(".charCodeAt(0), x0 = ")".charCodeAt(0), k0 = "{".charCodeAt(0), S0 = "}".charCodeAt(0), C0 = ";".charCodeAt(0), A0 = "*".charCodeAt(0), _0 = ":".charCodeAt(0), O0 = "@".charCodeAt(0), Ni = /[\t\n\f\r "#'()/;[\\\]{}]/g, Li = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g, E0 = /.[\n"'(/\\]/, Mf = /[\da-f]/i; Bf.exports = function (e, t = {}) { let r = e.css.valueOf(), n = t.ignoreErrors, a, s, o, u, c, f, d, p, m, w, x = r.length, y = 0, b = [], k = []; function S() { return y } function _(q) { throw e.error("Unclosed " + q, y) } function O() { return k.length === 0 && y >= x } function I(q) { if (k.length) return k.pop(); if (y >= x) return; let X = q ? q.ignoreUnclosed : !1; switch (a = r.charCodeAt(y), a) { case Ri: case wr: case Bi: case Fi: case Mi: { s = y; do s += 1, a = r.charCodeAt(s); while (a === wr || a === Ri || a === Bi || a === Fi || a === Mi); w = ["space", r.slice(y, s)], y = s - 1; break } case w0: case b0: case k0: case S0: case _0: case C0: case x0: { let le = String.fromCharCode(a); w = [le, le, y]; break } case v0: { if (p = b.length ? b.pop()[1] : "", m = r.charCodeAt(y + 1), p === "url" && m !== Es && m !== qf && m !== wr && m !== Ri && m !== Bi && m !== Mi && m !== Fi) { s = y; do { if (f = !1, s = r.indexOf(")", s + 1), s === -1) if (n || X) { s = y; break } else _("bracket"); for (d = s; r.charCodeAt(d - 1) === qi;)d -= 1, f = !f } while (f); w = ["brackets", r.slice(y, s + 1), y, s], y = s } else s = r.indexOf(")", y + 1), u = r.slice(y, s + 1), s === -1 || E0.test(u) ? w = ["(", "(", y] : (w = ["brackets", u, y, s], y = s); break } case Es: case qf: { o = a === Es ? "'" : '"', s = y; do { if (f = !1, s = r.indexOf(o, s + 1), s === -1) if (n || X) { s = y + 1; break } else _("string"); for (d = s; r.charCodeAt(d - 1) === qi;)d -= 1, f = !f } while (f); w = ["string", r.slice(y, s + 1), y, s], y = s; break } case O0: { Ni.lastIndex = y + 1, Ni.test(r), Ni.lastIndex === 0 ? s = r.length - 1 : s = Ni.lastIndex - 2, w = ["at-word", r.slice(y, s + 1), y, s], y = s; break } case qi: { for (s = y, c = !0; r.charCodeAt(s + 1) === qi;)s += 1, c = !c; if (a = r.charCodeAt(s + 1), c && a !== Rf && a !== wr && a !== Ri && a !== Bi && a !== Fi && a !== Mi && (s += 1, Mf.test(r.charAt(s)))) { for (; Mf.test(r.charAt(s + 1));)s += 1; r.charCodeAt(s + 1) === wr && (s += 1) } w = ["word", r.slice(y, s + 1), y, s], y = s; break } default: { a === Rf && r.charCodeAt(y + 1) === A0 ? (s = r.indexOf("*/", y + 2) + 1, s === 0 && (n || X ? s = r.length : _("comment")), w = ["comment", r.slice(y, s + 1), y, s], y = s) : (Li.lastIndex = y + 1, Li.test(r), Li.lastIndex === 0 ? s = r.length - 1 : s = Li.lastIndex - 2, w = ["word", r.slice(y, s + 1), y, s], b.push(w), y = s); break } }return y++, w } function B(q) { k.push(q) } return { back: B, nextToken: I, endOfFile: O, position: S } } - }); var $i = v((CT, Lf) => { l(); "use strict"; var Nf = it(), br = class extends Nf { constructor(e) { super(e); this.type = "atrule" } append(...e) { return this.proxyOf.nodes || (this.nodes = []), super.append(...e) } prepend(...e) { return this.proxyOf.nodes || (this.nodes = []), super.prepend(...e) } }; Lf.exports = br; br.default = br; Nf.registerAtRule(br) }); var Et = v((AT, Vf) => { l(); "use strict"; var $f = it(), jf, zf, yt = class extends $f { constructor(e) { super(e); this.type = "root", this.nodes || (this.nodes = []) } removeChild(e, t) { let r = this.index(e); return !t && r === 0 && this.nodes.length > 1 && (this.nodes[1].raws.before = this.nodes[r].raws.before), super.removeChild(e) } normalize(e, t, r) { let n = super.normalize(e); if (t) { if (r === "prepend") this.nodes.length > 1 ? t.raws.before = this.nodes[1].raws.before : delete t.raws.before; else if (this.first !== t) for (let a of n) a.raws.before = t.raws.before } return n } toResult(e = {}) { return new jf(new zf, this, e).stringify() } }; yt.registerLazyResult = i => { jf = i }; yt.registerProcessor = i => { zf = i }; Vf.exports = yt; yt.default = yt; $f.registerRoot(yt) }); var Ts = v((_T, Uf) => { - l(); "use strict"; var vr = { - split(i, e, t) { let r = [], n = "", a = !1, s = 0, o = !1, u = "", c = !1; for (let f of i) c ? c = !1 : f === "\\" ? c = !0 : o ? f === u && (o = !1) : f === '"' || f === "'" ? (o = !0, u = f) : f === "(" ? s += 1 : f === ")" ? s > 0 && (s -= 1) : s === 0 && e.includes(f) && (a = !0), a ? (n !== "" && r.push(n.trim()), n = "", a = !1) : n += f; return (t || n !== "") && r.push(n.trim()), r }, space(i) { - let e = [" ", ` -`, " "]; return vr.split(i, e) - }, comma(i) { return vr.split(i, [","], !0) } - }; Uf.exports = vr; vr.default = vr - }); var ji = v((OT, Gf) => { l(); "use strict"; var Wf = it(), T0 = Ts(), xr = class extends Wf { constructor(e) { super(e); this.type = "rule", this.nodes || (this.nodes = []) } get selectors() { return T0.comma(this.selector) } set selectors(e) { let t = this.selector ? this.selector.match(/,\s*/) : null, r = t ? t[0] : "," + this.raw("between", "beforeOpen"); this.selector = e.join(r) } }; Gf.exports = xr; xr.default = xr; Wf.registerRule(xr) }); var Xf = v((ET, Jf) => { l(); "use strict"; var P0 = gr(), D0 = Ff(), I0 = yr(), q0 = $i(), R0 = Et(), Hf = ji(), Yf = { empty: !0, space: !0 }; function M0(i) { for (let e = i.length - 1; e >= 0; e--) { let t = i[e], r = t[3] || t[2]; if (r) return r } } var Qf = class { constructor(e) { this.input = e, this.root = new R0, this.current = this.root, this.spaces = "", this.semicolon = !1, this.customProperty = !1, this.createTokenizer(), this.root.source = { input: e, start: { offset: 0, line: 1, column: 1 } } } createTokenizer() { this.tokenizer = D0(this.input) } parse() { let e; for (; !this.tokenizer.endOfFile();)switch (e = this.tokenizer.nextToken(), e[0]) { case "space": this.spaces += e[1]; break; case ";": this.freeSemicolon(e); break; case "}": this.end(e); break; case "comment": this.comment(e); break; case "at-word": this.atrule(e); break; case "{": this.emptyRule(e); break; default: this.other(e); break }this.endFile() } comment(e) { let t = new I0; this.init(t, e[2]), t.source.end = this.getPosition(e[3] || e[2]); let r = e[1].slice(2, -2); if (/^\s*$/.test(r)) t.text = "", t.raws.left = r, t.raws.right = ""; else { let n = r.match(/^(\s*)([^]*\S)(\s*)$/); t.text = n[2], t.raws.left = n[1], t.raws.right = n[3] } } emptyRule(e) { let t = new Hf; this.init(t, e[2]), t.selector = "", t.raws.between = "", this.current = t } other(e) { let t = !1, r = null, n = !1, a = null, s = [], o = e[1].startsWith("--"), u = [], c = e; for (; c;) { if (r = c[0], u.push(c), r === "(" || r === "[") a || (a = c), s.push(r === "(" ? ")" : "]"); else if (o && n && r === "{") a || (a = c), s.push("}"); else if (s.length === 0) if (r === ";") if (n) { this.decl(u, o); return } else break; else if (r === "{") { this.rule(u); return } else if (r === "}") { this.tokenizer.back(u.pop()), t = !0; break } else r === ":" && (n = !0); else r === s[s.length - 1] && (s.pop(), s.length === 0 && (a = null)); c = this.tokenizer.nextToken() } if (this.tokenizer.endOfFile() && (t = !0), s.length > 0 && this.unclosedBracket(a), t && n) { if (!o) for (; u.length && (c = u[u.length - 1][0], !(c !== "space" && c !== "comment"));)this.tokenizer.back(u.pop()); this.decl(u, o) } else this.unknownWord(u) } rule(e) { e.pop(); let t = new Hf; this.init(t, e[0][2]), t.raws.between = this.spacesAndCommentsFromEnd(e), this.raw(t, "selector", e), this.current = t } decl(e, t) { let r = new P0; this.init(r, e[0][2]); let n = e[e.length - 1]; for (n[0] === ";" && (this.semicolon = !0, e.pop()), r.source.end = this.getPosition(n[3] || n[2] || M0(e)); e[0][0] !== "word";)e.length === 1 && this.unknownWord(e), r.raws.before += e.shift()[1]; for (r.source.start = this.getPosition(e[0][2]), r.prop = ""; e.length;) { let c = e[0][0]; if (c === ":" || c === "space" || c === "comment") break; r.prop += e.shift()[1] } r.raws.between = ""; let a; for (; e.length;)if (a = e.shift(), a[0] === ":") { r.raws.between += a[1]; break } else a[0] === "word" && /\w/.test(a[1]) && this.unknownWord([a]), r.raws.between += a[1]; (r.prop[0] === "_" || r.prop[0] === "*") && (r.raws.before += r.prop[0], r.prop = r.prop.slice(1)); let s = [], o; for (; e.length && (o = e[0][0], !(o !== "space" && o !== "comment"));)s.push(e.shift()); this.precheckMissedSemicolon(e); for (let c = e.length - 1; c >= 0; c--) { if (a = e[c], a[1].toLowerCase() === "!important") { r.important = !0; let f = this.stringFrom(e, c); f = this.spacesFromEnd(e) + f, f !== " !important" && (r.raws.important = f); break } else if (a[1].toLowerCase() === "important") { let f = e.slice(0), d = ""; for (let p = c; p > 0; p--) { let m = f[p][0]; if (d.trim().indexOf("!") === 0 && m !== "space") break; d = f.pop()[1] + d } d.trim().indexOf("!") === 0 && (r.important = !0, r.raws.important = d, e = f) } if (a[0] !== "space" && a[0] !== "comment") break } e.some(c => c[0] !== "space" && c[0] !== "comment") && (r.raws.between += s.map(c => c[1]).join(""), s = []), this.raw(r, "value", s.concat(e), t), r.value.includes(":") && !t && this.checkMissedSemicolon(e) } atrule(e) { let t = new q0; t.name = e[1].slice(1), t.name === "" && this.unnamedAtrule(t, e), this.init(t, e[2]); let r, n, a, s = !1, o = !1, u = [], c = []; for (; !this.tokenizer.endOfFile();) { if (e = this.tokenizer.nextToken(), r = e[0], r === "(" || r === "[" ? c.push(r === "(" ? ")" : "]") : r === "{" && c.length > 0 ? c.push("}") : r === c[c.length - 1] && c.pop(), c.length === 0) if (r === ";") { t.source.end = this.getPosition(e[2]), this.semicolon = !0; break } else if (r === "{") { o = !0; break } else if (r === "}") { if (u.length > 0) { for (a = u.length - 1, n = u[a]; n && n[0] === "space";)n = u[--a]; n && (t.source.end = this.getPosition(n[3] || n[2])) } this.end(e); break } else u.push(e); else u.push(e); if (this.tokenizer.endOfFile()) { s = !0; break } } t.raws.between = this.spacesAndCommentsFromEnd(u), u.length ? (t.raws.afterName = this.spacesAndCommentsFromStart(u), this.raw(t, "params", u), s && (e = u[u.length - 1], t.source.end = this.getPosition(e[3] || e[2]), this.spaces = t.raws.between, t.raws.between = "")) : (t.raws.afterName = "", t.params = ""), o && (t.nodes = [], this.current = t) } end(e) { this.current.nodes && this.current.nodes.length && (this.current.raws.semicolon = this.semicolon), this.semicolon = !1, this.current.raws.after = (this.current.raws.after || "") + this.spaces, this.spaces = "", this.current.parent ? (this.current.source.end = this.getPosition(e[2]), this.current = this.current.parent) : this.unexpectedClose(e) } endFile() { this.current.parent && this.unclosedBlock(), this.current.nodes && this.current.nodes.length && (this.current.raws.semicolon = this.semicolon), this.current.raws.after = (this.current.raws.after || "") + this.spaces } freeSemicolon(e) { if (this.spaces += e[1], this.current.nodes) { let t = this.current.nodes[this.current.nodes.length - 1]; t && t.type === "rule" && !t.raws.ownSemicolon && (t.raws.ownSemicolon = this.spaces, this.spaces = "") } } getPosition(e) { let t = this.input.fromOffset(e); return { offset: e, line: t.line, column: t.col } } init(e, t) { this.current.push(e), e.source = { start: this.getPosition(t), input: this.input }, e.raws.before = this.spaces, this.spaces = "", e.type !== "comment" && (this.semicolon = !1) } raw(e, t, r, n) { let a, s, o = r.length, u = "", c = !0, f, d; for (let p = 0; p < o; p += 1)a = r[p], s = a[0], s === "space" && p === o - 1 && !n ? c = !1 : s === "comment" ? (d = r[p - 1] ? r[p - 1][0] : "empty", f = r[p + 1] ? r[p + 1][0] : "empty", !Yf[d] && !Yf[f] ? u.slice(-1) === "," ? c = !1 : u += a[1] : c = !1) : u += a[1]; if (!c) { let p = r.reduce((m, w) => m + w[1], ""); e.raws[t] = { value: u, raw: p } } e[t] = u } spacesAndCommentsFromEnd(e) { let t, r = ""; for (; e.length && (t = e[e.length - 1][0], !(t !== "space" && t !== "comment"));)r = e.pop()[1] + r; return r } spacesAndCommentsFromStart(e) { let t, r = ""; for (; e.length && (t = e[0][0], !(t !== "space" && t !== "comment"));)r += e.shift()[1]; return r } spacesFromEnd(e) { let t, r = ""; for (; e.length && (t = e[e.length - 1][0], t === "space");)r = e.pop()[1] + r; return r } stringFrom(e, t) { let r = ""; for (let n = t; n < e.length; n++)r += e[n][1]; return e.splice(t, e.length - t), r } colon(e) { let t = 0, r, n, a; for (let [s, o] of e.entries()) { if (r = o, n = r[0], n === "(" && (t += 1), n === ")" && (t -= 1), t === 0 && n === ":") if (!a) this.doubleColon(r); else { if (a[0] === "word" && a[1] === "progid") continue; return s } a = r } return !1 } unclosedBracket(e) { throw this.input.error("Unclosed bracket", { offset: e[2] }, { offset: e[2] + 1 }) } unknownWord(e) { throw this.input.error("Unknown word", { offset: e[0][2] }, { offset: e[0][2] + e[0][1].length }) } unexpectedClose(e) { throw this.input.error("Unexpected }", { offset: e[2] }, { offset: e[2] + 1 }) } unclosedBlock() { let e = this.current.source.start; throw this.input.error("Unclosed block", e.line, e.column) } doubleColon(e) { throw this.input.error("Double colon", { offset: e[2] }, { offset: e[2] + e[1].length }) } unnamedAtrule(e, t) { throw this.input.error("At-rule without name", { offset: t[2] }, { offset: t[2] + t[1].length }) } precheckMissedSemicolon() { } checkMissedSemicolon(e) { let t = this.colon(e); if (t === !1) return; let r = 0, n; for (let a = t - 1; a >= 0 && (n = e[a], !(n[0] !== "space" && (r += 1, r === 2))); a--); throw this.input.error("Missed semicolon", n[0] === "word" ? n[3] + 1 : n[2]) } }; Jf.exports = Qf }); var Kf = v(() => { l() }); var ec = v((DT, Zf) => { l(); var B0 = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict", F0 = (i, e = 21) => (t = e) => { let r = "", n = t; for (; n--;)r += i[Math.random() * i.length | 0]; return r }, N0 = (i = 21) => { let e = "", t = i; for (; t--;)e += B0[Math.random() * 64 | 0]; return e }; Zf.exports = { nanoid: N0, customAlphabet: F0 } }); var Ps = v((IT, tc) => { l(); tc.exports = {} }); var Vi = v((qT, sc) => { - l(); "use strict"; var { SourceMapConsumer: L0, SourceMapGenerator: $0 } = Kf(), { fileURLToPath: rc, pathToFileURL: zi } = (ys(), af), { resolve: Ds, isAbsolute: Is } = (gt(), rf), { nanoid: j0 } = ec(), qs = ws(), ic = ki(), z0 = Ps(), Rs = Symbol("fromOffsetCache"), V0 = Boolean(L0 && $0), nc = Boolean(Ds && Is), kr = class { - constructor(e, t = {}) { if (e === null || typeof e == "undefined" || typeof e == "object" && !e.toString) throw new Error(`PostCSS received ${e} instead of CSS string`); if (this.css = e.toString(), this.css[0] === "\uFEFF" || this.css[0] === "\uFFFE" ? (this.hasBOM = !0, this.css = this.css.slice(1)) : this.hasBOM = !1, t.from && (!nc || /^\w+:\/\//.test(t.from) || Is(t.from) ? this.file = t.from : this.file = Ds(t.from)), nc && V0) { let r = new z0(this.css, t); if (r.text) { this.map = r; let n = r.consumer().file; !this.file && n && (this.file = this.mapResolve(n)) } } this.file || (this.id = "<input css " + j0(6) + ">"), this.map && (this.map.file = this.from) } fromOffset(e) { - let t, r; if (this[Rs]) r = this[Rs]; else { - let a = this.css.split(` -`); r = new Array(a.length); let s = 0; for (let o = 0, u = a.length; o < u; o++)r[o] = s, s += a[o].length + 1; this[Rs] = r - } t = r[r.length - 1]; let n = 0; if (e >= t) n = r.length - 1; else { let a = r.length - 2, s; for (; n < a;)if (s = n + (a - n >> 1), e < r[s]) a = s - 1; else if (e >= r[s + 1]) n = s + 1; else { n = s; break } } return { line: n + 1, col: e - r[n] + 1 } - } error(e, t, r, n = {}) { let a, s, o; if (t && typeof t == "object") { let c = t, f = r; if (typeof c.offset == "number") { let d = this.fromOffset(c.offset); t = d.line, r = d.col } else t = c.line, r = c.column; if (typeof f.offset == "number") { let d = this.fromOffset(f.offset); s = d.line, o = d.col } else s = f.line, o = f.column } else if (!r) { let c = this.fromOffset(t); t = c.line, r = c.col } let u = this.origin(t, r, s, o); return u ? a = new ic(e, u.endLine === void 0 ? u.line : { line: u.line, column: u.column }, u.endLine === void 0 ? u.column : { line: u.endLine, column: u.endColumn }, u.source, u.file, n.plugin) : a = new ic(e, s === void 0 ? t : { line: t, column: r }, s === void 0 ? r : { line: s, column: o }, this.css, this.file, n.plugin), a.input = { line: t, column: r, endLine: s, endColumn: o, source: this.css }, this.file && (zi && (a.input.url = zi(this.file).toString()), a.input.file = this.file), a } origin(e, t, r, n) { if (!this.map) return !1; let a = this.map.consumer(), s = a.originalPositionFor({ line: e, column: t }); if (!s.source) return !1; let o; typeof r == "number" && (o = a.originalPositionFor({ line: r, column: n })); let u; Is(s.source) ? u = zi(s.source) : u = new URL(s.source, this.map.consumer().sourceRoot || zi(this.map.mapFile)); let c = { url: u.toString(), line: s.line, column: s.column, endLine: o && o.line, endColumn: o && o.column }; if (u.protocol === "file:") if (rc) c.file = rc(u); else throw new Error("file: protocol is not available in this PostCSS build"); let f = a.sourceContentFor(s.source); return f && (c.source = f), c } mapResolve(e) { return /^\w+:\/\//.test(e) ? e : Ds(this.map.consumer().sourceRoot || this.map.root || ".", e) } get from() { return this.file || this.id } toJSON() { let e = {}; for (let t of ["hasBOM", "css", "file", "id"]) this[t] != null && (e[t] = this[t]); return this.map && (e.map = { ...this.map }, e.map.consumerCache && (e.map.consumerCache = void 0)), e } - }; sc.exports = kr; kr.default = kr; qs && qs.registerInput && qs.registerInput(kr) - }); var Wi = v((RT, ac) => { l(); "use strict"; var U0 = it(), W0 = Xf(), G0 = Vi(); function Ui(i, e) { let t = new G0(i, e), r = new W0(t); try { r.parse() } catch (n) { throw n } return r.root } ac.exports = Ui; Ui.default = Ui; U0.registerParse(Ui) }); var Fs = v((BT, fc) => { l(); "use strict"; var { isClean: Ie, my: H0 } = Si(), Y0 = Ss(), Q0 = hr(), J0 = it(), X0 = Ti(), MT = _s(), oc = Ii(), K0 = Wi(), Z0 = Et(), ev = { document: "Document", root: "Root", atrule: "AtRule", rule: "Rule", decl: "Declaration", comment: "Comment" }, tv = { postcssPlugin: !0, prepare: !0, Once: !0, Document: !0, Root: !0, Declaration: !0, Rule: !0, AtRule: !0, Comment: !0, DeclarationExit: !0, RuleExit: !0, AtRuleExit: !0, CommentExit: !0, RootExit: !0, DocumentExit: !0, OnceExit: !0 }, rv = { postcssPlugin: !0, prepare: !0, Once: !0 }, Tt = 0; function Sr(i) { return typeof i == "object" && typeof i.then == "function" } function lc(i) { let e = !1, t = ev[i.type]; return i.type === "decl" ? e = i.prop.toLowerCase() : i.type === "atrule" && (e = i.name.toLowerCase()), e && i.append ? [t, t + "-" + e, Tt, t + "Exit", t + "Exit-" + e] : e ? [t, t + "-" + e, t + "Exit", t + "Exit-" + e] : i.append ? [t, Tt, t + "Exit"] : [t, t + "Exit"] } function uc(i) { let e; return i.type === "document" ? e = ["Document", Tt, "DocumentExit"] : i.type === "root" ? e = ["Root", Tt, "RootExit"] : e = lc(i), { node: i, events: e, eventIndex: 0, visitors: [], visitorIndex: 0, iterator: 0 } } function Ms(i) { return i[Ie] = !1, i.nodes && i.nodes.forEach(e => Ms(e)), i } var Bs = {}, Ve = class { constructor(e, t, r) { this.stringified = !1, this.processed = !1; let n; if (typeof t == "object" && t !== null && (t.type === "root" || t.type === "document")) n = Ms(t); else if (t instanceof Ve || t instanceof oc) n = Ms(t.root), t.map && (typeof r.map == "undefined" && (r.map = {}), r.map.inline || (r.map.inline = !1), r.map.prev = t.map); else { let a = K0; r.syntax && (a = r.syntax.parse), r.parser && (a = r.parser), a.parse && (a = a.parse); try { n = a(t, r) } catch (s) { this.processed = !0, this.error = s } n && !n[H0] && J0.rebuild(n) } this.result = new oc(e, n, r), this.helpers = { ...Bs, result: this.result, postcss: Bs }, this.plugins = this.processor.plugins.map(a => typeof a == "object" && a.prepare ? { ...a, ...a.prepare(this.result) } : a) } get [Symbol.toStringTag]() { return "LazyResult" } get processor() { return this.result.processor } get opts() { return this.result.opts } get css() { return this.stringify().css } get content() { return this.stringify().content } get map() { return this.stringify().map } get root() { return this.sync().root } get messages() { return this.sync().messages } warnings() { return this.sync().warnings() } toString() { return this.css } then(e, t) { return this.async().then(e, t) } catch(e) { return this.async().catch(e) } finally(e) { return this.async().then(e, e) } async() { return this.error ? Promise.reject(this.error) : this.processed ? Promise.resolve(this.result) : (this.processing || (this.processing = this.runAsync()), this.processing) } sync() { if (this.error) throw this.error; if (this.processed) return this.result; if (this.processed = !0, this.processing) throw this.getAsyncError(); for (let e of this.plugins) { let t = this.runOnRoot(e); if (Sr(t)) throw this.getAsyncError() } if (this.prepareVisitors(), this.hasListener) { let e = this.result.root; for (; !e[Ie];)e[Ie] = !0, this.walkSync(e); if (this.listeners.OnceExit) if (e.type === "document") for (let t of e.nodes) this.visitSync(this.listeners.OnceExit, t); else this.visitSync(this.listeners.OnceExit, e) } return this.result } stringify() { if (this.error) throw this.error; if (this.stringified) return this.result; this.stringified = !0, this.sync(); let e = this.result.opts, t = Q0; e.syntax && (t = e.syntax.stringify), e.stringifier && (t = e.stringifier), t.stringify && (t = t.stringify); let n = new Y0(t, this.result.root, this.result.opts).generate(); return this.result.css = n[0], this.result.map = n[1], this.result } walkSync(e) { e[Ie] = !0; let t = lc(e); for (let r of t) if (r === Tt) e.nodes && e.each(n => { n[Ie] || this.walkSync(n) }); else { let n = this.listeners[r]; if (n && this.visitSync(n, e.toProxy())) return } } visitSync(e, t) { for (let [r, n] of e) { this.result.lastPlugin = r; let a; try { a = n(t, this.helpers) } catch (s) { throw this.handleError(s, t.proxyOf) } if (t.type !== "root" && t.type !== "document" && !t.parent) return !0; if (Sr(a)) throw this.getAsyncError() } } runOnRoot(e) { this.result.lastPlugin = e; try { if (typeof e == "object" && e.Once) { if (this.result.root.type === "document") { let t = this.result.root.nodes.map(r => e.Once(r, this.helpers)); return Sr(t[0]) ? Promise.all(t) : t } return e.Once(this.result.root, this.helpers) } else if (typeof e == "function") return e(this.result.root, this.result) } catch (t) { throw this.handleError(t) } } getAsyncError() { throw new Error("Use process(css).then(cb) to work with async plugins") } handleError(e, t) { let r = this.result.lastPlugin; try { t && t.addToError(e), this.error = e, e.name === "CssSyntaxError" && !e.plugin ? (e.plugin = r.postcssPlugin, e.setMessage()) : r.postcssVersion } catch (n) { console && console.error && console.error(n) } return e } async runAsync() { this.plugin = 0; for (let e = 0; e < this.plugins.length; e++) { let t = this.plugins[e], r = this.runOnRoot(t); if (Sr(r)) try { await r } catch (n) { throw this.handleError(n) } } if (this.prepareVisitors(), this.hasListener) { let e = this.result.root; for (; !e[Ie];) { e[Ie] = !0; let t = [uc(e)]; for (; t.length > 0;) { let r = this.visitTick(t); if (Sr(r)) try { await r } catch (n) { let a = t[t.length - 1].node; throw this.handleError(n, a) } } } if (this.listeners.OnceExit) for (let [t, r] of this.listeners.OnceExit) { this.result.lastPlugin = t; try { if (e.type === "document") { let n = e.nodes.map(a => r(a, this.helpers)); await Promise.all(n) } else await r(e, this.helpers) } catch (n) { throw this.handleError(n) } } } return this.processed = !0, this.stringify() } prepareVisitors() { this.listeners = {}; let e = (t, r, n) => { this.listeners[r] || (this.listeners[r] = []), this.listeners[r].push([t, n]) }; for (let t of this.plugins) if (typeof t == "object") for (let r in t) { if (!tv[r] && /^[A-Z]/.test(r)) throw new Error(`Unknown event ${r} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`); if (!rv[r]) if (typeof t[r] == "object") for (let n in t[r]) n === "*" ? e(t, r, t[r][n]) : e(t, r + "-" + n.toLowerCase(), t[r][n]); else typeof t[r] == "function" && e(t, r, t[r]) } this.hasListener = Object.keys(this.listeners).length > 0 } visitTick(e) { let t = e[e.length - 1], { node: r, visitors: n } = t; if (r.type !== "root" && r.type !== "document" && !r.parent) { e.pop(); return } if (n.length > 0 && t.visitorIndex < n.length) { let [s, o] = n[t.visitorIndex]; t.visitorIndex += 1, t.visitorIndex === n.length && (t.visitors = [], t.visitorIndex = 0), this.result.lastPlugin = s; try { return o(r.toProxy(), this.helpers) } catch (u) { throw this.handleError(u, r) } } if (t.iterator !== 0) { let s = t.iterator, o; for (; o = r.nodes[r.indexes[s]];)if (r.indexes[s] += 1, !o[Ie]) { o[Ie] = !0, e.push(uc(o)); return } t.iterator = 0, delete r.indexes[s] } let a = t.events; for (; t.eventIndex < a.length;) { let s = a[t.eventIndex]; if (t.eventIndex += 1, s === Tt) { r.nodes && r.nodes.length && (r[Ie] = !0, t.iterator = r.getIterator()); return } else if (this.listeners[s]) { t.visitors = this.listeners[s]; return } } e.pop() } }; Ve.registerPostcss = i => { Bs = i }; fc.exports = Ve; Ve.default = Ve; Z0.registerLazyResult(Ve); X0.registerLazyResult(Ve) }); var pc = v((NT, cc) => { l(); "use strict"; var iv = Ss(), nv = hr(), FT = _s(), sv = Wi(), av = Ii(), Gi = class { constructor(e, t, r) { t = t.toString(), this.stringified = !1, this._processor = e, this._css = t, this._opts = r, this._map = void 0; let n, a = nv; this.result = new av(this._processor, n, this._opts), this.result.css = t; let s = this; Object.defineProperty(this.result, "root", { get() { return s.root } }); let o = new iv(a, n, this._opts, t); if (o.isMap()) { let [u, c] = o.generate(); u && (this.result.css = u), c && (this.result.map = c) } } get [Symbol.toStringTag]() { return "NoWorkResult" } get processor() { return this.result.processor } get opts() { return this.result.opts } get css() { return this.result.css } get content() { return this.result.css } get map() { return this.result.map } get root() { if (this._root) return this._root; let e, t = sv; try { e = t(this._css, this._opts) } catch (r) { this.error = r } if (this.error) throw this.error; return this._root = e, e } get messages() { return [] } warnings() { return [] } toString() { return this._css } then(e, t) { return this.async().then(e, t) } catch(e) { return this.async().catch(e) } finally(e) { return this.async().then(e, e) } async() { return this.error ? Promise.reject(this.error) : Promise.resolve(this.result) } sync() { if (this.error) throw this.error; return this.result } }; cc.exports = Gi; Gi.default = Gi }); var hc = v((LT, dc) => { l(); "use strict"; var ov = pc(), lv = Fs(), uv = Ti(), fv = Et(), Pt = class { constructor(e = []) { this.version = "8.4.24", this.plugins = this.normalize(e) } use(e) { return this.plugins = this.plugins.concat(this.normalize([e])), this } process(e, t = {}) { return this.plugins.length === 0 && typeof t.parser == "undefined" && typeof t.stringifier == "undefined" && typeof t.syntax == "undefined" ? new ov(this, e, t) : new lv(this, e, t) } normalize(e) { let t = []; for (let r of e) if (r.postcss === !0 ? r = r() : r.postcss && (r = r.postcss), typeof r == "object" && Array.isArray(r.plugins)) t = t.concat(r.plugins); else if (typeof r == "object" && r.postcssPlugin) t.push(r); else if (typeof r == "function") t.push(r); else if (!(typeof r == "object" && (r.parse || r.stringify))) throw new Error(r + " is not a PostCSS plugin"); return t } }; dc.exports = Pt; Pt.default = Pt; fv.registerProcessor(Pt); uv.registerProcessor(Pt) }); var gc = v(($T, mc) => { l(); "use strict"; var cv = gr(), pv = Ps(), dv = yr(), hv = $i(), mv = Vi(), gv = Et(), yv = ji(); function Cr(i, e) { if (Array.isArray(i)) return i.map(n => Cr(n)); let { inputs: t, ...r } = i; if (t) { e = []; for (let n of t) { let a = { ...n, __proto__: mv.prototype }; a.map && (a.map = { ...a.map, __proto__: pv.prototype }), e.push(a) } } if (r.nodes && (r.nodes = i.nodes.map(n => Cr(n, e))), r.source) { let { inputId: n, ...a } = r.source; r.source = a, n != null && (r.source.input = e[n]) } if (r.type === "root") return new gv(r); if (r.type === "decl") return new cv(r); if (r.type === "rule") return new yv(r); if (r.type === "comment") return new dv(r); if (r.type === "atrule") return new hv(r); throw new Error("Unknown node type: " + i.type) } mc.exports = Cr; Cr.default = Cr }); var ge = v((jT, Sc) => { - l(); "use strict"; var wv = ki(), yc = gr(), bv = Fs(), vv = it(), Ns = hc(), xv = hr(), kv = gc(), wc = Ti(), Sv = Os(), bc = yr(), vc = $i(), Cv = Ii(), Av = Vi(), _v = Wi(), Ov = Ts(), xc = ji(), kc = Et(), Ev = mr(); function z(...i) { return i.length === 1 && Array.isArray(i[0]) && (i = i[0]), new Ns(i) } z.plugin = function (e, t) { - let r = !1; function n(...s) { - console && console.warn && !r && (r = !0, console.warn(e + `: postcss.plugin was deprecated. Migration guide: -https://evilmartians.com/chronicles/postcss-8-plugin-migration`), h.env.LANG && h.env.LANG.startsWith("cn") && console.warn(e + `: \u91CC\u9762 postcss.plugin \u88AB\u5F03\u7528. \u8FC1\u79FB\u6307\u5357: -https://www.w3ctech.com/topic/2226`)); let o = t(...s); return o.postcssPlugin = e, o.postcssVersion = new Ns().version, o - } let a; return Object.defineProperty(n, "postcss", { get() { return a || (a = n()), a } }), n.process = function (s, o, u) { return z([n(u)]).process(s, o) }, n - }; z.stringify = xv; z.parse = _v; z.fromJSON = kv; z.list = Ov; z.comment = i => new bc(i); z.atRule = i => new vc(i); z.decl = i => new yc(i); z.rule = i => new xc(i); z.root = i => new kc(i); z.document = i => new wc(i); z.CssSyntaxError = wv; z.Declaration = yc; z.Container = vv; z.Processor = Ns; z.Document = wc; z.Comment = bc; z.Warning = Sv; z.AtRule = vc; z.Result = Cv; z.Input = Av; z.Rule = xc; z.Root = kc; z.Node = Ev; bv.registerPostcss(z); Sc.exports = z; z.default = z - }); var W, V, zT, VT, UT, WT, GT, HT, YT, QT, JT, XT, KT, ZT, e3, t3, r3, i3, n3, s3, a3, o3, l3, u3, f3, c3, nt = C(() => { l(); W = K(ge()), V = W.default, zT = W.default.stringify, VT = W.default.fromJSON, UT = W.default.plugin, WT = W.default.parse, GT = W.default.list, HT = W.default.document, YT = W.default.comment, QT = W.default.atRule, JT = W.default.rule, XT = W.default.decl, KT = W.default.root, ZT = W.default.CssSyntaxError, e3 = W.default.Declaration, t3 = W.default.Container, r3 = W.default.Processor, i3 = W.default.Document, n3 = W.default.Comment, s3 = W.default.Warning, a3 = W.default.AtRule, o3 = W.default.Result, l3 = W.default.Input, u3 = W.default.Rule, f3 = W.default.Root, c3 = W.default.Node }); var Ls = v((d3, Cc) => { l(); Cc.exports = function (i, e, t, r, n) { for (e = e.split ? e.split(".") : e, r = 0; r < e.length; r++)i = i ? i[e[r]] : n; return i === n ? t : i } }); var Yi = v((Hi, Ac) => { l(); "use strict"; Hi.__esModule = !0; Hi.default = Dv; function Tv(i) { for (var e = i.toLowerCase(), t = "", r = !1, n = 0; n < 6 && e[n] !== void 0; n++) { var a = e.charCodeAt(n), s = a >= 97 && a <= 102 || a >= 48 && a <= 57; if (r = a === 32, !s) break; t += e[n] } if (t.length !== 0) { var o = parseInt(t, 16), u = o >= 55296 && o <= 57343; return u || o === 0 || o > 1114111 ? ["\uFFFD", t.length + (r ? 1 : 0)] : [String.fromCodePoint(o), t.length + (r ? 1 : 0)] } } var Pv = /\\/; function Dv(i) { var e = Pv.test(i); if (!e) return i; for (var t = "", r = 0; r < i.length; r++) { if (i[r] === "\\") { var n = Tv(i.slice(r + 1, r + 7)); if (n !== void 0) { t += n[0], r += n[1]; continue } if (i[r + 1] === "\\") { t += "\\", r++; continue } i.length === r + 1 && (t += i[r]); continue } t += i[r] } return t } Ac.exports = Hi.default }); var Oc = v((Qi, _c) => { l(); "use strict"; Qi.__esModule = !0; Qi.default = Iv; function Iv(i) { for (var e = arguments.length, t = new Array(e > 1 ? e - 1 : 0), r = 1; r < e; r++)t[r - 1] = arguments[r]; for (; t.length > 0;) { var n = t.shift(); if (!i[n]) return; i = i[n] } return i } _c.exports = Qi.default }); var Tc = v((Ji, Ec) => { l(); "use strict"; Ji.__esModule = !0; Ji.default = qv; function qv(i) { for (var e = arguments.length, t = new Array(e > 1 ? e - 1 : 0), r = 1; r < e; r++)t[r - 1] = arguments[r]; for (; t.length > 0;) { var n = t.shift(); i[n] || (i[n] = {}), i = i[n] } } Ec.exports = Ji.default }); var Dc = v((Xi, Pc) => { l(); "use strict"; Xi.__esModule = !0; Xi.default = Rv; function Rv(i) { for (var e = "", t = i.indexOf("/*"), r = 0; t >= 0;) { e = e + i.slice(r, t); var n = i.indexOf("*/", t + 2); if (n < 0) return e; r = n + 2, t = i.indexOf("/*", r) } return e = e + i.slice(r), e } Pc.exports = Xi.default }); var Ar = v(qe => { l(); "use strict"; qe.__esModule = !0; qe.unesc = qe.stripComments = qe.getProp = qe.ensureObject = void 0; var Mv = Ki(Yi()); qe.unesc = Mv.default; var Bv = Ki(Oc()); qe.getProp = Bv.default; var Fv = Ki(Tc()); qe.ensureObject = Fv.default; var Nv = Ki(Dc()); qe.stripComments = Nv.default; function Ki(i) { return i && i.__esModule ? i : { default: i } } }); var Ue = v((_r, Rc) => { l(); "use strict"; _r.__esModule = !0; _r.default = void 0; var Ic = Ar(); function qc(i, e) { for (var t = 0; t < e.length; t++) { var r = e[t]; r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), Object.defineProperty(i, r.key, r) } } function Lv(i, e, t) { return e && qc(i.prototype, e), t && qc(i, t), Object.defineProperty(i, "prototype", { writable: !1 }), i } var $v = function i(e, t) { if (typeof e != "object" || e === null) return e; var r = new e.constructor; for (var n in e) if (!!e.hasOwnProperty(n)) { var a = e[n], s = typeof a; n === "parent" && s === "object" ? t && (r[n] = t) : a instanceof Array ? r[n] = a.map(function (o) { return i(o, r) }) : r[n] = i(a, r) } return r }, jv = function () { function i(t) { t === void 0 && (t = {}), Object.assign(this, t), this.spaces = this.spaces || {}, this.spaces.before = this.spaces.before || "", this.spaces.after = this.spaces.after || "" } var e = i.prototype; return e.remove = function () { return this.parent && this.parent.removeChild(this), this.parent = void 0, this }, e.replaceWith = function () { if (this.parent) { for (var r in arguments) this.parent.insertBefore(this, arguments[r]); this.remove() } return this }, e.next = function () { return this.parent.at(this.parent.index(this) + 1) }, e.prev = function () { return this.parent.at(this.parent.index(this) - 1) }, e.clone = function (r) { r === void 0 && (r = {}); var n = $v(this); for (var a in r) n[a] = r[a]; return n }, e.appendToPropertyAndEscape = function (r, n, a) { this.raws || (this.raws = {}); var s = this[r], o = this.raws[r]; this[r] = s + n, o || a !== n ? this.raws[r] = (o || s) + a : delete this.raws[r] }, e.setPropertyAndEscape = function (r, n, a) { this.raws || (this.raws = {}), this[r] = n, this.raws[r] = a }, e.setPropertyWithoutEscape = function (r, n) { this[r] = n, this.raws && delete this.raws[r] }, e.isAtPosition = function (r, n) { if (this.source && this.source.start && this.source.end) return !(this.source.start.line > r || this.source.end.line < r || this.source.start.line === r && this.source.start.column > n || this.source.end.line === r && this.source.end.column < n) }, e.stringifyProperty = function (r) { return this.raws && this.raws[r] || this[r] }, e.valueToString = function () { return String(this.stringifyProperty("value")) }, e.toString = function () { return [this.rawSpaceBefore, this.valueToString(), this.rawSpaceAfter].join("") }, Lv(i, [{ key: "rawSpaceBefore", get: function () { var r = this.raws && this.raws.spaces && this.raws.spaces.before; return r === void 0 && (r = this.spaces && this.spaces.before), r || "" }, set: function (r) { (0, Ic.ensureObject)(this, "raws", "spaces"), this.raws.spaces.before = r } }, { key: "rawSpaceAfter", get: function () { var r = this.raws && this.raws.spaces && this.raws.spaces.after; return r === void 0 && (r = this.spaces.after), r || "" }, set: function (r) { (0, Ic.ensureObject)(this, "raws", "spaces"), this.raws.spaces.after = r } }]), i }(); _r.default = jv; Rc.exports = _r.default }); var se = v(G => { l(); "use strict"; G.__esModule = !0; G.UNIVERSAL = G.TAG = G.STRING = G.SELECTOR = G.ROOT = G.PSEUDO = G.NESTING = G.ID = G.COMMENT = G.COMBINATOR = G.CLASS = G.ATTRIBUTE = void 0; var zv = "tag"; G.TAG = zv; var Vv = "string"; G.STRING = Vv; var Uv = "selector"; G.SELECTOR = Uv; var Wv = "root"; G.ROOT = Wv; var Gv = "pseudo"; G.PSEUDO = Gv; var Hv = "nesting"; G.NESTING = Hv; var Yv = "id"; G.ID = Yv; var Qv = "comment"; G.COMMENT = Qv; var Jv = "combinator"; G.COMBINATOR = Jv; var Xv = "class"; G.CLASS = Xv; var Kv = "attribute"; G.ATTRIBUTE = Kv; var Zv = "universal"; G.UNIVERSAL = Zv }); var Zi = v((Or, Nc) => { - l(); "use strict"; Or.__esModule = !0; Or.default = void 0; var ex = rx(Ue()), We = tx(se()); function Mc(i) { if (typeof WeakMap != "function") return null; var e = new WeakMap, t = new WeakMap; return (Mc = function (n) { return n ? t : e })(i) } function tx(i, e) { if (!e && i && i.__esModule) return i; if (i === null || typeof i != "object" && typeof i != "function") return { default: i }; var t = Mc(e); if (t && t.has(i)) return t.get(i); var r = {}, n = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var a in i) if (a !== "default" && Object.prototype.hasOwnProperty.call(i, a)) { var s = n ? Object.getOwnPropertyDescriptor(i, a) : null; s && (s.get || s.set) ? Object.defineProperty(r, a, s) : r[a] = i[a] } return r.default = i, t && t.set(i, r), r } function rx(i) { return i && i.__esModule ? i : { default: i } } function ix(i, e) { - var t = typeof Symbol != "undefined" && i[Symbol.iterator] || i["@@iterator"]; if (t) return (t = t.call(i)).next.bind(t); if (Array.isArray(i) || (t = nx(i)) || e && i && typeof i.length == "number") { t && (i = t); var r = 0; return function () { return r >= i.length ? { done: !0 } : { done: !1, value: i[r++] } } } throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`) - } function nx(i, e) { if (!!i) { if (typeof i == "string") return Bc(i, e); var t = Object.prototype.toString.call(i).slice(8, -1); if (t === "Object" && i.constructor && (t = i.constructor.name), t === "Map" || t === "Set") return Array.from(i); if (t === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)) return Bc(i, e) } } function Bc(i, e) { (e == null || e > i.length) && (e = i.length); for (var t = 0, r = new Array(e); t < e; t++)r[t] = i[t]; return r } function Fc(i, e) { for (var t = 0; t < e.length; t++) { var r = e[t]; r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), Object.defineProperty(i, r.key, r) } } function sx(i, e, t) { return e && Fc(i.prototype, e), t && Fc(i, t), Object.defineProperty(i, "prototype", { writable: !1 }), i } function ax(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, $s(i, e) } function $s(i, e) { return $s = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, $s(i, e) } var ox = function (i) { ax(e, i); function e(r) { var n; return n = i.call(this, r) || this, n.nodes || (n.nodes = []), n } var t = e.prototype; return t.append = function (n) { return n.parent = this, this.nodes.push(n), this }, t.prepend = function (n) { return n.parent = this, this.nodes.unshift(n), this }, t.at = function (n) { return this.nodes[n] }, t.index = function (n) { return typeof n == "number" ? n : this.nodes.indexOf(n) }, t.removeChild = function (n) { n = this.index(n), this.at(n).parent = void 0, this.nodes.splice(n, 1); var a; for (var s in this.indexes) a = this.indexes[s], a >= n && (this.indexes[s] = a - 1); return this }, t.removeAll = function () { for (var n = ix(this.nodes), a; !(a = n()).done;) { var s = a.value; s.parent = void 0 } return this.nodes = [], this }, t.empty = function () { return this.removeAll() }, t.insertAfter = function (n, a) { a.parent = this; var s = this.index(n); this.nodes.splice(s + 1, 0, a), a.parent = this; var o; for (var u in this.indexes) o = this.indexes[u], s <= o && (this.indexes[u] = o + 1); return this }, t.insertBefore = function (n, a) { a.parent = this; var s = this.index(n); this.nodes.splice(s, 0, a), a.parent = this; var o; for (var u in this.indexes) o = this.indexes[u], o <= s && (this.indexes[u] = o + 1); return this }, t._findChildAtPosition = function (n, a) { var s = void 0; return this.each(function (o) { if (o.atPosition) { var u = o.atPosition(n, a); if (u) return s = u, !1 } else if (o.isAtPosition(n, a)) return s = o, !1 }), s }, t.atPosition = function (n, a) { if (this.isAtPosition(n, a)) return this._findChildAtPosition(n, a) || this }, t._inferEndPosition = function () { this.last && this.last.source && this.last.source.end && (this.source = this.source || {}, this.source.end = this.source.end || {}, Object.assign(this.source.end, this.last.source.end)) }, t.each = function (n) { this.lastEach || (this.lastEach = 0), this.indexes || (this.indexes = {}), this.lastEach++; var a = this.lastEach; if (this.indexes[a] = 0, !!this.length) { for (var s, o; this.indexes[a] < this.length && (s = this.indexes[a], o = n(this.at(s), s), o !== !1);)this.indexes[a] += 1; if (delete this.indexes[a], o === !1) return !1 } }, t.walk = function (n) { return this.each(function (a, s) { var o = n(a, s); if (o !== !1 && a.length && (o = a.walk(n)), o === !1) return !1 }) }, t.walkAttributes = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.ATTRIBUTE) return n.call(a, s) }) }, t.walkClasses = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.CLASS) return n.call(a, s) }) }, t.walkCombinators = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.COMBINATOR) return n.call(a, s) }) }, t.walkComments = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.COMMENT) return n.call(a, s) }) }, t.walkIds = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.ID) return n.call(a, s) }) }, t.walkNesting = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.NESTING) return n.call(a, s) }) }, t.walkPseudos = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.PSEUDO) return n.call(a, s) }) }, t.walkTags = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.TAG) return n.call(a, s) }) }, t.walkUniversals = function (n) { var a = this; return this.walk(function (s) { if (s.type === We.UNIVERSAL) return n.call(a, s) }) }, t.split = function (n) { var a = this, s = []; return this.reduce(function (o, u, c) { var f = n.call(a, u); return s.push(u), f ? (o.push(s), s = []) : c === a.length - 1 && o.push(s), o }, []) }, t.map = function (n) { return this.nodes.map(n) }, t.reduce = function (n, a) { return this.nodes.reduce(n, a) }, t.every = function (n) { return this.nodes.every(n) }, t.some = function (n) { return this.nodes.some(n) }, t.filter = function (n) { return this.nodes.filter(n) }, t.sort = function (n) { return this.nodes.sort(n) }, t.toString = function () { return this.map(String).join("") }, sx(e, [{ key: "first", get: function () { return this.at(0) } }, { key: "last", get: function () { return this.at(this.length - 1) } }, { key: "length", get: function () { return this.nodes.length } }]), e }(ex.default); Or.default = ox; Nc.exports = Or.default - }); var zs = v((Er, $c) => { l(); "use strict"; Er.__esModule = !0; Er.default = void 0; var lx = fx(Zi()), ux = se(); function fx(i) { return i && i.__esModule ? i : { default: i } } function Lc(i, e) { for (var t = 0; t < e.length; t++) { var r = e[t]; r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), Object.defineProperty(i, r.key, r) } } function cx(i, e, t) { return e && Lc(i.prototype, e), t && Lc(i, t), Object.defineProperty(i, "prototype", { writable: !1 }), i } function px(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, js(i, e) } function js(i, e) { return js = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, js(i, e) } var dx = function (i) { px(e, i); function e(r) { var n; return n = i.call(this, r) || this, n.type = ux.ROOT, n } var t = e.prototype; return t.toString = function () { var n = this.reduce(function (a, s) { return a.push(String(s)), a }, []).join(","); return this.trailingComma ? n + "," : n }, t.error = function (n, a) { return this._error ? this._error(n, a) : new Error(n) }, cx(e, [{ key: "errorGenerator", set: function (n) { this._error = n } }]), e }(lx.default); Er.default = dx; $c.exports = Er.default }); var Us = v((Tr, jc) => { l(); "use strict"; Tr.__esModule = !0; Tr.default = void 0; var hx = gx(Zi()), mx = se(); function gx(i) { return i && i.__esModule ? i : { default: i } } function yx(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, Vs(i, e) } function Vs(i, e) { return Vs = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, Vs(i, e) } var wx = function (i) { yx(e, i); function e(t) { var r; return r = i.call(this, t) || this, r.type = mx.SELECTOR, r } return e }(hx.default); Tr.default = wx; jc.exports = Tr.default }); var en = v((g3, zc) => { l(); "use strict"; var bx = {}, vx = bx.hasOwnProperty, xx = function (e, t) { if (!e) return t; var r = {}; for (var n in t) r[n] = vx.call(e, n) ? e[n] : t[n]; return r }, kx = /[ -,\.\/:-@\[-\^`\{-~]/, Sx = /[ -,\.\/:-@\[\]\^`\{-~]/, Cx = /(^|\\+)?(\\[A-F0-9]{1,6})\x20(?![a-fA-F0-9\x20])/g, Ws = function i(e, t) { t = xx(t, i.options), t.quotes != "single" && t.quotes != "double" && (t.quotes = "single"); for (var r = t.quotes == "double" ? '"' : "'", n = t.isIdentifier, a = e.charAt(0), s = "", o = 0, u = e.length; o < u;) { var c = e.charAt(o++), f = c.charCodeAt(), d = void 0; if (f < 32 || f > 126) { if (f >= 55296 && f <= 56319 && o < u) { var p = e.charCodeAt(o++); (p & 64512) == 56320 ? f = ((f & 1023) << 10) + (p & 1023) + 65536 : o-- } d = "\\" + f.toString(16).toUpperCase() + " " } else t.escapeEverything ? kx.test(c) ? d = "\\" + c : d = "\\" + f.toString(16).toUpperCase() + " " : /[\t\n\f\r\x0B]/.test(c) ? d = "\\" + f.toString(16).toUpperCase() + " " : c == "\\" || !n && (c == '"' && r == c || c == "'" && r == c) || n && Sx.test(c) ? d = "\\" + c : d = c; s += d } return n && (/^-[-\d]/.test(s) ? s = "\\-" + s.slice(1) : /\d/.test(a) && (s = "\\3" + a + " " + s.slice(1))), s = s.replace(Cx, function (m, w, x) { return w && w.length % 2 ? m : (w || "") + x }), !n && t.wrap ? r + s + r : s }; Ws.options = { escapeEverything: !1, isIdentifier: !1, quotes: "single", wrap: !1 }; Ws.version = "3.0.0"; zc.exports = Ws }); var Hs = v((Pr, Wc) => { l(); "use strict"; Pr.__esModule = !0; Pr.default = void 0; var Ax = Vc(en()), _x = Ar(), Ox = Vc(Ue()), Ex = se(); function Vc(i) { return i && i.__esModule ? i : { default: i } } function Uc(i, e) { for (var t = 0; t < e.length; t++) { var r = e[t]; r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), Object.defineProperty(i, r.key, r) } } function Tx(i, e, t) { return e && Uc(i.prototype, e), t && Uc(i, t), Object.defineProperty(i, "prototype", { writable: !1 }), i } function Px(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, Gs(i, e) } function Gs(i, e) { return Gs = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, Gs(i, e) } var Dx = function (i) { Px(e, i); function e(r) { var n; return n = i.call(this, r) || this, n.type = Ex.CLASS, n._constructed = !0, n } var t = e.prototype; return t.valueToString = function () { return "." + i.prototype.valueToString.call(this) }, Tx(e, [{ key: "value", get: function () { return this._value }, set: function (n) { if (this._constructed) { var a = (0, Ax.default)(n, { isIdentifier: !0 }); a !== n ? ((0, _x.ensureObject)(this, "raws"), this.raws.value = a) : this.raws && delete this.raws.value } this._value = n } }]), e }(Ox.default); Pr.default = Dx; Wc.exports = Pr.default }); var Qs = v((Dr, Gc) => { l(); "use strict"; Dr.__esModule = !0; Dr.default = void 0; var Ix = Rx(Ue()), qx = se(); function Rx(i) { return i && i.__esModule ? i : { default: i } } function Mx(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, Ys(i, e) } function Ys(i, e) { return Ys = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, Ys(i, e) } var Bx = function (i) { Mx(e, i); function e(t) { var r; return r = i.call(this, t) || this, r.type = qx.COMMENT, r } return e }(Ix.default); Dr.default = Bx; Gc.exports = Dr.default }); var Xs = v((Ir, Hc) => { l(); "use strict"; Ir.__esModule = !0; Ir.default = void 0; var Fx = Lx(Ue()), Nx = se(); function Lx(i) { return i && i.__esModule ? i : { default: i } } function $x(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, Js(i, e) } function Js(i, e) { return Js = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, Js(i, e) } var jx = function (i) { $x(e, i); function e(r) { var n; return n = i.call(this, r) || this, n.type = Nx.ID, n } var t = e.prototype; return t.valueToString = function () { return "#" + i.prototype.valueToString.call(this) }, e }(Fx.default); Ir.default = jx; Hc.exports = Ir.default }); var tn = v((qr, Jc) => { l(); "use strict"; qr.__esModule = !0; qr.default = void 0; var zx = Yc(en()), Vx = Ar(), Ux = Yc(Ue()); function Yc(i) { return i && i.__esModule ? i : { default: i } } function Qc(i, e) { for (var t = 0; t < e.length; t++) { var r = e[t]; r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), Object.defineProperty(i, r.key, r) } } function Wx(i, e, t) { return e && Qc(i.prototype, e), t && Qc(i, t), Object.defineProperty(i, "prototype", { writable: !1 }), i } function Gx(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, Ks(i, e) } function Ks(i, e) { return Ks = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, Ks(i, e) } var Hx = function (i) { Gx(e, i); function e() { return i.apply(this, arguments) || this } var t = e.prototype; return t.qualifiedName = function (n) { return this.namespace ? this.namespaceString + "|" + n : n }, t.valueToString = function () { return this.qualifiedName(i.prototype.valueToString.call(this)) }, Wx(e, [{ key: "namespace", get: function () { return this._namespace }, set: function (n) { if (n === !0 || n === "*" || n === "&") { this._namespace = n, this.raws && delete this.raws.namespace; return } var a = (0, zx.default)(n, { isIdentifier: !0 }); this._namespace = n, a !== n ? ((0, Vx.ensureObject)(this, "raws"), this.raws.namespace = a) : this.raws && delete this.raws.namespace } }, { key: "ns", get: function () { return this._namespace }, set: function (n) { this.namespace = n } }, { key: "namespaceString", get: function () { if (this.namespace) { var n = this.stringifyProperty("namespace"); return n === !0 ? "" : n } else return "" } }]), e }(Ux.default); qr.default = Hx; Jc.exports = qr.default }); var ea = v((Rr, Xc) => { l(); "use strict"; Rr.__esModule = !0; Rr.default = void 0; var Yx = Jx(tn()), Qx = se(); function Jx(i) { return i && i.__esModule ? i : { default: i } } function Xx(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, Zs(i, e) } function Zs(i, e) { return Zs = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, Zs(i, e) } var Kx = function (i) { Xx(e, i); function e(t) { var r; return r = i.call(this, t) || this, r.type = Qx.TAG, r } return e }(Yx.default); Rr.default = Kx; Xc.exports = Rr.default }); var ra = v((Mr, Kc) => { l(); "use strict"; Mr.__esModule = !0; Mr.default = void 0; var Zx = t1(Ue()), e1 = se(); function t1(i) { return i && i.__esModule ? i : { default: i } } function r1(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, ta(i, e) } function ta(i, e) { return ta = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, ta(i, e) } var i1 = function (i) { r1(e, i); function e(t) { var r; return r = i.call(this, t) || this, r.type = e1.STRING, r } return e }(Zx.default); Mr.default = i1; Kc.exports = Mr.default }); var na = v((Br, Zc) => { l(); "use strict"; Br.__esModule = !0; Br.default = void 0; var n1 = a1(Zi()), s1 = se(); function a1(i) { return i && i.__esModule ? i : { default: i } } function o1(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, ia(i, e) } function ia(i, e) { return ia = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, ia(i, e) } var l1 = function (i) { o1(e, i); function e(r) { var n; return n = i.call(this, r) || this, n.type = s1.PSEUDO, n } var t = e.prototype; return t.toString = function () { var n = this.length ? "(" + this.map(String).join(",") + ")" : ""; return [this.rawSpaceBefore, this.stringifyProperty("value"), n, this.rawSpaceAfter].join("") }, e }(n1.default); Br.default = l1; Zc.exports = Br.default }); var ep = {}; Ae(ep, { deprecate: () => u1 }); function u1(i) { return i } var tp = C(() => { l() }); var ip = v((y3, rp) => { l(); rp.exports = (tp(), ep).deprecate }); var fa = v(Lr => { l(); "use strict"; Lr.__esModule = !0; Lr.default = void 0; Lr.unescapeValue = la; var Fr = aa(en()), f1 = aa(Yi()), c1 = aa(tn()), p1 = se(), sa; function aa(i) { return i && i.__esModule ? i : { default: i } } function np(i, e) { for (var t = 0; t < e.length; t++) { var r = e[t]; r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), Object.defineProperty(i, r.key, r) } } function d1(i, e, t) { return e && np(i.prototype, e), t && np(i, t), Object.defineProperty(i, "prototype", { writable: !1 }), i } function h1(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, oa(i, e) } function oa(i, e) { return oa = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, oa(i, e) } var Nr = ip(), m1 = /^('|")([^]*)\1$/, g1 = Nr(function () { }, "Assigning an attribute a value containing characters that might need to be escaped is deprecated. Call attribute.setValue() instead."), y1 = Nr(function () { }, "Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead."), w1 = Nr(function () { }, "Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now."); function la(i) { var e = !1, t = null, r = i, n = r.match(m1); return n && (t = n[1], r = n[2]), r = (0, f1.default)(r), r !== i && (e = !0), { deprecatedUsage: e, unescaped: r, quoteMark: t } } function b1(i) { if (i.quoteMark !== void 0 || i.value === void 0) return i; w1(); var e = la(i.value), t = e.quoteMark, r = e.unescaped; return i.raws || (i.raws = {}), i.raws.value === void 0 && (i.raws.value = i.value), i.value = r, i.quoteMark = t, i } var rn = function (i) { h1(e, i); function e(r) { var n; return r === void 0 && (r = {}), n = i.call(this, b1(r)) || this, n.type = p1.ATTRIBUTE, n.raws = n.raws || {}, Object.defineProperty(n.raws, "unquoted", { get: Nr(function () { return n.value }, "attr.raws.unquoted is deprecated. Call attr.value instead."), set: Nr(function () { return n.value }, "Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.") }), n._constructed = !0, n } var t = e.prototype; return t.getQuotedValue = function (n) { n === void 0 && (n = {}); var a = this._determineQuoteMark(n), s = ua[a], o = (0, Fr.default)(this._value, s); return o }, t._determineQuoteMark = function (n) { return n.smart ? this.smartQuoteMark(n) : this.preferredQuoteMark(n) }, t.setValue = function (n, a) { a === void 0 && (a = {}), this._value = n, this._quoteMark = this._determineQuoteMark(a), this._syncRawValue() }, t.smartQuoteMark = function (n) { var a = this.value, s = a.replace(/[^']/g, "").length, o = a.replace(/[^"]/g, "").length; if (s + o === 0) { var u = (0, Fr.default)(a, { isIdentifier: !0 }); if (u === a) return e.NO_QUOTE; var c = this.preferredQuoteMark(n); if (c === e.NO_QUOTE) { var f = this.quoteMark || n.quoteMark || e.DOUBLE_QUOTE, d = ua[f], p = (0, Fr.default)(a, d); if (p.length < u.length) return f } return c } else return o === s ? this.preferredQuoteMark(n) : o < s ? e.DOUBLE_QUOTE : e.SINGLE_QUOTE }, t.preferredQuoteMark = function (n) { var a = n.preferCurrentQuoteMark ? this.quoteMark : n.quoteMark; return a === void 0 && (a = n.preferCurrentQuoteMark ? n.quoteMark : this.quoteMark), a === void 0 && (a = e.DOUBLE_QUOTE), a }, t._syncRawValue = function () { var n = (0, Fr.default)(this._value, ua[this.quoteMark]); n === this._value ? this.raws && delete this.raws.value : this.raws.value = n }, t._handleEscapes = function (n, a) { if (this._constructed) { var s = (0, Fr.default)(a, { isIdentifier: !0 }); s !== a ? this.raws[n] = s : delete this.raws[n] } }, t._spacesFor = function (n) { var a = { before: "", after: "" }, s = this.spaces[n] || {}, o = this.raws.spaces && this.raws.spaces[n] || {}; return Object.assign(a, s, o) }, t._stringFor = function (n, a, s) { a === void 0 && (a = n), s === void 0 && (s = sp); var o = this._spacesFor(a); return s(this.stringifyProperty(n), o) }, t.offsetOf = function (n) { var a = 1, s = this._spacesFor("attribute"); if (a += s.before.length, n === "namespace" || n === "ns") return this.namespace ? a : -1; if (n === "attributeNS" || (a += this.namespaceString.length, this.namespace && (a += 1), n === "attribute")) return a; a += this.stringifyProperty("attribute").length, a += s.after.length; var o = this._spacesFor("operator"); a += o.before.length; var u = this.stringifyProperty("operator"); if (n === "operator") return u ? a : -1; a += u.length, a += o.after.length; var c = this._spacesFor("value"); a += c.before.length; var f = this.stringifyProperty("value"); if (n === "value") return f ? a : -1; a += f.length, a += c.after.length; var d = this._spacesFor("insensitive"); return a += d.before.length, n === "insensitive" && this.insensitive ? a : -1 }, t.toString = function () { var n = this, a = [this.rawSpaceBefore, "["]; return a.push(this._stringFor("qualifiedAttribute", "attribute")), this.operator && (this.value || this.value === "") && (a.push(this._stringFor("operator")), a.push(this._stringFor("value")), a.push(this._stringFor("insensitiveFlag", "insensitive", function (s, o) { return s.length > 0 && !n.quoted && o.before.length === 0 && !(n.spaces.value && n.spaces.value.after) && (o.before = " "), sp(s, o) }))), a.push("]"), a.push(this.rawSpaceAfter), a.join("") }, d1(e, [{ key: "quoted", get: function () { var n = this.quoteMark; return n === "'" || n === '"' }, set: function (n) { y1() } }, { key: "quoteMark", get: function () { return this._quoteMark }, set: function (n) { if (!this._constructed) { this._quoteMark = n; return } this._quoteMark !== n && (this._quoteMark = n, this._syncRawValue()) } }, { key: "qualifiedAttribute", get: function () { return this.qualifiedName(this.raws.attribute || this.attribute) } }, { key: "insensitiveFlag", get: function () { return this.insensitive ? "i" : "" } }, { key: "value", get: function () { return this._value }, set: function (n) { if (this._constructed) { var a = la(n), s = a.deprecatedUsage, o = a.unescaped, u = a.quoteMark; if (s && g1(), o === this._value && u === this._quoteMark) return; this._value = o, this._quoteMark = u, this._syncRawValue() } else this._value = n } }, { key: "insensitive", get: function () { return this._insensitive }, set: function (n) { n || (this._insensitive = !1, this.raws && (this.raws.insensitiveFlag === "I" || this.raws.insensitiveFlag === "i") && (this.raws.insensitiveFlag = void 0)), this._insensitive = n } }, { key: "attribute", get: function () { return this._attribute }, set: function (n) { this._handleEscapes("attribute", n), this._attribute = n } }]), e }(c1.default); Lr.default = rn; rn.NO_QUOTE = null; rn.SINGLE_QUOTE = "'"; rn.DOUBLE_QUOTE = '"'; var ua = (sa = { "'": { quotes: "single", wrap: !0 }, '"': { quotes: "double", wrap: !0 } }, sa[null] = { isIdentifier: !0 }, sa); function sp(i, e) { return "" + e.before + i + e.after } }); var pa = v(($r, ap) => { l(); "use strict"; $r.__esModule = !0; $r.default = void 0; var v1 = k1(tn()), x1 = se(); function k1(i) { return i && i.__esModule ? i : { default: i } } function S1(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, ca(i, e) } function ca(i, e) { return ca = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, ca(i, e) } var C1 = function (i) { S1(e, i); function e(t) { var r; return r = i.call(this, t) || this, r.type = x1.UNIVERSAL, r.value = "*", r } return e }(v1.default); $r.default = C1; ap.exports = $r.default }); var ha = v((jr, op) => { l(); "use strict"; jr.__esModule = !0; jr.default = void 0; var A1 = O1(Ue()), _1 = se(); function O1(i) { return i && i.__esModule ? i : { default: i } } function E1(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, da(i, e) } function da(i, e) { return da = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, da(i, e) } var T1 = function (i) { E1(e, i); function e(t) { var r; return r = i.call(this, t) || this, r.type = _1.COMBINATOR, r } return e }(A1.default); jr.default = T1; op.exports = jr.default }); var ga = v((zr, lp) => { l(); "use strict"; zr.__esModule = !0; zr.default = void 0; var P1 = I1(Ue()), D1 = se(); function I1(i) { return i && i.__esModule ? i : { default: i } } function q1(i, e) { i.prototype = Object.create(e.prototype), i.prototype.constructor = i, ma(i, e) } function ma(i, e) { return ma = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (r, n) { return r.__proto__ = n, r }, ma(i, e) } var R1 = function (i) { q1(e, i); function e(t) { var r; return r = i.call(this, t) || this, r.type = D1.NESTING, r.value = "&", r } return e }(P1.default); zr.default = R1; lp.exports = zr.default }); var fp = v((nn, up) => { l(); "use strict"; nn.__esModule = !0; nn.default = M1; function M1(i) { return i.sort(function (e, t) { return e - t }) } up.exports = nn.default }); var ya = v(D => { l(); "use strict"; D.__esModule = !0; D.word = D.tilde = D.tab = D.str = D.space = D.slash = D.singleQuote = D.semicolon = D.plus = D.pipe = D.openSquare = D.openParenthesis = D.newline = D.greaterThan = D.feed = D.equals = D.doubleQuote = D.dollar = D.cr = D.comment = D.comma = D.combinator = D.colon = D.closeSquare = D.closeParenthesis = D.caret = D.bang = D.backslash = D.at = D.asterisk = D.ampersand = void 0; var B1 = 38; D.ampersand = B1; var F1 = 42; D.asterisk = F1; var N1 = 64; D.at = N1; var L1 = 44; D.comma = L1; var $1 = 58; D.colon = $1; var j1 = 59; D.semicolon = j1; var z1 = 40; D.openParenthesis = z1; var V1 = 41; D.closeParenthesis = V1; var U1 = 91; D.openSquare = U1; var W1 = 93; D.closeSquare = W1; var G1 = 36; D.dollar = G1; var H1 = 126; D.tilde = H1; var Y1 = 94; D.caret = Y1; var Q1 = 43; D.plus = Q1; var J1 = 61; D.equals = J1; var X1 = 124; D.pipe = X1; var K1 = 62; D.greaterThan = K1; var Z1 = 32; D.space = Z1; var cp = 39; D.singleQuote = cp; var ek = 34; D.doubleQuote = ek; var tk = 47; D.slash = tk; var rk = 33; D.bang = rk; var ik = 92; D.backslash = ik; var nk = 13; D.cr = nk; var sk = 12; D.feed = sk; var ak = 10; D.newline = ak; var ok = 9; D.tab = ok; var lk = cp; D.str = lk; var uk = -1; D.comment = uk; var fk = -2; D.word = fk; var ck = -3; D.combinator = ck }); var hp = v(Vr => { - l(); "use strict"; Vr.__esModule = !0; Vr.FIELDS = void 0; Vr.default = wk; var E = pk(ya()), Dt, U; function pp(i) { if (typeof WeakMap != "function") return null; var e = new WeakMap, t = new WeakMap; return (pp = function (n) { return n ? t : e })(i) } function pk(i, e) { if (!e && i && i.__esModule) return i; if (i === null || typeof i != "object" && typeof i != "function") return { default: i }; var t = pp(e); if (t && t.has(i)) return t.get(i); var r = {}, n = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var a in i) if (a !== "default" && Object.prototype.hasOwnProperty.call(i, a)) { var s = n ? Object.getOwnPropertyDescriptor(i, a) : null; s && (s.get || s.set) ? Object.defineProperty(r, a, s) : r[a] = i[a] } return r.default = i, t && t.set(i, r), r } var dk = (Dt = {}, Dt[E.tab] = !0, Dt[E.newline] = !0, Dt[E.cr] = !0, Dt[E.feed] = !0, Dt), hk = (U = {}, U[E.space] = !0, U[E.tab] = !0, U[E.newline] = !0, U[E.cr] = !0, U[E.feed] = !0, U[E.ampersand] = !0, U[E.asterisk] = !0, U[E.bang] = !0, U[E.comma] = !0, U[E.colon] = !0, U[E.semicolon] = !0, U[E.openParenthesis] = !0, U[E.closeParenthesis] = !0, U[E.openSquare] = !0, U[E.closeSquare] = !0, U[E.singleQuote] = !0, U[E.doubleQuote] = !0, U[E.plus] = !0, U[E.pipe] = !0, U[E.tilde] = !0, U[E.greaterThan] = !0, U[E.equals] = !0, U[E.dollar] = !0, U[E.caret] = !0, U[E.slash] = !0, U), wa = {}, dp = "0123456789abcdefABCDEF"; for (sn = 0; sn < dp.length; sn++)wa[dp.charCodeAt(sn)] = !0; var sn; function mk(i, e) { var t = e, r; do { if (r = i.charCodeAt(t), hk[r]) return t - 1; r === E.backslash ? t = gk(i, t) + 1 : t++ } while (t < i.length); return t - 1 } function gk(i, e) { var t = e, r = i.charCodeAt(t + 1); if (!dk[r]) if (wa[r]) { var n = 0; do t++, n++, r = i.charCodeAt(t + 1); while (wa[r] && n < 6); n < 6 && r === E.space && t++ } else t++; return t } var yk = { TYPE: 0, START_LINE: 1, START_COL: 2, END_LINE: 3, END_COL: 4, START_POS: 5, END_POS: 6 }; Vr.FIELDS = yk; function wk(i) { - var e = [], t = i.css.valueOf(), r = t, n = r.length, a = -1, s = 1, o = 0, u = 0, c, f, d, p, m, w, x, y, b, k, S, _, O; function I(B, q) { if (i.safe) t += q, b = t.length - 1; else throw i.error("Unclosed " + B, s, o - a, o) } for (; o < n;) { - switch (c = t.charCodeAt(o), c === E.newline && (a = o, s += 1), c) { - case E.space: case E.tab: case E.newline: case E.cr: case E.feed: b = o; do b += 1, c = t.charCodeAt(b), c === E.newline && (a = b, s += 1); while (c === E.space || c === E.newline || c === E.tab || c === E.cr || c === E.feed); O = E.space, p = s, d = b - a - 1, u = b; break; case E.plus: case E.greaterThan: case E.tilde: case E.pipe: b = o; do b += 1, c = t.charCodeAt(b); while (c === E.plus || c === E.greaterThan || c === E.tilde || c === E.pipe); O = E.combinator, p = s, d = o - a, u = b; break; case E.asterisk: case E.ampersand: case E.bang: case E.comma: case E.equals: case E.dollar: case E.caret: case E.openSquare: case E.closeSquare: case E.colon: case E.semicolon: case E.openParenthesis: case E.closeParenthesis: b = o, O = c, p = s, d = o - a, u = b + 1; break; case E.singleQuote: case E.doubleQuote: _ = c === E.singleQuote ? "'" : '"', b = o; do for (m = !1, b = t.indexOf(_, b + 1), b === -1 && I("quote", _), w = b; t.charCodeAt(w - 1) === E.backslash;)w -= 1, m = !m; while (m); O = E.str, p = s, d = o - a, u = b + 1; break; default: c === E.slash && t.charCodeAt(o + 1) === E.asterisk ? (b = t.indexOf("*/", o + 2) + 1, b === 0 && I("comment", "*/"), f = t.slice(o, b + 1), y = f.split(` -`), x = y.length - 1, x > 0 ? (k = s + x, S = b - y[x].length) : (k = s, S = a), O = E.comment, s = k, p = k, d = b - S) : c === E.slash ? (b = o, O = c, p = s, d = o - a, u = b + 1) : (b = mk(t, o), O = E.word, p = s, d = b - a), u = b + 1; break - }e.push([O, s, o - a, p, d, o, u]), S && (a = S, S = null), o = u - } return e - } - }); var kp = v((Ur, xp) => { l(); "use strict"; Ur.__esModule = !0; Ur.default = void 0; var bk = be(zs()), ba = be(Us()), vk = be(Hs()), mp = be(Qs()), xk = be(Xs()), kk = be(ea()), va = be(ra()), Sk = be(na()), gp = an(fa()), Ck = be(pa()), xa = be(ha()), Ak = be(ga()), _k = be(fp()), A = an(hp()), T = an(ya()), Ok = an(se()), Q = Ar(), wt, ka; function yp(i) { if (typeof WeakMap != "function") return null; var e = new WeakMap, t = new WeakMap; return (yp = function (n) { return n ? t : e })(i) } function an(i, e) { if (!e && i && i.__esModule) return i; if (i === null || typeof i != "object" && typeof i != "function") return { default: i }; var t = yp(e); if (t && t.has(i)) return t.get(i); var r = {}, n = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var a in i) if (a !== "default" && Object.prototype.hasOwnProperty.call(i, a)) { var s = n ? Object.getOwnPropertyDescriptor(i, a) : null; s && (s.get || s.set) ? Object.defineProperty(r, a, s) : r[a] = i[a] } return r.default = i, t && t.set(i, r), r } function be(i) { return i && i.__esModule ? i : { default: i } } function wp(i, e) { for (var t = 0; t < e.length; t++) { var r = e[t]; r.enumerable = r.enumerable || !1, r.configurable = !0, "value" in r && (r.writable = !0), Object.defineProperty(i, r.key, r) } } function Ek(i, e, t) { return e && wp(i.prototype, e), t && wp(i, t), Object.defineProperty(i, "prototype", { writable: !1 }), i } var Sa = (wt = {}, wt[T.space] = !0, wt[T.cr] = !0, wt[T.feed] = !0, wt[T.newline] = !0, wt[T.tab] = !0, wt), Tk = Object.assign({}, Sa, (ka = {}, ka[T.comment] = !0, ka)); function bp(i) { return { line: i[A.FIELDS.START_LINE], column: i[A.FIELDS.START_COL] } } function vp(i) { return { line: i[A.FIELDS.END_LINE], column: i[A.FIELDS.END_COL] } } function bt(i, e, t, r) { return { start: { line: i, column: e }, end: { line: t, column: r } } } function It(i) { return bt(i[A.FIELDS.START_LINE], i[A.FIELDS.START_COL], i[A.FIELDS.END_LINE], i[A.FIELDS.END_COL]) } function Ca(i, e) { if (!!i) return bt(i[A.FIELDS.START_LINE], i[A.FIELDS.START_COL], e[A.FIELDS.END_LINE], e[A.FIELDS.END_COL]) } function qt(i, e) { var t = i[e]; if (typeof t == "string") return t.indexOf("\\") !== -1 && ((0, Q.ensureObject)(i, "raws"), i[e] = (0, Q.unesc)(t), i.raws[e] === void 0 && (i.raws[e] = t)), i } function Aa(i, e) { for (var t = -1, r = []; (t = i.indexOf(e, t + 1)) !== -1;)r.push(t); return r } function Pk() { var i = Array.prototype.concat.apply([], arguments); return i.filter(function (e, t) { return t === i.indexOf(e) }) } var Dk = function () { function i(t, r) { r === void 0 && (r = {}), this.rule = t, this.options = Object.assign({ lossy: !1, safe: !1 }, r), this.position = 0, this.css = typeof this.rule == "string" ? this.rule : this.rule.selector, this.tokens = (0, A.default)({ css: this.css, error: this._errorGenerator(), safe: this.options.safe }); var n = Ca(this.tokens[0], this.tokens[this.tokens.length - 1]); this.root = new bk.default({ source: n }), this.root.errorGenerator = this._errorGenerator(); var a = new ba.default({ source: { start: { line: 1, column: 1 } } }); this.root.append(a), this.current = a, this.loop() } var e = i.prototype; return e._errorGenerator = function () { var r = this; return function (n, a) { return typeof r.rule == "string" ? new Error(n) : r.rule.error(n, a) } }, e.attribute = function () { var r = [], n = this.currToken; for (this.position++; this.position < this.tokens.length && this.currToken[A.FIELDS.TYPE] !== T.closeSquare;)r.push(this.currToken), this.position++; if (this.currToken[A.FIELDS.TYPE] !== T.closeSquare) return this.expected("closing square bracket", this.currToken[A.FIELDS.START_POS]); var a = r.length, s = { source: bt(n[1], n[2], this.currToken[3], this.currToken[4]), sourceIndex: n[A.FIELDS.START_POS] }; if (a === 1 && !~[T.word].indexOf(r[0][A.FIELDS.TYPE])) return this.expected("attribute", r[0][A.FIELDS.START_POS]); for (var o = 0, u = "", c = "", f = null, d = !1; o < a;) { var p = r[o], m = this.content(p), w = r[o + 1]; switch (p[A.FIELDS.TYPE]) { case T.space: if (d = !0, this.options.lossy) break; if (f) { (0, Q.ensureObject)(s, "spaces", f); var x = s.spaces[f].after || ""; s.spaces[f].after = x + m; var y = (0, Q.getProp)(s, "raws", "spaces", f, "after") || null; y && (s.raws.spaces[f].after = y + m) } else u = u + m, c = c + m; break; case T.asterisk: if (w[A.FIELDS.TYPE] === T.equals) s.operator = m, f = "operator"; else if ((!s.namespace || f === "namespace" && !d) && w) { u && ((0, Q.ensureObject)(s, "spaces", "attribute"), s.spaces.attribute.before = u, u = ""), c && ((0, Q.ensureObject)(s, "raws", "spaces", "attribute"), s.raws.spaces.attribute.before = u, c = ""), s.namespace = (s.namespace || "") + m; var b = (0, Q.getProp)(s, "raws", "namespace") || null; b && (s.raws.namespace += m), f = "namespace" } d = !1; break; case T.dollar: if (f === "value") { var k = (0, Q.getProp)(s, "raws", "value"); s.value += "$", k && (s.raws.value = k + "$"); break } case T.caret: w[A.FIELDS.TYPE] === T.equals && (s.operator = m, f = "operator"), d = !1; break; case T.combinator: if (m === "~" && w[A.FIELDS.TYPE] === T.equals && (s.operator = m, f = "operator"), m !== "|") { d = !1; break } w[A.FIELDS.TYPE] === T.equals ? (s.operator = m, f = "operator") : !s.namespace && !s.attribute && (s.namespace = !0), d = !1; break; case T.word: if (w && this.content(w) === "|" && r[o + 2] && r[o + 2][A.FIELDS.TYPE] !== T.equals && !s.operator && !s.namespace) s.namespace = m, f = "namespace"; else if (!s.attribute || f === "attribute" && !d) { u && ((0, Q.ensureObject)(s, "spaces", "attribute"), s.spaces.attribute.before = u, u = ""), c && ((0, Q.ensureObject)(s, "raws", "spaces", "attribute"), s.raws.spaces.attribute.before = c, c = ""), s.attribute = (s.attribute || "") + m; var S = (0, Q.getProp)(s, "raws", "attribute") || null; S && (s.raws.attribute += m), f = "attribute" } else if (!s.value && s.value !== "" || f === "value" && !(d || s.quoteMark)) { var _ = (0, Q.unesc)(m), O = (0, Q.getProp)(s, "raws", "value") || "", I = s.value || ""; s.value = I + _, s.quoteMark = null, (_ !== m || O) && ((0, Q.ensureObject)(s, "raws"), s.raws.value = (O || I) + m), f = "value" } else { var B = m === "i" || m === "I"; (s.value || s.value === "") && (s.quoteMark || d) ? (s.insensitive = B, (!B || m === "I") && ((0, Q.ensureObject)(s, "raws"), s.raws.insensitiveFlag = m), f = "insensitive", u && ((0, Q.ensureObject)(s, "spaces", "insensitive"), s.spaces.insensitive.before = u, u = ""), c && ((0, Q.ensureObject)(s, "raws", "spaces", "insensitive"), s.raws.spaces.insensitive.before = c, c = "")) : (s.value || s.value === "") && (f = "value", s.value += m, s.raws.value && (s.raws.value += m)) } d = !1; break; case T.str: if (!s.attribute || !s.operator) return this.error("Expected an attribute followed by an operator preceding the string.", { index: p[A.FIELDS.START_POS] }); var q = (0, gp.unescapeValue)(m), X = q.unescaped, le = q.quoteMark; s.value = X, s.quoteMark = le, f = "value", (0, Q.ensureObject)(s, "raws"), s.raws.value = m, d = !1; break; case T.equals: if (!s.attribute) return this.expected("attribute", p[A.FIELDS.START_POS], m); if (s.value) return this.error('Unexpected "=" found; an operator was already defined.', { index: p[A.FIELDS.START_POS] }); s.operator = s.operator ? s.operator + m : m, f = "operator", d = !1; break; case T.comment: if (f) if (d || w && w[A.FIELDS.TYPE] === T.space || f === "insensitive") { var ce = (0, Q.getProp)(s, "spaces", f, "after") || "", $e = (0, Q.getProp)(s, "raws", "spaces", f, "after") || ce; (0, Q.ensureObject)(s, "raws", "spaces", f), s.raws.spaces[f].after = $e + m } else { var j = s[f] || "", ue = (0, Q.getProp)(s, "raws", f) || j; (0, Q.ensureObject)(s, "raws"), s.raws[f] = ue + m } else c = c + m; break; default: return this.error('Unexpected "' + m + '" found.', { index: p[A.FIELDS.START_POS] }) }o++ } qt(s, "attribute"), qt(s, "namespace"), this.newNode(new gp.default(s)), this.position++ }, e.parseWhitespaceEquivalentTokens = function (r) { r < 0 && (r = this.tokens.length); var n = this.position, a = [], s = "", o = void 0; do if (Sa[this.currToken[A.FIELDS.TYPE]]) this.options.lossy || (s += this.content()); else if (this.currToken[A.FIELDS.TYPE] === T.comment) { var u = {}; s && (u.before = s, s = ""), o = new mp.default({ value: this.content(), source: It(this.currToken), sourceIndex: this.currToken[A.FIELDS.START_POS], spaces: u }), a.push(o) } while (++this.position < r); if (s) { if (o) o.spaces.after = s; else if (!this.options.lossy) { var c = this.tokens[n], f = this.tokens[this.position - 1]; a.push(new va.default({ value: "", source: bt(c[A.FIELDS.START_LINE], c[A.FIELDS.START_COL], f[A.FIELDS.END_LINE], f[A.FIELDS.END_COL]), sourceIndex: c[A.FIELDS.START_POS], spaces: { before: s, after: "" } })) } } return a }, e.convertWhitespaceNodesToSpace = function (r, n) { var a = this; n === void 0 && (n = !1); var s = "", o = ""; r.forEach(function (c) { var f = a.lossySpace(c.spaces.before, n), d = a.lossySpace(c.rawSpaceBefore, n); s += f + a.lossySpace(c.spaces.after, n && f.length === 0), o += f + c.value + a.lossySpace(c.rawSpaceAfter, n && d.length === 0) }), o === s && (o = void 0); var u = { space: s, rawSpace: o }; return u }, e.isNamedCombinator = function (r) { return r === void 0 && (r = this.position), this.tokens[r + 0] && this.tokens[r + 0][A.FIELDS.TYPE] === T.slash && this.tokens[r + 1] && this.tokens[r + 1][A.FIELDS.TYPE] === T.word && this.tokens[r + 2] && this.tokens[r + 2][A.FIELDS.TYPE] === T.slash }, e.namedCombinator = function () { if (this.isNamedCombinator()) { var r = this.content(this.tokens[this.position + 1]), n = (0, Q.unesc)(r).toLowerCase(), a = {}; n !== r && (a.value = "/" + r + "/"); var s = new xa.default({ value: "/" + n + "/", source: bt(this.currToken[A.FIELDS.START_LINE], this.currToken[A.FIELDS.START_COL], this.tokens[this.position + 2][A.FIELDS.END_LINE], this.tokens[this.position + 2][A.FIELDS.END_COL]), sourceIndex: this.currToken[A.FIELDS.START_POS], raws: a }); return this.position = this.position + 3, s } else this.unexpected() }, e.combinator = function () { var r = this; if (this.content() === "|") return this.namespace(); var n = this.locateNextMeaningfulToken(this.position); if (n < 0 || this.tokens[n][A.FIELDS.TYPE] === T.comma) { var a = this.parseWhitespaceEquivalentTokens(n); if (a.length > 0) { var s = this.current.last; if (s) { var o = this.convertWhitespaceNodesToSpace(a), u = o.space, c = o.rawSpace; c !== void 0 && (s.rawSpaceAfter += c), s.spaces.after += u } else a.forEach(function (O) { return r.newNode(O) }) } return } var f = this.currToken, d = void 0; n > this.position && (d = this.parseWhitespaceEquivalentTokens(n)); var p; if (this.isNamedCombinator() ? p = this.namedCombinator() : this.currToken[A.FIELDS.TYPE] === T.combinator ? (p = new xa.default({ value: this.content(), source: It(this.currToken), sourceIndex: this.currToken[A.FIELDS.START_POS] }), this.position++) : Sa[this.currToken[A.FIELDS.TYPE]] || d || this.unexpected(), p) { if (d) { var m = this.convertWhitespaceNodesToSpace(d), w = m.space, x = m.rawSpace; p.spaces.before = w, p.rawSpaceBefore = x } } else { var y = this.convertWhitespaceNodesToSpace(d, !0), b = y.space, k = y.rawSpace; k || (k = b); var S = {}, _ = { spaces: {} }; b.endsWith(" ") && k.endsWith(" ") ? (S.before = b.slice(0, b.length - 1), _.spaces.before = k.slice(0, k.length - 1)) : b.startsWith(" ") && k.startsWith(" ") ? (S.after = b.slice(1), _.spaces.after = k.slice(1)) : _.value = k, p = new xa.default({ value: " ", source: Ca(f, this.tokens[this.position - 1]), sourceIndex: f[A.FIELDS.START_POS], spaces: S, raws: _ }) } return this.currToken && this.currToken[A.FIELDS.TYPE] === T.space && (p.spaces.after = this.optionalSpace(this.content()), this.position++), this.newNode(p) }, e.comma = function () { if (this.position === this.tokens.length - 1) { this.root.trailingComma = !0, this.position++; return } this.current._inferEndPosition(); var r = new ba.default({ source: { start: bp(this.tokens[this.position + 1]) } }); this.current.parent.append(r), this.current = r, this.position++ }, e.comment = function () { var r = this.currToken; this.newNode(new mp.default({ value: this.content(), source: It(r), sourceIndex: r[A.FIELDS.START_POS] })), this.position++ }, e.error = function (r, n) { throw this.root.error(r, n) }, e.missingBackslash = function () { return this.error("Expected a backslash preceding the semicolon.", { index: this.currToken[A.FIELDS.START_POS] }) }, e.missingParenthesis = function () { return this.expected("opening parenthesis", this.currToken[A.FIELDS.START_POS]) }, e.missingSquareBracket = function () { return this.expected("opening square bracket", this.currToken[A.FIELDS.START_POS]) }, e.unexpected = function () { return this.error("Unexpected '" + this.content() + "'. Escaping special characters with \\ may help.", this.currToken[A.FIELDS.START_POS]) }, e.unexpectedPipe = function () { return this.error("Unexpected '|'.", this.currToken[A.FIELDS.START_POS]) }, e.namespace = function () { var r = this.prevToken && this.content(this.prevToken) || !0; if (this.nextToken[A.FIELDS.TYPE] === T.word) return this.position++, this.word(r); if (this.nextToken[A.FIELDS.TYPE] === T.asterisk) return this.position++, this.universal(r); this.unexpectedPipe() }, e.nesting = function () { if (this.nextToken) { var r = this.content(this.nextToken); if (r === "|") { this.position++; return } } var n = this.currToken; this.newNode(new Ak.default({ value: this.content(), source: It(n), sourceIndex: n[A.FIELDS.START_POS] })), this.position++ }, e.parentheses = function () { var r = this.current.last, n = 1; if (this.position++, r && r.type === Ok.PSEUDO) { var a = new ba.default({ source: { start: bp(this.tokens[this.position - 1]) } }), s = this.current; for (r.append(a), this.current = a; this.position < this.tokens.length && n;)this.currToken[A.FIELDS.TYPE] === T.openParenthesis && n++, this.currToken[A.FIELDS.TYPE] === T.closeParenthesis && n--, n ? this.parse() : (this.current.source.end = vp(this.currToken), this.current.parent.source.end = vp(this.currToken), this.position++); this.current = s } else { for (var o = this.currToken, u = "(", c; this.position < this.tokens.length && n;)this.currToken[A.FIELDS.TYPE] === T.openParenthesis && n++, this.currToken[A.FIELDS.TYPE] === T.closeParenthesis && n--, c = this.currToken, u += this.parseParenthesisToken(this.currToken), this.position++; r ? r.appendToPropertyAndEscape("value", u, u) : this.newNode(new va.default({ value: u, source: bt(o[A.FIELDS.START_LINE], o[A.FIELDS.START_COL], c[A.FIELDS.END_LINE], c[A.FIELDS.END_COL]), sourceIndex: o[A.FIELDS.START_POS] })) } if (n) return this.expected("closing parenthesis", this.currToken[A.FIELDS.START_POS]) }, e.pseudo = function () { for (var r = this, n = "", a = this.currToken; this.currToken && this.currToken[A.FIELDS.TYPE] === T.colon;)n += this.content(), this.position++; if (!this.currToken) return this.expected(["pseudo-class", "pseudo-element"], this.position - 1); if (this.currToken[A.FIELDS.TYPE] === T.word) this.splitWord(!1, function (s, o) { n += s, r.newNode(new Sk.default({ value: n, source: Ca(a, r.currToken), sourceIndex: a[A.FIELDS.START_POS] })), o > 1 && r.nextToken && r.nextToken[A.FIELDS.TYPE] === T.openParenthesis && r.error("Misplaced parenthesis.", { index: r.nextToken[A.FIELDS.START_POS] }) }); else return this.expected(["pseudo-class", "pseudo-element"], this.currToken[A.FIELDS.START_POS]) }, e.space = function () { var r = this.content(); this.position === 0 || this.prevToken[A.FIELDS.TYPE] === T.comma || this.prevToken[A.FIELDS.TYPE] === T.openParenthesis || this.current.nodes.every(function (n) { return n.type === "comment" }) ? (this.spaces = this.optionalSpace(r), this.position++) : this.position === this.tokens.length - 1 || this.nextToken[A.FIELDS.TYPE] === T.comma || this.nextToken[A.FIELDS.TYPE] === T.closeParenthesis ? (this.current.last.spaces.after = this.optionalSpace(r), this.position++) : this.combinator() }, e.string = function () { var r = this.currToken; this.newNode(new va.default({ value: this.content(), source: It(r), sourceIndex: r[A.FIELDS.START_POS] })), this.position++ }, e.universal = function (r) { var n = this.nextToken; if (n && this.content(n) === "|") return this.position++, this.namespace(); var a = this.currToken; this.newNode(new Ck.default({ value: this.content(), source: It(a), sourceIndex: a[A.FIELDS.START_POS] }), r), this.position++ }, e.splitWord = function (r, n) { for (var a = this, s = this.nextToken, o = this.content(); s && ~[T.dollar, T.caret, T.equals, T.word].indexOf(s[A.FIELDS.TYPE]);) { this.position++; var u = this.content(); if (o += u, u.lastIndexOf("\\") === u.length - 1) { var c = this.nextToken; c && c[A.FIELDS.TYPE] === T.space && (o += this.requiredSpace(this.content(c)), this.position++) } s = this.nextToken } var f = Aa(o, ".").filter(function (w) { var x = o[w - 1] === "\\", y = /^\d+\.\d+%$/.test(o); return !x && !y }), d = Aa(o, "#").filter(function (w) { return o[w - 1] !== "\\" }), p = Aa(o, "#{"); p.length && (d = d.filter(function (w) { return !~p.indexOf(w) })); var m = (0, _k.default)(Pk([0].concat(f, d))); m.forEach(function (w, x) { var y = m[x + 1] || o.length, b = o.slice(w, y); if (x === 0 && n) return n.call(a, b, m.length); var k, S = a.currToken, _ = S[A.FIELDS.START_POS] + m[x], O = bt(S[1], S[2] + w, S[3], S[2] + (y - 1)); if (~f.indexOf(w)) { var I = { value: b.slice(1), source: O, sourceIndex: _ }; k = new vk.default(qt(I, "value")) } else if (~d.indexOf(w)) { var B = { value: b.slice(1), source: O, sourceIndex: _ }; k = new xk.default(qt(B, "value")) } else { var q = { value: b, source: O, sourceIndex: _ }; qt(q, "value"), k = new kk.default(q) } a.newNode(k, r), r = null }), this.position++ }, e.word = function (r) { var n = this.nextToken; return n && this.content(n) === "|" ? (this.position++, this.namespace()) : this.splitWord(r) }, e.loop = function () { for (; this.position < this.tokens.length;)this.parse(!0); return this.current._inferEndPosition(), this.root }, e.parse = function (r) { switch (this.currToken[A.FIELDS.TYPE]) { case T.space: this.space(); break; case T.comment: this.comment(); break; case T.openParenthesis: this.parentheses(); break; case T.closeParenthesis: r && this.missingParenthesis(); break; case T.openSquare: this.attribute(); break; case T.dollar: case T.caret: case T.equals: case T.word: this.word(); break; case T.colon: this.pseudo(); break; case T.comma: this.comma(); break; case T.asterisk: this.universal(); break; case T.ampersand: this.nesting(); break; case T.slash: case T.combinator: this.combinator(); break; case T.str: this.string(); break; case T.closeSquare: this.missingSquareBracket(); case T.semicolon: this.missingBackslash(); default: this.unexpected() } }, e.expected = function (r, n, a) { if (Array.isArray(r)) { var s = r.pop(); r = r.join(", ") + " or " + s } var o = /^[aeiou]/.test(r[0]) ? "an" : "a"; return a ? this.error("Expected " + o + " " + r + ', found "' + a + '" instead.', { index: n }) : this.error("Expected " + o + " " + r + ".", { index: n }) }, e.requiredSpace = function (r) { return this.options.lossy ? " " : r }, e.optionalSpace = function (r) { return this.options.lossy ? "" : r }, e.lossySpace = function (r, n) { return this.options.lossy ? n ? " " : "" : r }, e.parseParenthesisToken = function (r) { var n = this.content(r); return r[A.FIELDS.TYPE] === T.space ? this.requiredSpace(n) : n }, e.newNode = function (r, n) { return n && (/^ +$/.test(n) && (this.options.lossy || (this.spaces = (this.spaces || "") + n), n = !0), r.namespace = n, qt(r, "namespace")), this.spaces && (r.spaces.before = this.spaces, this.spaces = ""), this.current.append(r) }, e.content = function (r) { return r === void 0 && (r = this.currToken), this.css.slice(r[A.FIELDS.START_POS], r[A.FIELDS.END_POS]) }, e.locateNextMeaningfulToken = function (r) { r === void 0 && (r = this.position + 1); for (var n = r; n < this.tokens.length;)if (Tk[this.tokens[n][A.FIELDS.TYPE]]) { n++; continue } else return n; return -1 }, Ek(i, [{ key: "currToken", get: function () { return this.tokens[this.position] } }, { key: "nextToken", get: function () { return this.tokens[this.position + 1] } }, { key: "prevToken", get: function () { return this.tokens[this.position - 1] } }]), i }(); Ur.default = Dk; xp.exports = Ur.default }); var Cp = v((Wr, Sp) => { l(); "use strict"; Wr.__esModule = !0; Wr.default = void 0; var Ik = qk(kp()); function qk(i) { return i && i.__esModule ? i : { default: i } } var Rk = function () { function i(t, r) { this.func = t || function () { }, this.funcRes = null, this.options = r } var e = i.prototype; return e._shouldUpdateSelector = function (r, n) { n === void 0 && (n = {}); var a = Object.assign({}, this.options, n); return a.updateSelector === !1 ? !1 : typeof r != "string" }, e._isLossy = function (r) { r === void 0 && (r = {}); var n = Object.assign({}, this.options, r); return n.lossless === !1 }, e._root = function (r, n) { n === void 0 && (n = {}); var a = new Ik.default(r, this._parseOptions(n)); return a.root }, e._parseOptions = function (r) { return { lossy: this._isLossy(r) } }, e._run = function (r, n) { var a = this; return n === void 0 && (n = {}), new Promise(function (s, o) { try { var u = a._root(r, n); Promise.resolve(a.func(u)).then(function (c) { var f = void 0; return a._shouldUpdateSelector(r, n) && (f = u.toString(), r.selector = f), { transform: c, root: u, string: f } }).then(s, o) } catch (c) { o(c); return } }) }, e._runSync = function (r, n) { n === void 0 && (n = {}); var a = this._root(r, n), s = this.func(a); if (s && typeof s.then == "function") throw new Error("Selector processor returned a promise to a synchronous call."); var o = void 0; return n.updateSelector && typeof r != "string" && (o = a.toString(), r.selector = o), { transform: s, root: a, string: o } }, e.ast = function (r, n) { return this._run(r, n).then(function (a) { return a.root }) }, e.astSync = function (r, n) { return this._runSync(r, n).root }, e.transform = function (r, n) { return this._run(r, n).then(function (a) { return a.transform }) }, e.transformSync = function (r, n) { return this._runSync(r, n).transform }, e.process = function (r, n) { return this._run(r, n).then(function (a) { return a.string || a.root.toString() }) }, e.processSync = function (r, n) { var a = this._runSync(r, n); return a.string || a.root.toString() }, i }(); Wr.default = Rk; Sp.exports = Wr.default }); var Ap = v(H => { l(); "use strict"; H.__esModule = !0; H.universal = H.tag = H.string = H.selector = H.root = H.pseudo = H.nesting = H.id = H.comment = H.combinator = H.className = H.attribute = void 0; var Mk = ve(fa()), Bk = ve(Hs()), Fk = ve(ha()), Nk = ve(Qs()), Lk = ve(Xs()), $k = ve(ga()), jk = ve(na()), zk = ve(zs()), Vk = ve(Us()), Uk = ve(ra()), Wk = ve(ea()), Gk = ve(pa()); function ve(i) { return i && i.__esModule ? i : { default: i } } var Hk = function (e) { return new Mk.default(e) }; H.attribute = Hk; var Yk = function (e) { return new Bk.default(e) }; H.className = Yk; var Qk = function (e) { return new Fk.default(e) }; H.combinator = Qk; var Jk = function (e) { return new Nk.default(e) }; H.comment = Jk; var Xk = function (e) { return new Lk.default(e) }; H.id = Xk; var Kk = function (e) { return new $k.default(e) }; H.nesting = Kk; var Zk = function (e) { return new jk.default(e) }; H.pseudo = Zk; var eS = function (e) { return new zk.default(e) }; H.root = eS; var tS = function (e) { return new Vk.default(e) }; H.selector = tS; var rS = function (e) { return new Uk.default(e) }; H.string = rS; var iS = function (e) { return new Wk.default(e) }; H.tag = iS; var nS = function (e) { return new Gk.default(e) }; H.universal = nS }); var Tp = v($ => { l(); "use strict"; $.__esModule = !0; $.isComment = $.isCombinator = $.isClassName = $.isAttribute = void 0; $.isContainer = gS; $.isIdentifier = void 0; $.isNamespace = yS; $.isNesting = void 0; $.isNode = _a; $.isPseudo = void 0; $.isPseudoClass = mS; $.isPseudoElement = Ep; $.isUniversal = $.isTag = $.isString = $.isSelector = $.isRoot = void 0; var J = se(), pe, sS = (pe = {}, pe[J.ATTRIBUTE] = !0, pe[J.CLASS] = !0, pe[J.COMBINATOR] = !0, pe[J.COMMENT] = !0, pe[J.ID] = !0, pe[J.NESTING] = !0, pe[J.PSEUDO] = !0, pe[J.ROOT] = !0, pe[J.SELECTOR] = !0, pe[J.STRING] = !0, pe[J.TAG] = !0, pe[J.UNIVERSAL] = !0, pe); function _a(i) { return typeof i == "object" && sS[i.type] } function xe(i, e) { return _a(e) && e.type === i } var _p = xe.bind(null, J.ATTRIBUTE); $.isAttribute = _p; var aS = xe.bind(null, J.CLASS); $.isClassName = aS; var oS = xe.bind(null, J.COMBINATOR); $.isCombinator = oS; var lS = xe.bind(null, J.COMMENT); $.isComment = lS; var uS = xe.bind(null, J.ID); $.isIdentifier = uS; var fS = xe.bind(null, J.NESTING); $.isNesting = fS; var Oa = xe.bind(null, J.PSEUDO); $.isPseudo = Oa; var cS = xe.bind(null, J.ROOT); $.isRoot = cS; var pS = xe.bind(null, J.SELECTOR); $.isSelector = pS; var dS = xe.bind(null, J.STRING); $.isString = dS; var Op = xe.bind(null, J.TAG); $.isTag = Op; var hS = xe.bind(null, J.UNIVERSAL); $.isUniversal = hS; function Ep(i) { return Oa(i) && i.value && (i.value.startsWith("::") || i.value.toLowerCase() === ":before" || i.value.toLowerCase() === ":after" || i.value.toLowerCase() === ":first-letter" || i.value.toLowerCase() === ":first-line") } function mS(i) { return Oa(i) && !Ep(i) } function gS(i) { return !!(_a(i) && i.walk) } function yS(i) { return _p(i) || Op(i) } }); var Pp = v(Ee => { l(); "use strict"; Ee.__esModule = !0; var Ea = se(); Object.keys(Ea).forEach(function (i) { i === "default" || i === "__esModule" || i in Ee && Ee[i] === Ea[i] || (Ee[i] = Ea[i]) }); var Ta = Ap(); Object.keys(Ta).forEach(function (i) { i === "default" || i === "__esModule" || i in Ee && Ee[i] === Ta[i] || (Ee[i] = Ta[i]) }); var Pa = Tp(); Object.keys(Pa).forEach(function (i) { i === "default" || i === "__esModule" || i in Ee && Ee[i] === Pa[i] || (Ee[i] = Pa[i]) }) }); var Re = v((Gr, Ip) => { l(); "use strict"; Gr.__esModule = !0; Gr.default = void 0; var wS = xS(Cp()), bS = vS(Pp()); function Dp(i) { if (typeof WeakMap != "function") return null; var e = new WeakMap, t = new WeakMap; return (Dp = function (n) { return n ? t : e })(i) } function vS(i, e) { if (!e && i && i.__esModule) return i; if (i === null || typeof i != "object" && typeof i != "function") return { default: i }; var t = Dp(e); if (t && t.has(i)) return t.get(i); var r = {}, n = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var a in i) if (a !== "default" && Object.prototype.hasOwnProperty.call(i, a)) { var s = n ? Object.getOwnPropertyDescriptor(i, a) : null; s && (s.get || s.set) ? Object.defineProperty(r, a, s) : r[a] = i[a] } return r.default = i, t && t.set(i, r), r } function xS(i) { return i && i.__esModule ? i : { default: i } } var Da = function (e) { return new wS.default(e) }; Object.assign(Da, bS); delete Da.__esModule; var kS = Da; Gr.default = kS; Ip.exports = Gr.default }); function Ge(i) { return ["fontSize", "outline"].includes(i) ? e => (typeof e == "function" && (e = e({})), Array.isArray(e) && (e = e[0]), e) : i === "fontFamily" ? e => { typeof e == "function" && (e = e({})); let t = Array.isArray(e) && ne(e[1]) ? e[0] : e; return Array.isArray(t) ? t.join(", ") : t } : ["boxShadow", "transitionProperty", "transitionDuration", "transitionDelay", "transitionTimingFunction", "backgroundImage", "backgroundSize", "backgroundColor", "cursor", "animation"].includes(i) ? e => (typeof e == "function" && (e = e({})), Array.isArray(e) && (e = e.join(", ")), e) : ["gridTemplateColumns", "gridTemplateRows", "objectPosition"].includes(i) ? e => (typeof e == "function" && (e = e({})), typeof e == "string" && (e = V.list.comma(e).join(" ")), e) : (e, t = {}) => (typeof e == "function" && (e = e(t)), e) } var Hr = C(() => { l(); nt(); kt() }); var Lp = v((O3, Ba) => { l(); var { Rule: qp, AtRule: SS } = ge(), Rp = Re(); function Ia(i, e) { let t; try { Rp(r => { t = r }).processSync(i) } catch (r) { throw i.includes(":") ? e ? e.error("Missed semicolon") : r : e ? e.error(r.message) : r } return t.at(0) } function Mp(i, e) { let t = !1; return i.each(r => { if (r.type === "nesting") { let n = e.clone({}); r.value !== "&" ? r.replaceWith(Ia(r.value.replace("&", n.toString()))) : r.replaceWith(n), t = !0 } else "nodes" in r && r.nodes && Mp(r, e) && (t = !0) }), t } function Bp(i, e) { let t = []; return i.selectors.forEach(r => { let n = Ia(r, i); e.selectors.forEach(a => { if (!a) return; let s = Ia(a, e); Mp(s, n) || (s.prepend(Rp.combinator({ value: " " })), s.prepend(n.clone({}))), t.push(s.toString()) }) }), t } function on(i, e) { let t = i.prev(); for (e.after(i); t && t.type === "comment";) { let r = t.prev(); e.after(t), t = r } return i } function CS(i) { return function e(t, r, n, a = n) { let s = []; if (r.each(o => { o.type === "rule" && n ? a && (o.selectors = Bp(t, o)) : o.type === "atrule" && o.nodes ? i[o.name] ? e(t, o, a) : r[Ra] !== !1 && s.push(o) : s.push(o) }), n && s.length) { let o = t.clone({ nodes: [] }); for (let u of s) o.append(u); r.prepend(o) } } } function qa(i, e, t) { let r = new qp({ selector: i, nodes: [] }); return r.append(e), t.after(r), r } function Fp(i, e) { let t = {}; for (let r of i) t[r] = !0; if (e) for (let r of e) t[r.replace(/^@/, "")] = !0; return t } function AS(i) { i = i.trim(); let e = i.match(/^\((.*)\)$/); if (!e) return { type: "basic", selector: i }; let t = e[1].match(/^(with(?:out)?):(.+)$/); if (t) { let r = t[1] === "with", n = Object.fromEntries(t[2].trim().split(/\s+/).map(s => [s, !0])); if (r && n.all) return { type: "noop" }; let a = s => !!n[s]; return n.all ? a = () => !0 : r && (a = s => s === "all" ? !1 : !n[s]), { type: "withrules", escapes: a } } return { type: "unknown" } } function _S(i) { let e = [], t = i.parent; for (; t && t instanceof SS;)e.push(t), t = t.parent; return e } function OS(i) { let e = i[Np]; if (!e) i.after(i.nodes); else { let t = i.nodes, r, n = -1, a, s, o, u = _S(i); if (u.forEach((c, f) => { if (e(c.name)) r = c, n = f, s = o; else { let d = o; o = c.clone({ nodes: [] }), d && o.append(d), a = a || o } }), r ? s ? (a.append(t), r.after(s)) : r.after(t) : i.after(t), i.next() && r) { let c; u.slice(0, n + 1).forEach((f, d, p) => { let m = c; c = f.clone({ nodes: [] }), m && c.append(m); let w = [], y = (p[d - 1] || i).next(); for (; y;)w.push(y), y = y.next(); c.append(w) }), c && (s || t[t.length - 1]).after(c) } } i.remove() } var Ra = Symbol("rootRuleMergeSel"), Np = Symbol("rootRuleEscapes"); function ES(i) { let { params: e } = i, { type: t, selector: r, escapes: n } = AS(e); if (t === "unknown") throw i.error(`Unknown @${i.name} parameter ${JSON.stringify(e)}`); if (t === "basic" && r) { let a = new qp({ selector: r, nodes: i.nodes }); i.removeAll(), i.append(a) } i[Np] = n, i[Ra] = n ? !n("all") : t === "noop" } var Ma = Symbol("hasRootRule"); Ba.exports = (i = {}) => { let e = Fp(["media", "supports", "layer", "container"], i.bubble), t = CS(e), r = Fp(["document", "font-face", "keyframes", "-webkit-keyframes", "-moz-keyframes"], i.unwrap), n = (i.rootRuleName || "at-root").replace(/^@/, ""), a = i.preserveEmpty; return { postcssPlugin: "postcss-nested", Once(s) { s.walkAtRules(n, o => { ES(o), s[Ma] = !0 }) }, Rule(s) { let o = !1, u = s, c = !1, f = []; s.each(d => { d.type === "rule" ? (f.length && (u = qa(s.selector, f, u), f = []), c = !0, o = !0, d.selectors = Bp(s, d), u = on(d, u)) : d.type === "atrule" ? (f.length && (u = qa(s.selector, f, u), f = []), d.name === n ? (o = !0, t(s, d, !0, d[Ra]), u = on(d, u)) : e[d.name] ? (c = !0, o = !0, t(s, d, !0), u = on(d, u)) : r[d.name] ? (c = !0, o = !0, t(s, d, !1), u = on(d, u)) : c && f.push(d)) : d.type === "decl" && c && f.push(d) }), f.length && (u = qa(s.selector, f, u)), o && a !== !0 && (s.raws.semicolon = !0, s.nodes.length === 0 && s.remove()) }, RootExit(s) { s[Ma] && (s.walkAtRules(n, OS), s[Ma] = !1) } } }; Ba.exports.postcss = !0 }); var Vp = v((E3, zp) => { l(); "use strict"; var $p = /-(\w|$)/g, jp = (i, e) => e.toUpperCase(), TS = i => (i = i.toLowerCase(), i === "float" ? "cssFloat" : i.startsWith("-ms-") ? i.substr(1).replace($p, jp) : i.replace($p, jp)); zp.exports = TS }); var La = v((T3, Up) => { l(); var PS = Vp(), DS = { boxFlex: !0, boxFlexGroup: !0, columnCount: !0, flex: !0, flexGrow: !0, flexPositive: !0, flexShrink: !0, flexNegative: !0, fontWeight: !0, lineClamp: !0, lineHeight: !0, opacity: !0, order: !0, orphans: !0, tabSize: !0, widows: !0, zIndex: !0, zoom: !0, fillOpacity: !0, strokeDashoffset: !0, strokeOpacity: !0, strokeWidth: !0 }; function Fa(i) { return typeof i.nodes == "undefined" ? !0 : Na(i) } function Na(i) { let e, t = {}; return i.each(r => { if (r.type === "atrule") e = "@" + r.name, r.params && (e += " " + r.params), typeof t[e] == "undefined" ? t[e] = Fa(r) : Array.isArray(t[e]) ? t[e].push(Fa(r)) : t[e] = [t[e], Fa(r)]; else if (r.type === "rule") { let n = Na(r); if (t[r.selector]) for (let a in n) t[r.selector][a] = n[a]; else t[r.selector] = n } else if (r.type === "decl") { r.prop[0] === "-" && r.prop[1] === "-" || r.parent && r.parent.selector === ":export" ? e = r.prop : e = PS(r.prop); let n = r.value; !isNaN(r.value) && DS[e] && (n = parseFloat(r.value)), r.important && (n += " !important"), typeof t[e] == "undefined" ? t[e] = n : Array.isArray(t[e]) ? t[e].push(n) : t[e] = [t[e], n] } }), t } Up.exports = Na }); var ln = v((P3, Yp) => { l(); var Yr = ge(), Wp = /\s*!important\s*$/i, IS = { "box-flex": !0, "box-flex-group": !0, "column-count": !0, flex: !0, "flex-grow": !0, "flex-positive": !0, "flex-shrink": !0, "flex-negative": !0, "font-weight": !0, "line-clamp": !0, "line-height": !0, opacity: !0, order: !0, orphans: !0, "tab-size": !0, widows: !0, "z-index": !0, zoom: !0, "fill-opacity": !0, "stroke-dashoffset": !0, "stroke-opacity": !0, "stroke-width": !0 }; function qS(i) { return i.replace(/([A-Z])/g, "-$1").replace(/^ms-/, "-ms-").toLowerCase() } function Gp(i, e, t) { t === !1 || t === null || (e.startsWith("--") || (e = qS(e)), typeof t == "number" && (t === 0 || IS[e] ? t = t.toString() : t += "px"), e === "css-float" && (e = "float"), Wp.test(t) ? (t = t.replace(Wp, ""), i.push(Yr.decl({ prop: e, value: t, important: !0 }))) : i.push(Yr.decl({ prop: e, value: t }))) } function Hp(i, e, t) { let r = Yr.atRule({ name: e[1], params: e[3] || "" }); typeof t == "object" && (r.nodes = [], $a(t, r)), i.push(r) } function $a(i, e) { let t, r, n; for (t in i) if (r = i[t], !(r === null || typeof r == "undefined")) if (t[0] === "@") { let a = t.match(/@(\S+)(\s+([\W\w]*)\s*)?/); if (Array.isArray(r)) for (let s of r) Hp(e, a, s); else Hp(e, a, r) } else if (Array.isArray(r)) for (let a of r) Gp(e, t, a); else typeof r == "object" ? (n = Yr.rule({ selector: t }), $a(r, n), e.push(n)) : Gp(e, t, r) } Yp.exports = function (i) { let e = Yr.root(); return $a(i, e), e } }); var ja = v((D3, Qp) => { l(); var RS = La(); Qp.exports = function (e) { return console && console.warn && e.warnings().forEach(t => { let r = t.plugin || "PostCSS"; console.warn(r + ": " + t.text) }), RS(e.root) } }); var Xp = v((I3, Jp) => { l(); var MS = ge(), BS = ja(), FS = ln(); Jp.exports = function (e) { let t = MS(e); return async r => { let n = await t.process(r, { parser: FS, from: void 0 }); return BS(n) } } }); var Zp = v((q3, Kp) => { l(); var NS = ge(), LS = ja(), $S = ln(); Kp.exports = function (i) { let e = NS(i); return t => { let r = e.process(t, { parser: $S, from: void 0 }); return LS(r) } } }); var td = v((R3, ed) => { l(); var jS = La(), zS = ln(), VS = Xp(), US = Zp(); ed.exports = { objectify: jS, parse: zS, async: VS, sync: US } }); var Rt, rd, M3, B3, F3, N3, id = C(() => { l(); Rt = K(td()), rd = Rt.default, M3 = Rt.default.objectify, B3 = Rt.default.parse, F3 = Rt.default.async, N3 = Rt.default.sync }); function Mt(i) { return Array.isArray(i) ? i.flatMap(e => V([(0, nd.default)({ bubble: ["screen"] })]).process(e, { parser: rd }).root.nodes) : Mt([i]) } var nd, za = C(() => { l(); nt(); nd = K(Lp()); id() }); function Bt(i, e, t = !1) { if (i === "") return e; let r = typeof e == "string" ? (0, sd.default)().astSync(e) : e; return r.walkClasses(n => { let a = n.value, s = t && a.startsWith("-"); n.value = s ? `-${i}${a.slice(1)}` : `${i}${a}` }), typeof e == "string" ? r.toString() : r } var sd, un = C(() => { l(); sd = K(Re()) }); function de(i) { let e = ad.default.className(); return e.value = i, mt(e?.raws?.value ?? e.value) } var ad, Ft = C(() => { l(); ad = K(Re()); mi() }); function Va(i) { return mt(`.${de(i)}`) } function fn(i, e) { return Va(Qr(i, e)) } function Qr(i, e) { return e === "DEFAULT" ? i : e === "-" || e === "-DEFAULT" ? `-${i}` : e.startsWith("-") ? `-${i}${e}` : e.startsWith("/") ? `${i}${e}` : `${i}-${e}` } var Ua = C(() => { l(); Ft(); mi() }); function P(i, e = [[i, [i]]], { filterDefault: t = !1, ...r } = {}) { let n = Ge(i); return function ({ matchUtilities: a, theme: s }) { for (let o of e) { let u = Array.isArray(o[0]) ? o : [o]; a(u.reduce((c, [f, d]) => Object.assign(c, { [f]: p => d.reduce((m, w) => Array.isArray(w) ? Object.assign(m, { [w[0]]: w[1] }) : Object.assign(m, { [w]: n(p) }), {}) }), {}), { ...r, values: t ? Object.fromEntries(Object.entries(s(i) ?? {}).filter(([c]) => c !== "DEFAULT")) : s(i) }) } } } var od = C(() => { l(); Hr() }); function st(i) { return i = Array.isArray(i) ? i : [i], i.map(e => { let t = e.values.map(r => r.raw !== void 0 ? r.raw : [r.min && `(min-width: ${r.min})`, r.max && `(max-width: ${r.max})`].filter(Boolean).join(" and ")); return e.not ? `not all and ${t}` : t }).join(", ") } var cn = C(() => { l() }); function Wa(i) { return i.split(XS).map(t => { let r = t.trim(), n = { value: r }, a = r.split(KS), s = new Set; for (let o of a) !s.has("DIRECTIONS") && WS.has(o) ? (n.direction = o, s.add("DIRECTIONS")) : !s.has("PLAY_STATES") && GS.has(o) ? (n.playState = o, s.add("PLAY_STATES")) : !s.has("FILL_MODES") && HS.has(o) ? (n.fillMode = o, s.add("FILL_MODES")) : !s.has("ITERATION_COUNTS") && (YS.has(o) || ZS.test(o)) ? (n.iterationCount = o, s.add("ITERATION_COUNTS")) : !s.has("TIMING_FUNCTION") && QS.has(o) || !s.has("TIMING_FUNCTION") && JS.some(u => o.startsWith(`${u}(`)) ? (n.timingFunction = o, s.add("TIMING_FUNCTION")) : !s.has("DURATION") && ld.test(o) ? (n.duration = o, s.add("DURATION")) : !s.has("DELAY") && ld.test(o) ? (n.delay = o, s.add("DELAY")) : s.has("NAME") ? (n.unknown || (n.unknown = []), n.unknown.push(o)) : (n.name = o, s.add("NAME")); return n }) } var WS, GS, HS, YS, QS, JS, XS, KS, ld, ZS, ud = C(() => { l(); WS = new Set(["normal", "reverse", "alternate", "alternate-reverse"]), GS = new Set(["running", "paused"]), HS = new Set(["none", "forwards", "backwards", "both"]), YS = new Set(["infinite"]), QS = new Set(["linear", "ease", "ease-in", "ease-out", "ease-in-out", "step-start", "step-end"]), JS = ["cubic-bezier", "steps"], XS = /\,(?![^(]*\))/g, KS = /\ +(?![^(]*\))/g, ld = /^(-?[\d.]+m?s)$/, ZS = /^(\d+)$/ }); var fd, ie, cd = C(() => { l(); fd = i => Object.assign({}, ...Object.entries(i ?? {}).flatMap(([e, t]) => typeof t == "object" ? Object.entries(fd(t)).map(([r, n]) => ({ [e + (r === "DEFAULT" ? "" : `-${r}`)]: n })) : [{ [`${e}`]: t }])), ie = fd }); var eC, Ha, tC, rC, iC, nC, sC, aC, oC, lC, uC, fC, cC, pC, dC, hC, mC, gC, Ya, Ga = C(() => { eC = "tailwindcss", Ha = "3.4.1", tC = "A utility-first CSS framework for rapidly building custom user interfaces.", rC = "MIT", iC = "lib/index.js", nC = "types/index.d.ts", sC = "https://github.com/tailwindlabs/tailwindcss.git", aC = "https://github.com/tailwindlabs/tailwindcss/issues", oC = "https://tailwindcss.com", lC = { tailwind: "lib/cli.js", tailwindcss: "lib/cli.js" }, uC = { engine: "stable" }, fC = { prebuild: "npm run generate && rimraf lib", build: `swc src --out-dir lib --copy-files --config jsc.transform.optimizer.globals.vars.__OXIDE__='"false"'`, postbuild: "esbuild lib/cli-peer-dependencies.js --bundle --platform=node --outfile=peers/index.js --define:process.env.CSS_TRANSFORMER_WASM=false", "rebuild-fixtures": "npm run build && node -r @swc/register scripts/rebuildFixtures.js", style: "eslint .", pretest: "npm run generate", test: "jest", "test:integrations": "npm run test --prefix ./integrations", "install:integrations": "node scripts/install-integrations.js", "generate:plugin-list": "node -r @swc/register scripts/create-plugin-list.js", "generate:types": "node -r @swc/register scripts/generate-types.js", generate: "npm run generate:plugin-list && npm run generate:types", "release-channel": "node ./scripts/release-channel.js", "release-notes": "node ./scripts/release-notes.js", prepublishOnly: "npm install --force && npm run build" }, cC = ["src/*", "cli/*", "lib/*", "peers/*", "scripts/*.js", "stubs/*", "nesting/*", "types/**/*", "*.d.ts", "*.css", "*.js"], pC = { "@swc/cli": "^0.1.62", "@swc/core": "^1.3.55", "@swc/jest": "^0.2.26", "@swc/register": "^0.1.10", autoprefixer: "^10.4.14", browserslist: "^4.21.5", concurrently: "^8.0.1", cssnano: "^6.0.0", esbuild: "^0.17.18", eslint: "^8.39.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-prettier": "^4.2.1", jest: "^29.6.0", "jest-diff": "^29.6.0", lightningcss: "1.18.0", prettier: "^2.8.8", rimraf: "^5.0.0", "source-map-js": "^1.0.2", turbo: "^1.9.3" }, dC = { "@alloc/quick-lru": "^5.2.0", arg: "^5.0.2", chokidar: "^3.5.3", didyoumean: "^1.2.2", dlv: "^1.1.3", "fast-glob": "^3.3.0", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", jiti: "^1.19.1", lilconfig: "^2.1.0", micromatch: "^4.0.5", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", picocolors: "^1.0.0", postcss: "^8.4.23", "postcss-import": "^15.1.0", "postcss-js": "^4.0.1", "postcss-load-config": "^4.0.1", "postcss-nested": "^6.0.1", "postcss-selector-parser": "^6.0.11", resolve: "^1.22.2", sucrase: "^3.32.0" }, hC = ["> 1%", "not edge <= 18", "not ie 11", "not op_mini all"], mC = { testTimeout: 3e4, setupFilesAfterEnv: ["<rootDir>/jest/customMatchers.js"], testPathIgnorePatterns: ["/node_modules/", "/integrations/", "/standalone-cli/", "\\.test\\.skip\\.js$"], transformIgnorePatterns: ["node_modules/(?!lightningcss)"], transform: { "\\.js$": "@swc/jest", "\\.ts$": "@swc/jest" } }, gC = { node: ">=14.0.0" }, Ya = { name: eC, version: Ha, description: tC, license: rC, main: iC, types: nC, repository: sC, bugs: aC, homepage: oC, bin: lC, tailwindcss: uC, scripts: fC, files: cC, devDependencies: pC, dependencies: dC, browserslist: hC, jest: mC, engines: gC } }); function at(i, e = !0) { return Array.isArray(i) ? i.map(t => { if (e && Array.isArray(t)) throw new Error("The tuple syntax is not supported for `screens`."); if (typeof t == "string") return { name: t.toString(), not: !1, values: [{ min: t, max: void 0 }] }; let [r, n] = t; return r = r.toString(), typeof n == "string" ? { name: r, not: !1, values: [{ min: n, max: void 0 }] } : Array.isArray(n) ? { name: r, not: !1, values: n.map(a => dd(a)) } : { name: r, not: !1, values: [dd(n)] } }) : at(Object.entries(i ?? {}), !1) } function pn(i) { return i.values.length !== 1 ? { result: !1, reason: "multiple-values" } : i.values[0].raw !== void 0 ? { result: !1, reason: "raw-values" } : i.values[0].min !== void 0 && i.values[0].max !== void 0 ? { result: !1, reason: "min-and-max" } : { result: !0, reason: null } } function pd(i, e, t) { let r = dn(e, i), n = dn(t, i), a = pn(r), s = pn(n); if (a.reason === "multiple-values" || s.reason === "multiple-values") throw new Error("Attempted to sort a screen with multiple values. This should never happen. Please open a bug report."); if (a.reason === "raw-values" || s.reason === "raw-values") throw new Error("Attempted to sort a screen with raw values. This should never happen. Please open a bug report."); if (a.reason === "min-and-max" || s.reason === "min-and-max") throw new Error("Attempted to sort a screen with both min and max values. This should never happen. Please open a bug report."); let { min: o, max: u } = r.values[0], { min: c, max: f } = n.values[0]; e.not && ([o, u] = [u, o]), t.not && ([c, f] = [f, c]), o = o === void 0 ? o : parseFloat(o), u = u === void 0 ? u : parseFloat(u), c = c === void 0 ? c : parseFloat(c), f = f === void 0 ? f : parseFloat(f); let [d, p] = i === "min" ? [o, c] : [f, u]; return d - p } function dn(i, e) { return typeof i == "object" ? i : { name: "arbitrary-screen", values: [{ [e]: i }] } } function dd({ "min-width": i, min: e = i, max: t, raw: r } = {}) { return { min: e, max: t, raw: r } } var hn = C(() => { l() }); function mn(i, e) { i.walkDecls(t => { if (e.includes(t.prop)) { t.remove(); return } for (let r of e) t.value.includes(`/ var(${r})`) && (t.value = t.value.replace(`/ var(${r})`, "")) }) } var hd = C(() => { l() }); var Y, Te, Me, Be, md, gd = C(() => { l(); je(); gt(); nt(); od(); cn(); Ft(); ud(); cd(); or(); cs(); kt(); Hr(); Ga(); Oe(); hn(); ns(); hd(); ze(); fr(); Xr(); Y = { childVariant: ({ addVariant: i }) => { i("*", "& > *") }, pseudoElementVariants: ({ addVariant: i }) => { i("first-letter", "&::first-letter"), i("first-line", "&::first-line"), i("marker", [({ container: e }) => (mn(e, ["--tw-text-opacity"]), "& *::marker"), ({ container: e }) => (mn(e, ["--tw-text-opacity"]), "&::marker")]), i("selection", ["& *::selection", "&::selection"]), i("file", "&::file-selector-button"), i("placeholder", "&::placeholder"), i("backdrop", "&::backdrop"), i("before", ({ container: e }) => (e.walkRules(t => { let r = !1; t.walkDecls("content", () => { r = !0 }), r || t.prepend(V.decl({ prop: "content", value: "var(--tw-content)" })) }), "&::before")), i("after", ({ container: e }) => (e.walkRules(t => { let r = !1; t.walkDecls("content", () => { r = !0 }), r || t.prepend(V.decl({ prop: "content", value: "var(--tw-content)" })) }), "&::after")) }, pseudoClassVariants: ({ addVariant: i, matchVariant: e, config: t, prefix: r }) => { let n = [["first", "&:first-child"], ["last", "&:last-child"], ["only", "&:only-child"], ["odd", "&:nth-child(odd)"], ["even", "&:nth-child(even)"], "first-of-type", "last-of-type", "only-of-type", ["visited", ({ container: s }) => (mn(s, ["--tw-text-opacity", "--tw-border-opacity", "--tw-bg-opacity"]), "&:visited")], "target", ["open", "&[open]"], "default", "checked", "indeterminate", "placeholder-shown", "autofill", "optional", "required", "valid", "invalid", "in-range", "out-of-range", "read-only", "empty", "focus-within", ["hover", Z(t(), "hoverOnlyWhenSupported") ? "@media (hover: hover) and (pointer: fine) { &:hover }" : "&:hover"], "focus", "focus-visible", "active", "enabled", "disabled"].map(s => Array.isArray(s) ? s : [s, `&:${s}`]); for (let [s, o] of n) i(s, u => typeof o == "function" ? o(u) : o); let a = { group: (s, { modifier: o }) => o ? [`:merge(${r(".group")}\\/${de(o)})`, " &"] : [`:merge(${r(".group")})`, " &"], peer: (s, { modifier: o }) => o ? [`:merge(${r(".peer")}\\/${de(o)})`, " ~ &"] : [`:merge(${r(".peer")})`, " ~ &"] }; for (let [s, o] of Object.entries(a)) e(s, (u = "", c) => { let f = N(typeof u == "function" ? u(c) : u); f.includes("&") || (f = "&" + f); let [d, p] = o("", c), m = null, w = null, x = 0; for (let y = 0; y < f.length; ++y) { let b = f[y]; b === "&" ? m = y : b === "'" || b === '"' ? x += 1 : m !== null && b === " " && !x && (w = y) } return m !== null && w === null && (w = f.length), f.slice(0, m) + d + f.slice(m + 1, w) + p + f.slice(w) }, { values: Object.fromEntries(n), [Jr]: { respectPrefix: !1 } }) }, directionVariants: ({ addVariant: i }) => { i("ltr", '&:where([dir="ltr"], [dir="ltr"] *)'), i("rtl", '&:where([dir="rtl"], [dir="rtl"] *)') }, reducedMotionVariants: ({ addVariant: i }) => { i("motion-safe", "@media (prefers-reduced-motion: no-preference)"), i("motion-reduce", "@media (prefers-reduced-motion: reduce)") }, darkVariants: ({ config: i, addVariant: e }) => { let [t, r = ".dark"] = [].concat(i("darkMode", "media")); if (t === !1 && (t = "media", F.warn("darkmode-false", ["The `darkMode` option in your Tailwind CSS configuration is set to `false`, which now behaves the same as `media`.", "Change `darkMode` to `media` or remove it entirely.", "https://tailwindcss.com/docs/upgrade-guide#remove-dark-mode-configuration"])), t === "variant") { let n; if (Array.isArray(r) || typeof r == "function" ? n = r : typeof r == "string" && (n = [r]), Array.isArray(n)) for (let a of n) a === ".dark" ? (t = !1, F.warn("darkmode-variant-without-selector", ["When using `variant` for `darkMode`, you must provide a selector.", 'Example: `darkMode: ["variant", ".your-selector &"]`'])) : a.includes("&") || (t = !1, F.warn("darkmode-variant-without-ampersand", ["When using `variant` for `darkMode`, your selector must contain `&`.", 'Example `darkMode: ["variant", ".your-selector &"]`'])); r = n } t === "selector" ? e("dark", `&:where(${r}, ${r} *)`) : t === "media" ? e("dark", "@media (prefers-color-scheme: dark)") : t === "variant" ? e("dark", r) : t === "class" && e("dark", `:is(${r} &)`) }, printVariant: ({ addVariant: i }) => { i("print", "@media print") }, screenVariants: ({ theme: i, addVariant: e, matchVariant: t }) => { let r = i("screens") ?? {}, n = Object.values(r).every(b => typeof b == "string"), a = at(i("screens")), s = new Set([]); function o(b) { return b.match(/(\D+)$/)?.[1] ?? "(none)" } function u(b) { b !== void 0 && s.add(o(b)) } function c(b) { return u(b), s.size === 1 } for (let b of a) for (let k of b.values) u(k.min), u(k.max); let f = s.size <= 1; function d(b) { return Object.fromEntries(a.filter(k => pn(k).result).map(k => { let { min: S, max: _ } = k.values[0]; if (b === "min" && S !== void 0) return k; if (b === "min" && _ !== void 0) return { ...k, not: !k.not }; if (b === "max" && _ !== void 0) return k; if (b === "max" && S !== void 0) return { ...k, not: !k.not } }).map(k => [k.name, k])) } function p(b) { return (k, S) => pd(b, k.value, S.value) } let m = p("max"), w = p("min"); function x(b) { return k => { if (n) if (f) { if (typeof k == "string" && !c(k)) return F.warn("minmax-have-mixed-units", ["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."]), [] } else return F.warn("mixed-screen-units", ["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."]), []; else return F.warn("complex-screen-config", ["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing objects."]), []; return [`@media ${st(dn(k, b))}`] } } t("max", x("max"), { sort: m, values: n ? d("max") : {} }); let y = "min-screens"; for (let b of a) e(b.name, `@media ${st(b)}`, { id: y, sort: n && f ? w : void 0, value: b }); t("min", x("min"), { id: y, sort: w }) }, supportsVariants: ({ matchVariant: i, theme: e }) => { i("supports", (t = "") => { let r = N(t), n = /^\w*\s*\(/.test(r); return r = n ? r.replace(/\b(and|or|not)\b/g, " $1 ") : r, n ? `@supports ${r}` : (r.includes(":") || (r = `${r}: var(--tw)`), r.startsWith("(") && r.endsWith(")") || (r = `(${r})`), `@supports ${r}`) }, { values: e("supports") ?? {} }) }, hasVariants: ({ matchVariant: i }) => { i("has", e => `&:has(${N(e)})`, { values: {} }), i("group-has", (e, { modifier: t }) => t ? `:merge(.group\\/${t}):has(${N(e)}) &` : `:merge(.group):has(${N(e)}) &`, { values: {} }), i("peer-has", (e, { modifier: t }) => t ? `:merge(.peer\\/${t}):has(${N(e)}) ~ &` : `:merge(.peer):has(${N(e)}) ~ &`, { values: {} }) }, ariaVariants: ({ matchVariant: i, theme: e }) => { i("aria", t => `&[aria-${N(t)}]`, { values: e("aria") ?? {} }), i("group-aria", (t, { modifier: r }) => r ? `:merge(.group\\/${r})[aria-${N(t)}] &` : `:merge(.group)[aria-${N(t)}] &`, { values: e("aria") ?? {} }), i("peer-aria", (t, { modifier: r }) => r ? `:merge(.peer\\/${r})[aria-${N(t)}] ~ &` : `:merge(.peer)[aria-${N(t)}] ~ &`, { values: e("aria") ?? {} }) }, dataVariants: ({ matchVariant: i, theme: e }) => { i("data", t => `&[data-${N(t)}]`, { values: e("data") ?? {} }), i("group-data", (t, { modifier: r }) => r ? `:merge(.group\\/${r})[data-${N(t)}] &` : `:merge(.group)[data-${N(t)}] &`, { values: e("data") ?? {} }), i("peer-data", (t, { modifier: r }) => r ? `:merge(.peer\\/${r})[data-${N(t)}] ~ &` : `:merge(.peer)[data-${N(t)}] ~ &`, { values: e("data") ?? {} }) }, orientationVariants: ({ addVariant: i }) => { i("portrait", "@media (orientation: portrait)"), i("landscape", "@media (orientation: landscape)") }, prefersContrastVariants: ({ addVariant: i }) => { i("contrast-more", "@media (prefers-contrast: more)"), i("contrast-less", "@media (prefers-contrast: less)") }, forcedColorsVariants: ({ addVariant: i }) => { i("forced-colors", "@media (forced-colors: active)") } }, Te = ["translate(var(--tw-translate-x), var(--tw-translate-y))", "rotate(var(--tw-rotate))", "skewX(var(--tw-skew-x))", "skewY(var(--tw-skew-y))", "scaleX(var(--tw-scale-x))", "scaleY(var(--tw-scale-y))"].join(" "), Me = ["var(--tw-blur)", "var(--tw-brightness)", "var(--tw-contrast)", "var(--tw-grayscale)", "var(--tw-hue-rotate)", "var(--tw-invert)", "var(--tw-saturate)", "var(--tw-sepia)", "var(--tw-drop-shadow)"].join(" "), Be = ["var(--tw-backdrop-blur)", "var(--tw-backdrop-brightness)", "var(--tw-backdrop-contrast)", "var(--tw-backdrop-grayscale)", "var(--tw-backdrop-hue-rotate)", "var(--tw-backdrop-invert)", "var(--tw-backdrop-opacity)", "var(--tw-backdrop-saturate)", "var(--tw-backdrop-sepia)"].join(" "), md = { preflight: ({ addBase: i }) => { let e = V.parse(`*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:theme('borderColor.DEFAULT', currentColor)}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:theme('fontFamily.sans', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");font-feature-settings:theme('fontFamily.sans[1].fontFeatureSettings', normal);font-variation-settings:theme('fontFamily.sans[1].fontVariationSettings', normal);-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:theme('fontFamily.mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);font-feature-settings:theme('fontFamily.mono[1].fontFeatureSettings', normal);font-variation-settings:theme('fontFamily.mono[1].fontVariationSettings', normal);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:theme('colors.gray.4', #9ca3af)}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}`); i([V.comment({ text: `! tailwindcss v${Ha} | MIT License | https://tailwindcss.com` }), ...e.nodes]) }, container: (() => { function i(t = []) { return t.flatMap(r => r.values.map(n => n.min)).filter(r => r !== void 0) } function e(t, r, n) { if (typeof n == "undefined") return []; if (!(typeof n == "object" && n !== null)) return [{ screen: "DEFAULT", minWidth: 0, padding: n }]; let a = []; n.DEFAULT && a.push({ screen: "DEFAULT", minWidth: 0, padding: n.DEFAULT }); for (let s of t) for (let o of r) for (let { min: u } of o.values) u === s && a.push({ minWidth: s, padding: n[o.name] }); return a } return function ({ addComponents: t, theme: r }) { let n = at(r("container.screens", r("screens"))), a = i(n), s = e(a, n, r("container.padding")), o = c => { let f = s.find(d => d.minWidth === c); return f ? { paddingRight: f.padding, paddingLeft: f.padding } : {} }, u = Array.from(new Set(a.slice().sort((c, f) => parseInt(c) - parseInt(f)))).map(c => ({ [`@media (min-width: ${c})`]: { ".container": { "max-width": c, ...o(c) } } })); t([{ ".container": Object.assign({ width: "100%" }, r("container.center", !1) ? { marginRight: "auto", marginLeft: "auto" } : {}, o(0)) }, ...u]) } })(), accessibility: ({ addUtilities: i }) => { i({ ".sr-only": { position: "absolute", width: "1px", height: "1px", padding: "0", margin: "-1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)", whiteSpace: "nowrap", borderWidth: "0" }, ".not-sr-only": { position: "static", width: "auto", height: "auto", padding: "0", margin: "0", overflow: "visible", clip: "auto", whiteSpace: "normal" } }) }, pointerEvents: ({ addUtilities: i }) => { i({ ".pointer-events-none": { "pointer-events": "none" }, ".pointer-events-auto": { "pointer-events": "auto" } }) }, visibility: ({ addUtilities: i }) => { i({ ".visible": { visibility: "visible" }, ".invisible": { visibility: "hidden" }, ".collapse": { visibility: "collapse" } }) }, position: ({ addUtilities: i }) => { i({ ".static": { position: "static" }, ".fixed": { position: "fixed" }, ".absolute": { position: "absolute" }, ".relative": { position: "relative" }, ".sticky": { position: "sticky" } }) }, inset: P("inset", [["inset", ["inset"]], [["inset-x", ["left", "right"]], ["inset-y", ["top", "bottom"]]], [["start", ["inset-inline-start"]], ["end", ["inset-inline-end"]], ["top", ["top"]], ["right", ["right"]], ["bottom", ["bottom"]], ["left", ["left"]]]], { supportsNegativeValues: !0 }), isolation: ({ addUtilities: i }) => { i({ ".isolate": { isolation: "isolate" }, ".isolation-auto": { isolation: "auto" } }) }, zIndex: P("zIndex", [["z", ["zIndex"]]], { supportsNegativeValues: !0 }), order: P("order", void 0, { supportsNegativeValues: !0 }), gridColumn: P("gridColumn", [["col", ["gridColumn"]]]), gridColumnStart: P("gridColumnStart", [["col-start", ["gridColumnStart"]]]), gridColumnEnd: P("gridColumnEnd", [["col-end", ["gridColumnEnd"]]]), gridRow: P("gridRow", [["row", ["gridRow"]]]), gridRowStart: P("gridRowStart", [["row-start", ["gridRowStart"]]]), gridRowEnd: P("gridRowEnd", [["row-end", ["gridRowEnd"]]]), float: ({ addUtilities: i }) => { i({ ".float-start": { float: "inline-start" }, ".float-end": { float: "inline-end" }, ".float-right": { float: "right" }, ".float-left": { float: "left" }, ".float-none": { float: "none" } }) }, clear: ({ addUtilities: i }) => { i({ ".clear-start": { clear: "inline-start" }, ".clear-end": { clear: "inline-end" }, ".clear-left": { clear: "left" }, ".clear-right": { clear: "right" }, ".clear-both": { clear: "both" }, ".clear-none": { clear: "none" } }) }, margin: P("margin", [["m", ["margin"]], [["mx", ["margin-left", "margin-right"]], ["my", ["margin-top", "margin-bottom"]]], [["ms", ["margin-inline-start"]], ["me", ["margin-inline-end"]], ["mt", ["margin-top"]], ["mr", ["margin-right"]], ["mb", ["margin-bottom"]], ["ml", ["margin-left"]]]], { supportsNegativeValues: !0 }), boxSizing: ({ addUtilities: i }) => { i({ ".box-border": { "box-sizing": "border-box" }, ".box-content": { "box-sizing": "content-box" } }) }, lineClamp: ({ matchUtilities: i, addUtilities: e, theme: t }) => { i({ "line-clamp": r => ({ overflow: "hidden", display: "-webkit-box", "-webkit-box-orient": "vertical", "-webkit-line-clamp": `${r}` }) }, { values: t("lineClamp") }), e({ ".line-clamp-none": { overflow: "visible", display: "block", "-webkit-box-orient": "horizontal", "-webkit-line-clamp": "none" } }) }, display: ({ addUtilities: i }) => { i({ ".block": { display: "block" }, ".inline-block": { display: "inline-block" }, ".inline": { display: "inline" }, ".flex": { display: "flex" }, ".inline-flex": { display: "inline-flex" }, ".table": { display: "table" }, ".inline-table": { display: "inline-table" }, ".table-caption": { display: "table-caption" }, ".table-cell": { display: "table-cell" }, ".table-column": { display: "table-column" }, ".table-column-group": { display: "table-column-group" }, ".table-footer-group": { display: "table-footer-group" }, ".table-header-group": { display: "table-header-group" }, ".table-row-group": { display: "table-row-group" }, ".table-row": { display: "table-row" }, ".flow-root": { display: "flow-root" }, ".grid": { display: "grid" }, ".inline-grid": { display: "inline-grid" }, ".contents": { display: "contents" }, ".list-item": { display: "list-item" }, ".hidden": { display: "none" } }) }, aspectRatio: P("aspectRatio", [["aspect", ["aspect-ratio"]]]), size: P("size", [["size", ["width", "height"]]]), height: P("height", [["h", ["height"]]]), maxHeight: P("maxHeight", [["max-h", ["maxHeight"]]]), minHeight: P("minHeight", [["min-h", ["minHeight"]]]), width: P("width", [["w", ["width"]]]), minWidth: P("minWidth", [["min-w", ["minWidth"]]]), maxWidth: P("maxWidth", [["max-w", ["maxWidth"]]]), flex: P("flex"), flexShrink: P("flexShrink", [["flex-shrink", ["flex-shrink"]], ["shrink", ["flex-shrink"]]]), flexGrow: P("flexGrow", [["flex-grow", ["flex-grow"]], ["grow", ["flex-grow"]]]), flexBasis: P("flexBasis", [["basis", ["flex-basis"]]]), tableLayout: ({ addUtilities: i }) => { i({ ".table-auto": { "table-layout": "auto" }, ".table-fixed": { "table-layout": "fixed" } }) }, captionSide: ({ addUtilities: i }) => { i({ ".caption-top": { "caption-side": "top" }, ".caption-bottom": { "caption-side": "bottom" } }) }, borderCollapse: ({ addUtilities: i }) => { i({ ".border-collapse": { "border-collapse": "collapse" }, ".border-separate": { "border-collapse": "separate" } }) }, borderSpacing: ({ addDefaults: i, matchUtilities: e, theme: t }) => { i("border-spacing", { "--tw-border-spacing-x": 0, "--tw-border-spacing-y": 0 }), e({ "border-spacing": r => ({ "--tw-border-spacing-x": r, "--tw-border-spacing-y": r, "@defaults border-spacing": {}, "border-spacing": "var(--tw-border-spacing-x) var(--tw-border-spacing-y)" }), "border-spacing-x": r => ({ "--tw-border-spacing-x": r, "@defaults border-spacing": {}, "border-spacing": "var(--tw-border-spacing-x) var(--tw-border-spacing-y)" }), "border-spacing-y": r => ({ "--tw-border-spacing-y": r, "@defaults border-spacing": {}, "border-spacing": "var(--tw-border-spacing-x) var(--tw-border-spacing-y)" }) }, { values: t("borderSpacing") }) }, transformOrigin: P("transformOrigin", [["origin", ["transformOrigin"]]]), translate: P("translate", [[["translate-x", [["@defaults transform", {}], "--tw-translate-x", ["transform", Te]]], ["translate-y", [["@defaults transform", {}], "--tw-translate-y", ["transform", Te]]]]], { supportsNegativeValues: !0 }), rotate: P("rotate", [["rotate", [["@defaults transform", {}], "--tw-rotate", ["transform", Te]]]], { supportsNegativeValues: !0 }), skew: P("skew", [[["skew-x", [["@defaults transform", {}], "--tw-skew-x", ["transform", Te]]], ["skew-y", [["@defaults transform", {}], "--tw-skew-y", ["transform", Te]]]]], { supportsNegativeValues: !0 }), scale: P("scale", [["scale", [["@defaults transform", {}], "--tw-scale-x", "--tw-scale-y", ["transform", Te]]], [["scale-x", [["@defaults transform", {}], "--tw-scale-x", ["transform", Te]]], ["scale-y", [["@defaults transform", {}], "--tw-scale-y", ["transform", Te]]]]], { supportsNegativeValues: !0 }), transform: ({ addDefaults: i, addUtilities: e }) => { i("transform", { "--tw-translate-x": "0", "--tw-translate-y": "0", "--tw-rotate": "0", "--tw-skew-x": "0", "--tw-skew-y": "0", "--tw-scale-x": "1", "--tw-scale-y": "1" }), e({ ".transform": { "@defaults transform": {}, transform: Te }, ".transform-cpu": { transform: Te }, ".transform-gpu": { transform: Te.replace("translate(var(--tw-translate-x), var(--tw-translate-y))", "translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)") }, ".transform-none": { transform: "none" } }) }, animation: ({ matchUtilities: i, theme: e, config: t }) => { let r = a => de(t("prefix") + a), n = Object.fromEntries(Object.entries(e("keyframes") ?? {}).map(([a, s]) => [a, { [`@keyframes ${r(a)}`]: s }])); i({ animate: a => { let s = Wa(a); return [...s.flatMap(o => n[o.name]), { animation: s.map(({ name: o, value: u }) => o === void 0 || n[o] === void 0 ? u : u.replace(o, r(o))).join(", ") }] } }, { values: e("animation") }) }, cursor: P("cursor"), touchAction: ({ addDefaults: i, addUtilities: e }) => { i("touch-action", { "--tw-pan-x": " ", "--tw-pan-y": " ", "--tw-pinch-zoom": " " }); let t = "var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)"; e({ ".touch-auto": { "touch-action": "auto" }, ".touch-none": { "touch-action": "none" }, ".touch-pan-x": { "@defaults touch-action": {}, "--tw-pan-x": "pan-x", "touch-action": t }, ".touch-pan-left": { "@defaults touch-action": {}, "--tw-pan-x": "pan-left", "touch-action": t }, ".touch-pan-right": { "@defaults touch-action": {}, "--tw-pan-x": "pan-right", "touch-action": t }, ".touch-pan-y": { "@defaults touch-action": {}, "--tw-pan-y": "pan-y", "touch-action": t }, ".touch-pan-up": { "@defaults touch-action": {}, "--tw-pan-y": "pan-up", "touch-action": t }, ".touch-pan-down": { "@defaults touch-action": {}, "--tw-pan-y": "pan-down", "touch-action": t }, ".touch-pinch-zoom": { "@defaults touch-action": {}, "--tw-pinch-zoom": "pinch-zoom", "touch-action": t }, ".touch-manipulation": { "touch-action": "manipulation" } }) }, userSelect: ({ addUtilities: i }) => { i({ ".select-none": { "user-select": "none" }, ".select-text": { "user-select": "text" }, ".select-all": { "user-select": "all" }, ".select-auto": { "user-select": "auto" } }) }, resize: ({ addUtilities: i }) => { i({ ".resize-none": { resize: "none" }, ".resize-y": { resize: "vertical" }, ".resize-x": { resize: "horizontal" }, ".resize": { resize: "both" } }) }, scrollSnapType: ({ addDefaults: i, addUtilities: e }) => { i("scroll-snap-type", { "--tw-scroll-snap-strictness": "proximity" }), e({ ".snap-none": { "scroll-snap-type": "none" }, ".snap-x": { "@defaults scroll-snap-type": {}, "scroll-snap-type": "x var(--tw-scroll-snap-strictness)" }, ".snap-y": { "@defaults scroll-snap-type": {}, "scroll-snap-type": "y var(--tw-scroll-snap-strictness)" }, ".snap-both": { "@defaults scroll-snap-type": {}, "scroll-snap-type": "both var(--tw-scroll-snap-strictness)" }, ".snap-mandatory": { "--tw-scroll-snap-strictness": "mandatory" }, ".snap-proximity": { "--tw-scroll-snap-strictness": "proximity" } }) }, scrollSnapAlign: ({ addUtilities: i }) => { i({ ".snap-start": { "scroll-snap-align": "start" }, ".snap-end": { "scroll-snap-align": "end" }, ".snap-center": { "scroll-snap-align": "center" }, ".snap-align-none": { "scroll-snap-align": "none" } }) }, scrollSnapStop: ({ addUtilities: i }) => { i({ ".snap-normal": { "scroll-snap-stop": "normal" }, ".snap-always": { "scroll-snap-stop": "always" } }) }, scrollMargin: P("scrollMargin", [["scroll-m", ["scroll-margin"]], [["scroll-mx", ["scroll-margin-left", "scroll-margin-right"]], ["scroll-my", ["scroll-margin-top", "scroll-margin-bottom"]]], [["scroll-ms", ["scroll-margin-inline-start"]], ["scroll-me", ["scroll-margin-inline-end"]], ["scroll-mt", ["scroll-margin-top"]], ["scroll-mr", ["scroll-margin-right"]], ["scroll-mb", ["scroll-margin-bottom"]], ["scroll-ml", ["scroll-margin-left"]]]], { supportsNegativeValues: !0 }), scrollPadding: P("scrollPadding", [["scroll-p", ["scroll-padding"]], [["scroll-px", ["scroll-padding-left", "scroll-padding-right"]], ["scroll-py", ["scroll-padding-top", "scroll-padding-bottom"]]], [["scroll-ps", ["scroll-padding-inline-start"]], ["scroll-pe", ["scroll-padding-inline-end"]], ["scroll-pt", ["scroll-padding-top"]], ["scroll-pr", ["scroll-padding-right"]], ["scroll-pb", ["scroll-padding-bottom"]], ["scroll-pl", ["scroll-padding-left"]]]]), listStylePosition: ({ addUtilities: i }) => { i({ ".list-inside": { "list-style-position": "inside" }, ".list-outside": { "list-style-position": "outside" } }) }, listStyleType: P("listStyleType", [["list", ["listStyleType"]]]), listStyleImage: P("listStyleImage", [["list-image", ["listStyleImage"]]]), appearance: ({ addUtilities: i }) => { i({ ".appearance-none": { appearance: "none" }, ".appearance-auto": { appearance: "auto" } }) }, columns: P("columns", [["columns", ["columns"]]]), breakBefore: ({ addUtilities: i }) => { i({ ".break-before-auto": { "break-before": "auto" }, ".break-before-avoid": { "break-before": "avoid" }, ".break-before-all": { "break-before": "all" }, ".break-before-avoid-page": { "break-before": "avoid-page" }, ".break-before-page": { "break-before": "page" }, ".break-before-left": { "break-before": "left" }, ".break-before-right": { "break-before": "right" }, ".break-before-column": { "break-before": "column" } }) }, breakInside: ({ addUtilities: i }) => { i({ ".break-inside-auto": { "break-inside": "auto" }, ".break-inside-avoid": { "break-inside": "avoid" }, ".break-inside-avoid-page": { "break-inside": "avoid-page" }, ".break-inside-avoid-column": { "break-inside": "avoid-column" } }) }, breakAfter: ({ addUtilities: i }) => { i({ ".break-after-auto": { "break-after": "auto" }, ".break-after-avoid": { "break-after": "avoid" }, ".break-after-all": { "break-after": "all" }, ".break-after-avoid-page": { "break-after": "avoid-page" }, ".break-after-page": { "break-after": "page" }, ".break-after-left": { "break-after": "left" }, ".break-after-right": { "break-after": "right" }, ".break-after-column": { "break-after": "column" } }) }, gridAutoColumns: P("gridAutoColumns", [["auto-cols", ["gridAutoColumns"]]]), gridAutoFlow: ({ addUtilities: i }) => { i({ ".grid-flow-row": { gridAutoFlow: "row" }, ".grid-flow-col": { gridAutoFlow: "column" }, ".grid-flow-dense": { gridAutoFlow: "dense" }, ".grid-flow-row-dense": { gridAutoFlow: "row dense" }, ".grid-flow-col-dense": { gridAutoFlow: "column dense" } }) }, gridAutoRows: P("gridAutoRows", [["auto-rows", ["gridAutoRows"]]]), gridTemplateColumns: P("gridTemplateColumns", [["grid-cols", ["gridTemplateColumns"]]]), gridTemplateRows: P("gridTemplateRows", [["grid-rows", ["gridTemplateRows"]]]), flexDirection: ({ addUtilities: i }) => { i({ ".flex-row": { "flex-direction": "row" }, ".flex-row-reverse": { "flex-direction": "row-reverse" }, ".flex-col": { "flex-direction": "column" }, ".flex-col-reverse": { "flex-direction": "column-reverse" } }) }, flexWrap: ({ addUtilities: i }) => { i({ ".flex-wrap": { "flex-wrap": "wrap" }, ".flex-wrap-reverse": { "flex-wrap": "wrap-reverse" }, ".flex-nowrap": { "flex-wrap": "nowrap" } }) }, placeContent: ({ addUtilities: i }) => { i({ ".place-content-center": { "place-content": "center" }, ".place-content-start": { "place-content": "start" }, ".place-content-end": { "place-content": "end" }, ".place-content-between": { "place-content": "space-between" }, ".place-content-around": { "place-content": "space-around" }, ".place-content-evenly": { "place-content": "space-evenly" }, ".place-content-baseline": { "place-content": "baseline" }, ".place-content-stretch": { "place-content": "stretch" } }) }, placeItems: ({ addUtilities: i }) => { i({ ".place-items-start": { "place-items": "start" }, ".place-items-end": { "place-items": "end" }, ".place-items-center": { "place-items": "center" }, ".place-items-baseline": { "place-items": "baseline" }, ".place-items-stretch": { "place-items": "stretch" } }) }, alignContent: ({ addUtilities: i }) => { i({ ".content-normal": { "align-content": "normal" }, ".content-center": { "align-content": "center" }, ".content-start": { "align-content": "flex-start" }, ".content-end": { "align-content": "flex-end" }, ".content-between": { "align-content": "space-between" }, ".content-around": { "align-content": "space-around" }, ".content-evenly": { "align-content": "space-evenly" }, ".content-baseline": { "align-content": "baseline" }, ".content-stretch": { "align-content": "stretch" } }) }, alignItems: ({ addUtilities: i }) => { i({ ".items-start": { "align-items": "flex-start" }, ".items-end": { "align-items": "flex-end" }, ".items-center": { "align-items": "center" }, ".items-baseline": { "align-items": "baseline" }, ".items-stretch": { "align-items": "stretch" } }) }, justifyContent: ({ addUtilities: i }) => { i({ ".justify-normal": { "justify-content": "normal" }, ".justify-start": { "justify-content": "flex-start" }, ".justify-end": { "justify-content": "flex-end" }, ".justify-center": { "justify-content": "center" }, ".justify-between": { "justify-content": "space-between" }, ".justify-around": { "justify-content": "space-around" }, ".justify-evenly": { "justify-content": "space-evenly" }, ".justify-stretch": { "justify-content": "stretch" } }) }, justifyItems: ({ addUtilities: i }) => { i({ ".justify-items-start": { "justify-items": "start" }, ".justify-items-end": { "justify-items": "end" }, ".justify-items-center": { "justify-items": "center" }, ".justify-items-stretch": { "justify-items": "stretch" } }) }, gap: P("gap", [["gap", ["gap"]], [["gap-x", ["columnGap"]], ["gap-y", ["rowGap"]]]]), space: ({ matchUtilities: i, addUtilities: e, theme: t }) => { i({ "space-x": r => (r = r === "0" ? "0px" : r, { "& > :not([hidden]) ~ :not([hidden])": { "--tw-space-x-reverse": "0", "margin-right": `calc(${r} * var(--tw-space-x-reverse))`, "margin-left": `calc(${r} * calc(1 - var(--tw-space-x-reverse)))` } }), "space-y": r => (r = r === "0" ? "0px" : r, { "& > :not([hidden]) ~ :not([hidden])": { "--tw-space-y-reverse": "0", "margin-top": `calc(${r} * calc(1 - var(--tw-space-y-reverse)))`, "margin-bottom": `calc(${r} * var(--tw-space-y-reverse))` } }) }, { values: t("space"), supportsNegativeValues: !0 }), e({ ".space-y-reverse > :not([hidden]) ~ :not([hidden])": { "--tw-space-y-reverse": "1" }, ".space-x-reverse > :not([hidden]) ~ :not([hidden])": { "--tw-space-x-reverse": "1" } }) }, divideWidth: ({ matchUtilities: i, addUtilities: e, theme: t }) => { i({ "divide-x": r => (r = r === "0" ? "0px" : r, { "& > :not([hidden]) ~ :not([hidden])": { "@defaults border-width": {}, "--tw-divide-x-reverse": "0", "border-right-width": `calc(${r} * var(--tw-divide-x-reverse))`, "border-left-width": `calc(${r} * calc(1 - var(--tw-divide-x-reverse)))` } }), "divide-y": r => (r = r === "0" ? "0px" : r, { "& > :not([hidden]) ~ :not([hidden])": { "@defaults border-width": {}, "--tw-divide-y-reverse": "0", "border-top-width": `calc(${r} * calc(1 - var(--tw-divide-y-reverse)))`, "border-bottom-width": `calc(${r} * var(--tw-divide-y-reverse))` } }) }, { values: t("divideWidth"), type: ["line-width", "length", "any"] }), e({ ".divide-y-reverse > :not([hidden]) ~ :not([hidden])": { "@defaults border-width": {}, "--tw-divide-y-reverse": "1" }, ".divide-x-reverse > :not([hidden]) ~ :not([hidden])": { "@defaults border-width": {}, "--tw-divide-x-reverse": "1" } }) }, divideStyle: ({ addUtilities: i }) => { i({ ".divide-solid > :not([hidden]) ~ :not([hidden])": { "border-style": "solid" }, ".divide-dashed > :not([hidden]) ~ :not([hidden])": { "border-style": "dashed" }, ".divide-dotted > :not([hidden]) ~ :not([hidden])": { "border-style": "dotted" }, ".divide-double > :not([hidden]) ~ :not([hidden])": { "border-style": "double" }, ".divide-none > :not([hidden]) ~ :not([hidden])": { "border-style": "none" } }) }, divideColor: ({ matchUtilities: i, theme: e, corePlugins: t }) => { i({ divide: r => t("divideOpacity") ? { ["& > :not([hidden]) ~ :not([hidden])"]: ae({ color: r, property: "border-color", variable: "--tw-divide-opacity" }) } : { ["& > :not([hidden]) ~ :not([hidden])"]: { "border-color": L(r) } } }, { values: (({ DEFAULT: r, ...n }) => n)(ie(e("divideColor"))), type: ["color", "any"] }) }, divideOpacity: ({ matchUtilities: i, theme: e }) => { i({ "divide-opacity": t => ({ ["& > :not([hidden]) ~ :not([hidden])"]: { "--tw-divide-opacity": t } }) }, { values: e("divideOpacity") }) }, placeSelf: ({ addUtilities: i }) => { i({ ".place-self-auto": { "place-self": "auto" }, ".place-self-start": { "place-self": "start" }, ".place-self-end": { "place-self": "end" }, ".place-self-center": { "place-self": "center" }, ".place-self-stretch": { "place-self": "stretch" } }) }, alignSelf: ({ addUtilities: i }) => { i({ ".self-auto": { "align-self": "auto" }, ".self-start": { "align-self": "flex-start" }, ".self-end": { "align-self": "flex-end" }, ".self-center": { "align-self": "center" }, ".self-stretch": { "align-self": "stretch" }, ".self-baseline": { "align-self": "baseline" } }) }, justifySelf: ({ addUtilities: i }) => { i({ ".justify-self-auto": { "justify-self": "auto" }, ".justify-self-start": { "justify-self": "start" }, ".justify-self-end": { "justify-self": "end" }, ".justify-self-center": { "justify-self": "center" }, ".justify-self-stretch": { "justify-self": "stretch" } }) }, overflow: ({ addUtilities: i }) => { i({ ".overflow-auto": { overflow: "auto" }, ".overflow-hidden": { overflow: "hidden" }, ".overflow-clip": { overflow: "clip" }, ".overflow-visible": { overflow: "visible" }, ".overflow-scroll": { overflow: "scroll" }, ".overflow-x-auto": { "overflow-x": "auto" }, ".overflow-y-auto": { "overflow-y": "auto" }, ".overflow-x-hidden": { "overflow-x": "hidden" }, ".overflow-y-hidden": { "overflow-y": "hidden" }, ".overflow-x-clip": { "overflow-x": "clip" }, ".overflow-y-clip": { "overflow-y": "clip" }, ".overflow-x-visible": { "overflow-x": "visible" }, ".overflow-y-visible": { "overflow-y": "visible" }, ".overflow-x-scroll": { "overflow-x": "scroll" }, ".overflow-y-scroll": { "overflow-y": "scroll" } }) }, overscrollBehavior: ({ addUtilities: i }) => { i({ ".overscroll-auto": { "overscroll-behavior": "auto" }, ".overscroll-contain": { "overscroll-behavior": "contain" }, ".overscroll-none": { "overscroll-behavior": "none" }, ".overscroll-y-auto": { "overscroll-behavior-y": "auto" }, ".overscroll-y-contain": { "overscroll-behavior-y": "contain" }, ".overscroll-y-none": { "overscroll-behavior-y": "none" }, ".overscroll-x-auto": { "overscroll-behavior-x": "auto" }, ".overscroll-x-contain": { "overscroll-behavior-x": "contain" }, ".overscroll-x-none": { "overscroll-behavior-x": "none" } }) }, scrollBehavior: ({ addUtilities: i }) => { i({ ".scroll-auto": { "scroll-behavior": "auto" }, ".scroll-smooth": { "scroll-behavior": "smooth" } }) }, textOverflow: ({ addUtilities: i }) => { i({ ".truncate": { overflow: "hidden", "text-overflow": "ellipsis", "white-space": "nowrap" }, ".overflow-ellipsis": { "text-overflow": "ellipsis" }, ".text-ellipsis": { "text-overflow": "ellipsis" }, ".text-clip": { "text-overflow": "clip" } }) }, hyphens: ({ addUtilities: i }) => { i({ ".hyphens-none": { hyphens: "none" }, ".hyphens-manual": { hyphens: "manual" }, ".hyphens-auto": { hyphens: "auto" } }) }, whitespace: ({ addUtilities: i }) => { i({ ".whitespace-normal": { "white-space": "normal" }, ".whitespace-nowrap": { "white-space": "nowrap" }, ".whitespace-pre": { "white-space": "pre" }, ".whitespace-pre-line": { "white-space": "pre-line" }, ".whitespace-pre-wrap": { "white-space": "pre-wrap" }, ".whitespace-break-spaces": { "white-space": "break-spaces" } }) }, textWrap: ({ addUtilities: i }) => { i({ ".text-wrap": { "text-wrap": "wrap" }, ".text-nowrap": { "text-wrap": "nowrap" }, ".text-balance": { "text-wrap": "balance" }, ".text-pretty": { "text-wrap": "pretty" } }) }, wordBreak: ({ addUtilities: i }) => { i({ ".break-normal": { "overflow-wrap": "normal", "word-break": "normal" }, ".break-words": { "overflow-wrap": "break-word" }, ".break-all": { "word-break": "break-all" }, ".break-keep": { "word-break": "keep-all" } }) }, borderRadius: P("borderRadius", [["rounded", ["border-radius"]], [["rounded-s", ["border-start-start-radius", "border-end-start-radius"]], ["rounded-e", ["border-start-end-radius", "border-end-end-radius"]], ["rounded-t", ["border-top-left-radius", "border-top-right-radius"]], ["rounded-r", ["border-top-right-radius", "border-bottom-right-radius"]], ["rounded-b", ["border-bottom-right-radius", "border-bottom-left-radius"]], ["rounded-l", ["border-top-left-radius", "border-bottom-left-radius"]]], [["rounded-ss", ["border-start-start-radius"]], ["rounded-se", ["border-start-end-radius"]], ["rounded-ee", ["border-end-end-radius"]], ["rounded-es", ["border-end-start-radius"]], ["rounded-tl", ["border-top-left-radius"]], ["rounded-tr", ["border-top-right-radius"]], ["rounded-br", ["border-bottom-right-radius"]], ["rounded-bl", ["border-bottom-left-radius"]]]]), borderWidth: P("borderWidth", [["border", [["@defaults border-width", {}], "border-width"]], [["border-x", [["@defaults border-width", {}], "border-left-width", "border-right-width"]], ["border-y", [["@defaults border-width", {}], "border-top-width", "border-bottom-width"]]], [["border-s", [["@defaults border-width", {}], "border-inline-start-width"]], ["border-e", [["@defaults border-width", {}], "border-inline-end-width"]], ["border-t", [["@defaults border-width", {}], "border-top-width"]], ["border-r", [["@defaults border-width", {}], "border-right-width"]], ["border-b", [["@defaults border-width", {}], "border-bottom-width"]], ["border-l", [["@defaults border-width", {}], "border-left-width"]]]], { type: ["line-width", "length"] }), borderStyle: ({ addUtilities: i }) => { i({ ".border-solid": { "border-style": "solid" }, ".border-dashed": { "border-style": "dashed" }, ".border-dotted": { "border-style": "dotted" }, ".border-double": { "border-style": "double" }, ".border-hidden": { "border-style": "hidden" }, ".border-none": { "border-style": "none" } }) }, borderColor: ({ matchUtilities: i, theme: e, corePlugins: t }) => { i({ border: r => t("borderOpacity") ? ae({ color: r, property: "border-color", variable: "--tw-border-opacity" }) : { "border-color": L(r) } }, { values: (({ DEFAULT: r, ...n }) => n)(ie(e("borderColor"))), type: ["color", "any"] }), i({ "border-x": r => t("borderOpacity") ? ae({ color: r, property: ["border-left-color", "border-right-color"], variable: "--tw-border-opacity" }) : { "border-left-color": L(r), "border-right-color": L(r) }, "border-y": r => t("borderOpacity") ? ae({ color: r, property: ["border-top-color", "border-bottom-color"], variable: "--tw-border-opacity" }) : { "border-top-color": L(r), "border-bottom-color": L(r) } }, { values: (({ DEFAULT: r, ...n }) => n)(ie(e("borderColor"))), type: ["color", "any"] }), i({ "border-s": r => t("borderOpacity") ? ae({ color: r, property: "border-inline-start-color", variable: "--tw-border-opacity" }) : { "border-inline-start-color": L(r) }, "border-e": r => t("borderOpacity") ? ae({ color: r, property: "border-inline-end-color", variable: "--tw-border-opacity" }) : { "border-inline-end-color": L(r) }, "border-t": r => t("borderOpacity") ? ae({ color: r, property: "border-top-color", variable: "--tw-border-opacity" }) : { "border-top-color": L(r) }, "border-r": r => t("borderOpacity") ? ae({ color: r, property: "border-right-color", variable: "--tw-border-opacity" }) : { "border-right-color": L(r) }, "border-b": r => t("borderOpacity") ? ae({ color: r, property: "border-bottom-color", variable: "--tw-border-opacity" }) : { "border-bottom-color": L(r) }, "border-l": r => t("borderOpacity") ? ae({ color: r, property: "border-left-color", variable: "--tw-border-opacity" }) : { "border-left-color": L(r) } }, { values: (({ DEFAULT: r, ...n }) => n)(ie(e("borderColor"))), type: ["color", "any"] }) }, borderOpacity: P("borderOpacity", [["border-opacity", ["--tw-border-opacity"]]]), backgroundColor: ({ matchUtilities: i, theme: e, corePlugins: t }) => { i({ bg: r => t("backgroundOpacity") ? ae({ color: r, property: "background-color", variable: "--tw-bg-opacity" }) : { "background-color": L(r) } }, { values: ie(e("backgroundColor")), type: ["color", "any"] }) }, backgroundOpacity: P("backgroundOpacity", [["bg-opacity", ["--tw-bg-opacity"]]]), backgroundImage: P("backgroundImage", [["bg", ["background-image"]]], { type: ["lookup", "image", "url"] }), gradientColorStops: (() => { function i(e) { return De(e, 0, "rgb(255 255 255 / 0)") } return function ({ matchUtilities: e, theme: t, addDefaults: r }) { r("gradient-color-stops", { "--tw-gradient-from-position": " ", "--tw-gradient-via-position": " ", "--tw-gradient-to-position": " " }); let n = { values: ie(t("gradientColorStops")), type: ["color", "any"] }, a = { values: t("gradientColorStopPositions"), type: ["length", "percentage"] }; e({ from: s => { let o = i(s); return { "@defaults gradient-color-stops": {}, "--tw-gradient-from": `${L(s)} var(--tw-gradient-from-position)`, "--tw-gradient-to": `${o} var(--tw-gradient-to-position)`, "--tw-gradient-stops": "var(--tw-gradient-from), var(--tw-gradient-to)" } } }, n), e({ from: s => ({ "--tw-gradient-from-position": s }) }, a), e({ via: s => { let o = i(s); return { "@defaults gradient-color-stops": {}, "--tw-gradient-to": `${o} var(--tw-gradient-to-position)`, "--tw-gradient-stops": `var(--tw-gradient-from), ${L(s)} var(--tw-gradient-via-position), var(--tw-gradient-to)` } } }, n), e({ via: s => ({ "--tw-gradient-via-position": s }) }, a), e({ to: s => ({ "@defaults gradient-color-stops": {}, "--tw-gradient-to": `${L(s)} var(--tw-gradient-to-position)` }) }, n), e({ to: s => ({ "--tw-gradient-to-position": s }) }, a) } })(), boxDecorationBreak: ({ addUtilities: i }) => { i({ ".decoration-slice": { "box-decoration-break": "slice" }, ".decoration-clone": { "box-decoration-break": "clone" }, ".box-decoration-slice": { "box-decoration-break": "slice" }, ".box-decoration-clone": { "box-decoration-break": "clone" } }) }, backgroundSize: P("backgroundSize", [["bg", ["background-size"]]], { type: ["lookup", "length", "percentage", "size"] }), backgroundAttachment: ({ addUtilities: i }) => { i({ ".bg-fixed": { "background-attachment": "fixed" }, ".bg-local": { "background-attachment": "local" }, ".bg-scroll": { "background-attachment": "scroll" } }) }, backgroundClip: ({ addUtilities: i }) => { i({ ".bg-clip-border": { "background-clip": "border-box" }, ".bg-clip-padding": { "background-clip": "padding-box" }, ".bg-clip-content": { "background-clip": "content-box" }, ".bg-clip-text": { "background-clip": "text" } }) }, backgroundPosition: P("backgroundPosition", [["bg", ["background-position"]]], { type: ["lookup", ["position", { preferOnConflict: !0 }]] }), backgroundRepeat: ({ addUtilities: i }) => { i({ ".bg-repeat": { "background-repeat": "repeat" }, ".bg-no-repeat": { "background-repeat": "no-repeat" }, ".bg-repeat-x": { "background-repeat": "repeat-x" }, ".bg-repeat-y": { "background-repeat": "repeat-y" }, ".bg-repeat-round": { "background-repeat": "round" }, ".bg-repeat-space": { "background-repeat": "space" } }) }, backgroundOrigin: ({ addUtilities: i }) => { i({ ".bg-origin-border": { "background-origin": "border-box" }, ".bg-origin-padding": { "background-origin": "padding-box" }, ".bg-origin-content": { "background-origin": "content-box" } }) }, fill: ({ matchUtilities: i, theme: e }) => { i({ fill: t => ({ fill: L(t) }) }, { values: ie(e("fill")), type: ["color", "any"] }) }, stroke: ({ matchUtilities: i, theme: e }) => { i({ stroke: t => ({ stroke: L(t) }) }, { values: ie(e("stroke")), type: ["color", "url", "any"] }) }, strokeWidth: P("strokeWidth", [["stroke", ["stroke-width"]]], { type: ["length", "number", "percentage"] }), objectFit: ({ addUtilities: i }) => { i({ ".object-contain": { "object-fit": "contain" }, ".object-cover": { "object-fit": "cover" }, ".object-fill": { "object-fit": "fill" }, ".object-none": { "object-fit": "none" }, ".object-scale-down": { "object-fit": "scale-down" } }) }, objectPosition: P("objectPosition", [["object", ["object-position"]]]), padding: P("padding", [["p", ["padding"]], [["px", ["padding-left", "padding-right"]], ["py", ["padding-top", "padding-bottom"]]], [["ps", ["padding-inline-start"]], ["pe", ["padding-inline-end"]], ["pt", ["padding-top"]], ["pr", ["padding-right"]], ["pb", ["padding-bottom"]], ["pl", ["padding-left"]]]]), textAlign: ({ addUtilities: i }) => { i({ ".text-left": { "text-align": "left" }, ".text-center": { "text-align": "center" }, ".text-right": { "text-align": "right" }, ".text-justify": { "text-align": "justify" }, ".text-start": { "text-align": "start" }, ".text-end": { "text-align": "end" } }) }, textIndent: P("textIndent", [["indent", ["text-indent"]]], { supportsNegativeValues: !0 }), verticalAlign: ({ addUtilities: i, matchUtilities: e }) => { i({ ".align-baseline": { "vertical-align": "baseline" }, ".align-top": { "vertical-align": "top" }, ".align-middle": { "vertical-align": "middle" }, ".align-bottom": { "vertical-align": "bottom" }, ".align-text-top": { "vertical-align": "text-top" }, ".align-text-bottom": { "vertical-align": "text-bottom" }, ".align-sub": { "vertical-align": "sub" }, ".align-super": { "vertical-align": "super" } }), e({ align: t => ({ "vertical-align": t }) }) }, fontFamily: ({ matchUtilities: i, theme: e }) => { i({ font: t => { let [r, n = {}] = Array.isArray(t) && ne(t[1]) ? t : [t], { fontFeatureSettings: a, fontVariationSettings: s } = n; return { "font-family": Array.isArray(r) ? r.join(", ") : r, ...a === void 0 ? {} : { "font-feature-settings": a }, ...s === void 0 ? {} : { "font-variation-settings": s } } } }, { values: e("fontFamily"), type: ["lookup", "generic-name", "family-name"] }) }, fontSize: ({ matchUtilities: i, theme: e }) => { i({ text: (t, { modifier: r }) => { let [n, a] = Array.isArray(t) ? t : [t]; if (r) return { "font-size": n, "line-height": r }; let { lineHeight: s, letterSpacing: o, fontWeight: u } = ne(a) ? a : { lineHeight: a }; return { "font-size": n, ...s === void 0 ? {} : { "line-height": s }, ...o === void 0 ? {} : { "letter-spacing": o }, ...u === void 0 ? {} : { "font-weight": u } } } }, { values: e("fontSize"), modifiers: e("lineHeight"), type: ["absolute-size", "relative-size", "length", "percentage"] }) }, fontWeight: P("fontWeight", [["font", ["fontWeight"]]], { type: ["lookup", "number", "any"] }), textTransform: ({ addUtilities: i }) => { i({ ".uppercase": { "text-transform": "uppercase" }, ".lowercase": { "text-transform": "lowercase" }, ".capitalize": { "text-transform": "capitalize" }, ".normal-case": { "text-transform": "none" } }) }, fontStyle: ({ addUtilities: i }) => { i({ ".italic": { "font-style": "italic" }, ".not-italic": { "font-style": "normal" } }) }, fontVariantNumeric: ({ addDefaults: i, addUtilities: e }) => { let t = "var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)"; i("font-variant-numeric", { "--tw-ordinal": " ", "--tw-slashed-zero": " ", "--tw-numeric-figure": " ", "--tw-numeric-spacing": " ", "--tw-numeric-fraction": " " }), e({ ".normal-nums": { "font-variant-numeric": "normal" }, ".ordinal": { "@defaults font-variant-numeric": {}, "--tw-ordinal": "ordinal", "font-variant-numeric": t }, ".slashed-zero": { "@defaults font-variant-numeric": {}, "--tw-slashed-zero": "slashed-zero", "font-variant-numeric": t }, ".lining-nums": { "@defaults font-variant-numeric": {}, "--tw-numeric-figure": "lining-nums", "font-variant-numeric": t }, ".oldstyle-nums": { "@defaults font-variant-numeric": {}, "--tw-numeric-figure": "oldstyle-nums", "font-variant-numeric": t }, ".proportional-nums": { "@defaults font-variant-numeric": {}, "--tw-numeric-spacing": "proportional-nums", "font-variant-numeric": t }, ".tabular-nums": { "@defaults font-variant-numeric": {}, "--tw-numeric-spacing": "tabular-nums", "font-variant-numeric": t }, ".diagonal-fractions": { "@defaults font-variant-numeric": {}, "--tw-numeric-fraction": "diagonal-fractions", "font-variant-numeric": t }, ".stacked-fractions": { "@defaults font-variant-numeric": {}, "--tw-numeric-fraction": "stacked-fractions", "font-variant-numeric": t } }) }, lineHeight: P("lineHeight", [["leading", ["lineHeight"]]]), letterSpacing: P("letterSpacing", [["tracking", ["letterSpacing"]]], { supportsNegativeValues: !0 }), textColor: ({ matchUtilities: i, theme: e, corePlugins: t }) => { i({ text: r => t("textOpacity") ? ae({ color: r, property: "color", variable: "--tw-text-opacity" }) : { color: L(r) } }, { values: ie(e("textColor")), type: ["color", "any"] }) }, textOpacity: P("textOpacity", [["text-opacity", ["--tw-text-opacity"]]]), textDecoration: ({ addUtilities: i }) => { i({ ".underline": { "text-decoration-line": "underline" }, ".overline": { "text-decoration-line": "overline" }, ".line-through": { "text-decoration-line": "line-through" }, ".no-underline": { "text-decoration-line": "none" } }) }, textDecorationColor: ({ matchUtilities: i, theme: e }) => { i({ decoration: t => ({ "text-decoration-color": L(t) }) }, { values: ie(e("textDecorationColor")), type: ["color", "any"] }) }, textDecorationStyle: ({ addUtilities: i }) => { i({ ".decoration-solid": { "text-decoration-style": "solid" }, ".decoration-double": { "text-decoration-style": "double" }, ".decoration-dotted": { "text-decoration-style": "dotted" }, ".decoration-dashed": { "text-decoration-style": "dashed" }, ".decoration-wavy": { "text-decoration-style": "wavy" } }) }, textDecorationThickness: P("textDecorationThickness", [["decoration", ["text-decoration-thickness"]]], { type: ["length", "percentage"] }), textUnderlineOffset: P("textUnderlineOffset", [["underline-offset", ["text-underline-offset"]]], { type: ["length", "percentage", "any"] }), fontSmoothing: ({ addUtilities: i }) => { i({ ".antialiased": { "-webkit-font-smoothing": "antialiased", "-moz-osx-font-smoothing": "grayscale" }, ".subpixel-antialiased": { "-webkit-font-smoothing": "auto", "-moz-osx-font-smoothing": "auto" } }) }, placeholderColor: ({ matchUtilities: i, theme: e, corePlugins: t }) => { i({ placeholder: r => t("placeholderOpacity") ? { "&::placeholder": ae({ color: r, property: "color", variable: "--tw-placeholder-opacity" }) } : { "&::placeholder": { color: L(r) } } }, { values: ie(e("placeholderColor")), type: ["color", "any"] }) }, placeholderOpacity: ({ matchUtilities: i, theme: e }) => { i({ "placeholder-opacity": t => ({ ["&::placeholder"]: { "--tw-placeholder-opacity": t } }) }, { values: e("placeholderOpacity") }) }, caretColor: ({ matchUtilities: i, theme: e }) => { i({ caret: t => ({ "caret-color": L(t) }) }, { values: ie(e("caretColor")), type: ["color", "any"] }) }, accentColor: ({ matchUtilities: i, theme: e }) => { i({ accent: t => ({ "accent-color": L(t) }) }, { values: ie(e("accentColor")), type: ["color", "any"] }) }, opacity: P("opacity", [["opacity", ["opacity"]]]), backgroundBlendMode: ({ addUtilities: i }) => { i({ ".bg-blend-normal": { "background-blend-mode": "normal" }, ".bg-blend-multiply": { "background-blend-mode": "multiply" }, ".bg-blend-screen": { "background-blend-mode": "screen" }, ".bg-blend-overlay": { "background-blend-mode": "overlay" }, ".bg-blend-darken": { "background-blend-mode": "darken" }, ".bg-blend-lighten": { "background-blend-mode": "lighten" }, ".bg-blend-color-dodge": { "background-blend-mode": "color-dodge" }, ".bg-blend-color-burn": { "background-blend-mode": "color-burn" }, ".bg-blend-hard-light": { "background-blend-mode": "hard-light" }, ".bg-blend-soft-light": { "background-blend-mode": "soft-light" }, ".bg-blend-difference": { "background-blend-mode": "difference" }, ".bg-blend-exclusion": { "background-blend-mode": "exclusion" }, ".bg-blend-hue": { "background-blend-mode": "hue" }, ".bg-blend-saturation": { "background-blend-mode": "saturation" }, ".bg-blend-color": { "background-blend-mode": "color" }, ".bg-blend-luminosity": { "background-blend-mode": "luminosity" } }) }, mixBlendMode: ({ addUtilities: i }) => { i({ ".mix-blend-normal": { "mix-blend-mode": "normal" }, ".mix-blend-multiply": { "mix-blend-mode": "multiply" }, ".mix-blend-screen": { "mix-blend-mode": "screen" }, ".mix-blend-overlay": { "mix-blend-mode": "overlay" }, ".mix-blend-darken": { "mix-blend-mode": "darken" }, ".mix-blend-lighten": { "mix-blend-mode": "lighten" }, ".mix-blend-color-dodge": { "mix-blend-mode": "color-dodge" }, ".mix-blend-color-burn": { "mix-blend-mode": "color-burn" }, ".mix-blend-hard-light": { "mix-blend-mode": "hard-light" }, ".mix-blend-soft-light": { "mix-blend-mode": "soft-light" }, ".mix-blend-difference": { "mix-blend-mode": "difference" }, ".mix-blend-exclusion": { "mix-blend-mode": "exclusion" }, ".mix-blend-hue": { "mix-blend-mode": "hue" }, ".mix-blend-saturation": { "mix-blend-mode": "saturation" }, ".mix-blend-color": { "mix-blend-mode": "color" }, ".mix-blend-luminosity": { "mix-blend-mode": "luminosity" }, ".mix-blend-plus-lighter": { "mix-blend-mode": "plus-lighter" } }) }, boxShadow: (() => { let i = Ge("boxShadow"), e = ["var(--tw-ring-offset-shadow, 0 0 #0000)", "var(--tw-ring-shadow, 0 0 #0000)", "var(--tw-shadow)"].join(", "); return function ({ matchUtilities: t, addDefaults: r, theme: n }) { r(" box-shadow", { "--tw-ring-offset-shadow": "0 0 #0000", "--tw-ring-shadow": "0 0 #0000", "--tw-shadow": "0 0 #0000", "--tw-shadow-colored": "0 0 #0000" }), t({ shadow: a => { a = i(a); let s = yi(a); for (let o of s) !o.valid || (o.color = "var(--tw-shadow-color)"); return { "@defaults box-shadow": {}, "--tw-shadow": a === "none" ? "0 0 #0000" : a, "--tw-shadow-colored": a === "none" ? "0 0 #0000" : Iu(s), "box-shadow": e } } }, { values: n("boxShadow"), type: ["shadow"] }) } })(), boxShadowColor: ({ matchUtilities: i, theme: e }) => { i({ shadow: t => ({ "--tw-shadow-color": L(t), "--tw-shadow": "var(--tw-shadow-colored)" }) }, { values: ie(e("boxShadowColor")), type: ["color", "any"] }) }, outlineStyle: ({ addUtilities: i }) => { i({ ".outline-none": { outline: "2px solid transparent", "outline-offset": "2px" }, ".outline": { "outline-style": "solid" }, ".outline-dashed": { "outline-style": "dashed" }, ".outline-dotted": { "outline-style": "dotted" }, ".outline-double": { "outline-style": "double" } }) }, outlineWidth: P("outlineWidth", [["outline", ["outline-width"]]], { type: ["length", "number", "percentage"] }), outlineOffset: P("outlineOffset", [["outline-offset", ["outline-offset"]]], { type: ["length", "number", "percentage", "any"], supportsNegativeValues: !0 }), outlineColor: ({ matchUtilities: i, theme: e }) => { i({ outline: t => ({ "outline-color": L(t) }) }, { values: ie(e("outlineColor")), type: ["color", "any"] }) }, ringWidth: ({ matchUtilities: i, addDefaults: e, addUtilities: t, theme: r, config: n }) => { let a = (() => { if (Z(n(), "respectDefaultRingColorOpacity")) return r("ringColor.DEFAULT"); let s = r("ringOpacity.DEFAULT", "0.5"); return r("ringColor")?.DEFAULT ? De(r("ringColor")?.DEFAULT, s, `rgb(147 197 253 / ${s})`) : `rgb(147 197 253 / ${s})` })(); e("ring-width", { "--tw-ring-inset": " ", "--tw-ring-offset-width": r("ringOffsetWidth.DEFAULT", "0px"), "--tw-ring-offset-color": r("ringOffsetColor.DEFAULT", "#fff"), "--tw-ring-color": a, "--tw-ring-offset-shadow": "0 0 #0000", "--tw-ring-shadow": "0 0 #0000", "--tw-shadow": "0 0 #0000", "--tw-shadow-colored": "0 0 #0000" }), i({ ring: s => ({ "@defaults ring-width": {}, "--tw-ring-offset-shadow": "var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)", "--tw-ring-shadow": `var(--tw-ring-inset) 0 0 0 calc(${s} + var(--tw-ring-offset-width)) var(--tw-ring-color)`, "box-shadow": ["var(--tw-ring-offset-shadow)", "var(--tw-ring-shadow)", "var(--tw-shadow, 0 0 #0000)"].join(", ") }) }, { values: r("ringWidth"), type: "length" }), t({ ".ring-inset": { "@defaults ring-width": {}, "--tw-ring-inset": "inset" } }) }, ringColor: ({ matchUtilities: i, theme: e, corePlugins: t }) => { i({ ring: r => t("ringOpacity") ? ae({ color: r, property: "--tw-ring-color", variable: "--tw-ring-opacity" }) : { "--tw-ring-color": L(r) } }, { values: Object.fromEntries(Object.entries(ie(e("ringColor"))).filter(([r]) => r !== "DEFAULT")), type: ["color", "any"] }) }, ringOpacity: i => { let { config: e } = i; return P("ringOpacity", [["ring-opacity", ["--tw-ring-opacity"]]], { filterDefault: !Z(e(), "respectDefaultRingColorOpacity") })(i) }, ringOffsetWidth: P("ringOffsetWidth", [["ring-offset", ["--tw-ring-offset-width"]]], { type: "length" }), ringOffsetColor: ({ matchUtilities: i, theme: e }) => { i({ "ring-offset": t => ({ "--tw-ring-offset-color": L(t) }) }, { values: ie(e("ringOffsetColor")), type: ["color", "any"] }) }, blur: ({ matchUtilities: i, theme: e }) => { i({ blur: t => ({ "--tw-blur": `blur(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("blur") }) }, brightness: ({ matchUtilities: i, theme: e }) => { i({ brightness: t => ({ "--tw-brightness": `brightness(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("brightness") }) }, contrast: ({ matchUtilities: i, theme: e }) => { i({ contrast: t => ({ "--tw-contrast": `contrast(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("contrast") }) }, dropShadow: ({ matchUtilities: i, theme: e }) => { i({ "drop-shadow": t => ({ "--tw-drop-shadow": Array.isArray(t) ? t.map(r => `drop-shadow(${r})`).join(" ") : `drop-shadow(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("dropShadow") }) }, grayscale: ({ matchUtilities: i, theme: e }) => { i({ grayscale: t => ({ "--tw-grayscale": `grayscale(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("grayscale") }) }, hueRotate: ({ matchUtilities: i, theme: e }) => { i({ "hue-rotate": t => ({ "--tw-hue-rotate": `hue-rotate(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("hueRotate"), supportsNegativeValues: !0 }) }, invert: ({ matchUtilities: i, theme: e }) => { i({ invert: t => ({ "--tw-invert": `invert(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("invert") }) }, saturate: ({ matchUtilities: i, theme: e }) => { i({ saturate: t => ({ "--tw-saturate": `saturate(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("saturate") }) }, sepia: ({ matchUtilities: i, theme: e }) => { i({ sepia: t => ({ "--tw-sepia": `sepia(${t})`, "@defaults filter": {}, filter: Me }) }, { values: e("sepia") }) }, filter: ({ addDefaults: i, addUtilities: e }) => { i("filter", { "--tw-blur": " ", "--tw-brightness": " ", "--tw-contrast": " ", "--tw-grayscale": " ", "--tw-hue-rotate": " ", "--tw-invert": " ", "--tw-saturate": " ", "--tw-sepia": " ", "--tw-drop-shadow": " " }), e({ ".filter": { "@defaults filter": {}, filter: Me }, ".filter-none": { filter: "none" } }) }, backdropBlur: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-blur": t => ({ "--tw-backdrop-blur": `blur(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropBlur") }) }, backdropBrightness: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-brightness": t => ({ "--tw-backdrop-brightness": `brightness(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropBrightness") }) }, backdropContrast: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-contrast": t => ({ "--tw-backdrop-contrast": `contrast(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropContrast") }) }, backdropGrayscale: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-grayscale": t => ({ "--tw-backdrop-grayscale": `grayscale(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropGrayscale") }) }, backdropHueRotate: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-hue-rotate": t => ({ "--tw-backdrop-hue-rotate": `hue-rotate(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropHueRotate"), supportsNegativeValues: !0 }) }, backdropInvert: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-invert": t => ({ "--tw-backdrop-invert": `invert(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropInvert") }) }, backdropOpacity: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-opacity": t => ({ "--tw-backdrop-opacity": `opacity(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropOpacity") }) }, backdropSaturate: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-saturate": t => ({ "--tw-backdrop-saturate": `saturate(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropSaturate") }) }, backdropSepia: ({ matchUtilities: i, theme: e }) => { i({ "backdrop-sepia": t => ({ "--tw-backdrop-sepia": `sepia(${t})`, "@defaults backdrop-filter": {}, "backdrop-filter": Be }) }, { values: e("backdropSepia") }) }, backdropFilter: ({ addDefaults: i, addUtilities: e }) => { i("backdrop-filter", { "--tw-backdrop-blur": " ", "--tw-backdrop-brightness": " ", "--tw-backdrop-contrast": " ", "--tw-backdrop-grayscale": " ", "--tw-backdrop-hue-rotate": " ", "--tw-backdrop-invert": " ", "--tw-backdrop-opacity": " ", "--tw-backdrop-saturate": " ", "--tw-backdrop-sepia": " " }), e({ ".backdrop-filter": { "@defaults backdrop-filter": {}, "backdrop-filter": Be }, ".backdrop-filter-none": { "backdrop-filter": "none" } }) }, transitionProperty: ({ matchUtilities: i, theme: e }) => { let t = e("transitionTimingFunction.DEFAULT"), r = e("transitionDuration.DEFAULT"); i({ transition: n => ({ "transition-property": n, ...n === "none" ? {} : { "transition-timing-function": t, "transition-duration": r } }) }, { values: e("transitionProperty") }) }, transitionDelay: P("transitionDelay", [["delay", ["transitionDelay"]]]), transitionDuration: P("transitionDuration", [["duration", ["transitionDuration"]]], { filterDefault: !0 }), transitionTimingFunction: P("transitionTimingFunction", [["ease", ["transitionTimingFunction"]]], { filterDefault: !0 }), willChange: P("willChange", [["will-change", ["will-change"]]]), content: P("content", [["content", ["--tw-content", ["content", "var(--tw-content)"]]]]), forcedColorAdjust: ({ addUtilities: i }) => { i({ ".forced-color-adjust-auto": { "forced-color-adjust": "auto" }, ".forced-color-adjust-none": { "forced-color-adjust": "none" } }) } } }); function yC(i) { if (i === void 0) return !1; if (i === "true" || i === "1") return !0; if (i === "false" || i === "0") return !1; if (i === "*") return !0; let e = i.split(",").map(t => t.split(":")[0]); return e.includes("-tailwindcss") ? !1 : !!e.includes("tailwindcss") } var Pe, yd, wd, gn, Qa, He, Kr, ot = C(() => { l(); Ga(); Pe = typeof h != "undefined" ? { NODE_ENV: "production", DEBUG: yC(h.env.DEBUG), ENGINE: Ya.tailwindcss.engine } : { NODE_ENV: "production", DEBUG: !1, ENGINE: Ya.tailwindcss.engine }, yd = new Map, wd = new Map, gn = new Map, Qa = new Map, He = new String("*"), Kr = Symbol("__NONE__") }); function Nt(i) { let e = [], t = !1; for (let r = 0; r < i.length; r++) { let n = i[r]; if (n === ":" && !t && e.length === 0) return !1; if (wC.has(n) && i[r - 1] !== "\\" && (t = !t), !t && i[r - 1] !== "\\") { if (bd.has(n)) e.push(n); else if (vd.has(n)) { let a = vd.get(n); if (e.length <= 0 || e.pop() !== a) return !1 } } } return !(e.length > 0) } var bd, vd, wC, Ja = C(() => { l(); bd = new Map([["{", "}"], ["[", "]"], ["(", ")"]]), vd = new Map(Array.from(bd.entries()).map(([i, e]) => [e, i])), wC = new Set(['"', "'", "`"]) }); function Lt(i) { let [e] = xd(i); return e.forEach(([t, r]) => t.removeChild(r)), i.nodes.push(...e.map(([, t]) => t)), i } function xd(i) { let e = [], t = null; for (let r of i.nodes) if (r.type === "combinator") e = e.filter(([, n]) => Ka(n).includes("jumpable")), t = null; else if (r.type === "pseudo") { bC(r) ? (t = r, e.push([i, r, null])) : t && vC(r, t) ? e.push([i, r, t]) : t = null; for (let n of r.nodes ?? []) { let [a, s] = xd(n); t = s || t, e.push(...a) } } return [e, t] } function kd(i) { return i.value.startsWith("::") || Xa[i.value] !== void 0 } function bC(i) { return kd(i) && Ka(i).includes("terminal") } function vC(i, e) { return i.type !== "pseudo" || kd(i) ? !1 : Ka(e).includes("actionable") } function Ka(i) { return Xa[i.value] ?? Xa.__default__ } var Xa, yn = C(() => { l(); Xa = { "::after": ["terminal", "jumpable"], "::backdrop": ["terminal", "jumpable"], "::before": ["terminal", "jumpable"], "::cue": ["terminal"], "::cue-region": ["terminal"], "::first-letter": ["terminal", "jumpable"], "::first-line": ["terminal", "jumpable"], "::grammar-error": ["terminal"], "::marker": ["terminal", "jumpable"], "::part": ["terminal", "actionable"], "::placeholder": ["terminal", "jumpable"], "::selection": ["terminal", "jumpable"], "::slotted": ["terminal"], "::spelling-error": ["terminal"], "::target-text": ["terminal"], "::file-selector-button": ["terminal", "actionable"], "::deep": ["actionable"], "::v-deep": ["actionable"], "::ng-deep": ["actionable"], ":after": ["terminal", "jumpable"], ":before": ["terminal", "jumpable"], ":first-letter": ["terminal", "jumpable"], ":first-line": ["terminal", "jumpable"], ":where": [], ":is": [], ":has": [], __default__: ["terminal", "actionable"] } }); function $t(i, { context: e, candidate: t }) { let r = e?.tailwindConfig.prefix ?? "", n = i.map(s => { let o = (0, Fe.default)().astSync(s.format); return { ...s, ast: s.respectPrefix ? Bt(r, o) : o } }), a = Fe.default.root({ nodes: [Fe.default.selector({ nodes: [Fe.default.className({ value: de(t) })] })] }); for (let { ast: s } of n) [a, s] = kC(a, s), s.walkNesting(o => o.replaceWith(...a.nodes[0].nodes)), a = s; return a } function Cd(i) { let e = []; for (; i.prev() && i.prev().type !== "combinator";)i = i.prev(); for (; i && i.type !== "combinator";)e.push(i), i = i.next(); return e } function xC(i) { return i.sort((e, t) => e.type === "tag" && t.type === "class" ? -1 : e.type === "class" && t.type === "tag" ? 1 : e.type === "class" && t.type === "pseudo" && t.value.startsWith("::") ? -1 : e.type === "pseudo" && e.value.startsWith("::") && t.type === "class" ? 1 : i.index(e) - i.index(t)), i } function eo(i, e) { let t = !1; i.walk(r => { if (r.type === "class" && r.value === e) return t = !0, !1 }), t || i.remove() } function wn(i, e, { context: t, candidate: r, base: n }) { let a = t?.tailwindConfig?.separator ?? ":"; n = n ?? oe(r, a).pop(); let s = (0, Fe.default)().astSync(i); if (s.walkClasses(f => { f.raws && f.value.includes(n) && (f.raws.value = de((0, Sd.default)(f.raws.value))) }), s.each(f => eo(f, n)), s.length === 0) return null; let o = Array.isArray(e) ? $t(e, { context: t, candidate: r }) : e; if (o === null) return s.toString(); let u = Fe.default.comment({ value: "/*__simple__*/" }), c = Fe.default.comment({ value: "/*__simple__*/" }); return s.walkClasses(f => { if (f.value !== n) return; let d = f.parent, p = o.nodes[0].nodes; if (d.nodes.length === 1) { f.replaceWith(...p); return } let m = Cd(f); d.insertBefore(m[0], u), d.insertAfter(m[m.length - 1], c); for (let x of p) d.insertBefore(m[0], x.clone()); f.remove(), m = Cd(u); let w = d.index(u); d.nodes.splice(w, m.length, ...xC(Fe.default.selector({ nodes: m })).nodes), u.remove(), c.remove() }), s.walkPseudos(f => { f.value === Za && f.replaceWith(f.nodes) }), s.each(f => Lt(f)), s.toString() } function kC(i, e) { let t = []; return i.walkPseudos(r => { r.value === Za && t.push({ pseudo: r, value: r.nodes[0].toString() }) }), e.walkPseudos(r => { if (r.value !== Za) return; let n = r.nodes[0].toString(), a = t.find(c => c.value === n); if (!a) return; let s = [], o = r.next(); for (; o && o.type !== "combinator";)s.push(o), o = o.next(); let u = o; a.pseudo.parent.insertAfter(a.pseudo, Fe.default.selector({ nodes: s.map(c => c.clone()) })), r.remove(), s.forEach(c => c.remove()), u && u.type === "combinator" && u.remove() }), [i, e] } var Fe, Sd, Za, to = C(() => { l(); Fe = K(Re()), Sd = K(Yi()); Ft(); un(); yn(); St(); Za = ":merge" }); function bn(i, e) { let t = (0, ro.default)().astSync(i); return t.each(r => { r.nodes[0].type === "pseudo" && r.nodes[0].value === ":is" && r.nodes.every(a => a.type !== "combinator") || (r.nodes = [ro.default.pseudo({ value: ":is", nodes: [r.clone()] })]), Lt(r) }), `${e} ${t.toString()}` } var ro, io = C(() => { l(); ro = K(Re()); yn() }); function no(i) { return SC.transformSync(i) } function* CC(i) { let e = 1 / 0; for (; e >= 0;) { let t, r = !1; if (e === 1 / 0 && i.endsWith("]")) { let s = i.indexOf("["); i[s - 1] === "-" ? t = s - 1 : i[s - 1] === "/" ? (t = s - 1, r = !0) : t = -1 } else e === 1 / 0 && i.includes("/") ? (t = i.lastIndexOf("/"), r = !0) : t = i.lastIndexOf("-", e); if (t < 0) break; let n = i.slice(0, t), a = i.slice(r ? t : t + 1); e = t - 1, !(n === "" || a === "/") && (yield [n, a]) } } function AC(i, e) { if (i.length === 0 || e.tailwindConfig.prefix === "") return i; for (let t of i) { let [r] = t; if (r.options.respectPrefix) { let n = V.root({ nodes: [t[1].clone()] }), a = t[1].raws.tailwind.classCandidate; n.walkRules(s => { let o = a.startsWith("-"); s.selector = Bt(e.tailwindConfig.prefix, s.selector, o) }), t[1] = n.nodes[0] } } return i } function _C(i, e) { if (i.length === 0) return i; let t = []; function r(n) { return n.parent && n.parent.type === "atrule" && n.parent.name === "keyframes" } for (let [n, a] of i) { let s = V.root({ nodes: [a.clone()] }); s.walkRules(o => { if (r(o)) return; let u = (0, vn.default)().astSync(o.selector); u.each(c => eo(c, e)), Uu(u, c => c === e ? `!${c}` : c), o.selector = u.toString(), o.walkDecls(c => c.important = !0) }), t.push([{ ...n, important: !0 }, s.nodes[0]]) } return t } function OC(i, e, t) { if (e.length === 0) return e; let r = { modifier: null, value: Kr }; { let [n, ...a] = oe(i, "/"); if (a.length > 1 && (n = n + "/" + a.slice(0, -1).join("/"), a = a.slice(-1)), a.length && !t.variantMap.has(i) && (i = n, r.modifier = a[0], !Z(t.tailwindConfig, "generalizedModifiers"))) return [] } if (i.endsWith("]") && !i.startsWith("[")) { let n = /(.)(-?)\[(.*)\]/g.exec(i); if (n) { let [, a, s, o] = n; if (a === "@" && s === "-") return []; if (a !== "@" && s === "") return []; i = i.replace(`${s}[${o}]`, ""), r.value = o } } if (oo(i) && !t.variantMap.has(i)) { let n = t.offsets.recordVariant(i), a = N(i.slice(1, -1)), s = oe(a, ","); if (s.length > 1) return []; if (!s.every(Cn)) return []; let o = s.map((u, c) => [t.offsets.applyParallelOffset(n, c), Zr(u.trim())]); t.variantMap.set(i, o) } if (t.variantMap.has(i)) { let n = oo(i), a = t.variantOptions.get(i)?.[Jr] ?? {}, s = t.variantMap.get(i).slice(), o = [], u = (() => !(n || a.respectPrefix === !1))(); for (let [c, f] of e) { if (c.layer === "user") continue; let d = V.root({ nodes: [f.clone()] }); for (let [p, m, w] of s) { let b = function () { x.raws.neededBackup || (x.raws.neededBackup = !0, x.walkRules(O => O.raws.originalSelector = O.selector)) }, k = function (O) { return b(), x.each(I => { I.type === "rule" && (I.selectors = I.selectors.map(B => O({ get className() { return no(B) }, selector: B }))) }), x }, x = (w ?? d).clone(), y = [], S = m({ get container() { return b(), x }, separator: t.tailwindConfig.separator, modifySelectors: k, wrap(O) { let I = x.nodes; x.removeAll(), O.append(I), x.append(O) }, format(O) { y.push({ format: O, respectPrefix: u }) }, args: r }); if (Array.isArray(S)) { for (let [O, I] of S.entries()) s.push([t.offsets.applyParallelOffset(p, O), I, x.clone()]); continue } if (typeof S == "string" && y.push({ format: S, respectPrefix: u }), S === null) continue; x.raws.neededBackup && (delete x.raws.neededBackup, x.walkRules(O => { let I = O.raws.originalSelector; if (!I || (delete O.raws.originalSelector, I === O.selector)) return; let B = O.selector, q = (0, vn.default)(X => { X.walkClasses(le => { le.value = `${i}${t.tailwindConfig.separator}${le.value}` }) }).processSync(I); y.push({ format: B.replace(q, "&"), respectPrefix: u }), O.selector = I })), x.nodes[0].raws.tailwind = { ...x.nodes[0].raws.tailwind, parentLayer: c.layer }; let _ = [{ ...c, sort: t.offsets.applyVariantOffset(c.sort, p, Object.assign(r, t.variantOptions.get(i))), collectedFormats: (c.collectedFormats ?? []).concat(y) }, x.nodes[0]]; o.push(_) } } return o } return [] } function so(i, e, t = {}) { return !ne(i) && !Array.isArray(i) ? [[i], t] : Array.isArray(i) ? so(i[0], e, i[1]) : (e.has(i) || e.set(i, Mt(i)), [e.get(i), t]) } function TC(i) { return EC.test(i) } function PC(i) { if (!i.includes("://")) return !1; try { let e = new URL(i); return e.scheme !== "" && e.host !== "" } catch (e) { return !1 } } function Ad(i) { let e = !0; return i.walkDecls(t => { if (!_d(t.prop, t.value)) return e = !1, !1 }), e } function _d(i, e) { if (PC(`${i}:${e}`)) return !1; try { return V.parse(`a{${i}:${e}}`).toResult(), !0 } catch (t) { return !1 } } function DC(i, e) { let [, t, r] = i.match(/^\[([a-zA-Z0-9-_]+):(\S+)\]$/) ?? []; if (r === void 0 || !TC(t) || !Nt(r)) return null; let n = N(r, { property: t }); return _d(t, n) ? [[{ sort: e.offsets.arbitraryProperty(), layer: "utilities" }, () => ({ [Va(i)]: { [t]: n } })]] : null } function* IC(i, e) { e.candidateRuleMap.has(i) && (yield [e.candidateRuleMap.get(i), "DEFAULT"]), yield* function* (o) { o !== null && (yield [o, "DEFAULT"]) }(DC(i, e)); let t = i, r = !1, n = e.tailwindConfig.prefix, a = n.length, s = t.startsWith(n) || t.startsWith(`-${n}`); t[a] === "-" && s && (r = !0, t = n + t.slice(a + 1)), r && e.candidateRuleMap.has(t) && (yield [e.candidateRuleMap.get(t), "-DEFAULT"]); for (let [o, u] of CC(t)) e.candidateRuleMap.has(o) && (yield [e.candidateRuleMap.get(o), r ? `-${u}` : u]) } function qC(i, e) { return i === He ? [He] : oe(i, e) } function* RC(i, e) { for (let t of i) t[1].raws.tailwind = { ...t[1].raws.tailwind, classCandidate: e, preserveSource: t[0].options?.preserveSource ?? !1 }, yield t } function* ao(i, e) { - let t = e.tailwindConfig.separator, [r, ...n] = qC(i, t).reverse(), a = !1; r.startsWith("!") && (a = !0, r = r.slice(1)); for (let s of IC(r, e)) { - let o = [], u = new Map, [c, f] = s, d = c.length === 1; for (let [p, m] of c) { let w = []; if (typeof m == "function") for (let x of [].concat(m(f, { isOnlyPlugin: d }))) { let [y, b] = so(x, e.postCssNodeCache); for (let k of y) w.push([{ ...p, options: { ...p.options, ...b } }, k]) } else if (f === "DEFAULT" || f === "-DEFAULT") { let x = m, [y, b] = so(x, e.postCssNodeCache); for (let k of y) w.push([{ ...p, options: { ...p.options, ...b } }, k]) } if (w.length > 0) { let x = Array.from(fs(p.options?.types ?? [], f, p.options ?? {}, e.tailwindConfig)).map(([y, b]) => b); x.length > 0 && u.set(w, x), o.push(w) } } if (oo(f)) { - if (o.length > 1) { - let w = function (y) { return y.length === 1 ? y[0] : y.find(b => { let k = u.get(b); return b.some(([{ options: S }, _]) => Ad(_) ? S.types.some(({ type: O, preferOnConflict: I }) => k.includes(O) && I) : !1) }) }, [p, m] = o.reduce((y, b) => (b.some(([{ options: S }]) => S.types.some(({ type: _ }) => _ === "any")) ? y[0].push(b) : y[1].push(b), y), [[], []]), x = w(m) ?? w(p); if (x) o = [x]; else { - let y = o.map(k => new Set([...u.get(k) ?? []])); for (let k of y) for (let S of k) { let _ = !1; for (let O of y) k !== O && O.has(S) && (O.delete(S), _ = !0); _ && k.delete(S) } let b = []; for (let [k, S] of y.entries()) for (let _ of S) { - let O = o[k].map(([, I]) => I).flat().map(I => I.toString().split(` -`).slice(1, -1).map(B => B.trim()).map(B => ` ${B}`).join(` -`)).join(` - -`); b.push(` Use \`${i.replace("[", `[${_}:`)}\` for \`${O.trim()}\``); break - } F.warn([`The class \`${i}\` is ambiguous and matches multiple utilities.`, ...b, `If this is content and not a class, replace it with \`${i.replace("[", "[").replace("]", "]")}\` to silence this warning.`]); continue - } - } o = o.map(p => p.filter(m => Ad(m[1]))) - } o = o.flat(), o = Array.from(RC(o, r)), o = AC(o, e), a && (o = _C(o, r)); for (let p of n) o = OC(p, o, e); for (let p of o) p[1].raws.tailwind = { ...p[1].raws.tailwind, candidate: i }, p = MC(p, { context: e, candidate: i }), p !== null && (yield p) - } - } function MC(i, { context: e, candidate: t }) { if (!i[0].collectedFormats) return i; let r = !0, n; try { n = $t(i[0].collectedFormats, { context: e, candidate: t }) } catch { return null } let a = V.root({ nodes: [i[1].clone()] }); return a.walkRules(s => { if (!xn(s)) try { let o = wn(s.selector, n, { candidate: t, context: e }); if (o === null) { s.remove(); return } s.selector = o } catch { return r = !1, !1 } }), !r || a.nodes.length === 0 ? null : (i[1] = a.nodes[0], i) } function xn(i) { return i.parent && i.parent.type === "atrule" && i.parent.name === "keyframes" } function BC(i) { if (i === !0) return e => { xn(e) || e.walkDecls(t => { t.parent.type === "rule" && !xn(t.parent) && (t.important = !0) }) }; if (typeof i == "string") return e => { xn(e) || (e.selectors = e.selectors.map(t => bn(t, i))) } } function kn(i, e, t = !1) { let r = [], n = BC(e.tailwindConfig.important); for (let a of i) { if (e.notClassCache.has(a)) continue; if (e.candidateRuleCache.has(a)) { r = r.concat(Array.from(e.candidateRuleCache.get(a))); continue } let s = Array.from(ao(a, e)); if (s.length === 0) { e.notClassCache.add(a); continue } e.classCache.set(a, s); let o = e.candidateRuleCache.get(a) ?? new Set; e.candidateRuleCache.set(a, o); for (let u of s) { let [{ sort: c, options: f }, d] = u; if (f.respectImportant && n) { let m = V.root({ nodes: [d.clone()] }); m.walkRules(n), d = m.nodes[0] } let p = [c, t ? d.clone() : d]; o.add(p), e.ruleCache.add(p), r.push(p) } } return r } function oo(i) { return i.startsWith("[") && i.endsWith("]") } var vn, SC, EC, Sn = C(() => { l(); nt(); vn = K(Re()); za(); kt(); un(); cr(); Oe(); ot(); to(); Ua(); fr(); Xr(); Ja(); St(); ze(); io(); SC = (0, vn.default)(i => i.first.filter(({ type: e }) => e === "class").pop().value); EC = /^[a-z_-]/ }); var Od, Ed = C(() => { l(); Od = {} }); function FC(i) { try { return Od.createHash("md5").update(i, "utf-8").digest("binary") } catch (e) { return "" } } function Td(i, e) { let t = e.toString(); if (!t.includes("@tailwind")) return !1; let r = Qa.get(i), n = FC(t), a = r !== n; return Qa.set(i, n), a } var Pd = C(() => { l(); Ed(); ot() }); function An(i) { return (i > 0n) - (i < 0n) } var Dd = C(() => { l() }); function Id(i, e) { let t = 0n, r = 0n; for (let [n, a] of e) i & n && (t = t | n, r = r | a); return i & ~t | r } var qd = C(() => { l() }); function Rd(i) { let e = null; for (let t of i) e = e ?? t, e = e > t ? e : t; return e } function NC(i, e) { let t = i.length, r = e.length, n = t < r ? t : r; for (let a = 0; a < n; a++) { let s = i.charCodeAt(a) - e.charCodeAt(a); if (s !== 0) return s } return t - r } var lo, Md = C(() => { l(); Dd(); qd(); lo = class { constructor() { this.offsets = { defaults: 0n, base: 0n, components: 0n, utilities: 0n, variants: 0n, user: 0n }, this.layerPositions = { defaults: 0n, base: 1n, components: 2n, utilities: 3n, user: 4n, variants: 5n }, this.reservedVariantBits = 0n, this.variantOffsets = new Map } create(e) { return { layer: e, parentLayer: e, arbitrary: 0n, variants: 0n, parallelIndex: 0n, index: this.offsets[e]++, options: [] } } arbitraryProperty() { return { ...this.create("utilities"), arbitrary: 1n } } forVariant(e, t = 0) { let r = this.variantOffsets.get(e); if (r === void 0) throw new Error(`Cannot find offset for unknown variant ${e}`); return { ...this.create("variants"), variants: r << BigInt(t) } } applyVariantOffset(e, t, r) { return r.variant = t.variants, { ...e, layer: "variants", parentLayer: e.layer === "variants" ? e.parentLayer : e.layer, variants: e.variants | t.variants, options: r.sort ? [].concat(r, e.options) : e.options, parallelIndex: Rd([e.parallelIndex, t.parallelIndex]) } } applyParallelOffset(e, t) { return { ...e, parallelIndex: BigInt(t) } } recordVariants(e, t) { for (let r of e) this.recordVariant(r, t(r)) } recordVariant(e, t = 1) { return this.variantOffsets.set(e, 1n << this.reservedVariantBits), this.reservedVariantBits += BigInt(t), { ...this.create("variants"), variants: this.variantOffsets.get(e) } } compare(e, t) { if (e.layer !== t.layer) return this.layerPositions[e.layer] - this.layerPositions[t.layer]; if (e.parentLayer !== t.parentLayer) return this.layerPositions[e.parentLayer] - this.layerPositions[t.parentLayer]; for (let r of e.options) for (let n of t.options) { if (r.id !== n.id || !r.sort || !n.sort) continue; let a = Rd([r.variant, n.variant]) ?? 0n, s = ~(a | a - 1n), o = e.variants & s, u = t.variants & s; if (o !== u) continue; let c = r.sort({ value: r.value, modifier: r.modifier }, { value: n.value, modifier: n.modifier }); if (c !== 0) return c } return e.variants !== t.variants ? e.variants - t.variants : e.parallelIndex !== t.parallelIndex ? e.parallelIndex - t.parallelIndex : e.arbitrary !== t.arbitrary ? e.arbitrary - t.arbitrary : e.index - t.index } recalculateVariantOffsets() { let e = Array.from(this.variantOffsets.entries()).filter(([n]) => n.startsWith("[")).sort(([n], [a]) => NC(n, a)), t = e.map(([, n]) => n).sort((n, a) => An(n - a)); return e.map(([, n], a) => [n, t[a]]).filter(([n, a]) => n !== a) } remapArbitraryVariantOffsets(e) { let t = this.recalculateVariantOffsets(); return t.length === 0 ? e : e.map(r => { let [n, a] = r; return n = { ...n, variants: Id(n.variants, t) }, [n, a] }) } sort(e) { return e = this.remapArbitraryVariantOffsets(e), e.sort(([t], [r]) => An(this.compare(t, r))) } } }); function po(i, e) { let t = i.tailwindConfig.prefix; return typeof t == "function" ? t(e) : t + e } function Fd({ type: i = "any", ...e }) { let t = [].concat(i); return { ...e, types: t.map(r => Array.isArray(r) ? { type: r[0], ...r[1] } : { type: r, preferOnConflict: !1 }) } } function LC(i) { let e = [], t = "", r = 0; for (let n = 0; n < i.length; n++) { let a = i[n]; if (a === "\\") t += "\\" + i[++n]; else if (a === "{") ++r, e.push(t.trim()), t = ""; else if (a === "}") { if (--r < 0) throw new Error("Your { and } are unbalanced."); e.push(t.trim()), t = "" } else t += a } return t.length > 0 && e.push(t.trim()), e = e.filter(n => n !== ""), e } function $C(i, e, { before: t = [] } = {}) { if (t = [].concat(t), t.length <= 0) { i.push(e); return } let r = i.length - 1; for (let n of t) { let a = i.indexOf(n); a !== -1 && (r = Math.min(r, a)) } i.splice(r, 0, e) } function Nd(i) { return Array.isArray(i) ? i.flatMap(e => !Array.isArray(e) && !ne(e) ? e : Mt(e)) : Nd([i]) } function jC(i, e) { return (0, uo.default)(r => { let n = []; return e && e(r), r.walkClasses(a => { n.push(a.value) }), n }).transformSync(i) } function zC(i) { i.walkPseudos(e => { e.value === ":not" && e.remove() }) } function VC(i, e = { containsNonOnDemandable: !1 }, t = 0) { let r = [], n = []; i.type === "rule" ? n.push(...i.selectors) : i.type === "atrule" && i.walkRules(a => n.push(...a.selectors)); for (let a of n) { let s = jC(a, zC); s.length === 0 && (e.containsNonOnDemandable = !0); for (let o of s) r.push(o) } return t === 0 ? [e.containsNonOnDemandable || r.length === 0, r] : r } function _n(i) { return Nd(i).flatMap(e => { let t = new Map, [r, n] = VC(e); return r && n.unshift(He), n.map(a => (t.has(e) || t.set(e, e), [a, t.get(e)])) }) } function Cn(i) { return i.startsWith("@") || i.includes("&") } function Zr(i) { i = i.replace(/\n+/g, "").replace(/\s{1,}/g, " ").trim(); let e = LC(i).map(t => { if (!t.startsWith("@")) return ({ format: a }) => a(t); let [, r, n] = /@(\S*)( .+|[({].*)?/g.exec(t); return ({ wrap: a }) => a(V.atRule({ name: r, params: n?.trim() ?? "" })) }).reverse(); return t => { for (let r of e) r(t) } } function UC(i, e, { variantList: t, variantMap: r, offsets: n, classList: a }) { function s(p, m) { return p ? (0, Bd.default)(i, p, m) : i } function o(p) { return Bt(i.prefix, p) } function u(p, m) { return p === He ? He : m.respectPrefix ? e.tailwindConfig.prefix + p : p } function c(p, m, w = {}) { let x = Ke(p), y = s(["theme", ...x], m); return Ge(x[0])(y, w) } let f = 0, d = { postcss: V, prefix: o, e: de, config: s, theme: c, corePlugins: p => Array.isArray(i.corePlugins) ? i.corePlugins.includes(p) : s(["corePlugins", p], !0), variants: () => [], addBase(p) { for (let [m, w] of _n(p)) { let x = u(m, {}), y = n.create("base"); e.candidateRuleMap.has(x) || e.candidateRuleMap.set(x, []), e.candidateRuleMap.get(x).push([{ sort: y, layer: "base" }, w]) } }, addDefaults(p, m) { let w = { [`@defaults ${p}`]: m }; for (let [x, y] of _n(w)) { let b = u(x, {}); e.candidateRuleMap.has(b) || e.candidateRuleMap.set(b, []), e.candidateRuleMap.get(b).push([{ sort: n.create("defaults"), layer: "defaults" }, y]) } }, addComponents(p, m) { m = Object.assign({}, { preserveSource: !1, respectPrefix: !0, respectImportant: !1 }, Array.isArray(m) ? {} : m); for (let [x, y] of _n(p)) { let b = u(x, m); a.add(b), e.candidateRuleMap.has(b) || e.candidateRuleMap.set(b, []), e.candidateRuleMap.get(b).push([{ sort: n.create("components"), layer: "components", options: m }, y]) } }, addUtilities(p, m) { m = Object.assign({}, { preserveSource: !1, respectPrefix: !0, respectImportant: !0 }, Array.isArray(m) ? {} : m); for (let [x, y] of _n(p)) { let b = u(x, m); a.add(b), e.candidateRuleMap.has(b) || e.candidateRuleMap.set(b, []), e.candidateRuleMap.get(b).push([{ sort: n.create("utilities"), layer: "utilities", options: m }, y]) } }, matchUtilities: function (p, m) { m = Fd({ ...{ respectPrefix: !0, respectImportant: !0, modifiers: !1 }, ...m }); let x = n.create("utilities"); for (let y in p) { let S = function (O, { isOnlyPlugin: I }) { let [B, q, X] = us(m.types, O, m, i); if (B === void 0) return []; if (!m.types.some(({ type: j }) => j === q)) if (I) F.warn([`Unnecessary typehint \`${q}\` in \`${y}-${O}\`.`, `You can safely update it to \`${y}-${O.replace(q + ":", "")}\`.`]); else return []; if (!Nt(B)) return []; let le = { get modifier() { return m.modifiers || F.warn(`modifier-used-without-options-for-${y}`, ["Your plugin must set `modifiers: true` in its options to support modifiers."]), X } }, ce = Z(i, "generalizedModifiers"); return [].concat(ce ? k(B, le) : k(B)).filter(Boolean).map(j => ({ [fn(y, O)]: j })) }, b = u(y, m), k = p[y]; a.add([b, m]); let _ = [{ sort: x, layer: "utilities", options: m }, S]; e.candidateRuleMap.has(b) || e.candidateRuleMap.set(b, []), e.candidateRuleMap.get(b).push(_) } }, matchComponents: function (p, m) { m = Fd({ ...{ respectPrefix: !0, respectImportant: !1, modifiers: !1 }, ...m }); let x = n.create("components"); for (let y in p) { let S = function (O, { isOnlyPlugin: I }) { let [B, q, X] = us(m.types, O, m, i); if (B === void 0) return []; if (!m.types.some(({ type: j }) => j === q)) if (I) F.warn([`Unnecessary typehint \`${q}\` in \`${y}-${O}\`.`, `You can safely update it to \`${y}-${O.replace(q + ":", "")}\`.`]); else return []; if (!Nt(B)) return []; let le = { get modifier() { return m.modifiers || F.warn(`modifier-used-without-options-for-${y}`, ["Your plugin must set `modifiers: true` in its options to support modifiers."]), X } }, ce = Z(i, "generalizedModifiers"); return [].concat(ce ? k(B, le) : k(B)).filter(Boolean).map(j => ({ [fn(y, O)]: j })) }, b = u(y, m), k = p[y]; a.add([b, m]); let _ = [{ sort: x, layer: "components", options: m }, S]; e.candidateRuleMap.has(b) || e.candidateRuleMap.set(b, []), e.candidateRuleMap.get(b).push(_) } }, addVariant(p, m, w = {}) { m = [].concat(m).map(x => { if (typeof x != "string") return (y = {}) => { let { args: b, modifySelectors: k, container: S, separator: _, wrap: O, format: I } = y, B = x(Object.assign({ modifySelectors: k, container: S, separator: _ }, w.type === fo.MatchVariant && { args: b, wrap: O, format: I })); if (typeof B == "string" && !Cn(B)) throw new Error(`Your custom variant \`${p}\` has an invalid format string. Make sure it's an at-rule or contains a \`&\` placeholder.`); return Array.isArray(B) ? B.filter(q => typeof q == "string").map(q => Zr(q)) : B && typeof B == "string" && Zr(B)(y) }; if (!Cn(x)) throw new Error(`Your custom variant \`${p}\` has an invalid format string. Make sure it's an at-rule or contains a \`&\` placeholder.`); return Zr(x) }), $C(t, p, w), r.set(p, m), e.variantOptions.set(p, w) }, matchVariant(p, m, w) { let x = w?.id ?? ++f, y = p === "@", b = Z(i, "generalizedModifiers"); for (let [S, _] of Object.entries(w?.values ?? {})) S !== "DEFAULT" && d.addVariant(y ? `${p}${S}` : `${p}-${S}`, ({ args: O, container: I }) => m(_, b ? { modifier: O?.modifier, container: I } : { container: I }), { ...w, value: _, id: x, type: fo.MatchVariant, variantInfo: co.Base }); let k = "DEFAULT" in (w?.values ?? {}); d.addVariant(p, ({ args: S, container: _ }) => S?.value === Kr && !k ? null : m(S?.value === Kr ? w.values.DEFAULT : S?.value ?? (typeof S == "string" ? S : ""), b ? { modifier: S?.modifier, container: _ } : { container: _ }), { ...w, id: x, type: fo.MatchVariant, variantInfo: co.Dynamic }) } }; return d } function On(i) { return ho.has(i) || ho.set(i, new Map), ho.get(i) } function Ld(i, e) { let t = !1, r = new Map; for (let n of i) { if (!n) continue; let a = gs.parse(n), s = a.hash ? a.href.replace(a.hash, "") : a.href; s = a.search ? s.replace(a.search, "") : s; let o = re.statSync(decodeURIComponent(s), { throwIfNoEntry: !1 })?.mtimeMs; !o || ((!e.has(n) || o > e.get(n)) && (t = !0), r.set(n, o)) } return [t, r] } function $d(i) { i.walkAtRules(e => { ["responsive", "variants"].includes(e.name) && ($d(e), e.before(e.nodes), e.remove()) }) } function WC(i) { let e = []; return i.each(t => { t.type === "atrule" && ["responsive", "variants"].includes(t.name) && (t.name = "layer", t.params = "utilities") }), i.walkAtRules("layer", t => { if ($d(t), t.params === "base") { for (let r of t.nodes) e.push(function ({ addBase: n }) { n(r, { respectPrefix: !1 }) }); t.remove() } else if (t.params === "components") { for (let r of t.nodes) e.push(function ({ addComponents: n }) { n(r, { respectPrefix: !1, preserveSource: !0 }) }); t.remove() } else if (t.params === "utilities") { for (let r of t.nodes) e.push(function ({ addUtilities: n }) { n(r, { respectPrefix: !1, preserveSource: !0 }) }); t.remove() } }), e } function GC(i, e) { let t = Object.entries({ ...Y, ...md }).map(([u, c]) => i.tailwindConfig.corePlugins.includes(u) ? c : null).filter(Boolean), r = i.tailwindConfig.plugins.map(u => (u.__isOptionsFunction && (u = u()), typeof u == "function" ? u : u.handler)), n = WC(e), a = [Y.childVariant, Y.pseudoElementVariants, Y.pseudoClassVariants, Y.hasVariants, Y.ariaVariants, Y.dataVariants], s = [Y.supportsVariants, Y.reducedMotionVariants, Y.prefersContrastVariants, Y.screenVariants, Y.orientationVariants, Y.directionVariants, Y.darkVariants, Y.forcedColorsVariants, Y.printVariant]; return (i.tailwindConfig.darkMode === "class" || Array.isArray(i.tailwindConfig.darkMode) && i.tailwindConfig.darkMode[0] === "class") && (s = [Y.supportsVariants, Y.reducedMotionVariants, Y.prefersContrastVariants, Y.darkVariants, Y.screenVariants, Y.orientationVariants, Y.directionVariants, Y.forcedColorsVariants, Y.printVariant]), [...t, ...a, ...r, ...s, ...n] } function HC(i, e) { let t = [], r = new Map; e.variantMap = r; let n = new lo; e.offsets = n; let a = new Set, s = UC(e.tailwindConfig, e, { variantList: t, variantMap: r, offsets: n, classList: a }); for (let f of i) if (Array.isArray(f)) for (let d of f) d(s); else f?.(s); n.recordVariants(t, f => r.get(f).length); for (let [f, d] of r.entries()) e.variantMap.set(f, d.map((p, m) => [n.forVariant(f, m), p])); let o = (e.tailwindConfig.safelist ?? []).filter(Boolean); if (o.length > 0) { let f = []; for (let d of o) { if (typeof d == "string") { e.changedContent.push({ content: d, extension: "html" }); continue } if (d instanceof RegExp) { F.warn("root-regex", ["Regular expressions in `safelist` work differently in Tailwind CSS v3.0.", "Update your `safelist` configuration to eliminate this warning.", "https://tailwindcss.com/docs/content-configuration#safelisting-classes"]); continue } f.push(d) } if (f.length > 0) { let d = new Map, p = e.tailwindConfig.prefix.length, m = f.some(w => w.pattern.source.includes("!")); for (let w of a) { let x = Array.isArray(w) ? (() => { let [y, b] = w, S = Object.keys(b?.values ?? {}).map(_ => Qr(y, _)); return b?.supportsNegativeValues && (S = [...S, ...S.map(_ => "-" + _)], S = [...S, ...S.map(_ => _.slice(0, p) + "-" + _.slice(p))]), b.types.some(({ type: _ }) => _ === "color") && (S = [...S, ...S.flatMap(_ => Object.keys(e.tailwindConfig.theme.opacity).map(O => `${_}/${O}`))]), m && b?.respectImportant && (S = [...S, ...S.map(_ => "!" + _)]), S })() : [w]; for (let y of x) for (let { pattern: b, variants: k = [] } of f) if (b.lastIndex = 0, d.has(b) || d.set(b, 0), !!b.test(y)) { d.set(b, d.get(b) + 1), e.changedContent.push({ content: y, extension: "html" }); for (let S of k) e.changedContent.push({ content: S + e.tailwindConfig.separator + y, extension: "html" }) } } for (let [w, x] of d.entries()) x === 0 && F.warn([`The safelist pattern \`${w}\` doesn't match any Tailwind CSS classes.`, "Fix this pattern or remove it from your `safelist` configuration.", "https://tailwindcss.com/docs/content-configuration#safelisting-classes"]) } } let u = [].concat(e.tailwindConfig.darkMode ?? "media")[1] ?? "dark", c = [po(e, u), po(e, "group"), po(e, "peer")]; e.getClassOrder = function (d) { let p = [...d].sort((y, b) => y === b ? 0 : y < b ? -1 : 1), m = new Map(p.map(y => [y, null])), w = kn(new Set(p), e, !0); w = e.offsets.sort(w); let x = BigInt(c.length); for (let [, y] of w) { let b = y.raws.tailwind.candidate; m.set(b, m.get(b) ?? x++) } return d.map(y => { let b = m.get(y) ?? null, k = c.indexOf(y); return b === null && k !== -1 && (b = BigInt(k)), [y, b] }) }, e.getClassList = function (d = {}) { let p = []; for (let m of a) if (Array.isArray(m)) { let [w, x] = m, y = [], b = Object.keys(x?.modifiers ?? {}); x?.types?.some(({ type: _ }) => _ === "color") && b.push(...Object.keys(e.tailwindConfig.theme.opacity ?? {})); let k = { modifiers: b }, S = d.includeMetadata && b.length > 0; for (let [_, O] of Object.entries(x?.values ?? {})) { if (O == null) continue; let I = Qr(w, _); if (p.push(S ? [I, k] : I), x?.supportsNegativeValues && Xe(O)) { let B = Qr(w, `-${_}`); y.push(S ? [B, k] : B) } } p.push(...y) } else p.push(m); return p }, e.getVariants = function () { let d = []; for (let [p, m] of e.variantOptions.entries()) m.variantInfo !== co.Base && d.push({ name: p, isArbitrary: m.type === Symbol.for("MATCH_VARIANT"), values: Object.keys(m.values ?? {}), hasDash: p !== "@", selectors({ modifier: w, value: x } = {}) { let y = "__TAILWIND_PLACEHOLDER__", b = V.rule({ selector: `.${y}` }), k = V.root({ nodes: [b.clone()] }), S = k.toString(), _ = (e.variantMap.get(p) ?? []).flatMap(([j, ue]) => ue), O = []; for (let j of _) { let ue = [], ai = { args: { modifier: w, value: m.values?.[x] ?? x }, separator: e.tailwindConfig.separator, modifySelectors(Ce) { return k.each(Yn => { Yn.type === "rule" && (Yn.selectors = Yn.selectors.map(lu => Ce({ get className() { return no(lu) }, selector: lu }))) }), k }, format(Ce) { ue.push(Ce) }, wrap(Ce) { ue.push(`@${Ce.name} ${Ce.params} { & }`) }, container: k }, oi = j(ai); if (ue.length > 0 && O.push(ue), Array.isArray(oi)) for (let Ce of oi) ue = [], Ce(ai), O.push(ue) } let I = [], B = k.toString(); S !== B && (k.walkRules(j => { let ue = j.selector, ai = (0, uo.default)(oi => { oi.walkClasses(Ce => { Ce.value = `${p}${e.tailwindConfig.separator}${Ce.value}` }) }).processSync(ue); I.push(ue.replace(ai, "&").replace(y, "&")) }), k.walkAtRules(j => { I.push(`@${j.name} (${j.params}) { & }`) })); let q = !(x in (m.values ?? {})), X = m[Jr] ?? {}, le = (() => !(q || X.respectPrefix === !1))(); O = O.map(j => j.map(ue => ({ format: ue, respectPrefix: le }))), I = I.map(j => ({ format: j, respectPrefix: le })); let ce = { candidate: y, context: e }, $e = O.map(j => wn(`.${y}`, $t(j, ce), ce).replace(`.${y}`, "&").replace("{ & }", "").trim()); return I.length > 0 && $e.push($t(I, ce).toString().replace(`.${y}`, "&")), $e } }); return d } } function jd(i, e) { !i.classCache.has(e) || (i.notClassCache.add(e), i.classCache.delete(e), i.applyClassCache.delete(e), i.candidateRuleMap.delete(e), i.candidateRuleCache.delete(e), i.stylesheetCache = null) } function YC(i, e) { let t = e.raws.tailwind.candidate; if (!!t) { for (let r of i.ruleCache) r[1].raws.tailwind.candidate === t && i.ruleCache.delete(r); jd(i, t) } } function mo(i, e = [], t = V.root()) { let r = { disposables: [], ruleCache: new Set, candidateRuleCache: new Map, classCache: new Map, applyClassCache: new Map, notClassCache: new Set(i.blocklist ?? []), postCssNodeCache: new Map, candidateRuleMap: new Map, tailwindConfig: i, changedContent: e, variantMap: new Map, stylesheetCache: null, variantOptions: new Map, markInvalidUtilityCandidate: a => jd(r, a), markInvalidUtilityNode: a => YC(r, a) }, n = GC(r, t); return HC(n, r), r } function zd(i, e, t, r, n, a) { let s = e.opts.from, o = r !== null; Pe.DEBUG && console.log("Source path:", s); let u; if (o && jt.has(s)) u = jt.get(s); else if (ei.has(n)) { let p = ei.get(n); lt.get(p).add(s), jt.set(s, p), u = p } let c = Td(s, i); if (u) { let [p, m] = Ld([...a], On(u)); if (!p && !c) return [u, !1, m] } if (jt.has(s)) { let p = jt.get(s); if (lt.has(p) && (lt.get(p).delete(s), lt.get(p).size === 0)) { lt.delete(p); for (let [m, w] of ei) w === p && ei.delete(m); for (let m of p.disposables.splice(0)) m(p) } } Pe.DEBUG && console.log("Setting up new context..."); let f = mo(t, [], i); Object.assign(f, { userConfigPath: r }); let [, d] = Ld([...a], On(f)); return ei.set(n, f), jt.set(s, f), lt.has(f) || lt.set(f, new Set), lt.get(f).add(s), [f, !0, d] } var Bd, uo, Jr, fo, co, ho, jt, ei, lt, Xr = C(() => { l(); je(); ys(); nt(); Bd = K(Ls()), uo = K(Re()); Hr(); za(); un(); kt(); Ft(); Ua(); cr(); gd(); ot(); ot(); pi(); Oe(); fi(); Ja(); Sn(); Pd(); Md(); ze(); to(); Jr = Symbol(), fo = { AddVariant: Symbol.for("ADD_VARIANT"), MatchVariant: Symbol.for("MATCH_VARIANT") }, co = { Base: 1 << 0, Dynamic: 1 << 1 }; ho = new WeakMap; jt = yd, ei = wd, lt = gn }); function go(i) { return i.ignore ? [] : i.glob ? h.env.ROLLUP_WATCH === "true" ? [{ type: "dependency", file: i.base }] : [{ type: "dir-dependency", dir: i.base, glob: i.glob }] : [{ type: "dependency", file: i.base }] } var Vd = C(() => { l() }); function Ud(i, e) { return { handler: i, config: e } } var Wd, Gd = C(() => { l(); Ud.withOptions = function (i, e = () => ({})) { let t = function (r) { return { __options: r, handler: i(r), config: e(r) } }; return t.__isOptionsFunction = !0, t.__pluginFunction = i, t.__configFunction = e, t }; Wd = Ud }); var yo = {}; Ae(yo, { default: () => QC }); var QC, wo = C(() => { l(); Gd(); QC = Wd }); var Yd = v((qD, Hd) => { l(); var JC = (wo(), yo).default, XC = { overflow: "hidden", display: "-webkit-box", "-webkit-box-orient": "vertical" }, KC = JC(function ({ matchUtilities: i, addUtilities: e, theme: t, variants: r }) { let n = t("lineClamp"); i({ "line-clamp": a => ({ ...XC, "-webkit-line-clamp": `${a}` }) }, { values: n }), e([{ ".line-clamp-none": { "-webkit-line-clamp": "unset" } }], r("lineClamp")) }, { theme: { lineClamp: { 1: "1", 2: "2", 3: "3", 4: "4", 5: "5", 6: "6" } }, variants: { lineClamp: ["responsive"] } }); Hd.exports = KC }); function bo(i) { i.content.files.length === 0 && F.warn("content-problems", ["The `content` option in your Tailwind CSS configuration is missing or empty.", "Configure your content sources or your generated CSS will be missing styles.", "https://tailwindcss.com/docs/content-configuration"]); try { let e = Yd(); i.plugins.includes(e) && (F.warn("line-clamp-in-core", ["As of Tailwind CSS v3.3, the `@tailwindcss/line-clamp` plugin is now included by default.", "Remove it from the `plugins` array in your configuration to eliminate this warning."]), i.plugins = i.plugins.filter(t => t !== e)) } catch { } return i } var Qd = C(() => { l(); Oe() }); var Jd, Xd = C(() => { l(); Jd = () => !1 }); var En, Kd = C(() => { l(); En = { sync: i => [].concat(i), generateTasks: i => [{ dynamic: !1, base: ".", negative: [], positive: [].concat(i), patterns: [].concat(i) }], escapePath: i => i } }); var vo, Zd = C(() => { l(); vo = i => i }); var eh, th = C(() => { l(); eh = () => "" }); function rh(i) { let e = i, t = eh(i); return t !== "." && (e = i.substr(t.length), e.charAt(0) === "/" && (e = e.substr(1))), e.substr(0, 2) === "./" && (e = e.substr(2)), e.charAt(0) === "/" && (e = e.substr(1)), { base: t, glob: e } } var ih = C(() => { l(); th() }); function nh(i, e) { let t = e.content.files; t = t.filter(o => typeof o == "string"), t = t.map(vo); let r = En.generateTasks(t), n = [], a = []; for (let o of r) n.push(...o.positive.map(u => sh(u, !1))), a.push(...o.negative.map(u => sh(u, !0))); let s = [...n, ...a]; return s = e2(i, s), s = s.flatMap(t2), s = s.map(ZC), s } function sh(i, e) { let t = { original: i, base: i, ignore: e, pattern: i, glob: null }; return Jd(i) && Object.assign(t, rh(i)), t } function ZC(i) { let e = vo(i.base); return e = En.escapePath(e), i.pattern = i.glob ? `${e}/${i.glob}` : e, i.pattern = i.ignore ? `!${i.pattern}` : i.pattern, i } function e2(i, e) { let t = []; return i.userConfigPath && i.tailwindConfig.content.relative && (t = [ee.dirname(i.userConfigPath)]), e.map(r => (r.base = ee.resolve(...t, r.base), r)) } function t2(i) { let e = [i]; try { let t = re.realpathSync(i.base); t !== i.base && e.push({ ...i, base: t }) } catch { } return e } function ah(i, e, t) { let r = i.tailwindConfig.content.files.filter(s => typeof s.raw == "string").map(({ raw: s, extension: o = "html" }) => ({ content: s, extension: o })), [n, a] = r2(e, t); for (let s of n) { let o = ee.extname(s).slice(1); r.push({ file: s, extension: o }) } return [r, a] } function r2(i, e) { let t = i.map(s => s.pattern), r = new Map, n = new Set; Pe.DEBUG && console.time("Finding changed files"); let a = En.sync(t, { absolute: !0 }); for (let s of a) { let o = e.get(s) || -1 / 0, u = re.statSync(s).mtimeMs; u > o && (n.add(s), r.set(s, u)) } return Pe.DEBUG && console.timeEnd("Finding changed files"), [n, r] } var oh = C(() => { l(); je(); gt(); Xd(); Kd(); Zd(); ih(); ot() }); function lh() { } var uh = C(() => { l() }); function a2(i, e) { for (let t of e) { let r = `${i}${t}`; if (re.existsSync(r) && re.statSync(r).isFile()) return r } for (let t of e) { let r = `${i}/index${t}`; if (re.existsSync(r)) return r } return null } function* fh(i, e, t, r = ee.extname(i)) { let n = a2(ee.resolve(e, i), i2.includes(r) ? n2 : s2); if (n === null || t.has(n)) return; t.add(n), yield n, e = ee.dirname(n), r = ee.extname(n); let a = re.readFileSync(n, "utf-8"); for (let s of [...a.matchAll(/import[\s\S]*?['"](.{3,}?)['"]/gi), ...a.matchAll(/import[\s\S]*from[\s\S]*?['"](.{3,}?)['"]/gi), ...a.matchAll(/require\(['"`](.+)['"`]\)/gi)]) !s[1].startsWith(".") || (yield* fh(s[1], e, t, r)) } function xo(i) { return i === null ? new Set : new Set(fh(i, ee.dirname(i), new Set)) } var i2, n2, s2, ch = C(() => { l(); je(); gt(); i2 = [".js", ".cjs", ".mjs"], n2 = ["", ".js", ".cjs", ".mjs", ".ts", ".cts", ".mts", ".jsx", ".tsx"], s2 = ["", ".ts", ".cts", ".mts", ".tsx", ".js", ".cjs", ".mjs", ".jsx"] }); function o2(i, e) { if (ko.has(i)) return ko.get(i); let t = nh(i, e); return ko.set(i, t).get(i) } function l2(i) { let e = ms(i); if (e !== null) { let [r, n, a, s] = dh.get(e) || [], o = xo(e), u = !1, c = new Map; for (let p of o) { let m = re.statSync(p).mtimeMs; c.set(p, m), (!s || !s.has(p) || m > s.get(p)) && (u = !0) } if (!u) return [r, e, n, a]; for (let p of o) delete fu.cache[p]; let f = bo(dr(lh(e))), d = ui(f); return dh.set(e, [f, d, o, c]), [f, e, d, o] } let t = dr(i?.config ?? i ?? {}); return t = bo(t), [t, null, ui(t), []] } function So(i) { return ({ tailwindDirectives: e, registerDependency: t }) => (r, n) => { let [a, s, o, u] = l2(i), c = new Set(u); if (e.size > 0) { c.add(n.opts.from); for (let w of n.messages) w.type === "dependency" && c.add(w.file) } let [f, , d] = zd(r, n, a, s, o, c), p = On(f), m = o2(f, a); if (e.size > 0) { for (let y of m) for (let b of go(y)) t(b); let [w, x] = ah(f, m, p); for (let y of w) f.changedContent.push(y); for (let [y, b] of x.entries()) d.set(y, b) } for (let w of u) t({ type: "dependency", file: w }); for (let [w, x] of d.entries()) p.set(w, x); return f } } var ph, dh, ko, hh = C(() => { l(); je(); ph = K(Qn()); mu(); hs(); sf(); Xr(); Vd(); Qd(); oh(); uh(); ch(); dh = new ph.default({ maxSize: 100 }), ko = new WeakMap }); function Co(i) { let e = new Set, t = new Set, r = new Set; if (i.walkAtRules(n => { n.name === "apply" && r.add(n), n.name === "import" && (n.params === '"tailwindcss/base"' || n.params === "'tailwindcss/base'" ? (n.name = "tailwind", n.params = "base") : n.params === '"tailwindcss/components"' || n.params === "'tailwindcss/components'" ? (n.name = "tailwind", n.params = "components") : n.params === '"tailwindcss/utilities"' || n.params === "'tailwindcss/utilities'" ? (n.name = "tailwind", n.params = "utilities") : (n.params === '"tailwindcss/screens"' || n.params === "'tailwindcss/screens'" || n.params === '"tailwindcss/variants"' || n.params === "'tailwindcss/variants'") && (n.name = "tailwind", n.params = "variants")), n.name === "tailwind" && (n.params === "screens" && (n.params = "variants"), e.add(n.params)), ["layer", "responsive", "variants"].includes(n.name) && (["responsive", "variants"].includes(n.name) && F.warn(`${n.name}-at-rule-deprecated`, [`The \`@${n.name}\` directive has been deprecated in Tailwind CSS v3.0.`, "Use `@layer utilities` or `@layer components` instead.", "https://tailwindcss.com/docs/upgrade-guide#replace-variants-with-layer"]), t.add(n)) }), !e.has("base") || !e.has("components") || !e.has("utilities")) { for (let n of t) if (n.name === "layer" && ["base", "components", "utilities"].includes(n.params)) { if (!e.has(n.params)) throw n.error(`\`@layer ${n.params}\` is used but no matching \`@tailwind ${n.params}\` directive is present.`) } else if (n.name === "responsive") { if (!e.has("utilities")) throw n.error("`@responsive` is used but `@tailwind utilities` is missing.") } else if (n.name === "variants" && !e.has("utilities")) throw n.error("`@variants` is used but `@tailwind utilities` is missing.") } return { tailwindDirectives: e, applyDirectives: r } } var mh = C(() => { l(); Oe() }); function vt(i, e = void 0, t = void 0) { return i.map(r => { let n = r.clone(); return t !== void 0 && (n.raws.tailwind = { ...n.raws.tailwind, ...t }), e !== void 0 && gh(n, a => { if (a.raws.tailwind?.preserveSource === !0 && a.source) return !1; a.source = e }), n }) } function gh(i, e) { e(i) !== !1 && i.each?.(t => gh(t, e)) } var yh = C(() => { l() }); function Ao(i) { return i = Array.isArray(i) ? i : [i], i = i.map(e => e instanceof RegExp ? e.source : e), i.join("") } function ye(i) { return new RegExp(Ao(i), "g") } function ut(i) { return `(?:${i.map(Ao).join("|")})` } function _o(i) { return `(?:${Ao(i)})?` } function bh(i) { return i && u2.test(i) ? i.replace(wh, "\\$&") : i || "" } var wh, u2, vh = C(() => { l(); wh = /[\\^$.*+?()[\]{}|]/g, u2 = RegExp(wh.source) }); function xh(i) { let e = Array.from(f2(i)); return t => { let r = []; for (let n of e) for (let a of t.match(n) ?? []) r.push(d2(a)); return r } } function* f2(i) { let e = i.tailwindConfig.separator, t = i.tailwindConfig.prefix !== "" ? _o(ye([/-?/, bh(i.tailwindConfig.prefix)])) : "", r = ut([/\[[^\s:'"`]+:[^\s\[\]]+\]/, /\[[^\s:'"`\]]+:[^\s]+?\[[^\s]+\][^\s]+?\]/, ye([ut([/-?(?:\w+)/, /@(?:\w+)/]), _o(ut([ye([ut([/-(?:\w+-)*\['[^\s]+'\]/, /-(?:\w+-)*\["[^\s]+"\]/, /-(?:\w+-)*\[`[^\s]+`\]/, /-(?:\w+-)*\[(?:[^\s\[\]]+\[[^\s\[\]]+\])*[^\s:\[\]]+\]/]), /(?![{([]])/, /(?:\/[^\s'"`\\><$]*)?/]), ye([ut([/-(?:\w+-)*\['[^\s]+'\]/, /-(?:\w+-)*\["[^\s]+"\]/, /-(?:\w+-)*\[`[^\s]+`\]/, /-(?:\w+-)*\[(?:[^\s\[\]]+\[[^\s\[\]]+\])*[^\s\[\]]+\]/]), /(?![{([]])/, /(?:\/[^\s'"`\\$]*)?/]), /[-\/][^\s'"`\\$={><]*/]))])]), n = [ut([ye([/@\[[^\s"'`]+\](\/[^\s"'`]+)?/, e]), ye([/([^\s"'`\[\\]+-)?\[[^\s"'`]+\]\/\w+/, e]), ye([/([^\s"'`\[\\]+-)?\[[^\s"'`]+\]/, e]), ye([/[^\s"'`\[\\]+/, e])]), ut([ye([/([^\s"'`\[\\]+-)?\[[^\s`]+\]\/\w+/, e]), ye([/([^\s"'`\[\\]+-)?\[[^\s`]+\]/, e]), ye([/[^\s`\[\\]+/, e])])]; for (let a of n) yield ye(["((?=((", a, ")+))\\2)?", /!?/, t, r]); yield /[^<>"'`\s.(){}[\]#=%$]*[^<>"'`\s.(){}[\]#=%:$]/g } function d2(i) { if (!i.includes("-[")) return i; let e = 0, t = [], r = i.matchAll(c2); r = Array.from(r).flatMap(n => { let [, ...a] = n; return a.map((s, o) => Object.assign([], n, { index: n.index + o, 0: s })) }); for (let n of r) { let a = n[0], s = t[t.length - 1]; if (a === s ? t.pop() : (a === "'" || a === '"' || a === "`") && t.push(a), !s) { if (a === "[") { e++; continue } else if (a === "]") { e--; continue } if (e < 0) return i.substring(0, n.index - 1); if (e === 0 && !p2.test(a)) return i.substring(0, n.index) } } return i } var c2, p2, kh = C(() => { l(); vh(); c2 = /([\[\]'"`])([^\[\]'"`])?/g, p2 = /[^"'`\s<>\]]+/ }); function h2(i, e) { let t = i.tailwindConfig.content.extract; return t[e] || t.DEFAULT || Ch[e] || Ch.DEFAULT(i) } function m2(i, e) { let t = i.content.transform; return t[e] || t.DEFAULT || Ah[e] || Ah.DEFAULT } function g2(i, e, t, r) { - ti.has(e) || ti.set(e, new Sh.default({ maxSize: 25e3 })); for (let n of i.split(` -`)) if (n = n.trim(), !r.has(n)) if (r.add(n), ti.get(e).has(n)) for (let a of ti.get(e).get(n)) t.add(a); else { let a = e(n).filter(o => o !== "!*"), s = new Set(a); for (let o of s) t.add(o); ti.get(e).set(n, s) } - } function y2(i, e) { let t = e.offsets.sort(i), r = { base: new Set, defaults: new Set, components: new Set, utilities: new Set, variants: new Set }; for (let [n, a] of t) r[n.layer].add(a); return r } function Oo(i) { return async e => { let t = { base: null, components: null, utilities: null, variants: null }; if (e.walkAtRules(w => { w.name === "tailwind" && Object.keys(t).includes(w.params) && (t[w.params] = w) }), Object.values(t).every(w => w === null)) return e; let r = new Set([...i.candidates ?? [], He]), n = new Set; Ye.DEBUG && console.time("Reading changed files"); { let w = []; for (let y of i.changedContent) { let b = m2(i.tailwindConfig, y.extension), k = h2(i, y.extension); w.push([y, { transformer: b, extractor: k }]) } let x = 500; for (let y = 0; y < w.length; y += x) { let b = w.slice(y, y + x); await Promise.all(b.map(async ([{ file: k, content: S }, { transformer: _, extractor: O }]) => { S = k ? await re.promises.readFile(k, "utf8") : S, g2(_(S), O, r, n) })) } } Ye.DEBUG && console.timeEnd("Reading changed files"); let a = i.classCache.size; Ye.DEBUG && console.time("Generate rules"), Ye.DEBUG && console.time("Sorting candidates"); let s = new Set([...r].sort((w, x) => w === x ? 0 : w < x ? -1 : 1)); Ye.DEBUG && console.timeEnd("Sorting candidates"), kn(s, i), Ye.DEBUG && console.timeEnd("Generate rules"), Ye.DEBUG && console.time("Build stylesheet"), (i.stylesheetCache === null || i.classCache.size !== a) && (i.stylesheetCache = y2([...i.ruleCache], i)), Ye.DEBUG && console.timeEnd("Build stylesheet"); let { defaults: o, base: u, components: c, utilities: f, variants: d } = i.stylesheetCache; t.base && (t.base.before(vt([...u, ...o], t.base.source, { layer: "base" })), t.base.remove()), t.components && (t.components.before(vt([...c], t.components.source, { layer: "components" })), t.components.remove()), t.utilities && (t.utilities.before(vt([...f], t.utilities.source, { layer: "utilities" })), t.utilities.remove()); let p = Array.from(d).filter(w => { let x = w.raws.tailwind?.parentLayer; return x === "components" ? t.components !== null : x === "utilities" ? t.utilities !== null : !0 }); t.variants ? (t.variants.before(vt(p, t.variants.source, { layer: "variants" })), t.variants.remove()) : p.length > 0 && e.append(vt(p, e.source, { layer: "variants" })), e.source.end = e.source.end ?? e.source.start; let m = p.some(w => w.raws.tailwind?.parentLayer === "utilities"); t.utilities && f.size === 0 && !m && F.warn("content-problems", ["No utility classes were detected in your source files. If this is unexpected, double-check the `content` option in your Tailwind CSS configuration.", "https://tailwindcss.com/docs/content-configuration"]), Ye.DEBUG && (console.log("Potential classes: ", r.size), console.log("Active contexts: ", gn.size)), i.changedContent = [], e.walkAtRules("layer", w => { Object.keys(t).includes(w.params) && w.remove() }) } } var Sh, Ye, Ch, Ah, ti, _h = C(() => { l(); je(); Sh = K(Qn()); ot(); Sn(); Oe(); yh(); kh(); Ye = Pe, Ch = { DEFAULT: xh }, Ah = { DEFAULT: i => i, svelte: i => i.replace(/(?:^|\s)class:/g, " ") }; ti = new WeakMap }); function Pn(i) { let e = new Map; V.root({ nodes: [i.clone()] }).walkRules(a => { (0, Tn.default)(s => { s.walkClasses(o => { let u = o.parent.toString(), c = e.get(u); c || e.set(u, c = new Set), c.add(o.value) }) }).processSync(a.selector) }); let r = Array.from(e.values(), a => Array.from(a)), n = r.flat(); return Object.assign(n, { groups: r }) } function Eo(i) { return w2.astSync(i) } function Oh(i, e) { let t = new Set; for (let r of i) t.add(r.split(e).pop()); return Array.from(t) } function Eh(i, e) { let t = i.tailwindConfig.prefix; return typeof t == "function" ? t(e) : t + e } function* Th(i) { for (yield i; i.parent;)yield i.parent, i = i.parent } function b2(i, e = {}) { let t = i.nodes; i.nodes = []; let r = i.clone(e); return i.nodes = t, r } function v2(i) { for (let e of Th(i)) if (i !== e) { if (e.type === "root") break; i = b2(e, { nodes: [i] }) } return i } function x2(i, e) { let t = new Map; return i.walkRules(r => { for (let s of Th(r)) if (s.raws.tailwind?.layer !== void 0) return; let n = v2(r), a = e.offsets.create("user"); for (let s of Pn(r)) { let o = t.get(s) || []; t.set(s, o), o.push([{ layer: "user", sort: a, important: !1 }, n]) } }), t } function k2(i, e) { for (let t of i) { if (e.notClassCache.has(t) || e.applyClassCache.has(t)) continue; if (e.classCache.has(t)) { e.applyClassCache.set(t, e.classCache.get(t).map(([n, a]) => [n, a.clone()])); continue } let r = Array.from(ao(t, e)); if (r.length === 0) { e.notClassCache.add(t); continue } e.applyClassCache.set(t, r) } return e.applyClassCache } function S2(i) { let e = null; return { get: t => (e = e || i(), e.get(t)), has: t => (e = e || i(), e.has(t)) } } function C2(i) { return { get: e => i.flatMap(t => t.get(e) || []), has: e => i.some(t => t.has(e)) } } function Ph(i) { let e = i.split(/[\s\t\n]+/g); return e[e.length - 1] === "!important" ? [e.slice(0, -1), !0] : [e, !1] } function Dh(i, e, t) { let r = new Set, n = []; if (i.walkAtRules("apply", u => { let [c] = Ph(u.params); for (let f of c) r.add(f); n.push(u) }), n.length === 0) return; let a = C2([t, k2(r, e)]); function s(u, c, f) { let d = Eo(u), p = Eo(c), w = Eo(`.${de(f)}`).nodes[0].nodes[0]; return d.each(x => { let y = new Set; p.each(b => { let k = !1; b = b.clone(), b.walkClasses(S => { S.value === w.value && (k || (S.replaceWith(...x.nodes.map(_ => _.clone())), y.add(b), k = !0)) }) }); for (let b of y) { let k = [[]]; for (let S of b.nodes) S.type === "combinator" ? (k.push(S), k.push([])) : k[k.length - 1].push(S); b.nodes = []; for (let S of k) Array.isArray(S) && S.sort((_, O) => _.type === "tag" && O.type === "class" ? -1 : _.type === "class" && O.type === "tag" ? 1 : _.type === "class" && O.type === "pseudo" && O.value.startsWith("::") ? -1 : _.type === "pseudo" && _.value.startsWith("::") && O.type === "class" ? 1 : 0), b.nodes = b.nodes.concat(S) } x.replaceWith(...y) }), d.toString() } let o = new Map; for (let u of n) { let [c] = o.get(u.parent) || [[], u.source]; o.set(u.parent, [c, u.source]); let [f, d] = Ph(u.params); if (u.parent.type === "atrule") { if (u.parent.name === "screen") { let p = u.parent.params; throw u.error(`@apply is not supported within nested at-rules like @screen. We suggest you write this as @apply ${f.map(m => `${p}:${m}`).join(" ")} instead.`) } throw u.error(`@apply is not supported within nested at-rules like @${u.parent.name}. You can fix this by un-nesting @${u.parent.name}.`) } for (let p of f) { if ([Eh(e, "group"), Eh(e, "peer")].includes(p)) throw u.error(`@apply should not be used with the '${p}' utility`); if (!a.has(p)) throw u.error(`The \`${p}\` class does not exist. If \`${p}\` is a custom class, make sure it is defined within a \`@layer\` directive.`); let m = a.get(p); c.push([p, d, m]) } } for (let [u, [c, f]] of o) { let d = []; for (let [m, w, x] of c) { let y = [m, ...Oh([m], e.tailwindConfig.separator)]; for (let [b, k] of x) { let S = Pn(u), _ = Pn(k); if (_ = _.groups.filter(q => q.some(X => y.includes(X))).flat(), _ = _.concat(Oh(_, e.tailwindConfig.separator)), S.some(q => _.includes(q))) throw k.error(`You cannot \`@apply\` the \`${m}\` utility here because it creates a circular dependency.`); let I = V.root({ nodes: [k.clone()] }); I.walk(q => { q.source = f }), (k.type !== "atrule" || k.type === "atrule" && k.name !== "keyframes") && I.walkRules(q => { if (!Pn(q).some(j => j === m)) { q.remove(); return } let X = typeof e.tailwindConfig.important == "string" ? e.tailwindConfig.important : null, ce = u.raws.tailwind !== void 0 && X && u.selector.indexOf(X) === 0 ? u.selector.slice(X.length) : u.selector; ce === "" && (ce = u.selector), q.selector = s(ce, q.selector, m), X && ce !== u.selector && (q.selector = bn(q.selector, X)), q.walkDecls(j => { j.important = b.important || w }); let $e = (0, Tn.default)().astSync(q.selector); $e.each(j => Lt(j)), q.selector = $e.toString() }), !!I.nodes[0] && d.push([b.sort, I.nodes[0]]) } } let p = e.offsets.sort(d).map(m => m[1]); u.after(p) } for (let u of n) u.parent.nodes.length > 1 ? u.remove() : u.parent.remove(); Dh(i, e, t) } function To(i) { return e => { let t = S2(() => x2(e, i)); Dh(e, i, t) } } var Tn, w2, Ih = C(() => { l(); nt(); Tn = K(Re()); Sn(); Ft(); io(); yn(); w2 = (0, Tn.default)() }); var qh = v((P6, Dn) => { l(); (function () { "use strict"; function i(r, n, a) { if (!r) return null; i.caseSensitive || (r = r.toLowerCase()); var s = i.threshold === null ? null : i.threshold * r.length, o = i.thresholdAbsolute, u; s !== null && o !== null ? u = Math.min(s, o) : s !== null ? u = s : o !== null ? u = o : u = null; var c, f, d, p, m, w = n.length; for (m = 0; m < w; m++)if (f = n[m], a && (f = f[a]), !!f && (i.caseSensitive ? d = f : d = f.toLowerCase(), p = t(r, d, u), (u === null || p < u) && (u = p, a && i.returnWinningObject ? c = n[m] : c = f, i.returnFirstMatch))) return c; return c || i.nullResultValue } i.threshold = .4, i.thresholdAbsolute = 20, i.caseSensitive = !1, i.nullResultValue = null, i.returnWinningObject = null, i.returnFirstMatch = !1, typeof Dn != "undefined" && Dn.exports ? Dn.exports = i : window.didYouMean = i; var e = Math.pow(2, 32) - 1; function t(r, n, a) { a = a || a === 0 ? a : e; var s = r.length, o = n.length; if (s === 0) return Math.min(a + 1, o); if (o === 0) return Math.min(a + 1, s); if (Math.abs(s - o) > a) return a + 1; var u = [], c, f, d, p, m; for (c = 0; c <= o; c++)u[c] = [c]; for (f = 0; f <= s; f++)u[0][f] = f; for (c = 1; c <= o; c++) { for (d = e, p = 1, c > a && (p = c - a), m = o + 1, m > a + c && (m = a + c), f = 1; f <= s; f++)f < p || f > m ? u[c][f] = a + 1 : n.charAt(c - 1) === r.charAt(f - 1) ? u[c][f] = u[c - 1][f - 1] : u[c][f] = Math.min(u[c - 1][f - 1] + 1, Math.min(u[c][f - 1] + 1, u[c - 1][f] + 1)), u[c][f] < d && (d = u[c][f]); if (d > a) return a + 1 } return u[o][s] } })() }); var Mh = v((D6, Rh) => { l(); var Po = "(".charCodeAt(0), Do = ")".charCodeAt(0), In = "'".charCodeAt(0), Io = '"'.charCodeAt(0), qo = "\\".charCodeAt(0), zt = "/".charCodeAt(0), Ro = ",".charCodeAt(0), Mo = ":".charCodeAt(0), qn = "*".charCodeAt(0), A2 = "u".charCodeAt(0), _2 = "U".charCodeAt(0), O2 = "+".charCodeAt(0), E2 = /^[a-f0-9?-]+$/i; Rh.exports = function (i) { for (var e = [], t = i, r, n, a, s, o, u, c, f, d = 0, p = t.charCodeAt(d), m = t.length, w = [{ nodes: e }], x = 0, y, b = "", k = "", S = ""; d < m;)if (p <= 32) { r = d; do r += 1, p = t.charCodeAt(r); while (p <= 32); s = t.slice(d, r), a = e[e.length - 1], p === Do && x ? S = s : a && a.type === "div" ? (a.after = s, a.sourceEndIndex += s.length) : p === Ro || p === Mo || p === zt && t.charCodeAt(r + 1) !== qn && (!y || y && y.type === "function" && !1) ? k = s : e.push({ type: "space", sourceIndex: d, sourceEndIndex: r, value: s }), d = r } else if (p === In || p === Io) { r = d, n = p === In ? "'" : '"', s = { type: "string", sourceIndex: d, quote: n }; do if (o = !1, r = t.indexOf(n, r + 1), ~r) for (u = r; t.charCodeAt(u - 1) === qo;)u -= 1, o = !o; else t += n, r = t.length - 1, s.unclosed = !0; while (o); s.value = t.slice(d + 1, r), s.sourceEndIndex = s.unclosed ? r : r + 1, e.push(s), d = r + 1, p = t.charCodeAt(d) } else if (p === zt && t.charCodeAt(d + 1) === qn) r = t.indexOf("*/", d), s = { type: "comment", sourceIndex: d, sourceEndIndex: r + 2 }, r === -1 && (s.unclosed = !0, r = t.length, s.sourceEndIndex = r), s.value = t.slice(d + 2, r), e.push(s), d = r + 2, p = t.charCodeAt(d); else if ((p === zt || p === qn) && y && y.type === "function") s = t[d], e.push({ type: "word", sourceIndex: d - k.length, sourceEndIndex: d + s.length, value: s }), d += 1, p = t.charCodeAt(d); else if (p === zt || p === Ro || p === Mo) s = t[d], e.push({ type: "div", sourceIndex: d - k.length, sourceEndIndex: d + s.length, value: s, before: k, after: "" }), k = "", d += 1, p = t.charCodeAt(d); else if (Po === p) { r = d; do r += 1, p = t.charCodeAt(r); while (p <= 32); if (f = d, s = { type: "function", sourceIndex: d - b.length, value: b, before: t.slice(f + 1, r) }, d = r, b === "url" && p !== In && p !== Io) { r -= 1; do if (o = !1, r = t.indexOf(")", r + 1), ~r) for (u = r; t.charCodeAt(u - 1) === qo;)u -= 1, o = !o; else t += ")", r = t.length - 1, s.unclosed = !0; while (o); c = r; do c -= 1, p = t.charCodeAt(c); while (p <= 32); f < c ? (d !== c + 1 ? s.nodes = [{ type: "word", sourceIndex: d, sourceEndIndex: c + 1, value: t.slice(d, c + 1) }] : s.nodes = [], s.unclosed && c + 1 !== r ? (s.after = "", s.nodes.push({ type: "space", sourceIndex: c + 1, sourceEndIndex: r, value: t.slice(c + 1, r) })) : (s.after = t.slice(c + 1, r), s.sourceEndIndex = r)) : (s.after = "", s.nodes = []), d = r + 1, s.sourceEndIndex = s.unclosed ? r : d, p = t.charCodeAt(d), e.push(s) } else x += 1, s.after = "", s.sourceEndIndex = d + 1, e.push(s), w.push(s), e = s.nodes = [], y = s; b = "" } else if (Do === p && x) d += 1, p = t.charCodeAt(d), y.after = S, y.sourceEndIndex += S.length, S = "", x -= 1, w[w.length - 1].sourceEndIndex = d, w.pop(), y = w[x], e = y.nodes; else { r = d; do p === qo && (r += 1), r += 1, p = t.charCodeAt(r); while (r < m && !(p <= 32 || p === In || p === Io || p === Ro || p === Mo || p === zt || p === Po || p === qn && y && y.type === "function" && !0 || p === zt && y.type === "function" && !0 || p === Do && x)); s = t.slice(d, r), Po === p ? b = s : (A2 === s.charCodeAt(0) || _2 === s.charCodeAt(0)) && O2 === s.charCodeAt(1) && E2.test(s.slice(2)) ? e.push({ type: "unicode-range", sourceIndex: d, sourceEndIndex: r, value: s }) : e.push({ type: "word", sourceIndex: d, sourceEndIndex: r, value: s }), d = r } for (d = w.length - 1; d; d -= 1)w[d].unclosed = !0, w[d].sourceEndIndex = t.length; return w[0].nodes } }); var Fh = v((I6, Bh) => { l(); Bh.exports = function i(e, t, r) { var n, a, s, o; for (n = 0, a = e.length; n < a; n += 1)s = e[n], r || (o = t(s, n, e)), o !== !1 && s.type === "function" && Array.isArray(s.nodes) && i(s.nodes, t, r), r && t(s, n, e) } }); var jh = v((q6, $h) => { l(); function Nh(i, e) { var t = i.type, r = i.value, n, a; return e && (a = e(i)) !== void 0 ? a : t === "word" || t === "space" ? r : t === "string" ? (n = i.quote || "", n + r + (i.unclosed ? "" : n)) : t === "comment" ? "/*" + r + (i.unclosed ? "" : "*/") : t === "div" ? (i.before || "") + r + (i.after || "") : Array.isArray(i.nodes) ? (n = Lh(i.nodes, e), t !== "function" ? n : r + "(" + (i.before || "") + n + (i.after || "") + (i.unclosed ? "" : ")")) : r } function Lh(i, e) { var t, r; if (Array.isArray(i)) { for (t = "", r = i.length - 1; ~r; r -= 1)t = Nh(i[r], e) + t; return t } return Nh(i, e) } $h.exports = Lh }); var Vh = v((R6, zh) => { l(); var Rn = "-".charCodeAt(0), Mn = "+".charCodeAt(0), Bo = ".".charCodeAt(0), T2 = "e".charCodeAt(0), P2 = "E".charCodeAt(0); function D2(i) { var e = i.charCodeAt(0), t; if (e === Mn || e === Rn) { if (t = i.charCodeAt(1), t >= 48 && t <= 57) return !0; var r = i.charCodeAt(2); return t === Bo && r >= 48 && r <= 57 } return e === Bo ? (t = i.charCodeAt(1), t >= 48 && t <= 57) : e >= 48 && e <= 57 } zh.exports = function (i) { var e = 0, t = i.length, r, n, a; if (t === 0 || !D2(i)) return !1; for (r = i.charCodeAt(e), (r === Mn || r === Rn) && e++; e < t && (r = i.charCodeAt(e), !(r < 48 || r > 57));)e += 1; if (r = i.charCodeAt(e), n = i.charCodeAt(e + 1), r === Bo && n >= 48 && n <= 57) for (e += 2; e < t && (r = i.charCodeAt(e), !(r < 48 || r > 57));)e += 1; if (r = i.charCodeAt(e), n = i.charCodeAt(e + 1), a = i.charCodeAt(e + 2), (r === T2 || r === P2) && (n >= 48 && n <= 57 || (n === Mn || n === Rn) && a >= 48 && a <= 57)) for (e += n === Mn || n === Rn ? 3 : 2; e < t && (r = i.charCodeAt(e), !(r < 48 || r > 57));)e += 1; return { number: i.slice(0, e), unit: i.slice(e) } } }); var Hh = v((M6, Gh) => { l(); var I2 = Mh(), Uh = Fh(), Wh = jh(); function ft(i) { return this instanceof ft ? (this.nodes = I2(i), this) : new ft(i) } ft.prototype.toString = function () { return Array.isArray(this.nodes) ? Wh(this.nodes) : "" }; ft.prototype.walk = function (i, e) { return Uh(this.nodes, i, e), this }; ft.unit = Vh(); ft.walk = Uh; ft.stringify = Wh; Gh.exports = ft }); function No(i) { return typeof i == "object" && i !== null } function q2(i, e) { let t = Ke(e); do if (t.pop(), (0, ri.default)(i, t) !== void 0) break; while (t.length); return t.length ? t : void 0 } function Vt(i) { return typeof i == "string" ? i : i.reduce((e, t, r) => t.includes(".") ? `${e}[${t}]` : r === 0 ? t : `${e}.${t}`, "") } function Qh(i) { return i.map(e => `'${e}'`).join(", ") } function Jh(i) { return Qh(Object.keys(i)) } function Lo(i, e, t, r = {}) { let n = Array.isArray(e) ? Vt(e) : e.replace(/^['"]+|['"]+$/g, ""), a = Array.isArray(e) ? e : Ke(n), s = (0, ri.default)(i.theme, a, t); if (s === void 0) { let u = `'${n}' does not exist in your theme config.`, c = a.slice(0, -1), f = (0, ri.default)(i.theme, c); if (No(f)) { let d = Object.keys(f).filter(m => Lo(i, [...c, m]).isValid), p = (0, Yh.default)(a[a.length - 1], d); p ? u += ` Did you mean '${Vt([...c, p])}'?` : d.length > 0 && (u += ` '${Vt(c)}' has the following valid keys: ${Qh(d)}`) } else { let d = q2(i.theme, n); if (d) { let p = (0, ri.default)(i.theme, d); No(p) ? u += ` '${Vt(d)}' has the following keys: ${Jh(p)}` : u += ` '${Vt(d)}' is not an object.` } else u += ` Your theme has the following top-level keys: ${Jh(i.theme)}` } return { isValid: !1, error: u } } if (!(typeof s == "string" || typeof s == "number" || typeof s == "function" || s instanceof String || s instanceof Number || Array.isArray(s))) { let u = `'${n}' was found but does not resolve to a string.`; if (No(s)) { let c = Object.keys(s).filter(f => Lo(i, [...a, f]).isValid); c.length && (u += ` Did you mean something like '${Vt([...a, c[0]])}'?`) } return { isValid: !1, error: u } } let [o] = a; return { isValid: !0, value: Ge(o)(s, r) } } function R2(i, e, t) { e = e.map(n => Xh(i, n, t)); let r = [""]; for (let n of e) n.type === "div" && n.value === "," ? r.push("") : r[r.length - 1] += Fo.default.stringify(n); return r } function Xh(i, e, t) { if (e.type === "function" && t[e.value] !== void 0) { let r = R2(i, e.nodes, t); e.type = "word", e.value = t[e.value](i, ...r) } return e } function M2(i, e, t) { return Object.keys(t).some(n => e.includes(`${n}(`)) ? (0, Fo.default)(e).walk(n => { Xh(i, n, t) }).toString() : e } function* F2(i) { i = i.replace(/^['"]+|['"]+$/g, ""); let e = i.match(/^([^\s]+)(?![^\[]*\])(?:\s*\/\s*([^\/\s]+))$/), t; yield [i, void 0], e && (i = e[1], t = e[2], yield [i, t]) } function N2(i, e, t) { let r = Array.from(F2(e)).map(([n, a]) => Object.assign(Lo(i, n, t, { opacityValue: a }), { resolvedPath: n, alpha: a })); return r.find(n => n.isValid) ?? r[0] } function Kh(i) { let e = i.tailwindConfig, t = { theme: (r, n, ...a) => { let { isValid: s, value: o, error: u, alpha: c } = N2(e, n, a.length ? a : void 0); if (!s) { let p = r.parent, m = p?.raws.tailwind?.candidate; if (p && m !== void 0) { i.markInvalidUtilityNode(p), p.remove(), F.warn("invalid-theme-key-in-class", [`The utility \`${m}\` contains an invalid theme value and was not generated.`]); return } throw r.error(u) } let f = Ct(o), d = f !== void 0 && typeof f == "function"; return (c !== void 0 || d) && (c === void 0 && (c = 1), o = De(f, c, f)), o }, screen: (r, n) => { n = n.replace(/^['"]+/g, "").replace(/['"]+$/g, ""); let s = at(e.theme.screens).find(({ name: o }) => o === n); if (!s) throw r.error(`The '${n}' screen does not exist in your theme.`); return st(s) } }; return r => { r.walk(n => { let a = B2[n.type]; a !== void 0 && (n[a] = M2(n, n[a], t)) }) } } var ri, Yh, Fo, B2, Zh = C(() => { l(); ri = K(Ls()), Yh = K(qh()); Hr(); Fo = K(Hh()); hn(); cn(); pi(); or(); cr(); Oe(); B2 = { atrule: "params", decl: "value" } }); function em({ tailwindConfig: { theme: i } }) { return function (e) { e.walkAtRules("screen", t => { let r = t.params, a = at(i.screens).find(({ name: s }) => s === r); if (!a) throw t.error(`No \`${r}\` screen found.`); t.name = "media", t.params = st(a) }) } } var tm = C(() => { l(); hn(); cn() }); function L2(i) { let e = i.filter(o => o.type !== "pseudo" || o.nodes.length > 0 ? !0 : o.value.startsWith("::") || [":before", ":after", ":first-line", ":first-letter"].includes(o.value)).reverse(), t = new Set(["tag", "class", "id", "attribute"]), r = e.findIndex(o => t.has(o.type)); if (r === -1) return e.reverse().join("").trim(); let n = e[r], a = rm[n.type] ? rm[n.type](n) : n; e = e.slice(0, r); let s = e.findIndex(o => o.type === "combinator" && o.value === ">"); return s !== -1 && (e.splice(0, s), e.unshift(Bn.default.universal())), [a, ...e.reverse()].join("").trim() } function j2(i) { return $o.has(i) || $o.set(i, $2.transformSync(i)), $o.get(i) } function jo({ tailwindConfig: i }) { return e => { let t = new Map, r = new Set; if (e.walkAtRules("defaults", n => { if (n.nodes && n.nodes.length > 0) { r.add(n); return } let a = n.params; t.has(a) || t.set(a, new Set), t.get(a).add(n.parent), n.remove() }), Z(i, "optimizeUniversalDefaults")) for (let n of r) { let a = new Map, s = t.get(n.params) ?? []; for (let o of s) for (let u of j2(o.selector)) { let c = u.includes(":-") || u.includes("::-") ? u : "__DEFAULT__", f = a.get(c) ?? new Set; a.set(c, f), f.add(u) } if (Z(i, "optimizeUniversalDefaults")) { if (a.size === 0) { n.remove(); continue } for (let [, o] of a) { let u = V.rule({ source: n.source }); u.selectors = [...o], u.append(n.nodes.map(c => c.clone())), n.before(u) } } n.remove() } else if (r.size) { let n = V.rule({ selectors: ["*", "::before", "::after"] }); for (let s of r) n.append(s.nodes), n.parent || s.before(n), n.source || (n.source = s.source), s.remove(); let a = n.clone({ selectors: ["::backdrop"] }); n.after(a) } } } var Bn, rm, $2, $o, im = C(() => { l(); nt(); Bn = K(Re()); ze(); rm = { id(i) { return Bn.default.attribute({ attribute: "id", operator: "=", value: i.value, quoteMark: '"' }) } }; $2 = (0, Bn.default)(i => i.map(e => { let t = e.split(r => r.type === "combinator" && r.value === " ").pop(); return L2(t) })), $o = new Map }); function zo() { function i(e) { let t = null; e.each(r => { if (!z2.has(r.type)) { t = null; return } if (t === null) { t = r; return } let n = nm[r.type]; r.type === "atrule" && r.name === "font-face" ? t = r : n.every(a => (r[a] ?? "").replace(/\s+/g, " ") === (t[a] ?? "").replace(/\s+/g, " ")) ? (r.nodes && t.append(r.nodes), r.remove()) : t = r }), e.each(r => { r.type === "atrule" && i(r) }) } return e => { i(e) } } var nm, z2, sm = C(() => { l(); nm = { atrule: ["name", "params"], rule: ["selector"] }, z2 = new Set(Object.keys(nm)) }); function Vo() { return i => { i.walkRules(e => { let t = new Map, r = new Set([]), n = new Map; e.walkDecls(a => { if (a.parent === e) { if (t.has(a.prop)) { if (t.get(a.prop).value === a.value) { r.add(t.get(a.prop)), t.set(a.prop, a); return } n.has(a.prop) || n.set(a.prop, new Set), n.get(a.prop).add(t.get(a.prop)), n.get(a.prop).add(a) } t.set(a.prop, a) } }); for (let a of r) a.remove(); for (let a of n.values()) { let s = new Map; for (let o of a) { let u = U2(o.value); u !== null && (s.has(u) || s.set(u, new Set), s.get(u).add(o)) } for (let o of s.values()) { let u = Array.from(o).slice(0, -1); for (let c of u) c.remove() } } }) } } function U2(i) { let e = /^-?\d*.?\d+([\w%]+)?$/g.exec(i); return e ? e[1] ?? V2 : null } var V2, am = C(() => { l(); V2 = Symbol("unitless-number") }); function W2(i) { if (!i.walkAtRules) return; let e = new Set; if (i.walkAtRules("apply", t => { e.add(t.parent) }), e.size !== 0) for (let t of e) { let r = [], n = []; for (let a of t.nodes) a.type === "atrule" && a.name === "apply" ? (n.length > 0 && (r.push(n), n = []), r.push([a])) : n.push(a); if (n.length > 0 && r.push(n), r.length !== 1) { for (let a of [...r].reverse()) { let s = t.clone({ nodes: [] }); s.append(a), t.after(s) } t.remove() } } } function Fn() { return i => { W2(i) } } var om = C(() => { l() }); function G2(i) { return i.type === "root" } function H2(i) { return i.type === "atrule" && i.name === "layer" } function lm(i) { - return (e, t) => { - let r = !1; e.walkAtRules("tailwind", n => { - if (r) return !1; if (n.parent && !(G2(n.parent) || H2(n.parent))) return r = !0, n.warn(t, ["Nested @tailwind rules were detected, but are not supported.", "Consider using a prefix to scope Tailwind's classes: https://tailwindcss.com/docs/configuration#prefix", "Alternatively, use the important selector strategy: https://tailwindcss.com/docs/configuration#selector-strategy"].join(` -`)), !1 - }), e.walkRules(n => { - if (r) return !1; n.walkRules(a => (r = !0, a.warn(t, ["Nested CSS was detected, but CSS nesting has not been configured correctly.", "Please enable a CSS nesting plugin *before* Tailwind in your configuration.", "See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting"].join(` -`)), !1)) - }) - } - } var um = C(() => { l() }); function Nn(i) { return async function (e, t) { let { tailwindDirectives: r, applyDirectives: n } = Co(e); lm()(e, t), Fn()(e, t); let a = i({ tailwindDirectives: r, applyDirectives: n, registerDependency(s) { t.messages.push({ plugin: "tailwindcss", parent: t.opts.from, ...s }) }, createContext(s, o) { return mo(s, o, e) } })(e, t); if (a.tailwindConfig.separator === "-") throw new Error("The '-' character cannot be used as a custom separator in JIT mode due to parsing ambiguity. Please use another character like '_' instead."); _u(a.tailwindConfig), await Oo(a)(e, t), Fn()(e, t), To(a)(e, t), Kh(a)(e, t), em(a)(e, t), jo(a)(e, t), zo(a)(e, t), Vo(a)(e, t) } } var fm = C(() => { l(); mh(); _h(); Ih(); Zh(); tm(); im(); sm(); am(); om(); um(); Xr(); ze() }); function cm(i, e) { let t = null, r = null; return i.walkAtRules("config", n => { if (r = n.source?.input.file ?? e.opts.from ?? null, r === null) throw n.error("The `@config` directive cannot be used without setting `from` in your PostCSS config."); if (t) throw n.error("Only one `@config` directive is allowed per file."); let a = n.params.match(/(['"])(.*?)\1/); if (!a) throw n.error("A path is required when using the `@config` directive."); let s = a[2]; if (ee.isAbsolute(s)) throw n.error("The `@config` directive cannot be used with an absolute path."); if (t = ee.resolve(ee.dirname(r), s), !re.existsSync(t)) throw n.error(`The config file at "${s}" does not exist. Make sure the path is correct and the file exists.`); n.remove() }), t || null } var pm = C(() => { l(); je(); gt() }); var dm = v((vI, Uo) => { - l(); hh(); fm(); ot(); pm(); Uo.exports = function (e) { - return { - postcssPlugin: "tailwindcss", plugins: [Pe.DEBUG && function (t) { - return console.log(` -`), console.time("JIT TOTAL"), t - }, async function (t, r) { e = cm(t, r) ?? e; let n = So(e); if (t.type === "document") { let a = t.nodes.filter(s => s.type === "root"); for (let s of a) s.type === "root" && await Nn(n)(s, r); return } await Nn(n)(t, r) }, !1, Pe.DEBUG && function (t) { - return console.timeEnd("JIT TOTAL"), console.log(` -`), t - }].filter(Boolean) - } - }; Uo.exports.postcss = !0 - }); var mm = v((xI, hm) => { l(); hm.exports = dm() }); var Wo = v((kI, gm) => { l(); gm.exports = () => ["and_chr 114", "and_uc 15.5", "chrome 114", "chrome 113", "chrome 109", "edge 114", "firefox 114", "ios_saf 16.5", "ios_saf 16.4", "ios_saf 16.3", "ios_saf 16.1", "opera 99", "safari 16.5", "samsung 21"] }); var Ln = {}; Ae(Ln, { agents: () => Y2, feature: () => Q2 }); function Q2() { return { status: "cr", title: "CSS Feature Queries", stats: { ie: { "6": "n", "7": "n", "8": "n", "9": "n", "10": "n", "11": "n", "5.5": "n" }, edge: { "12": "y", "13": "y", "14": "y", "15": "y", "16": "y", "17": "y", "18": "y", "79": "y", "80": "y", "81": "y", "83": "y", "84": "y", "85": "y", "86": "y", "87": "y", "88": "y", "89": "y", "90": "y", "91": "y", "92": "y", "93": "y", "94": "y", "95": "y", "96": "y", "97": "y", "98": "y", "99": "y", "100": "y", "101": "y", "102": "y", "103": "y", "104": "y", "105": "y", "106": "y", "107": "y", "108": "y", "109": "y", "110": "y", "111": "y", "112": "y", "113": "y", "114": "y" }, firefox: { "2": "n", "3": "n", "4": "n", "5": "n", "6": "n", "7": "n", "8": "n", "9": "n", "10": "n", "11": "n", "12": "n", "13": "n", "14": "n", "15": "n", "16": "n", "17": "n", "18": "n", "19": "n", "20": "n", "21": "n", "22": "y", "23": "y", "24": "y", "25": "y", "26": "y", "27": "y", "28": "y", "29": "y", "30": "y", "31": "y", "32": "y", "33": "y", "34": "y", "35": "y", "36": "y", "37": "y", "38": "y", "39": "y", "40": "y", "41": "y", "42": "y", "43": "y", "44": "y", "45": "y", "46": "y", "47": "y", "48": "y", "49": "y", "50": "y", "51": "y", "52": "y", "53": "y", "54": "y", "55": "y", "56": "y", "57": "y", "58": "y", "59": "y", "60": "y", "61": "y", "62": "y", "63": "y", "64": "y", "65": "y", "66": "y", "67": "y", "68": "y", "69": "y", "70": "y", "71": "y", "72": "y", "73": "y", "74": "y", "75": "y", "76": "y", "77": "y", "78": "y", "79": "y", "80": "y", "81": "y", "82": "y", "83": "y", "84": "y", "85": "y", "86": "y", "87": "y", "88": "y", "89": "y", "90": "y", "91": "y", "92": "y", "93": "y", "94": "y", "95": "y", "96": "y", "97": "y", "98": "y", "99": "y", "100": "y", "101": "y", "102": "y", "103": "y", "104": "y", "105": "y", "106": "y", "107": "y", "108": "y", "109": "y", "110": "y", "111": "y", "112": "y", "113": "y", "114": "y", "115": "y", "116": "y", "117": "y", "3.5": "n", "3.6": "n" }, chrome: { "4": "n", "5": "n", "6": "n", "7": "n", "8": "n", "9": "n", "10": "n", "11": "n", "12": "n", "13": "n", "14": "n", "15": "n", "16": "n", "17": "n", "18": "n", "19": "n", "20": "n", "21": "n", "22": "n", "23": "n", "24": "n", "25": "n", "26": "n", "27": "n", "28": "y", "29": "y", "30": "y", "31": "y", "32": "y", "33": "y", "34": "y", "35": "y", "36": "y", "37": "y", "38": "y", "39": "y", "40": "y", "41": "y", "42": "y", "43": "y", "44": "y", "45": "y", "46": "y", "47": "y", "48": "y", "49": "y", "50": "y", "51": "y", "52": "y", "53": "y", "54": "y", "55": "y", "56": "y", "57": "y", "58": "y", "59": "y", "60": "y", "61": "y", "62": "y", "63": "y", "64": "y", "65": "y", "66": "y", "67": "y", "68": "y", "69": "y", "70": "y", "71": "y", "72": "y", "73": "y", "74": "y", "75": "y", "76": "y", "77": "y", "78": "y", "79": "y", "80": "y", "81": "y", "83": "y", "84": "y", "85": "y", "86": "y", "87": "y", "88": "y", "89": "y", "90": "y", "91": "y", "92": "y", "93": "y", "94": "y", "95": "y", "96": "y", "97": "y", "98": "y", "99": "y", "100": "y", "101": "y", "102": "y", "103": "y", "104": "y", "105": "y", "106": "y", "107": "y", "108": "y", "109": "y", "110": "y", "111": "y", "112": "y", "113": "y", "114": "y", "115": "y", "116": "y", "117": "y" }, safari: { "4": "n", "5": "n", "6": "n", "7": "n", "8": "n", "9": "y", "10": "y", "11": "y", "12": "y", "13": "y", "14": "y", "15": "y", "17": "y", "9.1": "y", "10.1": "y", "11.1": "y", "12.1": "y", "13.1": "y", "14.1": "y", "15.1": "y", "15.2-15.3": "y", "15.4": "y", "15.5": "y", "15.6": "y", "16.0": "y", "16.1": "y", "16.2": "y", "16.3": "y", "16.4": "y", "16.5": "y", "16.6": "y", TP: "y", "3.1": "n", "3.2": "n", "5.1": "n", "6.1": "n", "7.1": "n" }, opera: { "9": "n", "11": "n", "12": "n", "15": "y", "16": "y", "17": "y", "18": "y", "19": "y", "20": "y", "21": "y", "22": "y", "23": "y", "24": "y", "25": "y", "26": "y", "27": "y", "28": "y", "29": "y", "30": "y", "31": "y", "32": "y", "33": "y", "34": "y", "35": "y", "36": "y", "37": "y", "38": "y", "39": "y", "40": "y", "41": "y", "42": "y", "43": "y", "44": "y", "45": "y", "46": "y", "47": "y", "48": "y", "49": "y", "50": "y", "51": "y", "52": "y", "53": "y", "54": "y", "55": "y", "56": "y", "57": "y", "58": "y", "60": "y", "62": "y", "63": "y", "64": "y", "65": "y", "66": "y", "67": "y", "68": "y", "69": "y", "70": "y", "71": "y", "72": "y", "73": "y", "74": "y", "75": "y", "76": "y", "77": "y", "78": "y", "79": "y", "80": "y", "81": "y", "82": "y", "83": "y", "84": "y", "85": "y", "86": "y", "87": "y", "88": "y", "89": "y", "90": "y", "91": "y", "92": "y", "93": "y", "94": "y", "95": "y", "96": "y", "97": "y", "98": "y", "99": "y", "100": "y", "12.1": "y", "9.5-9.6": "n", "10.0-10.1": "n", "10.5": "n", "10.6": "n", "11.1": "n", "11.5": "n", "11.6": "n" }, ios_saf: { "8": "n", "17": "y", "9.0-9.2": "y", "9.3": "y", "10.0-10.2": "y", "10.3": "y", "11.0-11.2": "y", "11.3-11.4": "y", "12.0-12.1": "y", "12.2-12.5": "y", "13.0-13.1": "y", "13.2": "y", "13.3": "y", "13.4-13.7": "y", "14.0-14.4": "y", "14.5-14.8": "y", "15.0-15.1": "y", "15.2-15.3": "y", "15.4": "y", "15.5": "y", "15.6": "y", "16.0": "y", "16.1": "y", "16.2": "y", "16.3": "y", "16.4": "y", "16.5": "y", "16.6": "y", "3.2": "n", "4.0-4.1": "n", "4.2-4.3": "n", "5.0-5.1": "n", "6.0-6.1": "n", "7.0-7.1": "n", "8.1-8.4": "n" }, op_mini: { all: "y" }, android: { "3": "n", "4": "n", "114": "y", "4.4": "y", "4.4.3-4.4.4": "y", "2.1": "n", "2.2": "n", "2.3": "n", "4.1": "n", "4.2-4.3": "n" }, bb: { "7": "n", "10": "n" }, op_mob: { "10": "n", "11": "n", "12": "n", "73": "y", "11.1": "n", "11.5": "n", "12.1": "n" }, and_chr: { "114": "y" }, and_ff: { "115": "y" }, ie_mob: { "10": "n", "11": "n" }, and_uc: { "15.5": "y" }, samsung: { "4": "y", "20": "y", "21": "y", "5.0-5.4": "y", "6.2-6.4": "y", "7.2-7.4": "y", "8.2": "y", "9.2": "y", "10.1": "y", "11.1-11.2": "y", "12.0": "y", "13.0": "y", "14.0": "y", "15.0": "y", "16.0": "y", "17.0": "y", "18.0": "y", "19.0": "y" }, and_qq: { "13.1": "y" }, baidu: { "13.18": "y" }, kaios: { "2.5": "y", "3.0-3.1": "y" } } } } var Y2, $n = C(() => { l(); Y2 = { ie: { prefix: "ms" }, edge: { prefix: "webkit", prefix_exceptions: { "12": "ms", "13": "ms", "14": "ms", "15": "ms", "16": "ms", "17": "ms", "18": "ms" } }, firefox: { prefix: "moz" }, chrome: { prefix: "webkit" }, safari: { prefix: "webkit" }, opera: { prefix: "webkit", prefix_exceptions: { "9": "o", "11": "o", "12": "o", "9.5-9.6": "o", "10.0-10.1": "o", "10.5": "o", "10.6": "o", "11.1": "o", "11.5": "o", "11.6": "o", "12.1": "o" } }, ios_saf: { prefix: "webkit" }, op_mini: { prefix: "o" }, android: { prefix: "webkit" }, bb: { prefix: "webkit" }, op_mob: { prefix: "o", prefix_exceptions: { "73": "webkit" } }, and_chr: { prefix: "webkit" }, and_ff: { prefix: "moz" }, ie_mob: { prefix: "ms" }, and_uc: { prefix: "webkit", prefix_exceptions: { "15.5": "webkit" } }, samsung: { prefix: "webkit" }, and_qq: { prefix: "webkit" }, baidu: { prefix: "webkit" }, kaios: { prefix: "moz" } } }); var ym = v(() => { l() }); var fe = v((AI, ct) => { l(); var { list: Go } = ge(); ct.exports.error = function (i) { let e = new Error(i); throw e.autoprefixer = !0, e }; ct.exports.uniq = function (i) { return [...new Set(i)] }; ct.exports.removeNote = function (i) { return i.includes(" ") ? i.split(" ")[0] : i }; ct.exports.escapeRegexp = function (i) { return i.replace(/[$()*+-.?[\\\]^{|}]/g, "\\$&") }; ct.exports.regexp = function (i, e = !0) { return e && (i = this.escapeRegexp(i)), new RegExp(`(^|[\\s,(])(${i}($|[\\s(,]))`, "gi") }; ct.exports.editList = function (i, e) { let t = Go.comma(i), r = e(t, []); if (t === r) return i; let n = i.match(/,\s*/); return n = n ? n[0] : ", ", r.join(n) }; ct.exports.splitSelector = function (i) { return Go.comma(i).map(e => Go.space(e).map(t => t.split(/(?=\.|#)/g))) } }); var pt = v((_I, vm) => { l(); var J2 = Wo(), wm = ($n(), Ln).agents, X2 = fe(), bm = class { static prefixes() { if (this.prefixesCache) return this.prefixesCache; this.prefixesCache = []; for (let e in wm) this.prefixesCache.push(`-${wm[e].prefix}-`); return this.prefixesCache = X2.uniq(this.prefixesCache).sort((e, t) => t.length - e.length), this.prefixesCache } static withPrefix(e) { return this.prefixesRegexp || (this.prefixesRegexp = new RegExp(this.prefixes().join("|"))), this.prefixesRegexp.test(e) } constructor(e, t, r, n) { this.data = e, this.options = r || {}, this.browserslistOpts = n || {}, this.selected = this.parse(t) } parse(e) { let t = {}; for (let r in this.browserslistOpts) t[r] = this.browserslistOpts[r]; return t.path = this.options.from, J2(e, t) } prefix(e) { let [t, r] = e.split(" "), n = this.data[t], a = n.prefix_exceptions && n.prefix_exceptions[r]; return a || (a = n.prefix), `-${a}-` } isSelected(e) { return this.selected.includes(e) } }; vm.exports = bm }); var ii = v((OI, xm) => { l(); xm.exports = { prefix(i) { let e = i.match(/^(-\w+-)/); return e ? e[0] : "" }, unprefixed(i) { return i.replace(/^-\w+-/, "") } } }); var Ut = v((EI, Sm) => { l(); var K2 = pt(), km = ii(), Z2 = fe(); function Ho(i, e) { let t = new i.constructor; for (let r of Object.keys(i || {})) { let n = i[r]; r === "parent" && typeof n == "object" ? e && (t[r] = e) : r === "source" || r === null ? t[r] = n : Array.isArray(n) ? t[r] = n.map(a => Ho(a, t)) : r !== "_autoprefixerPrefix" && r !== "_autoprefixerValues" && r !== "proxyCache" && (typeof n == "object" && n !== null && (n = Ho(n, t)), t[r] = n) } return t } var jn = class { static hack(e) { return this.hacks || (this.hacks = {}), e.names.map(t => (this.hacks[t] = e, this.hacks[t])) } static load(e, t, r) { let n = this.hacks && this.hacks[e]; return n ? new n(e, t, r) : new this(e, t, r) } static clone(e, t) { let r = Ho(e); for (let n in t) r[n] = t[n]; return r } constructor(e, t, r) { this.prefixes = t, this.name = e, this.all = r } parentPrefix(e) { let t; return typeof e._autoprefixerPrefix != "undefined" ? t = e._autoprefixerPrefix : e.type === "decl" && e.prop[0] === "-" ? t = km.prefix(e.prop) : e.type === "root" ? t = !1 : e.type === "rule" && e.selector.includes(":-") && /:(-\w+-)/.test(e.selector) ? t = e.selector.match(/:(-\w+-)/)[1] : e.type === "atrule" && e.name[0] === "-" ? t = km.prefix(e.name) : t = this.parentPrefix(e.parent), K2.prefixes().includes(t) || (t = !1), e._autoprefixerPrefix = t, e._autoprefixerPrefix } process(e, t) { if (!this.check(e)) return; let r = this.parentPrefix(e), n = this.prefixes.filter(s => !r || r === Z2.removeNote(s)), a = []; for (let s of n) this.add(e, s, a.concat([s]), t) && a.push(s); return a } clone(e, t) { return jn.clone(e, t) } }; Sm.exports = jn }); var R = v((TI, _m) => { - l(); var eA = Ut(), tA = pt(), Cm = fe(), Am = class extends eA { - check() { return !0 } prefixed(e, t) { return t + e } normalize(e) { return e } otherPrefixes(e, t) { for (let r of tA.prefixes()) if (r !== t && e.includes(r)) return !0; return !1 } set(e, t) { return e.prop = this.prefixed(e.prop, t), e } needCascade(e) { - return e._autoprefixerCascade || (e._autoprefixerCascade = this.all.options.cascade !== !1 && e.raw("before").includes(` -`)), e._autoprefixerCascade - } maxPrefixed(e, t) { if (t._autoprefixerMax) return t._autoprefixerMax; let r = 0; for (let n of e) n = Cm.removeNote(n), n.length > r && (r = n.length); return t._autoprefixerMax = r, t._autoprefixerMax } calcBefore(e, t, r = "") { let a = this.maxPrefixed(e, t) - Cm.removeNote(r).length, s = t.raw("before"); return a > 0 && (s += Array(a).fill(" ").join("")), s } restoreBefore(e) { - let t = e.raw("before").split(` -`), r = t[t.length - 1]; this.all.group(e).up(n => { - let a = n.raw("before").split(` -`), s = a[a.length - 1]; s.length < r.length && (r = s) - }), t[t.length - 1] = r, e.raws.before = t.join(` -`) - } insert(e, t, r) { let n = this.set(this.clone(e), t); if (!(!n || e.parent.some(s => s.prop === n.prop && s.value === n.value))) return this.needCascade(e) && (n.raws.before = this.calcBefore(r, e, t)), e.parent.insertBefore(e, n) } isAlready(e, t) { let r = this.all.group(e).up(n => n.prop === t); return r || (r = this.all.group(e).down(n => n.prop === t)), r } add(e, t, r, n) { let a = this.prefixed(e.prop, t); if (!(this.isAlready(e, a) || this.otherPrefixes(e.value, t))) return this.insert(e, t, r, n) } process(e, t) { if (!this.needCascade(e)) { super.process(e, t); return } let r = super.process(e, t); !r || !r.length || (this.restoreBefore(e), e.raws.before = this.calcBefore(r, e)) } old(e, t) { return [this.prefixed(e, t)] } - }; _m.exports = Am - }); var Em = v((PI, Om) => { l(); Om.exports = function i(e) { return { mul: t => new i(e * t), div: t => new i(e / t), simplify: () => new i(e), toString: () => e.toString() } } }); var Dm = v((DI, Pm) => { l(); var rA = Em(), iA = Ut(), Yo = fe(), nA = /(min|max)-resolution\s*:\s*\d*\.?\d+(dppx|dpcm|dpi|x)/gi, sA = /(min|max)-resolution(\s*:\s*)(\d*\.?\d+)(dppx|dpcm|dpi|x)/i, Tm = class extends iA { prefixName(e, t) { return e === "-moz-" ? t + "--moz-device-pixel-ratio" : e + t + "-device-pixel-ratio" } prefixQuery(e, t, r, n, a) { return n = new rA(n), a === "dpi" ? n = n.div(96) : a === "dpcm" && (n = n.mul(2.54).div(96)), n = n.simplify(), e === "-o-" && (n = n.n + "/" + n.d), this.prefixName(e, t) + r + n } clean(e) { if (!this.bad) { this.bad = []; for (let t of this.prefixes) this.bad.push(this.prefixName(t, "min")), this.bad.push(this.prefixName(t, "max")) } e.params = Yo.editList(e.params, t => t.filter(r => this.bad.every(n => !r.includes(n)))) } process(e) { let t = this.parentPrefix(e), r = t ? [t] : this.prefixes; e.params = Yo.editList(e.params, (n, a) => { for (let s of n) { if (!s.includes("min-resolution") && !s.includes("max-resolution")) { a.push(s); continue } for (let o of r) { let u = s.replace(nA, c => { let f = c.match(sA); return this.prefixQuery(o, f[1], f[2], f[3], f[4]) }); a.push(u) } a.push(s) } return Yo.uniq(a) }) } }; Pm.exports = Tm }); var qm = v((II, Im) => { l(); var Qo = "(".charCodeAt(0), Jo = ")".charCodeAt(0), zn = "'".charCodeAt(0), Xo = '"'.charCodeAt(0), Ko = "\\".charCodeAt(0), Wt = "/".charCodeAt(0), Zo = ",".charCodeAt(0), el = ":".charCodeAt(0), Vn = "*".charCodeAt(0), aA = "u".charCodeAt(0), oA = "U".charCodeAt(0), lA = "+".charCodeAt(0), uA = /^[a-f0-9?-]+$/i; Im.exports = function (i) { for (var e = [], t = i, r, n, a, s, o, u, c, f, d = 0, p = t.charCodeAt(d), m = t.length, w = [{ nodes: e }], x = 0, y, b = "", k = "", S = ""; d < m;)if (p <= 32) { r = d; do r += 1, p = t.charCodeAt(r); while (p <= 32); s = t.slice(d, r), a = e[e.length - 1], p === Jo && x ? S = s : a && a.type === "div" ? (a.after = s, a.sourceEndIndex += s.length) : p === Zo || p === el || p === Wt && t.charCodeAt(r + 1) !== Vn && (!y || y && y.type === "function" && y.value !== "calc") ? k = s : e.push({ type: "space", sourceIndex: d, sourceEndIndex: r, value: s }), d = r } else if (p === zn || p === Xo) { r = d, n = p === zn ? "'" : '"', s = { type: "string", sourceIndex: d, quote: n }; do if (o = !1, r = t.indexOf(n, r + 1), ~r) for (u = r; t.charCodeAt(u - 1) === Ko;)u -= 1, o = !o; else t += n, r = t.length - 1, s.unclosed = !0; while (o); s.value = t.slice(d + 1, r), s.sourceEndIndex = s.unclosed ? r : r + 1, e.push(s), d = r + 1, p = t.charCodeAt(d) } else if (p === Wt && t.charCodeAt(d + 1) === Vn) r = t.indexOf("*/", d), s = { type: "comment", sourceIndex: d, sourceEndIndex: r + 2 }, r === -1 && (s.unclosed = !0, r = t.length, s.sourceEndIndex = r), s.value = t.slice(d + 2, r), e.push(s), d = r + 2, p = t.charCodeAt(d); else if ((p === Wt || p === Vn) && y && y.type === "function" && y.value === "calc") s = t[d], e.push({ type: "word", sourceIndex: d - k.length, sourceEndIndex: d + s.length, value: s }), d += 1, p = t.charCodeAt(d); else if (p === Wt || p === Zo || p === el) s = t[d], e.push({ type: "div", sourceIndex: d - k.length, sourceEndIndex: d + s.length, value: s, before: k, after: "" }), k = "", d += 1, p = t.charCodeAt(d); else if (Qo === p) { r = d; do r += 1, p = t.charCodeAt(r); while (p <= 32); if (f = d, s = { type: "function", sourceIndex: d - b.length, value: b, before: t.slice(f + 1, r) }, d = r, b === "url" && p !== zn && p !== Xo) { r -= 1; do if (o = !1, r = t.indexOf(")", r + 1), ~r) for (u = r; t.charCodeAt(u - 1) === Ko;)u -= 1, o = !o; else t += ")", r = t.length - 1, s.unclosed = !0; while (o); c = r; do c -= 1, p = t.charCodeAt(c); while (p <= 32); f < c ? (d !== c + 1 ? s.nodes = [{ type: "word", sourceIndex: d, sourceEndIndex: c + 1, value: t.slice(d, c + 1) }] : s.nodes = [], s.unclosed && c + 1 !== r ? (s.after = "", s.nodes.push({ type: "space", sourceIndex: c + 1, sourceEndIndex: r, value: t.slice(c + 1, r) })) : (s.after = t.slice(c + 1, r), s.sourceEndIndex = r)) : (s.after = "", s.nodes = []), d = r + 1, s.sourceEndIndex = s.unclosed ? r : d, p = t.charCodeAt(d), e.push(s) } else x += 1, s.after = "", s.sourceEndIndex = d + 1, e.push(s), w.push(s), e = s.nodes = [], y = s; b = "" } else if (Jo === p && x) d += 1, p = t.charCodeAt(d), y.after = S, y.sourceEndIndex += S.length, S = "", x -= 1, w[w.length - 1].sourceEndIndex = d, w.pop(), y = w[x], e = y.nodes; else { r = d; do p === Ko && (r += 1), r += 1, p = t.charCodeAt(r); while (r < m && !(p <= 32 || p === zn || p === Xo || p === Zo || p === el || p === Wt || p === Qo || p === Vn && y && y.type === "function" && y.value === "calc" || p === Wt && y.type === "function" && y.value === "calc" || p === Jo && x)); s = t.slice(d, r), Qo === p ? b = s : (aA === s.charCodeAt(0) || oA === s.charCodeAt(0)) && lA === s.charCodeAt(1) && uA.test(s.slice(2)) ? e.push({ type: "unicode-range", sourceIndex: d, sourceEndIndex: r, value: s }) : e.push({ type: "word", sourceIndex: d, sourceEndIndex: r, value: s }), d = r } for (d = w.length - 1; d; d -= 1)w[d].unclosed = !0, w[d].sourceEndIndex = t.length; return w[0].nodes } }); var Mm = v((qI, Rm) => { l(); Rm.exports = function i(e, t, r) { var n, a, s, o; for (n = 0, a = e.length; n < a; n += 1)s = e[n], r || (o = t(s, n, e)), o !== !1 && s.type === "function" && Array.isArray(s.nodes) && i(s.nodes, t, r), r && t(s, n, e) } }); var Lm = v((RI, Nm) => { l(); function Bm(i, e) { var t = i.type, r = i.value, n, a; return e && (a = e(i)) !== void 0 ? a : t === "word" || t === "space" ? r : t === "string" ? (n = i.quote || "", n + r + (i.unclosed ? "" : n)) : t === "comment" ? "/*" + r + (i.unclosed ? "" : "*/") : t === "div" ? (i.before || "") + r + (i.after || "") : Array.isArray(i.nodes) ? (n = Fm(i.nodes, e), t !== "function" ? n : r + "(" + (i.before || "") + n + (i.after || "") + (i.unclosed ? "" : ")")) : r } function Fm(i, e) { var t, r; if (Array.isArray(i)) { for (t = "", r = i.length - 1; ~r; r -= 1)t = Bm(i[r], e) + t; return t } return Bm(i, e) } Nm.exports = Fm }); var jm = v((MI, $m) => { l(); var Un = "-".charCodeAt(0), Wn = "+".charCodeAt(0), tl = ".".charCodeAt(0), fA = "e".charCodeAt(0), cA = "E".charCodeAt(0); function pA(i) { var e = i.charCodeAt(0), t; if (e === Wn || e === Un) { if (t = i.charCodeAt(1), t >= 48 && t <= 57) return !0; var r = i.charCodeAt(2); return t === tl && r >= 48 && r <= 57 } return e === tl ? (t = i.charCodeAt(1), t >= 48 && t <= 57) : e >= 48 && e <= 57 } $m.exports = function (i) { var e = 0, t = i.length, r, n, a; if (t === 0 || !pA(i)) return !1; for (r = i.charCodeAt(e), (r === Wn || r === Un) && e++; e < t && (r = i.charCodeAt(e), !(r < 48 || r > 57));)e += 1; if (r = i.charCodeAt(e), n = i.charCodeAt(e + 1), r === tl && n >= 48 && n <= 57) for (e += 2; e < t && (r = i.charCodeAt(e), !(r < 48 || r > 57));)e += 1; if (r = i.charCodeAt(e), n = i.charCodeAt(e + 1), a = i.charCodeAt(e + 2), (r === fA || r === cA) && (n >= 48 && n <= 57 || (n === Wn || n === Un) && a >= 48 && a <= 57)) for (e += n === Wn || n === Un ? 3 : 2; e < t && (r = i.charCodeAt(e), !(r < 48 || r > 57));)e += 1; return { number: i.slice(0, e), unit: i.slice(e) } } }); var Gn = v((BI, Um) => { l(); var dA = qm(), zm = Mm(), Vm = Lm(); function dt(i) { return this instanceof dt ? (this.nodes = dA(i), this) : new dt(i) } dt.prototype.toString = function () { return Array.isArray(this.nodes) ? Vm(this.nodes) : "" }; dt.prototype.walk = function (i, e) { return zm(this.nodes, i, e), this }; dt.unit = jm(); dt.walk = zm; dt.stringify = Vm; Um.exports = dt }); var Qm = v((FI, Ym) => { l(); var { list: hA } = ge(), Wm = Gn(), mA = pt(), Gm = ii(), Hm = class { constructor(e) { this.props = ["transition", "transition-property"], this.prefixes = e } add(e, t) { let r, n, a = this.prefixes.add[e.prop], s = this.ruleVendorPrefixes(e), o = s || a && a.prefixes || [], u = this.parse(e.value), c = u.map(m => this.findProp(m)), f = []; if (c.some(m => m[0] === "-")) return; for (let m of u) { if (n = this.findProp(m), n[0] === "-") continue; let w = this.prefixes.add[n]; if (!(!w || !w.prefixes)) for (r of w.prefixes) { if (s && !s.some(y => r.includes(y))) continue; let x = this.prefixes.prefixed(n, r); x !== "-ms-transform" && !c.includes(x) && (this.disabled(n, r) || f.push(this.clone(n, x, m))) } } u = u.concat(f); let d = this.stringify(u), p = this.stringify(this.cleanFromUnprefixed(u, "-webkit-")); if (o.includes("-webkit-") && this.cloneBefore(e, `-webkit-${e.prop}`, p), this.cloneBefore(e, e.prop, p), o.includes("-o-")) { let m = this.stringify(this.cleanFromUnprefixed(u, "-o-")); this.cloneBefore(e, `-o-${e.prop}`, m) } for (r of o) if (r !== "-webkit-" && r !== "-o-") { let m = this.stringify(this.cleanOtherPrefixes(u, r)); this.cloneBefore(e, r + e.prop, m) } d !== e.value && !this.already(e, e.prop, d) && (this.checkForWarning(t, e), e.cloneBefore(), e.value = d) } findProp(e) { let t = e[0].value; if (/^\d/.test(t)) { for (let [r, n] of e.entries()) if (r !== 0 && n.type === "word") return n.value } return t } already(e, t, r) { return e.parent.some(n => n.prop === t && n.value === r) } cloneBefore(e, t, r) { this.already(e, t, r) || e.cloneBefore({ prop: t, value: r }) } checkForWarning(e, t) { if (t.prop !== "transition-property") return; let r = !1, n = !1; t.parent.each(a => { if (a.type !== "decl" || a.prop.indexOf("transition-") !== 0) return; let s = hA.comma(a.value); if (a.prop === "transition-property") { s.forEach(o => { let u = this.prefixes.add[o]; u && u.prefixes && u.prefixes.length > 0 && (r = !0) }); return } return n = n || s.length > 1, !1 }), r && n && t.warn(e, "Replace transition-property to transition, because Autoprefixer could not support any cases of transition-property and other transition-*") } remove(e) { let t = this.parse(e.value); t = t.filter(s => { let o = this.prefixes.remove[this.findProp(s)]; return !o || !o.remove }); let r = this.stringify(t); if (e.value === r) return; if (t.length === 0) { e.remove(); return } let n = e.parent.some(s => s.prop === e.prop && s.value === r), a = e.parent.some(s => s !== e && s.prop === e.prop && s.value.length > r.length); if (n || a) { e.remove(); return } e.value = r } parse(e) { let t = Wm(e), r = [], n = []; for (let a of t.nodes) n.push(a), a.type === "div" && a.value === "," && (r.push(n), n = []); return r.push(n), r.filter(a => a.length > 0) } stringify(e) { if (e.length === 0) return ""; let t = []; for (let r of e) r[r.length - 1].type !== "div" && r.push(this.div(e)), t = t.concat(r); return t[0].type === "div" && (t = t.slice(1)), t[t.length - 1].type === "div" && (t = t.slice(0, -2 + 1 || void 0)), Wm.stringify({ nodes: t }) } clone(e, t, r) { let n = [], a = !1; for (let s of r) !a && s.type === "word" && s.value === e ? (n.push({ type: "word", value: t }), a = !0) : n.push(s); return n } div(e) { for (let t of e) for (let r of t) if (r.type === "div" && r.value === ",") return r; return { type: "div", value: ",", after: " " } } cleanOtherPrefixes(e, t) { return e.filter(r => { let n = Gm.prefix(this.findProp(r)); return n === "" || n === t }) } cleanFromUnprefixed(e, t) { let r = e.map(a => this.findProp(a)).filter(a => a.slice(0, t.length) === t).map(a => this.prefixes.unprefixed(a)), n = []; for (let a of e) { let s = this.findProp(a), o = Gm.prefix(s); !r.includes(s) && (o === t || o === "") && n.push(a) } return n } disabled(e, t) { let r = ["order", "justify-content", "align-self", "align-content"]; if (e.includes("flex") || r.includes(e)) { if (this.prefixes.options.flexbox === !1) return !0; if (this.prefixes.options.flexbox === "no-2009") return t.includes("2009") } } ruleVendorPrefixes(e) { let { parent: t } = e; if (t.type !== "rule") return !1; if (!t.selector.includes(":-")) return !1; let r = mA.prefixes().filter(n => t.selector.includes(":" + n)); return r.length > 0 ? r : !1 } }; Ym.exports = Hm }); var Gt = v((NI, Xm) => { l(); var gA = fe(), Jm = class { constructor(e, t, r, n) { this.unprefixed = e, this.prefixed = t, this.string = r || t, this.regexp = n || gA.regexp(t) } check(e) { return e.includes(this.string) ? !!e.match(this.regexp) : !1 } }; Xm.exports = Jm }); var ke = v((LI, Zm) => { l(); var yA = Ut(), wA = Gt(), bA = ii(), vA = fe(), Km = class extends yA { static save(e, t) { let r = t.prop, n = []; for (let a in t._autoprefixerValues) { let s = t._autoprefixerValues[a]; if (s === t.value) continue; let o, u = bA.prefix(r); if (u === "-pie-") continue; if (u === a) { o = t.value = s, n.push(o); continue } let c = e.prefixed(r, a), f = t.parent; if (!f.every(w => w.prop !== c)) { n.push(o); continue } let d = s.replace(/\s+/, " "); if (f.some(w => w.prop === t.prop && w.value.replace(/\s+/, " ") === d)) { n.push(o); continue } let m = this.clone(t, { value: s }); o = t.parent.insertBefore(t, m), n.push(o) } return n } check(e) { let t = e.value; return t.includes(this.name) ? !!t.match(this.regexp()) : !1 } regexp() { return this.regexpCache || (this.regexpCache = vA.regexp(this.name)) } replace(e, t) { return e.replace(this.regexp(), `$1${t}$2`) } value(e) { return e.raws.value && e.raws.value.value === e.value ? e.raws.value.raw : e.value } add(e, t) { e._autoprefixerValues || (e._autoprefixerValues = {}); let r = e._autoprefixerValues[t] || this.value(e), n; do if (n = r, r = this.replace(r, t), r === !1) return; while (r !== n); e._autoprefixerValues[t] = r } old(e) { return new wA(this.name, e + this.name) } }; Zm.exports = Km }); var ht = v(($I, eg) => { l(); eg.exports = {} }); var il = v((jI, ig) => { - l(); var tg = Gn(), xA = ke(), kA = ht().insertAreas, SA = /(^|[^-])linear-gradient\(\s*(top|left|right|bottom)/i, CA = /(^|[^-])radial-gradient\(\s*\d+(\w*|%)\s+\d+(\w*|%)\s*,/i, AA = /(!\s*)?autoprefixer:\s*ignore\s+next/i, _A = /(!\s*)?autoprefixer\s*grid:\s*(on|off|(no-)?autoplace)/i, OA = ["width", "height", "min-width", "max-width", "min-height", "max-height", "inline-size", "min-inline-size", "max-inline-size", "block-size", "min-block-size", "max-block-size"]; function rl(i) { return i.parent.some(e => e.prop === "grid-template" || e.prop === "grid-template-areas") } function EA(i) { let e = i.parent.some(r => r.prop === "grid-template-rows"), t = i.parent.some(r => r.prop === "grid-template-columns"); return e && t } var rg = class { - constructor(e) { this.prefixes = e } add(e, t) { let r = this.prefixes.add["@resolution"], n = this.prefixes.add["@keyframes"], a = this.prefixes.add["@viewport"], s = this.prefixes.add["@supports"]; e.walkAtRules(f => { if (f.name === "keyframes") { if (!this.disabled(f, t)) return n && n.process(f) } else if (f.name === "viewport") { if (!this.disabled(f, t)) return a && a.process(f) } else if (f.name === "supports") { if (this.prefixes.options.supports !== !1 && !this.disabled(f, t)) return s.process(f) } else if (f.name === "media" && f.params.includes("-resolution") && !this.disabled(f, t)) return r && r.process(f) }), e.walkRules(f => { if (!this.disabled(f, t)) return this.prefixes.add.selectors.map(d => d.process(f, t)) }); function o(f) { return f.parent.nodes.some(d => { if (d.type !== "decl") return !1; let p = d.prop === "display" && /(inline-)?grid/.test(d.value), m = d.prop.startsWith("grid-template"), w = /^grid-([A-z]+-)?gap/.test(d.prop); return p || m || w }) } function u(f) { return f.parent.some(d => d.prop === "display" && /(inline-)?flex/.test(d.value)) } let c = this.gridStatus(e, t) && this.prefixes.add["grid-area"] && this.prefixes.add["grid-area"].prefixes; return e.walkDecls(f => { if (this.disabledDecl(f, t)) return; let d = f.parent, p = f.prop, m = f.value; if (p === "grid-row-span") { t.warn("grid-row-span is not part of final Grid Layout. Use grid-row.", { node: f }); return } else if (p === "grid-column-span") { t.warn("grid-column-span is not part of final Grid Layout. Use grid-column.", { node: f }); return } else if (p === "display" && m === "box") { t.warn("You should write display: flex by final spec instead of display: box", { node: f }); return } else if (p === "text-emphasis-position") (m === "under" || m === "over") && t.warn("You should use 2 values for text-emphasis-position For example, `under left` instead of just `under`.", { node: f }); else if (/^(align|justify|place)-(items|content)$/.test(p) && u(f)) (m === "start" || m === "end") && t.warn(`${m} value has mixed support, consider using flex-${m} instead`, { node: f }); else if (p === "text-decoration-skip" && m === "ink") t.warn("Replace text-decoration-skip: ink to text-decoration-skip-ink: auto, because spec had been changed", { node: f }); else { if (c && this.gridStatus(f, t)) if (f.value === "subgrid" && t.warn("IE does not support subgrid", { node: f }), /^(align|justify|place)-items$/.test(p) && o(f)) { let x = p.replace("-items", "-self"); t.warn(`IE does not support ${p} on grid containers. Try using ${x} on child elements instead: ${f.parent.selector} > * { ${x}: ${f.value} }`, { node: f }) } else if (/^(align|justify|place)-content$/.test(p) && o(f)) t.warn(`IE does not support ${f.prop} on grid containers`, { node: f }); else if (p === "display" && f.value === "contents") { t.warn("Please do not use display: contents; if you have grid setting enabled", { node: f }); return } else if (f.prop === "grid-gap") { let x = this.gridStatus(f, t); x === "autoplace" && !EA(f) && !rl(f) ? t.warn("grid-gap only works if grid-template(-areas) is being used or both rows and columns have been declared and cells have not been manually placed inside the explicit grid", { node: f }) : (x === !0 || x === "no-autoplace") && !rl(f) && t.warn("grid-gap only works if grid-template(-areas) is being used", { node: f }) } else if (p === "grid-auto-columns") { t.warn("grid-auto-columns is not supported by IE", { node: f }); return } else if (p === "grid-auto-rows") { t.warn("grid-auto-rows is not supported by IE", { node: f }); return } else if (p === "grid-auto-flow") { let x = d.some(b => b.prop === "grid-template-rows"), y = d.some(b => b.prop === "grid-template-columns"); rl(f) ? t.warn("grid-auto-flow is not supported by IE", { node: f }) : m.includes("dense") ? t.warn("grid-auto-flow: dense is not supported by IE", { node: f }) : !x && !y && t.warn("grid-auto-flow works only if grid-template-rows and grid-template-columns are present in the same rule", { node: f }); return } else if (m.includes("auto-fit")) { t.warn("auto-fit value is not supported by IE", { node: f, word: "auto-fit" }); return } else if (m.includes("auto-fill")) { t.warn("auto-fill value is not supported by IE", { node: f, word: "auto-fill" }); return } else p.startsWith("grid-template") && m.includes("[") && t.warn("Autoprefixer currently does not support line names. Try using grid-template-areas instead.", { node: f, word: "[" }); if (m.includes("radial-gradient")) if (CA.test(f.value)) t.warn("Gradient has outdated direction syntax. New syntax is like `closest-side at 0 0` instead of `0 0, closest-side`.", { node: f }); else { let x = tg(m); for (let y of x.nodes) if (y.type === "function" && y.value === "radial-gradient") for (let b of y.nodes) b.type === "word" && (b.value === "cover" ? t.warn("Gradient has outdated direction syntax. Replace `cover` to `farthest-corner`.", { node: f }) : b.value === "contain" && t.warn("Gradient has outdated direction syntax. Replace `contain` to `closest-side`.", { node: f })) } m.includes("linear-gradient") && SA.test(m) && t.warn("Gradient has outdated direction syntax. New syntax is like `to left` instead of `right`.", { node: f }) } OA.includes(f.prop) && (f.value.includes("-fill-available") || (f.value.includes("fill-available") ? t.warn("Replace fill-available to stretch, because spec had been changed", { node: f }) : f.value.includes("fill") && tg(m).nodes.some(y => y.type === "word" && y.value === "fill") && t.warn("Replace fill to stretch, because spec had been changed", { node: f }))); let w; if (f.prop === "transition" || f.prop === "transition-property") return this.prefixes.transition.add(f, t); if (f.prop === "align-self") { if (this.displayType(f) !== "grid" && this.prefixes.options.flexbox !== !1 && (w = this.prefixes.add["align-self"], w && w.prefixes && w.process(f)), this.gridStatus(f, t) !== !1 && (w = this.prefixes.add["grid-row-align"], w && w.prefixes)) return w.process(f, t) } else if (f.prop === "justify-self") { if (this.gridStatus(f, t) !== !1 && (w = this.prefixes.add["grid-column-align"], w && w.prefixes)) return w.process(f, t) } else if (f.prop === "place-self") { if (w = this.prefixes.add["place-self"], w && w.prefixes && this.gridStatus(f, t) !== !1) return w.process(f, t) } else if (w = this.prefixes.add[f.prop], w && w.prefixes) return w.process(f, t) }), this.gridStatus(e, t) && kA(e, this.disabled), e.walkDecls(f => { if (this.disabledValue(f, t)) return; let d = this.prefixes.unprefixed(f.prop), p = this.prefixes.values("add", d); if (Array.isArray(p)) for (let m of p) m.process && m.process(f, t); xA.save(this.prefixes, f) }) } remove(e, t) { - let r = this.prefixes.remove["@resolution"]; e.walkAtRules((n, a) => { this.prefixes.remove[`@${n.name}`] ? this.disabled(n, t) || n.parent.removeChild(a) : n.name === "media" && n.params.includes("-resolution") && r && r.clean(n) }); for (let n of this.prefixes.remove.selectors) e.walkRules((a, s) => { n.check(a) && (this.disabled(a, t) || a.parent.removeChild(s)) }); return e.walkDecls((n, a) => { - if (this.disabled(n, t)) return; let s = n.parent, o = this.prefixes.unprefixed(n.prop); if ((n.prop === "transition" || n.prop === "transition-property") && this.prefixes.transition.remove(n), this.prefixes.remove[n.prop] && this.prefixes.remove[n.prop].remove) { - let u = this.prefixes.group(n).down(c => this.prefixes.normalize(c.prop) === o); if (o === "flex-flow" && (u = !0), n.prop === "-webkit-box-orient") { let c = { "flex-direction": !0, "flex-flow": !0 }; if (!n.parent.some(f => c[f.prop])) return } if (u && !this.withHackValue(n)) { - n.raw("before").includes(` -`) && this.reduceSpaces(n), s.removeChild(a); return - } - } for (let u of this.prefixes.values("remove", o)) { if (!u.check || !u.check(n.value)) continue; if (o = u.unprefixed, this.prefixes.group(n).down(f => f.value.includes(o))) { s.removeChild(a); return } } - }) - } withHackValue(e) { return e.prop === "-webkit-background-clip" && e.value === "text" } disabledValue(e, t) { return this.gridStatus(e, t) === !1 && e.type === "decl" && e.prop === "display" && e.value.includes("grid") || this.prefixes.options.flexbox === !1 && e.type === "decl" && e.prop === "display" && e.value.includes("flex") || e.type === "decl" && e.prop === "content" ? !0 : this.disabled(e, t) } disabledDecl(e, t) { if (this.gridStatus(e, t) === !1 && e.type === "decl" && (e.prop.includes("grid") || e.prop === "justify-items")) return !0; if (this.prefixes.options.flexbox === !1 && e.type === "decl") { let r = ["order", "justify-content", "align-items", "align-content"]; if (e.prop.includes("flex") || r.includes(e.prop)) return !0 } return this.disabled(e, t) } disabled(e, t) { if (!e) return !1; if (e._autoprefixerDisabled !== void 0) return e._autoprefixerDisabled; if (e.parent) { let n = e.prev(); if (n && n.type === "comment" && AA.test(n.text)) return e._autoprefixerDisabled = !0, e._autoprefixerSelfDisabled = !0, !0 } let r = null; if (e.nodes) { let n; e.each(a => { a.type === "comment" && /(!\s*)?autoprefixer:\s*(off|on)/i.test(a.text) && (typeof n != "undefined" ? t.warn("Second Autoprefixer control comment was ignored. Autoprefixer applies control comment to whole block, not to next rules.", { node: a }) : n = /on/i.test(a.text)) }), n !== void 0 && (r = !n) } if (!e.nodes || r === null) if (e.parent) { let n = this.disabled(e.parent, t); e.parent._autoprefixerSelfDisabled === !0 ? r = !1 : r = n } else r = !1; return e._autoprefixerDisabled = r, r } reduceSpaces(e) { - let t = !1; if (this.prefixes.group(e).up(() => (t = !0, !0)), t) return; let r = e.raw("before").split(` -`), n = r[r.length - 1].length, a = !1; this.prefixes.group(e).down(s => { - r = s.raw("before").split(` -`); let o = r.length - 1; r[o].length > n && (a === !1 && (a = r[o].length - n), r[o] = r[o].slice(0, -a), s.raws.before = r.join(` -`)) - }) - } displayType(e) { for (let t of e.parent.nodes) if (t.prop === "display") { if (t.value.includes("flex")) return "flex"; if (t.value.includes("grid")) return "grid" } return !1 } gridStatus(e, t) { if (!e) return !1; if (e._autoprefixerGridStatus !== void 0) return e._autoprefixerGridStatus; let r = null; if (e.nodes) { let n; e.each(a => { if (a.type === "comment" && _A.test(a.text)) { let s = /:\s*autoplace/i.test(a.text), o = /no-autoplace/i.test(a.text); typeof n != "undefined" ? t.warn("Second Autoprefixer grid control comment was ignored. Autoprefixer applies control comments to the whole block, not to the next rules.", { node: a }) : s ? n = "autoplace" : o ? n = !0 : n = /on/i.test(a.text) } }), n !== void 0 && (r = n) } if (e.type === "atrule" && e.name === "supports") { let n = e.params; n.includes("grid") && n.includes("auto") && (r = !1) } if (!e.nodes || r === null) if (e.parent) { let n = this.gridStatus(e.parent, t); e.parent._autoprefixerSelfDisabled === !0 ? r = !1 : r = n } else typeof this.prefixes.options.grid != "undefined" ? r = this.prefixes.options.grid : typeof h.env.AUTOPREFIXER_GRID != "undefined" ? h.env.AUTOPREFIXER_GRID === "autoplace" ? r = "autoplace" : r = !0 : r = !1; return e._autoprefixerGridStatus = r, r } - }; ig.exports = rg - }); var sg = v((zI, ng) => { l(); ng.exports = { A: { A: { "2": "K E F G A B JC" }, B: { "1": "C L M H N D O P Q R S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I" }, C: { "1": "2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 0B dB 1B eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R 2B S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I uB 3B 4B", "2": "0 1 KC zB J K E F G A B C L M H N D O k l LC MC" }, D: { "1": "8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 0B dB 1B eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I uB 3B 4B", "2": "0 1 2 3 4 5 6 7 J K E F G A B C L M H N D O k l" }, E: { "1": "G A B C L M H D RC 6B vB wB 7B SC TC 8B 9B xB AC yB BC CC DC EC FC GC UC", "2": "0 J K E F NC 5B OC PC QC" }, F: { "1": "1 2 3 4 5 6 7 8 9 H N D O k l AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R 2B S T U V W X Y Z a b c d e f g h i j wB", "2": "G B C VC WC XC YC vB HC ZC" }, G: { "1": "D fC gC hC iC jC kC lC mC nC oC pC qC rC sC tC 8B 9B xB AC yB BC CC DC EC FC GC", "2": "F 5B aC IC bC cC dC eC" }, H: { "1": "uC" }, I: { "1": "I zC 0C", "2": "zB J vC wC xC yC IC" }, J: { "2": "E A" }, K: { "1": "m", "2": "A B C vB HC wB" }, L: { "1": "I" }, M: { "1": "uB" }, N: { "2": "A B" }, O: { "1": "xB" }, P: { "1": "J k l 1C 2C 3C 4C 5C 6B 6C 7C 8C 9C AD yB BD CD DD" }, Q: { "1": "7B" }, R: { "1": "ED" }, S: { "1": "FD GD" } }, B: 4, C: "CSS Feature Queries" } }); var ug = v((VI, lg) => { l(); function ag(i) { return i[i.length - 1] } var og = { parse(i) { let e = [""], t = [e]; for (let r of i) { if (r === "(") { e = [""], ag(t).push(e), t.push(e); continue } if (r === ")") { t.pop(), e = ag(t), e.push(""); continue } e[e.length - 1] += r } return t[0] }, stringify(i) { let e = ""; for (let t of i) { if (typeof t == "object") { e += `(${og.stringify(t)})`; continue } e += t } return e } }; lg.exports = og }); var hg = v((UI, dg) => { l(); var TA = sg(), { feature: PA } = ($n(), Ln), { parse: DA } = ge(), IA = pt(), nl = ug(), qA = ke(), RA = fe(), fg = PA(TA), cg = []; for (let i in fg.stats) { let e = fg.stats[i]; for (let t in e) { let r = e[t]; /y/.test(r) && cg.push(i + " " + t) } } var pg = class { constructor(e, t) { this.Prefixes = e, this.all = t } prefixer() { if (this.prefixerCache) return this.prefixerCache; let e = this.all.browsers.selected.filter(r => cg.includes(r)), t = new IA(this.all.browsers.data, e, this.all.options); return this.prefixerCache = new this.Prefixes(this.all.data, t, this.all.options), this.prefixerCache } parse(e) { let t = e.split(":"), r = t[0], n = t[1]; return n || (n = ""), [r.trim(), n.trim()] } virtual(e) { let [t, r] = this.parse(e), n = DA("a{}").first; return n.append({ prop: t, value: r, raws: { before: "" } }), n } prefixed(e) { let t = this.virtual(e); if (this.disabled(t.first)) return t.nodes; let r = { warn: () => null }, n = this.prefixer().add[t.first.prop]; n && n.process && n.process(t.first, r); for (let a of t.nodes) { for (let s of this.prefixer().values("add", t.first.prop)) s.process(a); qA.save(this.all, a) } return t.nodes } isNot(e) { return typeof e == "string" && /not\s*/i.test(e) } isOr(e) { return typeof e == "string" && /\s*or\s*/i.test(e) } isProp(e) { return typeof e == "object" && e.length === 1 && typeof e[0] == "string" } isHack(e, t) { return !new RegExp(`(\\(|\\s)${RA.escapeRegexp(t)}:`).test(e) } toRemove(e, t) { let [r, n] = this.parse(e), a = this.all.unprefixed(r), s = this.all.cleaner(); if (s.remove[r] && s.remove[r].remove && !this.isHack(t, a)) return !0; for (let o of s.values("remove", a)) if (o.check(n)) return !0; return !1 } remove(e, t) { let r = 0; for (; r < e.length;) { if (!this.isNot(e[r - 1]) && this.isProp(e[r]) && this.isOr(e[r + 1])) { if (this.toRemove(e[r][0], t)) { e.splice(r, 2); continue } r += 2; continue } typeof e[r] == "object" && (e[r] = this.remove(e[r], t)), r += 1 } return e } cleanBrackets(e) { return e.map(t => typeof t != "object" ? t : t.length === 1 && typeof t[0] == "object" ? this.cleanBrackets(t[0]) : this.cleanBrackets(t)) } convert(e) { let t = [""]; for (let r of e) t.push([`${r.prop}: ${r.value}`]), t.push(" or "); return t[t.length - 1] = "", t } normalize(e) { if (typeof e != "object") return e; if (e = e.filter(t => t !== ""), typeof e[0] == "string") { let t = e[0].trim(); if (t.includes(":") || t === "selector" || t === "not selector") return [nl.stringify(e)] } return e.map(t => this.normalize(t)) } add(e, t) { return e.map(r => { if (this.isProp(r)) { let n = this.prefixed(r[0]); return n.length > 1 ? this.convert(n) : r } return typeof r == "object" ? this.add(r, t) : r }) } process(e) { let t = nl.parse(e.params); t = this.normalize(t), t = this.remove(t, e.params), t = this.add(t, e.params), t = this.cleanBrackets(t), e.params = nl.stringify(t) } disabled(e) { if (!this.all.options.grid && (e.prop === "display" && e.value.includes("grid") || e.prop.includes("grid") || e.prop === "justify-items")) return !0; if (this.all.options.flexbox === !1) { if (e.prop === "display" && e.value.includes("flex")) return !0; let t = ["order", "justify-content", "align-items", "align-content"]; if (e.prop.includes("flex") || t.includes(e.prop)) return !0 } return !1 } }; dg.exports = pg }); var yg = v((WI, gg) => { l(); var mg = class { constructor(e, t) { this.prefix = t, this.prefixed = e.prefixed(this.prefix), this.regexp = e.regexp(this.prefix), this.prefixeds = e.possible().map(r => [e.prefixed(r), e.regexp(r)]), this.unprefixed = e.name, this.nameRegexp = e.regexp() } isHack(e) { let t = e.parent.index(e) + 1, r = e.parent.nodes; for (; t < r.length;) { let n = r[t].selector; if (!n) return !0; if (n.includes(this.unprefixed) && n.match(this.nameRegexp)) return !1; let a = !1; for (let [s, o] of this.prefixeds) if (n.includes(s) && n.match(o)) { a = !0; break } if (!a) return !0; t += 1 } return !0 } check(e) { return !(!e.selector.includes(this.prefixed) || !e.selector.match(this.regexp) || this.isHack(e)) } }; gg.exports = mg }); var Ht = v((GI, bg) => { l(); var { list: MA } = ge(), BA = yg(), FA = Ut(), NA = pt(), LA = fe(), wg = class extends FA { constructor(e, t, r) { super(e, t, r); this.regexpCache = new Map } check(e) { return e.selector.includes(this.name) ? !!e.selector.match(this.regexp()) : !1 } prefixed(e) { return this.name.replace(/^(\W*)/, `$1${e}`) } regexp(e) { if (!this.regexpCache.has(e)) { let t = e ? this.prefixed(e) : this.name; this.regexpCache.set(e, new RegExp(`(^|[^:"'=])${LA.escapeRegexp(t)}`, "gi")) } return this.regexpCache.get(e) } possible() { return NA.prefixes() } prefixeds(e) { if (e._autoprefixerPrefixeds) { if (e._autoprefixerPrefixeds[this.name]) return e._autoprefixerPrefixeds } else e._autoprefixerPrefixeds = {}; let t = {}; if (e.selector.includes(",")) { let n = MA.comma(e.selector).filter(a => a.includes(this.name)); for (let a of this.possible()) t[a] = n.map(s => this.replace(s, a)).join(", ") } else for (let r of this.possible()) t[r] = this.replace(e.selector, r); return e._autoprefixerPrefixeds[this.name] = t, e._autoprefixerPrefixeds } already(e, t, r) { let n = e.parent.index(e) - 1; for (; n >= 0;) { let a = e.parent.nodes[n]; if (a.type !== "rule") return !1; let s = !1; for (let o in t[this.name]) { let u = t[this.name][o]; if (a.selector === u) { if (r === o) return !0; s = !0; break } } if (!s) return !1; n -= 1 } return !1 } replace(e, t) { return e.replace(this.regexp(), `$1${this.prefixed(t)}`) } add(e, t) { let r = this.prefixeds(e); if (this.already(e, r, t)) return; let n = this.clone(e, { selector: r[this.name][t] }); e.parent.insertBefore(e, n) } old(e) { return new BA(this, e) } }; bg.exports = wg }); var kg = v((HI, xg) => { l(); var $A = Ut(), vg = class extends $A { add(e, t) { let r = t + e.name; if (e.parent.some(s => s.name === r && s.params === e.params)) return; let a = this.clone(e, { name: r }); return e.parent.insertBefore(e, a) } process(e) { let t = this.parentPrefix(e); for (let r of this.prefixes) (!t || t === r) && this.add(e, r) } }; xg.exports = vg }); var Cg = v((YI, Sg) => { l(); var jA = Ht(), sl = class extends jA { prefixed(e) { return e === "-webkit-" ? ":-webkit-full-screen" : e === "-moz-" ? ":-moz-full-screen" : `:${e}fullscreen` } }; sl.names = [":fullscreen"]; Sg.exports = sl }); var _g = v((QI, Ag) => { l(); var zA = Ht(), al = class extends zA { possible() { return super.possible().concat(["-moz- old", "-ms- old"]) } prefixed(e) { return e === "-webkit-" ? "::-webkit-input-placeholder" : e === "-ms-" ? "::-ms-input-placeholder" : e === "-ms- old" ? ":-ms-input-placeholder" : e === "-moz- old" ? ":-moz-placeholder" : `::${e}placeholder` } }; al.names = ["::placeholder"]; Ag.exports = al }); var Eg = v((JI, Og) => { l(); var VA = Ht(), ol = class extends VA { prefixed(e) { return e === "-ms-" ? ":-ms-input-placeholder" : `:${e}placeholder-shown` } }; ol.names = [":placeholder-shown"]; Og.exports = ol }); var Pg = v((XI, Tg) => { l(); var UA = Ht(), WA = fe(), ll = class extends UA { constructor(e, t, r) { super(e, t, r); this.prefixes && (this.prefixes = WA.uniq(this.prefixes.map(n => "-webkit-"))) } prefixed(e) { return e === "-webkit-" ? "::-webkit-file-upload-button" : `::${e}file-selector-button` } }; ll.names = ["::file-selector-button"]; Tg.exports = ll }); var he = v((KI, Dg) => { l(); Dg.exports = function (i) { let e; return i === "-webkit- 2009" || i === "-moz-" ? e = 2009 : i === "-ms-" ? e = 2012 : i === "-webkit-" && (e = "final"), i === "-webkit- 2009" && (i = "-webkit-"), [e, i] } }); var Mg = v((ZI, Rg) => { l(); var Ig = ge().list, qg = he(), GA = R(), Yt = class extends GA { prefixed(e, t) { let r; return [r, t] = qg(t), r === 2009 ? t + "box-flex" : super.prefixed(e, t) } normalize() { return "flex" } set(e, t) { let r = qg(t)[0]; if (r === 2009) return e.value = Ig.space(e.value)[0], e.value = Yt.oldValues[e.value] || e.value, super.set(e, t); if (r === 2012) { let n = Ig.space(e.value); n.length === 3 && n[2] === "0" && (e.value = n.slice(0, 2).concat("0px").join(" ")) } return super.set(e, t) } }; Yt.names = ["flex", "box-flex"]; Yt.oldValues = { auto: "1", none: "0" }; Rg.exports = Yt }); var Ng = v((e4, Fg) => { l(); var Bg = he(), HA = R(), ul = class extends HA { prefixed(e, t) { let r; return [r, t] = Bg(t), r === 2009 ? t + "box-ordinal-group" : r === 2012 ? t + "flex-order" : super.prefixed(e, t) } normalize() { return "order" } set(e, t) { return Bg(t)[0] === 2009 && /\d/.test(e.value) ? (e.value = (parseInt(e.value) + 1).toString(), super.set(e, t)) : super.set(e, t) } }; ul.names = ["order", "flex-order", "box-ordinal-group"]; Fg.exports = ul }); var $g = v((t4, Lg) => { l(); var YA = R(), fl = class extends YA { check(e) { let t = e.value; return !t.toLowerCase().includes("alpha(") && !t.includes("DXImageTransform.Microsoft") && !t.includes("data:image/svg+xml") } }; fl.names = ["filter"]; Lg.exports = fl }); var zg = v((r4, jg) => { l(); var QA = R(), cl = class extends QA { insert(e, t, r, n) { if (t !== "-ms-") return super.insert(e, t, r); let a = this.clone(e), s = e.prop.replace(/end$/, "start"), o = t + e.prop.replace(/end$/, "span"); if (!e.parent.some(u => u.prop === o)) { if (a.prop = o, e.value.includes("span")) a.value = e.value.replace(/span\s/i, ""); else { let u; if (e.parent.walkDecls(s, c => { u = c }), u) { let c = Number(e.value) - Number(u.value) + ""; a.value = c } else e.warn(n, `Can not prefix ${e.prop} (${s} is not found)`) } e.cloneBefore(a) } } }; cl.names = ["grid-row-end", "grid-column-end"]; jg.exports = cl }); var Ug = v((i4, Vg) => { l(); var JA = R(), pl = class extends JA { check(e) { return !e.value.split(/\s+/).some(t => { let r = t.toLowerCase(); return r === "reverse" || r === "alternate-reverse" }) } }; pl.names = ["animation", "animation-direction"]; Vg.exports = pl }); var Gg = v((n4, Wg) => { l(); var XA = he(), KA = R(), dl = class extends KA { insert(e, t, r) { let n; if ([n, t] = XA(t), n !== 2009) return super.insert(e, t, r); let a = e.value.split(/\s+/).filter(d => d !== "wrap" && d !== "nowrap" && "wrap-reverse"); if (a.length === 0 || e.parent.some(d => d.prop === t + "box-orient" || d.prop === t + "box-direction")) return; let o = a[0], u = o.includes("row") ? "horizontal" : "vertical", c = o.includes("reverse") ? "reverse" : "normal", f = this.clone(e); return f.prop = t + "box-orient", f.value = u, this.needCascade(e) && (f.raws.before = this.calcBefore(r, e, t)), e.parent.insertBefore(e, f), f = this.clone(e), f.prop = t + "box-direction", f.value = c, this.needCascade(e) && (f.raws.before = this.calcBefore(r, e, t)), e.parent.insertBefore(e, f) } }; dl.names = ["flex-flow", "box-direction", "box-orient"]; Wg.exports = dl }); var Yg = v((s4, Hg) => { l(); var ZA = he(), e_ = R(), hl = class extends e_ { normalize() { return "flex" } prefixed(e, t) { let r; return [r, t] = ZA(t), r === 2009 ? t + "box-flex" : r === 2012 ? t + "flex-positive" : super.prefixed(e, t) } }; hl.names = ["flex-grow", "flex-positive"]; Hg.exports = hl }); var Jg = v((a4, Qg) => { l(); var t_ = he(), r_ = R(), ml = class extends r_ { set(e, t) { if (t_(t)[0] !== 2009) return super.set(e, t) } }; ml.names = ["flex-wrap"]; Qg.exports = ml }); var Kg = v((o4, Xg) => { l(); var i_ = R(), Qt = ht(), gl = class extends i_ { insert(e, t, r, n) { if (t !== "-ms-") return super.insert(e, t, r); let a = Qt.parse(e), [s, o] = Qt.translate(a, 0, 2), [u, c] = Qt.translate(a, 1, 3);[["grid-row", s], ["grid-row-span", o], ["grid-column", u], ["grid-column-span", c]].forEach(([f, d]) => { Qt.insertDecl(e, f, d) }), Qt.warnTemplateSelectorNotFound(e, n), Qt.warnIfGridRowColumnExists(e, n) } }; gl.names = ["grid-area"]; Xg.exports = gl }); var ey = v((l4, Zg) => { l(); var n_ = R(), ni = ht(), yl = class extends n_ { insert(e, t, r) { if (t !== "-ms-") return super.insert(e, t, r); if (e.parent.some(s => s.prop === "-ms-grid-row-align")) return; let [[n, a]] = ni.parse(e); a ? (ni.insertDecl(e, "grid-row-align", n), ni.insertDecl(e, "grid-column-align", a)) : (ni.insertDecl(e, "grid-row-align", n), ni.insertDecl(e, "grid-column-align", n)) } }; yl.names = ["place-self"]; Zg.exports = yl }); var ry = v((u4, ty) => { l(); var s_ = R(), wl = class extends s_ { check(e) { let t = e.value; return !t.includes("/") || t.includes("span") } normalize(e) { return e.replace("-start", "") } prefixed(e, t) { let r = super.prefixed(e, t); return t === "-ms-" && (r = r.replace("-start", "")), r } }; wl.names = ["grid-row-start", "grid-column-start"]; ty.exports = wl }); var sy = v((f4, ny) => { l(); var iy = he(), a_ = R(), Jt = class extends a_ { check(e) { return e.parent && !e.parent.some(t => t.prop && t.prop.startsWith("grid-")) } prefixed(e, t) { let r; return [r, t] = iy(t), r === 2012 ? t + "flex-item-align" : super.prefixed(e, t) } normalize() { return "align-self" } set(e, t) { let r = iy(t)[0]; if (r === 2012) return e.value = Jt.oldValues[e.value] || e.value, super.set(e, t); if (r === "final") return super.set(e, t) } }; Jt.names = ["align-self", "flex-item-align"]; Jt.oldValues = { "flex-end": "end", "flex-start": "start" }; ny.exports = Jt }); var oy = v((c4, ay) => { l(); var o_ = R(), l_ = fe(), bl = class extends o_ { constructor(e, t, r) { super(e, t, r); this.prefixes && (this.prefixes = l_.uniq(this.prefixes.map(n => n === "-ms-" ? "-webkit-" : n))) } }; bl.names = ["appearance"]; ay.exports = bl }); var fy = v((p4, uy) => { l(); var ly = he(), u_ = R(), vl = class extends u_ { normalize() { return "flex-basis" } prefixed(e, t) { let r; return [r, t] = ly(t), r === 2012 ? t + "flex-preferred-size" : super.prefixed(e, t) } set(e, t) { let r; if ([r, t] = ly(t), r === 2012 || r === "final") return super.set(e, t) } }; vl.names = ["flex-basis", "flex-preferred-size"]; uy.exports = vl }); var py = v((d4, cy) => { l(); var f_ = R(), xl = class extends f_ { normalize() { return this.name.replace("box-image", "border") } prefixed(e, t) { let r = super.prefixed(e, t); return t === "-webkit-" && (r = r.replace("border", "box-image")), r } }; xl.names = ["mask-border", "mask-border-source", "mask-border-slice", "mask-border-width", "mask-border-outset", "mask-border-repeat", "mask-box-image", "mask-box-image-source", "mask-box-image-slice", "mask-box-image-width", "mask-box-image-outset", "mask-box-image-repeat"]; cy.exports = xl }); var hy = v((h4, dy) => { l(); var c_ = R(), Ne = class extends c_ { insert(e, t, r) { let n = e.prop === "mask-composite", a; n ? a = e.value.split(",") : a = e.value.match(Ne.regexp) || [], a = a.map(c => c.trim()).filter(c => c); let s = a.length, o; if (s && (o = this.clone(e), o.value = a.map(c => Ne.oldValues[c] || c).join(", "), a.includes("intersect") && (o.value += ", xor"), o.prop = t + "mask-composite"), n) return s ? (this.needCascade(e) && (o.raws.before = this.calcBefore(r, e, t)), e.parent.insertBefore(e, o)) : void 0; let u = this.clone(e); return u.prop = t + u.prop, s && (u.value = u.value.replace(Ne.regexp, "")), this.needCascade(e) && (u.raws.before = this.calcBefore(r, e, t)), e.parent.insertBefore(e, u), s ? (this.needCascade(e) && (o.raws.before = this.calcBefore(r, e, t)), e.parent.insertBefore(e, o)) : e } }; Ne.names = ["mask", "mask-composite"]; Ne.oldValues = { add: "source-over", subtract: "source-out", intersect: "source-in", exclude: "xor" }; Ne.regexp = new RegExp(`\\s+(${Object.keys(Ne.oldValues).join("|")})\\b(?!\\))\\s*(?=[,])`, "ig"); dy.exports = Ne }); var yy = v((m4, gy) => { l(); var my = he(), p_ = R(), Xt = class extends p_ { prefixed(e, t) { let r; return [r, t] = my(t), r === 2009 ? t + "box-align" : r === 2012 ? t + "flex-align" : super.prefixed(e, t) } normalize() { return "align-items" } set(e, t) { let r = my(t)[0]; return (r === 2009 || r === 2012) && (e.value = Xt.oldValues[e.value] || e.value), super.set(e, t) } }; Xt.names = ["align-items", "flex-align", "box-align"]; Xt.oldValues = { "flex-end": "end", "flex-start": "start" }; gy.exports = Xt }); var by = v((g4, wy) => { l(); var d_ = R(), kl = class extends d_ { set(e, t) { return t === "-ms-" && e.value === "contain" && (e.value = "element"), super.set(e, t) } insert(e, t, r) { if (!(e.value === "all" && t === "-ms-")) return super.insert(e, t, r) } }; kl.names = ["user-select"]; wy.exports = kl }); var ky = v((y4, xy) => { l(); var vy = he(), h_ = R(), Sl = class extends h_ { normalize() { return "flex-shrink" } prefixed(e, t) { let r; return [r, t] = vy(t), r === 2012 ? t + "flex-negative" : super.prefixed(e, t) } set(e, t) { let r; if ([r, t] = vy(t), r === 2012 || r === "final") return super.set(e, t) } }; Sl.names = ["flex-shrink", "flex-negative"]; xy.exports = Sl }); var Cy = v((w4, Sy) => { l(); var m_ = R(), Cl = class extends m_ { prefixed(e, t) { return `${t}column-${e}` } normalize(e) { return e.includes("inside") ? "break-inside" : e.includes("before") ? "break-before" : "break-after" } set(e, t) { return (e.prop === "break-inside" && e.value === "avoid-column" || e.value === "avoid-page") && (e.value = "avoid"), super.set(e, t) } insert(e, t, r) { if (e.prop !== "break-inside") return super.insert(e, t, r); if (!(/region/i.test(e.value) || /page/i.test(e.value))) return super.insert(e, t, r) } }; Cl.names = ["break-inside", "page-break-inside", "column-break-inside", "break-before", "page-break-before", "column-break-before", "break-after", "page-break-after", "column-break-after"]; Sy.exports = Cl }); var _y = v((b4, Ay) => { l(); var g_ = R(), Al = class extends g_ { prefixed(e, t) { return t + "print-color-adjust" } normalize() { return "color-adjust" } }; Al.names = ["color-adjust", "print-color-adjust"]; Ay.exports = Al }); var Ey = v((v4, Oy) => { l(); var y_ = R(), Kt = class extends y_ { insert(e, t, r) { if (t === "-ms-") { let n = this.set(this.clone(e), t); this.needCascade(e) && (n.raws.before = this.calcBefore(r, e, t)); let a = "ltr"; return e.parent.nodes.forEach(s => { s.prop === "direction" && (s.value === "rtl" || s.value === "ltr") && (a = s.value) }), n.value = Kt.msValues[a][e.value] || e.value, e.parent.insertBefore(e, n) } return super.insert(e, t, r) } }; Kt.names = ["writing-mode"]; Kt.msValues = { ltr: { "horizontal-tb": "lr-tb", "vertical-rl": "tb-rl", "vertical-lr": "tb-lr" }, rtl: { "horizontal-tb": "rl-tb", "vertical-rl": "bt-rl", "vertical-lr": "bt-lr" } }; Oy.exports = Kt }); var Py = v((x4, Ty) => { l(); var w_ = R(), _l = class extends w_ { set(e, t) { return e.value = e.value.replace(/\s+fill(\s)/, "$1"), super.set(e, t) } }; _l.names = ["border-image"]; Ty.exports = _l }); var qy = v((k4, Iy) => { l(); var Dy = he(), b_ = R(), Zt = class extends b_ { prefixed(e, t) { let r; return [r, t] = Dy(t), r === 2012 ? t + "flex-line-pack" : super.prefixed(e, t) } normalize() { return "align-content" } set(e, t) { let r = Dy(t)[0]; if (r === 2012) return e.value = Zt.oldValues[e.value] || e.value, super.set(e, t); if (r === "final") return super.set(e, t) } }; Zt.names = ["align-content", "flex-line-pack"]; Zt.oldValues = { "flex-end": "end", "flex-start": "start", "space-between": "justify", "space-around": "distribute" }; Iy.exports = Zt }); var My = v((S4, Ry) => { l(); var v_ = R(), Se = class extends v_ { prefixed(e, t) { return t === "-moz-" ? t + (Se.toMozilla[e] || e) : super.prefixed(e, t) } normalize(e) { return Se.toNormal[e] || e } }; Se.names = ["border-radius"]; Se.toMozilla = {}; Se.toNormal = {}; for (let i of ["top", "bottom"]) for (let e of ["left", "right"]) { let t = `border-${i}-${e}-radius`, r = `border-radius-${i}${e}`; Se.names.push(t), Se.names.push(r), Se.toMozilla[t] = r, Se.toNormal[r] = t } Ry.exports = Se }); var Fy = v((C4, By) => { l(); var x_ = R(), Ol = class extends x_ { prefixed(e, t) { return e.includes("-start") ? t + e.replace("-block-start", "-before") : t + e.replace("-block-end", "-after") } normalize(e) { return e.includes("-before") ? e.replace("-before", "-block-start") : e.replace("-after", "-block-end") } }; Ol.names = ["border-block-start", "border-block-end", "margin-block-start", "margin-block-end", "padding-block-start", "padding-block-end", "border-before", "border-after", "margin-before", "margin-after", "padding-before", "padding-after"]; By.exports = Ol }); var Ly = v((A4, Ny) => { l(); var k_ = R(), { parseTemplate: S_, warnMissedAreas: C_, getGridGap: A_, warnGridGap: __, inheritGridGap: O_ } = ht(), El = class extends k_ { insert(e, t, r, n) { if (t !== "-ms-") return super.insert(e, t, r); if (e.parent.some(m => m.prop === "-ms-grid-rows")) return; let a = A_(e), s = O_(e, a), { rows: o, columns: u, areas: c } = S_({ decl: e, gap: s || a }), f = Object.keys(c).length > 0, d = Boolean(o), p = Boolean(u); return __({ gap: a, hasColumns: p, decl: e, result: n }), C_(c, e, n), (d && p || f) && e.cloneBefore({ prop: "-ms-grid-rows", value: o, raws: {} }), p && e.cloneBefore({ prop: "-ms-grid-columns", value: u, raws: {} }), e } }; El.names = ["grid-template"]; Ny.exports = El }); var jy = v((_4, $y) => { l(); var E_ = R(), Tl = class extends E_ { prefixed(e, t) { return t + e.replace("-inline", "") } normalize(e) { return e.replace(/(margin|padding|border)-(start|end)/, "$1-inline-$2") } }; Tl.names = ["border-inline-start", "border-inline-end", "margin-inline-start", "margin-inline-end", "padding-inline-start", "padding-inline-end", "border-start", "border-end", "margin-start", "margin-end", "padding-start", "padding-end"]; $y.exports = Tl }); var Vy = v((O4, zy) => { l(); var T_ = R(), Pl = class extends T_ { check(e) { return !e.value.includes("flex-") && e.value !== "baseline" } prefixed(e, t) { return t + "grid-row-align" } normalize() { return "align-self" } }; Pl.names = ["grid-row-align"]; zy.exports = Pl }); var Wy = v((E4, Uy) => { l(); var P_ = R(), er = class extends P_ { keyframeParents(e) { let { parent: t } = e; for (; t;) { if (t.type === "atrule" && t.name === "keyframes") return !0; ({ parent: t } = t) } return !1 } contain3d(e) { if (e.prop === "transform-origin") return !1; for (let t of er.functions3d) if (e.value.includes(`${t}(`)) return !0; return !1 } set(e, t) { return e = super.set(e, t), t === "-ms-" && (e.value = e.value.replace(/rotatez/gi, "rotate")), e } insert(e, t, r) { if (t === "-ms-") { if (!this.contain3d(e) && !this.keyframeParents(e)) return super.insert(e, t, r) } else if (t === "-o-") { if (!this.contain3d(e)) return super.insert(e, t, r) } else return super.insert(e, t, r) } }; er.names = ["transform", "transform-origin"]; er.functions3d = ["matrix3d", "translate3d", "translateZ", "scale3d", "scaleZ", "rotate3d", "rotateX", "rotateY", "perspective"]; Uy.exports = er }); var Yy = v((T4, Hy) => { l(); var Gy = he(), D_ = R(), Dl = class extends D_ { normalize() { return "flex-direction" } insert(e, t, r) { let n; if ([n, t] = Gy(t), n !== 2009) return super.insert(e, t, r); if (e.parent.some(f => f.prop === t + "box-orient" || f.prop === t + "box-direction")) return; let s = e.value, o, u; s === "inherit" || s === "initial" || s === "unset" ? (o = s, u = s) : (o = s.includes("row") ? "horizontal" : "vertical", u = s.includes("reverse") ? "reverse" : "normal"); let c = this.clone(e); return c.prop = t + "box-orient", c.value = o, this.needCascade(e) && (c.raws.before = this.calcBefore(r, e, t)), e.parent.insertBefore(e, c), c = this.clone(e), c.prop = t + "box-direction", c.value = u, this.needCascade(e) && (c.raws.before = this.calcBefore(r, e, t)), e.parent.insertBefore(e, c) } old(e, t) { let r; return [r, t] = Gy(t), r === 2009 ? [t + "box-orient", t + "box-direction"] : super.old(e, t) } }; Dl.names = ["flex-direction", "box-direction", "box-orient"]; Hy.exports = Dl }); var Jy = v((P4, Qy) => { l(); var I_ = R(), Il = class extends I_ { check(e) { return e.value === "pixelated" } prefixed(e, t) { return t === "-ms-" ? "-ms-interpolation-mode" : super.prefixed(e, t) } set(e, t) { return t !== "-ms-" ? super.set(e, t) : (e.prop = "-ms-interpolation-mode", e.value = "nearest-neighbor", e) } normalize() { return "image-rendering" } process(e, t) { return super.process(e, t) } }; Il.names = ["image-rendering", "interpolation-mode"]; Qy.exports = Il }); var Ky = v((D4, Xy) => { l(); var q_ = R(), R_ = fe(), ql = class extends q_ { constructor(e, t, r) { super(e, t, r); this.prefixes && (this.prefixes = R_.uniq(this.prefixes.map(n => n === "-ms-" ? "-webkit-" : n))) } }; ql.names = ["backdrop-filter"]; Xy.exports = ql }); var ew = v((I4, Zy) => { l(); var M_ = R(), B_ = fe(), Rl = class extends M_ { constructor(e, t, r) { super(e, t, r); this.prefixes && (this.prefixes = B_.uniq(this.prefixes.map(n => n === "-ms-" ? "-webkit-" : n))) } check(e) { return e.value.toLowerCase() === "text" } }; Rl.names = ["background-clip"]; Zy.exports = Rl }); var rw = v((q4, tw) => { l(); var F_ = R(), N_ = ["none", "underline", "overline", "line-through", "blink", "inherit", "initial", "unset"], Ml = class extends F_ { check(e) { return e.value.split(/\s+/).some(t => !N_.includes(t)) } }; Ml.names = ["text-decoration"]; tw.exports = Ml }); var sw = v((R4, nw) => { l(); var iw = he(), L_ = R(), tr = class extends L_ { prefixed(e, t) { let r; return [r, t] = iw(t), r === 2009 ? t + "box-pack" : r === 2012 ? t + "flex-pack" : super.prefixed(e, t) } normalize() { return "justify-content" } set(e, t) { let r = iw(t)[0]; if (r === 2009 || r === 2012) { let n = tr.oldValues[e.value] || e.value; if (e.value = n, r !== 2009 || n !== "distribute") return super.set(e, t) } else if (r === "final") return super.set(e, t) } }; tr.names = ["justify-content", "flex-pack", "box-pack"]; tr.oldValues = { "flex-end": "end", "flex-start": "start", "space-between": "justify", "space-around": "distribute" }; nw.exports = tr }); var ow = v((M4, aw) => { l(); var $_ = R(), Bl = class extends $_ { set(e, t) { let r = e.value.toLowerCase(); return t === "-webkit-" && !r.includes(" ") && r !== "contain" && r !== "cover" && (e.value = e.value + " " + e.value), super.set(e, t) } }; Bl.names = ["background-size"]; aw.exports = Bl }); var uw = v((B4, lw) => { l(); var j_ = R(), Fl = ht(), Nl = class extends j_ { insert(e, t, r) { if (t !== "-ms-") return super.insert(e, t, r); let n = Fl.parse(e), [a, s] = Fl.translate(n, 0, 1); n[0] && n[0].includes("span") && (s = n[0].join("").replace(/\D/g, "")), [[e.prop, a], [`${e.prop}-span`, s]].forEach(([u, c]) => { Fl.insertDecl(e, u, c) }) } }; Nl.names = ["grid-row", "grid-column"]; lw.exports = Nl }); var pw = v((F4, cw) => { l(); var z_ = R(), { prefixTrackProp: fw, prefixTrackValue: V_, autoplaceGridItems: U_, getGridGap: W_, inheritGridGap: G_ } = ht(), H_ = il(), Ll = class extends z_ { prefixed(e, t) { return t === "-ms-" ? fw({ prop: e, prefix: t }) : super.prefixed(e, t) } normalize(e) { return e.replace(/^grid-(rows|columns)/, "grid-template-$1") } insert(e, t, r, n) { if (t !== "-ms-") return super.insert(e, t, r); let { parent: a, prop: s, value: o } = e, u = s.includes("rows"), c = s.includes("columns"), f = a.some(k => k.prop === "grid-template" || k.prop === "grid-template-areas"); if (f && u) return !1; let d = new H_({ options: {} }), p = d.gridStatus(a, n), m = W_(e); m = G_(e, m) || m; let w = u ? m.row : m.column; (p === "no-autoplace" || p === !0) && !f && (w = null); let x = V_({ value: o, gap: w }); e.cloneBefore({ prop: fw({ prop: s, prefix: t }), value: x }); let y = a.nodes.find(k => k.prop === "grid-auto-flow"), b = "row"; if (y && !d.disabled(y, n) && (b = y.value.trim()), p === "autoplace") { let k = a.nodes.find(_ => _.prop === "grid-template-rows"); if (!k && f) return; if (!k && !f) { e.warn(n, "Autoplacement does not work without grid-template-rows property"); return } !a.nodes.find(_ => _.prop === "grid-template-columns") && !f && e.warn(n, "Autoplacement does not work without grid-template-columns property"), c && !f && U_(e, n, m, b) } } }; Ll.names = ["grid-template-rows", "grid-template-columns", "grid-rows", "grid-columns"]; cw.exports = Ll }); var hw = v((N4, dw) => { l(); var Y_ = R(), $l = class extends Y_ { check(e) { return !e.value.includes("flex-") && e.value !== "baseline" } prefixed(e, t) { return t + "grid-column-align" } normalize() { return "justify-self" } }; $l.names = ["grid-column-align"]; dw.exports = $l }); var gw = v((L4, mw) => { l(); var Q_ = R(), jl = class extends Q_ { prefixed(e, t) { return t + "scroll-chaining" } normalize() { return "overscroll-behavior" } set(e, t) { return e.value === "auto" ? e.value = "chained" : (e.value === "none" || e.value === "contain") && (e.value = "none"), super.set(e, t) } }; jl.names = ["overscroll-behavior", "scroll-chaining"]; mw.exports = jl }); var bw = v(($4, ww) => { l(); var J_ = R(), { parseGridAreas: X_, warnMissedAreas: K_, prefixTrackProp: Z_, prefixTrackValue: yw, getGridGap: e5, warnGridGap: t5, inheritGridGap: r5 } = ht(); function i5(i) { return i.trim().slice(1, -1).split(/["']\s*["']?/g) } var zl = class extends J_ { insert(e, t, r, n) { if (t !== "-ms-") return super.insert(e, t, r); let a = !1, s = !1, o = e.parent, u = e5(e); u = r5(e, u) || u, o.walkDecls(/-ms-grid-rows/, d => d.remove()), o.walkDecls(/grid-template-(rows|columns)/, d => { if (d.prop === "grid-template-rows") { s = !0; let { prop: p, value: m } = d; d.cloneBefore({ prop: Z_({ prop: p, prefix: t }), value: yw({ value: m, gap: u.row }) }) } else a = !0 }); let c = i5(e.value); a && !s && u.row && c.length > 1 && e.cloneBefore({ prop: "-ms-grid-rows", value: yw({ value: `repeat(${c.length}, auto)`, gap: u.row }), raws: {} }), t5({ gap: u, hasColumns: a, decl: e, result: n }); let f = X_({ rows: c, gap: u }); return K_(f, e, n), e } }; zl.names = ["grid-template-areas"]; ww.exports = zl }); var xw = v((j4, vw) => { l(); var n5 = R(), Vl = class extends n5 { set(e, t) { return t === "-webkit-" && (e.value = e.value.replace(/\s*(right|left)\s*/i, "")), super.set(e, t) } }; Vl.names = ["text-emphasis-position"]; vw.exports = Vl }); var Sw = v((z4, kw) => { l(); var s5 = R(), Ul = class extends s5 { set(e, t) { return e.prop === "text-decoration-skip-ink" && e.value === "auto" ? (e.prop = t + "text-decoration-skip", e.value = "ink", e) : super.set(e, t) } }; Ul.names = ["text-decoration-skip-ink", "text-decoration-skip"]; kw.exports = Ul }); var Tw = v((V4, Ew) => { l(); "use strict"; Ew.exports = { wrap: Cw, limit: Aw, validate: _w, test: Wl, curry: a5, name: Ow }; function Cw(i, e, t) { var r = e - i; return ((t - i) % r + r) % r + i } function Aw(i, e, t) { return Math.max(i, Math.min(e, t)) } function _w(i, e, t, r, n) { if (!Wl(i, e, t, r, n)) throw new Error(t + " is outside of range [" + i + "," + e + ")"); return t } function Wl(i, e, t, r, n) { return !(t < i || t > e || n && t === e || r && t === i) } function Ow(i, e, t, r) { return (t ? "(" : "[") + i + "," + e + (r ? ")" : "]") } function a5(i, e, t, r) { var n = Ow.bind(null, i, e, t, r); return { wrap: Cw.bind(null, i, e), limit: Aw.bind(null, i, e), validate: function (a) { return _w(i, e, a, t, r) }, test: function (a) { return Wl(i, e, a, t, r) }, toString: n, name: n } } }); var Iw = v((U4, Dw) => { l(); var Gl = Gn(), o5 = Tw(), l5 = Gt(), u5 = ke(), f5 = fe(), Pw = /top|left|right|bottom/gi, Qe = class extends u5 { replace(e, t) { let r = Gl(e); for (let n of r.nodes) if (n.type === "function" && n.value === this.name) if (n.nodes = this.newDirection(n.nodes), n.nodes = this.normalize(n.nodes), t === "-webkit- old") { if (!this.oldWebkit(n)) return !1 } else n.nodes = this.convertDirection(n.nodes), n.value = t + n.value; return r.toString() } replaceFirst(e, ...t) { return t.map(n => n === " " ? { type: "space", value: n } : { type: "word", value: n }).concat(e.slice(1)) } normalizeUnit(e, t) { return `${parseFloat(e) / t * 360}deg` } normalize(e) { if (!e[0]) return e; if (/-?\d+(.\d+)?grad/.test(e[0].value)) e[0].value = this.normalizeUnit(e[0].value, 400); else if (/-?\d+(.\d+)?rad/.test(e[0].value)) e[0].value = this.normalizeUnit(e[0].value, 2 * Math.PI); else if (/-?\d+(.\d+)?turn/.test(e[0].value)) e[0].value = this.normalizeUnit(e[0].value, 1); else if (e[0].value.includes("deg")) { let t = parseFloat(e[0].value); t = o5.wrap(0, 360, t), e[0].value = `${t}deg` } return e[0].value === "0deg" ? e = this.replaceFirst(e, "to", " ", "top") : e[0].value === "90deg" ? e = this.replaceFirst(e, "to", " ", "right") : e[0].value === "180deg" ? e = this.replaceFirst(e, "to", " ", "bottom") : e[0].value === "270deg" && (e = this.replaceFirst(e, "to", " ", "left")), e } newDirection(e) { if (e[0].value === "to" || (Pw.lastIndex = 0, !Pw.test(e[0].value))) return e; e.unshift({ type: "word", value: "to" }, { type: "space", value: " " }); for (let t = 2; t < e.length && e[t].type !== "div"; t++)e[t].type === "word" && (e[t].value = this.revertDirection(e[t].value)); return e } isRadial(e) { let t = "before"; for (let r of e) if (t === "before" && r.type === "space") t = "at"; else if (t === "at" && r.value === "at") t = "after"; else { if (t === "after" && r.type === "space") return !0; if (r.type === "div") break; t = "before" } return !1 } convertDirection(e) { return e.length > 0 && (e[0].value === "to" ? this.fixDirection(e) : e[0].value.includes("deg") ? this.fixAngle(e) : this.isRadial(e) && this.fixRadial(e)), e } fixDirection(e) { e.splice(0, 2); for (let t of e) { if (t.type === "div") break; t.type === "word" && (t.value = this.revertDirection(t.value)) } } fixAngle(e) { let t = e[0].value; t = parseFloat(t), t = Math.abs(450 - t) % 360, t = this.roundFloat(t, 3), e[0].value = `${t}deg` } fixRadial(e) { let t = [], r = [], n, a, s, o, u; for (o = 0; o < e.length - 2; o++)if (n = e[o], a = e[o + 1], s = e[o + 2], n.type === "space" && a.value === "at" && s.type === "space") { u = o + 3; break } else t.push(n); let c; for (o = u; o < e.length; o++)if (e[o].type === "div") { c = e[o]; break } else r.push(e[o]); e.splice(0, o, ...r, c, ...t) } revertDirection(e) { return Qe.directions[e.toLowerCase()] || e } roundFloat(e, t) { return parseFloat(e.toFixed(t)) } oldWebkit(e) { let { nodes: t } = e, r = Gl.stringify(e.nodes); if (this.name !== "linear-gradient" || t[0] && t[0].value.includes("deg") || r.includes("px") || r.includes("-corner") || r.includes("-side")) return !1; let n = [[]]; for (let a of t) n[n.length - 1].push(a), a.type === "div" && a.value === "," && n.push([]); this.oldDirection(n), this.colorStops(n), e.nodes = []; for (let a of n) e.nodes = e.nodes.concat(a); return e.nodes.unshift({ type: "word", value: "linear" }, this.cloneDiv(e.nodes)), e.value = "-webkit-gradient", !0 } oldDirection(e) { let t = this.cloneDiv(e[0]); if (e[0][0].value !== "to") return e.unshift([{ type: "word", value: Qe.oldDirections.bottom }, t]); { let r = []; for (let a of e[0].slice(2)) a.type === "word" && r.push(a.value.toLowerCase()); r = r.join(" "); let n = Qe.oldDirections[r] || r; return e[0] = [{ type: "word", value: n }, t], e[0] } } cloneDiv(e) { for (let t of e) if (t.type === "div" && t.value === ",") return t; return { type: "div", value: ",", after: " " } } colorStops(e) { let t = []; for (let r = 0; r < e.length; r++) { let n, a = e[r], s; if (r === 0) continue; let o = Gl.stringify(a[0]); a[1] && a[1].type === "word" ? n = a[1].value : a[2] && a[2].type === "word" && (n = a[2].value); let u; r === 1 && (!n || n === "0%") ? u = `from(${o})` : r === e.length - 1 && (!n || n === "100%") ? u = `to(${o})` : n ? u = `color-stop(${n}, ${o})` : u = `color-stop(${o})`; let c = a[a.length - 1]; e[r] = [{ type: "word", value: u }], c.type === "div" && c.value === "," && (s = e[r].push(c)), t.push(s) } return t } old(e) { if (e === "-webkit-") { let t = this.name === "linear-gradient" ? "linear" : "radial", r = "-gradient", n = f5.regexp(`-webkit-(${t}-gradient|gradient\\(\\s*${t})`, !1); return new l5(this.name, e + this.name, r, n) } else return super.old(e) } add(e, t) { let r = e.prop; if (r.includes("mask")) { if (t === "-webkit-" || t === "-webkit- old") return super.add(e, t) } else if (r === "list-style" || r === "list-style-image" || r === "content") { if (t === "-webkit-" || t === "-webkit- old") return super.add(e, t) } else return super.add(e, t) } }; Qe.names = ["linear-gradient", "repeating-linear-gradient", "radial-gradient", "repeating-radial-gradient"]; Qe.directions = { top: "bottom", left: "right", bottom: "top", right: "left" }; Qe.oldDirections = { top: "left bottom, left top", left: "right top, left top", bottom: "left top, left bottom", right: "left top, right top", "top right": "left bottom, right top", "top left": "right bottom, left top", "right top": "left bottom, right top", "right bottom": "left top, right bottom", "bottom right": "left top, right bottom", "bottom left": "right top, left bottom", "left top": "right bottom, left top", "left bottom": "right top, left bottom" }; Dw.exports = Qe }); var Mw = v((W4, Rw) => { l(); var c5 = Gt(), p5 = ke(); function qw(i) { return new RegExp(`(^|[\\s,(])(${i}($|[\\s),]))`, "gi") } var Hl = class extends p5 { regexp() { return this.regexpCache || (this.regexpCache = qw(this.name)), this.regexpCache } isStretch() { return this.name === "stretch" || this.name === "fill" || this.name === "fill-available" } replace(e, t) { return t === "-moz-" && this.isStretch() ? e.replace(this.regexp(), "$1-moz-available$3") : t === "-webkit-" && this.isStretch() ? e.replace(this.regexp(), "$1-webkit-fill-available$3") : super.replace(e, t) } old(e) { let t = e + this.name; return this.isStretch() && (e === "-moz-" ? t = "-moz-available" : e === "-webkit-" && (t = "-webkit-fill-available")), new c5(this.name, t, t, qw(t)) } add(e, t) { if (!(e.prop.includes("grid") && t !== "-webkit-")) return super.add(e, t) } }; Hl.names = ["max-content", "min-content", "fit-content", "fill", "fill-available", "stretch"]; Rw.exports = Hl }); var Nw = v((G4, Fw) => { l(); var Bw = Gt(), d5 = ke(), Yl = class extends d5 { replace(e, t) { return t === "-webkit-" ? e.replace(this.regexp(), "$1-webkit-optimize-contrast") : t === "-moz-" ? e.replace(this.regexp(), "$1-moz-crisp-edges") : super.replace(e, t) } old(e) { return e === "-webkit-" ? new Bw(this.name, "-webkit-optimize-contrast") : e === "-moz-" ? new Bw(this.name, "-moz-crisp-edges") : super.old(e) } }; Yl.names = ["pixelated"]; Fw.exports = Yl }); var $w = v((H4, Lw) => { l(); var h5 = ke(), Ql = class extends h5 { replace(e, t) { let r = super.replace(e, t); return t === "-webkit-" && (r = r.replace(/("[^"]+"|'[^']+')(\s+\d+\w)/gi, "url($1)$2")), r } }; Ql.names = ["image-set"]; Lw.exports = Ql }); var zw = v((Y4, jw) => { l(); var m5 = ge().list, g5 = ke(), Jl = class extends g5 { replace(e, t) { return m5.space(e).map(r => { if (r.slice(0, +this.name.length + 1) !== this.name + "(") return r; let n = r.lastIndexOf(")"), a = r.slice(n + 1), s = r.slice(this.name.length + 1, n); if (t === "-webkit-") { let o = s.match(/\d*.?\d+%?/); o ? (s = s.slice(o[0].length).trim(), s += `, ${o[0]}`) : s += ", 0.5" } return t + this.name + "(" + s + ")" + a }).join(" ") } }; Jl.names = ["cross-fade"]; jw.exports = Jl }); var Uw = v((Q4, Vw) => { l(); var y5 = he(), w5 = Gt(), b5 = ke(), Xl = class extends b5 { constructor(e, t) { super(e, t); e === "display-flex" && (this.name = "flex") } check(e) { return e.prop === "display" && e.value === this.name } prefixed(e) { let t, r; return [t, e] = y5(e), t === 2009 ? this.name === "flex" ? r = "box" : r = "inline-box" : t === 2012 ? this.name === "flex" ? r = "flexbox" : r = "inline-flexbox" : t === "final" && (r = this.name), e + r } replace(e, t) { return this.prefixed(t) } old(e) { let t = this.prefixed(e); if (!!t) return new w5(this.name, t) } }; Xl.names = ["display-flex", "inline-flex"]; Vw.exports = Xl }); var Gw = v((J4, Ww) => { l(); var v5 = ke(), Kl = class extends v5 { constructor(e, t) { super(e, t); e === "display-grid" && (this.name = "grid") } check(e) { return e.prop === "display" && e.value === this.name } }; Kl.names = ["display-grid", "inline-grid"]; Ww.exports = Kl }); var Yw = v((X4, Hw) => { l(); var x5 = ke(), Zl = class extends x5 { constructor(e, t) { super(e, t); e === "filter-function" && (this.name = "filter") } }; Zl.names = ["filter", "filter-function"]; Hw.exports = Zl }); var Kw = v((K4, Xw) => { l(); var Qw = ii(), M = R(), Jw = Dm(), k5 = Qm(), S5 = il(), C5 = hg(), eu = pt(), rr = Ht(), A5 = kg(), Le = ke(), ir = fe(), _5 = Cg(), O5 = _g(), E5 = Eg(), T5 = Pg(), P5 = Mg(), D5 = Ng(), I5 = $g(), q5 = zg(), R5 = Ug(), M5 = Gg(), B5 = Yg(), F5 = Jg(), N5 = Kg(), L5 = ey(), $5 = ry(), j5 = sy(), z5 = oy(), V5 = fy(), U5 = py(), W5 = hy(), G5 = yy(), H5 = by(), Y5 = ky(), Q5 = Cy(), J5 = _y(), X5 = Ey(), K5 = Py(), Z5 = qy(), eO = My(), tO = Fy(), rO = Ly(), iO = jy(), nO = Vy(), sO = Wy(), aO = Yy(), oO = Jy(), lO = Ky(), uO = ew(), fO = rw(), cO = sw(), pO = ow(), dO = uw(), hO = pw(), mO = hw(), gO = gw(), yO = bw(), wO = xw(), bO = Sw(), vO = Iw(), xO = Mw(), kO = Nw(), SO = $w(), CO = zw(), AO = Uw(), _O = Gw(), OO = Yw(); rr.hack(_5); rr.hack(O5); rr.hack(E5); rr.hack(T5); M.hack(P5); M.hack(D5); M.hack(I5); M.hack(q5); M.hack(R5); M.hack(M5); M.hack(B5); M.hack(F5); M.hack(N5); M.hack(L5); M.hack($5); M.hack(j5); M.hack(z5); M.hack(V5); M.hack(U5); M.hack(W5); M.hack(G5); M.hack(H5); M.hack(Y5); M.hack(Q5); M.hack(J5); M.hack(X5); M.hack(K5); M.hack(Z5); M.hack(eO); M.hack(tO); M.hack(rO); M.hack(iO); M.hack(nO); M.hack(sO); M.hack(aO); M.hack(oO); M.hack(lO); M.hack(uO); M.hack(fO); M.hack(cO); M.hack(pO); M.hack(dO); M.hack(hO); M.hack(mO); M.hack(gO); M.hack(yO); M.hack(wO); M.hack(bO); Le.hack(vO); Le.hack(xO); Le.hack(kO); Le.hack(SO); Le.hack(CO); Le.hack(AO); Le.hack(_O); Le.hack(OO); var tu = new Map, si = class { constructor(e, t, r = {}) { this.data = e, this.browsers = t, this.options = r, [this.add, this.remove] = this.preprocess(this.select(this.data)), this.transition = new k5(this), this.processor = new S5(this) } cleaner() { if (this.cleanerCache) return this.cleanerCache; if (this.browsers.selected.length) { let e = new eu(this.browsers.data, []); this.cleanerCache = new si(this.data, e, this.options) } else return this; return this.cleanerCache } select(e) { let t = { add: {}, remove: {} }; for (let r in e) { let n = e[r], a = n.browsers.map(u => { let c = u.split(" "); return { browser: `${c[0]} ${c[1]}`, note: c[2] } }), s = a.filter(u => u.note).map(u => `${this.browsers.prefix(u.browser)} ${u.note}`); s = ir.uniq(s), a = a.filter(u => this.browsers.isSelected(u.browser)).map(u => { let c = this.browsers.prefix(u.browser); return u.note ? `${c} ${u.note}` : c }), a = this.sort(ir.uniq(a)), this.options.flexbox === "no-2009" && (a = a.filter(u => !u.includes("2009"))); let o = n.browsers.map(u => this.browsers.prefix(u)); n.mistakes && (o = o.concat(n.mistakes)), o = o.concat(s), o = ir.uniq(o), a.length ? (t.add[r] = a, a.length < o.length && (t.remove[r] = o.filter(u => !a.includes(u)))) : t.remove[r] = o } return t } sort(e) { return e.sort((t, r) => { let n = ir.removeNote(t).length, a = ir.removeNote(r).length; return n === a ? r.length - t.length : a - n }) } preprocess(e) { let t = { selectors: [], "@supports": new C5(si, this) }; for (let n in e.add) { let a = e.add[n]; if (n === "@keyframes" || n === "@viewport") t[n] = new A5(n, a, this); else if (n === "@resolution") t[n] = new Jw(n, a, this); else if (this.data[n].selector) t.selectors.push(rr.load(n, a, this)); else { let s = this.data[n].props; if (s) { let o = Le.load(n, a, this); for (let u of s) t[u] || (t[u] = { values: [] }), t[u].values.push(o) } else { let o = t[n] && t[n].values || []; t[n] = M.load(n, a, this), t[n].values = o } } } let r = { selectors: [] }; for (let n in e.remove) { let a = e.remove[n]; if (this.data[n].selector) { let s = rr.load(n, a); for (let o of a) r.selectors.push(s.old(o)) } else if (n === "@keyframes" || n === "@viewport") for (let s of a) { let o = `@${s}${n.slice(1)}`; r[o] = { remove: !0 } } else if (n === "@resolution") r[n] = new Jw(n, a, this); else { let s = this.data[n].props; if (s) { let o = Le.load(n, [], this); for (let u of a) { let c = o.old(u); if (c) for (let f of s) r[f] || (r[f] = {}), r[f].values || (r[f].values = []), r[f].values.push(c) } } else for (let o of a) { let u = this.decl(n).old(n, o); if (n === "align-self") { let c = t[n] && t[n].prefixes; if (c) { if (o === "-webkit- 2009" && c.includes("-webkit-")) continue; if (o === "-webkit-" && c.includes("-webkit- 2009")) continue } } for (let c of u) r[c] || (r[c] = {}), r[c].remove = !0 } } } return [t, r] } decl(e) { return tu.has(e) || tu.set(e, M.load(e)), tu.get(e) } unprefixed(e) { let t = this.normalize(Qw.unprefixed(e)); return t === "flex-direction" && (t = "flex-flow"), t } normalize(e) { return this.decl(e).normalize(e) } prefixed(e, t) { return e = Qw.unprefixed(e), this.decl(e).prefixed(e, t) } values(e, t) { let r = this[e], n = r["*"] && r["*"].values, a = r[t] && r[t].values; return n && a ? ir.uniq(n.concat(a)) : n || a || [] } group(e) { let t = e.parent, r = t.index(e), { length: n } = t.nodes, a = this.unprefixed(e.prop), s = (o, u) => { for (r += o; r >= 0 && r < n;) { let c = t.nodes[r]; if (c.type === "decl") { if (o === -1 && c.prop === a && !eu.withPrefix(c.value) || this.unprefixed(c.prop) !== a) break; if (u(c) === !0) return !0; if (o === 1 && c.prop === a && !eu.withPrefix(c.value)) break } r += o } return !1 }; return { up(o) { return s(-1, o) }, down(o) { return s(1, o) } } } }; Xw.exports = si }); var eb = v((Z4, Zw) => { l(); Zw.exports = { "backdrop-filter": { feature: "css-backdrop-filter", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5", "safari 16.5"] }, element: { props: ["background", "background-image", "border-image", "mask", "list-style", "list-style-image", "content", "mask-image"], feature: "css-element-function", browsers: ["firefox 114"] }, "user-select": { mistakes: ["-khtml-"], feature: "user-select-none", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5", "safari 16.5"] }, "background-clip": { feature: "background-clip-text", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, hyphens: { feature: "css-hyphens", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5", "safari 16.5"] }, fill: { props: ["width", "min-width", "max-width", "height", "min-height", "max-height", "inline-size", "min-inline-size", "max-inline-size", "block-size", "min-block-size", "max-block-size", "grid", "grid-template", "grid-template-rows", "grid-template-columns", "grid-auto-columns", "grid-auto-rows"], feature: "intrinsic-width", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "fill-available": { props: ["width", "min-width", "max-width", "height", "min-height", "max-height", "inline-size", "min-inline-size", "max-inline-size", "block-size", "min-block-size", "max-block-size", "grid", "grid-template", "grid-template-rows", "grid-template-columns", "grid-auto-columns", "grid-auto-rows"], feature: "intrinsic-width", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, stretch: { props: ["width", "min-width", "max-width", "height", "min-height", "max-height", "inline-size", "min-inline-size", "max-inline-size", "block-size", "min-block-size", "max-block-size", "grid", "grid-template", "grid-template-rows", "grid-template-columns", "grid-auto-columns", "grid-auto-rows"], feature: "intrinsic-width", browsers: ["firefox 114"] }, "fit-content": { props: ["width", "min-width", "max-width", "height", "min-height", "max-height", "inline-size", "min-inline-size", "max-inline-size", "block-size", "min-block-size", "max-block-size", "grid", "grid-template", "grid-template-rows", "grid-template-columns", "grid-auto-columns", "grid-auto-rows"], feature: "intrinsic-width", browsers: ["firefox 114"] }, "text-decoration-style": { feature: "text-decoration", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5"] }, "text-decoration-color": { feature: "text-decoration", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5"] }, "text-decoration-line": { feature: "text-decoration", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5"] }, "text-decoration": { feature: "text-decoration", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5"] }, "text-decoration-skip": { feature: "text-decoration", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5"] }, "text-decoration-skip-ink": { feature: "text-decoration", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5"] }, "text-size-adjust": { feature: "text-size-adjust", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5"] }, "mask-clip": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-composite": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-image": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-origin": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-repeat": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-border-repeat": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-border-source": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, mask: { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-position": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-size": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-border": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-border-outset": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-border-width": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "mask-border-slice": { feature: "css-masks", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, "clip-path": { feature: "css-clip-path", browsers: ["samsung 21"] }, "box-decoration-break": { feature: "css-boxdecorationbreak", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5", "opera 99", "safari 16.5", "samsung 21"] }, appearance: { feature: "css-appearance", browsers: ["samsung 21"] }, "image-set": { props: ["background", "background-image", "border-image", "cursor", "mask", "mask-image", "list-style", "list-style-image", "content"], feature: "css-image-set", browsers: ["and_uc 15.5", "chrome 109", "samsung 21"] }, "cross-fade": { props: ["background", "background-image", "border-image", "mask", "list-style", "list-style-image", "content", "mask-image"], feature: "css-cross-fade", browsers: ["and_chr 114", "and_uc 15.5", "chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99", "samsung 21"] }, isolate: { props: ["unicode-bidi"], feature: "css-unicode-bidi", browsers: ["ios_saf 16.1", "ios_saf 16.3", "ios_saf 16.4", "ios_saf 16.5", "safari 16.5"] }, "color-adjust": { feature: "css-color-adjust", browsers: ["chrome 109", "chrome 113", "chrome 114", "edge 114", "opera 99"] } } }); var rb = v((eq, tb) => { l(); tb.exports = {} }); var ab = v((tq, sb) => { - l(); var EO = Wo(), { agents: TO } = ($n(), Ln), ru = ym(), PO = pt(), DO = Kw(), IO = eb(), qO = rb(), ib = { browsers: TO, prefixes: IO }, nb = ` - Replace Autoprefixer \`browsers\` option to Browserslist config. - Use \`browserslist\` key in \`package.json\` or \`.browserslistrc\` file. - - Using \`browsers\` option can cause errors. Browserslist config can - be used for Babel, Autoprefixer, postcss-normalize and other tools. - - If you really need to use option, rename it to \`overrideBrowserslist\`. - - Learn more at: - https://github.com/browserslist/browserslist#readme - https://twitter.com/browserslist - -`; function RO(i) { return Object.prototype.toString.apply(i) === "[object Object]" } var iu = new Map; function MO(i, e) { - e.browsers.selected.length !== 0 && (e.add.selectors.length > 0 || Object.keys(e.add).length > 2 || i.warn(`Autoprefixer target browsers do not need any prefixes.You do not need Autoprefixer anymore. -Check your Browserslist config to be sure that your targets are set up correctly. - - Learn more at: - https://github.com/postcss/autoprefixer#readme - https://github.com/browserslist/browserslist#readme - -`)) - } sb.exports = nr; function nr(...i) { let e; if (i.length === 1 && RO(i[0]) ? (e = i[0], i = void 0) : i.length === 0 || i.length === 1 && !i[0] ? i = void 0 : i.length <= 2 && (Array.isArray(i[0]) || !i[0]) ? (e = i[1], i = i[0]) : typeof i[i.length - 1] == "object" && (e = i.pop()), e || (e = {}), e.browser) throw new Error("Change `browser` option to `overrideBrowserslist` in Autoprefixer"); if (e.browserslist) throw new Error("Change `browserslist` option to `overrideBrowserslist` in Autoprefixer"); e.overrideBrowserslist ? i = e.overrideBrowserslist : e.browsers && (typeof console != "undefined" && console.warn && (ru.red ? console.warn(ru.red(nb.replace(/`[^`]+`/g, n => ru.yellow(n.slice(1, -1))))) : console.warn(nb)), i = e.browsers); let t = { ignoreUnknownVersions: e.ignoreUnknownVersions, stats: e.stats, env: e.env }; function r(n) { let a = ib, s = new PO(a.browsers, i, n, t), o = s.selected.join(", ") + JSON.stringify(e); return iu.has(o) || iu.set(o, new DO(a.prefixes, s, e)), iu.get(o) } return { postcssPlugin: "autoprefixer", prepare(n) { let a = r({ from: n.opts.from, env: e.env }); return { OnceExit(s) { MO(n, a), e.remove !== !1 && a.processor.remove(s, n), e.add !== !1 && a.processor.add(s, n) } } }, info(n) { return n = n || {}, n.from = n.from || h.cwd(), qO(r(n)) }, options: e, browsers: i } } nr.postcss = !0; nr.data = ib; nr.defaults = EO.defaults; nr.info = () => nr().info() - }); var ob = {}; Ae(ob, { default: () => BO }); var BO, lb = C(() => { l(); BO = [] }); var fb = {}; Ae(fb, { default: () => FO }); var ub, FO, cb = C(() => { l(); hi(); ub = K(bi()), FO = Ze(ub.default.theme) }); var db = {}; Ae(db, { default: () => NO }); var pb, NO, hb = C(() => { l(); hi(); pb = K(bi()), NO = Ze(pb.default) }); l(); "use strict"; var LO = Je(mm()), $O = Je(ge()), jO = Je(ab()), zO = Je((lb(), ob)), VO = Je((cb(), fb)), UO = Je((hb(), db)), WO = Je((Zn(), ku)), GO = Je((wo(), yo)), HO = Je((hs(), tf)); function Je(i) { return i && i.__esModule ? i : { default: i } } console.warn("cdn.tailwindcss.com should not be used in production. To use Tailwind CSS in production, install it as a PostCSS plugin or use the Tailwind CLI: https://tailwindcss.com/docs/installation"); var Hn = "tailwind", nu = "text/tailwindcss", mb = "/template.html", xt, gb = !0, yb = 0, su = new Set, au, wb = "", bb = (i = !1) => ({ get(e, t) { return (!i || t === "config") && typeof e[t] == "object" && e[t] !== null ? new Proxy(e[t], bb()) : e[t] }, set(e, t, r) { return e[t] = r, (!i || t === "config") && ou(!0), !0 } }); window[Hn] = new Proxy({ config: {}, defaultTheme: VO.default, defaultConfig: UO.default, colors: WO.default, plugin: GO.default, resolveConfig: HO.default }, bb(!0)); function vb(i) { au.observe(i, { attributes: !0, attributeFilter: ["type"], characterData: !0, subtree: !0, childList: !0 }) } new MutationObserver(async i => { let e = !1; if (!au) { au = new MutationObserver(async () => await ou(!0)); for (let t of document.querySelectorAll(`style[type="${nu}"]`)) vb(t) } for (let t of i) for (let r of t.addedNodes) r.nodeType === 1 && r.tagName === "STYLE" && r.getAttribute("type") === nu && (vb(r), e = !0); await ou(e) }).observe(document.documentElement, { attributes: !0, attributeFilter: ["class"], childList: !0, subtree: !0 }); async function ou(i = !1) { i && (yb++, su.clear()); let e = ""; for (let r of document.querySelectorAll(`style[type="${nu}"]`)) e += r.textContent; let t = new Set; for (let r of document.querySelectorAll("[class]")) for (let n of r.classList) su.has(n) || t.add(n); if (document.body && (gb || t.size > 0 || e !== wb || !xt || !xt.isConnected)) { for (let n of t) su.add(n); gb = !1, wb = e, self[mb] = Array.from(t).join(" "); let { css: r } = await (0, $O.default)([(0, LO.default)({ ...window[Hn].config, _hash: yb, content: [mb], plugins: [...zO.default, ...Array.isArray(window[Hn].config.plugins) ? window[Hn].config.plugins : []] }), (0, jO.default)({ remove: !1 })]).process(`@tailwind base;@tailwind components;@tailwind utilities;${e}`); (!xt || !xt.isConnected) && (xt = document.createElement("style"), document.head.append(xt)), xt.textContent = r } } -})(); -/*! https://mths.be/cssesc v3.0.0 by @mathias */ \ No newline at end of file diff --git a/embed/src/utils/constants.js b/embed/src/utils/constants.js index 83de9a8c5..4330f2dbf 100644 --- a/embed/src/utils/constants.js +++ b/embed/src/utils/constants.js @@ -1 +1,15 @@ export const CHAT_UI_REOPEN = "___anythingllm-chat-widget-open___"; +export function parseStylesSrc(scriptSrc = null) { + try { + const _url = new URL(scriptSrc); + _url.pathname = _url.pathname + .replace("anythingllm-chat-widget.js", "anythingllm-chat-widget.min.css") + .replace( + "anythingllm-chat-widget.min.js", + "anythingllm-chat-widget.min.css" + ); + return _url.toString(); + } catch { + return ""; + } +} diff --git a/embed/tailwind.config.js b/embed/tailwind.config.js new file mode 100644 index 000000000..c9fd31454 --- /dev/null +++ b/embed/tailwind.config.js @@ -0,0 +1,103 @@ +/** @type {import('tailwindcss').Config} */ +export default { + darkMode: 'false', + prefix: 'allm-', + corePlugins: { + preflight: false, + }, + content: { + relative: true, + files: [ + "./src/components/**/*.{js,jsx}", + "./src/hooks/**/*.js", + "./src/models/**/*.js", + "./src/pages/**/*.{js,jsx}", + "./src/utils/**/*.js", + "./src/*.jsx", + "./index.html", + ] + }, + theme: { + extend: { + rotate: { + "270": "270deg", + "360": "360deg" + }, + colors: { + "black-900": "#141414", + accent: "#3D4147", + "sidebar-button": "#31353A", + sidebar: "#25272C", + "historical-msg-system": "rgba(255, 255, 255, 0.05);", + "historical-msg-user": "#2C2F35", + outline: "#4E5153", + "primary-button": "#46C8FF", + secondary: "#2C2F36", + "dark-input": "#18181B", + "mobile-onboarding": "#2C2F35", + "dark-highlight": "#1C1E21", + "dark-text": "#222628", + description: "#D2D5DB", + "x-button": "#9CA3AF" + }, + backgroundImage: { + "preference-gradient": + "linear-gradient(180deg, #5A5C63 0%, rgba(90, 92, 99, 0.28) 100%);", + "chat-msg-user-gradient": + "linear-gradient(180deg, #3D4147 0%, #2C2F35 100%);", + "selected-preference-gradient": + "linear-gradient(180deg, #313236 0%, rgba(63.40, 64.90, 70.13, 0) 100%);", + "main-gradient": "linear-gradient(180deg, #3D4147 0%, #2C2F35 100%)", + "modal-gradient": "linear-gradient(180deg, #3D4147 0%, #2C2F35 100%)", + "sidebar-gradient": "linear-gradient(90deg, #5B616A 0%, #3F434B 100%)", + "login-gradient": "linear-gradient(180deg, #3D4147 0%, #2C2F35 100%)", + "menu-item-gradient": + "linear-gradient(90deg, #3D4147 0%, #2C2F35 100%)", + "menu-item-selected-gradient": + "linear-gradient(90deg, #5B616A 0%, #3F434B 100%)", + "workspace-item-gradient": + "linear-gradient(90deg, #3D4147 0%, #2C2F35 100%)", + "workspace-item-selected-gradient": + "linear-gradient(90deg, #5B616A 0%, #3F434B 100%)", + "switch-selected": "linear-gradient(146deg, #5B616A 0%, #3F434B 100%)" + }, + fontFamily: { + sans: [ + "plus-jakarta-sans", + "ui-sans-serif", + "system-ui", + "-apple-system", + "BlinkMacSystemFont", + '"Segoe UI"', + "Roboto", + '"Helvetica Neue"', + "Arial", + '"Noto Sans"', + "sans-serif", + '"Apple Color Emoji"', + '"Segoe UI Emoji"', + '"Segoe UI Symbol"', + '"Noto Color Emoji"' + ] + }, + animation: { + sweep: "sweep 0.5s ease-in-out" + }, + keyframes: { + sweep: { + "0%": { transform: "scaleX(0)", transformOrigin: "bottom left" }, + "100%": { transform: "scaleX(1)", transformOrigin: "bottom left" } + }, + fadeIn: { + "0%": { opacity: 0 }, + "100%": { opacity: 1 } + }, + fadeOut: { + "0%": { opacity: 1 }, + "100%": { opacity: 0 } + } + } + } + }, + plugins: [] +} diff --git a/embed/vite.config.js b/embed/vite.config.js index 9e23c70d2..87f300b9d 100644 --- a/embed/vite.config.js +++ b/embed/vite.config.js @@ -1,6 +1,7 @@ // vite.config.js import { defineConfig } from "vite" import { fileURLToPath, URL } from "url" +import postcss from "./postcss.config.js" import react from "@vitejs/plugin-react" import image from "@rollup/plugin-image" @@ -10,6 +11,9 @@ export default defineConfig({ // In dev, we need to disable this, but in prod, we need to enable it "process.env.NODE_ENV": JSON.stringify("production") }, + css: { + postcss + }, resolve: { alias: [ { diff --git a/embed/yarn.lock b/embed/yarn.lock index b00de5b0b..b5fd4fab8 100644 --- a/embed/yarn.lock +++ b/embed/yarn.lock @@ -7,6 +7,11 @@ resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== +"@alloc/quick-lru@^5.2.0": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30" + integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + "@ampproject/remapping@^2.2.0": version "2.2.1" resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" @@ -379,6 +384,18 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917" integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + "@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": version "0.3.3" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" @@ -432,12 +449,12 @@ "@nodelib/fs.stat" "2.0.5" run-parallel "^1.1.9" -"@nodelib/fs.stat@2.0.5": +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": version "2.0.5" resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== -"@nodelib/fs.walk@^1.2.8": +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": version "1.2.8" resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== @@ -450,6 +467,11 @@ resolved "https://registry.yarnpkg.com/@phosphor-icons/react/-/react-2.0.15.tgz#4d8e28484d45649f53a6cd75db161cf8b8379e1d" integrity sha512-PQKNcRrfERlC8gJGNz0su0i9xVmeubXSNxucPcbCLDd9u0cwJVTEyYK87muul/svf0UXFdL2Vl6bbeOhT1Mwow== +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + "@rollup/plugin-image@^3.0.3": version "3.0.3" resolved "https://registry.yarnpkg.com/@rollup/plugin-image/-/plugin-image-3.0.3.tgz#025b557180bae20f2349ff5130ef2114169feaac" @@ -684,7 +706,7 @@ ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -ansi-styles@^4.1.0: +ansi-styles@^4.0.0, ansi-styles@^4.1.0: version "4.3.0" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== @@ -696,6 +718,11 @@ ansi-styles@^6.1.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== +any-promise@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" + integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + anymatch@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" @@ -709,7 +736,7 @@ arch@^2.2.0: resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== -arg@5.0.2: +arg@5.0.2, arg@^5.0.2: version "5.0.2" resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== @@ -838,6 +865,13 @@ brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + braces@^3.0.2, braces@~3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" @@ -845,6 +879,13 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" +braces@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" + integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== + dependencies: + fill-range "^7.1.1" + browserslist@^4.22.2: version "4.22.3" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.3.tgz#299d11b7e947a6b843981392721169e27d60c5a6" @@ -879,6 +920,11 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== +camelcase-css@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" + integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== + camelcase@^7.0.0: version "7.0.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-7.0.1.tgz#f02e50af9fd7782bc8b88a3558c32fd3a388f048" @@ -938,6 +984,38 @@ chokidar@^3.5.2: optionalDependencies: fsevents "~2.3.2" +chokidar@^3.5.3: + version "3.6.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b" + integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw== + dependencies: + anymatch "~3.1.2" + braces "~3.0.2" + glob-parent "~5.1.2" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.6.0" + optionalDependencies: + fsevents "~2.3.2" + +clean-css-cli@^5.6.3: + version "5.6.3" + resolved "https://registry.yarnpkg.com/clean-css-cli/-/clean-css-cli-5.6.3.tgz#be2d65c9b17bba01a598d7eeb5ce68f4119f07b5" + integrity sha512-MUAta8pEqA/d2DKQwtZU5nm0Og8TCyAglOx3GlWwjhGdKBwY4kVF6E5M6LU/jmmuswv+HbYqG/dKKkq5p1dD0A== + dependencies: + chokidar "^3.5.2" + clean-css "^5.3.3" + commander "7.x" + glob "^7.1.6" + +clean-css@^5.3.3: + version "5.3.3" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-5.3.3.tgz#b330653cd3bd6b75009cc25c714cae7b93351ccd" + integrity sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg== + dependencies: + source-map "~0.6.0" + cli-boxes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-3.0.0.tgz#71a10c716feeba005e4504f36329ef0b17cf3145" @@ -976,11 +1054,21 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +commander@7.x: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + commander@^2.20.0: version "2.20.3" resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== +commander@^4.0.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + compressible@~2.0.16: version "2.0.18" resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba" @@ -1016,7 +1104,7 @@ convert-source-map@^2.0.0: resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== -cross-spawn@^7.0.2, cross-spawn@^7.0.3: +cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3: version "7.0.3" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== @@ -1025,6 +1113,11 @@ cross-spawn@^7.0.2, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + csstype@^3.0.2: version "3.1.3" resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" @@ -1079,6 +1172,16 @@ define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: has-property-descriptors "^1.0.0" object-keys "^1.1.1" +didyoumean@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" + integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== + +dlv@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" + integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== + doctrine@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" @@ -1404,6 +1507,17 @@ fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== +fast-glob@^3.3.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + fast-json-stable-stringify@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" @@ -1442,6 +1556,13 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +fill-range@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" + integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== + dependencies: + to-regex-range "^5.0.1" + find-up@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" @@ -1471,6 +1592,14 @@ for-each@^0.3.3: dependencies: is-callable "^1.1.3" +foreground-child@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.2.1.tgz#767004ccf3a5b30df39bed90718bab43fe0a59f7" + integrity sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + fraction.js@^4.3.7: version "4.3.7" resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7" @@ -1534,6 +1663,13 @@ get-symbol-description@^1.0.0: call-bind "^1.0.2" get-intrinsic "^1.1.1" +glob-parent@^5.1.2, glob-parent@~5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + glob-parent@^6.0.2: version "6.0.2" resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" @@ -1541,14 +1677,19 @@ glob-parent@^6.0.2: dependencies: is-glob "^4.0.3" -glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== +glob@^10.3.10: + version "10.4.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.2.tgz#bed6b95dade5c1f80b4434daced233aee76160e5" + integrity sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w== dependencies: - is-glob "^4.0.1" + foreground-child "^3.1.0" + jackspeak "^3.1.2" + minimatch "^9.0.4" + minipass "^7.1.2" + package-json-from-dist "^1.0.0" + path-scurry "^1.11.1" -glob@^7.1.3: +glob@^7.1.3, glob@^7.1.6: version "7.2.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -1921,6 +2062,20 @@ iterator.prototype@^1.1.2: reflect.getprototypeof "^1.0.4" set-function-name "^2.0.1" +jackspeak@^3.1.2: + version "3.4.0" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.0.tgz#a75763ff36ad778ede6a156d8ee8b124de445b4a" + integrity sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + +jiti@^1.19.1: + version "1.21.6" + resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.6.tgz#6c7f7398dd4b3142767f9a168af2f317a428d268" + integrity sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w== + "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" @@ -1988,6 +2143,21 @@ levn@^0.4.1: prelude-ls "^1.2.1" type-check "~0.4.0" +lilconfig@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lilconfig@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.2.tgz#e4a7c3cb549e3a606c8dcc32e5ae1005e62c05cb" + integrity sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + linkify-it@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-4.0.1.tgz#01f1d5e508190d06669982ba31a7d9f56a5751ec" @@ -2019,6 +2189,11 @@ loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" +lru-cache@^10.2.0: + version "10.3.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.3.0.tgz#4a4aaf10c84658ab70f79a85a9a3f1e1fb11196b" + integrity sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ== + lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -2047,6 +2222,19 @@ merge-stream@^2.0.0: resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== +merge2@^1.3.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4: + version "4.0.7" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" + integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== + dependencies: + braces "^3.0.3" + picomatch "^2.3.1" + micromatch@^4.0.5: version "4.0.5" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" @@ -2096,11 +2284,23 @@ minimatch@3.1.2, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: dependencies: brace-expansion "^1.1.7" +minimatch@^9.0.4: + version "9.0.5" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" + integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== + dependencies: + brace-expansion "^2.0.1" + minimist@^1.2.0: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707" + integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw== + ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" @@ -2116,6 +2316,15 @@ ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +mz@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" + integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + dependencies: + any-promise "^1.0.0" + object-assign "^4.0.1" + thenify-all "^1.0.0" + nanoid@^3.3.7: version "3.3.7" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" @@ -2176,11 +2385,16 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" -object-assign@^4.1.1: +object-assign@^4.0.1, object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== +object-hash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" + integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== + object-inspect@^1.13.1, object-inspect@^1.9.0: version "1.13.1" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" @@ -2281,6 +2495,11 @@ p-locate@^5.0.0: dependencies: p-limit "^3.0.2" +package-json-from-dist@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00" + integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw== + parent-module@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" @@ -2313,6 +2532,14 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-scurry@^1.11.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2" + integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA== + dependencies: + lru-cache "^10.2.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-to-regexp@2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-2.2.1.tgz#90b617025a16381a879bc82a38d4e8bdeb2bcf45" @@ -2323,16 +2550,79 @@ picocolors@^1.0.0: resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== +picocolors@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" + integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== -postcss-value-parser@^4.2.0: +pify@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== + +pirates@^4.0.1: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +postcss-import@^15.1.0: + version "15.1.0" + resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70" + integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== + dependencies: + postcss-value-parser "^4.0.0" + read-cache "^1.0.0" + resolve "^1.1.7" + +postcss-js@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.1.tgz#61598186f3703bab052f1c4f7d805f3991bee9d2" + integrity sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== + dependencies: + camelcase-css "^2.0.1" + +postcss-load-config@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3" + integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ== + dependencies: + lilconfig "^3.0.0" + yaml "^2.3.4" + +postcss-nested@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.0.1.tgz#f83dc9846ca16d2f4fa864f16e9d9f7d0961662c" + integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== + dependencies: + postcss-selector-parser "^6.0.11" + +postcss-selector-parser@^6.0.11: + version "6.1.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz#49694cb4e7c649299fea510a29fa6577104bcf53" + integrity sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== +postcss@^8.4.23: + version "8.4.39" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.39.tgz#aa3c94998b61d3a9c259efa51db4b392e1bde0e3" + integrity sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.1" + source-map-js "^1.2.0" + postcss@^8.4.32: version "8.4.33" resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.33.tgz#1378e859c9f69bf6f638b990a0212f43e2aaa742" @@ -2421,6 +2711,13 @@ react@^18.2.0: dependencies: loose-envify "^1.1.0" +read-cache@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" + integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== + dependencies: + pify "^2.3.0" + readdirp@~3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" @@ -2474,6 +2771,15 @@ resolve-from@^4.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== +resolve@^1.1.7, resolve@^1.22.2: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + resolve@^2.0.0-next.4: version "2.0.0-next.5" resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c" @@ -2652,6 +2958,11 @@ signal-exit@^3.0.3: resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + simple-update-notifier@^1.0.7: version "1.1.0" resolved "https://registry.yarnpkg.com/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz#67694c121de354af592b347cdba798463ed49c82" @@ -2664,6 +2975,11 @@ source-map-js@^1.0.2: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== + source-map-support@~0.5.20: version "0.5.21" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" @@ -2672,12 +2988,12 @@ source-map-support@~0.5.20: buffer-from "^1.0.0" source-map "^0.6.0" -source-map@^0.6.0: +source-map@^0.6.0, source-map@~0.6.0: version "0.6.1" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -string-width@^4.1.0: +"string-width-cjs@npm:string-width@^4.2.0", string-width@^4.1.0: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -2737,7 +3053,7 @@ string.prototype.trimstart@^1.0.7: define-properties "^1.2.0" es-abstract "^1.22.1" -strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -2766,6 +3082,19 @@ strip-json-comments@~2.0.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== +sucrase@^3.32.0: + version "3.35.0" + resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263" + integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA== + dependencies: + "@jridgewell/gen-mapping" "^0.3.2" + commander "^4.0.0" + glob "^10.3.10" + lines-and-columns "^1.1.6" + mz "^2.7.0" + pirates "^4.0.1" + ts-interface-checker "^0.1.9" + supports-color@^5.3.0, supports-color@^5.5.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" @@ -2785,6 +3114,34 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== +tailwindcss@3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.1.tgz#f512ca5d1dd4c9503c7d3d28a968f1ad8f5c839d" + integrity sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA== + dependencies: + "@alloc/quick-lru" "^5.2.0" + arg "^5.0.2" + chokidar "^3.5.3" + didyoumean "^1.2.2" + dlv "^1.1.3" + fast-glob "^3.3.0" + glob-parent "^6.0.2" + is-glob "^4.0.3" + jiti "^1.19.1" + lilconfig "^2.1.0" + micromatch "^4.0.5" + normalize-path "^3.0.0" + object-hash "^3.0.0" + picocolors "^1.0.0" + postcss "^8.4.23" + postcss-import "^15.1.0" + postcss-js "^4.0.1" + postcss-load-config "^4.0.1" + postcss-nested "^6.0.1" + postcss-selector-parser "^6.0.11" + resolve "^1.22.2" + sucrase "^3.32.0" + terser@^5.27.0: version "5.27.0" resolved "https://registry.yarnpkg.com/terser/-/terser-5.27.0.tgz#70108689d9ab25fef61c4e93e808e9fd092bf20c" @@ -2800,6 +3157,20 @@ text-table@^0.2.0: resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== +thenify-all@^1.0.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" + integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + dependencies: + thenify ">= 3.1.0 < 4" + +"thenify@>= 3.1.0 < 4": + version "3.3.1" + resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" + integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + dependencies: + any-promise "^1.0.0" + to-fast-properties@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" @@ -2819,6 +3190,11 @@ touch@^3.1.0: dependencies: nopt "~1.0.10" +ts-interface-checker@^0.1.9: + version "0.1.13" + resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" + integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" @@ -2918,6 +3294,11 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" +util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + uuid@^9.0.1: version "9.0.1" resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" @@ -3010,7 +3391,16 @@ widest-line@^4.0.1: dependencies: string-width "^5.0.1" -wrap-ansi@^8.0.1: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^8.0.1, wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== @@ -3029,6 +3419,11 @@ yallist@^3.0.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== +yaml@^2.3.4: + version "2.4.5" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.4.5.tgz#60630b206dd6d84df97003d33fc1ddf6296cca5e" + integrity sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg== + yocto-queue@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" diff --git a/frontend/public/embed/anythingllm-chat-widget.min.css b/frontend/public/embed/anythingllm-chat-widget.min.css new file mode 100644 index 000000000..c51c1f5d9 --- /dev/null +++ b/frontend/public/embed/anythingllm-chat-widget.min.css @@ -0,0 +1 @@ +*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.allm-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.allm-fixed{position:fixed}.allm-absolute{position:absolute}.allm-relative{position:relative}.allm-sticky{position:sticky}.allm-inset-0{top:0;right:0;bottom:0;left:0}.allm-bottom-0{bottom:0}.allm-bottom-\[10rem\]{bottom:10rem}.allm-left-0{left:0}.allm-right-0{right:0}.allm-right-\[46px\]{right:46px}.allm-right-\[50px\]{right:50px}.allm-top-0{top:0}.allm-top-\[64px\]{top:64px}.allm-z-10{z-index:10}.allm-z-50{z-index:50}.allm-mx-2{margin-left:.5rem;margin-right:.5rem}.allm-mx-4{margin-left:1rem;margin-right:1rem}.allm-mx-\[20px\]{margin-left:20px;margin-right:20px}.allm-my-1{margin-top:.25rem;margin-bottom:.25rem}.allm-my-3{margin-top:.75rem;margin-bottom:.75rem}.allm-mb-1{margin-bottom:.25rem}.allm-mb-2{margin-bottom:.5rem}.allm-mb-4{margin-bottom:1rem}.allm-ml-2{margin-left:.5rem}.allm-ml-4{margin-left:1rem}.allm-ml-\[54px\]{margin-left:54px}.allm-ml-\[9px\]{margin-left:9px}.allm-mr-4{margin-right:1rem}.allm-mr-6{margin-right:1.5rem}.allm-mr-\[37px\]{margin-right:37px}.allm-mt-2{margin-top:.5rem}.allm-mt-3{margin-top:.75rem}.allm-mt-4{margin-top:1rem}.allm-block{display:block}.allm-inline-block{display:inline-block}.allm-flex{display:flex}.allm-inline-flex{display:inline-flex}.allm-hidden{display:none}.allm-h-4{height:1rem}.allm-h-5{height:1.25rem}.allm-h-9{height:2.25rem}.allm-h-\[76px\]{height:76px}.allm-h-fit{height:-moz-fit-content;height:fit-content}.allm-h-full{height:100%}.allm-max-h-\[100px\]{max-height:100px}.allm-max-h-\[82vh\]{max-height:82vh}.allm-w-4{width:1rem}.allm-w-5{width:1.25rem}.allm-w-9{width:2.25rem}.allm-w-full{width:100%}.allm-flex-shrink-0{flex-shrink:0}.allm-flex-grow{flex-grow:1}@keyframes allm-pulse{50%{opacity:.5}}.allm-animate-pulse{animation:allm-pulse 2s cubic-bezier(.4,0,.6,1) infinite}@keyframes allm-spin{to{transform:rotate(360deg)}}.allm-animate-spin{animation:allm-spin 1s linear infinite}.allm-cursor-pointer{cursor:pointer}.allm-cursor-text{cursor:text}.allm-resize-none{resize:none}.allm-flex-col{flex-direction:column}.allm-items-start{align-items:flex-start}.allm-items-end{align-items:flex-end}.allm-items-center{align-items:center}.allm-justify-start{justify-content:flex-start}.allm-justify-end{justify-content:flex-end}.allm-justify-center{justify-content:center}.allm-gap-x-1{-moz-column-gap:.25rem;column-gap:.25rem}.allm-gap-x-4{-moz-column-gap:1rem;column-gap:1rem}.allm-gap-x-5{-moz-column-gap:1.25rem;column-gap:1.25rem}.allm-gap-x-\[12px\]{-moz-column-gap:12px;column-gap:12px}.allm-gap-y-1{row-gap:.25rem}.allm-gap-y-2{row-gap:.5rem}.allm-overflow-hidden{overflow:hidden}.allm-overflow-y-auto{overflow-y:auto}.allm-overflow-y-scroll{overflow-y:scroll}.allm-whitespace-pre-line{white-space:pre-line}.allm-rounded-2xl{border-radius:1rem}.allm-rounded-full{border-radius:9999px}.allm-rounded-lg{border-radius:.5rem}.allm-rounded-sm{border-radius:.125rem}.allm-rounded-xl{border-radius:.75rem}.allm-rounded-t-2xl{border-top-left-radius:1rem;border-top-right-radius:1rem}.allm-rounded-t-\[18px\]{border-top-left-radius:18px;border-top-right-radius:18px}.allm-rounded-t-lg{border-top-left-radius:.5rem;border-top-right-radius:.5rem}.allm-rounded-bl-\[18px\]{border-bottom-left-radius:18px}.allm-rounded-bl-\[4px\]{border-bottom-left-radius:4px}.allm-rounded-br-\[18px\]{border-bottom-right-radius:18px}.allm-rounded-br-\[4px\]{border-bottom-right-radius:4px}.allm-border{border-width:1px}.allm-border-l-2{border-left-width:2px}.allm-border-none{border-style:none}.allm-border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.allm-border-red-500{--tw-border-opacity:1;border-color:rgb(239 68 68 / var(--tw-border-opacity))}.allm-border-white\/10{border-color:#ffffff1a}.allm-bg-black\/20{background-color:#0003}.allm-bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.allm-bg-red-200{--tw-bg-opacity:1;background-color:rgb(254 202 202 / var(--tw-bg-opacity))}.allm-bg-red-300{--tw-bg-opacity:1;background-color:rgb(252 165 165 / var(--tw-bg-opacity))}.allm-bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242 / var(--tw-bg-opacity))}.allm-bg-transparent{background-color:transparent}.allm-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.allm-p-1{padding:.25rem}.allm-p-2{padding:.5rem}.allm-p-4{padding:1rem}.allm-px-2{padding-left:.5rem;padding-right:.5rem}.allm-px-4{padding-left:1rem;padding-right:1rem}.allm-px-\[22px\]{padding-left:22px;padding-right:22px}.allm-py-2{padding-top:.5rem;padding-bottom:.5rem}.allm-py-4{padding-top:1rem;padding-bottom:1rem}.allm-py-\[11px\]{padding-top:11px;padding-bottom:11px}.allm-py-\[5px\]{padding-top:5px;padding-bottom:5px}.allm-pb-2{padding-bottom:.5rem}.allm-pb-4{padding-bottom:1rem}.allm-pb-\[100px\]{padding-bottom:100px}.allm-pb-\[30px\]{padding-bottom:30px}.allm-pl-2{padding-left:.5rem}.allm-pt-4{padding-top:1rem}.allm-pt-\[5px\]{padding-top:5px}.allm-text-left{text-align:left}.allm-text-center{text-align:center}.allm-text-right{text-align:right}.allm-font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.allm-font-sans{font-family:plus-jakarta-sans,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji"}.\!allm-text-xs{font-size:.75rem!important;line-height:1rem!important}.allm-text-2xl{font-size:1.5rem;line-height:2rem}.allm-text-\[10px\]{font-size:10px}.allm-text-\[14px\]{font-size:14px}.allm-text-base{font-size:1rem;line-height:1.5rem}.allm-text-sm{font-size:.875rem;line-height:1.25rem}.allm-text-xs{font-size:.75rem;line-height:1rem}.allm-font-bold{font-weight:700}.allm-font-normal{font-weight:400}.allm-leading-\[20px\]{line-height:20px}.allm-text-\[\#22262899\]\/60{color:#22262899}.allm-text-\[\#222628\]{--tw-text-opacity:1;color:rgb(34 38 40 / var(--tw-text-opacity))}.allm-text-\[\#7A7D7E\]{--tw-text-opacity:1;color:rgb(122 125 126 / var(--tw-text-opacity))}.allm-text-black{--tw-text-opacity:1;color:rgb(0 0 0 / var(--tw-text-opacity))}.allm-text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219 / var(--tw-text-opacity))}.allm-text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175 / var(--tw-text-opacity))}.allm-text-green-500{--tw-text-opacity:1;color:rgb(34 197 94 / var(--tw-text-opacity))}.allm-text-red-500{--tw-text-opacity:1;color:rgb(239 68 68 / var(--tw-text-opacity))}.allm-text-slate-400{--tw-text-opacity:1;color:rgb(148 163 184 / var(--tw-text-opacity))}.allm-text-slate-800\/60{color:#1e293b99}.allm-text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.allm-text-white\/50{color:#ffffff80}.allm-text-zinc-300{--tw-text-opacity:1;color:rgb(212 212 216 / var(--tw-text-opacity))}.allm-no-underline{text-decoration-line:none}.allm-shadow-\[0_4px_14px_rgba\(0\,0\,0\,0\.25\)\]{--tw-shadow:0 4px 14px rgba(0,0,0,.25);--tw-shadow-colored:0 4px 14px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.allm-shadow-lg{--tw-shadow:0 10px 15px -3px rgb(0 0 0 / .1),0 4px 6px -4px rgb(0 0 0 / .1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.placeholder\:allm-text-slate-800\/60::-moz-placeholder{color:#1e293b99}.placeholder\:allm-text-slate-800\/60::placeholder{color:#1e293b99}.hover\:allm-cursor-pointer:hover{cursor:pointer}.hover\:allm-bg-black\/50:hover{background-color:#00000080}.hover\:allm-bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.hover\:allm-underline:hover{text-decoration-line:underline}.hover\:allm-opacity-80:hover{opacity:.8}.hover\:allm-opacity-95:hover{opacity:.95}.focus\:allm-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.active\:allm-outline-none:active{outline:2px solid transparent;outline-offset:2px}.allm-group:hover .group-hover\:allm-text-\[\#22262899\]\/90{color:#222628e6} \ No newline at end of file diff --git a/frontend/public/embed/anythingllm-chat-widget.min.js b/frontend/public/embed/anythingllm-chat-widget.min.js index 009050332..ec77aa8a4 100644 --- a/frontend/public/embed/anythingllm-chat-widget.min.js +++ b/frontend/public/embed/anythingllm-chat-widget.min.js @@ -1,4 +1,4 @@ -!function(Jn,Nt){"object"==typeof exports&&typeof module<"u"?Nt(exports):"function"==typeof define&&define.amd?define(["exports"],Nt):Nt((Jn=typeof globalThis<"u"?globalThis:Jn||self).EmbeddedAnythingLLM={})}(this,(function(Jn){"use strict";var I1,Nt=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function jo(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Ju={exports:{}},Wo={},ec={exports:{}},ee={},zr=Symbol.for("react.element"),K1=Symbol.for("react.portal"),X1=Symbol.for("react.fragment"),Q1=Symbol.for("react.strict_mode"),J1=Symbol.for("react.profiler"),eg=Symbol.for("react.provider"),tg=Symbol.for("react.context"),ng=Symbol.for("react.forward_ref"),rg=Symbol.for("react.suspense"),og=Symbol.for("react.memo"),ag=Symbol.for("react.lazy"),tc=Symbol.iterator; +!function(Jn,Nt){"object"==typeof exports&&typeof module<"u"?Nt(exports):"function"==typeof define&&define.amd?define(["exports"],Nt):Nt((Jn=typeof globalThis<"u"?globalThis:Jn||self).EmbeddedAnythingLLM={})}(this,(function(Jn){"use strict";var I1,M1,Nt=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function jo(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Ju={exports:{}},Wo={},ec={exports:{}},ee={},zr=Symbol.for("react.element"),X1=Symbol.for("react.portal"),Q1=Symbol.for("react.fragment"),J1=Symbol.for("react.strict_mode"),em=Symbol.for("react.profiler"),tm=Symbol.for("react.provider"),nm=Symbol.for("react.context"),rm=Symbol.for("react.forward_ref"),om=Symbol.for("react.suspense"),am=Symbol.for("react.memo"),sm=Symbol.for("react.lazy"),tc=Symbol.iterator; /** * @license React * react.production.min.js @@ -7,7 +7,7 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var nc={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},rc=Object.assign,oc={};function er(e,t,n){this.props=e,this.context=t,this.refs=oc,this.updater=n||nc}function ac(){}function Vs(e,t,n){this.props=e,this.context=t,this.refs=oc,this.updater=n||nc}er.prototype.isReactComponent={},er.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)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")},er.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},ac.prototype=er.prototype;var zs=Vs.prototype=new ac;zs.constructor=Vs,rc(zs,er.prototype),zs.isPureReactComponent=!0;var sc=Array.isArray,ic=Object.prototype.hasOwnProperty,Gs={current:null},lc={key:!0,ref:!0,__self:!0,__source:!0};function uc(e,t,n){var r,o={},a=null,s=null;if(null!=t)for(r in void 0!==t.ref&&(s=t.ref),void 0!==t.key&&(a=""+t.key),t)ic.call(t,r)&&!lc.hasOwnProperty(r)&&(o[r]=t[r]);var i=arguments.length-2;if(1===i)o.children=n;else if(1<i){for(var l=Array(i),u=0;u<i;u++)l[u]=arguments[u+2];o.children=l}if(e&&e.defaultProps)for(r in i=e.defaultProps)void 0===o[r]&&(o[r]=i[r]);return{$$typeof:zr,type:e,key:a,ref:s,props:o,_owner:Gs.current}}function $s(e){return"object"==typeof e&&null!==e&&e.$$typeof===zr}var cc=/\/+/g;function Zs(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(n){return t[n]}))}(""+e.key):t.toString(36)}function Yo(e,t,n,r,o){var a=typeof e;("undefined"===a||"boolean"===a)&&(e=null);var s=!1;if(null===e)s=!0;else switch(a){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case zr:case K1:s=!0}}if(s)return o=o(s=e),e=""===r?"."+Zs(s,0):r,sc(o)?(n="",null!=e&&(n=e.replace(cc,"$&/")+"/"),Yo(o,t,n,"",(function(u){return u}))):null!=o&&($s(o)&&(o=function(e,t){return{$$typeof:zr,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(o,n+(!o.key||s&&s.key===o.key?"":(""+o.key).replace(cc,"$&/")+"/")+e)),t.push(o)),1;if(s=0,r=""===r?".":r+":",sc(e))for(var i=0;i<e.length;i++){var l=r+Zs(a=e[i],i);s+=Yo(a,t,n,l,o)}else if(l=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=tc&&e[tc]||e["@@iterator"])?e:null}(e),"function"==typeof l)for(e=l.call(e),i=0;!(a=e.next()).done;)s+=Yo(a=a.value,t,n,l=r+Zs(a,i++),o);else if("object"===a)throw t=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return s}function Ko(e,t,n){if(null==e)return e;var r=[],o=0;return Yo(e,r,"","",(function(a){return t.call(n,a,o++)})),r}function ug(e){if(-1===e._status){var t=e._result;(t=t()).then((function(n){(0===e._status||-1===e._status)&&(e._status=1,e._result=n)}),(function(n){(0===e._status||-1===e._status)&&(e._status=2,e._result=n)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var We={current:null},Xo={transition:null},cg={ReactCurrentDispatcher:We,ReactCurrentBatchConfig:Xo,ReactCurrentOwner:Gs};ee.Children={map:Ko,forEach:function(e,t,n){Ko(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return Ko(e,(function(){t++})),t},toArray:function(e){return Ko(e,(function(t){return t}))||[]},only:function(e){if(!$s(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},ee.Component=er,ee.Fragment=X1,ee.Profiler=J1,ee.PureComponent=Vs,ee.StrictMode=Q1,ee.Suspense=rg,ee.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=cg,ee.cloneElement=function(e,t,n){if(null==e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var r=rc({},e.props),o=e.key,a=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,s=Gs.current),void 0!==t.key&&(o=""+t.key),e.type&&e.type.defaultProps)var i=e.type.defaultProps;for(l in t)ic.call(t,l)&&!lc.hasOwnProperty(l)&&(r[l]=void 0===t[l]&&void 0!==i?i[l]:t[l])}var l=arguments.length-2;if(1===l)r.children=n;else if(1<l){i=Array(l);for(var u=0;u<l;u++)i[u]=arguments[u+2];r.children=i}return{$$typeof:zr,type:e.type,key:o,ref:a,props:r,_owner:s}},ee.createContext=function(e){return(e={$$typeof:tg,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:eg,_context:e},e.Consumer=e},ee.createElement=uc,ee.createFactory=function(e){var t=uc.bind(null,e);return t.type=e,t},ee.createRef=function(){return{current:null}},ee.forwardRef=function(e){return{$$typeof:ng,render:e}},ee.isValidElement=$s,ee.lazy=function(e){return{$$typeof:ag,_payload:{_status:-1,_result:e},_init:ug}},ee.memo=function(e,t){return{$$typeof:og,type:e,compare:void 0===t?null:t}},ee.startTransition=function(e){var t=Xo.transition;Xo.transition={};try{e()}finally{Xo.transition=t}},ee.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},ee.useCallback=function(e,t){return We.current.useCallback(e,t)},ee.useContext=function(e){return We.current.useContext(e)},ee.useDebugValue=function(){},ee.useDeferredValue=function(e){return We.current.useDeferredValue(e)},ee.useEffect=function(e,t){return We.current.useEffect(e,t)},ee.useId=function(){return We.current.useId()},ee.useImperativeHandle=function(e,t,n){return We.current.useImperativeHandle(e,t,n)},ee.useInsertionEffect=function(e,t){return We.current.useInsertionEffect(e,t)},ee.useLayoutEffect=function(e,t){return We.current.useLayoutEffect(e,t)},ee.useMemo=function(e,t){return We.current.useMemo(e,t)},ee.useReducer=function(e,t,n){return We.current.useReducer(e,t,n)},ee.useRef=function(e){return We.current.useRef(e)},ee.useState=function(e){return We.current.useState(e)},ee.useSyncExternalStore=function(e,t,n){return We.current.useSyncExternalStore(e,t,n)},ee.useTransition=function(){return We.current.useTransition()},ee.version="18.2.0",ec.exports=ee;var Z=ec.exports;const f=jo(Z); + */var nc={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},rc=Object.assign,oc={};function er(e,t,n){this.props=e,this.context=t,this.refs=oc,this.updater=n||nc}function ac(){}function Vs(e,t,n){this.props=e,this.context=t,this.refs=oc,this.updater=n||nc}er.prototype.isReactComponent={},er.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)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")},er.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},ac.prototype=er.prototype;var zs=Vs.prototype=new ac;zs.constructor=Vs,rc(zs,er.prototype),zs.isPureReactComponent=!0;var sc=Array.isArray,ic=Object.prototype.hasOwnProperty,Gs={current:null},lc={key:!0,ref:!0,__self:!0,__source:!0};function uc(e,t,n){var r,o={},a=null,s=null;if(null!=t)for(r in void 0!==t.ref&&(s=t.ref),void 0!==t.key&&(a=""+t.key),t)ic.call(t,r)&&!lc.hasOwnProperty(r)&&(o[r]=t[r]);var i=arguments.length-2;if(1===i)o.children=n;else if(1<i){for(var l=Array(i),u=0;u<i;u++)l[u]=arguments[u+2];o.children=l}if(e&&e.defaultProps)for(r in i=e.defaultProps)void 0===o[r]&&(o[r]=i[r]);return{$$typeof:zr,type:e,key:a,ref:s,props:o,_owner:Gs.current}}function $s(e){return"object"==typeof e&&null!==e&&e.$$typeof===zr}var cc=/\/+/g;function Zs(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(n){return t[n]}))}(""+e.key):t.toString(36)}function Yo(e,t,n,r,o){var a=typeof e;("undefined"===a||"boolean"===a)&&(e=null);var s=!1;if(null===e)s=!0;else switch(a){case"string":case"number":s=!0;break;case"object":switch(e.$$typeof){case zr:case X1:s=!0}}if(s)return o=o(s=e),e=""===r?"."+Zs(s,0):r,sc(o)?(n="",null!=e&&(n=e.replace(cc,"$&/")+"/"),Yo(o,t,n,"",(function(u){return u}))):null!=o&&($s(o)&&(o=function(e,t){return{$$typeof:zr,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(o,n+(!o.key||s&&s.key===o.key?"":(""+o.key).replace(cc,"$&/")+"/")+e)),t.push(o)),1;if(s=0,r=""===r?".":r+":",sc(e))for(var i=0;i<e.length;i++){var l=r+Zs(a=e[i],i);s+=Yo(a,t,n,l,o)}else if(l=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=tc&&e[tc]||e["@@iterator"])?e:null}(e),"function"==typeof l)for(e=l.call(e),i=0;!(a=e.next()).done;)s+=Yo(a=a.value,t,n,l=r+Zs(a,i++),o);else if("object"===a)throw t=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return s}function Ko(e,t,n){if(null==e)return e;var r=[],o=0;return Yo(e,r,"","",(function(a){return t.call(n,a,o++)})),r}function cm(e){if(-1===e._status){var t=e._result;(t=t()).then((function(n){(0===e._status||-1===e._status)&&(e._status=1,e._result=n)}),(function(n){(0===e._status||-1===e._status)&&(e._status=2,e._result=n)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var We={current:null},Xo={transition:null},dm={ReactCurrentDispatcher:We,ReactCurrentBatchConfig:Xo,ReactCurrentOwner:Gs};ee.Children={map:Ko,forEach:function(e,t,n){Ko(e,(function(){t.apply(this,arguments)}),n)},count:function(e){var t=0;return Ko(e,(function(){t++})),t},toArray:function(e){return Ko(e,(function(t){return t}))||[]},only:function(e){if(!$s(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},ee.Component=er,ee.Fragment=Q1,ee.Profiler=em,ee.PureComponent=Vs,ee.StrictMode=J1,ee.Suspense=om,ee.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=dm,ee.cloneElement=function(e,t,n){if(null==e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var r=rc({},e.props),o=e.key,a=e.ref,s=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,s=Gs.current),void 0!==t.key&&(o=""+t.key),e.type&&e.type.defaultProps)var i=e.type.defaultProps;for(l in t)ic.call(t,l)&&!lc.hasOwnProperty(l)&&(r[l]=void 0===t[l]&&void 0!==i?i[l]:t[l])}var l=arguments.length-2;if(1===l)r.children=n;else if(1<l){i=Array(l);for(var u=0;u<l;u++)i[u]=arguments[u+2];r.children=i}return{$$typeof:zr,type:e.type,key:o,ref:a,props:r,_owner:s}},ee.createContext=function(e){return(e={$$typeof:nm,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:tm,_context:e},e.Consumer=e},ee.createElement=uc,ee.createFactory=function(e){var t=uc.bind(null,e);return t.type=e,t},ee.createRef=function(){return{current:null}},ee.forwardRef=function(e){return{$$typeof:rm,render:e}},ee.isValidElement=$s,ee.lazy=function(e){return{$$typeof:sm,_payload:{_status:-1,_result:e},_init:cm}},ee.memo=function(e,t){return{$$typeof:am,type:e,compare:void 0===t?null:t}},ee.startTransition=function(e){var t=Xo.transition;Xo.transition={};try{e()}finally{Xo.transition=t}},ee.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},ee.useCallback=function(e,t){return We.current.useCallback(e,t)},ee.useContext=function(e){return We.current.useContext(e)},ee.useDebugValue=function(){},ee.useDeferredValue=function(e){return We.current.useDeferredValue(e)},ee.useEffect=function(e,t){return We.current.useEffect(e,t)},ee.useId=function(){return We.current.useId()},ee.useImperativeHandle=function(e,t,n){return We.current.useImperativeHandle(e,t,n)},ee.useInsertionEffect=function(e,t){return We.current.useInsertionEffect(e,t)},ee.useLayoutEffect=function(e,t){return We.current.useLayoutEffect(e,t)},ee.useMemo=function(e,t){return We.current.useMemo(e,t)},ee.useReducer=function(e,t,n){return We.current.useReducer(e,t,n)},ee.useRef=function(e){return We.current.useRef(e)},ee.useState=function(e){return We.current.useState(e)},ee.useSyncExternalStore=function(e,t,n){return We.current.useSyncExternalStore(e,t,n)},ee.useTransition=function(){return We.current.useTransition()},ee.version="18.2.0",ec.exports=ee;var Z=ec.exports;const f=jo(Z); /** * @license React * react-jsx-runtime.production.min.js @@ -16,7 +16,7 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */var dg=Z,pg=Symbol.for("react.element"),fg=Symbol.for("react.fragment"),gg=Object.prototype.hasOwnProperty,mg=dg.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,hg={key:!0,ref:!0,__self:!0,__source:!0};function dc(e,t,n){var r,o={},a=null,s=null;for(r in void 0!==n&&(a=""+n),void 0!==t.key&&(a=""+t.key),void 0!==t.ref&&(s=t.ref),t)gg.call(t,r)&&!hg.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===o[r]&&(o[r]=t[r]);return{$$typeof:pg,type:e,key:a,ref:s,props:o,_owner:mg.current}}Wo.Fragment=fg,Wo.jsx=dc,Wo.jsxs=dc,Ju.exports=Wo;var w=Ju.exports,js={},pc={exports:{}},it={},fc={exports:{}},gc={}; + */var pm=Z,fm=Symbol.for("react.element"),mm=Symbol.for("react.fragment"),gm=Object.prototype.hasOwnProperty,hm=pm.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,Em={key:!0,ref:!0,__self:!0,__source:!0};function dc(e,t,n){var r,o={},a=null,s=null;for(r in void 0!==n&&(a=""+n),void 0!==t.key&&(a=""+t.key),void 0!==t.ref&&(s=t.ref),t)gm.call(t,r)&&!Em.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===o[r]&&(o[r]=t[r]);return{$$typeof:fm,type:e,key:a,ref:s,props:o,_owner:hm.current}}Wo.Fragment=mm,Wo.jsx=dc,Wo.jsxs=dc,Ju.exports=Wo;var w=Ju.exports,js={},pc={exports:{}},it={},fc={exports:{}},mc={}; /** * @license React * scheduler.production.min.js @@ -25,7 +25,7 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */(function(e){function t(T,y){var L=T.length;T.push(y);e:for(;0<L;){var k=L-1>>>1,H=T[k];if(!(0<o(H,y)))break e;T[k]=y,T[L]=H,L=k}}function n(T){return 0===T.length?null:T[0]}function r(T){if(0===T.length)return null;var y=T[0],L=T.pop();if(L!==y){T[0]=L;e:for(var k=0,H=T.length,j=H>>>1;k<j;){var fe=2*(k+1)-1,ce=T[fe],se=fe+1,le=T[se];if(0>o(ce,L))se<H&&0>o(le,ce)?(T[k]=le,T[se]=L,k=se):(T[k]=ce,T[fe]=L,k=fe);else{if(!(se<H&&0>o(le,L)))break e;T[k]=le,T[se]=L,k=se}}}return y}function o(T,y){var L=T.sortIndex-y.sortIndex;return 0!==L?L:T.id-y.id}if("object"==typeof performance&&"function"==typeof performance.now){var a=performance;e.unstable_now=function(){return a.now()}}else{var s=Date,i=s.now();e.unstable_now=function(){return s.now()-i}}var l=[],u=[],c=1,p=null,d=3,m=!1,A=!1,b=!1,C="function"==typeof setTimeout?setTimeout:null,h="function"==typeof clearTimeout?clearTimeout:null,g=typeof setImmediate<"u"?setImmediate:null;function E(T){for(var y=n(u);null!==y;){if(null===y.callback)r(u);else{if(!(y.startTime<=T))break;r(u),y.sortIndex=y.expirationTime,t(l,y)}y=n(u)}}function v(T){if(b=!1,E(T),!A)if(null!==n(l))A=!0,P(N);else{var y=n(u);null!==y&&x(v,y.startTime-T)}}function N(T,y){A=!1,b&&(b=!1,h(R),R=-1),m=!0;var L=d;try{for(E(y),p=n(l);null!==p&&(!(p.expirationTime>y)||T&&!Q());){var k=p.callback;if("function"==typeof k){p.callback=null,d=p.priorityLevel;var H=k(p.expirationTime<=y);y=e.unstable_now(),"function"==typeof H?p.callback=H:p===n(l)&&r(l),E(y)}else r(l);p=n(l)}if(null!==p)var j=!0;else{var fe=n(u);null!==fe&&x(v,fe.startTime-y),j=!1}return j}finally{p=null,d=L,m=!1}}typeof navigator<"u"&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var Y,_=!1,S=null,R=-1,q=5,I=-1;function Q(){return!(e.unstable_now()-I<q)}function ie(){if(null!==S){var T=e.unstable_now();I=T;var y=!0;try{y=S(!0,T)}finally{y?Y():(_=!1,S=null)}}else _=!1}if("function"==typeof g)Y=function(){g(ie)};else if(typeof MessageChannel<"u"){var O=new MessageChannel,G=O.port2;O.port1.onmessage=ie,Y=function(){G.postMessage(null)}}else Y=function(){C(ie,0)};function P(T){S=T,_||(_=!0,Y())}function x(T,y){R=C((function(){T(e.unstable_now())}),y)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(T){T.callback=null},e.unstable_continueExecution=function(){A||m||(A=!0,P(N))},e.unstable_forceFrameRate=function(T){0>T||125<T?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):q=0<T?Math.floor(1e3/T):5},e.unstable_getCurrentPriorityLevel=function(){return d},e.unstable_getFirstCallbackNode=function(){return n(l)},e.unstable_next=function(T){switch(d){case 1:case 2:case 3:var y=3;break;default:y=d}var L=d;d=y;try{return T()}finally{d=L}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(T,y){switch(T){case 1:case 2:case 3:case 4:case 5:break;default:T=3}var L=d;d=T;try{return y()}finally{d=L}},e.unstable_scheduleCallback=function(T,y,L){var k=e.unstable_now();switch("object"==typeof L&&null!==L?L="number"==typeof(L=L.delay)&&0<L?k+L:k:L=k,T){case 1:var H=-1;break;case 2:H=250;break;case 5:H=1073741823;break;case 4:H=1e4;break;default:H=5e3}return T={id:c++,callback:y,priorityLevel:T,startTime:L,expirationTime:H=L+H,sortIndex:-1},L>k?(T.sortIndex=L,t(u,T),null===n(l)&&T===n(u)&&(b?(h(R),R=-1):b=!0,x(v,L-k))):(T.sortIndex=H,t(l,T),A||m||(A=!0,P(N))),T},e.unstable_shouldYield=Q,e.unstable_wrapCallback=function(T){var y=d;return function(){var L=d;d=y;try{return T.apply(this,arguments)}finally{d=L}}}})(gc),fc.exports=gc;var Eg=fc.exports,mc=Z,lt=Eg; + */(function(e){function t(T,y){var L=T.length;T.push(y);e:for(;0<L;){var k=L-1>>>1,H=T[k];if(!(0<o(H,y)))break e;T[k]=y,T[L]=H,L=k}}function n(T){return 0===T.length?null:T[0]}function r(T){if(0===T.length)return null;var y=T[0],L=T.pop();if(L!==y){T[0]=L;e:for(var k=0,H=T.length,j=H>>>1;k<j;){var me=2*(k+1)-1,ce=T[me],se=me+1,le=T[se];if(0>o(ce,L))se<H&&0>o(le,ce)?(T[k]=le,T[se]=L,k=se):(T[k]=ce,T[me]=L,k=me);else{if(!(se<H&&0>o(le,L)))break e;T[k]=le,T[se]=L,k=se}}}return y}function o(T,y){var L=T.sortIndex-y.sortIndex;return 0!==L?L:T.id-y.id}if("object"==typeof performance&&"function"==typeof performance.now){var a=performance;e.unstable_now=function(){return a.now()}}else{var s=Date,i=s.now();e.unstable_now=function(){return s.now()-i}}var l=[],u=[],c=1,p=null,d=3,g=!1,A=!1,b=!1,C="function"==typeof setTimeout?setTimeout:null,h="function"==typeof clearTimeout?clearTimeout:null,m=typeof setImmediate<"u"?setImmediate:null;function E(T){for(var y=n(u);null!==y;){if(null===y.callback)r(u);else{if(!(y.startTime<=T))break;r(u),y.sortIndex=y.expirationTime,t(l,y)}y=n(u)}}function v(T){if(b=!1,E(T),!A)if(null!==n(l))A=!0,P(N);else{var y=n(u);null!==y&&x(v,y.startTime-T)}}function N(T,y){A=!1,b&&(b=!1,h(R),R=-1),g=!0;var L=d;try{for(E(y),p=n(l);null!==p&&(!(p.expirationTime>y)||T&&!Q());){var k=p.callback;if("function"==typeof k){p.callback=null,d=p.priorityLevel;var H=k(p.expirationTime<=y);y=e.unstable_now(),"function"==typeof H?p.callback=H:p===n(l)&&r(l),E(y)}else r(l);p=n(l)}if(null!==p)var j=!0;else{var me=n(u);null!==me&&x(v,me.startTime-y),j=!1}return j}finally{p=null,d=L,g=!1}}typeof navigator<"u"&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var Y,_=!1,S=null,R=-1,q=5,I=-1;function Q(){return!(e.unstable_now()-I<q)}function ie(){if(null!==S){var T=e.unstable_now();I=T;var y=!0;try{y=S(!0,T)}finally{y?Y():(_=!1,S=null)}}else _=!1}if("function"==typeof m)Y=function(){m(ie)};else if(typeof MessageChannel<"u"){var O=new MessageChannel,G=O.port2;O.port1.onmessage=ie,Y=function(){G.postMessage(null)}}else Y=function(){C(ie,0)};function P(T){S=T,_||(_=!0,Y())}function x(T,y){R=C((function(){T(e.unstable_now())}),y)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(T){T.callback=null},e.unstable_continueExecution=function(){A||g||(A=!0,P(N))},e.unstable_forceFrameRate=function(T){0>T||125<T?console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"):q=0<T?Math.floor(1e3/T):5},e.unstable_getCurrentPriorityLevel=function(){return d},e.unstable_getFirstCallbackNode=function(){return n(l)},e.unstable_next=function(T){switch(d){case 1:case 2:case 3:var y=3;break;default:y=d}var L=d;d=y;try{return T()}finally{d=L}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(T,y){switch(T){case 1:case 2:case 3:case 4:case 5:break;default:T=3}var L=d;d=T;try{return y()}finally{d=L}},e.unstable_scheduleCallback=function(T,y,L){var k=e.unstable_now();switch("object"==typeof L&&null!==L?L="number"==typeof(L=L.delay)&&0<L?k+L:k:L=k,T){case 1:var H=-1;break;case 2:H=250;break;case 5:H=1073741823;break;case 4:H=1e4;break;default:H=5e3}return T={id:c++,callback:y,priorityLevel:T,startTime:L,expirationTime:H=L+H,sortIndex:-1},L>k?(T.sortIndex=L,t(u,T),null===n(l)&&T===n(u)&&(b?(h(R),R=-1):b=!0,x(v,L-k))):(T.sortIndex=H,t(l,T),A||g||(A=!0,P(N))),T},e.unstable_shouldYield=Q,e.unstable_wrapCallback=function(T){var y=d;return function(){var L=d;d=y;try{return T.apply(this,arguments)}finally{d=L}}}})(mc),fc.exports=mc;var Am=fc.exports,gc=Z,lt=Am; /** * @license React * react-dom.production.min.js @@ -34,5 +34,4 @@ * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */function M(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var hc=new Set,Gr={};function xn(e,t){tr(e,t),tr(e+"Capture",t)}function tr(e,t){for(Gr[e]=t,e=0;e<t.length;e++)hc.add(t[e])}var Wt=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Ws=Object.prototype.hasOwnProperty,Ag=/^[: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]*$/,Ec={},Ac={};function Ye(e,t,n,r,o,a,s){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=a,this.removeEmptyString=s}var Me={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){Me[e]=new Ye(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];Me[t]=new Ye(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){Me[e]=new Ye(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){Me[e]=new Ye(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){Me[e]=new Ye(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){Me[e]=new Ye(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){Me[e]=new Ye(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){Me[e]=new Ye(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){Me[e]=new Ye(e,5,!1,e.toLowerCase(),null,!1,!1)}));var Ys=/[\-:]([a-z])/g;function Ks(e){return e[1].toUpperCase()}function Xs(e,t,n,r){var o=Me.hasOwnProperty(t)?Me[t]:null;(null!==o?0!==o.type:r||!(2<t.length)||"o"!==t[0]&&"O"!==t[0]||"n"!==t[1]&&"N"!==t[1])&&(function(e,t,n,r){if(null===t||typeof t>"u"||function(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,o,r)&&(n=null),r||null===o?function(e){return!!Ws.call(Ac,e)||!Ws.call(Ec,e)&&(Ag.test(e)?Ac[e]=!0:(Ec[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):o.mustUseProperty?e[o.propertyName]=null===n?3!==o.type&&"":n:(t=o.attributeName,r=o.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(o=o.type)||4===o&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}"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(Ys,Ks);Me[t]=new Ye(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(Ys,Ks);Me[t]=new Ye(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(Ys,Ks);Me[t]=new Ye(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){Me[e]=new Ye(e,1,!1,e.toLowerCase(),null,!1,!1)})),Me.xlinkHref=new Ye("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){Me[e]=new Ye(e,1,!1,e.toLowerCase(),null,!0,!0)}));var Yt=mc.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,Qo=Symbol.for("react.element"),nr=Symbol.for("react.portal"),rr=Symbol.for("react.fragment"),Qs=Symbol.for("react.strict_mode"),Js=Symbol.for("react.profiler"),bc=Symbol.for("react.provider"),_c=Symbol.for("react.context"),ei=Symbol.for("react.forward_ref"),ti=Symbol.for("react.suspense"),ni=Symbol.for("react.suspense_list"),ri=Symbol.for("react.memo"),sn=Symbol.for("react.lazy"),vc=Symbol.for("react.offscreen"),Dc=Symbol.iterator;function $r(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=Dc&&e[Dc]||e["@@iterator"])?e:null}var oi,be=Object.assign;function Zr(e){if(void 0===oi)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);oi=t&&t[1]||""}return"\n"+oi+e}var ai=!1;function si(e,t){if(!e||ai)return"";ai=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(u){var r=u}Reflect.construct(e,[],t)}else{try{t.call()}catch(u){r=u}e.call(t.prototype)}else{try{throw Error()}catch(u){r=u}e()}}catch(u){if(u&&r&&"string"==typeof u.stack){for(var o=u.stack.split("\n"),a=r.stack.split("\n"),s=o.length-1,i=a.length-1;1<=s&&0<=i&&o[s]!==a[i];)i--;for(;1<=s&&0<=i;s--,i--)if(o[s]!==a[i]){if(1!==s||1!==i)do{if(s--,0>--i||o[s]!==a[i]){var l="\n"+o[s].replace(" at new "," at ");return e.displayName&&l.includes("<anonymous>")&&(l=l.replace("<anonymous>",e.displayName)),l}}while(1<=s&&0<=i);break}}}finally{ai=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Zr(e):""}function Dg(e){switch(e.tag){case 5:return Zr(e.type);case 16:return Zr("Lazy");case 13:return Zr("Suspense");case 19:return Zr("SuspenseList");case 0:case 2:case 15:return e=si(e.type,!1);case 11:return e=si(e.type.render,!1);case 1:return e=si(e.type,!0);default:return""}}function ii(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case rr:return"Fragment";case nr:return"Portal";case Js:return"Profiler";case Qs:return"StrictMode";case ti:return"Suspense";case ni:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case _c:return(e.displayName||"Context")+".Consumer";case bc:return(e._context.displayName||"Context")+".Provider";case ei:var t=e.render;return(e=e.displayName)||(e=""!==(e=t.displayName||t.name||"")?"ForwardRef("+e+")":"ForwardRef"),e;case ri:return null!==(t=e.displayName||null)?t:ii(e.type)||"Memo";case sn:t=e._payload,e=e._init;try{return ii(e(t))}catch{}}return null}function yg(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=(e=t.render).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 ii(t);case 8:return t===Qs?"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("function"==typeof t)return t.displayName||t.name||null;if("string"==typeof t)return t}return null}function ln(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":case"object":return e;default:return""}}function yc(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function Jo(e){e._valueTracker||(e._valueTracker=function(e){var t=yc(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&"function"==typeof n.get&&"function"==typeof n.set){var o=n.get,a=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(s){r=""+s,a.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]}}}}(e))}function Tc(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=yc(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function ea(e){if(typeof(e=e||(typeof document<"u"?document:void 0))>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function li(e,t){var n=t.checked;return be({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function Cc(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=ln(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function Nc(e,t){null!=(t=t.checked)&&Xs(e,"checked",t,!1)}function ui(e,t){Nc(e,t);var n=ln(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?ci(e,t.type,n):t.hasOwnProperty("defaultValue")&&ci(e,t.type,ln(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function Sc(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function ci(e,t,n){("number"!==t||ea(e.ownerDocument)!==e)&&(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var jr=Array.isArray;function or(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o<n.length;o++)t["$"+n[o]]=!0;for(n=0;n<e.length;n++)o=t.hasOwnProperty("$"+e[n].value),e[n].selected!==o&&(e[n].selected=o),o&&r&&(e[n].defaultSelected=!0)}else{for(n=""+ln(n),t=null,o=0;o<e.length;o++){if(e[o].value===n)return e[o].selected=!0,void(r&&(e[o].defaultSelected=!0));null!==t||e[o].disabled||(t=e[o])}null!==t&&(t.selected=!0)}}function di(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(M(91));return be({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function wc(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(M(92));if(jr(n)){if(1<n.length)throw Error(M(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:ln(n)}}function xc(e,t){var n=ln(t.value),r=ln(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function Rc(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}function Lc(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function pi(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?Lc(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var ta,e,Oc=(e=function(e,t){if("http://www.w3.org/2000/svg"!==e.namespaceURI||"innerHTML"in e)e.innerHTML=t;else{for((ta=ta||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=ta.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},typeof MSApp<"u"&&MSApp.execUnsafeLocalFunction?function(t,n,r,o){MSApp.execUnsafeLocalFunction((function(){return e(t,n)}))}:e);function Wr(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var Yr={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},Cg=["Webkit","ms","Moz","O"];function kc(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||Yr.hasOwnProperty(e)&&Yr[e]?(""+t).trim():t+"px"}function Ic(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),o=kc(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}Object.keys(Yr).forEach((function(e){Cg.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Yr[t]=Yr[e]}))}));var Ng=be({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 fi(e,t){if(t){if(Ng[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(M(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(M(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(M(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(M(62))}}function gi(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;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 mi=null;function hi(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Ei=null,ar=null,sr=null;function Mc(e){if(e=Ao(e)){if("function"!=typeof Ei)throw Error(M(280));var t=e.stateNode;t&&(t=Ta(t),Ei(e.stateNode,e.type,t))}}function Fc(e){ar?sr?sr.push(e):sr=[e]:ar=e}function Bc(){if(ar){var e=ar,t=sr;if(sr=ar=null,Mc(e),t)for(e=0;e<t.length;e++)Mc(t[e])}}function Pc(e,t){return e(t)}function Uc(){}var Ai=!1;function qc(e,t,n){if(Ai)return e(t,n);Ai=!0;try{return Pc(e,t,n)}finally{Ai=!1,(null!==ar||null!==sr)&&(Uc(),Bc())}}function Kr(e,t){var n=e.stateNode;if(null===n)return null;var r=Ta(n);if(null===r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(M(231,t,typeof n));return n}var bi=!1;if(Wt)try{var Xr={};Object.defineProperty(Xr,"passive",{get:function(){bi=!0}}),window.addEventListener("test",Xr,Xr),window.removeEventListener("test",Xr,Xr)}catch{bi=!1}function Sg(e,t,n,r,o,a,s,i,l){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(c){this.onError(c)}}var Qr=!1,na=null,ra=!1,_i=null,wg={onError:function(e){Qr=!0,na=e}};function xg(e,t,n,r,o,a,s,i,l){Qr=!1,na=null,Sg.apply(wg,arguments)}function Rn(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{4098&(t=e).flags&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Hc(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(null!==(e=e.alternate)&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function Vc(e){if(Rn(e)!==e)throw Error(M(188))}function zc(e){return null!==(e=function(e){var t=e.alternate;if(!t){if(null===(t=Rn(e)))throw Error(M(188));return t!==e?null:e}for(var n=e,r=t;;){var o=n.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(r=o.return)){n=r;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===n)return Vc(o),e;if(a===r)return Vc(o),t;a=a.sibling}throw Error(M(188))}if(n.return!==r.return)n=o,r=a;else{for(var s=!1,i=o.child;i;){if(i===n){s=!0,n=o,r=a;break}if(i===r){s=!0,r=o,n=a;break}i=i.sibling}if(!s){for(i=a.child;i;){if(i===n){s=!0,n=a,r=o;break}if(i===r){s=!0,r=a,n=o;break}i=i.sibling}if(!s)throw Error(M(189))}}if(n.alternate!==r)throw Error(M(190))}if(3!==n.tag)throw Error(M(188));return n.stateNode.current===n?e:t}(e))?Gc(e):null}function Gc(e){if(5===e.tag||6===e.tag)return e;for(e=e.child;null!==e;){var t=Gc(e);if(null!==t)return t;e=e.sibling}return null}var $c=lt.unstable_scheduleCallback,Zc=lt.unstable_cancelCallback,Og=lt.unstable_shouldYield,kg=lt.unstable_requestPaint,Ne=lt.unstable_now,Ig=lt.unstable_getCurrentPriorityLevel,vi=lt.unstable_ImmediatePriority,jc=lt.unstable_UserBlockingPriority,oa=lt.unstable_NormalPriority,Mg=lt.unstable_LowPriority,Wc=lt.unstable_IdlePriority,aa=null,Pt=null;var St=Math.clz32?Math.clz32:function(e){return e>>>=0,0===e?32:31-(Bg(e)/Pg|0)|0},Bg=Math.log,Pg=Math.LN2;var sa=64,ia=4194304;function Jr(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 4194240&e;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return 130023424&e;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function la(e,t){var n=e.pendingLanes;if(0===n)return 0;var r=0,o=e.suspendedLanes,a=e.pingedLanes,s=268435455&n;if(0!==s){var i=s&~o;0!==i?r=Jr(i):0!==(a&=s)&&(r=Jr(a))}else 0!==(s=n&~o)?r=Jr(s):0!==a&&(r=Jr(a));if(0===r)return 0;if(0!==t&&t!==r&&!(t&o)&&((o=r&-r)>=(a=t&-t)||16===o&&0!=(4194240&a)))return t;if(4&r&&(r|=16&n),0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0<t;)o=1<<(n=31-St(t)),r|=e[n],t&=~o;return r}function qg(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 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 t+5e3;default:return-1}}function Di(e){return 0!==(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function Yc(){var e=sa;return!(4194240&(sa<<=1))&&(sa=64),e}function yi(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function eo(e,t,n){e.pendingLanes|=t,536870912!==t&&(e.suspendedLanes=0,e.pingedLanes=0),(e=e.eventTimes)[t=31-St(t)]=n}function Ti(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-St(n),o=1<<r;o&t|e[r]&t&&(e[r]|=t),n&=~o}}var ue=0;function Kc(e){return 1<(e&=-e)?4<e?268435455&e?16:536870912:4:1}var Xc,Ci,Qc,Jc,e0,Ni=!1,ua=[],un=null,cn=null,dn=null,to=new Map,no=new Map,pn=[],zg="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function t0(e,t){switch(e){case"focusin":case"focusout":un=null;break;case"dragenter":case"dragleave":cn=null;break;case"mouseover":case"mouseout":dn=null;break;case"pointerover":case"pointerout":to.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":no.delete(t.pointerId)}}function ro(e,t,n,r,o,a){return null===e||e.nativeEvent!==a?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:a,targetContainers:[o]},null!==t&&(null!==(t=Ao(t))&&Ci(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,null!==o&&-1===t.indexOf(o)&&t.push(o),e)}function n0(e){var t=Ln(e.target);if(null!==t){var n=Rn(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Hc(n)))return e.blockedOn=t,void e0(e.priority,(function(){Qc(n)}))}else if(3===t&&n.stateNode.current.memoizedState.isDehydrated)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function ca(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=wi(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=Ao(n))&&Ci(t),e.blockedOn=n,!1;var r=new(n=e.nativeEvent).constructor(n.type,n);mi=r,n.target.dispatchEvent(r),mi=null,t.shift()}return!0}function r0(e,t,n){ca(e)&&n.delete(t)}function $g(){Ni=!1,null!==un&&ca(un)&&(un=null),null!==cn&&ca(cn)&&(cn=null),null!==dn&&ca(dn)&&(dn=null),to.forEach(r0),no.forEach(r0)}function oo(e,t){e.blockedOn===t&&(e.blockedOn=null,Ni||(Ni=!0,lt.unstable_scheduleCallback(lt.unstable_NormalPriority,$g)))}function ao(e){function t(o){return oo(o,e)}if(0<ua.length){oo(ua[0],e);for(var n=1;n<ua.length;n++){var r=ua[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==un&&oo(un,e),null!==cn&&oo(cn,e),null!==dn&&oo(dn,e),to.forEach(t),no.forEach(t),n=0;n<pn.length;n++)(r=pn[n]).blockedOn===e&&(r.blockedOn=null);for(;0<pn.length&&null===(n=pn[0]).blockedOn;)n0(n),null===n.blockedOn&&pn.shift()}var ir=Yt.ReactCurrentBatchConfig,da=!0;function Zg(e,t,n,r){var o=ue,a=ir.transition;ir.transition=null;try{ue=1,Si(e,t,n,r)}finally{ue=o,ir.transition=a}}function jg(e,t,n,r){var o=ue,a=ir.transition;ir.transition=null;try{ue=4,Si(e,t,n,r)}finally{ue=o,ir.transition=a}}function Si(e,t,n,r){if(da){var o=wi(e,t,n,r);if(null===o)$i(e,t,r,pa,n),t0(e,r);else if(function(e,t,n,r,o){switch(t){case"focusin":return un=ro(un,e,t,n,r,o),!0;case"dragenter":return cn=ro(cn,e,t,n,r,o),!0;case"mouseover":return dn=ro(dn,e,t,n,r,o),!0;case"pointerover":var a=o.pointerId;return to.set(a,ro(to.get(a)||null,e,t,n,r,o)),!0;case"gotpointercapture":return a=o.pointerId,no.set(a,ro(no.get(a)||null,e,t,n,r,o)),!0}return!1}(o,e,t,n,r))r.stopPropagation();else if(t0(e,r),4&t&&-1<zg.indexOf(e)){for(;null!==o;){var a=Ao(o);if(null!==a&&Xc(a),null===(a=wi(e,t,n,r))&&$i(e,t,r,pa,n),a===o)break;o=a}null!==o&&r.stopPropagation()}else $i(e,t,r,null,n)}}var pa=null;function wi(e,t,n,r){if(pa=null,null!==(e=Ln(e=hi(r))))if(null===(t=Rn(e)))e=null;else if(13===(n=t.tag)){if(null!==(e=Hc(t)))return e;e=null}else if(3===n){if(t.stateNode.current.memoizedState.isDehydrated)return 3===t.tag?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return pa=e,null}function o0(e){switch(e){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(Ig()){case vi:return 1;case jc:return 4;case oa:case Mg:return 16;case Wc:return 536870912;default:return 16}default:return 16}}var fn=null,xi=null,fa=null;function a0(){if(fa)return fa;var e,r,t=xi,n=t.length,o="value"in fn?fn.value:fn.textContent,a=o.length;for(e=0;e<n&&t[e]===o[e];e++);var s=n-e;for(r=1;r<=s&&t[n-r]===o[a-r];r++);return fa=o.slice(e,1<r?1-r:void 0)}function ga(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function ma(){return!0}function s0(){return!1}function ut(e){function t(n,r,o,a,s){for(var i in this._reactName=n,this._targetInst=o,this.type=r,this.nativeEvent=a,this.target=s,this.currentTarget=null,e)e.hasOwnProperty(i)&&(n=e[i],this[i]=n?n(a):a[i]);return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?ma:s0,this.isPropagationStopped=s0,this}return be(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var n=this.nativeEvent;n&&(n.preventDefault?n.preventDefault():"unknown"!=typeof n.returnValue&&(n.returnValue=!1),this.isDefaultPrevented=ma)},stopPropagation:function(){var n=this.nativeEvent;n&&(n.stopPropagation?n.stopPropagation():"unknown"!=typeof n.cancelBubble&&(n.cancelBubble=!0),this.isPropagationStopped=ma)},persist:function(){},isPersistent:ma}),t}var Li,Oi,io,lr={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Ri=ut(lr),so=be({},lr,{view:0,detail:0}),Wg=ut(so),ha=be({},so,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ii,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==io&&(io&&"mousemove"===e.type?(Li=e.screenX-io.screenX,Oi=e.screenY-io.screenY):Oi=Li=0,io=e),Li)},movementY:function(e){return"movementY"in e?e.movementY:Oi}}),i0=ut(ha),Kg=ut(be({},ha,{dataTransfer:0})),ki=ut(be({},so,{relatedTarget:0})),Jg=ut(be({},lr,{animationName:0,elapsedTime:0,pseudoElement:0})),em=be({},lr,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),tm=ut(em),l0=ut(be({},lr,{data:0})),rm={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},om={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},am={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function sm(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=am[e])&&!!t[e]}function Ii(){return sm}var im=be({},so,{key:function(e){if(e.key){var t=rm[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=ga(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?om[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ii,charCode:function(e){return"keypress"===e.type?ga(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?ga(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),lm=ut(im),u0=ut(be({},ha,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),dm=ut(be({},so,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ii})),fm=ut(be({},lr,{propertyName:0,elapsedTime:0,pseudoElement:0})),gm=be({},ha,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),mm=ut(gm),hm=[9,13,27,32],Mi=Wt&&"CompositionEvent"in window,lo=null;Wt&&"documentMode"in document&&(lo=document.documentMode);var Em=Wt&&"TextEvent"in window&&!lo,c0=Wt&&(!Mi||lo&&8<lo&&11>=lo),d0=" ",p0=!1;function f0(e,t){switch(e){case"keyup":return-1!==hm.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function g0(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var ur=!1;var _m={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function m0(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!_m[e.type]:"textarea"===t}function h0(e,t,n,r){Fc(r),0<(t=va(t,"onChange")).length&&(n=new Ri("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var uo=null,co=null;function vm(e){I0(e,0)}function Ea(e){if(Tc(gr(e)))return e}function Dm(e,t){if("change"===e)return t}var E0=!1;if(Wt){var Fi;if(Wt){var Bi="oninput"in document;if(!Bi){var A0=document.createElement("div");A0.setAttribute("oninput","return;"),Bi="function"==typeof A0.oninput}Fi=Bi}else Fi=!1;E0=Fi&&(!document.documentMode||9<document.documentMode)}function b0(){uo&&(uo.detachEvent("onpropertychange",_0),co=uo=null)}function _0(e){if("value"===e.propertyName&&Ea(co)){var t=[];h0(t,co,e,hi(e)),qc(vm,t)}}function ym(e,t,n){"focusin"===e?(b0(),co=n,(uo=t).attachEvent("onpropertychange",_0)):"focusout"===e&&b0()}function Tm(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Ea(co)}function Cm(e,t){if("click"===e)return Ea(t)}function Nm(e,t){if("input"===e||"change"===e)return Ea(t)}var wt="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t};function po(e,t){if(wt(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var o=n[r];if(!Ws.call(t,o)||!wt(e[o],t[o]))return!1}return!0}function v0(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function D0(e,t){var r,n=v0(e);for(e=0;n;){if(3===n.nodeType){if(r=e+n.textContent.length,e<=t&&r>=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=v0(n)}}function y0(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?y0(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function T0(){for(var e=window,t=ea();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch{n=!1}if(!n)break;t=ea((e=t.contentWindow).document)}return t}function Pi(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}function wm(e){var t=T0(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&y0(n.ownerDocument.documentElement,n)){if(null!==r&&Pi(n))if(t=r.start,void 0===(e=r.end)&&(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).getSelection){e=e.getSelection();var o=n.textContent.length,a=Math.min(r.start,o);r=void 0===r.end?a:Math.min(r.end,o),!e.extend&&a>r&&(o=r,r=a,a=o),o=D0(n,a);var s=D0(n,r);o&&s&&(1!==e.rangeCount||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==s.node||e.focusOffset!==s.offset)&&((t=t.createRange()).setStart(o.node,o.offset),e.removeAllRanges(),a>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;)1===e.nodeType&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for("function"==typeof n.focus&&n.focus(),n=0;n<t.length;n++)(e=t[n]).element.scrollLeft=e.left,e.element.scrollTop=e.top}}var xm=Wt&&"documentMode"in document&&11>=document.documentMode,cr=null,Ui=null,fo=null,qi=!1;function C0(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;qi||null==cr||cr!==ea(r)||("selectionStart"in(r=cr)&&Pi(r)?r={start:r.selectionStart,end:r.selectionEnd}:r={anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},fo&&po(fo,r)||(fo=r,0<(r=va(Ui,"onSelect")).length&&(t=new Ri("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=cr)))}function Aa(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var dr={animationend:Aa("Animation","AnimationEnd"),animationiteration:Aa("Animation","AnimationIteration"),animationstart:Aa("Animation","AnimationStart"),transitionend:Aa("Transition","TransitionEnd")},Hi={},N0={};function ba(e){if(Hi[e])return Hi[e];if(!dr[e])return e;var n,t=dr[e];for(n in t)if(t.hasOwnProperty(n)&&n in N0)return Hi[e]=t[n];return e}Wt&&(N0=document.createElement("div").style,"AnimationEvent"in window||(delete dr.animationend.animation,delete dr.animationiteration.animation,delete dr.animationstart.animation),"TransitionEvent"in window||delete dr.transitionend.transition);var S0=ba("animationend"),w0=ba("animationiteration"),x0=ba("animationstart"),R0=ba("transitionend"),L0=new Map,O0="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function gn(e,t){L0.set(e,t),xn(t,[e])}for(var Vi=0;Vi<O0.length;Vi++){var zi=O0[Vi];gn(zi.toLowerCase(),"on"+(zi[0].toUpperCase()+zi.slice(1)))}gn(S0,"onAnimationEnd"),gn(w0,"onAnimationIteration"),gn(x0,"onAnimationStart"),gn("dblclick","onDoubleClick"),gn("focusin","onFocus"),gn("focusout","onBlur"),gn(R0,"onTransitionEnd"),tr("onMouseEnter",["mouseout","mouseover"]),tr("onMouseLeave",["mouseout","mouseover"]),tr("onPointerEnter",["pointerout","pointerover"]),tr("onPointerLeave",["pointerout","pointerover"]),xn("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),xn("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),xn("onBeforeInput",["compositionend","keypress","textInput","paste"]),xn("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),xn("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),xn("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var go="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),Om=new Set("cancel close invalid load scroll toggle".split(" ").concat(go));function k0(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,r,o,a,s,i,l){if(xg.apply(this,arguments),Qr){if(!Qr)throw Error(M(198));var u=na;Qr=!1,na=null,ra||(ra=!0,_i=u)}}(r,t,void 0,e),e.currentTarget=null}function I0(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var r=e[n],o=r.event;r=r.listeners;e:{var a=void 0;if(t)for(var s=r.length-1;0<=s;s--){var i=r[s],l=i.instance,u=i.currentTarget;if(i=i.listener,l!==a&&o.isPropagationStopped())break e;k0(o,i,u),a=l}else for(s=0;s<r.length;s++){if(l=(i=r[s]).instance,u=i.currentTarget,i=i.listener,l!==a&&o.isPropagationStopped())break e;k0(o,i,u),a=l}}}if(ra)throw e=_i,ra=!1,_i=null,e}function he(e,t){var n=t[Xi];void 0===n&&(n=t[Xi]=new Set);var r=e+"__bubble";n.has(r)||(M0(t,e,2,!1),n.add(r))}function Gi(e,t,n){var r=0;t&&(r|=4),M0(n,e,r,t)}var _a="_reactListening"+Math.random().toString(36).slice(2);function mo(e){if(!e[_a]){e[_a]=!0,hc.forEach((function(n){"selectionchange"!==n&&(Om.has(n)||Gi(n,!1,e),Gi(n,!0,e))}));var t=9===e.nodeType?e:e.ownerDocument;null===t||t[_a]||(t[_a]=!0,Gi("selectionchange",!1,t))}}function M0(e,t,n,r){switch(o0(t)){case 1:var o=Zg;break;case 4:o=jg;break;default:o=Si}n=o.bind(null,t,n,e),o=void 0,!bi||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(o=!0),r?void 0!==o?e.addEventListener(t,n,{capture:!0,passive:o}):e.addEventListener(t,n,!0):void 0!==o?e.addEventListener(t,n,{passive:o}):e.addEventListener(t,n,!1)}function $i(e,t,n,r,o){var a=r;if(!(1&t||2&t||null===r))e:for(;;){if(null===r)return;var s=r.tag;if(3===s||4===s){var i=r.stateNode.containerInfo;if(i===o||8===i.nodeType&&i.parentNode===o)break;if(4===s)for(s=r.return;null!==s;){var l=s.tag;if((3===l||4===l)&&((l=s.stateNode.containerInfo)===o||8===l.nodeType&&l.parentNode===o))return;s=s.return}for(;null!==i;){if(null===(s=Ln(i)))return;if(5===(l=s.tag)||6===l){r=a=s;continue e}i=i.parentNode}}r=r.return}qc((function(){var u=a,c=hi(n),p=[];e:{var d=L0.get(e);if(void 0!==d){var m=Ri,A=e;switch(e){case"keypress":if(0===ga(n))break e;case"keydown":case"keyup":m=lm;break;case"focusin":A="focus",m=ki;break;case"focusout":A="blur",m=ki;break;case"beforeblur":case"afterblur":m=ki;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":m=i0;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":m=Kg;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":m=dm;break;case S0:case w0:case x0:m=Jg;break;case R0:m=fm;break;case"scroll":m=Wg;break;case"wheel":m=mm;break;case"copy":case"cut":case"paste":m=tm;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":m=u0}var b=0!=(4&t),C=!b&&"scroll"===e,h=b?null!==d?d+"Capture":null:d;b=[];for(var E,g=u;null!==g;){var v=(E=g).stateNode;if(5===E.tag&&null!==v&&(E=v,null!==h&&(null!=(v=Kr(g,h))&&b.push(ho(g,v,E)))),C)break;g=g.return}0<b.length&&(d=new m(d,A,null,n,c),p.push({event:d,listeners:b}))}}if(!(7&t)){if(m="mouseout"===e||"pointerout"===e,(!(d="mouseover"===e||"pointerover"===e)||n===mi||!(A=n.relatedTarget||n.fromElement)||!Ln(A)&&!A[Kt])&&(m||d)&&(d=c.window===c?c:(d=c.ownerDocument)?d.defaultView||d.parentWindow:window,m?(m=u,null!==(A=(A=n.relatedTarget||n.toElement)?Ln(A):null)&&(A!==(C=Rn(A))||5!==A.tag&&6!==A.tag)&&(A=null)):(m=null,A=u),m!==A)){if(b=i0,v="onMouseLeave",h="onMouseEnter",g="mouse",("pointerout"===e||"pointerover"===e)&&(b=u0,v="onPointerLeave",h="onPointerEnter",g="pointer"),C=null==m?d:gr(m),E=null==A?d:gr(A),(d=new b(v,g+"leave",m,n,c)).target=C,d.relatedTarget=E,v=null,Ln(c)===u&&((b=new b(h,g+"enter",A,n,c)).target=E,b.relatedTarget=C,v=b),C=v,m&&A)t:{for(h=A,g=0,E=b=m;E;E=pr(E))g++;for(E=0,v=h;v;v=pr(v))E++;for(;0<g-E;)b=pr(b),g--;for(;0<E-g;)h=pr(h),E--;for(;g--;){if(b===h||null!==h&&b===h.alternate)break t;b=pr(b),h=pr(h)}b=null}else b=null;null!==m&&F0(p,d,m,b,!1),null!==A&&null!==C&&F0(p,C,A,b,!0)}if("select"===(m=(d=u?gr(u):window).nodeName&&d.nodeName.toLowerCase())||"input"===m&&"file"===d.type)var N=Dm;else if(m0(d))if(E0)N=Nm;else{N=Tm;var _=ym}else(m=d.nodeName)&&"input"===m.toLowerCase()&&("checkbox"===d.type||"radio"===d.type)&&(N=Cm);switch(N&&(N=N(e,u))?h0(p,N,n,c):(_&&_(e,d,u),"focusout"===e&&(_=d._wrapperState)&&_.controlled&&"number"===d.type&&ci(d,"number",d.value)),_=u?gr(u):window,e){case"focusin":(m0(_)||"true"===_.contentEditable)&&(cr=_,Ui=u,fo=null);break;case"focusout":fo=Ui=cr=null;break;case"mousedown":qi=!0;break;case"contextmenu":case"mouseup":case"dragend":qi=!1,C0(p,n,c);break;case"selectionchange":if(xm)break;case"keydown":case"keyup":C0(p,n,c)}var S;if(Mi)e:{switch(e){case"compositionstart":var R="onCompositionStart";break e;case"compositionend":R="onCompositionEnd";break e;case"compositionupdate":R="onCompositionUpdate";break e}R=void 0}else ur?f0(e,n)&&(R="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(R="onCompositionStart");R&&(c0&&"ko"!==n.locale&&(ur||"onCompositionStart"!==R?"onCompositionEnd"===R&&ur&&(S=a0()):(xi="value"in(fn=c)?fn.value:fn.textContent,ur=!0)),0<(_=va(u,R)).length&&(R=new l0(R,e,null,n,c),p.push({event:R,listeners:_}),S?R.data=S:null!==(S=g0(n))&&(R.data=S))),(S=Em?function(e,t){switch(e){case"compositionend":return g0(t);case"keypress":return 32!==t.which?null:(p0=!0,d0);case"textInput":return(e=t.data)===d0&&p0?null:e;default:return null}}(e,n):function(e,t){if(ur)return"compositionend"===e||!Mi&&f0(e,t)?(e=a0(),fa=xi=fn=null,ur=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return c0&&"ko"!==t.locale?null:t.data}}(e,n))&&(0<(u=va(u,"onBeforeInput")).length&&(c=new l0("onBeforeInput","beforeinput",null,n,c),p.push({event:c,listeners:u}),c.data=S))}I0(p,t)}))}function ho(e,t,n){return{instance:e,listener:t,currentTarget:n}}function va(e,t){for(var n=t+"Capture",r=[];null!==e;){var o=e,a=o.stateNode;5===o.tag&&null!==a&&(o=a,null!=(a=Kr(e,n))&&r.unshift(ho(e,a,o)),null!=(a=Kr(e,t))&&r.push(ho(e,a,o))),e=e.return}return r}function pr(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function F0(e,t,n,r,o){for(var a=t._reactName,s=[];null!==n&&n!==r;){var i=n,l=i.alternate,u=i.stateNode;if(null!==l&&l===r)break;5===i.tag&&null!==u&&(i=u,o?null!=(l=Kr(n,a))&&s.unshift(ho(n,l,i)):o||null!=(l=Kr(n,a))&&s.push(ho(n,l,i))),n=n.return}0!==s.length&&e.push({event:t,listeners:s})}var km=/\r\n?/g,Im=/\u0000|\uFFFD/g;function B0(e){return("string"==typeof e?e:""+e).replace(km,"\n").replace(Im,"")}function Da(e,t,n){if(t=B0(t),B0(e)!==t&&n)throw Error(M(425))}function ya(){}var Zi=null,ji=null;function Wi(e,t){return"textarea"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Yi="function"==typeof setTimeout?setTimeout:void 0,Mm="function"==typeof clearTimeout?clearTimeout:void 0,P0="function"==typeof Promise?Promise:void 0,Fm="function"==typeof queueMicrotask?queueMicrotask:typeof P0<"u"?function(e){return P0.resolve(null).then(e).catch(Bm)}:Yi;function Bm(e){setTimeout((function(){throw e}))}function Ki(e,t){var n=t,r=0;do{var o=n.nextSibling;if(e.removeChild(n),o&&8===o.nodeType)if("/$"===(n=o.data)){if(0===r)return e.removeChild(o),void ao(t);r--}else"$"!==n&&"$?"!==n&&"$!"!==n||r++;n=o}while(n);ao(t)}function mn(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break;if(8===t){if("$"===(t=e.data)||"$!"===t||"$?"===t)break;if("/$"===t)return null}}return e}function U0(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var fr=Math.random().toString(36).slice(2),Ut="__reactFiber$"+fr,Eo="__reactProps$"+fr,Kt="__reactContainer$"+fr,Xi="__reactEvents$"+fr,Pm="__reactListeners$"+fr,Um="__reactHandles$"+fr;function Ln(e){var t=e[Ut];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Kt]||n[Ut]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=U0(e);null!==e;){if(n=e[Ut])return n;e=U0(e)}return t}n=(e=n).parentNode}return null}function Ao(e){return!(e=e[Ut]||e[Kt])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function gr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(M(33))}function Ta(e){return e[Eo]||null}var Qi=[],mr=-1;function hn(e){return{current:e}}function Ee(e){0>mr||(e.current=Qi[mr],Qi[mr]=null,mr--)}function pe(e,t){mr++,Qi[mr]=e.current,e.current=t}var En={},qe=hn(En),Je=hn(!1),On=En;function hr(e,t){var n=e.type.contextTypes;if(!n)return En;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var a,o={};for(a in n)o[a]=t[a];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function et(e){return null!=(e=e.childContextTypes)}function Ca(){Ee(Je),Ee(qe)}function q0(e,t,n){if(qe.current!==En)throw Error(M(168));pe(qe,t),pe(Je,n)}function H0(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var o in r=r.getChildContext())if(!(o in t))throw Error(M(108,yg(e)||"Unknown",o));return be({},n,r)}function Na(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||En,On=qe.current,pe(qe,e),pe(Je,Je.current),!0}function V0(e,t,n){var r=e.stateNode;if(!r)throw Error(M(169));n?(e=H0(e,t,On),r.__reactInternalMemoizedMergedChildContext=e,Ee(Je),Ee(qe),pe(qe,e)):Ee(Je),pe(Je,n)}var Xt=null,Sa=!1,Ji=!1;function z0(e){null===Xt?Xt=[e]:Xt.push(e)}function An(){if(!Ji&&null!==Xt){Ji=!0;var e=0,t=ue;try{var n=Xt;for(ue=1;e<n.length;e++){var r=n[e];do{r=r(!0)}while(null!==r)}Xt=null,Sa=!1}catch(o){throw null!==Xt&&(Xt=Xt.slice(e+1)),$c(vi,An),o}finally{ue=t,Ji=!1}}return null}var Er=[],Ar=0,wa=null,xa=0,Et=[],At=0,kn=null,Qt=1,Jt="";function In(e,t){Er[Ar++]=xa,Er[Ar++]=wa,wa=e,xa=t}function G0(e,t,n){Et[At++]=Qt,Et[At++]=Jt,Et[At++]=kn,kn=e;var r=Qt;e=Jt;var o=32-St(r)-1;r&=~(1<<o),n+=1;var a=32-St(t)+o;if(30<a){var s=o-o%5;a=(r&(1<<s)-1).toString(32),r>>=s,o-=s,Qt=1<<32-St(t)+o|n<<o|r,Jt=a+e}else Qt=1<<a|n<<o|r,Jt=e}function el(e){null!==e.return&&(In(e,1),G0(e,1,0))}function tl(e){for(;e===wa;)wa=Er[--Ar],Er[Ar]=null,xa=Er[--Ar],Er[Ar]=null;for(;e===kn;)kn=Et[--At],Et[At]=null,Jt=Et[--At],Et[At]=null,Qt=Et[--At],Et[At]=null}var ct=null,dt=null,Ae=!1,xt=null;function $0(e,t){var n=Dt(5,null,null,0);n.elementType="DELETED",n.stateNode=t,n.return=e,null===(t=e.deletions)?(e.deletions=[n],e.flags|=16):t.push(n)}function Z0(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,ct=e,dt=mn(t.firstChild),!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,ct=e,dt=null,!0);case 13:return null!==(t=8!==t.nodeType?null:t)&&(n=null!==kn?{id:Qt,overflow:Jt}:null,e.memoizedState={dehydrated:t,treeContext:n,retryLane:1073741824},(n=Dt(18,null,null,0)).stateNode=t,n.return=e,e.child=n,ct=e,dt=null,!0);default:return!1}}function nl(e){return 0!=(1&e.mode)&&0==(128&e.flags)}function rl(e){if(Ae){var t=dt;if(t){var n=t;if(!Z0(e,t)){if(nl(e))throw Error(M(418));t=mn(n.nextSibling);var r=ct;t&&Z0(e,t)?$0(r,n):(e.flags=-4097&e.flags|2,Ae=!1,ct=e)}}else{if(nl(e))throw Error(M(418));e.flags=-4097&e.flags|2,Ae=!1,ct=e}}}function j0(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;ct=e}function Ra(e){if(e!==ct)return!1;if(!Ae)return j0(e),Ae=!0,!1;var t;if((t=3!==e.tag)&&!(t=5!==e.tag)&&(t="head"!==(t=e.type)&&"body"!==t&&!Wi(e.type,e.memoizedProps)),t&&(t=dt)){if(nl(e))throw W0(),Error(M(418));for(;t;)$0(e,t),t=mn(t.nextSibling)}if(j0(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(M(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){dt=mn(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}dt=null}}else dt=ct?mn(e.stateNode.nextSibling):null;return!0}function W0(){for(var e=dt;e;)e=mn(e.nextSibling)}function br(){dt=ct=null,Ae=!1}function ol(e){null===xt?xt=[e]:xt.push(e)}var Hm=Yt.ReactCurrentBatchConfig;function Rt(e,t){if(e&&e.defaultProps){for(var n in t=be({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var La=hn(null),Oa=null,_r=null,al=null;function sl(){al=_r=Oa=null}function il(e){var t=La.current;Ee(La),e._currentValue=t}function ll(e,t,n){for(;null!==e;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,null!==r&&(r.childLanes|=t)):null!==r&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function vr(e,t){Oa=e,al=_r=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(e.lanes&t&&(tt=!0),e.firstContext=null)}function bt(e){var t=e._currentValue;if(al!==e)if(e={context:e,memoizedValue:t,next:null},null===_r){if(null===Oa)throw Error(M(308));_r=e,Oa.dependencies={lanes:0,firstContext:e}}else _r=_r.next=e;return t}var Mn=null;function ul(e){null===Mn?Mn=[e]:Mn.push(e)}function Y0(e,t,n,r){var o=t.interleaved;return null===o?(n.next=n,ul(t)):(n.next=o.next,o.next=n),t.interleaved=n,en(e,r)}function en(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}var bn=!1;function cl(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function K0(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function tn(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function _n(e,t,n){var r=e.updateQueue;if(null===r)return null;if(r=r.shared,2&re){var o=r.pending;return null===o?t.next=t:(t.next=o.next,o.next=t),r.pending=t,en(e,n)}return null===(o=r.interleaved)?(t.next=t,ul(r)):(t.next=o.next,o.next=t),r.interleaved=t,en(e,n)}function ka(e,t,n){if(null!==(t=t.updateQueue)&&(t=t.shared,0!=(4194240&n))){var r=t.lanes;n|=r&=e.pendingLanes,t.lanes=n,Ti(e,n)}}function X0(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var o=null,a=null;if(null!==(n=n.firstBaseUpdate)){do{var s={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===a?o=a=s:a=a.next=s,n=n.next}while(null!==n);null===a?o=a=t:a=a.next=t}else o=a=t;return n={baseState:r.baseState,firstBaseUpdate:o,lastBaseUpdate:a,shared:r.shared,effects:r.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function Ia(e,t,n,r){var o=e.updateQueue;bn=!1;var a=o.firstBaseUpdate,s=o.lastBaseUpdate,i=o.shared.pending;if(null!==i){o.shared.pending=null;var l=i,u=l.next;l.next=null,null===s?a=u:s.next=u,s=l;var c=e.alternate;null!==c&&((i=(c=c.updateQueue).lastBaseUpdate)!==s&&(null===i?c.firstBaseUpdate=u:i.next=u,c.lastBaseUpdate=l))}if(null!==a){var p=o.baseState;for(s=0,c=u=l=null,i=a;;){var d=i.lane,m=i.eventTime;if((r&d)===d){null!==c&&(c=c.next={eventTime:m,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var A=e,b=i;switch(d=t,m=n,b.tag){case 1:if("function"==typeof(A=b.payload)){p=A.call(m,p,d);break e}p=A;break e;case 3:A.flags=-65537&A.flags|128;case 0:if(null==(d="function"==typeof(A=b.payload)?A.call(m,p,d):A))break e;p=be({},p,d);break e;case 2:bn=!0}}null!==i.callback&&0!==i.lane&&(e.flags|=64,null===(d=o.effects)?o.effects=[i]:d.push(i))}else m={eventTime:m,lane:d,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===c?(u=c=m,l=p):c=c.next=m,s|=d;if(null===(i=i.next)){if(null===(i=o.shared.pending))break;i=(d=i).next,d.next=null,o.lastBaseUpdate=d,o.shared.pending=null}}if(null===c&&(l=p),o.baseState=l,o.firstBaseUpdate=u,o.lastBaseUpdate=c,null!==(t=o.shared.interleaved)){o=t;do{s|=o.lane,o=o.next}while(o!==t)}else null===a&&(o.shared.lanes=0);Pn|=s,e.lanes=s,e.memoizedState=p}}function Q0(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],o=r.callback;if(null!==o){if(r.callback=null,r=n,"function"!=typeof o)throw Error(M(191,o));o.call(r)}}}var J0=(new mc.Component).refs;function dl(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:be({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var Ma={isMounted:function(e){return!!(e=e._reactInternals)&&Rn(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=Xe(),o=Tn(e),a=tn(r,o);a.payload=t,null!=n&&(a.callback=n),null!==(t=_n(e,a,o))&&(kt(t,e,o,r),ka(t,e,o))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=Xe(),o=Tn(e),a=tn(r,o);a.tag=1,a.payload=t,null!=n&&(a.callback=n),null!==(t=_n(e,a,o))&&(kt(t,e,o,r),ka(t,e,o))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=Xe(),r=Tn(e),o=tn(n,r);o.tag=2,null!=t&&(o.callback=t),null!==(t=_n(e,o,r))&&(kt(t,e,r,n),ka(t,e,r))}};function ed(e,t,n,r,o,a,s){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,a,s):!t.prototype||!t.prototype.isPureReactComponent||(!po(n,r)||!po(o,a))}function td(e,t,n){var r=!1,o=En,a=t.contextType;return"object"==typeof a&&null!==a?a=bt(a):(o=et(t)?On:qe.current,a=(r=null!=(r=t.contextTypes))?hr(e,o):En),t=new t(n,a),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=Ma,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=a),t}function nd(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&Ma.enqueueReplaceState(t,t.state,null)}function pl(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=J0,cl(e);var a=t.contextType;"object"==typeof a&&null!==a?o.context=bt(a):(a=et(t)?On:qe.current,o.context=hr(e,a)),o.state=e.memoizedState,"function"==typeof(a=t.getDerivedStateFromProps)&&(dl(e,t,a,n),o.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(t=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&Ma.enqueueReplaceState(o,o.state,null),Ia(e,n,o,r),o.state=e.memoizedState),"function"==typeof o.componentDidMount&&(e.flags|=4194308)}function bo(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(M(309));var r=n.stateNode}if(!r)throw Error(M(147,e));var o=r,a=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===a?t.ref:((t=function(s){var i=o.refs;i===J0&&(i=o.refs={}),null===s?delete i[a]:i[a]=s})._stringRef=a,t)}if("string"!=typeof e)throw Error(M(284));if(!n._owner)throw Error(M(290,e))}return e}function Fa(e,t){throw e=Object.prototype.toString.call(t),Error(M(31,"[object Object]"===e?"object with keys {"+Object.keys(t).join(", ")+"}":e))}function rd(e){return(0,e._init)(e._payload)}function od(e){function t(h,g){if(e){var E=h.deletions;null===E?(h.deletions=[g],h.flags|=16):E.push(g)}}function n(h,g){if(!e)return null;for(;null!==g;)t(h,g),g=g.sibling;return null}function r(h,g){for(h=new Map;null!==g;)null!==g.key?h.set(g.key,g):h.set(g.index,g),g=g.sibling;return h}function o(h,g){return(h=Nn(h,g)).index=0,h.sibling=null,h}function a(h,g,E){return h.index=E,e?null!==(E=h.alternate)?(E=E.index)<g?(h.flags|=2,g):E:(h.flags|=2,g):(h.flags|=1048576,g)}function s(h){return e&&null===h.alternate&&(h.flags|=2),h}function i(h,g,E,v){return null===g||6!==g.tag?((g=Yl(E,h.mode,v)).return=h,g):((g=o(g,E)).return=h,g)}function l(h,g,E,v){var N=E.type;return N===rr?c(h,g,E.props.children,v,E.key):null!==g&&(g.elementType===N||"object"==typeof N&&null!==N&&N.$$typeof===sn&&rd(N)===g.type)?((v=o(g,E.props)).ref=bo(h,g,E),v.return=h,v):((v=ts(E.type,E.key,E.props,null,h.mode,v)).ref=bo(h,g,E),v.return=h,v)}function u(h,g,E,v){return null===g||4!==g.tag||g.stateNode.containerInfo!==E.containerInfo||g.stateNode.implementation!==E.implementation?((g=Kl(E,h.mode,v)).return=h,g):((g=o(g,E.children||[])).return=h,g)}function c(h,g,E,v,N){return null===g||7!==g.tag?((g=Vn(E,h.mode,v,N)).return=h,g):((g=o(g,E)).return=h,g)}function p(h,g,E){if("string"==typeof g&&""!==g||"number"==typeof g)return(g=Yl(""+g,h.mode,E)).return=h,g;if("object"==typeof g&&null!==g){switch(g.$$typeof){case Qo:return(E=ts(g.type,g.key,g.props,null,h.mode,E)).ref=bo(h,null,g),E.return=h,E;case nr:return(g=Kl(g,h.mode,E)).return=h,g;case sn:return p(h,(0,g._init)(g._payload),E)}if(jr(g)||$r(g))return(g=Vn(g,h.mode,E,null)).return=h,g;Fa(h,g)}return null}function d(h,g,E,v){var N=null!==g?g.key:null;if("string"==typeof E&&""!==E||"number"==typeof E)return null!==N?null:i(h,g,""+E,v);if("object"==typeof E&&null!==E){switch(E.$$typeof){case Qo:return E.key===N?l(h,g,E,v):null;case nr:return E.key===N?u(h,g,E,v):null;case sn:return d(h,g,(N=E._init)(E._payload),v)}if(jr(E)||$r(E))return null!==N?null:c(h,g,E,v,null);Fa(h,E)}return null}function m(h,g,E,v,N){if("string"==typeof v&&""!==v||"number"==typeof v)return i(g,h=h.get(E)||null,""+v,N);if("object"==typeof v&&null!==v){switch(v.$$typeof){case Qo:return l(g,h=h.get(null===v.key?E:v.key)||null,v,N);case nr:return u(g,h=h.get(null===v.key?E:v.key)||null,v,N);case sn:return m(h,g,E,(0,v._init)(v._payload),N)}if(jr(v)||$r(v))return c(g,h=h.get(E)||null,v,N,null);Fa(g,v)}return null}return function C(h,g,E,v){if("object"==typeof E&&null!==E&&E.type===rr&&null===E.key&&(E=E.props.children),"object"==typeof E&&null!==E){switch(E.$$typeof){case Qo:e:{for(var N=E.key,_=g;null!==_;){if(_.key===N){if((N=E.type)===rr){if(7===_.tag){n(h,_.sibling),(g=o(_,E.props.children)).return=h,h=g;break e}}else if(_.elementType===N||"object"==typeof N&&null!==N&&N.$$typeof===sn&&rd(N)===_.type){n(h,_.sibling),(g=o(_,E.props)).ref=bo(h,_,E),g.return=h,h=g;break e}n(h,_);break}t(h,_),_=_.sibling}E.type===rr?((g=Vn(E.props.children,h.mode,v,E.key)).return=h,h=g):((v=ts(E.type,E.key,E.props,null,h.mode,v)).ref=bo(h,g,E),v.return=h,h=v)}return s(h);case nr:e:{for(_=E.key;null!==g;){if(g.key===_){if(4===g.tag&&g.stateNode.containerInfo===E.containerInfo&&g.stateNode.implementation===E.implementation){n(h,g.sibling),(g=o(g,E.children||[])).return=h,h=g;break e}n(h,g);break}t(h,g),g=g.sibling}(g=Kl(E,h.mode,v)).return=h,h=g}return s(h);case sn:return C(h,g,(_=E._init)(E._payload),v)}if(jr(E))return function(h,g,E,v){for(var N=null,_=null,S=g,R=g=0,q=null;null!==S&&R<E.length;R++){S.index>R?(q=S,S=null):q=S.sibling;var I=d(h,S,E[R],v);if(null===I){null===S&&(S=q);break}e&&S&&null===I.alternate&&t(h,S),g=a(I,g,R),null===_?N=I:_.sibling=I,_=I,S=q}if(R===E.length)return n(h,S),Ae&&In(h,R),N;if(null===S){for(;R<E.length;R++)null!==(S=p(h,E[R],v))&&(g=a(S,g,R),null===_?N=S:_.sibling=S,_=S);return Ae&&In(h,R),N}for(S=r(h,S);R<E.length;R++)null!==(q=m(S,h,R,E[R],v))&&(e&&null!==q.alternate&&S.delete(null===q.key?R:q.key),g=a(q,g,R),null===_?N=q:_.sibling=q,_=q);return e&&S.forEach((function(Q){return t(h,Q)})),Ae&&In(h,R),N}(h,g,E,v);if($r(E))return function(h,g,E,v){var N=$r(E);if("function"!=typeof N)throw Error(M(150));if(null==(E=N.call(E)))throw Error(M(151));for(var _=N=null,S=g,R=g=0,q=null,I=E.next();null!==S&&!I.done;R++,I=E.next()){S.index>R?(q=S,S=null):q=S.sibling;var Q=d(h,S,I.value,v);if(null===Q){null===S&&(S=q);break}e&&S&&null===Q.alternate&&t(h,S),g=a(Q,g,R),null===_?N=Q:_.sibling=Q,_=Q,S=q}if(I.done)return n(h,S),Ae&&In(h,R),N;if(null===S){for(;!I.done;R++,I=E.next())null!==(I=p(h,I.value,v))&&(g=a(I,g,R),null===_?N=I:_.sibling=I,_=I);return Ae&&In(h,R),N}for(S=r(h,S);!I.done;R++,I=E.next())null!==(I=m(S,h,R,I.value,v))&&(e&&null!==I.alternate&&S.delete(null===I.key?R:I.key),g=a(I,g,R),null===_?N=I:_.sibling=I,_=I);return e&&S.forEach((function(ie){return t(h,ie)})),Ae&&In(h,R),N}(h,g,E,v);Fa(h,E)}return"string"==typeof E&&""!==E||"number"==typeof E?(E=""+E,null!==g&&6===g.tag?(n(h,g.sibling),(g=o(g,E)).return=h,h=g):(n(h,g),(g=Yl(E,h.mode,v)).return=h,h=g),s(h)):n(h,g)}}var Dr=od(!0),ad=od(!1),_o={},qt=hn(_o),vo=hn(_o),Do=hn(_o);function Fn(e){if(e===_o)throw Error(M(174));return e}function fl(e,t){switch(pe(Do,t),pe(vo,e),pe(qt,_o),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:pi(null,"");break;default:t=pi(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}Ee(qt),pe(qt,t)}function yr(){Ee(qt),Ee(vo),Ee(Do)}function sd(e){Fn(Do.current);var t=Fn(qt.current),n=pi(t,e.type);t!==n&&(pe(vo,e),pe(qt,n))}function gl(e){vo.current===e&&(Ee(qt),Ee(vo))}var _e=hn(0);function Ba(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(128&t.flags)return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var ml=[];function hl(){for(var e=0;e<ml.length;e++)ml[e]._workInProgressVersionPrimary=null;ml.length=0}var Pa=Yt.ReactCurrentDispatcher,El=Yt.ReactCurrentBatchConfig,Bn=0,ve=null,we=null,Le=null,Ua=!1,yo=!1,To=0,Vm=0;function He(){throw Error(M(321))}function Al(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!wt(e[n],t[n]))return!1;return!0}function bl(e,t,n,r,o,a){if(Bn=a,ve=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Pa.current=null===e||null===e.memoizedState?Zm:jm,e=n(r,o),yo){a=0;do{if(yo=!1,To=0,25<=a)throw Error(M(301));a+=1,Le=we=null,t.updateQueue=null,Pa.current=Wm,e=n(r,o)}while(yo)}if(Pa.current=Va,t=null!==we&&null!==we.next,Bn=0,Le=we=ve=null,Ua=!1,t)throw Error(M(300));return e}function _l(){var e=0!==To;return To=0,e}function Ht(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===Le?ve.memoizedState=Le=e:Le=Le.next=e,Le}function _t(){if(null===we){var e=ve.alternate;e=null!==e?e.memoizedState:null}else e=we.next;var t=null===Le?ve.memoizedState:Le.next;if(null!==t)Le=t,we=e;else{if(null===e)throw Error(M(310));e={memoizedState:(we=e).memoizedState,baseState:we.baseState,baseQueue:we.baseQueue,queue:we.queue,next:null},null===Le?ve.memoizedState=Le=e:Le=Le.next=e}return Le}function Co(e,t){return"function"==typeof t?t(e):t}function vl(e){var t=_t(),n=t.queue;if(null===n)throw Error(M(311));n.lastRenderedReducer=e;var r=we,o=r.baseQueue,a=n.pending;if(null!==a){if(null!==o){var s=o.next;o.next=a.next,a.next=s}r.baseQueue=o=a,n.pending=null}if(null!==o){a=o.next,r=r.baseState;var i=s=null,l=null,u=a;do{var c=u.lane;if((Bn&c)===c)null!==l&&(l=l.next={lane:0,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null}),r=u.hasEagerState?u.eagerState:e(r,u.action);else{var p={lane:c,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null};null===l?(i=l=p,s=r):l=l.next=p,ve.lanes|=c,Pn|=c}u=u.next}while(null!==u&&u!==a);null===l?s=r:l.next=i,wt(r,t.memoizedState)||(tt=!0),t.memoizedState=r,t.baseState=s,t.baseQueue=l,n.lastRenderedState=r}if(null!==(e=n.interleaved)){o=e;do{a=o.lane,ve.lanes|=a,Pn|=a,o=o.next}while(o!==e)}else null===o&&(n.lanes=0);return[t.memoizedState,n.dispatch]}function Dl(e){var t=_t(),n=t.queue;if(null===n)throw Error(M(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,a=t.memoizedState;if(null!==o){n.pending=null;var s=o=o.next;do{a=e(a,s.action),s=s.next}while(s!==o);wt(a,t.memoizedState)||(tt=!0),t.memoizedState=a,null===t.baseQueue&&(t.baseState=a),n.lastRenderedState=a}return[a,r]}function id(){}function ld(e,t){var n=ve,r=_t(),o=t(),a=!wt(r.memoizedState,o);if(a&&(r.memoizedState=o,tt=!0),r=r.queue,yl(dd.bind(null,n,r,e),[e]),r.getSnapshot!==t||a||null!==Le&&1&Le.memoizedState.tag){if(n.flags|=2048,No(9,cd.bind(null,n,r,o,t),void 0,null),null===Oe)throw Error(M(349));30&Bn||ud(n,t,o)}return o}function ud(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},null===(t=ve.updateQueue)?(t={lastEffect:null,stores:null},ve.updateQueue=t,t.stores=[e]):null===(n=t.stores)?t.stores=[e]:n.push(e)}function cd(e,t,n,r){t.value=n,t.getSnapshot=r,pd(t)&&fd(e)}function dd(e,t,n){return n((function(){pd(t)&&fd(e)}))}function pd(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!wt(e,n)}catch{return!0}}function fd(e){var t=en(e,1);null!==t&&kt(t,e,1,-1)}function gd(e){var t=Ht();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:Co,lastRenderedState:e},t.queue=e,e=e.dispatch=$m.bind(null,ve,e),[t.memoizedState,e]}function No(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=ve.updateQueue)?(t={lastEffect:null,stores:null},ve.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function md(){return _t().memoizedState}function qa(e,t,n,r){var o=Ht();ve.flags|=e,o.memoizedState=No(1|t,n,void 0,void 0===r?null:r)}function Ha(e,t,n,r){var o=_t();r=void 0===r?null:r;var a=void 0;if(null!==we){var s=we.memoizedState;if(a=s.destroy,null!==r&&Al(r,s.deps))return void(o.memoizedState=No(t,n,a,r))}ve.flags|=e,o.memoizedState=No(1|t,n,a,r)}function hd(e,t){return qa(8390656,8,e,t)}function yl(e,t){return Ha(2048,8,e,t)}function Ed(e,t){return Ha(4,2,e,t)}function Ad(e,t){return Ha(4,4,e,t)}function bd(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function _d(e,t,n){return n=null!=n?n.concat([e]):null,Ha(4,4,bd.bind(null,t,e),n)}function Tl(){}function vd(e,t){var n=_t();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Al(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Dd(e,t){var n=_t();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Al(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function yd(e,t,n){return 21&Bn?(wt(n,t)||(n=Yc(),ve.lanes|=n,Pn|=n,e.baseState=!0),t):(e.baseState&&(e.baseState=!1,tt=!0),e.memoizedState=n)}function zm(e,t){var n=ue;ue=0!==n&&4>n?n:4,e(!0);var r=El.transition;El.transition={};try{e(!1),t()}finally{ue=n,El.transition=r}}function Td(){return _t().memoizedState}function Gm(e,t,n){var r=Tn(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Cd(e))Nd(t,n);else if(null!==(n=Y0(e,t,n,r))){kt(n,e,r,Xe()),Sd(n,t,r)}}function $m(e,t,n){var r=Tn(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Cd(e))Nd(t,o);else{var a=e.alternate;if(0===e.lanes&&(null===a||0===a.lanes)&&null!==(a=t.lastRenderedReducer))try{var s=t.lastRenderedState,i=a(s,n);if(o.hasEagerState=!0,o.eagerState=i,wt(i,s)){var l=t.interleaved;return null===l?(o.next=o,ul(t)):(o.next=l.next,l.next=o),void(t.interleaved=o)}}catch{}null!==(n=Y0(e,t,o,r))&&(kt(n,e,r,o=Xe()),Sd(n,t,r))}}function Cd(e){var t=e.alternate;return e===ve||null!==t&&t===ve}function Nd(e,t){yo=Ua=!0;var n=e.pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Sd(e,t,n){if(4194240&n){var r=t.lanes;n|=r&=e.pendingLanes,t.lanes=n,Ti(e,n)}}var Va={readContext:bt,useCallback:He,useContext:He,useEffect:He,useImperativeHandle:He,useInsertionEffect:He,useLayoutEffect:He,useMemo:He,useReducer:He,useRef:He,useState:He,useDebugValue:He,useDeferredValue:He,useTransition:He,useMutableSource:He,useSyncExternalStore:He,useId:He,unstable_isNewReconciler:!1},Zm={readContext:bt,useCallback:function(e,t){return Ht().memoizedState=[e,void 0===t?null:t],e},useContext:bt,useEffect:hd,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,qa(4194308,4,bd.bind(null,t,e),n)},useLayoutEffect:function(e,t){return qa(4194308,4,e,t)},useInsertionEffect:function(e,t){return qa(4,2,e,t)},useMemo:function(e,t){var n=Ht();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Ht();return t=void 0!==n?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=Gm.bind(null,ve,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},Ht().memoizedState=e},useState:gd,useDebugValue:Tl,useDeferredValue:function(e){return Ht().memoizedState=e},useTransition:function(){var e=gd(!1),t=e[0];return e=zm.bind(null,e[1]),Ht().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=ve,o=Ht();if(Ae){if(void 0===n)throw Error(M(407));n=n()}else{if(n=t(),null===Oe)throw Error(M(349));30&Bn||ud(r,t,n)}o.memoizedState=n;var a={value:n,getSnapshot:t};return o.queue=a,hd(dd.bind(null,r,a,e),[e]),r.flags|=2048,No(9,cd.bind(null,r,a,n,t),void 0,null),n},useId:function(){var e=Ht(),t=Oe.identifierPrefix;if(Ae){var n=Jt;t=":"+t+"R"+(n=(Qt&~(1<<32-St(Qt)-1)).toString(32)+n),0<(n=To++)&&(t+="H"+n.toString(32)),t+=":"}else t=":"+t+"r"+(n=Vm++).toString(32)+":";return e.memoizedState=t},unstable_isNewReconciler:!1},jm={readContext:bt,useCallback:vd,useContext:bt,useEffect:yl,useImperativeHandle:_d,useInsertionEffect:Ed,useLayoutEffect:Ad,useMemo:Dd,useReducer:vl,useRef:md,useState:function(){return vl(Co)},useDebugValue:Tl,useDeferredValue:function(e){return yd(_t(),we.memoizedState,e)},useTransition:function(){return[vl(Co)[0],_t().memoizedState]},useMutableSource:id,useSyncExternalStore:ld,useId:Td,unstable_isNewReconciler:!1},Wm={readContext:bt,useCallback:vd,useContext:bt,useEffect:yl,useImperativeHandle:_d,useInsertionEffect:Ed,useLayoutEffect:Ad,useMemo:Dd,useReducer:Dl,useRef:md,useState:function(){return Dl(Co)},useDebugValue:Tl,useDeferredValue:function(e){var t=_t();return null===we?t.memoizedState=e:yd(t,we.memoizedState,e)},useTransition:function(){return[Dl(Co)[0],_t().memoizedState]},useMutableSource:id,useSyncExternalStore:ld,useId:Td,unstable_isNewReconciler:!1};function Tr(e,t){try{var n="",r=t;do{n+=Dg(r),r=r.return}while(r);var o=n}catch(a){o="\nError generating stack: "+a.message+"\n"+a.stack}return{value:e,source:t,stack:o,digest:null}}function Cl(e,t,n){return{value:e,source:null,stack:n??null,digest:t??null}}function Nl(e,t){try{console.error(t.value)}catch(n){setTimeout((function(){throw n}))}}var Ym="function"==typeof WeakMap?WeakMap:Map;function wd(e,t,n){(n=tn(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Ya||(Ya=!0,Hl=r),Nl(0,t)},n}function xd(e,t,n){(n=tn(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var o=t.value;n.payload=function(){return r(o)},n.callback=function(){Nl(0,t)}}var a=e.stateNode;return null!==a&&"function"==typeof a.componentDidCatch&&(n.callback=function(){Nl(0,t),"function"!=typeof r&&(null===Dn?Dn=new Set([this]):Dn.add(this));var s=t.stack;this.componentDidCatch(t.value,{componentStack:null!==s?s:""})}),n}function Rd(e,t,n){var r=e.pingCache;if(null===r){r=e.pingCache=new Ym;var o=new Set;r.set(t,o)}else void 0===(o=r.get(t))&&(o=new Set,r.set(t,o));o.has(n)||(o.add(n),e=uh.bind(null,e,t,n),t.then(e,e))}function Ld(e){do{var t;if((t=13===e.tag)&&(t=null===(t=e.memoizedState)||null!==t.dehydrated),t)return e;e=e.return}while(null!==e);return null}function Od(e,t,n,r,o){return 1&e.mode?(e.flags|=65536,e.lanes=o,e):(e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,1===n.tag&&(null===n.alternate?n.tag=17:((t=tn(-1,1)).tag=2,_n(n,t,1))),n.lanes|=1),e)}var Km=Yt.ReactCurrentOwner,tt=!1;function Ke(e,t,n,r){t.child=null===e?ad(t,null,n,r):Dr(t,e.child,n,r)}function kd(e,t,n,r,o){n=n.render;var a=t.ref;return vr(t,o),r=bl(e,t,n,r,a,o),n=_l(),null===e||tt?(Ae&&n&&el(t),t.flags|=1,Ke(e,t,r,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,nn(e,t,o))}function Id(e,t,n,r,o){if(null===e){var a=n.type;return"function"!=typeof a||Wl(a)||void 0!==a.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=ts(n.type,null,r,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=a,Md(e,t,a,r,o))}if(a=e.child,!(e.lanes&o)){var s=a.memoizedProps;if((n=null!==(n=n.compare)?n:po)(s,r)&&e.ref===t.ref)return nn(e,t,o)}return t.flags|=1,(e=Nn(a,r)).ref=t.ref,e.return=t,t.child=e}function Md(e,t,n,r,o){if(null!==e){var a=e.memoizedProps;if(po(a,r)&&e.ref===t.ref){if(tt=!1,t.pendingProps=r=a,0==(e.lanes&o))return t.lanes=e.lanes,nn(e,t,o);131072&e.flags&&(tt=!0)}}return Sl(e,t,n,r,o)}function Fd(e,t,n){var r=t.pendingProps,o=r.children,a=null!==e?e.memoizedState:null;if("hidden"===r.mode)if(1&t.mode){if(!(1073741824&n))return e=null!==a?a.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,pe(Nr,pt),pt|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=null!==a?a.baseLanes:n,pe(Nr,pt),pt|=r}else t.memoizedState={baseLanes:0,cachePool:null,transitions:null},pe(Nr,pt),pt|=n;else null!==a?(r=a.baseLanes|n,t.memoizedState=null):r=n,pe(Nr,pt),pt|=r;return Ke(e,t,o,n),t.child}function Bd(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function Sl(e,t,n,r,o){var a=et(n)?On:qe.current;return a=hr(t,a),vr(t,o),n=bl(e,t,n,r,a,o),r=_l(),null===e||tt?(Ae&&r&&el(t),t.flags|=1,Ke(e,t,n,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,nn(e,t,o))}function Pd(e,t,n,r,o){if(et(n)){var a=!0;Na(t)}else a=!1;if(vr(t,o),null===t.stateNode)Ga(e,t),td(t,n,r),pl(t,n,r,o),r=!0;else if(null===e){var s=t.stateNode,i=t.memoizedProps;s.props=i;var l=s.context,u=n.contextType;"object"==typeof u&&null!==u?u=bt(u):u=hr(t,u=et(n)?On:qe.current);var c=n.getDerivedStateFromProps,p="function"==typeof c||"function"==typeof s.getSnapshotBeforeUpdate;p||"function"!=typeof s.UNSAFE_componentWillReceiveProps&&"function"!=typeof s.componentWillReceiveProps||(i!==r||l!==u)&&nd(t,s,r,u),bn=!1;var d=t.memoizedState;s.state=d,Ia(t,r,s,o),l=t.memoizedState,i!==r||d!==l||Je.current||bn?("function"==typeof c&&(dl(t,n,c,r),l=t.memoizedState),(i=bn||ed(t,n,i,r,d,l,u))?(p||"function"!=typeof s.UNSAFE_componentWillMount&&"function"!=typeof s.componentWillMount||("function"==typeof s.componentWillMount&&s.componentWillMount(),"function"==typeof s.UNSAFE_componentWillMount&&s.UNSAFE_componentWillMount()),"function"==typeof s.componentDidMount&&(t.flags|=4194308)):("function"==typeof s.componentDidMount&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=l),s.props=r,s.state=l,s.context=u,r=i):("function"==typeof s.componentDidMount&&(t.flags|=4194308),r=!1)}else{s=t.stateNode,K0(e,t),i=t.memoizedProps,u=t.type===t.elementType?i:Rt(t.type,i),s.props=u,p=t.pendingProps,d=s.context,"object"==typeof(l=n.contextType)&&null!==l?l=bt(l):l=hr(t,l=et(n)?On:qe.current);var m=n.getDerivedStateFromProps;(c="function"==typeof m||"function"==typeof s.getSnapshotBeforeUpdate)||"function"!=typeof s.UNSAFE_componentWillReceiveProps&&"function"!=typeof s.componentWillReceiveProps||(i!==p||d!==l)&&nd(t,s,r,l),bn=!1,d=t.memoizedState,s.state=d,Ia(t,r,s,o);var A=t.memoizedState;i!==p||d!==A||Je.current||bn?("function"==typeof m&&(dl(t,n,m,r),A=t.memoizedState),(u=bn||ed(t,n,u,r,d,A,l)||!1)?(c||"function"!=typeof s.UNSAFE_componentWillUpdate&&"function"!=typeof s.componentWillUpdate||("function"==typeof s.componentWillUpdate&&s.componentWillUpdate(r,A,l),"function"==typeof s.UNSAFE_componentWillUpdate&&s.UNSAFE_componentWillUpdate(r,A,l)),"function"==typeof s.componentDidUpdate&&(t.flags|=4),"function"==typeof s.getSnapshotBeforeUpdate&&(t.flags|=1024)):("function"!=typeof s.componentDidUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=4),"function"!=typeof s.getSnapshotBeforeUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=A),s.props=r,s.state=A,s.context=l,r=u):("function"!=typeof s.componentDidUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=4),"function"!=typeof s.getSnapshotBeforeUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=1024),r=!1)}return wl(e,t,n,r,a,o)}function wl(e,t,n,r,o,a){Bd(e,t);var s=0!=(128&t.flags);if(!r&&!s)return o&&V0(t,n,!1),nn(e,t,a);r=t.stateNode,Km.current=t;var i=s&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&s?(t.child=Dr(t,e.child,null,a),t.child=Dr(t,null,i,a)):Ke(e,t,i,a),t.memoizedState=r.state,o&&V0(t,n,!0),t.child}function Ud(e){var t=e.stateNode;t.pendingContext?q0(0,t.pendingContext,t.pendingContext!==t.context):t.context&&q0(0,t.context,!1),fl(e,t.containerInfo)}function qd(e,t,n,r,o){return br(),ol(o),t.flags|=256,Ke(e,t,n,r),t.child}var Gd,kl,$d,Zd,xl={dehydrated:null,treeContext:null,retryLane:0};function Rl(e){return{baseLanes:e,cachePool:null,transitions:null}}function Hd(e,t,n){var i,r=t.pendingProps,o=_e.current,a=!1,s=0!=(128&t.flags);if((i=s)||(i=(null===e||null!==e.memoizedState)&&0!=(2&o)),i?(a=!0,t.flags&=-129):(null===e||null!==e.memoizedState)&&(o|=1),pe(_e,1&o),null===e)return rl(t),null!==(e=t.memoizedState)&&null!==(e=e.dehydrated)?(1&t.mode?"$!"===e.data?t.lanes=8:t.lanes=1073741824:t.lanes=1,null):(s=r.children,e=r.fallback,a?(r=t.mode,a=t.child,s={mode:"hidden",children:s},1&r||null===a?a=ns(s,r,0,null):(a.childLanes=0,a.pendingProps=s),e=Vn(e,r,n,null),a.return=t,e.return=t,a.sibling=e,t.child=a,t.child.memoizedState=Rl(n),t.memoizedState=xl,e):Ll(t,s));if(null!==(o=e.memoizedState)&&null!==(i=o.dehydrated))return function(e,t,n,r,o,a,s){if(n)return 256&t.flags?(t.flags&=-257,r=Cl(Error(M(422))),za(e,t,s,r)):null!==t.memoizedState?(t.child=e.child,t.flags|=128,null):(a=r.fallback,o=t.mode,r=ns({mode:"visible",children:r.children},o,0,null),a=Vn(a,o,s,null),a.flags|=2,r.return=t,a.return=t,r.sibling=a,t.child=r,1&t.mode&&Dr(t,e.child,null,s),t.child.memoizedState=Rl(s),t.memoizedState=xl,a);if(!(1&t.mode))return za(e,t,s,null);if("$!"===o.data){if(r=o.nextSibling&&o.nextSibling.dataset)var i=r.dgst;return r=i,za(e,t,s,r=Cl(a=Error(M(419)),r,void 0))}if(i=0!=(s&e.childLanes),tt||i){if(null!==(r=Oe)){switch(s&-s){case 4:o=2;break;case 16:o=8;break;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:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:o=32;break;case 536870912:o=268435456;break;default:o=0}0!==(o=o&(r.suspendedLanes|s)?0:o)&&o!==a.retryLane&&(a.retryLane=o,en(e,o),kt(r,e,o,-1))}return jl(),za(e,t,s,r=Cl(Error(M(421))))}return"$?"===o.data?(t.flags|=128,t.child=e.child,t=ch.bind(null,e),o._reactRetry=t,null):(e=a.treeContext,dt=mn(o.nextSibling),ct=t,Ae=!0,xt=null,null!==e&&(Et[At++]=Qt,Et[At++]=Jt,Et[At++]=kn,Qt=e.id,Jt=e.overflow,kn=t),t=Ll(t,r.children),t.flags|=4096,t)}(e,t,s,r,i,o,n);if(a){a=r.fallback,s=t.mode,i=(o=e.child).sibling;var l={mode:"hidden",children:r.children};return 1&s||t.child===o?(r=Nn(o,l)).subtreeFlags=14680064&o.subtreeFlags:((r=t.child).childLanes=0,r.pendingProps=l,t.deletions=null),null!==i?a=Nn(i,a):(a=Vn(a,s,n,null)).flags|=2,a.return=t,r.return=t,r.sibling=a,t.child=r,r=a,a=t.child,s=null===(s=e.child.memoizedState)?Rl(n):{baseLanes:s.baseLanes|n,cachePool:null,transitions:s.transitions},a.memoizedState=s,a.childLanes=e.childLanes&~n,t.memoizedState=xl,r}return e=(a=e.child).sibling,r=Nn(a,{mode:"visible",children:r.children}),!(1&t.mode)&&(r.lanes=n),r.return=t,r.sibling=null,null!==e&&(null===(n=t.deletions)?(t.deletions=[e],t.flags|=16):n.push(e)),t.child=r,t.memoizedState=null,r}function Ll(e,t){return(t=ns({mode:"visible",children:t},e.mode,0,null)).return=e,e.child=t}function za(e,t,n,r){return null!==r&&ol(r),Dr(t,e.child,null,n),(e=Ll(t,t.pendingProps.children)).flags|=2,t.memoizedState=null,e}function Vd(e,t,n){e.lanes|=t;var r=e.alternate;null!==r&&(r.lanes|=t),ll(e.return,t,n)}function Ol(e,t,n,r,o){var a=e.memoizedState;null===a?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:o}:(a.isBackwards=t,a.rendering=null,a.renderingStartTime=0,a.last=r,a.tail=n,a.tailMode=o)}function zd(e,t,n){var r=t.pendingProps,o=r.revealOrder,a=r.tail;if(Ke(e,t,r.children,n),2&(r=_e.current))r=1&r|2,t.flags|=128;else{if(null!==e&&128&e.flags)e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Vd(e,n,t);else if(19===e.tag)Vd(e,n,t);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(pe(_e,r),1&t.mode)switch(o){case"forwards":for(n=t.child,o=null;null!==n;)null!==(e=n.alternate)&&null===Ba(e)&&(o=n),n=n.sibling;null===(n=o)?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),Ol(t,!1,o,n,a);break;case"backwards":for(n=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===Ba(e)){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}Ol(t,!0,n,null,a);break;case"together":Ol(t,!1,null,null,void 0);break;default:t.memoizedState=null}else t.memoizedState=null;return t.child}function Ga(e,t){!(1&t.mode)&&null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2)}function nn(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Pn|=t.lanes,!(n&t.childLanes))return null;if(null!==e&&t.child!==e.child)throw Error(M(153));if(null!==t.child){for(n=Nn(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Nn(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function So(e,t){if(!Ae)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function Ve(e){var t=null!==e.alternate&&e.alternate.child===e.child,n=0,r=0;if(t)for(var o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=14680064&o.subtreeFlags,r|=14680064&o.flags,o.return=e,o=o.sibling;else for(o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=o.subtreeFlags,r|=o.flags,o.return=e,o=o.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function Jm(e,t,n){var r=t.pendingProps;switch(tl(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Ve(t),null;case 1:case 17:return et(t.type)&&Ca(),Ve(t),null;case 3:return r=t.stateNode,yr(),Ee(Je),Ee(qe),hl(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),(null===e||null===e.child)&&(Ra(t)?t.flags|=4:null===e||e.memoizedState.isDehydrated&&!(256&t.flags)||(t.flags|=1024,null!==xt&&(Gl(xt),xt=null))),kl(e,t),Ve(t),null;case 5:gl(t);var o=Fn(Do.current);if(n=t.type,null!==e&&null!=t.stateNode)$d(e,t,n,r,o),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!r){if(null===t.stateNode)throw Error(M(166));return Ve(t),null}if(e=Fn(qt.current),Ra(t)){r=t.stateNode,n=t.type;var a=t.memoizedProps;switch(r[Ut]=t,r[Eo]=a,e=0!=(1&t.mode),n){case"dialog":he("cancel",r),he("close",r);break;case"iframe":case"object":case"embed":he("load",r);break;case"video":case"audio":for(o=0;o<go.length;o++)he(go[o],r);break;case"source":he("error",r);break;case"img":case"image":case"link":he("error",r),he("load",r);break;case"details":he("toggle",r);break;case"input":Cc(r,a),he("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!a.multiple},he("invalid",r);break;case"textarea":wc(r,a),he("invalid",r)}for(var s in fi(n,a),o=null,a)if(a.hasOwnProperty(s)){var i=a[s];"children"===s?"string"==typeof i?r.textContent!==i&&(!0!==a.suppressHydrationWarning&&Da(r.textContent,i,e),o=["children",i]):"number"==typeof i&&r.textContent!==""+i&&(!0!==a.suppressHydrationWarning&&Da(r.textContent,i,e),o=["children",""+i]):Gr.hasOwnProperty(s)&&null!=i&&"onScroll"===s&&he("scroll",r)}switch(n){case"input":Jo(r),Sc(r,a,!0);break;case"textarea":Jo(r),Rc(r);break;case"select":case"option":break;default:"function"==typeof a.onClick&&(r.onclick=ya)}r=o,t.updateQueue=r,null!==r&&(t.flags|=4)}else{s=9===o.nodeType?o:o.ownerDocument,"http://www.w3.org/1999/xhtml"===e&&(e=Lc(n)),"http://www.w3.org/1999/xhtml"===e?"script"===n?((e=s.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=s.createElement(n,{is:r.is}):(e=s.createElement(n),"select"===n&&(s=e,r.multiple?s.multiple=!0:r.size&&(s.size=r.size))):e=s.createElementNS(e,n),e[Ut]=t,e[Eo]=r,Gd(e,t,!1,!1),t.stateNode=e;e:{switch(s=gi(n,r),n){case"dialog":he("cancel",e),he("close",e),o=r;break;case"iframe":case"object":case"embed":he("load",e),o=r;break;case"video":case"audio":for(o=0;o<go.length;o++)he(go[o],e);o=r;break;case"source":he("error",e),o=r;break;case"img":case"image":case"link":he("error",e),he("load",e),o=r;break;case"details":he("toggle",e),o=r;break;case"input":Cc(e,r),o=li(e,r),he("invalid",e);break;case"option":default:o=r;break;case"select":e._wrapperState={wasMultiple:!!r.multiple},o=be({},r,{value:void 0}),he("invalid",e);break;case"textarea":wc(e,r),o=di(e,r),he("invalid",e)}for(a in fi(n,o),i=o)if(i.hasOwnProperty(a)){var l=i[a];"style"===a?Ic(e,l):"dangerouslySetInnerHTML"===a?null!=(l=l?l.__html:void 0)&&Oc(e,l):"children"===a?"string"==typeof l?("textarea"!==n||""!==l)&&Wr(e,l):"number"==typeof l&&Wr(e,""+l):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(Gr.hasOwnProperty(a)?null!=l&&"onScroll"===a&&he("scroll",e):null!=l&&Xs(e,a,l,s))}switch(n){case"input":Jo(e),Sc(e,r,!1);break;case"textarea":Jo(e),Rc(e);break;case"option":null!=r.value&&e.setAttribute("value",""+ln(r.value));break;case"select":e.multiple=!!r.multiple,null!=(a=r.value)?or(e,!!r.multiple,a,!1):null!=r.defaultValue&&or(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=ya)}switch(n){case"button":case"input":case"select":case"textarea":r=!!r.autoFocus;break e;case"img":r=!0;break e;default:r=!1}}r&&(t.flags|=4)}null!==t.ref&&(t.flags|=512,t.flags|=2097152)}return Ve(t),null;case 6:if(e&&null!=t.stateNode)Zd(e,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(M(166));if(n=Fn(Do.current),Fn(qt.current),Ra(t)){if(r=t.stateNode,n=t.memoizedProps,r[Ut]=t,(a=r.nodeValue!==n)&&null!==(e=ct))switch(e.tag){case 3:Da(r.nodeValue,n,0!=(1&e.mode));break;case 5:!0!==e.memoizedProps.suppressHydrationWarning&&Da(r.nodeValue,n,0!=(1&e.mode))}a&&(t.flags|=4)}else(r=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[Ut]=t,t.stateNode=r}return Ve(t),null;case 13:if(Ee(_e),r=t.memoizedState,null===e||null!==e.memoizedState&&null!==e.memoizedState.dehydrated){if(Ae&&null!==dt&&1&t.mode&&!(128&t.flags))W0(),br(),t.flags|=98560,a=!1;else if(a=Ra(t),null!==r&&null!==r.dehydrated){if(null===e){if(!a)throw Error(M(318));if(!(a=null!==(a=t.memoizedState)?a.dehydrated:null))throw Error(M(317));a[Ut]=t}else br(),!(128&t.flags)&&(t.memoizedState=null),t.flags|=4;Ve(t),a=!1}else null!==xt&&(Gl(xt),xt=null),a=!0;if(!a)return 65536&t.flags?t:null}return 128&t.flags?(t.lanes=n,t):((r=null!==r)!==(null!==e&&null!==e.memoizedState)&&r&&(t.child.flags|=8192,1&t.mode&&(null===e||1&_e.current?0===xe&&(xe=3):jl())),null!==t.updateQueue&&(t.flags|=4),Ve(t),null);case 4:return yr(),kl(e,t),null===e&&mo(t.stateNode.containerInfo),Ve(t),null;case 10:return il(t.type._context),Ve(t),null;case 19:if(Ee(_e),null===(a=t.memoizedState))return Ve(t),null;if(r=0!=(128&t.flags),null===(s=a.rendering))if(r)So(a,!1);else{if(0!==xe||null!==e&&128&e.flags)for(e=t.child;null!==e;){if(null!==(s=Ba(e))){for(t.flags|=128,So(a,!1),null!==(r=s.updateQueue)&&(t.updateQueue=r,t.flags|=4),t.subtreeFlags=0,r=n,n=t.child;null!==n;)e=r,(a=n).flags&=14680066,null===(s=a.alternate)?(a.childLanes=0,a.lanes=e,a.child=null,a.subtreeFlags=0,a.memoizedProps=null,a.memoizedState=null,a.updateQueue=null,a.dependencies=null,a.stateNode=null):(a.childLanes=s.childLanes,a.lanes=s.lanes,a.child=s.child,a.subtreeFlags=0,a.deletions=null,a.memoizedProps=s.memoizedProps,a.memoizedState=s.memoizedState,a.updateQueue=s.updateQueue,a.type=s.type,e=s.dependencies,a.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return pe(_e,1&_e.current|2),t.child}e=e.sibling}null!==a.tail&&Ne()>Sr&&(t.flags|=128,r=!0,So(a,!1),t.lanes=4194304)}else{if(!r)if(null!==(e=Ba(s))){if(t.flags|=128,r=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),So(a,!0),null===a.tail&&"hidden"===a.tailMode&&!s.alternate&&!Ae)return Ve(t),null}else 2*Ne()-a.renderingStartTime>Sr&&1073741824!==n&&(t.flags|=128,r=!0,So(a,!1),t.lanes=4194304);a.isBackwards?(s.sibling=t.child,t.child=s):(null!==(n=a.last)?n.sibling=s:t.child=s,a.last=s)}return null!==a.tail?(t=a.tail,a.rendering=t,a.tail=t.sibling,a.renderingStartTime=Ne(),t.sibling=null,n=_e.current,pe(_e,r?1&n|2:1&n),t):(Ve(t),null);case 22:case 23:return Zl(),r=null!==t.memoizedState,null!==e&&null!==e.memoizedState!==r&&(t.flags|=8192),r&&1&t.mode?1073741824&pt&&(Ve(t),6&t.subtreeFlags&&(t.flags|=8192)):Ve(t),null;case 24:case 25:return null}throw Error(M(156,t.tag))}function eh(e,t){switch(tl(t),t.tag){case 1:return et(t.type)&&Ca(),65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 3:return yr(),Ee(Je),Ee(qe),hl(),65536&(e=t.flags)&&!(128&e)?(t.flags=-65537&e|128,t):null;case 5:return gl(t),null;case 13:if(Ee(_e),null!==(e=t.memoizedState)&&null!==e.dehydrated){if(null===t.alternate)throw Error(M(340));br()}return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 19:return Ee(_e),null;case 4:return yr(),null;case 10:return il(t.type._context),null;case 22:case 23:return Zl(),null;default:return null}}Gd=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},kl=function(){},$d=function(e,t,n,r){var o=e.memoizedProps;if(o!==r){e=t.stateNode,Fn(qt.current);var s,a=null;switch(n){case"input":o=li(e,o),r=li(e,r),a=[];break;case"select":o=be({},o,{value:void 0}),r=be({},r,{value:void 0}),a=[];break;case"textarea":o=di(e,o),r=di(e,r),a=[];break;default:"function"!=typeof o.onClick&&"function"==typeof r.onClick&&(e.onclick=ya)}for(u in fi(n,r),n=null,o)if(!r.hasOwnProperty(u)&&o.hasOwnProperty(u)&&null!=o[u])if("style"===u){var i=o[u];for(s in i)i.hasOwnProperty(s)&&(n||(n={}),n[s]="")}else"dangerouslySetInnerHTML"!==u&&"children"!==u&&"suppressContentEditableWarning"!==u&&"suppressHydrationWarning"!==u&&"autoFocus"!==u&&(Gr.hasOwnProperty(u)?a||(a=[]):(a=a||[]).push(u,null));for(u in r){var l=r[u];if(i=null!=o?o[u]:void 0,r.hasOwnProperty(u)&&l!==i&&(null!=l||null!=i))if("style"===u)if(i){for(s in i)!i.hasOwnProperty(s)||l&&l.hasOwnProperty(s)||(n||(n={}),n[s]="");for(s in l)l.hasOwnProperty(s)&&i[s]!==l[s]&&(n||(n={}),n[s]=l[s])}else n||(a||(a=[]),a.push(u,n)),n=l;else"dangerouslySetInnerHTML"===u?(l=l?l.__html:void 0,i=i?i.__html:void 0,null!=l&&i!==l&&(a=a||[]).push(u,l)):"children"===u?"string"!=typeof l&&"number"!=typeof l||(a=a||[]).push(u,""+l):"suppressContentEditableWarning"!==u&&"suppressHydrationWarning"!==u&&(Gr.hasOwnProperty(u)?(null!=l&&"onScroll"===u&&he("scroll",e),a||i===l||(a=[])):(a=a||[]).push(u,l))}n&&(a=a||[]).push("style",n);var u=a;(t.updateQueue=u)&&(t.flags|=4)}},Zd=function(e,t,n,r){n!==r&&(t.flags|=4)};var $a=!1,ze=!1,th="function"==typeof WeakSet?WeakSet:Set,U=null;function Cr(e,t){var n=e.ref;if(null!==n)if("function"==typeof n)try{n(null)}catch(r){ye(e,t,r)}else n.current=null}function Il(e,t,n){try{n()}catch(r){ye(e,t,r)}}var jd=!1;function wo(e,t,n){var r=t.updateQueue;if(null!==(r=null!==r?r.lastEffect:null)){var o=r=r.next;do{if((o.tag&e)===e){var a=o.destroy;o.destroy=void 0,void 0!==a&&Il(t,n,a)}o=o.next}while(o!==r)}}function Za(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect: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 Ml(e){var t=e.ref;if(null!==t){var n=e.stateNode;e.tag,e=n,"function"==typeof t?t(e):t.current=e}}function Wd(e){var t=e.alternate;null!==t&&(e.alternate=null,Wd(t)),e.child=null,e.deletions=null,e.sibling=null,5===e.tag&&(null!==(t=e.stateNode)&&(delete t[Ut],delete t[Eo],delete t[Xi],delete t[Pm],delete t[Um])),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 Yd(e){return 5===e.tag||3===e.tag||4===e.tag}function Kd(e){e:for(;;){for(;null===e.sibling;){if(null===e.return||Yd(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;5!==e.tag&&6!==e.tag&&18!==e.tag;){if(2&e.flags||null===e.child||4===e.tag)continue e;e.child.return=e,e=e.child}if(!(2&e.flags))return e.stateNode}}function Fl(e,t,n){var r=e.tag;if(5===r||6===r)e=e.stateNode,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=ya));else if(4!==r&&null!==(e=e.child))for(Fl(e,t,n),e=e.sibling;null!==e;)Fl(e,t,n),e=e.sibling}function Bl(e,t,n){var r=e.tag;if(5===r||6===r)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==r&&null!==(e=e.child))for(Bl(e,t,n),e=e.sibling;null!==e;)Bl(e,t,n),e=e.sibling}var Fe=null,Lt=!1;function vn(e,t,n){for(n=n.child;null!==n;)Xd(e,t,n),n=n.sibling}function Xd(e,t,n){if(Pt&&"function"==typeof Pt.onCommitFiberUnmount)try{Pt.onCommitFiberUnmount(aa,n)}catch{}switch(n.tag){case 5:ze||Cr(n,t);case 6:var r=Fe,o=Lt;Fe=null,vn(e,t,n),Lt=o,null!==(Fe=r)&&(Lt?(e=Fe,n=n.stateNode,8===e.nodeType?e.parentNode.removeChild(n):e.removeChild(n)):Fe.removeChild(n.stateNode));break;case 18:null!==Fe&&(Lt?(e=Fe,n=n.stateNode,8===e.nodeType?Ki(e.parentNode,n):1===e.nodeType&&Ki(e,n),ao(e)):Ki(Fe,n.stateNode));break;case 4:r=Fe,o=Lt,Fe=n.stateNode.containerInfo,Lt=!0,vn(e,t,n),Fe=r,Lt=o;break;case 0:case 11:case 14:case 15:if(!ze&&(null!==(r=n.updateQueue)&&null!==(r=r.lastEffect))){o=r=r.next;do{var a=o,s=a.destroy;a=a.tag,void 0!==s&&(2&a||4&a)&&Il(n,t,s),o=o.next}while(o!==r)}vn(e,t,n);break;case 1:if(!ze&&(Cr(n,t),"function"==typeof(r=n.stateNode).componentWillUnmount))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(i){ye(n,t,i)}vn(e,t,n);break;case 21:vn(e,t,n);break;case 22:1&n.mode?(ze=(r=ze)||null!==n.memoizedState,vn(e,t,n),ze=r):vn(e,t,n);break;default:vn(e,t,n)}}function Qd(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new th),t.forEach((function(r){var o=dh.bind(null,e,r);n.has(r)||(n.add(r),r.then(o,o))}))}}function Ot(e,t){var n=t.deletions;if(null!==n)for(var r=0;r<n.length;r++){var o=n[r];try{var a=e,s=t,i=s;e:for(;null!==i;){switch(i.tag){case 5:Fe=i.stateNode,Lt=!1;break e;case 3:case 4:Fe=i.stateNode.containerInfo,Lt=!0;break e}i=i.return}if(null===Fe)throw Error(M(160));Xd(a,s,o),Fe=null,Lt=!1;var l=o.alternate;null!==l&&(l.return=null),o.return=null}catch(u){ye(o,t,u)}}if(12854&t.subtreeFlags)for(t=t.child;null!==t;)Jd(t,e),t=t.sibling}function Jd(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(Ot(t,e),Vt(e),4&r){try{wo(3,e,e.return),Za(3,e)}catch(b){ye(e,e.return,b)}try{wo(5,e,e.return)}catch(b){ye(e,e.return,b)}}break;case 1:Ot(t,e),Vt(e),512&r&&null!==n&&Cr(n,n.return);break;case 5:if(Ot(t,e),Vt(e),512&r&&null!==n&&Cr(n,n.return),32&e.flags){var o=e.stateNode;try{Wr(o,"")}catch(b){ye(e,e.return,b)}}if(4&r&&null!=(o=e.stateNode)){var a=e.memoizedProps,s=null!==n?n.memoizedProps:a,i=e.type,l=e.updateQueue;if(e.updateQueue=null,null!==l)try{"input"===i&&"radio"===a.type&&null!=a.name&&Nc(o,a),gi(i,s);var u=gi(i,a);for(s=0;s<l.length;s+=2){var c=l[s],p=l[s+1];"style"===c?Ic(o,p):"dangerouslySetInnerHTML"===c?Oc(o,p):"children"===c?Wr(o,p):Xs(o,c,p,u)}switch(i){case"input":ui(o,a);break;case"textarea":xc(o,a);break;case"select":var d=o._wrapperState.wasMultiple;o._wrapperState.wasMultiple=!!a.multiple;var m=a.value;null!=m?or(o,!!a.multiple,m,!1):d!==!!a.multiple&&(null!=a.defaultValue?or(o,!!a.multiple,a.defaultValue,!0):or(o,!!a.multiple,a.multiple?[]:"",!1))}o[Eo]=a}catch(b){ye(e,e.return,b)}}break;case 6:if(Ot(t,e),Vt(e),4&r){if(null===e.stateNode)throw Error(M(162));o=e.stateNode,a=e.memoizedProps;try{o.nodeValue=a}catch(b){ye(e,e.return,b)}}break;case 3:if(Ot(t,e),Vt(e),4&r&&null!==n&&n.memoizedState.isDehydrated)try{ao(t.containerInfo)}catch(b){ye(e,e.return,b)}break;case 4:default:Ot(t,e),Vt(e);break;case 13:Ot(t,e),Vt(e),8192&(o=e.child).flags&&(a=null!==o.memoizedState,o.stateNode.isHidden=a,!a||null!==o.alternate&&null!==o.alternate.memoizedState||(ql=Ne())),4&r&&Qd(e);break;case 22:if(c=null!==n&&null!==n.memoizedState,1&e.mode?(ze=(u=ze)||c,Ot(t,e),ze=u):Ot(t,e),Vt(e),8192&r){if(u=null!==e.memoizedState,(e.stateNode.isHidden=u)&&!c&&1&e.mode)for(U=e,c=e.child;null!==c;){for(p=U=c;null!==U;){switch(m=(d=U).child,d.tag){case 0:case 11:case 14:case 15:wo(4,d,d.return);break;case 1:Cr(d,d.return);var A=d.stateNode;if("function"==typeof A.componentWillUnmount){r=d,n=d.return;try{t=r,A.props=t.memoizedProps,A.state=t.memoizedState,A.componentWillUnmount()}catch(b){ye(r,n,b)}}break;case 5:Cr(d,d.return);break;case 22:if(null!==d.memoizedState){n2(p);continue}}null!==m?(m.return=d,U=m):n2(p)}c=c.sibling}e:for(c=null,p=e;;){if(5===p.tag){if(null===c){c=p;try{o=p.stateNode,u?"function"==typeof(a=o.style).setProperty?a.setProperty("display","none","important"):a.display="none":(i=p.stateNode,s=null!=(l=p.memoizedProps.style)&&l.hasOwnProperty("display")?l.display:null,i.style.display=kc("display",s))}catch(b){ye(e,e.return,b)}}}else if(6===p.tag){if(null===c)try{p.stateNode.nodeValue=u?"":p.memoizedProps}catch(b){ye(e,e.return,b)}}else if((22!==p.tag&&23!==p.tag||null===p.memoizedState||p===e)&&null!==p.child){p.child.return=p,p=p.child;continue}if(p===e)break e;for(;null===p.sibling;){if(null===p.return||p.return===e)break e;c===p&&(c=null),p=p.return}c===p&&(c=null),p.sibling.return=p.return,p=p.sibling}}break;case 19:Ot(t,e),Vt(e),4&r&&Qd(e);case 21:}}function Vt(e){var t=e.flags;if(2&t){try{e:{for(var n=e.return;null!==n;){if(Yd(n)){var r=n;break e}n=n.return}throw Error(M(160))}switch(r.tag){case 5:var o=r.stateNode;32&r.flags&&(Wr(o,""),r.flags&=-33),Bl(e,Kd(e),o);break;case 3:case 4:var s=r.stateNode.containerInfo;Fl(e,Kd(e),s);break;default:throw Error(M(161))}}catch(l){ye(e,e.return,l)}e.flags&=-3}4096&t&&(e.flags&=-4097)}function rh(e,t,n){U=e,e2(e)}function e2(e,t,n){for(var r=0!=(1&e.mode);null!==U;){var o=U,a=o.child;if(22===o.tag&&r){var s=null!==o.memoizedState||$a;if(!s){var i=o.alternate,l=null!==i&&null!==i.memoizedState||ze;i=$a;var u=ze;if($a=s,(ze=l)&&!u)for(U=o;null!==U;)l=(s=U).child,22===s.tag&&null!==s.memoizedState?r2(o):null!==l?(l.return=s,U=l):r2(o);for(;null!==a;)U=a,e2(a),a=a.sibling;U=o,$a=i,ze=u}t2(e)}else 8772&o.subtreeFlags&&null!==a?(a.return=o,U=a):t2(e)}}function t2(e){for(;null!==U;){var t=U;if(8772&t.flags){var n=t.alternate;try{if(8772&t.flags)switch(t.tag){case 0:case 11:case 15:ze||Za(5,t);break;case 1:var r=t.stateNode;if(4&t.flags&&!ze)if(null===n)r.componentDidMount();else{var o=t.elementType===t.type?n.memoizedProps:Rt(t.type,n.memoizedProps);r.componentDidUpdate(o,n.memoizedState,r.__reactInternalSnapshotBeforeUpdate)}var a=t.updateQueue;null!==a&&Q0(t,a,r);break;case 3:var s=t.updateQueue;if(null!==s){if(n=null,null!==t.child)switch(t.child.tag){case 5:case 1:n=t.child.stateNode}Q0(t,s,n)}break;case 5:var i=t.stateNode;if(null===n&&4&t.flags){n=i;var l=t.memoizedProps;switch(t.type){case"button":case"input":case"select":case"textarea":l.autoFocus&&n.focus();break;case"img":l.src&&(n.src=l.src)}}break;case 6:case 4:case 12:case 19:case 17:case 21:case 22:case 23:case 25:break;case 13:if(null===t.memoizedState){var u=t.alternate;if(null!==u){var c=u.memoizedState;if(null!==c){var p=c.dehydrated;null!==p&&ao(p)}}}break;default:throw Error(M(163))}ze||512&t.flags&&Ml(t)}catch(d){ye(t,t.return,d)}}if(t===e){U=null;break}if(null!==(n=t.sibling)){n.return=t.return,U=n;break}U=t.return}}function n2(e){for(;null!==U;){var t=U;if(t===e){U=null;break}var n=t.sibling;if(null!==n){n.return=t.return,U=n;break}U=t.return}}function r2(e){for(;null!==U;){var t=U;try{switch(t.tag){case 0:case 11:case 15:var n=t.return;try{Za(4,t)}catch(l){ye(t,n,l)}break;case 1:var r=t.stateNode;if("function"==typeof r.componentDidMount){var o=t.return;try{r.componentDidMount()}catch(l){ye(t,o,l)}}var a=t.return;try{Ml(t)}catch(l){ye(t,a,l)}break;case 5:var s=t.return;try{Ml(t)}catch(l){ye(t,s,l)}}}catch(l){ye(t,t.return,l)}if(t===e){U=null;break}var i=t.sibling;if(null!==i){i.return=t.return,U=i;break}U=t.return}}var p2,oh=Math.ceil,ja=Yt.ReactCurrentDispatcher,Pl=Yt.ReactCurrentOwner,vt=Yt.ReactCurrentBatchConfig,re=0,Oe=null,Se=null,Be=0,pt=0,Nr=hn(0),xe=0,xo=null,Pn=0,Wa=0,Ul=0,Ro=null,nt=null,ql=0,Sr=1/0,rn=null,Ya=!1,Hl=null,Dn=null,Ka=!1,yn=null,Xa=0,Lo=0,Vl=null,Qa=-1,Ja=0;function Xe(){return 6&re?Ne():-1!==Qa?Qa:Qa=Ne()}function Tn(e){return 1&e.mode?2&re&&0!==Be?Be&-Be:null!==Hm.transition?(0===Ja&&(Ja=Yc()),Ja):(0!==(e=ue)||(e=void 0===(e=window.event)?16:o0(e.type)),e):1}function kt(e,t,n,r){if(50<Lo)throw Lo=0,Vl=null,Error(M(185));eo(e,n,r),(!(2&re)||e!==Oe)&&(e===Oe&&(!(2&re)&&(Wa|=n),4===xe&&Cn(e,Be)),rt(e,r),1===n&&0===re&&!(1&t.mode)&&(Sr=Ne()+500,Sa&&An()))}function rt(e,t){var n=e.callbackNode;!function(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,a=e.pendingLanes;0<a;){var s=31-St(a),i=1<<s,l=o[s];-1===l?(!(i&n)||i&r)&&(o[s]=qg(i,t)):l<=t&&(e.expiredLanes|=i),a&=~i}}(e,t);var r=la(e,e===Oe?Be:0);if(0===r)null!==n&&Zc(n),e.callbackNode=null,e.callbackPriority=0;else if(t=r&-r,e.callbackPriority!==t){if(null!=n&&Zc(n),1===t)0===e.tag?function(e){Sa=!0,z0(e)}(a2.bind(null,e)):z0(a2.bind(null,e)),Fm((function(){!(6&re)&&An()})),n=null;else{switch(Kc(r)){case 1:n=vi;break;case 4:n=jc;break;case 16:default:n=oa;break;case 536870912:n=Wc}n=f2(n,o2.bind(null,e))}e.callbackPriority=t,e.callbackNode=n}}function o2(e,t){if(Qa=-1,Ja=0,6&re)throw Error(M(327));var n=e.callbackNode;if(wr()&&e.callbackNode!==n)return null;var r=la(e,e===Oe?Be:0);if(0===r)return null;if(30&r||r&e.expiredLanes||t)t=es(e,r);else{t=r;var o=re;re|=2;var a=i2();for((Oe!==e||Be!==t)&&(rn=null,Sr=Ne()+500,qn(e,t));;)try{ih();break}catch(i){s2(e,i)}sl(),ja.current=a,re=o,null!==Se?t=0:(Oe=null,Be=0,t=xe)}if(0!==t){if(2===t&&(0!==(o=Di(e))&&(r=o,t=zl(e,o))),1===t)throw n=xo,qn(e,0),Cn(e,r),rt(e,Ne()),n;if(6===t)Cn(e,r);else{if(o=e.current.alternate,!(30&r||function(e){for(var t=e;;){if(16384&t.flags){var n=t.updateQueue;if(null!==n&&null!==(n=n.stores))for(var r=0;r<n.length;r++){var o=n[r],a=o.getSnapshot;o=o.value;try{if(!wt(a(),o))return!1}catch{return!1}}}if(n=t.child,16384&t.subtreeFlags&&null!==n)n.return=t,t=n;else{if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}(o)||(t=es(e,r),2===t&&(a=Di(e),0!==a&&(r=a,t=zl(e,a))),1!==t)))throw n=xo,qn(e,0),Cn(e,r),rt(e,Ne()),n;switch(e.finishedWork=o,e.finishedLanes=r,t){case 0:case 1:throw Error(M(345));case 2:case 5:Hn(e,nt,rn);break;case 3:if(Cn(e,r),(130023424&r)===r&&10<(t=ql+500-Ne())){if(0!==la(e,0))break;if(((o=e.suspendedLanes)&r)!==r){Xe(),e.pingedLanes|=e.suspendedLanes&o;break}e.timeoutHandle=Yi(Hn.bind(null,e,nt,rn),t);break}Hn(e,nt,rn);break;case 4:if(Cn(e,r),(4194240&r)===r)break;for(t=e.eventTimes,o=-1;0<r;){var s=31-St(r);a=1<<s,(s=t[s])>o&&(o=s),r&=~a}if(r=o,10<(r=(120>(r=Ne()-r)?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*oh(r/1960))-r)){e.timeoutHandle=Yi(Hn.bind(null,e,nt,rn),r);break}Hn(e,nt,rn);break;default:throw Error(M(329))}}}return rt(e,Ne()),e.callbackNode===n?o2.bind(null,e):null}function zl(e,t){var n=Ro;return e.current.memoizedState.isDehydrated&&(qn(e,t).flags|=256),2!==(e=es(e,t))&&(t=nt,nt=n,null!==t&&Gl(t)),e}function Gl(e){null===nt?nt=e:nt.push.apply(nt,e)}function Cn(e,t){for(t&=~Ul,t&=~Wa,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-St(t),r=1<<n;e[n]=-1,t&=~r}}function a2(e){if(6&re)throw Error(M(327));wr();var t=la(e,0);if(!(1&t))return rt(e,Ne()),null;var n=es(e,t);if(0!==e.tag&&2===n){var r=Di(e);0!==r&&(t=r,n=zl(e,r))}if(1===n)throw n=xo,qn(e,0),Cn(e,t),rt(e,Ne()),n;if(6===n)throw Error(M(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,Hn(e,nt,rn),rt(e,Ne()),null}function $l(e,t){var n=re;re|=1;try{return e(t)}finally{0===(re=n)&&(Sr=Ne()+500,Sa&&An())}}function Un(e){null!==yn&&0===yn.tag&&!(6&re)&&wr();var t=re;re|=1;var n=vt.transition,r=ue;try{if(vt.transition=null,ue=1,e)return e()}finally{ue=r,vt.transition=n,!(6&(re=t))&&An()}}function Zl(){pt=Nr.current,Ee(Nr)}function qn(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,Mm(n)),null!==Se)for(n=Se.return;null!==n;){var r=n;switch(tl(r),r.tag){case 1:null!=(r=r.type.childContextTypes)&&Ca();break;case 3:yr(),Ee(Je),Ee(qe),hl();break;case 5:gl(r);break;case 4:yr();break;case 13:case 19:Ee(_e);break;case 10:il(r.type._context);break;case 22:case 23:Zl()}n=n.return}if(Oe=e,Se=e=Nn(e.current,null),Be=pt=t,xe=0,xo=null,Ul=Wa=Pn=0,nt=Ro=null,null!==Mn){for(t=0;t<Mn.length;t++)if(null!==(r=(n=Mn[t]).interleaved)){n.interleaved=null;var o=r.next,a=n.pending;if(null!==a){var s=a.next;a.next=o,r.next=s}n.pending=r}Mn=null}return e}function s2(e,t){for(;;){var n=Se;try{if(sl(),Pa.current=Va,Ua){for(var r=ve.memoizedState;null!==r;){var o=r.queue;null!==o&&(o.pending=null),r=r.next}Ua=!1}if(Bn=0,Le=we=ve=null,yo=!1,To=0,Pl.current=null,null===n||null===n.return){xe=1,xo=t,Se=null;break}e:{var a=e,s=n.return,i=n,l=t;if(t=Be,i.flags|=32768,null!==l&&"object"==typeof l&&"function"==typeof l.then){var u=l,c=i,p=c.tag;if(!(1&c.mode||0!==p&&11!==p&&15!==p)){var d=c.alternate;d?(c.updateQueue=d.updateQueue,c.memoizedState=d.memoizedState,c.lanes=d.lanes):(c.updateQueue=null,c.memoizedState=null)}var m=Ld(s);if(null!==m){m.flags&=-257,Od(m,s,i,0,t),1&m.mode&&Rd(a,u,t),l=u;var A=(t=m).updateQueue;if(null===A){var b=new Set;b.add(l),t.updateQueue=b}else A.add(l);break e}if(!(1&t)){Rd(a,u,t),jl();break e}l=Error(M(426))}else if(Ae&&1&i.mode){var C=Ld(s);if(null!==C){!(65536&C.flags)&&(C.flags|=256),Od(C,s,i,0,t),ol(Tr(l,i));break e}}a=l=Tr(l,i),4!==xe&&(xe=2),null===Ro?Ro=[a]:Ro.push(a),a=s;do{switch(a.tag){case 3:a.flags|=65536,t&=-t,a.lanes|=t,X0(a,wd(0,l,t));break e;case 1:i=l;var g=a.type,E=a.stateNode;if(!(128&a.flags||"function"!=typeof g.getDerivedStateFromError&&(null===E||"function"!=typeof E.componentDidCatch||null!==Dn&&Dn.has(E)))){a.flags|=65536,t&=-t,a.lanes|=t,X0(a,xd(a,i,t));break e}}a=a.return}while(null!==a)}u2(n)}catch(N){t=N,Se===n&&null!==n&&(Se=n=n.return);continue}break}}function i2(){var e=ja.current;return ja.current=Va,null===e?Va:e}function jl(){(0===xe||3===xe||2===xe)&&(xe=4),null===Oe||!(268435455&Pn)&&!(268435455&Wa)||Cn(Oe,Be)}function es(e,t){var n=re;re|=2;var r=i2();for((Oe!==e||Be!==t)&&(rn=null,qn(e,t));;)try{sh();break}catch(o){s2(e,o)}if(sl(),re=n,ja.current=r,null!==Se)throw Error(M(261));return Oe=null,Be=0,xe}function sh(){for(;null!==Se;)l2(Se)}function ih(){for(;null!==Se&&!Og();)l2(Se)}function l2(e){var t=p2(e.alternate,e,pt);e.memoizedProps=e.pendingProps,null===t?u2(e):Se=t,Pl.current=null}function u2(e){var t=e;do{var n=t.alternate;if(e=t.return,32768&t.flags){if(null!==(n=eh(n,t)))return n.flags&=32767,void(Se=n);if(null===e)return xe=6,void(Se=null);e.flags|=32768,e.subtreeFlags=0,e.deletions=null}else if(null!==(n=Jm(n,t,pt)))return void(Se=n);if(null!==(t=t.sibling))return void(Se=t);Se=t=e}while(null!==t);0===xe&&(xe=5)}function Hn(e,t,n){var r=ue,o=vt.transition;try{vt.transition=null,ue=1,function(e,t,n,r){do{wr()}while(null!==yn);if(6&re)throw Error(M(327));n=e.finishedWork;var o=e.finishedLanes;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(M(177));e.callbackNode=null,e.callbackPriority=0;var a=n.lanes|n.childLanes;if(function(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<n;){var o=31-St(n),a=1<<o;t[o]=0,r[o]=-1,e[o]=-1,n&=~a}}(e,a),e===Oe&&(Se=Oe=null,Be=0),!(2064&n.subtreeFlags)&&!(2064&n.flags)||Ka||(Ka=!0,f2(oa,(function(){return wr(),null}))),a=0!=(15990&n.flags),15990&n.subtreeFlags||a){a=vt.transition,vt.transition=null;var s=ue;ue=1;var i=re;re|=4,Pl.current=null,function(e,t){if(Zi=da,Pi(e=T0())){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{var r=(n=(n=e.ownerDocument)&&n.defaultView||window).getSelection&&n.getSelection();if(r&&0!==r.rangeCount){n=r.anchorNode;var o=r.anchorOffset,a=r.focusNode;r=r.focusOffset;try{n.nodeType,a.nodeType}catch{n=null;break e}var s=0,i=-1,l=-1,u=0,c=0,p=e,d=null;t:for(;;){for(var m;p!==n||0!==o&&3!==p.nodeType||(i=s+o),p!==a||0!==r&&3!==p.nodeType||(l=s+r),3===p.nodeType&&(s+=p.nodeValue.length),null!==(m=p.firstChild);)d=p,p=m;for(;;){if(p===e)break t;if(d===n&&++u===o&&(i=s),d===a&&++c===r&&(l=s),null!==(m=p.nextSibling))break;d=(p=d).parentNode}p=m}n=-1===i||-1===l?null:{start:i,end:l}}else n=null}n=n||{start:0,end:0}}else n=null;for(ji={focusedElem:e,selectionRange:n},da=!1,U=t;null!==U;)if(e=(t=U).child,0!=(1028&t.subtreeFlags)&&null!==e)e.return=t,U=e;else for(;null!==U;){t=U;try{var A=t.alternate;if(1024&t.flags)switch(t.tag){case 0:case 11:case 15:case 5:case 6:case 4:case 17:break;case 1:if(null!==A){var b=A.memoizedProps,C=A.memoizedState,h=t.stateNode,g=h.getSnapshotBeforeUpdate(t.elementType===t.type?b:Rt(t.type,b),C);h.__reactInternalSnapshotBeforeUpdate=g}break;case 3:var E=t.stateNode.containerInfo;1===E.nodeType?E.textContent="":9===E.nodeType&&E.documentElement&&E.removeChild(E.documentElement);break;default:throw Error(M(163))}}catch(v){ye(t,t.return,v)}if(null!==(e=t.sibling)){e.return=t.return,U=e;break}U=t.return}A=jd,jd=!1}(e,n),Jd(n,e),wm(ji),da=!!Zi,ji=Zi=null,e.current=n,rh(n),kg(),re=i,ue=s,vt.transition=a}else e.current=n;if(Ka&&(Ka=!1,yn=e,Xa=o),a=e.pendingLanes,0===a&&(Dn=null),function(e){if(Pt&&"function"==typeof Pt.onCommitFiberRoot)try{Pt.onCommitFiberRoot(aa,e,void 0,128==(128&e.current.flags))}catch{}}(n.stateNode),rt(e,Ne()),null!==t)for(r=e.onRecoverableError,n=0;n<t.length;n++)o=t[n],r(o.value,{componentStack:o.stack,digest:o.digest});if(Ya)throw Ya=!1,e=Hl,Hl=null,e;1&Xa&&0!==e.tag&&wr(),a=e.pendingLanes,1&a?e===Vl?Lo++:(Lo=0,Vl=e):Lo=0,An()}(e,t,n,r)}finally{vt.transition=o,ue=r}return null}function wr(){if(null!==yn){var e=Kc(Xa),t=vt.transition,n=ue;try{if(vt.transition=null,ue=16>e?16:e,null===yn)var r=!1;else{if(e=yn,yn=null,Xa=0,6&re)throw Error(M(331));var o=re;for(re|=4,U=e.current;null!==U;){var a=U,s=a.child;if(16&U.flags){var i=a.deletions;if(null!==i){for(var l=0;l<i.length;l++){var u=i[l];for(U=u;null!==U;){var c=U;switch(c.tag){case 0:case 11:case 15:wo(8,c,a)}var p=c.child;if(null!==p)p.return=c,U=p;else for(;null!==U;){var d=(c=U).sibling,m=c.return;if(Wd(c),c===u){U=null;break}if(null!==d){d.return=m,U=d;break}U=m}}}var A=a.alternate;if(null!==A){var b=A.child;if(null!==b){A.child=null;do{var C=b.sibling;b.sibling=null,b=C}while(null!==b)}}U=a}}if(2064&a.subtreeFlags&&null!==s)s.return=a,U=s;else e:for(;null!==U;){if(2048&(a=U).flags)switch(a.tag){case 0:case 11:case 15:wo(9,a,a.return)}var h=a.sibling;if(null!==h){h.return=a.return,U=h;break e}U=a.return}}var g=e.current;for(U=g;null!==U;){var E=(s=U).child;if(2064&s.subtreeFlags&&null!==E)E.return=s,U=E;else e:for(s=g;null!==U;){if(2048&(i=U).flags)try{switch(i.tag){case 0:case 11:case 15:Za(9,i)}}catch(N){ye(i,i.return,N)}if(i===s){U=null;break e}var v=i.sibling;if(null!==v){v.return=i.return,U=v;break e}U=i.return}}if(re=o,An(),Pt&&"function"==typeof Pt.onPostCommitFiberRoot)try{Pt.onPostCommitFiberRoot(aa,e)}catch{}r=!0}return r}finally{ue=n,vt.transition=t}}return!1}function c2(e,t,n){e=_n(e,t=wd(0,t=Tr(n,t),1),1),t=Xe(),null!==e&&(eo(e,1,t),rt(e,t))}function ye(e,t,n){if(3===e.tag)c2(e,e,n);else for(;null!==t;){if(3===t.tag){c2(t,e,n);break}if(1===t.tag){var r=t.stateNode;if("function"==typeof t.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Dn||!Dn.has(r))){t=_n(t,e=xd(t,e=Tr(n,e),1),1),e=Xe(),null!==t&&(eo(t,1,e),rt(t,e));break}}t=t.return}}function uh(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),t=Xe(),e.pingedLanes|=e.suspendedLanes&n,Oe===e&&(Be&n)===n&&(4===xe||3===xe&&(130023424&Be)===Be&&500>Ne()-ql?qn(e,0):Ul|=n),rt(e,t)}function d2(e,t){0===t&&(1&e.mode?(t=ia,!(130023424&(ia<<=1))&&(ia=4194304)):t=1);var n=Xe();null!==(e=en(e,t))&&(eo(e,t,n),rt(e,n))}function ch(e){var t=e.memoizedState,n=0;null!==t&&(n=t.retryLane),d2(e,n)}function dh(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;null!==o&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(M(314))}null!==r&&r.delete(t),d2(e,n)}function f2(e,t){return $c(e,t)}function ph(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 Dt(e,t,n,r){return new ph(e,t,n,r)}function Wl(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Nn(e,t){var n=e.alternate;return null===n?((n=Dt(e.tag,t,e.key,e.mode)).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=14680064&e.flags,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=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function ts(e,t,n,r,o,a){var s=2;if(r=e,"function"==typeof e)Wl(e)&&(s=1);else if("string"==typeof e)s=5;else e:switch(e){case rr:return Vn(n.children,o,a,t);case Qs:s=8,o|=8;break;case Js:return(e=Dt(12,n,t,2|o)).elementType=Js,e.lanes=a,e;case ti:return(e=Dt(13,n,t,o)).elementType=ti,e.lanes=a,e;case ni:return(e=Dt(19,n,t,o)).elementType=ni,e.lanes=a,e;case vc:return ns(n,o,a,t);default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case bc:s=10;break e;case _c:s=9;break e;case ei:s=11;break e;case ri:s=14;break e;case sn:s=16,r=null;break e}throw Error(M(130,null==e?e:typeof e,""))}return(t=Dt(s,n,t,o)).elementType=e,t.type=r,t.lanes=a,t}function Vn(e,t,n,r){return(e=Dt(7,e,r,t)).lanes=n,e}function ns(e,t,n,r){return(e=Dt(22,e,r,t)).elementType=vc,e.lanes=n,e.stateNode={isHidden:!1},e}function Yl(e,t,n){return(e=Dt(6,e,null,t)).lanes=n,e}function Kl(e,t,n){return(t=Dt(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function gh(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=yi(0),this.expirationTimes=yi(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=yi(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function Xl(e,t,n,r,o,a,s,i,l){return e=new gh(e,t,n,i,l),1===t?(t=1,!0===a&&(t|=8)):t=0,a=Dt(3,null,null,t),e.current=a,a.stateNode=e,a.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},cl(a),e}function g2(e){if(!e)return En;e:{if(Rn(e=e._reactInternals)!==e||1!==e.tag)throw Error(M(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(et(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(null!==t);throw Error(M(171))}if(1===e.tag){var n=e.type;if(et(n))return H0(e,n,t)}return t}function m2(e,t,n,r,o,a,s,i,l){return(e=Xl(n,r,!0,e,0,a,0,i,l)).context=g2(null),n=e.current,(a=tn(r=Xe(),o=Tn(n))).callback=t??null,_n(n,a,o),e.current.lanes=o,eo(e,o,r),rt(e,r),e}function rs(e,t,n,r){var o=t.current,a=Xe(),s=Tn(o);return n=g2(n),null===t.context?t.context=n:t.pendingContext=n,(t=tn(a,s)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),null!==(e=_n(o,t,s))&&(kt(e,o,s,a),ka(e,o,s)),s}function os(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function h2(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function Ql(e,t){h2(e,t),(e=e.alternate)&&h2(e,t)}p2=function(e,t,n){if(null!==e)if(e.memoizedProps!==t.pendingProps||Je.current)tt=!0;else{if(!(e.lanes&n||128&t.flags))return tt=!1,function(e,t,n){switch(t.tag){case 3:Ud(t),br();break;case 5:sd(t);break;case 1:et(t.type)&&Na(t);break;case 4:fl(t,t.stateNode.containerInfo);break;case 10:var r=t.type._context,o=t.memoizedProps.value;pe(La,r._currentValue),r._currentValue=o;break;case 13:if(null!==(r=t.memoizedState))return null!==r.dehydrated?(pe(_e,1&_e.current),t.flags|=128,null):n&t.child.childLanes?Hd(e,t,n):(pe(_e,1&_e.current),null!==(e=nn(e,t,n))?e.sibling:null);pe(_e,1&_e.current);break;case 19:if(r=0!=(n&t.childLanes),128&e.flags){if(r)return zd(e,t,n);t.flags|=128}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),pe(_e,_e.current),r)break;return null;case 22:case 23:return t.lanes=0,Fd(e,t,n)}return nn(e,t,n)}(e,t,n);tt=!!(131072&e.flags)}else tt=!1,Ae&&1048576&t.flags&&G0(t,xa,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Ga(e,t),e=t.pendingProps;var o=hr(t,qe.current);vr(t,n),o=bl(null,t,r,e,o,n);var a=_l();return t.flags|=1,"object"==typeof o&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof?(t.tag=1,t.memoizedState=null,t.updateQueue=null,et(r)?(a=!0,Na(t)):a=!1,t.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,cl(t),o.updater=Ma,t.stateNode=o,o._reactInternals=t,pl(t,r,e,n),t=wl(null,t,r,!0,a,n)):(t.tag=0,Ae&&a&&el(t),Ke(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Ga(e,t),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if("function"==typeof e)return Wl(e)?1:0;if(null!=e){if((e=e.$$typeof)===ei)return 11;if(e===ri)return 14}return 2}(r),e=Rt(r,e),o){case 0:t=Sl(null,t,r,e,n);break e;case 1:t=Pd(null,t,r,e,n);break e;case 11:t=kd(null,t,r,e,n);break e;case 14:t=Id(null,t,r,Rt(r.type,e),n);break e}throw Error(M(306,r,""))}return t;case 0:return r=t.type,o=t.pendingProps,Sl(e,t,r,o=t.elementType===r?o:Rt(r,o),n);case 1:return r=t.type,o=t.pendingProps,Pd(e,t,r,o=t.elementType===r?o:Rt(r,o),n);case 3:e:{if(Ud(t),null===e)throw Error(M(387));r=t.pendingProps,o=(a=t.memoizedState).element,K0(e,t),Ia(t,r,null,n);var s=t.memoizedState;if(r=s.element,a.isDehydrated){if(a={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=a,t.memoizedState=a,256&t.flags){t=qd(e,t,r,n,o=Tr(Error(M(423)),t));break e}if(r!==o){t=qd(e,t,r,n,o=Tr(Error(M(424)),t));break e}for(dt=mn(t.stateNode.containerInfo.firstChild),ct=t,Ae=!0,xt=null,n=ad(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|4096,n=n.sibling}else{if(br(),r===o){t=nn(e,t,n);break e}Ke(e,t,r,n)}t=t.child}return t;case 5:return sd(t),null===e&&rl(t),r=t.type,o=t.pendingProps,a=null!==e?e.memoizedProps:null,s=o.children,Wi(r,o)?s=null:null!==a&&Wi(r,a)&&(t.flags|=32),Bd(e,t),Ke(e,t,s,n),t.child;case 6:return null===e&&rl(t),null;case 13:return Hd(e,t,n);case 4:return fl(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=Dr(t,null,r,n):Ke(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,kd(e,t,r,o=t.elementType===r?o:Rt(r,o),n);case 7:return Ke(e,t,t.pendingProps,n),t.child;case 8:case 12:return Ke(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,a=t.memoizedProps,s=o.value,pe(La,r._currentValue),r._currentValue=s,null!==a)if(wt(a.value,s)){if(a.children===o.children&&!Je.current){t=nn(e,t,n);break e}}else for(null!==(a=t.child)&&(a.return=t);null!==a;){var i=a.dependencies;if(null!==i){s=a.child;for(var l=i.firstContext;null!==l;){if(l.context===r){if(1===a.tag){(l=tn(-1,n&-n)).tag=2;var u=a.updateQueue;if(null!==u){var c=(u=u.shared).pending;null===c?l.next=l:(l.next=c.next,c.next=l),u.pending=l}}a.lanes|=n,null!==(l=a.alternate)&&(l.lanes|=n),ll(a.return,n,t),i.lanes|=n;break}l=l.next}}else if(10===a.tag)s=a.type===t.type?null:a.child;else if(18===a.tag){if(null===(s=a.return))throw Error(M(341));s.lanes|=n,null!==(i=s.alternate)&&(i.lanes|=n),ll(s,n,t),s=a.sibling}else s=a.child;if(null!==s)s.return=a;else for(s=a;null!==s;){if(s===t){s=null;break}if(null!==(a=s.sibling)){a.return=s.return,s=a;break}s=s.return}a=s}Ke(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,vr(t,n),r=r(o=bt(o)),t.flags|=1,Ke(e,t,r,n),t.child;case 14:return o=Rt(r=t.type,t.pendingProps),Id(e,t,r,o=Rt(r.type,o),n);case 15:return Md(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Rt(r,o),Ga(e,t),t.tag=1,et(r)?(e=!0,Na(t)):e=!1,vr(t,n),td(t,r,o),pl(t,r,o,n),wl(null,t,r,!0,e,n);case 19:return zd(e,t,n);case 22:return Fd(e,t,n)}throw Error(M(156,t.tag))};var E2="function"==typeof reportError?reportError:function(e){console.error(e)};function Jl(e){this._internalRoot=e}function as(e){this._internalRoot=e}function eu(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)}function ss(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function A2(){}function is(e,t,n,r,o){var a=n._reactRootContainer;if(a){var s=a;if("function"==typeof o){var i=o;o=function(){var l=os(s);i.call(l)}}rs(t,s,e,o)}else s=function(e,t,n,r,o){if(o){if("function"==typeof r){var a=r;r=function(){var u=os(s);a.call(u)}}var s=m2(t,r,e,0,null,!1,0,"",A2);return e._reactRootContainer=s,e[Kt]=s.current,mo(8===e.nodeType?e.parentNode:e),Un(),s}for(;o=e.lastChild;)e.removeChild(o);if("function"==typeof r){var i=r;r=function(){var u=os(l);i.call(u)}}var l=Xl(e,0,!1,null,0,!1,0,"",A2);return e._reactRootContainer=l,e[Kt]=l.current,mo(8===e.nodeType?e.parentNode:e),Un((function(){rs(t,l,n,r)})),l}(n,t,e,o,r);return os(s)}as.prototype.render=Jl.prototype.render=function(e){var t=this._internalRoot;if(null===t)throw Error(M(409));rs(e,t,null,null)},as.prototype.unmount=Jl.prototype.unmount=function(){var e=this._internalRoot;if(null!==e){this._internalRoot=null;var t=e.containerInfo;Un((function(){rs(null,e,null,null)})),t[Kt]=null}},as.prototype.unstable_scheduleHydration=function(e){if(e){var t=Jc();e={blockedOn:null,target:e,priority:t};for(var n=0;n<pn.length&&0!==t&&t<pn[n].priority;n++);pn.splice(n,0,e),0===n&&n0(e)}},Xc=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var n=Jr(t.pendingLanes);0!==n&&(Ti(t,1|n),rt(t,Ne()),!(6&re)&&(Sr=Ne()+500,An()))}break;case 13:Un((function(){var r=en(e,1);if(null!==r){var o=Xe();kt(r,e,1,o)}})),Ql(e,1)}},Ci=function(e){if(13===e.tag){var t=en(e,134217728);if(null!==t)kt(t,e,134217728,Xe());Ql(e,134217728)}},Qc=function(e){if(13===e.tag){var t=Tn(e),n=en(e,t);if(null!==n)kt(n,e,t,Xe());Ql(e,t)}},Jc=function(){return ue},e0=function(e,t){var n=ue;try{return ue=e,t()}finally{ue=n}},Ei=function(e,t,n){switch(t){case"input":if(ui(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var o=Ta(r);if(!o)throw Error(M(90));Tc(r),ui(r,o)}}}break;case"textarea":xc(e,n);break;case"select":null!=(t=n.value)&&or(e,!!n.multiple,t,!1)}},Pc=$l,Uc=Un;var Ah={usingClientEntryPoint:!1,Events:[Ao,gr,Ta,Fc,Bc,$l]},Oo={findFiberByHostInstance:Ln,bundleType:0,version:"18.2.0",rendererPackageName:"react-dom"},bh={bundleType:Oo.bundleType,version:Oo.version,rendererPackageName:Oo.rendererPackageName,rendererConfig:Oo.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:Yt.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=zc(e))?null:e.stateNode},findFiberByHostInstance:Oo.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.2.0-next-9e3b772b8-20220608"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var ls=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!ls.isDisabled&&ls.supportsFiber)try{aa=ls.inject(bh),Pt=ls}catch{}}it.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=Ah,it.createPortal=function(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!eu(t))throw Error(M(200));return function(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:nr,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}(e,t,null,n)},it.createRoot=function(e,t){if(!eu(e))throw Error(M(299));var n=!1,r="",o=E2;return null!=t&&(!0===t.unstable_strictMode&&(n=!0),void 0!==t.identifierPrefix&&(r=t.identifierPrefix),void 0!==t.onRecoverableError&&(o=t.onRecoverableError)),t=Xl(e,1,!1,null,0,n,0,r,o),e[Kt]=t.current,mo(8===e.nodeType?e.parentNode:e),new Jl(t)},it.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t)throw"function"==typeof e.render?Error(M(188)):(e=Object.keys(e).join(","),Error(M(268,e)));return e=null===(e=zc(t))?null:e.stateNode},it.flushSync=function(e){return Un(e)},it.hydrate=function(e,t,n){if(!ss(t))throw Error(M(200));return is(null,e,t,!0,n)},it.hydrateRoot=function(e,t,n){if(!eu(e))throw Error(M(405));var r=null!=n&&n.hydratedSources||null,o=!1,a="",s=E2;if(null!=n&&(!0===n.unstable_strictMode&&(o=!0),void 0!==n.identifierPrefix&&(a=n.identifierPrefix),void 0!==n.onRecoverableError&&(s=n.onRecoverableError)),t=m2(t,null,e,1,n??null,o,0,a,s),e[Kt]=t.current,mo(e),r)for(e=0;e<r.length;e++)o=(o=(n=r[e])._getVersion)(n._source),null==t.mutableSourceEagerHydrationData?t.mutableSourceEagerHydrationData=[n,o]:t.mutableSourceEagerHydrationData.push(n,o);return new as(t)},it.render=function(e,t,n){if(!ss(t))throw Error(M(200));return is(null,e,t,!1,n)},it.unmountComponentAtNode=function(e){if(!ss(e))throw Error(M(40));return!!e._reactRootContainer&&(Un((function(){is(null,null,e,!1,(function(){e._reactRootContainer=null,e[Kt]=null}))})),!0)},it.unstable_batchedUpdates=$l,it.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!ss(n))throw Error(M(200));if(null==e||void 0===e._reactInternals)throw Error(M(38));return is(e,t,n,!1,r)},it.version="18.2.0-next-9e3b772b8-20220608",function b2(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||"function"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(b2)}catch(e){console.error(e)}}(),pc.exports=it;var _2=pc.exports;js.createRoot=_2.createRoot,js.hydrateRoot=_2.hydrateRoot;const v2={embedId:null,baseApiUrl:null,prompt:null,model:null,temperature:null,chatIcon:"plus",brandImageUrl:null,greeting:null,buttonColor:"#262626",userBgColor:"#2C2F35",assistantBgColor:"#2563eb",noSponsor:null,sponsorText:"Powered by AnythingLLM",sponsorLink:"https://useanything.com",position:"bottom-right",assistantName:"AnythingLLM Chat Assistant",assistantIcon:null,windowHeight:null,windowWidth:null,textSize:null,openOnLoad:"off",supportEmail:null};let us;const Dh=new Uint8Array(16);function yh(){if(!us&&(us=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!us))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return us(Dh)}const Pe=[];for(let e=0;e<256;++e)Pe.push((e+256).toString(16).slice(1));const D2={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function zn(e,t,n){if(D2.randomUUID&&!t&&!e)return D2.randomUUID();const r=(e=e||{}).random||(e.rng||yh)();if(r[6]=15&r[6]|64,r[8]=63&r[8]|128,t){n=n||0;for(let o=0;o<16;++o)t[n+o]=r[o];return t}return function(e,t=0){return Pe[e[t+0]]+Pe[e[t+1]]+Pe[e[t+2]]+Pe[e[t+3]]+"-"+Pe[e[t+4]]+Pe[e[t+5]]+"-"+Pe[e[t+6]]+Pe[e[t+7]]+"-"+Pe[e[t+8]]+Pe[e[t+9]]+"-"+Pe[e[t+10]]+Pe[e[t+11]]+Pe[e[t+12]]+Pe[e[t+13]]+Pe[e[t+14]]+Pe[e[t+15]]}(r)}function y2(){const[e,t]=Z.useState("");return Z.useEffect((()=>{!function(){var s,i;if(!window||null==(s=null==Te?void 0:Te.settings)||!s.embedId)return;const r=`allm_${null==(i=null==Te?void 0:Te.settings)?void 0:i.embedId}_session_id`,o=window.localStorage.getItem(r);if(o)return console.log("Resuming session id",o),void t(o);const a=zn();console.log("Registering new session id",a),window.localStorage.setItem(r,a),t(a)}()}),[window]),e}const tu="___anythingllm-chat-widget-open___";const Nh="\npre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!\n Theme: GitHub Dark Dimmed\n Description: Dark dimmed theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Colors taken from GitHub's CSS\n*/.hljs{color:#adbac7;background:#22272e}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#f47067}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#dcbdfb}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#6cb6ff}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#96d0ff}.hljs-built_in,.hljs-symbol{color:#f69d50}.hljs-code,.hljs-comment,.hljs-formula{color:#768390}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#8ddb8c}.hljs-subst{color:#adbac7}.hljs-section{color:#316dca;font-weight:700}.hljs-bullet{color:#eac55f}.hljs-emphasis{color:#adbac7;font-style:italic}.hljs-strong{color:#adbac7;font-weight:700}.hljs-addition{color:#b4f1b4;background-color:#1b4721}.hljs-deletion{color:#ffd8d3;background-color:#78191b}\n",Sh='\n /**\n * ==============================================\n * Dot Falling\n * ==============================================\n */\n .dot-falling {\n position: relative;\n left: -9999px;\n width: 10px;\n height: 10px;\n border-radius: 5px;\n background-color: #000000;\n color: #5fa4fa;\n box-shadow: 9999px 0 0 0 #000000;\n animation: dot-falling 1.5s infinite linear;\n animation-delay: 0.1s;\n }\n\n .dot-falling::before,\n .dot-falling::after {\n content: "";\n display: inline-block;\n position: absolute;\n top: 0;\n }\n\n .dot-falling::before {\n width: 10px;\n height: 10px;\n border-radius: 5px;\n background-color: #000000;\n color: #000000;\n animation: dot-falling-before 1.5s infinite linear;\n animation-delay: 0s;\n }\n\n .dot-falling::after {\n width: 10px;\n height: 10px;\n border-radius: 5px;\n background-color: #000000;\n color: #000000;\n animation: dot-falling-after 1.5s infinite linear;\n animation-delay: 0.2s;\n }\n\n @keyframes dot-falling {\n 0% {\n box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);\n }\n 25%,\n 50%,\n 75% {\n box-shadow: 9999px 0 0 0 #000000;\n }\n 100% {\n box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);\n }\n }\n\n @keyframes dot-falling-before {\n 0% {\n box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);\n }\n 25%,\n 50%,\n 75% {\n box-shadow: 9984px 0 0 0 #000000;\n }\n 100% {\n box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);\n }\n }\n\n @keyframes dot-falling-after {\n 0% {\n box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);\n }\n 25%,\n 50%,\n 75% {\n box-shadow: 10014px 0 0 0 #000000;\n }\n 100% {\n box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);\n }\n }\n\n #chat-history::-webkit-scrollbar,\n #chat-container::-webkit-scrollbar,\n .no-scroll::-webkit-scrollbar {\n display: none !important;\n }\n\n /* Hide scrollbar for IE, Edge and Firefox */\n #chat-history,\n #chat-container,\n .no-scroll {\n -ms-overflow-style: none !important; /* IE and Edge */\n scrollbar-width: none !important; /* Firefox */\n }\n\n .animate-slow-pulse {\n transform: scale(1);\n animation: subtlePulse 20s infinite;\n will-change: transform;\n }\n\n @keyframes subtlePulse {\n 0% {\n transform: scale(1);\n }\n 50% {\n transform: scale(1.1);\n }\n 100% {\n transform: scale(1);\n }\n }\n\n @keyframes subtleShift {\n 0% {\n background-position: 0% 50%;\n }\n 50% {\n background-position: 100% 50%;\n }\n 100% {\n background-position: 0% 50%;\n }\n }\n\n .bg-black-900 {\n background: #141414;\n }\n';function wh(){return w.jsxs("head",{children:[w.jsx("style",{children:Nh}),w.jsx("style",{children:Sh})]})}const xh=Z.createContext({color:"currentColor",size:"1em",weight:"regular",mirrored:!1});var Rh=Object.defineProperty,cs=Object.getOwnPropertySymbols,T2=Object.prototype.hasOwnProperty,C2=Object.prototype.propertyIsEnumerable,N2=(e,t,n)=>t in e?Rh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,S2=(e,t)=>{for(var n in t||(t={}))T2.call(t,n)&&N2(e,n,t[n]);if(cs)for(var n of cs(t))C2.call(t,n)&&N2(e,n,t[n]);return e},w2=(e,t)=>{var n={};for(var r in e)T2.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&cs)for(var r of cs(e))t.indexOf(r)<0&&C2.call(e,r)&&(n[r]=e[r]);return n};const Ue=Z.forwardRef(((e,t)=>{const n=e,{alt:r,color:o,size:a,weight:s,mirrored:i,children:l,weights:u}=n,c=w2(n,["alt","color","size","weight","mirrored","children","weights"]),p=Z.useContext(xh),{color:d="currentColor",size:m,weight:A="regular",mirrored:b=!1}=p,C=w2(p,["color","size","weight","mirrored"]);return f.createElement("svg",S2(S2({ref:t,xmlns:"http://www.w3.org/2000/svg",width:a??m,height:a??m,fill:o??d,viewBox:"0 0 256 256",transform:i||b?"scale(-1, 1)":void 0},C),c),!!r&&f.createElement("title",null,r),l,u.get(s??A))}));Ue.displayName="IconBase";const Lh=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228,128a100,100,0,0,1-98.66,100H128a99.39,99.39,0,0,1-68.62-27.29,12,12,0,0,1,16.48-17.45,76,76,0,1,0-1.57-109c-.13.13-.25.25-.39.37L54.89,92H72a12,12,0,0,1,0,24H24a12,12,0,0,1-12-12V56a12,12,0,0,1,24,0V76.72L57.48,57.06A100,100,0,0,1,228,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M72,104H24V56Z",opacity:"0.2"}),f.createElement("path",{d:"M195.88,60.08A96.08,96.08,0,0,0,60.25,60L49.31,70,29.66,50.3A8,8,0,0,0,16,56v48a8,8,0,0,0,8,8H72a8,8,0,0,0,5.66-13.66l-17-17,10.54-9.65a3.07,3.07,0,0,0,.26-.25,80,80,0,1,1,1.65,114.78,8,8,0,0,0-11,11.63A95.38,95.38,0,0,0,128,224h1.32A96,96,0,0,0,195.88,60.08ZM32,96V75.28L52.69,96Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128a96,96,0,0,1-94.71,96H128A95.38,95.38,0,0,1,62.1,197.8a8,8,0,0,1,11-11.63A80,80,0,1,0,71.43,71.39a3.07,3.07,0,0,1-.26.25L60.63,81.29l17,17A8,8,0,0,1,72,112H24a8,8,0,0,1-8-8V56A8,8,0,0,1,29.66,50.3L49.31,70,60.25,60A96,96,0,0,1,224,128Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M222,128a94,94,0,0,1-92.74,94H128a93.43,93.43,0,0,1-64.5-25.65,6,6,0,1,1,8.24-8.72A82,82,0,1,0,70,70l-.19.19L39.44,98H72a6,6,0,0,1,0,12H24a6,6,0,0,1-6-6V56a6,6,0,0,1,12,0V90.34L61.63,61.4A94,94,0,0,1,222,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128a96,96,0,0,1-94.71,96H128A95.38,95.38,0,0,1,62.1,197.8a8,8,0,0,1,11-11.63A80,80,0,1,0,71.43,71.39a3.07,3.07,0,0,1-.26.25L44.59,96H72a8,8,0,0,1,0,16H24a8,8,0,0,1-8-8V56a8,8,0,0,1,16,0V85.8L60.25,60A96,96,0,0,1,224,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M220,128a92,92,0,0,1-90.77,92H128a91.47,91.47,0,0,1-63.13-25.1,4,4,0,1,1,5.5-5.82A84,84,0,1,0,68.6,68.57l-.13.12L34.3,100H72a4,4,0,0,1,0,8H24a4,4,0,0,1-4-4V56a4,4,0,0,1,8,0V94.89l35-32A92,92,0,0,1,220,128Z"}))]]);var Oh=Object.defineProperty,kh=Object.defineProperties,Ih=Object.getOwnPropertyDescriptors,x2=Object.getOwnPropertySymbols,Mh=Object.prototype.hasOwnProperty,Fh=Object.prototype.propertyIsEnumerable,R2=(e,t,n)=>t in e?Oh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const L2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>kh(e,Ih(t)))(((e,t)=>{for(var n in t||(t={}))Mh.call(t,n)&&R2(e,n,t[n]);if(x2)for(var n of x2(t))Fh.call(t,n)&&R2(e,n,t[n]);return e})({ref:t},e),{weights:Lh}))));L2.displayName="ArrowCounterClockwise";const Uh=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M208.49,152.49l-72,72a12,12,0,0,1-17,0l-72-72a12,12,0,0,1,17-17L116,187V40a12,12,0,0,1,24,0V187l51.51-51.52a12,12,0,0,1,17,17Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M200,144l-72,72L56,144Z",opacity:"0.2"}),f.createElement("path",{d:"M207.39,140.94A8,8,0,0,0,200,136H136V40a8,8,0,0,0-16,0v96H56a8,8,0,0,0-5.66,13.66l72,72a8,8,0,0,0,11.32,0l72-72A8,8,0,0,0,207.39,140.94ZM128,204.69,75.31,152H180.69Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M205.66,149.66l-72,72a8,8,0,0,1-11.32,0l-72-72A8,8,0,0,1,56,136h64V40a8,8,0,0,1,16,0v96h64a8,8,0,0,1,5.66,13.66Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M204.24,148.24l-72,72a6,6,0,0,1-8.48,0l-72-72a6,6,0,0,1,8.48-8.48L122,201.51V40a6,6,0,0,1,12,0V201.51l61.76-61.75a6,6,0,0,1,8.48,8.48Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M205.66,149.66l-72,72a8,8,0,0,1-11.32,0l-72-72a8,8,0,0,1,11.32-11.32L120,196.69V40a8,8,0,0,1,16,0V196.69l58.34-58.35a8,8,0,0,1,11.32,11.32Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M202.83,146.83l-72,72a4,4,0,0,1-5.66,0l-72-72a4,4,0,0,1,5.66-5.66L124,206.34V40a4,4,0,0,1,8,0V206.34l65.17-65.17a4,4,0,0,1,5.66,5.66Z"}))]]);var qh=Object.defineProperty,Hh=Object.defineProperties,Vh=Object.getOwnPropertyDescriptors,O2=Object.getOwnPropertySymbols,zh=Object.prototype.hasOwnProperty,Gh=Object.prototype.propertyIsEnumerable,k2=(e,t,n)=>t in e?qh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const I2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>Hh(e,Vh(t)))(((e,t)=>{for(var n in t||(t={}))zh.call(t,n)&&k2(e,n,t[n]);if(O2)for(var n of O2(t))Gh.call(t,n)&&k2(e,n,t[n]);return e})({ref:t},e),{weights:Uh}))));I2.displayName="ArrowDown";const jh=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M241,150.65s0,0,0-.05a51.33,51.33,0,0,0-2.53-5.9L196.93,50.18a12,12,0,0,0-2.5-3.65,36,36,0,0,0-50.92,0A12,12,0,0,0,140,55V76H116V55a12,12,0,0,0-3.51-8.48,36,36,0,0,0-50.92,0,12,12,0,0,0-2.5,3.65L17.53,144.7A51.33,51.33,0,0,0,15,150.6s0,0,0,.05A52,52,0,1,0,116,168V100h24v68a52,52,0,1,0,101-17.35ZM80,62.28a12,12,0,0,1,12-1.22v63.15a51.9,51.9,0,0,0-35.9-7.62ZM64,196a28,28,0,1,1,28-28A28,28,0,0,1,64,196ZM164,61.06a12.06,12.06,0,0,1,12,1.22l23.87,54.31a51.9,51.9,0,0,0-35.9,7.62ZM192,196a28,28,0,1,1,28-28A28,28,0,0,1,192,196Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M104,168a40,40,0,1,1-40-40A40,40,0,0,1,104,168Zm88-40a40,40,0,1,0,40,40A40,40,0,0,0,192,128Z",opacity:"0.2"}),f.createElement("path",{d:"M237.2,151.87v0a47.1,47.1,0,0,0-2.35-5.45L193.26,51.8a7.82,7.82,0,0,0-1.66-2.44,32,32,0,0,0-45.26,0A8,8,0,0,0,144,55V80H112V55a8,8,0,0,0-2.34-5.66,32,32,0,0,0-45.26,0,7.82,7.82,0,0,0-1.66,2.44L21.15,146.4a47.1,47.1,0,0,0-2.35,5.45v0A48,48,0,1,0,112,168V96h32v72a48,48,0,1,0,93.2-16.13ZM76.71,59.75a16,16,0,0,1,19.29-1v73.51a47.9,47.9,0,0,0-46.79-9.92ZM64,200a32,32,0,1,1,32-32A32,32,0,0,1,64,200ZM160,58.74a16,16,0,0,1,19.29,1l27.5,62.58A47.9,47.9,0,0,0,160,132.25ZM192,200a32,32,0,1,1,32-32A32,32,0,0,1,192,200Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M237.22,151.9l0-.1a1.42,1.42,0,0,0-.07-.22,48.46,48.46,0,0,0-2.31-5.3L193.27,51.8a8,8,0,0,0-1.67-2.44,32,32,0,0,0-45.26,0A8,8,0,0,0,144,55V80H112V55a8,8,0,0,0-2.34-5.66,32,32,0,0,0-45.26,0,8,8,0,0,0-1.67,2.44L21.2,146.28a48.46,48.46,0,0,0-2.31,5.3,1.72,1.72,0,0,0-.07.21s0,.08,0,.11a48,48,0,0,0,90.32,32.51,47.49,47.49,0,0,0,2.9-16.59V96h32v71.83a47.49,47.49,0,0,0,2.9,16.59,48,48,0,0,0,90.32-32.51Zm-143.15,27a32,32,0,0,1-60.2-21.71l1.81-4.13A32,32,0,0,1,96,167.88V168h0A32,32,0,0,1,94.07,178.94ZM203,198.07A32,32,0,0,1,160,168h0v-.11a32,32,0,0,1,60.32-14.78l1.81,4.13A32,32,0,0,1,203,198.07Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M233,147.24,191.43,52.6a6,6,0,0,0-1.25-1.83,30,30,0,0,0-42.42,0A6,6,0,0,0,146,55V82H110V55a6,6,0,0,0-1.76-4.25,30,30,0,0,0-42.42,0,6,6,0,0,0-1.25,1.83L23,147.24A46,46,0,1,0,110,168V94h36v74a46,46,0,1,0,87-20.76ZM64,202a34,34,0,1,1,34-34A34,34,0,0,1,64,202Zm0-80a45.77,45.77,0,0,0-18.55,3.92L75.06,58.54A18,18,0,0,1,98,57.71V137A45.89,45.89,0,0,0,64,122Zm94-64.28a18,18,0,0,1,22.94.83l29.61,67.37A45.9,45.9,0,0,0,158,137ZM192,202a34,34,0,1,1,34-34A34,34,0,0,1,192,202Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M237.2,151.87v0a47.1,47.1,0,0,0-2.35-5.45L193.26,51.8a7.82,7.82,0,0,0-1.66-2.44,32,32,0,0,0-45.26,0A8,8,0,0,0,144,55V80H112V55a8,8,0,0,0-2.34-5.66,32,32,0,0,0-45.26,0,7.82,7.82,0,0,0-1.66,2.44L21.15,146.4a47.1,47.1,0,0,0-2.35,5.45v0A48,48,0,1,0,112,168V96h32v72a48,48,0,1,0,93.2-16.13ZM76.71,59.75a16,16,0,0,1,19.29-1v73.51a47.9,47.9,0,0,0-46.79-9.92ZM64,200a32,32,0,1,1,32-32A32,32,0,0,1,64,200ZM160,58.74a16,16,0,0,1,19.29,1l27.5,62.58A47.9,47.9,0,0,0,160,132.25ZM192,200a32,32,0,1,1,32-32A32,32,0,0,1,192,200Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M231.22,148.09,189.6,53.41a3.94,3.94,0,0,0-.83-1.22,28,28,0,0,0-39.6,0A4,4,0,0,0,148,55V84H108V55a4,4,0,0,0-1.17-2.83,28,28,0,0,0-39.6,0,3.94,3.94,0,0,0-.83,1.22L24.78,148.09A44,44,0,1,0,108,168V92h40v76a44,44,0,1,0,83.22-19.91ZM64,204a36,36,0,1,1,36-36A36,36,0,0,1,64,204Zm0-80a43.78,43.78,0,0,0-22.66,6.3L73.4,57.35a20,20,0,0,1,26.6-.59v86A44,44,0,0,0,64,124Zm92-67.23a20,20,0,0,1,26.6.59l32.06,72.94A43.92,43.92,0,0,0,156,142.74ZM192,204a36,36,0,1,1,36-36A36,36,0,0,1,192,204Z"}))]]);var Wh=Object.defineProperty,Yh=Object.defineProperties,Kh=Object.getOwnPropertyDescriptors,M2=Object.getOwnPropertySymbols,Xh=Object.prototype.hasOwnProperty,Qh=Object.prototype.propertyIsEnumerable,F2=(e,t,n)=>t in e?Wh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const B2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>Yh(e,Kh(t)))(((e,t)=>{for(var n in t||(t={}))Xh.call(t,n)&&F2(e,n,t[n]);if(M2)for(var n of M2(t))Qh.call(t,n)&&F2(e,n,t[n]);return e})({ref:t},e),{weights:jh}))));B2.displayName="Binoculars";const tE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M120,128a16,16,0,1,1-16-16A16,16,0,0,1,120,128Zm32-16a16,16,0,1,0,16,16A16,16,0,0,0,152,112Zm84,16A108,108,0,0,1,78.77,224.15L46.34,235A20,20,0,0,1,21,209.66l10.81-32.43A108,108,0,1,1,236,128Zm-24,0A84,84,0,1,0,55.27,170.06a12,12,0,0,1,1,9.81l-9.93,29.79,29.79-9.93a12.1,12.1,0,0,1,3.8-.62,12,12,0,0,1,6,1.62A84,84,0,0,0,212,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128A96,96,0,0,1,79.93,211.11h0L42.54,223.58a8,8,0,0,1-10.12-10.12l12.47-37.39h0A96,96,0,1,1,224,128Z",opacity:"0.2"}),f.createElement("path",{d:"M128,24A104,104,0,0,0,36.18,176.88L24.83,210.93a16,16,0,0,0,20.24,20.24l34.05-11.35A104,104,0,1,0,128,24Zm0,192a87.87,87.87,0,0,1-44.06-11.81,8,8,0,0,0-4-1.08,7.85,7.85,0,0,0-2.53.42L40,216,52.47,178.6a8,8,0,0,0-.66-6.54A88,88,0,1,1,128,216Zm12-88a12,12,0,1,1-12-12A12,12,0,0,1,140,128Zm-44,0a12,12,0,1,1-12-12A12,12,0,0,1,96,128Zm88,0a12,12,0,1,1-12-12A12,12,0,0,1,184,128Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,24A104,104,0,0,0,36.18,176.88L24.83,210.93a16,16,0,0,0,20.24,20.24l34.05-11.35A104,104,0,1,0,128,24ZM84,140a12,12,0,1,1,12-12A12,12,0,0,1,84,140Zm44,0a12,12,0,1,1,12-12A12,12,0,0,1,128,140Zm44,0a12,12,0,1,1,12-12A12,12,0,0,1,172,140Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M138,128a10,10,0,1,1-10-10A10,10,0,0,1,138,128ZM84,118a10,10,0,1,0,10,10A10,10,0,0,0,84,118Zm88,0a10,10,0,1,0,10,10A10,10,0,0,0,172,118Zm58,10A102,102,0,0,1,79.31,217.65L44.44,229.27a14,14,0,0,1-17.71-17.71l11.62-34.87A102,102,0,1,1,230,128Zm-12,0A90,90,0,1,0,50.08,173.06a6,6,0,0,1,.5,4.91L38.12,215.35a2,2,0,0,0,2.53,2.53L78,205.42a6.2,6.2,0,0,1,1.9-.31,6.09,6.09,0,0,1,3,.81A90,90,0,0,0,218,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M140,128a12,12,0,1,1-12-12A12,12,0,0,1,140,128ZM84,116a12,12,0,1,0,12,12A12,12,0,0,0,84,116Zm88,0a12,12,0,1,0,12,12A12,12,0,0,0,172,116Zm60,12A104,104,0,0,1,79.12,219.82L45.07,231.17a16,16,0,0,1-20.24-20.24l11.35-34.05A104,104,0,1,1,232,128Zm-16,0A88,88,0,1,0,51.81,172.06a8,8,0,0,1,.66,6.54L40,216,77.4,203.53a7.85,7.85,0,0,1,2.53-.42,8,8,0,0,1,4,1.08A88,88,0,0,0,216,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M136,128a8,8,0,1,1-8-8A8,8,0,0,1,136,128Zm-52-8a8,8,0,1,0,8,8A8,8,0,0,0,84,120Zm88,0a8,8,0,1,0,8,8A8,8,0,0,0,172,120Zm56,8A100,100,0,0,1,79.5,215.47l-35.69,11.9a12,12,0,0,1-15.18-15.18l11.9-35.69A100,100,0,1,1,228,128Zm-8,0A92,92,0,1,0,48.35,174.07a4,4,0,0,1,.33,3.27L36.22,214.72a4,4,0,0,0,5.06,5.06l37.38-12.46a3.93,3.93,0,0,1,1.27-.21,4.05,4.05,0,0,1,2,.54A92,92,0,0,0,220,128Z"}))]]);var nE=Object.defineProperty,rE=Object.defineProperties,oE=Object.getOwnPropertyDescriptors,P2=Object.getOwnPropertySymbols,aE=Object.prototype.hasOwnProperty,sE=Object.prototype.propertyIsEnumerable,U2=(e,t,n)=>t in e?nE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const q2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>rE(e,oE(t)))(((e,t)=>{for(var n in t||(t={}))aE.call(t,n)&&U2(e,n,t[n]);if(P2)for(var n of P2(t))sE.call(t,n)&&U2(e,n,t[n]);return e})({ref:t},e),{weights:tE}))));q2.displayName="ChatCircleDots";const uE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232.49,80.49l-128,128a12,12,0,0,1-17,0l-56-56a12,12,0,1,1,17-17L96,183,215.51,63.51a12,12,0,0,1,17,17Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232,56V200a16,16,0,0,1-16,16H40a16,16,0,0,1-16-16V56A16,16,0,0,1,40,40H216A16,16,0,0,1,232,56Z",opacity:"0.2"}),f.createElement("path",{d:"M205.66,85.66l-96,96a8,8,0,0,1-11.32,0l-40-40a8,8,0,0,1,11.32-11.32L104,164.69l90.34-90.35a8,8,0,0,1,11.32,11.32Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM205.66,85.66l-96,96a8,8,0,0,1-11.32,0l-40-40a8,8,0,0,1,11.32-11.32L104,164.69l90.34-90.35a8,8,0,0,1,11.32,11.32Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228.24,76.24l-128,128a6,6,0,0,1-8.48,0l-56-56a6,6,0,0,1,8.48-8.48L96,191.51,219.76,67.76a6,6,0,0,1,8.48,8.48Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M226.83,74.83l-128,128a4,4,0,0,1-5.66,0l-56-56a4,4,0,0,1,5.66-5.66L96,194.34,221.17,69.17a4,4,0,1,1,5.66,5.66Z"}))]]);var cE=Object.defineProperty,dE=Object.defineProperties,pE=Object.getOwnPropertyDescriptors,H2=Object.getOwnPropertySymbols,fE=Object.prototype.hasOwnProperty,gE=Object.prototype.propertyIsEnumerable,V2=(e,t,n)=>t in e?cE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const z2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>dE(e,pE(t)))(((e,t)=>{for(var n in t||(t={}))fE.call(t,n)&&V2(e,n,t[n]);if(H2)for(var n of H2(t))gE.call(t,n)&&V2(e,n,t[n]);return e})({ref:t},e),{weights:uE}))));z2.displayName="Check";const EE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M236,128a108,108,0,0,1-216,0c0-42.52,24.73-81.34,63-98.9A12,12,0,1,1,93,50.91C63.24,64.57,44,94.83,44,128a84,84,0,0,0,168,0c0-33.17-19.24-63.43-49-77.09A12,12,0,1,1,173,29.1C211.27,46.66,236,85.48,236,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z",opacity:"0.2"}),f.createElement("path",{d:"M232,128a104,104,0,0,1-208,0c0-41,23.81-78.36,60.66-95.27a8,8,0,0,1,6.68,14.54C60.15,61.59,40,93.27,40,128a88,88,0,0,0,176,0c0-34.73-20.15-66.41-51.34-80.73a8,8,0,0,1,6.68-14.54C208.19,49.64,232,87,232,128Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,176A72,72,0,0,1,92,65.64a8,8,0,0,1,8,13.85,56,56,0,1,0,56,0,8,8,0,0,1,8-13.85A72,72,0,0,1,128,200Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M230,128a102,102,0,0,1-204,0c0-40.18,23.35-76.86,59.5-93.45a6,6,0,0,1,5,10.9C58.61,60.09,38,92.49,38,128a90,90,0,0,0,180,0c0-35.51-20.61-67.91-52.5-82.55a6,6,0,0,1,5-10.9C206.65,51.14,230,87.82,230,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232,128a104,104,0,0,1-208,0c0-41,23.81-78.36,60.66-95.27a8,8,0,0,1,6.68,14.54C60.15,61.59,40,93.27,40,128a88,88,0,0,0,176,0c0-34.73-20.15-66.41-51.34-80.73a8,8,0,0,1,6.68-14.54C208.19,49.64,232,87,232,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228,128a100,100,0,0,1-200,0c0-39.4,22.9-75.37,58.33-91.63a4,4,0,1,1,3.34,7.27C57.07,58.6,36,91.71,36,128a92,92,0,0,0,184,0c0-36.29-21.07-69.4-53.67-84.36a4,4,0,1,1,3.34-7.27C205.1,52.63,228,88.6,228,128Z"}))]]);var AE=Object.defineProperty,bE=Object.defineProperties,_E=Object.getOwnPropertyDescriptors,G2=Object.getOwnPropertySymbols,vE=Object.prototype.hasOwnProperty,DE=Object.prototype.propertyIsEnumerable,$2=(e,t,n)=>t in e?AE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const nu=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>bE(e,_E(t)))(((e,t)=>{for(var n in t||(t={}))vE.call(t,n)&&$2(e,n,t[n]);if(G2)for(var n of G2(t))DE.call(t,n)&&$2(e,n,t[n]);return e})({ref:t},e),{weights:EE}))));nu.displayName="CircleNotch";const CE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,28H88A12,12,0,0,0,76,40V76H40A12,12,0,0,0,28,88V216a12,12,0,0,0,12,12H168a12,12,0,0,0,12-12V180h36a12,12,0,0,0,12-12V40A12,12,0,0,0,216,28ZM156,204H52V100H156Zm48-48H180V88a12,12,0,0,0-12-12H100V52H204Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,40V168H168V88H88V40Z",opacity:"0.2"}),f.createElement("path",{d:"M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32Zm-8,128H176V88a8,8,0,0,0-8-8H96V48H208Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,34H88a6,6,0,0,0-6,6V82H40a6,6,0,0,0-6,6V216a6,6,0,0,0,6,6H168a6,6,0,0,0,6-6V174h42a6,6,0,0,0,6-6V40A6,6,0,0,0,216,34ZM162,210H46V94H162Zm48-48H174V88a6,6,0,0,0-6-6H94V46H210Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,36H88a4,4,0,0,0-4,4V84H40a4,4,0,0,0-4,4V216a4,4,0,0,0,4,4H168a4,4,0,0,0,4-4V172h44a4,4,0,0,0,4-4V40A4,4,0,0,0,216,36ZM164,212H44V92H164Zm48-48H172V88a4,4,0,0,0-4-4H92V44H212Z"}))]]);var NE=Object.defineProperty,SE=Object.defineProperties,wE=Object.getOwnPropertyDescriptors,Z2=Object.getOwnPropertySymbols,xE=Object.prototype.hasOwnProperty,RE=Object.prototype.propertyIsEnumerable,j2=(e,t,n)=>t in e?NE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const W2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>SE(e,wE(t)))(((e,t)=>{for(var n in t||(t={}))xE.call(t,n)&&j2(e,n,t[n]);if(Z2)for(var n of Z2(t))RE.call(t,n)&&j2(e,n,t[n]);return e})({ref:t},e),{weights:CE}))));W2.displayName="Copy";const kE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,96a32,32,0,1,0,32,32A32,32,0,0,0,128,96Zm0,40a8,8,0,1,1,8-8A8,8,0,0,1,128,136Zm0-56A32,32,0,1,0,96,48,32,32,0,0,0,128,80Zm0-40a8,8,0,1,1-8,8A8,8,0,0,1,128,40Zm0,136a32,32,0,1,0,32,32A32,32,0,0,0,128,176Zm0,40a8,8,0,1,1,8-8A8,8,0,0,1,128,216Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M152,128a24,24,0,1,1-24-24A24,24,0,0,1,152,128ZM128,72a24,24,0,1,0-24-24A24,24,0,0,0,128,72Zm0,112a24,24,0,1,0,24,24A24,24,0,0,0,128,184Z",opacity:"0.2"}),f.createElement("path",{d:"M128,96a32,32,0,1,0,32,32A32,32,0,0,0,128,96Zm0,48a16,16,0,1,1,16-16A16,16,0,0,1,128,144Zm0-64A32,32,0,1,0,96,48,32,32,0,0,0,128,80Zm0-48a16,16,0,1,1-16,16A16,16,0,0,1,128,32Zm0,144a32,32,0,1,0,32,32A32,32,0,0,0,128,176Zm0,48a16,16,0,1,1,16-16A16,16,0,0,1,128,224Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M156,128a28,28,0,1,1-28-28A28,28,0,0,1,156,128ZM128,76a28,28,0,1,0-28-28A28,28,0,0,0,128,76Zm0,104a28,28,0,1,0,28,28A28,28,0,0,0,128,180Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,98a30,30,0,1,0,30,30A30,30,0,0,0,128,98Zm0,48a18,18,0,1,1,18-18A18,18,0,0,1,128,146Zm0-68A30,30,0,1,0,98,48,30,30,0,0,0,128,78Zm0-48a18,18,0,1,1-18,18A18,18,0,0,1,128,30Zm0,148a30,30,0,1,0,30,30A30,30,0,0,0,128,178Zm0,48a18,18,0,1,1,18-18A18,18,0,0,1,128,226Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,96a32,32,0,1,0,32,32A32,32,0,0,0,128,96Zm0,48a16,16,0,1,1,16-16A16,16,0,0,1,128,144Zm0-64A32,32,0,1,0,96,48,32,32,0,0,0,128,80Zm0-48a16,16,0,1,1-16,16A16,16,0,0,1,128,32Zm0,144a32,32,0,1,0,32,32A32,32,0,0,0,128,176Zm0,48a16,16,0,1,1,16-16A16,16,0,0,1,128,224Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,100a28,28,0,1,0,28,28A28,28,0,0,0,128,100Zm0,48a20,20,0,1,1,20-20A20,20,0,0,1,128,148Zm0-72a28,28,0,1,0-28-28A28,28,0,0,0,128,76Zm0-48a20,20,0,1,1-20,20A20,20,0,0,1,128,28Zm0,152a28,28,0,1,0,28,28A28,28,0,0,0,128,180Zm0,48a20,20,0,1,1,20-20A20,20,0,0,1,128,228Z"}))]]);var IE=Object.defineProperty,ME=Object.defineProperties,FE=Object.getOwnPropertyDescriptors,Y2=Object.getOwnPropertySymbols,BE=Object.prototype.hasOwnProperty,PE=Object.prototype.propertyIsEnumerable,K2=(e,t,n)=>t in e?IE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const X2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>ME(e,FE(t)))(((e,t)=>{for(var n in t||(t={}))BE.call(t,n)&&K2(e,n,t[n]);if(Y2)for(var n of Y2(t))PE.call(t,n)&&K2(e,n,t[n]);return e})({ref:t},e),{weights:kE}))));X2.displayName="DotsThreeOutlineVertical";const HE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,44H32A12,12,0,0,0,20,56V192a20,20,0,0,0,20,20H216a20,20,0,0,0,20-20V56A12,12,0,0,0,224,44Zm-96,83.72L62.85,68h130.3ZM92.79,128,44,172.72V83.28Zm17.76,16.28,9.34,8.57a12,12,0,0,0,16.22,0l9.34-8.57L193.15,188H62.85ZM163.21,128,212,83.28v89.44Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,56l-96,88L32,56Z",opacity:"0.2"}),f.createElement("path",{d:"M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48Zm-96,85.15L52.57,64H203.43ZM98.71,128,40,181.81V74.19Zm11.84,10.85,12,11.05a8,8,0,0,0,10.82,0l12-11.05,58,53.15H52.57ZM157.29,128,216,74.18V181.82Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48ZM98.71,128,40,181.81V74.19Zm11.84,10.85,12,11.05a8,8,0,0,0,10.82,0l12-11.05,58,53.15H52.57ZM157.29,128,216,74.18V181.82Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,50H32a6,6,0,0,0-6,6V192a14,14,0,0,0,14,14H216a14,14,0,0,0,14-14V56A6,6,0,0,0,224,50Zm-96,85.86L47.42,62H208.58ZM101.67,128,38,186.36V69.64Zm8.88,8.14L124,148.42a6,6,0,0,0,8.1,0l13.4-12.28L208.58,194H47.43ZM154.33,128,218,69.64V186.36Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48Zm-96,85.15L52.57,64H203.43ZM98.71,128,40,181.81V74.19Zm11.84,10.85,12,11.05a8,8,0,0,0,10.82,0l12-11.05,58,53.15H52.57ZM157.29,128,216,74.18V181.82Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,52H32a4,4,0,0,0-4,4V192a12,12,0,0,0,12,12H216a12,12,0,0,0,12-12V56A4,4,0,0,0,224,52Zm-96,86.57L42.28,60H213.72ZM104.63,128,36,190.91V65.09Zm5.92,5.43L125.3,147a4,4,0,0,0,5.4,0l14.75-13.52L213.72,196H42.28ZM151.37,128,220,65.09V190.91Z"}))]]);var VE=Object.defineProperty,zE=Object.defineProperties,GE=Object.getOwnPropertyDescriptors,Q2=Object.getOwnPropertySymbols,$E=Object.prototype.hasOwnProperty,ZE=Object.prototype.propertyIsEnumerable,J2=(e,t,n)=>t in e?VE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const ep=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>zE(e,GE(t)))(((e,t)=>{for(var n in t||(t={}))$E.call(t,n)&&J2(e,n,t[n]);if(Q2)for(var n of Q2(t))ZE.call(t,n)&&J2(e,n,t[n]);return e})({ref:t},e),{weights:HE}))));ep.displayName="Envelope";const YE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M204.73,51.85A108.07,108.07,0,0,0,20,128v56a28,28,0,0,0,28,28H64a28,28,0,0,0,28-28V144a28,28,0,0,0-28-28H44.84A84.05,84.05,0,0,1,128,44h.64a83.7,83.7,0,0,1,82.52,72H192a28,28,0,0,0-28,28v40a28,28,0,0,0,28,28h19.6A20,20,0,0,1,192,228H136a12,12,0,0,0,0,24h56a44.05,44.05,0,0,0,44-44V128A107.34,107.34,0,0,0,204.73,51.85ZM64,140a4,4,0,0,1,4,4v40a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V140Zm124,44V144a4,4,0,0,1,4-4h20v48H192A4,4,0,0,1,188,184Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M80,144v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V128H64A16,16,0,0,1,80,144Zm112-16a16,16,0,0,0-16,16v40a16,16,0,0,0,16,16h32V128Z",opacity:"0.2"}),f.createElement("path",{d:"M201.89,54.66A104.08,104.08,0,0,0,24,128v56a24,24,0,0,0,24,24H64a24,24,0,0,0,24-24V144a24,24,0,0,0-24-24H40.36A88.12,88.12,0,0,1,190.54,65.93,87.39,87.39,0,0,1,215.65,120H192a24,24,0,0,0-24,24v40a24,24,0,0,0,24,24h24a24,24,0,0,1-24,24H136a8,8,0,0,0,0,16h56a40,40,0,0,0,40-40V128A103.41,103.41,0,0,0,201.89,54.66ZM64,136a8,8,0,0,1,8,8v40a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V136Zm128,56a8,8,0,0,1-8-8V144a8,8,0,0,1,8-8h24v56Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232,128v80a40,40,0,0,1-40,40H136a8,8,0,0,1,0-16h56a24,24,0,0,0,24-24H192a24,24,0,0,1-24-24V144a24,24,0,0,1,24-24h23.65A88,88,0,0,0,66,65.54,87.29,87.29,0,0,0,40.36,120H64a24,24,0,0,1,24,24v40a24,24,0,0,1-24,24H48a24,24,0,0,1-24-24V128A104.11,104.11,0,0,1,201.89,54.66,103.41,103.41,0,0,1,232,128Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M200.47,56.07A101.37,101.37,0,0,0,128.77,26H128A102,102,0,0,0,26,128v56a22,22,0,0,0,22,22H64a22,22,0,0,0,22-22V144a22,22,0,0,0-22-22H38.2A90,90,0,0,1,128,38h.68a89.71,89.71,0,0,1,89.13,84H192a22,22,0,0,0-22,22v40a22,22,0,0,0,22,22h26v2a26,26,0,0,1-26,26H136a6,6,0,0,0,0,12h56a38,38,0,0,0,38-38V128A101.44,101.44,0,0,0,200.47,56.07ZM64,134a10,10,0,0,1,10,10v40a10,10,0,0,1-10,10H48a10,10,0,0,1-10-10V134Zm118,50V144a10,10,0,0,1,10-10h26v60H192A10,10,0,0,1,182,184Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M201.89,54.66A103.43,103.43,0,0,0,128.79,24H128A104,104,0,0,0,24,128v56a24,24,0,0,0,24,24H64a24,24,0,0,0,24-24V144a24,24,0,0,0-24-24H40.36A88.12,88.12,0,0,1,190.54,65.93,87.39,87.39,0,0,1,215.65,120H192a24,24,0,0,0-24,24v40a24,24,0,0,0,24,24h24a24,24,0,0,1-24,24H136a8,8,0,0,0,0,16h56a40,40,0,0,0,40-40V128A103.41,103.41,0,0,0,201.89,54.66ZM64,136a8,8,0,0,1,8,8v40a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V136Zm128,56a8,8,0,0,1-8-8V144a8,8,0,0,1,8-8h24v56Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M199.05,57.48A100.07,100.07,0,0,0,28,128v56a20,20,0,0,0,20,20H64a20,20,0,0,0,20-20V144a20,20,0,0,0-20-20H36.08A92,92,0,0,1,128,36h.7a91.75,91.75,0,0,1,91.22,88H192a20,20,0,0,0-20,20v40a20,20,0,0,0,20,20h28v4a28,28,0,0,1-28,28H136a4,4,0,0,0,0,8h56a36,36,0,0,0,36-36V128A99.44,99.44,0,0,0,199.05,57.48ZM64,132a12,12,0,0,1,12,12v40a12,12,0,0,1-12,12H48a12,12,0,0,1-12-12V132Zm116,52V144a12,12,0,0,1,12-12h28v64H192A12,12,0,0,1,180,184Z"}))]]);var KE=Object.defineProperty,XE=Object.defineProperties,QE=Object.getOwnPropertyDescriptors,tp=Object.getOwnPropertySymbols,JE=Object.prototype.hasOwnProperty,eA=Object.prototype.propertyIsEnumerable,np=(e,t,n)=>t in e?KE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const rp=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>XE(e,QE(t)))(((e,t)=>{for(var n in t||(t={}))JE.call(t,n)&&np(e,n,t[n]);if(tp)for(var n of tp(t))eA.call(t,n)&&np(e,n,t[n]);return e})({ref:t},e),{weights:YE}))));rp.displayName="Headset";const rA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M252,152a12,12,0,0,1-12,12H228v12a12,12,0,0,1-24,0V164H192a12,12,0,0,1,0-24h12V128a12,12,0,0,1,24,0v12h12A12,12,0,0,1,252,152ZM56,76H68V88a12,12,0,0,0,24,0V76h12a12,12,0,1,0,0-24H92V40a12,12,0,0,0-24,0V52H56a12,12,0,0,0,0,24ZM184,188h-4v-4a12,12,0,0,0-24,0v4h-4a12,12,0,0,0,0,24h4v4a12,12,0,0,0,24,0v-4h4a12,12,0,0,0,0-24ZM222.14,82.83,82.82,222.14a20,20,0,0,1-28.28,0L33.85,201.46a20,20,0,0,1,0-28.29L173.17,33.86a20,20,0,0,1,28.28,0l20.69,20.68A20,20,0,0,1,222.14,82.83ZM159,112,144,97,53.65,187.31l15,15Zm43.31-43.31-15-15L161,80l15,15Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M176,112,74.34,213.66a8,8,0,0,1-11.31,0L42.34,193a8,8,0,0,1,0-11.31L144,80Z",opacity:"0.2"}),f.createElement("path",{d:"M248,152a8,8,0,0,1-8,8H224v16a8,8,0,0,1-16,0V160H192a8,8,0,0,1,0-16h16V128a8,8,0,0,1,16,0v16h16A8,8,0,0,1,248,152ZM56,72H72V88a8,8,0,0,0,16,0V72h16a8,8,0,0,0,0-16H88V40a8,8,0,0,0-16,0V56H56a8,8,0,0,0,0,16ZM184,192h-8v-8a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16ZM219.31,80,80,219.31a16,16,0,0,1-22.62,0L36.68,198.63a16,16,0,0,1,0-22.63L176,36.69a16,16,0,0,1,22.63,0l20.68,20.68A16,16,0,0,1,219.31,80Zm-54.63,32L144,91.31l-96,96L68.68,208ZM208,68.69,187.31,48l-32,32L176,100.69Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M248,152a8,8,0,0,1-8,8H224v16a8,8,0,0,1-16,0V160H192a8,8,0,0,1,0-16h16V128a8,8,0,0,1,16,0v16h16A8,8,0,0,1,248,152ZM56,72H72V88a8,8,0,0,0,16,0V72h16a8,8,0,0,0,0-16H88V40a8,8,0,0,0-16,0V56H56a8,8,0,0,0,0,16ZM184,192h-8v-8a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16ZM219.31,80,80,219.31a16,16,0,0,1-22.62,0L36.68,198.63a16,16,0,0,1,0-22.63L176,36.69a16,16,0,0,1,22.63,0l20.68,20.68A16,16,0,0,1,219.31,80ZM208,68.69,187.31,48l-32,32L176,100.69Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M246,152a6,6,0,0,1-6,6H222v18a6,6,0,0,1-12,0V158H192a6,6,0,0,1,0-12h18V128a6,6,0,0,1,12,0v18h18A6,6,0,0,1,246,152ZM56,70H74V88a6,6,0,0,0,12,0V70h18a6,6,0,0,0,0-12H86V40a6,6,0,0,0-12,0V58H56a6,6,0,0,0,0,12ZM184,194H174V184a6,6,0,0,0-12,0v10H152a6,6,0,0,0,0,12h10v10a6,6,0,0,0,12,0V206h10a6,6,0,0,0,0-12ZM217.9,78.59,78.58,217.9a14,14,0,0,1-19.8,0L38.09,197.21a14,14,0,0,1,0-19.8L177.41,38.1a14,14,0,0,1,19.8,0L217.9,58.79A14,14,0,0,1,217.9,78.59ZM167.51,112,144,88.49,46.58,185.9a2,2,0,0,0,0,2.83l20.69,20.68a2,2,0,0,0,2.82,0h0Zm41.9-44.73L188.73,46.59a2,2,0,0,0-2.83,0L152.48,80,176,103.52,209.41,70.1A2,2,0,0,0,209.41,67.27Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M48,64a8,8,0,0,1,8-8H72V40a8,8,0,0,1,16,0V56h16a8,8,0,0,1,0,16H88V88a8,8,0,0,1-16,0V72H56A8,8,0,0,1,48,64ZM184,192h-8v-8a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16Zm56-48H224V128a8,8,0,0,0-16,0v16H192a8,8,0,0,0,0,16h16v16a8,8,0,0,0,16,0V160h16a8,8,0,0,0,0-16ZM219.31,80,80,219.31a16,16,0,0,1-22.62,0L36.68,198.63a16,16,0,0,1,0-22.63L176,36.69a16,16,0,0,1,22.63,0l20.68,20.68A16,16,0,0,1,219.31,80Zm-54.63,32L144,91.31l-96,96L68.68,208ZM208,68.69,187.31,48l-32,32L176,100.69Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M244,152a4,4,0,0,1-4,4H220v20a4,4,0,0,1-8,0V156H192a4,4,0,0,1,0-8h20V128a4,4,0,0,1,8,0v20h20A4,4,0,0,1,244,152ZM56,68H76V88a4,4,0,0,0,8,0V68h20a4,4,0,0,0,0-8H84V40a4,4,0,0,0-8,0V60H56a4,4,0,0,0,0,8ZM184,196H172V184a4,4,0,0,0-8,0v12H152a4,4,0,0,0,0,8h12v12a4,4,0,0,0,8,0V204h12a4,4,0,0,0,0-8ZM216.48,77.17,77.17,216.49a12,12,0,0,1-17,0L39.51,195.8a12,12,0,0,1,0-17L178.83,39.51a12,12,0,0,1,17,0L216.48,60.2A12,12,0,0,1,216.48,77.17ZM170.34,112,144,85.66,45.17,184.49a4,4,0,0,0,0,5.65l20.68,20.69a4,4,0,0,0,5.66,0Zm40.49-46.14L190.14,45.17a4,4,0,0,0-5.66,0L149.65,80,176,106.34l34.83-34.83A4,4,0,0,0,210.83,65.86Z"}))]]);var oA=Object.defineProperty,aA=Object.defineProperties,sA=Object.getOwnPropertyDescriptors,op=Object.getOwnPropertySymbols,iA=Object.prototype.hasOwnProperty,lA=Object.prototype.propertyIsEnumerable,ap=(e,t,n)=>t in e?oA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const sp=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>aA(e,sA(t)))(((e,t)=>{for(var n in t||(t={}))iA.call(t,n)&&ap(e,n,t[n]);if(op)for(var n of op(t))lA.call(t,n)&&ap(e,n,t[n]);return e})({ref:t},e),{weights:rA}))));sp.displayName="MagicWand";const dA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232.49,215.51,185,168a92.12,92.12,0,1,0-17,17l47.53,47.54a12,12,0,0,0,17-17ZM44,112a68,68,0,1,1,68,68A68.07,68.07,0,0,1,44,112Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M192,112a80,80,0,1,1-80-80A80,80,0,0,1,192,112Z",opacity:"0.2"}),f.createElement("path",{d:"M229.66,218.34,179.6,168.28a88.21,88.21,0,1,0-11.32,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M168,112a56,56,0,1,1-56-56A56,56,0,0,1,168,112Zm61.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88,88,0,1,1,11.32-11.31l50.06,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228.24,219.76l-51.38-51.38a86.15,86.15,0,1,0-8.48,8.48l51.38,51.38a6,6,0,0,0,8.48-8.48ZM38,112a74,74,0,1,1,74,74A74.09,74.09,0,0,1,38,112Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M226.83,221.17l-52.7-52.7a84.1,84.1,0,1,0-5.66,5.66l52.7,52.7a4,4,0,0,0,5.66-5.66ZM36,112a76,76,0,1,1,76,76A76.08,76.08,0,0,1,36,112Z"}))]]);var pA=Object.defineProperty,fA=Object.defineProperties,gA=Object.getOwnPropertyDescriptors,ip=Object.getOwnPropertySymbols,mA=Object.prototype.hasOwnProperty,hA=Object.prototype.propertyIsEnumerable,lp=(e,t,n)=>t in e?pA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const up=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>fA(e,gA(t)))(((e,t)=>{for(var n in t||(t={}))mA.call(t,n)&&lp(e,n,t[n]);if(ip)for(var n of ip(t))hA.call(t,n)&&lp(e,n,t[n]);return e})({ref:t},e),{weights:dA}))));up.displayName="MagnifyingGlass";const bA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M225.86,110.48,57.8,14.58A20,20,0,0,0,29.16,38.67l30.61,89.21L29.16,217.33A20,20,0,0,0,48,244a20.1,20.1,0,0,0,9.81-2.58l.09-.06,168-96.07a20,20,0,0,0,0-34.81ZM55.24,215.23,81,140h55a12,12,0,0,0,0-24H81.07L55.25,40.76l152.69,87.13Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M219.91,134.86,51.93,231a8,8,0,0,1-11.44-9.67l31-90.71a7.89,7.89,0,0,0,0-5.38l-31-90.47a8,8,0,0,1,11.44-9.67l168,95.85A8,8,0,0,1,219.91,134.86Z",opacity:"0.2"}),f.createElement("path",{d:"M223.87,114l-168-95.89A16,16,0,0,0,32.93,37.32l31,90.47a.42.42,0,0,0,0,.1.3.3,0,0,0,0,.1l-31,90.67A16,16,0,0,0,48,240a16.14,16.14,0,0,0,7.92-2.1l167.91-96.05a16,16,0,0,0,.05-27.89ZM48,224l0-.09L78.14,136H136a8,8,0,0,0,0-16H78.22L48.06,32.12,48,32l168,95.83Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232,127.89a16,16,0,0,1-8.18,14L55.91,237.9A16.14,16.14,0,0,1,48,240a16,16,0,0,1-15.05-21.34L60.3,138.71A4,4,0,0,1,64.09,136H136a8,8,0,0,0,8-8.53,8.19,8.19,0,0,0-8.26-7.47H64.16a4,4,0,0,1-3.79-2.7l-27.44-80A16,16,0,0,1,55.85,18.07l168,95.89A16,16,0,0,1,232,127.89Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M222.88,115.69l-168-95.88a14,14,0,0,0-20,16.85l31,90.48,0,.07a2.11,2.11,0,0,1,0,1.42l-31,90.64A14,14,0,0,0,48,238a14.11,14.11,0,0,0,6.92-1.83L222.84,140.1a14,14,0,0,0,0-24.41Zm-5.95,14L49,225.73a1.87,1.87,0,0,1-2.27-.22,1.92,1.92,0,0,1-.56-2.28L76.7,134H136a6,6,0,0,0,0-12H76.78L46.14,32.7A2,2,0,0,1,49,30.25l168,95.89a1.93,1.93,0,0,1,1,1.74A2,2,0,0,1,216.93,129.66Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M223.87,114l-168-95.89A16,16,0,0,0,32.93,37.32l31,90.47a.42.42,0,0,0,0,.1.3.3,0,0,0,0,.1l-31,90.67A16,16,0,0,0,48,240a16.14,16.14,0,0,0,7.92-2.1l167.91-96.05a16,16,0,0,0,.05-27.89ZM48,224l0-.09L78.14,136H136a8,8,0,0,0,0-16H78.22L48.06,32.12,48,32l168,95.83Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M221.89,117.43l-168-95.88A12,12,0,0,0,36.7,36l31.05,90.48v.05a4.09,4.09,0,0,1,0,2.74L36.72,220A12,12,0,0,0,48,236a12.13,12.13,0,0,0,5.93-1.57l167.94-96.08a12,12,0,0,0,0-20.92Zm-4,14L50,227.47a4,4,0,0,1-5.7-4.88l31-90.59H136a4,4,0,0,0,0-8H75.35a.65.65,0,0,1,0-.13L44.25,33.37A4,4,0,0,1,50,28.52l168,95.87a4,4,0,0,1,0,7Z"}))]]);var _A=Object.defineProperty,vA=Object.defineProperties,DA=Object.getOwnPropertyDescriptors,cp=Object.getOwnPropertySymbols,yA=Object.prototype.hasOwnProperty,TA=Object.prototype.propertyIsEnumerable,dp=(e,t,n)=>t in e?_A(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const pp=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>vA(e,DA(t)))(((e,t)=>{for(var n in t||(t={}))yA.call(t,n)&&dp(e,n,t[n]);if(cp)for(var n of cp(t))TA.call(t,n)&&dp(e,n,t[n]);return e})({ref:t},e),{weights:bA}))));pp.displayName="PaperPlaneRight";const SA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228,128a12,12,0,0,1-12,12H140v76a12,12,0,0,1-24,0V140H40a12,12,0,0,1,0-24h76V40a12,12,0,0,1,24,0v76h76A12,12,0,0,1,228,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,48V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z",opacity:"0.2"}),f.createElement("path",{d:"M224,128a8,8,0,0,1-8,8H136v80a8,8,0,0,1-16,0V136H40a8,8,0,0,1,0-16h80V40a8,8,0,0,1,16,0v80h80A8,8,0,0,1,224,128Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM184,136H136v48a8,8,0,0,1-16,0V136H72a8,8,0,0,1,0-16h48V72a8,8,0,0,1,16,0v48h48a8,8,0,0,1,0,16Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M222,128a6,6,0,0,1-6,6H134v82a6,6,0,0,1-12,0V134H40a6,6,0,0,1,0-12h82V40a6,6,0,0,1,12,0v82h82A6,6,0,0,1,222,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128a8,8,0,0,1-8,8H136v80a8,8,0,0,1-16,0V136H40a8,8,0,0,1,0-16h80V40a8,8,0,0,1,16,0v80h80A8,8,0,0,1,224,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M220,128a4,4,0,0,1-4,4H132v84a4,4,0,0,1-8,0V132H40a4,4,0,0,1,0-8h84V40a4,4,0,0,1,8,0v84h84A4,4,0,0,1,220,128Z"}))]]);var wA=Object.defineProperty,xA=Object.defineProperties,RA=Object.getOwnPropertyDescriptors,fp=Object.getOwnPropertySymbols,LA=Object.prototype.hasOwnProperty,OA=Object.prototype.propertyIsEnumerable,gp=(e,t,n)=>t in e?wA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const mp=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>xA(e,RA(t)))(((e,t)=>{for(var n in t||(t={}))LA.call(t,n)&&gp(e,n,t[n]);if(fp)for(var n of fp(t))OA.call(t,n)&&gp(e,n,t[n]);return e})({ref:t},e),{weights:SA}))));mp.displayName="Plus";const MA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M240.26,186.1,152.81,34.23h0a28.74,28.74,0,0,0-49.62,0L15.74,186.1a27.45,27.45,0,0,0,0,27.71A28.31,28.31,0,0,0,40.55,228h174.9a28.31,28.31,0,0,0,24.79-14.19A27.45,27.45,0,0,0,240.26,186.1Zm-20.8,15.7a4.46,4.46,0,0,1-4,2.2H40.55a4.46,4.46,0,0,1-4-2.2,3.56,3.56,0,0,1,0-3.73L124,46.2a4.77,4.77,0,0,1,8,0l87.44,151.87A3.56,3.56,0,0,1,219.46,201.8ZM116,136V104a12,12,0,0,1,24,0v32a12,12,0,0,1-24,0Zm28,40a16,16,0,1,1-16-16A16,16,0,0,1,144,176Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M215.46,216H40.54C27.92,216,20,202.79,26.13,192.09L113.59,40.22c6.3-11,22.52-11,28.82,0l87.46,151.87C236,202.79,228.08,216,215.46,216Z",opacity:"0.2"}),f.createElement("path",{d:"M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM120,104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm8,88a12,12,0,1,1,12-12A12,12,0,0,1,128,192Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M235.07,189.09,147.61,37.22h0a22.75,22.75,0,0,0-39.22,0L20.93,189.09a21.53,21.53,0,0,0,0,21.72A22.35,22.35,0,0,0,40.55,222h174.9a22.35,22.35,0,0,0,19.6-11.19A21.53,21.53,0,0,0,235.07,189.09ZM224.66,204.8a10.46,10.46,0,0,1-9.21,5.2H40.55a10.46,10.46,0,0,1-9.21-5.2,9.51,9.51,0,0,1,0-9.72L118.79,43.21a10.75,10.75,0,0,1,18.42,0l87.46,151.87A9.51,9.51,0,0,1,224.66,204.8ZM122,144V104a6,6,0,0,1,12,0v40a6,6,0,0,1-12,0Zm16,36a10,10,0,1,1-10-10A10,10,0,0,1,138,180Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M233.34,190.09,145.88,38.22h0a20.75,20.75,0,0,0-35.76,0L22.66,190.09a19.52,19.52,0,0,0,0,19.71A20.36,20.36,0,0,0,40.54,220H215.46a20.36,20.36,0,0,0,17.86-10.2A19.52,19.52,0,0,0,233.34,190.09ZM226.4,205.8a12.47,12.47,0,0,1-10.94,6.2H40.54a12.47,12.47,0,0,1-10.94-6.2,11.45,11.45,0,0,1,0-11.72L117.05,42.21a12.76,12.76,0,0,1,21.9,0L226.4,194.08A11.45,11.45,0,0,1,226.4,205.8ZM124,144V104a4,4,0,0,1,8,0v40a4,4,0,0,1-8,0Zm12,36a8,8,0,1,1-8-8A8,8,0,0,1,136,180Z"}))]]);var FA=Object.defineProperty,BA=Object.defineProperties,PA=Object.getOwnPropertyDescriptors,hp=Object.getOwnPropertySymbols,UA=Object.prototype.hasOwnProperty,qA=Object.prototype.propertyIsEnumerable,Ep=(e,t,n)=>t in e?FA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const ru=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>BA(e,PA(t)))(((e,t)=>{for(var n in t||(t={}))UA.call(t,n)&&Ep(e,n,t[n]);if(hp)for(var n of hp(t))qA.call(t,n)&&Ep(e,n,t[n]);return e})({ref:t},e),{weights:MA}))));ru.displayName="Warning";const zA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M208.49,191.51a12,12,0,0,1-17,17L128,145,64.49,208.49a12,12,0,0,1-17-17L111,128,47.51,64.49a12,12,0,0,1,17-17L128,111l63.51-63.52a12,12,0,0,1,17,17L145,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,48V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z",opacity:"0.2"}),f.createElement("path",{d:"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM181.66,170.34a8,8,0,0,1-11.32,11.32L128,139.31,85.66,181.66a8,8,0,0,1-11.32-11.32L116.69,128,74.34,85.66A8,8,0,0,1,85.66,74.34L128,116.69l42.34-42.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M204.24,195.76a6,6,0,1,1-8.48,8.48L128,136.49,60.24,204.24a6,6,0,0,1-8.48-8.48L119.51,128,51.76,60.24a6,6,0,0,1,8.48-8.48L128,119.51l67.76-67.75a6,6,0,0,1,8.48,8.48L136.49,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M202.83,197.17a4,4,0,0,1-5.66,5.66L128,133.66,58.83,202.83a4,4,0,0,1-5.66-5.66L122.34,128,53.17,58.83a4,4,0,0,1,5.66-5.66L128,122.34l69.17-69.17a4,4,0,1,1,5.66,5.66L133.66,128Z"}))]]);var GA=Object.defineProperty,$A=Object.defineProperties,ZA=Object.getOwnPropertyDescriptors,Ap=Object.getOwnPropertySymbols,jA=Object.prototype.hasOwnProperty,WA=Object.prototype.propertyIsEnumerable,bp=(e,t,n)=>t in e?GA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const _p=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>$A(e,ZA(t)))(((e,t)=>{for(var n in t||(t={}))jA.call(t,n)&&bp(e,n,t[n]);if(Ap)for(var n of Ap(t))WA.call(t,n)&&bp(e,n,t[n]);return e})({ref:t},e),{weights:zA}))));_p.displayName="X";const ou={plus:mp,chatBubble:q2,support:rp,search2:B2,search:up,magic:sp};function XA({settings:e,isOpen:t,toggleOpen:n}){if(t)return null;const r=ou.hasOwnProperty(null==e?void 0:e.chatIcon)?ou[e.chatIcon]:ou.plus;return w.jsx("button",{id:"anything-llm-embed-chat-button",onClick:n,className:`flex items-center justify-center p-4 rounded-full bg-[${e.buttonColor}] text-white text-2xl`,"aria-label":"Toggle Menu",children:w.jsx(r,{className:"text-white"})})}const ko="data:image/svg+xml,%3csvg%20width='49'%20height='49'%20viewBox='0%200%2049%2049'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='0.898438'%20y='0.5'%20width='48'%20height='48'%20rx='24'%20fill='%23222628'%20fill-opacity='0.8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.0173%2014.2937C10.4387%2014.2937%209.14844%2015.584%209.14844%2017.1626V31.8372C9.14844%2033.4156%2010.4365%2034.7061%2012.0173%2034.7061H17.5428C18.4316%2034.7061%2019.2557%2034.3035%2019.8034%2033.6063L19.8041%2033.6054L32.4126%2017.4869H37.4552V31.509H32.4204L29.8951%2027.9721L29.8867%2027.9615C29.4483%2027.4042%2028.602%2027.4042%2028.1635%2027.9615L27.52%2028.7815L27.5178%2028.7843C27.2188%2029.1751%2027.2113%2029.7217%2027.512%2030.1178L29.985%2033.5936L29.9935%2033.6044C30.5415%2034.302%2031.3696%2034.7042%2032.2541%2034.7042H37.7795C39.3643%2034.7042%2040.6484%2033.4175%2040.6484%2031.8353V17.1626C40.6484%2015.5827%2039.3646%2014.2937%2037.7795%2014.2937H32.2541C31.3673%2014.2937%2030.5407%2014.6964%2029.9928%2015.3964L17.3858%2031.511H12.3417V17.4889H17.3757L20.133%2021.2573L20.1386%2021.2645C20.5782%2021.8273%2021.4253%2021.8239%2021.8647%2021.2666L21.8661%2021.2648L22.505%2020.4477L22.5069%2020.4453C22.8064%2020.0538%2022.8139%2019.5046%2022.5076%2019.1075L19.8102%2015.4041L19.804%2015.3963C19.2562%2014.6965%2018.4318%2014.2937%2017.5428%2014.2937H12.0173Z'%20fill='white'/%3e%3cpath%20d='M19.8034%2033.6063L20.0392%2033.7915L20.0394%2033.7912L19.8034%2033.6063ZM19.8041%2033.6054L20.0401%2033.7903L20.0403%2033.7901L19.8041%2033.6054ZM32.4126%2017.4869V17.1871H32.2665L32.1764%2017.3022L32.4126%2017.4869ZM37.4552%2017.4869H37.755V17.1871H37.4552V17.4869ZM37.4552%2031.509V31.8089H37.755V31.509H37.4552ZM32.4204%2031.509L32.1763%2031.6833L32.266%2031.8089H32.4204V31.509ZM29.8951%2027.9721L30.1394%2027.7977L30.1307%2027.7867L29.8951%2027.9721ZM29.8867%2027.9615L29.6511%2028.1469L29.6511%2028.1469L29.8867%2027.9615ZM28.1635%2027.9615L27.9279%2027.7761L27.9277%2027.7764L28.1635%2027.9615ZM27.52%2028.7815L27.2841%2028.5964L27.2819%2028.5993L27.52%2028.7815ZM27.5178%2028.7843L27.7559%2028.9665L27.7559%2028.9665L27.5178%2028.7843ZM27.512%2030.1178L27.7564%2029.9439L27.7508%2029.9365L27.512%2030.1178ZM29.985%2033.5936L29.7407%2033.7674L29.7448%2033.7732L29.7492%2033.7788L29.985%2033.5936ZM29.9935%2033.6044L30.2293%2033.4191L30.2293%2033.4191L29.9935%2033.6044ZM29.9928%2015.3964L29.7567%2015.2116L29.7566%2015.2116L29.9928%2015.3964ZM17.3858%2031.511V31.8108H17.5319L17.6219%2031.6957L17.3858%2031.511ZM12.3417%2031.511H12.0418V31.8108H12.3417V31.511ZM12.3417%2017.4889V17.189H12.0418V17.4889H12.3417ZM17.3757%2017.4889L17.6177%2017.3118L17.5278%2017.189H17.3757V17.4889ZM20.133%2021.2573L19.8909%2021.4345L19.8967%2021.4419L20.133%2021.2573ZM20.1386%2021.2645L19.9023%2021.4491V21.4491L20.1386%2021.2645ZM21.8647%2021.2666L22.1001%2021.4522L22.1005%2021.4517L21.8647%2021.2666ZM21.8661%2021.2648L22.1019%2021.45L22.1023%2021.4495L21.8661%2021.2648ZM22.505%2020.4477L22.7412%2020.6324L22.7431%2020.63L22.505%2020.4477ZM22.5069%2020.4453L22.7449%2020.6276L22.745%2020.6275L22.5069%2020.4453ZM22.5076%2019.1075L22.2651%2019.2841L22.2702%2019.2907L22.5076%2019.1075ZM19.8102%2015.4041L20.0527%2015.2275L20.0463%2015.2193L19.8102%2015.4041ZM19.804%2015.3963L19.5679%2015.5811L19.5679%2015.5811L19.804%2015.3963ZM9.44828%2017.1626C9.44828%2015.7496%2010.6043%2014.5935%2012.0173%2014.5935V13.9939C10.2731%2013.9939%208.8486%2015.4184%208.8486%2017.1626H9.44828ZM9.44828%2031.8372V17.1626H8.8486V31.8372H9.44828ZM12.0173%2034.4063C10.6022%2034.4063%209.44828%2033.2501%209.44828%2031.8372H8.8486C8.8486%2033.581%2010.2707%2035.006%2012.0173%2035.006V34.4063ZM17.5428%2034.4063H12.0173V35.006H17.5428V34.4063ZM19.5676%2033.4211C19.0766%2034.0462%2018.3393%2034.4063%2017.5428%2034.4063V35.006C18.524%2035.006%2019.4349%2034.5608%2020.0392%2033.7915L19.5676%2033.4211ZM19.5681%2033.4205L19.5674%2033.4214L20.0394%2033.7912L20.0401%2033.7903L19.5681%2033.4205ZM32.1764%2017.3022L19.5679%2033.4206L20.0403%2033.7901L32.6488%2017.6717L32.1764%2017.3022ZM37.4552%2017.1871H32.4126V17.7868H37.4552V17.1871ZM37.755%2031.509V17.4869H37.1553V31.509H37.755ZM32.4204%2031.8089H37.4552V31.2092H32.4204V31.8089ZM29.651%2028.1464L32.1763%2031.6833L32.6644%2031.3348L30.1391%2027.7979L29.651%2028.1464ZM29.6511%2028.1469L29.6594%2028.1575L30.1307%2027.7867L30.1224%2027.7761L29.6511%2028.1469ZM28.3992%2028.1469C28.7176%2027.7422%2029.3327%2027.7422%2029.6511%2028.1469L30.1224%2027.7761C29.5639%2027.0662%2028.4864%2027.0662%2027.9279%2027.7761L28.3992%2028.1469ZM27.7558%2028.9666L28.3994%2028.1466L27.9277%2027.7764L27.2841%2028.5964L27.7558%2028.9666ZM27.7559%2028.9665L27.7581%2028.9637L27.2819%2028.5993L27.2797%2028.6021L27.7559%2028.9665ZM27.7508%2029.9365C27.5333%2029.65%2027.5374%2029.2521%2027.7559%2028.9665L27.2797%2028.6021C26.9002%2029.098%2026.8893%2029.7935%2027.2732%2030.2991L27.7508%2029.9365ZM30.2293%2033.4197L27.7563%2029.944L27.2677%2030.2916L29.7407%2033.7674L30.2293%2033.4197ZM30.2293%2033.4191L30.2208%2033.4083L29.7492%2033.7788L29.7577%2033.7896L30.2293%2033.4191ZM32.2541%2034.4044C31.4617%2034.4044%2030.7205%2034.0445%2030.2293%2033.4191L29.7577%2033.7896C30.3625%2034.5595%2031.2775%2035.0041%2032.2541%2035.0041V34.4044ZM37.7795%2034.4044H32.2541V35.0041H37.7795V34.4044ZM40.3486%2031.8353C40.3486%2033.2521%2039.1985%2034.4044%2037.7795%2034.4044V35.0041C39.5301%2035.0041%2040.9483%2033.5829%2040.9483%2031.8353H40.3486ZM40.3486%2017.1626V31.8353H40.9483V17.1626H40.3486ZM37.7795%2014.5935C39.1987%2014.5935%2040.3486%2015.7479%2040.3486%2017.1626H40.9483C40.9483%2015.4174%2039.5305%2013.9939%2037.7795%2013.9939V14.5935ZM32.2541%2014.5935H37.7795V13.9939H32.2541V14.5935ZM30.2289%2015.5812C30.72%2014.9537%2031.4596%2014.5935%2032.2541%2014.5935V13.9939C31.2749%2013.9939%2030.3613%2014.4391%2029.7567%2015.2116L30.2289%2015.5812ZM17.6219%2031.6957L30.2289%2015.5811L29.7566%2015.2116L17.1496%2031.3262L17.6219%2031.6957ZM12.3417%2031.8108H17.3858V31.2111H12.3417V31.8108ZM12.0418%2017.4889V31.511H12.6415V17.4889H12.0418ZM17.3757%2017.189H12.3417V17.7887H17.3757V17.189ZM20.375%2021.0803L17.6177%2017.3118L17.1337%2017.6659L19.891%2021.4344L20.375%2021.0803ZM20.3749%2021.08L20.3693%2021.0728L19.8967%2021.4419L19.9023%2021.4491L20.3749%2021.08ZM21.6292%2021.0809C21.3091%2021.4869%2020.6937%2021.488%2020.3749%2021.08L19.9023%2021.4491C20.4627%2022.1665%2021.5415%2022.1608%2022.1001%2021.4522L21.6292%2021.0809ZM21.6302%2021.0796L21.6288%2021.0814L22.1005%2021.4517L22.1019%2021.45L21.6302%2021.0796ZM22.2688%2020.263L21.6299%2021.0801L22.1023%2021.4495L22.7412%2020.6324L22.2688%2020.263ZM22.2688%2020.263L22.2669%2020.2654L22.7431%2020.63L22.7449%2020.6276L22.2688%2020.263ZM22.2702%2019.2907C22.4916%2019.5777%2022.4877%2019.977%2022.2687%2020.2631L22.745%2020.6275C23.1252%2020.1307%2023.1363%2019.4315%2022.7449%2018.9243L22.2702%2019.2907ZM19.5678%2015.5807L22.2652%2019.284L22.7499%2018.931L20.0525%2015.2276L19.5678%2015.5807ZM19.5679%2015.5811L19.5741%2015.589L20.0463%2015.2193L20.0401%2015.2114L19.5679%2015.5811ZM17.5428%2014.5935C18.3394%2014.5935%2019.0768%2014.9537%2019.5679%2015.5811L20.0401%2015.2114C19.4357%2014.4393%2018.5243%2013.9939%2017.5428%2013.9939V14.5935ZM12.0173%2014.5935H17.5428V13.9939H12.0173V14.5935Z'%20fill='white'/%3e%3c/svg%3e";function JA(e){let t,n,r,o=!1;return function(s){void 0===t?(t=s,n=0,r=-1):t=function(e,t){const n=new Uint8Array(e.length+t.length);return n.set(e),n.set(t,e.length),n}(t,s);const i=t.length;let l=0;for(;n<i;){o&&(10===t[n]&&(l=++n),o=!1);let u=-1;for(;n<i&&-1===u;++n)switch(t[n]){case 58:-1===r&&(r=n-l);break;case 13:o=!0;case 10:u=n}if(-1===u)break;e(t.subarray(l,u),r),l=n,r=-1}l===i?t=void 0:0!==l&&(t=t.subarray(l),n-=l)}}const au="text/event-stream",Dp="last-event-id";function ob(e,t){var{signal:n,headers:r,onopen:o,onmessage:a,onclose:s,onerror:i,openWhenHidden:l,fetch:u}=t,c=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}(t,["signal","headers","onopen","onmessage","onclose","onerror","openWhenHidden","fetch"]);return new Promise(((p,d)=>{const m=Object.assign({},r);let A;function b(){A.abort(),document.hidden||N()}m.accept||(m.accept=au),l||document.addEventListener("visibilitychange",b);let C=1e3,h=0;function g(){document.removeEventListener("visibilitychange",b),window.clearTimeout(h),A.abort()}null==n||n.addEventListener("abort",(()=>{g(),p()}));const E=u??window.fetch,v=o??ab;async function N(){var _;A=new AbortController;try{const S=await E(e,Object.assign(Object.assign({},c),{headers:m,signal:A.signal}));await v(S),await async function(e,t){const n=e.getReader();let r;for(;!(r=await n.read()).done;)t(r.value)}(S.body,JA(function(e,t,n){let r={data:"",event:"",id:"",retry:void 0};const o=new TextDecoder;return function(s,i){if(0===s.length)null==n||n(r),r={data:"",event:"",id:"",retry:void 0};else if(i>0){const l=o.decode(s.subarray(0,i)),u=i+(32===s[i+1]?2:1),c=o.decode(s.subarray(u));switch(l){case"data":r.data=r.data?r.data+"\n"+c:c;break;case"event":r.event=c;break;case"id":e(r.id=c);break;case"retry":const p=parseInt(c,10);isNaN(p)||t(r.retry=p)}}}}((R=>{R?m[Dp]=R:delete m[Dp]}),(R=>{C=R}),a))),null==s||s(),g(),p()}catch(S){if(!A.signal.aborted)try{const R=null!==(_=null==i?void 0:i(S))&&void 0!==_?_:C;window.clearTimeout(h),h=window.setTimeout(N,R)}catch(R){g(),d(R)}}}N()}))}function ab(e){const t=e.headers.get("content-type");if(null==t||!t.startsWith(au))throw new Error(`Expected content-type to be ${au}, Actual: ${t}`)}const ds={embedSessionHistory:async function(e,t){const{embedId:n,baseApiUrl:r}=e;return await fetch(`${r}/${n}/${t}`).then((o=>{if(o.ok)return o.json();throw new Error("Invalid response from server")})).then((o=>o.history.map((a=>({...a,id:zn(),sender:"user"===a.role?"user":"system",textResponse:a.content,close:!1}))))).catch((o=>(console.error(o),[])))},resetEmbedChatSession:async function(e,t){const{baseApiUrl:n,embedId:r}=e;return await fetch(`${n}/${r}/${t}`,{method:"DELETE"}).then((o=>o.ok)).catch((()=>!1))},streamChat:async function(e,t,n,r){const{baseApiUrl:o,embedId:a}=t,s={prompt:(null==t?void 0:t.prompt)??null,model:(null==t?void 0:t.model)??null,temperature:(null==t?void 0:t.temperature)??null},i=new AbortController;await ob(`${o}/${a}/stream-chat`,{method:"POST",body:JSON.stringify({message:n,sessionId:e,...s}),signal:i.signal,openWhenHidden:!0,async onopen(l){if(!l.ok)throw l.status>=400?(await l.json().then((u=>{r(u)})).catch((()=>{r({id:zn(),type:"abort",textResponse:null,sources:[],close:!0,error:`An error occurred while streaming response. Code ${l.status}`})})),i.abort(),new Error):(r({id:zn(),type:"abort",textResponse:null,sources:[],close:!0,error:"An error occurred while streaming response. Unknown Error."}),i.abort(),new Error("Unknown Error"))},async onmessage(l){try{const u=JSON.parse(l.data);r(u)}catch{}},onerror(l){throw r({id:zn(),type:"abort",textResponse:null,sources:[],close:!0,error:`An error occurred while streaming response. ${l.message}`}),i.abort(),new Error}})}};function yp({sessionId:e,settings:t={},iconUrl:n=null,closeChat:r,setChatHistory:o}){const[a,s]=Z.useState(!1),i=Z.useRef(),l=Z.useRef();return Z.useEffect((()=>{function c(p){i.current&&!i.current.contains(p.target)&&l.current&&!l.current.contains(p.target)&&s(!1)}return document.addEventListener("mousedown",c),()=>{document.removeEventListener("mousedown",c)}}),[i]),w.jsxs("div",{className:"flex items-center relative rounded-t-2xl bg-black/10",id:"anything-llm-header",children:[w.jsx("div",{className:"flex justify-center items-center w-full h-[76px]",children:w.jsx("img",{style:{maxWidth:48,maxHeight:48},src:n??ko,alt:n?"Brand":"AnythingLLM Logo"})}),w.jsxs("div",{className:"absolute right-0 flex gap-x-1 items-center px-[22px]",children:[t.loaded&&w.jsx("button",{ref:l,type:"button",onClick:()=>s(!a),className:"hover:bg-gray-100 rounded-sm text-slate-800","aria-label":"Options",children:w.jsx(X2,{size:20,weight:"fill"})}),w.jsx("button",{type:"button",onClick:r,className:"hover:bg-gray-100 rounded-sm text-slate-800","aria-label":"Close",children:w.jsx(_p,{size:20,weight:"bold"})})]}),w.jsx(sb,{settings:t,showing:a,resetChat:async()=>{await ds.resetEmbedChatSession(t,e),o([]),s(!1)},sessionId:e,menuRef:i})]})}function sb({settings:e,showing:t,resetChat:n,sessionId:r,menuRef:o}){return t?w.jsxs("div",{ref:o,className:"absolute z-10 bg-white flex flex-col gap-y-1 rounded-xl shadow-lg border border-gray-300 top-[64px] right-[46px]",children:[w.jsxs("button",{onClick:n,className:"flex items-center gap-x-2 hover:bg-gray-100 text-sm text-gray-700 py-2.5 px-4 rounded-xl",children:[w.jsx(L2,{size:24}),w.jsx("p",{className:"text-sm text-[#7A7D7E] font-bold",children:"Reset Chat"})]}),w.jsx(lb,{email:e.supportEmail}),w.jsx(ib,{sessionId:r})]}):null}function ib({sessionId:e}){if(!e)return null;const[t,n]=Z.useState(!1);return t?w.jsxs("div",{className:"flex items-center gap-x-2 hover:bg-gray-100 text-sm text-gray-700 py-2.5 px-4 rounded-xl",children:[w.jsx(z2,{size:24}),w.jsx("p",{className:"text-sm text-[#7A7D7E] font-bold",children:"Copied!"})]}):w.jsxs("button",{onClick:()=>{navigator.clipboard.writeText(e),n(!0),setTimeout((()=>n(!1)),1e3)},className:"flex items-center gap-x-2 hover:bg-gray-100 text-sm text-gray-700 py-2.5 px-4 rounded-xl",children:[w.jsx(W2,{size:24}),w.jsx("p",{className:"text-sm text-[#7A7D7E] font-bold",children:"Session ID"})]})}function lb({email:e=null}){if(!e)return null;const t=`Inquiry from ${window.location.origin}`;return w.jsxs("a",{href:`mailto:${e}?Subject=${encodeURIComponent(t)}`,className:"flex items-center gap-x-2 hover:bg-gray-100 text-sm text-gray-700 py-2.5 px-4 rounded-xl",children:[w.jsx(ep,{size:24}),w.jsx("p",{className:"text-sm text-[#7A7D7E] font-bold",children:"Email Support"})]})}function ub(){const e=y2();return e?w.jsx("div",{className:"text-xs text-gray-300 w-full text-center",children:e}):null}var ps={exports:{}};/*! https://mths.be/he v1.2.0 by @mathias | MIT license */!function(e,t){!function(n){var r=t,o=e&&e.exports==r&&e,a="object"==typeof Nt&&Nt;(a.global===a||a.window===a)&&(n=a);var s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,i=/[\x01-\x7F]/g,l=/[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g,u=/<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g,c={"":"shy","":"zwnj","":"zwj","":"lrm","":"ic","":"it","":"af","":"rlm","":"ZeroWidthSpace","":"NoBreak","̑":"DownBreve","⃛":"tdot","⃜":"DotDot","\t":"Tab","\n":"NewLine"," ":"puncsp"," ":"MediumSpace"," ":"thinsp"," ":"hairsp"," ":"emsp13"," ":"ensp"," ":"emsp14"," ":"emsp"," ":"numsp"," ":"nbsp"," ":"ThickSpace","‾":"oline",_:"lowbar","‐":"dash","–":"ndash","—":"mdash","―":"horbar",",":"comma",";":"semi","⁏":"bsemi",":":"colon","⩴":"Colone","!":"excl","¡":"iexcl","?":"quest","¿":"iquest",".":"period","‥":"nldr","…":"mldr","·":"middot","'":"apos","‘":"lsquo","’":"rsquo","‚":"sbquo","‹":"lsaquo","›":"rsaquo",'"':"quot","“":"ldquo","”":"rdquo","„":"bdquo","«":"laquo","»":"raquo","(":"lpar",")":"rpar","[":"lsqb","]":"rsqb","{":"lcub","}":"rcub","⌈":"lceil","⌉":"rceil","⌊":"lfloor","⌋":"rfloor","⦅":"lopar","⦆":"ropar","⦋":"lbrke","⦌":"rbrke","⦍":"lbrkslu","⦎":"rbrksld","⦏":"lbrksld","⦐":"rbrkslu","⦑":"langd","⦒":"rangd","⦓":"lparlt","⦔":"rpargt","⦕":"gtlPar","⦖":"ltrPar","⟦":"lobrk","⟧":"robrk","⟨":"lang","⟩":"rang","⟪":"Lang","⟫":"Rang","⟬":"loang","⟭":"roang","❲":"lbbrk","❳":"rbbrk","‖":"Vert","§":"sect","¶":"para","@":"commat","*":"ast","/":"sol",undefined:null,"&":"amp","#":"num","%":"percnt","‰":"permil","‱":"pertenk","†":"dagger","‡":"Dagger","•":"bull","⁃":"hybull","′":"prime","″":"Prime","‴":"tprime","⁗":"qprime","‵":"bprime","⁁":"caret","`":"grave","´":"acute","˜":"tilde","^":"Hat","¯":"macr","˘":"breve","˙":"dot","¨":"die","˚":"ring","˝":"dblac","¸":"cedil","˛":"ogon","ˆ":"circ","ˇ":"caron","°":"deg","©":"copy","®":"reg","℗":"copysr","℘":"wp","℞":"rx","℧":"mho","℩":"iiota","←":"larr","↚":"nlarr","→":"rarr","↛":"nrarr","↑":"uarr","↓":"darr","↔":"harr","↮":"nharr","↕":"varr","↖":"nwarr","↗":"nearr","↘":"searr","↙":"swarr","↝":"rarrw","↝̸":"nrarrw","↞":"Larr","↟":"Uarr","↠":"Rarr","↡":"Darr","↢":"larrtl","↣":"rarrtl","↤":"mapstoleft","↥":"mapstoup","↦":"map","↧":"mapstodown","↩":"larrhk","↪":"rarrhk","↫":"larrlp","↬":"rarrlp","↭":"harrw","↰":"lsh","↱":"rsh","↲":"ldsh","↳":"rdsh","↵":"crarr","↶":"cularr","↷":"curarr","↺":"olarr","↻":"orarr","↼":"lharu","↽":"lhard","↾":"uharr","↿":"uharl","⇀":"rharu","⇁":"rhard","⇂":"dharr","⇃":"dharl","⇄":"rlarr","⇅":"udarr","⇆":"lrarr","⇇":"llarr","⇈":"uuarr","⇉":"rrarr","⇊":"ddarr","⇋":"lrhar","⇌":"rlhar","⇐":"lArr","⇍":"nlArr","⇑":"uArr","⇒":"rArr","⇏":"nrArr","⇓":"dArr","⇔":"iff","⇎":"nhArr","⇕":"vArr","⇖":"nwArr","⇗":"neArr","⇘":"seArr","⇙":"swArr","⇚":"lAarr","⇛":"rAarr","⇝":"zigrarr","⇤":"larrb","⇥":"rarrb","⇵":"duarr","⇽":"loarr","⇾":"roarr","⇿":"hoarr","∀":"forall","∁":"comp","∂":"part","∂̸":"npart","∃":"exist","∄":"nexist","∅":"empty","∇":"Del","∈":"in","∉":"notin","∋":"ni","∌":"notni","϶":"bepsi","∏":"prod","∐":"coprod","∑":"sum","+":"plus","±":"pm","÷":"div","×":"times","<":"lt","≮":"nlt","<⃒":"nvlt","=":"equals","≠":"ne","=⃥":"bne","⩵":"Equal",">":"gt","≯":"ngt",">⃒":"nvgt","¬":"not","|":"vert","¦":"brvbar","−":"minus","∓":"mp","∔":"plusdo","⁄":"frasl","∖":"setmn","∗":"lowast","∘":"compfn","√":"Sqrt","∝":"prop","∞":"infin","∟":"angrt","∠":"ang","∠⃒":"nang","∡":"angmsd","∢":"angsph","∣":"mid","∤":"nmid","∥":"par","∦":"npar","∧":"and","∨":"or","∩":"cap","∩︀":"caps","∪":"cup","∪︀":"cups","∫":"int","∬":"Int","∭":"tint","⨌":"qint","∮":"oint","∯":"Conint","∰":"Cconint","∱":"cwint","∲":"cwconint","∳":"awconint","∴":"there4","∵":"becaus","∶":"ratio","∷":"Colon","∸":"minusd","∺":"mDDot","∻":"homtht","∼":"sim","≁":"nsim","∼⃒":"nvsim","∽":"bsim","∽̱":"race","∾":"ac","∾̳":"acE","∿":"acd","≀":"wr","≂":"esim","≂̸":"nesim","≃":"sime","≄":"nsime","≅":"cong","≇":"ncong","≆":"simne","≈":"ap","≉":"nap","≊":"ape","≋":"apid","≋̸":"napid","≌":"bcong","≍":"CupCap","≭":"NotCupCap","≍⃒":"nvap","≎":"bump","≎̸":"nbump","≏":"bumpe","≏̸":"nbumpe","≐":"doteq","≐̸":"nedot","≑":"eDot","≒":"efDot","≓":"erDot","≔":"colone","≕":"ecolon","≖":"ecir","≗":"cire","≙":"wedgeq","≚":"veeeq","≜":"trie","≟":"equest","≡":"equiv","≢":"nequiv","≡⃥":"bnequiv","≤":"le","≰":"nle","≤⃒":"nvle","≥":"ge","≱":"nge","≥⃒":"nvge","≦":"lE","≦̸":"nlE","≧":"gE","≧̸":"ngE","≨︀":"lvnE","≨":"lnE","≩":"gnE","≩︀":"gvnE","≪":"ll","≪̸":"nLtv","≪⃒":"nLt","≫":"gg","≫̸":"nGtv","≫⃒":"nGt","≬":"twixt","≲":"lsim","≴":"nlsim","≳":"gsim","≵":"ngsim","≶":"lg","≸":"ntlg","≷":"gl","≹":"ntgl","≺":"pr","⊀":"npr","≻":"sc","⊁":"nsc","≼":"prcue","⋠":"nprcue","≽":"sccue","⋡":"nsccue","≾":"prsim","≿":"scsim","≿̸":"NotSucceedsTilde","⊂":"sub","⊄":"nsub","⊂⃒":"vnsub","⊃":"sup","⊅":"nsup","⊃⃒":"vnsup","⊆":"sube","⊈":"nsube","⊇":"supe","⊉":"nsupe","⊊︀":"vsubne","⊊":"subne","⊋︀":"vsupne","⊋":"supne","⊍":"cupdot","⊎":"uplus","⊏":"sqsub","⊏̸":"NotSquareSubset","⊐":"sqsup","⊐̸":"NotSquareSuperset","⊑":"sqsube","⋢":"nsqsube","⊒":"sqsupe","⋣":"nsqsupe","⊓":"sqcap","⊓︀":"sqcaps","⊔":"sqcup","⊔︀":"sqcups","⊕":"oplus","⊖":"ominus","⊗":"otimes","⊘":"osol","⊙":"odot","⊚":"ocir","⊛":"oast","⊝":"odash","⊞":"plusb","⊟":"minusb","⊠":"timesb","⊡":"sdotb","⊢":"vdash","⊬":"nvdash","⊣":"dashv","⊤":"top","⊥":"bot","⊧":"models","⊨":"vDash","⊭":"nvDash","⊩":"Vdash","⊮":"nVdash","⊪":"Vvdash","⊫":"VDash","⊯":"nVDash","⊰":"prurel","⊲":"vltri","⋪":"nltri","⊳":"vrtri","⋫":"nrtri","⊴":"ltrie","⋬":"nltrie","⊴⃒":"nvltrie","⊵":"rtrie","⋭":"nrtrie","⊵⃒":"nvrtrie","⊶":"origof","⊷":"imof","⊸":"mumap","⊹":"hercon","⊺":"intcal","⊻":"veebar","⊽":"barvee","⊾":"angrtvb","⊿":"lrtri","⋀":"Wedge","⋁":"Vee","⋂":"xcap","⋃":"xcup","⋄":"diam","⋅":"sdot","⋆":"Star","⋇":"divonx","⋈":"bowtie","⋉":"ltimes","⋊":"rtimes","⋋":"lthree","⋌":"rthree","⋍":"bsime","⋎":"cuvee","⋏":"cuwed","⋐":"Sub","⋑":"Sup","⋒":"Cap","⋓":"Cup","⋔":"fork","⋕":"epar","⋖":"ltdot","⋗":"gtdot","⋘":"Ll","⋘̸":"nLl","⋙":"Gg","⋙̸":"nGg","⋚︀":"lesg","⋚":"leg","⋛":"gel","⋛︀":"gesl","⋞":"cuepr","⋟":"cuesc","⋦":"lnsim","⋧":"gnsim","⋨":"prnsim","⋩":"scnsim","⋮":"vellip","⋯":"ctdot","⋰":"utdot","⋱":"dtdot","⋲":"disin","⋳":"isinsv","⋴":"isins","⋵":"isindot","⋵̸":"notindot","⋶":"notinvc","⋷":"notinvb","⋹":"isinE","⋹̸":"notinE","⋺":"nisd","⋻":"xnis","⋼":"nis","⋽":"notnivc","⋾":"notnivb","⌅":"barwed","⌆":"Barwed","⌌":"drcrop","⌍":"dlcrop","⌎":"urcrop","⌏":"ulcrop","⌐":"bnot","⌒":"profline","⌓":"profsurf","⌕":"telrec","⌖":"target","⌜":"ulcorn","⌝":"urcorn","⌞":"dlcorn","⌟":"drcorn","⌢":"frown","⌣":"smile","⌭":"cylcty","⌮":"profalar","⌶":"topbot","⌽":"ovbar","⌿":"solbar","⍼":"angzarr","⎰":"lmoust","⎱":"rmoust","⎴":"tbrk","⎵":"bbrk","⎶":"bbrktbrk","⏜":"OverParenthesis","⏝":"UnderParenthesis","⏞":"OverBrace","⏟":"UnderBrace","⏢":"trpezium","⏧":"elinters","␣":"blank","─":"boxh","│":"boxv","┌":"boxdr","┐":"boxdl","└":"boxur","┘":"boxul","├":"boxvr","┤":"boxvl","┬":"boxhd","┴":"boxhu","┼":"boxvh","═":"boxH","║":"boxV","╒":"boxdR","╓":"boxDr","╔":"boxDR","╕":"boxdL","╖":"boxDl","╗":"boxDL","╘":"boxuR","╙":"boxUr","╚":"boxUR","╛":"boxuL","╜":"boxUl","╝":"boxUL","╞":"boxvR","╟":"boxVr","╠":"boxVR","╡":"boxvL","╢":"boxVl","╣":"boxVL","╤":"boxHd","╥":"boxhD","╦":"boxHD","╧":"boxHu","╨":"boxhU","╩":"boxHU","╪":"boxvH","╫":"boxVh","╬":"boxVH","▀":"uhblk","▄":"lhblk","█":"block","░":"blk14","▒":"blk12","▓":"blk34","□":"squ","▪":"squf","▫":"EmptyVerySmallSquare","▭":"rect","▮":"marker","▱":"fltns","△":"xutri","▴":"utrif","▵":"utri","▸":"rtrif","▹":"rtri","▽":"xdtri","▾":"dtrif","▿":"dtri","◂":"ltrif","◃":"ltri","◊":"loz","○":"cir","◬":"tridot","◯":"xcirc","◸":"ultri","◹":"urtri","◺":"lltri","◻":"EmptySmallSquare","◼":"FilledSmallSquare","★":"starf","☆":"star","☎":"phone","♀":"female","♂":"male","♠":"spades","♣":"clubs","♥":"hearts","♦":"diams","♪":"sung","✓":"check","✗":"cross","✠":"malt","✶":"sext","❘":"VerticalSeparator","⟈":"bsolhsub","⟉":"suphsol","⟵":"xlarr","⟶":"xrarr","⟷":"xharr","⟸":"xlArr","⟹":"xrArr","⟺":"xhArr","⟼":"xmap","⟿":"dzigrarr","⤂":"nvlArr","⤃":"nvrArr","⤄":"nvHarr","⤅":"Map","⤌":"lbarr","⤍":"rbarr","⤎":"lBarr","⤏":"rBarr","⤐":"RBarr","⤑":"DDotrahd","⤒":"UpArrowBar","⤓":"DownArrowBar","⤖":"Rarrtl","⤙":"latail","⤚":"ratail","⤛":"lAtail","⤜":"rAtail","⤝":"larrfs","⤞":"rarrfs","⤟":"larrbfs","⤠":"rarrbfs","⤣":"nwarhk","⤤":"nearhk","⤥":"searhk","⤦":"swarhk","⤧":"nwnear","⤨":"toea","⤩":"tosa","⤪":"swnwar","⤳":"rarrc","⤳̸":"nrarrc","⤵":"cudarrr","⤶":"ldca","⤷":"rdca","⤸":"cudarrl","⤹":"larrpl","⤼":"curarrm","⤽":"cularrp","⥅":"rarrpl","⥈":"harrcir","⥉":"Uarrocir","⥊":"lurdshar","⥋":"ldrushar","⥎":"LeftRightVector","⥏":"RightUpDownVector","⥐":"DownLeftRightVector","⥑":"LeftUpDownVector","⥒":"LeftVectorBar","⥓":"RightVectorBar","⥔":"RightUpVectorBar","⥕":"RightDownVectorBar","⥖":"DownLeftVectorBar","⥗":"DownRightVectorBar","⥘":"LeftUpVectorBar","⥙":"LeftDownVectorBar","⥚":"LeftTeeVector","⥛":"RightTeeVector","⥜":"RightUpTeeVector","⥝":"RightDownTeeVector","⥞":"DownLeftTeeVector","⥟":"DownRightTeeVector","⥠":"LeftUpTeeVector","⥡":"LeftDownTeeVector","⥢":"lHar","⥣":"uHar","⥤":"rHar","⥥":"dHar","⥦":"luruhar","⥧":"ldrdhar","⥨":"ruluhar","⥩":"rdldhar","⥪":"lharul","⥫":"llhard","⥬":"rharul","⥭":"lrhard","⥮":"udhar","⥯":"duhar","⥰":"RoundImplies","⥱":"erarr","⥲":"simrarr","⥳":"larrsim","⥴":"rarrsim","⥵":"rarrap","⥶":"ltlarr","⥸":"gtrarr","⥹":"subrarr","⥻":"suplarr","⥼":"lfisht","⥽":"rfisht","⥾":"ufisht","⥿":"dfisht","⦚":"vzigzag","⦜":"vangrt","⦝":"angrtvbd","⦤":"ange","⦥":"range","⦦":"dwangle","⦧":"uwangle","⦨":"angmsdaa","⦩":"angmsdab","⦪":"angmsdac","⦫":"angmsdad","⦬":"angmsdae","⦭":"angmsdaf","⦮":"angmsdag","⦯":"angmsdah","⦰":"bemptyv","⦱":"demptyv","⦲":"cemptyv","⦳":"raemptyv","⦴":"laemptyv","⦵":"ohbar","⦶":"omid","⦷":"opar","⦹":"operp","⦻":"olcross","⦼":"odsold","⦾":"olcir","⦿":"ofcir","⧀":"olt","⧁":"ogt","⧂":"cirscir","⧃":"cirE","⧄":"solb","⧅":"bsolb","⧉":"boxbox","⧍":"trisb","⧎":"rtriltri","⧏":"LeftTriangleBar","⧏̸":"NotLeftTriangleBar","⧐":"RightTriangleBar","⧐̸":"NotRightTriangleBar","⧜":"iinfin","⧝":"infintie","⧞":"nvinfin","⧣":"eparsl","⧤":"smeparsl","⧥":"eqvparsl","⧫":"lozf","⧴":"RuleDelayed","⧶":"dsol","⨀":"xodot","⨁":"xoplus","⨂":"xotime","⨄":"xuplus","⨆":"xsqcup","⨍":"fpartint","⨐":"cirfnint","⨑":"awint","⨒":"rppolint","⨓":"scpolint","⨔":"npolint","⨕":"pointint","⨖":"quatint","⨗":"intlarhk","⨢":"pluscir","⨣":"plusacir","⨤":"simplus","⨥":"plusdu","⨦":"plussim","⨧":"plustwo","⨩":"mcomma","⨪":"minusdu","⨭":"loplus","⨮":"roplus","⨯":"Cross","⨰":"timesd","⨱":"timesbar","⨳":"smashp","⨴":"lotimes","⨵":"rotimes","⨶":"otimesas","⨷":"Otimes","⨸":"odiv","⨹":"triplus","⨺":"triminus","⨻":"tritime","⨼":"iprod","⨿":"amalg","⩀":"capdot","⩂":"ncup","⩃":"ncap","⩄":"capand","⩅":"cupor","⩆":"cupcap","⩇":"capcup","⩈":"cupbrcap","⩉":"capbrcup","⩊":"cupcup","⩋":"capcap","⩌":"ccups","⩍":"ccaps","⩐":"ccupssm","⩓":"And","⩔":"Or","⩕":"andand","⩖":"oror","⩗":"orslope","⩘":"andslope","⩚":"andv","⩛":"orv","⩜":"andd","⩝":"ord","⩟":"wedbar","⩦":"sdote","⩪":"simdot","⩭":"congdot","⩭̸":"ncongdot","⩮":"easter","⩯":"apacir","⩰":"apE","⩰̸":"napE","⩱":"eplus","⩲":"pluse","⩳":"Esim","⩷":"eDDot","⩸":"equivDD","⩹":"ltcir","⩺":"gtcir","⩻":"ltquest","⩼":"gtquest","⩽":"les","⩽̸":"nles","⩾":"ges","⩾̸":"nges","⩿":"lesdot","⪀":"gesdot","⪁":"lesdoto","⪂":"gesdoto","⪃":"lesdotor","⪄":"gesdotol","⪅":"lap","⪆":"gap","⪇":"lne","⪈":"gne","⪉":"lnap","⪊":"gnap","⪋":"lEg","⪌":"gEl","⪍":"lsime","⪎":"gsime","⪏":"lsimg","⪐":"gsiml","⪑":"lgE","⪒":"glE","⪓":"lesges","⪔":"gesles","⪕":"els","⪖":"egs","⪗":"elsdot","⪘":"egsdot","⪙":"el","⪚":"eg","⪝":"siml","⪞":"simg","⪟":"simlE","⪠":"simgE","⪡":"LessLess","⪡̸":"NotNestedLessLess","⪢":"GreaterGreater","⪢̸":"NotNestedGreaterGreater","⪤":"glj","⪥":"gla","⪦":"ltcc","⪧":"gtcc","⪨":"lescc","⪩":"gescc","⪪":"smt","⪫":"lat","⪬":"smte","⪬︀":"smtes","⪭":"late","⪭︀":"lates","⪮":"bumpE","⪯":"pre","⪯̸":"npre","⪰":"sce","⪰̸":"nsce","⪳":"prE","⪴":"scE","⪵":"prnE","⪶":"scnE","⪷":"prap","⪸":"scap","⪹":"prnap","⪺":"scnap","⪻":"Pr","⪼":"Sc","⪽":"subdot","⪾":"supdot","⪿":"subplus","⫀":"supplus","⫁":"submult","⫂":"supmult","⫃":"subedot","⫄":"supedot","⫅":"subE","⫅̸":"nsubE","⫆":"supE","⫆̸":"nsupE","⫇":"subsim","⫈":"supsim","⫋︀":"vsubnE","⫋":"subnE","⫌︀":"vsupnE","⫌":"supnE","⫏":"csub","⫐":"csup","⫑":"csube","⫒":"csupe","⫓":"subsup","⫔":"supsub","⫕":"subsub","⫖":"supsup","⫗":"suphsub","⫘":"supdsub","⫙":"forkv","⫚":"topfork","⫛":"mlcp","⫤":"Dashv","⫦":"Vdashl","⫧":"Barv","⫨":"vBar","⫩":"vBarv","⫫":"Vbar","⫬":"Not","⫭":"bNot","⫮":"rnmid","⫯":"cirmid","⫰":"midcir","⫱":"topcir","⫲":"nhpar","⫳":"parsim","⫽":"parsl","⫽⃥":"nparsl","♭":"flat","♮":"natur","♯":"sharp","¤":"curren","¢":"cent",$:"dollar","£":"pound","¥":"yen","€":"euro","¹":"sup1","½":"half","⅓":"frac13","¼":"frac14","⅕":"frac15","⅙":"frac16","⅛":"frac18","²":"sup2","⅔":"frac23","⅖":"frac25","³":"sup3","¾":"frac34","⅗":"frac35","⅜":"frac38","⅘":"frac45","⅚":"frac56","⅝":"frac58","⅞":"frac78","𝒶":"ascr","𝕒":"aopf","𝔞":"afr","𝔸":"Aopf","𝔄":"Afr","𝒜":"Ascr","ª":"ordf","á":"aacute","Á":"Aacute","à":"agrave","À":"Agrave","ă":"abreve","Ă":"Abreve","â":"acirc","Â":"Acirc","å":"aring","Å":"angst","ä":"auml","Ä":"Auml","ã":"atilde","Ã":"Atilde","ą":"aogon","Ą":"Aogon","ā":"amacr","Ā":"Amacr","æ":"aelig","Æ":"AElig","𝒷":"bscr","𝕓":"bopf","𝔟":"bfr","𝔹":"Bopf","ℬ":"Bscr","𝔅":"Bfr","𝔠":"cfr","𝒸":"cscr","𝕔":"copf","ℭ":"Cfr","𝒞":"Cscr","ℂ":"Copf","ć":"cacute","Ć":"Cacute","ĉ":"ccirc","Ĉ":"Ccirc","č":"ccaron","Č":"Ccaron","ċ":"cdot","Ċ":"Cdot","ç":"ccedil","Ç":"Ccedil","℅":"incare","𝔡":"dfr","ⅆ":"dd","𝕕":"dopf","𝒹":"dscr","𝒟":"Dscr","𝔇":"Dfr","ⅅ":"DD","𝔻":"Dopf","ď":"dcaron","Ď":"Dcaron","đ":"dstrok","Đ":"Dstrok","ð":"eth","Ð":"ETH","ⅇ":"ee","ℯ":"escr","𝔢":"efr","𝕖":"eopf","ℰ":"Escr","𝔈":"Efr","𝔼":"Eopf","é":"eacute","É":"Eacute","è":"egrave","È":"Egrave","ê":"ecirc","Ê":"Ecirc","ě":"ecaron","Ě":"Ecaron","ë":"euml","Ë":"Euml","ė":"edot","Ė":"Edot","ę":"eogon","Ę":"Eogon","ē":"emacr","Ē":"Emacr","𝔣":"ffr","𝕗":"fopf","𝒻":"fscr","𝔉":"Ffr","𝔽":"Fopf","ℱ":"Fscr","ff":"fflig","ffi":"ffilig","ffl":"ffllig","fi":"filig",fj:"fjlig","fl":"fllig","ƒ":"fnof","ℊ":"gscr","𝕘":"gopf","𝔤":"gfr","𝒢":"Gscr","𝔾":"Gopf","𝔊":"Gfr","ǵ":"gacute","ğ":"gbreve","Ğ":"Gbreve","ĝ":"gcirc","Ĝ":"Gcirc","ġ":"gdot","Ġ":"Gdot","Ģ":"Gcedil","𝔥":"hfr","ℎ":"planckh","𝒽":"hscr","𝕙":"hopf","ℋ":"Hscr","ℌ":"Hfr","ℍ":"Hopf","ĥ":"hcirc","Ĥ":"Hcirc","ℏ":"hbar","ħ":"hstrok","Ħ":"Hstrok","𝕚":"iopf","𝔦":"ifr","𝒾":"iscr","ⅈ":"ii","𝕀":"Iopf","ℐ":"Iscr","ℑ":"Im","í":"iacute","Í":"Iacute","ì":"igrave","Ì":"Igrave","î":"icirc","Î":"Icirc","ï":"iuml","Ï":"Iuml","ĩ":"itilde","Ĩ":"Itilde","İ":"Idot","į":"iogon","Į":"Iogon","ī":"imacr","Ī":"Imacr","ij":"ijlig","IJ":"IJlig","ı":"imath","𝒿":"jscr","𝕛":"jopf","𝔧":"jfr","𝒥":"Jscr","𝔍":"Jfr","𝕁":"Jopf","ĵ":"jcirc","Ĵ":"Jcirc","ȷ":"jmath","𝕜":"kopf","𝓀":"kscr","𝔨":"kfr","𝒦":"Kscr","𝕂":"Kopf","𝔎":"Kfr","ķ":"kcedil","Ķ":"Kcedil","𝔩":"lfr","𝓁":"lscr","ℓ":"ell","𝕝":"lopf","ℒ":"Lscr","𝔏":"Lfr","𝕃":"Lopf","ĺ":"lacute","Ĺ":"Lacute","ľ":"lcaron","Ľ":"Lcaron","ļ":"lcedil","Ļ":"Lcedil","ł":"lstrok","Ł":"Lstrok","ŀ":"lmidot","Ŀ":"Lmidot","𝔪":"mfr","𝕞":"mopf","𝓂":"mscr","𝔐":"Mfr","𝕄":"Mopf","ℳ":"Mscr","𝔫":"nfr","𝕟":"nopf","𝓃":"nscr","ℕ":"Nopf","𝒩":"Nscr","𝔑":"Nfr","ń":"nacute","Ń":"Nacute","ň":"ncaron","Ň":"Ncaron","ñ":"ntilde","Ñ":"Ntilde","ņ":"ncedil","Ņ":"Ncedil","№":"numero","ŋ":"eng","Ŋ":"ENG","𝕠":"oopf","𝔬":"ofr","ℴ":"oscr","𝒪":"Oscr","𝔒":"Ofr","𝕆":"Oopf","º":"ordm","ó":"oacute","Ó":"Oacute","ò":"ograve","Ò":"Ograve","ô":"ocirc","Ô":"Ocirc","ö":"ouml","Ö":"Ouml","ő":"odblac","Ő":"Odblac","õ":"otilde","Õ":"Otilde","ø":"oslash","Ø":"Oslash","ō":"omacr","Ō":"Omacr","œ":"oelig","Œ":"OElig","𝔭":"pfr","𝓅":"pscr","𝕡":"popf","ℙ":"Popf","𝔓":"Pfr","𝒫":"Pscr","𝕢":"qopf","𝔮":"qfr","𝓆":"qscr","𝒬":"Qscr","𝔔":"Qfr","ℚ":"Qopf","ĸ":"kgreen","𝔯":"rfr","𝕣":"ropf","𝓇":"rscr","ℛ":"Rscr","ℜ":"Re","ℝ":"Ropf","ŕ":"racute","Ŕ":"Racute","ř":"rcaron","Ř":"Rcaron","ŗ":"rcedil","Ŗ":"Rcedil","𝕤":"sopf","𝓈":"sscr","𝔰":"sfr","𝕊":"Sopf","𝔖":"Sfr","𝒮":"Sscr","Ⓢ":"oS","ś":"sacute","Ś":"Sacute","ŝ":"scirc","Ŝ":"Scirc","š":"scaron","Š":"Scaron","ş":"scedil","Ş":"Scedil","ß":"szlig","𝔱":"tfr","𝓉":"tscr","𝕥":"topf","𝒯":"Tscr","𝔗":"Tfr","𝕋":"Topf","ť":"tcaron","Ť":"Tcaron","ţ":"tcedil","Ţ":"Tcedil","™":"trade","ŧ":"tstrok","Ŧ":"Tstrok","𝓊":"uscr","𝕦":"uopf","𝔲":"ufr","𝕌":"Uopf","𝔘":"Ufr","𝒰":"Uscr","ú":"uacute","Ú":"Uacute","ù":"ugrave","Ù":"Ugrave","ŭ":"ubreve","Ŭ":"Ubreve","û":"ucirc","Û":"Ucirc","ů":"uring","Ů":"Uring","ü":"uuml","Ü":"Uuml","ű":"udblac","Ű":"Udblac","ũ":"utilde","Ũ":"Utilde","ų":"uogon","Ų":"Uogon","ū":"umacr","Ū":"Umacr","𝔳":"vfr","𝕧":"vopf","𝓋":"vscr","𝔙":"Vfr","𝕍":"Vopf","𝒱":"Vscr","𝕨":"wopf","𝓌":"wscr","𝔴":"wfr","𝒲":"Wscr","𝕎":"Wopf","𝔚":"Wfr","ŵ":"wcirc","Ŵ":"Wcirc","𝔵":"xfr","𝓍":"xscr","𝕩":"xopf","𝕏":"Xopf","𝔛":"Xfr","𝒳":"Xscr","𝔶":"yfr","𝓎":"yscr","𝕪":"yopf","𝒴":"Yscr","𝔜":"Yfr","𝕐":"Yopf","ý":"yacute","Ý":"Yacute","ŷ":"ycirc","Ŷ":"Ycirc","ÿ":"yuml","Ÿ":"Yuml","𝓏":"zscr","𝔷":"zfr","𝕫":"zopf","ℨ":"Zfr","ℤ":"Zopf","𝒵":"Zscr","ź":"zacute","Ź":"Zacute","ž":"zcaron","Ž":"Zcaron","ż":"zdot","Ż":"Zdot","Ƶ":"imped","þ":"thorn","Þ":"THORN","ʼn":"napos","α":"alpha","Α":"Alpha","β":"beta","Β":"Beta","γ":"gamma","Γ":"Gamma","δ":"delta","Δ":"Delta","ε":"epsi","ϵ":"epsiv","Ε":"Epsilon","ϝ":"gammad","Ϝ":"Gammad","ζ":"zeta","Ζ":"Zeta","η":"eta","Η":"Eta","θ":"theta","ϑ":"thetav","Θ":"Theta","ι":"iota","Ι":"Iota","κ":"kappa","ϰ":"kappav","Κ":"Kappa","λ":"lambda","Λ":"Lambda","μ":"mu","µ":"micro","Μ":"Mu","ν":"nu","Ν":"Nu","ξ":"xi","Ξ":"Xi","ο":"omicron","Ο":"Omicron","π":"pi","ϖ":"piv","Π":"Pi","ρ":"rho","ϱ":"rhov","Ρ":"Rho","σ":"sigma","Σ":"Sigma","ς":"sigmaf","τ":"tau","Τ":"Tau","υ":"upsi","Υ":"Upsilon","ϒ":"Upsi","φ":"phi","ϕ":"phiv","Φ":"Phi","χ":"chi","Χ":"Chi","ψ":"psi","Ψ":"Psi","ω":"omega","Ω":"ohm","а":"acy","А":"Acy","б":"bcy","Б":"Bcy","в":"vcy","В":"Vcy","г":"gcy","Г":"Gcy","ѓ":"gjcy","Ѓ":"GJcy","д":"dcy","Д":"Dcy","ђ":"djcy","Ђ":"DJcy","е":"iecy","Е":"IEcy","ё":"iocy","Ё":"IOcy","є":"jukcy","Є":"Jukcy","ж":"zhcy","Ж":"ZHcy","з":"zcy","З":"Zcy","ѕ":"dscy","Ѕ":"DScy","и":"icy","И":"Icy","і":"iukcy","І":"Iukcy","ї":"yicy","Ї":"YIcy","й":"jcy","Й":"Jcy","ј":"jsercy","Ј":"Jsercy","к":"kcy","К":"Kcy","ќ":"kjcy","Ќ":"KJcy","л":"lcy","Л":"Lcy","љ":"ljcy","Љ":"LJcy","м":"mcy","М":"Mcy","н":"ncy","Н":"Ncy","њ":"njcy","Њ":"NJcy","о":"ocy","О":"Ocy","п":"pcy","П":"Pcy","р":"rcy","Р":"Rcy","с":"scy","С":"Scy","т":"tcy","Т":"Tcy","ћ":"tshcy","Ћ":"TSHcy","у":"ucy","У":"Ucy","ў":"ubrcy","Ў":"Ubrcy","ф":"fcy","Ф":"Fcy","х":"khcy","Х":"KHcy","ц":"tscy","Ц":"TScy","ч":"chcy","Ч":"CHcy","џ":"dzcy","Џ":"DZcy","ш":"shcy","Ш":"SHcy","щ":"shchcy","Щ":"SHCHcy","ъ":"hardcy","Ъ":"HARDcy","ы":"ycy","Ы":"Ycy","ь":"softcy","Ь":"SOFTcy","э":"ecy","Э":"Ecy","ю":"yucy","Ю":"YUcy","я":"yacy","Я":"YAcy","ℵ":"aleph","ℶ":"beth","ℷ":"gimel","ℸ":"daleth"},p=/["&'<>`]/g,d={'"':""","&":"&","'":"'","<":"<",">":">","`":"`"},m=/&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/,A=/[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,b=/&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g,C={aacute:"á",Aacute:"Á",abreve:"ă",Abreve:"Ă",ac:"∾",acd:"∿",acE:"∾̳",acirc:"â",Acirc:"Â",acute:"´",acy:"а",Acy:"А",aelig:"æ",AElig:"Æ",af:"",afr:"𝔞",Afr:"𝔄",agrave:"à",Agrave:"À",alefsym:"ℵ",aleph:"ℵ",alpha:"α",Alpha:"Α",amacr:"ā",Amacr:"Ā",amalg:"⨿",amp:"&",AMP:"&",and:"∧",And:"⩓",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsd:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",aogon:"ą",Aogon:"Ą",aopf:"𝕒",Aopf:"𝔸",ap:"≈",apacir:"⩯",ape:"≊",apE:"⩰",apid:"≋",apos:"'",ApplyFunction:"",approx:"≈",approxeq:"≊",aring:"å",Aring:"Å",ascr:"𝒶",Ascr:"𝒜",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",bcy:"б",Bcy:"Б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",beta:"β",Beta:"Β",beth:"ℶ",between:"≬",bfr:"𝔟",Bfr:"𝔅",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bnot:"⌐",bNot:"⫭",bopf:"𝕓",Bopf:"𝔹",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxhD:"╥",boxHd:"╤",boxHD:"╦",boxhu:"┴",boxhU:"╨",boxHu:"╧",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpe:"≏",bumpE:"⪮",bumpeq:"≏",Bumpeq:"≎",cacute:"ć",Cacute:"Ć",cap:"∩",Cap:"⋒",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",ccaron:"č",Ccaron:"Č",ccedil:"ç",Ccedil:"Ç",ccirc:"ĉ",Ccirc:"Ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",cdot:"ċ",Cdot:"Ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",chcy:"ч",CHcy:"Ч",check:"✓",checkmark:"✓",chi:"χ",Chi:"Χ",cir:"○",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cire:"≗",cirE:"⧃",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",colone:"≔",Colone:"⩴",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",cscr:"𝒸",Cscr:"𝒞",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cup:"∪",Cup:"⋓",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",dArr:"⇓",Darr:"↡",dash:"‐",dashv:"⊣",Dashv:"⫤",dbkarow:"⤏",dblac:"˝",dcaron:"ď",Dcaron:"Ď",dcy:"д",Dcy:"Д",dd:"ⅆ",DD:"ⅅ",ddagger:"‡",ddarr:"⇊",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",delta:"δ",Delta:"Δ",demptyv:"⦱",dfisht:"⥿",dfr:"𝔡",Dfr:"𝔇",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",djcy:"ђ",DJcy:"Ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",dopf:"𝕕",Dopf:"𝔻",dot:"˙",Dot:"¨",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",downarrow:"↓",Downarrow:"⇓",DownArrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",DownTeeArrow:"↧",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",dscr:"𝒹",Dscr:"𝒟",dscy:"ѕ",DScy:"Ѕ",dsol:"⧶",dstrok:"đ",Dstrok:"Đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",dzcy:"џ",DZcy:"Џ",dzigrarr:"⟿",eacute:"é",Eacute:"É",easter:"⩮",ecaron:"ě",Ecaron:"Ě",ecir:"≖",ecirc:"ê",Ecirc:"Ê",ecolon:"≕",ecy:"э",Ecy:"Э",eDDot:"⩷",edot:"ė",eDot:"≑",Edot:"Ė",ee:"ⅇ",efDot:"≒",efr:"𝔢",Efr:"𝔈",eg:"⪚",egrave:"è",Egrave:"È",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",emacr:"ē",Emacr:"Ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp:" ",emsp13:" ",emsp14:" ",eng:"ŋ",ENG:"Ŋ",ensp:" ",eogon:"ę",Eogon:"Ę",eopf:"𝕖",Eopf:"𝔼",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",epsilon:"ε",Epsilon:"Ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",esim:"≂",Esim:"⩳",eta:"η",Eta:"Η",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",fcy:"ф",Fcy:"Ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",ffr:"𝔣",Ffr:"𝔉",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",fopf:"𝕗",Fopf:"𝔽",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",gamma:"γ",Gamma:"Γ",gammad:"ϝ",Gammad:"Ϝ",gap:"⪆",gbreve:"ğ",Gbreve:"Ğ",Gcedil:"Ģ",gcirc:"ĝ",Gcirc:"Ĝ",gcy:"г",Gcy:"Г",gdot:"ġ",Gdot:"Ġ",ge:"≥",gE:"≧",gel:"⋛",gEl:"⪌",geq:"≥",geqq:"≧",geqslant:"⩾",ges:"⩾",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",gfr:"𝔤",Gfr:"𝔊",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",gjcy:"ѓ",GJcy:"Ѓ",gl:"≷",gla:"⪥",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",gopf:"𝕘",Gopf:"𝔾",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",gscr:"ℊ",Gscr:"𝒢",gsim:"≳",gsime:"⪎",gsiml:"⪐",gt:">",Gt:"≫",GT:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",hardcy:"ъ",HARDcy:"Ъ",harr:"↔",hArr:"⇔",harrcir:"⥈",harrw:"↭",Hat:"^",hbar:"ℏ",hcirc:"ĥ",Hcirc:"Ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",hstrok:"ħ",Hstrok:"Ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",iacute:"í",Iacute:"Í",ic:"",icirc:"î",Icirc:"Î",icy:"и",Icy:"И",Idot:"İ",iecy:"е",IEcy:"Е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",igrave:"ì",Igrave:"Ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",ijlig:"ij",IJlig:"IJ",Im:"ℑ",imacr:"ī",Imacr:"Ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",Implies:"⇒",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",int:"∫",Int:"∬",intcal:"⊺",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"",InvisibleTimes:"",iocy:"ё",IOcy:"Ё",iogon:"į",Iogon:"Į",iopf:"𝕚",Iopf:"𝕀",iota:"ι",Iota:"Ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"",itilde:"ĩ",Itilde:"Ĩ",iukcy:"і",Iukcy:"І",iuml:"ï",Iuml:"Ï",jcirc:"ĵ",Jcirc:"Ĵ",jcy:"й",Jcy:"Й",jfr:"𝔧",Jfr:"𝔍",jmath:"ȷ",jopf:"𝕛",Jopf:"𝕁",jscr:"𝒿",Jscr:"𝒥",jsercy:"ј",Jsercy:"Ј",jukcy:"є",Jukcy:"Є",kappa:"κ",Kappa:"Κ",kappav:"ϰ",kcedil:"ķ",Kcedil:"Ķ",kcy:"к",Kcy:"К",kfr:"𝔨",Kfr:"𝔎",kgreen:"ĸ",khcy:"х",KHcy:"Х",kjcy:"ќ",KJcy:"Ќ",kopf:"𝕜",Kopf:"𝕂",kscr:"𝓀",Kscr:"𝒦",lAarr:"⇚",lacute:"ĺ",Lacute:"Ĺ",laemptyv:"⦴",lagran:"ℒ",lambda:"λ",Lambda:"Λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larr:"←",lArr:"⇐",Larr:"↞",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",latail:"⤙",lAtail:"⤛",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",lcaron:"ľ",Lcaron:"Ľ",lcedil:"ļ",Lcedil:"Ļ",lceil:"⌈",lcub:"{",lcy:"л",Lcy:"Л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",leftarrow:"←",Leftarrow:"⇐",LeftArrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",Leftrightarrow:"⇔",LeftRightArrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",leg:"⋚",lEg:"⪋",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",lfr:"𝔩",Lfr:"𝔏",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",ljcy:"љ",LJcy:"Љ",ll:"≪",Ll:"⋘",llarr:"⇇",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",lmidot:"ŀ",Lmidot:"Ŀ",lmoust:"⎰",lmoustache:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",Longleftarrow:"⟸",LongLeftArrow:"⟵",longleftrightarrow:"⟷",Longleftrightarrow:"⟺",LongLeftRightArrow:"⟷",longmapsto:"⟼",longrightarrow:"⟶",Longrightarrow:"⟹",LongRightArrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",lopf:"𝕝",Lopf:"𝕃",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",lstrok:"ł",Lstrok:"Ł",lt:"<",Lt:"≪",LT:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",map:"↦",Map:"⤅",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",mcy:"м",Mcy:"М",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",mfr:"𝔪",Mfr:"𝔐",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",mopf:"𝕞",Mopf:"𝕄",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",mu:"μ",Mu:"Μ",multimap:"⊸",mumap:"⊸",nabla:"∇",nacute:"ń",Nacute:"Ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",ncaron:"ň",Ncaron:"Ň",ncedil:"ņ",Ncedil:"Ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",ncy:"н",Ncy:"Н",ndash:"–",ne:"≠",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",nedot:"≐̸",NegativeMediumSpace:"",NegativeThickSpace:"",NegativeThinSpace:"",NegativeVeryThinSpace:"",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",nfr:"𝔫",Nfr:"𝔑",nge:"≱",ngE:"≧̸",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",ngt:"≯",nGt:"≫⃒",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",njcy:"њ",NJcy:"Њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nle:"≰",nlE:"≦̸",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nlt:"≮",nLt:"≪⃒",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",not:"¬",Not:"⫬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrarr:"↛",nrArr:"⇏",nrarrc:"⤳̸",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",nscr:"𝓃",Nscr:"𝒩",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsube:"⊈",nsubE:"⫅̸",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupe:"⊉",nsupE:"⫆̸",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",ntilde:"ñ",Ntilde:"Ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",nu:"ν",Nu:"Ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",oacute:"ó",Oacute:"Ó",oast:"⊛",ocir:"⊚",ocirc:"ô",Ocirc:"Ô",ocy:"о",Ocy:"О",odash:"⊝",odblac:"ő",Odblac:"Ő",odiv:"⨸",odot:"⊙",odsold:"⦼",oelig:"œ",OElig:"Œ",ofcir:"⦿",ofr:"𝔬",Ofr:"𝔒",ogon:"˛",ograve:"ò",Ograve:"Ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",omacr:"ō",Omacr:"Ō",omega:"ω",Omega:"Ω",omicron:"ο",Omicron:"Ο",omid:"⦶",ominus:"⊖",oopf:"𝕠",Oopf:"𝕆",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",or:"∨",Or:"⩔",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",oscr:"ℴ",Oscr:"𝒪",oslash:"ø",Oslash:"Ø",osol:"⊘",otilde:"õ",Otilde:"Õ",otimes:"⊗",Otimes:"⨷",otimesas:"⨶",ouml:"ö",Ouml:"Ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",pcy:"п",Pcy:"П",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",pfr:"𝔭",Pfr:"𝔓",phi:"φ",Phi:"Φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",pi:"π",Pi:"Π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",pr:"≺",Pr:"⪻",prap:"⪷",prcue:"≼",pre:"⪯",prE:"⪳",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportion:"∷",Proportional:"∝",propto:"∝",prsim:"≾",prurel:"⊰",pscr:"𝓅",Pscr:"𝒫",psi:"ψ",Psi:"Ψ",puncsp:" ",qfr:"𝔮",Qfr:"𝔔",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",qscr:"𝓆",Qscr:"𝒬",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",racute:"ŕ",Racute:"Ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarr:"→",rArr:"⇒",Rarr:"↠",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",rarrtl:"↣",Rarrtl:"⤖",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",rcaron:"ř",Rcaron:"Ř",rcedil:"ŗ",Rcedil:"Ŗ",rceil:"⌉",rcub:"}",rcy:"р",Rcy:"Р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",Re:"ℜ",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",rho:"ρ",Rho:"Ρ",rhov:"ϱ",RightAngleBracket:"⟩",rightarrow:"→",Rightarrow:"⇒",RightArrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTee:"⊢",RightTeeArrow:"↦",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",sacute:"ś",Sacute:"Ś",sbquo:"‚",sc:"≻",Sc:"⪼",scap:"⪸",scaron:"š",Scaron:"Š",sccue:"≽",sce:"⪰",scE:"⪴",scedil:"ş",Scedil:"Ş",scirc:"ŝ",Scirc:"Ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",scy:"с",Scy:"С",sdot:"⋅",sdotb:"⊡",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",sfr:"𝔰",Sfr:"𝔖",sfrown:"⌢",sharp:"♯",shchcy:"щ",SHCHcy:"Щ",shcy:"ш",SHcy:"Ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"",sigma:"σ",Sigma:"Σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",softcy:"ь",SOFTcy:"Ь",sol:"/",solb:"⧄",solbar:"⌿",sopf:"𝕤",Sopf:"𝕊",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squf:"▪",srarr:"→",sscr:"𝓈",Sscr:"𝒮",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",star:"☆",Star:"⋆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",sube:"⊆",subE:"⫅",subedot:"⫃",submult:"⫁",subne:"⊊",subnE:"⫋",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup:"⊃",Sup:"⋑",sup1:"¹",sup2:"²",sup3:"³",supdot:"⪾",supdsub:"⫘",supe:"⊇",supE:"⫆",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supne:"⊋",supnE:"⫌",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",tau:"τ",Tau:"Τ",tbrk:"⎴",tcaron:"ť",Tcaron:"Ť",tcedil:"ţ",Tcedil:"Ţ",tcy:"т",Tcy:"Т",tdot:"⃛",telrec:"⌕",tfr:"𝔱",Tfr:"𝔗",there4:"∴",therefore:"∴",Therefore:"∴",theta:"θ",Theta:"Θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:" ",thinsp:" ",ThinSpace:" ",thkap:"≈",thksim:"∼",thorn:"þ",THORN:"Þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",topf:"𝕥",Topf:"𝕋",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",tscr:"𝓉",Tscr:"𝒯",tscy:"ц",TScy:"Ц",tshcy:"ћ",TSHcy:"Ћ",tstrok:"ŧ",Tstrok:"Ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",uacute:"ú",Uacute:"Ú",uarr:"↑",uArr:"⇑",Uarr:"↟",Uarrocir:"⥉",ubrcy:"ў",Ubrcy:"Ў",ubreve:"ŭ",Ubreve:"Ŭ",ucirc:"û",Ucirc:"Û",ucy:"у",Ucy:"У",udarr:"⇅",udblac:"ű",Udblac:"Ű",udhar:"⥮",ufisht:"⥾",ufr:"𝔲",Ufr:"𝔘",ugrave:"ù",Ugrave:"Ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",umacr:"ū",Umacr:"Ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",uogon:"ų",Uogon:"Ų",uopf:"𝕦",Uopf:"𝕌",uparrow:"↑",Uparrow:"⇑",UpArrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",updownarrow:"↕",Updownarrow:"⇕",UpDownArrow:"↕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",upsilon:"υ",Upsilon:"Υ",UpTee:"⊥",UpTeeArrow:"↥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",uring:"ů",Uring:"Ů",urtri:"◹",uscr:"𝓊",Uscr:"𝒰",utdot:"⋰",utilde:"ũ",Utilde:"Ũ",utri:"▵",utrif:"▴",uuarr:"⇈",uuml:"ü",Uuml:"Ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",vcy:"в",Vcy:"В",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",vee:"∨",Vee:"⋁",veebar:"⊻",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",vfr:"𝔳",Vfr:"𝔙",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",vopf:"𝕧",Vopf:"𝕍",vprop:"∝",vrtri:"⊳",vscr:"𝓋",Vscr:"𝒱",vsubne:"⊊︀",vsubnE:"⫋︀",vsupne:"⊋︀",vsupnE:"⫌︀",Vvdash:"⊪",vzigzag:"⦚",wcirc:"ŵ",Wcirc:"Ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",wfr:"𝔴",Wfr:"𝔚",wopf:"𝕨",Wopf:"𝕎",wp:"℘",wr:"≀",wreath:"≀",wscr:"𝓌",Wscr:"𝒲",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",xfr:"𝔵",Xfr:"𝔛",xharr:"⟷",xhArr:"⟺",xi:"ξ",Xi:"Ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",xopf:"𝕩",Xopf:"𝕏",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",xscr:"𝓍",Xscr:"𝒳",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",yacute:"ý",Yacute:"Ý",yacy:"я",YAcy:"Я",ycirc:"ŷ",Ycirc:"Ŷ",ycy:"ы",Ycy:"Ы",yen:"¥",yfr:"𝔶",Yfr:"𝔜",yicy:"ї",YIcy:"Ї",yopf:"𝕪",Yopf:"𝕐",yscr:"𝓎",Yscr:"𝒴",yucy:"ю",YUcy:"Ю",yuml:"ÿ",Yuml:"Ÿ",zacute:"ź",Zacute:"Ź",zcaron:"ž",Zcaron:"Ž",zcy:"з",Zcy:"З",zdot:"ż",Zdot:"Ż",zeetrf:"ℨ",ZeroWidthSpace:"",zeta:"ζ",Zeta:"Ζ",zfr:"𝔷",Zfr:"ℨ",zhcy:"ж",ZHcy:"Ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",zscr:"𝓏",Zscr:"𝒵",zwj:"",zwnj:""},h={aacute:"á",Aacute:"Á",acirc:"â",Acirc:"Â",acute:"´",aelig:"æ",AElig:"Æ",agrave:"à",Agrave:"À",amp:"&",AMP:"&",aring:"å",Aring:"Å",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",brvbar:"¦",ccedil:"ç",Ccedil:"Ç",cedil:"¸",cent:"¢",copy:"©",COPY:"©",curren:"¤",deg:"°",divide:"÷",eacute:"é",Eacute:"É",ecirc:"ê",Ecirc:"Ê",egrave:"è",Egrave:"È",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",frac12:"½",frac14:"¼",frac34:"¾",gt:">",GT:">",iacute:"í",Iacute:"Í",icirc:"î",Icirc:"Î",iexcl:"¡",igrave:"ì",Igrave:"Ì",iquest:"¿",iuml:"ï",Iuml:"Ï",laquo:"«",lt:"<",LT:"<",macr:"¯",micro:"µ",middot:"·",nbsp:" ",not:"¬",ntilde:"ñ",Ntilde:"Ñ",oacute:"ó",Oacute:"Ó",ocirc:"ô",Ocirc:"Ô",ograve:"ò",Ograve:"Ò",ordf:"ª",ordm:"º",oslash:"ø",Oslash:"Ø",otilde:"õ",Otilde:"Õ",ouml:"ö",Ouml:"Ö",para:"¶",plusmn:"±",pound:"£",quot:'"',QUOT:'"',raquo:"»",reg:"®",REG:"®",sect:"§",shy:"",sup1:"¹",sup2:"²",sup3:"³",szlig:"ß",thorn:"þ",THORN:"Þ",times:"×",uacute:"ú",Uacute:"Ú",ucirc:"û",Ucirc:"Û",ugrave:"ù",Ugrave:"Ù",uml:"¨",uuml:"ü",Uuml:"Ü",yacute:"ý",Yacute:"Ý",yen:"¥",yuml:"ÿ"},g={0:"�",128:"€",130:"‚",131:"ƒ",132:"„",133:"…",134:"†",135:"‡",136:"ˆ",137:"‰",138:"Š",139:"‹",140:"Œ",142:"Ž",145:"‘",146:"’",147:"“",148:"”",149:"•",150:"–",151:"—",152:"˜",153:"™",154:"š",155:"›",156:"œ",158:"ž",159:"Ÿ"},E=[1,2,3,4,5,6,7,8,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,64976,64977,64978,64979,64980,64981,64982,64983,64984,64985,64986,64987,64988,64989,64990,64991,64992,64993,64994,64995,64996,64997,64998,64999,65e3,65001,65002,65003,65004,65005,65006,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111],v=String.fromCharCode,_={}.hasOwnProperty,S=function(y,L){return _.call(y,L)},q=function(y,L){if(!y)return L;var H,k={};for(H in L)k[H]=S(y,H)?y[H]:L[H];return k},I=function(y,L){var k="";return y>=55296&&y<=57343||y>1114111?(L&&Y("character reference outside the permissible Unicode range"),"�"):S(g,y)?(L&&Y("disallowed character reference"),g[y]):(L&&function(y,L){for(var k=-1,H=y.length;++k<H;)if(y[k]==L)return!0;return!1}(E,y)&&Y("disallowed character reference"),y>65535&&(k+=v((y-=65536)>>>10&1023|55296),y=56320|1023&y),k+=v(y))},Q=function(y){return"&#x"+y.toString(16).toUpperCase()+";"},ie=function(y){return"&#"+y+";"},Y=function(y){throw Error("Parse error: "+y)},O=function(y,L){(L=q(L,O.options)).strict&&A.test(y)&&Y("forbidden code point");var H=L.encodeEverything,j=L.useNamedReferences,fe=L.allowUnsafeSymbols,ce=L.decimal?ie:Q,se=function(le){return ce(le.charCodeAt(0))};return H?(y=y.replace(i,(function(le){return j&&S(c,le)?"&"+c[le]+";":se(le)})),j&&(y=y.replace(/>\u20D2/g,">⃒").replace(/<\u20D2/g,"<⃒").replace(/fj/g,"fj")),j&&(y=y.replace(u,(function(le){return"&"+c[le]+";"})))):j?(fe||(y=y.replace(p,(function(le){return"&"+c[le]+";"}))),y=(y=y.replace(/>\u20D2/g,">⃒").replace(/<\u20D2/g,"<⃒")).replace(u,(function(le){return"&"+c[le]+";"}))):fe||(y=y.replace(p,se)),y.replace(s,(function(le){var mt=le.charCodeAt(0),Ft=le.charCodeAt(1);return ce(1024*(mt-55296)+Ft-56320+65536)})).replace(l,se)};O.options={allowUnsafeSymbols:!1,encodeEverything:!1,strict:!1,useNamedReferences:!1,decimal:!1};var G=function(y,L){var k=(L=q(L,G.options)).strict;return k&&m.test(y)&&Y("malformed character reference"),y.replace(b,(function(H,j,fe,ce,se,le,mt,Ft,ht){var Ge,Ct,te,Re,ke,Ce;return j?C[ke=j]:fe?(ke=fe,(Ce=ce)&&L.isAttributeValue?(k&&"="==Ce&&Y("`&` did not start a character reference"),H):(k&&Y("named character reference was not terminated by a semicolon"),h[ke]+(Ce||""))):se?(te=se,Ct=le,k&&!Ct&&Y("character reference was not terminated by a semicolon"),Ge=parseInt(te,10),I(Ge,k)):mt?(Re=mt,Ct=Ft,k&&!Ct&&Y("character reference was not terminated by a semicolon"),Ge=parseInt(Re,16),I(Ge,k)):(k&&Y("named character reference was not terminated by a semicolon"),H)}))};G.options={isAttributeValue:!1,strict:!1};var x={version:"1.2.0",encode:O,decode:G,escape:function(y){return y.replace(p,(function(L){return d[L]}))},unescape:G};if(r&&!r.nodeType)if(o)o.exports=x;else for(var T in x)S(x,T)&&(r[T]=x[T]);else n.he=x}(Nt)}(ps,ps.exports);var db=ps.exports,ae={},Tp={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"",InvisibleTimes:"",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"",NegativeThickSpace:"",NegativeThinSpace:"",NegativeVeryThinSpace:"",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:" ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"",zwnj:""},su=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/,xr={},Cp={};function fs(e,t,n){var r,o,a,s,i,l="";for("string"!=typeof t&&(n=t,t=fs.defaultChars),typeof n>"u"&&(n=!0),i=function(e){var t,n,r=Cp[e];if(r)return r;for(r=Cp[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),/^[0-9a-z]$/i.test(n)?r.push(n):r.push("%"+("0"+t.toString(16).toUpperCase()).slice(-2));for(t=0;t<e.length;t++)r[e.charCodeAt(t)]=e[t];return r}(t),r=0,o=e.length;r<o;r++)if(a=e.charCodeAt(r),n&&37===a&&r+2<o&&/^[0-9a-f]{2}$/i.test(e.slice(r+1,r+3)))l+=e.slice(r,r+3),r+=2;else if(a<128)l+=i[a];else if(a>=55296&&a<=57343){if(a>=55296&&a<=56319&&r+1<o&&((s=e.charCodeAt(r+1))>=56320&&s<=57343)){l+=encodeURIComponent(e[r]+e[r+1]),r++;continue}l+="%EF%BF%BD"}else l+=encodeURIComponent(e[r]);return l}fs.defaultChars=";/?:@&=+$,-_.!~*'()#",fs.componentChars="-_.!~*'()";var fb=fs,Np={};function gs(e,t){var n;return"string"!=typeof t&&(t=gs.defaultChars),n=function(e){var t,n,r=Np[e];if(r)return r;for(r=Np[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),r.push(n);for(t=0;t<e.length;t++)r[n=e.charCodeAt(t)]="%"+("0"+n.toString(16).toUpperCase()).slice(-2);return r}(t),e.replace(/(%[a-f0-9]{2})+/gi,(function(r){var o,a,s,i,l,u,c,p="";for(o=0,a=r.length;o<a;o+=3)(s=parseInt(r.slice(o+1,o+3),16))<128?p+=n[s]:192==(224&s)&&o+3<a&&128==(192&(i=parseInt(r.slice(o+4,o+6),16)))?(p+=(c=s<<6&1984|63&i)<128?"��":String.fromCharCode(c),o+=3):224==(240&s)&&o+6<a&&(i=parseInt(r.slice(o+4,o+6),16),l=parseInt(r.slice(o+7,o+9),16),128==(192&i)&&128==(192&l))?(p+=(c=s<<12&61440|i<<6&4032|63&l)<2048||c>=55296&&c<=57343?"���":String.fromCharCode(c),o+=6):240==(248&s)&&o+9<a&&(i=parseInt(r.slice(o+4,o+6),16),l=parseInt(r.slice(o+7,o+9),16),u=parseInt(r.slice(o+10,o+12),16),128==(192&i)&&128==(192&l)&&128==(192&u))?((c=s<<18&1835008|i<<12&258048|l<<6&4032|63&u)<65536||c>1114111?p+="����":(c-=65536,p+=String.fromCharCode(55296+(c>>10),56320+(1023&c))),o+=9):p+="�";return p}))}gs.defaultChars=";/?:@&=+$,#",gs.componentChars="";var mb=gs;function ms(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var Eb=/^([a-z0-9.+-]+:)/i,Ab=/:[0-9]*$/,bb=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,vb=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),Db=["'"].concat(vb),Sp=["%","/","?",";","#"].concat(Db),wp=["/","?","#"],xp=/^[+a-z0-9A-Z_-]{0,63}$/,Tb=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,Rp={javascript:!0,"javascript:":!0},Lp={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};ms.prototype.parse=function(e,t){var n,r,o,a,s,i=e;if(i=i.trim(),!t&&1===e.split("#").length){var l=bb.exec(i);if(l)return this.pathname=l[1],l[2]&&(this.search=l[2]),this}var u=Eb.exec(i);if(u&&(o=(u=u[0]).toLowerCase(),this.protocol=u,i=i.substr(u.length)),(t||u||i.match(/^\/\/[^@\/]+@[^@\/]+/))&&((s="//"===i.substr(0,2))&&!(u&&Rp[u])&&(i=i.substr(2),this.slashes=!0)),!Rp[u]&&(s||u&&!Lp[u])){var p,d,c=-1;for(n=0;n<wp.length;n++)-1!==(a=i.indexOf(wp[n]))&&(-1===c||a<c)&&(c=a);for(-1!==(d=-1===c?i.lastIndexOf("@"):i.lastIndexOf("@",c))&&(p=i.slice(0,d),i=i.slice(d+1),this.auth=p),c=-1,n=0;n<Sp.length;n++)-1!==(a=i.indexOf(Sp[n]))&&(-1===c||a<c)&&(c=a);-1===c&&(c=i.length),":"===i[c-1]&&c--;var m=i.slice(0,c);i=i.slice(c),this.parseHost(m),this.hostname=this.hostname||"";var A="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!A){var b=this.hostname.split(/\./);for(n=0,r=b.length;n<r;n++){var C=b[n];if(C&&!C.match(xp)){for(var h="",g=0,E=C.length;g<E;g++)C.charCodeAt(g)>127?h+="x":h+=C[g];if(!h.match(xp)){var v=b.slice(0,n),N=b.slice(n+1),_=C.match(Tb);_&&(v.push(_[1]),N.unshift(_[2])),N.length&&(i=N.join(".")+i),this.hostname=v.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),A&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var S=i.indexOf("#");-1!==S&&(this.hash=i.substr(S),i=i.slice(0,S));var R=i.indexOf("?");return-1!==R&&(this.search=i.substr(R),i=i.slice(0,R)),i&&(this.pathname=i),Lp[o]&&this.hostname&&!this.pathname&&(this.pathname=""),this},ms.prototype.parseHost=function(e){var t=Ab.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)};var Nb=function(e,t){if(e&&e instanceof ms)return e;var n=new ms;return n.parse(e,t),n};xr.encode=fb,xr.decode=mb,xr.format=function(t){var n="";return n+=t.protocol||"",n+=t.slashes?"//":"",n+=t.auth?t.auth+"@":"",t.hostname&&-1!==t.hostname.indexOf(":")?n+="["+t.hostname+"]":n+=t.hostname||"",n+=t.port?":"+t.port:"",n+=t.pathname||"",n+=t.search||"",n+=t.hash||""},xr.parse=Nb;var iu,Op,lu,Ip,uu,Fp,cu,Bp,Up,Gn={};function kp(){return Op||(Op=1,iu=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/),iu}function Mp(){return Ip||(Ip=1,lu=/[\0-\x1F\x7F-\x9F]/),lu}function Pp(){return Bp||(Bp=1,cu=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/),cu}function wb(){return Up||(Up=1,Gn.Any=kp(),Gn.Cc=Mp(),Gn.Cf=(Fp||(Fp=1,uu=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/),uu),Gn.P=su,Gn.Z=Pp()),Gn}!function(e){var r=Object.prototype.hasOwnProperty;function o(O,G){return r.call(O,G)}function i(O){return!(O>=55296&&O<=57343||O>=64976&&O<=65007||65535==(65535&O)||65534==(65535&O)||O>=0&&O<=8||11===O||O>=14&&O<=31||O>=127&&O<=159||O>1114111)}function l(O){if(O>65535){var G=55296+((O-=65536)>>10),P=56320+(1023&O);return String.fromCharCode(G,P)}return String.fromCharCode(O)}var u=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,p=new RegExp(u.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),d=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i,m=Tp;var h=/[&<>"]/,g=/[&<>"]/g,E={"&":"&","<":"<",">":">",'"':"""};function v(O){return E[O]}var _=/[.?*+^$[\]\\(){}|-]/g;var I=su;e.lib={},e.lib.mdurl=xr,e.lib.ucmicro=wb(),e.assign=function(O){return Array.prototype.slice.call(arguments,1).forEach((function(P){if(P){if("object"!=typeof P)throw new TypeError(P+"must be object");Object.keys(P).forEach((function(x){O[x]=P[x]}))}})),O},e.isString=function(O){return"[object String]"===function(O){return Object.prototype.toString.call(O)}(O)},e.has=o,e.unescapeMd=function(O){return O.indexOf("\\")<0?O:O.replace(u,"$1")},e.unescapeAll=function(O){return O.indexOf("\\")<0&&O.indexOf("&")<0?O:O.replace(p,(function(G,P,x){return P||function(O,G){var P;return o(m,G)?m[G]:35===G.charCodeAt(0)&&d.test(G)&&i(P="x"===G[1].toLowerCase()?parseInt(G.slice(2),16):parseInt(G.slice(1),10))?l(P):O}(G,x)}))},e.isValidEntityCode=i,e.fromCodePoint=l,e.escapeHtml=function(O){return h.test(O)?O.replace(g,v):O},e.arrayReplaceAt=function(O,G,P){return[].concat(O.slice(0,G),P,O.slice(G+1))},e.isSpace=function(O){switch(O){case 9:case 32:return!0}return!1},e.isWhiteSpace=function(O){if(O>=8192&&O<=8202)return!0;switch(O){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},e.isMdAsciiPunct=function(O){switch(O){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},e.isPunctChar=function(O){return I.test(O)},e.escapeRE=function(O){return O.replace(_,"\\$&")},e.normalizeReference=function(O){return O=O.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(O=O.replace(/ẞ/g,"ß")),O.toLowerCase().toUpperCase()}}(ae);var hs={},qp=ae.unescapeAll,Lb=ae.unescapeAll;hs.parseLinkLabel=function(t,n,r){var o,a,s,i,l=-1,u=t.posMax,c=t.pos;for(t.pos=n+1,o=1;t.pos<u;){if(93===(s=t.src.charCodeAt(t.pos))&&0===--o){a=!0;break}if(i=t.pos,t.md.inline.skipToken(t),91===s)if(i===t.pos-1)o++;else if(r)return t.pos=c,-1}return a&&(l=t.pos),t.pos=c,l},hs.parseLinkDestination=function(t,n,r){var o,a,s=n,i={ok:!1,pos:0,lines:0,str:""};if(60===t.charCodeAt(s)){for(s++;s<r;){if(10===(o=t.charCodeAt(s))||60===o)return i;if(62===o)return i.pos=s+1,i.str=qp(t.slice(n+1,s)),i.ok=!0,i;92===o&&s+1<r?s+=2:s++}return i}for(a=0;s<r&&!(32===(o=t.charCodeAt(s))||o<32||127===o);)if(92===o&&s+1<r){if(32===t.charCodeAt(s+1))break;s+=2}else{if(40===o&&++a>32)return i;if(41===o){if(0===a)break;a--}s++}return n===s||0!==a||(i.str=qp(t.slice(n,s)),i.pos=s,i.ok=!0),i},hs.parseLinkTitle=function(t,n,r){var o,a,s=0,i=n,l={ok:!1,pos:0,lines:0,str:""};if(i>=r||34!==(a=t.charCodeAt(i))&&39!==a&&40!==a)return l;for(i++,40===a&&(a=41);i<r;){if((o=t.charCodeAt(i))===a)return l.pos=i+1,l.lines=s,l.str=Lb(t.slice(n+1,i)),l.ok=!0,l;if(40===o&&41===a)return l;10===o?s++:92===o&&i+1<r&&(i++,10===t.charCodeAt(i)&&s++),i++}return l};var kb=ae.assign,Ib=ae.unescapeAll,$n=ae.escapeHtml,zt={};function Rr(){this.rules=kb({},zt)}zt.code_inline=function(e,t,n,r,o){var a=e[t];return"<code"+o.renderAttrs(a)+">"+$n(a.content)+"</code>"},zt.code_block=function(e,t,n,r,o){var a=e[t];return"<pre"+o.renderAttrs(a)+"><code>"+$n(e[t].content)+"</code></pre>\n"},zt.fence=function(e,t,n,r,o){var u,c,p,d,m,a=e[t],s=a.info?Ib(a.info).trim():"",i="",l="";return s&&(i=(p=s.split(/(\s+)/g))[0],l=p.slice(2).join("")),0===(u=n.highlight&&n.highlight(a.content,i,l)||$n(a.content)).indexOf("<pre")?u+"\n":s?(c=a.attrIndex("class"),d=a.attrs?a.attrs.slice():[],c<0?d.push(["class",n.langPrefix+i]):(d[c]=d[c].slice(),d[c][1]+=" "+n.langPrefix+i),m={attrs:d},"<pre><code"+o.renderAttrs(m)+">"+u+"</code></pre>\n"):"<pre><code"+o.renderAttrs(a)+">"+u+"</code></pre>\n"},zt.image=function(e,t,n,r,o){var a=e[t];return a.attrs[a.attrIndex("alt")][1]=o.renderInlineAsText(a.children,n,r),o.renderToken(e,t,n)},zt.hardbreak=function(e,t,n){return n.xhtmlOut?"<br />\n":"<br>\n"},zt.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?"<br />\n":"<br>\n":"\n"},zt.text=function(e,t){return $n(e[t].content)},zt.html_block=function(e,t){return e[t].content},zt.html_inline=function(e,t){return e[t].content},Rr.prototype.renderAttrs=function(t){var n,r,o;if(!t.attrs)return"";for(o="",n=0,r=t.attrs.length;n<r;n++)o+=" "+$n(t.attrs[n][0])+'="'+$n(t.attrs[n][1])+'"';return o},Rr.prototype.renderToken=function(t,n,r){var o,a="",s=!1,i=t[n];return i.hidden?"":(i.block&&-1!==i.nesting&&n&&t[n-1].hidden&&(a+="\n"),a+=(-1===i.nesting?"</":"<")+i.tag,a+=this.renderAttrs(i),0===i.nesting&&r.xhtmlOut&&(a+=" /"),i.block&&(s=!0,1===i.nesting&&n+1<t.length&&(("inline"===(o=t[n+1]).type||o.hidden||-1===o.nesting&&o.tag===i.tag)&&(s=!1))),a+=s?">\n":">")},Rr.prototype.renderInline=function(e,t,n){for(var r,o="",a=this.rules,s=0,i=e.length;s<i;s++)typeof a[r=e[s].type]<"u"?o+=a[r](e,s,t,n,this):o+=this.renderToken(e,s,t);return o},Rr.prototype.renderInlineAsText=function(e,t,n){for(var r="",o=0,a=e.length;o<a;o++)"text"===e[o].type?r+=e[o].content:"image"===e[o].type?r+=this.renderInlineAsText(e[o].children,t,n):"softbreak"===e[o].type&&(r+="\n");return r},Rr.prototype.render=function(e,t,n){var r,o,a,s="",i=this.rules;for(r=0,o=e.length;r<o;r++)"inline"===(a=e[r].type)?s+=this.renderInline(e[r].children,t,n):typeof i[a]<"u"?s+=i[a](e,r,t,n,this):s+=this.renderToken(e,r,t,n);return s};var Mb=Rr;function It(){this.__rules__=[],this.__cache__=null}It.prototype.__find__=function(e){for(var t=0;t<this.__rules__.length;t++)if(this.__rules__[t].name===e)return t;return-1},It.prototype.__compile__=function(){var e=this,t=[""];e.__rules__.forEach((function(n){n.enabled&&n.alt.forEach((function(r){t.indexOf(r)<0&&t.push(r)}))})),e.__cache__={},t.forEach((function(n){e.__cache__[n]=[],e.__rules__.forEach((function(r){r.enabled&&(n&&r.alt.indexOf(n)<0||e.__cache__[n].push(r.fn))}))}))},It.prototype.at=function(e,t,n){var r=this.__find__(e),o=n||{};if(-1===r)throw new Error("Parser rule not found: "+e);this.__rules__[r].fn=t,this.__rules__[r].alt=o.alt||[],this.__cache__=null},It.prototype.before=function(e,t,n,r){var o=this.__find__(e),a=r||{};if(-1===o)throw new Error("Parser rule not found: "+e);this.__rules__.splice(o,0,{name:t,enabled:!0,fn:n,alt:a.alt||[]}),this.__cache__=null},It.prototype.after=function(e,t,n,r){var o=this.__find__(e),a=r||{};if(-1===o)throw new Error("Parser rule not found: "+e);this.__rules__.splice(o+1,0,{name:t,enabled:!0,fn:n,alt:a.alt||[]}),this.__cache__=null},It.prototype.push=function(e,t,n){var r=n||{};this.__rules__.push({name:e,enabled:!0,fn:t,alt:r.alt||[]}),this.__cache__=null},It.prototype.enable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach((function(r){var o=this.__find__(r);if(o<0){if(t)return;throw new Error("Rules manager: invalid rule name "+r)}this.__rules__[o].enabled=!0,n.push(r)}),this),this.__cache__=null,n},It.prototype.enableOnly=function(e,t){Array.isArray(e)||(e=[e]),this.__rules__.forEach((function(n){n.enabled=!1})),this.enable(e,t)},It.prototype.disable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach((function(r){var o=this.__find__(r);if(o<0){if(t)return;throw new Error("Rules manager: invalid rule name "+r)}this.__rules__[o].enabled=!1,n.push(r)}),this),this.__cache__=null,n},It.prototype.getRules=function(e){return null===this.__cache__&&this.__compile__(),this.__cache__[e]||[]};var du=It,Fb=/\r\n?|\n/g,Bb=/\0/g,Hb=ae.arrayReplaceAt;function Vb(e){return/^<a[>\s]/i.test(e)}function zb(e){return/^<\/a\s*>/i.test(e)}var Hp=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,$b=/\((c|tm|r)\)/i,Zb=/\((c|tm|r)\)/gi,jb={c:"©",r:"®",tm:"™"};function Wb(e,t){return jb[t.toLowerCase()]}function Yb(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)"text"===(n=e[t]).type&&!r&&(n.content=n.content.replace(Zb,Wb)),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}function Kb(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)"text"===(n=e[t]).type&&!r&&Hp.test(n.content)&&(n.content=n.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1—").replace(/(^|\s)--(?=\s|$)/gm,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1–")),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}var Vp=ae.isWhiteSpace,zp=ae.isPunctChar,Gp=ae.isMdAsciiPunct,Qb=/['"]/,$p=/['"]/g;function Es(e,t,n){return e.slice(0,t)+n+e.slice(t+1)}function Jb(e,t){var n,r,o,a,s,i,l,u,c,p,d,m,A,b,C,h,g,E,v,N,_;for(v=[],n=0;n<e.length;n++){for(r=e[n],l=e[n].level,g=v.length-1;g>=0&&!(v[g].level<=l);g--);if(v.length=g+1,"text"===r.type){s=0,i=(o=r.content).length;e:for(;s<i&&($p.lastIndex=s,a=$p.exec(o),a);){if(C=h=!0,s=a.index+1,E="'"===a[0],c=32,a.index-1>=0)c=o.charCodeAt(a.index-1);else for(g=n-1;g>=0&&"softbreak"!==e[g].type&&"hardbreak"!==e[g].type;g--)if(e[g].content){c=e[g].content.charCodeAt(e[g].content.length-1);break}if(p=32,s<i)p=o.charCodeAt(s);else for(g=n+1;g<e.length&&"softbreak"!==e[g].type&&"hardbreak"!==e[g].type;g++)if(e[g].content){p=e[g].content.charCodeAt(0);break}if(d=Gp(c)||zp(String.fromCharCode(c)),m=Gp(p)||zp(String.fromCharCode(p)),A=Vp(c),(b=Vp(p))?C=!1:m&&(A||d||(C=!1)),A?h=!1:d&&(b||m||(h=!1)),34===p&&'"'===a[0]&&c>=48&&c<=57&&(h=C=!1),C&&h&&(C=d,h=m),C||h){if(h)for(g=v.length-1;g>=0&&(u=v[g],!(v[g].level<l));g--)if(u.single===E&&v[g].level===l){u=v[g],E?(N=t.md.options.quotes[2],_=t.md.options.quotes[3]):(N=t.md.options.quotes[0],_=t.md.options.quotes[1]),r.content=Es(r.content,a.index,_),e[u.token].content=Es(e[u.token].content,u.pos,N),s+=_.length-1,u.token===n&&(s+=N.length-1),i=(o=r.content).length,v.length=g;continue e}C?v.push({token:n,pos:a.index,single:E,level:l}):h&&E&&(r.content=Es(r.content,a.index,"’"))}else E&&(r.content=Es(r.content,a.index,"’"))}}}}function Lr(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}Lr.prototype.attrIndex=function(t){var n,r,o;if(!this.attrs)return-1;for(r=0,o=(n=this.attrs).length;r<o;r++)if(n[r][0]===t)return r;return-1},Lr.prototype.attrPush=function(t){this.attrs?this.attrs.push(t):this.attrs=[t]},Lr.prototype.attrSet=function(t,n){var r=this.attrIndex(t),o=[t,n];r<0?this.attrPush(o):this.attrs[r]=o},Lr.prototype.attrGet=function(t){var n=this.attrIndex(t),r=null;return n>=0&&(r=this.attrs[n][1]),r},Lr.prototype.attrJoin=function(t,n){var r=this.attrIndex(t);r<0?this.attrPush([t,n]):this.attrs[r][1]=this.attrs[r][1]+" "+n};var pu=Lr,n_=pu;function jp(e,t,n){this.src=e,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=t}jp.prototype.Token=n_;var r_=jp,o_=du,fu=[["normalize",function(t){var n;n=(n=t.src.replace(Fb,"\n")).replace(Bb,"�"),t.src=n}],["block",function(t){var n;t.inlineMode?((n=new t.Token("inline","",0)).content=t.src,n.map=[0,1],n.children=[],t.tokens.push(n)):t.md.block.parse(t.src,t.md,t.env,t.tokens)}],["inline",function(t){var r,o,a,n=t.tokens;for(o=0,a=n.length;o<a;o++)"inline"===(r=n[o]).type&&t.md.inline.parse(r.content,t.md,t.env,r.children)}],["linkify",function(t){var n,r,o,a,s,i,l,u,c,p,d,m,A,b,C,h,E,g=t.tokens;if(t.md.options.linkify)for(r=0,o=g.length;r<o;r++)if("inline"===g[r].type&&t.md.linkify.pretest(g[r].content))for(A=0,n=(a=g[r].children).length-1;n>=0;n--)if("link_close"!==(i=a[n]).type){if("html_inline"===i.type&&(Vb(i.content)&&A>0&&A--,zb(i.content)&&A++),!(A>0)&&"text"===i.type&&t.md.linkify.test(i.content)){for(c=i.content,E=t.md.linkify.match(c),l=[],m=i.level,d=0,E.length>0&&0===E[0].index&&n>0&&"text_special"===a[n-1].type&&(E=E.slice(1)),u=0;u<E.length;u++)b=E[u].url,C=t.md.normalizeLink(b),t.md.validateLink(C)&&(h=E[u].text,h=E[u].schema?"mailto:"!==E[u].schema||/^mailto:/i.test(h)?t.md.normalizeLinkText(h):t.md.normalizeLinkText("mailto:"+h).replace(/^mailto:/,""):t.md.normalizeLinkText("http://"+h).replace(/^http:\/\//,""),(p=E[u].index)>d&&((s=new t.Token("text","",0)).content=c.slice(d,p),s.level=m,l.push(s)),(s=new t.Token("link_open","a",1)).attrs=[["href",C]],s.level=m++,s.markup="linkify",s.info="auto",l.push(s),(s=new t.Token("text","",0)).content=h,s.level=m,l.push(s),(s=new t.Token("link_close","a",-1)).level=--m,s.markup="linkify",s.info="auto",l.push(s),d=E[u].lastIndex);d<c.length&&((s=new t.Token("text","",0)).content=c.slice(d),s.level=m,l.push(s)),g[r].children=a=Hb(a,n,l)}}else for(n--;a[n].level!==i.level&&"link_open"!==a[n].type;)n--}],["replacements",function(t){var n;if(t.md.options.typographer)for(n=t.tokens.length-1;n>=0;n--)"inline"===t.tokens[n].type&&($b.test(t.tokens[n].content)&&Yb(t.tokens[n].children),Hp.test(t.tokens[n].content)&&Kb(t.tokens[n].children))}],["smartquotes",function(t){var n;if(t.md.options.typographer)for(n=t.tokens.length-1;n>=0;n--)"inline"!==t.tokens[n].type||!Qb.test(t.tokens[n].content)||Jb(t.tokens[n].children,t)}],["text_join",function(t){var n,r,o,a,s,i,l=t.tokens;for(n=0,r=l.length;n<r;n++)if("inline"===l[n].type){for(s=(o=l[n].children).length,a=0;a<s;a++)"text_special"===o[a].type&&(o[a].type="text");for(a=i=0;a<s;a++)"text"===o[a].type&&a+1<s&&"text"===o[a+1].type?o[a+1].content=o[a].content+o[a+1].content:(a!==i&&(o[i]=o[a]),i++);a!==i&&(o.length=i)}}]];function gu(){this.ruler=new o_;for(var e=0;e<fu.length;e++)this.ruler.push(fu[e][0],fu[e][1])}gu.prototype.process=function(e){var t,n,r;for(t=0,n=(r=this.ruler.getRules("")).length;t<n;t++)r[t](e)},gu.prototype.State=r_;var a_=gu,mu=ae.isSpace;function hu(e,t){var n=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.slice(n,r)}function Wp(e){var o,t=[],n=0,r=e.length,a=!1,s=0,i="";for(o=e.charCodeAt(n);n<r;)124===o&&(a?(i+=e.substring(s,n-1),s=n):(t.push(i+e.substring(s,n)),i="",s=n+1)),a=92===o,n++,o=e.charCodeAt(n);return t.push(i+e.substring(s)),t}var u_=ae.isSpace,d_=ae.isSpace,Yp=ae.isSpace;function Kp(e,t){var n,r,o,a;return r=e.bMarks[t]+e.tShift[t],o=e.eMarks[t],42!==(n=e.src.charCodeAt(r++))&&45!==n&&43!==n||r<o&&(a=e.src.charCodeAt(r),!Yp(a))?-1:r}function Xp(e,t){var n,r=e.bMarks[t]+e.tShift[t],o=r,a=e.eMarks[t];if(o+1>=a||((n=e.src.charCodeAt(o++))<48||n>57))return-1;for(;;){if(o>=a)return-1;if(!((n=e.src.charCodeAt(o++))>=48&&n<=57)){if(41===n||46===n)break;return-1}if(o-r>=10)return-1}return o<a&&(n=e.src.charCodeAt(o),!Yp(n))?-1:o}var m_=ae.normalizeReference,As=ae.isSpace,bs={},Qp="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",Jp="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",w_=new RegExp("^(?:"+Qp+"|"+Jp+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?][\\s\\S]*?[?]>|<![A-Z]+\\s+[^>]*>|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>)"),x_=new RegExp("^(?:"+Qp+"|"+Jp+")");bs.HTML_TAG_RE=w_,bs.HTML_OPEN_CLOSE_TAG_RE=x_;var R_=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","section","source","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],L_=bs.HTML_OPEN_CLOSE_TAG_RE,Or=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^<!--/,/-->/,!0],[/^<\?/,/\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\[CDATA\[/,/\]\]>/,!0],[new RegExp("^</?("+R_.join("|")+")(?=(\\s|/?>|$))","i"),/^$/,!0],[new RegExp(L_.source+"\\s*$"),/^$/,!1]],ef=ae.isSpace,tf=pu,_s=ae.isSpace;function Gt(e,t,n,r){var o,a,s,i,l,u,c,p;for(this.src=e,this.md=t,this.env=n,this.tokens=r,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0,this.result="",p=!1,s=i=u=c=0,l=(a=this.src).length;i<l;i++){if(o=a.charCodeAt(i),!p){if(_s(o)){u++,9===o?c+=4-c%4:c++;continue}p=!0}(10===o||i===l-1)&&(10!==o&&i++,this.bMarks.push(s),this.eMarks.push(i),this.tShift.push(u),this.sCount.push(c),this.bsCount.push(0),p=!1,u=0,c=0,s=i+1)}this.bMarks.push(a.length),this.eMarks.push(a.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}Gt.prototype.push=function(e,t,n){var r=new tf(e,t,n);return r.block=!0,n<0&&this.level--,r.level=this.level,n>0&&this.level++,this.tokens.push(r),r},Gt.prototype.isEmpty=function(t){return this.bMarks[t]+this.tShift[t]>=this.eMarks[t]},Gt.prototype.skipEmptyLines=function(t){for(var n=this.lineMax;t<n&&!(this.bMarks[t]+this.tShift[t]<this.eMarks[t]);t++);return t},Gt.prototype.skipSpaces=function(t){for(var n,r=this.src.length;t<r&&(n=this.src.charCodeAt(t),_s(n));t++);return t},Gt.prototype.skipSpacesBack=function(t,n){if(t<=n)return t;for(;t>n;)if(!_s(this.src.charCodeAt(--t)))return t+1;return t},Gt.prototype.skipChars=function(t,n){for(var r=this.src.length;t<r&&this.src.charCodeAt(t)===n;t++);return t},Gt.prototype.skipCharsBack=function(t,n,r){if(t<=r)return t;for(;t>r;)if(n!==this.src.charCodeAt(--t))return t+1;return t},Gt.prototype.getLines=function(t,n,r,o){var a,s,i,l,u,c,p,d=t;if(t>=n)return"";for(c=new Array(n-t),a=0;d<n;d++,a++){for(s=0,p=l=this.bMarks[d],u=d+1<n||o?this.eMarks[d]+1:this.eMarks[d];l<u&&s<r;){if(i=this.src.charCodeAt(l),_s(i))9===i?s+=4-(s+this.bsCount[d])%4:s++;else{if(!(l-p<this.tShift[d]))break;s++}l++}c[a]=s>r?new Array(s-r+1).join(" ")+this.src.slice(l,u):this.src.slice(l,u)}return c.join("")},Gt.prototype.Token=tf;var F_=Gt,B_=du,vs=[["table",function(t,n,r,o){var a,s,i,l,u,c,p,d,m,A,b,C,h,g,E,v,N,_;if(n+2>r||(c=n+1,t.sCount[c]<t.blkIndent)||t.sCount[c]-t.blkIndent>=4||(i=t.bMarks[c]+t.tShift[c])>=t.eMarks[c]||124!==(N=t.src.charCodeAt(i++))&&45!==N&&58!==N||i>=t.eMarks[c]||124!==(_=t.src.charCodeAt(i++))&&45!==_&&58!==_&&!mu(_)||45===N&&mu(_))return!1;for(;i<t.eMarks[c];){if(124!==(a=t.src.charCodeAt(i))&&45!==a&&58!==a&&!mu(a))return!1;i++}for(p=(s=hu(t,n+1)).split("|"),A=[],l=0;l<p.length;l++){if(!(b=p[l].trim())){if(0===l||l===p.length-1)continue;return!1}if(!/^:?-+:?$/.test(b))return!1;58===b.charCodeAt(b.length-1)?A.push(58===b.charCodeAt(0)?"center":"right"):58===b.charCodeAt(0)?A.push("left"):A.push("")}if(-1===(s=hu(t,n).trim()).indexOf("|")||t.sCount[n]-t.blkIndent>=4||((p=Wp(s)).length&&""===p[0]&&p.shift(),p.length&&""===p[p.length-1]&&p.pop(),0===(d=p.length)||d!==A.length))return!1;if(o)return!0;for(g=t.parentType,t.parentType="table",v=t.md.block.ruler.getRules("blockquote"),(m=t.push("table_open","table",1)).map=C=[n,0],(m=t.push("thead_open","thead",1)).map=[n,n+1],(m=t.push("tr_open","tr",1)).map=[n,n+1],l=0;l<p.length;l++)m=t.push("th_open","th",1),A[l]&&(m.attrs=[["style","text-align:"+A[l]]]),(m=t.push("inline","",0)).content=p[l].trim(),m.children=[],m=t.push("th_close","th",-1);for(m=t.push("tr_close","tr",-1),m=t.push("thead_close","thead",-1),c=n+2;c<r&&!(t.sCount[c]<t.blkIndent);c++){for(E=!1,l=0,u=v.length;l<u;l++)if(v[l](t,c,r,!0)){E=!0;break}if(E||!(s=hu(t,c).trim())||t.sCount[c]-t.blkIndent>=4)break;for((p=Wp(s)).length&&""===p[0]&&p.shift(),p.length&&""===p[p.length-1]&&p.pop(),c===n+2&&((m=t.push("tbody_open","tbody",1)).map=h=[n+2,0]),(m=t.push("tr_open","tr",1)).map=[c,c+1],l=0;l<d;l++)m=t.push("td_open","td",1),A[l]&&(m.attrs=[["style","text-align:"+A[l]]]),(m=t.push("inline","",0)).content=p[l]?p[l].trim():"",m.children=[],m=t.push("td_close","td",-1);m=t.push("tr_close","tr",-1)}return h&&(m=t.push("tbody_close","tbody",-1),h[1]=c),m=t.push("table_close","table",-1),C[1]=c,t.parentType=g,t.line=c,!0},["paragraph","reference"]],["code",function(t,n,r){var o,a,s;if(t.sCount[n]-t.blkIndent<4)return!1;for(a=o=n+1;o<r;)if(t.isEmpty(o))o++;else{if(!(t.sCount[o]-t.blkIndent>=4))break;a=++o}return t.line=a,(s=t.push("code_block","code",0)).content=t.getLines(n,a,4+t.blkIndent,!1)+"\n",s.map=[n,t.line],!0}],["fence",function(t,n,r,o){var a,s,i,l,u,c,p,d=!1,m=t.bMarks[n]+t.tShift[n],A=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||m+3>A||126!==(a=t.src.charCodeAt(m))&&96!==a||(u=m,(s=(m=t.skipChars(m,a))-u)<3)||(p=t.src.slice(u,m),i=t.src.slice(m,A),96===a&&i.indexOf(String.fromCharCode(a))>=0))return!1;if(o)return!0;for(l=n;!(++l>=r||(m=u=t.bMarks[l]+t.tShift[l],A=t.eMarks[l],m<A&&t.sCount[l]<t.blkIndent));)if(!(t.src.charCodeAt(m)!==a||t.sCount[l]-t.blkIndent>=4||(m=t.skipChars(m,a),m-u<s||(m=t.skipSpaces(m),m<A)))){d=!0;break}return s=t.sCount[n],t.line=l+(d?1:0),(c=t.push("fence","code",0)).info=i,c.content=t.getLines(n+1,l,s,!0),c.markup=p,c.map=[n,t.line],!0},["paragraph","reference","blockquote","list"]],["blockquote",function(t,n,r,o){var a,s,i,l,u,c,p,d,m,A,b,C,h,g,E,v,N,_,S,R,q=t.lineMax,I=t.bMarks[n]+t.tShift[n],Q=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||62!==t.src.charCodeAt(I))return!1;if(o)return!0;for(A=[],b=[],g=[],E=[],_=t.md.block.ruler.getRules("blockquote"),h=t.parentType,t.parentType="blockquote",d=n;d<r&&(R=t.sCount[d]<t.blkIndent,!((I=t.bMarks[d]+t.tShift[d])>=(Q=t.eMarks[d])));d++)if(62!==t.src.charCodeAt(I++)||R){if(c)break;for(N=!1,i=0,u=_.length;i<u;i++)if(_[i](t,d,r,!0)){N=!0;break}if(N){t.lineMax=d,0!==t.blkIndent&&(A.push(t.bMarks[d]),b.push(t.bsCount[d]),E.push(t.tShift[d]),g.push(t.sCount[d]),t.sCount[d]-=t.blkIndent);break}A.push(t.bMarks[d]),b.push(t.bsCount[d]),E.push(t.tShift[d]),g.push(t.sCount[d]),t.sCount[d]=-1}else{for(l=t.sCount[d]+1,32===t.src.charCodeAt(I)?(I++,l++,a=!1,v=!0):9===t.src.charCodeAt(I)?(v=!0,(t.bsCount[d]+l)%4==3?(I++,l++,a=!1):a=!0):v=!1,m=l,A.push(t.bMarks[d]),t.bMarks[d]=I;I<Q&&(s=t.src.charCodeAt(I),u_(s));)9===s?m+=4-(m+t.bsCount[d]+(a?1:0))%4:m++,I++;c=I>=Q,b.push(t.bsCount[d]),t.bsCount[d]=t.sCount[d]+1+(v?1:0),g.push(t.sCount[d]),t.sCount[d]=m-l,E.push(t.tShift[d]),t.tShift[d]=I-t.bMarks[d]}for(C=t.blkIndent,t.blkIndent=0,(S=t.push("blockquote_open","blockquote",1)).markup=">",S.map=p=[n,0],t.md.block.tokenize(t,n,d),(S=t.push("blockquote_close","blockquote",-1)).markup=">",t.lineMax=q,t.parentType=h,p[1]=t.line,i=0;i<E.length;i++)t.bMarks[i+n]=A[i],t.tShift[i+n]=E[i],t.sCount[i+n]=g[i],t.bsCount[i+n]=b[i];return t.blkIndent=C,!0},["paragraph","reference","blockquote","list"]],["hr",function(t,n,r,o){var a,s,i,l,u=t.bMarks[n]+t.tShift[n],c=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||42!==(a=t.src.charCodeAt(u++))&&45!==a&&95!==a)return!1;for(s=1;u<c;){if((i=t.src.charCodeAt(u++))!==a&&!d_(i))return!1;i===a&&s++}return!(s<3)&&(o||(t.line=n+1,(l=t.push("hr","hr",0)).map=[n,t.line],l.markup=Array(s+1).join(String.fromCharCode(a))),!0)},["paragraph","reference","blockquote","list"]],["list",function(t,n,r,o){var a,s,i,l,u,c,p,d,m,A,b,C,h,g,E,v,N,_,S,R,q,I,Q,ie,Y,O,G,P=n,x=!1,T=!0;if(t.sCount[P]-t.blkIndent>=4||t.listIndent>=0&&t.sCount[P]-t.listIndent>=4&&t.sCount[P]<t.blkIndent)return!1;if(o&&"paragraph"===t.parentType&&t.sCount[P]>=t.blkIndent&&(x=!0),(I=Xp(t,P))>=0){if(p=!0,ie=t.bMarks[P]+t.tShift[P],h=Number(t.src.slice(ie,I-1)),x&&1!==h)return!1}else{if(!((I=Kp(t,P))>=0))return!1;p=!1}if(x&&t.skipSpaces(I)>=t.eMarks[P])return!1;if(o)return!0;for(C=t.src.charCodeAt(I-1),b=t.tokens.length,p?(G=t.push("ordered_list_open","ol",1),1!==h&&(G.attrs=[["start",h]])):G=t.push("bullet_list_open","ul",1),G.map=A=[P,0],G.markup=String.fromCharCode(C),Q=!1,O=t.md.block.ruler.getRules("list"),N=t.parentType,t.parentType="list";P<r;){for(q=I,g=t.eMarks[P],c=E=t.sCount[P]+I-(t.bMarks[P]+t.tShift[P]);q<g;){if(9===(a=t.src.charCodeAt(q)))E+=4-(E+t.bsCount[P])%4;else{if(32!==a)break;E++}q++}if((u=(s=q)>=g?1:E-c)>4&&(u=1),l=c+u,(G=t.push("list_item_open","li",1)).markup=String.fromCharCode(C),G.map=d=[P,0],p&&(G.info=t.src.slice(ie,I-1)),R=t.tight,S=t.tShift[P],_=t.sCount[P],v=t.listIndent,t.listIndent=t.blkIndent,t.blkIndent=l,t.tight=!0,t.tShift[P]=s-t.bMarks[P],t.sCount[P]=E,s>=g&&t.isEmpty(P+1)?t.line=Math.min(t.line+2,r):t.md.block.tokenize(t,P,r,!0),(!t.tight||Q)&&(T=!1),Q=t.line-P>1&&t.isEmpty(t.line-1),t.blkIndent=t.listIndent,t.listIndent=v,t.tShift[P]=S,t.sCount[P]=_,t.tight=R,(G=t.push("list_item_close","li",-1)).markup=String.fromCharCode(C),P=t.line,d[1]=P,P>=r||t.sCount[P]<t.blkIndent||t.sCount[P]-t.blkIndent>=4)break;for(Y=!1,i=0,m=O.length;i<m;i++)if(O[i](t,P,r,!0)){Y=!0;break}if(Y)break;if(p){if((I=Xp(t,P))<0)break;ie=t.bMarks[P]+t.tShift[P]}else if((I=Kp(t,P))<0)break;if(C!==t.src.charCodeAt(I-1))break}return(G=p?t.push("ordered_list_close","ol",-1):t.push("bullet_list_close","ul",-1)).markup=String.fromCharCode(C),A[1]=P,t.line=P,t.parentType=N,T&&function(e,t){var n,r,o=e.level+2;for(n=t+2,r=e.tokens.length-2;n<r;n++)e.tokens[n].level===o&&"paragraph_open"===e.tokens[n].type&&(e.tokens[n+2].hidden=!0,e.tokens[n].hidden=!0,n+=2)}(t,b),!0},["paragraph","reference","blockquote"]],["reference",function(t,n,r,o){var a,s,i,l,u,c,p,d,m,A,b,C,h,g,E,v,N=0,_=t.bMarks[n]+t.tShift[n],S=t.eMarks[n],R=n+1;if(t.sCount[n]-t.blkIndent>=4||91!==t.src.charCodeAt(_))return!1;for(;++_<S;)if(93===t.src.charCodeAt(_)&&92!==t.src.charCodeAt(_-1)){if(_+1===S||58!==t.src.charCodeAt(_+1))return!1;break}for(l=t.lineMax,E=t.md.block.ruler.getRules("reference"),A=t.parentType,t.parentType="reference";R<l&&!t.isEmpty(R);R++)if(!(t.sCount[R]-t.blkIndent>3||t.sCount[R]<0)){for(g=!1,c=0,p=E.length;c<p;c++)if(E[c](t,R,l,!0)){g=!0;break}if(g)break}for(S=(h=t.getLines(n,R,t.blkIndent,!1).trim()).length,_=1;_<S;_++){if(91===(a=h.charCodeAt(_)))return!1;if(93===a){m=_;break}10===a?N++:92===a&&(++_<S&&10===h.charCodeAt(_)&&N++)}if(m<0||58!==h.charCodeAt(m+1))return!1;for(_=m+2;_<S;_++)if(10===(a=h.charCodeAt(_)))N++;else if(!As(a))break;if(!(b=t.md.helpers.parseLinkDestination(h,_,S)).ok||(u=t.md.normalizeLink(b.str),!t.md.validateLink(u)))return!1;for(s=_=b.pos,i=N+=b.lines,C=_;_<S;_++)if(10===(a=h.charCodeAt(_)))N++;else if(!As(a))break;for(b=t.md.helpers.parseLinkTitle(h,_,S),_<S&&C!==_&&b.ok?(v=b.str,_=b.pos,N+=b.lines):(v="",_=s,N=i);_<S&&(a=h.charCodeAt(_),As(a));)_++;if(_<S&&10!==h.charCodeAt(_)&&v)for(v="",_=s,N=i;_<S&&(a=h.charCodeAt(_),As(a));)_++;return!(_<S&&10!==h.charCodeAt(_)||(d=m_(h.slice(1,m)),!d))&&(o||(typeof t.env.references>"u"&&(t.env.references={}),typeof t.env.references[d]>"u"&&(t.env.references[d]={title:v,href:u}),t.parentType=A,t.line=n+N+1),!0)}],["html_block",function(t,n,r,o){var a,s,i,l,u=t.bMarks[n]+t.tShift[n],c=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||!t.md.options.html||60!==t.src.charCodeAt(u))return!1;for(l=t.src.slice(u,c),a=0;a<Or.length&&!Or[a][0].test(l);a++);if(a===Or.length)return!1;if(o)return Or[a][2];if(s=n+1,!Or[a][1].test(l))for(;s<r&&!(t.sCount[s]<t.blkIndent);s++)if(u=t.bMarks[s]+t.tShift[s],c=t.eMarks[s],l=t.src.slice(u,c),Or[a][1].test(l)){0!==l.length&&s++;break}return t.line=s,(i=t.push("html_block","",0)).map=[n,s],i.content=t.getLines(n,s,t.blkIndent,!0),!0},["paragraph","reference","blockquote"]],["heading",function(t,n,r,o){var a,s,i,l,u=t.bMarks[n]+t.tShift[n],c=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||(35!==(a=t.src.charCodeAt(u))||u>=c))return!1;for(s=1,a=t.src.charCodeAt(++u);35===a&&u<c&&s<=6;)s++,a=t.src.charCodeAt(++u);return!(s>6||u<c&&!ef(a))&&(o||(c=t.skipSpacesBack(c,u),(i=t.skipCharsBack(c,35,u))>u&&ef(t.src.charCodeAt(i-1))&&(c=i),t.line=n+1,(l=t.push("heading_open","h"+String(s),1)).markup="########".slice(0,s),l.map=[n,t.line],(l=t.push("inline","",0)).content=t.src.slice(u,c).trim(),l.map=[n,t.line],l.children=[],(l=t.push("heading_close","h"+String(s),-1)).markup="########".slice(0,s)),!0)},["paragraph","reference","blockquote"]],["lheading",function(t,n,r){var o,a,s,i,l,u,c,p,d,A,m=n+1,b=t.md.block.ruler.getRules("paragraph");if(t.sCount[n]-t.blkIndent>=4)return!1;for(A=t.parentType,t.parentType="paragraph";m<r&&!t.isEmpty(m);m++)if(!(t.sCount[m]-t.blkIndent>3)){if(t.sCount[m]>=t.blkIndent&&((u=t.bMarks[m]+t.tShift[m])<(c=t.eMarks[m])&&((45===(d=t.src.charCodeAt(u))||61===d)&&(u=t.skipChars(u,d),(u=t.skipSpaces(u))>=c)))){p=61===d?1:2;break}if(!(t.sCount[m]<0)){for(a=!1,s=0,i=b.length;s<i;s++)if(b[s](t,m,r,!0)){a=!0;break}if(a)break}}return!!p&&(o=t.getLines(n,m,t.blkIndent,!1).trim(),t.line=m+1,(l=t.push("heading_open","h"+String(p),1)).markup=String.fromCharCode(d),l.map=[n,t.line],(l=t.push("inline","",0)).content=o,l.map=[n,t.line-1],l.children=[],(l=t.push("heading_close","h"+String(p),-1)).markup=String.fromCharCode(d),t.parentType=A,!0)}],["paragraph",function(t,n,r){var o,a,s,i,l,u,c=n+1,p=t.md.block.ruler.getRules("paragraph");for(u=t.parentType,t.parentType="paragraph";c<r&&!t.isEmpty(c);c++)if(!(t.sCount[c]-t.blkIndent>3||t.sCount[c]<0)){for(a=!1,s=0,i=p.length;s<i;s++)if(p[s](t,c,r,!0)){a=!0;break}if(a)break}return o=t.getLines(n,c,t.blkIndent,!1).trim(),t.line=c,(l=t.push("paragraph_open","p",1)).map=[n,t.line],(l=t.push("inline","",0)).content=o,l.map=[n,t.line],l.children=[],l=t.push("paragraph_close","p",-1),t.parentType=u,!0}]];function Ds(){this.ruler=new B_;for(var e=0;e<vs.length;e++)this.ruler.push(vs[e][0],vs[e][1],{alt:(vs[e][2]||[]).slice()})}Ds.prototype.tokenize=function(e,t,n){for(var r,o,a,s=this.ruler.getRules(""),i=s.length,l=t,u=!1,c=e.md.options.maxNesting;l<n&&(e.line=l=e.skipEmptyLines(l),!(l>=n||e.sCount[l]<e.blkIndent));){if(e.level>=c){e.line=n;break}for(a=e.line,o=0;o<i;o++)if(r=s[o](e,l,n,!1)){if(a>=e.line)throw new Error("block rule didn't increment state.line");break}if(!r)throw new Error("none of the block rules matched");e.tight=!u,e.isEmpty(e.line-1)&&(u=!0),(l=e.line)<n&&e.isEmpty(l)&&(u=!0,l++,e.line=l)}},Ds.prototype.parse=function(e,t,n,r){var o;e&&(o=new this.State(e,t,n,r),this.tokenize(o,o.line,o.lineMax))},Ds.prototype.State=F_;var P_=Ds;function U_(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}for(var H_=/(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i,z_=ae.isSpace,$_=ae.isSpace,Eu=[],nf=0;nf<256;nf++)Eu.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach((function(e){Eu[e.charCodeAt(0)]=1}));var ys={};function rf(e,t){var n,r,o,a,s,i=[],l=t.length;for(n=0;n<l;n++)126===(o=t[n]).marker&&-1!==o.end&&(a=t[o.end],(s=e.tokens[o.token]).type="s_open",s.tag="s",s.nesting=1,s.markup="~~",s.content="",(s=e.tokens[a.token]).type="s_close",s.tag="s",s.nesting=-1,s.markup="~~",s.content="","text"===e.tokens[a.token-1].type&&"~"===e.tokens[a.token-1].content&&i.push(a.token-1));for(;i.length;){for(r=(n=i.pop())+1;r<e.tokens.length&&"s_close"===e.tokens[r].type;)r++;n!==--r&&(s=e.tokens[r],e.tokens[r]=e.tokens[n],e.tokens[n]=s)}}ys.tokenize=function(t,n){var r,o,s,i,l=t.pos,u=t.src.charCodeAt(l);if(n||126!==u||(s=(o=t.scanDelims(t.pos,!0)).length,i=String.fromCharCode(u),s<2))return!1;for(s%2&&(t.push("text","",0).content=i,s--),r=0;r<s;r+=2)t.push("text","",0).content=i+i,t.delimiters.push({marker:u,length:0,token:t.tokens.length-1,end:-1,open:o.can_open,close:o.can_close});return t.pos+=o.length,!0},ys.postProcess=function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(rf(t,t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&rf(t,r[n].delimiters)};var Ts={};function of(e,t){var n,r,o,a,s,i;for(n=t.length-1;n>=0;n--)(95===(r=t[n]).marker||42===r.marker)&&-1!==r.end&&(o=t[r.end],i=n>0&&t[n-1].end===r.end+1&&t[n-1].marker===r.marker&&t[n-1].token===r.token-1&&t[r.end+1].token===o.token+1,s=String.fromCharCode(r.marker),(a=e.tokens[r.token]).type=i?"strong_open":"em_open",a.tag=i?"strong":"em",a.nesting=1,a.markup=i?s+s:s,a.content="",(a=e.tokens[o.token]).type=i?"strong_close":"em_close",a.tag=i?"strong":"em",a.nesting=-1,a.markup=i?s+s:s,a.content="",i&&(e.tokens[t[n-1].token].content="",e.tokens[t[r.end+1].token].content="",n--))}Ts.tokenize=function(t,n){var r,o,s=t.pos,i=t.src.charCodeAt(s);if(n||95!==i&&42!==i)return!1;for(o=t.scanDelims(t.pos,42===i),r=0;r<o.length;r++)t.push("text","",0).content=String.fromCharCode(i),t.delimiters.push({marker:i,length:o.length,token:t.tokens.length-1,end:-1,open:o.can_open,close:o.can_close});return t.pos+=o.length,!0},Ts.postProcess=function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(of(t,t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&of(t,r[n].delimiters)};var W_=ae.normalizeReference,Au=ae.isSpace,K_=ae.normalizeReference,bu=ae.isSpace,Q_=/^([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,J_=/^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$/,tv=bs.HTML_TAG_RE;var af=Tp,sv=ae.has,iv=ae.isValidEntityCode,sf=ae.fromCodePoint,lv=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,uv=/^&([a-z][a-z0-9]{1,31});/i;function lf(e){var t,n,r,o,a,s,i,l,u={},c=e.length;if(c){var p=0,d=-2,m=[];for(t=0;t<c;t++)if(r=e[t],m.push(0),(e[p].marker!==r.marker||d!==r.token-1)&&(p=t),d=r.token,r.length=r.length||0,r.close){for(u.hasOwnProperty(r.marker)||(u[r.marker]=[-1,-1,-1,-1,-1,-1]),a=u[r.marker][(r.open?3:0)+r.length%3],s=n=p-m[p]-1;n>a;n-=m[n]+1)if((o=e[n]).marker===r.marker&&o.open&&o.end<0&&(i=!1,(o.close||r.open)&&(o.length+r.length)%3==0&&(o.length%3!=0||r.length%3!=0)&&(i=!0),!i)){l=n>0&&!e[n-1].open?m[n-1]+1:0,m[t]=t-n+l,m[n]=l,r.open=!1,o.end=t,o.close=!1,s=-1,d=-2;break}-1!==s&&(u[r.marker][(r.open?3:0)+(r.length||0)%3]=s)}}}var _u=pu,uf=ae.isWhiteSpace,cf=ae.isPunctChar,df=ae.isMdAsciiPunct;function Io(e,t,n,r){this.src=e,this.env=n,this.md=t,this.tokens=r,this.tokens_meta=Array(r.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}Io.prototype.pushPending=function(){var e=new _u("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},Io.prototype.push=function(e,t,n){this.pending&&this.pushPending();var r=new _u(e,t,n),o=null;return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),r.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],o={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(r),this.tokens_meta.push(o),r},Io.prototype.scanDelims=function(e,t){var r,o,a,s,i,l,u,c,p,n=e,d=!0,m=!0,A=this.posMax,b=this.src.charCodeAt(e);for(r=e>0?this.src.charCodeAt(e-1):32;n<A&&this.src.charCodeAt(n)===b;)n++;return a=n-e,o=n<A?this.src.charCodeAt(n):32,u=df(r)||cf(String.fromCharCode(r)),p=df(o)||cf(String.fromCharCode(o)),l=uf(r),(c=uf(o))?d=!1:p&&(l||u||(d=!1)),l?m=!1:u&&(c||p||(m=!1)),t?(s=d,i=m):(s=d&&(!m||u),i=m&&(!d||p)),{can_open:s,can_close:i,length:a}},Io.prototype.Token=_u;var fv=Io,pf=du,vu=[["text",function(t,n){for(var r=t.pos;r<t.posMax&&!U_(t.src.charCodeAt(r));)r++;return r!==t.pos&&(n||(t.pending+=t.src.slice(t.pos,r)),t.pos=r,!0)}],["linkify",function(t,n){var r,o,a,s,i,l,u,c;return!(!t.md.options.linkify||t.linkLevel>0||(r=t.pos,o=t.posMax,r+3>o)||58!==t.src.charCodeAt(r)||47!==t.src.charCodeAt(r+1)||47!==t.src.charCodeAt(r+2)||(a=t.pending.match(H_),!a)||(s=a[1],i=t.md.linkify.matchAtStart(t.src.slice(r-s.length)),!i)||(l=i.url,l.length<=s.length)||(l=l.replace(/\*+$/,""),u=t.md.normalizeLink(l),!t.md.validateLink(u))||(n||(t.pending=t.pending.slice(0,-s.length),(c=t.push("link_open","a",1)).attrs=[["href",u]],c.markup="linkify",c.info="auto",(c=t.push("text","",0)).content=t.md.normalizeLinkText(l),(c=t.push("link_close","a",-1)).markup="linkify",c.info="auto"),t.pos+=l.length-s.length,0))}],["newline",function(t,n){var r,o,a,s=t.pos;if(10!==t.src.charCodeAt(s))return!1;if(r=t.pending.length-1,o=t.posMax,!n)if(r>=0&&32===t.pending.charCodeAt(r))if(r>=1&&32===t.pending.charCodeAt(r-1)){for(a=r-1;a>=1&&32===t.pending.charCodeAt(a-1);)a--;t.pending=t.pending.slice(0,a),t.push("hardbreak","br",0)}else t.pending=t.pending.slice(0,-1),t.push("softbreak","br",0);else t.push("softbreak","br",0);for(s++;s<o&&z_(t.src.charCodeAt(s));)s++;return t.pos=s,!0}],["escape",function(t,n){var r,o,a,s,i,l=t.pos,u=t.posMax;if(92!==t.src.charCodeAt(l)||++l>=u)return!1;if(10===(r=t.src.charCodeAt(l))){for(n||t.push("hardbreak","br",0),l++;l<u&&(r=t.src.charCodeAt(l),$_(r));)l++;return t.pos=l,!0}return s=t.src[l],r>=55296&&r<=56319&&l+1<u&&((o=t.src.charCodeAt(l+1))>=56320&&o<=57343&&(s+=t.src[l+1],l++)),a="\\"+s,n||(i=t.push("text_special","",0),r<256&&0!==Eu[r]?i.content=s:i.content=a,i.markup=a,i.info="escape"),t.pos=l+1,!0}],["backticks",function(t,n){var r,o,a,s,i,l,u,c,p=t.pos;if(96!==t.src.charCodeAt(p))return!1;for(r=p,p++,o=t.posMax;p<o&&96===t.src.charCodeAt(p);)p++;if(u=(a=t.src.slice(r,p)).length,t.backticksScanned&&(t.backticks[u]||0)<=r)return n||(t.pending+=a),t.pos+=u,!0;for(l=p;-1!==(i=t.src.indexOf("`",l));){for(l=i+1;l<o&&96===t.src.charCodeAt(l);)l++;if((c=l-i)===u)return n||((s=t.push("code_inline","code",0)).markup=a,s.content=t.src.slice(p,i).replace(/\n/g," ").replace(/^ (.+) $/,"$1")),t.pos=l,!0;t.backticks[c]=i}return t.backticksScanned=!0,n||(t.pending+=a),t.pos+=u,!0}],["strikethrough",ys.tokenize],["emphasis",Ts.tokenize],["link",function(t,n){var r,o,a,s,i,l,u,c,d="",m="",A=t.pos,b=t.posMax,C=t.pos,h=!0;if(91!==t.src.charCodeAt(t.pos)||(i=t.pos+1,(s=t.md.helpers.parseLinkLabel(t,t.pos,!0))<0))return!1;if((l=s+1)<b&&40===t.src.charCodeAt(l)){for(h=!1,l++;l<b&&(o=t.src.charCodeAt(l),Au(o)||10===o);l++);if(l>=b)return!1;if(C=l,(u=t.md.helpers.parseLinkDestination(t.src,l,t.posMax)).ok){for(d=t.md.normalizeLink(u.str),t.md.validateLink(d)?l=u.pos:d="",C=l;l<b&&(o=t.src.charCodeAt(l),Au(o)||10===o);l++);if(u=t.md.helpers.parseLinkTitle(t.src,l,t.posMax),l<b&&C!==l&&u.ok)for(m=u.str,l=u.pos;l<b&&(o=t.src.charCodeAt(l),Au(o)||10===o);l++);}(l>=b||41!==t.src.charCodeAt(l))&&(h=!0),l++}if(h){if(typeof t.env.references>"u")return!1;if(l<b&&91===t.src.charCodeAt(l)?(C=l+1,(l=t.md.helpers.parseLinkLabel(t,l))>=0?a=t.src.slice(C,l++):l=s+1):l=s+1,a||(a=t.src.slice(i,s)),!(c=t.env.references[W_(a)]))return t.pos=A,!1;d=c.href,m=c.title}return n||(t.pos=i,t.posMax=s,t.push("link_open","a",1).attrs=r=[["href",d]],m&&r.push(["title",m]),t.linkLevel++,t.md.inline.tokenize(t),t.linkLevel--,t.push("link_close","a",-1)),t.pos=l,t.posMax=b,!0}],["image",function(t,n){var r,o,a,s,i,l,u,c,p,d,m,A,b,C="",h=t.pos,g=t.posMax;if(33!==t.src.charCodeAt(t.pos)||91!==t.src.charCodeAt(t.pos+1)||(l=t.pos+2,(i=t.md.helpers.parseLinkLabel(t,t.pos+1,!1))<0))return!1;if((u=i+1)<g&&40===t.src.charCodeAt(u)){for(u++;u<g&&(o=t.src.charCodeAt(u),bu(o)||10===o);u++);if(u>=g)return!1;for(b=u,(p=t.md.helpers.parseLinkDestination(t.src,u,t.posMax)).ok&&(C=t.md.normalizeLink(p.str),t.md.validateLink(C)?u=p.pos:C=""),b=u;u<g&&(o=t.src.charCodeAt(u),bu(o)||10===o);u++);if(p=t.md.helpers.parseLinkTitle(t.src,u,t.posMax),u<g&&b!==u&&p.ok)for(d=p.str,u=p.pos;u<g&&(o=t.src.charCodeAt(u),bu(o)||10===o);u++);else d="";if(u>=g||41!==t.src.charCodeAt(u))return t.pos=h,!1;u++}else{if(typeof t.env.references>"u")return!1;if(u<g&&91===t.src.charCodeAt(u)?(b=u+1,(u=t.md.helpers.parseLinkLabel(t,u))>=0?s=t.src.slice(b,u++):u=i+1):u=i+1,s||(s=t.src.slice(l,i)),!(c=t.env.references[K_(s)]))return t.pos=h,!1;C=c.href,d=c.title}return n||(a=t.src.slice(l,i),t.md.inline.parse(a,t.md,t.env,A=[]),(m=t.push("image","img",0)).attrs=r=[["src",C],["alt",""]],m.children=A,m.content=a,d&&r.push(["title",d])),t.pos=u,t.posMax=g,!0}],["autolink",function(t,n){var r,o,a,s,i,l,u=t.pos;if(60!==t.src.charCodeAt(u))return!1;for(i=t.pos,l=t.posMax;;){if(++u>=l||60===(s=t.src.charCodeAt(u)))return!1;if(62===s)break}return r=t.src.slice(i+1,u),J_.test(r)?(o=t.md.normalizeLink(r),!!t.md.validateLink(o)&&(n||((a=t.push("link_open","a",1)).attrs=[["href",o]],a.markup="autolink",a.info="auto",(a=t.push("text","",0)).content=t.md.normalizeLinkText(r),(a=t.push("link_close","a",-1)).markup="autolink",a.info="auto"),t.pos+=r.length+2,!0)):!!Q_.test(r)&&(o=t.md.normalizeLink("mailto:"+r),!!t.md.validateLink(o)&&(n||((a=t.push("link_open","a",1)).attrs=[["href",o]],a.markup="autolink",a.info="auto",(a=t.push("text","",0)).content=t.md.normalizeLinkText(r),(a=t.push("link_close","a",-1)).markup="autolink",a.info="auto"),t.pos+=r.length+2,!0))}],["html_inline",function(t,n){var r,o,a,s,i=t.pos;return!(!t.md.options.html||(a=t.posMax,60!==t.src.charCodeAt(i)||i+2>=a)||(r=t.src.charCodeAt(i+1),33!==r&&63!==r&&47!==r&&!function(e){var t=32|e;return t>=97&&t<=122}(r))||(o=t.src.slice(i).match(tv),!o))&&(n||((s=t.push("html_inline","",0)).content=o[0],function(e){return/^<a[>\s]/i.test(e)}(s.content)&&t.linkLevel++,function(e){return/^<\/a\s*>/i.test(e)}(s.content)&&t.linkLevel--),t.pos+=o[0].length,!0)}],["entity",function(t,n){var o,a,s,i=t.pos,l=t.posMax;if(38!==t.src.charCodeAt(i)||i+1>=l)return!1;if(35===t.src.charCodeAt(i+1)){if(a=t.src.slice(i).match(lv))return n||(o="x"===a[1][0].toLowerCase()?parseInt(a[1].slice(1),16):parseInt(a[1],10),(s=t.push("text_special","",0)).content=iv(o)?sf(o):sf(65533),s.markup=a[0],s.info="entity"),t.pos+=a[0].length,!0}else if((a=t.src.slice(i).match(uv))&&sv(af,a[1]))return n||((s=t.push("text_special","",0)).content=af[a[1]],s.markup=a[0],s.info="entity"),t.pos+=a[0].length,!0;return!1}]],Du=[["balance_pairs",function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(lf(t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&lf(r[n].delimiters)}],["strikethrough",ys.postProcess],["emphasis",Ts.postProcess],["fragments_join",function(t){var n,r,o=0,a=t.tokens,s=t.tokens.length;for(n=r=0;n<s;n++)a[n].nesting<0&&o--,a[n].level=o,a[n].nesting>0&&o++,"text"===a[n].type&&n+1<s&&"text"===a[n+1].type?a[n+1].content=a[n].content+a[n+1].content:(n!==r&&(a[r]=a[n]),r++);n!==r&&(a.length=r)}]];function Mo(){var e;for(this.ruler=new pf,e=0;e<vu.length;e++)this.ruler.push(vu[e][0],vu[e][1]);for(this.ruler2=new pf,e=0;e<Du.length;e++)this.ruler2.push(Du[e][0],Du[e][1])}Mo.prototype.skipToken=function(e){var t,n,r=e.pos,o=this.ruler.getRules(""),a=o.length,s=e.md.options.maxNesting,i=e.cache;if(typeof i[r]<"u")e.pos=i[r];else{if(e.level<s){for(n=0;n<a;n++)if(e.level++,t=o[n](e,!0),e.level--,t){if(r>=e.pos)throw new Error("inline rule didn't increment state.pos");break}}else e.pos=e.posMax;t||e.pos++,i[r]=e.pos}},Mo.prototype.tokenize=function(e){for(var t,n,r,o=this.ruler.getRules(""),a=o.length,s=e.posMax,i=e.md.options.maxNesting;e.pos<s;){if(r=e.pos,e.level<i)for(n=0;n<a;n++)if(t=o[n](e,!1)){if(r>=e.pos)throw new Error("inline rule didn't increment state.pos");break}if(t){if(e.pos>=s)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},Mo.prototype.parse=function(e,t,n,r){var o,a,s,i=new this.State(e,t,n,r);for(this.tokenize(i),s=(a=this.ruler2.getRules("")).length,o=0;o<s;o++)a[o](i)},Mo.prototype.State=fv;var yu,ff,gv=Mo;function Tu(e){return Array.prototype.slice.call(arguments,1).forEach((function(n){n&&Object.keys(n).forEach((function(r){e[r]=n[r]}))})),e}function Cs(e){return Object.prototype.toString.call(e)}function gf(e){return"[object Function]"===Cs(e)}function bv(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}var mf={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};var vv={"http:":{validate:function(e,t,n){var r=e.slice(t);return n.re.http||(n.re.http=new RegExp("^\\/\\/"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,"i")),n.re.http.test(r)?r.match(n.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,n){var r=e.slice(t);return n.re.no_http||(n.re.no_http=new RegExp("^"+n.re.src_auth+"(?:localhost|(?:(?:"+n.re.src_domain+")\\.)+"+n.re.src_domain_root+")"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,"i")),n.re.no_http.test(r)?t>=3&&":"===e[t-3]||t>=3&&"/"===e[t-3]?0:r.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},Dv="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",yv="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function Ns(e){var t=e.re=(ff||(ff=1,yu=function(e){var t={};e=e||{},t.src_Any=kp().source,t.src_Cc=Mp().source,t.src_Z=Pp().source,t.src_P=su.source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");var n="[><|]";return t.src_pseudo_letter="(?:(?![><|]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><|]|"+t.src_ZPCc+")(?!"+(e["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+n+"|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><|]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}),yu)(e.__opts__),n=e.__tlds__.slice();function r(i){return i.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||n.push(Dv),n.push(t.src_xn),t.src_tlds=n.join("|"),t.email_fuzzy=RegExp(r(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(r(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(r(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(r(t.tpl_host_fuzzy_test),"i");var o=[];function a(i,l){throw new Error('(LinkifyIt) Invalid schema "'+i+'": '+l)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(i){var l=e.__schemas__[i];if(null!==l){var u={validate:null,link:null};if(e.__compiled__[i]=u,function(e){return"[object Object]"===Cs(e)}(l))return!function(e){return"[object RegExp]"===Cs(e)}(l.validate)?gf(l.validate)?u.validate=l.validate:a(i,l):u.validate=function(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}(l.validate),void(gf(l.normalize)?u.normalize=l.normalize:l.normalize?a(i,l):u.normalize=function(e,t){t.normalize(e)});if(function(e){return"[object String]"===Cs(e)}(l))return void o.push(i);a(i,l)}})),o.forEach((function(i){e.__compiled__[e.__schemas__[i]]&&(e.__compiled__[i].validate=e.__compiled__[e.__schemas__[i]].validate,e.__compiled__[i].normalize=e.__compiled__[e.__schemas__[i]].normalize)})),e.__compiled__[""]={validate:null,normalize:function(e,t){t.normalize(e)}};var s=Object.keys(e.__compiled__).filter((function(i){return i.length>0&&e.__compiled__[i]})).map(bv).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function Nv(e,t){var n=e.__index__,r=e.__last_index__,o=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=o,this.text=o,this.url=o}function Cu(e,t){var n=new Nv(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function ft(e,t){if(!(this instanceof ft))return new ft(e,t);t||function(e){return Object.keys(e||{}).reduce((function(t,n){return t||mf.hasOwnProperty(n)}),!1)}(e)&&(t=e,e={}),this.__opts__=Tu({},mf,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=Tu({},vv,e),this.__compiled__={},this.__tlds__=yv,this.__tlds_replaced__=!1,this.re={},Ns(this)}ft.prototype.add=function(t,n){return this.__schemas__[t]=n,Ns(this),this},ft.prototype.set=function(t){return this.__opts__=Tu(this.__opts__,t),this},ft.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var n,r,o,a,s,i,l,u;if(this.re.schema_test.test(t))for((l=this.re.schema_search).lastIndex=0;null!==(n=l.exec(t));)if(a=this.testSchemaAt(t,n[2],l.lastIndex)){this.__schema__=n[2],this.__index__=n.index+n[1].length,this.__last_index__=n.index+n[0].length+a;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&((u=t.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||u<this.__index__)&&null!==(r=t.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))&&(s=r.index+r[1].length,(this.__index__<0||s<this.__index__)&&(this.__schema__="",this.__index__=s,this.__last_index__=r.index+r[0].length))),this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&(t.indexOf("@")>=0&&null!==(o=t.match(this.re.email_fuzzy))&&(s=o.index+o[1].length,i=o.index+o[0].length,(this.__index__<0||s<this.__index__||s===this.__index__&&i>this.__last_index__)&&(this.__schema__="mailto:",this.__index__=s,this.__last_index__=i))),this.__index__>=0},ft.prototype.pretest=function(t){return this.re.pretest.test(t)},ft.prototype.testSchemaAt=function(t,n,r){return this.__compiled__[n.toLowerCase()]?this.__compiled__[n.toLowerCase()].validate(t,r,this):0},ft.prototype.match=function(t){var n=0,r=[];this.__index__>=0&&this.__text_cache__===t&&(r.push(Cu(this,n)),n=this.__last_index__);for(var o=n?t.slice(n):t;this.test(o);)r.push(Cu(this,n)),o=o.slice(this.__last_index__),n+=this.__last_index__;return r.length?r:null},ft.prototype.matchAtStart=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return null;var n=this.re.schema_at_start.exec(t);if(!n)return null;var r=this.testSchemaAt(t,n[2],n[0].length);return r?(this.__schema__=n[2],this.__index__=n.index+n[1].length,this.__last_index__=n.index+n[0].length+r,Cu(this,0)):null},ft.prototype.tlds=function(t,n){return t=Array.isArray(t)?t:[t],n?(this.__tlds__=this.__tlds__.concat(t).sort().filter((function(r,o,a){return r!==a[o-1]})).reverse(),Ns(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,Ns(this),this)},ft.prototype.normalize=function(t){t.schema||(t.url="http://"+t.url),"mailto:"===t.schema&&!/^mailto:/i.test(t.url)&&(t.url="mailto:"+t.url)},ft.prototype.onCompile=function(){};var Sv=ft;const kr=2147483647,Rv=/^xn--/,Lv=/[^\0-\x7F]/,Ov=/[\x2E\u3002\uFF0E\uFF61]/g,kv={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},Zt=Math.floor,wu=String.fromCharCode;function Sn(e){throw new RangeError(kv[e])}function _f(e,t){const n=e.split("@");let r="";n.length>1&&(r=n[0]+"@",e=n[1]);const a=function(e,t){const n=[];let r=e.length;for(;r--;)n[r]=t(e[r]);return n}((e=e.replace(Ov,".")).split("."),t).join(".");return r+a}function xu(e){const t=[];let n=0;const r=e.length;for(;n<r;){const o=e.charCodeAt(n++);if(o>=55296&&o<=56319&&n<r){const a=e.charCodeAt(n++);56320==(64512&a)?t.push(((1023&o)<<10)+(1023&a)+65536):(t.push(o),n--)}else t.push(o)}return t}const vf=e=>String.fromCodePoint(...e),Mv=function(e){return e>=48&&e<58?e-48+26:e>=65&&e<91?e-65:e>=97&&e<123?e-97:36},Df=function(e,t){return e+22+75*(e<26)-((0!=t)<<5)},yf=function(e,t,n){let r=0;for(e=n?Zt(e/700):e>>1,e+=Zt(e/t);e>455;r+=36)e=Zt(e/35);return Zt(r+36*e/(e+38))},Ru=function(e){const t=[],n=e.length;let r=0,o=128,a=72,s=e.lastIndexOf("-");s<0&&(s=0);for(let i=0;i<s;++i)e.charCodeAt(i)>=128&&Sn("not-basic"),t.push(e.charCodeAt(i));for(let i=s>0?s+1:0;i<n;){const l=r;for(let c=1,p=36;;p+=36){i>=n&&Sn("invalid-input");const d=Mv(e.charCodeAt(i++));d>=36&&Sn("invalid-input"),d>Zt((kr-r)/c)&&Sn("overflow"),r+=d*c;const m=p<=a?1:p>=a+26?26:p-a;if(d<m)break;const A=36-m;c>Zt(kr/A)&&Sn("overflow"),c*=A}const u=t.length+1;a=yf(r-l,u,0==l),Zt(r/u)>kr-o&&Sn("overflow"),o+=Zt(r/u),r%=u,t.splice(r++,0,o)}return String.fromCodePoint(...t)},Lu=function(e){const t=[],n=(e=xu(e)).length;let r=128,o=0,a=72;for(const l of e)l<128&&t.push(wu(l));const s=t.length;let i=s;for(s&&t.push("-");i<n;){let l=kr;for(const c of e)c>=r&&c<l&&(l=c);const u=i+1;l-r>Zt((kr-o)/u)&&Sn("overflow"),o+=(l-r)*u,r=l;for(const c of e)if(c<r&&++o>kr&&Sn("overflow"),c===r){let p=o;for(let d=36;;d+=36){const m=d<=a?1:d>=a+26?26:d-a;if(p<m)break;const A=p-m,b=36-m;t.push(wu(Df(m+A%b,0))),p=Zt(A/b)}t.push(wu(Df(p,0))),a=yf(o,u,i===s),o=0,++i}++o,++r}return t.join("")},Tf=function(e){return _f(e,(function(t){return Rv.test(t)?Ru(t.slice(4).toLowerCase()):t}))},Cf=function(e){return _f(e,(function(t){return Lv.test(t)?"xn--"+Lu(t):t}))},Fv=function(e){if(e.__esModule)return e;var t=e.default;if("function"==typeof t){var n=function r(){return this instanceof r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach((function(r){var o=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(n,r,o.get?o:{enumerable:!0,get:function(){return e[r]}})})),n}(Object.freeze(Object.defineProperty({__proto__:null,decode:Ru,default:{version:"2.3.1",ucs2:{decode:xu,encode:vf},decode:Ru,encode:Lu,toASCII:Cf,toUnicode:Tf},encode:Lu,toASCII:Cf,toUnicode:Tf,ucs2decode:xu,ucs2encode:vf},Symbol.toStringTag,{value:"Module"})));var Bo=ae,qv=hs,Hv=Mb,Vv=a_,zv=P_,Gv=gv,$v=Sv,Zn=xr,Nf=Fv,Zv={default:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}},zero:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","fragments_join"]}}},commonmark:{options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","fragments_join"]}}}},jv=/^(vbscript|javascript|file|data):/,Wv=/^data:image\/(gif|png|jpeg|webp);/;function Yv(e){var t=e.trim().toLowerCase();return!jv.test(t)||!!Wv.test(t)}var Sf=["http:","https:","mailto:"];function Kv(e){var t=Zn.parse(e,!0);if(t.hostname&&(!t.protocol||Sf.indexOf(t.protocol)>=0))try{t.hostname=Nf.toASCII(t.hostname)}catch{}return Zn.encode(Zn.format(t))}function Xv(e){var t=Zn.parse(e,!0);if(t.hostname&&(!t.protocol||Sf.indexOf(t.protocol)>=0))try{t.hostname=Nf.toUnicode(t.hostname)}catch{}return Zn.decode(Zn.format(t),Zn.decode.defaultChars+"%")}function yt(e,t){if(!(this instanceof yt))return new yt(e,t);t||Bo.isString(e)||(t=e||{},e="default"),this.inline=new Gv,this.block=new zv,this.core=new Vv,this.renderer=new Hv,this.linkify=new $v,this.validateLink=Yv,this.normalizeLink=Kv,this.normalizeLinkText=Xv,this.utils=Bo,this.helpers=Bo.assign({},qv),this.options={},this.configure(e),t&&this.set(t)}yt.prototype.set=function(e){return Bo.assign(this.options,e),this},yt.prototype.configure=function(e){var n,t=this;if(Bo.isString(e)&&!(e=Zv[n=e]))throw new Error('Wrong `markdown-it` preset "'+n+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&t.set(e.options),e.components&&Object.keys(e.components).forEach((function(r){e.components[r].rules&&t[r].ruler.enableOnly(e.components[r].rules),e.components[r].rules2&&t[r].ruler2.enableOnly(e.components[r].rules2)})),this},yt.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(o){n=n.concat(this[o].ruler.enable(e,!0))}),this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter((function(o){return n.indexOf(o)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this},yt.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(o){n=n.concat(this[o].ruler.disable(e,!0))}),this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter((function(o){return n.indexOf(o)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this},yt.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},yt.prototype.parse=function(e,t){if("string"!=typeof e)throw new Error("Input data should be a String");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},yt.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},yt.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},yt.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)};const eD=jo(yt);function wf(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((t=>{const n=e[t],r=typeof n;("object"===r||"function"===r)&&!Object.isFrozen(n)&&wf(n)})),e}class xf{constructor(t){void 0===t.data&&(t.data={}),this.data=t.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function Rf(e){return e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function wn(e,...t){const n=Object.create(null);for(const r in e)n[r]=e[r];return t.forEach((function(r){for(const o in r)n[o]=r[o]})),n}const Lf=e=>!!e.scope;class rD{constructor(t,n){this.buffer="",this.classPrefix=n.classPrefix,t.walk(this)}addText(t){this.buffer+=Rf(t)}openNode(t){if(!Lf(t))return;const n=((e,{prefix:t})=>{if(e.startsWith("language:"))return e.replace("language:","language-");if(e.includes(".")){const n=e.split(".");return[`${t}${n.shift()}`,...n.map(((r,o)=>`${r}${"_".repeat(o+1)}`))].join(" ")}return`${t}${e}`})(t.scope,{prefix:this.classPrefix});this.span(n)}closeNode(t){Lf(t)&&(this.buffer+="</span>")}value(){return this.buffer}span(t){this.buffer+=`<span class="${t}">`}}const Of=(e={})=>{const t={children:[]};return Object.assign(t,e),t};class Ou{constructor(){this.rootNode=Of(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(t){this.top.children.push(t)}openNode(t){const n=Of({scope:t});this.add(n),this.stack.push(n)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(t){return this.constructor._walk(t,this.rootNode)}static _walk(t,n){return"string"==typeof n?t.addText(n):n.children&&(t.openNode(n),n.children.forEach((r=>this._walk(t,r))),t.closeNode(n)),t}static _collapse(t){"string"!=typeof t&&t.children&&(t.children.every((n=>"string"==typeof n))?t.children=[t.children.join("")]:t.children.forEach((n=>{Ou._collapse(n)})))}}class oD extends Ou{constructor(t){super(),this.options=t}addText(t){""!==t&&this.add(t)}startScope(t){this.openNode(t)}endScope(){this.closeNode()}__addSublanguage(t,n){const r=t.root;n&&(r.scope=`language:${n}`),this.add(r)}toHTML(){return new rD(this,this.options).value()}finalize(){return this.closeAllNodes(),!0}}function Po(e){return e?"string"==typeof e?e:e.source:null}function kf(e){return jn("(?=",e,")")}function aD(e){return jn("(?:",e,")*")}function sD(e){return jn("(?:",e,")?")}function jn(...e){return e.map((n=>Po(n))).join("")}function ku(...e){return"("+(function(e){const t=e[e.length-1];return"object"==typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}(e).capture?"":"?:")+e.map((r=>Po(r))).join("|")+")"}function If(e){return new RegExp(e.toString()+"|").exec("").length-1}const uD=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function Iu(e,{joinWith:t}){let n=0;return e.map((r=>{n+=1;const o=n;let a=Po(r),s="";for(;a.length>0;){const i=uD.exec(a);if(!i){s+=a;break}s+=a.substring(0,i.index),a=a.substring(i.index+i[0].length),"\\"===i[0][0]&&i[1]?s+="\\"+String(Number(i[1])+o):(s+=i[0],"("===i[0]&&n++)}return s})).map((r=>`(${r})`)).join(t)}const Mf="[a-zA-Z]\\w*",Mu="[a-zA-Z_]\\w*",Ff="\\b\\d+(\\.\\d+)?",Bf="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",Pf="\\b(0b[01]+)",Uo={begin:"\\\\[\\s\\S]",relevance:0},fD={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[Uo]},gD={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[Uo]},Ss=function(e,t,n={}){const r=wn({scope:"comment",begin:e,end:t,contains:[]},n);r.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const o=ku("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return r.contains.push({begin:jn(/[ ]+/,"(",o,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),r},hD=Ss("//","$"),ED=Ss("/\\*","\\*/"),AD=Ss("#","$"),bD={scope:"number",begin:Ff,relevance:0},_D={scope:"number",begin:Bf,relevance:0},vD={scope:"number",begin:Pf,relevance:0},DD={scope:"regexp",begin:/\/(?=[^/\n]*\/)/,end:/\/[gimuy]*/,contains:[Uo,{begin:/\[/,end:/\]/,relevance:0,contains:[Uo]}]},yD={scope:"title",begin:Mf,relevance:0},TD={scope:"title",begin:Mu,relevance:0},CD={begin:"\\.\\s*"+Mu,relevance:0};var ws=Object.freeze({__proto__:null,APOS_STRING_MODE:fD,BACKSLASH_ESCAPE:Uo,BINARY_NUMBER_MODE:vD,BINARY_NUMBER_RE:Pf,COMMENT:Ss,C_BLOCK_COMMENT_MODE:ED,C_LINE_COMMENT_MODE:hD,C_NUMBER_MODE:_D,C_NUMBER_RE:Bf,END_SAME_AS_BEGIN:function(e){return Object.assign(e,{"on:begin":(t,n)=>{n.data._beginMatch=t[1]},"on:end":(t,n)=>{n.data._beginMatch!==t[1]&&n.ignoreMatch()}})},HASH_COMMENT_MODE:AD,IDENT_RE:Mf,MATCH_NOTHING_RE:/\b\B/,METHOD_GUARD:CD,NUMBER_MODE:bD,NUMBER_RE:Ff,PHRASAL_WORDS_MODE:{begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},QUOTE_STRING_MODE:gD,REGEXP_MODE:DD,RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",SHEBANG:(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=jn(t,/.*\b/,e.binary,/\b.*/)),wn({scope:"meta",begin:t,end:/$/,relevance:0,"on:begin":(n,r)=>{0!==n.index&&r.ignoreMatch()}},e)},TITLE_MODE:yD,UNDERSCORE_IDENT_RE:Mu,UNDERSCORE_TITLE_MODE:TD});function ND(e,t){"."===e.input[e.index-1]&&t.ignoreMatch()}function SD(e,t){void 0!==e.className&&(e.scope=e.className,delete e.className)}function wD(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=ND,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function xD(e,t){Array.isArray(e.illegal)&&(e.illegal=ku(...e.illegal))}function RD(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function LD(e,t){void 0===e.relevance&&(e.relevance=1)}const OD=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const n=Object.assign({},e);Object.keys(e).forEach((r=>{delete e[r]})),e.keywords=n.keywords,e.begin=jn(n.beforeMatch,kf(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},kD=["of","and","for","in","not","or","if","then","parent","list","value"],ID="keyword";function Uf(e,t,n=ID){const r=Object.create(null);return"string"==typeof e?o(n,e.split(" ")):Array.isArray(e)?o(n,e):Object.keys(e).forEach((function(a){Object.assign(r,Uf(e[a],t,a))})),r;function o(a,s){t&&(s=s.map((i=>i.toLowerCase()))),s.forEach((function(i){const l=i.split("|");r[l[0]]=[a,MD(l[0],l[1])]}))}}function MD(e,t){return t?Number(t):function(e){return kD.includes(e.toLowerCase())}(e)?0:1}const qf={},Wn=e=>{console.error(e)},Hf=(e,...t)=>{console.log(`WARN: ${e}`,...t)},Ir=(e,t)=>{qf[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),qf[`${e}/${t}`]=!0)},xs=new Error;function Vf(e,t,{key:n}){let r=0;const o=e[n],a={},s={};for(let i=1;i<=t.length;i++)s[i+r]=o[i],a[i+r]=!0,r+=If(t[i-1]);e[n]=s,e[n]._emit=a,e[n]._multi=!0}function qD(e){(function(e){e.scope&&"object"==typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,delete e.scope)})(e),"string"==typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope}),function(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw Wn("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),xs;if("object"!=typeof e.beginScope||null===e.beginScope)throw Wn("beginScope must be object"),xs;Vf(e,e.begin,{key:"beginScope"}),e.begin=Iu(e.begin,{joinWith:""})}}(e),function(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw Wn("skip, excludeEnd, returnEnd not compatible with endScope: {}"),xs;if("object"!=typeof e.endScope||null===e.endScope)throw Wn("endScope must be object"),xs;Vf(e,e.end,{key:"endScope"}),e.end=Iu(e.end,{joinWith:""})}}(e)}function HD(e){function t(s,i){return new RegExp(Po(s),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(i?"g":""))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(i,l){l.position=this.position++,this.matchIndexes[this.matchAt]=l,this.regexes.push([l,i]),this.matchAt+=If(i)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const i=this.regexes.map((l=>l[1]));this.matcherRe=t(Iu(i,{joinWith:"|"}),!0),this.lastIndex=0}exec(i){this.matcherRe.lastIndex=this.lastIndex;const l=this.matcherRe.exec(i);if(!l)return null;const u=l.findIndex(((p,d)=>d>0&&void 0!==p)),c=this.matchIndexes[u];return l.splice(0,u),Object.assign(l,c)}}class r{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(i){if(this.multiRegexes[i])return this.multiRegexes[i];const l=new n;return this.rules.slice(i).forEach((([u,c])=>l.addRule(u,c))),l.compile(),this.multiRegexes[i]=l,l}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(i,l){this.rules.push([i,l]),"begin"===l.type&&this.count++}exec(i){const l=this.getMatcher(this.regexIndex);l.lastIndex=this.lastIndex;let u=l.exec(i);if(this.resumingScanAtSamePosition()&&(!u||u.index!==this.lastIndex)){const c=this.getMatcher(0);c.lastIndex=this.lastIndex+1,u=c.exec(i)}return u&&(this.regexIndex+=u.position+1,this.regexIndex===this.count&&this.considerAll()),u}}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=wn(e.classNameAliases||{}),function a(s,i){const l=s;if(s.isCompiled)return l;[SD,RD,qD,OD].forEach((c=>c(s,i))),e.compilerExtensions.forEach((c=>c(s,i))),s.__beforeBegin=null,[wD,xD,LD].forEach((c=>c(s,i))),s.isCompiled=!0;let u=null;return"object"==typeof s.keywords&&s.keywords.$pattern&&(s.keywords=Object.assign({},s.keywords),u=s.keywords.$pattern,delete s.keywords.$pattern),u=u||/\w+/,s.keywords&&(s.keywords=Uf(s.keywords,e.case_insensitive)),l.keywordPatternRe=t(u,!0),i&&(s.begin||(s.begin=/\B|\b/),l.beginRe=t(l.begin),!s.end&&!s.endsWithParent&&(s.end=/\B|\b/),s.end&&(l.endRe=t(l.end)),l.terminatorEnd=Po(l.end)||"",s.endsWithParent&&i.terminatorEnd&&(l.terminatorEnd+=(s.end?"|":"")+i.terminatorEnd)),s.illegal&&(l.illegalRe=t(s.illegal)),s.contains||(s.contains=[]),s.contains=[].concat(...s.contains.map((function(c){return function(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return wn(e,{variants:null},t)}))),e.cachedVariants?e.cachedVariants:zf(e)?wn(e,{starts:e.starts?wn(e.starts):null}):Object.isFrozen(e)?wn(e):e}("self"===c?s:c)}))),s.contains.forEach((function(c){a(c,l)})),s.starts&&a(s.starts,i),l.matcher=function(s){const i=new r;return s.contains.forEach((l=>i.addRule(l.begin,{rule:l,type:"begin"}))),s.terminatorEnd&&i.addRule(s.terminatorEnd,{type:"end"}),s.illegal&&i.addRule(s.illegal,{type:"illegal"}),i}(l),l}(e)}function zf(e){return!!e&&(e.endsWithParent||zf(e.starts))}class GD extends Error{constructor(t,n){super(t),this.name="HTMLInjectionError",this.html=n}}const Fu=Rf,Gf=wn,$f=Symbol("nomatch"),Zf=function(e){const t=Object.create(null),n=Object.create(null),r=[];let o=!0;const a="Could not find the language '{}', did you forget to load/include a language module?",s={disableAutodetect:!0,name:"Plain text",contains:[]};let i={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:oD};function l(x){return i.noHighlightRe.test(x)}function c(x,T,y){let L="",k="";"object"==typeof T?(L=x,y=T.ignoreIllegals,k=T.language):(Ir("10.7.0","highlight(lang, code, ...args) has been deprecated."),Ir("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),k=x,L=T),void 0===y&&(y=!0);const H={code:L,language:k};G("before:highlight",H);const j=H.result?H.result:p(H.language,H.code,y);return j.code=H.code,G("after:highlight",j),j}function p(x,T,y,L){const k=Object.create(null);function H(B,V){return B.keywords[V]}function j(){if(!W.keywords)return void De.addText(oe);let B=0;W.keywordPatternRe.lastIndex=0;let V=W.keywordPatternRe.exec(oe),K="";for(;V;){K+=oe.substring(B,V.index);const ne=Ce.case_insensitive?V[0].toLowerCase():V[0],ge=H(W,ne);if(ge){const[$e,zo]=ge;if(De.addText(K),K="",k[ne]=(k[ne]||0)+1,k[ne]<=7&&(Bt+=zo),$e.startsWith("_"))K+=V[0];else{const Go=Ce.classNameAliases[$e]||$e;se(V[0],Go)}}else K+=V[0];B=W.keywordPatternRe.lastIndex,V=W.keywordPatternRe.exec(oe)}K+=oe.substring(B),De.addText(K)}function ce(){null!=W.subLanguage?function(){if(""===oe)return;let B=null;if("string"==typeof W.subLanguage){if(!t[W.subLanguage])return void De.addText(oe);B=p(W.subLanguage,oe,!0,Ur[W.subLanguage]),Ur[W.subLanguage]=B._top}else B=m(oe,W.subLanguage.length?W.subLanguage:null);W.relevance>0&&(Bt+=B.relevance),De.__addSublanguage(B._emitter,B.language)}():j(),oe=""}function se(B,V){""!==B&&(De.startScope(V),De.addText(B),De.endScope())}function le(B,V){let K=1;const ne=V.length-1;for(;K<=ne;){if(!B._emit[K]){K++;continue}const ge=Ce.classNameAliases[B[K]]||B[K],$e=V[K];ge?se($e,ge):(oe=$e,j(),oe=""),K++}}function mt(B,V){return B.scope&&"string"==typeof B.scope&&De.openNode(Ce.classNameAliases[B.scope]||B.scope),B.beginScope&&(B.beginScope._wrap?(se(oe,Ce.classNameAliases[B.beginScope._wrap]||B.beginScope._wrap),oe=""):B.beginScope._multi&&(le(B.beginScope,V),oe="")),W=Object.create(B,{parent:{value:W}}),W}function Ft(B,V,K){let ne=function(e,t){const n=e&&e.exec(t);return n&&0===n.index}(B.endRe,K);if(ne){if(B["on:end"]){const ge=new xf(B);B["on:end"](V,ge),ge.isMatchIgnored&&(ne=!1)}if(ne){for(;B.endsParent&&B.parent;)B=B.parent;return B}}if(B.endsWithParent)return Ft(B.parent,V,K)}function ht(B){return 0===W.matcher.regexIndex?(oe+=B[0],1):(Hr=!0,0)}function Ct(B){const V=B[0],K=T.substring(B.index),ne=Ft(W,B,K);if(!ne)return $f;const ge=W;W.endScope&&W.endScope._wrap?(ce(),se(V,W.endScope._wrap)):W.endScope&&W.endScope._multi?(ce(),le(W.endScope,B)):ge.skip?oe+=V:(ge.returnEnd||ge.excludeEnd||(oe+=V),ce(),ge.excludeEnd&&(oe=V));do{W.scope&&De.closeNode(),!W.skip&&!W.subLanguage&&(Bt+=W.relevance),W=W.parent}while(W!==ne.parent);return ne.starts&&mt(ne.starts,B),ge.returnEnd?0:V.length}let Re={};function ke(B,V){const K=V&&V[0];if(oe+=B,null==K)return ce(),0;if("begin"===Re.type&&"end"===V.type&&Re.index===V.index&&""===K){if(oe+=T.slice(V.index,V.index+1),!o){const ne=new Error(`0 width match regex (${x})`);throw ne.languageName=x,ne.badRule=Re.rule,ne}return 1}if(Re=V,"begin"===V.type)return function(B){const V=B[0],K=B.rule,ne=new xf(K),ge=[K.__beforeBegin,K["on:begin"]];for(const $e of ge)if($e&&($e(B,ne),ne.isMatchIgnored))return ht(V);return K.skip?oe+=V:(K.excludeBegin&&(oe+=V),ce(),!K.returnBegin&&!K.excludeBegin&&(oe=V)),mt(K,B),K.returnBegin?0:V.length}(V);if("illegal"===V.type&&!y){const ne=new Error('Illegal lexeme "'+K+'" for mode "'+(W.scope||"<unnamed>")+'"');throw ne.mode=W,ne}if("end"===V.type){const ne=Ct(V);if(ne!==$f)return ne}if("illegal"===V.type&&""===K)return 1;if(qr>1e5&&qr>3*V.index)throw new Error("potential infinite loop, way more iterations than matches");return oe+=K,K.length}const Ce=q(x);if(!Ce)throw Wn(a.replace("{}",x)),new Error('Unknown language: "'+x+'"');const Hs=HD(Ce);let Pr="",W=L||Hs;const Ur={},De=new i.__emitter(i);!function(){const B=[];for(let V=W;V!==Ce;V=V.parent)V.scope&&B.unshift(V.scope);B.forEach((V=>De.openNode(V)))}();let oe="",Bt=0,jt=0,qr=0,Hr=!1;try{if(Ce.__emitTokens)Ce.__emitTokens(T,De);else{for(W.matcher.considerAll();;){qr++,Hr?Hr=!1:W.matcher.considerAll(),W.matcher.lastIndex=jt;const B=W.matcher.exec(T);if(!B)break;const K=ke(T.substring(jt,B.index),B);jt=B.index+K}ke(T.substring(jt))}return De.finalize(),Pr=De.toHTML(),{language:x,value:Pr,relevance:Bt,illegal:!1,_emitter:De,_top:W}}catch(B){if(B.message&&B.message.includes("Illegal"))return{language:x,value:Fu(T),illegal:!0,relevance:0,_illegalBy:{message:B.message,index:jt,context:T.slice(jt-100,jt+100),mode:B.mode,resultSoFar:Pr},_emitter:De};if(o)return{language:x,value:Fu(T),illegal:!1,relevance:0,errorRaised:B,_emitter:De,_top:W};throw B}}function m(x,T){T=T||i.languages||Object.keys(t);const y=function(x){const T={value:Fu(x),illegal:!1,relevance:0,_top:s,_emitter:new i.__emitter(i)};return T._emitter.addText(x),T}(x),L=T.filter(q).filter(Q).map((ce=>p(ce,x,!1)));L.unshift(y);const k=L.sort(((ce,se)=>{if(ce.relevance!==se.relevance)return se.relevance-ce.relevance;if(ce.language&&se.language){if(q(ce.language).supersetOf===se.language)return 1;if(q(se.language).supersetOf===ce.language)return-1}return 0})),[H,j]=k,fe=H;return fe.secondBest=j,fe}function b(x){let T=null;const y=function(x){let T=x.className+" ";T+=x.parentNode?x.parentNode.className:"";const y=i.languageDetectRe.exec(T);if(y){const L=q(y[1]);return L||(Hf(a.replace("{}",y[1])),Hf("Falling back to no-highlight mode for this block.",x)),L?y[1]:"no-highlight"}return T.split(/\s+/).find((L=>l(L)||q(L)))}(x);if(l(y))return;if(G("before:highlightElement",{el:x,language:y}),x.dataset.highlighted)return void console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",x);if(x.children.length>0&&(i.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),console.warn("The element with unescaped HTML:"),console.warn(x)),i.throwUnescapedHTML))throw new GD("One of your code blocks includes unescaped HTML.",x.innerHTML);T=x;const L=T.textContent,k=y?c(L,{language:y,ignoreIllegals:!0}):m(L);x.innerHTML=k.value,x.dataset.highlighted="yes",function(x,T,y){const L=T&&n[T]||y;x.classList.add("hljs"),x.classList.add(`language-${L}`)}(x,y,k.language),x.result={language:k.language,re:k.relevance,relevance:k.relevance},k.secondBest&&(x.secondBest={language:k.secondBest.language,relevance:k.secondBest.relevance}),G("after:highlightElement",{el:x,result:k,text:L})}let E=!1;function v(){"loading"!==document.readyState?document.querySelectorAll(i.cssSelector).forEach(b):E=!0}function q(x){return x=(x||"").toLowerCase(),t[x]||t[n[x]]}function I(x,{languageName:T}){"string"==typeof x&&(x=[x]),x.forEach((y=>{n[y.toLowerCase()]=T}))}function Q(x){const T=q(x);return T&&!T.disableAutodetect}function G(x,T){const y=x;r.forEach((function(L){L[y]&&L[y](T)}))}typeof window<"u"&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(function(){E&&v()}),!1),Object.assign(e,{highlight:c,highlightAuto:m,highlightAll:v,highlightElement:b,highlightBlock:function(x){return Ir("10.7.0","highlightBlock will be removed entirely in v12.0"),Ir("10.7.0","Please use highlightElement now."),b(x)},configure:function(x){i=Gf(i,x)},initHighlighting:()=>{v(),Ir("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")},initHighlightingOnLoad:function(){v(),Ir("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")},registerLanguage:function(x,T){let y=null;try{y=T(e)}catch(L){if(Wn("Language definition for '{}' could not be registered.".replace("{}",x)),!o)throw L;Wn(L),y=s}y.name||(y.name=x),t[x]=y,y.rawDefinition=T.bind(null,e),y.aliases&&I(y.aliases,{languageName:x})},unregisterLanguage:function(x){delete t[x];for(const T of Object.keys(n))n[T]===x&&delete n[T]},listLanguages:function(){return Object.keys(t)},getLanguage:q,registerAliases:I,autoDetection:Q,inherit:Gf,addPlugin:function(x){(function(x){x["before:highlightBlock"]&&!x["before:highlightElement"]&&(x["before:highlightElement"]=T=>{x["before:highlightBlock"](Object.assign({block:T.el},T))}),x["after:highlightBlock"]&&!x["after:highlightElement"]&&(x["after:highlightElement"]=T=>{x["after:highlightBlock"](Object.assign({block:T.el},T))})})(x),r.push(x)},removePlugin:function(x){const T=r.indexOf(x);-1!==T&&r.splice(T,1)}}),e.debugMode=function(){o=!1},e.safeMode=function(){o=!0},e.versionString="11.9.0",e.regex={concat:jn,lookahead:kf,either:ku,optional:sD,anyNumberOfTimes:aD};for(const x in ws)"object"==typeof ws[x]&&wf(ws[x]);return Object.assign(e,ws),e},Mr=Zf({});Mr.newInstance=()=>Zf({});var ZD=Mr;Mr.HighlightJS=Mr,Mr.default=Mr;const X=jo(ZD);const JD=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],ey=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],ty=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],ny=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],ry=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();var Fr="[0-9](_*[0-9])*",Rs=`\\.(${Fr})`,Ls="[0-9a-fA-F](_*[0-9a-fA-F])*",jf={className:"number",variants:[{begin:`(\\b(${Fr})((${Rs})|\\.)?|(${Rs}))[eE][+-]?(${Fr})[fFdD]?\\b`},{begin:`\\b(${Fr})((${Rs})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${Rs})[fFdD]?\\b`},{begin:`\\b(${Fr})[fFdD]\\b`},{begin:`\\b0[xX]((${Ls})\\.?|(${Ls})?\\.(${Ls}))[pP][+-]?(${Fr})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${Ls})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};function Wf(e,t,n){return-1===n?"":e.replace(t,(r=>Wf(e,t,n-1)))}const Yf="[A-Za-z$_][0-9A-Za-z$_]*",cy=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],dy=["true","false","null","undefined","NaN","Infinity"],Kf=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],Xf=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Qf=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],py=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],fy=[].concat(Qf,Kf,Xf);var Br="[0-9](_*[0-9])*",Os=`\\.(${Br})`,ks="[0-9a-fA-F](_*[0-9a-fA-F])*",hy={className:"number",variants:[{begin:`(\\b(${Br})((${Os})|\\.)?|(${Os}))[eE][+-]?(${Br})[fFdD]?\\b`},{begin:`\\b(${Br})((${Os})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${Os})[fFdD]?\\b`},{begin:`\\b(${Br})[fFdD]\\b`},{begin:`\\b0[xX]((${ks})\\.?|(${ks})?\\.(${ks}))[pP][+-]?(${Br})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${ks})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};const by=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],_y=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],Jf=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],e1=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],vy=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse(),Dy=Jf.concat(e1);const qy=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],Hy=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],Vy=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],zy=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],Gy=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();function t1(e){return e?"string"==typeof e?e:e.source:null}function Is(e){return de("(?=",e,")")}function de(...e){return e.map((n=>t1(n))).join("")}function ot(...e){return"("+(function(e){const t=e[e.length-1];return"object"==typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}(e).capture?"":"?:")+e.map((r=>t1(r))).join("|")+")"}const Bu=e=>de(/\b/,e,/\w$/.test(e)?/\b/:/\B/),Yy=["Protocol","Type"].map(Bu),n1=["init","self"].map(Bu),Ky=["Any","Self"],Pu=["actor","any","associatedtype","async","await",/as\?/,/as!/,"as","borrowing","break","case","catch","class","consume","consuming","continue","convenience","copy","default","defer","deinit","didSet","distributed","do","dynamic","each","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","macro","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],r1=["false","nil","true"],Xy=["assignment","associativity","higherThan","left","lowerThan","none","right"],Qy=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warning"],o1=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],a1=ot(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),s1=ot(a1,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),Uu=de(a1,s1,"*"),i1=ot(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),Ms=ot(i1,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),on=de(i1,Ms,"*"),qu=de(/[A-Z]/,Ms,"*"),Jy=["attached","autoclosure",de(/convention\(/,ot("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","freestanding","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",de(/objc\(/,on,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","Sendable","testable","UIApplicationMain","unchecked","unknown","usableFromInline","warn_unqualified_access"],e3=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];const Fs="[A-Za-z$_][0-9A-Za-z$_]*",l1=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],u1=["true","false","null","undefined","NaN","Infinity"],c1=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],d1=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],p1=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],f1=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],g1=[].concat(p1,c1,d1);X.registerLanguage("apache",(function(e){const r={className:"number",begin:/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?/};return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:"section",begin:/<\/?/,end:/>/,contains:[r,{className:"number",begin:/:\d{1,5}/},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",begin:/\w+/,relevance:0,keywords:{_:["order","deny","allow","setenv","rewriterule","rewriteengine","rewritecond","documentroot","sethandler","errordocument","loadmodule","options","header","listen","serverroot","servername"]},starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"},contains:[{className:"meta",begin:/\s\[/,end:/\]$/},{className:"variable",begin:/[\$%]\{/,end:/\}/,contains:["self",{className:"number",begin:/[$%]\d+/}]},r,{className:"number",begin:/\b\d+/},e.QUOTE_STRING_MODE]}}],illegal:/\S/}})),X.registerLanguage("bash",(function(e){const t=e.regex,n={},r={begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[n]}]};Object.assign(n,{className:"variable",variants:[{begin:t.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},r]});const o={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},a={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:"string"})]}},s={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,n,o]};o.contains.push(s);const c={begin:/\$?\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,n]},d=e.SHEBANG({binary:`(${["fish","bash","zsh","sh","csh","ksh","tcsh","dash","scsh"].join("|")})`,relevance:10}),m={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,keyword:["if","then","else","elif","fi","for","while","until","in","do","done","case","esac","function","select"],literal:["true","false"],built_in:["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset","alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias","set","shopt","autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"]},contains:[d,e.SHEBANG(),m,c,e.HASH_COMMENT_MODE,a,{match:/(\/[a-z._-]+)+/},s,{match:/\\"/},{className:"string",begin:/'/,end:/'/},{match:/\\'/},n]}})),X.registerLanguage("c",(function(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),r="decltype\\(auto\\)",o="[a-zA-Z_]\\w*::",s="("+r+"|"+t.optional(o)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",i={className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{match:/\batomic_[a-z]{3,6}\b/}]},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},c={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},p={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},d={className:"title",begin:t.optional(o)+e.IDENT_RE,relevance:0},m=t.optional(o)+e.IDENT_RE+"\\s*\\(",C={keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"],literal:"true false NULL",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"},h=[p,i,n,e.C_BLOCK_COMMENT_MODE,c,u],g={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:C,contains:h.concat([{begin:/\(/,end:/\)/,keywords:C,contains:h.concat(["self"]),relevance:0}]),relevance:0},E={begin:"("+s+"[\\*&\\s]+)+"+m,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:C,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:r,keywords:C,relevance:0},{begin:m,returnBegin:!0,contains:[e.inherit(d,{className:"title.function"})],relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:C,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,c,i,{begin:/\(/,end:/\)/,keywords:C,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,c,i]}]},i,n,e.C_BLOCK_COMMENT_MODE,p]};return{name:"C",aliases:["h"],keywords:C,disableAutodetect:!0,illegal:"</",contains:[].concat(g,E,h,[p,{begin:e.IDENT_RE+"::",keywords:C},{className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:p,strings:u,keywords:C}}})),X.registerLanguage("cpp",(function(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),r="decltype\\(auto\\)",o="[a-zA-Z_]\\w*::",s="(?!struct)("+r+"|"+t.optional(o)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",i={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},c={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},p={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},d={className:"title",begin:t.optional(o)+e.IDENT_RE,relevance:0},m=t.optional(o)+e.IDENT_RE+"\\s*\\(",v={type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],_type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"]},N={className:"function.dispatch",relevance:0,keywords:{_hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"]},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},_=[N,p,i,n,e.C_BLOCK_COMMENT_MODE,c,u],S={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:v,contains:_.concat([{begin:/\(/,end:/\)/,keywords:v,contains:_.concat(["self"]),relevance:0}]),relevance:0},R={className:"function",begin:"("+s+"[\\*&\\s]+)+"+m,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:v,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:r,keywords:v,relevance:0},{begin:m,returnBegin:!0,contains:[d],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[u,c]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:v,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,c,i,{begin:/\(/,end:/\)/,keywords:v,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,c,i]}]},i,n,e.C_BLOCK_COMMENT_MODE,p]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:v,illegal:"</",classNameAliases:{"function.dispatch":"built_in"},contains:[].concat(S,R,N,_,[p,{begin:"\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function)\\s*<(?!<)",end:">",keywords:v,contains:["self",i]},{begin:e.IDENT_RE+"::",keywords:v},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}})),X.registerLanguage("csharp",(function(e){const s={keyword:["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","scoped","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]),built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],literal:["default","false","null","true"]},i=e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),l={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},u={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},c=e.inherit(u,{illegal:/\n/}),p={className:"subst",begin:/\{/,end:/\}/,keywords:s},d=e.inherit(p,{illegal:/\n/}),m={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},e.BACKSLASH_ESCAPE,d]},A={className:"string",begin:/\$@"/,end:'"',contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},p]},b=e.inherit(A,{illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},d]});p.contains=[A,m,u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,l,e.C_BLOCK_COMMENT_MODE],d.contains=[b,m,c,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,l,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];const C={variants:[A,m,u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},h={begin:"<",end:">",contains:[{beginKeywords:"in out"},i]},g=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",E={begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:s,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:"\x3c!--|--\x3e"},{begin:"</?",end:">"}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{keyword:"if else elif endif define undef warning error line region endregion pragma checksum"}},C,l,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},i,h,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[i,h,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+g+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:s,contains:[{beginKeywords:["public","private","protected","static","internal","protected","abstract","async","extern","override","unsafe","virtual","new","sealed","partial"].join(" "),relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,contains:[e.TITLE_MODE,h],relevance:0},{match:/\(\)/},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,relevance:0,contains:[C,l,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},E]}})),X.registerLanguage("css",(function(e){const t=e.regex,n=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}))(e),i=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[n.BLOCK_COMMENT,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/},n.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+ty.join("|")+")"},{begin:":(:)?("+ny.join("|")+")"}]},n.CSS_VARIABLE,{className:"attribute",begin:"\\b("+ry.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[n.BLOCK_COMMENT,n.HEXCOLOR,n.IMPORTANT,n.CSS_NUMBER_MODE,...i,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[...i,{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},n.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:"and or not only",attribute:ey.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...i,n.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+JD.join("|")+")\\b"}]}})),X.registerLanguage("diff",(function(e){const t=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:t.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:t.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}})),X.registerLanguage("go",(function(e){const a={keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"],type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"],literal:["true","false","iota","nil"],built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"]};return{name:"Go",aliases:["golang"],keywords:a,illegal:"</",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"string",variants:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:"`",end:"`"}]},{className:"number",variants:[{begin:e.C_NUMBER_RE+"[i]",relevance:1},e.C_NUMBER_MODE]},{begin:/:=/},{className:"function",beginKeywords:"func",end:"\\s*(\\{|$)",excludeEnd:!0,contains:[e.TITLE_MODE,{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:a,illegal:/["']/}]}]}})),X.registerLanguage("graphql",(function(e){const t=e.regex;return{name:"GraphQL",aliases:["gql"],case_insensitive:!0,disableAutodetect:!1,keywords:{keyword:["query","mutation","subscription","type","input","schema","directive","interface","union","scalar","fragment","enum","on"],literal:["true","false","null"]},contains:[e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{scope:"punctuation",match:/[.]{3}/,relevance:0},{scope:"punctuation",begin:/[\!\(\)\:\=\[\]\{\|\}]{1}/,relevance:0},{scope:"variable",begin:/\$/,end:/\W/,excludeEnd:!0,relevance:0},{scope:"meta",match:/@\w+/,excludeEnd:!0},{scope:"symbol",begin:t.concat(/[_A-Za-z][_0-9A-Za-z]*/,t.lookahead(/\s*:/)),relevance:0}],illegal:[/[;<']/,/BEGIN/]}})),X.registerLanguage("ini",(function(e){const t=e.regex,n={className:"number",relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:e.NUMBER_RE}]},r=e.COMMENT();r.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const o={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/}]},a={className:"literal",begin:/\bon|off|true|false|yes|no\b/},s={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]},i={begin:/\[/,end:/\]/,contains:[r,a,o,s,n,"self"],relevance:0},p=t.either(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,contains:[r,{className:"section",begin:/\[+/,end:/\]+/},{begin:t.concat(p,"(\\s*\\.\\s*",p,")*",t.lookahead(/\s*=\s*[^#\s]/)),className:"attr",starts:{end:/$/,contains:[r,i,a,o,s,n]}}]}})),X.registerLanguage("java",(function(e){const t=e.regex,n="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",r=n+Wf("(?:<"+n+"~~~(?:\\s*,\\s*"+n+"~~~)*>)?",/~~~/g,2),l={keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed","yield","permits"],literal:["false","true","null"],type:["char","boolean","long","float","int","byte","short","double"],built_in:["super","this"]},u={className:"meta",begin:"@"+n,contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},c={className:"params",begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:"Java",aliases:["jsp"],keywords:l,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{begin:/import java\.[a-z]+\./,keywords:"import",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:"string",contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,n],className:{1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{begin:[t.concat(/(?!else)/,n),/\s+/,n,/\s+/,/=(?!=)/],className:{1:"type",3:"variable",5:"operator"}},{begin:[/record/,/\s+/,n],className:{1:"keyword",3:"title.class"},contains:[c,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"new throw return else",relevance:0},{begin:["(?:"+r+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:"title.function"},keywords:l,contains:[{className:"params",begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:[u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,jf,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},jf,u]}})),X.registerLanguage("javascript",(function(e){const t=e.regex,r=Yf,o_begin="<>",o_end="</>",s={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(T,y)=>{const L=T[0].length+T.index,k=T.input[L];if("<"===k||","===k)return void y.ignoreMatch();let H;">"===k&&(((T,{after:y})=>{const L="</"+T[0].slice(1);return-1!==T.input.indexOf(L,y)})(T,{after:L})||y.ignoreMatch());const j=T.input.substring(L);((H=j.match(/^\s*=/))||(H=j.match(/^\s+extends\s+/))&&0===H.index)&&y.ignoreMatch()}},i={$pattern:Yf,keyword:cy,literal:dy,built_in:fy,"variable.language":py},l="[0-9](_?[0-9])*",u=`\\.(${l})`,c="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",p={className:"number",variants:[{begin:`(\\b(${c})((${u})|\\.)?|(${u}))[eE][+-]?(${l})\\b`},{begin:`\\b(${c})\\b((${u})\\b|\\.)?|(${u})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},d={className:"subst",begin:"\\$\\{",end:"\\}",keywords:i,contains:[]},m={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"xml"}},A={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"css"}},b={begin:"gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"graphql"}},C={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,d]},g={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:r+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},E=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,A,b,C,{match:/\$\d+/},p];d.contains=E.concat({begin:/\{/,end:/\}/,keywords:i,contains:["self"].concat(E)});const v=[].concat(g,d.contains),N=v.concat([{begin:/\(/,end:/\)/,keywords:i,contains:["self"].concat(v)}]),_={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:N},S={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,t.concat(r,"(",t.concat(/\./,r),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,r],scope:{1:"keyword",3:"title.class"}}]},R={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...Kf,...Xf]}},I={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[_],illegal:/%/},Y={match:t.concat(/\b/,(T=[...Qf,"super","import"],t.concat("(?!",T.join("|"),")")),r,t.lookahead(/\(/)),className:"title.function",relevance:0},O={begin:t.concat(/\./,t.lookahead(t.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},G={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},_]},P="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",x={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(P)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[_]};var T;return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{PARAMS_CONTAINS:N,CLASS_REFERENCE:R},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,A,b,C,g,{match:/\$\d+/},p,R,{className:"attr",begin:r+t.lookahead(":"),relevance:0},x,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[g,e.REGEXP_MODE,{className:"function",begin:P,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:N}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:o_begin,end:o_end},{match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:s.begin,"on:begin":s.isTrulyOpeningTag,end:s.end}],subLanguage:"xml",contains:[{begin:s.begin,end:s.end,skip:!0,contains:["self"]}]}]},I,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[_,e.inherit(e.TITLE_MODE,{begin:r,className:"title.function"})]},{match:/\.\.\./,relevance:0},O,{match:"\\$"+r,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[_]},Y,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},S,G,{match:/\$[(.]/}]}})),X.registerLanguage("json",(function(e){const r=["true","false","null"],o={scope:"literal",beginKeywords:r.join(" ")};return{name:"JSON",keywords:{literal:r},contains:[{className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{match:/[{}[\],:]/,className:"punctuation",relevance:0},e.QUOTE_STRING_MODE,o,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}})),X.registerLanguage("kotlin",(function(e){const t={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},r={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"},o={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},a={className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},s={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[a,o]},{begin:"'",end:"'",illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,a,o]}]};o.contains.push(s);const i={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"},l={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(s,{className:"string"}),"self"]}]},u=hy,c=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),p={variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},d=p;return d.variants[1].contains=[p],p.variants[1].contains=[d],{name:"Kotlin",aliases:["kt","kts"],keywords:t,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,c,{className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},r,i,l,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:t,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin:/</,end:/>/,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:t,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[p,e.C_LINE_COMMENT_MODE,c],relevance:0},e.C_LINE_COMMENT_MODE,c,i,l,s,e.C_NUMBER_MODE]},c]},{begin:[/class|interface|trait/,/\s+/,e.UNDERSCORE_IDENT_RE],beginScope:{3:"title.class"},keywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},e.UNDERSCORE_TITLE_MODE,{className:"type",begin:/</,end:/>/,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,){\s]|$/,excludeBegin:!0,returnEnd:!0},i,l]},s,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:"\n"},u]}})),X.registerLanguage("less",(function(e){const t=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}))(e),n=Dy,o="[\\w-]+",a="("+o+"|@\\{"+o+"\\})",s=[],i=[],l=function(E){return{className:"string",begin:"~?"+E+".*?"+E}},u=function(E,v,N){return{className:E,begin:v,relevance:N}},c={$pattern:/[a-z-]+/,keyword:"and or not only",attribute:_y.join(" ")},p={begin:"\\(",end:"\\)",contains:i,keywords:c,relevance:0};i.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,l("'"),l('"'),t.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},t.HEXCOLOR,p,u("variable","@@?"+o,10),u("variable","@\\{"+o+"\\}"),u("built_in","~?`[^`]*?`"),{className:"attribute",begin:o+"\\s*:",end:":",returnBegin:!0,excludeEnd:!0},t.IMPORTANT,{beginKeywords:"and not"},t.FUNCTION_DISPATCH);const d=i.concat({begin:/\{/,end:/\}/,contains:s}),m={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(i)},A={begin:a+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+vy.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:i}}]},b={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",keywords:c,returnEnd:!0,contains:i,relevance:0}},C={className:"variable",variants:[{begin:"@"+o+"\\s*:",relevance:15},{begin:"@"+o}],starts:{end:"[;}]",returnEnd:!0,contains:d}},h={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:a,end:/\{/}],returnBegin:!0,returnEnd:!0,illegal:"[<='$\"]",relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,m,u("keyword","all\\b"),u("variable","@\\{"+o+"\\}"),{begin:"\\b("+by.join("|")+")\\b",className:"selector-tag"},t.CSS_NUMBER_MODE,u("selector-tag",a,0),u("selector-id","#"+a),u("selector-class","\\."+a,0),u("selector-tag","&",0),t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",begin:":("+Jf.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+e1.join("|")+")"},{begin:/\(/,end:/\)/,relevance:0,contains:d},{begin:"!important"},t.FUNCTION_DISPATCH]},g={begin:o+`:(:)?(${n.join("|")})`,returnBegin:!0,contains:[h]};return s.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,b,C,g,A,h,m,t.FUNCTION_DISPATCH),{name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:s}})),X.registerLanguage("lua",(function(e){const t="\\[=*\\[",n="\\]=*\\]",r={begin:t,end:n,contains:["self"]},o=[e.COMMENT("--(?!"+t+")","$"),e.COMMENT("--"+t,n,{contains:[r],relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:o.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[e.inherit(e.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:o}].concat(o)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:t,end:n,contains:[r],relevance:5}])}})),X.registerLanguage("makefile",(function(e){const t={className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%<?\^\+\*]/}]},n={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,t]},r={className:"variable",begin:/\$\([\w-]+\s/,end:/\)/,keywords:{built_in:"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"},contains:[t]},o={begin:"^"+e.UNDERSCORE_IDENT_RE+"\\s*(?=[:+?]?=)"},s={className:"section",begin:/^[^\s]+:/,end:/$/,contains:[t]};return{name:"Makefile",aliases:["mk","mak","make"],keywords:{$pattern:/[\w-]+/,keyword:"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath"},contains:[e.HASH_COMMENT_MODE,t,n,r,o,{className:"meta",begin:/^\.PHONY:/,end:/$/,keywords:{$pattern:/[\.\w]+/,keyword:".PHONY"}},s]}})),X.registerLanguage("markdown",(function(e){const n={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},l={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:e.regex.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},u={className:"strong",contains:[],variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]},c={className:"emphasis",contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{begin:/_(?![_\s])/,end:/_/,relevance:0}]},p=e.inherit(u,{contains:[]}),d=e.inherit(c,{contains:[]});u.contains.push(d),c.contains.push(p);let m=[n,l];return[u,c,p,d].forEach((C=>{C.contains=C.contains.concat(m)})),m=m.concat(u,c),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:m},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:m}]}]},n,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},u,c,{className:"quote",begin:"^>\\s+",contains:m,end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{begin:"^[-\\*]{3,}",end:"$"},l,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}})),X.registerLanguage("nginx",(function(e){const t=e.regex,n={className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{\w+\}/},{begin:t.concat(/[$@]/,e.UNDERSCORE_IDENT_RE)}]},o={endsWithParent:!0,keywords:{$pattern:/[a-z_]{2,}|\/dev\/poll/,literal:["on","off","yes","no","true","false","none","blocked","debug","info","notice","warn","error","crit","select","break","last","permanent","redirect","kqueue","rtsig","epoll","poll","/dev/poll"]},relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/}]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[n]},{className:"regexp",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:"\\s\\^",end:"\\s|\\{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|\\{|;",returnEnd:!0},{begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number",begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{className:"number",begin:"\\b\\d+[kKmMgGdshdwy]?\\b",relevance:0},n]};return{name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{beginKeywords:"upstream location",end:/;|\{/,contains:o.contains,keywords:{section:"upstream location"}},{className:"section",begin:t.concat(e.UNDERSCORE_IDENT_RE+t.lookahead(/\s+\{/)),relevance:0},{begin:t.lookahead(e.UNDERSCORE_IDENT_RE+"\\s"),end:";|\\{",contains:[{className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:o}],relevance:0}],illegal:"[^\\s\\}\\{]"}})),X.registerLanguage("objectivec",(function(e){const n=/[a-zA-Z@][a-zA-Z0-9_]*/,l={$pattern:n,keyword:["@interface","@class","@protocol","@implementation"]};return{name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:{"variable.language":["this","super"],$pattern:n,keyword:["while","export","sizeof","typedef","const","struct","for","union","volatile","static","mutable","if","do","return","goto","enum","else","break","extern","asm","case","default","register","explicit","typename","switch","continue","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"],literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"],built_in:["dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],type:["int","float","char","unsigned","signed","short","long","double","wchar_t","unichar","void","bool","BOOL","id|0","_Bool"]},illegal:"</",contains:[{className:"built_in",begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:"string",variants:[{begin:'@"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]}]},{className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),{className:"string",begin:/<.*?>/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+l.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:l,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}})),X.registerLanguage("perl",(function(e){const t=e.regex,r=/[dualxmsipngr]{0,12}/,o={$pattern:/[\w.]+/,keyword:["abs","accept","alarm","and","atan2","bind","binmode","bless","break","caller","chdir","chmod","chomp","chop","chown","chr","chroot","close","closedir","connect","continue","cos","crypt","dbmclose","dbmopen","defined","delete","die","do","dump","each","else","elsif","endgrent","endhostent","endnetent","endprotoent","endpwent","endservent","eof","eval","exec","exists","exit","exp","fcntl","fileno","flock","for","foreach","fork","format","formline","getc","getgrent","getgrgid","getgrnam","gethostbyaddr","gethostbyname","gethostent","getlogin","getnetbyaddr","getnetbyname","getnetent","getpeername","getpgrp","getpriority","getprotobyname","getprotobynumber","getprotoent","getpwent","getpwnam","getpwuid","getservbyname","getservbyport","getservent","getsockname","getsockopt","given","glob","gmtime","goto","grep","gt","hex","if","index","int","ioctl","join","keys","kill","last","lc","lcfirst","length","link","listen","local","localtime","log","lstat","lt","ma","map","mkdir","msgctl","msgget","msgrcv","msgsnd","my","ne","next","no","not","oct","open","opendir","or","ord","our","pack","package","pipe","pop","pos","print","printf","prototype","push","q|0","qq","quotemeta","qw","qx","rand","read","readdir","readline","readlink","readpipe","recv","redo","ref","rename","require","reset","return","reverse","rewinddir","rindex","rmdir","say","scalar","seek","seekdir","select","semctl","semget","semop","send","setgrent","sethostent","setnetent","setpgrp","setpriority","setprotoent","setpwent","setservent","setsockopt","shift","shmctl","shmget","shmread","shmwrite","shutdown","sin","sleep","socket","socketpair","sort","splice","split","sprintf","sqrt","srand","stat","state","study","sub","substr","symlink","syscall","sysopen","sysread","sysseek","system","syswrite","tell","telldir","tie","tied","time","times","tr","truncate","uc","ucfirst","umask","undef","unless","unlink","unpack","unshift","untie","until","use","utime","values","vec","wait","waitpid","wantarray","warn","when","while","write","x|0","xor","y|0"].join(" ")},a={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:o},s={begin:/->\{/,end:/\}/},i={variants:[{begin:/\$\d/},{begin:t.concat(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")},{begin:/[$%@][^\s\w{]/,relevance:0}]},l=[e.BACKSLASH_ESCAPE,a,i],u=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],c=(m,A,b="\\1")=>{const C="\\1"===b?b:t.concat(b,A);return t.concat(t.concat("(?:",m,")"),A,/(?:\\.|[^\\\/])*?/,C,/(?:\\.|[^\\\/])*?/,b,r)},p=(m,A,b)=>t.concat(t.concat("(?:",m,")"),A,/(?:\\.|[^\\\/])*?/,b,r),d=[i,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),s,{className:"string",contains:l,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{begin:c("s|tr|y",t.either(...u,{capture:!0}))},{begin:c("s|tr|y","\\(","\\)")},{begin:c("s|tr|y","\\[","\\]")},{begin:c("s|tr|y","\\{","\\}")}],relevance:2},{className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:p("(?:m|qr)?",/\//,/\//)},{begin:p("m|qr",t.either(...u,{capture:!0}),/\1/)},{begin:p("m|qr",/\(/,/\)/)},{begin:p("m|qr",/\[/,/\]/)},{begin:p("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return a.contains=d,s.contains=d,{name:"Perl",aliases:["pl","pm"],keywords:o,contains:d}})),X.registerLanguage("pgsql",(function(e){const t=e.COMMENT("--","$"),r="\\$([a-zA-Z_]?|[a-zA-Z_][a-zA-Z_0-9]*)\\$",l="BIGINT INT8 BIGSERIAL SERIAL8 BIT VARYING VARBIT BOOLEAN BOOL BOX BYTEA CHARACTER CHAR VARCHAR CIDR CIRCLE DATE DOUBLE PRECISION FLOAT8 FLOAT INET INTEGER INT INT4 INTERVAL JSON JSONB LINE LSEG|10 MACADDR MACADDR8 MONEY NUMERIC DEC DECIMAL PATH POINT POLYGON REAL FLOAT4 SMALLINT INT2 SMALLSERIAL|10 SERIAL2|10 SERIAL|10 SERIAL4|10 TEXT TIME ZONE TIMETZ|10 TIMESTAMP TIMESTAMPTZ|10 TSQUERY|10 TSVECTOR|10 TXID_SNAPSHOT|10 UUID XML NATIONAL NCHAR INT4RANGE|10 INT8RANGE|10 NUMRANGE|10 TSRANGE|10 TSTZRANGE|10 DATERANGE|10 ANYELEMENT ANYARRAY ANYNONARRAY ANYENUM ANYRANGE CSTRING INTERNAL RECORD PG_DDL_COMMAND VOID UNKNOWN OPAQUE REFCURSOR NAME OID REGPROC|10 REGPROCEDURE|10 REGOPER|10 REGOPERATOR|10 REGCLASS|10 REGTYPE|10 REGROLE|10 REGNAMESPACE|10 REGCONFIG|10 REGDICTIONARY|10 ",u=l.trim().split(" ").map((function(b){return b.split("|")[0]})).join("|"),A="ARRAY_AGG AVG BIT_AND BIT_OR BOOL_AND BOOL_OR COUNT EVERY JSON_AGG JSONB_AGG JSON_OBJECT_AGG JSONB_OBJECT_AGG MAX MIN MODE STRING_AGG SUM XMLAGG CORR COVAR_POP COVAR_SAMP REGR_AVGX REGR_AVGY REGR_COUNT REGR_INTERCEPT REGR_R2 REGR_SLOPE REGR_SXX REGR_SXY REGR_SYY STDDEV STDDEV_POP STDDEV_SAMP VARIANCE VAR_POP VAR_SAMP PERCENTILE_CONT PERCENTILE_DISC ROW_NUMBER RANK DENSE_RANK PERCENT_RANK CUME_DIST NTILE LAG LEAD FIRST_VALUE LAST_VALUE NTH_VALUE NUM_NONNULLS NUM_NULLS ABS CBRT CEIL CEILING DEGREES DIV EXP FLOOR LN LOG MOD PI POWER RADIANS ROUND SCALE SIGN SQRT TRUNC WIDTH_BUCKET RANDOM SETSEED ACOS ACOSD ASIN ASIND ATAN ATAND ATAN2 ATAN2D COS COSD COT COTD SIN SIND TAN TAND BIT_LENGTH CHAR_LENGTH CHARACTER_LENGTH LOWER OCTET_LENGTH OVERLAY POSITION SUBSTRING TREAT TRIM UPPER ASCII BTRIM CHR CONCAT CONCAT_WS CONVERT CONVERT_FROM CONVERT_TO DECODE ENCODE INITCAP LEFT LENGTH LPAD LTRIM MD5 PARSE_IDENT PG_CLIENT_ENCODING QUOTE_IDENT|10 QUOTE_LITERAL|10 QUOTE_NULLABLE|10 REGEXP_MATCH REGEXP_MATCHES REGEXP_REPLACE REGEXP_SPLIT_TO_ARRAY REGEXP_SPLIT_TO_TABLE REPEAT REPLACE REVERSE RIGHT RPAD RTRIM SPLIT_PART STRPOS SUBSTR TO_ASCII TO_HEX TRANSLATE OCTET_LENGTH GET_BIT GET_BYTE SET_BIT SET_BYTE TO_CHAR TO_DATE TO_NUMBER TO_TIMESTAMP AGE CLOCK_TIMESTAMP|10 DATE_PART DATE_TRUNC ISFINITE JUSTIFY_DAYS JUSTIFY_HOURS JUSTIFY_INTERVAL MAKE_DATE MAKE_INTERVAL|10 MAKE_TIME MAKE_TIMESTAMP|10 MAKE_TIMESTAMPTZ|10 NOW STATEMENT_TIMESTAMP|10 TIMEOFDAY TRANSACTION_TIMESTAMP|10 ENUM_FIRST ENUM_LAST ENUM_RANGE AREA CENTER DIAMETER HEIGHT ISCLOSED ISOPEN NPOINTS PCLOSE POPEN RADIUS WIDTH BOX BOUND_BOX CIRCLE LINE LSEG PATH POLYGON ABBREV BROADCAST HOST HOSTMASK MASKLEN NETMASK NETWORK SET_MASKLEN TEXT INET_SAME_FAMILY INET_MERGE MACADDR8_SET7BIT ARRAY_TO_TSVECTOR GET_CURRENT_TS_CONFIG NUMNODE PLAINTO_TSQUERY PHRASETO_TSQUERY WEBSEARCH_TO_TSQUERY QUERYTREE SETWEIGHT STRIP TO_TSQUERY TO_TSVECTOR JSON_TO_TSVECTOR JSONB_TO_TSVECTOR TS_DELETE TS_FILTER TS_HEADLINE TS_RANK TS_RANK_CD TS_REWRITE TSQUERY_PHRASE TSVECTOR_TO_ARRAY TSVECTOR_UPDATE_TRIGGER TSVECTOR_UPDATE_TRIGGER_COLUMN XMLCOMMENT XMLCONCAT XMLELEMENT XMLFOREST XMLPI XMLROOT XMLEXISTS XML_IS_WELL_FORMED XML_IS_WELL_FORMED_DOCUMENT XML_IS_WELL_FORMED_CONTENT XPATH XPATH_EXISTS XMLTABLE XMLNAMESPACES TABLE_TO_XML TABLE_TO_XMLSCHEMA TABLE_TO_XML_AND_XMLSCHEMA QUERY_TO_XML QUERY_TO_XMLSCHEMA QUERY_TO_XML_AND_XMLSCHEMA CURSOR_TO_XML CURSOR_TO_XMLSCHEMA SCHEMA_TO_XML SCHEMA_TO_XMLSCHEMA SCHEMA_TO_XML_AND_XMLSCHEMA DATABASE_TO_XML DATABASE_TO_XMLSCHEMA DATABASE_TO_XML_AND_XMLSCHEMA XMLATTRIBUTES TO_JSON TO_JSONB ARRAY_TO_JSON ROW_TO_JSON JSON_BUILD_ARRAY JSONB_BUILD_ARRAY JSON_BUILD_OBJECT JSONB_BUILD_OBJECT JSON_OBJECT JSONB_OBJECT JSON_ARRAY_LENGTH JSONB_ARRAY_LENGTH JSON_EACH JSONB_EACH JSON_EACH_TEXT JSONB_EACH_TEXT JSON_EXTRACT_PATH JSONB_EXTRACT_PATH JSON_OBJECT_KEYS JSONB_OBJECT_KEYS JSON_POPULATE_RECORD JSONB_POPULATE_RECORD JSON_POPULATE_RECORDSET JSONB_POPULATE_RECORDSET JSON_ARRAY_ELEMENTS JSONB_ARRAY_ELEMENTS JSON_ARRAY_ELEMENTS_TEXT JSONB_ARRAY_ELEMENTS_TEXT JSON_TYPEOF JSONB_TYPEOF JSON_TO_RECORD JSONB_TO_RECORD JSON_TO_RECORDSET JSONB_TO_RECORDSET JSON_STRIP_NULLS JSONB_STRIP_NULLS JSONB_SET JSONB_INSERT JSONB_PRETTY CURRVAL LASTVAL NEXTVAL SETVAL COALESCE NULLIF GREATEST LEAST ARRAY_APPEND ARRAY_CAT ARRAY_NDIMS ARRAY_DIMS ARRAY_FILL ARRAY_LENGTH ARRAY_LOWER ARRAY_POSITION ARRAY_POSITIONS ARRAY_PREPEND ARRAY_REMOVE ARRAY_REPLACE ARRAY_TO_STRING ARRAY_UPPER CARDINALITY STRING_TO_ARRAY UNNEST ISEMPTY LOWER_INC UPPER_INC LOWER_INF UPPER_INF RANGE_MERGE GENERATE_SERIES GENERATE_SUBSCRIPTS CURRENT_DATABASE CURRENT_QUERY CURRENT_SCHEMA|10 CURRENT_SCHEMAS|10 INET_CLIENT_ADDR INET_CLIENT_PORT INET_SERVER_ADDR INET_SERVER_PORT ROW_SECURITY_ACTIVE FORMAT_TYPE TO_REGCLASS TO_REGPROC TO_REGPROCEDURE TO_REGOPER TO_REGOPERATOR TO_REGTYPE TO_REGNAMESPACE TO_REGROLE COL_DESCRIPTION OBJ_DESCRIPTION SHOBJ_DESCRIPTION TXID_CURRENT TXID_CURRENT_IF_ASSIGNED TXID_CURRENT_SNAPSHOT TXID_SNAPSHOT_XIP TXID_SNAPSHOT_XMAX TXID_SNAPSHOT_XMIN TXID_VISIBLE_IN_SNAPSHOT TXID_STATUS CURRENT_SETTING SET_CONFIG BRIN_SUMMARIZE_NEW_VALUES BRIN_SUMMARIZE_RANGE BRIN_DESUMMARIZE_RANGE GIN_CLEAN_PENDING_LIST SUPPRESS_REDUNDANT_UPDATES_TRIGGER LO_FROM_BYTEA LO_PUT LO_GET LO_CREAT LO_CREATE LO_UNLINK LO_IMPORT LO_EXPORT LOREAD LOWRITE GROUPING CAST ".trim().split(" ").map((function(b){return b.split("|")[0]})).join("|");return{name:"PostgreSQL",aliases:["postgres","postgresql"],supersetOf:"sql",case_insensitive:!0,keywords:{keyword:"ABORT ALTER ANALYZE BEGIN CALL CHECKPOINT|10 CLOSE CLUSTER COMMENT COMMIT COPY CREATE DEALLOCATE DECLARE DELETE DISCARD DO DROP END EXECUTE EXPLAIN FETCH GRANT IMPORT INSERT LISTEN LOAD LOCK MOVE NOTIFY PREPARE REASSIGN|10 REFRESH REINDEX RELEASE RESET REVOKE ROLLBACK SAVEPOINT SECURITY SELECT SET SHOW START TRUNCATE UNLISTEN|10 UPDATE VACUUM|10 VALUES AGGREGATE COLLATION CONVERSION|10 DATABASE DEFAULT PRIVILEGES DOMAIN TRIGGER EXTENSION FOREIGN WRAPPER|10 TABLE FUNCTION GROUP LANGUAGE LARGE OBJECT MATERIALIZED VIEW OPERATOR CLASS FAMILY POLICY PUBLICATION|10 ROLE RULE SCHEMA SEQUENCE SERVER STATISTICS SUBSCRIPTION SYSTEM TABLESPACE CONFIGURATION DICTIONARY PARSER TEMPLATE TYPE USER MAPPING PREPARED ACCESS METHOD CAST AS TRANSFORM TRANSACTION OWNED TO INTO SESSION AUTHORIZATION INDEX PROCEDURE ASSERTION ALL ANALYSE AND ANY ARRAY ASC ASYMMETRIC|10 BOTH CASE CHECK COLLATE COLUMN CONCURRENTLY|10 CONSTRAINT CROSS DEFERRABLE RANGE DESC DISTINCT ELSE EXCEPT FOR FREEZE|10 FROM FULL HAVING ILIKE IN INITIALLY INNER INTERSECT IS ISNULL JOIN LATERAL LEADING LIKE LIMIT NATURAL NOT NOTNULL NULL OFFSET ON ONLY OR ORDER OUTER OVERLAPS PLACING PRIMARY REFERENCES RETURNING SIMILAR SOME SYMMETRIC TABLESAMPLE THEN TRAILING UNION UNIQUE USING VARIADIC|10 VERBOSE WHEN WHERE WINDOW WITH BY RETURNS INOUT OUT SETOF|10 IF STRICT CURRENT CONTINUE OWNER LOCATION OVER PARTITION WITHIN BETWEEN ESCAPE EXTERNAL INVOKER DEFINER WORK RENAME VERSION CONNECTION CONNECT TABLES TEMP TEMPORARY FUNCTIONS SEQUENCES TYPES SCHEMAS OPTION CASCADE RESTRICT ADD ADMIN EXISTS VALID VALIDATE ENABLE DISABLE REPLICA|10 ALWAYS PASSING COLUMNS PATH REF VALUE OVERRIDING IMMUTABLE STABLE VOLATILE BEFORE AFTER EACH ROW PROCEDURAL ROUTINE NO HANDLER VALIDATOR OPTIONS STORAGE OIDS|10 WITHOUT INHERIT DEPENDS CALLED INPUT LEAKPROOF|10 COST ROWS NOWAIT SEARCH UNTIL ENCRYPTED|10 PASSWORD CONFLICT|10 INSTEAD INHERITS CHARACTERISTICS WRITE CURSOR ALSO STATEMENT SHARE EXCLUSIVE INLINE ISOLATION REPEATABLE READ COMMITTED SERIALIZABLE UNCOMMITTED LOCAL GLOBAL SQL PROCEDURES RECURSIVE SNAPSHOT ROLLUP CUBE TRUSTED|10 INCLUDE FOLLOWING PRECEDING UNBOUNDED RANGE GROUPS UNENCRYPTED|10 SYSID FORMAT DELIMITER HEADER QUOTE ENCODING FILTER OFF FORCE_QUOTE FORCE_NOT_NULL FORCE_NULL COSTS BUFFERS TIMING SUMMARY DISABLE_PAGE_SKIPPING RESTART CYCLE GENERATED IDENTITY DEFERRED IMMEDIATE LEVEL LOGGED UNLOGGED OF NOTHING NONE EXCLUDE ATTRIBUTE USAGE ROUTINES TRUE FALSE NAN INFINITY ALIAS BEGIN CONSTANT DECLARE END EXCEPTION RETURN PERFORM|10 RAISE GET DIAGNOSTICS STACKED|10 FOREACH LOOP ELSIF EXIT WHILE REVERSE SLICE DEBUG LOG INFO NOTICE WARNING ASSERT OPEN SUPERUSER NOSUPERUSER CREATEDB NOCREATEDB CREATEROLE NOCREATEROLE INHERIT NOINHERIT LOGIN NOLOGIN REPLICATION NOREPLICATION BYPASSRLS NOBYPASSRLS ",built_in:"CURRENT_TIME CURRENT_TIMESTAMP CURRENT_USER CURRENT_CATALOG|10 CURRENT_DATE LOCALTIME LOCALTIMESTAMP CURRENT_ROLE|10 CURRENT_SCHEMA|10 SESSION_USER PUBLIC FOUND NEW OLD TG_NAME|10 TG_WHEN|10 TG_LEVEL|10 TG_OP|10 TG_RELID|10 TG_RELNAME|10 TG_TABLE_NAME|10 TG_TABLE_SCHEMA|10 TG_NARGS|10 TG_ARGV|10 TG_EVENT|10 TG_TAG|10 ROW_COUNT RESULT_OID|10 PG_CONTEXT|10 RETURNED_SQLSTATE COLUMN_NAME CONSTRAINT_NAME PG_DATATYPE_NAME|10 MESSAGE_TEXT TABLE_NAME SCHEMA_NAME PG_EXCEPTION_DETAIL|10 PG_EXCEPTION_HINT|10 PG_EXCEPTION_CONTEXT|10 SQLSTATE SQLERRM|10 SUCCESSFUL_COMPLETION WARNING DYNAMIC_RESULT_SETS_RETURNED IMPLICIT_ZERO_BIT_PADDING NULL_VALUE_ELIMINATED_IN_SET_FUNCTION PRIVILEGE_NOT_GRANTED PRIVILEGE_NOT_REVOKED STRING_DATA_RIGHT_TRUNCATION DEPRECATED_FEATURE NO_DATA NO_ADDITIONAL_DYNAMIC_RESULT_SETS_RETURNED SQL_STATEMENT_NOT_YET_COMPLETE CONNECTION_EXCEPTION CONNECTION_DOES_NOT_EXIST CONNECTION_FAILURE SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION TRANSACTION_RESOLUTION_UNKNOWN PROTOCOL_VIOLATION TRIGGERED_ACTION_EXCEPTION FEATURE_NOT_SUPPORTED INVALID_TRANSACTION_INITIATION LOCATOR_EXCEPTION INVALID_LOCATOR_SPECIFICATION INVALID_GRANTOR INVALID_GRANT_OPERATION INVALID_ROLE_SPECIFICATION DIAGNOSTICS_EXCEPTION STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER CASE_NOT_FOUND CARDINALITY_VIOLATION DATA_EXCEPTION ARRAY_SUBSCRIPT_ERROR CHARACTER_NOT_IN_REPERTOIRE DATETIME_FIELD_OVERFLOW DIVISION_BY_ZERO ERROR_IN_ASSIGNMENT ESCAPE_CHARACTER_CONFLICT INDICATOR_OVERFLOW INTERVAL_FIELD_OVERFLOW INVALID_ARGUMENT_FOR_LOGARITHM INVALID_ARGUMENT_FOR_NTILE_FUNCTION INVALID_ARGUMENT_FOR_NTH_VALUE_FUNCTION INVALID_ARGUMENT_FOR_POWER_FUNCTION INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION INVALID_CHARACTER_VALUE_FOR_CAST INVALID_DATETIME_FORMAT INVALID_ESCAPE_CHARACTER INVALID_ESCAPE_OCTET INVALID_ESCAPE_SEQUENCE NONSTANDARD_USE_OF_ESCAPE_CHARACTER INVALID_INDICATOR_PARAMETER_VALUE INVALID_PARAMETER_VALUE INVALID_REGULAR_EXPRESSION INVALID_ROW_COUNT_IN_LIMIT_CLAUSE INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE INVALID_TABLESAMPLE_ARGUMENT INVALID_TABLESAMPLE_REPEAT INVALID_TIME_ZONE_DISPLACEMENT_VALUE INVALID_USE_OF_ESCAPE_CHARACTER MOST_SPECIFIC_TYPE_MISMATCH NULL_VALUE_NOT_ALLOWED NULL_VALUE_NO_INDICATOR_PARAMETER NUMERIC_VALUE_OUT_OF_RANGE SEQUENCE_GENERATOR_LIMIT_EXCEEDED STRING_DATA_LENGTH_MISMATCH STRING_DATA_RIGHT_TRUNCATION SUBSTRING_ERROR TRIM_ERROR UNTERMINATED_C_STRING ZERO_LENGTH_CHARACTER_STRING FLOATING_POINT_EXCEPTION INVALID_TEXT_REPRESENTATION INVALID_BINARY_REPRESENTATION BAD_COPY_FILE_FORMAT UNTRANSLATABLE_CHARACTER NOT_AN_XML_DOCUMENT INVALID_XML_DOCUMENT INVALID_XML_CONTENT INVALID_XML_COMMENT INVALID_XML_PROCESSING_INSTRUCTION INTEGRITY_CONSTRAINT_VIOLATION RESTRICT_VIOLATION NOT_NULL_VIOLATION FOREIGN_KEY_VIOLATION UNIQUE_VIOLATION CHECK_VIOLATION EXCLUSION_VIOLATION INVALID_CURSOR_STATE INVALID_TRANSACTION_STATE ACTIVE_SQL_TRANSACTION BRANCH_TRANSACTION_ALREADY_ACTIVE HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION READ_ONLY_SQL_TRANSACTION SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED NO_ACTIVE_SQL_TRANSACTION IN_FAILED_SQL_TRANSACTION IDLE_IN_TRANSACTION_SESSION_TIMEOUT INVALID_SQL_STATEMENT_NAME TRIGGERED_DATA_CHANGE_VIOLATION INVALID_AUTHORIZATION_SPECIFICATION INVALID_PASSWORD DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST DEPENDENT_OBJECTS_STILL_EXIST INVALID_TRANSACTION_TERMINATION SQL_ROUTINE_EXCEPTION FUNCTION_EXECUTED_NO_RETURN_STATEMENT MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED INVALID_CURSOR_NAME EXTERNAL_ROUTINE_EXCEPTION CONTAINING_SQL_NOT_PERMITTED MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED EXTERNAL_ROUTINE_INVOCATION_EXCEPTION INVALID_SQLSTATE_RETURNED NULL_VALUE_NOT_ALLOWED TRIGGER_PROTOCOL_VIOLATED SRF_PROTOCOL_VIOLATED EVENT_TRIGGER_PROTOCOL_VIOLATED SAVEPOINT_EXCEPTION INVALID_SAVEPOINT_SPECIFICATION INVALID_CATALOG_NAME INVALID_SCHEMA_NAME TRANSACTION_ROLLBACK TRANSACTION_INTEGRITY_CONSTRAINT_VIOLATION SERIALIZATION_FAILURE STATEMENT_COMPLETION_UNKNOWN DEADLOCK_DETECTED SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION SYNTAX_ERROR INSUFFICIENT_PRIVILEGE CANNOT_COERCE GROUPING_ERROR WINDOWING_ERROR INVALID_RECURSION INVALID_FOREIGN_KEY INVALID_NAME NAME_TOO_LONG RESERVED_NAME DATATYPE_MISMATCH INDETERMINATE_DATATYPE COLLATION_MISMATCH INDETERMINATE_COLLATION WRONG_OBJECT_TYPE GENERATED_ALWAYS UNDEFINED_COLUMN UNDEFINED_FUNCTION UNDEFINED_TABLE UNDEFINED_PARAMETER UNDEFINED_OBJECT DUPLICATE_COLUMN DUPLICATE_CURSOR DUPLICATE_DATABASE DUPLICATE_FUNCTION DUPLICATE_PREPARED_STATEMENT DUPLICATE_SCHEMA DUPLICATE_TABLE DUPLICATE_ALIAS DUPLICATE_OBJECT AMBIGUOUS_COLUMN AMBIGUOUS_FUNCTION AMBIGUOUS_PARAMETER AMBIGUOUS_ALIAS INVALID_COLUMN_REFERENCE INVALID_COLUMN_DEFINITION INVALID_CURSOR_DEFINITION INVALID_DATABASE_DEFINITION INVALID_FUNCTION_DEFINITION INVALID_PREPARED_STATEMENT_DEFINITION INVALID_SCHEMA_DEFINITION INVALID_TABLE_DEFINITION INVALID_OBJECT_DEFINITION WITH_CHECK_OPTION_VIOLATION INSUFFICIENT_RESOURCES DISK_FULL OUT_OF_MEMORY TOO_MANY_CONNECTIONS CONFIGURATION_LIMIT_EXCEEDED PROGRAM_LIMIT_EXCEEDED STATEMENT_TOO_COMPLEX TOO_MANY_COLUMNS TOO_MANY_ARGUMENTS OBJECT_NOT_IN_PREREQUISITE_STATE OBJECT_IN_USE CANT_CHANGE_RUNTIME_PARAM LOCK_NOT_AVAILABLE OPERATOR_INTERVENTION QUERY_CANCELED ADMIN_SHUTDOWN CRASH_SHUTDOWN CANNOT_CONNECT_NOW DATABASE_DROPPED SYSTEM_ERROR IO_ERROR UNDEFINED_FILE DUPLICATE_FILE SNAPSHOT_TOO_OLD CONFIG_FILE_ERROR LOCK_FILE_EXISTS FDW_ERROR FDW_COLUMN_NAME_NOT_FOUND FDW_DYNAMIC_PARAMETER_VALUE_NEEDED FDW_FUNCTION_SEQUENCE_ERROR FDW_INCONSISTENT_DESCRIPTOR_INFORMATION FDW_INVALID_ATTRIBUTE_VALUE FDW_INVALID_COLUMN_NAME FDW_INVALID_COLUMN_NUMBER FDW_INVALID_DATA_TYPE FDW_INVALID_DATA_TYPE_DESCRIPTORS FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER FDW_INVALID_HANDLE FDW_INVALID_OPTION_INDEX FDW_INVALID_OPTION_NAME FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH FDW_INVALID_STRING_FORMAT FDW_INVALID_USE_OF_NULL_POINTER FDW_TOO_MANY_HANDLES FDW_OUT_OF_MEMORY FDW_NO_SCHEMAS FDW_OPTION_NAME_NOT_FOUND FDW_REPLY_HANDLE FDW_SCHEMA_NOT_FOUND FDW_TABLE_NOT_FOUND FDW_UNABLE_TO_CREATE_EXECUTION FDW_UNABLE_TO_CREATE_REPLY FDW_UNABLE_TO_ESTABLISH_CONNECTION PLPGSQL_ERROR RAISE_EXCEPTION NO_DATA_FOUND TOO_MANY_ROWS ASSERT_FAILURE INTERNAL_ERROR DATA_CORRUPTED INDEX_CORRUPTED "},illegal:/:==|\W\s*\(\*|(^|\s)\$[a-z]|\{\{|[a-z]:\s*$|\.\.\.|TO:|DO:/,contains:[{className:"keyword",variants:[{begin:/\bTEXT\s*SEARCH\b/},{begin:/\b(PRIMARY|FOREIGN|FOR(\s+NO)?)\s+KEY\b/},{begin:/\bPARALLEL\s+(UNSAFE|RESTRICTED|SAFE)\b/},{begin:/\bSTORAGE\s+(PLAIN|EXTERNAL|EXTENDED|MAIN)\b/},{begin:/\bMATCH\s+(FULL|PARTIAL|SIMPLE)\b/},{begin:/\bNULLS\s+(FIRST|LAST)\b/},{begin:/\bEVENT\s+TRIGGER\b/},{begin:/\b(MAPPING|OR)\s+REPLACE\b/},{begin:/\b(FROM|TO)\s+(PROGRAM|STDIN|STDOUT)\b/},{begin:/\b(SHARE|EXCLUSIVE)\s+MODE\b/},{begin:/\b(LEFT|RIGHT)\s+(OUTER\s+)?JOIN\b/},{begin:/\b(FETCH|MOVE)\s+(NEXT|PRIOR|FIRST|LAST|ABSOLUTE|RELATIVE|FORWARD|BACKWARD)\b/},{begin:/\bPRESERVE\s+ROWS\b/},{begin:/\bDISCARD\s+PLANS\b/},{begin:/\bREFERENCING\s+(OLD|NEW)\b/},{begin:/\bSKIP\s+LOCKED\b/},{begin:/\bGROUPING\s+SETS\b/},{begin:/\b(BINARY|INSENSITIVE|SCROLL|NO\s+SCROLL)\s+(CURSOR|FOR)\b/},{begin:/\b(WITH|WITHOUT)\s+HOLD\b/},{begin:/\bWITH\s+(CASCADED|LOCAL)\s+CHECK\s+OPTION\b/},{begin:/\bEXCLUDE\s+(TIES|NO\s+OTHERS)\b/},{begin:/\bFORMAT\s+(TEXT|XML|JSON|YAML)\b/},{begin:/\bSET\s+((SESSION|LOCAL)\s+)?NAMES\b/},{begin:/\bIS\s+(NOT\s+)?UNKNOWN\b/},{begin:/\bSECURITY\s+LABEL\b/},{begin:/\bSTANDALONE\s+(YES|NO|NO\s+VALUE)\b/},{begin:/\bWITH\s+(NO\s+)?DATA\b/},{begin:/\b(FOREIGN|SET)\s+DATA\b/},{begin:/\bSET\s+(CATALOG|CONSTRAINTS)\b/},{begin:/\b(WITH|FOR)\s+ORDINALITY\b/},{begin:/\bIS\s+(NOT\s+)?DOCUMENT\b/},{begin:/\bXML\s+OPTION\s+(DOCUMENT|CONTENT)\b/},{begin:/\b(STRIP|PRESERVE)\s+WHITESPACE\b/},{begin:/\bNO\s+(ACTION|MAXVALUE|MINVALUE)\b/},{begin:/\bPARTITION\s+BY\s+(RANGE|LIST|HASH)\b/},{begin:/\bAT\s+TIME\s+ZONE\b/},{begin:/\bGRANTED\s+BY\b/},{begin:/\bRETURN\s+(QUERY|NEXT)\b/},{begin:/\b(ATTACH|DETACH)\s+PARTITION\b/},{begin:/\bFORCE\s+ROW\s+LEVEL\s+SECURITY\b/},{begin:/\b(INCLUDING|EXCLUDING)\s+(COMMENTS|CONSTRAINTS|DEFAULTS|IDENTITY|INDEXES|STATISTICS|STORAGE|ALL)\b/},{begin:/\bAS\s+(ASSIGNMENT|IMPLICIT|PERMISSIVE|RESTRICTIVE|ENUM|RANGE)\b/}]},{begin:/\b(FORMAT|FAMILY|VERSION)\s*\(/},{begin:/\bINCLUDE\s*\(/,keywords:"INCLUDE"},{begin:/\bRANGE(?!\s*(BETWEEN|UNBOUNDED|CURRENT|[-0-9]+))/},{begin:/\b(VERSION|OWNER|TEMPLATE|TABLESPACE|CONNECTION\s+LIMIT|PROCEDURE|RESTRICT|JOIN|PARSER|COPY|START|END|COLLATION|INPUT|ANALYZE|STORAGE|LIKE|DEFAULT|DELIMITER|ENCODING|COLUMN|CONSTRAINT|TABLE|SCHEMA)\s*=/},{begin:/\b(PG_\w+?|HAS_[A-Z_]+_PRIVILEGE)\b/,relevance:10},{begin:/\bEXTRACT\s*\(/,end:/\bFROM\b/,returnEnd:!0,keywords:{type:"CENTURY DAY DECADE DOW DOY EPOCH HOUR ISODOW ISOYEAR MICROSECONDS MILLENNIUM MILLISECONDS MINUTE MONTH QUARTER SECOND TIMEZONE TIMEZONE_HOUR TIMEZONE_MINUTE WEEK YEAR"}},{begin:/\b(XMLELEMENT|XMLPI)\s*\(\s*NAME/,keywords:{keyword:"NAME"}},{begin:/\b(XMLPARSE|XMLSERIALIZE)\s*\(\s*(DOCUMENT|CONTENT)/,keywords:{keyword:"DOCUMENT CONTENT"}},{beginKeywords:"CACHE INCREMENT MAXVALUE MINVALUE",end:e.C_NUMBER_RE,returnEnd:!0,keywords:"BY CACHE INCREMENT MAXVALUE MINVALUE"},{className:"type",begin:/\b(WITH|WITHOUT)\s+TIME\s+ZONE\b/},{className:"type",begin:/\bINTERVAL\s+(YEAR|MONTH|DAY|HOUR|MINUTE|SECOND)(\s+TO\s+(MONTH|HOUR|MINUTE|SECOND))?\b/},{begin:/\bRETURNS\s+(LANGUAGE_HANDLER|TRIGGER|EVENT_TRIGGER|FDW_HANDLER|INDEX_AM_HANDLER|TSM_HANDLER)\b/,keywords:{keyword:"RETURNS",type:"LANGUAGE_HANDLER TRIGGER EVENT_TRIGGER FDW_HANDLER INDEX_AM_HANDLER TSM_HANDLER"}},{begin:"\\b("+A+")\\s*\\("},{begin:"\\.("+u+")\\b"},{begin:"\\b("+u+")\\s+PATH\\b",keywords:{keyword:"PATH",type:l.replace("PATH ","")}},{className:"type",begin:"\\b("+u+")\\b"},{className:"string",begin:"'",end:"'",contains:[{begin:"''"}]},{className:"string",begin:"(e|E|u&|U&)'",end:"'",contains:[{begin:"\\\\."}],relevance:10},e.END_SAME_AS_BEGIN({begin:r,end:r,contains:[{subLanguage:["pgsql","perl","python","tcl","r","lua","java","php","ruby","bash","scheme","xml","json"],endsWithParent:!0}]}),{begin:'"',end:'"',contains:[{begin:'""'}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:"meta",variants:[{begin:"%(ROW)?TYPE",relevance:10},{begin:"\\$\\d+"},{begin:"^#\\w",end:"$"}]},{className:"symbol",begin:"<<\\s*[a-zA-Z_][a-zA-Z_0-9$]*\\s*>>",relevance:10}]}})),X.registerLanguage("php",(function(e){const t=e.regex,n=/(?![A-Za-z0-9])(?![$])/,r=t.concat(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/,n),o=t.concat(/(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/,n),a={scope:"variable",match:"\\$+"+r},i={scope:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},l=e.inherit(e.APOS_STRING_MODE,{illegal:null}),d="[ \t\n]",m={scope:"string",variants:[e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(i)}),l,{begin:/<<<[ \t]*(?:(\w+)|"(\w+)")\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(i),"on:begin":(Y,O)=>{O.data._beginMatch=Y[1]||Y[2]},"on:end":(Y,O)=>{O.data._beginMatch!==Y[1]&&O.ignoreMatch()}},e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*'(\w+)'\n/,end:/[ \t]*(\w+)\b/})]},A={scope:"number",variants:[{begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{begin:"\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b"},{begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"}],relevance:0},b=["false","null","true"],C=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__LINE__","__METHOD__","__NAMESPACE__","__TRAIT__","die","echo","exit","include","include_once","print","require","require_once","array","abstract","and","as","binary","bool","boolean","break","callable","case","catch","class","clone","const","continue","declare","default","do","double","else","elseif","empty","enddeclare","endfor","endforeach","endif","endswitch","endwhile","enum","eval","extends","final","finally","float","for","foreach","from","global","goto","if","implements","instanceof","insteadof","int","integer","interface","isset","iterable","list","match|0","mixed","new","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],h=["Error|0","AppendIterator","ArgumentCountError","ArithmeticError","ArrayIterator","ArrayObject","AssertionError","BadFunctionCallException","BadMethodCallException","CachingIterator","CallbackFilterIterator","CompileError","Countable","DirectoryIterator","DivisionByZeroError","DomainException","EmptyIterator","ErrorException","Exception","FilesystemIterator","FilterIterator","GlobIterator","InfiniteIterator","InvalidArgumentException","IteratorIterator","LengthException","LimitIterator","LogicException","MultipleIterator","NoRewindIterator","OutOfBoundsException","OutOfRangeException","OuterIterator","OverflowException","ParentIterator","ParseError","RangeException","RecursiveArrayIterator","RecursiveCachingIterator","RecursiveCallbackFilterIterator","RecursiveDirectoryIterator","RecursiveFilterIterator","RecursiveIterator","RecursiveIteratorIterator","RecursiveRegexIterator","RecursiveTreeIterator","RegexIterator","RuntimeException","SeekableIterator","SplDoublyLinkedList","SplFileInfo","SplFileObject","SplFixedArray","SplHeap","SplMaxHeap","SplMinHeap","SplObjectStorage","SplObserver","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],E={keyword:C,literal:(Y=>{const O=[];return Y.forEach((G=>{O.push(G),G.toLowerCase()===G?O.push(G.toUpperCase()):O.push(G.toLowerCase())})),O})(b),built_in:h},v=Y=>Y.map((O=>O.replace(/\|\d+$/,""))),N={variants:[{match:[/new/,t.concat(d,"+"),t.concat("(?!",v(h).join("\\b|"),"\\b)"),o],scope:{1:"keyword",4:"title.class"}}]},_=t.concat(r,"\\b(?!\\()"),S={variants:[{match:[t.concat(/::/,t.lookahead(/(?!class\b)/)),_],scope:{2:"variable.constant"}},{match:[/::/,/class/],scope:{2:"variable.language"}},{match:[o,t.concat(/::/,t.lookahead(/(?!class\b)/)),_],scope:{1:"title.class",3:"variable.constant"}},{match:[o,t.concat("::",t.lookahead(/(?!class\b)/))],scope:{1:"title.class"}},{match:[o,/::/,/class/],scope:{1:"title.class",3:"variable.language"}}]},R={scope:"attr",match:t.concat(r,t.lookahead(":"),t.lookahead(/(?!::)/))},q={relevance:0,begin:/\(/,end:/\)/,keywords:E,contains:[R,a,S,e.C_BLOCK_COMMENT_MODE,m,A,N]},I={relevance:0,match:[/\b/,t.concat("(?!fn\\b|function\\b|",v(C).join("\\b|"),"|",v(h).join("\\b|"),"\\b)"),r,t.concat(d,"*"),t.lookahead(/(?=\()/)],scope:{3:"title.function.invoke"},contains:[q]};q.contains.push(I);const Q=[R,S,e.C_BLOCK_COMMENT_MODE,m,A,N];return{case_insensitive:!1,keywords:E,contains:[{begin:t.concat(/#\[\s*/,o),beginScope:"meta",end:/]/,endScope:"meta",keywords:{literal:b,keyword:["new","array"]},contains:[{begin:/\[/,end:/]/,keywords:{literal:b,keyword:["new","array"]},contains:["self",...Q]},...Q,{scope:"meta",match:o}]},e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{contains:[{scope:"doctag",match:"@[A-Za-z]+"}]}),{match:/__halt_compiler\(\);/,keywords:"__halt_compiler",starts:{scope:"comment",end:e.MATCH_NOTHING_RE,contains:[{match:/\?>/,scope:"meta",endsParent:!0}]}},{scope:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?=/},{begin:/<\?/,relevance:.1},{begin:/\?>/}]},{scope:"variable.language",match:/\$this\b/},a,I,S,{match:[/const/,/\s/,r],scope:{1:"keyword",3:"variable.constant"}},N,{scope:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{scope:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:E,contains:["self",a,S,e.C_BLOCK_COMMENT_MODE,m,A]}]},{scope:"class",variants:[{beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:"title.class"})]},{beginKeywords:"use",relevance:0,end:";",contains:[{match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},m,A]}})),X.registerLanguage("php-template",(function(e){return{name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}})),X.registerLanguage("plaintext",(function(e){return{name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}})),X.registerLanguage("python",(function(e){const t=e.regex,n=new RegExp("[\\p{XID_Start}_]\\p{XID_Continue}*","u"),r=["and","as","assert","async","await","break","case","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","match","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],i={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:r,built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]},l={className:"meta",begin:/^(>>>|\.\.\.) /},u={className:"subst",begin:/\{/,end:/\}/,keywords:i,illegal:/#/},c={begin:/\{\{/,relevance:0},p={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,l],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,l],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,l,c,u]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,l,c,u]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,c,u]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,c,u]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},d="[0-9](_?[0-9])*",m=`(\\b(${d}))?\\.(${d})|\\b(${d})\\.`,A=`\\b|${r.join("|")}`,b={className:"number",relevance:0,variants:[{begin:`(\\b(${d})|(${m}))[eE][+-]?(${d})[jJ]?(?=${A})`},{begin:`(${m})[jJ]?`},{begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${A})`},{begin:`\\b0[bB](_?[01])+[lL]?(?=${A})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${A})`},{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${A})`},{begin:`\\b(${d})[jJ](?=${A})`}]},C={className:"comment",begin:t.lookahead(/# type:/),end:/$/,keywords:i,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},h={className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:["self",l,b,p,e.HASH_COMMENT_MODE]}]};return u.contains=[p,b,l],{name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:i,illegal:/(<\/|\?)|=>/,contains:[l,b,{begin:/\bself\b/},{beginKeywords:"if",relevance:0},p,C,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,n],scope:{1:"keyword",3:"title.function"},contains:[h]},{variants:[{match:[/\bclass/,/\s+/,n,/\s*/,/\(\s*/,n,/\s*\)/]},{match:[/\bclass/,/\s+/,n]}],scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[b,h,p]}]}})),X.registerLanguage("python-repl",(function(e){return{aliases:["pycon"],contains:[{className:"meta.prompt",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}})),X.registerLanguage("r",(function(e){const t=e.regex,n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,r=t.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),o=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,a=t.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/);return{name:"R",keywords:{$pattern:n,keyword:"function if in break next repeat else for while",literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"},contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/,starts:{end:t.lookahead(t.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{scope:"variable",variants:[{match:n},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{1:"operator",2:"number"},match:[o,r]},{scope:{1:"operator",2:"number"},match:[/%[^%]*%/,r]},{scope:{1:"punctuation",2:"number"},match:[a,r]},{scope:{2:"number"},match:[/[^a-zA-Z0-9._]|^/,r]}]},{scope:{3:"operator"},match:[n,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:o},{match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:a},{begin:"`",end:"`",contains:[{begin:/\\./}]}]}})),X.registerLanguage("ruby",(function(e){const t=e.regex,n="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",r=t.either(/\b([A-Z]+[a-z0-9]+)+/,/\b([A-Z]+[a-z0-9]+)+[A-Z]+/),o=t.concat(r,/(::\w+)*/),s={"variable.constant":["__FILE__","__LINE__","__ENCODING__"],"variable.language":["self","super"],keyword:["alias","and","begin","BEGIN","break","case","class","defined","do","else","elsif","end","END","ensure","for","if","in","module","next","not","or","redo","require","rescue","retry","return","then","undef","unless","until","when","while","yield","include","extend","prepend","public","private","protected","raise","throw"],built_in:["proc","lambda","attr_accessor","attr_reader","attr_writer","define_method","private_constant","module_function"],literal:["true","false","nil"]},i={className:"doctag",begin:"@[A-Za-z]+"},l={begin:"#<",end:">"},u=[e.COMMENT("#","$",{contains:[i]}),e.COMMENT("^=begin","^=end",{contains:[i],relevance:10}),e.COMMENT("^__END__",e.MATCH_NOTHING_RE)],c={className:"subst",begin:/#\{/,end:/\}/,keywords:s},p={className:"string",contains:[e.BACKSLASH_ESCAPE,c],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?</,end:/>/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:t.concat(/<<[-~]?'?/,t.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,c]})]}]},m="[0-9](_?[0-9])*",A={className:"number",relevance:0,variants:[{begin:`\\b([1-9](_?[0-9])*|0)(\\.(${m}))?([eE][+-]?(${m})|r)?i?\\b`},{begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{begin:"\\b0(_?[0-7])+r?i?\\b"}]},b={variants:[{match:/\(\)/},{className:"params",begin:/\(/,end:/(?=\))/,excludeBegin:!0,endsParent:!0,keywords:s}]},_=[p,{variants:[{match:[/class\s+/,o,/\s+<\s+/,o]},{match:[/\b(class|module)\s+/,o]}],scope:{2:"title.class",4:"title.class.inherited"},keywords:s},{match:[/(include|extend)\s+/,o],scope:{2:"title.class"},keywords:s},{relevance:0,match:[o,/\.new[. (]/],scope:{1:"title.class"}},{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},{relevance:0,match:r,scope:"title.class"},{match:[/def/,/\s+/,n],scope:{1:"keyword",3:"title.function"},contains:[b]},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[p,{begin:n}],relevance:0},A,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{className:"params",begin:/\|/,end:/\|/,excludeBegin:!0,excludeEnd:!0,relevance:0,keywords:s},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(l,u),relevance:0}].concat(l,u);c.contains=_,b.contains=_;const I=[{begin:/^\s*=>/,starts:{end:"$",contains:_}},{className:"meta.prompt",begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])",starts:{end:"$",keywords:s,contains:_}}];return u.unshift(l),{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:s,illegal:/\/\*/,contains:[e.SHEBANG({binary:"ruby"})].concat(I).concat(u).concat(_)}})),X.registerLanguage("rust",(function(e){const t=e.regex,n={className:"title.function.invoke",relevance:0,begin:t.concat(/\b/,/(?!let|for|while|if|else|match\b)/,e.IDENT_RE,t.lookahead(/\s*\(/))},r="([ui](8|16|32|64|128|size)|f(32|64))?",s=["drop ","Copy","Send","Sized","Sync","Drop","Fn","FnMut","FnOnce","ToOwned","Clone","Debug","PartialEq","PartialOrd","Eq","Ord","AsRef","AsMut","Into","From","Default","Iterator","Extend","IntoIterator","DoubleEndedIterator","ExactSizeIterator","SliceConcatExt","ToString","assert!","assert_eq!","bitflags!","bytes!","cfg!","col!","concat!","concat_idents!","debug_assert!","debug_assert_eq!","env!","eprintln!","panic!","file!","format!","format_args!","include_bytes!","include_str!","line!","local_data_key!","module_path!","option_env!","print!","println!","select!","stringify!","try!","unimplemented!","unreachable!","vec!","write!","writeln!","macro_rules!","assert_ne!","debug_assert_ne!"],i=["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"];return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",type:i,keyword:["abstract","as","async","await","become","box","break","const","continue","crate","do","dyn","else","enum","extern","false","final","fn","for","if","impl","in","let","loop","macro","match","mod","move","mut","override","priv","pub","ref","return","self","Self","static","struct","super","trait","true","try","type","typeof","unsafe","unsized","use","virtual","where","while","yield"],literal:["true","false","Some","None","Ok","Err"],built_in:s},illegal:"</",contains:[e.C_LINE_COMMENT_MODE,e.COMMENT("/\\*","\\*/",{contains:["self"]}),e.inherit(e.QUOTE_STRING_MODE,{begin:/b?"/,illegal:null}),{className:"string",variants:[{begin:/b?r(#*)"(.|\n)*?"\1(?!#)/},{begin:/b?'\\?(x\w{2}|u\w{4}|U\w{8}|.)'/}]},{className:"symbol",begin:/'[a-zA-Z_][a-zA-Z0-9_]*/},{className:"number",variants:[{begin:"\\b0b([01_]+)"+r},{begin:"\\b0o([0-7_]+)"+r},{begin:"\\b0x([A-Fa-f0-9_]+)"+r},{begin:"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)"+r}],relevance:0},{begin:[/fn/,/\s+/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",3:"title.function"}},{className:"meta",begin:"#!?\\[",end:"\\]",contains:[{className:"string",begin:/"/,end:/"/}]},{begin:[/let/,/\s+/,/(?:mut\s+)?/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",3:"keyword",4:"variable"}},{begin:[/for/,/\s+/,e.UNDERSCORE_IDENT_RE,/\s+/,/in/],className:{1:"keyword",3:"variable",5:"keyword"}},{begin:[/type/,/\s+/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",3:"title.class"}},{begin:[/(?:trait|enum|struct|union|impl|for)/,/\s+/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",3:"title.class"}},{begin:e.IDENT_RE+"::",keywords:{keyword:"Self",built_in:s,type:i}},{className:"punctuation",begin:"->"},n]}})),X.registerLanguage("scss",(function(e){const t=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}))(e),n=zy,r=Vy,o="@[a-z-]+",i={className:"variable",begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b",relevance:0};return{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.CSS_NUMBER_MODE,{className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",begin:"\\b("+qy.join("|")+")\\b",relevance:0},{className:"selector-pseudo",begin:":("+r.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+n.join("|")+")"},i,{begin:/\(/,end:/\)/,contains:[t.CSS_NUMBER_MODE]},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+Gy.join("|")+")\\b"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:/:/,end:/[;}{]/,relevance:0,contains:[t.BLOCK_COMMENT,i,t.HEXCOLOR,t.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT,t.FUNCTION_DISPATCH]},{begin:"@(page|font-face)",keywords:{$pattern:o,keyword:"@page @font-face"}},{begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:"and or not only",attribute:Hy.join(" ")},contains:[{begin:o,className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"},i,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,t.CSS_NUMBER_MODE]},t.FUNCTION_DISPATCH]}})),X.registerLanguage("shell",(function(e){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta.prompt",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}})),X.registerLanguage("sql",(function(e){const t=e.regex,n=e.COMMENT("--","$"),a=["true","false","unknown"],i=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],c=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],d=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],m=c,A=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((E=>!c.includes(E))),h={begin:t.concat(/\b/,t.either(...m),/\s*\(/),relevance:0,keywords:{built_in:m}};return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,keyword:function(E,{exceptions:v,when:N}={}){const _=N;return v=v||[],E.map((S=>S.match(/\|\d+$/)||v.includes(S)?S:_(S)?`${S}|0`:S))}(A,{when:E=>E.length<3}),literal:a,type:i,built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"]},contains:[{begin:t.either(...d),relevance:0,keywords:{$pattern:/[\w\.]+/,keyword:A.concat(d),literal:a,type:i}},{className:"type",begin:t.either("double precision","large object","with timezone","without timezone")},h,{className:"variable",begin:/@[a-z0-9][a-z0-9_]*/},{className:"string",variants:[{begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,{className:"operator",begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}})),X.registerLanguage("swift",(function(e){const t={match:/\s+/,relevance:0},n=e.COMMENT("/\\*","\\*/",{contains:["self"]}),r=[e.C_LINE_COMMENT_MODE,n],o={match:[/\./,ot(...Yy,...n1)],className:{2:"keyword"}},a={match:de(/\./,ot(...Pu)),relevance:0},s=Pu.filter((te=>"string"==typeof te)).concat(["_|0"]),l={variants:[{className:"keyword",match:ot(...Pu.filter((te=>"string"!=typeof te)).concat(Ky).map(Bu),...n1)}]},u={$pattern:ot(/\b\w+/,/#\w+/),keyword:s.concat(Qy),literal:r1},c=[o,a,l],m=[{match:de(/\./,ot(...o1)),relevance:0},{className:"built_in",match:de(/\b/,ot(...o1),/(?=\()/)}],A={match:/->/,relevance:0},C=[A,{className:"operator",relevance:0,variants:[{match:Uu},{match:`\\.(\\.|${s1})+`}]}],h="([0-9]_*)+",g="([0-9a-fA-F]_*)+",E={className:"number",relevance:0,variants:[{match:`\\b(${h})(\\.(${h}))?([eE][+-]?(${h}))?\\b`},{match:`\\b0x(${g})(\\.(${g}))?([pP][+-]?(${h}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},v=(te="")=>({className:"subst",variants:[{match:de(/\\/,te,/[0\\tnr"']/)},{match:de(/\\/,te,/u\{[0-9a-fA-F]{1,8}\}/)}]}),N=(te="")=>({className:"subst",match:de(/\\/,te,/[\t ]*(?:[\r\n]|\r\n)/)}),_=(te="")=>({className:"subst",label:"interpol",begin:de(/\\/,te,/\(/),end:/\)/}),S=(te="")=>({begin:de(te,/"""/),end:de(/"""/,te),contains:[v(te),N(te),_(te)]}),R=(te="")=>({begin:de(te,/"/),end:de(/"/,te),contains:[v(te),_(te)]}),q={className:"string",variants:[S(),S("#"),S("##"),S("###"),R(),R("#"),R("##"),R("###")]},I=[e.BACKSLASH_ESCAPE,{begin:/\[/,end:/\]/,relevance:0,contains:[e.BACKSLASH_ESCAPE]}],Q={begin:/\/[^\s](?=[^/\n]*\/)/,end:/\//,contains:I},ie=te=>{const Re=de(te,/\//),ke=de(/\//,te);return{begin:Re,end:ke,contains:[...I,{scope:"comment",begin:`#(?!.*${ke})`,end:/$/}]}},Y={scope:"regexp",variants:[ie("###"),ie("##"),ie("#"),Q]},O={match:de(/`/,on,/`/)},x=[O,{className:"variable",match:/\$\d+/},{className:"variable",match:`\\$${Ms}+`}],k=[{match:/(@|#(un)?)available/,scope:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:e3,contains:[...C,E,q]}]}},{scope:"keyword",match:de(/@/,ot(...Jy))},{scope:"meta",match:de(/@/,on)}],H={match:Is(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:de(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,Ms,"+")},{className:"type",match:qu,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:de(/\s+&\s+/,Is(qu)),relevance:0}]},j={begin:/</,end:/>/,keywords:u,contains:[...r,...c,...k,A,H]};H.contains.push(j);const ce={begin:/\(/,end:/\)/,relevance:0,keywords:u,contains:["self",{match:de(on,/\s*:/),keywords:"_|0",relevance:0},...r,Y,...c,...m,...C,E,q,...x,...k,H]},se={begin:/</,end:/>/,keywords:"repeat each",contains:[...r,H]},mt={begin:/\(/,end:/\)/,keywords:u,contains:[{begin:ot(Is(de(on,/\s*:/)),Is(de(on,/\s+/,on,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:on}]},...r,...c,...C,E,q,...k,H,ce],endsParent:!0,illegal:/["']/},Ft={match:[/(func|macro)/,/\s+/,ot(O.match,on,Uu)],className:{1:"keyword",3:"title.function"},contains:[se,mt,t],illegal:[/\[/,/%/]},ht={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[se,mt,t],illegal:/\[|%/},Ge={match:[/operator/,/\s+/,Uu],className:{1:"keyword",3:"title"}},Ct={begin:[/precedencegroup/,/\s+/,qu],className:{1:"keyword",3:"title"},contains:[H],keywords:[...Xy,...r1],end:/}/};for(const te of q.variants){const Re=te.contains.find((Ce=>"interpol"===Ce.label));Re.keywords=u;const ke=[...c,...m,...C,E,q,...x];Re.contains=[...ke,{begin:/\(/,end:/\)/,contains:["self",...ke]}]}return{name:"Swift",keywords:u,contains:[...r,Ft,ht,{beginKeywords:"struct protocol class extension enum actor",end:"\\{",excludeEnd:!0,keywords:u,contains:[e.inherit(e.TITLE_MODE,{className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...c]},Ge,Ct,{beginKeywords:"import",end:/$/,contains:[...r],relevance:0},Y,...c,...m,...C,E,q,...x,...k,H,ce]}})),X.registerLanguage("typescript",(function(e){const t=function(e){const t=e.regex,r=Fs,o_begin="<>",o_end="</>",s={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(T,y)=>{const L=T[0].length+T.index,k=T.input[L];if("<"===k||","===k)return void y.ignoreMatch();let H;">"===k&&(((T,{after:y})=>{const L="</"+T[0].slice(1);return-1!==T.input.indexOf(L,y)})(T,{after:L})||y.ignoreMatch());const j=T.input.substring(L);((H=j.match(/^\s*=/))||(H=j.match(/^\s+extends\s+/))&&0===H.index)&&y.ignoreMatch()}},i={$pattern:Fs,keyword:l1,literal:u1,built_in:g1,"variable.language":f1},l="[0-9](_?[0-9])*",u=`\\.(${l})`,c="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",p={className:"number",variants:[{begin:`(\\b(${c})((${u})|\\.)?|(${u}))[eE][+-]?(${l})\\b`},{begin:`\\b(${c})\\b((${u})\\b|\\.)?|(${u})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},d={className:"subst",begin:"\\$\\{",end:"\\}",keywords:i,contains:[]},m={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"xml"}},A={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"css"}},b={begin:"gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"graphql"}},C={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,d]},g={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:r+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},E=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,A,b,C,{match:/\$\d+/},p];d.contains=E.concat({begin:/\{/,end:/\}/,keywords:i,contains:["self"].concat(E)});const v=[].concat(g,d.contains),N=v.concat([{begin:/\(/,end:/\)/,keywords:i,contains:["self"].concat(v)}]),_={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:N},S={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,t.concat(r,"(",t.concat(/\./,r),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,r],scope:{1:"keyword",3:"title.class"}}]},R={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...c1,...d1]}},I={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[_],illegal:/%/},Y={match:t.concat(/\b/,(T=[...p1,"super","import"],t.concat("(?!",T.join("|"),")")),r,t.lookahead(/\(/)),className:"title.function",relevance:0},O={begin:t.concat(/\./,t.lookahead(t.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},G={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},_]},P="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",x={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(P)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[_]};var T;return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{PARAMS_CONTAINS:N,CLASS_REFERENCE:R},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,m,A,b,C,g,{match:/\$\d+/},p,R,{className:"attr",begin:r+t.lookahead(":"),relevance:0},x,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[g,e.REGEXP_MODE,{className:"function",begin:P,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:N}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:o_begin,end:o_end},{match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:s.begin,"on:begin":s.isTrulyOpeningTag,end:s.end}],subLanguage:"xml",contains:[{begin:s.begin,end:s.end,skip:!0,contains:["self"]}]}]},I,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[_,e.inherit(e.TITLE_MODE,{begin:r,className:"title.function"})]},{match:/\.\.\./,relevance:0},O,{match:"\\$"+r,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[_]},Y,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},S,G,{match:/\$[(.]/}]}}(e),n=Fs,r=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],o={beginKeywords:"namespace",end:/\{/,excludeEnd:!0,contains:[t.exports.CLASS_REFERENCE]},a={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:{keyword:"interface extends",built_in:r},contains:[t.exports.CLASS_REFERENCE]},l={$pattern:Fs,keyword:l1.concat(["type","namespace","interface","public","private","protected","implements","declare","abstract","readonly","enum","override"]),literal:u1,built_in:g1.concat(r),"variable.language":f1},u={className:"meta",begin:"@"+n},c=(d,m,A)=>{const b=d.contains.findIndex((C=>C.label===m));if(-1===b)throw new Error("can not find mode to replace");d.contains.splice(b,1,A)};return Object.assign(t.keywords,l),t.exports.PARAMS_CONTAINS.push(u),t.contains=t.contains.concat([u,o,a]),c(t,"shebang",e.SHEBANG()),c(t,"use_strict",{className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/}),t.contains.find((d=>"func.def"===d.label)).relevance=0,Object.assign(t,{name:"TypeScript",aliases:["ts","tsx","mts","cts"]}),t})),X.registerLanguage("vbnet",(function(e){const t=e.regex,o=/\d{1,2}\/\d{1,2}\/\d{4}/,a=/\d{4}-\d{1,2}-\d{1,2}/,s=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,i=/\d{1,2}(:\d{1,2}){1,2}/,l={className:"literal",variants:[{begin:t.concat(/# */,t.either(a,o),/ *#/)},{begin:t.concat(/# */,i,/ *#/)},{begin:t.concat(/# */,s,/ *#/)},{begin:t.concat(/# */,t.either(a,o),/ +/,t.either(s,i),/ *#/)}]},p=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]}),d=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",literal:"true false nothing"},illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/,end:/"/,illegal:/\n/,contains:[{begin:/""/}]},l,{className:"number",relevance:0,variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{className:"label",begin:/^\w+:/},p,d,{className:"meta",begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,end:/$/,keywords:{keyword:"const disable else elseif enable end externalsource if region then"},contains:[d]}]}})),X.registerLanguage("wasm",(function(e){e.regex;const t=e.COMMENT(/\(;/,/;\)/);return t.contains.push("self"),{name:"WebAssembly",keywords:{$pattern:/[\w.]+/,keyword:["anyfunc","block","br","br_if","br_table","call","call_indirect","data","drop","elem","else","end","export","func","global.get","global.set","local.get","local.set","local.tee","get_global","get_local","global","if","import","local","loop","memory","memory.grow","memory.size","module","mut","nop","offset","param","result","return","select","set_global","set_local","start","table","tee_local","then","type","unreachable"]},contains:[e.COMMENT(/;;/,/$/),t,{match:[/(?:offset|align)/,/\s*/,/=/],className:{1:"keyword",3:"operator"}},{className:"variable",begin:/\$[\w_]+/},{match:/(\((?!;)|\))+/,className:"punctuation",relevance:0},{begin:[/(?:func|call|call_indirect)/,/\s+/,/\$[^\s)]+/],className:{1:"keyword",3:"title.function"}},e.QUOTE_STRING_MODE,{match:/(i32|i64|f32|f64)(?!\.)/,className:"type"},{className:"keyword",match:/\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/},{className:"number",relevance:0,match:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/}]}})),X.registerLanguage("xml",(function(e){const t=e.regex,n=t.concat(/[\p{L}_]/u,t.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),o={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},a={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},s=e.inherit(a,{begin:/\(/,end:/\)/}),i=e.inherit(e.APOS_STRING_MODE,{className:"string"}),l=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),u={endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",begin:/[\p{L}0-9._:-]+/u,relevance:0},{begin:/=\s*/,relevance:0,contains:[{className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[o]},{begin:/'/,end:/'/,contains:[o]},{begin:/[^\s"'=<>`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,relevance:10,contains:[a,l,i,s,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,contains:[a,s,l,i]}]}]},e.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},o,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[l]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[u],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[u],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:t.concat(/</,t.lookahead(t.concat(n,t.either(/\/>/,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:n,relevance:0,starts:u}]},{className:"tag",begin:t.concat(/<\//,t.lookahead(t.concat(n,/>/))),contains:[{className:"name",begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}})),X.registerLanguage("yaml",(function(e){const t="true false yes no null",n="[\\w#;/?:@&=+$,.~*'()[\\]]+",a={className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},s=e.inherit(a,{variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),d={end:",",endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},m={begin:/\{/,end:/\}/,contains:[d],illegal:"\\n",relevance:0},A={begin:"\\[",end:"\\]",contains:[d],illegal:"\\n",relevance:0},b=[{className:"attr",variants:[{begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$",relevance:10},{className:"string",begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+n},{className:"type",begin:"!<"+n+">"},{className:"type",begin:"!"+n},{className:"type",begin:"!!"+n},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},{className:"number",begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b"},{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},m,A,a],C=[...b];return C.pop(),C.push(s),d.contains=C,{name:"YAML",case_insensitive:!0,aliases:["yml"],contains:b}}));const m1=X,l3=eD({html:!1,typographer:!0,highlight:function(e,t){const n=zn();if(t&&m1.getLanguage(t))try{return`<div class="whitespace-pre-line w-full rounded-lg bg-black-900 pb-4 relative font-mono font-normal text-sm text-slate-200">\n <div class="w-full flex items-center absolute top-0 left-0 text-slate-200 bg-stone-800 px-4 py-2 text-xs font-sans justify-between rounded-t-md">\n <div class="flex gap-2"><code class="text-xs">${t}</code></div>\n <button data-code-snippet data-code="code-${n}" class="flex items-center gap-x-2">\n <svg stroke="currentColor" fill="none" stroke-width="2" viewBox="0 0 24 24" stroke-linecap="round" stroke-linejoin="round" class="h-4 w-4" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect></svg>\n <p>Copy</p>\n </button>\n </div>\n <pre class="whitespace-pre-wrap px-2">`+m1.highlight(e,{language:t,ignoreIllegals:!0}).value+"</pre></div>"}catch{}return`<div class="whitespace-pre-line w-full rounded-lg bg-black-900 pb-4 relative font-mono font-normal text-sm text-slate-200">\n <div class="w-full flex items-center absolute top-0 left-0 text-slate-200 bg-stone-800 px-4 py-2 text-xs font-sans justify-between rounded-t-md">\n <div class="flex gap-2"><code class="text-xs"></code></div>\n <button data-code-snippet data-code="code-${n}" class="flex items-center gap-x-2">\n <svg stroke="currentColor" fill="none" stroke-width="2" viewBox="0 0 24 24" stroke-linecap="round" stroke-linejoin="round" class="h-4 w-4" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect></svg>\n <p>Copy</p>\n </button>\n </div>\n <pre class="whitespace-pre-wrap px-2">`+db.encode(e)+"</pre></div>"}}).disable("list");function h1(e=""){return l3.render(e)}/*! @license DOMPurify 3.0.8 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.8/LICENSE */const{entries:E1,setPrototypeOf:A1,isFrozen:u3,getPrototypeOf:c3,getOwnPropertyDescriptor:Hu}=Object;let{freeze:Qe,seal:Mt,create:b1}=Object,{apply:Vu,construct:zu}=typeof Reflect<"u"&&Reflect;Qe||(Qe=function(t){return t}),Mt||(Mt=function(t){return t}),Vu||(Vu=function(t,n,r){return t.apply(n,r)}),zu||(zu=function(t,n){return new t(...n)});const Bs=Tt(Array.prototype.forEach),_1=Tt(Array.prototype.pop),qo=Tt(Array.prototype.push),Ps=Tt(String.prototype.toLowerCase),Gu=Tt(String.prototype.toString),d3=Tt(String.prototype.match),Ho=Tt(String.prototype.replace),p3=Tt(String.prototype.indexOf),f3=Tt(String.prototype.trim),gt=Tt(RegExp.prototype.test),Vo=function(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return zu(e,n)}}(TypeError);function Tt(e){return function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return Vu(e,t,r)}}function J(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Ps;A1&&A1(e,null);let r=t.length;for(;r--;){let o=t[r];if("string"==typeof o){const a=n(o);a!==o&&(u3(t)||(t[r]=a),o=a)}e[o]=!0}return e}function m3(e){for(let t=0;t<e.length;t++)void 0===Hu(e,t)&&(e[t]=null);return e}function Yn(e){const t=b1(null);for(const[n,r]of E1(e))void 0!==Hu(e,n)&&(Array.isArray(r)?t[n]=m3(r):r&&"object"==typeof r&&r.constructor===Object?t[n]=Yn(r):t[n]=r);return t}function Us(e,t){for(;null!==e;){const r=Hu(e,t);if(r){if(r.get)return Tt(r.get);if("function"==typeof r.value)return Tt(r.value)}e=c3(e)}return function(r){return console.warn("fallback value for",r),null}}const v1=Qe(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),$u=Qe(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Zu=Qe(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),h3=Qe(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),ju=Qe(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),E3=Qe(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),D1=Qe(["#text"]),y1=Qe(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),Wu=Qe(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),T1=Qe(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),qs=Qe(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),A3=Mt(/\{\{[\w\W]*|[\w\W]*\}\}/gm),b3=Mt(/<%[\w\W]*|[\w\W]*%>/gm),_3=Mt(/\${[\w\W]*}/gm),v3=Mt(/^data-[\-\w.\u00B7-\uFFFF]/),D3=Mt(/^aria-[\-\w]+$/),C1=Mt(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),y3=Mt(/^(?:\w+script|data):/i),T3=Mt(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),N1=Mt(/^html$/i);var S1=Object.freeze({__proto__:null,MUSTACHE_EXPR:A3,ERB_EXPR:b3,TMPLIT_EXPR:_3,DATA_ATTR:v3,ARIA_ATTR:D3,IS_ALLOWED_URI:C1,IS_SCRIPT_OR_DATA:y3,ATTR_WHITESPACE:T3,DOCTYPE_NAME:N1});var S3=function w1(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:typeof window>"u"?null:window;const t=$=>w1($);if(t.version="3.0.8",t.removed=[],!e||!e.document||9!==e.document.nodeType)return t.isSupported=!1,t;let{document:n}=e;const r=n,o=r.currentScript,{DocumentFragment:a,HTMLTemplateElement:s,Node:i,Element:l,NodeFilter:u,NamedNodeMap:c=e.NamedNodeMap||e.MozNamedAttrMap,HTMLFormElement:p,DOMParser:d,trustedTypes:m}=e,A=l.prototype,b=Us(A,"cloneNode"),C=Us(A,"nextSibling"),h=Us(A,"childNodes"),g=Us(A,"parentNode");if("function"==typeof s){const $=n.createElement("template");$.content&&$.content.ownerDocument&&(n=$.content.ownerDocument)}let E,v="";const{implementation:N,createNodeIterator:_,createDocumentFragment:S,getElementsByTagName:R}=n,{importNode:q}=r;let I={};t.isSupported="function"==typeof E1&&"function"==typeof g&&N&&void 0!==N.createHTMLDocument;const{MUSTACHE_EXPR:Q,ERB_EXPR:ie,TMPLIT_EXPR:Y,DATA_ATTR:O,ARIA_ATTR:G,IS_SCRIPT_OR_DATA:P,ATTR_WHITESPACE:x}=S1;let{IS_ALLOWED_URI:T}=S1,y=null;const L=J({},[...v1,...$u,...Zu,...ju,...D1]);let k=null;const H=J({},[...y1,...Wu,...T1,...qs]);let j=Object.seal(b1(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),fe=null,ce=null,se=!0,le=!0,mt=!1,Ft=!0,ht=!1,Ge=!1,Ct=!1,te=!1,Re=!1,ke=!1,Ce=!1,Hs=!0,Pr=!1,Ur=!0,De=!1,oe={},Bt=null;const jt=J({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let qr=null;const Hr=J({},["audio","video","img","source","image","track"]);let B=null;const V=J({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),K="http://www.w3.org/1998/Math/MathML",ne="http://www.w3.org/2000/svg",ge="http://www.w3.org/1999/xhtml";let $e=ge,zo=!1,Go=null;const l8=J({},[K,ne,ge],Gu);let $o=null;const u8=["application/xhtml+xml","text/html"];let Ie=null,Vr=null;const d8=n.createElement("form"),M1=function(D){return D instanceof RegExp||D instanceof Function},Xu=function(){let D=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!Vr||Vr!==D){if((!D||"object"!=typeof D)&&(D={}),D=Yn(D),$o=-1===u8.indexOf(D.PARSER_MEDIA_TYPE)?"text/html":D.PARSER_MEDIA_TYPE,Ie="application/xhtml+xml"===$o?Gu:Ps,y="ALLOWED_TAGS"in D?J({},D.ALLOWED_TAGS,Ie):L,k="ALLOWED_ATTR"in D?J({},D.ALLOWED_ATTR,Ie):H,Go="ALLOWED_NAMESPACES"in D?J({},D.ALLOWED_NAMESPACES,Gu):l8,B="ADD_URI_SAFE_ATTR"in D?J(Yn(V),D.ADD_URI_SAFE_ATTR,Ie):V,qr="ADD_DATA_URI_TAGS"in D?J(Yn(Hr),D.ADD_DATA_URI_TAGS,Ie):Hr,Bt="FORBID_CONTENTS"in D?J({},D.FORBID_CONTENTS,Ie):jt,fe="FORBID_TAGS"in D?J({},D.FORBID_TAGS,Ie):{},ce="FORBID_ATTR"in D?J({},D.FORBID_ATTR,Ie):{},oe="USE_PROFILES"in D&&D.USE_PROFILES,se=!1!==D.ALLOW_ARIA_ATTR,le=!1!==D.ALLOW_DATA_ATTR,mt=D.ALLOW_UNKNOWN_PROTOCOLS||!1,Ft=!1!==D.ALLOW_SELF_CLOSE_IN_ATTR,ht=D.SAFE_FOR_TEMPLATES||!1,Ge=D.WHOLE_DOCUMENT||!1,Re=D.RETURN_DOM||!1,ke=D.RETURN_DOM_FRAGMENT||!1,Ce=D.RETURN_TRUSTED_TYPE||!1,te=D.FORCE_BODY||!1,Hs=!1!==D.SANITIZE_DOM,Pr=D.SANITIZE_NAMED_PROPS||!1,Ur=!1!==D.KEEP_CONTENT,De=D.IN_PLACE||!1,T=D.ALLOWED_URI_REGEXP||C1,$e=D.NAMESPACE||ge,j=D.CUSTOM_ELEMENT_HANDLING||{},D.CUSTOM_ELEMENT_HANDLING&&M1(D.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(j.tagNameCheck=D.CUSTOM_ELEMENT_HANDLING.tagNameCheck),D.CUSTOM_ELEMENT_HANDLING&&M1(D.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(j.attributeNameCheck=D.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),D.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof D.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(j.allowCustomizedBuiltInElements=D.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),ht&&(le=!1),ke&&(Re=!0),oe&&(y=J({},D1),k=[],!0===oe.html&&(J(y,v1),J(k,y1)),!0===oe.svg&&(J(y,$u),J(k,Wu),J(k,qs)),!0===oe.svgFilters&&(J(y,Zu),J(k,Wu),J(k,qs)),!0===oe.mathMl&&(J(y,ju),J(k,T1),J(k,qs))),D.ADD_TAGS&&(y===L&&(y=Yn(y)),J(y,D.ADD_TAGS,Ie)),D.ADD_ATTR&&(k===H&&(k=Yn(k)),J(k,D.ADD_ATTR,Ie)),D.ADD_URI_SAFE_ATTR&&J(B,D.ADD_URI_SAFE_ATTR,Ie),D.FORBID_CONTENTS&&(Bt===jt&&(Bt=Yn(Bt)),J(Bt,D.FORBID_CONTENTS,Ie)),Ur&&(y["#text"]=!0),Ge&&J(y,["html","head","body"]),y.table&&(J(y,["tbody"]),delete fe.tbody),D.TRUSTED_TYPES_POLICY){if("function"!=typeof D.TRUSTED_TYPES_POLICY.createHTML)throw Vo('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof D.TRUSTED_TYPES_POLICY.createScriptURL)throw Vo('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');E=D.TRUSTED_TYPES_POLICY,v=E.createHTML("")}else void 0===E&&(E=function(t,n){if("object"!=typeof t||"function"!=typeof t.createPolicy)return null;let r=null;const o="data-tt-policy-suffix";n&&n.hasAttribute(o)&&(r=n.getAttribute(o));const a="dompurify"+(r?"#"+r:"");try{return t.createPolicy(a,{createHTML:s=>s,createScriptURL:s=>s})}catch{return console.warn("TrustedTypes policy "+a+" could not be created."),null}}(m,o)),null!==E&&"string"==typeof v&&(v=E.createHTML(""));Qe&&Qe(D),Vr=D}},F1=J({},["mi","mo","mn","ms","mtext"]),B1=J({},["foreignobject","desc","title","annotation-xml"]),p8=J({},["title","style","font","a","script"]),P1=J({},[...$u,...Zu,...h3]),U1=J({},[...ju,...E3]),Xn=function(D){qo(t.removed,{element:D});try{D.parentNode.removeChild(D)}catch{D.remove()}},Qu=function(D,F){try{qo(t.removed,{attribute:F.getAttributeNode(D),from:F})}catch{qo(t.removed,{attribute:null,from:F})}if(F.removeAttribute(D),"is"===D&&!k[D])if(Re||ke)try{Xn(F)}catch{}else try{F.setAttribute(D,"")}catch{}},q1=function(D){let F=null,z=null;if(te)D="<remove></remove>"+D;else{const je=d3(D,/^[\r\n\t ]+/);z=je&&je[0]}"application/xhtml+xml"===$o&&$e===ge&&(D='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+D+"</body></html>");const me=E?E.createHTML(D):D;if($e===ge)try{F=(new d).parseFromString(me,$o)}catch{}if(!F||!F.documentElement){F=N.createDocument($e,"template",null);try{F.documentElement.innerHTML=zo?v:me}catch{}}const Ze=F.body||F.documentElement;return D&&z&&Ze.insertBefore(n.createTextNode(z),Ze.childNodes[0]||null),$e===ge?R.call(F,Ge?"html":"body")[0]:Ge?F.documentElement:Ze},H1=function(D){return _.call(D.ownerDocument||D,D,u.SHOW_ELEMENT|u.SHOW_COMMENT|u.SHOW_TEXT,null)},V1=function(D){return"function"==typeof i&&D instanceof i},an=function(D,F,z){I[D]&&Bs(I[D],(me=>{me.call(t,F,z,Vr)}))},z1=function(D){let F=null;if(an("beforeSanitizeElements",D,null),function(D){return D instanceof p&&("string"!=typeof D.nodeName||"string"!=typeof D.textContent||"function"!=typeof D.removeChild||!(D.attributes instanceof c)||"function"!=typeof D.removeAttribute||"function"!=typeof D.setAttribute||"string"!=typeof D.namespaceURI||"function"!=typeof D.insertBefore||"function"!=typeof D.hasChildNodes)}(D))return Xn(D),!0;const z=Ie(D.nodeName);if(an("uponSanitizeElement",D,{tagName:z,allowedTags:y}),D.hasChildNodes()&&!V1(D.firstElementChild)&>(/<[/\w]/g,D.innerHTML)&>(/<[/\w]/g,D.textContent))return Xn(D),!0;if(!y[z]||fe[z]){if(!fe[z]&&$1(z)&&(j.tagNameCheck instanceof RegExp&>(j.tagNameCheck,z)||j.tagNameCheck instanceof Function&&j.tagNameCheck(z)))return!1;if(Ur&&!Bt[z]){const me=g(D)||D.parentNode,Ze=h(D)||D.childNodes;if(Ze&&me){for(let at=Ze.length-1;at>=0;--at)me.insertBefore(b(Ze[at],!0),C(D))}}return Xn(D),!0}return D instanceof l&&!function(D){let F=g(D);(!F||!F.tagName)&&(F={namespaceURI:$e,tagName:"template"});const z=Ps(D.tagName),me=Ps(F.tagName);return!!Go[D.namespaceURI]&&(D.namespaceURI===ne?F.namespaceURI===ge?"svg"===z:F.namespaceURI===K?"svg"===z&&("annotation-xml"===me||F1[me]):!!P1[z]:D.namespaceURI===K?F.namespaceURI===ge?"math"===z:F.namespaceURI===ne?"math"===z&&B1[me]:!!U1[z]:D.namespaceURI===ge?!(F.namespaceURI===ne&&!B1[me]||F.namespaceURI===K&&!F1[me])&&!U1[z]&&(p8[z]||!P1[z]):!("application/xhtml+xml"!==$o||!Go[D.namespaceURI]))}(D)||("noscript"===z||"noembed"===z||"noframes"===z)&>(/<\/no(script|embed|frames)/i,D.innerHTML)?(Xn(D),!0):(ht&&3===D.nodeType&&(F=D.textContent,Bs([Q,ie,Y],(me=>{F=Ho(F,me," ")})),D.textContent!==F&&(qo(t.removed,{element:D.cloneNode()}),D.textContent=F)),an("afterSanitizeElements",D,null),!1)},G1=function(D,F,z){if(Hs&&("id"===F||"name"===F)&&(z in n||z in d8))return!1;if((!le||ce[F]||!gt(O,F))&&(!se||!gt(G,F)))if(!k[F]||ce[F]){if(!($1(D)&&(j.tagNameCheck instanceof RegExp&>(j.tagNameCheck,D)||j.tagNameCheck instanceof Function&&j.tagNameCheck(D))&&(j.attributeNameCheck instanceof RegExp&>(j.attributeNameCheck,F)||j.attributeNameCheck instanceof Function&&j.attributeNameCheck(F))||"is"===F&&j.allowCustomizedBuiltInElements&&(j.tagNameCheck instanceof RegExp&>(j.tagNameCheck,z)||j.tagNameCheck instanceof Function&&j.tagNameCheck(z))))return!1}else if(!B[F]&&!gt(T,Ho(z,x,""))&&("src"!==F&&"xlink:href"!==F&&"href"!==F||"script"===D||0!==p3(z,"data:")||!qr[D])&&(!mt||gt(P,Ho(z,x,"")))&&z)return!1;return!0},$1=function(D){return D.indexOf("-")>0},Z1=function(D){an("beforeSanitizeAttributes",D,null);const{attributes:F}=D;if(!F)return;const z={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:k};let me=F.length;for(;me--;){const Ze=F[me],{name:je,namespaceURI:at,value:Qn}=Ze,Zo=Ie(je);let st="value"===je?Qn:f3(Qn);if(z.attrName=Zo,z.attrValue=st,z.keepAttr=!0,z.forceKeepAttr=void 0,an("uponSanitizeAttribute",D,z),st=z.attrValue,z.forceKeepAttr||(Qu(je,D),!z.keepAttr))continue;if(!Ft&>(/\/>/i,st)){Qu(je,D);continue}ht&&Bs([Q,ie,Y],(W1=>{st=Ho(st,W1," ")}));const j1=Ie(D.nodeName);if(G1(j1,Zo,st)){if(Pr&&("id"===Zo||"name"===Zo)&&(Qu(je,D),st="user-content-"+st),E&&"object"==typeof m&&"function"==typeof m.getAttributeType&&!at)switch(m.getAttributeType(j1,Zo)){case"TrustedHTML":st=E.createHTML(st);break;case"TrustedScriptURL":st=E.createScriptURL(st)}try{at?D.setAttributeNS(at,je,st):D.setAttribute(je,st),_1(t.removed)}catch{}}}an("afterSanitizeAttributes",D,null)},m8=function $(D){let F=null;const z=H1(D);for(an("beforeSanitizeShadowDOM",D,null);F=z.nextNode();)an("uponSanitizeShadowNode",F,null),!z1(F)&&(F.content instanceof a&&$(F.content),Z1(F));an("afterSanitizeShadowDOM",D,null)};return t.sanitize=function($){let D=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},F=null,z=null,me=null,Ze=null;if(zo=!$,zo&&($="\x3c!--\x3e"),"string"!=typeof $&&!V1($)){if("function"!=typeof $.toString)throw Vo("toString is not a function");if("string"!=typeof($=$.toString()))throw Vo("dirty is not a string, aborting")}if(!t.isSupported)return $;if(Ct||Xu(D),t.removed=[],"string"==typeof $&&(De=!1),De){if($.nodeName){const Qn=Ie($.nodeName);if(!y[Qn]||fe[Qn])throw Vo("root node is forbidden and cannot be sanitized in-place")}}else if($ instanceof i)F=q1("\x3c!----\x3e"),z=F.ownerDocument.importNode($,!0),1===z.nodeType&&"BODY"===z.nodeName||"HTML"===z.nodeName?F=z:F.appendChild(z);else{if(!Re&&!ht&&!Ge&&-1===$.indexOf("<"))return E&&Ce?E.createHTML($):$;if(F=q1($),!F)return Re?null:Ce?v:""}F&&te&&Xn(F.firstChild);const je=H1(De?$:F);for(;me=je.nextNode();)z1(me)||(me.content instanceof a&&m8(me.content),Z1(me));if(De)return $;if(Re){if(ke)for(Ze=S.call(F.ownerDocument);F.firstChild;)Ze.appendChild(F.firstChild);else Ze=F;return(k.shadowroot||k.shadowrootmode)&&(Ze=q.call(r,Ze,!0)),Ze}let at=Ge?F.outerHTML:F.innerHTML;return Ge&&y["!doctype"]&&F.ownerDocument&&F.ownerDocument.doctype&&F.ownerDocument.doctype.name&>(N1,F.ownerDocument.doctype.name)&&(at="<!DOCTYPE "+F.ownerDocument.doctype.name+">\n"+at),ht&&Bs([Q,ie,Y],(Qn=>{at=Ho(at,Qn," ")})),E&&Ce?E.createHTML(at):at},t.setConfig=function(){Xu(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}),Ct=!0},t.clearConfig=function(){Vr=null,Ct=!1},t.isValidAttribute=function($,D,F){Vr||Xu({});const z=Ie($),me=Ie(D);return G1(z,me,F)},t.addHook=function($,D){"function"==typeof D&&(I[$]=I[$]||[],qo(I[$],D))},t.removeHook=function($){if(I[$])return _1(I[$])},t.removeHooks=function($){I[$]&&(I[$]=[])},t.removeAllHooks=function(){I={}},t}();function x1(e){return new Date(1e3*e).toLocaleTimeString([],{hour:"numeric",minute:"2-digit",hour12:!0})}const w3=S3(window),x3=Z.forwardRef((({uuid:e=zn(),message:t,role:n,sources:r=[],error:o=!1,sentAt:a},s)=>{const i=Te.settings.textSize?`text-[${Te.settings.textSize}px]`:"text-sm";return w.jsxs("div",{className:"py-[5px]",children:["assistant"===n&&w.jsx("div",{className:"text-[10px] font-medium text-gray-400 ml-[54px] mr-6 mb-2 text-left",children:Te.settings.assistantName||"Anything LLM Chat Assistant"}),w.jsxs("div",{ref:s,className:"flex items-start w-full h-fit "+("user"===n?"justify-end":"justify-start"),children:["assistant"===n&&w.jsx("img",{src:Te.settings.assistantIcon||ko,alt:"Anything LLM Icon",className:"w-9 h-9 flex-shrink-0 ml-2 mt-2",id:"anything-llm-icon"}),w.jsx("div",{style:{wordBreak:"break-word"},className:`py-[11px] px-4 flex flex-col ${o?"bg-red-200 rounded-lg mr-[37px] ml-[9px]":"user"===n?`${Te.USER_STYLES} anything-llm-user-message`:`${Te.ASSISTANT_STYLES} anything-llm-assistant-message`} shadow-[0_4px_14px_rgba(0,0,0,0.25)]`,children:w.jsx("div",{className:"flex",children:o?w.jsxs("div",{className:"p-2 rounded-lg bg-red-50 text-red-500",children:[w.jsxs("span",{className:"inline-block ",children:[w.jsx(ru,{className:"h-4 w-4 mb-1 inline-block"})," Could not respond to message."]}),w.jsx("p",{className:"text-xs font-mono mt-2 border-l-2 border-red-500 pl-2 bg-red-300 p-2 rounded-sm",children:o})]}):w.jsx("span",{className:`whitespace-pre-line font-medium flex flex-col gap-y-1 ${i} leading-[20px]`,dangerouslySetInnerHTML:{__html:w3.sanitize(h1(t))}})})})]},e),a&&w.jsx("div",{className:"text-[10px] font-medium text-gray-400 ml-[54px] mr-6 mt-2 "+("user"===n?"text-right":"text-left"),children:x1(a)})]})})),R3=Z.memo(x3),L3=Z.forwardRef((({uuid:e,reply:t,pending:n,error:r,sources:o=[]},a)=>t||0!==o.length||n||r?n?w.jsxs("div",{className:"flex items-start w-full h-fit justify-start",children:[w.jsx("img",{src:Te.settings.assistantIcon||ko,alt:"Anything LLM Icon",className:"w-9 h-9 flex-shrink-0 ml-2"}),w.jsx("div",{style:{wordBreak:"break-word"},className:`py-[11px] px-4 flex flex-col ${Te.ASSISTANT_STYLES} shadow-[0_4px_14px_rgba(0,0,0,0.25)]`,children:w.jsx("div",{className:"flex gap-x-5",children:w.jsx("div",{className:"mx-4 my-1 dot-falling"})})})]}):r?w.jsxs("div",{className:"flex items-end w-full h-fit justify-start",children:[w.jsx("img",{src:Te.settings.assistantIcon||ko,alt:"Anything LLM Icon",className:"w-9 h-9 flex-shrink-0 ml-2"}),w.jsx("div",{style:{wordBreak:"break-word"},className:"py-[11px] px-4 rounded-lg flex flex-col bg-red-200 shadow-[0_4px_14px_rgba(0,0,0,0.25)] mr-[37px] ml-[9px]",children:w.jsx("div",{className:"flex gap-x-5",children:w.jsxs("span",{className:"inline-block p-2 rounded-lg bg-red-50 text-red-500",children:[w.jsx(ru,{className:"h-4 w-4 mb-1 inline-block"})," Could not respond to message.",w.jsxs("span",{className:"text-xs",children:["Reason: ",r||"unknown"]})]})})})]}):w.jsxs("div",{className:"py-[5px]",children:[w.jsx("div",{className:"text-[10px] font-medium text-gray-400 ml-[54px] mr-6 mb-2 text-left",children:Te.settings.assistantName||"Anything LLM Chat Assistant"}),w.jsxs("div",{ref:a,className:"flex items-start w-full h-fit justify-start",children:[w.jsx("img",{src:Te.settings.assistantIcon||ko,alt:"Anything LLM Icon",className:"w-9 h-9 flex-shrink-0 ml-2"}),w.jsx("div",{style:{wordBreak:"break-word"},className:`py-[11px] px-4 flex flex-col ${r?"bg-red-200":Te.ASSISTANT_STYLES} shadow-[0_4px_14px_rgba(0,0,0,0.25)]`,children:w.jsx("div",{className:"flex gap-x-5",children:w.jsx("span",{className:"reply whitespace-pre-line font-normal text-sm md:text-sm flex flex-col gap-y-1",dangerouslySetInnerHTML:{__html:h1(t)}})})})]},e),w.jsx("div",{className:"text-[10px] font-medium text-gray-400 ml-[54px] mr-6 mt-2 text-left",children:x1(Date.now()/1e3)})]}):null)),O3=Z.memo(L3);var R1=NaN,I3="[object Symbol]",M3=/^\s+|\s+$/g,F3=/^[-+]0x[0-9a-f]+$/i,B3=/^0b[01]+$/i,P3=/^0o[0-7]+$/i,U3=parseInt,q3="object"==typeof Nt&&Nt&&Nt.Object===Object&&Nt,H3="object"==typeof self&&self&&self.Object===Object&&self,V3=q3||H3||Function("return this")(),G3=Object.prototype.toString,$3=Math.max,Z3=Math.min,Yu=function(){return V3.Date.now()};function Ku(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function L1(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&G3.call(e)==I3}(e))return R1;if(Ku(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Ku(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(M3,"");var n=B3.test(e);return n||P3.test(e)?U3(e.slice(2),n?2:8):F3.test(e)?R1:+e}var K3=function(e,t,n){var r,o,a,s,i,l,u=0,c=!1,p=!1,d=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function m(_){var S=r,R=o;return r=o=void 0,u=_,s=e.apply(R,S)}function C(_){var S=_-l;return void 0===l||S>=t||S<0||p&&_-u>=a}function h(){var _=Yu();if(C(_))return g(_);i=setTimeout(h,function(_){var q=t-(_-l);return p?Z3(q,a-(_-u)):q}(_))}function g(_){return i=void 0,d&&r?m(_):(r=o=void 0,s)}function N(){var _=Yu(),S=C(_);if(r=arguments,o=this,l=_,S){if(void 0===i)return function(_){return u=_,i=setTimeout(h,t),c?m(_):s}(l);if(p)return i=setTimeout(h,t),m(l)}return void 0===i&&(i=setTimeout(h,t)),s}return t=L1(t)||0,Ku(n)&&(c=!!n.leading,a=(p="maxWait"in n)?$3(L1(n.maxWait)||0,t):a,d="trailing"in n?!!n.trailing:d),N.cancel=function(){void 0!==i&&clearTimeout(i),u=0,r=l=o=i=void 0},N.flush=function(){return void 0===i?s:g(Yu())},N};const X3=jo(K3);function Q3({settings:e={},history:t=[]}){const n=Z.useRef(null),[r,o]=Z.useState(!0),a=Z.useRef(null);Z.useEffect((()=>{l()}),[t]);const i=X3((()=>{if(!a.current)return;const c=a.current.scrollHeight-a.current.scrollTop-a.current.clientHeight<=40;o(c)}),100);Z.useEffect((()=>{!function(){if(!a.current)return null;const c=a.current;if(!c)return null;c.addEventListener("scroll",i)}()}),[]);const l=()=>{a.current&&a.current.scrollTo({top:a.current.scrollHeight,behavior:"smooth"})};return 0===t.length?w.jsx("div",{className:"pb-[100px] pt-[5px] rounded-lg px-2 h-full mt-2 gap-y-2 overflow-y-scroll flex flex-col justify-start no-scroll",children:w.jsx("div",{className:"flex h-full flex-col items-center justify-center",children:w.jsx("p",{className:"text-slate-400 text-sm font-base py-4 text-center",children:(null==e?void 0:e.greeting)??"Send a chat to get started."})})}):w.jsxs("div",{className:"pb-[30px] pt-[5px] rounded-lg px-2 h-full gap-y-2 overflow-y-scroll flex flex-col justify-start no-scroll md:max-h-[500px]",id:"chat-history",ref:a,children:[t.map(((u,c)=>{const p=c===t.length-1;return c===t.length-1&&"assistant"===u.role&&u.animate?w.jsx(O3,{ref:p?n:null,uuid:u.uuid,reply:u.content,pending:u.pending,sources:u.sources,error:u.error,closed:u.closed},u.uuid):w.jsx(R3,{ref:p?n:null,message:u.content,sentAt:u.sentAt||Date.now()/1e3,role:u.role,sources:u.sources,chatId:u.chatId,feedbackScore:u.feedbackScore,error:u.error},c)})),!r&&w.jsx("div",{className:"fixed bottom-[10rem] right-[50px] z-50 cursor-pointer animate-pulse",children:w.jsx("div",{className:"flex flex-col items-center",children:w.jsx("div",{className:"p-1 rounded-full border border-white/10 bg-black/20 hover:bg-black/50",children:w.jsx(I2,{weight:"bold",className:"text-white/50 w-5 h-5",onClick:l,id:"scroll-to-bottom-button","aria-label":"Scroll to bottom"})})})})]})}function J3(){return w.jsx("div",{className:"h-full w-full relative",children:w.jsx("div",{className:"h-full max-h-[82vh] pb-[100px] pt-[5px] bg-gray-100 rounded-lg px-2 h-full mt-2 gap-y-2 overflow-y-scroll flex flex-col justify-start no-scroll",children:w.jsx("div",{className:"flex h-full flex-col items-center justify-center",children:w.jsx(nu,{size:14,className:"text-slate-400 animate-spin"})})})})}function e8({message:e,submit:t,onChange:n,inputDisabled:r,buttonDisabled:o}){const a=Z.useRef(null),s=Z.useRef(null),[i,l]=Z.useState(!1);Z.useEffect((()=>{!r&&s.current&&s.current.focus(),c()}),[r]);const c=()=>{s.current&&(s.current.style.height="auto")},d=m=>{const A=m.target;A.style.height="auto",A.style.height=0!==m.target.value.length?A.scrollHeight+"px":"auto"};return w.jsx("div",{className:"w-full sticky bottom-0 z-10 flex justify-center items-center px-5 bg-white",children:w.jsx("form",{onSubmit:m=>{l(!1),t(m)},className:"flex flex-col gap-y-1 rounded-t-lg w-full items-center justify-center",children:w.jsx("div",{className:"flex items-center w-full",children:w.jsx("div",{className:"bg-white border-[1.5px] border-[#22262833]/20 rounded-2xl flex flex-col px-4 overflow-hidden w-full",children:w.jsxs("div",{className:"flex items-center w-full",children:[w.jsx("textarea",{ref:s,onKeyUp:d,onKeyDown:m=>{13==m.keyCode&&(m.shiftKey||t(m))},onChange:n,required:!0,disabled:r,onFocus:()=>l(!0),onBlur:m=>{l(!1),d(m)},value:e,className:"cursor-text max-h-[100px] text-[14px] mx-2 py-2 w-full text-black bg-transparent placeholder:text-slate-800/60 resize-none active:outline-none focus:outline-none flex-grow",placeholder:"Send a message",id:"message-input"}),w.jsxs("button",{ref:a,type:"submit",disabled:o,className:"inline-flex justify-center rounded-2xl cursor-pointer text-black group ml-4",id:"send-message-button","aria-label":"Send message",children:[o?w.jsx(nu,{className:"w-4 h-4 animate-spin"}):w.jsx(pp,{size:24,className:"my-3 text-[#22262899]/60 group-hover:text-[#22262899]/90",weight:"fill"}),w.jsx("span",{className:"sr-only",children:"Send message"})]})]})})})})})}function n8({sessionId:e,settings:t,knownHistory:n=[]}){const[r,o]=Z.useState(""),[a,s]=Z.useState(!1),[i,l]=Z.useState(n);Z.useEffect((()=>{n.length!==i.length&&l([...n])}),[n]);return Z.useEffect((()=>{!0===a&&async function(){const d=i.length>0?i[i.length-1]:null,m=i.length>0?i.slice(0,-1):[];var A=[...m];if(!d||null==d||!d.userMessage)return s(!1),!1;await ds.streamChat(e,t,d.userMessage,(b=>function(e,t,n,r,o){const{uuid:a,textResponse:s,type:i,sources:l=[],error:u,close:c}=e;if("abort"===i)t(!1),n([...r,{uuid:a,content:s,role:"assistant",sources:l,closed:!0,error:u,animate:!1,pending:!1}]),o.push({uuid:a,content:s,role:"assistant",sources:l,closed:!0,error:u,animate:!1,pending:!1});else if("textResponse"===i)t(!1),n([...r,{uuid:a,content:s,role:"assistant",sources:l,closed:c,error:u,animate:!c,pending:!1}]),o.push({uuid:a,content:s,role:"assistant",sources:l,closed:c,error:u,animate:!c,pending:!1});else if("textResponseChunk"===i){const p=o.findIndex((d=>d.uuid===a));if(-1!==p){const d={...o[p]},m={...d,content:d.content+s,sources:l,error:u,closed:c,animate:!c,pending:!1};o[p]=m}else o.push({uuid:a,sources:l,error:u,content:s,role:"assistant",closed:c,animate:!c,pending:!1});n([...o])}}(b,s,l,m,A)))}()}),[a,i]),w.jsxs("div",{className:"h-full w-full flex flex-col",children:[w.jsx("div",{className:"flex-grow overflow-y-auto",children:w.jsx(Q3,{settings:t,history:i})}),w.jsx(e8,{message:r,submit:async p=>{if(p.preventDefault(),!r||""===r)return!1;const d=[...i,{content:r,role:"user"},{content:"",role:"assistant",pending:!0,userMessage:r,animate:!0}];l(d),o(""),s(!0)},onChange:p=>{o(p.target.value)},inputDisabled:a,buttonDisabled:a})]})}function O1({settings:e}){return e.noSponsor?null:w.jsx("div",{className:"flex w-full items-center justify-center",children:w.jsx("a",{href:e.sponsorLink??"#",target:"_blank",rel:"noreferrer",className:"text-xs text-[#0119D9] hover:text-[#0119D9]/80 hover:underline",children:e.sponsorText})})}function r8({setChatHistory:e,settings:t,sessionId:n}){return w.jsx("div",{className:"w-full flex justify-center",children:w.jsx("button",{className:"text-sm text-[#7A7D7E] hover:text-[#7A7D7E]/80 hover:underline",onClick:()=>(async()=>{await ds.resetEmbedChatSession(t,n),e([])})(),children:"Reset Chat"})})}function o8({closeChat:e,settings:t,sessionId:n}){const{chatHistory:r,setChatHistory:o,loading:a}=function(e=null,t=null){const[n,r]=Z.useState(!0),[o,a]=Z.useState([]);return Z.useEffect((()=>{!async function(){if(t&&e)try{const i=await ds.embedSessionHistory(e,t);a(i),r(!1)}catch(i){console.error("Error fetching historical chats:",i),r(!1)}}()}),[t,e]),{chatHistory:o,setChatHistory:a,loading:n}}(t,n);return a?w.jsxs("div",{className:"flex flex-col h-full",children:[w.jsx(yp,{sessionId:n,settings:t,iconUrl:t.brandImageUrl,closeChat:e,setChatHistory:o}),w.jsx(J3,{}),w.jsxs("div",{className:"pt-4 pb-2 h-fit gap-y-1",children:[w.jsx(ub,{}),w.jsx(O1,{settings:t})]})]}):(null==document||document.addEventListener("click",(function(e){var r;const t=e.target.closest("[data-code-snippet]"),n=null==(r=null==t?void 0:t.dataset)?void 0:r.code;if(!n)return!1;!function(e){var o,a,s;const t=document.querySelector(`[data-code="${e}"]`);if(!t)return!1;const n=null==(s=null==(a=null==(o=t.parentElement)?void 0:o.parentElement)?void 0:a.querySelector("pre:first-of-type"))?void 0:s.innerText;if(!n)return!1;window.navigator.clipboard.writeText(n),t.classList.add("text-green-500");const r=t.innerHTML;t.innerText="Copied!",t.setAttribute("disabled",!0),setTimeout((()=>{t.classList.remove("text-green-500"),t.innerHTML=r,t.removeAttribute("disabled")}),2500)}(n)})),w.jsxs("div",{className:"flex flex-col h-full",children:[w.jsx(yp,{sessionId:n,settings:t,iconUrl:t.brandImageUrl,closeChat:e,setChatHistory:o}),w.jsx("div",{className:"flex-grow overflow-y-auto",children:w.jsx(n8,{sessionId:n,settings:t,knownHistory:r})}),w.jsxs("div",{className:"mt-4 pb-4 h-fit gap-y-2 z-10",children:[w.jsx(O1,{settings:t}),w.jsx(r8,{setChatHistory:o,settings:t,sessionId:n})]})]}))}const k1=document.createElement("div");document.body.appendChild(k1),js.createRoot(k1).render(w.jsx(f.StrictMode,{children:w.jsx((function(){const{isChatOpen:e,toggleOpenChat:t}=function(){var r;const[e,t]=Z.useState(!(null==(r=null==window?void 0:window.localStorage)||!r.getItem(tu))||!1);return{isChatOpen:e,toggleOpenChat:function(o){!0===o&&window.localStorage.setItem(tu,"1"),!1===o&&window.localStorage.removeItem(tu),t(o)}}}(),n=function(){const[e,t]=Z.useState({loaded:!1,...v2});return Z.useEffect((()=>{!function(){if(!document)return!1;if(!Te.settings.baseApiUrl||!Te.settings.embedId)throw new Error("[AnythingLLM Embed Module::Abort] - Invalid script tag setup detected. Missing required parameters for boot!");t({...v2,...Te.settings,loaded:!0})}()}),[document]),e}(),r=y2();if(Z.useEffect((()=>{"on"===n.openOnLoad&&t(!0)}),[n.loaded]),!n.loaded)return null;const o={"bottom-left":"bottom-0 left-0 ml-4","bottom-right":"bottom-0 right-0 mr-4","top-left":"top-0 left-0 ml-4 mt-4","top-right":"top-0 right-0 mr-4 mt-4"},a=n.position||"bottom-right",s=n.windowWidth?`max-w-[${n.windowWidth}]`:"max-w-[400px]",i=n.windowHeight?`max-h-[${n.windowHeight}]`:"max-h-[700px]";return w.jsxs(w.Fragment,{children:[w.jsx(wh,{}),w.jsx("div",{id:"anything-llm-embed-chat-container",className:"fixed inset-0 z-50 "+(e?"block":"hidden"),children:w.jsx("div",{className:`${i} ${s} h-full w-full bg-white fixed bottom-0 right-0 mb-4 md:mr-4 rounded-2xl border border-gray-300 shadow-[0_4px_14px_rgba(0,0,0,0.25)] ${o[a]}`,id:"anything-llm-chat",children:e&&w.jsx(o8,{closeChat:()=>t(!1),settings:n,sessionId:r})})}),!e&&w.jsx("div",{id:"anything-llm-embed-chat-button-container",className:`fixed bottom-0 ${o[a]} mb-4 z-50`,children:w.jsx(XA,{settings:n,isOpen:e,toggleOpen:()=>t(!0)})})]})}),{})}));const Kn=Object.assign({},(null==(I1=null==document?void 0:document.currentScript)?void 0:I1.dataset)||{}),Te={settings:Kn,USER_STYLES:`bg-[${(null==Kn?void 0:Kn.userBgColor)??"#3DBEF5"}] text-white rounded-t-[18px] rounded-bl-[18px] rounded-br-[4px] mx-[20px]`,ASSISTANT_STYLES:`bg-[${(null==Kn?void 0:Kn.assistantBgColor)??"#FFFFFF"}] text-[#222628] rounded-t-[18px] rounded-br-[18px] rounded-bl-[4px] mr-[37px] ml-[9px]`};Jn.embedderSettings=Te,Object.defineProperty(Jn,Symbol.toStringTag,{value:"Module"})})),(()=>{var h,Ob,re,du,xb=Object.create,li=Object.defineProperty,kb=Object.getOwnPropertyDescriptor,Sb=Object.getOwnPropertyNames,Cb=Object.getPrototypeOf,Ab=Object.prototype.hasOwnProperty,uu=i=>li(i,"__esModule",{value:!0}),fu=i=>{if("undefined"!=typeof require)return require(i);throw new Error('Dynamic require of "'+i+'" is not supported')},C=(i,e)=>()=>(i&&(e=i(i=0)),e),v=(i,e)=>()=>(e||i((e={exports:{}}).exports,e),e.exports),Ae=(i,e)=>{for(var t in uu(i),e)li(i,t,{get:e[t],enumerable:!0})},K=i=>((i,e,t)=>{if(e&&"object"==typeof e||"function"==typeof e)for(let r of Sb(e))!Ab.call(i,r)&&"default"!==r&&li(i,r,{get:()=>e[r],enumerable:!(t=kb(e,r))||t.enumerable});return i})(uu(li(null!=i?xb(Cb(i)):{},"default",i&&i.__esModule&&"default"in i?{get:()=>i.default,enumerable:!0}:{value:i,enumerable:!0})),i),l=C((()=>{h={platform:"",env:{},versions:{node:"14.17.6"}}})),je=C((()=>{l(),Ob=0,re={readFileSync:i=>self[i]||"",statSync:()=>({mtimeMs:Ob++}),promises:{readFile:i=>Promise.resolve(self[i]||"")}}})),Qn=v(((XO,pu)=>{l();var cu=class{constructor(e={}){if(!(e.maxSize&&e.maxSize>0))throw new TypeError("`maxSize` must be a number greater than 0");if("number"==typeof e.maxAge&&0===e.maxAge)throw new TypeError("`maxAge` must be a number greater than 0");this.maxSize=e.maxSize,this.maxAge=e.maxAge||1/0,this.onEviction=e.onEviction,this.cache=new Map,this.oldCache=new Map,this._size=0}_emitEvictions(e){if("function"==typeof this.onEviction)for(let[t,r]of e)this.onEviction(t,r.value)}_deleteIfExpired(e,t){return"number"==typeof t.expiry&&t.expiry<=Date.now()&&("function"==typeof this.onEviction&&this.onEviction(e,t.value),this.delete(e))}_getOrDeleteIfExpired(e,t){if(!1===this._deleteIfExpired(e,t))return t.value}_getItemValue(e,t){return t.expiry?this._getOrDeleteIfExpired(e,t):t.value}_peek(e,t){let r=t.get(e);return this._getItemValue(e,r)}_set(e,t){this.cache.set(e,t),this._size++,this._size>=this.maxSize&&(this._size=0,this._emitEvictions(this.oldCache),this.oldCache=this.cache,this.cache=new Map)}_moveToRecent(e,t){this.oldCache.delete(e),this._set(e,t)}*_entriesAscending(){for(let e of this.oldCache){let[t,r]=e;this.cache.has(t)||!1===this._deleteIfExpired(t,r)&&(yield e)}for(let e of this.cache){let[t,r]=e;!1===this._deleteIfExpired(t,r)&&(yield e)}}get(e){if(this.cache.has(e)){let t=this.cache.get(e);return this._getItemValue(e,t)}if(this.oldCache.has(e)){let t=this.oldCache.get(e);if(!1===this._deleteIfExpired(e,t))return this._moveToRecent(e,t),t.value}}set(e,t,{maxAge:r=(this.maxAge===1/0?void 0:Date.now()+this.maxAge)}={}){this.cache.has(e)?this.cache.set(e,{value:t,maxAge:r}):this._set(e,{value:t,expiry:r})}has(e){return this.cache.has(e)?!this._deleteIfExpired(e,this.cache.get(e)):!!this.oldCache.has(e)&&!this._deleteIfExpired(e,this.oldCache.get(e))}peek(e){return this.cache.has(e)?this._peek(e,this.cache):this.oldCache.has(e)?this._peek(e,this.oldCache):void 0}delete(e){let t=this.cache.delete(e);return t&&this._size--,this.oldCache.delete(e)||t}clear(){this.cache.clear(),this.oldCache.clear(),this._size=0}resize(e){if(!(e&&e>0))throw new TypeError("`maxSize` must be a number greater than 0");let t=[...this._entriesAscending()],r=t.length-e;r<0?(this.cache=new Map(t),this.oldCache=new Map,this._size=t.length):(r>0&&this._emitEvictions(t.slice(0,r)),this.oldCache=new Map(t.slice(r)),this.cache=new Map,this._size=0),this.maxSize=e}*keys(){for(let[e]of this)yield e}*values(){for(let[,e]of this)yield e}*[Symbol.iterator](){for(let e of this.cache){let[t,r]=e;!1===this._deleteIfExpired(t,r)&&(yield[t,r.value])}for(let e of this.oldCache){let[t,r]=e;this.cache.has(t)||!1===this._deleteIfExpired(t,r)&&(yield[t,r.value])}}*entriesDescending(){let e=[...this.cache];for(let t=e.length-1;t>=0;--t){let r=e[t],[n,a]=r;!1===this._deleteIfExpired(n,a)&&(yield[n,a.value])}e=[...this.oldCache];for(let t=e.length-1;t>=0;--t){let r=e[t],[n,a]=r;this.cache.has(n)||!1===this._deleteIfExpired(n,a)&&(yield[n,a.value])}}*entriesAscending(){for(let[e,t]of this._entriesAscending())yield[e,t.value]}get size(){if(!this._size)return this.oldCache.size;let e=0;for(let t of this.oldCache.keys())this.cache.has(t)||e++;return Math.min(this._size+e,this.maxSize)}};pu.exports=cu})),hu=C((()=>{l(),du=i=>i&&i._hash}));function ui(i){return du(i,{ignoreUnknown:!0})}var mu=C((()=>{l(),hu()}));function Xe(i){if("0"===(i=`${i}`))return"0";if(/^[+-]?(\d+|\d*\.\d+)(e[+-]?\d+)?(%|\w+)?$/.test(i))return i.replace(/^[+-]?/,(t=>"-"===t?"":"-"));let e=["var","calc","min","max","clamp"];for(let t of e)if(i.includes(`${t}(`))return`calc(${i} * -1)`}var gu,fi=C((()=>{l()})),yu=C((()=>{l(),gu=["preflight","container","accessibility","pointerEvents","visibility","position","inset","isolation","zIndex","order","gridColumn","gridColumnStart","gridColumnEnd","gridRow","gridRowStart","gridRowEnd","float","clear","margin","boxSizing","lineClamp","display","aspectRatio","size","height","maxHeight","minHeight","width","minWidth","maxWidth","flex","flexShrink","flexGrow","flexBasis","tableLayout","captionSide","borderCollapse","borderSpacing","transformOrigin","translate","rotate","skew","scale","transform","animation","cursor","touchAction","userSelect","resize","scrollSnapType","scrollSnapAlign","scrollSnapStop","scrollMargin","scrollPadding","listStylePosition","listStyleType","listStyleImage","appearance","columns","breakBefore","breakInside","breakAfter","gridAutoColumns","gridAutoFlow","gridAutoRows","gridTemplateColumns","gridTemplateRows","flexDirection","flexWrap","placeContent","placeItems","alignContent","alignItems","justifyContent","justifyItems","gap","space","divideWidth","divideStyle","divideColor","divideOpacity","placeSelf","alignSelf","justifySelf","overflow","overscrollBehavior","scrollBehavior","textOverflow","hyphens","whitespace","textWrap","wordBreak","borderRadius","borderWidth","borderStyle","borderColor","borderOpacity","backgroundColor","backgroundOpacity","backgroundImage","gradientColorStops","boxDecorationBreak","backgroundSize","backgroundAttachment","backgroundClip","backgroundPosition","backgroundRepeat","backgroundOrigin","fill","stroke","strokeWidth","objectFit","objectPosition","padding","textAlign","textIndent","verticalAlign","fontFamily","fontSize","fontWeight","textTransform","fontStyle","fontVariantNumeric","lineHeight","letterSpacing","textColor","textOpacity","textDecoration","textDecorationColor","textDecorationStyle","textDecorationThickness","textUnderlineOffset","fontSmoothing","placeholderColor","placeholderOpacity","caretColor","accentColor","opacity","backgroundBlendMode","mixBlendMode","boxShadow","boxShadowColor","outlineStyle","outlineWidth","outlineOffset","outlineColor","ringWidth","ringColor","ringOpacity","ringOffsetWidth","ringOffsetColor","blur","brightness","contrast","dropShadow","grayscale","hueRotate","invert","saturate","sepia","filter","backdropBlur","backdropBrightness","backdropContrast","backdropGrayscale","backdropHueRotate","backdropInvert","backdropOpacity","backdropSaturate","backdropSepia","backdropFilter","transitionProperty","transitionDelay","transitionDuration","transitionTimingFunction","willChange","content","forcedColorAdjust"]}));var bu=C((()=>{l()})),vu={};Ae(vu,{default:()=>_e});var _e,ci=C((()=>{l(),_e=new Proxy({},{get:()=>String})}));function Jn(i,e,t){void 0!==h&&h.env.JEST_WORKER_ID||t&&xu.has(t)||(t&&xu.add(t),console.warn(""),e.forEach((r=>console.warn(i,"-",r))))}function Xn(i){return _e.dim(i)}var xu,F,Oe=C((()=>{l(),ci(),xu=new Set,F={info(i,e){Jn(_e.bold(_e.cyan("info")),...Array.isArray(i)?[i]:[e,i])},warn(i,e){["content-problems"].includes(i)||Jn(_e.bold(_e.yellow("warn")),...Array.isArray(i)?[i]:[e,i])},risk(i,e){Jn(_e.bold(_e.magenta("risk")),...Array.isArray(i)?[i]:[e,i])}}})),ku={};function sr({version:i,from:e,to:t}){F.warn(`${e}-color-renamed`,[`As of Tailwind CSS ${i}, \`${e}\` has been renamed to \`${t}\`.`,"Update your configuration file to silence this warning."])}Ae(ku,{default:()=>Kn});var Kn,Zn=C((()=>{l(),Oe(),Kn={inherit:"inherit",current:"currentColor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"#f8fafc",100:"#f1f5f9",200:"#e2e8f0",300:"#cbd5e1",400:"#94a3b8",500:"#64748b",600:"#475569",700:"#334155",800:"#1e293b",900:"#0f172a",950:"#020617"},gray:{50:"#f9fafb",100:"#f3f4f6",200:"#e5e7eb",300:"#d1d5db",400:"#9ca3af",500:"#6b7280",600:"#4b5563",700:"#374151",800:"#1f2937",900:"#111827",950:"#030712"},zinc:{50:"#fafafa",100:"#f4f4f5",200:"#e4e4e7",300:"#d4d4d8",400:"#a1a1aa",500:"#71717a",600:"#52525b",700:"#3f3f46",800:"#27272a",900:"#18181b",950:"#09090b"},neutral:{50:"#fafafa",100:"#f5f5f5",200:"#e5e5e5",300:"#d4d4d4",400:"#a3a3a3",500:"#737373",600:"#525252",700:"#404040",800:"#262626",900:"#171717",950:"#0a0a0a"},stone:{50:"#fafaf9",100:"#f5f5f4",200:"#e7e5e4",300:"#d6d3d1",400:"#a8a29e",500:"#78716c",600:"#57534e",700:"#44403c",800:"#292524",900:"#1c1917",950:"#0c0a09"},red:{50:"#fef2f2",100:"#fee2e2",200:"#fecaca",300:"#fca5a5",400:"#f87171",500:"#ef4444",600:"#dc2626",700:"#b91c1c",800:"#991b1b",900:"#7f1d1d",950:"#450a0a"},orange:{50:"#fff7ed",100:"#ffedd5",200:"#fed7aa",300:"#fdba74",400:"#fb923c",500:"#f97316",600:"#ea580c",700:"#c2410c",800:"#9a3412",900:"#7c2d12",950:"#431407"},amber:{50:"#fffbeb",100:"#fef3c7",200:"#fde68a",300:"#fcd34d",400:"#fbbf24",500:"#f59e0b",600:"#d97706",700:"#b45309",800:"#92400e",900:"#78350f",950:"#451a03"},yellow:{50:"#fefce8",100:"#fef9c3",200:"#fef08a",300:"#fde047",400:"#facc15",500:"#eab308",600:"#ca8a04",700:"#a16207",800:"#854d0e",900:"#713f12",950:"#422006"},lime:{50:"#f7fee7",100:"#ecfccb",200:"#d9f99d",300:"#bef264",400:"#a3e635",500:"#84cc16",600:"#65a30d",700:"#4d7c0f",800:"#3f6212",900:"#365314",950:"#1a2e05"},green:{50:"#f0fdf4",100:"#dcfce7",200:"#bbf7d0",300:"#86efac",400:"#4ade80",500:"#22c55e",600:"#16a34a",700:"#15803d",800:"#166534",900:"#14532d",950:"#052e16"},emerald:{50:"#ecfdf5",100:"#d1fae5",200:"#a7f3d0",300:"#6ee7b7",400:"#34d399",500:"#10b981",600:"#059669",700:"#047857",800:"#065f46",900:"#064e3b",950:"#022c22"},teal:{50:"#f0fdfa",100:"#ccfbf1",200:"#99f6e4",300:"#5eead4",400:"#2dd4bf",500:"#14b8a6",600:"#0d9488",700:"#0f766e",800:"#115e59",900:"#134e4a",950:"#042f2e"},cyan:{50:"#ecfeff",100:"#cffafe",200:"#a5f3fc",300:"#67e8f9",400:"#22d3ee",500:"#06b6d4",600:"#0891b2",700:"#0e7490",800:"#155e75",900:"#164e63",950:"#083344"},sky:{50:"#f0f9ff",100:"#e0f2fe",200:"#bae6fd",300:"#7dd3fc",400:"#38bdf8",500:"#0ea5e9",600:"#0284c7",700:"#0369a1",800:"#075985",900:"#0c4a6e",950:"#082f49"},blue:{50:"#eff6ff",100:"#dbeafe",200:"#bfdbfe",300:"#93c5fd",400:"#60a5fa",500:"#3b82f6",600:"#2563eb",700:"#1d4ed8",800:"#1e40af",900:"#1e3a8a",950:"#172554"},indigo:{50:"#eef2ff",100:"#e0e7ff",200:"#c7d2fe",300:"#a5b4fc",400:"#818cf8",500:"#6366f1",600:"#4f46e5",700:"#4338ca",800:"#3730a3",900:"#312e81",950:"#1e1b4b"},violet:{50:"#f5f3ff",100:"#ede9fe",200:"#ddd6fe",300:"#c4b5fd",400:"#a78bfa",500:"#8b5cf6",600:"#7c3aed",700:"#6d28d9",800:"#5b21b6",900:"#4c1d95",950:"#2e1065"},purple:{50:"#faf5ff",100:"#f3e8ff",200:"#e9d5ff",300:"#d8b4fe",400:"#c084fc",500:"#a855f7",600:"#9333ea",700:"#7e22ce",800:"#6b21a8",900:"#581c87",950:"#3b0764"},fuchsia:{50:"#fdf4ff",100:"#fae8ff",200:"#f5d0fe",300:"#f0abfc",400:"#e879f9",500:"#d946ef",600:"#c026d3",700:"#a21caf",800:"#86198f",900:"#701a75",950:"#4a044e"},pink:{50:"#fdf2f8",100:"#fce7f3",200:"#fbcfe8",300:"#f9a8d4",400:"#f472b6",500:"#ec4899",600:"#db2777",700:"#be185d",800:"#9d174d",900:"#831843",950:"#500724"},rose:{50:"#fff1f2",100:"#ffe4e6",200:"#fecdd3",300:"#fda4af",400:"#fb7185",500:"#f43f5e",600:"#e11d48",700:"#be123c",800:"#9f1239",900:"#881337",950:"#4c0519"},get lightBlue(){return sr({version:"v2.2",from:"lightBlue",to:"sky"}),this.sky},get warmGray(){return sr({version:"v3.0",from:"warmGray",to:"stone"}),this.stone},get trueGray(){return sr({version:"v3.0",from:"trueGray",to:"neutral"}),this.neutral},get coolGray(){return sr({version:"v3.0",from:"coolGray",to:"gray"}),this.gray},get blueGray(){return sr({version:"v3.0",from:"blueGray",to:"slate"}),this.slate}}}));function es(i,...e){for(let t of e){for(let r in t)i?.hasOwnProperty?.(r)||(i[r]=t[r]);for(let r of Object.getOwnPropertySymbols(t))i?.hasOwnProperty?.(r)||(i[r]=t[r])}return i}var Su=C((()=>{l()}));function Ke(i){if(Array.isArray(i))return i;if(i.split("[").length-1!==i.split("]").length-1)throw new Error(`Path is invalid. Has unbalanced brackets: ${i}`);return i.split(/\.(?![^\[]*\])|[\[\]]/g).filter(Boolean)}var pi=C((()=>{l()}));function Z(i,e){return di.future.includes(e)?"all"===i.future||(i?.future?.[e]??Cu[e]??!1):!!di.experimental.includes(e)&&("all"===i.experimental||(i?.experimental?.[e]??Cu[e]??!1))}function Au(i){return"all"===i.experimental?di.experimental:Object.keys(i?.experimental??{}).filter((e=>di.experimental.includes(e)&&i.experimental[e]))}var Cu,di,ze=C((()=>{l(),ci(),Oe(),Cu={optimizeUniversalDefaults:!1,generalizedModifiers:!0,get disableColorOpacityUtilitiesByDefault(){return!1},get relativeContentPathsByDefault(){return!1}},di={future:["hoverOnlyWhenSupported","respectDefaultRingColorOpacity","disableColorOpacityUtilitiesByDefault","relativeContentPathsByDefault"],experimental:["optimizeUniversalDefaults","generalizedModifiers"]}}));var Eu=C((()=>{l(),ze(),Oe()}));function ne(i){if("[object Object]"!==Object.prototype.toString.call(i))return!1;let e=Object.getPrototypeOf(i);return null===e||null===Object.getPrototypeOf(e)}var kt=C((()=>{l()}));function Ze(i){return Array.isArray(i)?i.map((e=>Ze(e))):"object"==typeof i&&null!==i?Object.fromEntries(Object.entries(i).map((([e,t])=>[e,Ze(t)]))):i}var hi=C((()=>{l()}));function mt(i){return i.replace(/\\,/g,"\\2c ")}var ts,mi=C((()=>{l()})),Tu=C((()=>{l(),ts={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}}));function ar(i,{loose:e=!1}={}){if("string"!=typeof i)return null;if("transparent"===(i=i.trim()))return{mode:"rgb",color:["0","0","0"],alpha:"0"};if(i in ts)return{mode:"rgb",color:ts[i].map((a=>a.toString()))};let t=i.replace(Tb,((a,s,o,u,c)=>["#",s,s,o,o,u,u,c?c+c:""].join(""))).match(Eb);if(null!==t)return{mode:"rgb",color:[parseInt(t[1],16),parseInt(t[2],16),parseInt(t[3],16)].map((a=>a.toString())),alpha:t[4]?(parseInt(t[4],16)/255).toString():void 0};let r=i.match(Pb)??i.match(Db);if(null===r)return null;let n=[r[2],r[3],r[4]].filter(Boolean).map((a=>a.toString()));return 2===n.length&&n[0].startsWith("var(")?{mode:r[1],color:[n[0]],alpha:n[1]}:!e&&3!==n.length||n.length<3&&!n.some((a=>/^var\(.*?\)$/.test(a)))?null:{mode:r[1],color:n,alpha:r[5]?.toString?.()}}function rs({mode:i,color:e,alpha:t}){let r=void 0!==t;return"rgba"===i||"hsla"===i?`${i}(${e.join(", ")}${r?`, ${t}`:""})`:`${i}(${e.join(" ")}${r?` / ${t}`:""})`}var Eb,Tb,et,gi,Pu,tt,Pb,Db,is=C((()=>{l(),Tu(),Eb=/^#([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})?$/i,Tb=/^#([a-f\d])([a-f\d])([a-f\d])([a-f\d])?$/i,et=/(?:\d+|\d*\.\d+)%?/,gi=/(?:\s*,\s*|\s+)/,Pu=/\s*[,/]\s*/,tt=/var\(--(?:[^ )]*?)(?:,(?:[^ )]*?|var\(--[^ )]*?\)))?\)/,Pb=new RegExp(`^(rgba?)\\(\\s*(${et.source}|${tt.source})(?:${gi.source}(${et.source}|${tt.source}))?(?:${gi.source}(${et.source}|${tt.source}))?(?:${Pu.source}(${et.source}|${tt.source}))?\\s*\\)$`),Db=new RegExp(`^(hsla?)\\(\\s*((?:${et.source})(?:deg|rad|grad|turn)?|${tt.source})(?:${gi.source}(${et.source}|${tt.source}))?(?:${gi.source}(${et.source}|${tt.source}))?(?:${Pu.source}(${et.source}|${tt.source}))?\\s*\\)$`)}));function De(i,e,t){if("function"==typeof i)return i({opacityValue:e});let r=ar(i,{loose:!0});return null===r?t:rs({...r,alpha:e})}function ae({color:i,property:e,variable:t}){let r=[].concat(e);if("function"==typeof i)return{[t]:"1",...Object.fromEntries(r.map((a=>[a,i({opacityVariable:t,opacityValue:`var(${t})`})])))};let n=ar(i);return null===n||void 0!==n.alpha?Object.fromEntries(r.map((a=>[a,i]))):{[t]:"1",...Object.fromEntries(r.map((a=>[a,rs({...n,alpha:`var(${t})`})])))}}var or=C((()=>{l(),is()}));function oe(i,e){let t=[],r=[],n=0,a=!1;for(let s=0;s<i.length;s++){let o=i[s];0===t.length&&o===e[0]&&!a&&(1===e.length||i.slice(s,s+e.length)===e)&&(r.push(i.slice(n,s)),n=s+e.length),a?a=!1:"\\"===o&&(a=!0),"("===o||"["===o||"{"===o?t.push(o):(")"===o&&"("===t[t.length-1]||"]"===o&&"["===t[t.length-1]||"}"===o&&"{"===t[t.length-1])&&t.pop()}return r.push(i.slice(n)),r}var St=C((()=>{l()}));function yi(i){return oe(i,",").map((t=>{let r=t.trim(),n={raw:r},a=r.split(qb),s=new Set;for(let o of a)Du.lastIndex=0,!s.has("KEYWORD")&&Ib.has(o)?(n.keyword=o,s.add("KEYWORD")):Du.test(o)?s.has("X")?s.has("Y")?s.has("BLUR")?s.has("SPREAD")||(n.spread=o,s.add("SPREAD")):(n.blur=o,s.add("BLUR")):(n.y=o,s.add("Y")):(n.x=o,s.add("X")):n.color?(n.unknown||(n.unknown=[]),n.unknown.push(o)):n.color=o;return n.valid=void 0!==n.x&&void 0!==n.y,n}))}function Iu(i){return i.map((e=>e.valid?[e.keyword,e.x,e.y,e.blur,e.spread,e.color].filter(Boolean).join(" "):e.raw)).join(", ")}var Ib,qb,Du,ns=C((()=>{l(),St(),Ib=new Set(["inset","inherit","initial","revert","unset"]),qb=/\ +(?![^(]*\))/g,Du=/^-?(\d+|\.\d+)(.*?)$/g}));function ss(i){return Rb.some((e=>new RegExp(`^${e}\\(.*\\)`).test(i)))}function N(i,e=null,t=!0){let r=e&&Mb.has(e.property);return i.startsWith("--")&&!r?`var(${i})`:i.includes("url(")?i.split(/(url\(.*?\))/g).filter(Boolean).map((n=>/^url\(.*?\)$/.test(n)?n:N(n,e,!1))).join(""):(i=i.replace(/([^\\])_+/g,((n,a)=>a+" ".repeat(n.length-1))).replace(/^_/g," ").replace(/\\_/g,"_"),t&&(i=i.trim()),i=function(i){let e=["theme"],t=["min-content","max-content","fit-content","safe-area-inset-top","safe-area-inset-right","safe-area-inset-bottom","safe-area-inset-left","titlebar-area-x","titlebar-area-y","titlebar-area-width","titlebar-area-height","keyboard-inset-top","keyboard-inset-right","keyboard-inset-bottom","keyboard-inset-left","keyboard-inset-width","keyboard-inset-height","radial-gradient","linear-gradient","conic-gradient","repeating-radial-gradient","repeating-linear-gradient","repeating-conic-gradient"];return i.replace(/(calc|min|max|clamp)\(.+\)/g,(r=>{let n="";function a(){let s=n.trimEnd();return s[s.length-1]}for(let s=0;s<r.length;s++){let o=function(f){return f.split("").every(((d,p)=>r[s+p]===d))},u=function(f){let d=1/0;for(let m of f){let w=r.indexOf(m,s);-1!==w&&w<d&&(d=w)}let p=r.slice(s,d);return s+=p.length-1,p},c=r[s];if(o("var"))n+=u([")",","]);else if(t.some((f=>o(f)))){let f=t.find((d=>o(d)));n+=f,s+=f.length-1}else e.some((f=>o(f)))?n+=u([")"]):o("[")?n+=u(["]"]):["+","-","*","/"].includes(c)&&!["(","+","-","*","/",","].includes(a())?n+=` ${c} `:n+=c}return n.replace(/\s+/g," ")}))}(i),i)}function as(i){return i.startsWith("url(")}function os(i){return!isNaN(Number(i))||ss(i)}function lr(i){return i.endsWith("%")&&os(i.slice(0,-1))||ss(i)}function ur(i){return"0"===i||new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${Nb}$`).test(i)||ss(i)}function qu(i){return Lb.has(i)}function Ru(i){let e=yi(N(i));for(let t of e)if(!t.valid)return!1;return!0}function Mu(i){let e=0;return!!oe(i,"_").every((r=>!!(r=N(r)).startsWith("var(")||null!==ar(r,{loose:!0})&&(e++,!0)))&&e>0}function Bu(i){let e=0;return!!oe(i,",").every((r=>!!(r=N(r)).startsWith("var(")||!!(as(r)||function(i){i=N(i);for(let e of $b)if(i.startsWith(`${e}(`))return!0;return!1}(r)||["element(","image(","cross-fade(","image-set("].some((n=>r.startsWith(n))))&&(e++,!0)))&&e>0}function Fu(i){let e=0;return!!oe(i,"_").every((r=>!!(r=N(r)).startsWith("var(")||!!(zb.has(r)||ur(r)||lr(r))&&(e++,!0)))&&e>0}function Nu(i){let e=0;return!!oe(i,",").every((r=>!!(r=N(r)).startsWith("var(")||!(r.includes(" ")&&!/(['"])([^"']+)\1/g.test(r)||/^\d/g.test(r))&&(e++,!0)))&&e>0}function Lu(i){return Vb.has(i)}function $u(i){return Ub.has(i)}function ju(i){return Wb.has(i)}var Rb,Mb,Nb,Lb,$b,zb,Vb,Ub,Wb,fr=C((()=>{l(),is(),ns(),St(),Rb=["min","max","clamp","calc"],Mb=new Set(["scroll-timeline-name","timeline-scope","view-timeline-name","font-palette","scroll-timeline","animation-timeline","view-timeline"]),Nb=`(?:${["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"].join("|")})`,Lb=new Set(["thin","medium","thick"]),$b=new Set(["conic-gradient","linear-gradient","radial-gradient","repeating-conic-gradient","repeating-linear-gradient","repeating-radial-gradient"]),zb=new Set(["center","top","right","bottom","left"]),Vb=new Set(["serif","sans-serif","monospace","cursive","fantasy","system-ui","ui-serif","ui-sans-serif","ui-monospace","ui-rounded","math","emoji","fangsong"]),Ub=new Set(["xx-small","x-small","small","medium","large","x-large","x-large","xxx-large"]),Wb=new Set(["larger","smaller"])}));function zu(i){let e=["cover","contain"];return oe(i,",").every((t=>{let r=oe(t,"_").filter(Boolean);return!(1!==r.length||!e.includes(r[0]))||(1===r.length||2===r.length)&&r.every((n=>ur(n)||lr(n)||"auto"===n))}))}var Vu=C((()=>{l(),fr(),St()}));function Uu(i,e){i.walkClasses((t=>{t.value=e(t.value),t.raws&&t.raws.value&&(t.raws.value=mt(t.raws.value))}))}function Wu(i,e){if(!rt(i))return;let t=i.slice(1,-1);return e(t)?N(t):void 0}function wi(i,e={},{validate:t=(()=>!0)}={}){let r=e.values?.[i];return void 0!==r?r:e.supportsNegativeValues&&i.startsWith("-")?function(i,e={},t){let r=e[i];if(void 0!==r)return Xe(r);if(rt(i)){let n=Wu(i,t);return void 0===n?void 0:Xe(n)}}(i.slice(1),e.values,t):Wu(i,t)}function rt(i){return i.startsWith("[")&&i.endsWith("]")}function Gu(i){let e=i.lastIndexOf("/"),t=i.lastIndexOf("[",e),r=i.indexOf("]",e);return"]"===i[e-1]||"["===i[e+1]||-1!==t&&-1!==r&&t<e&&e<r&&(e=i.lastIndexOf("/",t)),-1===e||e===i.length-1||rt(i)&&!i.includes("]/[")?[i,void 0]:[i.slice(0,e),i.slice(e+1)]}function Ct(i){if("string"==typeof i&&i.includes("<alpha-value>")){let e=i;return({opacityValue:t=1})=>e.replace("<alpha-value>",t)}return i}function Hu(i){return N(i.slice(1,-1))}function Hb(i,e={},{tailwindConfig:t={}}={}){if(void 0!==e.values?.[i])return Ct(e.values?.[i]);let[r,n]=Gu(i);if(void 0!==n){let a=e.values?.[r]??(rt(r)?r.slice(1,-1):void 0);return void 0===a?void 0:(a=Ct(a),rt(n)?De(a,Hu(n)):void 0===t.theme?.opacity?.[n]?void 0:De(a,t.theme.opacity[n]))}return wi(i,e,{validate:Mu})}function Yb(i,e={}){return e.values?.[i]}function me(i){return(e,t)=>wi(e,t,{validate:i})}function us(i,e,t,r){if(t.values&&e in t.values)for(let{type:a}of i??[]){let s=ls[a](e,t,{tailwindConfig:r});if(void 0!==s)return[s,a,null]}if(rt(e)){let a=e.slice(1,-1),[s,o]=function(i,e){let t=i.indexOf(e);return-1===t?[void 0,i]:[i.slice(0,t),i.slice(t+1)]}(a,":");if(/^[\w-_]+$/g.test(s)){if(void 0!==s&&!Yu.includes(s))return[]}else o=a;if(o.length>0&&Yu.includes(s))return[wi(`[${o}]`,t),s,null]}let n=fs(i,e,t,r);for(let a of n)return a;return[]}function*fs(i,e,t,r){let n=Z(r,"generalizedModifiers"),[a,s]=Gu(e);if(n&&null!=t.modifiers&&("any"===t.modifiers||"object"==typeof t.modifiers&&(s&&rt(s)||s in t.modifiers))||(a=e,s=void 0),void 0!==s&&""===a&&(a="DEFAULT"),void 0!==s&&"object"==typeof t.modifiers){let u=t.modifiers?.[s]??null;null!==u?s=u:rt(s)&&(s=Hu(s))}for(let{type:u}of i??[]){let c=ls[u](a,t,{tailwindConfig:r});void 0!==c&&(yield[c,u,s??null])}}var ls,Yu,cr=C((()=>{l(),mi(),or(),fr(),fi(),Vu(),ze(),ls={any:wi,color:Hb,url:me(as),image:me(Bu),length:me(ur),percentage:me(lr),position:me(Fu),lookup:Yb,"generic-name":me(Lu),"family-name":me(Nu),number:me(os),"line-width":me(qu),"absolute-size":me($u),"relative-size":me(ju),shadow:me(Ru),size:me(zu)},Yu=Object.keys(ls)}));function L(i){return"function"==typeof i?i({}):i}var cs=C((()=>{l()}));function At(i){return"function"==typeof i}function pr(i,...e){let t=e.pop();for(let r of e)for(let n in r){let a=t(i[n],r[n]);void 0===a?ne(i[n])&&ne(r[n])?i[n]=pr({},i[n],r[n],t):i[n]=r[n]:i[n]=a}return i}function Xb(i){return i.reduce(((e,{extend:t})=>pr(e,t,((r,n)=>void 0===r?[n]:Array.isArray(r)?[n,...r]:[n,r]))),{})}function Kb(i){return{...i.reduce(((e,t)=>es(e,t)),{}),extend:Xb(i)}}function Qu(i,e){return Array.isArray(i)&&ne(i[0])?i.concat(e):Array.isArray(e)&&ne(e[0])&&ne(i)?[i,...e]:Array.isArray(e)?e:void 0}function Zb({extend:i,...e}){return pr(e,i,((t,r)=>At(t)||r.some(At)?(n,a)=>pr({},...[t,...r].map((s=>function(i,...e){return At(i)?i(...e):i}(s,n,a))),Qu):pr({},t,...r,Qu)))}function t0(i){let e=(t,r)=>{for(let n of function*(i){let e=Ke(i);if(0===e.length||(yield e,Array.isArray(i)))return;let r=i.match(/^(.*?)\s*\/\s*([^/]+)$/);if(null!==r){let[,n,a]=r,s=Ke(n);s.alpha=a,yield s}}(t)){let a=0,s=i;for(;null!=s&&a<n.length;)s=s[n[a++]],s=At(s)&&(void 0===n.alpha||a<=n.length-1)?s(e,ps):s;if(void 0!==s){if(void 0!==n.alpha){let o=Ct(s);return De(o,n.alpha,L(o))}return ne(s)?Ze(s):s}}return r};return Object.assign(e,{theme:e,...ps}),Object.keys(i).reduce(((t,r)=>(t[r]=At(i[r])?i[r](e,ps):i[r],t)),{})}function Ju(i){let e=[];return i.forEach((t=>{e=[...e,t];let r=t?.plugins??[];0!==r.length&&r.forEach((n=>{n.__isOptionsFunction&&(n=n()),e=[...e,...Ju([n?.config??{}])]}))})),e}function r0(i){return[...i].reduceRight(((t,r)=>At(r)?r({corePlugins:t}):function(i,e){return void 0===i?e:Array.isArray(i)?i:[...new Set(e.filter((r=>!1!==i&&!1!==i[r])).concat(Object.keys(i).filter((r=>!1!==i[r]))))]}(r,t)),gu)}function i0(i){return[...i].reduceRight(((t,r)=>[...t,...r]),[])}function ds(i){let e=[...Ju(i),{prefix:"",important:!1,separator:":"}];return function(i){(()=>{if(i.purge||!i.content||!Array.isArray(i.content)&&("object"!=typeof i.content||null===i.content))return!1;if(Array.isArray(i.content))return i.content.every((t=>"string"==typeof t||!("string"!=typeof t?.raw||t?.extension&&"string"!=typeof t?.extension)));if("object"==typeof i.content&&null!==i.content){if(Object.keys(i.content).some((t=>!["files","relative","extract","transform"].includes(t))))return!1;if(Array.isArray(i.content.files)){if(!i.content.files.every((t=>"string"==typeof t||!("string"!=typeof t?.raw||t?.extension&&"string"!=typeof t?.extension))))return!1;if("object"==typeof i.content.extract){for(let t of Object.values(i.content.extract))if("function"!=typeof t)return!1}else if(void 0!==i.content.extract&&"function"!=typeof i.content.extract)return!1;if("object"==typeof i.content.transform){for(let t of Object.values(i.content.transform))if("function"!=typeof t)return!1}else if(void 0!==i.content.transform&&"function"!=typeof i.content.transform)return!1;if("boolean"!=typeof i.content.relative&&void 0!==i.content.relative)return!1}return!0}return!1})()||F.warn("purge-deprecation",["The `purge`/`content` options have changed in Tailwind CSS v3.0.","Update your configuration file to eliminate this warning.","https://tailwindcss.com/docs/upgrade-guide#configure-content-sources"]),i.safelist=(()=>{let{content:t,purge:r,safelist:n}=i;return Array.isArray(n)?n:Array.isArray(t?.safelist)?t.safelist:Array.isArray(r?.safelist)?r.safelist:Array.isArray(r?.options?.safelist)?r.options.safelist:[]})(),i.blocklist=(()=>{let{blocklist:t}=i;if(Array.isArray(t)){if(t.every((r=>"string"==typeof r)))return t;F.warn("blocklist-invalid",["The `blocklist` option must be an array of strings.","https://tailwindcss.com/docs/content-configuration#discarding-classes"])}return[]})(),"function"==typeof i.prefix?(F.warn("prefix-function",["As of Tailwind CSS v3.0, `prefix` cannot be a function.","Update `prefix` in your configuration to be a string to eliminate this warning.","https://tailwindcss.com/docs/upgrade-guide#prefix-cannot-be-a-function"]),i.prefix=""):i.prefix=i.prefix??"",i.content={relative:(()=>{let{content:t}=i;return t?.relative?t.relative:Z(i,"relativeContentPathsByDefault")})(),files:(()=>{let{content:t,purge:r}=i;return Array.isArray(r)?r:Array.isArray(r?.content)?r.content:Array.isArray(t)?t:Array.isArray(t?.content)?t.content:Array.isArray(t?.files)?t.files:[]})(),extract:(()=>{let t=i.purge?.extract?i.purge.extract:i.content?.extract?i.content.extract:i.purge?.extract?.DEFAULT?i.purge.extract.DEFAULT:i.content?.extract?.DEFAULT?i.content.extract.DEFAULT:i.purge?.options?.extractors?i.purge.options.extractors:i.content?.options?.extractors?i.content.options.extractors:{},r={},n=i.purge?.options?.defaultExtractor?i.purge.options.defaultExtractor:i.content?.options?.defaultExtractor?i.content.options.defaultExtractor:void 0;if(void 0!==n&&(r.DEFAULT=n),"function"==typeof t)r.DEFAULT=t;else if(Array.isArray(t))for(let{extensions:a,extractor:s}of t??[])for(let o of a)r[o]=s;else"object"==typeof t&&null!==t&&Object.assign(r,t);return r})(),transform:(()=>{let t=i.purge?.transform?i.purge.transform:i.content?.transform?i.content.transform:i.purge?.transform?.DEFAULT?i.purge.transform.DEFAULT:i.content?.transform?.DEFAULT?i.content.transform.DEFAULT:{},r={};return"function"==typeof t&&(r.DEFAULT=t),"object"==typeof t&&null!==t&&Object.assign(r,t),r})()};for(let t of i.content.files)if("string"==typeof t&&/{([^,]*?)}/g.test(t)){F.warn("invalid-glob-braces",[`The glob pattern ${Xn(t)} in your Tailwind CSS configuration is invalid.`,`Update it to ${Xn(t.replace(/{([^,]*?)}/g,"$1"))} to silence this warning.`]);break}return i}(es({theme:t0(Zb(Kb(e.map((t=>t?.theme??{}))))),corePlugins:r0(e.map((t=>t.corePlugins))),plugins:i0(i.map((t=>t?.plugins??[])))},...e))}var ps,Xu=C((()=>{l(),fi(),yu(),bu(),Zn(),Su(),pi(),Eu(),kt(),hi(),cr(),or(),cs(),ps={colors:Kn,negative:i=>Object.keys(i).filter((e=>"0"!==i[e])).reduce(((e,t)=>{let r=Xe(i[t]);return void 0!==r&&(e[`-${t}`]=r),e}),{}),breakpoints:i=>Object.keys(i).filter((e=>"string"==typeof i[e])).reduce(((e,t)=>({...e,[`screen-${t}`]:i[t]})),{})}})),bi=v(((eT,Ku)=>{l(),Ku.exports={content:[],presets:[],darkMode:"media",theme:{accentColor:({theme:i})=>({...i("colors"),auto:"auto"}),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9"},backdropBlur:({theme:i})=>i("blur"),backdropBrightness:({theme:i})=>i("brightness"),backdropContrast:({theme:i})=>i("contrast"),backdropGrayscale:({theme:i})=>i("grayscale"),backdropHueRotate:({theme:i})=>i("hueRotate"),backdropInvert:({theme:i})=>i("invert"),backdropOpacity:({theme:i})=>i("opacity"),backdropSaturate:({theme:i})=>i("saturate"),backdropSepia:({theme:i})=>i("sepia"),backgroundColor:({theme:i})=>i("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:i})=>i("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"0",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:i})=>({...i("colors"),DEFAULT:i("colors.gray.200","currentColor")}),borderOpacity:({theme:i})=>i("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:i})=>({...i("spacing")}),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px"},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:i})=>i("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2"},caretColor:({theme:i})=>i("colors"),colors:({colors:i})=>({inherit:i.inherit,current:i.current,transparent:i.transparent,black:i.black,white:i.white,slate:i.slate,gray:i.gray,zinc:i.zinc,neutral:i.neutral,stone:i.stone,red:i.red,orange:i.orange,amber:i.amber,yellow:i.yellow,lime:i.lime,green:i.green,emerald:i.emerald,teal:i.teal,cyan:i.cyan,sky:i.sky,blue:i.blue,indigo:i.indigo,violet:i.violet,purple:i.purple,fuchsia:i.fuchsia,pink:i.pink,rose:i.rose}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem"},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2"},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:i})=>i("borderColor"),divideOpacity:({theme:i})=>i("borderOpacity"),divideWidth:({theme:i})=>i("borderWidth"),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:i})=>({none:"none",...i("colors")}),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%"}),flexGrow:{0:"0",DEFAULT:"1"},flexShrink:{0:"0",DEFAULT:"1"},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:i})=>i("spacing"),gradientColorStops:({theme:i})=>i("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%"},grayscale:{0:"0",DEFAULT:"100%"},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13"},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))"},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))"},height:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg"},inset:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%"}),invert:{0:"0",DEFAULT:"100%"},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:i})=>({auto:"auto",...i("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6"},maxHeight:({theme:i})=>({...i("spacing"),none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),maxWidth:({theme:i,breakpoints:e})=>({...i("spacing"),none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e(i("screens"))}),minHeight:({theme:i})=>({...i("spacing"),full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content"}),minWidth:({theme:i})=>({...i("spacing"),full:"100%",min:"min-content",max:"max-content",fit:"fit-content"}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1"},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12"},outlineColor:({theme:i})=>i("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},padding:({theme:i})=>i("spacing"),placeholderColor:({theme:i})=>i("colors"),placeholderOpacity:({theme:i})=>i("opacity"),ringColor:({theme:i})=>({DEFAULT:i("colors.blue.500","#3b82f6"),...i("colors")}),ringOffsetColor:({theme:i})=>i("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},ringOpacity:({theme:i})=>({DEFAULT:"0.5",...i("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg"},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2"},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5"},screens:{sm:"640px",md:"768px",lg:"1024px",xl:"1280px","2xl":"1536px"},scrollMargin:({theme:i})=>({...i("spacing")}),scrollPadding:({theme:i})=>i("spacing"),sepia:{0:"0",DEFAULT:"100%"},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg"},space:({theme:i})=>({...i("spacing")}),spacing:{px:"1px",0:"0px",.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",11:"2.75rem",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"},stroke:({theme:i})=>({none:"none",...i("colors")}),strokeWidth:{0:"0",1:"1",2:"2"},supports:{},data:{},textColor:({theme:i})=>i("colors"),textDecorationColor:({theme:i})=>i("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},textIndent:({theme:i})=>({...i("spacing")}),textOpacity:({theme:i})=>i("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px"},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms"},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms"},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:i})=>({...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%"}),size:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content"}),width:({theme:i})=>({auto:"auto",...i("spacing"),"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content"}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50"}},plugins:[]}}));function vi(i){let e=(i?.presets??[Zu.default]).slice().reverse().flatMap((n=>vi(n instanceof Function?n():n))),t={respectDefaultRingColorOpacity:{theme:{ringColor:({theme:n})=>({DEFAULT:"#3b82f67f",...n("colors")})}},disableColorOpacityUtilitiesByDefault:{corePlugins:{backgroundOpacity:!1,borderOpacity:!1,divideOpacity:!1,placeholderOpacity:!1,ringOpacity:!1,textOpacity:!1}}},r=Object.keys(t).filter((n=>Z(i,n))).map((n=>t[n]));return[i,...r,...e]}var Zu,ef=C((()=>{l(),Zu=K(bi()),ze()})),tf={};function dr(...i){let[,...e]=vi(i[0]);return ds([...i,...e])}Ae(tf,{default:()=>dr});var hs=C((()=>{l(),Xu(),ef()})),rf={};Ae(rf,{default:()=>ee});var ee,gt=C((()=>{l(),ee={resolve:i=>i,extname:i=>"."+i.split(".").pop()}}));function xi(i){return"object"==typeof i&&null!==i}function nf(i){return"string"==typeof i||i instanceof String}function ms(i){return xi(i)&&void 0===i.config&&!function(i){return 0===Object.keys(i).length}(i)?null:xi(i)&&void 0!==i.config&&nf(i.config)?ee.resolve(i.config):xi(i)&&void 0!==i.config&&xi(i.config)?null:nf(i)?ee.resolve(i):function(){for(let i of n0)try{let e=ee.resolve(i);return re.accessSync(e),e}catch(e){}return null}()}var n0,sf=C((()=>{l(),je(),gt(),n0=["./tailwind.config.js","./tailwind.config.cjs","./tailwind.config.mjs","./tailwind.config.ts"]})),af={};Ae(af,{default:()=>gs});var gs,W,V,ys=C((()=>{l(),gs={parse:i=>({href:i})}})),ws=v((()=>{l()})),ki=v(((fT,uf)=>{l();var of=(ci(),vu),lf=ws(),_t=class extends Error{constructor(e,t,r,n,a,s){super(e),this.name="CssSyntaxError",this.reason=e,a&&(this.file=a),n&&(this.source=n),s&&(this.plugin=s),void 0!==t&&void 0!==r&&("number"==typeof t?(this.line=t,this.column=r):(this.line=t.line,this.column=t.column,this.endLine=r.line,this.endColumn=r.column)),this.setMessage(),Error.captureStackTrace&&Error.captureStackTrace(this,_t)}setMessage(){this.message=this.plugin?this.plugin+": ":"",this.message+=this.file?this.file:"<css input>",void 0!==this.line&&(this.message+=":"+this.line+":"+this.column),this.message+=": "+this.reason}showSourceCode(e){if(!this.source)return"";let t=this.source;null==e&&(e=of.isColorSupported),lf&&e&&(t=lf(t));let o,u,r=t.split(/\r?\n/),n=Math.max(this.line-3,0),a=Math.min(this.line+2,r.length),s=String(a).length;if(e){let{bold:c,red:f,gray:d}=of.createColors(!0);o=p=>c(f(p)),u=p=>d(p)}else o=u=c=>c;return r.slice(n,a).map(((c,f)=>{let d=n+1+f,p=" "+(" "+d).slice(-s)+" | ";if(d===this.line){let m=u(p.replace(/\d/g," "))+c.slice(0,this.column-1).replace(/[^\t]/g," ");return o(">")+u(p)+c+"\n "+m+o("^")}return" "+u(p)+c})).join("\n")}toString(){let e=this.showSourceCode();return e&&(e="\n\n"+e+"\n"),this.name+": "+this.message+e}};uf.exports=_t,_t.default=_t})),Si=v(((cT,bs)=>{l(),bs.exports.isClean=Symbol("isClean"),bs.exports.my=Symbol("my")})),vs=v(((pT,cf)=>{l();var ff={colon:": ",indent:" ",beforeDecl:"\n",beforeRule:"\n",beforeOpen:" ",beforeClose:"\n",beforeComment:"\n",after:"\n",emptyBody:"",commentLeft:" ",commentRight:" ",semicolon:!1};var Ci=class{constructor(e){this.builder=e}stringify(e,t){if(!this[e.type])throw new Error("Unknown AST node type "+e.type+". Maybe you need to change PostCSS stringifier.");this[e.type](e,t)}document(e){this.body(e)}root(e){this.body(e),e.raws.after&&this.builder(e.raws.after)}comment(e){let t=this.raw(e,"left","commentLeft"),r=this.raw(e,"right","commentRight");this.builder("/*"+t+e.text+r+"*/",e)}decl(e,t){let r=this.raw(e,"between","colon"),n=e.prop+r+this.rawValue(e,"value");e.important&&(n+=e.raws.important||" !important"),t&&(n+=";"),this.builder(n,e)}rule(e){this.block(e,this.rawValue(e,"selector")),e.raws.ownSemicolon&&this.builder(e.raws.ownSemicolon,e,"end")}atrule(e,t){let r="@"+e.name,n=e.params?this.rawValue(e,"params"):"";if(void 0!==e.raws.afterName?r+=e.raws.afterName:n&&(r+=" "),e.nodes)this.block(e,r+n);else{let a=(e.raws.between||"")+(t?";":"");this.builder(r+n+a,e)}}body(e){let t=e.nodes.length-1;for(;t>0&&"comment"===e.nodes[t].type;)t-=1;let r=this.raw(e,"semicolon");for(let n=0;n<e.nodes.length;n++){let a=e.nodes[n],s=this.raw(a,"before");s&&this.builder(s),this.stringify(a,t!==n||r)}}block(e,t){let n,r=this.raw(e,"between","beforeOpen");this.builder(t+r+"{",e,"start"),e.nodes&&e.nodes.length?(this.body(e),n=this.raw(e,"after")):n=this.raw(e,"after","emptyBody"),n&&this.builder(n),this.builder("}",e,"end")}raw(e,t,r){let n;if(r||(r=t),t&&(n=e.raws[t],void 0!==n))return n;let a=e.parent;if("before"===r&&(!a||"root"===a.type&&a.first===e||a&&"document"===a.type))return"";if(!a)return ff[r];let s=e.root();if(s.rawCache||(s.rawCache={}),void 0!==s.rawCache[r])return s.rawCache[r];if("before"===r||"after"===r)return this.beforeAfter(e,r);{let o="raw"+((i=r)[0].toUpperCase()+i.slice(1));this[o]?n=this[o](s,e):s.walk((u=>{if(n=u.raws[t],void 0!==n)return!1}))}var i;return void 0===n&&(n=ff[r]),s.rawCache[r]=n,n}rawSemicolon(e){let t;return e.walk((r=>{if(r.nodes&&r.nodes.length&&"decl"===r.last.type&&(t=r.raws.semicolon,void 0!==t))return!1})),t}rawEmptyBody(e){let t;return e.walk((r=>{if(r.nodes&&0===r.nodes.length&&(t=r.raws.after,void 0!==t))return!1})),t}rawIndent(e){if(e.raws.indent)return e.raws.indent;let t;return e.walk((r=>{let n=r.parent;if(n&&n!==e&&n.parent&&n.parent===e&&void 0!==r.raws.before){let a=r.raws.before.split("\n");return t=a[a.length-1],t=t.replace(/\S/g,""),!1}})),t}rawBeforeComment(e,t){let r;return e.walkComments((n=>{if(void 0!==n.raws.before)return r=n.raws.before,r.includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1})),void 0===r?r=this.raw(t,null,"beforeDecl"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeDecl(e,t){let r;return e.walkDecls((n=>{if(void 0!==n.raws.before)return r=n.raws.before,r.includes("\n")&&(r=r.replace(/[^\n]+$/,"")),!1})),void 0===r?r=this.raw(t,null,"beforeRule"):r&&(r=r.replace(/\S/g,"")),r}rawBeforeRule(e){let t;return e.walk((r=>{if(r.nodes&&(r.parent!==e||e.first!==r)&&void 0!==r.raws.before)return t=r.raws.before,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/\S/g,"")),t}rawBeforeClose(e){let t;return e.walk((r=>{if(r.nodes&&r.nodes.length>0&&void 0!==r.raws.after)return t=r.raws.after,t.includes("\n")&&(t=t.replace(/[^\n]+$/,"")),!1})),t&&(t=t.replace(/\S/g,"")),t}rawBeforeOpen(e){let t;return e.walk((r=>{if("decl"!==r.type&&(t=r.raws.between,void 0!==t))return!1})),t}rawColon(e){let t;return e.walkDecls((r=>{if(void 0!==r.raws.between)return t=r.raws.between.replace(/[^\s:]/g,""),!1})),t}beforeAfter(e,t){let r;r="decl"===e.type?this.raw(e,null,"beforeDecl"):"comment"===e.type?this.raw(e,null,"beforeComment"):"before"===t?this.raw(e,null,"beforeRule"):this.raw(e,null,"beforeClose");let n=e.parent,a=0;for(;n&&"root"!==n.type;)a+=1,n=n.parent;if(r.includes("\n")){let s=this.raw(e,null,"indent");if(s.length)for(let o=0;o<a;o++)r+=s}return r}rawValue(e,t){let r=e[t],n=e.raws[t];return n&&n.value===r?n.raw:r}};cf.exports=Ci,Ci.default=Ci})),hr=v(((dT,pf)=>{l();var l0=vs();function xs(i,e){new l0(e).stringify(i)}pf.exports=xs,xs.default=xs})),mr=v(((hT,df)=>{l();var{isClean:Ai,my:u0}=Si(),f0=ki(),c0=vs(),p0=hr();function ks(i,e){let t=new i.constructor;for(let r in i){if(!Object.prototype.hasOwnProperty.call(i,r)||"proxyCache"===r)continue;let n=i[r],a=typeof n;"parent"===r&&"object"===a?e&&(t[r]=e):"source"===r?t[r]=n:Array.isArray(n)?t[r]=n.map((s=>ks(s,t))):("object"===a&&null!==n&&(n=ks(n)),t[r]=n)}return t}var _i=class{constructor(e={}){this.raws={},this[Ai]=!1,this[u0]=!0;for(let t in e)if("nodes"===t){this.nodes=[];for(let r of e[t])"function"==typeof r.clone?this.append(r.clone()):this.append(r)}else this[t]=e[t]}error(e,t={}){if(this.source){let{start:r,end:n}=this.rangeBy(t);return this.source.input.error(e,{line:r.line,column:r.column},{line:n.line,column:n.column},t)}return new f0(e)}warn(e,t,r){let n={node:this};for(let a in r)n[a]=r[a];return e.warn(t,n)}remove(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this}toString(e=p0){e.stringify&&(e=e.stringify);let t="";return e(this,(r=>{t+=r})),t}assign(e={}){for(let t in e)this[t]=e[t];return this}clone(e={}){let t=ks(this);for(let r in e)t[r]=e[r];return t}cloneBefore(e={}){let t=this.clone(e);return this.parent.insertBefore(this,t),t}cloneAfter(e={}){let t=this.clone(e);return this.parent.insertAfter(this,t),t}replaceWith(...e){if(this.parent){let t=this,r=!1;for(let n of e)n===this?r=!0:r?(this.parent.insertAfter(t,n),t=n):this.parent.insertBefore(t,n);r||this.remove()}return this}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}before(e){return this.parent.insertBefore(this,e),this}after(e){return this.parent.insertAfter(this,e),this}root(){let e=this;for(;e.parent&&"document"!==e.parent.type;)e=e.parent;return e}raw(e,t){return(new c0).raw(this,e,t)}cleanRaws(e){delete this.raws.before,delete this.raws.after,e||delete this.raws.between}toJSON(e,t){let r={},n=null==t;t=t||new Map;let a=0;for(let s in this){if(!Object.prototype.hasOwnProperty.call(this,s)||"parent"===s||"proxyCache"===s)continue;let o=this[s];if(Array.isArray(o))r[s]=o.map((u=>"object"==typeof u&&u.toJSON?u.toJSON(null,t):u));else if("object"==typeof o&&o.toJSON)r[s]=o.toJSON(null,t);else if("source"===s){let u=t.get(o.input);null==u&&(u=a,t.set(o.input,a),a++),r[s]={inputId:u,start:o.start,end:o.end}}else r[s]=o}return n&&(r.inputs=[...t.keys()].map((s=>s.toJSON()))),r}positionInside(e){let t=this.toString(),r=this.source.start.column,n=this.source.start.line;for(let a=0;a<e;a++)"\n"===t[a]?(r=1,n+=1):r+=1;return{line:n,column:r}}positionBy(e){let t=this.source.start;if(e.index)t=this.positionInside(e.index);else if(e.word){let r=this.toString().indexOf(e.word);-1!==r&&(t=this.positionInside(r))}return t}rangeBy(e){let t={line:this.source.start.line,column:this.source.start.column},r=this.source.end?{line:this.source.end.line,column:this.source.end.column+1}:{line:t.line,column:t.column+1};if(e.word){let n=this.toString().indexOf(e.word);-1!==n&&(t=this.positionInside(n),r=this.positionInside(n+e.word.length))}else e.start?t={line:e.start.line,column:e.start.column}:e.index&&(t=this.positionInside(e.index)),e.end?r={line:e.end.line,column:e.end.column}:e.endIndex?r=this.positionInside(e.endIndex):e.index&&(r=this.positionInside(e.index+1));return(r.line<t.line||r.line===t.line&&r.column<=t.column)&&(r={line:t.line,column:t.column+1}),{start:t,end:r}}getProxyProcessor(){return{set:(e,t,r)=>(e[t]===r||(e[t]=r,("prop"===t||"value"===t||"name"===t||"params"===t||"important"===t||"text"===t)&&e.markDirty()),!0),get:(e,t)=>"proxyOf"===t?e:"root"===t?()=>e.root().toProxy():e[t]}}toProxy(){return this.proxyCache||(this.proxyCache=new Proxy(this,this.getProxyProcessor())),this.proxyCache}addToError(e){if(e.postcssNode=this,e.stack&&this.source&&/\n\s{4}at /.test(e.stack)){let t=this.source;e.stack=e.stack.replace(/\n\s{4}at /,`$&${t.input.from}:${t.start.line}:${t.start.column}$&`)}return e}markDirty(){if(this[Ai]){this[Ai]=!1;let e=this;for(;e=e.parent;)e[Ai]=!1}}get proxyOf(){return this}};df.exports=_i,_i.default=_i})),gr=v(((mT,hf)=>{l();var d0=mr(),Oi=class extends d0{constructor(e){e&&void 0!==e.value&&"string"!=typeof e.value&&(e={...e,value:String(e.value)}),super(e),this.type="decl"}get variable(){return this.prop.startsWith("--")||"$"===this.prop[0]}};hf.exports=Oi,Oi.default=Oi})),Ss=v(((gT,mf)=>{l(),mf.exports=function(i,e){return{generate:()=>{let t="";return i(e,(r=>{t+=r})),[t]}}}})),yr=v(((yT,gf)=>{l();var h0=mr(),Ei=class extends h0{constructor(e){super(e),this.type="comment"}};gf.exports=Ei,Ei.default=Ei})),it=v(((wT,Af)=>{l();var xf,Cs,As,kf,{isClean:yf,my:wf}=Si(),bf=gr(),vf=yr(),m0=mr();function Sf(i){return i.map((e=>(e.nodes&&(e.nodes=Sf(e.nodes)),delete e.source,e)))}function Cf(i){if(i[yf]=!1,i.proxyOf.nodes)for(let e of i.proxyOf.nodes)Cf(e)}var we=class extends m0{push(e){return e.parent=this,this.proxyOf.nodes.push(e),this}each(e){if(!this.proxyOf.nodes)return;let r,n,t=this.getIterator();for(;this.indexes[t]<this.proxyOf.nodes.length&&(r=this.indexes[t],n=e(this.proxyOf.nodes[r],r),!1!==n);)this.indexes[t]+=1;return delete this.indexes[t],n}walk(e){return this.each(((t,r)=>{let n;try{n=e(t,r)}catch(a){throw t.addToError(a)}return!1!==n&&t.walk&&(n=t.walk(e)),n}))}walkDecls(e,t){return t?e instanceof RegExp?this.walk(((r,n)=>{if("decl"===r.type&&e.test(r.prop))return t(r,n)})):this.walk(((r,n)=>{if("decl"===r.type&&r.prop===e)return t(r,n)})):(t=e,this.walk(((r,n)=>{if("decl"===r.type)return t(r,n)})))}walkRules(e,t){return t?e instanceof RegExp?this.walk(((r,n)=>{if("rule"===r.type&&e.test(r.selector))return t(r,n)})):this.walk(((r,n)=>{if("rule"===r.type&&r.selector===e)return t(r,n)})):(t=e,this.walk(((r,n)=>{if("rule"===r.type)return t(r,n)})))}walkAtRules(e,t){return t?e instanceof RegExp?this.walk(((r,n)=>{if("atrule"===r.type&&e.test(r.name))return t(r,n)})):this.walk(((r,n)=>{if("atrule"===r.type&&r.name===e)return t(r,n)})):(t=e,this.walk(((r,n)=>{if("atrule"===r.type)return t(r,n)})))}walkComments(e){return this.walk(((t,r)=>{if("comment"===t.type)return e(t,r)}))}append(...e){for(let t of e){let r=this.normalize(t,this.last);for(let n of r)this.proxyOf.nodes.push(n)}return this.markDirty(),this}prepend(...e){e=e.reverse();for(let t of e){let r=this.normalize(t,this.first,"prepend").reverse();for(let n of r)this.proxyOf.nodes.unshift(n);for(let n in this.indexes)this.indexes[n]=this.indexes[n]+r.length}return this.markDirty(),this}cleanRaws(e){if(super.cleanRaws(e),this.nodes)for(let t of this.nodes)t.cleanRaws(e)}insertBefore(e,t){let s,r=this.index(e),n=0===r&&"prepend",a=this.normalize(t,this.proxyOf.nodes[r],n).reverse();r=this.index(e);for(let o of a)this.proxyOf.nodes.splice(r,0,o);for(let o in this.indexes)s=this.indexes[o],r<=s&&(this.indexes[o]=s+a.length);return this.markDirty(),this}insertAfter(e,t){let a,r=this.index(e),n=this.normalize(t,this.proxyOf.nodes[r]).reverse();r=this.index(e);for(let s of n)this.proxyOf.nodes.splice(r+1,0,s);for(let s in this.indexes)a=this.indexes[s],r<a&&(this.indexes[s]=a+n.length);return this.markDirty(),this}removeChild(e){let t;e=this.index(e),this.proxyOf.nodes[e].parent=void 0,this.proxyOf.nodes.splice(e,1);for(let r in this.indexes)t=this.indexes[r],t>=e&&(this.indexes[r]=t-1);return this.markDirty(),this}removeAll(){for(let e of this.proxyOf.nodes)e.parent=void 0;return this.proxyOf.nodes=[],this.markDirty(),this}replaceValues(e,t,r){return r||(r=t,t={}),this.walkDecls((n=>{t.props&&!t.props.includes(n.prop)||t.fast&&!n.value.includes(t.fast)||(n.value=n.value.replace(e,r))})),this.markDirty(),this}every(e){return this.nodes.every(e)}some(e){return this.nodes.some(e)}index(e){return"number"==typeof e?e:(e.proxyOf&&(e=e.proxyOf),this.proxyOf.nodes.indexOf(e))}get first(){if(this.proxyOf.nodes)return this.proxyOf.nodes[0]}get last(){if(this.proxyOf.nodes)return this.proxyOf.nodes[this.proxyOf.nodes.length-1]}normalize(e,t){if("string"==typeof e)e=Sf(xf(e).nodes);else if(Array.isArray(e)){e=e.slice(0);for(let n of e)n.parent&&n.parent.removeChild(n,"ignore")}else if("root"===e.type&&"document"!==this.type){e=e.nodes.slice(0);for(let n of e)n.parent&&n.parent.removeChild(n,"ignore")}else if(e.type)e=[e];else if(e.prop){if(void 0===e.value)throw new Error("Value field is missed in node creation");"string"!=typeof e.value&&(e.value=String(e.value)),e=[new bf(e)]}else if(e.selector)e=[new Cs(e)];else if(e.name)e=[new As(e)];else{if(!e.text)throw new Error("Unknown node type in node creation");e=[new vf(e)]}return e.map((n=>(n[wf]||we.rebuild(n),(n=n.proxyOf).parent&&n.parent.removeChild(n),n[yf]&&Cf(n),void 0===n.raws.before&&t&&void 0!==t.raws.before&&(n.raws.before=t.raws.before.replace(/\S/g,"")),n.parent=this.proxyOf,n)))}getProxyProcessor(){return{set:(e,t,r)=>(e[t]===r||(e[t]=r,("name"===t||"params"===t||"selector"===t)&&e.markDirty()),!0),get:(e,t)=>"proxyOf"===t?e:e[t]?"each"===t||"string"==typeof t&&t.startsWith("walk")?(...r)=>e[t](...r.map((n=>"function"==typeof n?(a,s)=>n(a.toProxy(),s):n))):"every"===t||"some"===t?r=>e[t](((n,...a)=>r(n.toProxy(),...a))):"root"===t?()=>e.root().toProxy():"nodes"===t?e.nodes.map((r=>r.toProxy())):"first"===t||"last"===t?e[t].toProxy():e[t]:e[t]}}getIterator(){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach+=1;let e=this.lastEach;return this.indexes[e]=0,e}};we.registerParse=i=>{xf=i},we.registerRule=i=>{Cs=i},we.registerAtRule=i=>{As=i},we.registerRoot=i=>{kf=i},Af.exports=we,we.default=we,we.rebuild=i=>{"atrule"===i.type?Object.setPrototypeOf(i,As.prototype):"rule"===i.type?Object.setPrototypeOf(i,Cs.prototype):"decl"===i.type?Object.setPrototypeOf(i,bf.prototype):"comment"===i.type?Object.setPrototypeOf(i,vf.prototype):"root"===i.type&&Object.setPrototypeOf(i,kf.prototype),i[wf]=!0,i.nodes&&i.nodes.forEach((e=>{we.rebuild(e)}))}})),Ti=v(((bT,Ef)=>{l();var _f,Of,g0=it(),Ot=class extends g0{constructor(e){super({type:"document",...e}),this.nodes||(this.nodes=[])}toResult(e={}){return new _f(new Of,this,e).stringify()}};Ot.registerLazyResult=i=>{_f=i},Ot.registerProcessor=i=>{Of=i},Ef.exports=Ot,Ot.default=Ot})),_s=v(((vT,Pf)=>{l();var Tf={};Pf.exports=function(e){Tf[e]||(Tf[e]=!0,"undefined"!=typeof console&&console.warn&&console.warn(e))}})),Os=v(((xT,Df)=>{l();var Pi=class{constructor(e,t={}){if(this.type="warning",this.text=e,t.node&&t.node.source){let r=t.node.rangeBy(t);this.line=r.start.line,this.column=r.start.column,this.endLine=r.end.line,this.endColumn=r.end.column}for(let r in t)this[r]=t[r]}toString(){return this.node?this.node.error(this.text,{plugin:this.plugin,index:this.index,word:this.word}).message:this.plugin?this.plugin+": "+this.text:this.text}};Df.exports=Pi,Pi.default=Pi})),Ii=v(((kT,If)=>{l();var y0=Os(),Di=class{constructor(e,t,r){this.processor=e,this.messages=[],this.root=t,this.opts=r,this.css=void 0,this.map=void 0}toString(){return this.css}warn(e,t={}){t.plugin||this.lastPlugin&&this.lastPlugin.postcssPlugin&&(t.plugin=this.lastPlugin.postcssPlugin);let r=new y0(e,t);return this.messages.push(r),r}warnings(){return this.messages.filter((e=>"warning"===e.type))}get content(){return this.css}};If.exports=Di,Di.default=Di})),Ff=v(((ST,Bf)=>{l();var Es="'".charCodeAt(0),qf='"'.charCodeAt(0),qi="\\".charCodeAt(0),Rf="/".charCodeAt(0),Ri="\n".charCodeAt(0),wr=" ".charCodeAt(0),Mi="\f".charCodeAt(0),Bi="\t".charCodeAt(0),Fi="\r".charCodeAt(0),w0="[".charCodeAt(0),b0="]".charCodeAt(0),v0="(".charCodeAt(0),x0=")".charCodeAt(0),k0="{".charCodeAt(0),S0="}".charCodeAt(0),C0=";".charCodeAt(0),A0="*".charCodeAt(0),_0=":".charCodeAt(0),O0="@".charCodeAt(0),Ni=/[\t\n\f\r "#'()/;[\\\]{}]/g,Li=/[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g,E0=/.[\n"'(/\\]/,Mf=/[\da-f]/i;Bf.exports=function(e,t={}){let a,s,o,u,c,f,d,p,m,w,r=e.css.valueOf(),n=t.ignoreErrors,x=r.length,y=0,b=[],k=[];function _(q){throw e.error("Unclosed "+q,y)}return{back:function(q){k.push(q)},nextToken:function(q){if(k.length)return k.pop();if(y>=x)return;let X=!!q&&q.ignoreUnclosed;switch(a=r.charCodeAt(y),a){case Ri:case wr:case Bi:case Fi:case Mi:s=y;do{s+=1,a=r.charCodeAt(s)}while(a===wr||a===Ri||a===Bi||a===Fi||a===Mi);w=["space",r.slice(y,s)],y=s-1;break;case w0:case b0:case k0:case S0:case _0:case C0:case x0:{let le=String.fromCharCode(a);w=[le,le,y];break}case v0:if(p=b.length?b.pop()[1]:"",m=r.charCodeAt(y+1),"url"===p&&m!==Es&&m!==qf&&m!==wr&&m!==Ri&&m!==Bi&&m!==Mi&&m!==Fi){s=y;do{if(f=!1,s=r.indexOf(")",s+1),-1===s){if(n||X){s=y;break}_("bracket")}for(d=s;r.charCodeAt(d-1)===qi;)d-=1,f=!f}while(f);w=["brackets",r.slice(y,s+1),y,s],y=s}else s=r.indexOf(")",y+1),u=r.slice(y,s+1),-1===s||E0.test(u)?w=["(","(",y]:(w=["brackets",u,y,s],y=s);break;case Es:case qf:o=a===Es?"'":'"',s=y;do{if(f=!1,s=r.indexOf(o,s+1),-1===s){if(n||X){s=y+1;break}_("string")}for(d=s;r.charCodeAt(d-1)===qi;)d-=1,f=!f}while(f);w=["string",r.slice(y,s+1),y,s],y=s;break;case O0:Ni.lastIndex=y+1,Ni.test(r),s=0===Ni.lastIndex?r.length-1:Ni.lastIndex-2,w=["at-word",r.slice(y,s+1),y,s],y=s;break;case qi:for(s=y,c=!0;r.charCodeAt(s+1)===qi;)s+=1,c=!c;if(a=r.charCodeAt(s+1),c&&a!==Rf&&a!==wr&&a!==Ri&&a!==Bi&&a!==Fi&&a!==Mi&&(s+=1,Mf.test(r.charAt(s)))){for(;Mf.test(r.charAt(s+1));)s+=1;r.charCodeAt(s+1)===wr&&(s+=1)}w=["word",r.slice(y,s+1),y,s],y=s;break;default:a===Rf&&r.charCodeAt(y+1)===A0?(s=r.indexOf("*/",y+2)+1,0===s&&(n||X?s=r.length:_("comment")),w=["comment",r.slice(y,s+1),y,s],y=s):(Li.lastIndex=y+1,Li.test(r),s=0===Li.lastIndex?r.length-1:Li.lastIndex-2,w=["word",r.slice(y,s+1),y,s],b.push(w),y=s)}return y++,w},endOfFile:function(){return 0===k.length&&y>=x},position:function(){return y}}}})),$i=v(((CT,Lf)=>{l();var Nf=it(),br=class extends Nf{constructor(e){super(e),this.type="atrule"}append(...e){return this.proxyOf.nodes||(this.nodes=[]),super.append(...e)}prepend(...e){return this.proxyOf.nodes||(this.nodes=[]),super.prepend(...e)}};Lf.exports=br,br.default=br,Nf.registerAtRule(br)})),Et=v(((AT,Vf)=>{l();var jf,zf,$f=it(),yt=class extends $f{constructor(e){super(e),this.type="root",this.nodes||(this.nodes=[])}removeChild(e,t){let r=this.index(e);return!t&&0===r&&this.nodes.length>1&&(this.nodes[1].raws.before=this.nodes[r].raws.before),super.removeChild(e)}normalize(e,t,r){let n=super.normalize(e);if(t)if("prepend"===r)this.nodes.length>1?t.raws.before=this.nodes[1].raws.before:delete t.raws.before;else if(this.first!==t)for(let a of n)a.raws.before=t.raws.before;return n}toResult(e={}){return new jf(new zf,this,e).stringify()}};yt.registerLazyResult=i=>{jf=i},yt.registerProcessor=i=>{zf=i},Vf.exports=yt,yt.default=yt,$f.registerRoot(yt)})),Ts=v(((_T,Uf)=>{l();var vr={split(i,e,t){let r=[],n="",a=!1,s=0,o=!1,u="",c=!1;for(let f of i)c?c=!1:"\\"===f?c=!0:o?f===u&&(o=!1):'"'===f||"'"===f?(o=!0,u=f):"("===f?s+=1:")"===f?s>0&&(s-=1):0===s&&e.includes(f)&&(a=!0),a?(""!==n&&r.push(n.trim()),n="",a=!1):n+=f;return(t||""!==n)&&r.push(n.trim()),r},space(i){let e=[" ","\n","\t"];return vr.split(i,e)},comma:i=>vr.split(i,[","],!0)};Uf.exports=vr,vr.default=vr})),ji=v(((OT,Gf)=>{l();var Wf=it(),T0=Ts(),xr=class extends Wf{constructor(e){super(e),this.type="rule",this.nodes||(this.nodes=[])}get selectors(){return T0.comma(this.selector)}set selectors(e){let t=this.selector?this.selector.match(/,\s*/):null,r=t?t[0]:","+this.raw("between","beforeOpen");this.selector=e.join(r)}};Gf.exports=xr,xr.default=xr,Wf.registerRule(xr)})),Xf=v(((ET,Jf)=>{l();var P0=gr(),D0=Ff(),I0=yr(),q0=$i(),R0=Et(),Hf=ji(),Yf={empty:!0,space:!0};Jf.exports=class{constructor(e){this.input=e,this.root=new R0,this.current=this.root,this.spaces="",this.semicolon=!1,this.customProperty=!1,this.createTokenizer(),this.root.source={input:e,start:{offset:0,line:1,column:1}}}createTokenizer(){this.tokenizer=D0(this.input)}parse(){let e;for(;!this.tokenizer.endOfFile();)switch(e=this.tokenizer.nextToken(),e[0]){case"space":this.spaces+=e[1];break;case";":this.freeSemicolon(e);break;case"}":this.end(e);break;case"comment":this.comment(e);break;case"at-word":this.atrule(e);break;case"{":this.emptyRule(e);break;default:this.other(e)}this.endFile()}comment(e){let t=new I0;this.init(t,e[2]),t.source.end=this.getPosition(e[3]||e[2]);let r=e[1].slice(2,-2);if(/^\s*$/.test(r))t.text="",t.raws.left=r,t.raws.right="";else{let n=r.match(/^(\s*)([^]*\S)(\s*)$/);t.text=n[2],t.raws.left=n[1],t.raws.right=n[3]}}emptyRule(e){let t=new Hf;this.init(t,e[2]),t.selector="",t.raws.between="",this.current=t}other(e){let t=!1,r=null,n=!1,a=null,s=[],o=e[1].startsWith("--"),u=[],c=e;for(;c;){if(r=c[0],u.push(c),"("===r||"["===r)a||(a=c),s.push("("===r?")":"]");else if(o&&n&&"{"===r)a||(a=c),s.push("}");else if(0===s.length){if(";"===r){if(n)return void this.decl(u,o);break}if("{"===r)return void this.rule(u);if("}"===r){this.tokenizer.back(u.pop()),t=!0;break}":"===r&&(n=!0)}else r===s[s.length-1]&&(s.pop(),0===s.length&&(a=null));c=this.tokenizer.nextToken()}if(this.tokenizer.endOfFile()&&(t=!0),s.length>0&&this.unclosedBracket(a),t&&n){if(!o)for(;u.length&&(c=u[u.length-1][0],"space"===c||"comment"===c);)this.tokenizer.back(u.pop());this.decl(u,o)}else this.unknownWord(u)}rule(e){e.pop();let t=new Hf;this.init(t,e[0][2]),t.raws.between=this.spacesAndCommentsFromEnd(e),this.raw(t,"selector",e),this.current=t}decl(e,t){let r=new P0;this.init(r,e[0][2]);let a,n=e[e.length-1];for(";"===n[0]&&(this.semicolon=!0,e.pop()),r.source.end=this.getPosition(n[3]||n[2]||function(i){for(let e=i.length-1;e>=0;e--){let t=i[e],r=t[3]||t[2];if(r)return r}}(e));"word"!==e[0][0];)1===e.length&&this.unknownWord(e),r.raws.before+=e.shift()[1];for(r.source.start=this.getPosition(e[0][2]),r.prop="";e.length;){let c=e[0][0];if(":"===c||"space"===c||"comment"===c)break;r.prop+=e.shift()[1]}for(r.raws.between="";e.length;){if(a=e.shift(),":"===a[0]){r.raws.between+=a[1];break}"word"===a[0]&&/\w/.test(a[1])&&this.unknownWord([a]),r.raws.between+=a[1]}("_"===r.prop[0]||"*"===r.prop[0])&&(r.raws.before+=r.prop[0],r.prop=r.prop.slice(1));let o,s=[];for(;e.length&&(o=e[0][0],"space"===o||"comment"===o);)s.push(e.shift());this.precheckMissedSemicolon(e);for(let c=e.length-1;c>=0;c--){if(a=e[c],"!important"===a[1].toLowerCase()){r.important=!0;let f=this.stringFrom(e,c);f=this.spacesFromEnd(e)+f," !important"!==f&&(r.raws.important=f);break}if("important"===a[1].toLowerCase()){let f=e.slice(0),d="";for(let p=c;p>0;p--){let m=f[p][0];if(0===d.trim().indexOf("!")&&"space"!==m)break;d=f.pop()[1]+d}0===d.trim().indexOf("!")&&(r.important=!0,r.raws.important=d,e=f)}if("space"!==a[0]&&"comment"!==a[0])break}e.some((c=>"space"!==c[0]&&"comment"!==c[0]))&&(r.raws.between+=s.map((c=>c[1])).join(""),s=[]),this.raw(r,"value",s.concat(e),t),r.value.includes(":")&&!t&&this.checkMissedSemicolon(e)}atrule(e){let t=new q0;t.name=e[1].slice(1),""===t.name&&this.unnamedAtrule(t,e),this.init(t,e[2]);let r,n,a,s=!1,o=!1,u=[],c=[];for(;!this.tokenizer.endOfFile();){if(r=(e=this.tokenizer.nextToken())[0],"("===r||"["===r?c.push("("===r?")":"]"):"{"===r&&c.length>0?c.push("}"):r===c[c.length-1]&&c.pop(),0===c.length){if(";"===r){t.source.end=this.getPosition(e[2]),this.semicolon=!0;break}if("{"===r){o=!0;break}if("}"===r){if(u.length>0){for(a=u.length-1,n=u[a];n&&"space"===n[0];)n=u[--a];n&&(t.source.end=this.getPosition(n[3]||n[2]))}this.end(e);break}u.push(e)}else u.push(e);if(this.tokenizer.endOfFile()){s=!0;break}}t.raws.between=this.spacesAndCommentsFromEnd(u),u.length?(t.raws.afterName=this.spacesAndCommentsFromStart(u),this.raw(t,"params",u),s&&(e=u[u.length-1],t.source.end=this.getPosition(e[3]||e[2]),this.spaces=t.raws.between,t.raws.between="")):(t.raws.afterName="",t.params=""),o&&(t.nodes=[],this.current=t)}end(e){this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.semicolon=!1,this.current.raws.after=(this.current.raws.after||"")+this.spaces,this.spaces="",this.current.parent?(this.current.source.end=this.getPosition(e[2]),this.current=this.current.parent):this.unexpectedClose(e)}endFile(){this.current.parent&&this.unclosedBlock(),this.current.nodes&&this.current.nodes.length&&(this.current.raws.semicolon=this.semicolon),this.current.raws.after=(this.current.raws.after||"")+this.spaces}freeSemicolon(e){if(this.spaces+=e[1],this.current.nodes){let t=this.current.nodes[this.current.nodes.length-1];t&&"rule"===t.type&&!t.raws.ownSemicolon&&(t.raws.ownSemicolon=this.spaces,this.spaces="")}}getPosition(e){let t=this.input.fromOffset(e);return{offset:e,line:t.line,column:t.col}}init(e,t){this.current.push(e),e.source={start:this.getPosition(t),input:this.input},e.raws.before=this.spaces,this.spaces="","comment"!==e.type&&(this.semicolon=!1)}raw(e,t,r,n){let a,s,f,d,o=r.length,u="",c=!0;for(let p=0;p<o;p+=1)a=r[p],s=a[0],"space"!==s||p!==o-1||n?"comment"===s?(d=r[p-1]?r[p-1][0]:"empty",f=r[p+1]?r[p+1][0]:"empty",Yf[d]||Yf[f]||","===u.slice(-1)?c=!1:u+=a[1]):u+=a[1]:c=!1;if(!c){let p=r.reduce(((m,w)=>m+w[1]),"");e.raws[t]={value:u,raw:p}}e[t]=u}spacesAndCommentsFromEnd(e){let t,r="";for(;e.length&&(t=e[e.length-1][0],"space"===t||"comment"===t);)r=e.pop()[1]+r;return r}spacesAndCommentsFromStart(e){let t,r="";for(;e.length&&(t=e[0][0],"space"===t||"comment"===t);)r+=e.shift()[1];return r}spacesFromEnd(e){let t,r="";for(;e.length&&(t=e[e.length-1][0],"space"===t);)r=e.pop()[1]+r;return r}stringFrom(e,t){let r="";for(let n=t;n<e.length;n++)r+=e[n][1];return e.splice(t,e.length-t),r}colon(e){let r,n,a,t=0;for(let[s,o]of e.entries()){if(r=o,n=r[0],"("===n&&(t+=1),")"===n&&(t-=1),0===t&&":"===n){if(a){if("word"===a[0]&&"progid"===a[1])continue;return s}this.doubleColon(r)}a=r}return!1}unclosedBracket(e){throw this.input.error("Unclosed bracket",{offset:e[2]},{offset:e[2]+1})}unknownWord(e){throw this.input.error("Unknown word",{offset:e[0][2]},{offset:e[0][2]+e[0][1].length})}unexpectedClose(e){throw this.input.error("Unexpected }",{offset:e[2]},{offset:e[2]+1})}unclosedBlock(){let e=this.current.source.start;throw this.input.error("Unclosed block",e.line,e.column)}doubleColon(e){throw this.input.error("Double colon",{offset:e[2]},{offset:e[2]+e[1].length})}unnamedAtrule(e,t){throw this.input.error("At-rule without name",{offset:t[2]},{offset:t[2]+t[1].length})}precheckMissedSemicolon(){}checkMissedSemicolon(e){let t=this.colon(e);if(!1===t)return;let n,r=0;for(let a=t-1;a>=0&&(n=e[a],"space"===n[0]||(r+=1,2!==r));a--);throw this.input.error("Missed semicolon","word"===n[0]?n[3]+1:n[2])}}})),Kf=v((()=>{l()})),ec=v(((DT,Zf)=>{l();Zf.exports={nanoid:(i=21)=>{let e="",t=i;for(;t--;)e+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[64*Math.random()|0];return e},customAlphabet:(i,e=21)=>(t=e)=>{let r="",n=t;for(;n--;)r+=i[Math.random()*i.length|0];return r}}})),Ps=v(((IT,tc)=>{l(),tc.exports={}})),Vi=v(((qT,sc)=>{l();var{SourceMapConsumer:L0,SourceMapGenerator:$0}=Kf(),{fileURLToPath:rc,pathToFileURL:zi}=(ys(),af),{resolve:Ds,isAbsolute:Is}=(gt(),rf),{nanoid:j0}=ec(),qs=ws(),ic=ki(),z0=Ps(),Rs=Symbol("fromOffsetCache"),V0=Boolean(L0&&$0),nc=Boolean(Ds&&Is),kr=class{constructor(e,t={}){if(null==e||"object"==typeof e&&!e.toString)throw new Error(`PostCSS received ${e} instead of CSS string`);if(this.css=e.toString(),"\ufeff"===this.css[0]||""===this.css[0]?(this.hasBOM=!0,this.css=this.css.slice(1)):this.hasBOM=!1,t.from&&(!nc||/^\w+:\/\//.test(t.from)||Is(t.from)?this.file=t.from:this.file=Ds(t.from)),nc&&V0){let r=new z0(this.css,t);if(r.text){this.map=r;let n=r.consumer().file;!this.file&&n&&(this.file=this.mapResolve(n))}}this.file||(this.id="<input css "+j0(6)+">"),this.map&&(this.map.file=this.from)}fromOffset(e){let t,r;if(this[Rs])r=this[Rs];else{let a=this.css.split("\n");r=new Array(a.length);let s=0;for(let o=0,u=a.length;o<u;o++)r[o]=s,s+=a[o].length+1;this[Rs]=r}t=r[r.length-1];let n=0;if(e>=t)n=r.length-1;else{let s,a=r.length-2;for(;n<a;)if(s=n+(a-n>>1),e<r[s])a=s-1;else{if(!(e>=r[s+1])){n=s;break}n=s+1}}return{line:n+1,col:e-r[n]+1}}error(e,t,r,n={}){let a,s,o;if(t&&"object"==typeof t){let c=t,f=r;if("number"==typeof c.offset){let d=this.fromOffset(c.offset);t=d.line,r=d.col}else t=c.line,r=c.column;if("number"==typeof f.offset){let d=this.fromOffset(f.offset);s=d.line,o=d.col}else s=f.line,o=f.column}else if(!r){let c=this.fromOffset(t);t=c.line,r=c.col}let u=this.origin(t,r,s,o);return a=u?new ic(e,void 0===u.endLine?u.line:{line:u.line,column:u.column},void 0===u.endLine?u.column:{line:u.endLine,column:u.endColumn},u.source,u.file,n.plugin):new ic(e,void 0===s?t:{line:t,column:r},void 0===s?r:{line:s,column:o},this.css,this.file,n.plugin),a.input={line:t,column:r,endLine:s,endColumn:o,source:this.css},this.file&&(zi&&(a.input.url=zi(this.file).toString()),a.input.file=this.file),a}origin(e,t,r,n){if(!this.map)return!1;let o,u,a=this.map.consumer(),s=a.originalPositionFor({line:e,column:t});if(!s.source)return!1;"number"==typeof r&&(o=a.originalPositionFor({line:r,column:n})),u=Is(s.source)?zi(s.source):new URL(s.source,this.map.consumer().sourceRoot||zi(this.map.mapFile));let c={url:u.toString(),line:s.line,column:s.column,endLine:o&&o.line,endColumn:o&&o.column};if("file:"===u.protocol){if(!rc)throw new Error("file: protocol is not available in this PostCSS build");c.file=rc(u)}let f=a.sourceContentFor(s.source);return f&&(c.source=f),c}mapResolve(e){return/^\w+:\/\//.test(e)?e:Ds(this.map.consumer().sourceRoot||this.map.root||".",e)}get from(){return this.file||this.id}toJSON(){let e={};for(let t of["hasBOM","css","file","id"])null!=this[t]&&(e[t]=this[t]);return this.map&&(e.map={...this.map},e.map.consumerCache&&(e.map.consumerCache=void 0)),e}};sc.exports=kr,kr.default=kr,qs&&qs.registerInput&&qs.registerInput(kr)})),Wi=v(((RT,ac)=>{l();var U0=it(),W0=Xf(),G0=Vi();function Ui(i,e){let t=new G0(i,e),r=new W0(t);try{r.parse()}catch(n){throw n}return r.root}ac.exports=Ui,Ui.default=Ui,U0.registerParse(Ui)})),Fs=v(((BT,fc)=>{l();var{isClean:Ie,my:H0}=Si(),Y0=Ss(),Q0=hr(),J0=it(),X0=Ti(),oc=(_s(),Ii()),K0=Wi(),Z0=Et(),ev={document:"Document",root:"Root",atrule:"AtRule",rule:"Rule",decl:"Declaration",comment:"Comment"},tv={postcssPlugin:!0,prepare:!0,Once:!0,Document:!0,Root:!0,Declaration:!0,Rule:!0,AtRule:!0,Comment:!0,DeclarationExit:!0,RuleExit:!0,AtRuleExit:!0,CommentExit:!0,RootExit:!0,DocumentExit:!0,OnceExit:!0},rv={postcssPlugin:!0,prepare:!0,Once:!0},Tt=0;function Sr(i){return"object"==typeof i&&"function"==typeof i.then}function lc(i){let e=!1,t=ev[i.type];return"decl"===i.type?e=i.prop.toLowerCase():"atrule"===i.type&&(e=i.name.toLowerCase()),e&&i.append?[t,t+"-"+e,Tt,t+"Exit",t+"Exit-"+e]:e?[t,t+"-"+e,t+"Exit",t+"Exit-"+e]:i.append?[t,Tt,t+"Exit"]:[t,t+"Exit"]}function uc(i){let e;return e="document"===i.type?["Document",Tt,"DocumentExit"]:"root"===i.type?["Root",Tt,"RootExit"]:lc(i),{node:i,events:e,eventIndex:0,visitors:[],visitorIndex:0,iterator:0}}function Ms(i){return i[Ie]=!1,i.nodes&&i.nodes.forEach((e=>Ms(e))),i}var Bs={},Ve=class{constructor(e,t,r){let n;if(this.stringified=!1,this.processed=!1,"object"!=typeof t||null===t||"root"!==t.type&&"document"!==t.type)if(t instanceof Ve||t instanceof oc)n=Ms(t.root),t.map&&(void 0===r.map&&(r.map={}),r.map.inline||(r.map.inline=!1),r.map.prev=t.map);else{let a=K0;r.syntax&&(a=r.syntax.parse),r.parser&&(a=r.parser),a.parse&&(a=a.parse);try{n=a(t,r)}catch(s){this.processed=!0,this.error=s}n&&!n[H0]&&J0.rebuild(n)}else n=Ms(t);this.result=new oc(e,n,r),this.helpers={...Bs,result:this.result,postcss:Bs},this.plugins=this.processor.plugins.map((a=>"object"==typeof a&&a.prepare?{...a,...a.prepare(this.result)}:a))}get[Symbol.toStringTag](){return"LazyResult"}get processor(){return this.result.processor}get opts(){return this.result.opts}get css(){return this.stringify().css}get content(){return this.stringify().content}get map(){return this.stringify().map}get root(){return this.sync().root}get messages(){return this.sync().messages}warnings(){return this.sync().warnings()}toString(){return this.css}then(e,t){return this.async().then(e,t)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}async(){return this.error?Promise.reject(this.error):this.processed?Promise.resolve(this.result):(this.processing||(this.processing=this.runAsync()),this.processing)}sync(){if(this.error)throw this.error;if(this.processed)return this.result;if(this.processed=!0,this.processing)throw this.getAsyncError();for(let e of this.plugins){if(Sr(this.runOnRoot(e)))throw this.getAsyncError()}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[Ie];)e[Ie]=!0,this.walkSync(e);if(this.listeners.OnceExit)if("document"===e.type)for(let t of e.nodes)this.visitSync(this.listeners.OnceExit,t);else this.visitSync(this.listeners.OnceExit,e)}return this.result}stringify(){if(this.error)throw this.error;if(this.stringified)return this.result;this.stringified=!0,this.sync();let e=this.result.opts,t=Q0;e.syntax&&(t=e.syntax.stringify),e.stringifier&&(t=e.stringifier),t.stringify&&(t=t.stringify);let n=new Y0(t,this.result.root,this.result.opts).generate();return this.result.css=n[0],this.result.map=n[1],this.result}walkSync(e){e[Ie]=!0;let t=lc(e);for(let r of t)if(r===Tt)e.nodes&&e.each((n=>{n[Ie]||this.walkSync(n)}));else{let n=this.listeners[r];if(n&&this.visitSync(n,e.toProxy()))return}}visitSync(e,t){for(let[r,n]of e){let a;this.result.lastPlugin=r;try{a=n(t,this.helpers)}catch(s){throw this.handleError(s,t.proxyOf)}if("root"!==t.type&&"document"!==t.type&&!t.parent)return!0;if(Sr(a))throw this.getAsyncError()}}runOnRoot(e){this.result.lastPlugin=e;try{if("object"==typeof e&&e.Once){if("document"===this.result.root.type){let t=this.result.root.nodes.map((r=>e.Once(r,this.helpers)));return Sr(t[0])?Promise.all(t):t}return e.Once(this.result.root,this.helpers)}if("function"==typeof e)return e(this.result.root,this.result)}catch(t){throw this.handleError(t)}}getAsyncError(){throw new Error("Use process(css).then(cb) to work with async plugins")}handleError(e,t){let r=this.result.lastPlugin;try{t&&t.addToError(e),this.error=e,"CssSyntaxError"!==e.name||e.plugin?r.postcssVersion:(e.plugin=r.postcssPlugin,e.setMessage())}catch(n){console&&console.error&&console.error(n)}return e}async runAsync(){this.plugin=0;for(let e=0;e<this.plugins.length;e++){let t=this.plugins[e],r=this.runOnRoot(t);if(Sr(r))try{await r}catch(n){throw this.handleError(n)}}if(this.prepareVisitors(),this.hasListener){let e=this.result.root;for(;!e[Ie];){e[Ie]=!0;let t=[uc(e)];for(;t.length>0;){let r=this.visitTick(t);if(Sr(r))try{await r}catch(n){let a=t[t.length-1].node;throw this.handleError(n,a)}}}if(this.listeners.OnceExit)for(let[t,r]of this.listeners.OnceExit){this.result.lastPlugin=t;try{if("document"===e.type){let n=e.nodes.map((a=>r(a,this.helpers)));await Promise.all(n)}else await r(e,this.helpers)}catch(n){throw this.handleError(n)}}}return this.processed=!0,this.stringify()}prepareVisitors(){this.listeners={};let e=(t,r,n)=>{this.listeners[r]||(this.listeners[r]=[]),this.listeners[r].push([t,n])};for(let t of this.plugins)if("object"==typeof t)for(let r in t){if(!tv[r]&&/^[A-Z]/.test(r))throw new Error(`Unknown event ${r} in ${t.postcssPlugin}. Try to update PostCSS (${this.processor.version} now).`);if(!rv[r])if("object"==typeof t[r])for(let n in t[r])e(t,"*"===n?r:r+"-"+n.toLowerCase(),t[r][n]);else"function"==typeof t[r]&&e(t,r,t[r])}this.hasListener=Object.keys(this.listeners).length>0}visitTick(e){let t=e[e.length-1],{node:r,visitors:n}=t;if("root"!==r.type&&"document"!==r.type&&!r.parent)return void e.pop();if(n.length>0&&t.visitorIndex<n.length){let[s,o]=n[t.visitorIndex];t.visitorIndex+=1,t.visitorIndex===n.length&&(t.visitors=[],t.visitorIndex=0),this.result.lastPlugin=s;try{return o(r.toProxy(),this.helpers)}catch(u){throw this.handleError(u,r)}}if(0!==t.iterator){let o,s=t.iterator;for(;o=r.nodes[r.indexes[s]];)if(r.indexes[s]+=1,!o[Ie])return o[Ie]=!0,void e.push(uc(o));t.iterator=0,delete r.indexes[s]}let a=t.events;for(;t.eventIndex<a.length;){let s=a[t.eventIndex];if(t.eventIndex+=1,s===Tt)return void(r.nodes&&r.nodes.length&&(r[Ie]=!0,t.iterator=r.getIterator()));if(this.listeners[s])return void(t.visitors=this.listeners[s])}e.pop()}};Ve.registerPostcss=i=>{Bs=i},fc.exports=Ve,Ve.default=Ve,Z0.registerLazyResult(Ve),X0.registerLazyResult(Ve)})),pc=v(((NT,cc)=>{l();var iv=Ss(),nv=hr(),sv=(_s(),Wi()),av=Ii(),Gi=class{constructor(e,t,r){t=t.toString(),this.stringified=!1,this._processor=e,this._css=t,this._opts=r,this._map=void 0;let n,a=nv;this.result=new av(this._processor,n,this._opts),this.result.css=t;let s=this;Object.defineProperty(this.result,"root",{get:()=>s.root});let o=new iv(a,n,this._opts,t);if(o.isMap()){let[u,c]=o.generate();u&&(this.result.css=u),c&&(this.result.map=c)}}get[Symbol.toStringTag](){return"NoWorkResult"}get processor(){return this.result.processor}get opts(){return this.result.opts}get css(){return this.result.css}get content(){return this.result.css}get map(){return this.result.map}get root(){if(this._root)return this._root;let e,t=sv;try{e=t(this._css,this._opts)}catch(r){this.error=r}if(this.error)throw this.error;return this._root=e,e}get messages(){return[]}warnings(){return[]}toString(){return this._css}then(e,t){return this.async().then(e,t)}catch(e){return this.async().catch(e)}finally(e){return this.async().then(e,e)}async(){return this.error?Promise.reject(this.error):Promise.resolve(this.result)}sync(){if(this.error)throw this.error;return this.result}};cc.exports=Gi,Gi.default=Gi})),hc=v(((LT,dc)=>{l();var ov=pc(),lv=Fs(),uv=Ti(),fv=Et(),Pt=class{constructor(e=[]){this.version="8.4.24",this.plugins=this.normalize(e)}use(e){return this.plugins=this.plugins.concat(this.normalize([e])),this}process(e,t={}){return 0===this.plugins.length&&void 0===t.parser&&void 0===t.stringifier&&void 0===t.syntax?new ov(this,e,t):new lv(this,e,t)}normalize(e){let t=[];for(let r of e)if(!0===r.postcss?r=r():r.postcss&&(r=r.postcss),"object"==typeof r&&Array.isArray(r.plugins))t=t.concat(r.plugins);else if("object"==typeof r&&r.postcssPlugin)t.push(r);else if("function"==typeof r)t.push(r);else if("object"!=typeof r||!r.parse&&!r.stringify)throw new Error(r+" is not a PostCSS plugin");return t}};dc.exports=Pt,Pt.default=Pt,fv.registerProcessor(Pt),uv.registerProcessor(Pt)})),gc=v((($T,mc)=>{l();var cv=gr(),pv=Ps(),dv=yr(),hv=$i(),mv=Vi(),gv=Et(),yv=ji();function Cr(i,e){if(Array.isArray(i))return i.map((n=>Cr(n)));let{inputs:t,...r}=i;if(t){e=[];for(let n of t){let a={...n,__proto__:mv.prototype};a.map&&(a.map={...a.map,__proto__:pv.prototype}),e.push(a)}}if(r.nodes&&(r.nodes=i.nodes.map((n=>Cr(n,e)))),r.source){let{inputId:n,...a}=r.source;r.source=a,null!=n&&(r.source.input=e[n])}if("root"===r.type)return new gv(r);if("decl"===r.type)return new cv(r);if("rule"===r.type)return new yv(r);if("comment"===r.type)return new dv(r);if("atrule"===r.type)return new hv(r);throw new Error("Unknown node type: "+i.type)}mc.exports=Cr,Cr.default=Cr})),ge=v(((jT,Sc)=>{l();var wv=ki(),yc=gr(),bv=Fs(),vv=it(),Ns=hc(),xv=hr(),kv=gc(),wc=Ti(),Sv=Os(),bc=yr(),vc=$i(),Cv=Ii(),Av=Vi(),_v=Wi(),Ov=Ts(),xc=ji(),kc=Et(),Ev=mr();function z(...i){return 1===i.length&&Array.isArray(i[0])&&(i=i[0]),new Ns(i)}z.plugin=function(e,t){let a,r=!1;function n(...s){console&&console.warn&&!r&&(r=!0,console.warn(e+": postcss.plugin was deprecated. Migration guide:\nhttps://evilmartians.com/chronicles/postcss-8-plugin-migration"),h.env.LANG&&h.env.LANG.startsWith("cn")&&console.warn(e+": 里面 postcss.plugin 被弃用. 迁移指南:\nhttps://www.w3ctech.com/topic/2226"));let o=t(...s);return o.postcssPlugin=e,o.postcssVersion=(new Ns).version,o}return Object.defineProperty(n,"postcss",{get:()=>(a||(a=n()),a)}),n.process=function(s,o,u){return z([n(u)]).process(s,o)},n},z.stringify=xv,z.parse=_v,z.fromJSON=kv,z.list=Ov,z.comment=i=>new bc(i),z.atRule=i=>new vc(i),z.decl=i=>new yc(i),z.rule=i=>new xc(i),z.root=i=>new kc(i),z.document=i=>new wc(i),z.CssSyntaxError=wv,z.Declaration=yc,z.Container=vv,z.Processor=Ns,z.Document=wc,z.Comment=bc,z.Warning=Sv,z.AtRule=vc,z.Result=Cv,z.Input=Av,z.Rule=xc,z.Root=kc,z.Node=Ev,bv.registerPostcss(z),Sc.exports=z,z.default=z})),nt=C((()=>{l(),W=K(ge()),V=W.default,W.default.stringify,W.default.fromJSON,W.default.plugin,W.default.parse,W.default.list,W.default.document,W.default.comment,W.default.atRule,W.default.rule,W.default.decl,W.default.root,W.default.CssSyntaxError,W.default.Declaration,W.default.Container,W.default.Processor,W.default.Document,W.default.Comment,W.default.Warning,W.default.AtRule,W.default.Result,W.default.Input,W.default.Rule,W.default.Root,W.default.Node})),Ls=v(((d3,Cc)=>{l(),Cc.exports=function(i,e,t,r,n){for(e=e.split?e.split("."):e,r=0;r<e.length;r++)i=i?i[e[r]]:n;return i===n?t:i}})),Yi=v(((Hi,Ac)=>{function Tv(i){for(var e=i.toLowerCase(),t="",r=!1,n=0;n<6&&void 0!==e[n];n++){var a=e.charCodeAt(n);if(r=32===a,!(a>=97&&a<=102||a>=48&&a<=57))break;t+=e[n]}if(0!==t.length){var o=parseInt(t,16);return o>=55296&&o<=57343||0===o||o>1114111?["�",t.length+(r?1:0)]:[String.fromCodePoint(o),t.length+(r?1:0)]}}l(),Hi.__esModule=!0,Hi.default=function(i){if(!Pv.test(i))return i;for(var t="",r=0;r<i.length;r++)if("\\"!==i[r])t+=i[r];else{var n=Tv(i.slice(r+1,r+7));if(void 0!==n){t+=n[0],r+=n[1];continue}if("\\"===i[r+1]){t+="\\",r++;continue}i.length===r+1&&(t+=i[r])}return t};var Pv=/\\/;Ac.exports=Hi.default})),Oc=v(((Qi,_c)=>{l(),Qi.__esModule=!0,Qi.default=function(i){for(var e=arguments.length,t=new Array(e>1?e-1:0),r=1;r<e;r++)t[r-1]=arguments[r];for(;t.length>0;){var n=t.shift();if(!i[n])return;i=i[n]}return i},_c.exports=Qi.default})),Tc=v(((Ji,Ec)=>{l(),Ji.__esModule=!0,Ji.default=function(i){for(var e=arguments.length,t=new Array(e>1?e-1:0),r=1;r<e;r++)t[r-1]=arguments[r];for(;t.length>0;){var n=t.shift();i[n]||(i[n]={}),i=i[n]}},Ec.exports=Ji.default})),Dc=v(((Xi,Pc)=>{l(),Xi.__esModule=!0,Xi.default=function(i){for(var e="",t=i.indexOf("/*"),r=0;t>=0;){e+=i.slice(r,t);var n=i.indexOf("*/",t+2);if(n<0)return e;r=n+2,t=i.indexOf("/*",r)}return e+=i.slice(r)},Pc.exports=Xi.default})),Ar=v((qe=>{l(),qe.__esModule=!0,qe.unesc=qe.stripComments=qe.getProp=qe.ensureObject=void 0;var Mv=Ki(Yi());qe.unesc=Mv.default;var Bv=Ki(Oc());qe.getProp=Bv.default;var Fv=Ki(Tc());qe.ensureObject=Fv.default;var Nv=Ki(Dc());function Ki(i){return i&&i.__esModule?i:{default:i}}qe.stripComments=Nv.default})),Ue=v(((_r,Rc)=>{l(),_r.__esModule=!0,_r.default=void 0;var Ic=Ar();function qc(i,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(i,r.key,r)}}var $v=function i(e,t){if("object"!=typeof e||null===e)return e;var r=new e.constructor;for(var n in e)if(e.hasOwnProperty(n)){var a=e[n];"parent"===n&&"object"===typeof a?t&&(r[n]=t):r[n]=a instanceof Array?a.map((function(o){return i(o,r)})):i(a,r)}return r},jv=function(){function i(t){void 0===t&&(t={}),Object.assign(this,t),this.spaces=this.spaces||{},this.spaces.before=this.spaces.before||"",this.spaces.after=this.spaces.after||""}var e=i.prototype;return e.remove=function(){return this.parent&&this.parent.removeChild(this),this.parent=void 0,this},e.replaceWith=function(){if(this.parent){for(var r in arguments)this.parent.insertBefore(this,arguments[r]);this.remove()}return this},e.next=function(){return this.parent.at(this.parent.index(this)+1)},e.prev=function(){return this.parent.at(this.parent.index(this)-1)},e.clone=function(r){void 0===r&&(r={});var n=$v(this);for(var a in r)n[a]=r[a];return n},e.appendToPropertyAndEscape=function(r,n,a){this.raws||(this.raws={});var s=this[r],o=this.raws[r];this[r]=s+n,o||a!==n?this.raws[r]=(o||s)+a:delete this.raws[r]},e.setPropertyAndEscape=function(r,n,a){this.raws||(this.raws={}),this[r]=n,this.raws[r]=a},e.setPropertyWithoutEscape=function(r,n){this[r]=n,this.raws&&delete this.raws[r]},e.isAtPosition=function(r,n){if(this.source&&this.source.start&&this.source.end)return!(this.source.start.line>r||this.source.end.line<r||this.source.start.line===r&&this.source.start.column>n||this.source.end.line===r&&this.source.end.column<n)},e.stringifyProperty=function(r){return this.raws&&this.raws[r]||this[r]},e.valueToString=function(){return String(this.stringifyProperty("value"))},e.toString=function(){return[this.rawSpaceBefore,this.valueToString(),this.rawSpaceAfter].join("")},function(i,e,t){e&&qc(i.prototype,e),t&&qc(i,t),Object.defineProperty(i,"prototype",{writable:!1})}(i,[{key:"rawSpaceBefore",get:function(){var r=this.raws&&this.raws.spaces&&this.raws.spaces.before;return void 0===r&&(r=this.spaces&&this.spaces.before),r||""},set:function(r){(0,Ic.ensureObject)(this,"raws","spaces"),this.raws.spaces.before=r}},{key:"rawSpaceAfter",get:function(){var r=this.raws&&this.raws.spaces&&this.raws.spaces.after;return void 0===r&&(r=this.spaces.after),r||""},set:function(r){(0,Ic.ensureObject)(this,"raws","spaces"),this.raws.spaces.after=r}}]),i}();_r.default=jv,Rc.exports=_r.default})),se=v((G=>{l(),G.__esModule=!0,G.UNIVERSAL=G.TAG=G.STRING=G.SELECTOR=G.ROOT=G.PSEUDO=G.NESTING=G.ID=G.COMMENT=G.COMBINATOR=G.CLASS=G.ATTRIBUTE=void 0;G.TAG="tag";G.STRING="string";G.SELECTOR="selector";G.ROOT="root";G.PSEUDO="pseudo";G.NESTING="nesting";G.ID="id";G.COMMENT="comment";G.COMBINATOR="combinator";G.CLASS="class";G.ATTRIBUTE="attribute";G.UNIVERSAL="universal"})),Zi=v(((Or,Nc)=>{l(),Or.__esModule=!0,Or.default=void 0;var i,ex=(i=Ue())&&i.__esModule?i:{default:i},We=function(i,e){if(!e&&i&&i.__esModule)return i;if(null===i||"object"!=typeof i&&"function"!=typeof i)return{default:i};var t=Mc(e);if(t&&t.has(i))return t.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in i)if("default"!==a&&Object.prototype.hasOwnProperty.call(i,a)){var s=n?Object.getOwnPropertyDescriptor(i,a):null;s&&(s.get||s.set)?Object.defineProperty(r,a,s):r[a]=i[a]}return r.default=i,t&&t.set(i,r),r}(se());function Mc(i){if("function"!=typeof WeakMap)return null;var e=new WeakMap,t=new WeakMap;return(Mc=function(n){return n?t:e})(i)}function ix(i,e){var t="undefined"!=typeof Symbol&&i[Symbol.iterator]||i["@@iterator"];if(t)return(t=t.call(i)).next.bind(t);if(Array.isArray(i)||(t=function(i,e){if(i){if("string"==typeof i)return Bc(i,e);var t=Object.prototype.toString.call(i).slice(8,-1);if("Object"===t&&i.constructor&&(t=i.constructor.name),"Map"===t||"Set"===t)return Array.from(i);if("Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return Bc(i,e)}}(i))||e&&i&&"number"==typeof i.length){t&&(i=t);var r=0;return function(){return r>=i.length?{done:!0}:{done:!1,value:i[r++]}}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function Bc(i,e){(null==e||e>i.length)&&(e=i.length);for(var t=0,r=new Array(e);t<e;t++)r[t]=i[t];return r}function Fc(i,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(i,r.key,r)}}function $s(i,e){return($s=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var ox=function(i){function e(r){var n;return(n=i.call(this,r)||this).nodes||(n.nodes=[]),n}!function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,$s(i,e)}(e,i);var t=e.prototype;return t.append=function(n){return n.parent=this,this.nodes.push(n),this},t.prepend=function(n){return n.parent=this,this.nodes.unshift(n),this},t.at=function(n){return this.nodes[n]},t.index=function(n){return"number"==typeof n?n:this.nodes.indexOf(n)},t.removeChild=function(n){var a;for(var s in n=this.index(n),this.at(n).parent=void 0,this.nodes.splice(n,1),this.indexes)(a=this.indexes[s])>=n&&(this.indexes[s]=a-1);return this},t.removeAll=function(){for(var a,n=ix(this.nodes);!(a=n()).done;){a.value.parent=void 0}return this.nodes=[],this},t.empty=function(){return this.removeAll()},t.insertAfter=function(n,a){a.parent=this;var o,s=this.index(n);for(var u in this.nodes.splice(s+1,0,a),a.parent=this,this.indexes)s<=(o=this.indexes[u])&&(this.indexes[u]=o+1);return this},t.insertBefore=function(n,a){a.parent=this;var o,s=this.index(n);for(var u in this.nodes.splice(s,0,a),a.parent=this,this.indexes)(o=this.indexes[u])<=s&&(this.indexes[u]=o+1);return this},t._findChildAtPosition=function(n,a){var s=void 0;return this.each((function(o){if(o.atPosition){var u=o.atPosition(n,a);if(u)return s=u,!1}else if(o.isAtPosition(n,a))return s=o,!1})),s},t.atPosition=function(n,a){if(this.isAtPosition(n,a))return this._findChildAtPosition(n,a)||this},t._inferEndPosition=function(){this.last&&this.last.source&&this.last.source.end&&(this.source=this.source||{},this.source.end=this.source.end||{},Object.assign(this.source.end,this.last.source.end))},t.each=function(n){this.lastEach||(this.lastEach=0),this.indexes||(this.indexes={}),this.lastEach++;var a=this.lastEach;if(this.indexes[a]=0,this.length){for(var s,o;this.indexes[a]<this.length&&(s=this.indexes[a],!1!==(o=n(this.at(s),s)));)this.indexes[a]+=1;if(delete this.indexes[a],!1===o)return!1}},t.walk=function(n){return this.each((function(a,s){var o=n(a,s);if(!1!==o&&a.length&&(o=a.walk(n)),!1===o)return!1}))},t.walkAttributes=function(n){var a=this;return this.walk((function(s){if(s.type===We.ATTRIBUTE)return n.call(a,s)}))},t.walkClasses=function(n){var a=this;return this.walk((function(s){if(s.type===We.CLASS)return n.call(a,s)}))},t.walkCombinators=function(n){var a=this;return this.walk((function(s){if(s.type===We.COMBINATOR)return n.call(a,s)}))},t.walkComments=function(n){var a=this;return this.walk((function(s){if(s.type===We.COMMENT)return n.call(a,s)}))},t.walkIds=function(n){var a=this;return this.walk((function(s){if(s.type===We.ID)return n.call(a,s)}))},t.walkNesting=function(n){var a=this;return this.walk((function(s){if(s.type===We.NESTING)return n.call(a,s)}))},t.walkPseudos=function(n){var a=this;return this.walk((function(s){if(s.type===We.PSEUDO)return n.call(a,s)}))},t.walkTags=function(n){var a=this;return this.walk((function(s){if(s.type===We.TAG)return n.call(a,s)}))},t.walkUniversals=function(n){var a=this;return this.walk((function(s){if(s.type===We.UNIVERSAL)return n.call(a,s)}))},t.split=function(n){var a=this,s=[];return this.reduce((function(o,u,c){var f=n.call(a,u);return s.push(u),f?(o.push(s),s=[]):c===a.length-1&&o.push(s),o}),[])},t.map=function(n){return this.nodes.map(n)},t.reduce=function(n,a){return this.nodes.reduce(n,a)},t.every=function(n){return this.nodes.every(n)},t.some=function(n){return this.nodes.some(n)},t.filter=function(n){return this.nodes.filter(n)},t.sort=function(n){return this.nodes.sort(n)},t.toString=function(){return this.map(String).join("")},function(i,e,t){e&&Fc(i.prototype,e),t&&Fc(i,t),Object.defineProperty(i,"prototype",{writable:!1})}(e,[{key:"first",get:function(){return this.at(0)}},{key:"last",get:function(){return this.at(this.length-1)}},{key:"length",get:function(){return this.nodes.length}}]),e}(ex.default);Or.default=ox,Nc.exports=Or.default})),zs=v(((Er,$c)=>{l(),Er.__esModule=!0,Er.default=void 0;var i,lx=(i=Zi())&&i.__esModule?i:{default:i},ux=se();function Lc(i,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(i,r.key,r)}}function js(i,e){return(js=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var dx=function(i){function e(r){var n;return(n=i.call(this,r)||this).type=ux.ROOT,n}!function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,js(i,e)}(e,i);var t=e.prototype;return t.toString=function(){var n=this.reduce((function(a,s){return a.push(String(s)),a}),[]).join(",");return this.trailingComma?n+",":n},t.error=function(n,a){return this._error?this._error(n,a):new Error(n)},function(i,e,t){e&&Lc(i.prototype,e),t&&Lc(i,t),Object.defineProperty(i,"prototype",{writable:!1})}(e,[{key:"errorGenerator",set:function(n){this._error=n}}]),e}(lx.default);Er.default=dx,$c.exports=Er.default})),Us=v(((Tr,jc)=>{l(),Tr.__esModule=!0,Tr.default=void 0;var i,hx=(i=Zi())&&i.__esModule?i:{default:i},mx=se();function Vs(i,e){return(Vs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var wx=function(i){function e(t){var r;return(r=i.call(this,t)||this).type=mx.SELECTOR,r}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Vs(i,e)}(e,i),e}(hx.default);Tr.default=wx,jc.exports=Tr.default})),en=v(((g3,zc)=>{l();var vx={}.hasOwnProperty,kx=/[ -,\.\/:-@\[-\^`\{-~]/,Sx=/[ -,\.\/:-@\[\]\^`\{-~]/,Cx=/(^|\\+)?(\\[A-F0-9]{1,6})\x20(?![a-fA-F0-9\x20])/g,Ws=function i(e,t){t=function(e,t){if(!e)return t;var r={};for(var n in t)r[n]=vx.call(e,n)?e[n]:t[n];return r}(t,i.options),"single"!=t.quotes&&"double"!=t.quotes&&(t.quotes="single");for(var r="double"==t.quotes?'"':"'",n=t.isIdentifier,a=e.charAt(0),s="",o=0,u=e.length;o<u;){var c=e.charAt(o++),f=c.charCodeAt(),d=void 0;if(f<32||f>126){if(f>=55296&&f<=56319&&o<u){var p=e.charCodeAt(o++);56320==(64512&p)?f=((1023&f)<<10)+(1023&p)+65536:o--}d="\\"+f.toString(16).toUpperCase()+" "}else d=t.escapeEverything?kx.test(c)?"\\"+c:"\\"+f.toString(16).toUpperCase()+" ":/[\t\n\f\r\x0B]/.test(c)?"\\"+f.toString(16).toUpperCase()+" ":"\\"==c||!n&&('"'==c&&r==c||"'"==c&&r==c)||n&&Sx.test(c)?"\\"+c:c;s+=d}return n&&(/^-[-\d]/.test(s)?s="\\-"+s.slice(1):/\d/.test(a)&&(s="\\3"+a+" "+s.slice(1))),s=s.replace(Cx,(function(m,w,x){return w&&w.length%2?m:(w||"")+x})),!n&&t.wrap?r+s+r:s};Ws.options={escapeEverything:!1,isIdentifier:!1,quotes:"single",wrap:!1},Ws.version="3.0.0",zc.exports=Ws})),Hs=v(((Pr,Wc)=>{l(),Pr.__esModule=!0,Pr.default=void 0;var Ax=Vc(en()),_x=Ar(),Ox=Vc(Ue()),Ex=se();function Vc(i){return i&&i.__esModule?i:{default:i}}function Uc(i,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(i,r.key,r)}}function Gs(i,e){return(Gs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var Dx=function(i){function e(r){var n;return(n=i.call(this,r)||this).type=Ex.CLASS,n._constructed=!0,n}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Gs(i,e)}(e,i),e.prototype.valueToString=function(){return"."+i.prototype.valueToString.call(this)},function(i,e,t){e&&Uc(i.prototype,e),t&&Uc(i,t),Object.defineProperty(i,"prototype",{writable:!1})}(e,[{key:"value",get:function(){return this._value},set:function(n){if(this._constructed){var a=(0,Ax.default)(n,{isIdentifier:!0});a!==n?((0,_x.ensureObject)(this,"raws"),this.raws.value=a):this.raws&&delete this.raws.value}this._value=n}}]),e}(Ox.default);Pr.default=Dx,Wc.exports=Pr.default})),Qs=v(((Dr,Gc)=>{l(),Dr.__esModule=!0,Dr.default=void 0;var i,Ix=(i=Ue())&&i.__esModule?i:{default:i},qx=se();function Ys(i,e){return(Ys=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var Bx=function(i){function e(t){var r;return(r=i.call(this,t)||this).type=qx.COMMENT,r}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Ys(i,e)}(e,i),e}(Ix.default);Dr.default=Bx,Gc.exports=Dr.default})),Xs=v(((Ir,Hc)=>{l(),Ir.__esModule=!0,Ir.default=void 0;var i,Fx=(i=Ue())&&i.__esModule?i:{default:i},Nx=se();function Js(i,e){return(Js=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var jx=function(i){function e(r){var n;return(n=i.call(this,r)||this).type=Nx.ID,n}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Js(i,e)}(e,i),e.prototype.valueToString=function(){return"#"+i.prototype.valueToString.call(this)},e}(Fx.default);Ir.default=jx,Hc.exports=Ir.default})),tn=v(((qr,Jc)=>{l(),qr.__esModule=!0,qr.default=void 0;var zx=Yc(en()),Vx=Ar();function Yc(i){return i&&i.__esModule?i:{default:i}}function Qc(i,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(i,r.key,r)}}function Ks(i,e){return(Ks=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var Hx=function(i){function e(){return i.apply(this,arguments)||this}!function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Ks(i,e)}(e,i);var t=e.prototype;return t.qualifiedName=function(n){return this.namespace?this.namespaceString+"|"+n:n},t.valueToString=function(){return this.qualifiedName(i.prototype.valueToString.call(this))},function(i,e,t){e&&Qc(i.prototype,e),t&&Qc(i,t),Object.defineProperty(i,"prototype",{writable:!1})}(e,[{key:"namespace",get:function(){return this._namespace},set:function(n){if(!0===n||"*"===n||"&"===n)return this._namespace=n,void(this.raws&&delete this.raws.namespace);var a=(0,zx.default)(n,{isIdentifier:!0});this._namespace=n,a!==n?((0,Vx.ensureObject)(this,"raws"),this.raws.namespace=a):this.raws&&delete this.raws.namespace}},{key:"ns",get:function(){return this._namespace},set:function(n){this.namespace=n}},{key:"namespaceString",get:function(){if(this.namespace){var n=this.stringifyProperty("namespace");return!0===n?"":n}return""}}]),e}(Yc(Ue()).default);qr.default=Hx,Jc.exports=qr.default})),ea=v(((Rr,Xc)=>{l(),Rr.__esModule=!0,Rr.default=void 0;var i,Yx=(i=tn())&&i.__esModule?i:{default:i},Qx=se();function Zs(i,e){return(Zs=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var Kx=function(i){function e(t){var r;return(r=i.call(this,t)||this).type=Qx.TAG,r}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,Zs(i,e)}(e,i),e}(Yx.default);Rr.default=Kx,Xc.exports=Rr.default})),ra=v(((Mr,Kc)=>{l(),Mr.__esModule=!0,Mr.default=void 0;var i,Zx=(i=Ue())&&i.__esModule?i:{default:i},e1=se();function ta(i,e){return(ta=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var i1=function(i){function e(t){var r;return(r=i.call(this,t)||this).type=e1.STRING,r}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,ta(i,e)}(e,i),e}(Zx.default);Mr.default=i1,Kc.exports=Mr.default})),na=v(((Br,Zc)=>{l(),Br.__esModule=!0,Br.default=void 0;var i,n1=(i=Zi())&&i.__esModule?i:{default:i},s1=se();function ia(i,e){return(ia=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var l1=function(i){function e(r){var n;return(n=i.call(this,r)||this).type=s1.PSEUDO,n}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,ia(i,e)}(e,i),e.prototype.toString=function(){var n=this.length?"("+this.map(String).join(",")+")":"";return[this.rawSpaceBefore,this.stringifyProperty("value"),n,this.rawSpaceAfter].join("")},e}(n1.default);Br.default=l1,Zc.exports=Br.default})),ep={};function u1(i){return i}Ae(ep,{deprecate:()=>u1});var tp=C((()=>{l()})),ip=v(((y3,rp)=>{l(),rp.exports=(tp(),ep).deprecate})),fa=v((Lr=>{l(),Lr.__esModule=!0,Lr.default=void 0,Lr.unescapeValue=la;var sa,Fr=aa(en()),f1=aa(Yi()),c1=aa(tn()),p1=se();function aa(i){return i&&i.__esModule?i:{default:i}}function np(i,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(i,r.key,r)}}function oa(i,e){return(oa=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var Nr=ip(),m1=/^('|")([^]*)\1$/,g1=Nr((function(){}),"Assigning an attribute a value containing characters that might need to be escaped is deprecated. Call attribute.setValue() instead."),y1=Nr((function(){}),"Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead."),w1=Nr((function(){}),"Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now.");function la(i){var e=!1,t=null,r=i,n=r.match(m1);return n&&(t=n[1],r=n[2]),(r=(0,f1.default)(r))!==i&&(e=!0),{deprecatedUsage:e,unescaped:r,quoteMark:t}}var rn=function(i){function e(r){var n;return void 0===r&&(r={}),n=i.call(this,function(i){if(void 0!==i.quoteMark||void 0===i.value)return i;w1();var e=la(i.value),t=e.quoteMark,r=e.unescaped;return i.raws||(i.raws={}),void 0===i.raws.value&&(i.raws.value=i.value),i.value=r,i.quoteMark=t,i}(r))||this,n.type=p1.ATTRIBUTE,n.raws=n.raws||{},Object.defineProperty(n.raws,"unquoted",{get:Nr((function(){return n.value}),"attr.raws.unquoted is deprecated. Call attr.value instead."),set:Nr((function(){return n.value}),"Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.")}),n._constructed=!0,n}!function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,oa(i,e)}(e,i);var t=e.prototype;return t.getQuotedValue=function(n){void 0===n&&(n={});var a=this._determineQuoteMark(n),s=ua[a];return(0,Fr.default)(this._value,s)},t._determineQuoteMark=function(n){return n.smart?this.smartQuoteMark(n):this.preferredQuoteMark(n)},t.setValue=function(n,a){void 0===a&&(a={}),this._value=n,this._quoteMark=this._determineQuoteMark(a),this._syncRawValue()},t.smartQuoteMark=function(n){var a=this.value,s=a.replace(/[^']/g,"").length,o=a.replace(/[^"]/g,"").length;if(s+o===0){var u=(0,Fr.default)(a,{isIdentifier:!0});if(u===a)return e.NO_QUOTE;var c=this.preferredQuoteMark(n);if(c===e.NO_QUOTE){var f=this.quoteMark||n.quoteMark||e.DOUBLE_QUOTE,d=ua[f];if((0,Fr.default)(a,d).length<u.length)return f}return c}return o===s?this.preferredQuoteMark(n):o<s?e.DOUBLE_QUOTE:e.SINGLE_QUOTE},t.preferredQuoteMark=function(n){var a=n.preferCurrentQuoteMark?this.quoteMark:n.quoteMark;return void 0===a&&(a=n.preferCurrentQuoteMark?n.quoteMark:this.quoteMark),void 0===a&&(a=e.DOUBLE_QUOTE),a},t._syncRawValue=function(){var n=(0,Fr.default)(this._value,ua[this.quoteMark]);n===this._value?this.raws&&delete this.raws.value:this.raws.value=n},t._handleEscapes=function(n,a){if(this._constructed){var s=(0,Fr.default)(a,{isIdentifier:!0});s!==a?this.raws[n]=s:delete this.raws[n]}},t._spacesFor=function(n){var s=this.spaces[n]||{},o=this.raws.spaces&&this.raws.spaces[n]||{};return Object.assign({before:"",after:""},s,o)},t._stringFor=function(n,a,s){void 0===a&&(a=n),void 0===s&&(s=sp);var o=this._spacesFor(a);return s(this.stringifyProperty(n),o)},t.offsetOf=function(n){var a=1,s=this._spacesFor("attribute");if(a+=s.before.length,"namespace"===n||"ns"===n)return this.namespace?a:-1;if("attributeNS"===n||(a+=this.namespaceString.length,this.namespace&&(a+=1),"attribute"===n))return a;a+=this.stringifyProperty("attribute").length,a+=s.after.length;var o=this._spacesFor("operator");a+=o.before.length;var u=this.stringifyProperty("operator");if("operator"===n)return u?a:-1;a+=u.length,a+=o.after.length;var c=this._spacesFor("value");a+=c.before.length;var f=this.stringifyProperty("value");return"value"===n?f?a:-1:(a+=f.length,a+=c.after.length,a+=this._spacesFor("insensitive").before.length,"insensitive"===n&&this.insensitive?a:-1)},t.toString=function(){var n=this,a=[this.rawSpaceBefore,"["];return a.push(this._stringFor("qualifiedAttribute","attribute")),this.operator&&(this.value||""===this.value)&&(a.push(this._stringFor("operator")),a.push(this._stringFor("value")),a.push(this._stringFor("insensitiveFlag","insensitive",(function(s,o){return s.length>0&&!n.quoted&&0===o.before.length&&!(n.spaces.value&&n.spaces.value.after)&&(o.before=" "),sp(s,o)})))),a.push("]"),a.push(this.rawSpaceAfter),a.join("")},function(i,e,t){e&&np(i.prototype,e),t&&np(i,t),Object.defineProperty(i,"prototype",{writable:!1})}(e,[{key:"quoted",get:function(){var n=this.quoteMark;return"'"===n||'"'===n},set:function(n){y1()}},{key:"quoteMark",get:function(){return this._quoteMark},set:function(n){this._constructed?this._quoteMark!==n&&(this._quoteMark=n,this._syncRawValue()):this._quoteMark=n}},{key:"qualifiedAttribute",get:function(){return this.qualifiedName(this.raws.attribute||this.attribute)}},{key:"insensitiveFlag",get:function(){return this.insensitive?"i":""}},{key:"value",get:function(){return this._value},set:function(n){if(this._constructed){var a=la(n),s=a.deprecatedUsage,o=a.unescaped,u=a.quoteMark;if(s&&g1(),o===this._value&&u===this._quoteMark)return;this._value=o,this._quoteMark=u,this._syncRawValue()}else this._value=n}},{key:"insensitive",get:function(){return this._insensitive},set:function(n){n||(this._insensitive=!1,this.raws&&("I"===this.raws.insensitiveFlag||"i"===this.raws.insensitiveFlag)&&(this.raws.insensitiveFlag=void 0)),this._insensitive=n}},{key:"attribute",get:function(){return this._attribute},set:function(n){this._handleEscapes("attribute",n),this._attribute=n}}]),e}(c1.default);Lr.default=rn,rn.NO_QUOTE=null,rn.SINGLE_QUOTE="'",rn.DOUBLE_QUOTE='"';var ua=((sa={"'":{quotes:"single",wrap:!0},'"':{quotes:"double",wrap:!0}}).null={isIdentifier:!0},sa);function sp(i,e){return""+e.before+i+e.after}})),pa=v((($r,ap)=>{l(),$r.__esModule=!0,$r.default=void 0;var i,v1=(i=tn())&&i.__esModule?i:{default:i},x1=se();function ca(i,e){return(ca=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var C1=function(i){function e(t){var r;return(r=i.call(this,t)||this).type=x1.UNIVERSAL,r.value="*",r}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,ca(i,e)}(e,i),e}(v1.default);$r.default=C1,ap.exports=$r.default})),ha=v(((jr,op)=>{l(),jr.__esModule=!0,jr.default=void 0;var i,A1=(i=Ue())&&i.__esModule?i:{default:i},_1=se();function da(i,e){return(da=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var T1=function(i){function e(t){var r;return(r=i.call(this,t)||this).type=_1.COMBINATOR,r}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,da(i,e)}(e,i),e}(A1.default);jr.default=T1,op.exports=jr.default})),ga=v(((zr,lp)=>{l(),zr.__esModule=!0,zr.default=void 0;var i,P1=(i=Ue())&&i.__esModule?i:{default:i},D1=se();function ma(i,e){return(ma=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r})(i,e)}var R1=function(i){function e(t){var r;return(r=i.call(this,t)||this).type=D1.NESTING,r.value="&",r}return function(i,e){i.prototype=Object.create(e.prototype),i.prototype.constructor=i,ma(i,e)}(e,i),e}(P1.default);zr.default=R1,lp.exports=zr.default})),fp=v(((nn,up)=>{l(),nn.__esModule=!0,nn.default=function(i){return i.sort((function(e,t){return e-t}))},up.exports=nn.default})),ya=v((D=>{l(),D.__esModule=!0,D.word=D.tilde=D.tab=D.str=D.space=D.slash=D.singleQuote=D.semicolon=D.plus=D.pipe=D.openSquare=D.openParenthesis=D.newline=D.greaterThan=D.feed=D.equals=D.doubleQuote=D.dollar=D.cr=D.comment=D.comma=D.combinator=D.colon=D.closeSquare=D.closeParenthesis=D.caret=D.bang=D.backslash=D.at=D.asterisk=D.ampersand=void 0;D.ampersand=38;D.asterisk=42;D.at=64;D.comma=44;D.colon=58;D.semicolon=59;D.openParenthesis=40;D.closeParenthesis=41;D.openSquare=91;D.closeSquare=93;D.dollar=36;D.tilde=126;D.caret=94;D.plus=43;D.equals=61;D.pipe=124;D.greaterThan=62;D.space=32;D.singleQuote=39;D.doubleQuote=34;D.slash=47;D.bang=33;D.backslash=92;D.cr=13;D.feed=12;D.newline=10;D.tab=9;D.str=39;D.comment=-1;D.word=-2;D.combinator=-3})),hp=v((Vr=>{l(),Vr.__esModule=!0,Vr.FIELDS=void 0,Vr.default=function(i){var c,d,p,m,w,x,y,b,k,S,_,O,e=[],t=i.css.valueOf(),n=t.length,a=-1,s=1,o=0,u=0;function I(B,q){if(!i.safe)throw i.error("Unclosed "+B,s,o-a,o);b=(t+=q).length-1}for(;o<n;){switch((c=t.charCodeAt(o))===E.newline&&(a=o,s+=1),c){case E.space:case E.tab:case E.newline:case E.cr:case E.feed:b=o;do{b+=1,(c=t.charCodeAt(b))===E.newline&&(a=b,s+=1)}while(c===E.space||c===E.newline||c===E.tab||c===E.cr||c===E.feed);O=E.space,p=s,d=b-a-1,u=b;break;case E.plus:case E.greaterThan:case E.tilde:case E.pipe:b=o;do{b+=1,c=t.charCodeAt(b)}while(c===E.plus||c===E.greaterThan||c===E.tilde||c===E.pipe);O=E.combinator,p=s,d=o-a,u=b;break;case E.asterisk:case E.ampersand:case E.bang:case E.comma:case E.equals:case E.dollar:case E.caret:case E.openSquare:case E.closeSquare:case E.colon:case E.semicolon:case E.openParenthesis:case E.closeParenthesis:O=c,p=s,d=o-a,u=(b=o)+1;break;case E.singleQuote:case E.doubleQuote:_=c===E.singleQuote?"'":'"',b=o;do{for(m=!1,-1===(b=t.indexOf(_,b+1))&&I("quote",_),w=b;t.charCodeAt(w-1)===E.backslash;)w-=1,m=!m}while(m);O=E.str,p=s,d=o-a,u=b+1;break;default:c===E.slash&&t.charCodeAt(o+1)===E.asterisk?(0===(b=t.indexOf("*/",o+2)+1)&&I("comment","*/"),(x=(y=t.slice(o,b+1).split("\n")).length-1)>0?(k=s+x,S=b-y[x].length):(k=s,S=a),O=E.comment,s=k,p=k,d=b-S):c===E.slash?(O=c,p=s,d=o-a,u=(b=o)+1):(b=mk(t,o),O=E.word,p=s,d=b-a),u=b+1}e.push([O,s,o-a,p,d,o,u]),S&&(a=S,S=null),o=u}return e};var Dt,U,E=function(i,e){if(!e&&i&&i.__esModule)return i;if(null===i||"object"!=typeof i&&"function"!=typeof i)return{default:i};var t=pp(e);if(t&&t.has(i))return t.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in i)if("default"!==a&&Object.prototype.hasOwnProperty.call(i,a)){var s=n?Object.getOwnPropertyDescriptor(i,a):null;s&&(s.get||s.set)?Object.defineProperty(r,a,s):r[a]=i[a]}return r.default=i,t&&t.set(i,r),r}(ya());function pp(i){if("function"!=typeof WeakMap)return null;var e=new WeakMap,t=new WeakMap;return(pp=function(n){return n?t:e})(i)}var sn,dk=((Dt={})[E.tab]=!0,Dt[E.newline]=!0,Dt[E.cr]=!0,Dt[E.feed]=!0,Dt),hk=((U={})[E.space]=!0,U[E.tab]=!0,U[E.newline]=!0,U[E.cr]=!0,U[E.feed]=!0,U[E.ampersand]=!0,U[E.asterisk]=!0,U[E.bang]=!0,U[E.comma]=!0,U[E.colon]=!0,U[E.semicolon]=!0,U[E.openParenthesis]=!0,U[E.closeParenthesis]=!0,U[E.openSquare]=!0,U[E.closeSquare]=!0,U[E.singleQuote]=!0,U[E.doubleQuote]=!0,U[E.plus]=!0,U[E.pipe]=!0,U[E.tilde]=!0,U[E.greaterThan]=!0,U[E.equals]=!0,U[E.dollar]=!0,U[E.caret]=!0,U[E.slash]=!0,U),wa={},dp="0123456789abcdefABCDEF";for(sn=0;sn<22;sn++)wa[dp.charCodeAt(sn)]=!0;function mk(i,e){var r,t=e;do{if(r=i.charCodeAt(t),hk[r])return t-1;r===E.backslash?t=gk(i,t)+1:t++}while(t<i.length);return t-1}function gk(i,e){var t=e,r=i.charCodeAt(t+1);if(!dk[r])if(wa[r]){var n=0;do{t++,n++,r=i.charCodeAt(t+1)}while(wa[r]&&n<6);n<6&&r===E.space&&t++}else t++;return t}Vr.FIELDS={TYPE:0,START_LINE:1,START_COL:2,END_LINE:3,END_COL:4,START_POS:5,END_POS:6}})),kp=v(((Ur,xp)=>{l(),Ur.__esModule=!0,Ur.default=void 0;var wt,ka,bk=be(zs()),ba=be(Us()),vk=be(Hs()),mp=be(Qs()),xk=be(Xs()),kk=be(ea()),va=be(ra()),Sk=be(na()),gp=an(fa()),Ck=be(pa()),xa=be(ha()),Ak=be(ga()),_k=be(fp()),A=an(hp()),T=an(ya()),Ok=an(se()),Q=Ar();function yp(i){if("function"!=typeof WeakMap)return null;var e=new WeakMap,t=new WeakMap;return(yp=function(n){return n?t:e})(i)}function an(i,e){if(!e&&i&&i.__esModule)return i;if(null===i||"object"!=typeof i&&"function"!=typeof i)return{default:i};var t=yp(e);if(t&&t.has(i))return t.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in i)if("default"!==a&&Object.prototype.hasOwnProperty.call(i,a)){var s=n?Object.getOwnPropertyDescriptor(i,a):null;s&&(s.get||s.set)?Object.defineProperty(r,a,s):r[a]=i[a]}return r.default=i,t&&t.set(i,r),r}function be(i){return i&&i.__esModule?i:{default:i}}function wp(i,e){for(var t=0;t<e.length;t++){var r=e[t];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(i,r.key,r)}}var Sa=((wt={})[T.space]=!0,wt[T.cr]=!0,wt[T.feed]=!0,wt[T.newline]=!0,wt[T.tab]=!0,wt),Tk=Object.assign({},Sa,((ka={})[T.comment]=!0,ka));function bp(i){return{line:i[A.FIELDS.START_LINE],column:i[A.FIELDS.START_COL]}}function vp(i){return{line:i[A.FIELDS.END_LINE],column:i[A.FIELDS.END_COL]}}function bt(i,e,t,r){return{start:{line:i,column:e},end:{line:t,column:r}}}function It(i){return bt(i[A.FIELDS.START_LINE],i[A.FIELDS.START_COL],i[A.FIELDS.END_LINE],i[A.FIELDS.END_COL])}function Ca(i,e){if(i)return bt(i[A.FIELDS.START_LINE],i[A.FIELDS.START_COL],e[A.FIELDS.END_LINE],e[A.FIELDS.END_COL])}function qt(i,e){var t=i[e];if("string"==typeof t)return-1!==t.indexOf("\\")&&((0,Q.ensureObject)(i,"raws"),i[e]=(0,Q.unesc)(t),void 0===i.raws[e]&&(i.raws[e]=t)),i}function Aa(i,e){for(var t=-1,r=[];-1!==(t=i.indexOf(e,t+1));)r.push(t);return r}var Dk=function(){function i(t,r){void 0===r&&(r={}),this.rule=t,this.options=Object.assign({lossy:!1,safe:!1},r),this.position=0,this.css="string"==typeof this.rule?this.rule:this.rule.selector,this.tokens=(0,A.default)({css:this.css,error:this._errorGenerator(),safe:this.options.safe});var n=Ca(this.tokens[0],this.tokens[this.tokens.length-1]);this.root=new bk.default({source:n}),this.root.errorGenerator=this._errorGenerator();var a=new ba.default({source:{start:{line:1,column:1}}});this.root.append(a),this.current=a,this.loop()}var e=i.prototype;return e._errorGenerator=function(){var r=this;return function(n,a){return"string"==typeof r.rule?new Error(n):r.rule.error(n,a)}},e.attribute=function(){var r=[],n=this.currToken;for(this.position++;this.position<this.tokens.length&&this.currToken[A.FIELDS.TYPE]!==T.closeSquare;)r.push(this.currToken),this.position++;if(this.currToken[A.FIELDS.TYPE]!==T.closeSquare)return this.expected("closing square bracket",this.currToken[A.FIELDS.START_POS]);var a=r.length,s={source:bt(n[1],n[2],this.currToken[3],this.currToken[4]),sourceIndex:n[A.FIELDS.START_POS]};if(1===a&&!~[T.word].indexOf(r[0][A.FIELDS.TYPE]))return this.expected("attribute",r[0][A.FIELDS.START_POS]);for(var o=0,u="",c="",f=null,d=!1;o<a;){var p=r[o],m=this.content(p),w=r[o+1];switch(p[A.FIELDS.TYPE]){case T.space:if(d=!0,this.options.lossy)break;if(f){(0,Q.ensureObject)(s,"spaces",f);var x=s.spaces[f].after||"";s.spaces[f].after=x+m;var y=(0,Q.getProp)(s,"raws","spaces",f,"after")||null;y&&(s.raws.spaces[f].after=y+m)}else u+=m,c+=m;break;case T.asterisk:if(w[A.FIELDS.TYPE]===T.equals)s.operator=m,f="operator";else if((!s.namespace||"namespace"===f&&!d)&&w){u&&((0,Q.ensureObject)(s,"spaces","attribute"),s.spaces.attribute.before=u,u=""),c&&((0,Q.ensureObject)(s,"raws","spaces","attribute"),s.raws.spaces.attribute.before=u,c=""),s.namespace=(s.namespace||"")+m,((0,Q.getProp)(s,"raws","namespace")||null)&&(s.raws.namespace+=m),f="namespace"}d=!1;break;case T.dollar:if("value"===f){var k=(0,Q.getProp)(s,"raws","value");s.value+="$",k&&(s.raws.value=k+"$");break}case T.caret:w[A.FIELDS.TYPE]===T.equals&&(s.operator=m,f="operator"),d=!1;break;case T.combinator:if("~"===m&&w[A.FIELDS.TYPE]===T.equals&&(s.operator=m,f="operator"),"|"!==m){d=!1;break}w[A.FIELDS.TYPE]===T.equals?(s.operator=m,f="operator"):!s.namespace&&!s.attribute&&(s.namespace=!0),d=!1;break;case T.word:if(w&&"|"===this.content(w)&&r[o+2]&&r[o+2][A.FIELDS.TYPE]!==T.equals&&!s.operator&&!s.namespace)s.namespace=m,f="namespace";else if(!s.attribute||"attribute"===f&&!d){u&&((0,Q.ensureObject)(s,"spaces","attribute"),s.spaces.attribute.before=u,u=""),c&&((0,Q.ensureObject)(s,"raws","spaces","attribute"),s.raws.spaces.attribute.before=c,c=""),s.attribute=(s.attribute||"")+m,((0,Q.getProp)(s,"raws","attribute")||null)&&(s.raws.attribute+=m),f="attribute"}else if(!s.value&&""!==s.value||"value"===f&&!d&&!s.quoteMark){var _=(0,Q.unesc)(m),O=(0,Q.getProp)(s,"raws","value")||"",I=s.value||"";s.value=I+_,s.quoteMark=null,(_!==m||O)&&((0,Q.ensureObject)(s,"raws"),s.raws.value=(O||I)+m),f="value"}else{var B="i"===m||"I"===m;!s.value&&""!==s.value||!s.quoteMark&&!d?(s.value||""===s.value)&&(f="value",s.value+=m,s.raws.value&&(s.raws.value+=m)):(s.insensitive=B,(!B||"I"===m)&&((0,Q.ensureObject)(s,"raws"),s.raws.insensitiveFlag=m),f="insensitive",u&&((0,Q.ensureObject)(s,"spaces","insensitive"),s.spaces.insensitive.before=u,u=""),c&&((0,Q.ensureObject)(s,"raws","spaces","insensitive"),s.raws.spaces.insensitive.before=c,c=""))}d=!1;break;case T.str:if(!s.attribute||!s.operator)return this.error("Expected an attribute followed by an operator preceding the string.",{index:p[A.FIELDS.START_POS]});var q=(0,gp.unescapeValue)(m),X=q.unescaped,le=q.quoteMark;s.value=X,s.quoteMark=le,f="value",(0,Q.ensureObject)(s,"raws"),s.raws.value=m,d=!1;break;case T.equals:if(!s.attribute)return this.expected("attribute",p[A.FIELDS.START_POS],m);if(s.value)return this.error('Unexpected "=" found; an operator was already defined.',{index:p[A.FIELDS.START_POS]});s.operator=s.operator?s.operator+m:m,f="operator",d=!1;break;case T.comment:if(f)if(d||w&&w[A.FIELDS.TYPE]===T.space||"insensitive"===f){var ce=(0,Q.getProp)(s,"spaces",f,"after")||"",$e=(0,Q.getProp)(s,"raws","spaces",f,"after")||ce;(0,Q.ensureObject)(s,"raws","spaces",f),s.raws.spaces[f].after=$e+m}else{var j=s[f]||"",ue=(0,Q.getProp)(s,"raws",f)||j;(0,Q.ensureObject)(s,"raws"),s.raws[f]=ue+m}else c+=m;break;default:return this.error('Unexpected "'+m+'" found.',{index:p[A.FIELDS.START_POS]})}o++}qt(s,"attribute"),qt(s,"namespace"),this.newNode(new gp.default(s)),this.position++},e.parseWhitespaceEquivalentTokens=function(r){r<0&&(r=this.tokens.length);var n=this.position,a=[],s="",o=void 0;do{if(Sa[this.currToken[A.FIELDS.TYPE]])this.options.lossy||(s+=this.content());else if(this.currToken[A.FIELDS.TYPE]===T.comment){var u={};s&&(u.before=s,s=""),o=new mp.default({value:this.content(),source:It(this.currToken),sourceIndex:this.currToken[A.FIELDS.START_POS],spaces:u}),a.push(o)}}while(++this.position<r);if(s)if(o)o.spaces.after=s;else if(!this.options.lossy){var c=this.tokens[n],f=this.tokens[this.position-1];a.push(new va.default({value:"",source:bt(c[A.FIELDS.START_LINE],c[A.FIELDS.START_COL],f[A.FIELDS.END_LINE],f[A.FIELDS.END_COL]),sourceIndex:c[A.FIELDS.START_POS],spaces:{before:s,after:""}}))}return a},e.convertWhitespaceNodesToSpace=function(r,n){var a=this;void 0===n&&(n=!1);var s="",o="";return r.forEach((function(c){var f=a.lossySpace(c.spaces.before,n),d=a.lossySpace(c.rawSpaceBefore,n);s+=f+a.lossySpace(c.spaces.after,n&&0===f.length),o+=f+c.value+a.lossySpace(c.rawSpaceAfter,n&&0===d.length)})),o===s&&(o=void 0),{space:s,rawSpace:o}},e.isNamedCombinator=function(r){return void 0===r&&(r=this.position),this.tokens[r+0]&&this.tokens[r+0][A.FIELDS.TYPE]===T.slash&&this.tokens[r+1]&&this.tokens[r+1][A.FIELDS.TYPE]===T.word&&this.tokens[r+2]&&this.tokens[r+2][A.FIELDS.TYPE]===T.slash},e.namedCombinator=function(){if(this.isNamedCombinator()){var r=this.content(this.tokens[this.position+1]),n=(0,Q.unesc)(r).toLowerCase(),a={};n!==r&&(a.value="/"+r+"/");var s=new xa.default({value:"/"+n+"/",source:bt(this.currToken[A.FIELDS.START_LINE],this.currToken[A.FIELDS.START_COL],this.tokens[this.position+2][A.FIELDS.END_LINE],this.tokens[this.position+2][A.FIELDS.END_COL]),sourceIndex:this.currToken[A.FIELDS.START_POS],raws:a});return this.position=this.position+3,s}this.unexpected()},e.combinator=function(){var r=this;if("|"===this.content())return this.namespace();var n=this.locateNextMeaningfulToken(this.position);if(!(n<0||this.tokens[n][A.FIELDS.TYPE]===T.comma)){var p,f=this.currToken,d=void 0;if(n>this.position&&(d=this.parseWhitespaceEquivalentTokens(n)),this.isNamedCombinator()?p=this.namedCombinator():this.currToken[A.FIELDS.TYPE]===T.combinator?(p=new xa.default({value:this.content(),source:It(this.currToken),sourceIndex:this.currToken[A.FIELDS.START_POS]}),this.position++):Sa[this.currToken[A.FIELDS.TYPE]]||d||this.unexpected(),p){if(d){var m=this.convertWhitespaceNodesToSpace(d),w=m.space,x=m.rawSpace;p.spaces.before=w,p.rawSpaceBefore=x}}else{var y=this.convertWhitespaceNodesToSpace(d,!0),b=y.space,k=y.rawSpace;k||(k=b);var S={},_={spaces:{}};b.endsWith(" ")&&k.endsWith(" ")?(S.before=b.slice(0,b.length-1),_.spaces.before=k.slice(0,k.length-1)):b.startsWith(" ")&&k.startsWith(" ")?(S.after=b.slice(1),_.spaces.after=k.slice(1)):_.value=k,p=new xa.default({value:" ",source:Ca(f,this.tokens[this.position-1]),sourceIndex:f[A.FIELDS.START_POS],spaces:S,raws:_})}return this.currToken&&this.currToken[A.FIELDS.TYPE]===T.space&&(p.spaces.after=this.optionalSpace(this.content()),this.position++),this.newNode(p)}var a=this.parseWhitespaceEquivalentTokens(n);if(a.length>0){var s=this.current.last;if(s){var o=this.convertWhitespaceNodesToSpace(a),u=o.space,c=o.rawSpace;void 0!==c&&(s.rawSpaceAfter+=c),s.spaces.after+=u}else a.forEach((function(O){return r.newNode(O)}))}},e.comma=function(){if(this.position===this.tokens.length-1)return this.root.trailingComma=!0,void this.position++;this.current._inferEndPosition();var r=new ba.default({source:{start:bp(this.tokens[this.position+1])}});this.current.parent.append(r),this.current=r,this.position++},e.comment=function(){var r=this.currToken;this.newNode(new mp.default({value:this.content(),source:It(r),sourceIndex:r[A.FIELDS.START_POS]})),this.position++},e.error=function(r,n){throw this.root.error(r,n)},e.missingBackslash=function(){return this.error("Expected a backslash preceding the semicolon.",{index:this.currToken[A.FIELDS.START_POS]})},e.missingParenthesis=function(){return this.expected("opening parenthesis",this.currToken[A.FIELDS.START_POS])},e.missingSquareBracket=function(){return this.expected("opening square bracket",this.currToken[A.FIELDS.START_POS])},e.unexpected=function(){return this.error("Unexpected '"+this.content()+"'. Escaping special characters with \\ may help.",this.currToken[A.FIELDS.START_POS])},e.unexpectedPipe=function(){return this.error("Unexpected '|'.",this.currToken[A.FIELDS.START_POS])},e.namespace=function(){var r=this.prevToken&&this.content(this.prevToken)||!0;return this.nextToken[A.FIELDS.TYPE]===T.word?(this.position++,this.word(r)):this.nextToken[A.FIELDS.TYPE]===T.asterisk?(this.position++,this.universal(r)):void this.unexpectedPipe()},e.nesting=function(){if(this.nextToken&&"|"===this.content(this.nextToken))return void this.position++;var n=this.currToken;this.newNode(new Ak.default({value:this.content(),source:It(n),sourceIndex:n[A.FIELDS.START_POS]})),this.position++},e.parentheses=function(){var r=this.current.last,n=1;if(this.position++,r&&r.type===Ok.PSEUDO){var a=new ba.default({source:{start:bp(this.tokens[this.position-1])}}),s=this.current;for(r.append(a),this.current=a;this.position<this.tokens.length&&n;)this.currToken[A.FIELDS.TYPE]===T.openParenthesis&&n++,this.currToken[A.FIELDS.TYPE]===T.closeParenthesis&&n--,n?this.parse():(this.current.source.end=vp(this.currToken),this.current.parent.source.end=vp(this.currToken),this.position++);this.current=s}else{for(var c,o=this.currToken,u="(";this.position<this.tokens.length&&n;)this.currToken[A.FIELDS.TYPE]===T.openParenthesis&&n++,this.currToken[A.FIELDS.TYPE]===T.closeParenthesis&&n--,c=this.currToken,u+=this.parseParenthesisToken(this.currToken),this.position++;r?r.appendToPropertyAndEscape("value",u,u):this.newNode(new va.default({value:u,source:bt(o[A.FIELDS.START_LINE],o[A.FIELDS.START_COL],c[A.FIELDS.END_LINE],c[A.FIELDS.END_COL]),sourceIndex:o[A.FIELDS.START_POS]}))}if(n)return this.expected("closing parenthesis",this.currToken[A.FIELDS.START_POS])},e.pseudo=function(){for(var r=this,n="",a=this.currToken;this.currToken&&this.currToken[A.FIELDS.TYPE]===T.colon;)n+=this.content(),this.position++;return this.currToken?this.currToken[A.FIELDS.TYPE]!==T.word?this.expected(["pseudo-class","pseudo-element"],this.currToken[A.FIELDS.START_POS]):void this.splitWord(!1,(function(s,o){n+=s,r.newNode(new Sk.default({value:n,source:Ca(a,r.currToken),sourceIndex:a[A.FIELDS.START_POS]})),o>1&&r.nextToken&&r.nextToken[A.FIELDS.TYPE]===T.openParenthesis&&r.error("Misplaced parenthesis.",{index:r.nextToken[A.FIELDS.START_POS]})})):this.expected(["pseudo-class","pseudo-element"],this.position-1)},e.space=function(){var r=this.content();0===this.position||this.prevToken[A.FIELDS.TYPE]===T.comma||this.prevToken[A.FIELDS.TYPE]===T.openParenthesis||this.current.nodes.every((function(n){return"comment"===n.type}))?(this.spaces=this.optionalSpace(r),this.position++):this.position===this.tokens.length-1||this.nextToken[A.FIELDS.TYPE]===T.comma||this.nextToken[A.FIELDS.TYPE]===T.closeParenthesis?(this.current.last.spaces.after=this.optionalSpace(r),this.position++):this.combinator()},e.string=function(){var r=this.currToken;this.newNode(new va.default({value:this.content(),source:It(r),sourceIndex:r[A.FIELDS.START_POS]})),this.position++},e.universal=function(r){var n=this.nextToken;if(n&&"|"===this.content(n))return this.position++,this.namespace();var a=this.currToken;this.newNode(new Ck.default({value:this.content(),source:It(a),sourceIndex:a[A.FIELDS.START_POS]}),r),this.position++},e.splitWord=function(r,n){for(var a=this,s=this.nextToken,o=this.content();s&&~[T.dollar,T.caret,T.equals,T.word].indexOf(s[A.FIELDS.TYPE]);){this.position++;var u=this.content();if(o+=u,u.lastIndexOf("\\")===u.length-1){var c=this.nextToken;c&&c[A.FIELDS.TYPE]===T.space&&(o+=this.requiredSpace(this.content(c)),this.position++)}s=this.nextToken}var f=Aa(o,".").filter((function(w){var x="\\"===o[w-1],y=/^\d+\.\d+%$/.test(o);return!x&&!y})),d=Aa(o,"#").filter((function(w){return"\\"!==o[w-1]})),p=Aa(o,"#{");p.length&&(d=d.filter((function(w){return!~p.indexOf(w)})));var m=(0,_k.default)(function(){var i=Array.prototype.concat.apply([],arguments);return i.filter((function(e,t){return t===i.indexOf(e)}))}([0].concat(f,d)));m.forEach((function(w,x){var y=m[x+1]||o.length,b=o.slice(w,y);if(0===x&&n)return n.call(a,b,m.length);var k,S=a.currToken,_=S[A.FIELDS.START_POS]+m[x],O=bt(S[1],S[2]+w,S[3],S[2]+(y-1));if(~f.indexOf(w)){var I={value:b.slice(1),source:O,sourceIndex:_};k=new vk.default(qt(I,"value"))}else if(~d.indexOf(w)){var B={value:b.slice(1),source:O,sourceIndex:_};k=new xk.default(qt(B,"value"))}else{var q={value:b,source:O,sourceIndex:_};qt(q,"value"),k=new kk.default(q)}a.newNode(k,r),r=null})),this.position++},e.word=function(r){var n=this.nextToken;return n&&"|"===this.content(n)?(this.position++,this.namespace()):this.splitWord(r)},e.loop=function(){for(;this.position<this.tokens.length;)this.parse(!0);return this.current._inferEndPosition(),this.root},e.parse=function(r){switch(this.currToken[A.FIELDS.TYPE]){case T.space:this.space();break;case T.comment:this.comment();break;case T.openParenthesis:this.parentheses();break;case T.closeParenthesis:r&&this.missingParenthesis();break;case T.openSquare:this.attribute();break;case T.dollar:case T.caret:case T.equals:case T.word:this.word();break;case T.colon:this.pseudo();break;case T.comma:this.comma();break;case T.asterisk:this.universal();break;case T.ampersand:this.nesting();break;case T.slash:case T.combinator:this.combinator();break;case T.str:this.string();break;case T.closeSquare:this.missingSquareBracket();case T.semicolon:this.missingBackslash();default:this.unexpected()}},e.expected=function(r,n,a){if(Array.isArray(r)){var s=r.pop();r=r.join(", ")+" or "+s}var o=/^[aeiou]/.test(r[0])?"an":"a";return a?this.error("Expected "+o+" "+r+', found "'+a+'" instead.',{index:n}):this.error("Expected "+o+" "+r+".",{index:n})},e.requiredSpace=function(r){return this.options.lossy?" ":r},e.optionalSpace=function(r){return this.options.lossy?"":r},e.lossySpace=function(r,n){return this.options.lossy?n?" ":"":r},e.parseParenthesisToken=function(r){var n=this.content(r);return r[A.FIELDS.TYPE]===T.space?this.requiredSpace(n):n},e.newNode=function(r,n){return n&&(/^ +$/.test(n)&&(this.options.lossy||(this.spaces=(this.spaces||"")+n),n=!0),r.namespace=n,qt(r,"namespace")),this.spaces&&(r.spaces.before=this.spaces,this.spaces=""),this.current.append(r)},e.content=function(r){return void 0===r&&(r=this.currToken),this.css.slice(r[A.FIELDS.START_POS],r[A.FIELDS.END_POS])},e.locateNextMeaningfulToken=function(r){void 0===r&&(r=this.position+1);for(var n=r;n<this.tokens.length;){if(Tk[this.tokens[n][A.FIELDS.TYPE]]){n++;continue}return n}return-1},function(i,e,t){e&&wp(i.prototype,e),t&&wp(i,t),Object.defineProperty(i,"prototype",{writable:!1})}(i,[{key:"currToken",get:function(){return this.tokens[this.position]}},{key:"nextToken",get:function(){return this.tokens[this.position+1]}},{key:"prevToken",get:function(){return this.tokens[this.position-1]}}]),i}();Ur.default=Dk,xp.exports=Ur.default})),Cp=v(((Wr,Sp)=>{l(),Wr.__esModule=!0,Wr.default=void 0;var i,Ik=(i=kp())&&i.__esModule?i:{default:i};var Rk=function(){function i(t,r){this.func=t||function(){},this.funcRes=null,this.options=r}var e=i.prototype;return e._shouldUpdateSelector=function(r,n){return void 0===n&&(n={}),!1!==Object.assign({},this.options,n).updateSelector&&"string"!=typeof r},e._isLossy=function(r){return void 0===r&&(r={}),!1===Object.assign({},this.options,r).lossless},e._root=function(r,n){return void 0===n&&(n={}),new Ik.default(r,this._parseOptions(n)).root},e._parseOptions=function(r){return{lossy:this._isLossy(r)}},e._run=function(r,n){var a=this;return void 0===n&&(n={}),new Promise((function(s,o){try{var u=a._root(r,n);Promise.resolve(a.func(u)).then((function(c){var f=void 0;return a._shouldUpdateSelector(r,n)&&(f=u.toString(),r.selector=f),{transform:c,root:u,string:f}})).then(s,o)}catch(c){return void o(c)}}))},e._runSync=function(r,n){void 0===n&&(n={});var a=this._root(r,n),s=this.func(a);if(s&&"function"==typeof s.then)throw new Error("Selector processor returned a promise to a synchronous call.");var o=void 0;return n.updateSelector&&"string"!=typeof r&&(o=a.toString(),r.selector=o),{transform:s,root:a,string:o}},e.ast=function(r,n){return this._run(r,n).then((function(a){return a.root}))},e.astSync=function(r,n){return this._runSync(r,n).root},e.transform=function(r,n){return this._run(r,n).then((function(a){return a.transform}))},e.transformSync=function(r,n){return this._runSync(r,n).transform},e.process=function(r,n){return this._run(r,n).then((function(a){return a.string||a.root.toString()}))},e.processSync=function(r,n){var a=this._runSync(r,n);return a.string||a.root.toString()},i}();Wr.default=Rk,Sp.exports=Wr.default})),Ap=v((H=>{l(),H.__esModule=!0,H.universal=H.tag=H.string=H.selector=H.root=H.pseudo=H.nesting=H.id=H.comment=H.combinator=H.className=H.attribute=void 0;var Mk=ve(fa()),Bk=ve(Hs()),Fk=ve(ha()),Nk=ve(Qs()),Lk=ve(Xs()),$k=ve(ga()),jk=ve(na()),zk=ve(zs()),Vk=ve(Us()),Uk=ve(ra()),Wk=ve(ea()),Gk=ve(pa());function ve(i){return i&&i.__esModule?i:{default:i}}H.attribute=function(e){return new Mk.default(e)};H.className=function(e){return new Bk.default(e)};H.combinator=function(e){return new Fk.default(e)};H.comment=function(e){return new Nk.default(e)};H.id=function(e){return new Lk.default(e)};H.nesting=function(e){return new $k.default(e)};H.pseudo=function(e){return new jk.default(e)};H.root=function(e){return new zk.default(e)};H.selector=function(e){return new Vk.default(e)};H.string=function(e){return new Uk.default(e)};H.tag=function(e){return new Wk.default(e)};H.universal=function(e){return new Gk.default(e)}})),Tp=v(($=>{l(),$.__esModule=!0,$.isComment=$.isCombinator=$.isClassName=$.isAttribute=void 0,$.isContainer=function(i){return!(!_a(i)||!i.walk)},$.isIdentifier=void 0,$.isNamespace=function(i){return _p(i)||Op(i)},$.isNesting=void 0,$.isNode=_a,$.isPseudo=void 0,$.isPseudoClass=function(i){return Oa(i)&&!Ep(i)},$.isPseudoElement=Ep,$.isUniversal=$.isTag=$.isString=$.isSelector=$.isRoot=void 0;var pe,J=se(),sS=((pe={})[J.ATTRIBUTE]=!0,pe[J.CLASS]=!0,pe[J.COMBINATOR]=!0,pe[J.COMMENT]=!0,pe[J.ID]=!0,pe[J.NESTING]=!0,pe[J.PSEUDO]=!0,pe[J.ROOT]=!0,pe[J.SELECTOR]=!0,pe[J.STRING]=!0,pe[J.TAG]=!0,pe[J.UNIVERSAL]=!0,pe);function _a(i){return"object"==typeof i&&sS[i.type]}function xe(i,e){return _a(e)&&e.type===i}var _p=xe.bind(null,J.ATTRIBUTE);$.isAttribute=_p;var aS=xe.bind(null,J.CLASS);$.isClassName=aS;var oS=xe.bind(null,J.COMBINATOR);$.isCombinator=oS;var lS=xe.bind(null,J.COMMENT);$.isComment=lS;var uS=xe.bind(null,J.ID);$.isIdentifier=uS;var fS=xe.bind(null,J.NESTING);$.isNesting=fS;var Oa=xe.bind(null,J.PSEUDO);$.isPseudo=Oa;var cS=xe.bind(null,J.ROOT);$.isRoot=cS;var pS=xe.bind(null,J.SELECTOR);$.isSelector=pS;var dS=xe.bind(null,J.STRING);$.isString=dS;var Op=xe.bind(null,J.TAG);$.isTag=Op;var hS=xe.bind(null,J.UNIVERSAL);function Ep(i){return Oa(i)&&i.value&&(i.value.startsWith("::")||":before"===i.value.toLowerCase()||":after"===i.value.toLowerCase()||":first-letter"===i.value.toLowerCase()||":first-line"===i.value.toLowerCase())}$.isUniversal=hS})),Pp=v((Ee=>{l(),Ee.__esModule=!0;var Ea=se();Object.keys(Ea).forEach((function(i){"default"===i||"__esModule"===i||i in Ee&&Ee[i]===Ea[i]||(Ee[i]=Ea[i])}));var Ta=Ap();Object.keys(Ta).forEach((function(i){"default"===i||"__esModule"===i||i in Ee&&Ee[i]===Ta[i]||(Ee[i]=Ta[i])}));var Pa=Tp();Object.keys(Pa).forEach((function(i){"default"===i||"__esModule"===i||i in Ee&&Ee[i]===Pa[i]||(Ee[i]=Pa[i])}))})),Re=v(((Gr,Ip)=>{l(),Gr.__esModule=!0,Gr.default=void 0;var i,wS=(i=Cp())&&i.__esModule?i:{default:i},bS=function(i,e){if(!e&&i&&i.__esModule)return i;if(null===i||"object"!=typeof i&&"function"!=typeof i)return{default:i};var t=Dp(e);if(t&&t.has(i))return t.get(i);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in i)if("default"!==a&&Object.prototype.hasOwnProperty.call(i,a)){var s=n?Object.getOwnPropertyDescriptor(i,a):null;s&&(s.get||s.set)?Object.defineProperty(r,a,s):r[a]=i[a]}return r.default=i,t&&t.set(i,r),r}(Pp());function Dp(i){if("function"!=typeof WeakMap)return null;var e=new WeakMap,t=new WeakMap;return(Dp=function(n){return n?t:e})(i)}var Da=function(e){return new wS.default(e)};Object.assign(Da,bS),delete Da.__esModule;var kS=Da;Gr.default=kS,Ip.exports=Gr.default}));function Ge(i){return["fontSize","outline"].includes(i)?e=>("function"==typeof e&&(e=e({})),Array.isArray(e)&&(e=e[0]),e):"fontFamily"===i?e=>{"function"==typeof e&&(e=e({}));let t=Array.isArray(e)&&ne(e[1])?e[0]:e;return Array.isArray(t)?t.join(", "):t}:["boxShadow","transitionProperty","transitionDuration","transitionDelay","transitionTimingFunction","backgroundImage","backgroundSize","backgroundColor","cursor","animation"].includes(i)?e=>("function"==typeof e&&(e=e({})),Array.isArray(e)&&(e=e.join(", ")),e):["gridTemplateColumns","gridTemplateRows","objectPosition"].includes(i)?e=>("function"==typeof e&&(e=e({})),"string"==typeof e&&(e=V.list.comma(e).join(" ")),e):(e,t={})=>("function"==typeof e&&(e=e(t)),e)}var Rt,rd,Hr=C((()=>{l(),nt(),kt()})),Lp=v(((O3,Ba)=>{l();var{Rule:qp,AtRule:SS}=ge(),Rp=Re();function Ia(i,e){let t;try{Rp((r=>{t=r})).processSync(i)}catch(r){throw i.includes(":")?e?e.error("Missed semicolon"):r:e?e.error(r.message):r}return t.at(0)}function Mp(i,e){let t=!1;return i.each((r=>{if("nesting"===r.type){let n=e.clone({});"&"!==r.value?r.replaceWith(Ia(r.value.replace("&",n.toString()))):r.replaceWith(n),t=!0}else"nodes"in r&&r.nodes&&Mp(r,e)&&(t=!0)})),t}function Bp(i,e){let t=[];return i.selectors.forEach((r=>{let n=Ia(r,i);e.selectors.forEach((a=>{if(!a)return;let s=Ia(a,e);Mp(s,n)||(s.prepend(Rp.combinator({value:" "})),s.prepend(n.clone({}))),t.push(s.toString())}))})),t}function on(i,e){let t=i.prev();for(e.after(i);t&&"comment"===t.type;){let r=t.prev();e.after(t),t=r}return i}function qa(i,e,t){let r=new qp({selector:i,nodes:[]});return r.append(e),t.after(r),r}function Fp(i,e){let t={};for(let r of i)t[r]=!0;if(e)for(let r of e)t[r.replace(/^@/,"")]=!0;return t}function OS(i){let e=i[Np];if(e){let r,a,s,o,t=i.nodes,n=-1,u=function(i){let e=[],t=i.parent;for(;t&&t instanceof SS;)e.push(t),t=t.parent;return e}(i);if(u.forEach(((c,f)=>{if(e(c.name))r=c,n=f,s=o;else{let d=o;o=c.clone({nodes:[]}),d&&o.append(d),a=a||o}})),r?s?(a.append(t),r.after(s)):r.after(t):i.after(t),i.next()&&r){let c;u.slice(0,n+1).forEach(((f,d,p)=>{let m=c;c=f.clone({nodes:[]}),m&&c.append(m);let w=[],y=(p[d-1]||i).next();for(;y;)w.push(y),y=y.next();c.append(w)})),c&&(s||t[t.length-1]).after(c)}}else i.after(i.nodes);i.remove()}var Ra=Symbol("rootRuleMergeSel"),Np=Symbol("rootRuleEscapes");function ES(i){let{params:e}=i,{type:t,selector:r,escapes:n}=function(i){let e=(i=i.trim()).match(/^\((.*)\)$/);if(!e)return{type:"basic",selector:i};let t=e[1].match(/^(with(?:out)?):(.+)$/);if(t){let r="with"===t[1],n=Object.fromEntries(t[2].trim().split(/\s+/).map((s=>[s,!0])));if(r&&n.all)return{type:"noop"};let a=s=>!!n[s];return n.all?a=()=>!0:r&&(a=s=>"all"!==s&&!n[s]),{type:"withrules",escapes:a}}return{type:"unknown"}}(e);if("unknown"===t)throw i.error(`Unknown @${i.name} parameter ${JSON.stringify(e)}`);if("basic"===t&&r){let a=new qp({selector:r,nodes:i.nodes});i.removeAll(),i.append(a)}i[Np]=n,i[Ra]=n?!n("all"):"noop"===t}var Ma=Symbol("hasRootRule");Ba.exports=(i={})=>{let e=Fp(["media","supports","layer","container"],i.bubble),t=function(i){return function e(t,r,n,a=n){let s=[];if(r.each((o=>{"rule"===o.type&&n?a&&(o.selectors=Bp(t,o)):"atrule"===o.type&&o.nodes?i[o.name]?e(t,o,a):!1!==r[Ra]&&s.push(o):s.push(o)})),n&&s.length){let o=t.clone({nodes:[]});for(let u of s)o.append(u);r.prepend(o)}}}(e),r=Fp(["document","font-face","keyframes","-webkit-keyframes","-moz-keyframes"],i.unwrap),n=(i.rootRuleName||"at-root").replace(/^@/,""),a=i.preserveEmpty;return{postcssPlugin:"postcss-nested",Once(s){s.walkAtRules(n,(o=>{ES(o),s[Ma]=!0}))},Rule(s){let o=!1,u=s,c=!1,f=[];s.each((d=>{"rule"===d.type?(f.length&&(u=qa(s.selector,f,u),f=[]),c=!0,o=!0,d.selectors=Bp(s,d),u=on(d,u)):"atrule"===d.type?(f.length&&(u=qa(s.selector,f,u),f=[]),d.name===n?(o=!0,t(s,d,!0,d[Ra]),u=on(d,u)):e[d.name]?(c=!0,o=!0,t(s,d,!0),u=on(d,u)):r[d.name]?(c=!0,o=!0,t(s,d,!1),u=on(d,u)):c&&f.push(d)):"decl"===d.type&&c&&f.push(d)})),f.length&&(u=qa(s.selector,f,u)),o&&!0!==a&&(s.raws.semicolon=!0,0===s.nodes.length&&s.remove())},RootExit(s){s[Ma]&&(s.walkAtRules(n,OS),s[Ma]=!1)}}},Ba.exports.postcss=!0})),Vp=v(((E3,zp)=>{l();var $p=/-(\w|$)/g,jp=(i,e)=>e.toUpperCase();zp.exports=i=>"float"===(i=i.toLowerCase())?"cssFloat":i.startsWith("-ms-")?i.substr(1).replace($p,jp):i.replace($p,jp)})),La=v(((T3,Up)=>{l();var PS=Vp(),DS={boxFlex:!0,boxFlexGroup:!0,columnCount:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,strokeDashoffset:!0,strokeOpacity:!0,strokeWidth:!0};function Fa(i){return void 0===i.nodes||Na(i)}function Na(i){let e,t={};return i.each((r=>{if("atrule"===r.type)e="@"+r.name,r.params&&(e+=" "+r.params),void 0===t[e]?t[e]=Fa(r):Array.isArray(t[e])?t[e].push(Fa(r)):t[e]=[t[e],Fa(r)];else if("rule"===r.type){let n=Na(r);if(t[r.selector])for(let a in n)t[r.selector][a]=n[a];else t[r.selector]=n}else if("decl"===r.type){e="-"===r.prop[0]&&"-"===r.prop[1]||r.parent&&":export"===r.parent.selector?r.prop:PS(r.prop);let n=r.value;!isNaN(r.value)&&DS[e]&&(n=parseFloat(r.value)),r.important&&(n+=" !important"),void 0===t[e]?t[e]=n:Array.isArray(t[e])?t[e].push(n):t[e]=[t[e],n]}})),t}Up.exports=Na})),ln=v(((P3,Yp)=>{l();var Yr=ge(),Wp=/\s*!important\s*$/i,IS={"box-flex":!0,"box-flex-group":!0,"column-count":!0,flex:!0,"flex-grow":!0,"flex-positive":!0,"flex-shrink":!0,"flex-negative":!0,"font-weight":!0,"line-clamp":!0,"line-height":!0,opacity:!0,order:!0,orphans:!0,"tab-size":!0,widows:!0,"z-index":!0,zoom:!0,"fill-opacity":!0,"stroke-dashoffset":!0,"stroke-opacity":!0,"stroke-width":!0};function Gp(i,e,t){!1===t||null===t||(e.startsWith("--")||(e=function(i){return i.replace(/([A-Z])/g,"-$1").replace(/^ms-/,"-ms-").toLowerCase()}(e)),"number"==typeof t&&(0===t||IS[e]?t=t.toString():t+="px"),"css-float"===e&&(e="float"),Wp.test(t)?(t=t.replace(Wp,""),i.push(Yr.decl({prop:e,value:t,important:!0}))):i.push(Yr.decl({prop:e,value:t})))}function Hp(i,e,t){let r=Yr.atRule({name:e[1],params:e[3]||""});"object"==typeof t&&(r.nodes=[],$a(t,r)),i.push(r)}function $a(i,e){let t,r,n;for(t in i)if(r=i[t],null!=r)if("@"===t[0]){let a=t.match(/@(\S+)(\s+([\W\w]*)\s*)?/);if(Array.isArray(r))for(let s of r)Hp(e,a,s);else Hp(e,a,r)}else if(Array.isArray(r))for(let a of r)Gp(e,t,a);else"object"==typeof r?(n=Yr.rule({selector:t}),$a(r,n),e.push(n)):Gp(e,t,r)}Yp.exports=function(i){let e=Yr.root();return $a(i,e),e}})),ja=v(((D3,Qp)=>{l();var RS=La();Qp.exports=function(e){return console&&console.warn&&e.warnings().forEach((t=>{let r=t.plugin||"PostCSS";console.warn(r+": "+t.text)})),RS(e.root)}})),Xp=v(((I3,Jp)=>{l();var MS=ge(),BS=ja(),FS=ln();Jp.exports=function(e){let t=MS(e);return async r=>{let n=await t.process(r,{parser:FS,from:void 0});return BS(n)}}})),Zp=v(((q3,Kp)=>{l();var NS=ge(),LS=ja(),$S=ln();Kp.exports=function(i){let e=NS(i);return t=>{let r=e.process(t,{parser:$S,from:void 0});return LS(r)}}})),td=v(((R3,ed)=>{l();var jS=La(),zS=ln(),VS=Xp(),US=Zp();ed.exports={objectify:jS,parse:zS,async:VS,sync:US}})),id=C((()=>{l(),Rt=K(td()),rd=Rt.default,Rt.default.objectify,Rt.default.parse,Rt.default.async,Rt.default.sync}));function Mt(i){return Array.isArray(i)?i.flatMap((e=>V([(0,nd.default)({bubble:["screen"]})]).process(e,{parser:rd}).root.nodes)):Mt([i])}var nd,za=C((()=>{l(),nt(),nd=K(Lp()),id()}));function Bt(i,e,t=!1){if(""===i)return e;let r="string"==typeof e?(0,sd.default)().astSync(e):e;return r.walkClasses((n=>{let a=n.value,s=t&&a.startsWith("-");n.value=s?`-${i}${a.slice(1)}`:`${i}${a}`})),"string"==typeof e?r.toString():r}var sd,un=C((()=>{l(),sd=K(Re())}));function de(i){let e=ad.default.className();return e.value=i,mt(e?.raws?.value??e.value)}var ad,Ft=C((()=>{l(),ad=K(Re()),mi()}));function Va(i){return mt(`.${de(i)}`)}function fn(i,e){return Va(Qr(i,e))}function Qr(i,e){return"DEFAULT"===e?i:"-"===e||"-DEFAULT"===e?`-${i}`:e.startsWith("-")?`-${i}${e}`:e.startsWith("/")?`${i}${e}`:`${i}-${e}`}var Ua=C((()=>{l(),Ft(),mi()}));function P(i,e=[[i,[i]]],{filterDefault:t=!1,...r}={}){let n=Ge(i);return function({matchUtilities:a,theme:s}){for(let o of e){a((Array.isArray(o[0])?o:[o]).reduce(((c,[f,d])=>Object.assign(c,{[f]:p=>d.reduce(((m,w)=>Array.isArray(w)?Object.assign(m,{[w[0]]:w[1]}):Object.assign(m,{[w]:n(p)})),{})})),{}),{...r,values:t?Object.fromEntries(Object.entries(s(i)??{}).filter((([c])=>"DEFAULT"!==c))):s(i)})}}}var od=C((()=>{l(),Hr()}));function st(i){return(i=Array.isArray(i)?i:[i]).map((e=>{let t=e.values.map((r=>void 0!==r.raw?r.raw:[r.min&&`(min-width: ${r.min})`,r.max&&`(max-width: ${r.max})`].filter(Boolean).join(" and ")));return e.not?`not all and ${t}`:t})).join(", ")}var cn=C((()=>{l()}));var WS,GS,HS,YS,QS,JS,XS,KS,ld,ZS,fd,ie,Ha,Ya,ud=C((()=>{l(),WS=new Set(["normal","reverse","alternate","alternate-reverse"]),GS=new Set(["running","paused"]),HS=new Set(["none","forwards","backwards","both"]),YS=new Set(["infinite"]),QS=new Set(["linear","ease","ease-in","ease-out","ease-in-out","step-start","step-end"]),JS=["cubic-bezier","steps"],XS=/\,(?![^(]*\))/g,KS=/\ +(?![^(]*\))/g,ld=/^(-?[\d.]+m?s)$/,ZS=/^(\d+)$/})),cd=C((()=>{l(),ie=fd=i=>Object.assign({},...Object.entries(i??{}).flatMap((([e,t])=>"object"==typeof t?Object.entries(fd(t)).map((([r,n])=>({[e+("DEFAULT"===r?"":`-${r}`)]:n}))):[{[`${e}`]:t}])))})),Ga=C((()=>{"tailwindcss","A utility-first CSS framework for rapidly building custom user interfaces.","MIT","lib/index.js","types/index.d.ts","https://github.com/tailwindlabs/tailwindcss.git","https://github.com/tailwindlabs/tailwindcss/issues","https://tailwindcss.com",Ya={name:"tailwindcss",version:Ha="3.4.1",description:"A utility-first CSS framework for rapidly building custom user interfaces.",license:"MIT",main:"lib/index.js",types:"types/index.d.ts",repository:"https://github.com/tailwindlabs/tailwindcss.git",bugs:"https://github.com/tailwindlabs/tailwindcss/issues",homepage:"https://tailwindcss.com",bin:{tailwind:"lib/cli.js",tailwindcss:"lib/cli.js"},tailwindcss:{engine:"stable"},scripts:{prebuild:"npm run generate && rimraf lib",build:"swc src --out-dir lib --copy-files --config jsc.transform.optimizer.globals.vars.__OXIDE__='\"false\"'",postbuild:"esbuild lib/cli-peer-dependencies.js --bundle --platform=node --outfile=peers/index.js --define:process.env.CSS_TRANSFORMER_WASM=false","rebuild-fixtures":"npm run build && node -r @swc/register scripts/rebuildFixtures.js",style:"eslint .",pretest:"npm run generate",test:"jest","test:integrations":"npm run test --prefix ./integrations","install:integrations":"node scripts/install-integrations.js","generate:plugin-list":"node -r @swc/register scripts/create-plugin-list.js","generate:types":"node -r @swc/register scripts/generate-types.js",generate:"npm run generate:plugin-list && npm run generate:types","release-channel":"node ./scripts/release-channel.js","release-notes":"node ./scripts/release-notes.js",prepublishOnly:"npm install --force && npm run build"},files:["src/*","cli/*","lib/*","peers/*","scripts/*.js","stubs/*","nesting/*","types/**/*","*.d.ts","*.css","*.js"],devDependencies:{"@swc/cli":"^0.1.62","@swc/core":"^1.3.55","@swc/jest":"^0.2.26","@swc/register":"^0.1.10",autoprefixer:"^10.4.14",browserslist:"^4.21.5",concurrently:"^8.0.1",cssnano:"^6.0.0",esbuild:"^0.17.18",eslint:"^8.39.0","eslint-config-prettier":"^8.8.0","eslint-plugin-prettier":"^4.2.1",jest:"^29.6.0","jest-diff":"^29.6.0",lightningcss:"1.18.0",prettier:"^2.8.8",rimraf:"^5.0.0","source-map-js":"^1.0.2",turbo:"^1.9.3"},dependencies:{"@alloc/quick-lru":"^5.2.0",arg:"^5.0.2",chokidar:"^3.5.3",didyoumean:"^1.2.2",dlv:"^1.1.3","fast-glob":"^3.3.0","glob-parent":"^6.0.2","is-glob":"^4.0.3",jiti:"^1.19.1",lilconfig:"^2.1.0",micromatch:"^4.0.5","normalize-path":"^3.0.0","object-hash":"^3.0.0",picocolors:"^1.0.0",postcss:"^8.4.23","postcss-import":"^15.1.0","postcss-js":"^4.0.1","postcss-load-config":"^4.0.1","postcss-nested":"^6.0.1","postcss-selector-parser":"^6.0.11",resolve:"^1.22.2",sucrase:"^3.32.0"},browserslist:["> 1%","not edge <= 18","not ie 11","not op_mini all"],jest:{testTimeout:3e4,setupFilesAfterEnv:["<rootDir>/jest/customMatchers.js"],testPathIgnorePatterns:["/node_modules/","/integrations/","/standalone-cli/","\\.test\\.skip\\.js$"],transformIgnorePatterns:["node_modules/(?!lightningcss)"],transform:{"\\.js$":"@swc/jest","\\.ts$":"@swc/jest"}},engines:{node:">=14.0.0"}}}));function at(i,e=!0){return Array.isArray(i)?i.map((t=>{if(e&&Array.isArray(t))throw new Error("The tuple syntax is not supported for `screens`.");if("string"==typeof t)return{name:t.toString(),not:!1,values:[{min:t,max:void 0}]};let[r,n]=t;return r=r.toString(),"string"==typeof n?{name:r,not:!1,values:[{min:n,max:void 0}]}:Array.isArray(n)?{name:r,not:!1,values:n.map((a=>dd(a)))}:{name:r,not:!1,values:[dd(n)]}})):at(Object.entries(i??{}),!1)}function pn(i){return 1!==i.values.length?{result:!1,reason:"multiple-values"}:void 0!==i.values[0].raw?{result:!1,reason:"raw-values"}:void 0!==i.values[0].min&&void 0!==i.values[0].max?{result:!1,reason:"min-and-max"}:{result:!0,reason:null}}function dn(i,e){return"object"==typeof i?i:{name:"arbitrary-screen",values:[{[e]:i}]}}function dd({"min-width":i,min:e=i,max:t,raw:r}={}){return{min:e,max:t,raw:r}}var hn=C((()=>{l()}));function mn(i,e){i.walkDecls((t=>{if(e.includes(t.prop))t.remove();else for(let r of e)t.value.includes(`/ var(${r})`)&&(t.value=t.value.replace(`/ var(${r})`,""))}))}var Y,Te,Me,Be,md,hd=C((()=>{l()})),gd=C((()=>{l(),je(),gt(),nt(),od(),cn(),Ft(),ud(),cd(),or(),cs(),kt(),Hr(),Ga(),Oe(),hn(),ns(),hd(),ze(),fr(),Xr(),Y={childVariant:({addVariant:i})=>{i("*","& > *")},pseudoElementVariants:({addVariant:i})=>{i("first-letter","&::first-letter"),i("first-line","&::first-line"),i("marker",[({container:e})=>(mn(e,["--tw-text-opacity"]),"& *::marker"),({container:e})=>(mn(e,["--tw-text-opacity"]),"&::marker")]),i("selection",["& *::selection","&::selection"]),i("file","&::file-selector-button"),i("placeholder","&::placeholder"),i("backdrop","&::backdrop"),i("before",(({container:e})=>(e.walkRules((t=>{let r=!1;t.walkDecls("content",(()=>{r=!0})),r||t.prepend(V.decl({prop:"content",value:"var(--tw-content)"}))})),"&::before"))),i("after",(({container:e})=>(e.walkRules((t=>{let r=!1;t.walkDecls("content",(()=>{r=!0})),r||t.prepend(V.decl({prop:"content",value:"var(--tw-content)"}))})),"&::after")))},pseudoClassVariants:({addVariant:i,matchVariant:e,config:t,prefix:r})=>{let n=[["first","&:first-child"],["last","&:last-child"],["only","&:only-child"],["odd","&:nth-child(odd)"],["even","&:nth-child(even)"],"first-of-type","last-of-type","only-of-type",["visited",({container:s})=>(mn(s,["--tw-text-opacity","--tw-border-opacity","--tw-bg-opacity"]),"&:visited")],"target",["open","&[open]"],"default","checked","indeterminate","placeholder-shown","autofill","optional","required","valid","invalid","in-range","out-of-range","read-only","empty","focus-within",["hover",Z(t(),"hoverOnlyWhenSupported")?"@media (hover: hover) and (pointer: fine) { &:hover }":"&:hover"],"focus","focus-visible","active","enabled","disabled"].map((s=>Array.isArray(s)?s:[s,`&:${s}`]));for(let[s,o]of n)i(s,(u=>"function"==typeof o?o(u):o));let a={group:(s,{modifier:o})=>o?[`:merge(${r(".group")}\\/${de(o)})`," &"]:[`:merge(${r(".group")})`," &"],peer:(s,{modifier:o})=>o?[`:merge(${r(".peer")}\\/${de(o)})`," ~ &"]:[`:merge(${r(".peer")})`," ~ &"]};for(let[s,o]of Object.entries(a))e(s,((u="",c)=>{let f=N("function"==typeof u?u(c):u);f.includes("&")||(f="&"+f);let[d,p]=o("",c),m=null,w=null,x=0;for(let y=0;y<f.length;++y){let b=f[y];"&"===b?m=y:"'"===b||'"'===b?x+=1:null!==m&&" "===b&&!x&&(w=y)}return null!==m&&null===w&&(w=f.length),f.slice(0,m)+d+f.slice(m+1,w)+p+f.slice(w)}),{values:Object.fromEntries(n),[Jr]:{respectPrefix:!1}})},directionVariants:({addVariant:i})=>{i("ltr",'&:where([dir="ltr"], [dir="ltr"] *)'),i("rtl",'&:where([dir="rtl"], [dir="rtl"] *)')},reducedMotionVariants:({addVariant:i})=>{i("motion-safe","@media (prefers-reduced-motion: no-preference)"),i("motion-reduce","@media (prefers-reduced-motion: reduce)")},darkVariants:({config:i,addVariant:e})=>{let[t,r=".dark"]=[].concat(i("darkMode","media"));if(!1===t&&(t="media",F.warn("darkmode-false",["The `darkMode` option in your Tailwind CSS configuration is set to `false`, which now behaves the same as `media`.","Change `darkMode` to `media` or remove it entirely.","https://tailwindcss.com/docs/upgrade-guide#remove-dark-mode-configuration"])),"variant"===t){let n;if(Array.isArray(r)||"function"==typeof r?n=r:"string"==typeof r&&(n=[r]),Array.isArray(n))for(let a of n)".dark"===a?(t=!1,F.warn("darkmode-variant-without-selector",["When using `variant` for `darkMode`, you must provide a selector.",'Example: `darkMode: ["variant", ".your-selector &"]`'])):a.includes("&")||(t=!1,F.warn("darkmode-variant-without-ampersand",["When using `variant` for `darkMode`, your selector must contain `&`.",'Example `darkMode: ["variant", ".your-selector &"]`']));r=n}"selector"===t?e("dark",`&:where(${r}, ${r} *)`):"media"===t?e("dark","@media (prefers-color-scheme: dark)"):"variant"===t?e("dark",r):"class"===t&&e("dark",`:is(${r} &)`)},printVariant:({addVariant:i})=>{i("print","@media print")},screenVariants:({theme:i,addVariant:e,matchVariant:t})=>{let r=i("screens")??{},n=Object.values(r).every((b=>"string"==typeof b)),a=at(i("screens")),s=new Set([]);function u(b){void 0!==b&&s.add(function(b){return b.match(/(\D+)$/)?.[1]??"(none)"}(b))}for(let b of a)for(let k of b.values)u(k.min),u(k.max);let f=s.size<=1;function p(b){return(k,S)=>function(i,e,t){let r=dn(e,i),n=dn(t,i),a=pn(r),s=pn(n);if("multiple-values"===a.reason||"multiple-values"===s.reason)throw new Error("Attempted to sort a screen with multiple values. This should never happen. Please open a bug report.");if("raw-values"===a.reason||"raw-values"===s.reason)throw new Error("Attempted to sort a screen with raw values. This should never happen. Please open a bug report.");if("min-and-max"===a.reason||"min-and-max"===s.reason)throw new Error("Attempted to sort a screen with both min and max values. This should never happen. Please open a bug report.");let{min:o,max:u}=r.values[0],{min:c,max:f}=n.values[0];e.not&&([o,u]=[u,o]),t.not&&([c,f]=[f,c]),o=void 0===o?o:parseFloat(o),u=void 0===u?u:parseFloat(u),c=void 0===c?c:parseFloat(c),f=void 0===f?f:parseFloat(f);let[d,p]="min"===i?[o,c]:[f,u];return d-p}(b,k.value,S.value)}let m=p("max"),w=p("min");function x(b){return k=>n?f?"string"!=typeof k||function(b){return u(b),1===s.size}(k)?[`@media ${st(dn(k,b))}`]:(F.warn("minmax-have-mixed-units",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."]),[]):(F.warn("mixed-screen-units",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing mixed units."]),[]):(F.warn("complex-screen-config",["The `min-*` and `max-*` variants are not supported with a `screens` configuration containing objects."]),[])}var b;t("max",x("max"),{sort:m,values:n?(b="max",Object.fromEntries(a.filter((k=>pn(k).result)).map((k=>{let{min:S,max:_}=k.values[0];return"min"===b&&void 0!==S?k:"min"===b&&void 0!==_?{...k,not:!k.not}:"max"===b&&void 0!==_?k:"max"===b&&void 0!==S?{...k,not:!k.not}:void 0})).map((k=>[k.name,k])))):{}});let y="min-screens";for(let b of a)e(b.name,`@media ${st(b)}`,{id:y,sort:n&&f?w:void 0,value:b});t("min",x("min"),{id:y,sort:w})},supportsVariants:({matchVariant:i,theme:e})=>{i("supports",((t="")=>{let r=N(t),n=/^\w*\s*\(/.test(r);return r=n?r.replace(/\b(and|or|not)\b/g," $1 "):r,n||(r.includes(":")||(r=`${r}: var(--tw)`),r.startsWith("(")&&r.endsWith(")")||(r=`(${r})`)),`@supports ${r}`}),{values:e("supports")??{}})},hasVariants:({matchVariant:i})=>{i("has",(e=>`&:has(${N(e)})`),{values:{}}),i("group-has",((e,{modifier:t})=>t?`:merge(.group\\/${t}):has(${N(e)}) &`:`:merge(.group):has(${N(e)}) &`),{values:{}}),i("peer-has",((e,{modifier:t})=>t?`:merge(.peer\\/${t}):has(${N(e)}) ~ &`:`:merge(.peer):has(${N(e)}) ~ &`),{values:{}})},ariaVariants:({matchVariant:i,theme:e})=>{i("aria",(t=>`&[aria-${N(t)}]`),{values:e("aria")??{}}),i("group-aria",((t,{modifier:r})=>r?`:merge(.group\\/${r})[aria-${N(t)}] &`:`:merge(.group)[aria-${N(t)}] &`),{values:e("aria")??{}}),i("peer-aria",((t,{modifier:r})=>r?`:merge(.peer\\/${r})[aria-${N(t)}] ~ &`:`:merge(.peer)[aria-${N(t)}] ~ &`),{values:e("aria")??{}})},dataVariants:({matchVariant:i,theme:e})=>{i("data",(t=>`&[data-${N(t)}]`),{values:e("data")??{}}),i("group-data",((t,{modifier:r})=>r?`:merge(.group\\/${r})[data-${N(t)}] &`:`:merge(.group)[data-${N(t)}] &`),{values:e("data")??{}}),i("peer-data",((t,{modifier:r})=>r?`:merge(.peer\\/${r})[data-${N(t)}] ~ &`:`:merge(.peer)[data-${N(t)}] ~ &`),{values:e("data")??{}})},orientationVariants:({addVariant:i})=>{i("portrait","@media (orientation: portrait)"),i("landscape","@media (orientation: landscape)")},prefersContrastVariants:({addVariant:i})=>{i("contrast-more","@media (prefers-contrast: more)"),i("contrast-less","@media (prefers-contrast: less)")},forcedColorsVariants:({addVariant:i})=>{i("forced-colors","@media (forced-colors: active)")}},Te=["translate(var(--tw-translate-x), var(--tw-translate-y))","rotate(var(--tw-rotate))","skewX(var(--tw-skew-x))","skewY(var(--tw-skew-y))","scaleX(var(--tw-scale-x))","scaleY(var(--tw-scale-y))"].join(" "),Me=["var(--tw-blur)","var(--tw-brightness)","var(--tw-contrast)","var(--tw-grayscale)","var(--tw-hue-rotate)","var(--tw-invert)","var(--tw-saturate)","var(--tw-sepia)","var(--tw-drop-shadow)"].join(" "),Be=["var(--tw-backdrop-blur)","var(--tw-backdrop-brightness)","var(--tw-backdrop-contrast)","var(--tw-backdrop-grayscale)","var(--tw-backdrop-hue-rotate)","var(--tw-backdrop-invert)","var(--tw-backdrop-opacity)","var(--tw-backdrop-saturate)","var(--tw-backdrop-sepia)"].join(" "),md={preflight:({addBase:i})=>{let e=V.parse("*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:theme('borderColor.DEFAULT', currentColor)}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:theme('fontFamily.sans', ui-sans-serif, system-ui, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\", \"Noto Color Emoji\");font-feature-settings:theme('fontFamily.sans[1].fontFeatureSettings', normal);font-variation-settings:theme('fontFamily.sans[1].fontVariationSettings', normal);-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:theme('fontFamily.mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \"Liberation Mono\", \"Courier New\", monospace);font-feature-settings:theme('fontFamily.mono[1].fontFeatureSettings', normal);font-variation-settings:theme('fontFamily.mono[1].fontVariationSettings', normal);font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:theme('colors.gray.4', #9ca3af)}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}");i([V.comment({text:`! tailwindcss v${Ha} | MIT License | https://tailwindcss.com`}),...e.nodes])},container:function({addComponents:t,theme:r}){let n=at(r("container.screens",r("screens"))),a=function(t=[]){return t.flatMap((r=>r.values.map((n=>n.min)))).filter((r=>void 0!==r))}(n),s=function(t,r,n){if(void 0===n)return[];if("object"!=typeof n||null===n)return[{screen:"DEFAULT",minWidth:0,padding:n}];let a=[];n.DEFAULT&&a.push({screen:"DEFAULT",minWidth:0,padding:n.DEFAULT});for(let s of t)for(let o of r)for(let{min:u}of o.values)u===s&&a.push({minWidth:s,padding:n[o.name]});return a}(a,n,r("container.padding")),o=c=>{let f=s.find((d=>d.minWidth===c));return f?{paddingRight:f.padding,paddingLeft:f.padding}:{}},u=Array.from(new Set(a.slice().sort(((c,f)=>parseInt(c)-parseInt(f))))).map((c=>({[`@media (min-width: ${c})`]:{".container":{"max-width":c,...o(c)}}})));t([{".container":Object.assign({width:"100%"},r("container.center",!1)?{marginRight:"auto",marginLeft:"auto"}:{},o(0))},...u])},accessibility:({addUtilities:i})=>{i({".sr-only":{position:"absolute",width:"1px",height:"1px",padding:"0",margin:"-1px",overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0"},".not-sr-only":{position:"static",width:"auto",height:"auto",padding:"0",margin:"0",overflow:"visible",clip:"auto",whiteSpace:"normal"}})},pointerEvents:({addUtilities:i})=>{i({".pointer-events-none":{"pointer-events":"none"},".pointer-events-auto":{"pointer-events":"auto"}})},visibility:({addUtilities:i})=>{i({".visible":{visibility:"visible"},".invisible":{visibility:"hidden"},".collapse":{visibility:"collapse"}})},position:({addUtilities:i})=>{i({".static":{position:"static"},".fixed":{position:"fixed"},".absolute":{position:"absolute"},".relative":{position:"relative"},".sticky":{position:"sticky"}})},inset:P("inset",[["inset",["inset"]],[["inset-x",["left","right"]],["inset-y",["top","bottom"]]],[["start",["inset-inline-start"]],["end",["inset-inline-end"]],["top",["top"]],["right",["right"]],["bottom",["bottom"]],["left",["left"]]]],{supportsNegativeValues:!0}),isolation:({addUtilities:i})=>{i({".isolate":{isolation:"isolate"},".isolation-auto":{isolation:"auto"}})},zIndex:P("zIndex",[["z",["zIndex"]]],{supportsNegativeValues:!0}),order:P("order",void 0,{supportsNegativeValues:!0}),gridColumn:P("gridColumn",[["col",["gridColumn"]]]),gridColumnStart:P("gridColumnStart",[["col-start",["gridColumnStart"]]]),gridColumnEnd:P("gridColumnEnd",[["col-end",["gridColumnEnd"]]]),gridRow:P("gridRow",[["row",["gridRow"]]]),gridRowStart:P("gridRowStart",[["row-start",["gridRowStart"]]]),gridRowEnd:P("gridRowEnd",[["row-end",["gridRowEnd"]]]),float:({addUtilities:i})=>{i({".float-start":{float:"inline-start"},".float-end":{float:"inline-end"},".float-right":{float:"right"},".float-left":{float:"left"},".float-none":{float:"none"}})},clear:({addUtilities:i})=>{i({".clear-start":{clear:"inline-start"},".clear-end":{clear:"inline-end"},".clear-left":{clear:"left"},".clear-right":{clear:"right"},".clear-both":{clear:"both"},".clear-none":{clear:"none"}})},margin:P("margin",[["m",["margin"]],[["mx",["margin-left","margin-right"]],["my",["margin-top","margin-bottom"]]],[["ms",["margin-inline-start"]],["me",["margin-inline-end"]],["mt",["margin-top"]],["mr",["margin-right"]],["mb",["margin-bottom"]],["ml",["margin-left"]]]],{supportsNegativeValues:!0}),boxSizing:({addUtilities:i})=>{i({".box-border":{"box-sizing":"border-box"},".box-content":{"box-sizing":"content-box"}})},lineClamp:({matchUtilities:i,addUtilities:e,theme:t})=>{i({"line-clamp":r=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":`${r}`})},{values:t("lineClamp")}),e({".line-clamp-none":{overflow:"visible",display:"block","-webkit-box-orient":"horizontal","-webkit-line-clamp":"none"}})},display:({addUtilities:i})=>{i({".block":{display:"block"},".inline-block":{display:"inline-block"},".inline":{display:"inline"},".flex":{display:"flex"},".inline-flex":{display:"inline-flex"},".table":{display:"table"},".inline-table":{display:"inline-table"},".table-caption":{display:"table-caption"},".table-cell":{display:"table-cell"},".table-column":{display:"table-column"},".table-column-group":{display:"table-column-group"},".table-footer-group":{display:"table-footer-group"},".table-header-group":{display:"table-header-group"},".table-row-group":{display:"table-row-group"},".table-row":{display:"table-row"},".flow-root":{display:"flow-root"},".grid":{display:"grid"},".inline-grid":{display:"inline-grid"},".contents":{display:"contents"},".list-item":{display:"list-item"},".hidden":{display:"none"}})},aspectRatio:P("aspectRatio",[["aspect",["aspect-ratio"]]]),size:P("size",[["size",["width","height"]]]),height:P("height",[["h",["height"]]]),maxHeight:P("maxHeight",[["max-h",["maxHeight"]]]),minHeight:P("minHeight",[["min-h",["minHeight"]]]),width:P("width",[["w",["width"]]]),minWidth:P("minWidth",[["min-w",["minWidth"]]]),maxWidth:P("maxWidth",[["max-w",["maxWidth"]]]),flex:P("flex"),flexShrink:P("flexShrink",[["flex-shrink",["flex-shrink"]],["shrink",["flex-shrink"]]]),flexGrow:P("flexGrow",[["flex-grow",["flex-grow"]],["grow",["flex-grow"]]]),flexBasis:P("flexBasis",[["basis",["flex-basis"]]]),tableLayout:({addUtilities:i})=>{i({".table-auto":{"table-layout":"auto"},".table-fixed":{"table-layout":"fixed"}})},captionSide:({addUtilities:i})=>{i({".caption-top":{"caption-side":"top"},".caption-bottom":{"caption-side":"bottom"}})},borderCollapse:({addUtilities:i})=>{i({".border-collapse":{"border-collapse":"collapse"},".border-separate":{"border-collapse":"separate"}})},borderSpacing:({addDefaults:i,matchUtilities:e,theme:t})=>{i("border-spacing",{"--tw-border-spacing-x":0,"--tw-border-spacing-y":0}),e({"border-spacing":r=>({"--tw-border-spacing-x":r,"--tw-border-spacing-y":r,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"}),"border-spacing-x":r=>({"--tw-border-spacing-x":r,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"}),"border-spacing-y":r=>({"--tw-border-spacing-y":r,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"})},{values:t("borderSpacing")})},transformOrigin:P("transformOrigin",[["origin",["transformOrigin"]]]),translate:P("translate",[[["translate-x",[["@defaults transform",{}],"--tw-translate-x",["transform",Te]]],["translate-y",[["@defaults transform",{}],"--tw-translate-y",["transform",Te]]]]],{supportsNegativeValues:!0}),rotate:P("rotate",[["rotate",[["@defaults transform",{}],"--tw-rotate",["transform",Te]]]],{supportsNegativeValues:!0}),skew:P("skew",[[["skew-x",[["@defaults transform",{}],"--tw-skew-x",["transform",Te]]],["skew-y",[["@defaults transform",{}],"--tw-skew-y",["transform",Te]]]]],{supportsNegativeValues:!0}),scale:P("scale",[["scale",[["@defaults transform",{}],"--tw-scale-x","--tw-scale-y",["transform",Te]]],[["scale-x",[["@defaults transform",{}],"--tw-scale-x",["transform",Te]]],["scale-y",[["@defaults transform",{}],"--tw-scale-y",["transform",Te]]]]],{supportsNegativeValues:!0}),transform:({addDefaults:i,addUtilities:e})=>{i("transform",{"--tw-translate-x":"0","--tw-translate-y":"0","--tw-rotate":"0","--tw-skew-x":"0","--tw-skew-y":"0","--tw-scale-x":"1","--tw-scale-y":"1"}),e({".transform":{"@defaults transform":{},transform:Te},".transform-cpu":{transform:Te},".transform-gpu":{transform:Te.replace("translate(var(--tw-translate-x), var(--tw-translate-y))","translate3d(var(--tw-translate-x), var(--tw-translate-y), 0)")},".transform-none":{transform:"none"}})},animation:({matchUtilities:i,theme:e,config:t})=>{let r=a=>de(t("prefix")+a),n=Object.fromEntries(Object.entries(e("keyframes")??{}).map((([a,s])=>[a,{[`@keyframes ${r(a)}`]:s}])));i({animate:a=>{let s=function(i){return i.split(XS).map((t=>{let r=t.trim(),n={value:r},a=r.split(KS),s=new Set;for(let o of a)!s.has("DIRECTIONS")&&WS.has(o)?(n.direction=o,s.add("DIRECTIONS")):!s.has("PLAY_STATES")&&GS.has(o)?(n.playState=o,s.add("PLAY_STATES")):!s.has("FILL_MODES")&&HS.has(o)?(n.fillMode=o,s.add("FILL_MODES")):s.has("ITERATION_COUNTS")||!YS.has(o)&&!ZS.test(o)?!s.has("TIMING_FUNCTION")&&QS.has(o)||!s.has("TIMING_FUNCTION")&&JS.some((u=>o.startsWith(`${u}(`)))?(n.timingFunction=o,s.add("TIMING_FUNCTION")):!s.has("DURATION")&&ld.test(o)?(n.duration=o,s.add("DURATION")):!s.has("DELAY")&&ld.test(o)?(n.delay=o,s.add("DELAY")):s.has("NAME")?(n.unknown||(n.unknown=[]),n.unknown.push(o)):(n.name=o,s.add("NAME")):(n.iterationCount=o,s.add("ITERATION_COUNTS"));return n}))}(a);return[...s.flatMap((o=>n[o.name])),{animation:s.map((({name:o,value:u})=>void 0===o||void 0===n[o]?u:u.replace(o,r(o)))).join(", ")}]}},{values:e("animation")})},cursor:P("cursor"),touchAction:({addDefaults:i,addUtilities:e})=>{i("touch-action",{"--tw-pan-x":" ","--tw-pan-y":" ","--tw-pinch-zoom":" "});let t="var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)";e({".touch-auto":{"touch-action":"auto"},".touch-none":{"touch-action":"none"},".touch-pan-x":{"@defaults touch-action":{},"--tw-pan-x":"pan-x","touch-action":t},".touch-pan-left":{"@defaults touch-action":{},"--tw-pan-x":"pan-left","touch-action":t},".touch-pan-right":{"@defaults touch-action":{},"--tw-pan-x":"pan-right","touch-action":t},".touch-pan-y":{"@defaults touch-action":{},"--tw-pan-y":"pan-y","touch-action":t},".touch-pan-up":{"@defaults touch-action":{},"--tw-pan-y":"pan-up","touch-action":t},".touch-pan-down":{"@defaults touch-action":{},"--tw-pan-y":"pan-down","touch-action":t},".touch-pinch-zoom":{"@defaults touch-action":{},"--tw-pinch-zoom":"pinch-zoom","touch-action":t},".touch-manipulation":{"touch-action":"manipulation"}})},userSelect:({addUtilities:i})=>{i({".select-none":{"user-select":"none"},".select-text":{"user-select":"text"},".select-all":{"user-select":"all"},".select-auto":{"user-select":"auto"}})},resize:({addUtilities:i})=>{i({".resize-none":{resize:"none"},".resize-y":{resize:"vertical"},".resize-x":{resize:"horizontal"},".resize":{resize:"both"}})},scrollSnapType:({addDefaults:i,addUtilities:e})=>{i("scroll-snap-type",{"--tw-scroll-snap-strictness":"proximity"}),e({".snap-none":{"scroll-snap-type":"none"},".snap-x":{"@defaults scroll-snap-type":{},"scroll-snap-type":"x var(--tw-scroll-snap-strictness)"},".snap-y":{"@defaults scroll-snap-type":{},"scroll-snap-type":"y var(--tw-scroll-snap-strictness)"},".snap-both":{"@defaults scroll-snap-type":{},"scroll-snap-type":"both var(--tw-scroll-snap-strictness)"},".snap-mandatory":{"--tw-scroll-snap-strictness":"mandatory"},".snap-proximity":{"--tw-scroll-snap-strictness":"proximity"}})},scrollSnapAlign:({addUtilities:i})=>{i({".snap-start":{"scroll-snap-align":"start"},".snap-end":{"scroll-snap-align":"end"},".snap-center":{"scroll-snap-align":"center"},".snap-align-none":{"scroll-snap-align":"none"}})},scrollSnapStop:({addUtilities:i})=>{i({".snap-normal":{"scroll-snap-stop":"normal"},".snap-always":{"scroll-snap-stop":"always"}})},scrollMargin:P("scrollMargin",[["scroll-m",["scroll-margin"]],[["scroll-mx",["scroll-margin-left","scroll-margin-right"]],["scroll-my",["scroll-margin-top","scroll-margin-bottom"]]],[["scroll-ms",["scroll-margin-inline-start"]],["scroll-me",["scroll-margin-inline-end"]],["scroll-mt",["scroll-margin-top"]],["scroll-mr",["scroll-margin-right"]],["scroll-mb",["scroll-margin-bottom"]],["scroll-ml",["scroll-margin-left"]]]],{supportsNegativeValues:!0}),scrollPadding:P("scrollPadding",[["scroll-p",["scroll-padding"]],[["scroll-px",["scroll-padding-left","scroll-padding-right"]],["scroll-py",["scroll-padding-top","scroll-padding-bottom"]]],[["scroll-ps",["scroll-padding-inline-start"]],["scroll-pe",["scroll-padding-inline-end"]],["scroll-pt",["scroll-padding-top"]],["scroll-pr",["scroll-padding-right"]],["scroll-pb",["scroll-padding-bottom"]],["scroll-pl",["scroll-padding-left"]]]]),listStylePosition:({addUtilities:i})=>{i({".list-inside":{"list-style-position":"inside"},".list-outside":{"list-style-position":"outside"}})},listStyleType:P("listStyleType",[["list",["listStyleType"]]]),listStyleImage:P("listStyleImage",[["list-image",["listStyleImage"]]]),appearance:({addUtilities:i})=>{i({".appearance-none":{appearance:"none"},".appearance-auto":{appearance:"auto"}})},columns:P("columns",[["columns",["columns"]]]),breakBefore:({addUtilities:i})=>{i({".break-before-auto":{"break-before":"auto"},".break-before-avoid":{"break-before":"avoid"},".break-before-all":{"break-before":"all"},".break-before-avoid-page":{"break-before":"avoid-page"},".break-before-page":{"break-before":"page"},".break-before-left":{"break-before":"left"},".break-before-right":{"break-before":"right"},".break-before-column":{"break-before":"column"}})},breakInside:({addUtilities:i})=>{i({".break-inside-auto":{"break-inside":"auto"},".break-inside-avoid":{"break-inside":"avoid"},".break-inside-avoid-page":{"break-inside":"avoid-page"},".break-inside-avoid-column":{"break-inside":"avoid-column"}})},breakAfter:({addUtilities:i})=>{i({".break-after-auto":{"break-after":"auto"},".break-after-avoid":{"break-after":"avoid"},".break-after-all":{"break-after":"all"},".break-after-avoid-page":{"break-after":"avoid-page"},".break-after-page":{"break-after":"page"},".break-after-left":{"break-after":"left"},".break-after-right":{"break-after":"right"},".break-after-column":{"break-after":"column"}})},gridAutoColumns:P("gridAutoColumns",[["auto-cols",["gridAutoColumns"]]]),gridAutoFlow:({addUtilities:i})=>{i({".grid-flow-row":{gridAutoFlow:"row"},".grid-flow-col":{gridAutoFlow:"column"},".grid-flow-dense":{gridAutoFlow:"dense"},".grid-flow-row-dense":{gridAutoFlow:"row dense"},".grid-flow-col-dense":{gridAutoFlow:"column dense"}})},gridAutoRows:P("gridAutoRows",[["auto-rows",["gridAutoRows"]]]),gridTemplateColumns:P("gridTemplateColumns",[["grid-cols",["gridTemplateColumns"]]]),gridTemplateRows:P("gridTemplateRows",[["grid-rows",["gridTemplateRows"]]]),flexDirection:({addUtilities:i})=>{i({".flex-row":{"flex-direction":"row"},".flex-row-reverse":{"flex-direction":"row-reverse"},".flex-col":{"flex-direction":"column"},".flex-col-reverse":{"flex-direction":"column-reverse"}})},flexWrap:({addUtilities:i})=>{i({".flex-wrap":{"flex-wrap":"wrap"},".flex-wrap-reverse":{"flex-wrap":"wrap-reverse"},".flex-nowrap":{"flex-wrap":"nowrap"}})},placeContent:({addUtilities:i})=>{i({".place-content-center":{"place-content":"center"},".place-content-start":{"place-content":"start"},".place-content-end":{"place-content":"end"},".place-content-between":{"place-content":"space-between"},".place-content-around":{"place-content":"space-around"},".place-content-evenly":{"place-content":"space-evenly"},".place-content-baseline":{"place-content":"baseline"},".place-content-stretch":{"place-content":"stretch"}})},placeItems:({addUtilities:i})=>{i({".place-items-start":{"place-items":"start"},".place-items-end":{"place-items":"end"},".place-items-center":{"place-items":"center"},".place-items-baseline":{"place-items":"baseline"},".place-items-stretch":{"place-items":"stretch"}})},alignContent:({addUtilities:i})=>{i({".content-normal":{"align-content":"normal"},".content-center":{"align-content":"center"},".content-start":{"align-content":"flex-start"},".content-end":{"align-content":"flex-end"},".content-between":{"align-content":"space-between"},".content-around":{"align-content":"space-around"},".content-evenly":{"align-content":"space-evenly"},".content-baseline":{"align-content":"baseline"},".content-stretch":{"align-content":"stretch"}})},alignItems:({addUtilities:i})=>{i({".items-start":{"align-items":"flex-start"},".items-end":{"align-items":"flex-end"},".items-center":{"align-items":"center"},".items-baseline":{"align-items":"baseline"},".items-stretch":{"align-items":"stretch"}})},justifyContent:({addUtilities:i})=>{i({".justify-normal":{"justify-content":"normal"},".justify-start":{"justify-content":"flex-start"},".justify-end":{"justify-content":"flex-end"},".justify-center":{"justify-content":"center"},".justify-between":{"justify-content":"space-between"},".justify-around":{"justify-content":"space-around"},".justify-evenly":{"justify-content":"space-evenly"},".justify-stretch":{"justify-content":"stretch"}})},justifyItems:({addUtilities:i})=>{i({".justify-items-start":{"justify-items":"start"},".justify-items-end":{"justify-items":"end"},".justify-items-center":{"justify-items":"center"},".justify-items-stretch":{"justify-items":"stretch"}})},gap:P("gap",[["gap",["gap"]],[["gap-x",["columnGap"]],["gap-y",["rowGap"]]]]),space:({matchUtilities:i,addUtilities:e,theme:t})=>{i({"space-x":r=>({"& > :not([hidden]) ~ :not([hidden])":{"--tw-space-x-reverse":"0","margin-right":`calc(${r="0"===r?"0px":r} * var(--tw-space-x-reverse))`,"margin-left":`calc(${r} * calc(1 - var(--tw-space-x-reverse)))`}}),"space-y":r=>({"& > :not([hidden]) ~ :not([hidden])":{"--tw-space-y-reverse":"0","margin-top":`calc(${r="0"===r?"0px":r} * calc(1 - var(--tw-space-y-reverse)))`,"margin-bottom":`calc(${r} * var(--tw-space-y-reverse))`}})},{values:t("space"),supportsNegativeValues:!0}),e({".space-y-reverse > :not([hidden]) ~ :not([hidden])":{"--tw-space-y-reverse":"1"},".space-x-reverse > :not([hidden]) ~ :not([hidden])":{"--tw-space-x-reverse":"1"}})},divideWidth:({matchUtilities:i,addUtilities:e,theme:t})=>{i({"divide-x":r=>({"& > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-x-reverse":"0","border-right-width":`calc(${r="0"===r?"0px":r} * var(--tw-divide-x-reverse))`,"border-left-width":`calc(${r} * calc(1 - var(--tw-divide-x-reverse)))`}}),"divide-y":r=>({"& > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-y-reverse":"0","border-top-width":`calc(${r="0"===r?"0px":r} * calc(1 - var(--tw-divide-y-reverse)))`,"border-bottom-width":`calc(${r} * var(--tw-divide-y-reverse))`}})},{values:t("divideWidth"),type:["line-width","length","any"]}),e({".divide-y-reverse > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-y-reverse":"1"},".divide-x-reverse > :not([hidden]) ~ :not([hidden])":{"@defaults border-width":{},"--tw-divide-x-reverse":"1"}})},divideStyle:({addUtilities:i})=>{i({".divide-solid > :not([hidden]) ~ :not([hidden])":{"border-style":"solid"},".divide-dashed > :not([hidden]) ~ :not([hidden])":{"border-style":"dashed"},".divide-dotted > :not([hidden]) ~ :not([hidden])":{"border-style":"dotted"},".divide-double > :not([hidden]) ~ :not([hidden])":{"border-style":"double"},".divide-none > :not([hidden]) ~ :not([hidden])":{"border-style":"none"}})},divideColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({divide:r=>t("divideOpacity")?{"& > :not([hidden]) ~ :not([hidden])":ae({color:r,property:"border-color",variable:"--tw-divide-opacity"})}:{"& > :not([hidden]) ~ :not([hidden])":{"border-color":L(r)}}},{values:(({DEFAULT:r,...n})=>n)(ie(e("divideColor"))),type:["color","any"]})},divideOpacity:({matchUtilities:i,theme:e})=>{i({"divide-opacity":t=>({"& > :not([hidden]) ~ :not([hidden])":{"--tw-divide-opacity":t}})},{values:e("divideOpacity")})},placeSelf:({addUtilities:i})=>{i({".place-self-auto":{"place-self":"auto"},".place-self-start":{"place-self":"start"},".place-self-end":{"place-self":"end"},".place-self-center":{"place-self":"center"},".place-self-stretch":{"place-self":"stretch"}})},alignSelf:({addUtilities:i})=>{i({".self-auto":{"align-self":"auto"},".self-start":{"align-self":"flex-start"},".self-end":{"align-self":"flex-end"},".self-center":{"align-self":"center"},".self-stretch":{"align-self":"stretch"},".self-baseline":{"align-self":"baseline"}})},justifySelf:({addUtilities:i})=>{i({".justify-self-auto":{"justify-self":"auto"},".justify-self-start":{"justify-self":"start"},".justify-self-end":{"justify-self":"end"},".justify-self-center":{"justify-self":"center"},".justify-self-stretch":{"justify-self":"stretch"}})},overflow:({addUtilities:i})=>{i({".overflow-auto":{overflow:"auto"},".overflow-hidden":{overflow:"hidden"},".overflow-clip":{overflow:"clip"},".overflow-visible":{overflow:"visible"},".overflow-scroll":{overflow:"scroll"},".overflow-x-auto":{"overflow-x":"auto"},".overflow-y-auto":{"overflow-y":"auto"},".overflow-x-hidden":{"overflow-x":"hidden"},".overflow-y-hidden":{"overflow-y":"hidden"},".overflow-x-clip":{"overflow-x":"clip"},".overflow-y-clip":{"overflow-y":"clip"},".overflow-x-visible":{"overflow-x":"visible"},".overflow-y-visible":{"overflow-y":"visible"},".overflow-x-scroll":{"overflow-x":"scroll"},".overflow-y-scroll":{"overflow-y":"scroll"}})},overscrollBehavior:({addUtilities:i})=>{i({".overscroll-auto":{"overscroll-behavior":"auto"},".overscroll-contain":{"overscroll-behavior":"contain"},".overscroll-none":{"overscroll-behavior":"none"},".overscroll-y-auto":{"overscroll-behavior-y":"auto"},".overscroll-y-contain":{"overscroll-behavior-y":"contain"},".overscroll-y-none":{"overscroll-behavior-y":"none"},".overscroll-x-auto":{"overscroll-behavior-x":"auto"},".overscroll-x-contain":{"overscroll-behavior-x":"contain"},".overscroll-x-none":{"overscroll-behavior-x":"none"}})},scrollBehavior:({addUtilities:i})=>{i({".scroll-auto":{"scroll-behavior":"auto"},".scroll-smooth":{"scroll-behavior":"smooth"}})},textOverflow:({addUtilities:i})=>{i({".truncate":{overflow:"hidden","text-overflow":"ellipsis","white-space":"nowrap"},".overflow-ellipsis":{"text-overflow":"ellipsis"},".text-ellipsis":{"text-overflow":"ellipsis"},".text-clip":{"text-overflow":"clip"}})},hyphens:({addUtilities:i})=>{i({".hyphens-none":{hyphens:"none"},".hyphens-manual":{hyphens:"manual"},".hyphens-auto":{hyphens:"auto"}})},whitespace:({addUtilities:i})=>{i({".whitespace-normal":{"white-space":"normal"},".whitespace-nowrap":{"white-space":"nowrap"},".whitespace-pre":{"white-space":"pre"},".whitespace-pre-line":{"white-space":"pre-line"},".whitespace-pre-wrap":{"white-space":"pre-wrap"},".whitespace-break-spaces":{"white-space":"break-spaces"}})},textWrap:({addUtilities:i})=>{i({".text-wrap":{"text-wrap":"wrap"},".text-nowrap":{"text-wrap":"nowrap"},".text-balance":{"text-wrap":"balance"},".text-pretty":{"text-wrap":"pretty"}})},wordBreak:({addUtilities:i})=>{i({".break-normal":{"overflow-wrap":"normal","word-break":"normal"},".break-words":{"overflow-wrap":"break-word"},".break-all":{"word-break":"break-all"},".break-keep":{"word-break":"keep-all"}})},borderRadius:P("borderRadius",[["rounded",["border-radius"]],[["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]]],[["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]]]),borderWidth:P("borderWidth",[["border",[["@defaults border-width",{}],"border-width"]],[["border-x",[["@defaults border-width",{}],"border-left-width","border-right-width"]],["border-y",[["@defaults border-width",{}],"border-top-width","border-bottom-width"]]],[["border-s",[["@defaults border-width",{}],"border-inline-start-width"]],["border-e",[["@defaults border-width",{}],"border-inline-end-width"]],["border-t",[["@defaults border-width",{}],"border-top-width"]],["border-r",[["@defaults border-width",{}],"border-right-width"]],["border-b",[["@defaults border-width",{}],"border-bottom-width"]],["border-l",[["@defaults border-width",{}],"border-left-width"]]]],{type:["line-width","length"]}),borderStyle:({addUtilities:i})=>{i({".border-solid":{"border-style":"solid"},".border-dashed":{"border-style":"dashed"},".border-dotted":{"border-style":"dotted"},".border-double":{"border-style":"double"},".border-hidden":{"border-style":"hidden"},".border-none":{"border-style":"none"}})},borderColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({border:r=>t("borderOpacity")?ae({color:r,property:"border-color",variable:"--tw-border-opacity"}):{"border-color":L(r)}},{values:(({DEFAULT:r,...n})=>n)(ie(e("borderColor"))),type:["color","any"]}),i({"border-x":r=>t("borderOpacity")?ae({color:r,property:["border-left-color","border-right-color"],variable:"--tw-border-opacity"}):{"border-left-color":L(r),"border-right-color":L(r)},"border-y":r=>t("borderOpacity")?ae({color:r,property:["border-top-color","border-bottom-color"],variable:"--tw-border-opacity"}):{"border-top-color":L(r),"border-bottom-color":L(r)}},{values:(({DEFAULT:r,...n})=>n)(ie(e("borderColor"))),type:["color","any"]}),i({"border-s":r=>t("borderOpacity")?ae({color:r,property:"border-inline-start-color",variable:"--tw-border-opacity"}):{"border-inline-start-color":L(r)},"border-e":r=>t("borderOpacity")?ae({color:r,property:"border-inline-end-color",variable:"--tw-border-opacity"}):{"border-inline-end-color":L(r)},"border-t":r=>t("borderOpacity")?ae({color:r,property:"border-top-color",variable:"--tw-border-opacity"}):{"border-top-color":L(r)},"border-r":r=>t("borderOpacity")?ae({color:r,property:"border-right-color",variable:"--tw-border-opacity"}):{"border-right-color":L(r)},"border-b":r=>t("borderOpacity")?ae({color:r,property:"border-bottom-color",variable:"--tw-border-opacity"}):{"border-bottom-color":L(r)},"border-l":r=>t("borderOpacity")?ae({color:r,property:"border-left-color",variable:"--tw-border-opacity"}):{"border-left-color":L(r)}},{values:(({DEFAULT:r,...n})=>n)(ie(e("borderColor"))),type:["color","any"]})},borderOpacity:P("borderOpacity",[["border-opacity",["--tw-border-opacity"]]]),backgroundColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({bg:r=>t("backgroundOpacity")?ae({color:r,property:"background-color",variable:"--tw-bg-opacity"}):{"background-color":L(r)}},{values:ie(e("backgroundColor")),type:["color","any"]})},backgroundOpacity:P("backgroundOpacity",[["bg-opacity",["--tw-bg-opacity"]]]),backgroundImage:P("backgroundImage",[["bg",["background-image"]]],{type:["lookup","image","url"]}),gradientColorStops:(()=>{function i(e){return De(e,0,"rgb(255 255 255 / 0)")}return function({matchUtilities:e,theme:t,addDefaults:r}){r("gradient-color-stops",{"--tw-gradient-from-position":" ","--tw-gradient-via-position":" ","--tw-gradient-to-position":" "});let n={values:ie(t("gradientColorStops")),type:["color","any"]},a={values:t("gradientColorStopPositions"),type:["length","percentage"]};e({from:s=>{let o=i(s);return{"@defaults gradient-color-stops":{},"--tw-gradient-from":`${L(s)} var(--tw-gradient-from-position)`,"--tw-gradient-to":`${o} var(--tw-gradient-to-position)`,"--tw-gradient-stops":"var(--tw-gradient-from), var(--tw-gradient-to)"}}},n),e({from:s=>({"--tw-gradient-from-position":s})},a),e({via:s=>({"@defaults gradient-color-stops":{},"--tw-gradient-to":`${i(s)} var(--tw-gradient-to-position)`,"--tw-gradient-stops":`var(--tw-gradient-from), ${L(s)} var(--tw-gradient-via-position), var(--tw-gradient-to)`})},n),e({via:s=>({"--tw-gradient-via-position":s})},a),e({to:s=>({"@defaults gradient-color-stops":{},"--tw-gradient-to":`${L(s)} var(--tw-gradient-to-position)`})},n),e({to:s=>({"--tw-gradient-to-position":s})},a)}})(),boxDecorationBreak:({addUtilities:i})=>{i({".decoration-slice":{"box-decoration-break":"slice"},".decoration-clone":{"box-decoration-break":"clone"},".box-decoration-slice":{"box-decoration-break":"slice"},".box-decoration-clone":{"box-decoration-break":"clone"}})},backgroundSize:P("backgroundSize",[["bg",["background-size"]]],{type:["lookup","length","percentage","size"]}),backgroundAttachment:({addUtilities:i})=>{i({".bg-fixed":{"background-attachment":"fixed"},".bg-local":{"background-attachment":"local"},".bg-scroll":{"background-attachment":"scroll"}})},backgroundClip:({addUtilities:i})=>{i({".bg-clip-border":{"background-clip":"border-box"},".bg-clip-padding":{"background-clip":"padding-box"},".bg-clip-content":{"background-clip":"content-box"},".bg-clip-text":{"background-clip":"text"}})},backgroundPosition:P("backgroundPosition",[["bg",["background-position"]]],{type:["lookup",["position",{preferOnConflict:!0}]]}),backgroundRepeat:({addUtilities:i})=>{i({".bg-repeat":{"background-repeat":"repeat"},".bg-no-repeat":{"background-repeat":"no-repeat"},".bg-repeat-x":{"background-repeat":"repeat-x"},".bg-repeat-y":{"background-repeat":"repeat-y"},".bg-repeat-round":{"background-repeat":"round"},".bg-repeat-space":{"background-repeat":"space"}})},backgroundOrigin:({addUtilities:i})=>{i({".bg-origin-border":{"background-origin":"border-box"},".bg-origin-padding":{"background-origin":"padding-box"},".bg-origin-content":{"background-origin":"content-box"}})},fill:({matchUtilities:i,theme:e})=>{i({fill:t=>({fill:L(t)})},{values:ie(e("fill")),type:["color","any"]})},stroke:({matchUtilities:i,theme:e})=>{i({stroke:t=>({stroke:L(t)})},{values:ie(e("stroke")),type:["color","url","any"]})},strokeWidth:P("strokeWidth",[["stroke",["stroke-width"]]],{type:["length","number","percentage"]}),objectFit:({addUtilities:i})=>{i({".object-contain":{"object-fit":"contain"},".object-cover":{"object-fit":"cover"},".object-fill":{"object-fit":"fill"},".object-none":{"object-fit":"none"},".object-scale-down":{"object-fit":"scale-down"}})},objectPosition:P("objectPosition",[["object",["object-position"]]]),padding:P("padding",[["p",["padding"]],[["px",["padding-left","padding-right"]],["py",["padding-top","padding-bottom"]]],[["ps",["padding-inline-start"]],["pe",["padding-inline-end"]],["pt",["padding-top"]],["pr",["padding-right"]],["pb",["padding-bottom"]],["pl",["padding-left"]]]]),textAlign:({addUtilities:i})=>{i({".text-left":{"text-align":"left"},".text-center":{"text-align":"center"},".text-right":{"text-align":"right"},".text-justify":{"text-align":"justify"},".text-start":{"text-align":"start"},".text-end":{"text-align":"end"}})},textIndent:P("textIndent",[["indent",["text-indent"]]],{supportsNegativeValues:!0}),verticalAlign:({addUtilities:i,matchUtilities:e})=>{i({".align-baseline":{"vertical-align":"baseline"},".align-top":{"vertical-align":"top"},".align-middle":{"vertical-align":"middle"},".align-bottom":{"vertical-align":"bottom"},".align-text-top":{"vertical-align":"text-top"},".align-text-bottom":{"vertical-align":"text-bottom"},".align-sub":{"vertical-align":"sub"},".align-super":{"vertical-align":"super"}}),e({align:t=>({"vertical-align":t})})},fontFamily:({matchUtilities:i,theme:e})=>{i({font:t=>{let[r,n={}]=Array.isArray(t)&&ne(t[1])?t:[t],{fontFeatureSettings:a,fontVariationSettings:s}=n;return{"font-family":Array.isArray(r)?r.join(", "):r,...void 0===a?{}:{"font-feature-settings":a},...void 0===s?{}:{"font-variation-settings":s}}}},{values:e("fontFamily"),type:["lookup","generic-name","family-name"]})},fontSize:({matchUtilities:i,theme:e})=>{i({text:(t,{modifier:r})=>{let[n,a]=Array.isArray(t)?t:[t];if(r)return{"font-size":n,"line-height":r};let{lineHeight:s,letterSpacing:o,fontWeight:u}=ne(a)?a:{lineHeight:a};return{"font-size":n,...void 0===s?{}:{"line-height":s},...void 0===o?{}:{"letter-spacing":o},...void 0===u?{}:{"font-weight":u}}}},{values:e("fontSize"),modifiers:e("lineHeight"),type:["absolute-size","relative-size","length","percentage"]})},fontWeight:P("fontWeight",[["font",["fontWeight"]]],{type:["lookup","number","any"]}),textTransform:({addUtilities:i})=>{i({".uppercase":{"text-transform":"uppercase"},".lowercase":{"text-transform":"lowercase"},".capitalize":{"text-transform":"capitalize"},".normal-case":{"text-transform":"none"}})},fontStyle:({addUtilities:i})=>{i({".italic":{"font-style":"italic"},".not-italic":{"font-style":"normal"}})},fontVariantNumeric:({addDefaults:i,addUtilities:e})=>{let t="var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)";i("font-variant-numeric",{"--tw-ordinal":" ","--tw-slashed-zero":" ","--tw-numeric-figure":" ","--tw-numeric-spacing":" ","--tw-numeric-fraction":" "}),e({".normal-nums":{"font-variant-numeric":"normal"},".ordinal":{"@defaults font-variant-numeric":{},"--tw-ordinal":"ordinal","font-variant-numeric":t},".slashed-zero":{"@defaults font-variant-numeric":{},"--tw-slashed-zero":"slashed-zero","font-variant-numeric":t},".lining-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-figure":"lining-nums","font-variant-numeric":t},".oldstyle-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-figure":"oldstyle-nums","font-variant-numeric":t},".proportional-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-spacing":"proportional-nums","font-variant-numeric":t},".tabular-nums":{"@defaults font-variant-numeric":{},"--tw-numeric-spacing":"tabular-nums","font-variant-numeric":t},".diagonal-fractions":{"@defaults font-variant-numeric":{},"--tw-numeric-fraction":"diagonal-fractions","font-variant-numeric":t},".stacked-fractions":{"@defaults font-variant-numeric":{},"--tw-numeric-fraction":"stacked-fractions","font-variant-numeric":t}})},lineHeight:P("lineHeight",[["leading",["lineHeight"]]]),letterSpacing:P("letterSpacing",[["tracking",["letterSpacing"]]],{supportsNegativeValues:!0}),textColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({text:r=>t("textOpacity")?ae({color:r,property:"color",variable:"--tw-text-opacity"}):{color:L(r)}},{values:ie(e("textColor")),type:["color","any"]})},textOpacity:P("textOpacity",[["text-opacity",["--tw-text-opacity"]]]),textDecoration:({addUtilities:i})=>{i({".underline":{"text-decoration-line":"underline"},".overline":{"text-decoration-line":"overline"},".line-through":{"text-decoration-line":"line-through"},".no-underline":{"text-decoration-line":"none"}})},textDecorationColor:({matchUtilities:i,theme:e})=>{i({decoration:t=>({"text-decoration-color":L(t)})},{values:ie(e("textDecorationColor")),type:["color","any"]})},textDecorationStyle:({addUtilities:i})=>{i({".decoration-solid":{"text-decoration-style":"solid"},".decoration-double":{"text-decoration-style":"double"},".decoration-dotted":{"text-decoration-style":"dotted"},".decoration-dashed":{"text-decoration-style":"dashed"},".decoration-wavy":{"text-decoration-style":"wavy"}})},textDecorationThickness:P("textDecorationThickness",[["decoration",["text-decoration-thickness"]]],{type:["length","percentage"]}),textUnderlineOffset:P("textUnderlineOffset",[["underline-offset",["text-underline-offset"]]],{type:["length","percentage","any"]}),fontSmoothing:({addUtilities:i})=>{i({".antialiased":{"-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale"},".subpixel-antialiased":{"-webkit-font-smoothing":"auto","-moz-osx-font-smoothing":"auto"}})},placeholderColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({placeholder:r=>t("placeholderOpacity")?{"&::placeholder":ae({color:r,property:"color",variable:"--tw-placeholder-opacity"})}:{"&::placeholder":{color:L(r)}}},{values:ie(e("placeholderColor")),type:["color","any"]})},placeholderOpacity:({matchUtilities:i,theme:e})=>{i({"placeholder-opacity":t=>({"&::placeholder":{"--tw-placeholder-opacity":t}})},{values:e("placeholderOpacity")})},caretColor:({matchUtilities:i,theme:e})=>{i({caret:t=>({"caret-color":L(t)})},{values:ie(e("caretColor")),type:["color","any"]})},accentColor:({matchUtilities:i,theme:e})=>{i({accent:t=>({"accent-color":L(t)})},{values:ie(e("accentColor")),type:["color","any"]})},opacity:P("opacity",[["opacity",["opacity"]]]),backgroundBlendMode:({addUtilities:i})=>{i({".bg-blend-normal":{"background-blend-mode":"normal"},".bg-blend-multiply":{"background-blend-mode":"multiply"},".bg-blend-screen":{"background-blend-mode":"screen"},".bg-blend-overlay":{"background-blend-mode":"overlay"},".bg-blend-darken":{"background-blend-mode":"darken"},".bg-blend-lighten":{"background-blend-mode":"lighten"},".bg-blend-color-dodge":{"background-blend-mode":"color-dodge"},".bg-blend-color-burn":{"background-blend-mode":"color-burn"},".bg-blend-hard-light":{"background-blend-mode":"hard-light"},".bg-blend-soft-light":{"background-blend-mode":"soft-light"},".bg-blend-difference":{"background-blend-mode":"difference"},".bg-blend-exclusion":{"background-blend-mode":"exclusion"},".bg-blend-hue":{"background-blend-mode":"hue"},".bg-blend-saturation":{"background-blend-mode":"saturation"},".bg-blend-color":{"background-blend-mode":"color"},".bg-blend-luminosity":{"background-blend-mode":"luminosity"}})},mixBlendMode:({addUtilities:i})=>{i({".mix-blend-normal":{"mix-blend-mode":"normal"},".mix-blend-multiply":{"mix-blend-mode":"multiply"},".mix-blend-screen":{"mix-blend-mode":"screen"},".mix-blend-overlay":{"mix-blend-mode":"overlay"},".mix-blend-darken":{"mix-blend-mode":"darken"},".mix-blend-lighten":{"mix-blend-mode":"lighten"},".mix-blend-color-dodge":{"mix-blend-mode":"color-dodge"},".mix-blend-color-burn":{"mix-blend-mode":"color-burn"},".mix-blend-hard-light":{"mix-blend-mode":"hard-light"},".mix-blend-soft-light":{"mix-blend-mode":"soft-light"},".mix-blend-difference":{"mix-blend-mode":"difference"},".mix-blend-exclusion":{"mix-blend-mode":"exclusion"},".mix-blend-hue":{"mix-blend-mode":"hue"},".mix-blend-saturation":{"mix-blend-mode":"saturation"},".mix-blend-color":{"mix-blend-mode":"color"},".mix-blend-luminosity":{"mix-blend-mode":"luminosity"},".mix-blend-plus-lighter":{"mix-blend-mode":"plus-lighter"}})},boxShadow:(()=>{let i=Ge("boxShadow"),e=["var(--tw-ring-offset-shadow, 0 0 #0000)","var(--tw-ring-shadow, 0 0 #0000)","var(--tw-shadow)"].join(", ");return function({matchUtilities:t,addDefaults:r,theme:n}){r(" box-shadow",{"--tw-ring-offset-shadow":"0 0 #0000","--tw-ring-shadow":"0 0 #0000","--tw-shadow":"0 0 #0000","--tw-shadow-colored":"0 0 #0000"}),t({shadow:a=>{let s=yi(a=i(a));for(let o of s)!o.valid||(o.color="var(--tw-shadow-color)");return{"@defaults box-shadow":{},"--tw-shadow":"none"===a?"0 0 #0000":a,"--tw-shadow-colored":"none"===a?"0 0 #0000":Iu(s),"box-shadow":e}}},{values:n("boxShadow"),type:["shadow"]})}})(),boxShadowColor:({matchUtilities:i,theme:e})=>{i({shadow:t=>({"--tw-shadow-color":L(t),"--tw-shadow":"var(--tw-shadow-colored)"})},{values:ie(e("boxShadowColor")),type:["color","any"]})},outlineStyle:({addUtilities:i})=>{i({".outline-none":{outline:"2px solid transparent","outline-offset":"2px"},".outline":{"outline-style":"solid"},".outline-dashed":{"outline-style":"dashed"},".outline-dotted":{"outline-style":"dotted"},".outline-double":{"outline-style":"double"}})},outlineWidth:P("outlineWidth",[["outline",["outline-width"]]],{type:["length","number","percentage"]}),outlineOffset:P("outlineOffset",[["outline-offset",["outline-offset"]]],{type:["length","number","percentage","any"],supportsNegativeValues:!0}),outlineColor:({matchUtilities:i,theme:e})=>{i({outline:t=>({"outline-color":L(t)})},{values:ie(e("outlineColor")),type:["color","any"]})},ringWidth:({matchUtilities:i,addDefaults:e,addUtilities:t,theme:r,config:n})=>{let a=(()=>{if(Z(n(),"respectDefaultRingColorOpacity"))return r("ringColor.DEFAULT");let s=r("ringOpacity.DEFAULT","0.5");return r("ringColor")?.DEFAULT?De(r("ringColor")?.DEFAULT,s,`rgb(147 197 253 / ${s})`):`rgb(147 197 253 / ${s})`})();e("ring-width",{"--tw-ring-inset":" ","--tw-ring-offset-width":r("ringOffsetWidth.DEFAULT","0px"),"--tw-ring-offset-color":r("ringOffsetColor.DEFAULT","#fff"),"--tw-ring-color":a,"--tw-ring-offset-shadow":"0 0 #0000","--tw-ring-shadow":"0 0 #0000","--tw-shadow":"0 0 #0000","--tw-shadow-colored":"0 0 #0000"}),i({ring:s=>({"@defaults ring-width":{},"--tw-ring-offset-shadow":"var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)","--tw-ring-shadow":`var(--tw-ring-inset) 0 0 0 calc(${s} + var(--tw-ring-offset-width)) var(--tw-ring-color)`,"box-shadow":["var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow, 0 0 #0000)"].join(", ")})},{values:r("ringWidth"),type:"length"}),t({".ring-inset":{"@defaults ring-width":{},"--tw-ring-inset":"inset"}})},ringColor:({matchUtilities:i,theme:e,corePlugins:t})=>{i({ring:r=>t("ringOpacity")?ae({color:r,property:"--tw-ring-color",variable:"--tw-ring-opacity"}):{"--tw-ring-color":L(r)}},{values:Object.fromEntries(Object.entries(ie(e("ringColor"))).filter((([r])=>"DEFAULT"!==r))),type:["color","any"]})},ringOpacity:i=>{let{config:e}=i;return P("ringOpacity",[["ring-opacity",["--tw-ring-opacity"]]],{filterDefault:!Z(e(),"respectDefaultRingColorOpacity")})(i)},ringOffsetWidth:P("ringOffsetWidth",[["ring-offset",["--tw-ring-offset-width"]]],{type:"length"}),ringOffsetColor:({matchUtilities:i,theme:e})=>{i({"ring-offset":t=>({"--tw-ring-offset-color":L(t)})},{values:ie(e("ringOffsetColor")),type:["color","any"]})},blur:({matchUtilities:i,theme:e})=>{i({blur:t=>({"--tw-blur":`blur(${t})`,"@defaults filter":{},filter:Me})},{values:e("blur")})},brightness:({matchUtilities:i,theme:e})=>{i({brightness:t=>({"--tw-brightness":`brightness(${t})`,"@defaults filter":{},filter:Me})},{values:e("brightness")})},contrast:({matchUtilities:i,theme:e})=>{i({contrast:t=>({"--tw-contrast":`contrast(${t})`,"@defaults filter":{},filter:Me})},{values:e("contrast")})},dropShadow:({matchUtilities:i,theme:e})=>{i({"drop-shadow":t=>({"--tw-drop-shadow":Array.isArray(t)?t.map((r=>`drop-shadow(${r})`)).join(" "):`drop-shadow(${t})`,"@defaults filter":{},filter:Me})},{values:e("dropShadow")})},grayscale:({matchUtilities:i,theme:e})=>{i({grayscale:t=>({"--tw-grayscale":`grayscale(${t})`,"@defaults filter":{},filter:Me})},{values:e("grayscale")})},hueRotate:({matchUtilities:i,theme:e})=>{i({"hue-rotate":t=>({"--tw-hue-rotate":`hue-rotate(${t})`,"@defaults filter":{},filter:Me})},{values:e("hueRotate"),supportsNegativeValues:!0})},invert:({matchUtilities:i,theme:e})=>{i({invert:t=>({"--tw-invert":`invert(${t})`,"@defaults filter":{},filter:Me})},{values:e("invert")})},saturate:({matchUtilities:i,theme:e})=>{i({saturate:t=>({"--tw-saturate":`saturate(${t})`,"@defaults filter":{},filter:Me})},{values:e("saturate")})},sepia:({matchUtilities:i,theme:e})=>{i({sepia:t=>({"--tw-sepia":`sepia(${t})`,"@defaults filter":{},filter:Me})},{values:e("sepia")})},filter:({addDefaults:i,addUtilities:e})=>{i("filter",{"--tw-blur":" ","--tw-brightness":" ","--tw-contrast":" ","--tw-grayscale":" ","--tw-hue-rotate":" ","--tw-invert":" ","--tw-saturate":" ","--tw-sepia":" ","--tw-drop-shadow":" "}),e({".filter":{"@defaults filter":{},filter:Me},".filter-none":{filter:"none"}})},backdropBlur:({matchUtilities:i,theme:e})=>{i({"backdrop-blur":t=>({"--tw-backdrop-blur":`blur(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropBlur")})},backdropBrightness:({matchUtilities:i,theme:e})=>{i({"backdrop-brightness":t=>({"--tw-backdrop-brightness":`brightness(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropBrightness")})},backdropContrast:({matchUtilities:i,theme:e})=>{i({"backdrop-contrast":t=>({"--tw-backdrop-contrast":`contrast(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropContrast")})},backdropGrayscale:({matchUtilities:i,theme:e})=>{i({"backdrop-grayscale":t=>({"--tw-backdrop-grayscale":`grayscale(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropGrayscale")})},backdropHueRotate:({matchUtilities:i,theme:e})=>{i({"backdrop-hue-rotate":t=>({"--tw-backdrop-hue-rotate":`hue-rotate(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropHueRotate"),supportsNegativeValues:!0})},backdropInvert:({matchUtilities:i,theme:e})=>{i({"backdrop-invert":t=>({"--tw-backdrop-invert":`invert(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropInvert")})},backdropOpacity:({matchUtilities:i,theme:e})=>{i({"backdrop-opacity":t=>({"--tw-backdrop-opacity":`opacity(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropOpacity")})},backdropSaturate:({matchUtilities:i,theme:e})=>{i({"backdrop-saturate":t=>({"--tw-backdrop-saturate":`saturate(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropSaturate")})},backdropSepia:({matchUtilities:i,theme:e})=>{i({"backdrop-sepia":t=>({"--tw-backdrop-sepia":`sepia(${t})`,"@defaults backdrop-filter":{},"backdrop-filter":Be})},{values:e("backdropSepia")})},backdropFilter:({addDefaults:i,addUtilities:e})=>{i("backdrop-filter",{"--tw-backdrop-blur":" ","--tw-backdrop-brightness":" ","--tw-backdrop-contrast":" ","--tw-backdrop-grayscale":" ","--tw-backdrop-hue-rotate":" ","--tw-backdrop-invert":" ","--tw-backdrop-opacity":" ","--tw-backdrop-saturate":" ","--tw-backdrop-sepia":" "}),e({".backdrop-filter":{"@defaults backdrop-filter":{},"backdrop-filter":Be},".backdrop-filter-none":{"backdrop-filter":"none"}})},transitionProperty:({matchUtilities:i,theme:e})=>{let t=e("transitionTimingFunction.DEFAULT"),r=e("transitionDuration.DEFAULT");i({transition:n=>({"transition-property":n,..."none"===n?{}:{"transition-timing-function":t,"transition-duration":r}})},{values:e("transitionProperty")})},transitionDelay:P("transitionDelay",[["delay",["transitionDelay"]]]),transitionDuration:P("transitionDuration",[["duration",["transitionDuration"]]],{filterDefault:!0}),transitionTimingFunction:P("transitionTimingFunction",[["ease",["transitionTimingFunction"]]],{filterDefault:!0}),willChange:P("willChange",[["will-change",["will-change"]]]),content:P("content",[["content",["--tw-content",["content","var(--tw-content)"]]]]),forcedColorAdjust:({addUtilities:i})=>{i({".forced-color-adjust-auto":{"forced-color-adjust":"auto"},".forced-color-adjust-none":{"forced-color-adjust":"none"}})}}}));function yC(i){if(void 0===i)return!1;if("true"===i||"1"===i)return!0;if("false"===i||"0"===i)return!1;if("*"===i)return!0;let e=i.split(",").map((t=>t.split(":")[0]));return!e.includes("-tailwindcss")&&!!e.includes("tailwindcss")}var Pe,yd,wd,gn,Qa,He,Kr,ot=C((()=>{l(),Ga(),Pe=void 0!==h?{NODE_ENV:"production",DEBUG:yC(h.env.DEBUG),ENGINE:Ya.tailwindcss.engine}:{NODE_ENV:"production",DEBUG:!1,ENGINE:Ya.tailwindcss.engine},yd=new Map,wd=new Map,gn=new Map,Qa=new Map,He=new String("*"),Kr=Symbol("__NONE__")}));function Nt(i){let e=[],t=!1;for(let r=0;r<i.length;r++){let n=i[r];if(":"===n&&!t&&0===e.length)return!1;if(wC.has(n)&&"\\"!==i[r-1]&&(t=!t),!t&&"\\"!==i[r-1])if(bd.has(n))e.push(n);else if(vd.has(n)){let a=vd.get(n);if(e.length<=0||e.pop()!==a)return!1}}return!(e.length>0)}var bd,vd,wC,Ja=C((()=>{l(),bd=new Map([["{","}"],["[","]"],["(",")"]]),vd=new Map(Array.from(bd.entries()).map((([i,e])=>[e,i]))),wC=new Set(['"',"'","`"])}));function Lt(i){let[e]=xd(i);return e.forEach((([t,r])=>t.removeChild(r))),i.nodes.push(...e.map((([,t])=>t))),i}function xd(i){let e=[],t=null;for(let r of i.nodes)if("combinator"===r.type)e=e.filter((([,n])=>Ka(n).includes("jumpable"))),t=null;else if("pseudo"===r.type){bC(r)?(t=r,e.push([i,r,null])):t&&vC(r,t)?e.push([i,r,t]):t=null;for(let n of r.nodes??[]){let[a,s]=xd(n);t=s||t,e.push(...a)}}return[e,t]}function kd(i){return i.value.startsWith("::")||void 0!==Xa[i.value]}function bC(i){return kd(i)&&Ka(i).includes("terminal")}function vC(i,e){return"pseudo"===i.type&&!kd(i)&&Ka(e).includes("actionable")}function Ka(i){return Xa[i.value]??Xa.__default__}var Xa,yn=C((()=>{l(),Xa={"::after":["terminal","jumpable"],"::backdrop":["terminal","jumpable"],"::before":["terminal","jumpable"],"::cue":["terminal"],"::cue-region":["terminal"],"::first-letter":["terminal","jumpable"],"::first-line":["terminal","jumpable"],"::grammar-error":["terminal"],"::marker":["terminal","jumpable"],"::part":["terminal","actionable"],"::placeholder":["terminal","jumpable"],"::selection":["terminal","jumpable"],"::slotted":["terminal"],"::spelling-error":["terminal"],"::target-text":["terminal"],"::file-selector-button":["terminal","actionable"],"::deep":["actionable"],"::v-deep":["actionable"],"::ng-deep":["actionable"],":after":["terminal","jumpable"],":before":["terminal","jumpable"],":first-letter":["terminal","jumpable"],":first-line":["terminal","jumpable"],":where":[],":is":[],":has":[],__default__:["terminal","actionable"]}}));function $t(i,{context:e,candidate:t}){let r=e?.tailwindConfig.prefix??"",n=i.map((s=>{let o=(0,Fe.default)().astSync(s.format);return{...s,ast:s.respectPrefix?Bt(r,o):o}})),a=Fe.default.root({nodes:[Fe.default.selector({nodes:[Fe.default.className({value:de(t)})]})]});for(let{ast:s}of n)[a,s]=kC(a,s),s.walkNesting((o=>o.replaceWith(...a.nodes[0].nodes))),a=s;return a}function Cd(i){let e=[];for(;i.prev()&&"combinator"!==i.prev().type;)i=i.prev();for(;i&&"combinator"!==i.type;)e.push(i),i=i.next();return e}function eo(i,e){let t=!1;i.walk((r=>{if("class"===r.type&&r.value===e)return t=!0,!1})),t||i.remove()}function wn(i,e,{context:t,candidate:r,base:n}){n=n??oe(r,t?.tailwindConfig?.separator??":").pop();let s=(0,Fe.default)().astSync(i);if(s.walkClasses((f=>{f.raws&&f.value.includes(n)&&(f.raws.value=de((0,Sd.default)(f.raws.value)))})),s.each((f=>eo(f,n))),0===s.length)return null;let o=Array.isArray(e)?$t(e,{context:t,candidate:r}):e;if(null===o)return s.toString();let u=Fe.default.comment({value:"/*__simple__*/"}),c=Fe.default.comment({value:"/*__simple__*/"});return s.walkClasses((f=>{if(f.value!==n)return;let d=f.parent,p=o.nodes[0].nodes;if(1===d.nodes.length)return void f.replaceWith(...p);let m=Cd(f);d.insertBefore(m[0],u),d.insertAfter(m[m.length-1],c);for(let x of p)d.insertBefore(m[0],x.clone());f.remove(),m=Cd(u);let w=d.index(u);d.nodes.splice(w,m.length,...function(i){return i.sort(((e,t)=>"tag"===e.type&&"class"===t.type?-1:"class"===e.type&&"tag"===t.type?1:"class"===e.type&&"pseudo"===t.type&&t.value.startsWith("::")?-1:"pseudo"===e.type&&e.value.startsWith("::")&&"class"===t.type?1:i.index(e)-i.index(t))),i}(Fe.default.selector({nodes:m})).nodes),u.remove(),c.remove()})),s.walkPseudos((f=>{f.value===Za&&f.replaceWith(f.nodes)})),s.each((f=>Lt(f))),s.toString()}function kC(i,e){let t=[];return i.walkPseudos((r=>{r.value===Za&&t.push({pseudo:r,value:r.nodes[0].toString()})})),e.walkPseudos((r=>{if(r.value!==Za)return;let n=r.nodes[0].toString(),a=t.find((c=>c.value===n));if(!a)return;let s=[],o=r.next();for(;o&&"combinator"!==o.type;)s.push(o),o=o.next();let u=o;a.pseudo.parent.insertAfter(a.pseudo,Fe.default.selector({nodes:s.map((c=>c.clone()))})),r.remove(),s.forEach((c=>c.remove())),u&&"combinator"===u.type&&u.remove()})),[i,e]}var Fe,Sd,Za,to=C((()=>{l(),Fe=K(Re()),Sd=K(Yi()),Ft(),un(),yn(),St(),Za=":merge"}));function bn(i,e){let t=(0,ro.default)().astSync(i);return t.each((r=>{"pseudo"===r.nodes[0].type&&":is"===r.nodes[0].value&&r.nodes.every((a=>"combinator"!==a.type))||(r.nodes=[ro.default.pseudo({value:":is",nodes:[r.clone()]})]),Lt(r)})),`${e} ${t.toString()}`}var ro,io=C((()=>{l(),ro=K(Re()),yn()}));function no(i){return SC.transformSync(i)}function AC(i,e){if(0===i.length||""===e.tailwindConfig.prefix)return i;for(let t of i){let[r]=t;if(r.options.respectPrefix){let n=V.root({nodes:[t[1].clone()]}),a=t[1].raws.tailwind.classCandidate;n.walkRules((s=>{let o=a.startsWith("-");s.selector=Bt(e.tailwindConfig.prefix,s.selector,o)})),t[1]=n.nodes[0]}}return i}function _C(i,e){if(0===i.length)return i;let t=[];function r(n){return n.parent&&"atrule"===n.parent.type&&"keyframes"===n.parent.name}for(let[n,a]of i){let s=V.root({nodes:[a.clone()]});s.walkRules((o=>{if(r(o))return;let u=(0,vn.default)().astSync(o.selector);u.each((c=>eo(c,e))),Uu(u,(c=>c===e?`!${c}`:c)),o.selector=u.toString(),o.walkDecls((c=>c.important=!0))})),t.push([{...n,important:!0},s.nodes[0]])}return t}function OC(i,e,t){if(0===e.length)return e;let r={modifier:null,value:Kr};{let[n,...a]=oe(i,"/");if(a.length>1&&(n=n+"/"+a.slice(0,-1).join("/"),a=a.slice(-1)),a.length&&!t.variantMap.has(i)&&(i=n,r.modifier=a[0],!Z(t.tailwindConfig,"generalizedModifiers")))return[]}if(i.endsWith("]")&&!i.startsWith("[")){let n=/(.)(-?)\[(.*)\]/g.exec(i);if(n){let[,a,s,o]=n;if("@"===a&&"-"===s)return[];if("@"!==a&&""===s)return[];i=i.replace(`${s}[${o}]`,""),r.value=o}}if(oo(i)&&!t.variantMap.has(i)){let n=t.offsets.recordVariant(i),s=oe(N(i.slice(1,-1)),",");if(s.length>1)return[];if(!s.every(Cn))return[];let o=s.map(((u,c)=>[t.offsets.applyParallelOffset(n,c),Zr(u.trim())]));t.variantMap.set(i,o)}if(t.variantMap.has(i)){let n=oo(i),a=t.variantOptions.get(i)?.[Jr]??{},s=t.variantMap.get(i).slice(),o=[],u=!(n||!1===a.respectPrefix);for(let[c,f]of e){if("user"===c.layer)continue;let d=V.root({nodes:[f.clone()]});for(let[p,m,w]of s){let b=function(){x.raws.neededBackup||(x.raws.neededBackup=!0,x.walkRules((O=>O.raws.originalSelector=O.selector)))},k=function(O){return b(),x.each((I=>{"rule"===I.type&&(I.selectors=I.selectors.map((B=>O({get className(){return no(B)},selector:B}))))})),x},x=(w??d).clone(),y=[],S=m({get container(){return b(),x},separator:t.tailwindConfig.separator,modifySelectors:k,wrap(O){let I=x.nodes;x.removeAll(),O.append(I),x.append(O)},format(O){y.push({format:O,respectPrefix:u})},args:r});if(Array.isArray(S)){for(let[O,I]of S.entries())s.push([t.offsets.applyParallelOffset(p,O),I,x.clone()]);continue}if("string"==typeof S&&y.push({format:S,respectPrefix:u}),null===S)continue;x.raws.neededBackup&&(delete x.raws.neededBackup,x.walkRules((O=>{let I=O.raws.originalSelector;if(!I||(delete O.raws.originalSelector,I===O.selector))return;let B=O.selector,q=(0,vn.default)((X=>{X.walkClasses((le=>{le.value=`${i}${t.tailwindConfig.separator}${le.value}`}))})).processSync(I);y.push({format:B.replace(q,"&"),respectPrefix:u}),O.selector=I}))),x.nodes[0].raws.tailwind={...x.nodes[0].raws.tailwind,parentLayer:c.layer};let _=[{...c,sort:t.offsets.applyVariantOffset(c.sort,p,Object.assign(r,t.variantOptions.get(i))),collectedFormats:(c.collectedFormats??[]).concat(y)},x.nodes[0]];o.push(_)}}return o}return[]}function so(i,e,t={}){return ne(i)||Array.isArray(i)?Array.isArray(i)?so(i[0],e,i[1]):(e.has(i)||e.set(i,Mt(i)),[e.get(i),t]):[[i],t]}function Ad(i){let e=!0;return i.walkDecls((t=>{if(!_d(t.prop,t.value))return e=!1,!1})),e}function _d(i,e){if(function(i){if(!i.includes("://"))return!1;try{let e=new URL(i);return""!==e.scheme&&""!==e.host}catch(e){return!1}}(`${i}:${e}`))return!1;try{return V.parse(`a{${i}:${e}}`).toResult(),!0}catch(t){return!1}}function DC(i,e){let[,t,r]=i.match(/^\[([a-zA-Z0-9-_]+):(\S+)\]$/)??[];if(void 0===r||!function(i){return EC.test(i)}(t)||!Nt(r))return null;let n=N(r,{property:t});return _d(t,n)?[[{sort:e.offsets.arbitraryProperty(),layer:"utilities"},()=>({[Va(i)]:{[t]:n}})]]:null}function*RC(i,e){for(let t of i)t[1].raws.tailwind={...t[1].raws.tailwind,classCandidate:e,preserveSource:t[0].options?.preserveSource??!1},yield t}function*ao(i,e){let t=e.tailwindConfig.separator,[r,...n]=function(i,e){return i===He?[He]:oe(i,e)}(i,t).reverse(),a=!1;r.startsWith("!")&&(a=!0,r=r.slice(1));for(let s of function*(i,e){e.candidateRuleMap.has(i)&&(yield[e.candidateRuleMap.get(i),"DEFAULT"]),yield*function*(o){null!==o&&(yield[o,"DEFAULT"])}(DC(i,e));let t=i,r=!1,n=e.tailwindConfig.prefix,a=n.length,s=t.startsWith(n)||t.startsWith(`-${n}`);"-"===t[a]&&s&&(r=!0,t=n+t.slice(a+1)),r&&e.candidateRuleMap.has(t)&&(yield[e.candidateRuleMap.get(t),"-DEFAULT"]);for(let[o,u]of function*(i){let e=1/0;for(;e>=0;){let t,r=!1;if(e===1/0&&i.endsWith("]")){let s=i.indexOf("[");"-"===i[s-1]?t=s-1:"/"===i[s-1]?(t=s-1,r=!0):t=-1}else e===1/0&&i.includes("/")?(t=i.lastIndexOf("/"),r=!0):t=i.lastIndexOf("-",e);if(t<0)break;let n=i.slice(0,t),a=i.slice(r?t:t+1);e=t-1,""!==n&&"/"!==a&&(yield[n,a])}}(t))e.candidateRuleMap.has(o)&&(yield[e.candidateRuleMap.get(o),r?`-${u}`:u])}(r,e)){let o=[],u=new Map,[c,f]=s,d=1===c.length;for(let[p,m]of c){let w=[];if("function"==typeof m)for(let x of[].concat(m(f,{isOnlyPlugin:d}))){let[y,b]=so(x,e.postCssNodeCache);for(let k of y)w.push([{...p,options:{...p.options,...b}},k])}else if("DEFAULT"===f||"-DEFAULT"===f){let x=m,[y,b]=so(x,e.postCssNodeCache);for(let k of y)w.push([{...p,options:{...p.options,...b}},k])}if(w.length>0){let x=Array.from(fs(p.options?.types??[],f,p.options??{},e.tailwindConfig)).map((([y,b])=>b));x.length>0&&u.set(w,x),o.push(w)}}if(oo(f)){if(o.length>1){let w=function(y){return 1===y.length?y[0]:y.find((b=>{let k=u.get(b);return b.some((([{options:S},_])=>!!Ad(_)&&S.types.some((({type:O,preferOnConflict:I})=>k.includes(O)&&I))))}))},[p,m]=o.reduce(((y,b)=>(b.some((([{options:S}])=>S.types.some((({type:_})=>"any"===_))))?y[0].push(b):y[1].push(b),y)),[[],[]]),x=w(m)??w(p);if(!x){let y=o.map((k=>new Set([...u.get(k)??[]])));for(let k of y)for(let S of k){let _=!1;for(let O of y)k!==O&&O.has(S)&&(O.delete(S),_=!0);_&&k.delete(S)}let b=[];for(let[k,S]of y.entries())for(let _ of S){let O=o[k].map((([,I])=>I)).flat().map((I=>I.toString().split("\n").slice(1,-1).map((B=>B.trim())).map((B=>` ${B}`)).join("\n"))).join("\n\n");b.push(` Use \`${i.replace("[",`[${_}:`)}\` for \`${O.trim()}\``);break}F.warn([`The class \`${i}\` is ambiguous and matches multiple utilities.`,...b,`If this is content and not a class, replace it with \`${i.replace("[","[").replace("]","]")}\` to silence this warning.`]);continue}o=[x]}o=o.map((p=>p.filter((m=>Ad(m[1])))))}o=o.flat(),o=Array.from(RC(o,r)),o=AC(o,e),a&&(o=_C(o,r));for(let p of n)o=OC(p,o,e);for(let p of o)p[1].raws.tailwind={...p[1].raws.tailwind,candidate:i},p=MC(p,{context:e,candidate:i}),null!==p&&(yield p)}}function MC(i,{context:e,candidate:t}){if(!i[0].collectedFormats)return i;let n,r=!0;try{n=$t(i[0].collectedFormats,{context:e,candidate:t})}catch{return null}let a=V.root({nodes:[i[1].clone()]});return a.walkRules((s=>{if(!xn(s))try{let o=wn(s.selector,n,{candidate:t,context:e});if(null===o)return void s.remove();s.selector=o}catch{return r=!1,!1}})),r&&0!==a.nodes.length?(i[1]=a.nodes[0],i):null}function xn(i){return i.parent&&"atrule"===i.parent.type&&"keyframes"===i.parent.name}function kn(i,e,t=!1){let r=[],n=function(i){return!0===i?e=>{xn(e)||e.walkDecls((t=>{"rule"===t.parent.type&&!xn(t.parent)&&(t.important=!0)}))}:"string"==typeof i?e=>{xn(e)||(e.selectors=e.selectors.map((t=>bn(t,i))))}:void 0}(e.tailwindConfig.important);for(let a of i){if(e.notClassCache.has(a))continue;if(e.candidateRuleCache.has(a)){r=r.concat(Array.from(e.candidateRuleCache.get(a)));continue}let s=Array.from(ao(a,e));if(0===s.length){e.notClassCache.add(a);continue}e.classCache.set(a,s);let o=e.candidateRuleCache.get(a)??new Set;e.candidateRuleCache.set(a,o);for(let u of s){let[{sort:c,options:f},d]=u;if(f.respectImportant&&n){let m=V.root({nodes:[d.clone()]});m.walkRules(n),d=m.nodes[0]}let p=[c,t?d.clone():d];o.add(p),e.ruleCache.add(p),r.push(p)}}return r}function oo(i){return i.startsWith("[")&&i.endsWith("]")}var vn,SC,EC,Od,Sn=C((()=>{l(),nt(),vn=K(Re()),za(),kt(),un(),cr(),Oe(),ot(),to(),Ua(),fr(),Xr(),Ja(),St(),ze(),io(),SC=(0,vn.default)((i=>i.first.filter((({type:e})=>"class"===e)).pop().value)),EC=/^[a-z_-]/})),Ed=C((()=>{l(),Od={}}));function Td(i,e){let t=e.toString();if(!t.includes("@tailwind"))return!1;let r=Qa.get(i),n=function(i){try{return Od.createHash("md5").update(i,"utf-8").digest("binary")}catch(e){return""}}(t),a=r!==n;return Qa.set(i,n),a}var Pd=C((()=>{l(),Ed(),ot()}));function An(i){return(i>0n)-(i<0n)}var Dd=C((()=>{l()}));function Id(i,e){let t=0n,r=0n;for(let[n,a]of e)i&n&&(t|=n,r|=a);return i&~t|r}var qd=C((()=>{l()}));function Rd(i){let e=null;for(let t of i)e=e??t,e=e>t?e:t;return e}var lo,Md=C((()=>{l(),Dd(),qd(),lo=class{constructor(){this.offsets={defaults:0n,base:0n,components:0n,utilities:0n,variants:0n,user:0n},this.layerPositions={defaults:0n,base:1n,components:2n,utilities:3n,user:4n,variants:5n},this.reservedVariantBits=0n,this.variantOffsets=new Map}create(e){return{layer:e,parentLayer:e,arbitrary:0n,variants:0n,parallelIndex:0n,index:this.offsets[e]++,options:[]}}arbitraryProperty(){return{...this.create("utilities"),arbitrary:1n}}forVariant(e,t=0){let r=this.variantOffsets.get(e);if(void 0===r)throw new Error(`Cannot find offset for unknown variant ${e}`);return{...this.create("variants"),variants:r<<BigInt(t)}}applyVariantOffset(e,t,r){return r.variant=t.variants,{...e,layer:"variants",parentLayer:"variants"===e.layer?e.parentLayer:e.layer,variants:e.variants|t.variants,options:r.sort?[].concat(r,e.options):e.options,parallelIndex:Rd([e.parallelIndex,t.parallelIndex])}}applyParallelOffset(e,t){return{...e,parallelIndex:BigInt(t)}}recordVariants(e,t){for(let r of e)this.recordVariant(r,t(r))}recordVariant(e,t=1){return this.variantOffsets.set(e,1n<<this.reservedVariantBits),this.reservedVariantBits+=BigInt(t),{...this.create("variants"),variants:this.variantOffsets.get(e)}}compare(e,t){if(e.layer!==t.layer)return this.layerPositions[e.layer]-this.layerPositions[t.layer];if(e.parentLayer!==t.parentLayer)return this.layerPositions[e.parentLayer]-this.layerPositions[t.parentLayer];for(let r of e.options)for(let n of t.options){if(r.id!==n.id||!r.sort||!n.sort)continue;let a=Rd([r.variant,n.variant])??0n,s=~(a|a-1n);if((e.variants&s)!==(t.variants&s))continue;let c=r.sort({value:r.value,modifier:r.modifier},{value:n.value,modifier:n.modifier});if(0!==c)return c}return e.variants!==t.variants?e.variants-t.variants:e.parallelIndex!==t.parallelIndex?e.parallelIndex-t.parallelIndex:e.arbitrary!==t.arbitrary?e.arbitrary-t.arbitrary:e.index-t.index}recalculateVariantOffsets(){let e=Array.from(this.variantOffsets.entries()).filter((([n])=>n.startsWith("["))).sort((([n],[a])=>function(i,e){let t=i.length,r=e.length,n=t<r?t:r;for(let a=0;a<n;a++){let s=i.charCodeAt(a)-e.charCodeAt(a);if(0!==s)return s}return t-r}(n,a))),t=e.map((([,n])=>n)).sort(((n,a)=>An(n-a)));return e.map((([,n],a)=>[n,t[a]])).filter((([n,a])=>n!==a))}remapArbitraryVariantOffsets(e){let t=this.recalculateVariantOffsets();return 0===t.length?e:e.map((r=>{let[n,a]=r;return n={...n,variants:Id(n.variants,t)},[n,a]}))}sort(e){return(e=this.remapArbitraryVariantOffsets(e)).sort((([t],[r])=>An(this.compare(t,r))))}}}));function po(i,e){let t=i.tailwindConfig.prefix;return"function"==typeof t?t(e):t+e}function Fd({type:i="any",...e}){return{...e,types:[].concat(i).map((r=>Array.isArray(r)?{type:r[0],...r[1]}:{type:r,preferOnConflict:!1}))}}function Nd(i){return Array.isArray(i)?i.flatMap((e=>Array.isArray(e)||ne(e)?Mt(e):e)):Nd([i])}function jC(i,e){return(0,uo.default)((r=>{let n=[];return e&&e(r),r.walkClasses((a=>{n.push(a.value)})),n})).transformSync(i)}function zC(i){i.walkPseudos((e=>{":not"===e.value&&e.remove()}))}function _n(i){return Nd(i).flatMap((e=>{let t=new Map,[r,n]=function(i,e={containsNonOnDemandable:!1},t=0){let r=[],n=[];"rule"===i.type?n.push(...i.selectors):"atrule"===i.type&&i.walkRules((a=>n.push(...a.selectors)));for(let a of n){let s=jC(a,zC);0===s.length&&(e.containsNonOnDemandable=!0);for(let o of s)r.push(o)}return 0===t?[e.containsNonOnDemandable||0===r.length,r]:r}(e);return r&&n.unshift(He),n.map((a=>(t.has(e)||t.set(e,e),[a,t.get(e)])))}))}function Cn(i){return i.startsWith("@")||i.includes("&")}function Zr(i){let e=function(i){let e=[],t="",r=0;for(let n=0;n<i.length;n++){let a=i[n];if("\\"===a)t+="\\"+i[++n];else if("{"===a)++r,e.push(t.trim()),t="";else if("}"===a){if(--r<0)throw new Error("Your { and } are unbalanced.");e.push(t.trim()),t=""}else t+=a}return t.length>0&&e.push(t.trim()),e=e.filter((n=>""!==n)),e}(i=i.replace(/\n+/g,"").replace(/\s{1,}/g," ").trim()).map((t=>{if(!t.startsWith("@"))return({format:a})=>a(t);let[,r,n]=/@(\S*)( .+|[({].*)?/g.exec(t);return({wrap:a})=>a(V.atRule({name:r,params:n?.trim()??""}))})).reverse();return t=>{for(let r of e)r(t)}}function UC(i,e,{variantList:t,variantMap:r,offsets:n,classList:a}){function s(p,m){return p?(0,Bd.default)(i,p,m):i}function u(p,m){return p===He?He:m.respectPrefix?e.tailwindConfig.prefix+p:p}let f=0,d={postcss:V,prefix:function(p){return Bt(i.prefix,p)},e:de,config:s,theme:function(p,m,w={}){let x=Ke(p),y=s(["theme",...x],m);return Ge(x[0])(y,w)},corePlugins:p=>Array.isArray(i.corePlugins)?i.corePlugins.includes(p):s(["corePlugins",p],!0),variants:()=>[],addBase(p){for(let[m,w]of _n(p)){let x=u(m,{}),y=n.create("base");e.candidateRuleMap.has(x)||e.candidateRuleMap.set(x,[]),e.candidateRuleMap.get(x).push([{sort:y,layer:"base"},w])}},addDefaults(p,m){let w={[`@defaults ${p}`]:m};for(let[x,y]of _n(w)){let b=u(x,{});e.candidateRuleMap.has(b)||e.candidateRuleMap.set(b,[]),e.candidateRuleMap.get(b).push([{sort:n.create("defaults"),layer:"defaults"},y])}},addComponents(p,m){m=Object.assign({},{preserveSource:!1,respectPrefix:!0,respectImportant:!1},Array.isArray(m)?{}:m);for(let[x,y]of _n(p)){let b=u(x,m);a.add(b),e.candidateRuleMap.has(b)||e.candidateRuleMap.set(b,[]),e.candidateRuleMap.get(b).push([{sort:n.create("components"),layer:"components",options:m},y])}},addUtilities(p,m){m=Object.assign({},{preserveSource:!1,respectPrefix:!0,respectImportant:!0},Array.isArray(m)?{}:m);for(let[x,y]of _n(p)){let b=u(x,m);a.add(b),e.candidateRuleMap.has(b)||e.candidateRuleMap.set(b,[]),e.candidateRuleMap.get(b).push([{sort:n.create("utilities"),layer:"utilities",options:m},y])}},matchUtilities:function(p,m){m=Fd({respectPrefix:!0,respectImportant:!0,modifiers:!1,...m});let x=n.create("utilities");for(let y in p){let S=function(O,{isOnlyPlugin:I}){let[B,q,X]=us(m.types,O,m,i);if(void 0===B)return[];if(!m.types.some((({type:j})=>j===q))){if(!I)return[];F.warn([`Unnecessary typehint \`${q}\` in \`${y}-${O}\`.`,`You can safely update it to \`${y}-${O.replace(q+":","")}\`.`])}if(!Nt(B))return[];let le={get modifier(){return m.modifiers||F.warn(`modifier-used-without-options-for-${y}`,["Your plugin must set `modifiers: true` in its options to support modifiers."]),X}},ce=Z(i,"generalizedModifiers");return[].concat(ce?k(B,le):k(B)).filter(Boolean).map((j=>({[fn(y,O)]:j})))},b=u(y,m),k=p[y];a.add([b,m]);let _=[{sort:x,layer:"utilities",options:m},S];e.candidateRuleMap.has(b)||e.candidateRuleMap.set(b,[]),e.candidateRuleMap.get(b).push(_)}},matchComponents:function(p,m){m=Fd({respectPrefix:!0,respectImportant:!1,modifiers:!1,...m});let x=n.create("components");for(let y in p){let S=function(O,{isOnlyPlugin:I}){let[B,q,X]=us(m.types,O,m,i);if(void 0===B)return[];if(!m.types.some((({type:j})=>j===q))){if(!I)return[];F.warn([`Unnecessary typehint \`${q}\` in \`${y}-${O}\`.`,`You can safely update it to \`${y}-${O.replace(q+":","")}\`.`])}if(!Nt(B))return[];let le={get modifier(){return m.modifiers||F.warn(`modifier-used-without-options-for-${y}`,["Your plugin must set `modifiers: true` in its options to support modifiers."]),X}},ce=Z(i,"generalizedModifiers");return[].concat(ce?k(B,le):k(B)).filter(Boolean).map((j=>({[fn(y,O)]:j})))},b=u(y,m),k=p[y];a.add([b,m]);let _=[{sort:x,layer:"components",options:m},S];e.candidateRuleMap.has(b)||e.candidateRuleMap.set(b,[]),e.candidateRuleMap.get(b).push(_)}},addVariant(p,m,w={}){m=[].concat(m).map((x=>{if("string"!=typeof x)return(y={})=>{let{args:b,modifySelectors:k,container:S,separator:_,wrap:O,format:I}=y,B=x(Object.assign({modifySelectors:k,container:S,separator:_},w.type===fo.MatchVariant&&{args:b,wrap:O,format:I}));if("string"==typeof B&&!Cn(B))throw new Error(`Your custom variant \`${p}\` has an invalid format string. Make sure it's an at-rule or contains a \`&\` placeholder.`);return Array.isArray(B)?B.filter((q=>"string"==typeof q)).map((q=>Zr(q))):B&&"string"==typeof B&&Zr(B)(y)};if(!Cn(x))throw new Error(`Your custom variant \`${p}\` has an invalid format string. Make sure it's an at-rule or contains a \`&\` placeholder.`);return Zr(x)})),function(i,e,{before:t=[]}={}){if((t=[].concat(t)).length<=0)return void i.push(e);let r=i.length-1;for(let n of t){let a=i.indexOf(n);-1!==a&&(r=Math.min(r,a))}i.splice(r,0,e)}(t,p,w),r.set(p,m),e.variantOptions.set(p,w)},matchVariant(p,m,w){let x=w?.id??++f,y="@"===p,b=Z(i,"generalizedModifiers");for(let[S,_]of Object.entries(w?.values??{}))"DEFAULT"!==S&&d.addVariant(y?`${p}${S}`:`${p}-${S}`,(({args:O,container:I})=>m(_,b?{modifier:O?.modifier,container:I}:{container:I})),{...w,value:_,id:x,type:fo.MatchVariant,variantInfo:co.Base});let k="DEFAULT"in(w?.values??{});d.addVariant(p,(({args:S,container:_})=>S?.value!==Kr||k?m(S?.value===Kr?w.values.DEFAULT:S?.value??("string"==typeof S?S:""),b?{modifier:S?.modifier,container:_}:{container:_}):null),{...w,id:x,type:fo.MatchVariant,variantInfo:co.Dynamic})}};return d}function On(i){return ho.has(i)||ho.set(i,new Map),ho.get(i)}function Ld(i,e){let t=!1,r=new Map;for(let n of i){if(!n)continue;let a=gs.parse(n),s=a.hash?a.href.replace(a.hash,""):a.href;s=a.search?s.replace(a.search,""):s;let o=re.statSync(decodeURIComponent(s),{throwIfNoEntry:!1})?.mtimeMs;!o||((!e.has(n)||o>e.get(n))&&(t=!0),r.set(n,o))}return[t,r]}function $d(i){i.walkAtRules((e=>{["responsive","variants"].includes(e.name)&&($d(e),e.before(e.nodes),e.remove())}))}function WC(i){let e=[];return i.each((t=>{"atrule"===t.type&&["responsive","variants"].includes(t.name)&&(t.name="layer",t.params="utilities")})),i.walkAtRules("layer",(t=>{if($d(t),"base"===t.params){for(let r of t.nodes)e.push((function({addBase:n}){n(r,{respectPrefix:!1})}));t.remove()}else if("components"===t.params){for(let r of t.nodes)e.push((function({addComponents:n}){n(r,{respectPrefix:!1,preserveSource:!0})}));t.remove()}else if("utilities"===t.params){for(let r of t.nodes)e.push((function({addUtilities:n}){n(r,{respectPrefix:!1,preserveSource:!0})}));t.remove()}})),e}function jd(i,e){!i.classCache.has(e)||(i.notClassCache.add(e),i.classCache.delete(e),i.applyClassCache.delete(e),i.candidateRuleMap.delete(e),i.candidateRuleCache.delete(e),i.stylesheetCache=null)}function mo(i,e=[],t=V.root()){let r={disposables:[],ruleCache:new Set,candidateRuleCache:new Map,classCache:new Map,applyClassCache:new Map,notClassCache:new Set(i.blocklist??[]),postCssNodeCache:new Map,candidateRuleMap:new Map,tailwindConfig:i,changedContent:e,variantMap:new Map,stylesheetCache:null,variantOptions:new Map,markInvalidUtilityCandidate:a=>jd(r,a),markInvalidUtilityNode:a=>function(i,e){let t=e.raws.tailwind.candidate;if(t){for(let r of i.ruleCache)r[1].raws.tailwind.candidate===t&&i.ruleCache.delete(r);jd(i,t)}}(r,a)},n=function(i,e){let t=Object.entries({...Y,...md}).map((([u,c])=>i.tailwindConfig.corePlugins.includes(u)?c:null)).filter(Boolean),r=i.tailwindConfig.plugins.map((u=>(u.__isOptionsFunction&&(u=u()),"function"==typeof u?u:u.handler))),n=WC(e),a=[Y.childVariant,Y.pseudoElementVariants,Y.pseudoClassVariants,Y.hasVariants,Y.ariaVariants,Y.dataVariants],s=[Y.supportsVariants,Y.reducedMotionVariants,Y.prefersContrastVariants,Y.screenVariants,Y.orientationVariants,Y.directionVariants,Y.darkVariants,Y.forcedColorsVariants,Y.printVariant];return("class"===i.tailwindConfig.darkMode||Array.isArray(i.tailwindConfig.darkMode)&&"class"===i.tailwindConfig.darkMode[0])&&(s=[Y.supportsVariants,Y.reducedMotionVariants,Y.prefersContrastVariants,Y.darkVariants,Y.screenVariants,Y.orientationVariants,Y.directionVariants,Y.forcedColorsVariants,Y.printVariant]),[...t,...a,...r,...s,...n]}(r,t);return function(i,e){let t=[],r=new Map;e.variantMap=r;let n=new lo;e.offsets=n;let a=new Set,s=UC(e.tailwindConfig,e,{variantList:t,variantMap:r,offsets:n,classList:a});for(let f of i)if(Array.isArray(f))for(let d of f)d(s);else f?.(s);n.recordVariants(t,(f=>r.get(f).length));for(let[f,d]of r.entries())e.variantMap.set(f,d.map(((p,m)=>[n.forVariant(f,m),p])));let o=(e.tailwindConfig.safelist??[]).filter(Boolean);if(o.length>0){let f=[];for(let d of o)"string"!=typeof d?d instanceof RegExp?F.warn("root-regex",["Regular expressions in `safelist` work differently in Tailwind CSS v3.0.","Update your `safelist` configuration to eliminate this warning.","https://tailwindcss.com/docs/content-configuration#safelisting-classes"]):f.push(d):e.changedContent.push({content:d,extension:"html"});if(f.length>0){let d=new Map,p=e.tailwindConfig.prefix.length,m=f.some((w=>w.pattern.source.includes("!")));for(let w of a){let x=Array.isArray(w)?(()=>{let[y,b]=w,S=Object.keys(b?.values??{}).map((_=>Qr(y,_)));return b?.supportsNegativeValues&&(S=[...S,...S.map((_=>"-"+_))],S=[...S,...S.map((_=>_.slice(0,p)+"-"+_.slice(p)))]),b.types.some((({type:_})=>"color"===_))&&(S=[...S,...S.flatMap((_=>Object.keys(e.tailwindConfig.theme.opacity).map((O=>`${_}/${O}`))))]),m&&b?.respectImportant&&(S=[...S,...S.map((_=>"!"+_))]),S})():[w];for(let y of x)for(let{pattern:b,variants:k=[]}of f)if(b.lastIndex=0,d.has(b)||d.set(b,0),b.test(y)){d.set(b,d.get(b)+1),e.changedContent.push({content:y,extension:"html"});for(let S of k)e.changedContent.push({content:S+e.tailwindConfig.separator+y,extension:"html"})}}for(let[w,x]of d.entries())0===x&&F.warn([`The safelist pattern \`${w}\` doesn't match any Tailwind CSS classes.`,"Fix this pattern or remove it from your `safelist` configuration.","https://tailwindcss.com/docs/content-configuration#safelisting-classes"])}}let u=[].concat(e.tailwindConfig.darkMode??"media")[1]??"dark",c=[po(e,u),po(e,"group"),po(e,"peer")];e.getClassOrder=function(d){let p=[...d].sort(((y,b)=>y===b?0:y<b?-1:1)),m=new Map(p.map((y=>[y,null]))),w=kn(new Set(p),e,!0);w=e.offsets.sort(w);let x=BigInt(c.length);for(let[,y]of w){let b=y.raws.tailwind.candidate;m.set(b,m.get(b)??x++)}return d.map((y=>{let b=m.get(y)??null,k=c.indexOf(y);return null===b&&-1!==k&&(b=BigInt(k)),[y,b]}))},e.getClassList=function(d={}){let p=[];for(let m of a)if(Array.isArray(m)){let[w,x]=m,y=[],b=Object.keys(x?.modifiers??{});x?.types?.some((({type:_})=>"color"===_))&&b.push(...Object.keys(e.tailwindConfig.theme.opacity??{}));let k={modifiers:b},S=d.includeMetadata&&b.length>0;for(let[_,O]of Object.entries(x?.values??{})){if(null==O)continue;let I=Qr(w,_);if(p.push(S?[I,k]:I),x?.supportsNegativeValues&&Xe(O)){let B=Qr(w,`-${_}`);y.push(S?[B,k]:B)}}p.push(...y)}else p.push(m);return p},e.getVariants=function(){let d=[];for(let[p,m]of e.variantOptions.entries())m.variantInfo!==co.Base&&d.push({name:p,isArbitrary:m.type===Symbol.for("MATCH_VARIANT"),values:Object.keys(m.values??{}),hasDash:"@"!==p,selectors({modifier:w,value:x}={}){let y="__TAILWIND_PLACEHOLDER__",b=V.rule({selector:`.${y}`}),k=V.root({nodes:[b.clone()]}),S=k.toString(),_=(e.variantMap.get(p)??[]).flatMap((([j,ue])=>ue)),O=[];for(let j of _){let ue=[],ai={args:{modifier:w,value:m.values?.[x]??x},separator:e.tailwindConfig.separator,modifySelectors:Ce=>(k.each((Yn=>{"rule"===Yn.type&&(Yn.selectors=Yn.selectors.map((lu=>Ce({get className(){return no(lu)},selector:lu}))))})),k),format(Ce){ue.push(Ce)},wrap(Ce){ue.push(`@${Ce.name} ${Ce.params} { & }`)},container:k},oi=j(ai);if(ue.length>0&&O.push(ue),Array.isArray(oi))for(let Ce of oi)ue=[],Ce(ai),O.push(ue)}let I=[];S!==k.toString()&&(k.walkRules((j=>{let ue=j.selector,ai=(0,uo.default)((oi=>{oi.walkClasses((Ce=>{Ce.value=`${p}${e.tailwindConfig.separator}${Ce.value}`}))})).processSync(ue);I.push(ue.replace(ai,"&").replace(y,"&"))})),k.walkAtRules((j=>{I.push(`@${j.name} (${j.params}) { & }`)})));let q=!(x in(m.values??{})),X=m[Jr]??{},le=!(q||!1===X.respectPrefix);O=O.map((j=>j.map((ue=>({format:ue,respectPrefix:le}))))),I=I.map((j=>({format:j,respectPrefix:le})));let ce={candidate:y,context:e},$e=O.map((j=>wn(`.${y}`,$t(j,ce),ce).replace(`.${y}`,"&").replace("{ & }","").trim()));return I.length>0&&$e.push($t(I,ce).toString().replace(`.${y}`,"&")),$e}});return d}}(n,r),r}var Bd,uo,Jr,fo,co,ho,jt,ei,lt,Xr=C((()=>{l(),je(),ys(),nt(),Bd=K(Ls()),uo=K(Re()),Hr(),za(),un(),kt(),Ft(),Ua(),cr(),gd(),ot(),ot(),pi(),Oe(),fi(),Ja(),Sn(),Pd(),Md(),ze(),to(),Jr=Symbol(),fo={AddVariant:Symbol.for("ADD_VARIANT"),MatchVariant:Symbol.for("MATCH_VARIANT")},co={Base:1,Dynamic:2},ho=new WeakMap,jt=yd,ei=wd,lt=gn}));function go(i){return i.ignore?[]:i.glob?"true"===h.env.ROLLUP_WATCH?[{type:"dependency",file:i.base}]:[{type:"dir-dependency",dir:i.base,glob:i.glob}]:[{type:"dependency",file:i.base}]}var Vd=C((()=>{l()}));function Ud(i,e){return{handler:i,config:e}}var Wd,Gd=C((()=>{l(),Ud.withOptions=function(i,e=(()=>({}))){let t=function(r){return{__options:r,handler:i(r),config:e(r)}};return t.__isOptionsFunction=!0,t.__pluginFunction=i,t.__configFunction=e,t},Wd=Ud})),yo={};Ae(yo,{default:()=>QC});var QC,wo=C((()=>{l(),Gd(),QC=Wd})),Yd=v(((qD,Hd)=>{l();var JC=(wo(),yo).default,XC={overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical"},KC=JC((function({matchUtilities:i,addUtilities:e,theme:t,variants:r}){i({"line-clamp":a=>({...XC,"-webkit-line-clamp":`${a}`})},{values:t("lineClamp")}),e([{".line-clamp-none":{"-webkit-line-clamp":"unset"}}],r("lineClamp"))}),{theme:{lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6"}},variants:{lineClamp:["responsive"]}});Hd.exports=KC}));function bo(i){0===i.content.files.length&&F.warn("content-problems",["The `content` option in your Tailwind CSS configuration is missing or empty.","Configure your content sources or your generated CSS will be missing styles.","https://tailwindcss.com/docs/content-configuration"]);try{let e=Yd();i.plugins.includes(e)&&(F.warn("line-clamp-in-core",["As of Tailwind CSS v3.3, the `@tailwindcss/line-clamp` plugin is now included by default.","Remove it from the `plugins` array in your configuration to eliminate this warning."]),i.plugins=i.plugins.filter((t=>t!==e)))}catch{}return i}var Jd,En,vo,eh,Qd=C((()=>{l(),Oe()})),Xd=C((()=>{l(),Jd=()=>!1})),Kd=C((()=>{l(),En={sync:i=>[].concat(i),generateTasks:i=>[{dynamic:!1,base:".",negative:[],positive:[].concat(i),patterns:[].concat(i)}],escapePath:i=>i}})),Zd=C((()=>{l(),vo=i=>i})),th=C((()=>{l(),eh=()=>""}));var ih=C((()=>{l(),th()}));function nh(i,e){let t=e.content.files;t=t.filter((o=>"string"==typeof o)),t=t.map(vo);let r=En.generateTasks(t),n=[],a=[];for(let o of r)n.push(...o.positive.map((u=>sh(u,!1)))),a.push(...o.negative.map((u=>sh(u,!0))));let s=[...n,...a];return s=function(i,e){let t=[];return i.userConfigPath&&i.tailwindConfig.content.relative&&(t=[ee.dirname(i.userConfigPath)]),e.map((r=>(r.base=ee.resolve(...t,r.base),r)))}(i,s),s=s.flatMap(t2),s=s.map(ZC),s}function sh(i,e){let t={original:i,base:i,ignore:e,pattern:i,glob:null};return Jd(i)&&Object.assign(t,function(i){let e=i,t=eh(i);return"."!==t&&(e=i.substr(t.length),"/"===e.charAt(0)&&(e=e.substr(1))),"./"===e.substr(0,2)&&(e=e.substr(2)),"/"===e.charAt(0)&&(e=e.substr(1)),{base:t,glob:e}}(i)),t}function ZC(i){let e=vo(i.base);return e=En.escapePath(e),i.pattern=i.glob?`${e}/${i.glob}`:e,i.pattern=i.ignore?`!${i.pattern}`:i.pattern,i}function t2(i){let e=[i];try{let t=re.realpathSync(i.base);t!==i.base&&e.push({...i,base:t})}catch{}return e}function ah(i,e,t){let r=i.tailwindConfig.content.files.filter((s=>"string"==typeof s.raw)).map((({raw:s,extension:o="html"})=>({content:s,extension:o}))),[n,a]=function(i,e){let t=i.map((s=>s.pattern)),r=new Map,n=new Set;Pe.DEBUG&&console.time("Finding changed files");let a=En.sync(t,{absolute:!0});for(let s of a){let o=e.get(s)||-1/0,u=re.statSync(s).mtimeMs;u>o&&(n.add(s),r.set(s,u))}return Pe.DEBUG&&console.timeEnd("Finding changed files"),[n,r]}(e,t);for(let s of n){let o=ee.extname(s).slice(1);r.push({file:s,extension:o})}return[r,a]}var oh=C((()=>{l(),je(),gt(),Xd(),Kd(),Zd(),ih(),ot()}));var uh=C((()=>{l()}));function*fh(i,e,t,r=ee.extname(i)){let n=function(i,e){for(let t of e){let r=`${i}${t}`;if(re.existsSync(r)&&re.statSync(r).isFile())return r}for(let t of e){let r=`${i}/index${t}`;if(re.existsSync(r))return r}return null}(ee.resolve(e,i),i2.includes(r)?n2:s2);if(null===n||t.has(n))return;t.add(n),yield n,e=ee.dirname(n),r=ee.extname(n);let a=re.readFileSync(n,"utf-8");for(let s of[...a.matchAll(/import[\s\S]*?['"](.{3,}?)['"]/gi),...a.matchAll(/import[\s\S]*from[\s\S]*?['"](.{3,}?)['"]/gi),...a.matchAll(/require\(['"`](.+)['"`]\)/gi)])!s[1].startsWith(".")||(yield*fh(s[1],e,t,r))}var i2,n2,s2,ch=C((()=>{l(),je(),gt(),i2=[".js",".cjs",".mjs"],n2=["",".js",".cjs",".mjs",".ts",".cts",".mts",".jsx",".tsx"],s2=["",".ts",".cts",".mts",".tsx",".js",".cjs",".mjs",".jsx"]}));function l2(i){let e=ms(i);if(null!==e){let[r,n,a,s]=dh.get(e)||[],o=function(i){return null===i?new Set:new Set(fh(i,ee.dirname(i),new Set))}(e),u=!1,c=new Map;for(let p of o){let m=re.statSync(p).mtimeMs;c.set(p,m),(!s||!s.has(p)||m>s.get(p))&&(u=!0)}if(!u)return[r,e,n,a];for(let p of o)delete fu.cache[p];let f=bo(dr(void 0)),d=ui(f);return dh.set(e,[f,d,o,c]),[f,e,d,o]}let t=dr(i?.config??i??{});return t=bo(t),[t,null,ui(t),[]]}function So(i){return({tailwindDirectives:e,registerDependency:t})=>(r,n)=>{let[a,s,o,u]=l2(i),c=new Set(u);if(e.size>0){c.add(n.opts.from);for(let w of n.messages)"dependency"===w.type&&c.add(w.file)}let[f,,d]=function(i,e,t,r,n,a){let u,s=e.opts.from,o=null!==r;if(Pe.DEBUG&&console.log("Source path:",s),o&&jt.has(s))u=jt.get(s);else if(ei.has(n)){let p=ei.get(n);lt.get(p).add(s),jt.set(s,p),u=p}let c=Td(s,i);if(u){let[p,m]=Ld([...a],On(u));if(!p&&!c)return[u,!1,m]}if(jt.has(s)){let p=jt.get(s);if(lt.has(p)&&(lt.get(p).delete(s),0===lt.get(p).size)){lt.delete(p);for(let[m,w]of ei)w===p&&ei.delete(m);for(let m of p.disposables.splice(0))m(p)}}Pe.DEBUG&&console.log("Setting up new context...");let f=mo(t,[],i);Object.assign(f,{userConfigPath:r});let[,d]=Ld([...a],On(f));return ei.set(n,f),jt.set(s,f),lt.has(f)||lt.set(f,new Set),lt.get(f).add(s),[f,!0,d]}(r,n,a,s,o,c),p=On(f),m=function(i,e){if(ko.has(i))return ko.get(i);let t=nh(i,e);return ko.set(i,t).get(i)}(f,a);if(e.size>0){for(let y of m)for(let b of go(y))t(b);let[w,x]=ah(f,m,p);for(let y of w)f.changedContent.push(y);for(let[y,b]of x.entries())d.set(y,b)}for(let w of u)t({type:"dependency",file:w});for(let[w,x]of d.entries())p.set(w,x);return f}}var ph,dh,ko,hh=C((()=>{l(),je(),ph=K(Qn()),mu(),hs(),sf(),Xr(),Vd(),Qd(),oh(),uh(),ch(),dh=new ph.default({maxSize:100}),ko=new WeakMap}));var mh=C((()=>{l(),Oe()}));function vt(i,e=void 0,t=void 0){return i.map((r=>{let n=r.clone();return void 0!==t&&(n.raws.tailwind={...n.raws.tailwind,...t}),void 0!==e&&gh(n,(a=>{if(!0===a.raws.tailwind?.preserveSource&&a.source)return!1;a.source=e})),n}))}function gh(i,e){!1!==e(i)&&i.each?.((t=>gh(t,e)))}var yh=C((()=>{l()}));function Ao(i){return(i=(i=Array.isArray(i)?i:[i]).map((e=>e instanceof RegExp?e.source:e))).join("")}function ye(i){return new RegExp(Ao(i),"g")}function ut(i){return`(?:${i.map(Ao).join("|")})`}function _o(i){return`(?:${Ao(i)})?`}function bh(i){return i&&u2.test(i)?i.replace(wh,"\\$&"):i||""}var wh,u2,vh=C((()=>{l(),wh=/[\\^$.*+?()[\]{}|]/g,u2=RegExp(wh.source)}));function xh(i){let e=Array.from(function*(i){let e=i.tailwindConfig.separator,t=""!==i.tailwindConfig.prefix?_o(ye([/-?/,bh(i.tailwindConfig.prefix)])):"",r=ut([/\[[^\s:'"`]+:[^\s\[\]]+\]/,/\[[^\s:'"`\]]+:[^\s]+?\[[^\s]+\][^\s]+?\]/,ye([ut([/-?(?:\w+)/,/@(?:\w+)/]),_o(ut([ye([ut([/-(?:\w+-)*\['[^\s]+'\]/,/-(?:\w+-)*\["[^\s]+"\]/,/-(?:\w+-)*\[`[^\s]+`\]/,/-(?:\w+-)*\[(?:[^\s\[\]]+\[[^\s\[\]]+\])*[^\s:\[\]]+\]/]),/(?![{([]])/,/(?:\/[^\s'"`\\><$]*)?/]),ye([ut([/-(?:\w+-)*\['[^\s]+'\]/,/-(?:\w+-)*\["[^\s]+"\]/,/-(?:\w+-)*\[`[^\s]+`\]/,/-(?:\w+-)*\[(?:[^\s\[\]]+\[[^\s\[\]]+\])*[^\s\[\]]+\]/]),/(?![{([]])/,/(?:\/[^\s'"`\\$]*)?/]),/[-\/][^\s'"`\\$={><]*/]))])]),n=[ut([ye([/@\[[^\s"'`]+\](\/[^\s"'`]+)?/,e]),ye([/([^\s"'`\[\\]+-)?\[[^\s"'`]+\]\/\w+/,e]),ye([/([^\s"'`\[\\]+-)?\[[^\s"'`]+\]/,e]),ye([/[^\s"'`\[\\]+/,e])]),ut([ye([/([^\s"'`\[\\]+-)?\[[^\s`]+\]\/\w+/,e]),ye([/([^\s"'`\[\\]+-)?\[[^\s`]+\]/,e]),ye([/[^\s`\[\\]+/,e])])];for(let a of n)yield ye(["((?=((",a,")+))\\2)?",/!?/,t,r]);yield/[^<>"'`\s.(){}[\]#=%$]*[^<>"'`\s.(){}[\]#=%:$]/g}(i));return t=>{let r=[];for(let n of e)for(let a of t.match(n)??[])r.push(d2(a));return r}}function d2(i){if(!i.includes("-["))return i;let e=0,t=[],r=i.matchAll(c2);r=Array.from(r).flatMap((n=>{let[,...a]=n;return a.map(((s,o)=>Object.assign([],n,{index:n.index+o,0:s})))}));for(let n of r){let a=n[0],s=t[t.length-1];if(a===s?t.pop():("'"===a||'"'===a||"`"===a)&&t.push(a),!s){if("["===a){e++;continue}if("]"===a){e--;continue}if(e<0)return i.substring(0,n.index-1);if(0===e&&!p2.test(a))return i.substring(0,n.index)}}return i}var c2,p2,kh=C((()=>{l(),vh(),c2=/([\[\]'"`])([^\[\]'"`])?/g,p2=/[^"'`\s<>\]]+/}));function h2(i,e){let t=i.tailwindConfig.content.extract;return t[e]||t.DEFAULT||Ch[e]||Ch.DEFAULT(i)}function m2(i,e){let t=i.content.transform;return t[e]||t.DEFAULT||Ah[e]||Ah.DEFAULT}function g2(i,e,t,r){ti.has(e)||ti.set(e,new Sh.default({maxSize:25e3}));for(let n of i.split("\n"))if(n=n.trim(),!r.has(n))if(r.add(n),ti.get(e).has(n))for(let a of ti.get(e).get(n))t.add(a);else{let a=e(n).filter((o=>"!*"!==o)),s=new Set(a);for(let o of s)t.add(o);ti.get(e).set(n,s)}}function Oo(i){return async e=>{let t={base:null,components:null,utilities:null,variants:null};if(e.walkAtRules((w=>{"tailwind"===w.name&&Object.keys(t).includes(w.params)&&(t[w.params]=w)})),Object.values(t).every((w=>null===w)))return e;let r=new Set([...i.candidates??[],He]),n=new Set;Ye.DEBUG&&console.time("Reading changed files");{let w=[];for(let y of i.changedContent){let b=m2(i.tailwindConfig,y.extension),k=h2(i,y.extension);w.push([y,{transformer:b,extractor:k}])}let x=500;for(let y=0;y<w.length;y+=x){let b=w.slice(y,y+x);await Promise.all(b.map((async([{file:k,content:S},{transformer:_,extractor:O}])=>{g2(_(S=k?await re.promises.readFile(k,"utf8"):S),O,r,n)})))}}Ye.DEBUG&&console.timeEnd("Reading changed files");let a=i.classCache.size;Ye.DEBUG&&console.time("Generate rules"),Ye.DEBUG&&console.time("Sorting candidates");let s=new Set([...r].sort(((w,x)=>w===x?0:w<x?-1:1)));Ye.DEBUG&&console.timeEnd("Sorting candidates"),kn(s,i),Ye.DEBUG&&console.timeEnd("Generate rules"),Ye.DEBUG&&console.time("Build stylesheet"),(null===i.stylesheetCache||i.classCache.size!==a)&&(i.stylesheetCache=function(i,e){let t=e.offsets.sort(i),r={base:new Set,defaults:new Set,components:new Set,utilities:new Set,variants:new Set};for(let[n,a]of t)r[n.layer].add(a);return r}([...i.ruleCache],i)),Ye.DEBUG&&console.timeEnd("Build stylesheet");let{defaults:o,base:u,components:c,utilities:f,variants:d}=i.stylesheetCache;t.base&&(t.base.before(vt([...u,...o],t.base.source,{layer:"base"})),t.base.remove()),t.components&&(t.components.before(vt([...c],t.components.source,{layer:"components"})),t.components.remove()),t.utilities&&(t.utilities.before(vt([...f],t.utilities.source,{layer:"utilities"})),t.utilities.remove());let p=Array.from(d).filter((w=>{let x=w.raws.tailwind?.parentLayer;return"components"===x?null!==t.components:"utilities"!==x||null!==t.utilities}));t.variants?(t.variants.before(vt(p,t.variants.source,{layer:"variants"})),t.variants.remove()):p.length>0&&e.append(vt(p,e.source,{layer:"variants"})),e.source.end=e.source.end??e.source.start;let m=p.some((w=>"utilities"===w.raws.tailwind?.parentLayer));t.utilities&&0===f.size&&!m&&F.warn("content-problems",["No utility classes were detected in your source files. If this is unexpected, double-check the `content` option in your Tailwind CSS configuration.","https://tailwindcss.com/docs/content-configuration"]),Ye.DEBUG&&(console.log("Potential classes: ",r.size),console.log("Active contexts: ",gn.size)),i.changedContent=[],e.walkAtRules("layer",(w=>{Object.keys(t).includes(w.params)&&w.remove()}))}}var Sh,Ye,Ch,Ah,ti,_h=C((()=>{l(),je(),Sh=K(Qn()),ot(),Sn(),Oe(),yh(),kh(),Ye=Pe,Ch={DEFAULT:xh},Ah={DEFAULT:i=>i,svelte:i=>i.replace(/(?:^|\s)class:/g," ")},ti=new WeakMap}));function Pn(i){let e=new Map;V.root({nodes:[i.clone()]}).walkRules((a=>{(0,Tn.default)((s=>{s.walkClasses((o=>{let u=o.parent.toString(),c=e.get(u);c||e.set(u,c=new Set),c.add(o.value)}))})).processSync(a.selector)}));let r=Array.from(e.values(),(a=>Array.from(a))),n=r.flat();return Object.assign(n,{groups:r})}function Eo(i){return w2.astSync(i)}function Oh(i,e){let t=new Set;for(let r of i)t.add(r.split(e).pop());return Array.from(t)}function Eh(i,e){let t=i.tailwindConfig.prefix;return"function"==typeof t?t(e):t+e}function*Th(i){for(yield i;i.parent;)yield i.parent,i=i.parent}function b2(i,e={}){let t=i.nodes;i.nodes=[];let r=i.clone(e);return i.nodes=t,r}function x2(i,e){let t=new Map;return i.walkRules((r=>{for(let s of Th(r))if(void 0!==s.raws.tailwind?.layer)return;let n=function(i){for(let e of Th(i))if(i!==e){if("root"===e.type)break;i=b2(e,{nodes:[i]})}return i}(r),a=e.offsets.create("user");for(let s of Pn(r)){let o=t.get(s)||[];t.set(s,o),o.push([{layer:"user",sort:a,important:!1},n])}})),t}function k2(i,e){for(let t of i){if(e.notClassCache.has(t)||e.applyClassCache.has(t))continue;if(e.classCache.has(t)){e.applyClassCache.set(t,e.classCache.get(t).map((([n,a])=>[n,a.clone()])));continue}let r=Array.from(ao(t,e));0!==r.length?e.applyClassCache.set(t,r):e.notClassCache.add(t)}return e.applyClassCache}function Ph(i){let e=i.split(/[\s\t\n]+/g);return"!important"===e[e.length-1]?[e.slice(0,-1),!0]:[e,!1]}function Dh(i,e,t){let r=new Set,n=[];if(i.walkAtRules("apply",(u=>{let[c]=Ph(u.params);for(let f of c)r.add(f);n.push(u)})),0===n.length)return;let a=function(i){return{get:e=>i.flatMap((t=>t.get(e)||[])),has:e=>i.some((t=>t.has(e)))}}([t,k2(r,e)]);function s(u,c,f){let d=Eo(u),p=Eo(c),w=Eo(`.${de(f)}`).nodes[0].nodes[0];return d.each((x=>{let y=new Set;p.each((b=>{let k=!1;(b=b.clone()).walkClasses((S=>{S.value===w.value&&(k||(S.replaceWith(...x.nodes.map((_=>_.clone()))),y.add(b),k=!0))}))}));for(let b of y){let k=[[]];for(let S of b.nodes)"combinator"===S.type?(k.push(S),k.push([])):k[k.length-1].push(S);b.nodes=[];for(let S of k)Array.isArray(S)&&S.sort(((_,O)=>"tag"===_.type&&"class"===O.type?-1:"class"===_.type&&"tag"===O.type?1:"class"===_.type&&"pseudo"===O.type&&O.value.startsWith("::")?-1:"pseudo"===_.type&&_.value.startsWith("::")&&"class"===O.type?1:0)),b.nodes=b.nodes.concat(S)}x.replaceWith(...y)})),d.toString()}let o=new Map;for(let u of n){let[c]=o.get(u.parent)||[[],u.source];o.set(u.parent,[c,u.source]);let[f,d]=Ph(u.params);if("atrule"===u.parent.type){if("screen"===u.parent.name){let p=u.parent.params;throw u.error(`@apply is not supported within nested at-rules like @screen. We suggest you write this as @apply ${f.map((m=>`${p}:${m}`)).join(" ")} instead.`)}throw u.error(`@apply is not supported within nested at-rules like @${u.parent.name}. You can fix this by un-nesting @${u.parent.name}.`)}for(let p of f){if([Eh(e,"group"),Eh(e,"peer")].includes(p))throw u.error(`@apply should not be used with the '${p}' utility`);if(!a.has(p))throw u.error(`The \`${p}\` class does not exist. If \`${p}\` is a custom class, make sure it is defined within a \`@layer\` directive.`);let m=a.get(p);c.push([p,d,m])}}for(let[u,[c,f]]of o){let d=[];for(let[m,w,x]of c){let y=[m,...Oh([m],e.tailwindConfig.separator)];for(let[b,k]of x){let S=Pn(u),_=Pn(k);if(_=_.groups.filter((q=>q.some((X=>y.includes(X))))).flat(),_=_.concat(Oh(_,e.tailwindConfig.separator)),S.some((q=>_.includes(q))))throw k.error(`You cannot \`@apply\` the \`${m}\` utility here because it creates a circular dependency.`);let I=V.root({nodes:[k.clone()]});I.walk((q=>{q.source=f})),("atrule"!==k.type||"atrule"===k.type&&"keyframes"!==k.name)&&I.walkRules((q=>{if(!Pn(q).some((j=>j===m)))return void q.remove();let X="string"==typeof e.tailwindConfig.important?e.tailwindConfig.important:null,ce=void 0!==u.raws.tailwind&&X&&0===u.selector.indexOf(X)?u.selector.slice(X.length):u.selector;""===ce&&(ce=u.selector),q.selector=s(ce,q.selector,m),X&&ce!==u.selector&&(q.selector=bn(q.selector,X)),q.walkDecls((j=>{j.important=b.important||w}));let $e=(0,Tn.default)().astSync(q.selector);$e.each((j=>Lt(j))),q.selector=$e.toString()})),I.nodes[0]&&d.push([b.sort,I.nodes[0]])}}let p=e.offsets.sort(d).map((m=>m[1]));u.after(p)}for(let u of n)u.parent.nodes.length>1?u.remove():u.parent.remove();Dh(i,e,t)}function To(i){return e=>{let t=function(i){let e=null;return{get:t=>(e=e||i(),e.get(t)),has:t=>(e=e||i(),e.has(t))}}((()=>x2(e,i)));Dh(e,i,t)}}var Tn,w2,Ih=C((()=>{l(),nt(),Tn=K(Re()),Sn(),Ft(),io(),yn(),w2=(0,Tn.default)()})),qh=v(((P6,Dn)=>{l(),function(){"use strict";function i(r,n,a){if(!r)return null;i.caseSensitive||(r=r.toLowerCase());var u,s=null===i.threshold?null:i.threshold*r.length,o=i.thresholdAbsolute;u=null!==s&&null!==o?Math.min(s,o):null!==s?s:null!==o?o:null;var c,f,p,m,w=n.length;for(m=0;m<w;m++)if(f=n[m],a&&(f=f[a]),f&&(p=t(r,i.caseSensitive?f:f.toLowerCase(),u),(null===u||p<u)&&(u=p,c=a&&i.returnWinningObject?n[m]:f,i.returnFirstMatch)))return c;return c||i.nullResultValue}i.threshold=.4,i.thresholdAbsolute=20,i.caseSensitive=!1,i.nullResultValue=null,i.returnWinningObject=null,i.returnFirstMatch=!1,void 0!==Dn&&Dn.exports?Dn.exports=i:window.didYouMean=i;var e=Math.pow(2,32)-1;function t(r,n,a){a=a||0===a?a:e;var s=r.length,o=n.length;if(0===s)return Math.min(a+1,o);if(0===o)return Math.min(a+1,s);if(Math.abs(s-o)>a)return a+1;var c,f,d,p,m,u=[];for(c=0;c<=o;c++)u[c]=[c];for(f=0;f<=s;f++)u[0][f]=f;for(c=1;c<=o;c++){for(d=e,p=1,c>a&&(p=c-a),(m=o+1)>a+c&&(m=a+c),f=1;f<=s;f++)f<p||f>m?u[c][f]=a+1:n.charAt(c-1)===r.charAt(f-1)?u[c][f]=u[c-1][f-1]:u[c][f]=Math.min(u[c-1][f-1]+1,Math.min(u[c][f-1]+1,u[c-1][f]+1)),u[c][f]<d&&(d=u[c][f]);if(d>a)return a+1}return u[o][s]}}()})),Mh=v(((D6,Rh)=>{l();var Po="(".charCodeAt(0),Do=")".charCodeAt(0),In="'".charCodeAt(0),Io='"'.charCodeAt(0),qo="\\".charCodeAt(0),zt="/".charCodeAt(0),Ro=",".charCodeAt(0),Mo=":".charCodeAt(0),qn="*".charCodeAt(0),A2="u".charCodeAt(0),_2="U".charCodeAt(0),O2="+".charCodeAt(0),E2=/^[a-f0-9?-]+$/i;Rh.exports=function(i){for(var r,n,a,s,o,u,c,f,y,e=[],t=i,d=0,p=t.charCodeAt(d),m=t.length,w=[{nodes:e}],x=0,b="",k="",S="";d<m;)if(p<=32){r=d;do{r+=1,p=t.charCodeAt(r)}while(p<=32);s=t.slice(d,r),a=e[e.length-1],p===Do&&x?S=s:a&&"div"===a.type?(a.after=s,a.sourceEndIndex+=s.length):p===Ro||p===Mo||p===zt&&t.charCodeAt(r+1)!==qn&&(!y||(y&&y.type,0))?k=s:e.push({type:"space",sourceIndex:d,sourceEndIndex:r,value:s}),d=r}else if(p===In||p===Io){r=d,s={type:"string",sourceIndex:d,quote:n=p===In?"'":'"'};do{if(o=!1,~(r=t.indexOf(n,r+1)))for(u=r;t.charCodeAt(u-1)===qo;)u-=1,o=!o;else r=(t+=n).length-1,s.unclosed=!0}while(o);s.value=t.slice(d+1,r),s.sourceEndIndex=s.unclosed?r:r+1,e.push(s),d=r+1,p=t.charCodeAt(d)}else if(p===zt&&t.charCodeAt(d+1)===qn)s={type:"comment",sourceIndex:d,sourceEndIndex:(r=t.indexOf("*/",d))+2},-1===r&&(s.unclosed=!0,r=t.length,s.sourceEndIndex=r),s.value=t.slice(d+2,r),e.push(s),d=r+2,p=t.charCodeAt(d);else if(p!==zt&&p!==qn||!y||"function"!==y.type)if(p===zt||p===Ro||p===Mo)s=t[d],e.push({type:"div",sourceIndex:d-k.length,sourceEndIndex:d+s.length,value:s,before:k,after:""}),k="",d+=1,p=t.charCodeAt(d);else if(Po===p){r=d;do{r+=1,p=t.charCodeAt(r)}while(p<=32);if(f=d,s={type:"function",sourceIndex:d-b.length,value:b,before:t.slice(f+1,r)},d=r,"url"===b&&p!==In&&p!==Io){r-=1;do{if(o=!1,~(r=t.indexOf(")",r+1)))for(u=r;t.charCodeAt(u-1)===qo;)u-=1,o=!o;else r=(t+=")").length-1,s.unclosed=!0}while(o);c=r;do{c-=1,p=t.charCodeAt(c)}while(p<=32);f<c?(s.nodes=d!==c+1?[{type:"word",sourceIndex:d,sourceEndIndex:c+1,value:t.slice(d,c+1)}]:[],s.unclosed&&c+1!==r?(s.after="",s.nodes.push({type:"space",sourceIndex:c+1,sourceEndIndex:r,value:t.slice(c+1,r)})):(s.after=t.slice(c+1,r),s.sourceEndIndex=r)):(s.after="",s.nodes=[]),d=r+1,s.sourceEndIndex=s.unclosed?r:d,p=t.charCodeAt(d),e.push(s)}else x+=1,s.after="",s.sourceEndIndex=d+1,e.push(s),w.push(s),e=s.nodes=[],y=s;b=""}else if(Do===p&&x)d+=1,p=t.charCodeAt(d),y.after=S,y.sourceEndIndex+=S.length,S="",x-=1,w[w.length-1].sourceEndIndex=d,w.pop(),e=(y=w[x]).nodes;else{r=d;do{p===qo&&(r+=1),r+=1,p=t.charCodeAt(r)}while(r<m&&!(p<=32||p===In||p===Io||p===Ro||p===Mo||p===zt||p===Po||p===qn&&y&&"function"===y.type||p===zt&&"function"===y.type||p===Do&&x));s=t.slice(d,r),Po===p?b=s:A2!==s.charCodeAt(0)&&_2!==s.charCodeAt(0)||O2!==s.charCodeAt(1)||!E2.test(s.slice(2))?e.push({type:"word",sourceIndex:d,sourceEndIndex:r,value:s}):e.push({type:"unicode-range",sourceIndex:d,sourceEndIndex:r,value:s}),d=r}else s=t[d],e.push({type:"word",sourceIndex:d-k.length,sourceEndIndex:d+s.length,value:s}),d+=1,p=t.charCodeAt(d);for(d=w.length-1;d;d-=1)w[d].unclosed=!0,w[d].sourceEndIndex=t.length;return w[0].nodes}})),Fh=v(((I6,Bh)=>{l(),Bh.exports=function i(e,t,r){var n,a,s,o;for(n=0,a=e.length;n<a;n+=1)s=e[n],r||(o=t(s,n,e)),!1!==o&&"function"===s.type&&Array.isArray(s.nodes)&&i(s.nodes,t,r),r&&t(s,n,e)}})),jh=v(((q6,$h)=>{function Nh(i,e){var n,a,t=i.type,r=i.value;return e&&void 0!==(a=e(i))?a:"word"===t||"space"===t?r:"string"===t?(n=i.quote||"")+r+(i.unclosed?"":n):"comment"===t?"/*"+r+(i.unclosed?"":"*/"):"div"===t?(i.before||"")+r+(i.after||""):Array.isArray(i.nodes)?(n=Lh(i.nodes,e),"function"!==t?n:r+"("+(i.before||"")+n+(i.after||"")+(i.unclosed?"":")")):r}function Lh(i,e){var t,r;if(Array.isArray(i)){for(t="",r=i.length-1;~r;r-=1)t=Nh(i[r],e)+t;return t}return Nh(i,e)}l(),$h.exports=Lh})),Vh=v(((R6,zh)=>{l();var Rn="-".charCodeAt(0),Mn="+".charCodeAt(0),Bo=".".charCodeAt(0),T2="e".charCodeAt(0),P2="E".charCodeAt(0);zh.exports=function(i){var r,n,a,e=0,t=i.length;if(0===t||!function(i){var t,e=i.charCodeAt(0);if(e===Mn||e===Rn){if((t=i.charCodeAt(1))>=48&&t<=57)return!0;var r=i.charCodeAt(2);return t===Bo&&r>=48&&r<=57}return e===Bo?(t=i.charCodeAt(1))>=48&&t<=57:e>=48&&e<=57}(i))return!1;for(((r=i.charCodeAt(e))===Mn||r===Rn)&&e++;e<t&&!((r=i.charCodeAt(e))<48||r>57);)e+=1;if(r=i.charCodeAt(e),n=i.charCodeAt(e+1),r===Bo&&n>=48&&n<=57)for(e+=2;e<t&&!((r=i.charCodeAt(e))<48||r>57);)e+=1;if(r=i.charCodeAt(e),n=i.charCodeAt(e+1),a=i.charCodeAt(e+2),(r===T2||r===P2)&&(n>=48&&n<=57||(n===Mn||n===Rn)&&a>=48&&a<=57))for(e+=n===Mn||n===Rn?3:2;e<t&&!((r=i.charCodeAt(e))<48||r>57);)e+=1;return{number:i.slice(0,e),unit:i.slice(e)}}})),Hh=v(((M6,Gh)=>{l();var I2=Mh(),Uh=Fh(),Wh=jh();function ft(i){return this instanceof ft?(this.nodes=I2(i),this):new ft(i)}ft.prototype.toString=function(){return Array.isArray(this.nodes)?Wh(this.nodes):""},ft.prototype.walk=function(i,e){return Uh(this.nodes,i,e),this},ft.unit=Vh(),ft.walk=Uh,ft.stringify=Wh,Gh.exports=ft}));function No(i){return"object"==typeof i&&null!==i}function Vt(i){return"string"==typeof i?i:i.reduce(((e,t,r)=>t.includes(".")?`${e}[${t}]`:0===r?t:`${e}.${t}`),"")}function Qh(i){return i.map((e=>`'${e}'`)).join(", ")}function Jh(i){return Qh(Object.keys(i))}function Lo(i,e,t,r={}){let n=Array.isArray(e)?Vt(e):e.replace(/^['"]+|['"]+$/g,""),a=Array.isArray(e)?e:Ke(n),s=(0,ri.default)(i.theme,a,t);if(void 0===s){let u=`'${n}' does not exist in your theme config.`,c=a.slice(0,-1),f=(0,ri.default)(i.theme,c);if(No(f)){let d=Object.keys(f).filter((m=>Lo(i,[...c,m]).isValid)),p=(0,Yh.default)(a[a.length-1],d);p?u+=` Did you mean '${Vt([...c,p])}'?`:d.length>0&&(u+=` '${Vt(c)}' has the following valid keys: ${Qh(d)}`)}else{let d=function(i,e){let t=Ke(e);do{if(t.pop(),void 0!==(0,ri.default)(i,t))break}while(t.length);return t.length?t:void 0}(i.theme,n);if(d){let p=(0,ri.default)(i.theme,d);No(p)?u+=` '${Vt(d)}' has the following keys: ${Jh(p)}`:u+=` '${Vt(d)}' is not an object.`}else u+=` Your theme has the following top-level keys: ${Jh(i.theme)}`}return{isValid:!1,error:u}}if(!("string"==typeof s||"number"==typeof s||"function"==typeof s||s instanceof String||s instanceof Number||Array.isArray(s))){let u=`'${n}' was found but does not resolve to a string.`;if(No(s)){let c=Object.keys(s).filter((f=>Lo(i,[...a,f]).isValid));c.length&&(u+=` Did you mean something like '${Vt([...a,c[0]])}'?`)}return{isValid:!1,error:u}}let[o]=a;return{isValid:!0,value:Ge(o)(s,r)}}function Xh(i,e,t){if("function"===e.type&&void 0!==t[e.value]){let r=function(i,e,t){e=e.map((n=>Xh(i,n,t)));let r=[""];for(let n of e)"div"===n.type&&","===n.value?r.push(""):r[r.length-1]+=Fo.default.stringify(n);return r}(i,e.nodes,t);e.type="word",e.value=t[e.value](i,...r)}return e}function Kh(i){let e=i.tailwindConfig,t={theme:(r,n,...a)=>{let{isValid:s,value:o,error:u,alpha:c}=function(i,e,t){let r=Array.from(function*(i){let t,e=(i=i.replace(/^['"]+|['"]+$/g,"")).match(/^([^\s]+)(?![^\[]*\])(?:\s*\/\s*([^\/\s]+))$/);yield[i,void 0],e&&(i=e[1],t=e[2],yield[i,t])}(e)).map((([n,a])=>Object.assign(Lo(i,n,t,{opacityValue:a}),{resolvedPath:n,alpha:a})));return r.find((n=>n.isValid))??r[0]}(e,n,a.length?a:void 0);if(!s){let p=r.parent,m=p?.raws.tailwind?.candidate;if(p&&void 0!==m)return i.markInvalidUtilityNode(p),p.remove(),void F.warn("invalid-theme-key-in-class",[`The utility \`${m}\` contains an invalid theme value and was not generated.`]);throw r.error(u)}let f=Ct(o);return(void 0!==c||void 0!==f&&"function"==typeof f)&&(void 0===c&&(c=1),o=De(f,c,f)),o},screen:(r,n)=>{n=n.replace(/^['"]+/g,"").replace(/['"]+$/g,"");let s=at(e.theme.screens).find((({name:o})=>o===n));if(!s)throw r.error(`The '${n}' screen does not exist in your theme.`);return st(s)}};return r=>{r.walk((n=>{let a=B2[n.type];void 0!==a&&(n[a]=function(i,e,t){return Object.keys(t).some((n=>e.includes(`${n}(`)))?(0,Fo.default)(e).walk((n=>{Xh(i,n,t)})).toString():e}(n,n[a],t))}))}}var ri,Yh,Fo,B2,Zh=C((()=>{l(),ri=K(Ls()),Yh=K(qh()),Hr(),Fo=K(Hh()),hn(),cn(),pi(),or(),cr(),Oe(),B2={atrule:"params",decl:"value"}}));var tm=C((()=>{l(),hn(),cn()}));function j2(i){return $o.has(i)||$o.set(i,$2.transformSync(i)),$o.get(i)}var Bn,rm,$2,$o,im=C((()=>{l(),nt(),Bn=K(Re()),ze(),rm={id:i=>Bn.default.attribute({attribute:"id",operator:"=",value:i.value,quoteMark:'"'})},$2=(0,Bn.default)((i=>i.map((e=>function(i){let e=i.filter((o=>"pseudo"!==o.type||o.nodes.length>0||o.value.startsWith("::")||[":before",":after",":first-line",":first-letter"].includes(o.value))).reverse(),t=new Set(["tag","class","id","attribute"]),r=e.findIndex((o=>t.has(o.type)));if(-1===r)return e.reverse().join("").trim();let n=e[r],a=rm[n.type]?rm[n.type](n):n;e=e.slice(0,r);let s=e.findIndex((o=>"combinator"===o.type&&">"===o.value));return-1!==s&&(e.splice(0,s),e.unshift(Bn.default.universal())),[a,...e.reverse()].join("").trim()}(e.split((r=>"combinator"===r.type&&" "===r.value)).pop()))))),$o=new Map}));function zo(){function i(e){let t=null;e.each((r=>{if(!z2.has(r.type))return void(t=null);if(null===t)return void(t=r);let n=nm[r.type];"atrule"===r.type&&"font-face"===r.name?t=r:n.every((a=>(r[a]??"").replace(/\s+/g," ")===(t[a]??"").replace(/\s+/g," ")))?(r.nodes&&t.append(r.nodes),r.remove()):t=r})),e.each((r=>{"atrule"===r.type&&i(r)}))}return e=>{i(e)}}var nm,z2,sm=C((()=>{l(),nm={atrule:["name","params"],rule:["selector"]},z2=new Set(Object.keys(nm))}));function U2(i){let e=/^-?\d*.?\d+([\w%]+)?$/g.exec(i);return e?e[1]??V2:null}var V2,am=C((()=>{l(),V2=Symbol("unitless-number")}));function Fn(){return i=>{!function(i){if(!i.walkAtRules)return;let e=new Set;if(i.walkAtRules("apply",(t=>{e.add(t.parent)})),0!==e.size)for(let t of e){let r=[],n=[];for(let a of t.nodes)"atrule"===a.type&&"apply"===a.name?(n.length>0&&(r.push(n),n=[]),r.push([a])):n.push(a);if(n.length>0&&r.push(n),1!==r.length){for(let a of[...r].reverse()){let s=t.clone({nodes:[]});s.append(a),t.after(s)}t.remove()}}}(i)}}var om=C((()=>{l()}));var um=C((()=>{l()}));function Nn(i){return async function(e,t){let{tailwindDirectives:r,applyDirectives:n}=function(i){let e=new Set,t=new Set,r=new Set;if(i.walkAtRules((n=>{"apply"===n.name&&r.add(n),"import"===n.name&&('"tailwindcss/base"'===n.params||"'tailwindcss/base'"===n.params?(n.name="tailwind",n.params="base"):'"tailwindcss/components"'===n.params||"'tailwindcss/components'"===n.params?(n.name="tailwind",n.params="components"):'"tailwindcss/utilities"'===n.params||"'tailwindcss/utilities'"===n.params?(n.name="tailwind",n.params="utilities"):('"tailwindcss/screens"'===n.params||"'tailwindcss/screens'"===n.params||'"tailwindcss/variants"'===n.params||"'tailwindcss/variants'"===n.params)&&(n.name="tailwind",n.params="variants")),"tailwind"===n.name&&("screens"===n.params&&(n.params="variants"),e.add(n.params)),["layer","responsive","variants"].includes(n.name)&&(["responsive","variants"].includes(n.name)&&F.warn(`${n.name}-at-rule-deprecated`,[`The \`@${n.name}\` directive has been deprecated in Tailwind CSS v3.0.`,"Use `@layer utilities` or `@layer components` instead.","https://tailwindcss.com/docs/upgrade-guide#replace-variants-with-layer"]),t.add(n))})),!e.has("base")||!e.has("components")||!e.has("utilities"))for(let n of t)if("layer"===n.name&&["base","components","utilities"].includes(n.params)){if(!e.has(n.params))throw n.error(`\`@layer ${n.params}\` is used but no matching \`@tailwind ${n.params}\` directive is present.`)}else if("responsive"===n.name){if(!e.has("utilities"))throw n.error("`@responsive` is used but `@tailwind utilities` is missing.")}else if("variants"===n.name&&!e.has("utilities"))throw n.error("`@variants` is used but `@tailwind utilities` is missing.");return{tailwindDirectives:e,applyDirectives:r}}(e);((e,t)=>{let r=!1;e.walkAtRules("tailwind",(n=>!r&&(!n.parent||function(i){return"root"===i.type}(n.parent)||function(i){return"atrule"===i.type&&"layer"===i.name}(n.parent)?void 0:(r=!0,n.warn(t,["Nested @tailwind rules were detected, but are not supported.","Consider using a prefix to scope Tailwind's classes: https://tailwindcss.com/docs/configuration#prefix","Alternatively, use the important selector strategy: https://tailwindcss.com/docs/configuration#selector-strategy"].join("\n")),!1)))),e.walkRules((n=>{if(r)return!1;n.walkRules((a=>(r=!0,a.warn(t,["Nested CSS was detected, but CSS nesting has not been configured correctly.","Please enable a CSS nesting plugin *before* Tailwind in your configuration.","See how here: https://tailwindcss.com/docs/using-with-preprocessors#nesting"].join("\n")),!1)))}))})(e,t),Fn()(e,t);let a=i({tailwindDirectives:r,applyDirectives:n,registerDependency(s){t.messages.push({plugin:"tailwindcss",parent:t.opts.from,...s})},createContext:(s,o)=>mo(s,o,e)})(e,t);if("-"===a.tailwindConfig.separator)throw new Error("The '-' character cannot be used as a custom separator in JIT mode due to parsing ambiguity. Please use another character like '_' instead.");(function(i){if(void 0===h.env.JEST_WORKER_ID&&Au(i).length>0){let e=Au(i).map((t=>_e.yellow(t))).join(", ");F.warn("experimental-flags-enabled",[`You have enabled experimental features: ${e}`,"Experimental features in Tailwind CSS are not covered by semver, may introduce breaking changes, and can change at any time."])}})(a.tailwindConfig),await Oo(a)(e,t),Fn()(e,t),To(a)(e,t),Kh(a)(e,t),function({tailwindConfig:{theme:i}}){return function(e){e.walkAtRules("screen",(t=>{let r=t.params,a=at(i.screens).find((({name:s})=>s===r));if(!a)throw t.error(`No \`${r}\` screen found.`);t.name="media",t.params=st(a)}))}}(a)(e,t),function({tailwindConfig:i}){return e=>{let t=new Map,r=new Set;if(e.walkAtRules("defaults",(n=>{if(n.nodes&&n.nodes.length>0)return void r.add(n);let a=n.params;t.has(a)||t.set(a,new Set),t.get(a).add(n.parent),n.remove()})),Z(i,"optimizeUniversalDefaults"))for(let n of r){let a=new Map,s=t.get(n.params)??[];for(let o of s)for(let u of j2(o.selector)){let c=u.includes(":-")||u.includes("::-")?u:"__DEFAULT__",f=a.get(c)??new Set;a.set(c,f),f.add(u)}if(Z(i,"optimizeUniversalDefaults")){if(0===a.size){n.remove();continue}for(let[,o]of a){let u=V.rule({source:n.source});u.selectors=[...o],u.append(n.nodes.map((c=>c.clone()))),n.before(u)}}n.remove()}else if(r.size){let n=V.rule({selectors:["*","::before","::after"]});for(let s of r)n.append(s.nodes),n.parent||s.before(n),n.source||(n.source=s.source),s.remove();let a=n.clone({selectors:["::backdrop"]});n.after(a)}}}(a)(e,t),zo()(e,t),(i=>{i.walkRules((e=>{let t=new Map,r=new Set([]),n=new Map;e.walkDecls((a=>{if(a.parent===e){if(t.has(a.prop)){if(t.get(a.prop).value===a.value)return r.add(t.get(a.prop)),void t.set(a.prop,a);n.has(a.prop)||n.set(a.prop,new Set),n.get(a.prop).add(t.get(a.prop)),n.get(a.prop).add(a)}t.set(a.prop,a)}}));for(let a of r)a.remove();for(let a of n.values()){let s=new Map;for(let o of a){let u=U2(o.value);null!==u&&(s.has(u)||s.set(u,new Set),s.get(u).add(o))}for(let o of s.values()){let u=Array.from(o).slice(0,-1);for(let c of u)c.remove()}}}))})(e)}}var fm=C((()=>{l(),mh(),_h(),Ih(),Zh(),tm(),im(),sm(),am(),om(),um(),Xr(),ze()}));var pm=C((()=>{l(),je(),gt()})),dm=v(((vI,Uo)=>{l(),hh(),fm(),ot(),pm(),Uo.exports=function(e){return{postcssPlugin:"tailwindcss",plugins:[Pe.DEBUG&&function(t){return console.log("\n"),console.time("JIT TOTAL"),t},async function(t,r){e=function(i,e){let t=null,r=null;return i.walkAtRules("config",(n=>{if(r=n.source?.input.file??e.opts.from??null,null===r)throw n.error("The `@config` directive cannot be used without setting `from` in your PostCSS config.");if(t)throw n.error("Only one `@config` directive is allowed per file.");let a=n.params.match(/(['"])(.*?)\1/);if(!a)throw n.error("A path is required when using the `@config` directive.");let s=a[2];if(ee.isAbsolute(s))throw n.error("The `@config` directive cannot be used with an absolute path.");if(t=ee.resolve(ee.dirname(r),s),!re.existsSync(t))throw n.error(`The config file at "${s}" does not exist. Make sure the path is correct and the file exists.`);n.remove()})),t||null}(t,r)??e;let n=So(e);if("document"!==t.type)await Nn(n)(t,r);else{let a=t.nodes.filter((s=>"root"===s.type));for(let s of a)"root"===s.type&&await Nn(n)(s,r)}},!1,Pe.DEBUG&&function(t){return console.timeEnd("JIT TOTAL"),console.log("\n"),t}].filter(Boolean)}},Uo.exports.postcss=!0})),mm=v(((xI,hm)=>{l(),hm.exports=dm()})),Wo=v(((kI,gm)=>{l(),gm.exports=()=>["and_chr 114","and_uc 15.5","chrome 114","chrome 113","chrome 109","edge 114","firefox 114","ios_saf 16.5","ios_saf 16.4","ios_saf 16.3","ios_saf 16.1","opera 99","safari 16.5","samsung 21"]})),Ln={};function Q2(){return{status:"cr",title:"CSS Feature Queries",stats:{ie:{6:"n",7:"n",8:"n",9:"n",10:"n",11:"n",5.5:"n"},edge:{12:"y",13:"y",14:"y",15:"y",16:"y",17:"y",18:"y",79:"y",80:"y",81:"y",83:"y",84:"y",85:"y",86:"y",87:"y",88:"y",89:"y",90:"y",91:"y",92:"y",93:"y",94:"y",95:"y",96:"y",97:"y",98:"y",99:"y",100:"y",101:"y",102:"y",103:"y",104:"y",105:"y",106:"y",107:"y",108:"y",109:"y",110:"y",111:"y",112:"y",113:"y",114:"y"},firefox:{2:"n",3:"n",4:"n",5:"n",6:"n",7:"n",8:"n",9:"n",10:"n",11:"n",12:"n",13:"n",14:"n",15:"n",16:"n",17:"n",18:"n",19:"n",20:"n",21:"n",22:"y",23:"y",24:"y",25:"y",26:"y",27:"y",28:"y",29:"y",30:"y",31:"y",32:"y",33:"y",34:"y",35:"y",36:"y",37:"y",38:"y",39:"y",40:"y",41:"y",42:"y",43:"y",44:"y",45:"y",46:"y",47:"y",48:"y",49:"y",50:"y",51:"y",52:"y",53:"y",54:"y",55:"y",56:"y",57:"y",58:"y",59:"y",60:"y",61:"y",62:"y",63:"y",64:"y",65:"y",66:"y",67:"y",68:"y",69:"y",70:"y",71:"y",72:"y",73:"y",74:"y",75:"y",76:"y",77:"y",78:"y",79:"y",80:"y",81:"y",82:"y",83:"y",84:"y",85:"y",86:"y",87:"y",88:"y",89:"y",90:"y",91:"y",92:"y",93:"y",94:"y",95:"y",96:"y",97:"y",98:"y",99:"y",100:"y",101:"y",102:"y",103:"y",104:"y",105:"y",106:"y",107:"y",108:"y",109:"y",110:"y",111:"y",112:"y",113:"y",114:"y",115:"y",116:"y",117:"y",3.5:"n",3.6:"n"},chrome:{4:"n",5:"n",6:"n",7:"n",8:"n",9:"n",10:"n",11:"n",12:"n",13:"n",14:"n",15:"n",16:"n",17:"n",18:"n",19:"n",20:"n",21:"n",22:"n",23:"n",24:"n",25:"n",26:"n",27:"n",28:"y",29:"y",30:"y",31:"y",32:"y",33:"y",34:"y",35:"y",36:"y",37:"y",38:"y",39:"y",40:"y",41:"y",42:"y",43:"y",44:"y",45:"y",46:"y",47:"y",48:"y",49:"y",50:"y",51:"y",52:"y",53:"y",54:"y",55:"y",56:"y",57:"y",58:"y",59:"y",60:"y",61:"y",62:"y",63:"y",64:"y",65:"y",66:"y",67:"y",68:"y",69:"y",70:"y",71:"y",72:"y",73:"y",74:"y",75:"y",76:"y",77:"y",78:"y",79:"y",80:"y",81:"y",83:"y",84:"y",85:"y",86:"y",87:"y",88:"y",89:"y",90:"y",91:"y",92:"y",93:"y",94:"y",95:"y",96:"y",97:"y",98:"y",99:"y",100:"y",101:"y",102:"y",103:"y",104:"y",105:"y",106:"y",107:"y",108:"y",109:"y",110:"y",111:"y",112:"y",113:"y",114:"y",115:"y",116:"y",117:"y"},safari:{4:"n",5:"n",6:"n",7:"n",8:"n",9:"y",10:"y",11:"y",12:"y",13:"y",14:"y",15:"y",17:"y",9.1:"y",10.1:"y",11.1:"y",12.1:"y",13.1:"y",14.1:"y",15.1:"y","15.2-15.3":"y",15.4:"y",15.5:"y",15.6:"y","16.0":"y",16.1:"y",16.2:"y",16.3:"y",16.4:"y",16.5:"y",16.6:"y",TP:"y",3.1:"n",3.2:"n",5.1:"n",6.1:"n",7.1:"n"},opera:{9:"n",11:"n",12:"n",15:"y",16:"y",17:"y",18:"y",19:"y",20:"y",21:"y",22:"y",23:"y",24:"y",25:"y",26:"y",27:"y",28:"y",29:"y",30:"y",31:"y",32:"y",33:"y",34:"y",35:"y",36:"y",37:"y",38:"y",39:"y",40:"y",41:"y",42:"y",43:"y",44:"y",45:"y",46:"y",47:"y",48:"y",49:"y",50:"y",51:"y",52:"y",53:"y",54:"y",55:"y",56:"y",57:"y",58:"y",60:"y",62:"y",63:"y",64:"y",65:"y",66:"y",67:"y",68:"y",69:"y",70:"y",71:"y",72:"y",73:"y",74:"y",75:"y",76:"y",77:"y",78:"y",79:"y",80:"y",81:"y",82:"y",83:"y",84:"y",85:"y",86:"y",87:"y",88:"y",89:"y",90:"y",91:"y",92:"y",93:"y",94:"y",95:"y",96:"y",97:"y",98:"y",99:"y",100:"y",12.1:"y","9.5-9.6":"n","10.0-10.1":"n",10.5:"n",10.6:"n",11.1:"n",11.5:"n",11.6:"n"},ios_saf:{8:"n",17:"y","9.0-9.2":"y",9.3:"y","10.0-10.2":"y",10.3:"y","11.0-11.2":"y","11.3-11.4":"y","12.0-12.1":"y","12.2-12.5":"y","13.0-13.1":"y",13.2:"y",13.3:"y","13.4-13.7":"y","14.0-14.4":"y","14.5-14.8":"y","15.0-15.1":"y","15.2-15.3":"y",15.4:"y",15.5:"y",15.6:"y","16.0":"y",16.1:"y",16.2:"y",16.3:"y",16.4:"y",16.5:"y",16.6:"y",3.2:"n","4.0-4.1":"n","4.2-4.3":"n","5.0-5.1":"n","6.0-6.1":"n","7.0-7.1":"n","8.1-8.4":"n"},op_mini:{all:"y"},android:{3:"n",4:"n",114:"y",4.4:"y","4.4.3-4.4.4":"y",2.1:"n",2.2:"n",2.3:"n",4.1:"n","4.2-4.3":"n"},bb:{7:"n",10:"n"},op_mob:{10:"n",11:"n",12:"n",73:"y",11.1:"n",11.5:"n",12.1:"n"},and_chr:{114:"y"},and_ff:{115:"y"},ie_mob:{10:"n",11:"n"},and_uc:{15.5:"y"},samsung:{4:"y",20:"y",21:"y","5.0-5.4":"y","6.2-6.4":"y","7.2-7.4":"y",8.2:"y",9.2:"y",10.1:"y","11.1-11.2":"y","12.0":"y","13.0":"y","14.0":"y","15.0":"y","16.0":"y","17.0":"y","18.0":"y","19.0":"y"},and_qq:{13.1:"y"},baidu:{13.18:"y"},kaios:{2.5:"y","3.0-3.1":"y"}}}}Ae(Ln,{agents:()=>Y2,feature:()=>Q2});var Y2,$n=C((()=>{l(),Y2={ie:{prefix:"ms"},edge:{prefix:"webkit",prefix_exceptions:{12:"ms",13:"ms",14:"ms",15:"ms",16:"ms",17:"ms",18:"ms"}},firefox:{prefix:"moz"},chrome:{prefix:"webkit"},safari:{prefix:"webkit"},opera:{prefix:"webkit",prefix_exceptions:{9:"o",11:"o",12:"o","9.5-9.6":"o","10.0-10.1":"o",10.5:"o",10.6:"o",11.1:"o",11.5:"o",11.6:"o",12.1:"o"}},ios_saf:{prefix:"webkit"},op_mini:{prefix:"o"},android:{prefix:"webkit"},bb:{prefix:"webkit"},op_mob:{prefix:"o",prefix_exceptions:{73:"webkit"}},and_chr:{prefix:"webkit"},and_ff:{prefix:"moz"},ie_mob:{prefix:"ms"},and_uc:{prefix:"webkit",prefix_exceptions:{15.5:"webkit"}},samsung:{prefix:"webkit"},and_qq:{prefix:"webkit"},baidu:{prefix:"webkit"},kaios:{prefix:"moz"}}})),ym=v((()=>{l()})),fe=v(((AI,ct)=>{l();var{list:Go}=ge();ct.exports.error=function(i){let e=new Error(i);throw e.autoprefixer=!0,e},ct.exports.uniq=function(i){return[...new Set(i)]},ct.exports.removeNote=function(i){return i.includes(" ")?i.split(" ")[0]:i},ct.exports.escapeRegexp=function(i){return i.replace(/[$()*+-.?[\\\]^{|}]/g,"\\$&")},ct.exports.regexp=function(i,e=!0){return e&&(i=this.escapeRegexp(i)),new RegExp(`(^|[\\s,(])(${i}($|[\\s(,]))`,"gi")},ct.exports.editList=function(i,e){let t=Go.comma(i),r=e(t,[]);if(t===r)return i;let n=i.match(/,\s*/);return n=n?n[0]:", ",r.join(n)},ct.exports.splitSelector=function(i){return Go.comma(i).map((e=>Go.space(e).map((t=>t.split(/(?=\.|#)/g)))))}})),pt=v(((_I,vm)=>{l();var J2=Wo(),wm=($n(),Ln).agents,X2=fe();vm.exports=class{static prefixes(){if(this.prefixesCache)return this.prefixesCache;this.prefixesCache=[];for(let e in wm)this.prefixesCache.push(`-${wm[e].prefix}-`);return this.prefixesCache=X2.uniq(this.prefixesCache).sort(((e,t)=>t.length-e.length)),this.prefixesCache}static withPrefix(e){return this.prefixesRegexp||(this.prefixesRegexp=new RegExp(this.prefixes().join("|"))),this.prefixesRegexp.test(e)}constructor(e,t,r,n){this.data=e,this.options=r||{},this.browserslistOpts=n||{},this.selected=this.parse(t)}parse(e){let t={};for(let r in this.browserslistOpts)t[r]=this.browserslistOpts[r];return t.path=this.options.from,J2(e,t)}prefix(e){let[t,r]=e.split(" "),n=this.data[t],a=n.prefix_exceptions&&n.prefix_exceptions[r];return a||(a=n.prefix),`-${a}-`}isSelected(e){return this.selected.includes(e)}}})),ii=v(((OI,xm)=>{l(),xm.exports={prefix(i){let e=i.match(/^(-\w+-)/);return e?e[0]:""},unprefixed:i=>i.replace(/^-\w+-/,"")}})),Ut=v(((EI,Sm)=>{l();var K2=pt(),km=ii(),Z2=fe();function Ho(i,e){let t=new i.constructor;for(let r of Object.keys(i||{})){let n=i[r];"parent"===r&&"object"==typeof n?e&&(t[r]=e):"source"===r||null===r?t[r]=n:Array.isArray(n)?t[r]=n.map((a=>Ho(a,t))):"_autoprefixerPrefix"!==r&&"_autoprefixerValues"!==r&&"proxyCache"!==r&&("object"==typeof n&&null!==n&&(n=Ho(n,t)),t[r]=n)}return t}var jn=class{static hack(e){return this.hacks||(this.hacks={}),e.names.map((t=>(this.hacks[t]=e,this.hacks[t])))}static load(e,t,r){let n=this.hacks&&this.hacks[e];return n?new n(e,t,r):new this(e,t,r)}static clone(e,t){let r=Ho(e);for(let n in t)r[n]=t[n];return r}constructor(e,t,r){this.prefixes=t,this.name=e,this.all=r}parentPrefix(e){let t;return t=void 0!==e._autoprefixerPrefix?e._autoprefixerPrefix:"decl"===e.type&&"-"===e.prop[0]?km.prefix(e.prop):"root"!==e.type&&("rule"===e.type&&e.selector.includes(":-")&&/:(-\w+-)/.test(e.selector)?e.selector.match(/:(-\w+-)/)[1]:"atrule"===e.type&&"-"===e.name[0]?km.prefix(e.name):this.parentPrefix(e.parent)),K2.prefixes().includes(t)||(t=!1),e._autoprefixerPrefix=t,e._autoprefixerPrefix}process(e,t){if(!this.check(e))return;let r=this.parentPrefix(e),n=this.prefixes.filter((s=>!r||r===Z2.removeNote(s))),a=[];for(let s of n)this.add(e,s,a.concat([s]),t)&&a.push(s);return a}clone(e,t){return jn.clone(e,t)}};Sm.exports=jn})),R=v(((TI,_m)=>{l();var eA=Ut(),tA=pt(),Cm=fe();_m.exports=class extends eA{check(){return!0}prefixed(e,t){return t+e}normalize(e){return e}otherPrefixes(e,t){for(let r of tA.prefixes())if(r!==t&&e.includes(r))return!0;return!1}set(e,t){return e.prop=this.prefixed(e.prop,t),e}needCascade(e){return e._autoprefixerCascade||(e._autoprefixerCascade=!1!==this.all.options.cascade&&e.raw("before").includes("\n")),e._autoprefixerCascade}maxPrefixed(e,t){if(t._autoprefixerMax)return t._autoprefixerMax;let r=0;for(let n of e)n=Cm.removeNote(n),n.length>r&&(r=n.length);return t._autoprefixerMax=r,t._autoprefixerMax}calcBefore(e,t,r=""){let a=this.maxPrefixed(e,t)-Cm.removeNote(r).length,s=t.raw("before");return a>0&&(s+=Array(a).fill(" ").join("")),s}restoreBefore(e){let t=e.raw("before").split("\n"),r=t[t.length-1];this.all.group(e).up((n=>{let a=n.raw("before").split("\n"),s=a[a.length-1];s.length<r.length&&(r=s)})),t[t.length-1]=r,e.raws.before=t.join("\n")}insert(e,t,r){let n=this.set(this.clone(e),t);if(n&&!e.parent.some((s=>s.prop===n.prop&&s.value===n.value)))return this.needCascade(e)&&(n.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,n)}isAlready(e,t){let r=this.all.group(e).up((n=>n.prop===t));return r||(r=this.all.group(e).down((n=>n.prop===t))),r}add(e,t,r,n){let a=this.prefixed(e.prop,t);if(!this.isAlready(e,a)&&!this.otherPrefixes(e.value,t))return this.insert(e,t,r,n)}process(e,t){if(!this.needCascade(e))return void super.process(e,t);let r=super.process(e,t);!r||!r.length||(this.restoreBefore(e),e.raws.before=this.calcBefore(r,e))}old(e,t){return[this.prefixed(e,t)]}}})),Em=v(((PI,Om)=>{l(),Om.exports=function i(e){return{mul:t=>new i(e*t),div:t=>new i(e/t),simplify:()=>new i(e),toString:()=>e.toString()}}})),Dm=v(((DI,Pm)=>{l();var rA=Em(),iA=Ut(),Yo=fe(),nA=/(min|max)-resolution\s*:\s*\d*\.?\d+(dppx|dpcm|dpi|x)/gi,sA=/(min|max)-resolution(\s*:\s*)(\d*\.?\d+)(dppx|dpcm|dpi|x)/i;Pm.exports=class extends iA{prefixName(e,t){return"-moz-"===e?t+"--moz-device-pixel-ratio":e+t+"-device-pixel-ratio"}prefixQuery(e,t,r,n,a){return n=new rA(n),"dpi"===a?n=n.div(96):"dpcm"===a&&(n=n.mul(2.54).div(96)),n=n.simplify(),"-o-"===e&&(n=n.n+"/"+n.d),this.prefixName(e,t)+r+n}clean(e){if(!this.bad){this.bad=[];for(let t of this.prefixes)this.bad.push(this.prefixName(t,"min")),this.bad.push(this.prefixName(t,"max"))}e.params=Yo.editList(e.params,(t=>t.filter((r=>this.bad.every((n=>!r.includes(n)))))))}process(e){let t=this.parentPrefix(e),r=t?[t]:this.prefixes;e.params=Yo.editList(e.params,((n,a)=>{for(let s of n)if(s.includes("min-resolution")||s.includes("max-resolution")){for(let o of r){let u=s.replace(nA,(c=>{let f=c.match(sA);return this.prefixQuery(o,f[1],f[2],f[3],f[4])}));a.push(u)}a.push(s)}else a.push(s);return Yo.uniq(a)}))}}})),qm=v(((II,Im)=>{l();var Qo="(".charCodeAt(0),Jo=")".charCodeAt(0),zn="'".charCodeAt(0),Xo='"'.charCodeAt(0),Ko="\\".charCodeAt(0),Wt="/".charCodeAt(0),Zo=",".charCodeAt(0),el=":".charCodeAt(0),Vn="*".charCodeAt(0),aA="u".charCodeAt(0),oA="U".charCodeAt(0),lA="+".charCodeAt(0),uA=/^[a-f0-9?-]+$/i;Im.exports=function(i){for(var r,n,a,s,o,u,c,f,y,e=[],t=i,d=0,p=t.charCodeAt(d),m=t.length,w=[{nodes:e}],x=0,b="",k="",S="";d<m;)if(p<=32){r=d;do{r+=1,p=t.charCodeAt(r)}while(p<=32);s=t.slice(d,r),a=e[e.length-1],p===Jo&&x?S=s:a&&"div"===a.type?(a.after=s,a.sourceEndIndex+=s.length):p===Zo||p===el||p===Wt&&t.charCodeAt(r+1)!==Vn&&(!y||y&&"function"===y.type&&"calc"!==y.value)?k=s:e.push({type:"space",sourceIndex:d,sourceEndIndex:r,value:s}),d=r}else if(p===zn||p===Xo){r=d,s={type:"string",sourceIndex:d,quote:n=p===zn?"'":'"'};do{if(o=!1,~(r=t.indexOf(n,r+1)))for(u=r;t.charCodeAt(u-1)===Ko;)u-=1,o=!o;else r=(t+=n).length-1,s.unclosed=!0}while(o);s.value=t.slice(d+1,r),s.sourceEndIndex=s.unclosed?r:r+1,e.push(s),d=r+1,p=t.charCodeAt(d)}else if(p===Wt&&t.charCodeAt(d+1)===Vn)s={type:"comment",sourceIndex:d,sourceEndIndex:(r=t.indexOf("*/",d))+2},-1===r&&(s.unclosed=!0,r=t.length,s.sourceEndIndex=r),s.value=t.slice(d+2,r),e.push(s),d=r+2,p=t.charCodeAt(d);else if(p!==Wt&&p!==Vn||!y||"function"!==y.type||"calc"!==y.value)if(p===Wt||p===Zo||p===el)s=t[d],e.push({type:"div",sourceIndex:d-k.length,sourceEndIndex:d+s.length,value:s,before:k,after:""}),k="",d+=1,p=t.charCodeAt(d);else if(Qo===p){r=d;do{r+=1,p=t.charCodeAt(r)}while(p<=32);if(f=d,s={type:"function",sourceIndex:d-b.length,value:b,before:t.slice(f+1,r)},d=r,"url"===b&&p!==zn&&p!==Xo){r-=1;do{if(o=!1,~(r=t.indexOf(")",r+1)))for(u=r;t.charCodeAt(u-1)===Ko;)u-=1,o=!o;else r=(t+=")").length-1,s.unclosed=!0}while(o);c=r;do{c-=1,p=t.charCodeAt(c)}while(p<=32);f<c?(s.nodes=d!==c+1?[{type:"word",sourceIndex:d,sourceEndIndex:c+1,value:t.slice(d,c+1)}]:[],s.unclosed&&c+1!==r?(s.after="",s.nodes.push({type:"space",sourceIndex:c+1,sourceEndIndex:r,value:t.slice(c+1,r)})):(s.after=t.slice(c+1,r),s.sourceEndIndex=r)):(s.after="",s.nodes=[]),d=r+1,s.sourceEndIndex=s.unclosed?r:d,p=t.charCodeAt(d),e.push(s)}else x+=1,s.after="",s.sourceEndIndex=d+1,e.push(s),w.push(s),e=s.nodes=[],y=s;b=""}else if(Jo===p&&x)d+=1,p=t.charCodeAt(d),y.after=S,y.sourceEndIndex+=S.length,S="",x-=1,w[w.length-1].sourceEndIndex=d,w.pop(),e=(y=w[x]).nodes;else{r=d;do{p===Ko&&(r+=1),r+=1,p=t.charCodeAt(r)}while(r<m&&!(p<=32||p===zn||p===Xo||p===Zo||p===el||p===Wt||p===Qo||p===Vn&&y&&"function"===y.type&&"calc"===y.value||p===Wt&&"function"===y.type&&"calc"===y.value||p===Jo&&x));s=t.slice(d,r),Qo===p?b=s:aA!==s.charCodeAt(0)&&oA!==s.charCodeAt(0)||lA!==s.charCodeAt(1)||!uA.test(s.slice(2))?e.push({type:"word",sourceIndex:d,sourceEndIndex:r,value:s}):e.push({type:"unicode-range",sourceIndex:d,sourceEndIndex:r,value:s}),d=r}else s=t[d],e.push({type:"word",sourceIndex:d-k.length,sourceEndIndex:d+s.length,value:s}),d+=1,p=t.charCodeAt(d);for(d=w.length-1;d;d-=1)w[d].unclosed=!0,w[d].sourceEndIndex=t.length;return w[0].nodes}})),Mm=v(((qI,Rm)=>{l(),Rm.exports=function i(e,t,r){var n,a,s,o;for(n=0,a=e.length;n<a;n+=1)s=e[n],r||(o=t(s,n,e)),!1!==o&&"function"===s.type&&Array.isArray(s.nodes)&&i(s.nodes,t,r),r&&t(s,n,e)}})),Lm=v(((RI,Nm)=>{function Bm(i,e){var n,a,t=i.type,r=i.value;return e&&void 0!==(a=e(i))?a:"word"===t||"space"===t?r:"string"===t?(n=i.quote||"")+r+(i.unclosed?"":n):"comment"===t?"/*"+r+(i.unclosed?"":"*/"):"div"===t?(i.before||"")+r+(i.after||""):Array.isArray(i.nodes)?(n=Fm(i.nodes,e),"function"!==t?n:r+"("+(i.before||"")+n+(i.after||"")+(i.unclosed?"":")")):r}function Fm(i,e){var t,r;if(Array.isArray(i)){for(t="",r=i.length-1;~r;r-=1)t=Bm(i[r],e)+t;return t}return Bm(i,e)}l(),Nm.exports=Fm})),jm=v(((MI,$m)=>{l();var Un="-".charCodeAt(0),Wn="+".charCodeAt(0),tl=".".charCodeAt(0),fA="e".charCodeAt(0),cA="E".charCodeAt(0);$m.exports=function(i){var r,n,a,e=0,t=i.length;if(0===t||!function(i){var t,e=i.charCodeAt(0);if(e===Wn||e===Un){if((t=i.charCodeAt(1))>=48&&t<=57)return!0;var r=i.charCodeAt(2);return t===tl&&r>=48&&r<=57}return e===tl?(t=i.charCodeAt(1))>=48&&t<=57:e>=48&&e<=57}(i))return!1;for(((r=i.charCodeAt(e))===Wn||r===Un)&&e++;e<t&&!((r=i.charCodeAt(e))<48||r>57);)e+=1;if(r=i.charCodeAt(e),n=i.charCodeAt(e+1),r===tl&&n>=48&&n<=57)for(e+=2;e<t&&!((r=i.charCodeAt(e))<48||r>57);)e+=1;if(r=i.charCodeAt(e),n=i.charCodeAt(e+1),a=i.charCodeAt(e+2),(r===fA||r===cA)&&(n>=48&&n<=57||(n===Wn||n===Un)&&a>=48&&a<=57))for(e+=n===Wn||n===Un?3:2;e<t&&!((r=i.charCodeAt(e))<48||r>57);)e+=1;return{number:i.slice(0,e),unit:i.slice(e)}}})),Gn=v(((BI,Um)=>{l();var dA=qm(),zm=Mm(),Vm=Lm();function dt(i){return this instanceof dt?(this.nodes=dA(i),this):new dt(i)}dt.prototype.toString=function(){return Array.isArray(this.nodes)?Vm(this.nodes):""},dt.prototype.walk=function(i,e){return zm(this.nodes,i,e),this},dt.unit=jm(),dt.walk=zm,dt.stringify=Vm,Um.exports=dt})),Qm=v(((FI,Ym)=>{l();var{list:hA}=ge(),Wm=Gn(),mA=pt(),Gm=ii();Ym.exports=class{constructor(e){this.props=["transition","transition-property"],this.prefixes=e}add(e,t){let r,n,a=this.prefixes.add[e.prop],s=this.ruleVendorPrefixes(e),o=s||a&&a.prefixes||[],u=this.parse(e.value),c=u.map((m=>this.findProp(m))),f=[];if(c.some((m=>"-"===m[0])))return;for(let m of u){if(n=this.findProp(m),"-"===n[0])continue;let w=this.prefixes.add[n];if(w&&w.prefixes)for(r of w.prefixes){if(s&&!s.some((y=>r.includes(y))))continue;let x=this.prefixes.prefixed(n,r);"-ms-transform"!==x&&!c.includes(x)&&(this.disabled(n,r)||f.push(this.clone(n,x,m)))}}u=u.concat(f);let d=this.stringify(u),p=this.stringify(this.cleanFromUnprefixed(u,"-webkit-"));if(o.includes("-webkit-")&&this.cloneBefore(e,`-webkit-${e.prop}`,p),this.cloneBefore(e,e.prop,p),o.includes("-o-")){let m=this.stringify(this.cleanFromUnprefixed(u,"-o-"));this.cloneBefore(e,`-o-${e.prop}`,m)}for(r of o)if("-webkit-"!==r&&"-o-"!==r){let m=this.stringify(this.cleanOtherPrefixes(u,r));this.cloneBefore(e,r+e.prop,m)}d!==e.value&&!this.already(e,e.prop,d)&&(this.checkForWarning(t,e),e.cloneBefore(),e.value=d)}findProp(e){let t=e[0].value;if(/^\d/.test(t))for(let[r,n]of e.entries())if(0!==r&&"word"===n.type)return n.value;return t}already(e,t,r){return e.parent.some((n=>n.prop===t&&n.value===r))}cloneBefore(e,t,r){this.already(e,t,r)||e.cloneBefore({prop:t,value:r})}checkForWarning(e,t){if("transition-property"!==t.prop)return;let r=!1,n=!1;t.parent.each((a=>{if("decl"!==a.type||0!==a.prop.indexOf("transition-"))return;let s=hA.comma(a.value);if("transition-property"!==a.prop)return n=n||s.length>1,!1;s.forEach((o=>{let u=this.prefixes.add[o];u&&u.prefixes&&u.prefixes.length>0&&(r=!0)}))})),r&&n&&t.warn(e,"Replace transition-property to transition, because Autoprefixer could not support any cases of transition-property and other transition-*")}remove(e){let t=this.parse(e.value);t=t.filter((s=>{let o=this.prefixes.remove[this.findProp(s)];return!o||!o.remove}));let r=this.stringify(t);if(e.value===r)return;if(0===t.length)return void e.remove();let n=e.parent.some((s=>s.prop===e.prop&&s.value===r)),a=e.parent.some((s=>s!==e&&s.prop===e.prop&&s.value.length>r.length));n||a?e.remove():e.value=r}parse(e){let t=Wm(e),r=[],n=[];for(let a of t.nodes)n.push(a),"div"===a.type&&","===a.value&&(r.push(n),n=[]);return r.push(n),r.filter((a=>a.length>0))}stringify(e){if(0===e.length)return"";let t=[];for(let r of e)"div"!==r[r.length-1].type&&r.push(this.div(e)),t=t.concat(r);return"div"===t[0].type&&(t=t.slice(1)),"div"===t[t.length-1].type&&(t=t.slice(0,-1)),Wm.stringify({nodes:t})}clone(e,t,r){let n=[],a=!1;for(let s of r)a||"word"!==s.type||s.value!==e?n.push(s):(n.push({type:"word",value:t}),a=!0);return n}div(e){for(let t of e)for(let r of t)if("div"===r.type&&","===r.value)return r;return{type:"div",value:",",after:" "}}cleanOtherPrefixes(e,t){return e.filter((r=>{let n=Gm.prefix(this.findProp(r));return""===n||n===t}))}cleanFromUnprefixed(e,t){let r=e.map((a=>this.findProp(a))).filter((a=>a.slice(0,t.length)===t)).map((a=>this.prefixes.unprefixed(a))),n=[];for(let a of e){let s=this.findProp(a),o=Gm.prefix(s);!r.includes(s)&&(o===t||""===o)&&n.push(a)}return n}disabled(e,t){if(e.includes("flex")||["order","justify-content","align-self","align-content"].includes(e)){if(!1===this.prefixes.options.flexbox)return!0;if("no-2009"===this.prefixes.options.flexbox)return t.includes("2009")}}ruleVendorPrefixes(e){let{parent:t}=e;if("rule"!==t.type)return!1;if(!t.selector.includes(":-"))return!1;let r=mA.prefixes().filter((n=>t.selector.includes(":"+n)));return r.length>0&&r}}})),Gt=v(((NI,Xm)=>{l();var gA=fe();Xm.exports=class{constructor(e,t,r,n){this.unprefixed=e,this.prefixed=t,this.string=r||t,this.regexp=n||gA.regexp(t)}check(e){return!!e.includes(this.string)&&!!e.match(this.regexp)}}})),ke=v(((LI,Zm)=>{l();var yA=Ut(),wA=Gt(),bA=ii(),vA=fe();Zm.exports=class extends yA{static save(e,t){let r=t.prop,n=[];for(let a in t._autoprefixerValues){let s=t._autoprefixerValues[a];if(s===t.value)continue;let o,u=bA.prefix(r);if("-pie-"===u)continue;if(u===a){o=t.value=s,n.push(o);continue}let c=e.prefixed(r,a),f=t.parent;if(!f.every((w=>w.prop!==c))){n.push(o);continue}let d=s.replace(/\s+/," ");if(f.some((w=>w.prop===t.prop&&w.value.replace(/\s+/," ")===d))){n.push(o);continue}let m=this.clone(t,{value:s});o=t.parent.insertBefore(t,m),n.push(o)}return n}check(e){let t=e.value;return!!t.includes(this.name)&&!!t.match(this.regexp())}regexp(){return this.regexpCache||(this.regexpCache=vA.regexp(this.name))}replace(e,t){return e.replace(this.regexp(),`$1${t}$2`)}value(e){return e.raws.value&&e.raws.value.value===e.value?e.raws.value.raw:e.value}add(e,t){e._autoprefixerValues||(e._autoprefixerValues={});let n,r=e._autoprefixerValues[t]||this.value(e);do{if(n=r,r=this.replace(r,t),!1===r)return}while(r!==n);e._autoprefixerValues[t]=r}old(e){return new wA(this.name,e+this.name)}}})),ht=v((($I,eg)=>{l(),eg.exports={}})),il=v(((jI,ig)=>{l();var tg=Gn(),xA=ke(),kA=ht().insertAreas,SA=/(^|[^-])linear-gradient\(\s*(top|left|right|bottom)/i,CA=/(^|[^-])radial-gradient\(\s*\d+(\w*|%)\s+\d+(\w*|%)\s*,/i,AA=/(!\s*)?autoprefixer:\s*ignore\s+next/i,_A=/(!\s*)?autoprefixer\s*grid:\s*(on|off|(no-)?autoplace)/i,OA=["width","height","min-width","max-width","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size"];function rl(i){return i.parent.some((e=>"grid-template"===e.prop||"grid-template-areas"===e.prop))}ig.exports=class{constructor(e){this.prefixes=e}add(e,t){let r=this.prefixes.add["@resolution"],n=this.prefixes.add["@keyframes"],a=this.prefixes.add["@viewport"],s=this.prefixes.add["@supports"];function o(f){return f.parent.nodes.some((d=>{if("decl"!==d.type)return!1;let p="display"===d.prop&&/(inline-)?grid/.test(d.value),m=d.prop.startsWith("grid-template"),w=/^grid-([A-z]+-)?gap/.test(d.prop);return p||m||w}))}e.walkAtRules((f=>{if("keyframes"===f.name){if(!this.disabled(f,t))return n&&n.process(f)}else if("viewport"===f.name){if(!this.disabled(f,t))return a&&a.process(f)}else if("supports"===f.name){if(!1!==this.prefixes.options.supports&&!this.disabled(f,t))return s.process(f)}else if("media"===f.name&&f.params.includes("-resolution")&&!this.disabled(f,t))return r&&r.process(f)})),e.walkRules((f=>{if(!this.disabled(f,t))return this.prefixes.add.selectors.map((d=>d.process(f,t)))}));let c=this.gridStatus(e,t)&&this.prefixes.add["grid-area"]&&this.prefixes.add["grid-area"].prefixes;return e.walkDecls((f=>{if(this.disabledDecl(f,t))return;let w,d=f.parent,p=f.prop,m=f.value;if("grid-row-span"!==p)if("grid-column-span"!==p)if("display"!==p||"box"!==m){if("text-emphasis-position"===p)("under"===m||"over"===m)&&t.warn("You should use 2 values for text-emphasis-position For example, `under left` instead of just `under`.",{node:f});else if(/^(align|justify|place)-(items|content)$/.test(p)&&function(f){return f.parent.some((d=>"display"===d.prop&&/(inline-)?flex/.test(d.value)))}(f))("start"===m||"end"===m)&&t.warn(`${m} value has mixed support, consider using flex-${m} instead`,{node:f});else if("text-decoration-skip"===p&&"ink"===m)t.warn("Replace text-decoration-skip: ink to text-decoration-skip-ink: auto, because spec had been changed",{node:f});else{if(c&&this.gridStatus(f,t))if("subgrid"===f.value&&t.warn("IE does not support subgrid",{node:f}),/^(align|justify|place)-items$/.test(p)&&o(f)){let x=p.replace("-items","-self");t.warn(`IE does not support ${p} on grid containers. Try using ${x} on child elements instead: ${f.parent.selector} > * { ${x}: ${f.value} }`,{node:f})}else if(/^(align|justify|place)-content$/.test(p)&&o(f))t.warn(`IE does not support ${f.prop} on grid containers`,{node:f});else{if("display"===p&&"contents"===f.value)return void t.warn("Please do not use display: contents; if you have grid setting enabled",{node:f});if("grid-gap"===f.prop){let x=this.gridStatus(f,t);"autoplace"!==x||function(i){let e=i.parent.some((r=>"grid-template-rows"===r.prop)),t=i.parent.some((r=>"grid-template-columns"===r.prop));return e&&t}(f)||rl(f)?(!0===x||"no-autoplace"===x)&&!rl(f)&&t.warn("grid-gap only works if grid-template(-areas) is being used",{node:f}):t.warn("grid-gap only works if grid-template(-areas) is being used or both rows and columns have been declared and cells have not been manually placed inside the explicit grid",{node:f})}else{if("grid-auto-columns"===p)return void t.warn("grid-auto-columns is not supported by IE",{node:f});if("grid-auto-rows"===p)return void t.warn("grid-auto-rows is not supported by IE",{node:f});if("grid-auto-flow"===p){let x=d.some((b=>"grid-template-rows"===b.prop)),y=d.some((b=>"grid-template-columns"===b.prop));return void(rl(f)?t.warn("grid-auto-flow is not supported by IE",{node:f}):m.includes("dense")?t.warn("grid-auto-flow: dense is not supported by IE",{node:f}):!x&&!y&&t.warn("grid-auto-flow works only if grid-template-rows and grid-template-columns are present in the same rule",{node:f}))}if(m.includes("auto-fit"))return void t.warn("auto-fit value is not supported by IE",{node:f,word:"auto-fit"});if(m.includes("auto-fill"))return void t.warn("auto-fill value is not supported by IE",{node:f,word:"auto-fill"});p.startsWith("grid-template")&&m.includes("[")&&t.warn("Autoprefixer currently does not support line names. Try using grid-template-areas instead.",{node:f,word:"["})}}if(m.includes("radial-gradient"))if(CA.test(f.value))t.warn("Gradient has outdated direction syntax. New syntax is like `closest-side at 0 0` instead of `0 0, closest-side`.",{node:f});else{let x=tg(m);for(let y of x.nodes)if("function"===y.type&&"radial-gradient"===y.value)for(let b of y.nodes)"word"===b.type&&("cover"===b.value?t.warn("Gradient has outdated direction syntax. Replace `cover` to `farthest-corner`.",{node:f}):"contain"===b.value&&t.warn("Gradient has outdated direction syntax. Replace `contain` to `closest-side`.",{node:f}))}m.includes("linear-gradient")&&SA.test(m)&&t.warn("Gradient has outdated direction syntax. New syntax is like `to left` instead of `right`.",{node:f})}if(OA.includes(f.prop)&&(f.value.includes("-fill-available")||(f.value.includes("fill-available")?t.warn("Replace fill-available to stretch, because spec had been changed",{node:f}):f.value.includes("fill")&&tg(m).nodes.some((y=>"word"===y.type&&"fill"===y.value))&&t.warn("Replace fill to stretch, because spec had been changed",{node:f}))),"transition"===f.prop||"transition-property"===f.prop)return this.prefixes.transition.add(f,t);if("align-self"===f.prop){if("grid"!==this.displayType(f)&&!1!==this.prefixes.options.flexbox&&(w=this.prefixes.add["align-self"],w&&w.prefixes&&w.process(f)),!1!==this.gridStatus(f,t)&&(w=this.prefixes.add["grid-row-align"],w&&w.prefixes))return w.process(f,t)}else if("justify-self"===f.prop){if(!1!==this.gridStatus(f,t)&&(w=this.prefixes.add["grid-column-align"],w&&w.prefixes))return w.process(f,t)}else if("place-self"===f.prop){if(w=this.prefixes.add["place-self"],w&&w.prefixes&&!1!==this.gridStatus(f,t))return w.process(f,t)}else if(w=this.prefixes.add[f.prop],w&&w.prefixes)return w.process(f,t)}else t.warn("You should write display: flex by final spec instead of display: box",{node:f});else t.warn("grid-column-span is not part of final Grid Layout. Use grid-column.",{node:f});else t.warn("grid-row-span is not part of final Grid Layout. Use grid-row.",{node:f})})),this.gridStatus(e,t)&&kA(e,this.disabled),e.walkDecls((f=>{if(this.disabledValue(f,t))return;let d=this.prefixes.unprefixed(f.prop),p=this.prefixes.values("add",d);if(Array.isArray(p))for(let m of p)m.process&&m.process(f,t);xA.save(this.prefixes,f)}))}remove(e,t){let r=this.prefixes.remove["@resolution"];e.walkAtRules(((n,a)=>{this.prefixes.remove[`@${n.name}`]?this.disabled(n,t)||n.parent.removeChild(a):"media"===n.name&&n.params.includes("-resolution")&&r&&r.clean(n)}));for(let n of this.prefixes.remove.selectors)e.walkRules(((a,s)=>{n.check(a)&&(this.disabled(a,t)||a.parent.removeChild(s))}));return e.walkDecls(((n,a)=>{if(this.disabled(n,t))return;let s=n.parent,o=this.prefixes.unprefixed(n.prop);if(("transition"===n.prop||"transition-property"===n.prop)&&this.prefixes.transition.remove(n),this.prefixes.remove[n.prop]&&this.prefixes.remove[n.prop].remove){let u=this.prefixes.group(n).down((c=>this.prefixes.normalize(c.prop)===o));if("flex-flow"===o&&(u=!0),"-webkit-box-orient"===n.prop){let c={"flex-direction":!0,"flex-flow":!0};if(!n.parent.some((f=>c[f.prop])))return}if(u&&!this.withHackValue(n))return n.raw("before").includes("\n")&&this.reduceSpaces(n),void s.removeChild(a)}for(let u of this.prefixes.values("remove",o))if(u.check&&u.check(n.value)&&(o=u.unprefixed,this.prefixes.group(n).down((f=>f.value.includes(o)))))return void s.removeChild(a)}))}withHackValue(e){return"-webkit-background-clip"===e.prop&&"text"===e.value}disabledValue(e,t){return!!(!1===this.gridStatus(e,t)&&"decl"===e.type&&"display"===e.prop&&e.value.includes("grid")||!1===this.prefixes.options.flexbox&&"decl"===e.type&&"display"===e.prop&&e.value.includes("flex")||"decl"===e.type&&"content"===e.prop)||this.disabled(e,t)}disabledDecl(e,t){if(!1===this.gridStatus(e,t)&&"decl"===e.type&&(e.prop.includes("grid")||"justify-items"===e.prop))return!0;if(!1===this.prefixes.options.flexbox&&"decl"===e.type){let r=["order","justify-content","align-items","align-content"];if(e.prop.includes("flex")||r.includes(e.prop))return!0}return this.disabled(e,t)}disabled(e,t){if(!e)return!1;if(void 0!==e._autoprefixerDisabled)return e._autoprefixerDisabled;if(e.parent){let n=e.prev();if(n&&"comment"===n.type&&AA.test(n.text))return e._autoprefixerDisabled=!0,e._autoprefixerSelfDisabled=!0,!0}let r=null;if(e.nodes){let n;e.each((a=>{"comment"===a.type&&/(!\s*)?autoprefixer:\s*(off|on)/i.test(a.text)&&(void 0!==n?t.warn("Second Autoprefixer control comment was ignored. Autoprefixer applies control comment to whole block, not to next rules.",{node:a}):n=/on/i.test(a.text))})),void 0!==n&&(r=!n)}if(!e.nodes||null===r)if(e.parent){let n=this.disabled(e.parent,t);r=!0!==e.parent._autoprefixerSelfDisabled&&n}else r=!1;return e._autoprefixerDisabled=r,r}reduceSpaces(e){let t=!1;if(this.prefixes.group(e).up((()=>(t=!0,!0))),t)return;let r=e.raw("before").split("\n"),n=r[r.length-1].length,a=!1;this.prefixes.group(e).down((s=>{r=s.raw("before").split("\n");let o=r.length-1;r[o].length>n&&(!1===a&&(a=r[o].length-n),r[o]=r[o].slice(0,-a),s.raws.before=r.join("\n"))}))}displayType(e){for(let t of e.parent.nodes)if("display"===t.prop){if(t.value.includes("flex"))return"flex";if(t.value.includes("grid"))return"grid"}return!1}gridStatus(e,t){if(!e)return!1;if(void 0!==e._autoprefixerGridStatus)return e._autoprefixerGridStatus;let r=null;if(e.nodes){let n;e.each((a=>{if("comment"===a.type&&_A.test(a.text)){let s=/:\s*autoplace/i.test(a.text),o=/no-autoplace/i.test(a.text);void 0!==n?t.warn("Second Autoprefixer grid control comment was ignored. Autoprefixer applies control comments to the whole block, not to the next rules.",{node:a}):n=s?"autoplace":!!o||/on/i.test(a.text)}})),void 0!==n&&(r=n)}if("atrule"===e.type&&"supports"===e.name){let n=e.params;n.includes("grid")&&n.includes("auto")&&(r=!1)}if(!e.nodes||null===r)if(e.parent){let n=this.gridStatus(e.parent,t);r=!0!==e.parent._autoprefixerSelfDisabled&&n}else r=void 0!==this.prefixes.options.grid?this.prefixes.options.grid:void 0!==h.env.AUTOPREFIXER_GRID&&("autoplace"!==h.env.AUTOPREFIXER_GRID||"autoplace");return e._autoprefixerGridStatus=r,r}}})),sg=v(((zI,ng)=>{l(),ng.exports={A:{A:{2:"K E F G A B JC"},B:{1:"C L M H N D O P Q R S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I"},C:{1:"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 0B dB 1B eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R 2B S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I uB 3B 4B",2:"0 1 KC zB J K E F G A B C L M H N D O k l LC MC"},D:{1:"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB 0B dB 1B eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R S T U V W X Y Z a b c d e f g h i j n o p q r s t u v w x y z I uB 3B 4B",2:"0 1 2 3 4 5 6 7 J K E F G A B C L M H N D O k l"},E:{1:"G A B C L M H D RC 6B vB wB 7B SC TC 8B 9B xB AC yB BC CC DC EC FC GC UC",2:"0 J K E F NC 5B OC PC QC"},F:{1:"1 2 3 4 5 6 7 8 9 H N D O k l AB BB CB DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB m pB qB rB sB tB P Q R 2B S T U V W X Y Z a b c d e f g h i j wB",2:"G B C VC WC XC YC vB HC ZC"},G:{1:"D fC gC hC iC jC kC lC mC nC oC pC qC rC sC tC 8B 9B xB AC yB BC CC DC EC FC GC",2:"F 5B aC IC bC cC dC eC"},H:{1:"uC"},I:{1:"I zC 0C",2:"zB J vC wC xC yC IC"},J:{2:"E A"},K:{1:"m",2:"A B C vB HC wB"},L:{1:"I"},M:{1:"uB"},N:{2:"A B"},O:{1:"xB"},P:{1:"J k l 1C 2C 3C 4C 5C 6B 6C 7C 8C 9C AD yB BD CD DD"},Q:{1:"7B"},R:{1:"ED"},S:{1:"FD GD"}},B:4,C:"CSS Feature Queries"}})),ug=v(((VI,lg)=>{function ag(i){return i[i.length-1]}l();var og={parse(i){let e=[""],t=[e];for(let r of i)"("!==r?")"!==r?e[e.length-1]+=r:(t.pop(),e=ag(t),e.push("")):(e=[""],ag(t).push(e),t.push(e));return t[0]},stringify(i){let e="";for(let t of i)e+="object"!=typeof t?t:`(${og.stringify(t)})`;return e}};lg.exports=og})),hg=v(((UI,dg)=>{l();var TA=sg(),{feature:PA}=($n(),Ln),{parse:DA}=ge(),IA=pt(),nl=ug(),qA=ke(),RA=fe(),fg=PA(TA),cg=[];for(let i in fg.stats){let e=fg.stats[i];for(let t in e){let r=e[t];/y/.test(r)&&cg.push(i+" "+t)}}dg.exports=class{constructor(e,t){this.Prefixes=e,this.all=t}prefixer(){if(this.prefixerCache)return this.prefixerCache;let e=this.all.browsers.selected.filter((r=>cg.includes(r))),t=new IA(this.all.browsers.data,e,this.all.options);return this.prefixerCache=new this.Prefixes(this.all.data,t,this.all.options),this.prefixerCache}parse(e){let t=e.split(":"),r=t[0],n=t[1];return n||(n=""),[r.trim(),n.trim()]}virtual(e){let[t,r]=this.parse(e),n=DA("a{}").first;return n.append({prop:t,value:r,raws:{before:""}}),n}prefixed(e){let t=this.virtual(e);if(this.disabled(t.first))return t.nodes;let n=this.prefixer().add[t.first.prop];n&&n.process&&n.process(t.first,{warn:()=>null});for(let a of t.nodes){for(let s of this.prefixer().values("add",t.first.prop))s.process(a);qA.save(this.all,a)}return t.nodes}isNot(e){return"string"==typeof e&&/not\s*/i.test(e)}isOr(e){return"string"==typeof e&&/\s*or\s*/i.test(e)}isProp(e){return"object"==typeof e&&1===e.length&&"string"==typeof e[0]}isHack(e,t){return!new RegExp(`(\\(|\\s)${RA.escapeRegexp(t)}:`).test(e)}toRemove(e,t){let[r,n]=this.parse(e),a=this.all.unprefixed(r),s=this.all.cleaner();if(s.remove[r]&&s.remove[r].remove&&!this.isHack(t,a))return!0;for(let o of s.values("remove",a))if(o.check(n))return!0;return!1}remove(e,t){let r=0;for(;r<e.length;)if(!this.isNot(e[r-1])&&this.isProp(e[r])&&this.isOr(e[r+1])){if(this.toRemove(e[r][0],t)){e.splice(r,2);continue}r+=2}else"object"==typeof e[r]&&(e[r]=this.remove(e[r],t)),r+=1;return e}cleanBrackets(e){return e.map((t=>"object"!=typeof t?t:1===t.length&&"object"==typeof t[0]?this.cleanBrackets(t[0]):this.cleanBrackets(t)))}convert(e){let t=[""];for(let r of e)t.push([`${r.prop}: ${r.value}`]),t.push(" or ");return t[t.length-1]="",t}normalize(e){if("object"!=typeof e)return e;if("string"==typeof(e=e.filter((t=>""!==t)))[0]){let t=e[0].trim();if(t.includes(":")||"selector"===t||"not selector"===t)return[nl.stringify(e)]}return e.map((t=>this.normalize(t)))}add(e,t){return e.map((r=>{if(this.isProp(r)){let n=this.prefixed(r[0]);return n.length>1?this.convert(n):r}return"object"==typeof r?this.add(r,t):r}))}process(e){let t=nl.parse(e.params);t=this.normalize(t),t=this.remove(t,e.params),t=this.add(t,e.params),t=this.cleanBrackets(t),e.params=nl.stringify(t)}disabled(e){if(!this.all.options.grid&&("display"===e.prop&&e.value.includes("grid")||e.prop.includes("grid")||"justify-items"===e.prop))return!0;if(!1===this.all.options.flexbox){if("display"===e.prop&&e.value.includes("flex"))return!0;let t=["order","justify-content","align-items","align-content"];if(e.prop.includes("flex")||t.includes(e.prop))return!0}return!1}}})),yg=v(((WI,gg)=>{l();gg.exports=class{constructor(e,t){this.prefix=t,this.prefixed=e.prefixed(this.prefix),this.regexp=e.regexp(this.prefix),this.prefixeds=e.possible().map((r=>[e.prefixed(r),e.regexp(r)])),this.unprefixed=e.name,this.nameRegexp=e.regexp()}isHack(e){let t=e.parent.index(e)+1,r=e.parent.nodes;for(;t<r.length;){let n=r[t].selector;if(!n)return!0;if(n.includes(this.unprefixed)&&n.match(this.nameRegexp))return!1;let a=!1;for(let[s,o]of this.prefixeds)if(n.includes(s)&&n.match(o)){a=!0;break}if(!a)return!0;t+=1}return!0}check(e){return!(!e.selector.includes(this.prefixed)||!e.selector.match(this.regexp)||this.isHack(e))}}})),Ht=v(((GI,bg)=>{l();var{list:MA}=ge(),BA=yg(),FA=Ut(),NA=pt(),LA=fe();bg.exports=class extends FA{constructor(e,t,r){super(e,t,r),this.regexpCache=new Map}check(e){return!!e.selector.includes(this.name)&&!!e.selector.match(this.regexp())}prefixed(e){return this.name.replace(/^(\W*)/,`$1${e}`)}regexp(e){if(!this.regexpCache.has(e)){let t=e?this.prefixed(e):this.name;this.regexpCache.set(e,new RegExp(`(^|[^:"'=])${LA.escapeRegexp(t)}`,"gi"))}return this.regexpCache.get(e)}possible(){return NA.prefixes()}prefixeds(e){if(e._autoprefixerPrefixeds){if(e._autoprefixerPrefixeds[this.name])return e._autoprefixerPrefixeds}else e._autoprefixerPrefixeds={};let t={};if(e.selector.includes(",")){let n=MA.comma(e.selector).filter((a=>a.includes(this.name)));for(let a of this.possible())t[a]=n.map((s=>this.replace(s,a))).join(", ")}else for(let r of this.possible())t[r]=this.replace(e.selector,r);return e._autoprefixerPrefixeds[this.name]=t,e._autoprefixerPrefixeds}already(e,t,r){let n=e.parent.index(e)-1;for(;n>=0;){let a=e.parent.nodes[n];if("rule"!==a.type)return!1;let s=!1;for(let o in t[this.name]){let u=t[this.name][o];if(a.selector===u){if(r===o)return!0;s=!0;break}}if(!s)return!1;n-=1}return!1}replace(e,t){return e.replace(this.regexp(),`$1${this.prefixed(t)}`)}add(e,t){let r=this.prefixeds(e);if(this.already(e,r,t))return;let n=this.clone(e,{selector:r[this.name][t]});e.parent.insertBefore(e,n)}old(e){return new BA(this,e)}}})),kg=v(((HI,xg)=>{l();var $A=Ut();xg.exports=class extends $A{add(e,t){let r=t+e.name;if(e.parent.some((s=>s.name===r&&s.params===e.params)))return;let a=this.clone(e,{name:r});return e.parent.insertBefore(e,a)}process(e){let t=this.parentPrefix(e);for(let r of this.prefixes)(!t||t===r)&&this.add(e,r)}}})),Cg=v(((YI,Sg)=>{l();var jA=Ht(),sl=class extends jA{prefixed(e){return"-webkit-"===e?":-webkit-full-screen":"-moz-"===e?":-moz-full-screen":`:${e}fullscreen`}};sl.names=[":fullscreen"],Sg.exports=sl})),_g=v(((QI,Ag)=>{l();var zA=Ht(),al=class extends zA{possible(){return super.possible().concat(["-moz- old","-ms- old"])}prefixed(e){return"-webkit-"===e?"::-webkit-input-placeholder":"-ms-"===e?"::-ms-input-placeholder":"-ms- old"===e?":-ms-input-placeholder":"-moz- old"===e?":-moz-placeholder":`::${e}placeholder`}};al.names=["::placeholder"],Ag.exports=al})),Eg=v(((JI,Og)=>{l();var VA=Ht(),ol=class extends VA{prefixed(e){return"-ms-"===e?":-ms-input-placeholder":`:${e}placeholder-shown`}};ol.names=[":placeholder-shown"],Og.exports=ol})),Pg=v(((XI,Tg)=>{l();var UA=Ht(),WA=fe(),ll=class extends UA{constructor(e,t,r){super(e,t,r),this.prefixes&&(this.prefixes=WA.uniq(this.prefixes.map((n=>"-webkit-"))))}prefixed(e){return"-webkit-"===e?"::-webkit-file-upload-button":`::${e}file-selector-button`}};ll.names=["::file-selector-button"],Tg.exports=ll})),he=v(((KI,Dg)=>{l(),Dg.exports=function(i){let e;return"-webkit- 2009"===i||"-moz-"===i?e=2009:"-ms-"===i?e=2012:"-webkit-"===i&&(e="final"),"-webkit- 2009"===i&&(i="-webkit-"),[e,i]}})),Mg=v(((ZI,Rg)=>{l();var Ig=ge().list,qg=he(),GA=R(),Yt=class extends GA{prefixed(e,t){let r;return[r,t]=qg(t),2009===r?t+"box-flex":super.prefixed(e,t)}normalize(){return"flex"}set(e,t){let r=qg(t)[0];if(2009===r)return e.value=Ig.space(e.value)[0],e.value=Yt.oldValues[e.value]||e.value,super.set(e,t);if(2012===r){let n=Ig.space(e.value);3===n.length&&"0"===n[2]&&(e.value=n.slice(0,2).concat("0px").join(" "))}return super.set(e,t)}};Yt.names=["flex","box-flex"],Yt.oldValues={auto:"1",none:"0"},Rg.exports=Yt})),Ng=v(((e4,Fg)=>{l();var Bg=he(),HA=R(),ul=class extends HA{prefixed(e,t){let r;return[r,t]=Bg(t),2009===r?t+"box-ordinal-group":2012===r?t+"flex-order":super.prefixed(e,t)}normalize(){return"order"}set(e,t){return 2009===Bg(t)[0]&&/\d/.test(e.value)?(e.value=(parseInt(e.value)+1).toString(),super.set(e,t)):super.set(e,t)}};ul.names=["order","flex-order","box-ordinal-group"],Fg.exports=ul})),$g=v(((t4,Lg)=>{l();var YA=R(),fl=class extends YA{check(e){let t=e.value;return!t.toLowerCase().includes("alpha(")&&!t.includes("DXImageTransform.Microsoft")&&!t.includes("data:image/svg+xml")}};fl.names=["filter"],Lg.exports=fl})),zg=v(((r4,jg)=>{l();var QA=R(),cl=class extends QA{insert(e,t,r,n){if("-ms-"!==t)return super.insert(e,t,r);let a=this.clone(e),s=e.prop.replace(/end$/,"start"),o=t+e.prop.replace(/end$/,"span");if(!e.parent.some((u=>u.prop===o))){if(a.prop=o,e.value.includes("span"))a.value=e.value.replace(/span\s/i,"");else{let u;if(e.parent.walkDecls(s,(c=>{u=c})),u){let c=Number(e.value)-Number(u.value)+"";a.value=c}else e.warn(n,`Can not prefix ${e.prop} (${s} is not found)`)}e.cloneBefore(a)}}};cl.names=["grid-row-end","grid-column-end"],jg.exports=cl})),Ug=v(((i4,Vg)=>{l();var JA=R(),pl=class extends JA{check(e){return!e.value.split(/\s+/).some((t=>{let r=t.toLowerCase();return"reverse"===r||"alternate-reverse"===r}))}};pl.names=["animation","animation-direction"],Vg.exports=pl})),Gg=v(((n4,Wg)=>{l();var XA=he(),KA=R(),dl=class extends KA{insert(e,t,r){let n;if([n,t]=XA(t),2009!==n)return super.insert(e,t,r);let a=e.value.split(/\s+/).filter((d=>"wrap"!==d&&"nowrap"!==d&&"wrap-reverse"));if(0===a.length||e.parent.some((d=>d.prop===t+"box-orient"||d.prop===t+"box-direction")))return;let o=a[0],u=o.includes("row")?"horizontal":"vertical",c=o.includes("reverse")?"reverse":"normal",f=this.clone(e);return f.prop=t+"box-orient",f.value=u,this.needCascade(e)&&(f.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,f),f=this.clone(e),f.prop=t+"box-direction",f.value=c,this.needCascade(e)&&(f.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,f)}};dl.names=["flex-flow","box-direction","box-orient"],Wg.exports=dl})),Yg=v(((s4,Hg)=>{l();var ZA=he(),e_=R(),hl=class extends e_{normalize(){return"flex"}prefixed(e,t){let r;return[r,t]=ZA(t),2009===r?t+"box-flex":2012===r?t+"flex-positive":super.prefixed(e,t)}};hl.names=["flex-grow","flex-positive"],Hg.exports=hl})),Jg=v(((a4,Qg)=>{l();var t_=he(),r_=R(),ml=class extends r_{set(e,t){if(2009!==t_(t)[0])return super.set(e,t)}};ml.names=["flex-wrap"],Qg.exports=ml})),Kg=v(((o4,Xg)=>{l();var i_=R(),Qt=ht(),gl=class extends i_{insert(e,t,r,n){if("-ms-"!==t)return super.insert(e,t,r);let a=Qt.parse(e),[s,o]=Qt.translate(a,0,2),[u,c]=Qt.translate(a,1,3);[["grid-row",s],["grid-row-span",o],["grid-column",u],["grid-column-span",c]].forEach((([f,d])=>{Qt.insertDecl(e,f,d)})),Qt.warnTemplateSelectorNotFound(e,n),Qt.warnIfGridRowColumnExists(e,n)}};gl.names=["grid-area"],Xg.exports=gl})),ey=v(((l4,Zg)=>{l();var n_=R(),ni=ht(),yl=class extends n_{insert(e,t,r){if("-ms-"!==t)return super.insert(e,t,r);if(e.parent.some((s=>"-ms-grid-row-align"===s.prop)))return;let[[n,a]]=ni.parse(e);a?(ni.insertDecl(e,"grid-row-align",n),ni.insertDecl(e,"grid-column-align",a)):(ni.insertDecl(e,"grid-row-align",n),ni.insertDecl(e,"grid-column-align",n))}};yl.names=["place-self"],Zg.exports=yl})),ry=v(((u4,ty)=>{l();var s_=R(),wl=class extends s_{check(e){let t=e.value;return!t.includes("/")||t.includes("span")}normalize(e){return e.replace("-start","")}prefixed(e,t){let r=super.prefixed(e,t);return"-ms-"===t&&(r=r.replace("-start","")),r}};wl.names=["grid-row-start","grid-column-start"],ty.exports=wl})),sy=v(((f4,ny)=>{l();var iy=he(),a_=R(),Jt=class extends a_{check(e){return e.parent&&!e.parent.some((t=>t.prop&&t.prop.startsWith("grid-")))}prefixed(e,t){let r;return[r,t]=iy(t),2012===r?t+"flex-item-align":super.prefixed(e,t)}normalize(){return"align-self"}set(e,t){let r=iy(t)[0];return 2012===r?(e.value=Jt.oldValues[e.value]||e.value,super.set(e,t)):"final"===r?super.set(e,t):void 0}};Jt.names=["align-self","flex-item-align"],Jt.oldValues={"flex-end":"end","flex-start":"start"},ny.exports=Jt})),oy=v(((c4,ay)=>{l();var o_=R(),l_=fe(),bl=class extends o_{constructor(e,t,r){super(e,t,r),this.prefixes&&(this.prefixes=l_.uniq(this.prefixes.map((n=>"-ms-"===n?"-webkit-":n))))}};bl.names=["appearance"],ay.exports=bl})),fy=v(((p4,uy)=>{l();var ly=he(),u_=R(),vl=class extends u_{normalize(){return"flex-basis"}prefixed(e,t){let r;return[r,t]=ly(t),2012===r?t+"flex-preferred-size":super.prefixed(e,t)}set(e,t){let r;if([r,t]=ly(t),2012===r||"final"===r)return super.set(e,t)}};vl.names=["flex-basis","flex-preferred-size"],uy.exports=vl})),py=v(((d4,cy)=>{l();var f_=R(),xl=class extends f_{normalize(){return this.name.replace("box-image","border")}prefixed(e,t){let r=super.prefixed(e,t);return"-webkit-"===t&&(r=r.replace("border","box-image")),r}};xl.names=["mask-border","mask-border-source","mask-border-slice","mask-border-width","mask-border-outset","mask-border-repeat","mask-box-image","mask-box-image-source","mask-box-image-slice","mask-box-image-width","mask-box-image-outset","mask-box-image-repeat"],cy.exports=xl})),hy=v(((h4,dy)=>{l();var c_=R(),Ne=class extends c_{insert(e,t,r){let a,n="mask-composite"===e.prop;a=n?e.value.split(","):e.value.match(Ne.regexp)||[],a=a.map((c=>c.trim())).filter((c=>c));let o,s=a.length;if(s&&(o=this.clone(e),o.value=a.map((c=>Ne.oldValues[c]||c)).join(", "),a.includes("intersect")&&(o.value+=", xor"),o.prop=t+"mask-composite"),n)return s?(this.needCascade(e)&&(o.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,o)):void 0;let u=this.clone(e);return u.prop=t+u.prop,s&&(u.value=u.value.replace(Ne.regexp,"")),this.needCascade(e)&&(u.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,u),s?(this.needCascade(e)&&(o.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,o)):e}};Ne.names=["mask","mask-composite"],Ne.oldValues={add:"source-over",subtract:"source-out",intersect:"source-in",exclude:"xor"},Ne.regexp=new RegExp(`\\s+(${Object.keys(Ne.oldValues).join("|")})\\b(?!\\))\\s*(?=[,])`,"ig"),dy.exports=Ne})),yy=v(((m4,gy)=>{l();var my=he(),p_=R(),Xt=class extends p_{prefixed(e,t){let r;return[r,t]=my(t),2009===r?t+"box-align":2012===r?t+"flex-align":super.prefixed(e,t)}normalize(){return"align-items"}set(e,t){let r=my(t)[0];return(2009===r||2012===r)&&(e.value=Xt.oldValues[e.value]||e.value),super.set(e,t)}};Xt.names=["align-items","flex-align","box-align"],Xt.oldValues={"flex-end":"end","flex-start":"start"},gy.exports=Xt})),by=v(((g4,wy)=>{l();var d_=R(),kl=class extends d_{set(e,t){return"-ms-"===t&&"contain"===e.value&&(e.value="element"),super.set(e,t)}insert(e,t,r){if("all"!==e.value||"-ms-"!==t)return super.insert(e,t,r)}};kl.names=["user-select"],wy.exports=kl})),ky=v(((y4,xy)=>{l();var vy=he(),h_=R(),Sl=class extends h_{normalize(){return"flex-shrink"}prefixed(e,t){let r;return[r,t]=vy(t),2012===r?t+"flex-negative":super.prefixed(e,t)}set(e,t){let r;if([r,t]=vy(t),2012===r||"final"===r)return super.set(e,t)}};Sl.names=["flex-shrink","flex-negative"],xy.exports=Sl})),Cy=v(((w4,Sy)=>{l();var m_=R(),Cl=class extends m_{prefixed(e,t){return`${t}column-${e}`}normalize(e){return e.includes("inside")?"break-inside":e.includes("before")?"break-before":"break-after"}set(e,t){return("break-inside"===e.prop&&"avoid-column"===e.value||"avoid-page"===e.value)&&(e.value="avoid"),super.set(e,t)}insert(e,t,r){return"break-inside"!==e.prop?super.insert(e,t,r):/region/i.test(e.value)||/page/i.test(e.value)?void 0:super.insert(e,t,r)}};Cl.names=["break-inside","page-break-inside","column-break-inside","break-before","page-break-before","column-break-before","break-after","page-break-after","column-break-after"],Sy.exports=Cl})),_y=v(((b4,Ay)=>{l();var g_=R(),Al=class extends g_{prefixed(e,t){return t+"print-color-adjust"}normalize(){return"color-adjust"}};Al.names=["color-adjust","print-color-adjust"],Ay.exports=Al})),Ey=v(((v4,Oy)=>{l();var y_=R(),Kt=class extends y_{insert(e,t,r){if("-ms-"===t){let n=this.set(this.clone(e),t);this.needCascade(e)&&(n.raws.before=this.calcBefore(r,e,t));let a="ltr";return e.parent.nodes.forEach((s=>{"direction"===s.prop&&("rtl"===s.value||"ltr"===s.value)&&(a=s.value)})),n.value=Kt.msValues[a][e.value]||e.value,e.parent.insertBefore(e,n)}return super.insert(e,t,r)}};Kt.names=["writing-mode"],Kt.msValues={ltr:{"horizontal-tb":"lr-tb","vertical-rl":"tb-rl","vertical-lr":"tb-lr"},rtl:{"horizontal-tb":"rl-tb","vertical-rl":"bt-rl","vertical-lr":"bt-lr"}},Oy.exports=Kt})),Py=v(((x4,Ty)=>{l();var w_=R(),_l=class extends w_{set(e,t){return e.value=e.value.replace(/\s+fill(\s)/,"$1"),super.set(e,t)}};_l.names=["border-image"],Ty.exports=_l})),qy=v(((k4,Iy)=>{l();var Dy=he(),b_=R(),Zt=class extends b_{prefixed(e,t){let r;return[r,t]=Dy(t),2012===r?t+"flex-line-pack":super.prefixed(e,t)}normalize(){return"align-content"}set(e,t){let r=Dy(t)[0];return 2012===r?(e.value=Zt.oldValues[e.value]||e.value,super.set(e,t)):"final"===r?super.set(e,t):void 0}};Zt.names=["align-content","flex-line-pack"],Zt.oldValues={"flex-end":"end","flex-start":"start","space-between":"justify","space-around":"distribute"},Iy.exports=Zt})),My=v(((S4,Ry)=>{l();var v_=R(),Se=class extends v_{prefixed(e,t){return"-moz-"===t?t+(Se.toMozilla[e]||e):super.prefixed(e,t)}normalize(e){return Se.toNormal[e]||e}};Se.names=["border-radius"],Se.toMozilla={},Se.toNormal={};for(let i of["top","bottom"])for(let e of["left","right"]){let t=`border-${i}-${e}-radius`,r=`border-radius-${i}${e}`;Se.names.push(t),Se.names.push(r),Se.toMozilla[t]=r,Se.toNormal[r]=t}Ry.exports=Se})),Fy=v(((C4,By)=>{l();var x_=R(),Ol=class extends x_{prefixed(e,t){return e.includes("-start")?t+e.replace("-block-start","-before"):t+e.replace("-block-end","-after")}normalize(e){return e.includes("-before")?e.replace("-before","-block-start"):e.replace("-after","-block-end")}};Ol.names=["border-block-start","border-block-end","margin-block-start","margin-block-end","padding-block-start","padding-block-end","border-before","border-after","margin-before","margin-after","padding-before","padding-after"],By.exports=Ol})),Ly=v(((A4,Ny)=>{l();var k_=R(),{parseTemplate:S_,warnMissedAreas:C_,getGridGap:A_,warnGridGap:__,inheritGridGap:O_}=ht(),El=class extends k_{insert(e,t,r,n){if("-ms-"!==t)return super.insert(e,t,r);if(e.parent.some((m=>"-ms-grid-rows"===m.prop)))return;let a=A_(e),s=O_(e,a),{rows:o,columns:u,areas:c}=S_({decl:e,gap:s||a}),f=Object.keys(c).length>0,d=Boolean(o),p=Boolean(u);return __({gap:a,hasColumns:p,decl:e,result:n}),C_(c,e,n),(d&&p||f)&&e.cloneBefore({prop:"-ms-grid-rows",value:o,raws:{}}),p&&e.cloneBefore({prop:"-ms-grid-columns",value:u,raws:{}}),e}};El.names=["grid-template"],Ny.exports=El})),jy=v(((_4,$y)=>{l();var E_=R(),Tl=class extends E_{prefixed(e,t){return t+e.replace("-inline","")}normalize(e){return e.replace(/(margin|padding|border)-(start|end)/,"$1-inline-$2")}};Tl.names=["border-inline-start","border-inline-end","margin-inline-start","margin-inline-end","padding-inline-start","padding-inline-end","border-start","border-end","margin-start","margin-end","padding-start","padding-end"],$y.exports=Tl})),Vy=v(((O4,zy)=>{l();var T_=R(),Pl=class extends T_{check(e){return!e.value.includes("flex-")&&"baseline"!==e.value}prefixed(e,t){return t+"grid-row-align"}normalize(){return"align-self"}};Pl.names=["grid-row-align"],zy.exports=Pl})),Wy=v(((E4,Uy)=>{l();var P_=R(),er=class extends P_{keyframeParents(e){let{parent:t}=e;for(;t;){if("atrule"===t.type&&"keyframes"===t.name)return!0;({parent:t}=t)}return!1}contain3d(e){if("transform-origin"===e.prop)return!1;for(let t of er.functions3d)if(e.value.includes(`${t}(`))return!0;return!1}set(e,t){return e=super.set(e,t),"-ms-"===t&&(e.value=e.value.replace(/rotatez/gi,"rotate")),e}insert(e,t,r){if("-ms-"===t){if(!this.contain3d(e)&&!this.keyframeParents(e))return super.insert(e,t,r)}else{if("-o-"!==t)return super.insert(e,t,r);if(!this.contain3d(e))return super.insert(e,t,r)}}};er.names=["transform","transform-origin"],er.functions3d=["matrix3d","translate3d","translateZ","scale3d","scaleZ","rotate3d","rotateX","rotateY","perspective"],Uy.exports=er})),Yy=v(((T4,Hy)=>{l();var Gy=he(),D_=R(),Dl=class extends D_{normalize(){return"flex-direction"}insert(e,t,r){let n;if([n,t]=Gy(t),2009!==n)return super.insert(e,t,r);if(e.parent.some((f=>f.prop===t+"box-orient"||f.prop===t+"box-direction")))return;let o,u,s=e.value;"inherit"===s||"initial"===s||"unset"===s?(o=s,u=s):(o=s.includes("row")?"horizontal":"vertical",u=s.includes("reverse")?"reverse":"normal");let c=this.clone(e);return c.prop=t+"box-orient",c.value=o,this.needCascade(e)&&(c.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,c),c=this.clone(e),c.prop=t+"box-direction",c.value=u,this.needCascade(e)&&(c.raws.before=this.calcBefore(r,e,t)),e.parent.insertBefore(e,c)}old(e,t){let r;return[r,t]=Gy(t),2009===r?[t+"box-orient",t+"box-direction"]:super.old(e,t)}};Dl.names=["flex-direction","box-direction","box-orient"],Hy.exports=Dl})),Jy=v(((P4,Qy)=>{l();var I_=R(),Il=class extends I_{check(e){return"pixelated"===e.value}prefixed(e,t){return"-ms-"===t?"-ms-interpolation-mode":super.prefixed(e,t)}set(e,t){return"-ms-"!==t?super.set(e,t):(e.prop="-ms-interpolation-mode",e.value="nearest-neighbor",e)}normalize(){return"image-rendering"}process(e,t){return super.process(e,t)}};Il.names=["image-rendering","interpolation-mode"],Qy.exports=Il})),Ky=v(((D4,Xy)=>{l();var q_=R(),R_=fe(),ql=class extends q_{constructor(e,t,r){super(e,t,r),this.prefixes&&(this.prefixes=R_.uniq(this.prefixes.map((n=>"-ms-"===n?"-webkit-":n))))}};ql.names=["backdrop-filter"],Xy.exports=ql})),ew=v(((I4,Zy)=>{l();var M_=R(),B_=fe(),Rl=class extends M_{constructor(e,t,r){super(e,t,r),this.prefixes&&(this.prefixes=B_.uniq(this.prefixes.map((n=>"-ms-"===n?"-webkit-":n))))}check(e){return"text"===e.value.toLowerCase()}};Rl.names=["background-clip"],Zy.exports=Rl})),rw=v(((q4,tw)=>{l();var F_=R(),N_=["none","underline","overline","line-through","blink","inherit","initial","unset"],Ml=class extends F_{check(e){return e.value.split(/\s+/).some((t=>!N_.includes(t)))}};Ml.names=["text-decoration"],tw.exports=Ml})),sw=v(((R4,nw)=>{l();var iw=he(),L_=R(),tr=class extends L_{prefixed(e,t){let r;return[r,t]=iw(t),2009===r?t+"box-pack":2012===r?t+"flex-pack":super.prefixed(e,t)}normalize(){return"justify-content"}set(e,t){let r=iw(t)[0];if(2009===r||2012===r){let n=tr.oldValues[e.value]||e.value;if(e.value=n,2009!==r||"distribute"!==n)return super.set(e,t)}else if("final"===r)return super.set(e,t)}};tr.names=["justify-content","flex-pack","box-pack"],tr.oldValues={"flex-end":"end","flex-start":"start","space-between":"justify","space-around":"distribute"},nw.exports=tr})),ow=v(((M4,aw)=>{l();var $_=R(),Bl=class extends $_{set(e,t){let r=e.value.toLowerCase();return"-webkit-"===t&&!r.includes(" ")&&"contain"!==r&&"cover"!==r&&(e.value=e.value+" "+e.value),super.set(e,t)}};Bl.names=["background-size"],aw.exports=Bl})),uw=v(((B4,lw)=>{l();var j_=R(),Fl=ht(),Nl=class extends j_{insert(e,t,r){if("-ms-"!==t)return super.insert(e,t,r);let n=Fl.parse(e),[a,s]=Fl.translate(n,0,1);n[0]&&n[0].includes("span")&&(s=n[0].join("").replace(/\D/g,"")),[[e.prop,a],[`${e.prop}-span`,s]].forEach((([u,c])=>{Fl.insertDecl(e,u,c)}))}};Nl.names=["grid-row","grid-column"],lw.exports=Nl})),pw=v(((F4,cw)=>{l();var z_=R(),{prefixTrackProp:fw,prefixTrackValue:V_,autoplaceGridItems:U_,getGridGap:W_,inheritGridGap:G_}=ht(),H_=il(),Ll=class extends z_{prefixed(e,t){return"-ms-"===t?fw({prop:e,prefix:t}):super.prefixed(e,t)}normalize(e){return e.replace(/^grid-(rows|columns)/,"grid-template-$1")}insert(e,t,r,n){if("-ms-"!==t)return super.insert(e,t,r);let{parent:a,prop:s,value:o}=e,u=s.includes("rows"),c=s.includes("columns"),f=a.some((k=>"grid-template"===k.prop||"grid-template-areas"===k.prop));if(f&&u)return!1;let d=new H_({options:{}}),p=d.gridStatus(a,n),m=W_(e);m=G_(e,m)||m;let w=u?m.row:m.column;("no-autoplace"===p||!0===p)&&!f&&(w=null);let x=V_({value:o,gap:w});e.cloneBefore({prop:fw({prop:s,prefix:t}),value:x});let y=a.nodes.find((k=>"grid-auto-flow"===k.prop)),b="row";if(y&&!d.disabled(y,n)&&(b=y.value.trim()),"autoplace"===p){let k=a.nodes.find((_=>"grid-template-rows"===_.prop));if(!k&&f)return;if(!k&&!f)return void e.warn(n,"Autoplacement does not work without grid-template-rows property");!a.nodes.find((_=>"grid-template-columns"===_.prop))&&!f&&e.warn(n,"Autoplacement does not work without grid-template-columns property"),c&&!f&&U_(e,n,m,b)}}};Ll.names=["grid-template-rows","grid-template-columns","grid-rows","grid-columns"],cw.exports=Ll})),hw=v(((N4,dw)=>{l();var Y_=R(),$l=class extends Y_{check(e){return!e.value.includes("flex-")&&"baseline"!==e.value}prefixed(e,t){return t+"grid-column-align"}normalize(){return"justify-self"}};$l.names=["grid-column-align"],dw.exports=$l})),gw=v(((L4,mw)=>{l();var Q_=R(),jl=class extends Q_{prefixed(e,t){return t+"scroll-chaining"}normalize(){return"overscroll-behavior"}set(e,t){return"auto"===e.value?e.value="chained":("none"===e.value||"contain"===e.value)&&(e.value="none"),super.set(e,t)}};jl.names=["overscroll-behavior","scroll-chaining"],mw.exports=jl})),bw=v((($4,ww)=>{l();var J_=R(),{parseGridAreas:X_,warnMissedAreas:K_,prefixTrackProp:Z_,prefixTrackValue:yw,getGridGap:e5,warnGridGap:t5,inheritGridGap:r5}=ht();var zl=class extends J_{insert(e,t,r,n){if("-ms-"!==t)return super.insert(e,t,r);let a=!1,s=!1,o=e.parent,u=e5(e);u=r5(e,u)||u,o.walkDecls(/-ms-grid-rows/,(d=>d.remove())),o.walkDecls(/grid-template-(rows|columns)/,(d=>{if("grid-template-rows"===d.prop){s=!0;let{prop:p,value:m}=d;d.cloneBefore({prop:Z_({prop:p,prefix:t}),value:yw({value:m,gap:u.row})})}else a=!0}));let c=e.value.trim().slice(1,-1).split(/["']\s*["']?/g);a&&!s&&u.row&&c.length>1&&e.cloneBefore({prop:"-ms-grid-rows",value:yw({value:`repeat(${c.length}, auto)`,gap:u.row}),raws:{}}),t5({gap:u,hasColumns:a,decl:e,result:n});let f=X_({rows:c,gap:u});return K_(f,e,n),e}};zl.names=["grid-template-areas"],ww.exports=zl})),xw=v(((j4,vw)=>{l();var n5=R(),Vl=class extends n5{set(e,t){return"-webkit-"===t&&(e.value=e.value.replace(/\s*(right|left)\s*/i,"")),super.set(e,t)}};Vl.names=["text-emphasis-position"],vw.exports=Vl})),Sw=v(((z4,kw)=>{l();var s5=R(),Ul=class extends s5{set(e,t){return"text-decoration-skip-ink"===e.prop&&"auto"===e.value?(e.prop=t+"text-decoration-skip",e.value="ink",e):super.set(e,t)}};Ul.names=["text-decoration-skip-ink","text-decoration-skip"],kw.exports=Ul})),Tw=v(((V4,Ew)=>{function Cw(i,e,t){var r=e-i;return((t-i)%r+r)%r+i}function Aw(i,e,t){return Math.max(i,Math.min(e,t))}function _w(i,e,t,r,n){if(!Wl(i,e,t,r,n))throw new Error(t+" is outside of range ["+i+","+e+")");return t}function Wl(i,e,t,r,n){return!(t<i||t>e||n&&t===e||r&&t===i)}function Ow(i,e,t,r){return(t?"(":"[")+i+","+e+(r?")":"]")}l(),Ew.exports={wrap:Cw,limit:Aw,validate:_w,test:Wl,curry:function(i,e,t,r){var n=Ow.bind(null,i,e,t,r);return{wrap:Cw.bind(null,i,e),limit:Aw.bind(null,i,e),validate:function(a){return _w(i,e,a,t,r)},test:function(a){return Wl(i,e,a,t,r)},toString:n,name:n}},name:Ow}})),Iw=v(((U4,Dw)=>{l();var Gl=Gn(),o5=Tw(),l5=Gt(),u5=ke(),f5=fe(),Pw=/top|left|right|bottom/gi,Qe=class extends u5{replace(e,t){let r=Gl(e);for(let n of r.nodes)if("function"===n.type&&n.value===this.name)if(n.nodes=this.newDirection(n.nodes),n.nodes=this.normalize(n.nodes),"-webkit- old"===t){if(!this.oldWebkit(n))return!1}else n.nodes=this.convertDirection(n.nodes),n.value=t+n.value;return r.toString()}replaceFirst(e,...t){return t.map((n=>" "===n?{type:"space",value:n}:{type:"word",value:n})).concat(e.slice(1))}normalizeUnit(e,t){return parseFloat(e)/t*360+"deg"}normalize(e){if(!e[0])return e;if(/-?\d+(.\d+)?grad/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,400);else if(/-?\d+(.\d+)?rad/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,2*Math.PI);else if(/-?\d+(.\d+)?turn/.test(e[0].value))e[0].value=this.normalizeUnit(e[0].value,1);else if(e[0].value.includes("deg")){let t=parseFloat(e[0].value);t=o5.wrap(0,360,t),e[0].value=`${t}deg`}return"0deg"===e[0].value?e=this.replaceFirst(e,"to"," ","top"):"90deg"===e[0].value?e=this.replaceFirst(e,"to"," ","right"):"180deg"===e[0].value?e=this.replaceFirst(e,"to"," ","bottom"):"270deg"===e[0].value&&(e=this.replaceFirst(e,"to"," ","left")),e}newDirection(e){if("to"===e[0].value||(Pw.lastIndex=0,!Pw.test(e[0].value)))return e;e.unshift({type:"word",value:"to"},{type:"space",value:" "});for(let t=2;t<e.length&&"div"!==e[t].type;t++)"word"===e[t].type&&(e[t].value=this.revertDirection(e[t].value));return e}isRadial(e){let t="before";for(let r of e)if("before"===t&&"space"===r.type)t="at";else if("at"===t&&"at"===r.value)t="after";else{if("after"===t&&"space"===r.type)return!0;if("div"===r.type)break;t="before"}return!1}convertDirection(e){return e.length>0&&("to"===e[0].value?this.fixDirection(e):e[0].value.includes("deg")?this.fixAngle(e):this.isRadial(e)&&this.fixRadial(e)),e}fixDirection(e){e.splice(0,2);for(let t of e){if("div"===t.type)break;"word"===t.type&&(t.value=this.revertDirection(t.value))}}fixAngle(e){let t=e[0].value;t=parseFloat(t),t=Math.abs(450-t)%360,t=this.roundFloat(t,3),e[0].value=`${t}deg`}fixRadial(e){let n,a,s,o,u,c,t=[],r=[];for(o=0;o<e.length-2;o++){if(n=e[o],a=e[o+1],s=e[o+2],"space"===n.type&&"at"===a.value&&"space"===s.type){u=o+3;break}t.push(n)}for(o=u;o<e.length;o++){if("div"===e[o].type){c=e[o];break}r.push(e[o])}e.splice(0,o,...r,c,...t)}revertDirection(e){return Qe.directions[e.toLowerCase()]||e}roundFloat(e,t){return parseFloat(e.toFixed(t))}oldWebkit(e){let{nodes:t}=e,r=Gl.stringify(e.nodes);if("linear-gradient"!==this.name||t[0]&&t[0].value.includes("deg")||r.includes("px")||r.includes("-corner")||r.includes("-side"))return!1;let n=[[]];for(let a of t)n[n.length-1].push(a),"div"===a.type&&","===a.value&&n.push([]);this.oldDirection(n),this.colorStops(n),e.nodes=[];for(let a of n)e.nodes=e.nodes.concat(a);return e.nodes.unshift({type:"word",value:"linear"},this.cloneDiv(e.nodes)),e.value="-webkit-gradient",!0}oldDirection(e){let t=this.cloneDiv(e[0]);if("to"!==e[0][0].value)return e.unshift([{type:"word",value:Qe.oldDirections.bottom},t]);{let r=[];for(let a of e[0].slice(2))"word"===a.type&&r.push(a.value.toLowerCase());r=r.join(" ");let n=Qe.oldDirections[r]||r;return e[0]=[{type:"word",value:n},t],e[0]}}cloneDiv(e){for(let t of e)if("div"===t.type&&","===t.value)return t;return{type:"div",value:",",after:" "}}colorStops(e){let t=[];for(let r=0;r<e.length;r++){let n,s,a=e[r];if(0===r)continue;let u,o=Gl.stringify(a[0]);a[1]&&"word"===a[1].type?n=a[1].value:a[2]&&"word"===a[2].type&&(n=a[2].value),u=1!==r||n&&"0%"!==n?r!==e.length-1||n&&"100%"!==n?n?`color-stop(${n}, ${o})`:`color-stop(${o})`:`to(${o})`:`from(${o})`;let c=a[a.length-1];e[r]=[{type:"word",value:u}],"div"===c.type&&","===c.value&&(s=e[r].push(c)),t.push(s)}return t}old(e){if("-webkit-"===e){let t="linear-gradient"===this.name?"linear":"radial",r="-gradient",n=f5.regexp(`-webkit-(${t}-gradient|gradient\\(\\s*${t})`,!1);return new l5(this.name,e+this.name,r,n)}return super.old(e)}add(e,t){let r=e.prop;if(r.includes("mask")){if("-webkit-"===t||"-webkit- old"===t)return super.add(e,t)}else{if("list-style"!==r&&"list-style-image"!==r&&"content"!==r)return super.add(e,t);if("-webkit-"===t||"-webkit- old"===t)return super.add(e,t)}}};Qe.names=["linear-gradient","repeating-linear-gradient","radial-gradient","repeating-radial-gradient"],Qe.directions={top:"bottom",left:"right",bottom:"top",right:"left"},Qe.oldDirections={top:"left bottom, left top",left:"right top, left top",bottom:"left top, left bottom",right:"left top, right top","top right":"left bottom, right top","top left":"right bottom, left top","right top":"left bottom, right top","right bottom":"left top, right bottom","bottom right":"left top, right bottom","bottom left":"right top, left bottom","left top":"right bottom, left top","left bottom":"right top, left bottom"},Dw.exports=Qe})),Mw=v(((W4,Rw)=>{l();var c5=Gt(),p5=ke();function qw(i){return new RegExp(`(^|[\\s,(])(${i}($|[\\s),]))`,"gi")}var Hl=class extends p5{regexp(){return this.regexpCache||(this.regexpCache=qw(this.name)),this.regexpCache}isStretch(){return"stretch"===this.name||"fill"===this.name||"fill-available"===this.name}replace(e,t){return"-moz-"===t&&this.isStretch()?e.replace(this.regexp(),"$1-moz-available$3"):"-webkit-"===t&&this.isStretch()?e.replace(this.regexp(),"$1-webkit-fill-available$3"):super.replace(e,t)}old(e){let t=e+this.name;return this.isStretch()&&("-moz-"===e?t="-moz-available":"-webkit-"===e&&(t="-webkit-fill-available")),new c5(this.name,t,t,qw(t))}add(e,t){if(!e.prop.includes("grid")||"-webkit-"===t)return super.add(e,t)}};Hl.names=["max-content","min-content","fit-content","fill","fill-available","stretch"],Rw.exports=Hl})),Nw=v(((G4,Fw)=>{l();var Bw=Gt(),d5=ke(),Yl=class extends d5{replace(e,t){return"-webkit-"===t?e.replace(this.regexp(),"$1-webkit-optimize-contrast"):"-moz-"===t?e.replace(this.regexp(),"$1-moz-crisp-edges"):super.replace(e,t)}old(e){return"-webkit-"===e?new Bw(this.name,"-webkit-optimize-contrast"):"-moz-"===e?new Bw(this.name,"-moz-crisp-edges"):super.old(e)}};Yl.names=["pixelated"],Fw.exports=Yl})),$w=v(((H4,Lw)=>{l();var h5=ke(),Ql=class extends h5{replace(e,t){let r=super.replace(e,t);return"-webkit-"===t&&(r=r.replace(/("[^"]+"|'[^']+')(\s+\d+\w)/gi,"url($1)$2")),r}};Ql.names=["image-set"],Lw.exports=Ql})),zw=v(((Y4,jw)=>{l();var m5=ge().list,g5=ke(),Jl=class extends g5{replace(e,t){return m5.space(e).map((r=>{if(r.slice(0,+this.name.length+1)!==this.name+"(")return r;let n=r.lastIndexOf(")"),a=r.slice(n+1),s=r.slice(this.name.length+1,n);if("-webkit-"===t){let o=s.match(/\d*.?\d+%?/);o?(s=s.slice(o[0].length).trim(),s+=`, ${o[0]}`):s+=", 0.5"}return t+this.name+"("+s+")"+a})).join(" ")}};Jl.names=["cross-fade"],jw.exports=Jl})),Uw=v(((Q4,Vw)=>{l();var y5=he(),w5=Gt(),b5=ke(),Xl=class extends b5{constructor(e,t){super(e,t),"display-flex"===e&&(this.name="flex")}check(e){return"display"===e.prop&&e.value===this.name}prefixed(e){let t,r;return[t,e]=y5(e),2009===t?r="flex"===this.name?"box":"inline-box":2012===t?r="flex"===this.name?"flexbox":"inline-flexbox":"final"===t&&(r=this.name),e+r}replace(e,t){return this.prefixed(t)}old(e){let t=this.prefixed(e);if(t)return new w5(this.name,t)}};Xl.names=["display-flex","inline-flex"],Vw.exports=Xl})),Gw=v(((J4,Ww)=>{l();var v5=ke(),Kl=class extends v5{constructor(e,t){super(e,t),"display-grid"===e&&(this.name="grid")}check(e){return"display"===e.prop&&e.value===this.name}};Kl.names=["display-grid","inline-grid"],Ww.exports=Kl})),Yw=v(((X4,Hw)=>{l();var x5=ke(),Zl=class extends x5{constructor(e,t){super(e,t),"filter-function"===e&&(this.name="filter")}};Zl.names=["filter","filter-function"],Hw.exports=Zl})),Kw=v(((K4,Xw)=>{l();var Qw=ii(),M=R(),Jw=Dm(),k5=Qm(),S5=il(),C5=hg(),eu=pt(),rr=Ht(),A5=kg(),Le=ke(),ir=fe(),_5=Cg(),O5=_g(),E5=Eg(),T5=Pg(),P5=Mg(),D5=Ng(),I5=$g(),q5=zg(),R5=Ug(),M5=Gg(),B5=Yg(),F5=Jg(),N5=Kg(),L5=ey(),$5=ry(),j5=sy(),z5=oy(),V5=fy(),U5=py(),W5=hy(),G5=yy(),H5=by(),Y5=ky(),Q5=Cy(),J5=_y(),X5=Ey(),K5=Py(),Z5=qy(),eO=My(),tO=Fy(),rO=Ly(),iO=jy(),nO=Vy(),sO=Wy(),aO=Yy(),oO=Jy(),lO=Ky(),uO=ew(),fO=rw(),cO=sw(),pO=ow(),dO=uw(),hO=pw(),mO=hw(),gO=gw(),yO=bw(),wO=xw(),bO=Sw(),vO=Iw(),xO=Mw(),kO=Nw(),SO=$w(),CO=zw(),AO=Uw(),_O=Gw(),OO=Yw();rr.hack(_5),rr.hack(O5),rr.hack(E5),rr.hack(T5),M.hack(P5),M.hack(D5),M.hack(I5),M.hack(q5),M.hack(R5),M.hack(M5),M.hack(B5),M.hack(F5),M.hack(N5),M.hack(L5),M.hack($5),M.hack(j5),M.hack(z5),M.hack(V5),M.hack(U5),M.hack(W5),M.hack(G5),M.hack(H5),M.hack(Y5),M.hack(Q5),M.hack(J5),M.hack(X5),M.hack(K5),M.hack(Z5),M.hack(eO),M.hack(tO),M.hack(rO),M.hack(iO),M.hack(nO),M.hack(sO),M.hack(aO),M.hack(oO),M.hack(lO),M.hack(uO),M.hack(fO),M.hack(cO),M.hack(pO),M.hack(dO),M.hack(hO),M.hack(mO),M.hack(gO),M.hack(yO),M.hack(wO),M.hack(bO),Le.hack(vO),Le.hack(xO),Le.hack(kO),Le.hack(SO),Le.hack(CO),Le.hack(AO),Le.hack(_O),Le.hack(OO);var tu=new Map,si=class{constructor(e,t,r={}){this.data=e,this.browsers=t,this.options=r,[this.add,this.remove]=this.preprocess(this.select(this.data)),this.transition=new k5(this),this.processor=new S5(this)}cleaner(){if(this.cleanerCache)return this.cleanerCache;if(!this.browsers.selected.length)return this;{let e=new eu(this.browsers.data,[]);this.cleanerCache=new si(this.data,e,this.options)}return this.cleanerCache}select(e){let t={add:{},remove:{}};for(let r in e){let n=e[r],a=n.browsers.map((u=>{let c=u.split(" ");return{browser:`${c[0]} ${c[1]}`,note:c[2]}})),s=a.filter((u=>u.note)).map((u=>`${this.browsers.prefix(u.browser)} ${u.note}`));s=ir.uniq(s),a=a.filter((u=>this.browsers.isSelected(u.browser))).map((u=>{let c=this.browsers.prefix(u.browser);return u.note?`${c} ${u.note}`:c})),a=this.sort(ir.uniq(a)),"no-2009"===this.options.flexbox&&(a=a.filter((u=>!u.includes("2009"))));let o=n.browsers.map((u=>this.browsers.prefix(u)));n.mistakes&&(o=o.concat(n.mistakes)),o=o.concat(s),o=ir.uniq(o),a.length?(t.add[r]=a,a.length<o.length&&(t.remove[r]=o.filter((u=>!a.includes(u))))):t.remove[r]=o}return t}sort(e){return e.sort(((t,r)=>{let n=ir.removeNote(t).length,a=ir.removeNote(r).length;return n===a?r.length-t.length:a-n}))}preprocess(e){let t={selectors:[],"@supports":new C5(si,this)};for(let n in e.add){let a=e.add[n];if("@keyframes"===n||"@viewport"===n)t[n]=new A5(n,a,this);else if("@resolution"===n)t[n]=new Jw(n,a,this);else if(this.data[n].selector)t.selectors.push(rr.load(n,a,this));else{let s=this.data[n].props;if(s){let o=Le.load(n,a,this);for(let u of s)t[u]||(t[u]={values:[]}),t[u].values.push(o)}else{let o=t[n]&&t[n].values||[];t[n]=M.load(n,a,this),t[n].values=o}}}let r={selectors:[]};for(let n in e.remove){let a=e.remove[n];if(this.data[n].selector){let s=rr.load(n,a);for(let o of a)r.selectors.push(s.old(o))}else if("@keyframes"===n||"@viewport"===n)for(let s of a){r[`@${s}${n.slice(1)}`]={remove:!0}}else if("@resolution"===n)r[n]=new Jw(n,a,this);else{let s=this.data[n].props;if(s){let o=Le.load(n,[],this);for(let u of a){let c=o.old(u);if(c)for(let f of s)r[f]||(r[f]={}),r[f].values||(r[f].values=[]),r[f].values.push(c)}}else for(let o of a){let u=this.decl(n).old(n,o);if("align-self"===n){let c=t[n]&&t[n].prefixes;if(c){if("-webkit- 2009"===o&&c.includes("-webkit-"))continue;if("-webkit-"===o&&c.includes("-webkit- 2009"))continue}}for(let c of u)r[c]||(r[c]={}),r[c].remove=!0}}}return[t,r]}decl(e){return tu.has(e)||tu.set(e,M.load(e)),tu.get(e)}unprefixed(e){let t=this.normalize(Qw.unprefixed(e));return"flex-direction"===t&&(t="flex-flow"),t}normalize(e){return this.decl(e).normalize(e)}prefixed(e,t){return e=Qw.unprefixed(e),this.decl(e).prefixed(e,t)}values(e,t){let r=this[e],n=r["*"]&&r["*"].values,a=r[t]&&r[t].values;return n&&a?ir.uniq(n.concat(a)):n||a||[]}group(e){let t=e.parent,r=t.index(e),{length:n}=t.nodes,a=this.unprefixed(e.prop),s=(o,u)=>{for(r+=o;r>=0&&r<n;){let c=t.nodes[r];if("decl"===c.type){if(-1===o&&c.prop===a&&!eu.withPrefix(c.value)||this.unprefixed(c.prop)!==a)break;if(!0===u(c))return!0;if(1===o&&c.prop===a&&!eu.withPrefix(c.value))break}r+=o}return!1};return{up:o=>s(-1,o),down:o=>s(1,o)}}};Xw.exports=si})),eb=v(((Z4,Zw)=>{l(),Zw.exports={"backdrop-filter":{feature:"css-backdrop-filter",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},element:{props:["background","background-image","border-image","mask","list-style","list-style-image","content","mask-image"],feature:"css-element-function",browsers:["firefox 114"]},"user-select":{mistakes:["-khtml-"],feature:"user-select-none",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},"background-clip":{feature:"background-clip-text",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},hyphens:{feature:"css-hyphens",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},fill:{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"fill-available":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},stretch:{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"fit-content":{props:["width","min-width","max-width","height","min-height","max-height","inline-size","min-inline-size","max-inline-size","block-size","min-block-size","max-block-size","grid","grid-template","grid-template-rows","grid-template-columns","grid-auto-columns","grid-auto-rows"],feature:"intrinsic-width",browsers:["firefox 114"]},"text-decoration-style":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-color":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-line":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-skip":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-decoration-skip-ink":{feature:"text-decoration",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"text-size-adjust":{feature:"text-size-adjust",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5"]},"mask-clip":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-composite":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-image":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-origin":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-repeat":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-repeat":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-source":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},mask:{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-position":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-size":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-outset":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-width":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"mask-border-slice":{feature:"css-masks",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},"clip-path":{feature:"css-clip-path",browsers:["samsung 21"]},"box-decoration-break":{feature:"css-boxdecorationbreak",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","opera 99","safari 16.5","samsung 21"]},appearance:{feature:"css-appearance",browsers:["samsung 21"]},"image-set":{props:["background","background-image","border-image","cursor","mask","mask-image","list-style","list-style-image","content"],feature:"css-image-set",browsers:["and_uc 15.5","chrome 109","samsung 21"]},"cross-fade":{props:["background","background-image","border-image","mask","list-style","list-style-image","content","mask-image"],feature:"css-cross-fade",browsers:["and_chr 114","and_uc 15.5","chrome 109","chrome 113","chrome 114","edge 114","opera 99","samsung 21"]},isolate:{props:["unicode-bidi"],feature:"css-unicode-bidi",browsers:["ios_saf 16.1","ios_saf 16.3","ios_saf 16.4","ios_saf 16.5","safari 16.5"]},"color-adjust":{feature:"css-color-adjust",browsers:["chrome 109","chrome 113","chrome 114","edge 114","opera 99"]}}})),rb=v(((eq,tb)=>{l(),tb.exports={}})),ab=v(((tq,sb)=>{l();var EO=Wo(),{agents:TO}=($n(),Ln),ru=ym(),PO=pt(),DO=Kw(),IO=eb(),qO=rb(),ib={browsers:TO,prefixes:IO},nb="\n Replace Autoprefixer `browsers` option to Browserslist config.\n Use `browserslist` key in `package.json` or `.browserslistrc` file.\n\n Using `browsers` option can cause errors. Browserslist config can\n be used for Babel, Autoprefixer, postcss-normalize and other tools.\n\n If you really need to use option, rename it to `overrideBrowserslist`.\n\n Learn more at:\n https://github.com/browserslist/browserslist#readme\n https://twitter.com/browserslist\n\n";var iu=new Map;function nr(...i){let e;if(1===i.length&&function(i){return"[object Object]"===Object.prototype.toString.apply(i)}(i[0])?(e=i[0],i=void 0):0===i.length||1===i.length&&!i[0]?i=void 0:i.length<=2&&(Array.isArray(i[0])||!i[0])?(e=i[1],i=i[0]):"object"==typeof i[i.length-1]&&(e=i.pop()),e||(e={}),e.browser)throw new Error("Change `browser` option to `overrideBrowserslist` in Autoprefixer");if(e.browserslist)throw new Error("Change `browserslist` option to `overrideBrowserslist` in Autoprefixer");e.overrideBrowserslist?i=e.overrideBrowserslist:e.browsers&&("undefined"!=typeof console&&console.warn&&(ru.red?console.warn(ru.red(nb.replace(/`[^`]+`/g,(n=>ru.yellow(n.slice(1,-1)))))):console.warn(nb)),i=e.browsers);let t={ignoreUnknownVersions:e.ignoreUnknownVersions,stats:e.stats,env:e.env};function r(n){let a=ib,s=new PO(a.browsers,i,n,t),o=s.selected.join(", ")+JSON.stringify(e);return iu.has(o)||iu.set(o,new DO(a.prefixes,s,e)),iu.get(o)}return{postcssPlugin:"autoprefixer",prepare(n){let a=r({from:n.opts.from,env:e.env});return{OnceExit(s){(function(i,e){0!==e.browsers.selected.length&&(e.add.selectors.length>0||Object.keys(e.add).length>2||i.warn("Autoprefixer target browsers do not need any prefixes.You do not need Autoprefixer anymore.\nCheck your Browserslist config to be sure that your targets are set up correctly.\n\n Learn more at:\n https://github.com/postcss/autoprefixer#readme\n https://github.com/browserslist/browserslist#readme\n\n"))})(n,a),!1!==e.remove&&a.processor.remove(s,n),!1!==e.add&&a.processor.add(s,n)}}},info:n=>((n=n||{}).from=n.from||h.cwd(),qO(r(n))),options:e,browsers:i}}sb.exports=nr,nr.postcss=!0,nr.data=ib,nr.defaults=EO.defaults,nr.info=()=>nr().info()})),ob={};Ae(ob,{default:()=>BO});var BO,lb=C((()=>{l(),BO=[]})),fb={};Ae(fb,{default:()=>FO});var ub,FO,cb=C((()=>{l(),hi(),ub=K(bi()),FO=Ze(ub.default.theme)})),db={};Ae(db,{default:()=>NO});var pb,NO,hb=C((()=>{l(),hi(),pb=K(bi()),NO=Ze(pb.default)}));l();var LO=Je(mm()),$O=Je(ge()),jO=Je(ab()),zO=Je((lb(),ob)),VO=Je((cb(),fb)),UO=Je((hb(),db)),WO=Je((Zn(),ku)),GO=Je((wo(),yo)),HO=Je((hs(),tf));function Je(i){return i&&i.__esModule?i:{default:i}}console.warn("cdn.tailwindcss.com should not be used in production. To use Tailwind CSS in production, install it as a PostCSS plugin or use the Tailwind CLI: https://tailwindcss.com/docs/installation");var xt,au,Hn="tailwind",nu="text/tailwindcss",mb="/template.html",gb=!0,yb=0,su=new Set,wb="",bb=(i=!1)=>({get:(e,t)=>i&&"config"!==t||"object"!=typeof e[t]||null===e[t]?e[t]:new Proxy(e[t],bb()),set:(e,t,r)=>(e[t]=r,(!i||"config"===t)&&ou(!0),!0)});function vb(i){au.observe(i,{attributes:!0,attributeFilter:["type"],characterData:!0,subtree:!0,childList:!0})}async function ou(i=!1){i&&(yb++,su.clear());let e="";for(let r of document.querySelectorAll(`style[type="${nu}"]`))e+=r.textContent;let t=new Set;for(let r of document.querySelectorAll("[class]"))for(let n of r.classList)su.has(n)||t.add(n);if(document.body&&(gb||t.size>0||e!==wb||!xt||!xt.isConnected)){for(let n of t)su.add(n);gb=!1,wb=e,self[mb]=Array.from(t).join(" ");let{css:r}=await(0,$O.default)([(0,LO.default)({...window[Hn].config,_hash:yb,content:[mb],plugins:[...zO.default,...Array.isArray(window[Hn].config.plugins)?window[Hn].config.plugins:[]]}),(0,jO.default)({remove:!1})]).process(`@tailwind base;@tailwind components;@tailwind utilities;${e}`);(!xt||!xt.isConnected)&&(xt=document.createElement("style"),document.head.append(xt)),xt.textContent=r}}window[Hn]=new Proxy({config:{},defaultTheme:VO.default,defaultConfig:UO.default,colors:WO.default,plugin:GO.default,resolveConfig:HO.default},bb(!0)),new MutationObserver((async i=>{let e=!1;if(!au){au=new MutationObserver((async()=>await ou(!0)));for(let t of document.querySelectorAll(`style[type="${nu}"]`))vb(t)}for(let t of i)for(let r of t.addedNodes)1===r.nodeType&&"STYLE"===r.tagName&&r.getAttribute("type")===nu&&(vb(r),e=!0);await ou(e)})).observe(document.documentElement,{attributes:!0,attributeFilter:["class"],childList:!0,subtree:!0})})(); -/*! https://mths.be/cssesc v3.0.0 by @mathias */ \ No newline at end of file + */function M(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n<arguments.length;n++)t+="&args[]="+encodeURIComponent(arguments[n]);return"Minified React error #"+e+"; visit "+t+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var hc=new Set,Gr={};function xn(e,t){tr(e,t),tr(e+"Capture",t)}function tr(e,t){for(Gr[e]=t,e=0;e<t.length;e++)hc.add(t[e])}var Wt=!(typeof window>"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Ws=Object.prototype.hasOwnProperty,bm=/^[: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]*$/,Ec={},Ac={};function Ye(e,t,n,r,o,a,s){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=a,this.removeEmptyString=s}var Me={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){Me[e]=new Ye(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var t=e[0];Me[t]=new Ye(t,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){Me[e]=new Ye(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){Me[e]=new Ye(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){Me[e]=new Ye(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){Me[e]=new Ye(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){Me[e]=new Ye(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){Me[e]=new Ye(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){Me[e]=new Ye(e,5,!1,e.toLowerCase(),null,!1,!1)}));var Ys=/[\-:]([a-z])/g;function Ks(e){return e[1].toUpperCase()}function Xs(e,t,n,r){var o=Me.hasOwnProperty(t)?Me[t]:null;(null!==o?0!==o.type:r||!(2<t.length)||"o"!==t[0]&&"O"!==t[0]||"n"!==t[1]&&"N"!==t[1])&&(function(e,t,n,r){if(null===t||typeof t>"u"||function(e,t,n,r){if(null!==n&&0===n.type)return!1;switch(typeof t){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==n?!n.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,t,n,r))return!0;if(r)return!1;if(null!==n)switch(n.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,n,o,r)&&(n=null),r||null===o?function(e){return!!Ws.call(Ac,e)||!Ws.call(Ec,e)&&(bm.test(e)?Ac[e]=!0:(Ec[e]=!0,!1))}(t)&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n)):o.mustUseProperty?e[o.propertyName]=null===n?3!==o.type&&"":n:(t=o.attributeName,r=o.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(o=o.type)||4===o&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}"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(Ys,Ks);Me[t]=new Ye(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(Ys,Ks);Me[t]=new Ye(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(Ys,Ks);Me[t]=new Ye(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((function(e){Me[e]=new Ye(e,1,!1,e.toLowerCase(),null,!1,!1)})),Me.xlinkHref=new Ye("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((function(e){Me[e]=new Ye(e,1,!1,e.toLowerCase(),null,!0,!0)}));var Yt=gc.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,Qo=Symbol.for("react.element"),nr=Symbol.for("react.portal"),rr=Symbol.for("react.fragment"),Qs=Symbol.for("react.strict_mode"),Js=Symbol.for("react.profiler"),bc=Symbol.for("react.provider"),_c=Symbol.for("react.context"),ei=Symbol.for("react.forward_ref"),ti=Symbol.for("react.suspense"),ni=Symbol.for("react.suspense_list"),ri=Symbol.for("react.memo"),sn=Symbol.for("react.lazy"),vc=Symbol.for("react.offscreen"),Dc=Symbol.iterator;function $r(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=Dc&&e[Dc]||e["@@iterator"])?e:null}var oi,_e=Object.assign;function Zr(e){if(void 0===oi)try{throw Error()}catch(n){var t=n.stack.trim().match(/\n( *(at )?)/);oi=t&&t[1]||""}return"\n"+oi+e}var ai=!1;function si(e,t){if(!e||ai)return"";ai=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(u){var r=u}Reflect.construct(e,[],t)}else{try{t.call()}catch(u){r=u}e.call(t.prototype)}else{try{throw Error()}catch(u){r=u}e()}}catch(u){if(u&&r&&"string"==typeof u.stack){for(var o=u.stack.split("\n"),a=r.stack.split("\n"),s=o.length-1,i=a.length-1;1<=s&&0<=i&&o[s]!==a[i];)i--;for(;1<=s&&0<=i;s--,i--)if(o[s]!==a[i]){if(1!==s||1!==i)do{if(s--,0>--i||o[s]!==a[i]){var l="\n"+o[s].replace(" at new "," at ");return e.displayName&&l.includes("<anonymous>")&&(l=l.replace("<anonymous>",e.displayName)),l}}while(1<=s&&0<=i);break}}}finally{ai=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?Zr(e):""}function ym(e){switch(e.tag){case 5:return Zr(e.type);case 16:return Zr("Lazy");case 13:return Zr("Suspense");case 19:return Zr("SuspenseList");case 0:case 2:case 15:return e=si(e.type,!1);case 11:return e=si(e.type.render,!1);case 1:return e=si(e.type,!0);default:return""}}function ii(e){if(null==e)return null;if("function"==typeof e)return e.displayName||e.name||null;if("string"==typeof e)return e;switch(e){case rr:return"Fragment";case nr:return"Portal";case Js:return"Profiler";case Qs:return"StrictMode";case ti:return"Suspense";case ni:return"SuspenseList"}if("object"==typeof e)switch(e.$$typeof){case _c:return(e.displayName||"Context")+".Consumer";case bc:return(e._context.displayName||"Context")+".Provider";case ei:var t=e.render;return(e=e.displayName)||(e=""!==(e=t.displayName||t.name||"")?"ForwardRef("+e+")":"ForwardRef"),e;case ri:return null!==(t=e.displayName||null)?t:ii(e.type)||"Memo";case sn:t=e._payload,e=e._init;try{return ii(e(t))}catch{}}return null}function Tm(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=(e=t.render).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 ii(t);case 8:return t===Qs?"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("function"==typeof t)return t.displayName||t.name||null;if("string"==typeof t)return t}return null}function ln(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":case"object":return e;default:return""}}function yc(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function Jo(e){e._valueTracker||(e._valueTracker=function(e){var t=yc(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&typeof n<"u"&&"function"==typeof n.get&&"function"==typeof n.set){var o=n.get,a=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(s){r=""+s,a.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]}}}}(e))}function Tc(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=yc(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function ea(e){if(typeof(e=e||(typeof document<"u"?document:void 0))>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function li(e,t){var n=t.checked;return _e({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function Cc(e,t){var n=null==t.defaultValue?"":t.defaultValue,r=null!=t.checked?t.checked:t.defaultChecked;n=ln(null!=t.value?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function Nc(e,t){null!=(t=t.checked)&&Xs(e,"checked",t,!1)}function ui(e,t){Nc(e,t);var n=ln(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?ci(e,t.type,n):t.hasOwnProperty("defaultValue")&&ci(e,t.type,ln(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function Sc(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(!("submit"!==r&&"reset"!==r||void 0!==t.value&&null!==t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function ci(e,t,n){("number"!==t||ea(e.ownerDocument)!==e)&&(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var jr=Array.isArray;function or(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o<n.length;o++)t["$"+n[o]]=!0;for(n=0;n<e.length;n++)o=t.hasOwnProperty("$"+e[n].value),e[n].selected!==o&&(e[n].selected=o),o&&r&&(e[n].defaultSelected=!0)}else{for(n=""+ln(n),t=null,o=0;o<e.length;o++){if(e[o].value===n)return e[o].selected=!0,void(r&&(e[o].defaultSelected=!0));null!==t||e[o].disabled||(t=e[o])}null!==t&&(t.selected=!0)}}function di(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(M(91));return _e({},t,{value:void 0,defaultValue:void 0,children:""+e._wrapperState.initialValue})}function wc(e,t){var n=t.value;if(null==n){if(n=t.children,t=t.defaultValue,null!=n){if(null!=t)throw Error(M(92));if(jr(n)){if(1<n.length)throw Error(M(93));n=n[0]}t=n}null==t&&(t=""),n=t}e._wrapperState={initialValue:ln(n)}}function xc(e,t){var n=ln(t.value),r=ln(t.defaultValue);null!=n&&((n=""+n)!==e.value&&(e.value=n),null==t.defaultValue&&e.defaultValue!==n&&(e.defaultValue=n)),null!=r&&(e.defaultValue=""+r)}function Rc(e){var t=e.textContent;t===e._wrapperState.initialValue&&""!==t&&null!==t&&(e.value=t)}function Lc(e){switch(e){case"svg":return"http://www.w3.org/2000/svg";case"math":return"http://www.w3.org/1998/Math/MathML";default:return"http://www.w3.org/1999/xhtml"}}function pi(e,t){return null==e||"http://www.w3.org/1999/xhtml"===e?Lc(t):"http://www.w3.org/2000/svg"===e&&"foreignObject"===t?"http://www.w3.org/1999/xhtml":e}var ta,e,Oc=(e=function(e,t){if("http://www.w3.org/2000/svg"!==e.namespaceURI||"innerHTML"in e)e.innerHTML=t;else{for((ta=ta||document.createElement("div")).innerHTML="<svg>"+t.valueOf().toString()+"</svg>",t=ta.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},typeof MSApp<"u"&&MSApp.execUnsafeLocalFunction?function(t,n,r,o){MSApp.execUnsafeLocalFunction((function(){return e(t,n)}))}:e);function Wr(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType)return void(n.nodeValue=t)}e.textContent=t}var Yr={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},Nm=["Webkit","ms","Moz","O"];function kc(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||Yr.hasOwnProperty(e)&&Yr[e]?(""+t).trim():t+"px"}function Ic(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),o=kc(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}Object.keys(Yr).forEach((function(e){Nm.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Yr[t]=Yr[e]}))}));var Sm=_e({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 fi(e,t){if(t){if(Sm[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(M(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(M(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(M(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(M(62))}}function mi(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;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 gi=null;function hi(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var Ei=null,ar=null,sr=null;function Mc(e){if(e=Ao(e)){if("function"!=typeof Ei)throw Error(M(280));var t=e.stateNode;t&&(t=Ta(t),Ei(e.stateNode,e.type,t))}}function Fc(e){ar?sr?sr.push(e):sr=[e]:ar=e}function Bc(){if(ar){var e=ar,t=sr;if(sr=ar=null,Mc(e),t)for(e=0;e<t.length;e++)Mc(t[e])}}function Pc(e,t){return e(t)}function Uc(){}var Ai=!1;function qc(e,t,n){if(Ai)return e(t,n);Ai=!0;try{return Pc(e,t,n)}finally{Ai=!1,(null!==ar||null!==sr)&&(Uc(),Bc())}}function Kr(e,t){var n=e.stateNode;if(null===n)return null;var r=Ta(n);if(null===r)return null;n=r[t];e:switch(t){case"onClick":case"onClickCapture":case"onDoubleClick":case"onDoubleClickCapture":case"onMouseDown":case"onMouseDownCapture":case"onMouseMove":case"onMouseMoveCapture":case"onMouseUp":case"onMouseUpCapture":case"onMouseEnter":(r=!r.disabled)||(r=!("button"===(e=e.type)||"input"===e||"select"===e||"textarea"===e)),e=!r;break e;default:e=!1}if(e)return null;if(n&&"function"!=typeof n)throw Error(M(231,t,typeof n));return n}var bi=!1;if(Wt)try{var Xr={};Object.defineProperty(Xr,"passive",{get:function(){bi=!0}}),window.addEventListener("test",Xr,Xr),window.removeEventListener("test",Xr,Xr)}catch{bi=!1}function wm(e,t,n,r,o,a,s,i,l){var u=Array.prototype.slice.call(arguments,3);try{t.apply(n,u)}catch(c){this.onError(c)}}var Qr=!1,na=null,ra=!1,_i=null,xm={onError:function(e){Qr=!0,na=e}};function Rm(e,t,n,r,o,a,s,i,l){Qr=!1,na=null,wm.apply(xm,arguments)}function Rn(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{4098&(t=e).flags&&(n=t.return),e=t.return}while(e)}return 3===t.tag?n:null}function Hc(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(null!==(e=e.alternate)&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function Vc(e){if(Rn(e)!==e)throw Error(M(188))}function zc(e){return null!==(e=function(e){var t=e.alternate;if(!t){if(null===(t=Rn(e)))throw Error(M(188));return t!==e?null:e}for(var n=e,r=t;;){var o=n.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(r=o.return)){n=r;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===n)return Vc(o),e;if(a===r)return Vc(o),t;a=a.sibling}throw Error(M(188))}if(n.return!==r.return)n=o,r=a;else{for(var s=!1,i=o.child;i;){if(i===n){s=!0,n=o,r=a;break}if(i===r){s=!0,r=o,n=a;break}i=i.sibling}if(!s){for(i=a.child;i;){if(i===n){s=!0,n=a,r=o;break}if(i===r){s=!0,r=a,n=o;break}i=i.sibling}if(!s)throw Error(M(189))}}if(n.alternate!==r)throw Error(M(190))}if(3!==n.tag)throw Error(M(188));return n.stateNode.current===n?e:t}(e))?Gc(e):null}function Gc(e){if(5===e.tag||6===e.tag)return e;for(e=e.child;null!==e;){var t=Gc(e);if(null!==t)return t;e=e.sibling}return null}var $c=lt.unstable_scheduleCallback,Zc=lt.unstable_cancelCallback,km=lt.unstable_shouldYield,Im=lt.unstable_requestPaint,Ne=lt.unstable_now,Mm=lt.unstable_getCurrentPriorityLevel,vi=lt.unstable_ImmediatePriority,jc=lt.unstable_UserBlockingPriority,oa=lt.unstable_NormalPriority,Fm=lt.unstable_LowPriority,Wc=lt.unstable_IdlePriority,aa=null,Pt=null;var St=Math.clz32?Math.clz32:function(e){return e>>>=0,0===e?32:31-(Pm(e)/Um|0)|0},Pm=Math.log,Um=Math.LN2;var sa=64,ia=4194304;function Jr(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 4194240&e;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return 130023424&e;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function la(e,t){var n=e.pendingLanes;if(0===n)return 0;var r=0,o=e.suspendedLanes,a=e.pingedLanes,s=268435455&n;if(0!==s){var i=s&~o;0!==i?r=Jr(i):0!==(a&=s)&&(r=Jr(a))}else 0!==(s=n&~o)?r=Jr(s):0!==a&&(r=Jr(a));if(0===r)return 0;if(0!==t&&t!==r&&!(t&o)&&((o=r&-r)>=(a=t&-t)||16===o&&0!=(4194240&a)))return t;if(4&r&&(r|=16&n),0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0<t;)o=1<<(n=31-St(t)),r|=e[n],t&=~o;return r}function Hm(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 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 t+5e3;default:return-1}}function Di(e){return 0!==(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function Yc(){var e=sa;return!(4194240&(sa<<=1))&&(sa=64),e}function yi(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function eo(e,t,n){e.pendingLanes|=t,536870912!==t&&(e.suspendedLanes=0,e.pingedLanes=0),(e=e.eventTimes)[t=31-St(t)]=n}function Ti(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-St(n),o=1<<r;o&t|e[r]&t&&(e[r]|=t),n&=~o}}var ue=0;function Kc(e){return 1<(e&=-e)?4<e?268435455&e?16:536870912:4:1}var Xc,Ci,Qc,Jc,e0,Ni=!1,ua=[],un=null,cn=null,dn=null,to=new Map,no=new Map,pn=[],Gm="mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit".split(" ");function t0(e,t){switch(e){case"focusin":case"focusout":un=null;break;case"dragenter":case"dragleave":cn=null;break;case"mouseover":case"mouseout":dn=null;break;case"pointerover":case"pointerout":to.delete(t.pointerId);break;case"gotpointercapture":case"lostpointercapture":no.delete(t.pointerId)}}function ro(e,t,n,r,o,a){return null===e||e.nativeEvent!==a?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:a,targetContainers:[o]},null!==t&&(null!==(t=Ao(t))&&Ci(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,null!==o&&-1===t.indexOf(o)&&t.push(o),e)}function n0(e){var t=Ln(e.target);if(null!==t){var n=Rn(t);if(null!==n)if(13===(t=n.tag)){if(null!==(t=Hc(n)))return e.blockedOn=t,void e0(e.priority,(function(){Qc(n)}))}else if(3===t&&n.stateNode.current.memoizedState.isDehydrated)return void(e.blockedOn=3===n.tag?n.stateNode.containerInfo:null)}e.blockedOn=null}function ca(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var n=wi(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==n)return null!==(t=Ao(n))&&Ci(t),e.blockedOn=n,!1;var r=new(n=e.nativeEvent).constructor(n.type,n);gi=r,n.target.dispatchEvent(r),gi=null,t.shift()}return!0}function r0(e,t,n){ca(e)&&n.delete(t)}function Zm(){Ni=!1,null!==un&&ca(un)&&(un=null),null!==cn&&ca(cn)&&(cn=null),null!==dn&&ca(dn)&&(dn=null),to.forEach(r0),no.forEach(r0)}function oo(e,t){e.blockedOn===t&&(e.blockedOn=null,Ni||(Ni=!0,lt.unstable_scheduleCallback(lt.unstable_NormalPriority,Zm)))}function ao(e){function t(o){return oo(o,e)}if(0<ua.length){oo(ua[0],e);for(var n=1;n<ua.length;n++){var r=ua[n];r.blockedOn===e&&(r.blockedOn=null)}}for(null!==un&&oo(un,e),null!==cn&&oo(cn,e),null!==dn&&oo(dn,e),to.forEach(t),no.forEach(t),n=0;n<pn.length;n++)(r=pn[n]).blockedOn===e&&(r.blockedOn=null);for(;0<pn.length&&null===(n=pn[0]).blockedOn;)n0(n),null===n.blockedOn&&pn.shift()}var ir=Yt.ReactCurrentBatchConfig,da=!0;function jm(e,t,n,r){var o=ue,a=ir.transition;ir.transition=null;try{ue=1,Si(e,t,n,r)}finally{ue=o,ir.transition=a}}function Wm(e,t,n,r){var o=ue,a=ir.transition;ir.transition=null;try{ue=4,Si(e,t,n,r)}finally{ue=o,ir.transition=a}}function Si(e,t,n,r){if(da){var o=wi(e,t,n,r);if(null===o)$i(e,t,r,pa,n),t0(e,r);else if(function(e,t,n,r,o){switch(t){case"focusin":return un=ro(un,e,t,n,r,o),!0;case"dragenter":return cn=ro(cn,e,t,n,r,o),!0;case"mouseover":return dn=ro(dn,e,t,n,r,o),!0;case"pointerover":var a=o.pointerId;return to.set(a,ro(to.get(a)||null,e,t,n,r,o)),!0;case"gotpointercapture":return a=o.pointerId,no.set(a,ro(no.get(a)||null,e,t,n,r,o)),!0}return!1}(o,e,t,n,r))r.stopPropagation();else if(t0(e,r),4&t&&-1<Gm.indexOf(e)){for(;null!==o;){var a=Ao(o);if(null!==a&&Xc(a),null===(a=wi(e,t,n,r))&&$i(e,t,r,pa,n),a===o)break;o=a}null!==o&&r.stopPropagation()}else $i(e,t,r,null,n)}}var pa=null;function wi(e,t,n,r){if(pa=null,null!==(e=Ln(e=hi(r))))if(null===(t=Rn(e)))e=null;else if(13===(n=t.tag)){if(null!==(e=Hc(t)))return e;e=null}else if(3===n){if(t.stateNode.current.memoizedState.isDehydrated)return 3===t.tag?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return pa=e,null}function o0(e){switch(e){case"cancel":case"click":case"close":case"contextmenu":case"copy":case"cut":case"auxclick":case"dblclick":case"dragend":case"dragstart":case"drop":case"focusin":case"focusout":case"input":case"invalid":case"keydown":case"keypress":case"keyup":case"mousedown":case"mouseup":case"paste":case"pause":case"play":case"pointercancel":case"pointerdown":case"pointerup":case"ratechange":case"reset":case"resize":case"seeked":case"submit":case"touchcancel":case"touchend":case"touchstart":case"volumechange":case"change":case"selectionchange":case"textInput":case"compositionstart":case"compositionend":case"compositionupdate":case"beforeblur":case"afterblur":case"beforeinput":case"blur":case"fullscreenchange":case"focus":case"hashchange":case"popstate":case"select":case"selectstart":return 1;case"drag":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"mousemove":case"mouseout":case"mouseover":case"pointermove":case"pointerout":case"pointerover":case"scroll":case"toggle":case"touchmove":case"wheel":case"mouseenter":case"mouseleave":case"pointerenter":case"pointerleave":return 4;case"message":switch(Mm()){case vi:return 1;case jc:return 4;case oa:case Fm:return 16;case Wc:return 536870912;default:return 16}default:return 16}}var fn=null,xi=null,fa=null;function a0(){if(fa)return fa;var e,r,t=xi,n=t.length,o="value"in fn?fn.value:fn.textContent,a=o.length;for(e=0;e<n&&t[e]===o[e];e++);var s=n-e;for(r=1;r<=s&&t[n-r]===o[a-r];r++);return fa=o.slice(e,1<r?1-r:void 0)}function ma(e){var t=e.keyCode;return"charCode"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function ga(){return!0}function s0(){return!1}function ut(e){function t(n,r,o,a,s){for(var i in this._reactName=n,this._targetInst=o,this.type=r,this.nativeEvent=a,this.target=s,this.currentTarget=null,e)e.hasOwnProperty(i)&&(n=e[i],this[i]=n?n(a):a[i]);return this.isDefaultPrevented=(null!=a.defaultPrevented?a.defaultPrevented:!1===a.returnValue)?ga:s0,this.isPropagationStopped=s0,this}return _e(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var n=this.nativeEvent;n&&(n.preventDefault?n.preventDefault():"unknown"!=typeof n.returnValue&&(n.returnValue=!1),this.isDefaultPrevented=ga)},stopPropagation:function(){var n=this.nativeEvent;n&&(n.stopPropagation?n.stopPropagation():"unknown"!=typeof n.cancelBubble&&(n.cancelBubble=!0),this.isPropagationStopped=ga)},persist:function(){},isPersistent:ga}),t}var Li,Oi,io,lr={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},Ri=ut(lr),so=_e({},lr,{view:0,detail:0}),Ym=ut(so),ha=_e({},so,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Ii,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return"movementX"in e?e.movementX:(e!==io&&(io&&"mousemove"===e.type?(Li=e.screenX-io.screenX,Oi=e.screenY-io.screenY):Oi=Li=0,io=e),Li)},movementY:function(e){return"movementY"in e?e.movementY:Oi}}),i0=ut(ha),Xm=ut(_e({},ha,{dataTransfer:0})),ki=ut(_e({},so,{relatedTarget:0})),eg=ut(_e({},lr,{animationName:0,elapsedTime:0,pseudoElement:0})),tg=_e({},lr,{clipboardData:function(e){return"clipboardData"in e?e.clipboardData:window.clipboardData}}),ng=ut(tg),l0=ut(_e({},lr,{data:0})),og={Esc:"Escape",Spacebar:" ",Left:"ArrowLeft",Up:"ArrowUp",Right:"ArrowRight",Down:"ArrowDown",Del:"Delete",Win:"OS",Menu:"ContextMenu",Apps:"ContextMenu",Scroll:"ScrollLock",MozPrintableKey:"Unidentified"},ag={8:"Backspace",9:"Tab",12:"Clear",13:"Enter",16:"Shift",17:"Control",18:"Alt",19:"Pause",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",45:"Insert",46:"Delete",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"NumLock",145:"ScrollLock",224:"Meta"},sg={Alt:"altKey",Control:"ctrlKey",Meta:"metaKey",Shift:"shiftKey"};function ig(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=sg[e])&&!!t[e]}function Ii(){return ig}var lg=_e({},so,{key:function(e){if(e.key){var t=og[e.key]||e.key;if("Unidentified"!==t)return t}return"keypress"===e.type?13===(e=ma(e))?"Enter":String.fromCharCode(e):"keydown"===e.type||"keyup"===e.type?ag[e.keyCode]||"Unidentified":""},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Ii,charCode:function(e){return"keypress"===e.type?ma(e):0},keyCode:function(e){return"keydown"===e.type||"keyup"===e.type?e.keyCode:0},which:function(e){return"keypress"===e.type?ma(e):"keydown"===e.type||"keyup"===e.type?e.keyCode:0}}),ug=ut(lg),u0=ut(_e({},ha,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),pg=ut(_e({},so,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Ii})),mg=ut(_e({},lr,{propertyName:0,elapsedTime:0,pseudoElement:0})),gg=_e({},ha,{deltaX:function(e){return"deltaX"in e?e.deltaX:"wheelDeltaX"in e?-e.wheelDeltaX:0},deltaY:function(e){return"deltaY"in e?e.deltaY:"wheelDeltaY"in e?-e.wheelDeltaY:"wheelDelta"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),hg=ut(gg),Eg=[9,13,27,32],Mi=Wt&&"CompositionEvent"in window,lo=null;Wt&&"documentMode"in document&&(lo=document.documentMode);var Ag=Wt&&"TextEvent"in window&&!lo,c0=Wt&&(!Mi||lo&&8<lo&&11>=lo),d0=" ",p0=!1;function f0(e,t){switch(e){case"keyup":return-1!==Eg.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function m0(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var ur=!1;var vg={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function g0(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!vg[e.type]:"textarea"===t}function h0(e,t,n,r){Fc(r),0<(t=va(t,"onChange")).length&&(n=new Ri("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var uo=null,co=null;function Dg(e){I0(e,0)}function Ea(e){if(Tc(mr(e)))return e}function yg(e,t){if("change"===e)return t}var E0=!1;if(Wt){var Fi;if(Wt){var Bi="oninput"in document;if(!Bi){var A0=document.createElement("div");A0.setAttribute("oninput","return;"),Bi="function"==typeof A0.oninput}Fi=Bi}else Fi=!1;E0=Fi&&(!document.documentMode||9<document.documentMode)}function b0(){uo&&(uo.detachEvent("onpropertychange",_0),co=uo=null)}function _0(e){if("value"===e.propertyName&&Ea(co)){var t=[];h0(t,co,e,hi(e)),qc(Dg,t)}}function Tg(e,t,n){"focusin"===e?(b0(),co=n,(uo=t).attachEvent("onpropertychange",_0)):"focusout"===e&&b0()}function Cg(e){if("selectionchange"===e||"keyup"===e||"keydown"===e)return Ea(co)}function Ng(e,t){if("click"===e)return Ea(t)}function Sg(e,t){if("input"===e||"change"===e)return Ea(t)}var wt="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t};function po(e,t){if(wt(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var o=n[r];if(!Ws.call(t,o)||!wt(e[o],t[o]))return!1}return!0}function v0(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function D0(e,t){var r,n=v0(e);for(e=0;n;){if(3===n.nodeType){if(r=e+n.textContent.length,e<=t&&r>=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=v0(n)}}function y0(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?y0(e,t.parentNode):"contains"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function T0(){for(var e=window,t=ea();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch{n=!1}if(!n)break;t=ea((e=t.contentWindow).document)}return t}function Pi(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}function xg(e){var t=T0(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&y0(n.ownerDocument.documentElement,n)){if(null!==r&&Pi(n))if(t=r.start,void 0===(e=r.end)&&(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).getSelection){e=e.getSelection();var o=n.textContent.length,a=Math.min(r.start,o);r=void 0===r.end?a:Math.min(r.end,o),!e.extend&&a>r&&(o=r,r=a,a=o),o=D0(n,a);var s=D0(n,r);o&&s&&(1!==e.rangeCount||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==s.node||e.focusOffset!==s.offset)&&((t=t.createRange()).setStart(o.node,o.offset),e.removeAllRanges(),a>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;)1===e.nodeType&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for("function"==typeof n.focus&&n.focus(),n=0;n<t.length;n++)(e=t[n]).element.scrollLeft=e.left,e.element.scrollTop=e.top}}var Rg=Wt&&"documentMode"in document&&11>=document.documentMode,cr=null,Ui=null,fo=null,qi=!1;function C0(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;qi||null==cr||cr!==ea(r)||("selectionStart"in(r=cr)&&Pi(r)?r={start:r.selectionStart,end:r.selectionEnd}:r={anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},fo&&po(fo,r)||(fo=r,0<(r=va(Ui,"onSelect")).length&&(t=new Ri("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=cr)))}function Aa(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var dr={animationend:Aa("Animation","AnimationEnd"),animationiteration:Aa("Animation","AnimationIteration"),animationstart:Aa("Animation","AnimationStart"),transitionend:Aa("Transition","TransitionEnd")},Hi={},N0={};function ba(e){if(Hi[e])return Hi[e];if(!dr[e])return e;var n,t=dr[e];for(n in t)if(t.hasOwnProperty(n)&&n in N0)return Hi[e]=t[n];return e}Wt&&(N0=document.createElement("div").style,"AnimationEvent"in window||(delete dr.animationend.animation,delete dr.animationiteration.animation,delete dr.animationstart.animation),"TransitionEvent"in window||delete dr.transitionend.transition);var S0=ba("animationend"),w0=ba("animationiteration"),x0=ba("animationstart"),R0=ba("transitionend"),L0=new Map,O0="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function mn(e,t){L0.set(e,t),xn(t,[e])}for(var Vi=0;Vi<O0.length;Vi++){var zi=O0[Vi];mn(zi.toLowerCase(),"on"+(zi[0].toUpperCase()+zi.slice(1)))}mn(S0,"onAnimationEnd"),mn(w0,"onAnimationIteration"),mn(x0,"onAnimationStart"),mn("dblclick","onDoubleClick"),mn("focusin","onFocus"),mn("focusout","onBlur"),mn(R0,"onTransitionEnd"),tr("onMouseEnter",["mouseout","mouseover"]),tr("onMouseLeave",["mouseout","mouseover"]),tr("onPointerEnter",["pointerout","pointerover"]),tr("onPointerLeave",["pointerout","pointerover"]),xn("onChange","change click focusin focusout input keydown keyup selectionchange".split(" ")),xn("onSelect","focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange".split(" ")),xn("onBeforeInput",["compositionend","keypress","textInput","paste"]),xn("onCompositionEnd","compositionend focusout keydown keypress keyup mousedown".split(" ")),xn("onCompositionStart","compositionstart focusout keydown keypress keyup mousedown".split(" ")),xn("onCompositionUpdate","compositionupdate focusout keydown keypress keyup mousedown".split(" "));var mo="abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting".split(" "),kg=new Set("cancel close invalid load scroll toggle".split(" ").concat(mo));function k0(e,t,n){var r=e.type||"unknown-event";e.currentTarget=n,function(e,t,n,r,o,a,s,i,l){if(Rm.apply(this,arguments),Qr){if(!Qr)throw Error(M(198));var u=na;Qr=!1,na=null,ra||(ra=!0,_i=u)}}(r,t,void 0,e),e.currentTarget=null}function I0(e,t){t=0!=(4&t);for(var n=0;n<e.length;n++){var r=e[n],o=r.event;r=r.listeners;e:{var a=void 0;if(t)for(var s=r.length-1;0<=s;s--){var i=r[s],l=i.instance,u=i.currentTarget;if(i=i.listener,l!==a&&o.isPropagationStopped())break e;k0(o,i,u),a=l}else for(s=0;s<r.length;s++){if(l=(i=r[s]).instance,u=i.currentTarget,i=i.listener,l!==a&&o.isPropagationStopped())break e;k0(o,i,u),a=l}}}if(ra)throw e=_i,ra=!1,_i=null,e}function Ee(e,t){var n=t[Xi];void 0===n&&(n=t[Xi]=new Set);var r=e+"__bubble";n.has(r)||(M0(t,e,2,!1),n.add(r))}function Gi(e,t,n){var r=0;t&&(r|=4),M0(n,e,r,t)}var _a="_reactListening"+Math.random().toString(36).slice(2);function go(e){if(!e[_a]){e[_a]=!0,hc.forEach((function(n){"selectionchange"!==n&&(kg.has(n)||Gi(n,!1,e),Gi(n,!0,e))}));var t=9===e.nodeType?e:e.ownerDocument;null===t||t[_a]||(t[_a]=!0,Gi("selectionchange",!1,t))}}function M0(e,t,n,r){switch(o0(t)){case 1:var o=jm;break;case 4:o=Wm;break;default:o=Si}n=o.bind(null,t,n,e),o=void 0,!bi||"touchstart"!==t&&"touchmove"!==t&&"wheel"!==t||(o=!0),r?void 0!==o?e.addEventListener(t,n,{capture:!0,passive:o}):e.addEventListener(t,n,!0):void 0!==o?e.addEventListener(t,n,{passive:o}):e.addEventListener(t,n,!1)}function $i(e,t,n,r,o){var a=r;if(!(1&t||2&t||null===r))e:for(;;){if(null===r)return;var s=r.tag;if(3===s||4===s){var i=r.stateNode.containerInfo;if(i===o||8===i.nodeType&&i.parentNode===o)break;if(4===s)for(s=r.return;null!==s;){var l=s.tag;if((3===l||4===l)&&((l=s.stateNode.containerInfo)===o||8===l.nodeType&&l.parentNode===o))return;s=s.return}for(;null!==i;){if(null===(s=Ln(i)))return;if(5===(l=s.tag)||6===l){r=a=s;continue e}i=i.parentNode}}r=r.return}qc((function(){var u=a,c=hi(n),p=[];e:{var d=L0.get(e);if(void 0!==d){var g=Ri,A=e;switch(e){case"keypress":if(0===ma(n))break e;case"keydown":case"keyup":g=ug;break;case"focusin":A="focus",g=ki;break;case"focusout":A="blur",g=ki;break;case"beforeblur":case"afterblur":g=ki;break;case"click":if(2===n.button)break e;case"auxclick":case"dblclick":case"mousedown":case"mousemove":case"mouseup":case"mouseout":case"mouseover":case"contextmenu":g=i0;break;case"drag":case"dragend":case"dragenter":case"dragexit":case"dragleave":case"dragover":case"dragstart":case"drop":g=Xm;break;case"touchcancel":case"touchend":case"touchmove":case"touchstart":g=pg;break;case S0:case w0:case x0:g=eg;break;case R0:g=mg;break;case"scroll":g=Ym;break;case"wheel":g=hg;break;case"copy":case"cut":case"paste":g=ng;break;case"gotpointercapture":case"lostpointercapture":case"pointercancel":case"pointerdown":case"pointermove":case"pointerout":case"pointerover":case"pointerup":g=u0}var b=0!=(4&t),C=!b&&"scroll"===e,h=b?null!==d?d+"Capture":null:d;b=[];for(var E,m=u;null!==m;){var v=(E=m).stateNode;if(5===E.tag&&null!==v&&(E=v,null!==h&&(null!=(v=Kr(m,h))&&b.push(ho(m,v,E)))),C)break;m=m.return}0<b.length&&(d=new g(d,A,null,n,c),p.push({event:d,listeners:b}))}}if(!(7&t)){if(g="mouseout"===e||"pointerout"===e,(!(d="mouseover"===e||"pointerover"===e)||n===gi||!(A=n.relatedTarget||n.fromElement)||!Ln(A)&&!A[Kt])&&(g||d)&&(d=c.window===c?c:(d=c.ownerDocument)?d.defaultView||d.parentWindow:window,g?(g=u,null!==(A=(A=n.relatedTarget||n.toElement)?Ln(A):null)&&(A!==(C=Rn(A))||5!==A.tag&&6!==A.tag)&&(A=null)):(g=null,A=u),g!==A)){if(b=i0,v="onMouseLeave",h="onMouseEnter",m="mouse",("pointerout"===e||"pointerover"===e)&&(b=u0,v="onPointerLeave",h="onPointerEnter",m="pointer"),C=null==g?d:mr(g),E=null==A?d:mr(A),(d=new b(v,m+"leave",g,n,c)).target=C,d.relatedTarget=E,v=null,Ln(c)===u&&((b=new b(h,m+"enter",A,n,c)).target=E,b.relatedTarget=C,v=b),C=v,g&&A)t:{for(h=A,m=0,E=b=g;E;E=pr(E))m++;for(E=0,v=h;v;v=pr(v))E++;for(;0<m-E;)b=pr(b),m--;for(;0<E-m;)h=pr(h),E--;for(;m--;){if(b===h||null!==h&&b===h.alternate)break t;b=pr(b),h=pr(h)}b=null}else b=null;null!==g&&F0(p,d,g,b,!1),null!==A&&null!==C&&F0(p,C,A,b,!0)}if("select"===(g=(d=u?mr(u):window).nodeName&&d.nodeName.toLowerCase())||"input"===g&&"file"===d.type)var N=yg;else if(g0(d))if(E0)N=Sg;else{N=Cg;var _=Tg}else(g=d.nodeName)&&"input"===g.toLowerCase()&&("checkbox"===d.type||"radio"===d.type)&&(N=Ng);switch(N&&(N=N(e,u))?h0(p,N,n,c):(_&&_(e,d,u),"focusout"===e&&(_=d._wrapperState)&&_.controlled&&"number"===d.type&&ci(d,"number",d.value)),_=u?mr(u):window,e){case"focusin":(g0(_)||"true"===_.contentEditable)&&(cr=_,Ui=u,fo=null);break;case"focusout":fo=Ui=cr=null;break;case"mousedown":qi=!0;break;case"contextmenu":case"mouseup":case"dragend":qi=!1,C0(p,n,c);break;case"selectionchange":if(Rg)break;case"keydown":case"keyup":C0(p,n,c)}var S;if(Mi)e:{switch(e){case"compositionstart":var R="onCompositionStart";break e;case"compositionend":R="onCompositionEnd";break e;case"compositionupdate":R="onCompositionUpdate";break e}R=void 0}else ur?f0(e,n)&&(R="onCompositionEnd"):"keydown"===e&&229===n.keyCode&&(R="onCompositionStart");R&&(c0&&"ko"!==n.locale&&(ur||"onCompositionStart"!==R?"onCompositionEnd"===R&&ur&&(S=a0()):(xi="value"in(fn=c)?fn.value:fn.textContent,ur=!0)),0<(_=va(u,R)).length&&(R=new l0(R,e,null,n,c),p.push({event:R,listeners:_}),S?R.data=S:null!==(S=m0(n))&&(R.data=S))),(S=Ag?function(e,t){switch(e){case"compositionend":return m0(t);case"keypress":return 32!==t.which?null:(p0=!0,d0);case"textInput":return(e=t.data)===d0&&p0?null:e;default:return null}}(e,n):function(e,t){if(ur)return"compositionend"===e||!Mi&&f0(e,t)?(e=a0(),fa=xi=fn=null,ur=!1,e):null;switch(e){case"paste":default:return null;case"keypress":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case"compositionend":return c0&&"ko"!==t.locale?null:t.data}}(e,n))&&(0<(u=va(u,"onBeforeInput")).length&&(c=new l0("onBeforeInput","beforeinput",null,n,c),p.push({event:c,listeners:u}),c.data=S))}I0(p,t)}))}function ho(e,t,n){return{instance:e,listener:t,currentTarget:n}}function va(e,t){for(var n=t+"Capture",r=[];null!==e;){var o=e,a=o.stateNode;5===o.tag&&null!==a&&(o=a,null!=(a=Kr(e,n))&&r.unshift(ho(e,a,o)),null!=(a=Kr(e,t))&&r.push(ho(e,a,o))),e=e.return}return r}function pr(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function F0(e,t,n,r,o){for(var a=t._reactName,s=[];null!==n&&n!==r;){var i=n,l=i.alternate,u=i.stateNode;if(null!==l&&l===r)break;5===i.tag&&null!==u&&(i=u,o?null!=(l=Kr(n,a))&&s.unshift(ho(n,l,i)):o||null!=(l=Kr(n,a))&&s.push(ho(n,l,i))),n=n.return}0!==s.length&&e.push({event:t,listeners:s})}var Ig=/\r\n?/g,Mg=/\u0000|\uFFFD/g;function B0(e){return("string"==typeof e?e:""+e).replace(Ig,"\n").replace(Mg,"")}function Da(e,t,n){if(t=B0(t),B0(e)!==t&&n)throw Error(M(425))}function ya(){}var Zi=null,ji=null;function Wi(e,t){return"textarea"===e||"noscript"===e||"string"==typeof t.children||"number"==typeof t.children||"object"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var Yi="function"==typeof setTimeout?setTimeout:void 0,Fg="function"==typeof clearTimeout?clearTimeout:void 0,P0="function"==typeof Promise?Promise:void 0,Bg="function"==typeof queueMicrotask?queueMicrotask:typeof P0<"u"?function(e){return P0.resolve(null).then(e).catch(Pg)}:Yi;function Pg(e){setTimeout((function(){throw e}))}function Ki(e,t){var n=t,r=0;do{var o=n.nextSibling;if(e.removeChild(n),o&&8===o.nodeType)if("/$"===(n=o.data)){if(0===r)return e.removeChild(o),void ao(t);r--}else"$"!==n&&"$?"!==n&&"$!"!==n||r++;n=o}while(n);ao(t)}function gn(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break;if(8===t){if("$"===(t=e.data)||"$!"===t||"$?"===t)break;if("/$"===t)return null}}return e}function U0(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var n=e.data;if("$"===n||"$!"===n||"$?"===n){if(0===t)return e;t--}else"/$"===n&&t++}e=e.previousSibling}return null}var fr=Math.random().toString(36).slice(2),Ut="__reactFiber$"+fr,Eo="__reactProps$"+fr,Kt="__reactContainer$"+fr,Xi="__reactEvents$"+fr,Ug="__reactListeners$"+fr,qg="__reactHandles$"+fr;function Ln(e){var t=e[Ut];if(t)return t;for(var n=e.parentNode;n;){if(t=n[Kt]||n[Ut]){if(n=t.alternate,null!==t.child||null!==n&&null!==n.child)for(e=U0(e);null!==e;){if(n=e[Ut])return n;e=U0(e)}return t}n=(e=n).parentNode}return null}function Ao(e){return!(e=e[Ut]||e[Kt])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function mr(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(M(33))}function Ta(e){return e[Eo]||null}var Qi=[],gr=-1;function hn(e){return{current:e}}function Ae(e){0>gr||(e.current=Qi[gr],Qi[gr]=null,gr--)}function fe(e,t){gr++,Qi[gr]=e.current,e.current=t}var En={},qe=hn(En),Je=hn(!1),On=En;function hr(e,t){var n=e.type.contextTypes;if(!n)return En;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var a,o={};for(a in n)o[a]=t[a];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function et(e){return null!=(e=e.childContextTypes)}function Ca(){Ae(Je),Ae(qe)}function q0(e,t,n){if(qe.current!==En)throw Error(M(168));fe(qe,t),fe(Je,n)}function H0(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var o in r=r.getChildContext())if(!(o in t))throw Error(M(108,Tm(e)||"Unknown",o));return _e({},n,r)}function Na(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||En,On=qe.current,fe(qe,e),fe(Je,Je.current),!0}function V0(e,t,n){var r=e.stateNode;if(!r)throw Error(M(169));n?(e=H0(e,t,On),r.__reactInternalMemoizedMergedChildContext=e,Ae(Je),Ae(qe),fe(qe,e)):Ae(Je),fe(Je,n)}var Xt=null,Sa=!1,Ji=!1;function z0(e){null===Xt?Xt=[e]:Xt.push(e)}function An(){if(!Ji&&null!==Xt){Ji=!0;var e=0,t=ue;try{var n=Xt;for(ue=1;e<n.length;e++){var r=n[e];do{r=r(!0)}while(null!==r)}Xt=null,Sa=!1}catch(o){throw null!==Xt&&(Xt=Xt.slice(e+1)),$c(vi,An),o}finally{ue=t,Ji=!1}}return null}var Er=[],Ar=0,wa=null,xa=0,Et=[],At=0,kn=null,Qt=1,Jt="";function In(e,t){Er[Ar++]=xa,Er[Ar++]=wa,wa=e,xa=t}function G0(e,t,n){Et[At++]=Qt,Et[At++]=Jt,Et[At++]=kn,kn=e;var r=Qt;e=Jt;var o=32-St(r)-1;r&=~(1<<o),n+=1;var a=32-St(t)+o;if(30<a){var s=o-o%5;a=(r&(1<<s)-1).toString(32),r>>=s,o-=s,Qt=1<<32-St(t)+o|n<<o|r,Jt=a+e}else Qt=1<<a|n<<o|r,Jt=e}function el(e){null!==e.return&&(In(e,1),G0(e,1,0))}function tl(e){for(;e===wa;)wa=Er[--Ar],Er[Ar]=null,xa=Er[--Ar],Er[Ar]=null;for(;e===kn;)kn=Et[--At],Et[At]=null,Jt=Et[--At],Et[At]=null,Qt=Et[--At],Et[At]=null}var ct=null,dt=null,be=!1,xt=null;function $0(e,t){var n=Dt(5,null,null,0);n.elementType="DELETED",n.stateNode=t,n.return=e,null===(t=e.deletions)?(e.deletions=[n],e.flags|=16):t.push(n)}function Z0(e,t){switch(e.tag){case 5:var n=e.type;return null!==(t=1!==t.nodeType||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,ct=e,dt=gn(t.firstChild),!0);case 6:return null!==(t=""===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,ct=e,dt=null,!0);case 13:return null!==(t=8!==t.nodeType?null:t)&&(n=null!==kn?{id:Qt,overflow:Jt}:null,e.memoizedState={dehydrated:t,treeContext:n,retryLane:1073741824},(n=Dt(18,null,null,0)).stateNode=t,n.return=e,e.child=n,ct=e,dt=null,!0);default:return!1}}function nl(e){return 0!=(1&e.mode)&&0==(128&e.flags)}function rl(e){if(be){var t=dt;if(t){var n=t;if(!Z0(e,t)){if(nl(e))throw Error(M(418));t=gn(n.nextSibling);var r=ct;t&&Z0(e,t)?$0(r,n):(e.flags=-4097&e.flags|2,be=!1,ct=e)}}else{if(nl(e))throw Error(M(418));e.flags=-4097&e.flags|2,be=!1,ct=e}}}function j0(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;ct=e}function Ra(e){if(e!==ct)return!1;if(!be)return j0(e),be=!0,!1;var t;if((t=3!==e.tag)&&!(t=5!==e.tag)&&(t="head"!==(t=e.type)&&"body"!==t&&!Wi(e.type,e.memoizedProps)),t&&(t=dt)){if(nl(e))throw W0(),Error(M(418));for(;t;)$0(e,t),t=gn(t.nextSibling)}if(j0(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(M(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var n=e.data;if("/$"===n){if(0===t){dt=gn(e.nextSibling);break e}t--}else"$"!==n&&"$!"!==n&&"$?"!==n||t++}e=e.nextSibling}dt=null}}else dt=ct?gn(e.stateNode.nextSibling):null;return!0}function W0(){for(var e=dt;e;)e=gn(e.nextSibling)}function br(){dt=ct=null,be=!1}function ol(e){null===xt?xt=[e]:xt.push(e)}var Vg=Yt.ReactCurrentBatchConfig;function Rt(e,t){if(e&&e.defaultProps){for(var n in t=_e({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}return t}var La=hn(null),Oa=null,_r=null,al=null;function sl(){al=_r=Oa=null}function il(e){var t=La.current;Ae(La),e._currentValue=t}function ll(e,t,n){for(;null!==e;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,null!==r&&(r.childLanes|=t)):null!==r&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function vr(e,t){Oa=e,al=_r=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(e.lanes&t&&(tt=!0),e.firstContext=null)}function bt(e){var t=e._currentValue;if(al!==e)if(e={context:e,memoizedValue:t,next:null},null===_r){if(null===Oa)throw Error(M(308));_r=e,Oa.dependencies={lanes:0,firstContext:e}}else _r=_r.next=e;return t}var Mn=null;function ul(e){null===Mn?Mn=[e]:Mn.push(e)}function Y0(e,t,n,r){var o=t.interleaved;return null===o?(n.next=n,ul(t)):(n.next=o.next,o.next=n),t.interleaved=n,en(e,r)}function en(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}var bn=!1;function cl(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function K0(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function tn(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function _n(e,t,n){var r=e.updateQueue;if(null===r)return null;if(r=r.shared,2&re){var o=r.pending;return null===o?t.next=t:(t.next=o.next,o.next=t),r.pending=t,en(e,n)}return null===(o=r.interleaved)?(t.next=t,ul(r)):(t.next=o.next,o.next=t),r.interleaved=t,en(e,n)}function ka(e,t,n){if(null!==(t=t.updateQueue)&&(t=t.shared,0!=(4194240&n))){var r=t.lanes;n|=r&=e.pendingLanes,t.lanes=n,Ti(e,n)}}function X0(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var o=null,a=null;if(null!==(n=n.firstBaseUpdate)){do{var s={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===a?o=a=s:a=a.next=s,n=n.next}while(null!==n);null===a?o=a=t:a=a.next=t}else o=a=t;return n={baseState:r.baseState,firstBaseUpdate:o,lastBaseUpdate:a,shared:r.shared,effects:r.effects},void(e.updateQueue=n)}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function Ia(e,t,n,r){var o=e.updateQueue;bn=!1;var a=o.firstBaseUpdate,s=o.lastBaseUpdate,i=o.shared.pending;if(null!==i){o.shared.pending=null;var l=i,u=l.next;l.next=null,null===s?a=u:s.next=u,s=l;var c=e.alternate;null!==c&&((i=(c=c.updateQueue).lastBaseUpdate)!==s&&(null===i?c.firstBaseUpdate=u:i.next=u,c.lastBaseUpdate=l))}if(null!==a){var p=o.baseState;for(s=0,c=u=l=null,i=a;;){var d=i.lane,g=i.eventTime;if((r&d)===d){null!==c&&(c=c.next={eventTime:g,lane:0,tag:i.tag,payload:i.payload,callback:i.callback,next:null});e:{var A=e,b=i;switch(d=t,g=n,b.tag){case 1:if("function"==typeof(A=b.payload)){p=A.call(g,p,d);break e}p=A;break e;case 3:A.flags=-65537&A.flags|128;case 0:if(null==(d="function"==typeof(A=b.payload)?A.call(g,p,d):A))break e;p=_e({},p,d);break e;case 2:bn=!0}}null!==i.callback&&0!==i.lane&&(e.flags|=64,null===(d=o.effects)?o.effects=[i]:d.push(i))}else g={eventTime:g,lane:d,tag:i.tag,payload:i.payload,callback:i.callback,next:null},null===c?(u=c=g,l=p):c=c.next=g,s|=d;if(null===(i=i.next)){if(null===(i=o.shared.pending))break;i=(d=i).next,d.next=null,o.lastBaseUpdate=d,o.shared.pending=null}}if(null===c&&(l=p),o.baseState=l,o.firstBaseUpdate=u,o.lastBaseUpdate=c,null!==(t=o.shared.interleaved)){o=t;do{s|=o.lane,o=o.next}while(o!==t)}else null===a&&(o.shared.lanes=0);Pn|=s,e.lanes=s,e.memoizedState=p}}function Q0(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var r=e[t],o=r.callback;if(null!==o){if(r.callback=null,r=n,"function"!=typeof o)throw Error(M(191,o));o.call(r)}}}var J0=(new gc.Component).refs;function dl(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:_e({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var Ma={isMounted:function(e){return!!(e=e._reactInternals)&&Rn(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=Xe(),o=Tn(e),a=tn(r,o);a.payload=t,null!=n&&(a.callback=n),null!==(t=_n(e,a,o))&&(kt(t,e,o,r),ka(t,e,o))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=Xe(),o=Tn(e),a=tn(r,o);a.tag=1,a.payload=t,null!=n&&(a.callback=n),null!==(t=_n(e,a,o))&&(kt(t,e,o,r),ka(t,e,o))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=Xe(),r=Tn(e),o=tn(n,r);o.tag=2,null!=t&&(o.callback=t),null!==(t=_n(e,o,r))&&(kt(t,e,r,n),ka(t,e,r))}};function ed(e,t,n,r,o,a,s){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,a,s):!t.prototype||!t.prototype.isPureReactComponent||(!po(n,r)||!po(o,a))}function td(e,t,n){var r=!1,o=En,a=t.contextType;return"object"==typeof a&&null!==a?a=bt(a):(o=et(t)?On:qe.current,a=(r=null!=(r=t.contextTypes))?hr(e,o):En),t=new t(n,a),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=Ma,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=a),t}function nd(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&Ma.enqueueReplaceState(t,t.state,null)}function pl(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=J0,cl(e);var a=t.contextType;"object"==typeof a&&null!==a?o.context=bt(a):(a=et(t)?On:qe.current,o.context=hr(e,a)),o.state=e.memoizedState,"function"==typeof(a=t.getDerivedStateFromProps)&&(dl(e,t,a,n),o.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(t=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&Ma.enqueueReplaceState(o,o.state,null),Ia(e,n,o,r),o.state=e.memoizedState),"function"==typeof o.componentDidMount&&(e.flags|=4194308)}function bo(e,t,n){if(null!==(e=n.ref)&&"function"!=typeof e&&"object"!=typeof e){if(n._owner){if(n=n._owner){if(1!==n.tag)throw Error(M(309));var r=n.stateNode}if(!r)throw Error(M(147,e));var o=r,a=""+e;return null!==t&&null!==t.ref&&"function"==typeof t.ref&&t.ref._stringRef===a?t.ref:((t=function(s){var i=o.refs;i===J0&&(i=o.refs={}),null===s?delete i[a]:i[a]=s})._stringRef=a,t)}if("string"!=typeof e)throw Error(M(284));if(!n._owner)throw Error(M(290,e))}return e}function Fa(e,t){throw e=Object.prototype.toString.call(t),Error(M(31,"[object Object]"===e?"object with keys {"+Object.keys(t).join(", ")+"}":e))}function rd(e){return(0,e._init)(e._payload)}function od(e){function t(h,m){if(e){var E=h.deletions;null===E?(h.deletions=[m],h.flags|=16):E.push(m)}}function n(h,m){if(!e)return null;for(;null!==m;)t(h,m),m=m.sibling;return null}function r(h,m){for(h=new Map;null!==m;)null!==m.key?h.set(m.key,m):h.set(m.index,m),m=m.sibling;return h}function o(h,m){return(h=Nn(h,m)).index=0,h.sibling=null,h}function a(h,m,E){return h.index=E,e?null!==(E=h.alternate)?(E=E.index)<m?(h.flags|=2,m):E:(h.flags|=2,m):(h.flags|=1048576,m)}function s(h){return e&&null===h.alternate&&(h.flags|=2),h}function i(h,m,E,v){return null===m||6!==m.tag?((m=Yl(E,h.mode,v)).return=h,m):((m=o(m,E)).return=h,m)}function l(h,m,E,v){var N=E.type;return N===rr?c(h,m,E.props.children,v,E.key):null!==m&&(m.elementType===N||"object"==typeof N&&null!==N&&N.$$typeof===sn&&rd(N)===m.type)?((v=o(m,E.props)).ref=bo(h,m,E),v.return=h,v):((v=ts(E.type,E.key,E.props,null,h.mode,v)).ref=bo(h,m,E),v.return=h,v)}function u(h,m,E,v){return null===m||4!==m.tag||m.stateNode.containerInfo!==E.containerInfo||m.stateNode.implementation!==E.implementation?((m=Kl(E,h.mode,v)).return=h,m):((m=o(m,E.children||[])).return=h,m)}function c(h,m,E,v,N){return null===m||7!==m.tag?((m=Vn(E,h.mode,v,N)).return=h,m):((m=o(m,E)).return=h,m)}function p(h,m,E){if("string"==typeof m&&""!==m||"number"==typeof m)return(m=Yl(""+m,h.mode,E)).return=h,m;if("object"==typeof m&&null!==m){switch(m.$$typeof){case Qo:return(E=ts(m.type,m.key,m.props,null,h.mode,E)).ref=bo(h,null,m),E.return=h,E;case nr:return(m=Kl(m,h.mode,E)).return=h,m;case sn:return p(h,(0,m._init)(m._payload),E)}if(jr(m)||$r(m))return(m=Vn(m,h.mode,E,null)).return=h,m;Fa(h,m)}return null}function d(h,m,E,v){var N=null!==m?m.key:null;if("string"==typeof E&&""!==E||"number"==typeof E)return null!==N?null:i(h,m,""+E,v);if("object"==typeof E&&null!==E){switch(E.$$typeof){case Qo:return E.key===N?l(h,m,E,v):null;case nr:return E.key===N?u(h,m,E,v):null;case sn:return d(h,m,(N=E._init)(E._payload),v)}if(jr(E)||$r(E))return null!==N?null:c(h,m,E,v,null);Fa(h,E)}return null}function g(h,m,E,v,N){if("string"==typeof v&&""!==v||"number"==typeof v)return i(m,h=h.get(E)||null,""+v,N);if("object"==typeof v&&null!==v){switch(v.$$typeof){case Qo:return l(m,h=h.get(null===v.key?E:v.key)||null,v,N);case nr:return u(m,h=h.get(null===v.key?E:v.key)||null,v,N);case sn:return g(h,m,E,(0,v._init)(v._payload),N)}if(jr(v)||$r(v))return c(m,h=h.get(E)||null,v,N,null);Fa(m,v)}return null}return function C(h,m,E,v){if("object"==typeof E&&null!==E&&E.type===rr&&null===E.key&&(E=E.props.children),"object"==typeof E&&null!==E){switch(E.$$typeof){case Qo:e:{for(var N=E.key,_=m;null!==_;){if(_.key===N){if((N=E.type)===rr){if(7===_.tag){n(h,_.sibling),(m=o(_,E.props.children)).return=h,h=m;break e}}else if(_.elementType===N||"object"==typeof N&&null!==N&&N.$$typeof===sn&&rd(N)===_.type){n(h,_.sibling),(m=o(_,E.props)).ref=bo(h,_,E),m.return=h,h=m;break e}n(h,_);break}t(h,_),_=_.sibling}E.type===rr?((m=Vn(E.props.children,h.mode,v,E.key)).return=h,h=m):((v=ts(E.type,E.key,E.props,null,h.mode,v)).ref=bo(h,m,E),v.return=h,h=v)}return s(h);case nr:e:{for(_=E.key;null!==m;){if(m.key===_){if(4===m.tag&&m.stateNode.containerInfo===E.containerInfo&&m.stateNode.implementation===E.implementation){n(h,m.sibling),(m=o(m,E.children||[])).return=h,h=m;break e}n(h,m);break}t(h,m),m=m.sibling}(m=Kl(E,h.mode,v)).return=h,h=m}return s(h);case sn:return C(h,m,(_=E._init)(E._payload),v)}if(jr(E))return function(h,m,E,v){for(var N=null,_=null,S=m,R=m=0,q=null;null!==S&&R<E.length;R++){S.index>R?(q=S,S=null):q=S.sibling;var I=d(h,S,E[R],v);if(null===I){null===S&&(S=q);break}e&&S&&null===I.alternate&&t(h,S),m=a(I,m,R),null===_?N=I:_.sibling=I,_=I,S=q}if(R===E.length)return n(h,S),be&&In(h,R),N;if(null===S){for(;R<E.length;R++)null!==(S=p(h,E[R],v))&&(m=a(S,m,R),null===_?N=S:_.sibling=S,_=S);return be&&In(h,R),N}for(S=r(h,S);R<E.length;R++)null!==(q=g(S,h,R,E[R],v))&&(e&&null!==q.alternate&&S.delete(null===q.key?R:q.key),m=a(q,m,R),null===_?N=q:_.sibling=q,_=q);return e&&S.forEach((function(Q){return t(h,Q)})),be&&In(h,R),N}(h,m,E,v);if($r(E))return function(h,m,E,v){var N=$r(E);if("function"!=typeof N)throw Error(M(150));if(null==(E=N.call(E)))throw Error(M(151));for(var _=N=null,S=m,R=m=0,q=null,I=E.next();null!==S&&!I.done;R++,I=E.next()){S.index>R?(q=S,S=null):q=S.sibling;var Q=d(h,S,I.value,v);if(null===Q){null===S&&(S=q);break}e&&S&&null===Q.alternate&&t(h,S),m=a(Q,m,R),null===_?N=Q:_.sibling=Q,_=Q,S=q}if(I.done)return n(h,S),be&&In(h,R),N;if(null===S){for(;!I.done;R++,I=E.next())null!==(I=p(h,I.value,v))&&(m=a(I,m,R),null===_?N=I:_.sibling=I,_=I);return be&&In(h,R),N}for(S=r(h,S);!I.done;R++,I=E.next())null!==(I=g(S,h,R,I.value,v))&&(e&&null!==I.alternate&&S.delete(null===I.key?R:I.key),m=a(I,m,R),null===_?N=I:_.sibling=I,_=I);return e&&S.forEach((function(ie){return t(h,ie)})),be&&In(h,R),N}(h,m,E,v);Fa(h,E)}return"string"==typeof E&&""!==E||"number"==typeof E?(E=""+E,null!==m&&6===m.tag?(n(h,m.sibling),(m=o(m,E)).return=h,h=m):(n(h,m),(m=Yl(E,h.mode,v)).return=h,h=m),s(h)):n(h,m)}}var Dr=od(!0),ad=od(!1),_o={},qt=hn(_o),vo=hn(_o),Do=hn(_o);function Fn(e){if(e===_o)throw Error(M(174));return e}function fl(e,t){switch(fe(Do,t),fe(vo,e),fe(qt,_o),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:pi(null,"");break;default:t=pi(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}Ae(qt),fe(qt,t)}function yr(){Ae(qt),Ae(vo),Ae(Do)}function sd(e){Fn(Do.current);var t=Fn(qt.current),n=pi(t,e.type);t!==n&&(fe(vo,e),fe(qt,n))}function ml(e){vo.current===e&&(Ae(qt),Ae(vo))}var ve=hn(0);function Ba(e){for(var t=e;null!==t;){if(13===t.tag){var n=t.memoizedState;if(null!==n&&(null===(n=n.dehydrated)||"$?"===n.data||"$!"===n.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(128&t.flags)return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var gl=[];function hl(){for(var e=0;e<gl.length;e++)gl[e]._workInProgressVersionPrimary=null;gl.length=0}var Pa=Yt.ReactCurrentDispatcher,El=Yt.ReactCurrentBatchConfig,Bn=0,De=null,we=null,Le=null,Ua=!1,yo=!1,To=0,zg=0;function He(){throw Error(M(321))}function Al(e,t){if(null===t)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!wt(e[n],t[n]))return!1;return!0}function bl(e,t,n,r,o,a){if(Bn=a,De=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,Pa.current=null===e||null===e.memoizedState?jg:Wg,e=n(r,o),yo){a=0;do{if(yo=!1,To=0,25<=a)throw Error(M(301));a+=1,Le=we=null,t.updateQueue=null,Pa.current=Yg,e=n(r,o)}while(yo)}if(Pa.current=Va,t=null!==we&&null!==we.next,Bn=0,Le=we=De=null,Ua=!1,t)throw Error(M(300));return e}function _l(){var e=0!==To;return To=0,e}function Ht(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===Le?De.memoizedState=Le=e:Le=Le.next=e,Le}function _t(){if(null===we){var e=De.alternate;e=null!==e?e.memoizedState:null}else e=we.next;var t=null===Le?De.memoizedState:Le.next;if(null!==t)Le=t,we=e;else{if(null===e)throw Error(M(310));e={memoizedState:(we=e).memoizedState,baseState:we.baseState,baseQueue:we.baseQueue,queue:we.queue,next:null},null===Le?De.memoizedState=Le=e:Le=Le.next=e}return Le}function Co(e,t){return"function"==typeof t?t(e):t}function vl(e){var t=_t(),n=t.queue;if(null===n)throw Error(M(311));n.lastRenderedReducer=e;var r=we,o=r.baseQueue,a=n.pending;if(null!==a){if(null!==o){var s=o.next;o.next=a.next,a.next=s}r.baseQueue=o=a,n.pending=null}if(null!==o){a=o.next,r=r.baseState;var i=s=null,l=null,u=a;do{var c=u.lane;if((Bn&c)===c)null!==l&&(l=l.next={lane:0,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null}),r=u.hasEagerState?u.eagerState:e(r,u.action);else{var p={lane:c,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null};null===l?(i=l=p,s=r):l=l.next=p,De.lanes|=c,Pn|=c}u=u.next}while(null!==u&&u!==a);null===l?s=r:l.next=i,wt(r,t.memoizedState)||(tt=!0),t.memoizedState=r,t.baseState=s,t.baseQueue=l,n.lastRenderedState=r}if(null!==(e=n.interleaved)){o=e;do{a=o.lane,De.lanes|=a,Pn|=a,o=o.next}while(o!==e)}else null===o&&(n.lanes=0);return[t.memoizedState,n.dispatch]}function Dl(e){var t=_t(),n=t.queue;if(null===n)throw Error(M(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,a=t.memoizedState;if(null!==o){n.pending=null;var s=o=o.next;do{a=e(a,s.action),s=s.next}while(s!==o);wt(a,t.memoizedState)||(tt=!0),t.memoizedState=a,null===t.baseQueue&&(t.baseState=a),n.lastRenderedState=a}return[a,r]}function id(){}function ld(e,t){var n=De,r=_t(),o=t(),a=!wt(r.memoizedState,o);if(a&&(r.memoizedState=o,tt=!0),r=r.queue,yl(dd.bind(null,n,r,e),[e]),r.getSnapshot!==t||a||null!==Le&&1&Le.memoizedState.tag){if(n.flags|=2048,No(9,cd.bind(null,n,r,o,t),void 0,null),null===Oe)throw Error(M(349));30&Bn||ud(n,t,o)}return o}function ud(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},null===(t=De.updateQueue)?(t={lastEffect:null,stores:null},De.updateQueue=t,t.stores=[e]):null===(n=t.stores)?t.stores=[e]:n.push(e)}function cd(e,t,n,r){t.value=n,t.getSnapshot=r,pd(t)&&fd(e)}function dd(e,t,n){return n((function(){pd(t)&&fd(e)}))}function pd(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!wt(e,n)}catch{return!0}}function fd(e){var t=en(e,1);null!==t&&kt(t,e,1,-1)}function md(e){var t=Ht();return"function"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:Co,lastRenderedState:e},t.queue=e,e=e.dispatch=Zg.bind(null,De,e),[t.memoizedState,e]}function No(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},null===(t=De.updateQueue)?(t={lastEffect:null,stores:null},De.updateQueue=t,t.lastEffect=e.next=e):null===(n=t.lastEffect)?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e),e}function gd(){return _t().memoizedState}function qa(e,t,n,r){var o=Ht();De.flags|=e,o.memoizedState=No(1|t,n,void 0,void 0===r?null:r)}function Ha(e,t,n,r){var o=_t();r=void 0===r?null:r;var a=void 0;if(null!==we){var s=we.memoizedState;if(a=s.destroy,null!==r&&Al(r,s.deps))return void(o.memoizedState=No(t,n,a,r))}De.flags|=e,o.memoizedState=No(1|t,n,a,r)}function hd(e,t){return qa(8390656,8,e,t)}function yl(e,t){return Ha(2048,8,e,t)}function Ed(e,t){return Ha(4,2,e,t)}function Ad(e,t){return Ha(4,4,e,t)}function bd(e,t){return"function"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function _d(e,t,n){return n=null!=n?n.concat([e]):null,Ha(4,4,bd.bind(null,t,e),n)}function Tl(){}function vd(e,t){var n=_t();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Al(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function Dd(e,t){var n=_t();t=void 0===t?null:t;var r=n.memoizedState;return null!==r&&null!==t&&Al(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function yd(e,t,n){return 21&Bn?(wt(n,t)||(n=Yc(),De.lanes|=n,Pn|=n,e.baseState=!0),t):(e.baseState&&(e.baseState=!1,tt=!0),e.memoizedState=n)}function Gg(e,t){var n=ue;ue=0!==n&&4>n?n:4,e(!0);var r=El.transition;El.transition={};try{e(!1),t()}finally{ue=n,El.transition=r}}function Td(){return _t().memoizedState}function $g(e,t,n){var r=Tn(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},Cd(e))Nd(t,n);else if(null!==(n=Y0(e,t,n,r))){kt(n,e,r,Xe()),Sd(n,t,r)}}function Zg(e,t,n){var r=Tn(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(Cd(e))Nd(t,o);else{var a=e.alternate;if(0===e.lanes&&(null===a||0===a.lanes)&&null!==(a=t.lastRenderedReducer))try{var s=t.lastRenderedState,i=a(s,n);if(o.hasEagerState=!0,o.eagerState=i,wt(i,s)){var l=t.interleaved;return null===l?(o.next=o,ul(t)):(o.next=l.next,l.next=o),void(t.interleaved=o)}}catch{}null!==(n=Y0(e,t,o,r))&&(kt(n,e,r,o=Xe()),Sd(n,t,r))}}function Cd(e){var t=e.alternate;return e===De||null!==t&&t===De}function Nd(e,t){yo=Ua=!0;var n=e.pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function Sd(e,t,n){if(4194240&n){var r=t.lanes;n|=r&=e.pendingLanes,t.lanes=n,Ti(e,n)}}var Va={readContext:bt,useCallback:He,useContext:He,useEffect:He,useImperativeHandle:He,useInsertionEffect:He,useLayoutEffect:He,useMemo:He,useReducer:He,useRef:He,useState:He,useDebugValue:He,useDeferredValue:He,useTransition:He,useMutableSource:He,useSyncExternalStore:He,useId:He,unstable_isNewReconciler:!1},jg={readContext:bt,useCallback:function(e,t){return Ht().memoizedState=[e,void 0===t?null:t],e},useContext:bt,useEffect:hd,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,qa(4194308,4,bd.bind(null,t,e),n)},useLayoutEffect:function(e,t){return qa(4194308,4,e,t)},useInsertionEffect:function(e,t){return qa(4,2,e,t)},useMemo:function(e,t){var n=Ht();return t=void 0===t?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Ht();return t=void 0!==n?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=$g.bind(null,De,e),[r.memoizedState,e]},useRef:function(e){return e={current:e},Ht().memoizedState=e},useState:md,useDebugValue:Tl,useDeferredValue:function(e){return Ht().memoizedState=e},useTransition:function(){var e=md(!1),t=e[0];return e=Gg.bind(null,e[1]),Ht().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=De,o=Ht();if(be){if(void 0===n)throw Error(M(407));n=n()}else{if(n=t(),null===Oe)throw Error(M(349));30&Bn||ud(r,t,n)}o.memoizedState=n;var a={value:n,getSnapshot:t};return o.queue=a,hd(dd.bind(null,r,a,e),[e]),r.flags|=2048,No(9,cd.bind(null,r,a,n,t),void 0,null),n},useId:function(){var e=Ht(),t=Oe.identifierPrefix;if(be){var n=Jt;t=":"+t+"R"+(n=(Qt&~(1<<32-St(Qt)-1)).toString(32)+n),0<(n=To++)&&(t+="H"+n.toString(32)),t+=":"}else t=":"+t+"r"+(n=zg++).toString(32)+":";return e.memoizedState=t},unstable_isNewReconciler:!1},Wg={readContext:bt,useCallback:vd,useContext:bt,useEffect:yl,useImperativeHandle:_d,useInsertionEffect:Ed,useLayoutEffect:Ad,useMemo:Dd,useReducer:vl,useRef:gd,useState:function(){return vl(Co)},useDebugValue:Tl,useDeferredValue:function(e){return yd(_t(),we.memoizedState,e)},useTransition:function(){return[vl(Co)[0],_t().memoizedState]},useMutableSource:id,useSyncExternalStore:ld,useId:Td,unstable_isNewReconciler:!1},Yg={readContext:bt,useCallback:vd,useContext:bt,useEffect:yl,useImperativeHandle:_d,useInsertionEffect:Ed,useLayoutEffect:Ad,useMemo:Dd,useReducer:Dl,useRef:gd,useState:function(){return Dl(Co)},useDebugValue:Tl,useDeferredValue:function(e){var t=_t();return null===we?t.memoizedState=e:yd(t,we.memoizedState,e)},useTransition:function(){return[Dl(Co)[0],_t().memoizedState]},useMutableSource:id,useSyncExternalStore:ld,useId:Td,unstable_isNewReconciler:!1};function Tr(e,t){try{var n="",r=t;do{n+=ym(r),r=r.return}while(r);var o=n}catch(a){o="\nError generating stack: "+a.message+"\n"+a.stack}return{value:e,source:t,stack:o,digest:null}}function Cl(e,t,n){return{value:e,source:null,stack:n??null,digest:t??null}}function Nl(e,t){try{console.error(t.value)}catch(n){setTimeout((function(){throw n}))}}var Kg="function"==typeof WeakMap?WeakMap:Map;function wd(e,t,n){(n=tn(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){Ya||(Ya=!0,Hl=r),Nl(0,t)},n}function xd(e,t,n){(n=tn(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var o=t.value;n.payload=function(){return r(o)},n.callback=function(){Nl(0,t)}}var a=e.stateNode;return null!==a&&"function"==typeof a.componentDidCatch&&(n.callback=function(){Nl(0,t),"function"!=typeof r&&(null===Dn?Dn=new Set([this]):Dn.add(this));var s=t.stack;this.componentDidCatch(t.value,{componentStack:null!==s?s:""})}),n}function Rd(e,t,n){var r=e.pingCache;if(null===r){r=e.pingCache=new Kg;var o=new Set;r.set(t,o)}else void 0===(o=r.get(t))&&(o=new Set,r.set(t,o));o.has(n)||(o.add(n),e=ch.bind(null,e,t,n),t.then(e,e))}function Ld(e){do{var t;if((t=13===e.tag)&&(t=null===(t=e.memoizedState)||null!==t.dehydrated),t)return e;e=e.return}while(null!==e);return null}function Od(e,t,n,r,o){return 1&e.mode?(e.flags|=65536,e.lanes=o,e):(e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,1===n.tag&&(null===n.alternate?n.tag=17:((t=tn(-1,1)).tag=2,_n(n,t,1))),n.lanes|=1),e)}var Xg=Yt.ReactCurrentOwner,tt=!1;function Ke(e,t,n,r){t.child=null===e?ad(t,null,n,r):Dr(t,e.child,n,r)}function kd(e,t,n,r,o){n=n.render;var a=t.ref;return vr(t,o),r=bl(e,t,n,r,a,o),n=_l(),null===e||tt?(be&&n&&el(t),t.flags|=1,Ke(e,t,r,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,nn(e,t,o))}function Id(e,t,n,r,o){if(null===e){var a=n.type;return"function"!=typeof a||Wl(a)||void 0!==a.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=ts(n.type,null,r,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=a,Md(e,t,a,r,o))}if(a=e.child,!(e.lanes&o)){var s=a.memoizedProps;if((n=null!==(n=n.compare)?n:po)(s,r)&&e.ref===t.ref)return nn(e,t,o)}return t.flags|=1,(e=Nn(a,r)).ref=t.ref,e.return=t,t.child=e}function Md(e,t,n,r,o){if(null!==e){var a=e.memoizedProps;if(po(a,r)&&e.ref===t.ref){if(tt=!1,t.pendingProps=r=a,0==(e.lanes&o))return t.lanes=e.lanes,nn(e,t,o);131072&e.flags&&(tt=!0)}}return Sl(e,t,n,r,o)}function Fd(e,t,n){var r=t.pendingProps,o=r.children,a=null!==e?e.memoizedState:null;if("hidden"===r.mode)if(1&t.mode){if(!(1073741824&n))return e=null!==a?a.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,fe(Nr,pt),pt|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=null!==a?a.baseLanes:n,fe(Nr,pt),pt|=r}else t.memoizedState={baseLanes:0,cachePool:null,transitions:null},fe(Nr,pt),pt|=n;else null!==a?(r=a.baseLanes|n,t.memoizedState=null):r=n,fe(Nr,pt),pt|=r;return Ke(e,t,o,n),t.child}function Bd(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function Sl(e,t,n,r,o){var a=et(n)?On:qe.current;return a=hr(t,a),vr(t,o),n=bl(e,t,n,r,a,o),r=_l(),null===e||tt?(be&&r&&el(t),t.flags|=1,Ke(e,t,n,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,nn(e,t,o))}function Pd(e,t,n,r,o){if(et(n)){var a=!0;Na(t)}else a=!1;if(vr(t,o),null===t.stateNode)Ga(e,t),td(t,n,r),pl(t,n,r,o),r=!0;else if(null===e){var s=t.stateNode,i=t.memoizedProps;s.props=i;var l=s.context,u=n.contextType;"object"==typeof u&&null!==u?u=bt(u):u=hr(t,u=et(n)?On:qe.current);var c=n.getDerivedStateFromProps,p="function"==typeof c||"function"==typeof s.getSnapshotBeforeUpdate;p||"function"!=typeof s.UNSAFE_componentWillReceiveProps&&"function"!=typeof s.componentWillReceiveProps||(i!==r||l!==u)&&nd(t,s,r,u),bn=!1;var d=t.memoizedState;s.state=d,Ia(t,r,s,o),l=t.memoizedState,i!==r||d!==l||Je.current||bn?("function"==typeof c&&(dl(t,n,c,r),l=t.memoizedState),(i=bn||ed(t,n,i,r,d,l,u))?(p||"function"!=typeof s.UNSAFE_componentWillMount&&"function"!=typeof s.componentWillMount||("function"==typeof s.componentWillMount&&s.componentWillMount(),"function"==typeof s.UNSAFE_componentWillMount&&s.UNSAFE_componentWillMount()),"function"==typeof s.componentDidMount&&(t.flags|=4194308)):("function"==typeof s.componentDidMount&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=l),s.props=r,s.state=l,s.context=u,r=i):("function"==typeof s.componentDidMount&&(t.flags|=4194308),r=!1)}else{s=t.stateNode,K0(e,t),i=t.memoizedProps,u=t.type===t.elementType?i:Rt(t.type,i),s.props=u,p=t.pendingProps,d=s.context,"object"==typeof(l=n.contextType)&&null!==l?l=bt(l):l=hr(t,l=et(n)?On:qe.current);var g=n.getDerivedStateFromProps;(c="function"==typeof g||"function"==typeof s.getSnapshotBeforeUpdate)||"function"!=typeof s.UNSAFE_componentWillReceiveProps&&"function"!=typeof s.componentWillReceiveProps||(i!==p||d!==l)&&nd(t,s,r,l),bn=!1,d=t.memoizedState,s.state=d,Ia(t,r,s,o);var A=t.memoizedState;i!==p||d!==A||Je.current||bn?("function"==typeof g&&(dl(t,n,g,r),A=t.memoizedState),(u=bn||ed(t,n,u,r,d,A,l)||!1)?(c||"function"!=typeof s.UNSAFE_componentWillUpdate&&"function"!=typeof s.componentWillUpdate||("function"==typeof s.componentWillUpdate&&s.componentWillUpdate(r,A,l),"function"==typeof s.UNSAFE_componentWillUpdate&&s.UNSAFE_componentWillUpdate(r,A,l)),"function"==typeof s.componentDidUpdate&&(t.flags|=4),"function"==typeof s.getSnapshotBeforeUpdate&&(t.flags|=1024)):("function"!=typeof s.componentDidUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=4),"function"!=typeof s.getSnapshotBeforeUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=A),s.props=r,s.state=A,s.context=l,r=u):("function"!=typeof s.componentDidUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=4),"function"!=typeof s.getSnapshotBeforeUpdate||i===e.memoizedProps&&d===e.memoizedState||(t.flags|=1024),r=!1)}return wl(e,t,n,r,a,o)}function wl(e,t,n,r,o,a){Bd(e,t);var s=0!=(128&t.flags);if(!r&&!s)return o&&V0(t,n,!1),nn(e,t,a);r=t.stateNode,Xg.current=t;var i=s&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&s?(t.child=Dr(t,e.child,null,a),t.child=Dr(t,null,i,a)):Ke(e,t,i,a),t.memoizedState=r.state,o&&V0(t,n,!0),t.child}function Ud(e){var t=e.stateNode;t.pendingContext?q0(0,t.pendingContext,t.pendingContext!==t.context):t.context&&q0(0,t.context,!1),fl(e,t.containerInfo)}function qd(e,t,n,r,o){return br(),ol(o),t.flags|=256,Ke(e,t,n,r),t.child}var Gd,kl,$d,Zd,xl={dehydrated:null,treeContext:null,retryLane:0};function Rl(e){return{baseLanes:e,cachePool:null,transitions:null}}function Hd(e,t,n){var i,r=t.pendingProps,o=ve.current,a=!1,s=0!=(128&t.flags);if((i=s)||(i=(null===e||null!==e.memoizedState)&&0!=(2&o)),i?(a=!0,t.flags&=-129):(null===e||null!==e.memoizedState)&&(o|=1),fe(ve,1&o),null===e)return rl(t),null!==(e=t.memoizedState)&&null!==(e=e.dehydrated)?(1&t.mode?"$!"===e.data?t.lanes=8:t.lanes=1073741824:t.lanes=1,null):(s=r.children,e=r.fallback,a?(r=t.mode,a=t.child,s={mode:"hidden",children:s},1&r||null===a?a=ns(s,r,0,null):(a.childLanes=0,a.pendingProps=s),e=Vn(e,r,n,null),a.return=t,e.return=t,a.sibling=e,t.child=a,t.child.memoizedState=Rl(n),t.memoizedState=xl,e):Ll(t,s));if(null!==(o=e.memoizedState)&&null!==(i=o.dehydrated))return function(e,t,n,r,o,a,s){if(n)return 256&t.flags?(t.flags&=-257,r=Cl(Error(M(422))),za(e,t,s,r)):null!==t.memoizedState?(t.child=e.child,t.flags|=128,null):(a=r.fallback,o=t.mode,r=ns({mode:"visible",children:r.children},o,0,null),a=Vn(a,o,s,null),a.flags|=2,r.return=t,a.return=t,r.sibling=a,t.child=r,1&t.mode&&Dr(t,e.child,null,s),t.child.memoizedState=Rl(s),t.memoizedState=xl,a);if(!(1&t.mode))return za(e,t,s,null);if("$!"===o.data){if(r=o.nextSibling&&o.nextSibling.dataset)var i=r.dgst;return r=i,za(e,t,s,r=Cl(a=Error(M(419)),r,void 0))}if(i=0!=(s&e.childLanes),tt||i){if(null!==(r=Oe)){switch(s&-s){case 4:o=2;break;case 16:o=8;break;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:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:o=32;break;case 536870912:o=268435456;break;default:o=0}0!==(o=o&(r.suspendedLanes|s)?0:o)&&o!==a.retryLane&&(a.retryLane=o,en(e,o),kt(r,e,o,-1))}return jl(),za(e,t,s,r=Cl(Error(M(421))))}return"$?"===o.data?(t.flags|=128,t.child=e.child,t=dh.bind(null,e),o._reactRetry=t,null):(e=a.treeContext,dt=gn(o.nextSibling),ct=t,be=!0,xt=null,null!==e&&(Et[At++]=Qt,Et[At++]=Jt,Et[At++]=kn,Qt=e.id,Jt=e.overflow,kn=t),t=Ll(t,r.children),t.flags|=4096,t)}(e,t,s,r,i,o,n);if(a){a=r.fallback,s=t.mode,i=(o=e.child).sibling;var l={mode:"hidden",children:r.children};return 1&s||t.child===o?(r=Nn(o,l)).subtreeFlags=14680064&o.subtreeFlags:((r=t.child).childLanes=0,r.pendingProps=l,t.deletions=null),null!==i?a=Nn(i,a):(a=Vn(a,s,n,null)).flags|=2,a.return=t,r.return=t,r.sibling=a,t.child=r,r=a,a=t.child,s=null===(s=e.child.memoizedState)?Rl(n):{baseLanes:s.baseLanes|n,cachePool:null,transitions:s.transitions},a.memoizedState=s,a.childLanes=e.childLanes&~n,t.memoizedState=xl,r}return e=(a=e.child).sibling,r=Nn(a,{mode:"visible",children:r.children}),!(1&t.mode)&&(r.lanes=n),r.return=t,r.sibling=null,null!==e&&(null===(n=t.deletions)?(t.deletions=[e],t.flags|=16):n.push(e)),t.child=r,t.memoizedState=null,r}function Ll(e,t){return(t=ns({mode:"visible",children:t},e.mode,0,null)).return=e,e.child=t}function za(e,t,n,r){return null!==r&&ol(r),Dr(t,e.child,null,n),(e=Ll(t,t.pendingProps.children)).flags|=2,t.memoizedState=null,e}function Vd(e,t,n){e.lanes|=t;var r=e.alternate;null!==r&&(r.lanes|=t),ll(e.return,t,n)}function Ol(e,t,n,r,o){var a=e.memoizedState;null===a?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:o}:(a.isBackwards=t,a.rendering=null,a.renderingStartTime=0,a.last=r,a.tail=n,a.tailMode=o)}function zd(e,t,n){var r=t.pendingProps,o=r.revealOrder,a=r.tail;if(Ke(e,t,r.children,n),2&(r=ve.current))r=1&r|2,t.flags|=128;else{if(null!==e&&128&e.flags)e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Vd(e,n,t);else if(19===e.tag)Vd(e,n,t);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(fe(ve,r),1&t.mode)switch(o){case"forwards":for(n=t.child,o=null;null!==n;)null!==(e=n.alternate)&&null===Ba(e)&&(o=n),n=n.sibling;null===(n=o)?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),Ol(t,!1,o,n,a);break;case"backwards":for(n=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===Ba(e)){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}Ol(t,!0,n,null,a);break;case"together":Ol(t,!1,null,null,void 0);break;default:t.memoizedState=null}else t.memoizedState=null;return t.child}function Ga(e,t){!(1&t.mode)&&null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2)}function nn(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),Pn|=t.lanes,!(n&t.childLanes))return null;if(null!==e&&t.child!==e.child)throw Error(M(153));if(null!==t.child){for(n=Nn(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=Nn(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function So(e,t){if(!be)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function Ve(e){var t=null!==e.alternate&&e.alternate.child===e.child,n=0,r=0;if(t)for(var o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=14680064&o.subtreeFlags,r|=14680064&o.flags,o.return=e,o=o.sibling;else for(o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=o.subtreeFlags,r|=o.flags,o.return=e,o=o.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function eh(e,t,n){var r=t.pendingProps;switch(tl(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Ve(t),null;case 1:case 17:return et(t.type)&&Ca(),Ve(t),null;case 3:return r=t.stateNode,yr(),Ae(Je),Ae(qe),hl(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),(null===e||null===e.child)&&(Ra(t)?t.flags|=4:null===e||e.memoizedState.isDehydrated&&!(256&t.flags)||(t.flags|=1024,null!==xt&&(Gl(xt),xt=null))),kl(e,t),Ve(t),null;case 5:ml(t);var o=Fn(Do.current);if(n=t.type,null!==e&&null!=t.stateNode)$d(e,t,n,r,o),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!r){if(null===t.stateNode)throw Error(M(166));return Ve(t),null}if(e=Fn(qt.current),Ra(t)){r=t.stateNode,n=t.type;var a=t.memoizedProps;switch(r[Ut]=t,r[Eo]=a,e=0!=(1&t.mode),n){case"dialog":Ee("cancel",r),Ee("close",r);break;case"iframe":case"object":case"embed":Ee("load",r);break;case"video":case"audio":for(o=0;o<mo.length;o++)Ee(mo[o],r);break;case"source":Ee("error",r);break;case"img":case"image":case"link":Ee("error",r),Ee("load",r);break;case"details":Ee("toggle",r);break;case"input":Cc(r,a),Ee("invalid",r);break;case"select":r._wrapperState={wasMultiple:!!a.multiple},Ee("invalid",r);break;case"textarea":wc(r,a),Ee("invalid",r)}for(var s in fi(n,a),o=null,a)if(a.hasOwnProperty(s)){var i=a[s];"children"===s?"string"==typeof i?r.textContent!==i&&(!0!==a.suppressHydrationWarning&&Da(r.textContent,i,e),o=["children",i]):"number"==typeof i&&r.textContent!==""+i&&(!0!==a.suppressHydrationWarning&&Da(r.textContent,i,e),o=["children",""+i]):Gr.hasOwnProperty(s)&&null!=i&&"onScroll"===s&&Ee("scroll",r)}switch(n){case"input":Jo(r),Sc(r,a,!0);break;case"textarea":Jo(r),Rc(r);break;case"select":case"option":break;default:"function"==typeof a.onClick&&(r.onclick=ya)}r=o,t.updateQueue=r,null!==r&&(t.flags|=4)}else{s=9===o.nodeType?o:o.ownerDocument,"http://www.w3.org/1999/xhtml"===e&&(e=Lc(n)),"http://www.w3.org/1999/xhtml"===e?"script"===n?((e=s.createElement("div")).innerHTML="<script><\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=s.createElement(n,{is:r.is}):(e=s.createElement(n),"select"===n&&(s=e,r.multiple?s.multiple=!0:r.size&&(s.size=r.size))):e=s.createElementNS(e,n),e[Ut]=t,e[Eo]=r,Gd(e,t,!1,!1),t.stateNode=e;e:{switch(s=mi(n,r),n){case"dialog":Ee("cancel",e),Ee("close",e),o=r;break;case"iframe":case"object":case"embed":Ee("load",e),o=r;break;case"video":case"audio":for(o=0;o<mo.length;o++)Ee(mo[o],e);o=r;break;case"source":Ee("error",e),o=r;break;case"img":case"image":case"link":Ee("error",e),Ee("load",e),o=r;break;case"details":Ee("toggle",e),o=r;break;case"input":Cc(e,r),o=li(e,r),Ee("invalid",e);break;case"option":default:o=r;break;case"select":e._wrapperState={wasMultiple:!!r.multiple},o=_e({},r,{value:void 0}),Ee("invalid",e);break;case"textarea":wc(e,r),o=di(e,r),Ee("invalid",e)}for(a in fi(n,o),i=o)if(i.hasOwnProperty(a)){var l=i[a];"style"===a?Ic(e,l):"dangerouslySetInnerHTML"===a?null!=(l=l?l.__html:void 0)&&Oc(e,l):"children"===a?"string"==typeof l?("textarea"!==n||""!==l)&&Wr(e,l):"number"==typeof l&&Wr(e,""+l):"suppressContentEditableWarning"!==a&&"suppressHydrationWarning"!==a&&"autoFocus"!==a&&(Gr.hasOwnProperty(a)?null!=l&&"onScroll"===a&&Ee("scroll",e):null!=l&&Xs(e,a,l,s))}switch(n){case"input":Jo(e),Sc(e,r,!1);break;case"textarea":Jo(e),Rc(e);break;case"option":null!=r.value&&e.setAttribute("value",""+ln(r.value));break;case"select":e.multiple=!!r.multiple,null!=(a=r.value)?or(e,!!r.multiple,a,!1):null!=r.defaultValue&&or(e,!!r.multiple,r.defaultValue,!0);break;default:"function"==typeof o.onClick&&(e.onclick=ya)}switch(n){case"button":case"input":case"select":case"textarea":r=!!r.autoFocus;break e;case"img":r=!0;break e;default:r=!1}}r&&(t.flags|=4)}null!==t.ref&&(t.flags|=512,t.flags|=2097152)}return Ve(t),null;case 6:if(e&&null!=t.stateNode)Zd(e,t,e.memoizedProps,r);else{if("string"!=typeof r&&null===t.stateNode)throw Error(M(166));if(n=Fn(Do.current),Fn(qt.current),Ra(t)){if(r=t.stateNode,n=t.memoizedProps,r[Ut]=t,(a=r.nodeValue!==n)&&null!==(e=ct))switch(e.tag){case 3:Da(r.nodeValue,n,0!=(1&e.mode));break;case 5:!0!==e.memoizedProps.suppressHydrationWarning&&Da(r.nodeValue,n,0!=(1&e.mode))}a&&(t.flags|=4)}else(r=(9===n.nodeType?n:n.ownerDocument).createTextNode(r))[Ut]=t,t.stateNode=r}return Ve(t),null;case 13:if(Ae(ve),r=t.memoizedState,null===e||null!==e.memoizedState&&null!==e.memoizedState.dehydrated){if(be&&null!==dt&&1&t.mode&&!(128&t.flags))W0(),br(),t.flags|=98560,a=!1;else if(a=Ra(t),null!==r&&null!==r.dehydrated){if(null===e){if(!a)throw Error(M(318));if(!(a=null!==(a=t.memoizedState)?a.dehydrated:null))throw Error(M(317));a[Ut]=t}else br(),!(128&t.flags)&&(t.memoizedState=null),t.flags|=4;Ve(t),a=!1}else null!==xt&&(Gl(xt),xt=null),a=!0;if(!a)return 65536&t.flags?t:null}return 128&t.flags?(t.lanes=n,t):((r=null!==r)!==(null!==e&&null!==e.memoizedState)&&r&&(t.child.flags|=8192,1&t.mode&&(null===e||1&ve.current?0===xe&&(xe=3):jl())),null!==t.updateQueue&&(t.flags|=4),Ve(t),null);case 4:return yr(),kl(e,t),null===e&&go(t.stateNode.containerInfo),Ve(t),null;case 10:return il(t.type._context),Ve(t),null;case 19:if(Ae(ve),null===(a=t.memoizedState))return Ve(t),null;if(r=0!=(128&t.flags),null===(s=a.rendering))if(r)So(a,!1);else{if(0!==xe||null!==e&&128&e.flags)for(e=t.child;null!==e;){if(null!==(s=Ba(e))){for(t.flags|=128,So(a,!1),null!==(r=s.updateQueue)&&(t.updateQueue=r,t.flags|=4),t.subtreeFlags=0,r=n,n=t.child;null!==n;)e=r,(a=n).flags&=14680066,null===(s=a.alternate)?(a.childLanes=0,a.lanes=e,a.child=null,a.subtreeFlags=0,a.memoizedProps=null,a.memoizedState=null,a.updateQueue=null,a.dependencies=null,a.stateNode=null):(a.childLanes=s.childLanes,a.lanes=s.lanes,a.child=s.child,a.subtreeFlags=0,a.deletions=null,a.memoizedProps=s.memoizedProps,a.memoizedState=s.memoizedState,a.updateQueue=s.updateQueue,a.type=s.type,e=s.dependencies,a.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return fe(ve,1&ve.current|2),t.child}e=e.sibling}null!==a.tail&&Ne()>Sr&&(t.flags|=128,r=!0,So(a,!1),t.lanes=4194304)}else{if(!r)if(null!==(e=Ba(s))){if(t.flags|=128,r=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),So(a,!0),null===a.tail&&"hidden"===a.tailMode&&!s.alternate&&!be)return Ve(t),null}else 2*Ne()-a.renderingStartTime>Sr&&1073741824!==n&&(t.flags|=128,r=!0,So(a,!1),t.lanes=4194304);a.isBackwards?(s.sibling=t.child,t.child=s):(null!==(n=a.last)?n.sibling=s:t.child=s,a.last=s)}return null!==a.tail?(t=a.tail,a.rendering=t,a.tail=t.sibling,a.renderingStartTime=Ne(),t.sibling=null,n=ve.current,fe(ve,r?1&n|2:1&n),t):(Ve(t),null);case 22:case 23:return Zl(),r=null!==t.memoizedState,null!==e&&null!==e.memoizedState!==r&&(t.flags|=8192),r&&1&t.mode?1073741824&pt&&(Ve(t),6&t.subtreeFlags&&(t.flags|=8192)):Ve(t),null;case 24:case 25:return null}throw Error(M(156,t.tag))}function th(e,t){switch(tl(t),t.tag){case 1:return et(t.type)&&Ca(),65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 3:return yr(),Ae(Je),Ae(qe),hl(),65536&(e=t.flags)&&!(128&e)?(t.flags=-65537&e|128,t):null;case 5:return ml(t),null;case 13:if(Ae(ve),null!==(e=t.memoizedState)&&null!==e.dehydrated){if(null===t.alternate)throw Error(M(340));br()}return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 19:return Ae(ve),null;case 4:return yr(),null;case 10:return il(t.type._context),null;case 22:case 23:return Zl(),null;default:return null}}Gd=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},kl=function(){},$d=function(e,t,n,r){var o=e.memoizedProps;if(o!==r){e=t.stateNode,Fn(qt.current);var s,a=null;switch(n){case"input":o=li(e,o),r=li(e,r),a=[];break;case"select":o=_e({},o,{value:void 0}),r=_e({},r,{value:void 0}),a=[];break;case"textarea":o=di(e,o),r=di(e,r),a=[];break;default:"function"!=typeof o.onClick&&"function"==typeof r.onClick&&(e.onclick=ya)}for(u in fi(n,r),n=null,o)if(!r.hasOwnProperty(u)&&o.hasOwnProperty(u)&&null!=o[u])if("style"===u){var i=o[u];for(s in i)i.hasOwnProperty(s)&&(n||(n={}),n[s]="")}else"dangerouslySetInnerHTML"!==u&&"children"!==u&&"suppressContentEditableWarning"!==u&&"suppressHydrationWarning"!==u&&"autoFocus"!==u&&(Gr.hasOwnProperty(u)?a||(a=[]):(a=a||[]).push(u,null));for(u in r){var l=r[u];if(i=null!=o?o[u]:void 0,r.hasOwnProperty(u)&&l!==i&&(null!=l||null!=i))if("style"===u)if(i){for(s in i)!i.hasOwnProperty(s)||l&&l.hasOwnProperty(s)||(n||(n={}),n[s]="");for(s in l)l.hasOwnProperty(s)&&i[s]!==l[s]&&(n||(n={}),n[s]=l[s])}else n||(a||(a=[]),a.push(u,n)),n=l;else"dangerouslySetInnerHTML"===u?(l=l?l.__html:void 0,i=i?i.__html:void 0,null!=l&&i!==l&&(a=a||[]).push(u,l)):"children"===u?"string"!=typeof l&&"number"!=typeof l||(a=a||[]).push(u,""+l):"suppressContentEditableWarning"!==u&&"suppressHydrationWarning"!==u&&(Gr.hasOwnProperty(u)?(null!=l&&"onScroll"===u&&Ee("scroll",e),a||i===l||(a=[])):(a=a||[]).push(u,l))}n&&(a=a||[]).push("style",n);var u=a;(t.updateQueue=u)&&(t.flags|=4)}},Zd=function(e,t,n,r){n!==r&&(t.flags|=4)};var $a=!1,ze=!1,nh="function"==typeof WeakSet?WeakSet:Set,U=null;function Cr(e,t){var n=e.ref;if(null!==n)if("function"==typeof n)try{n(null)}catch(r){Te(e,t,r)}else n.current=null}function Il(e,t,n){try{n()}catch(r){Te(e,t,r)}}var jd=!1;function wo(e,t,n){var r=t.updateQueue;if(null!==(r=null!==r?r.lastEffect:null)){var o=r=r.next;do{if((o.tag&e)===e){var a=o.destroy;o.destroy=void 0,void 0!==a&&Il(t,n,a)}o=o.next}while(o!==r)}}function Za(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect: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 Ml(e){var t=e.ref;if(null!==t){var n=e.stateNode;e.tag,e=n,"function"==typeof t?t(e):t.current=e}}function Wd(e){var t=e.alternate;null!==t&&(e.alternate=null,Wd(t)),e.child=null,e.deletions=null,e.sibling=null,5===e.tag&&(null!==(t=e.stateNode)&&(delete t[Ut],delete t[Eo],delete t[Xi],delete t[Ug],delete t[qg])),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 Yd(e){return 5===e.tag||3===e.tag||4===e.tag}function Kd(e){e:for(;;){for(;null===e.sibling;){if(null===e.return||Yd(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;5!==e.tag&&6!==e.tag&&18!==e.tag;){if(2&e.flags||null===e.child||4===e.tag)continue e;e.child.return=e,e=e.child}if(!(2&e.flags))return e.stateNode}}function Fl(e,t,n){var r=e.tag;if(5===r||6===r)e=e.stateNode,t?8===n.nodeType?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(8===n.nodeType?(t=n.parentNode).insertBefore(e,n):(t=n).appendChild(e),null!=(n=n._reactRootContainer)||null!==t.onclick||(t.onclick=ya));else if(4!==r&&null!==(e=e.child))for(Fl(e,t,n),e=e.sibling;null!==e;)Fl(e,t,n),e=e.sibling}function Bl(e,t,n){var r=e.tag;if(5===r||6===r)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(4!==r&&null!==(e=e.child))for(Bl(e,t,n),e=e.sibling;null!==e;)Bl(e,t,n),e=e.sibling}var Fe=null,Lt=!1;function vn(e,t,n){for(n=n.child;null!==n;)Xd(e,t,n),n=n.sibling}function Xd(e,t,n){if(Pt&&"function"==typeof Pt.onCommitFiberUnmount)try{Pt.onCommitFiberUnmount(aa,n)}catch{}switch(n.tag){case 5:ze||Cr(n,t);case 6:var r=Fe,o=Lt;Fe=null,vn(e,t,n),Lt=o,null!==(Fe=r)&&(Lt?(e=Fe,n=n.stateNode,8===e.nodeType?e.parentNode.removeChild(n):e.removeChild(n)):Fe.removeChild(n.stateNode));break;case 18:null!==Fe&&(Lt?(e=Fe,n=n.stateNode,8===e.nodeType?Ki(e.parentNode,n):1===e.nodeType&&Ki(e,n),ao(e)):Ki(Fe,n.stateNode));break;case 4:r=Fe,o=Lt,Fe=n.stateNode.containerInfo,Lt=!0,vn(e,t,n),Fe=r,Lt=o;break;case 0:case 11:case 14:case 15:if(!ze&&(null!==(r=n.updateQueue)&&null!==(r=r.lastEffect))){o=r=r.next;do{var a=o,s=a.destroy;a=a.tag,void 0!==s&&(2&a||4&a)&&Il(n,t,s),o=o.next}while(o!==r)}vn(e,t,n);break;case 1:if(!ze&&(Cr(n,t),"function"==typeof(r=n.stateNode).componentWillUnmount))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(i){Te(n,t,i)}vn(e,t,n);break;case 21:vn(e,t,n);break;case 22:1&n.mode?(ze=(r=ze)||null!==n.memoizedState,vn(e,t,n),ze=r):vn(e,t,n);break;default:vn(e,t,n)}}function Qd(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new nh),t.forEach((function(r){var o=ph.bind(null,e,r);n.has(r)||(n.add(r),r.then(o,o))}))}}function Ot(e,t){var n=t.deletions;if(null!==n)for(var r=0;r<n.length;r++){var o=n[r];try{var a=e,s=t,i=s;e:for(;null!==i;){switch(i.tag){case 5:Fe=i.stateNode,Lt=!1;break e;case 3:case 4:Fe=i.stateNode.containerInfo,Lt=!0;break e}i=i.return}if(null===Fe)throw Error(M(160));Xd(a,s,o),Fe=null,Lt=!1;var l=o.alternate;null!==l&&(l.return=null),o.return=null}catch(u){Te(o,t,u)}}if(12854&t.subtreeFlags)for(t=t.child;null!==t;)Jd(t,e),t=t.sibling}function Jd(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(Ot(t,e),Vt(e),4&r){try{wo(3,e,e.return),Za(3,e)}catch(b){Te(e,e.return,b)}try{wo(5,e,e.return)}catch(b){Te(e,e.return,b)}}break;case 1:Ot(t,e),Vt(e),512&r&&null!==n&&Cr(n,n.return);break;case 5:if(Ot(t,e),Vt(e),512&r&&null!==n&&Cr(n,n.return),32&e.flags){var o=e.stateNode;try{Wr(o,"")}catch(b){Te(e,e.return,b)}}if(4&r&&null!=(o=e.stateNode)){var a=e.memoizedProps,s=null!==n?n.memoizedProps:a,i=e.type,l=e.updateQueue;if(e.updateQueue=null,null!==l)try{"input"===i&&"radio"===a.type&&null!=a.name&&Nc(o,a),mi(i,s);var u=mi(i,a);for(s=0;s<l.length;s+=2){var c=l[s],p=l[s+1];"style"===c?Ic(o,p):"dangerouslySetInnerHTML"===c?Oc(o,p):"children"===c?Wr(o,p):Xs(o,c,p,u)}switch(i){case"input":ui(o,a);break;case"textarea":xc(o,a);break;case"select":var d=o._wrapperState.wasMultiple;o._wrapperState.wasMultiple=!!a.multiple;var g=a.value;null!=g?or(o,!!a.multiple,g,!1):d!==!!a.multiple&&(null!=a.defaultValue?or(o,!!a.multiple,a.defaultValue,!0):or(o,!!a.multiple,a.multiple?[]:"",!1))}o[Eo]=a}catch(b){Te(e,e.return,b)}}break;case 6:if(Ot(t,e),Vt(e),4&r){if(null===e.stateNode)throw Error(M(162));o=e.stateNode,a=e.memoizedProps;try{o.nodeValue=a}catch(b){Te(e,e.return,b)}}break;case 3:if(Ot(t,e),Vt(e),4&r&&null!==n&&n.memoizedState.isDehydrated)try{ao(t.containerInfo)}catch(b){Te(e,e.return,b)}break;case 4:default:Ot(t,e),Vt(e);break;case 13:Ot(t,e),Vt(e),8192&(o=e.child).flags&&(a=null!==o.memoizedState,o.stateNode.isHidden=a,!a||null!==o.alternate&&null!==o.alternate.memoizedState||(ql=Ne())),4&r&&Qd(e);break;case 22:if(c=null!==n&&null!==n.memoizedState,1&e.mode?(ze=(u=ze)||c,Ot(t,e),ze=u):Ot(t,e),Vt(e),8192&r){if(u=null!==e.memoizedState,(e.stateNode.isHidden=u)&&!c&&1&e.mode)for(U=e,c=e.child;null!==c;){for(p=U=c;null!==U;){switch(g=(d=U).child,d.tag){case 0:case 11:case 14:case 15:wo(4,d,d.return);break;case 1:Cr(d,d.return);var A=d.stateNode;if("function"==typeof A.componentWillUnmount){r=d,n=d.return;try{t=r,A.props=t.memoizedProps,A.state=t.memoizedState,A.componentWillUnmount()}catch(b){Te(r,n,b)}}break;case 5:Cr(d,d.return);break;case 22:if(null!==d.memoizedState){n2(p);continue}}null!==g?(g.return=d,U=g):n2(p)}c=c.sibling}e:for(c=null,p=e;;){if(5===p.tag){if(null===c){c=p;try{o=p.stateNode,u?"function"==typeof(a=o.style).setProperty?a.setProperty("display","none","important"):a.display="none":(i=p.stateNode,s=null!=(l=p.memoizedProps.style)&&l.hasOwnProperty("display")?l.display:null,i.style.display=kc("display",s))}catch(b){Te(e,e.return,b)}}}else if(6===p.tag){if(null===c)try{p.stateNode.nodeValue=u?"":p.memoizedProps}catch(b){Te(e,e.return,b)}}else if((22!==p.tag&&23!==p.tag||null===p.memoizedState||p===e)&&null!==p.child){p.child.return=p,p=p.child;continue}if(p===e)break e;for(;null===p.sibling;){if(null===p.return||p.return===e)break e;c===p&&(c=null),p=p.return}c===p&&(c=null),p.sibling.return=p.return,p=p.sibling}}break;case 19:Ot(t,e),Vt(e),4&r&&Qd(e);case 21:}}function Vt(e){var t=e.flags;if(2&t){try{e:{for(var n=e.return;null!==n;){if(Yd(n)){var r=n;break e}n=n.return}throw Error(M(160))}switch(r.tag){case 5:var o=r.stateNode;32&r.flags&&(Wr(o,""),r.flags&=-33),Bl(e,Kd(e),o);break;case 3:case 4:var s=r.stateNode.containerInfo;Fl(e,Kd(e),s);break;default:throw Error(M(161))}}catch(l){Te(e,e.return,l)}e.flags&=-3}4096&t&&(e.flags&=-4097)}function oh(e,t,n){U=e,e2(e)}function e2(e,t,n){for(var r=0!=(1&e.mode);null!==U;){var o=U,a=o.child;if(22===o.tag&&r){var s=null!==o.memoizedState||$a;if(!s){var i=o.alternate,l=null!==i&&null!==i.memoizedState||ze;i=$a;var u=ze;if($a=s,(ze=l)&&!u)for(U=o;null!==U;)l=(s=U).child,22===s.tag&&null!==s.memoizedState?r2(o):null!==l?(l.return=s,U=l):r2(o);for(;null!==a;)U=a,e2(a),a=a.sibling;U=o,$a=i,ze=u}t2(e)}else 8772&o.subtreeFlags&&null!==a?(a.return=o,U=a):t2(e)}}function t2(e){for(;null!==U;){var t=U;if(8772&t.flags){var n=t.alternate;try{if(8772&t.flags)switch(t.tag){case 0:case 11:case 15:ze||Za(5,t);break;case 1:var r=t.stateNode;if(4&t.flags&&!ze)if(null===n)r.componentDidMount();else{var o=t.elementType===t.type?n.memoizedProps:Rt(t.type,n.memoizedProps);r.componentDidUpdate(o,n.memoizedState,r.__reactInternalSnapshotBeforeUpdate)}var a=t.updateQueue;null!==a&&Q0(t,a,r);break;case 3:var s=t.updateQueue;if(null!==s){if(n=null,null!==t.child)switch(t.child.tag){case 5:case 1:n=t.child.stateNode}Q0(t,s,n)}break;case 5:var i=t.stateNode;if(null===n&&4&t.flags){n=i;var l=t.memoizedProps;switch(t.type){case"button":case"input":case"select":case"textarea":l.autoFocus&&n.focus();break;case"img":l.src&&(n.src=l.src)}}break;case 6:case 4:case 12:case 19:case 17:case 21:case 22:case 23:case 25:break;case 13:if(null===t.memoizedState){var u=t.alternate;if(null!==u){var c=u.memoizedState;if(null!==c){var p=c.dehydrated;null!==p&&ao(p)}}}break;default:throw Error(M(163))}ze||512&t.flags&&Ml(t)}catch(d){Te(t,t.return,d)}}if(t===e){U=null;break}if(null!==(n=t.sibling)){n.return=t.return,U=n;break}U=t.return}}function n2(e){for(;null!==U;){var t=U;if(t===e){U=null;break}var n=t.sibling;if(null!==n){n.return=t.return,U=n;break}U=t.return}}function r2(e){for(;null!==U;){var t=U;try{switch(t.tag){case 0:case 11:case 15:var n=t.return;try{Za(4,t)}catch(l){Te(t,n,l)}break;case 1:var r=t.stateNode;if("function"==typeof r.componentDidMount){var o=t.return;try{r.componentDidMount()}catch(l){Te(t,o,l)}}var a=t.return;try{Ml(t)}catch(l){Te(t,a,l)}break;case 5:var s=t.return;try{Ml(t)}catch(l){Te(t,s,l)}}}catch(l){Te(t,t.return,l)}if(t===e){U=null;break}var i=t.sibling;if(null!==i){i.return=t.return,U=i;break}U=t.return}}var p2,ah=Math.ceil,ja=Yt.ReactCurrentDispatcher,Pl=Yt.ReactCurrentOwner,vt=Yt.ReactCurrentBatchConfig,re=0,Oe=null,Se=null,Be=0,pt=0,Nr=hn(0),xe=0,xo=null,Pn=0,Wa=0,Ul=0,Ro=null,nt=null,ql=0,Sr=1/0,rn=null,Ya=!1,Hl=null,Dn=null,Ka=!1,yn=null,Xa=0,Lo=0,Vl=null,Qa=-1,Ja=0;function Xe(){return 6&re?Ne():-1!==Qa?Qa:Qa=Ne()}function Tn(e){return 1&e.mode?2&re&&0!==Be?Be&-Be:null!==Vg.transition?(0===Ja&&(Ja=Yc()),Ja):(0!==(e=ue)||(e=void 0===(e=window.event)?16:o0(e.type)),e):1}function kt(e,t,n,r){if(50<Lo)throw Lo=0,Vl=null,Error(M(185));eo(e,n,r),(!(2&re)||e!==Oe)&&(e===Oe&&(!(2&re)&&(Wa|=n),4===xe&&Cn(e,Be)),rt(e,r),1===n&&0===re&&!(1&t.mode)&&(Sr=Ne()+500,Sa&&An()))}function rt(e,t){var n=e.callbackNode;!function(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,a=e.pendingLanes;0<a;){var s=31-St(a),i=1<<s,l=o[s];-1===l?(!(i&n)||i&r)&&(o[s]=Hm(i,t)):l<=t&&(e.expiredLanes|=i),a&=~i}}(e,t);var r=la(e,e===Oe?Be:0);if(0===r)null!==n&&Zc(n),e.callbackNode=null,e.callbackPriority=0;else if(t=r&-r,e.callbackPriority!==t){if(null!=n&&Zc(n),1===t)0===e.tag?function(e){Sa=!0,z0(e)}(a2.bind(null,e)):z0(a2.bind(null,e)),Bg((function(){!(6&re)&&An()})),n=null;else{switch(Kc(r)){case 1:n=vi;break;case 4:n=jc;break;case 16:default:n=oa;break;case 536870912:n=Wc}n=f2(n,o2.bind(null,e))}e.callbackPriority=t,e.callbackNode=n}}function o2(e,t){if(Qa=-1,Ja=0,6&re)throw Error(M(327));var n=e.callbackNode;if(wr()&&e.callbackNode!==n)return null;var r=la(e,e===Oe?Be:0);if(0===r)return null;if(30&r||r&e.expiredLanes||t)t=es(e,r);else{t=r;var o=re;re|=2;var a=i2();for((Oe!==e||Be!==t)&&(rn=null,Sr=Ne()+500,qn(e,t));;)try{lh();break}catch(i){s2(e,i)}sl(),ja.current=a,re=o,null!==Se?t=0:(Oe=null,Be=0,t=xe)}if(0!==t){if(2===t&&(0!==(o=Di(e))&&(r=o,t=zl(e,o))),1===t)throw n=xo,qn(e,0),Cn(e,r),rt(e,Ne()),n;if(6===t)Cn(e,r);else{if(o=e.current.alternate,!(30&r||function(e){for(var t=e;;){if(16384&t.flags){var n=t.updateQueue;if(null!==n&&null!==(n=n.stores))for(var r=0;r<n.length;r++){var o=n[r],a=o.getSnapshot;o=o.value;try{if(!wt(a(),o))return!1}catch{return!1}}}if(n=t.child,16384&t.subtreeFlags&&null!==n)n.return=t,t=n;else{if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}(o)||(t=es(e,r),2===t&&(a=Di(e),0!==a&&(r=a,t=zl(e,a))),1!==t)))throw n=xo,qn(e,0),Cn(e,r),rt(e,Ne()),n;switch(e.finishedWork=o,e.finishedLanes=r,t){case 0:case 1:throw Error(M(345));case 2:case 5:Hn(e,nt,rn);break;case 3:if(Cn(e,r),(130023424&r)===r&&10<(t=ql+500-Ne())){if(0!==la(e,0))break;if(((o=e.suspendedLanes)&r)!==r){Xe(),e.pingedLanes|=e.suspendedLanes&o;break}e.timeoutHandle=Yi(Hn.bind(null,e,nt,rn),t);break}Hn(e,nt,rn);break;case 4:if(Cn(e,r),(4194240&r)===r)break;for(t=e.eventTimes,o=-1;0<r;){var s=31-St(r);a=1<<s,(s=t[s])>o&&(o=s),r&=~a}if(r=o,10<(r=(120>(r=Ne()-r)?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*ah(r/1960))-r)){e.timeoutHandle=Yi(Hn.bind(null,e,nt,rn),r);break}Hn(e,nt,rn);break;default:throw Error(M(329))}}}return rt(e,Ne()),e.callbackNode===n?o2.bind(null,e):null}function zl(e,t){var n=Ro;return e.current.memoizedState.isDehydrated&&(qn(e,t).flags|=256),2!==(e=es(e,t))&&(t=nt,nt=n,null!==t&&Gl(t)),e}function Gl(e){null===nt?nt=e:nt.push.apply(nt,e)}function Cn(e,t){for(t&=~Ul,t&=~Wa,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-St(t),r=1<<n;e[n]=-1,t&=~r}}function a2(e){if(6&re)throw Error(M(327));wr();var t=la(e,0);if(!(1&t))return rt(e,Ne()),null;var n=es(e,t);if(0!==e.tag&&2===n){var r=Di(e);0!==r&&(t=r,n=zl(e,r))}if(1===n)throw n=xo,qn(e,0),Cn(e,t),rt(e,Ne()),n;if(6===n)throw Error(M(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,Hn(e,nt,rn),rt(e,Ne()),null}function $l(e,t){var n=re;re|=1;try{return e(t)}finally{0===(re=n)&&(Sr=Ne()+500,Sa&&An())}}function Un(e){null!==yn&&0===yn.tag&&!(6&re)&&wr();var t=re;re|=1;var n=vt.transition,r=ue;try{if(vt.transition=null,ue=1,e)return e()}finally{ue=r,vt.transition=n,!(6&(re=t))&&An()}}function Zl(){pt=Nr.current,Ae(Nr)}function qn(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(-1!==n&&(e.timeoutHandle=-1,Fg(n)),null!==Se)for(n=Se.return;null!==n;){var r=n;switch(tl(r),r.tag){case 1:null!=(r=r.type.childContextTypes)&&Ca();break;case 3:yr(),Ae(Je),Ae(qe),hl();break;case 5:ml(r);break;case 4:yr();break;case 13:case 19:Ae(ve);break;case 10:il(r.type._context);break;case 22:case 23:Zl()}n=n.return}if(Oe=e,Se=e=Nn(e.current,null),Be=pt=t,xe=0,xo=null,Ul=Wa=Pn=0,nt=Ro=null,null!==Mn){for(t=0;t<Mn.length;t++)if(null!==(r=(n=Mn[t]).interleaved)){n.interleaved=null;var o=r.next,a=n.pending;if(null!==a){var s=a.next;a.next=o,r.next=s}n.pending=r}Mn=null}return e}function s2(e,t){for(;;){var n=Se;try{if(sl(),Pa.current=Va,Ua){for(var r=De.memoizedState;null!==r;){var o=r.queue;null!==o&&(o.pending=null),r=r.next}Ua=!1}if(Bn=0,Le=we=De=null,yo=!1,To=0,Pl.current=null,null===n||null===n.return){xe=1,xo=t,Se=null;break}e:{var a=e,s=n.return,i=n,l=t;if(t=Be,i.flags|=32768,null!==l&&"object"==typeof l&&"function"==typeof l.then){var u=l,c=i,p=c.tag;if(!(1&c.mode||0!==p&&11!==p&&15!==p)){var d=c.alternate;d?(c.updateQueue=d.updateQueue,c.memoizedState=d.memoizedState,c.lanes=d.lanes):(c.updateQueue=null,c.memoizedState=null)}var g=Ld(s);if(null!==g){g.flags&=-257,Od(g,s,i,0,t),1&g.mode&&Rd(a,u,t),l=u;var A=(t=g).updateQueue;if(null===A){var b=new Set;b.add(l),t.updateQueue=b}else A.add(l);break e}if(!(1&t)){Rd(a,u,t),jl();break e}l=Error(M(426))}else if(be&&1&i.mode){var C=Ld(s);if(null!==C){!(65536&C.flags)&&(C.flags|=256),Od(C,s,i,0,t),ol(Tr(l,i));break e}}a=l=Tr(l,i),4!==xe&&(xe=2),null===Ro?Ro=[a]:Ro.push(a),a=s;do{switch(a.tag){case 3:a.flags|=65536,t&=-t,a.lanes|=t,X0(a,wd(0,l,t));break e;case 1:i=l;var m=a.type,E=a.stateNode;if(!(128&a.flags||"function"!=typeof m.getDerivedStateFromError&&(null===E||"function"!=typeof E.componentDidCatch||null!==Dn&&Dn.has(E)))){a.flags|=65536,t&=-t,a.lanes|=t,X0(a,xd(a,i,t));break e}}a=a.return}while(null!==a)}u2(n)}catch(N){t=N,Se===n&&null!==n&&(Se=n=n.return);continue}break}}function i2(){var e=ja.current;return ja.current=Va,null===e?Va:e}function jl(){(0===xe||3===xe||2===xe)&&(xe=4),null===Oe||!(268435455&Pn)&&!(268435455&Wa)||Cn(Oe,Be)}function es(e,t){var n=re;re|=2;var r=i2();for((Oe!==e||Be!==t)&&(rn=null,qn(e,t));;)try{ih();break}catch(o){s2(e,o)}if(sl(),re=n,ja.current=r,null!==Se)throw Error(M(261));return Oe=null,Be=0,xe}function ih(){for(;null!==Se;)l2(Se)}function lh(){for(;null!==Se&&!km();)l2(Se)}function l2(e){var t=p2(e.alternate,e,pt);e.memoizedProps=e.pendingProps,null===t?u2(e):Se=t,Pl.current=null}function u2(e){var t=e;do{var n=t.alternate;if(e=t.return,32768&t.flags){if(null!==(n=th(n,t)))return n.flags&=32767,void(Se=n);if(null===e)return xe=6,void(Se=null);e.flags|=32768,e.subtreeFlags=0,e.deletions=null}else if(null!==(n=eh(n,t,pt)))return void(Se=n);if(null!==(t=t.sibling))return void(Se=t);Se=t=e}while(null!==t);0===xe&&(xe=5)}function Hn(e,t,n){var r=ue,o=vt.transition;try{vt.transition=null,ue=1,function(e,t,n,r){do{wr()}while(null!==yn);if(6&re)throw Error(M(327));n=e.finishedWork;var o=e.finishedLanes;if(null===n)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(M(177));e.callbackNode=null,e.callbackPriority=0;var a=n.lanes|n.childLanes;if(function(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<n;){var o=31-St(n),a=1<<o;t[o]=0,r[o]=-1,e[o]=-1,n&=~a}}(e,a),e===Oe&&(Se=Oe=null,Be=0),!(2064&n.subtreeFlags)&&!(2064&n.flags)||Ka||(Ka=!0,f2(oa,(function(){return wr(),null}))),a=0!=(15990&n.flags),15990&n.subtreeFlags||a){a=vt.transition,vt.transition=null;var s=ue;ue=1;var i=re;re|=4,Pl.current=null,function(e,t){if(Zi=da,Pi(e=T0())){if("selectionStart"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{var r=(n=(n=e.ownerDocument)&&n.defaultView||window).getSelection&&n.getSelection();if(r&&0!==r.rangeCount){n=r.anchorNode;var o=r.anchorOffset,a=r.focusNode;r=r.focusOffset;try{n.nodeType,a.nodeType}catch{n=null;break e}var s=0,i=-1,l=-1,u=0,c=0,p=e,d=null;t:for(;;){for(var g;p!==n||0!==o&&3!==p.nodeType||(i=s+o),p!==a||0!==r&&3!==p.nodeType||(l=s+r),3===p.nodeType&&(s+=p.nodeValue.length),null!==(g=p.firstChild);)d=p,p=g;for(;;){if(p===e)break t;if(d===n&&++u===o&&(i=s),d===a&&++c===r&&(l=s),null!==(g=p.nextSibling))break;d=(p=d).parentNode}p=g}n=-1===i||-1===l?null:{start:i,end:l}}else n=null}n=n||{start:0,end:0}}else n=null;for(ji={focusedElem:e,selectionRange:n},da=!1,U=t;null!==U;)if(e=(t=U).child,0!=(1028&t.subtreeFlags)&&null!==e)e.return=t,U=e;else for(;null!==U;){t=U;try{var A=t.alternate;if(1024&t.flags)switch(t.tag){case 0:case 11:case 15:case 5:case 6:case 4:case 17:break;case 1:if(null!==A){var b=A.memoizedProps,C=A.memoizedState,h=t.stateNode,m=h.getSnapshotBeforeUpdate(t.elementType===t.type?b:Rt(t.type,b),C);h.__reactInternalSnapshotBeforeUpdate=m}break;case 3:var E=t.stateNode.containerInfo;1===E.nodeType?E.textContent="":9===E.nodeType&&E.documentElement&&E.removeChild(E.documentElement);break;default:throw Error(M(163))}}catch(v){Te(t,t.return,v)}if(null!==(e=t.sibling)){e.return=t.return,U=e;break}U=t.return}A=jd,jd=!1}(e,n),Jd(n,e),xg(ji),da=!!Zi,ji=Zi=null,e.current=n,oh(n),Im(),re=i,ue=s,vt.transition=a}else e.current=n;if(Ka&&(Ka=!1,yn=e,Xa=o),a=e.pendingLanes,0===a&&(Dn=null),function(e){if(Pt&&"function"==typeof Pt.onCommitFiberRoot)try{Pt.onCommitFiberRoot(aa,e,void 0,128==(128&e.current.flags))}catch{}}(n.stateNode),rt(e,Ne()),null!==t)for(r=e.onRecoverableError,n=0;n<t.length;n++)o=t[n],r(o.value,{componentStack:o.stack,digest:o.digest});if(Ya)throw Ya=!1,e=Hl,Hl=null,e;1&Xa&&0!==e.tag&&wr(),a=e.pendingLanes,1&a?e===Vl?Lo++:(Lo=0,Vl=e):Lo=0,An()}(e,t,n,r)}finally{vt.transition=o,ue=r}return null}function wr(){if(null!==yn){var e=Kc(Xa),t=vt.transition,n=ue;try{if(vt.transition=null,ue=16>e?16:e,null===yn)var r=!1;else{if(e=yn,yn=null,Xa=0,6&re)throw Error(M(331));var o=re;for(re|=4,U=e.current;null!==U;){var a=U,s=a.child;if(16&U.flags){var i=a.deletions;if(null!==i){for(var l=0;l<i.length;l++){var u=i[l];for(U=u;null!==U;){var c=U;switch(c.tag){case 0:case 11:case 15:wo(8,c,a)}var p=c.child;if(null!==p)p.return=c,U=p;else for(;null!==U;){var d=(c=U).sibling,g=c.return;if(Wd(c),c===u){U=null;break}if(null!==d){d.return=g,U=d;break}U=g}}}var A=a.alternate;if(null!==A){var b=A.child;if(null!==b){A.child=null;do{var C=b.sibling;b.sibling=null,b=C}while(null!==b)}}U=a}}if(2064&a.subtreeFlags&&null!==s)s.return=a,U=s;else e:for(;null!==U;){if(2048&(a=U).flags)switch(a.tag){case 0:case 11:case 15:wo(9,a,a.return)}var h=a.sibling;if(null!==h){h.return=a.return,U=h;break e}U=a.return}}var m=e.current;for(U=m;null!==U;){var E=(s=U).child;if(2064&s.subtreeFlags&&null!==E)E.return=s,U=E;else e:for(s=m;null!==U;){if(2048&(i=U).flags)try{switch(i.tag){case 0:case 11:case 15:Za(9,i)}}catch(N){Te(i,i.return,N)}if(i===s){U=null;break e}var v=i.sibling;if(null!==v){v.return=i.return,U=v;break e}U=i.return}}if(re=o,An(),Pt&&"function"==typeof Pt.onPostCommitFiberRoot)try{Pt.onPostCommitFiberRoot(aa,e)}catch{}r=!0}return r}finally{ue=n,vt.transition=t}}return!1}function c2(e,t,n){e=_n(e,t=wd(0,t=Tr(n,t),1),1),t=Xe(),null!==e&&(eo(e,1,t),rt(e,t))}function Te(e,t,n){if(3===e.tag)c2(e,e,n);else for(;null!==t;){if(3===t.tag){c2(t,e,n);break}if(1===t.tag){var r=t.stateNode;if("function"==typeof t.type.getDerivedStateFromError||"function"==typeof r.componentDidCatch&&(null===Dn||!Dn.has(r))){t=_n(t,e=xd(t,e=Tr(n,e),1),1),e=Xe(),null!==t&&(eo(t,1,e),rt(t,e));break}}t=t.return}}function ch(e,t,n){var r=e.pingCache;null!==r&&r.delete(t),t=Xe(),e.pingedLanes|=e.suspendedLanes&n,Oe===e&&(Be&n)===n&&(4===xe||3===xe&&(130023424&Be)===Be&&500>Ne()-ql?qn(e,0):Ul|=n),rt(e,t)}function d2(e,t){0===t&&(1&e.mode?(t=ia,!(130023424&(ia<<=1))&&(ia=4194304)):t=1);var n=Xe();null!==(e=en(e,t))&&(eo(e,t,n),rt(e,n))}function dh(e){var t=e.memoizedState,n=0;null!==t&&(n=t.retryLane),d2(e,n)}function ph(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;null!==o&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(M(314))}null!==r&&r.delete(t),d2(e,n)}function f2(e,t){return $c(e,t)}function fh(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 Dt(e,t,n,r){return new fh(e,t,n,r)}function Wl(e){return!(!(e=e.prototype)||!e.isReactComponent)}function Nn(e,t){var n=e.alternate;return null===n?((n=Dt(e.tag,t,e.key,e.mode)).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=14680064&e.flags,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=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function ts(e,t,n,r,o,a){var s=2;if(r=e,"function"==typeof e)Wl(e)&&(s=1);else if("string"==typeof e)s=5;else e:switch(e){case rr:return Vn(n.children,o,a,t);case Qs:s=8,o|=8;break;case Js:return(e=Dt(12,n,t,2|o)).elementType=Js,e.lanes=a,e;case ti:return(e=Dt(13,n,t,o)).elementType=ti,e.lanes=a,e;case ni:return(e=Dt(19,n,t,o)).elementType=ni,e.lanes=a,e;case vc:return ns(n,o,a,t);default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case bc:s=10;break e;case _c:s=9;break e;case ei:s=11;break e;case ri:s=14;break e;case sn:s=16,r=null;break e}throw Error(M(130,null==e?e:typeof e,""))}return(t=Dt(s,n,t,o)).elementType=e,t.type=r,t.lanes=a,t}function Vn(e,t,n,r){return(e=Dt(7,e,r,t)).lanes=n,e}function ns(e,t,n,r){return(e=Dt(22,e,r,t)).elementType=vc,e.lanes=n,e.stateNode={isHidden:!1},e}function Yl(e,t,n){return(e=Dt(6,e,null,t)).lanes=n,e}function Kl(e,t,n){return(t=Dt(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function gh(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=yi(0),this.expirationTimes=yi(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=yi(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function Xl(e,t,n,r,o,a,s,i,l){return e=new gh(e,t,n,i,l),1===t?(t=1,!0===a&&(t|=8)):t=0,a=Dt(3,null,null,t),e.current=a,a.stateNode=e,a.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},cl(a),e}function m2(e){if(!e)return En;e:{if(Rn(e=e._reactInternals)!==e||1!==e.tag)throw Error(M(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(et(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(null!==t);throw Error(M(171))}if(1===e.tag){var n=e.type;if(et(n))return H0(e,n,t)}return t}function g2(e,t,n,r,o,a,s,i,l){return(e=Xl(n,r,!0,e,0,a,0,i,l)).context=m2(null),n=e.current,(a=tn(r=Xe(),o=Tn(n))).callback=t??null,_n(n,a,o),e.current.lanes=o,eo(e,o,r),rt(e,r),e}function rs(e,t,n,r){var o=t.current,a=Xe(),s=Tn(o);return n=m2(n),null===t.context?t.context=n:t.pendingContext=n,(t=tn(a,s)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),null!==(e=_n(o,t,s))&&(kt(e,o,s,a),ka(e,o,s)),s}function os(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function h2(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&n<t?n:t}}function Ql(e,t){h2(e,t),(e=e.alternate)&&h2(e,t)}p2=function(e,t,n){if(null!==e)if(e.memoizedProps!==t.pendingProps||Je.current)tt=!0;else{if(!(e.lanes&n||128&t.flags))return tt=!1,function(e,t,n){switch(t.tag){case 3:Ud(t),br();break;case 5:sd(t);break;case 1:et(t.type)&&Na(t);break;case 4:fl(t,t.stateNode.containerInfo);break;case 10:var r=t.type._context,o=t.memoizedProps.value;fe(La,r._currentValue),r._currentValue=o;break;case 13:if(null!==(r=t.memoizedState))return null!==r.dehydrated?(fe(ve,1&ve.current),t.flags|=128,null):n&t.child.childLanes?Hd(e,t,n):(fe(ve,1&ve.current),null!==(e=nn(e,t,n))?e.sibling:null);fe(ve,1&ve.current);break;case 19:if(r=0!=(n&t.childLanes),128&e.flags){if(r)return zd(e,t,n);t.flags|=128}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),fe(ve,ve.current),r)break;return null;case 22:case 23:return t.lanes=0,Fd(e,t,n)}return nn(e,t,n)}(e,t,n);tt=!!(131072&e.flags)}else tt=!1,be&&1048576&t.flags&&G0(t,xa,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;Ga(e,t),e=t.pendingProps;var o=hr(t,qe.current);vr(t,n),o=bl(null,t,r,e,o,n);var a=_l();return t.flags|=1,"object"==typeof o&&null!==o&&"function"==typeof o.render&&void 0===o.$$typeof?(t.tag=1,t.memoizedState=null,t.updateQueue=null,et(r)?(a=!0,Na(t)):a=!1,t.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,cl(t),o.updater=Ma,t.stateNode=o,o._reactInternals=t,pl(t,r,e,n),t=wl(null,t,r,!0,a,n)):(t.tag=0,be&&a&&el(t),Ke(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(Ga(e,t),e=t.pendingProps,r=(o=r._init)(r._payload),t.type=r,o=t.tag=function(e){if("function"==typeof e)return Wl(e)?1:0;if(null!=e){if((e=e.$$typeof)===ei)return 11;if(e===ri)return 14}return 2}(r),e=Rt(r,e),o){case 0:t=Sl(null,t,r,e,n);break e;case 1:t=Pd(null,t,r,e,n);break e;case 11:t=kd(null,t,r,e,n);break e;case 14:t=Id(null,t,r,Rt(r.type,e),n);break e}throw Error(M(306,r,""))}return t;case 0:return r=t.type,o=t.pendingProps,Sl(e,t,r,o=t.elementType===r?o:Rt(r,o),n);case 1:return r=t.type,o=t.pendingProps,Pd(e,t,r,o=t.elementType===r?o:Rt(r,o),n);case 3:e:{if(Ud(t),null===e)throw Error(M(387));r=t.pendingProps,o=(a=t.memoizedState).element,K0(e,t),Ia(t,r,null,n);var s=t.memoizedState;if(r=s.element,a.isDehydrated){if(a={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=a,t.memoizedState=a,256&t.flags){t=qd(e,t,r,n,o=Tr(Error(M(423)),t));break e}if(r!==o){t=qd(e,t,r,n,o=Tr(Error(M(424)),t));break e}for(dt=gn(t.stateNode.containerInfo.firstChild),ct=t,be=!0,xt=null,n=ad(t,null,r,n),t.child=n;n;)n.flags=-3&n.flags|4096,n=n.sibling}else{if(br(),r===o){t=nn(e,t,n);break e}Ke(e,t,r,n)}t=t.child}return t;case 5:return sd(t),null===e&&rl(t),r=t.type,o=t.pendingProps,a=null!==e?e.memoizedProps:null,s=o.children,Wi(r,o)?s=null:null!==a&&Wi(r,a)&&(t.flags|=32),Bd(e,t),Ke(e,t,s,n),t.child;case 6:return null===e&&rl(t),null;case 13:return Hd(e,t,n);case 4:return fl(t,t.stateNode.containerInfo),r=t.pendingProps,null===e?t.child=Dr(t,null,r,n):Ke(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,kd(e,t,r,o=t.elementType===r?o:Rt(r,o),n);case 7:return Ke(e,t,t.pendingProps,n),t.child;case 8:case 12:return Ke(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,a=t.memoizedProps,s=o.value,fe(La,r._currentValue),r._currentValue=s,null!==a)if(wt(a.value,s)){if(a.children===o.children&&!Je.current){t=nn(e,t,n);break e}}else for(null!==(a=t.child)&&(a.return=t);null!==a;){var i=a.dependencies;if(null!==i){s=a.child;for(var l=i.firstContext;null!==l;){if(l.context===r){if(1===a.tag){(l=tn(-1,n&-n)).tag=2;var u=a.updateQueue;if(null!==u){var c=(u=u.shared).pending;null===c?l.next=l:(l.next=c.next,c.next=l),u.pending=l}}a.lanes|=n,null!==(l=a.alternate)&&(l.lanes|=n),ll(a.return,n,t),i.lanes|=n;break}l=l.next}}else if(10===a.tag)s=a.type===t.type?null:a.child;else if(18===a.tag){if(null===(s=a.return))throw Error(M(341));s.lanes|=n,null!==(i=s.alternate)&&(i.lanes|=n),ll(s,n,t),s=a.sibling}else s=a.child;if(null!==s)s.return=a;else for(s=a;null!==s;){if(s===t){s=null;break}if(null!==(a=s.sibling)){a.return=s.return,s=a;break}s=s.return}a=s}Ke(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,vr(t,n),r=r(o=bt(o)),t.flags|=1,Ke(e,t,r,n),t.child;case 14:return o=Rt(r=t.type,t.pendingProps),Id(e,t,r,o=Rt(r.type,o),n);case 15:return Md(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:Rt(r,o),Ga(e,t),t.tag=1,et(r)?(e=!0,Na(t)):e=!1,vr(t,n),td(t,r,o),pl(t,r,o,n),wl(null,t,r,!0,e,n);case 19:return zd(e,t,n);case 22:return Fd(e,t,n)}throw Error(M(156,t.tag))};var E2="function"==typeof reportError?reportError:function(e){console.error(e)};function Jl(e){this._internalRoot=e}function as(e){this._internalRoot=e}function eu(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)}function ss(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||" react-mount-point-unstable "!==e.nodeValue))}function A2(){}function is(e,t,n,r,o){var a=n._reactRootContainer;if(a){var s=a;if("function"==typeof o){var i=o;o=function(){var l=os(s);i.call(l)}}rs(t,s,e,o)}else s=function(e,t,n,r,o){if(o){if("function"==typeof r){var a=r;r=function(){var u=os(s);a.call(u)}}var s=g2(t,r,e,0,null,!1,0,"",A2);return e._reactRootContainer=s,e[Kt]=s.current,go(8===e.nodeType?e.parentNode:e),Un(),s}for(;o=e.lastChild;)e.removeChild(o);if("function"==typeof r){var i=r;r=function(){var u=os(l);i.call(u)}}var l=Xl(e,0,!1,null,0,!1,0,"",A2);return e._reactRootContainer=l,e[Kt]=l.current,go(8===e.nodeType?e.parentNode:e),Un((function(){rs(t,l,n,r)})),l}(n,t,e,o,r);return os(s)}as.prototype.render=Jl.prototype.render=function(e){var t=this._internalRoot;if(null===t)throw Error(M(409));rs(e,t,null,null)},as.prototype.unmount=Jl.prototype.unmount=function(){var e=this._internalRoot;if(null!==e){this._internalRoot=null;var t=e.containerInfo;Un((function(){rs(null,e,null,null)})),t[Kt]=null}},as.prototype.unstable_scheduleHydration=function(e){if(e){var t=Jc();e={blockedOn:null,target:e,priority:t};for(var n=0;n<pn.length&&0!==t&&t<pn[n].priority;n++);pn.splice(n,0,e),0===n&&n0(e)}},Xc=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var n=Jr(t.pendingLanes);0!==n&&(Ti(t,1|n),rt(t,Ne()),!(6&re)&&(Sr=Ne()+500,An()))}break;case 13:Un((function(){var r=en(e,1);if(null!==r){var o=Xe();kt(r,e,1,o)}})),Ql(e,1)}},Ci=function(e){if(13===e.tag){var t=en(e,134217728);if(null!==t)kt(t,e,134217728,Xe());Ql(e,134217728)}},Qc=function(e){if(13===e.tag){var t=Tn(e),n=en(e,t);if(null!==n)kt(n,e,t,Xe());Ql(e,t)}},Jc=function(){return ue},e0=function(e,t){var n=ue;try{return ue=e,t()}finally{ue=n}},Ei=function(e,t,n){switch(t){case"input":if(ui(e,n),t=n.name,"radio"===n.type&&null!=t){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll("input[name="+JSON.stringify(""+t)+'][type="radio"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var o=Ta(r);if(!o)throw Error(M(90));Tc(r),ui(r,o)}}}break;case"textarea":xc(e,n);break;case"select":null!=(t=n.value)&&or(e,!!n.multiple,t,!1)}},Pc=$l,Uc=Un;var bh={usingClientEntryPoint:!1,Events:[Ao,mr,Ta,Fc,Bc,$l]},Oo={findFiberByHostInstance:Ln,bundleType:0,version:"18.2.0",rendererPackageName:"react-dom"},_h={bundleType:Oo.bundleType,version:Oo.version,rendererPackageName:Oo.rendererPackageName,rendererConfig:Oo.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:Yt.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=zc(e))?null:e.stateNode},findFiberByHostInstance:Oo.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:"18.2.0-next-9e3b772b8-20220608"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<"u"){var ls=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!ls.isDisabled&&ls.supportsFiber)try{aa=ls.inject(_h),Pt=ls}catch{}}it.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=bh,it.createPortal=function(e,t){var n=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!eu(t))throw Error(M(200));return function(e,t,n){var r=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:nr,key:null==r?null:""+r,children:e,containerInfo:t,implementation:n}}(e,t,null,n)},it.createRoot=function(e,t){if(!eu(e))throw Error(M(299));var n=!1,r="",o=E2;return null!=t&&(!0===t.unstable_strictMode&&(n=!0),void 0!==t.identifierPrefix&&(r=t.identifierPrefix),void 0!==t.onRecoverableError&&(o=t.onRecoverableError)),t=Xl(e,1,!1,null,0,n,0,r,o),e[Kt]=t.current,go(8===e.nodeType?e.parentNode:e),new Jl(t)},it.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t)throw"function"==typeof e.render?Error(M(188)):(e=Object.keys(e).join(","),Error(M(268,e)));return e=null===(e=zc(t))?null:e.stateNode},it.flushSync=function(e){return Un(e)},it.hydrate=function(e,t,n){if(!ss(t))throw Error(M(200));return is(null,e,t,!0,n)},it.hydrateRoot=function(e,t,n){if(!eu(e))throw Error(M(405));var r=null!=n&&n.hydratedSources||null,o=!1,a="",s=E2;if(null!=n&&(!0===n.unstable_strictMode&&(o=!0),void 0!==n.identifierPrefix&&(a=n.identifierPrefix),void 0!==n.onRecoverableError&&(s=n.onRecoverableError)),t=g2(t,null,e,1,n??null,o,0,a,s),e[Kt]=t.current,go(e),r)for(e=0;e<r.length;e++)o=(o=(n=r[e])._getVersion)(n._source),null==t.mutableSourceEagerHydrationData?t.mutableSourceEagerHydrationData=[n,o]:t.mutableSourceEagerHydrationData.push(n,o);return new as(t)},it.render=function(e,t,n){if(!ss(t))throw Error(M(200));return is(null,e,t,!1,n)},it.unmountComponentAtNode=function(e){if(!ss(e))throw Error(M(40));return!!e._reactRootContainer&&(Un((function(){is(null,null,e,!1,(function(){e._reactRootContainer=null,e[Kt]=null}))})),!0)},it.unstable_batchedUpdates=$l,it.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!ss(n))throw Error(M(200));if(null==e||void 0===e._reactInternals)throw Error(M(38));return is(e,t,n,!1,r)},it.version="18.2.0-next-9e3b772b8-20220608",function b2(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||"function"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(b2)}catch(e){console.error(e)}}(),pc.exports=it;var _2=pc.exports;js.createRoot=_2.createRoot,js.hydrateRoot=_2.hydrateRoot;const v2={embedId:null,baseApiUrl:null,prompt:null,model:null,temperature:null,chatIcon:"plus",brandImageUrl:null,greeting:null,buttonColor:"#262626",userBgColor:"#2C2F35",assistantBgColor:"#2563eb",noSponsor:null,sponsorText:"Powered by AnythingLLM",sponsorLink:"https://useanything.com",position:"bottom-right",assistantName:"AnythingLLM Chat Assistant",assistantIcon:null,windowHeight:null,windowWidth:null,textSize:null,openOnLoad:"off",supportEmail:null};let us;const yh=new Uint8Array(16);function Th(){if(!us&&(us=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!us))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return us(yh)}const Pe=[];for(let e=0;e<256;++e)Pe.push((e+256).toString(16).slice(1));const D2={randomUUID:typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};function zn(e,t,n){if(D2.randomUUID&&!t&&!e)return D2.randomUUID();const r=(e=e||{}).random||(e.rng||Th)();if(r[6]=15&r[6]|64,r[8]=63&r[8]|128,t){n=n||0;for(let o=0;o<16;++o)t[n+o]=r[o];return t}return function(e,t=0){return Pe[e[t+0]]+Pe[e[t+1]]+Pe[e[t+2]]+Pe[e[t+3]]+"-"+Pe[e[t+4]]+Pe[e[t+5]]+"-"+Pe[e[t+6]]+Pe[e[t+7]]+"-"+Pe[e[t+8]]+Pe[e[t+9]]+"-"+Pe[e[t+10]]+Pe[e[t+11]]+Pe[e[t+12]]+Pe[e[t+13]]+Pe[e[t+14]]+Pe[e[t+15]]}(r)}function y2(){const[e,t]=Z.useState("");return Z.useEffect((()=>{!function(){var s,i;if(!window||null==(s=null==pe?void 0:pe.settings)||!s.embedId)return;const r=`allm_${null==(i=null==pe?void 0:pe.settings)?void 0:i.embedId}_session_id`,o=window.localStorage.getItem(r);if(o)return console.log("Resuming session id",o),void t(o);const a=zn();console.log("Registering new session id",a),window.localStorage.setItem(r,a),t(a)}()}),[window]),e}const tu="___anythingllm-chat-widget-open___";const wh="\npre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!\n Theme: GitHub Dark Dimmed\n Description: Dark dimmed theme as seen on github.com\n Author: github.com\n Maintainer: @Hirse\n Updated: 2021-05-15\n\n Colors taken from GitHub's CSS\n*/.hljs{color:#adbac7;background:#22272e}.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-template-tag,.hljs-template-variable,.hljs-type,.hljs-variable.language_{color:#f47067}.hljs-title,.hljs-title.class_,.hljs-title.class_.inherited__,.hljs-title.function_{color:#dcbdfb}.hljs-attr,.hljs-attribute,.hljs-literal,.hljs-meta,.hljs-number,.hljs-operator,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-id,.hljs-variable{color:#6cb6ff}.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#96d0ff}.hljs-built_in,.hljs-symbol{color:#f69d50}.hljs-code,.hljs-comment,.hljs-formula{color:#768390}.hljs-name,.hljs-quote,.hljs-selector-pseudo,.hljs-selector-tag{color:#8ddb8c}.hljs-subst{color:#adbac7}.hljs-section{color:#316dca;font-weight:700}.hljs-bullet{color:#eac55f}.hljs-emphasis{color:#adbac7;font-style:italic}.hljs-strong{color:#adbac7;font-weight:700}.hljs-addition{color:#b4f1b4;background-color:#1b4721}.hljs-deletion{color:#ffd8d3;background-color:#78191b}\n",xh='\n /**\n * ==============================================\n * Dot Falling\n * ==============================================\n */\n .allm-dot-falling {\n position: relative;\n left: -9999px;\n width: 10px;\n height: 10px;\n border-radius: 5px;\n background-color: #000000;\n color: #5fa4fa;\n box-shadow: 9999px 0 0 0 #000000;\n animation: dot-falling 1.5s infinite linear;\n animation-delay: 0.1s;\n }\n\n .allm-dot-falling::before,\n .allm-dot-falling::after {\n content: "";\n display: inline-block;\n position: absolute;\n top: 0;\n }\n\n .allm-dot-falling::before {\n width: 10px;\n height: 10px;\n border-radius: 5px;\n background-color: #000000;\n color: #000000;\n animation: dot-falling-before 1.5s infinite linear;\n animation-delay: 0s;\n }\n\n .allm-dot-falling::after {\n width: 10px;\n height: 10px;\n border-radius: 5px;\n background-color: #000000;\n color: #000000;\n animation: dot-falling-after 1.5s infinite linear;\n animation-delay: 0.2s;\n }\n\n @keyframes dot-falling {\n 0% {\n box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);\n }\n 25%,\n 50%,\n 75% {\n box-shadow: 9999px 0 0 0 #000000;\n }\n 100% {\n box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);\n }\n }\n\n @keyframes dot-falling-before {\n 0% {\n box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);\n }\n 25%,\n 50%,\n 75% {\n box-shadow: 9984px 0 0 0 #000000;\n }\n 100% {\n box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);\n }\n }\n\n @keyframes dot-falling-after {\n 0% {\n box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);\n }\n 25%,\n 50%,\n 75% {\n box-shadow: 10014px 0 0 0 #000000;\n }\n 100% {\n box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);\n }\n }\n\n #chat-history::-webkit-scrollbar,\n #chat-container::-webkit-scrollbar,\n .allm-no-scroll::-webkit-scrollbar {\n display: none !important;\n }\n\n /* Hide scrollbar for IE, Edge and Firefox */\n #chat-history,\n #chat-container,\n .allm-no-scroll {\n -ms-overflow-style: none !important; /* IE and Edge */\n scrollbar-width: none !important; /* Firefox */\n }\n\n span.allm-whitespace-pre-line>p {\n margin: 0px;\n }\n';function Rh(){return w.jsxs("head",{children:[w.jsx("style",{children:wh}),w.jsx("style",{children:xh}),w.jsx("link",{rel:"stylesheet",href:pe.stylesSrc})]})}const Lh=Z.createContext({color:"currentColor",size:"1em",weight:"regular",mirrored:!1});var Oh=Object.defineProperty,cs=Object.getOwnPropertySymbols,T2=Object.prototype.hasOwnProperty,C2=Object.prototype.propertyIsEnumerable,N2=(e,t,n)=>t in e?Oh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,S2=(e,t)=>{for(var n in t||(t={}))T2.call(t,n)&&N2(e,n,t[n]);if(cs)for(var n of cs(t))C2.call(t,n)&&N2(e,n,t[n]);return e},w2=(e,t)=>{var n={};for(var r in e)T2.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&cs)for(var r of cs(e))t.indexOf(r)<0&&C2.call(e,r)&&(n[r]=e[r]);return n};const Ue=Z.forwardRef(((e,t)=>{const n=e,{alt:r,color:o,size:a,weight:s,mirrored:i,children:l,weights:u}=n,c=w2(n,["alt","color","size","weight","mirrored","children","weights"]),p=Z.useContext(Lh),{color:d="currentColor",size:g,weight:A="regular",mirrored:b=!1}=p,C=w2(p,["color","size","weight","mirrored"]);return f.createElement("svg",S2(S2({ref:t,xmlns:"http://www.w3.org/2000/svg",width:a??g,height:a??g,fill:o??d,viewBox:"0 0 256 256",transform:i||b?"scale(-1, 1)":void 0},C),c),!!r&&f.createElement("title",null,r),l,u.get(s??A))}));Ue.displayName="IconBase";const kh=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228,128a100,100,0,0,1-98.66,100H128a99.39,99.39,0,0,1-68.62-27.29,12,12,0,0,1,16.48-17.45,76,76,0,1,0-1.57-109c-.13.13-.25.25-.39.37L54.89,92H72a12,12,0,0,1,0,24H24a12,12,0,0,1-12-12V56a12,12,0,0,1,24,0V76.72L57.48,57.06A100,100,0,0,1,228,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M72,104H24V56Z",opacity:"0.2"}),f.createElement("path",{d:"M195.88,60.08A96.08,96.08,0,0,0,60.25,60L49.31,70,29.66,50.3A8,8,0,0,0,16,56v48a8,8,0,0,0,8,8H72a8,8,0,0,0,5.66-13.66l-17-17,10.54-9.65a3.07,3.07,0,0,0,.26-.25,80,80,0,1,1,1.65,114.78,8,8,0,0,0-11,11.63A95.38,95.38,0,0,0,128,224h1.32A96,96,0,0,0,195.88,60.08ZM32,96V75.28L52.69,96Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128a96,96,0,0,1-94.71,96H128A95.38,95.38,0,0,1,62.1,197.8a8,8,0,0,1,11-11.63A80,80,0,1,0,71.43,71.39a3.07,3.07,0,0,1-.26.25L60.63,81.29l17,17A8,8,0,0,1,72,112H24a8,8,0,0,1-8-8V56A8,8,0,0,1,29.66,50.3L49.31,70,60.25,60A96,96,0,0,1,224,128Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M222,128a94,94,0,0,1-92.74,94H128a93.43,93.43,0,0,1-64.5-25.65,6,6,0,1,1,8.24-8.72A82,82,0,1,0,70,70l-.19.19L39.44,98H72a6,6,0,0,1,0,12H24a6,6,0,0,1-6-6V56a6,6,0,0,1,12,0V90.34L61.63,61.4A94,94,0,0,1,222,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128a96,96,0,0,1-94.71,96H128A95.38,95.38,0,0,1,62.1,197.8a8,8,0,0,1,11-11.63A80,80,0,1,0,71.43,71.39a3.07,3.07,0,0,1-.26.25L44.59,96H72a8,8,0,0,1,0,16H24a8,8,0,0,1-8-8V56a8,8,0,0,1,16,0V85.8L60.25,60A96,96,0,0,1,224,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M220,128a92,92,0,0,1-90.77,92H128a91.47,91.47,0,0,1-63.13-25.1,4,4,0,1,1,5.5-5.82A84,84,0,1,0,68.6,68.57l-.13.12L34.3,100H72a4,4,0,0,1,0,8H24a4,4,0,0,1-4-4V56a4,4,0,0,1,8,0V94.89l35-32A92,92,0,0,1,220,128Z"}))]]);var Ih=Object.defineProperty,Mh=Object.defineProperties,Fh=Object.getOwnPropertyDescriptors,x2=Object.getOwnPropertySymbols,Bh=Object.prototype.hasOwnProperty,Ph=Object.prototype.propertyIsEnumerable,R2=(e,t,n)=>t in e?Ih(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const L2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>Mh(e,Fh(t)))(((e,t)=>{for(var n in t||(t={}))Bh.call(t,n)&&R2(e,n,t[n]);if(x2)for(var n of x2(t))Ph.call(t,n)&&R2(e,n,t[n]);return e})({ref:t},e),{weights:kh}))));L2.displayName="ArrowCounterClockwise";const Hh=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M208.49,152.49l-72,72a12,12,0,0,1-17,0l-72-72a12,12,0,0,1,17-17L116,187V40a12,12,0,0,1,24,0V187l51.51-51.52a12,12,0,0,1,17,17Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M200,144l-72,72L56,144Z",opacity:"0.2"}),f.createElement("path",{d:"M207.39,140.94A8,8,0,0,0,200,136H136V40a8,8,0,0,0-16,0v96H56a8,8,0,0,0-5.66,13.66l72,72a8,8,0,0,0,11.32,0l72-72A8,8,0,0,0,207.39,140.94ZM128,204.69,75.31,152H180.69Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M205.66,149.66l-72,72a8,8,0,0,1-11.32,0l-72-72A8,8,0,0,1,56,136h64V40a8,8,0,0,1,16,0v96h64a8,8,0,0,1,5.66,13.66Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M204.24,148.24l-72,72a6,6,0,0,1-8.48,0l-72-72a6,6,0,0,1,8.48-8.48L122,201.51V40a6,6,0,0,1,12,0V201.51l61.76-61.75a6,6,0,0,1,8.48,8.48Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M205.66,149.66l-72,72a8,8,0,0,1-11.32,0l-72-72a8,8,0,0,1,11.32-11.32L120,196.69V40a8,8,0,0,1,16,0V196.69l58.34-58.35a8,8,0,0,1,11.32,11.32Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M202.83,146.83l-72,72a4,4,0,0,1-5.66,0l-72-72a4,4,0,0,1,5.66-5.66L124,206.34V40a4,4,0,0,1,8,0V206.34l65.17-65.17a4,4,0,0,1,5.66,5.66Z"}))]]);var Vh=Object.defineProperty,zh=Object.defineProperties,Gh=Object.getOwnPropertyDescriptors,O2=Object.getOwnPropertySymbols,$h=Object.prototype.hasOwnProperty,Zh=Object.prototype.propertyIsEnumerable,k2=(e,t,n)=>t in e?Vh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const I2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>zh(e,Gh(t)))(((e,t)=>{for(var n in t||(t={}))$h.call(t,n)&&k2(e,n,t[n]);if(O2)for(var n of O2(t))Zh.call(t,n)&&k2(e,n,t[n]);return e})({ref:t},e),{weights:Hh}))));I2.displayName="ArrowDown";const Yh=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M241,150.65s0,0,0-.05a51.33,51.33,0,0,0-2.53-5.9L196.93,50.18a12,12,0,0,0-2.5-3.65,36,36,0,0,0-50.92,0A12,12,0,0,0,140,55V76H116V55a12,12,0,0,0-3.51-8.48,36,36,0,0,0-50.92,0,12,12,0,0,0-2.5,3.65L17.53,144.7A51.33,51.33,0,0,0,15,150.6s0,0,0,.05A52,52,0,1,0,116,168V100h24v68a52,52,0,1,0,101-17.35ZM80,62.28a12,12,0,0,1,12-1.22v63.15a51.9,51.9,0,0,0-35.9-7.62ZM64,196a28,28,0,1,1,28-28A28,28,0,0,1,64,196ZM164,61.06a12.06,12.06,0,0,1,12,1.22l23.87,54.31a51.9,51.9,0,0,0-35.9,7.62ZM192,196a28,28,0,1,1,28-28A28,28,0,0,1,192,196Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M104,168a40,40,0,1,1-40-40A40,40,0,0,1,104,168Zm88-40a40,40,0,1,0,40,40A40,40,0,0,0,192,128Z",opacity:"0.2"}),f.createElement("path",{d:"M237.2,151.87v0a47.1,47.1,0,0,0-2.35-5.45L193.26,51.8a7.82,7.82,0,0,0-1.66-2.44,32,32,0,0,0-45.26,0A8,8,0,0,0,144,55V80H112V55a8,8,0,0,0-2.34-5.66,32,32,0,0,0-45.26,0,7.82,7.82,0,0,0-1.66,2.44L21.15,146.4a47.1,47.1,0,0,0-2.35,5.45v0A48,48,0,1,0,112,168V96h32v72a48,48,0,1,0,93.2-16.13ZM76.71,59.75a16,16,0,0,1,19.29-1v73.51a47.9,47.9,0,0,0-46.79-9.92ZM64,200a32,32,0,1,1,32-32A32,32,0,0,1,64,200ZM160,58.74a16,16,0,0,1,19.29,1l27.5,62.58A47.9,47.9,0,0,0,160,132.25ZM192,200a32,32,0,1,1,32-32A32,32,0,0,1,192,200Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M237.22,151.9l0-.1a1.42,1.42,0,0,0-.07-.22,48.46,48.46,0,0,0-2.31-5.3L193.27,51.8a8,8,0,0,0-1.67-2.44,32,32,0,0,0-45.26,0A8,8,0,0,0,144,55V80H112V55a8,8,0,0,0-2.34-5.66,32,32,0,0,0-45.26,0,8,8,0,0,0-1.67,2.44L21.2,146.28a48.46,48.46,0,0,0-2.31,5.3,1.72,1.72,0,0,0-.07.21s0,.08,0,.11a48,48,0,0,0,90.32,32.51,47.49,47.49,0,0,0,2.9-16.59V96h32v71.83a47.49,47.49,0,0,0,2.9,16.59,48,48,0,0,0,90.32-32.51Zm-143.15,27a32,32,0,0,1-60.2-21.71l1.81-4.13A32,32,0,0,1,96,167.88V168h0A32,32,0,0,1,94.07,178.94ZM203,198.07A32,32,0,0,1,160,168h0v-.11a32,32,0,0,1,60.32-14.78l1.81,4.13A32,32,0,0,1,203,198.07Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M233,147.24,191.43,52.6a6,6,0,0,0-1.25-1.83,30,30,0,0,0-42.42,0A6,6,0,0,0,146,55V82H110V55a6,6,0,0,0-1.76-4.25,30,30,0,0,0-42.42,0,6,6,0,0,0-1.25,1.83L23,147.24A46,46,0,1,0,110,168V94h36v74a46,46,0,1,0,87-20.76ZM64,202a34,34,0,1,1,34-34A34,34,0,0,1,64,202Zm0-80a45.77,45.77,0,0,0-18.55,3.92L75.06,58.54A18,18,0,0,1,98,57.71V137A45.89,45.89,0,0,0,64,122Zm94-64.28a18,18,0,0,1,22.94.83l29.61,67.37A45.9,45.9,0,0,0,158,137ZM192,202a34,34,0,1,1,34-34A34,34,0,0,1,192,202Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M237.2,151.87v0a47.1,47.1,0,0,0-2.35-5.45L193.26,51.8a7.82,7.82,0,0,0-1.66-2.44,32,32,0,0,0-45.26,0A8,8,0,0,0,144,55V80H112V55a8,8,0,0,0-2.34-5.66,32,32,0,0,0-45.26,0,7.82,7.82,0,0,0-1.66,2.44L21.15,146.4a47.1,47.1,0,0,0-2.35,5.45v0A48,48,0,1,0,112,168V96h32v72a48,48,0,1,0,93.2-16.13ZM76.71,59.75a16,16,0,0,1,19.29-1v73.51a47.9,47.9,0,0,0-46.79-9.92ZM64,200a32,32,0,1,1,32-32A32,32,0,0,1,64,200ZM160,58.74a16,16,0,0,1,19.29,1l27.5,62.58A47.9,47.9,0,0,0,160,132.25ZM192,200a32,32,0,1,1,32-32A32,32,0,0,1,192,200Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M231.22,148.09,189.6,53.41a3.94,3.94,0,0,0-.83-1.22,28,28,0,0,0-39.6,0A4,4,0,0,0,148,55V84H108V55a4,4,0,0,0-1.17-2.83,28,28,0,0,0-39.6,0,3.94,3.94,0,0,0-.83,1.22L24.78,148.09A44,44,0,1,0,108,168V92h40v76a44,44,0,1,0,83.22-19.91ZM64,204a36,36,0,1,1,36-36A36,36,0,0,1,64,204Zm0-80a43.78,43.78,0,0,0-22.66,6.3L73.4,57.35a20,20,0,0,1,26.6-.59v86A44,44,0,0,0,64,124Zm92-67.23a20,20,0,0,1,26.6.59l32.06,72.94A43.92,43.92,0,0,0,156,142.74ZM192,204a36,36,0,1,1,36-36A36,36,0,0,1,192,204Z"}))]]);var Kh=Object.defineProperty,Xh=Object.defineProperties,Qh=Object.getOwnPropertyDescriptors,M2=Object.getOwnPropertySymbols,Jh=Object.prototype.hasOwnProperty,eE=Object.prototype.propertyIsEnumerable,F2=(e,t,n)=>t in e?Kh(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const B2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>Xh(e,Qh(t)))(((e,t)=>{for(var n in t||(t={}))Jh.call(t,n)&&F2(e,n,t[n]);if(M2)for(var n of M2(t))eE.call(t,n)&&F2(e,n,t[n]);return e})({ref:t},e),{weights:Yh}))));B2.displayName="Binoculars";const rE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M120,128a16,16,0,1,1-16-16A16,16,0,0,1,120,128Zm32-16a16,16,0,1,0,16,16A16,16,0,0,0,152,112Zm84,16A108,108,0,0,1,78.77,224.15L46.34,235A20,20,0,0,1,21,209.66l10.81-32.43A108,108,0,1,1,236,128Zm-24,0A84,84,0,1,0,55.27,170.06a12,12,0,0,1,1,9.81l-9.93,29.79,29.79-9.93a12.1,12.1,0,0,1,3.8-.62,12,12,0,0,1,6,1.62A84,84,0,0,0,212,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128A96,96,0,0,1,79.93,211.11h0L42.54,223.58a8,8,0,0,1-10.12-10.12l12.47-37.39h0A96,96,0,1,1,224,128Z",opacity:"0.2"}),f.createElement("path",{d:"M128,24A104,104,0,0,0,36.18,176.88L24.83,210.93a16,16,0,0,0,20.24,20.24l34.05-11.35A104,104,0,1,0,128,24Zm0,192a87.87,87.87,0,0,1-44.06-11.81,8,8,0,0,0-4-1.08,7.85,7.85,0,0,0-2.53.42L40,216,52.47,178.6a8,8,0,0,0-.66-6.54A88,88,0,1,1,128,216Zm12-88a12,12,0,1,1-12-12A12,12,0,0,1,140,128Zm-44,0a12,12,0,1,1-12-12A12,12,0,0,1,96,128Zm88,0a12,12,0,1,1-12-12A12,12,0,0,1,184,128Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,24A104,104,0,0,0,36.18,176.88L24.83,210.93a16,16,0,0,0,20.24,20.24l34.05-11.35A104,104,0,1,0,128,24ZM84,140a12,12,0,1,1,12-12A12,12,0,0,1,84,140Zm44,0a12,12,0,1,1,12-12A12,12,0,0,1,128,140Zm44,0a12,12,0,1,1,12-12A12,12,0,0,1,172,140Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M138,128a10,10,0,1,1-10-10A10,10,0,0,1,138,128ZM84,118a10,10,0,1,0,10,10A10,10,0,0,0,84,118Zm88,0a10,10,0,1,0,10,10A10,10,0,0,0,172,118Zm58,10A102,102,0,0,1,79.31,217.65L44.44,229.27a14,14,0,0,1-17.71-17.71l11.62-34.87A102,102,0,1,1,230,128Zm-12,0A90,90,0,1,0,50.08,173.06a6,6,0,0,1,.5,4.91L38.12,215.35a2,2,0,0,0,2.53,2.53L78,205.42a6.2,6.2,0,0,1,1.9-.31,6.09,6.09,0,0,1,3,.81A90,90,0,0,0,218,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M140,128a12,12,0,1,1-12-12A12,12,0,0,1,140,128ZM84,116a12,12,0,1,0,12,12A12,12,0,0,0,84,116Zm88,0a12,12,0,1,0,12,12A12,12,0,0,0,172,116Zm60,12A104,104,0,0,1,79.12,219.82L45.07,231.17a16,16,0,0,1-20.24-20.24l11.35-34.05A104,104,0,1,1,232,128Zm-16,0A88,88,0,1,0,51.81,172.06a8,8,0,0,1,.66,6.54L40,216,77.4,203.53a7.85,7.85,0,0,1,2.53-.42,8,8,0,0,1,4,1.08A88,88,0,0,0,216,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M136,128a8,8,0,1,1-8-8A8,8,0,0,1,136,128Zm-52-8a8,8,0,1,0,8,8A8,8,0,0,0,84,120Zm88,0a8,8,0,1,0,8,8A8,8,0,0,0,172,120Zm56,8A100,100,0,0,1,79.5,215.47l-35.69,11.9a12,12,0,0,1-15.18-15.18l11.9-35.69A100,100,0,1,1,228,128Zm-8,0A92,92,0,1,0,48.35,174.07a4,4,0,0,1,.33,3.27L36.22,214.72a4,4,0,0,0,5.06,5.06l37.38-12.46a3.93,3.93,0,0,1,1.27-.21,4.05,4.05,0,0,1,2,.54A92,92,0,0,0,220,128Z"}))]]);var oE=Object.defineProperty,aE=Object.defineProperties,sE=Object.getOwnPropertyDescriptors,P2=Object.getOwnPropertySymbols,iE=Object.prototype.hasOwnProperty,lE=Object.prototype.propertyIsEnumerable,U2=(e,t,n)=>t in e?oE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const q2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>aE(e,sE(t)))(((e,t)=>{for(var n in t||(t={}))iE.call(t,n)&&U2(e,n,t[n]);if(P2)for(var n of P2(t))lE.call(t,n)&&U2(e,n,t[n]);return e})({ref:t},e),{weights:rE}))));q2.displayName="ChatCircleDots";const dE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232.49,80.49l-128,128a12,12,0,0,1-17,0l-56-56a12,12,0,1,1,17-17L96,183,215.51,63.51a12,12,0,0,1,17,17Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232,56V200a16,16,0,0,1-16,16H40a16,16,0,0,1-16-16V56A16,16,0,0,1,40,40H216A16,16,0,0,1,232,56Z",opacity:"0.2"}),f.createElement("path",{d:"M205.66,85.66l-96,96a8,8,0,0,1-11.32,0l-40-40a8,8,0,0,1,11.32-11.32L104,164.69l90.34-90.35a8,8,0,0,1,11.32,11.32Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,40H40A16,16,0,0,0,24,56V200a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A16,16,0,0,0,216,40ZM205.66,85.66l-96,96a8,8,0,0,1-11.32,0l-40-40a8,8,0,0,1,11.32-11.32L104,164.69l90.34-90.35a8,8,0,0,1,11.32,11.32Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228.24,76.24l-128,128a6,6,0,0,1-8.48,0l-56-56a6,6,0,0,1,8.48-8.48L96,191.51,219.76,67.76a6,6,0,0,1,8.48,8.48Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M226.83,74.83l-128,128a4,4,0,0,1-5.66,0l-56-56a4,4,0,0,1,5.66-5.66L96,194.34,221.17,69.17a4,4,0,1,1,5.66,5.66Z"}))]]);var pE=Object.defineProperty,fE=Object.defineProperties,mE=Object.getOwnPropertyDescriptors,H2=Object.getOwnPropertySymbols,gE=Object.prototype.hasOwnProperty,hE=Object.prototype.propertyIsEnumerable,V2=(e,t,n)=>t in e?pE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const z2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>fE(e,mE(t)))(((e,t)=>{for(var n in t||(t={}))gE.call(t,n)&&V2(e,n,t[n]);if(H2)for(var n of H2(t))hE.call(t,n)&&V2(e,n,t[n]);return e})({ref:t},e),{weights:dE}))));z2.displayName="Check";const bE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M236,128a108,108,0,0,1-216,0c0-42.52,24.73-81.34,63-98.9A12,12,0,1,1,93,50.91C63.24,64.57,44,94.83,44,128a84,84,0,0,0,168,0c0-33.17-19.24-63.43-49-77.09A12,12,0,1,1,173,29.1C211.27,46.66,236,85.48,236,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128a96,96,0,1,1-96-96A96,96,0,0,1,224,128Z",opacity:"0.2"}),f.createElement("path",{d:"M232,128a104,104,0,0,1-208,0c0-41,23.81-78.36,60.66-95.27a8,8,0,0,1,6.68,14.54C60.15,61.59,40,93.27,40,128a88,88,0,0,0,176,0c0-34.73-20.15-66.41-51.34-80.73a8,8,0,0,1,6.68-14.54C208.19,49.64,232,87,232,128Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,176A72,72,0,0,1,92,65.64a8,8,0,0,1,8,13.85,56,56,0,1,0,56,0,8,8,0,0,1,8-13.85A72,72,0,0,1,128,200Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M230,128a102,102,0,0,1-204,0c0-40.18,23.35-76.86,59.5-93.45a6,6,0,0,1,5,10.9C58.61,60.09,38,92.49,38,128a90,90,0,0,0,180,0c0-35.51-20.61-67.91-52.5-82.55a6,6,0,0,1,5-10.9C206.65,51.14,230,87.82,230,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232,128a104,104,0,0,1-208,0c0-41,23.81-78.36,60.66-95.27a8,8,0,0,1,6.68,14.54C60.15,61.59,40,93.27,40,128a88,88,0,0,0,176,0c0-34.73-20.15-66.41-51.34-80.73a8,8,0,0,1,6.68-14.54C208.19,49.64,232,87,232,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228,128a100,100,0,0,1-200,0c0-39.4,22.9-75.37,58.33-91.63a4,4,0,1,1,3.34,7.27C57.07,58.6,36,91.71,36,128a92,92,0,0,0,184,0c0-36.29-21.07-69.4-53.67-84.36a4,4,0,1,1,3.34-7.27C205.1,52.63,228,88.6,228,128Z"}))]]);var _E=Object.defineProperty,vE=Object.defineProperties,DE=Object.getOwnPropertyDescriptors,G2=Object.getOwnPropertySymbols,yE=Object.prototype.hasOwnProperty,TE=Object.prototype.propertyIsEnumerable,$2=(e,t,n)=>t in e?_E(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const nu=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>vE(e,DE(t)))(((e,t)=>{for(var n in t||(t={}))yE.call(t,n)&&$2(e,n,t[n]);if(G2)for(var n of G2(t))TE.call(t,n)&&$2(e,n,t[n]);return e})({ref:t},e),{weights:bE}))));nu.displayName="CircleNotch";const SE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,28H88A12,12,0,0,0,76,40V76H40A12,12,0,0,0,28,88V216a12,12,0,0,0,12,12H168a12,12,0,0,0,12-12V180h36a12,12,0,0,0,12-12V40A12,12,0,0,0,216,28ZM156,204H52V100H156Zm48-48H180V88a12,12,0,0,0-12-12H100V52H204Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,40V168H168V88H88V40Z",opacity:"0.2"}),f.createElement("path",{d:"M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32Zm-8,128H176V88a8,8,0,0,0-8-8H96V48H208Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,34H88a6,6,0,0,0-6,6V82H40a6,6,0,0,0-6,6V216a6,6,0,0,0,6,6H168a6,6,0,0,0,6-6V174h42a6,6,0,0,0,6-6V40A6,6,0,0,0,216,34ZM162,210H46V94H162Zm48-48H174V88a6,6,0,0,0-6-6H94V46H210Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,32H88a8,8,0,0,0-8,8V80H40a8,8,0,0,0-8,8V216a8,8,0,0,0,8,8H168a8,8,0,0,0,8-8V176h40a8,8,0,0,0,8-8V40A8,8,0,0,0,216,32ZM160,208H48V96H160Zm48-48H176V88a8,8,0,0,0-8-8H96V48H208Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,36H88a4,4,0,0,0-4,4V84H40a4,4,0,0,0-4,4V216a4,4,0,0,0,4,4H168a4,4,0,0,0,4-4V172h44a4,4,0,0,0,4-4V40A4,4,0,0,0,216,36ZM164,212H44V92H164Zm48-48H172V88a4,4,0,0,0-4-4H92V44H212Z"}))]]);var wE=Object.defineProperty,xE=Object.defineProperties,RE=Object.getOwnPropertyDescriptors,Z2=Object.getOwnPropertySymbols,LE=Object.prototype.hasOwnProperty,OE=Object.prototype.propertyIsEnumerable,j2=(e,t,n)=>t in e?wE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const W2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>xE(e,RE(t)))(((e,t)=>{for(var n in t||(t={}))LE.call(t,n)&&j2(e,n,t[n]);if(Z2)for(var n of Z2(t))OE.call(t,n)&&j2(e,n,t[n]);return e})({ref:t},e),{weights:SE}))));W2.displayName="Copy";const ME=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,96a32,32,0,1,0,32,32A32,32,0,0,0,128,96Zm0,40a8,8,0,1,1,8-8A8,8,0,0,1,128,136Zm0-56A32,32,0,1,0,96,48,32,32,0,0,0,128,80Zm0-40a8,8,0,1,1-8,8A8,8,0,0,1,128,40Zm0,136a32,32,0,1,0,32,32A32,32,0,0,0,128,176Zm0,40a8,8,0,1,1,8-8A8,8,0,0,1,128,216Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M152,128a24,24,0,1,1-24-24A24,24,0,0,1,152,128ZM128,72a24,24,0,1,0-24-24A24,24,0,0,0,128,72Zm0,112a24,24,0,1,0,24,24A24,24,0,0,0,128,184Z",opacity:"0.2"}),f.createElement("path",{d:"M128,96a32,32,0,1,0,32,32A32,32,0,0,0,128,96Zm0,48a16,16,0,1,1,16-16A16,16,0,0,1,128,144Zm0-64A32,32,0,1,0,96,48,32,32,0,0,0,128,80Zm0-48a16,16,0,1,1-16,16A16,16,0,0,1,128,32Zm0,144a32,32,0,1,0,32,32A32,32,0,0,0,128,176Zm0,48a16,16,0,1,1,16-16A16,16,0,0,1,128,224Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M156,128a28,28,0,1,1-28-28A28,28,0,0,1,156,128ZM128,76a28,28,0,1,0-28-28A28,28,0,0,0,128,76Zm0,104a28,28,0,1,0,28,28A28,28,0,0,0,128,180Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,98a30,30,0,1,0,30,30A30,30,0,0,0,128,98Zm0,48a18,18,0,1,1,18-18A18,18,0,0,1,128,146Zm0-68A30,30,0,1,0,98,48,30,30,0,0,0,128,78Zm0-48a18,18,0,1,1-18,18A18,18,0,0,1,128,30Zm0,148a30,30,0,1,0,30,30A30,30,0,0,0,128,178Zm0,48a18,18,0,1,1,18-18A18,18,0,0,1,128,226Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,96a32,32,0,1,0,32,32A32,32,0,0,0,128,96Zm0,48a16,16,0,1,1,16-16A16,16,0,0,1,128,144Zm0-64A32,32,0,1,0,96,48,32,32,0,0,0,128,80Zm0-48a16,16,0,1,1-16,16A16,16,0,0,1,128,32Zm0,144a32,32,0,1,0,32,32A32,32,0,0,0,128,176Zm0,48a16,16,0,1,1,16-16A16,16,0,0,1,128,224Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M128,100a28,28,0,1,0,28,28A28,28,0,0,0,128,100Zm0,48a20,20,0,1,1,20-20A20,20,0,0,1,128,148Zm0-72a28,28,0,1,0-28-28A28,28,0,0,0,128,76Zm0-48a20,20,0,1,1-20,20A20,20,0,0,1,128,28Zm0,152a28,28,0,1,0,28,28A28,28,0,0,0,128,180Zm0,48a20,20,0,1,1,20-20A20,20,0,0,1,128,228Z"}))]]);var FE=Object.defineProperty,BE=Object.defineProperties,PE=Object.getOwnPropertyDescriptors,Y2=Object.getOwnPropertySymbols,UE=Object.prototype.hasOwnProperty,qE=Object.prototype.propertyIsEnumerable,K2=(e,t,n)=>t in e?FE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const X2=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>BE(e,PE(t)))(((e,t)=>{for(var n in t||(t={}))UE.call(t,n)&&K2(e,n,t[n]);if(Y2)for(var n of Y2(t))qE.call(t,n)&&K2(e,n,t[n]);return e})({ref:t},e),{weights:ME}))));X2.displayName="DotsThreeOutlineVertical";const zE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,44H32A12,12,0,0,0,20,56V192a20,20,0,0,0,20,20H216a20,20,0,0,0,20-20V56A12,12,0,0,0,224,44Zm-96,83.72L62.85,68h130.3ZM92.79,128,44,172.72V83.28Zm17.76,16.28,9.34,8.57a12,12,0,0,0,16.22,0l9.34-8.57L193.15,188H62.85ZM163.21,128,212,83.28v89.44Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,56l-96,88L32,56Z",opacity:"0.2"}),f.createElement("path",{d:"M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48Zm-96,85.15L52.57,64H203.43ZM98.71,128,40,181.81V74.19Zm11.84,10.85,12,11.05a8,8,0,0,0,10.82,0l12-11.05,58,53.15H52.57ZM157.29,128,216,74.18V181.82Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48ZM98.71,128,40,181.81V74.19Zm11.84,10.85,12,11.05a8,8,0,0,0,10.82,0l12-11.05,58,53.15H52.57ZM157.29,128,216,74.18V181.82Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,50H32a6,6,0,0,0-6,6V192a14,14,0,0,0,14,14H216a14,14,0,0,0,14-14V56A6,6,0,0,0,224,50Zm-96,85.86L47.42,62H208.58ZM101.67,128,38,186.36V69.64Zm8.88,8.14L124,148.42a6,6,0,0,0,8.1,0l13.4-12.28L208.58,194H47.43ZM154.33,128,218,69.64V186.36Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48Zm-96,85.15L52.57,64H203.43ZM98.71,128,40,181.81V74.19Zm11.84,10.85,12,11.05a8,8,0,0,0,10.82,0l12-11.05,58,53.15H52.57ZM157.29,128,216,74.18V181.82Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,52H32a4,4,0,0,0-4,4V192a12,12,0,0,0,12,12H216a12,12,0,0,0,12-12V56A4,4,0,0,0,224,52Zm-96,86.57L42.28,60H213.72ZM104.63,128,36,190.91V65.09Zm5.92,5.43L125.3,147a4,4,0,0,0,5.4,0l14.75-13.52L213.72,196H42.28ZM151.37,128,220,65.09V190.91Z"}))]]);var GE=Object.defineProperty,$E=Object.defineProperties,ZE=Object.getOwnPropertyDescriptors,Q2=Object.getOwnPropertySymbols,jE=Object.prototype.hasOwnProperty,WE=Object.prototype.propertyIsEnumerable,J2=(e,t,n)=>t in e?GE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const ep=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>$E(e,ZE(t)))(((e,t)=>{for(var n in t||(t={}))jE.call(t,n)&&J2(e,n,t[n]);if(Q2)for(var n of Q2(t))WE.call(t,n)&&J2(e,n,t[n]);return e})({ref:t},e),{weights:zE}))));ep.displayName="Envelope";const XE=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M204.73,51.85A108.07,108.07,0,0,0,20,128v56a28,28,0,0,0,28,28H64a28,28,0,0,0,28-28V144a28,28,0,0,0-28-28H44.84A84.05,84.05,0,0,1,128,44h.64a83.7,83.7,0,0,1,82.52,72H192a28,28,0,0,0-28,28v40a28,28,0,0,0,28,28h19.6A20,20,0,0,1,192,228H136a12,12,0,0,0,0,24h56a44.05,44.05,0,0,0,44-44V128A107.34,107.34,0,0,0,204.73,51.85ZM64,140a4,4,0,0,1,4,4v40a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V140Zm124,44V144a4,4,0,0,1,4-4h20v48H192A4,4,0,0,1,188,184Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M80,144v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V128H64A16,16,0,0,1,80,144Zm112-16a16,16,0,0,0-16,16v40a16,16,0,0,0,16,16h32V128Z",opacity:"0.2"}),f.createElement("path",{d:"M201.89,54.66A104.08,104.08,0,0,0,24,128v56a24,24,0,0,0,24,24H64a24,24,0,0,0,24-24V144a24,24,0,0,0-24-24H40.36A88.12,88.12,0,0,1,190.54,65.93,87.39,87.39,0,0,1,215.65,120H192a24,24,0,0,0-24,24v40a24,24,0,0,0,24,24h24a24,24,0,0,1-24,24H136a8,8,0,0,0,0,16h56a40,40,0,0,0,40-40V128A103.41,103.41,0,0,0,201.89,54.66ZM64,136a8,8,0,0,1,8,8v40a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V136Zm128,56a8,8,0,0,1-8-8V144a8,8,0,0,1,8-8h24v56Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232,128v80a40,40,0,0,1-40,40H136a8,8,0,0,1,0-16h56a24,24,0,0,0,24-24H192a24,24,0,0,1-24-24V144a24,24,0,0,1,24-24h23.65A88,88,0,0,0,66,65.54,87.29,87.29,0,0,0,40.36,120H64a24,24,0,0,1,24,24v40a24,24,0,0,1-24,24H48a24,24,0,0,1-24-24V128A104.11,104.11,0,0,1,201.89,54.66,103.41,103.41,0,0,1,232,128Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M200.47,56.07A101.37,101.37,0,0,0,128.77,26H128A102,102,0,0,0,26,128v56a22,22,0,0,0,22,22H64a22,22,0,0,0,22-22V144a22,22,0,0,0-22-22H38.2A90,90,0,0,1,128,38h.68a89.71,89.71,0,0,1,89.13,84H192a22,22,0,0,0-22,22v40a22,22,0,0,0,22,22h26v2a26,26,0,0,1-26,26H136a6,6,0,0,0,0,12h56a38,38,0,0,0,38-38V128A101.44,101.44,0,0,0,200.47,56.07ZM64,134a10,10,0,0,1,10,10v40a10,10,0,0,1-10,10H48a10,10,0,0,1-10-10V134Zm118,50V144a10,10,0,0,1,10-10h26v60H192A10,10,0,0,1,182,184Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M201.89,54.66A103.43,103.43,0,0,0,128.79,24H128A104,104,0,0,0,24,128v56a24,24,0,0,0,24,24H64a24,24,0,0,0,24-24V144a24,24,0,0,0-24-24H40.36A88.12,88.12,0,0,1,190.54,65.93,87.39,87.39,0,0,1,215.65,120H192a24,24,0,0,0-24,24v40a24,24,0,0,0,24,24h24a24,24,0,0,1-24,24H136a8,8,0,0,0,0,16h56a40,40,0,0,0,40-40V128A103.41,103.41,0,0,0,201.89,54.66ZM64,136a8,8,0,0,1,8,8v40a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V136Zm128,56a8,8,0,0,1-8-8V144a8,8,0,0,1,8-8h24v56Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M199.05,57.48A100.07,100.07,0,0,0,28,128v56a20,20,0,0,0,20,20H64a20,20,0,0,0,20-20V144a20,20,0,0,0-20-20H36.08A92,92,0,0,1,128,36h.7a91.75,91.75,0,0,1,91.22,88H192a20,20,0,0,0-20,20v40a20,20,0,0,0,20,20h28v4a28,28,0,0,1-28,28H136a4,4,0,0,0,0,8h56a36,36,0,0,0,36-36V128A99.44,99.44,0,0,0,199.05,57.48ZM64,132a12,12,0,0,1,12,12v40a12,12,0,0,1-12,12H48a12,12,0,0,1-12-12V132Zm116,52V144a12,12,0,0,1,12-12h28v64H192A12,12,0,0,1,180,184Z"}))]]);var QE=Object.defineProperty,JE=Object.defineProperties,eA=Object.getOwnPropertyDescriptors,tp=Object.getOwnPropertySymbols,tA=Object.prototype.hasOwnProperty,nA=Object.prototype.propertyIsEnumerable,np=(e,t,n)=>t in e?QE(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const rp=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>JE(e,eA(t)))(((e,t)=>{for(var n in t||(t={}))tA.call(t,n)&&np(e,n,t[n]);if(tp)for(var n of tp(t))nA.call(t,n)&&np(e,n,t[n]);return e})({ref:t},e),{weights:XE}))));rp.displayName="Headset";const aA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M252,152a12,12,0,0,1-12,12H228v12a12,12,0,0,1-24,0V164H192a12,12,0,0,1,0-24h12V128a12,12,0,0,1,24,0v12h12A12,12,0,0,1,252,152ZM56,76H68V88a12,12,0,0,0,24,0V76h12a12,12,0,1,0,0-24H92V40a12,12,0,0,0-24,0V52H56a12,12,0,0,0,0,24ZM184,188h-4v-4a12,12,0,0,0-24,0v4h-4a12,12,0,0,0,0,24h4v4a12,12,0,0,0,24,0v-4h4a12,12,0,0,0,0-24ZM222.14,82.83,82.82,222.14a20,20,0,0,1-28.28,0L33.85,201.46a20,20,0,0,1,0-28.29L173.17,33.86a20,20,0,0,1,28.28,0l20.69,20.68A20,20,0,0,1,222.14,82.83ZM159,112,144,97,53.65,187.31l15,15Zm43.31-43.31-15-15L161,80l15,15Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M176,112,74.34,213.66a8,8,0,0,1-11.31,0L42.34,193a8,8,0,0,1,0-11.31L144,80Z",opacity:"0.2"}),f.createElement("path",{d:"M248,152a8,8,0,0,1-8,8H224v16a8,8,0,0,1-16,0V160H192a8,8,0,0,1,0-16h16V128a8,8,0,0,1,16,0v16h16A8,8,0,0,1,248,152ZM56,72H72V88a8,8,0,0,0,16,0V72h16a8,8,0,0,0,0-16H88V40a8,8,0,0,0-16,0V56H56a8,8,0,0,0,0,16ZM184,192h-8v-8a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16ZM219.31,80,80,219.31a16,16,0,0,1-22.62,0L36.68,198.63a16,16,0,0,1,0-22.63L176,36.69a16,16,0,0,1,22.63,0l20.68,20.68A16,16,0,0,1,219.31,80Zm-54.63,32L144,91.31l-96,96L68.68,208ZM208,68.69,187.31,48l-32,32L176,100.69Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M248,152a8,8,0,0,1-8,8H224v16a8,8,0,0,1-16,0V160H192a8,8,0,0,1,0-16h16V128a8,8,0,0,1,16,0v16h16A8,8,0,0,1,248,152ZM56,72H72V88a8,8,0,0,0,16,0V72h16a8,8,0,0,0,0-16H88V40a8,8,0,0,0-16,0V56H56a8,8,0,0,0,0,16ZM184,192h-8v-8a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16ZM219.31,80,80,219.31a16,16,0,0,1-22.62,0L36.68,198.63a16,16,0,0,1,0-22.63L176,36.69a16,16,0,0,1,22.63,0l20.68,20.68A16,16,0,0,1,219.31,80ZM208,68.69,187.31,48l-32,32L176,100.69Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M246,152a6,6,0,0,1-6,6H222v18a6,6,0,0,1-12,0V158H192a6,6,0,0,1,0-12h18V128a6,6,0,0,1,12,0v18h18A6,6,0,0,1,246,152ZM56,70H74V88a6,6,0,0,0,12,0V70h18a6,6,0,0,0,0-12H86V40a6,6,0,0,0-12,0V58H56a6,6,0,0,0,0,12ZM184,194H174V184a6,6,0,0,0-12,0v10H152a6,6,0,0,0,0,12h10v10a6,6,0,0,0,12,0V206h10a6,6,0,0,0,0-12ZM217.9,78.59,78.58,217.9a14,14,0,0,1-19.8,0L38.09,197.21a14,14,0,0,1,0-19.8L177.41,38.1a14,14,0,0,1,19.8,0L217.9,58.79A14,14,0,0,1,217.9,78.59ZM167.51,112,144,88.49,46.58,185.9a2,2,0,0,0,0,2.83l20.69,20.68a2,2,0,0,0,2.82,0h0Zm41.9-44.73L188.73,46.59a2,2,0,0,0-2.83,0L152.48,80,176,103.52,209.41,70.1A2,2,0,0,0,209.41,67.27Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M48,64a8,8,0,0,1,8-8H72V40a8,8,0,0,1,16,0V56h16a8,8,0,0,1,0,16H88V88a8,8,0,0,1-16,0V72H56A8,8,0,0,1,48,64ZM184,192h-8v-8a8,8,0,0,0-16,0v8h-8a8,8,0,0,0,0,16h8v8a8,8,0,0,0,16,0v-8h8a8,8,0,0,0,0-16Zm56-48H224V128a8,8,0,0,0-16,0v16H192a8,8,0,0,0,0,16h16v16a8,8,0,0,0,16,0V160h16a8,8,0,0,0,0-16ZM219.31,80,80,219.31a16,16,0,0,1-22.62,0L36.68,198.63a16,16,0,0,1,0-22.63L176,36.69a16,16,0,0,1,22.63,0l20.68,20.68A16,16,0,0,1,219.31,80Zm-54.63,32L144,91.31l-96,96L68.68,208ZM208,68.69,187.31,48l-32,32L176,100.69Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M244,152a4,4,0,0,1-4,4H220v20a4,4,0,0,1-8,0V156H192a4,4,0,0,1,0-8h20V128a4,4,0,0,1,8,0v20h20A4,4,0,0,1,244,152ZM56,68H76V88a4,4,0,0,0,8,0V68h20a4,4,0,0,0,0-8H84V40a4,4,0,0,0-8,0V60H56a4,4,0,0,0,0,8ZM184,196H172V184a4,4,0,0,0-8,0v12H152a4,4,0,0,0,0,8h12v12a4,4,0,0,0,8,0V204h12a4,4,0,0,0,0-8ZM216.48,77.17,77.17,216.49a12,12,0,0,1-17,0L39.51,195.8a12,12,0,0,1,0-17L178.83,39.51a12,12,0,0,1,17,0L216.48,60.2A12,12,0,0,1,216.48,77.17ZM170.34,112,144,85.66,45.17,184.49a4,4,0,0,0,0,5.65l20.68,20.69a4,4,0,0,0,5.66,0Zm40.49-46.14L190.14,45.17a4,4,0,0,0-5.66,0L149.65,80,176,106.34l34.83-34.83A4,4,0,0,0,210.83,65.86Z"}))]]);var sA=Object.defineProperty,iA=Object.defineProperties,lA=Object.getOwnPropertyDescriptors,op=Object.getOwnPropertySymbols,uA=Object.prototype.hasOwnProperty,cA=Object.prototype.propertyIsEnumerable,ap=(e,t,n)=>t in e?sA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const sp=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>iA(e,lA(t)))(((e,t)=>{for(var n in t||(t={}))uA.call(t,n)&&ap(e,n,t[n]);if(op)for(var n of op(t))cA.call(t,n)&&ap(e,n,t[n]);return e})({ref:t},e),{weights:aA}))));sp.displayName="MagicWand";const fA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232.49,215.51,185,168a92.12,92.12,0,1,0-17,17l47.53,47.54a12,12,0,0,0,17-17ZM44,112a68,68,0,1,1,68,68A68.07,68.07,0,0,1,44,112Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M192,112a80,80,0,1,1-80-80A80,80,0,0,1,192,112Z",opacity:"0.2"}),f.createElement("path",{d:"M229.66,218.34,179.6,168.28a88.21,88.21,0,1,0-11.32,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M168,112a56,56,0,1,1-56-56A56,56,0,0,1,168,112Zm61.66,117.66a8,8,0,0,1-11.32,0l-50.06-50.07a88,88,0,1,1,11.32-11.31l50.06,50.06A8,8,0,0,1,229.66,229.66ZM112,184a72,72,0,1,0-72-72A72.08,72.08,0,0,0,112,184Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228.24,219.76l-51.38-51.38a86.15,86.15,0,1,0-8.48,8.48l51.38,51.38a6,6,0,0,0,8.48-8.48ZM38,112a74,74,0,1,1,74,74A74.09,74.09,0,0,1,38,112Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M229.66,218.34l-50.07-50.06a88.11,88.11,0,1,0-11.31,11.31l50.06,50.07a8,8,0,0,0,11.32-11.32ZM40,112a72,72,0,1,1,72,72A72.08,72.08,0,0,1,40,112Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M226.83,221.17l-52.7-52.7a84.1,84.1,0,1,0-5.66,5.66l52.7,52.7a4,4,0,0,0,5.66-5.66ZM36,112a76,76,0,1,1,76,76A76.08,76.08,0,0,1,36,112Z"}))]]);var mA=Object.defineProperty,gA=Object.defineProperties,hA=Object.getOwnPropertyDescriptors,ip=Object.getOwnPropertySymbols,EA=Object.prototype.hasOwnProperty,AA=Object.prototype.propertyIsEnumerable,lp=(e,t,n)=>t in e?mA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const up=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>gA(e,hA(t)))(((e,t)=>{for(var n in t||(t={}))EA.call(t,n)&&lp(e,n,t[n]);if(ip)for(var n of ip(t))AA.call(t,n)&&lp(e,n,t[n]);return e})({ref:t},e),{weights:fA}))));up.displayName="MagnifyingGlass";const vA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M225.86,110.48,57.8,14.58A20,20,0,0,0,29.16,38.67l30.61,89.21L29.16,217.33A20,20,0,0,0,48,244a20.1,20.1,0,0,0,9.81-2.58l.09-.06,168-96.07a20,20,0,0,0,0-34.81ZM55.24,215.23,81,140h55a12,12,0,0,0,0-24H81.07L55.25,40.76l152.69,87.13Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M219.91,134.86,51.93,231a8,8,0,0,1-11.44-9.67l31-90.71a7.89,7.89,0,0,0,0-5.38l-31-90.47a8,8,0,0,1,11.44-9.67l168,95.85A8,8,0,0,1,219.91,134.86Z",opacity:"0.2"}),f.createElement("path",{d:"M223.87,114l-168-95.89A16,16,0,0,0,32.93,37.32l31,90.47a.42.42,0,0,0,0,.1.3.3,0,0,0,0,.1l-31,90.67A16,16,0,0,0,48,240a16.14,16.14,0,0,0,7.92-2.1l167.91-96.05a16,16,0,0,0,.05-27.89ZM48,224l0-.09L78.14,136H136a8,8,0,0,0,0-16H78.22L48.06,32.12,48,32l168,95.83Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M232,127.89a16,16,0,0,1-8.18,14L55.91,237.9A16.14,16.14,0,0,1,48,240a16,16,0,0,1-15.05-21.34L60.3,138.71A4,4,0,0,1,64.09,136H136a8,8,0,0,0,8-8.53,8.19,8.19,0,0,0-8.26-7.47H64.16a4,4,0,0,1-3.79-2.7l-27.44-80A16,16,0,0,1,55.85,18.07l168,95.89A16,16,0,0,1,232,127.89Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M222.88,115.69l-168-95.88a14,14,0,0,0-20,16.85l31,90.48,0,.07a2.11,2.11,0,0,1,0,1.42l-31,90.64A14,14,0,0,0,48,238a14.11,14.11,0,0,0,6.92-1.83L222.84,140.1a14,14,0,0,0,0-24.41Zm-5.95,14L49,225.73a1.87,1.87,0,0,1-2.27-.22,1.92,1.92,0,0,1-.56-2.28L76.7,134H136a6,6,0,0,0,0-12H76.78L46.14,32.7A2,2,0,0,1,49,30.25l168,95.89a1.93,1.93,0,0,1,1,1.74A2,2,0,0,1,216.93,129.66Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M223.87,114l-168-95.89A16,16,0,0,0,32.93,37.32l31,90.47a.42.42,0,0,0,0,.1.3.3,0,0,0,0,.1l-31,90.67A16,16,0,0,0,48,240a16.14,16.14,0,0,0,7.92-2.1l167.91-96.05a16,16,0,0,0,.05-27.89ZM48,224l0-.09L78.14,136H136a8,8,0,0,0,0-16H78.22L48.06,32.12,48,32l168,95.83Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M221.89,117.43l-168-95.88A12,12,0,0,0,36.7,36l31.05,90.48v.05a4.09,4.09,0,0,1,0,2.74L36.72,220A12,12,0,0,0,48,236a12.13,12.13,0,0,0,5.93-1.57l167.94-96.08a12,12,0,0,0,0-20.92Zm-4,14L50,227.47a4,4,0,0,1-5.7-4.88l31-90.59H136a4,4,0,0,0,0-8H75.35a.65.65,0,0,1,0-.13L44.25,33.37A4,4,0,0,1,50,28.52l168,95.87a4,4,0,0,1,0,7Z"}))]]);var DA=Object.defineProperty,yA=Object.defineProperties,TA=Object.getOwnPropertyDescriptors,cp=Object.getOwnPropertySymbols,CA=Object.prototype.hasOwnProperty,NA=Object.prototype.propertyIsEnumerable,dp=(e,t,n)=>t in e?DA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const pp=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>yA(e,TA(t)))(((e,t)=>{for(var n in t||(t={}))CA.call(t,n)&&dp(e,n,t[n]);if(cp)for(var n of cp(t))NA.call(t,n)&&dp(e,n,t[n]);return e})({ref:t},e),{weights:vA}))));pp.displayName="PaperPlaneRight";const xA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M228,128a12,12,0,0,1-12,12H140v76a12,12,0,0,1-24,0V140H40a12,12,0,0,1,0-24h76V40a12,12,0,0,1,24,0v76h76A12,12,0,0,1,228,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,48V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z",opacity:"0.2"}),f.createElement("path",{d:"M224,128a8,8,0,0,1-8,8H136v80a8,8,0,0,1-16,0V136H40a8,8,0,0,1,0-16h80V40a8,8,0,0,1,16,0v80h80A8,8,0,0,1,224,128Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM184,136H136v48a8,8,0,0,1-16,0V136H72a8,8,0,0,1,0-16h48V72a8,8,0,0,1,16,0v48h48a8,8,0,0,1,0,16Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M222,128a6,6,0,0,1-6,6H134v82a6,6,0,0,1-12,0V134H40a6,6,0,0,1,0-12h82V40a6,6,0,0,1,12,0v82h82A6,6,0,0,1,222,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M224,128a8,8,0,0,1-8,8H136v80a8,8,0,0,1-16,0V136H40a8,8,0,0,1,0-16h80V40a8,8,0,0,1,16,0v80h80A8,8,0,0,1,224,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M220,128a4,4,0,0,1-4,4H132v84a4,4,0,0,1-8,0V132H40a4,4,0,0,1,0-8h84V40a4,4,0,0,1,8,0v84h84A4,4,0,0,1,220,128Z"}))]]);var RA=Object.defineProperty,LA=Object.defineProperties,OA=Object.getOwnPropertyDescriptors,fp=Object.getOwnPropertySymbols,kA=Object.prototype.hasOwnProperty,IA=Object.prototype.propertyIsEnumerable,mp=(e,t,n)=>t in e?RA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const gp=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>LA(e,OA(t)))(((e,t)=>{for(var n in t||(t={}))kA.call(t,n)&&mp(e,n,t[n]);if(fp)for(var n of fp(t))IA.call(t,n)&&mp(e,n,t[n]);return e})({ref:t},e),{weights:xA}))));gp.displayName="Plus";const BA=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M240.26,186.1,152.81,34.23h0a28.74,28.74,0,0,0-49.62,0L15.74,186.1a27.45,27.45,0,0,0,0,27.71A28.31,28.31,0,0,0,40.55,228h174.9a28.31,28.31,0,0,0,24.79-14.19A27.45,27.45,0,0,0,240.26,186.1Zm-20.8,15.7a4.46,4.46,0,0,1-4,2.2H40.55a4.46,4.46,0,0,1-4-2.2,3.56,3.56,0,0,1,0-3.73L124,46.2a4.77,4.77,0,0,1,8,0l87.44,151.87A3.56,3.56,0,0,1,219.46,201.8ZM116,136V104a12,12,0,0,1,24,0v32a12,12,0,0,1-24,0Zm28,40a16,16,0,1,1-16-16A16,16,0,0,1,144,176Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M215.46,216H40.54C27.92,216,20,202.79,26.13,192.09L113.59,40.22c6.3-11,22.52-11,28.82,0l87.46,151.87C236,202.79,228.08,216,215.46,216Z",opacity:"0.2"}),f.createElement("path",{d:"M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM120,104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm8,88a12,12,0,1,1,12-12A12,12,0,0,1,128,192Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M235.07,189.09,147.61,37.22h0a22.75,22.75,0,0,0-39.22,0L20.93,189.09a21.53,21.53,0,0,0,0,21.72A22.35,22.35,0,0,0,40.55,222h174.9a22.35,22.35,0,0,0,19.6-11.19A21.53,21.53,0,0,0,235.07,189.09ZM224.66,204.8a10.46,10.46,0,0,1-9.21,5.2H40.55a10.46,10.46,0,0,1-9.21-5.2,9.51,9.51,0,0,1,0-9.72L118.79,43.21a10.75,10.75,0,0,1,18.42,0l87.46,151.87A9.51,9.51,0,0,1,224.66,204.8ZM122,144V104a6,6,0,0,1,12,0v40a6,6,0,0,1-12,0Zm16,36a10,10,0,1,1-10-10A10,10,0,0,1,138,180Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M236.8,188.09,149.35,36.22h0a24.76,24.76,0,0,0-42.7,0L19.2,188.09a23.51,23.51,0,0,0,0,23.72A24.35,24.35,0,0,0,40.55,224h174.9a24.35,24.35,0,0,0,21.33-12.19A23.51,23.51,0,0,0,236.8,188.09ZM222.93,203.8a8.5,8.5,0,0,1-7.48,4.2H40.55a8.5,8.5,0,0,1-7.48-4.2,7.59,7.59,0,0,1,0-7.72L120.52,44.21a8.75,8.75,0,0,1,15,0l87.45,151.87A7.59,7.59,0,0,1,222.93,203.8ZM120,144V104a8,8,0,0,1,16,0v40a8,8,0,0,1-16,0Zm20,36a12,12,0,1,1-12-12A12,12,0,0,1,140,180Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M233.34,190.09,145.88,38.22h0a20.75,20.75,0,0,0-35.76,0L22.66,190.09a19.52,19.52,0,0,0,0,19.71A20.36,20.36,0,0,0,40.54,220H215.46a20.36,20.36,0,0,0,17.86-10.2A19.52,19.52,0,0,0,233.34,190.09ZM226.4,205.8a12.47,12.47,0,0,1-10.94,6.2H40.54a12.47,12.47,0,0,1-10.94-6.2,11.45,11.45,0,0,1,0-11.72L117.05,42.21a12.76,12.76,0,0,1,21.9,0L226.4,194.08A11.45,11.45,0,0,1,226.4,205.8ZM124,144V104a4,4,0,0,1,8,0v40a4,4,0,0,1-8,0Zm12,36a8,8,0,1,1-8-8A8,8,0,0,1,136,180Z"}))]]);var PA=Object.defineProperty,UA=Object.defineProperties,qA=Object.getOwnPropertyDescriptors,hp=Object.getOwnPropertySymbols,HA=Object.prototype.hasOwnProperty,VA=Object.prototype.propertyIsEnumerable,Ep=(e,t,n)=>t in e?PA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const ru=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>UA(e,qA(t)))(((e,t)=>{for(var n in t||(t={}))HA.call(t,n)&&Ep(e,n,t[n]);if(hp)for(var n of hp(t))VA.call(t,n)&&Ep(e,n,t[n]);return e})({ref:t},e),{weights:BA}))));ru.displayName="Warning";const $A=new Map([["bold",f.createElement(f.Fragment,null,f.createElement("path",{d:"M208.49,191.51a12,12,0,0,1-17,17L128,145,64.49,208.49a12,12,0,0,1-17-17L111,128,47.51,64.49a12,12,0,0,1,17-17L128,111l63.51-63.52a12,12,0,0,1,17,17L145,128Z"}))],["duotone",f.createElement(f.Fragment,null,f.createElement("path",{d:"M216,48V208a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V48a8,8,0,0,1,8-8H208A8,8,0,0,1,216,48Z",opacity:"0.2"}),f.createElement("path",{d:"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["fill",f.createElement(f.Fragment,null,f.createElement("path",{d:"M208,32H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM181.66,170.34a8,8,0,0,1-11.32,11.32L128,139.31,85.66,181.66a8,8,0,0,1-11.32-11.32L116.69,128,74.34,85.66A8,8,0,0,1,85.66,74.34L128,116.69l42.34-42.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["light",f.createElement(f.Fragment,null,f.createElement("path",{d:"M204.24,195.76a6,6,0,1,1-8.48,8.48L128,136.49,60.24,204.24a6,6,0,0,1-8.48-8.48L119.51,128,51.76,60.24a6,6,0,0,1,8.48-8.48L128,119.51l67.76-67.75a6,6,0,0,1,8.48,8.48L136.49,128Z"}))],["regular",f.createElement(f.Fragment,null,f.createElement("path",{d:"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z"}))],["thin",f.createElement(f.Fragment,null,f.createElement("path",{d:"M202.83,197.17a4,4,0,0,1-5.66,5.66L128,133.66,58.83,202.83a4,4,0,0,1-5.66-5.66L122.34,128,53.17,58.83a4,4,0,0,1,5.66-5.66L128,122.34l69.17-69.17a4,4,0,1,1,5.66,5.66L133.66,128Z"}))]]);var ZA=Object.defineProperty,jA=Object.defineProperties,WA=Object.getOwnPropertyDescriptors,Ap=Object.getOwnPropertySymbols,YA=Object.prototype.hasOwnProperty,KA=Object.prototype.propertyIsEnumerable,bp=(e,t,n)=>t in e?ZA(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const _p=Z.forwardRef(((e,t)=>f.createElement(Ue,((e,t)=>jA(e,WA(t)))(((e,t)=>{for(var n in t||(t={}))YA.call(t,n)&&bp(e,n,t[n]);if(Ap)for(var n of Ap(t))KA.call(t,n)&&bp(e,n,t[n]);return e})({ref:t},e),{weights:$A}))));_p.displayName="X";const ou={plus:gp,chatBubble:q2,support:rp,search2:B2,search:up,magic:sp};function JA({settings:e,isOpen:t,toggleOpen:n}){if(t)return null;const r=ou.hasOwnProperty(null==e?void 0:e.chatIcon)?ou[e.chatIcon]:ou.plus;return w.jsx("button",{style:{backgroundColor:e.buttonColor},id:"anything-llm-embed-chat-button",onClick:n,className:"hover:allm-cursor-pointer allm-border-none allm-flex allm-items-center allm-justify-center allm-p-4 allm-rounded-full allm-text-white allm-text-2xl hover:allm-opacity-95","aria-label":"Toggle Menu",children:w.jsx(r,{className:"text-white"})})}const ko="data:image/svg+xml,%3csvg%20width='49'%20height='49'%20viewBox='0%200%2049%2049'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20x='0.898438'%20y='0.5'%20width='48'%20height='48'%20rx='24'%20fill='%23222628'%20fill-opacity='0.8'/%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M12.0173%2014.2937C10.4387%2014.2937%209.14844%2015.584%209.14844%2017.1626V31.8372C9.14844%2033.4156%2010.4365%2034.7061%2012.0173%2034.7061H17.5428C18.4316%2034.7061%2019.2557%2034.3035%2019.8034%2033.6063L19.8041%2033.6054L32.4126%2017.4869H37.4552V31.509H32.4204L29.8951%2027.9721L29.8867%2027.9615C29.4483%2027.4042%2028.602%2027.4042%2028.1635%2027.9615L27.52%2028.7815L27.5178%2028.7843C27.2188%2029.1751%2027.2113%2029.7217%2027.512%2030.1178L29.985%2033.5936L29.9935%2033.6044C30.5415%2034.302%2031.3696%2034.7042%2032.2541%2034.7042H37.7795C39.3643%2034.7042%2040.6484%2033.4175%2040.6484%2031.8353V17.1626C40.6484%2015.5827%2039.3646%2014.2937%2037.7795%2014.2937H32.2541C31.3673%2014.2937%2030.5407%2014.6964%2029.9928%2015.3964L17.3858%2031.511H12.3417V17.4889H17.3757L20.133%2021.2573L20.1386%2021.2645C20.5782%2021.8273%2021.4253%2021.8239%2021.8647%2021.2666L21.8661%2021.2648L22.505%2020.4477L22.5069%2020.4453C22.8064%2020.0538%2022.8139%2019.5046%2022.5076%2019.1075L19.8102%2015.4041L19.804%2015.3963C19.2562%2014.6965%2018.4318%2014.2937%2017.5428%2014.2937H12.0173Z'%20fill='white'/%3e%3cpath%20d='M19.8034%2033.6063L20.0392%2033.7915L20.0394%2033.7912L19.8034%2033.6063ZM19.8041%2033.6054L20.0401%2033.7903L20.0403%2033.7901L19.8041%2033.6054ZM32.4126%2017.4869V17.1871H32.2665L32.1764%2017.3022L32.4126%2017.4869ZM37.4552%2017.4869H37.755V17.1871H37.4552V17.4869ZM37.4552%2031.509V31.8089H37.755V31.509H37.4552ZM32.4204%2031.509L32.1763%2031.6833L32.266%2031.8089H32.4204V31.509ZM29.8951%2027.9721L30.1394%2027.7977L30.1307%2027.7867L29.8951%2027.9721ZM29.8867%2027.9615L29.6511%2028.1469L29.6511%2028.1469L29.8867%2027.9615ZM28.1635%2027.9615L27.9279%2027.7761L27.9277%2027.7764L28.1635%2027.9615ZM27.52%2028.7815L27.2841%2028.5964L27.2819%2028.5993L27.52%2028.7815ZM27.5178%2028.7843L27.7559%2028.9665L27.7559%2028.9665L27.5178%2028.7843ZM27.512%2030.1178L27.7564%2029.9439L27.7508%2029.9365L27.512%2030.1178ZM29.985%2033.5936L29.7407%2033.7674L29.7448%2033.7732L29.7492%2033.7788L29.985%2033.5936ZM29.9935%2033.6044L30.2293%2033.4191L30.2293%2033.4191L29.9935%2033.6044ZM29.9928%2015.3964L29.7567%2015.2116L29.7566%2015.2116L29.9928%2015.3964ZM17.3858%2031.511V31.8108H17.5319L17.6219%2031.6957L17.3858%2031.511ZM12.3417%2031.511H12.0418V31.8108H12.3417V31.511ZM12.3417%2017.4889V17.189H12.0418V17.4889H12.3417ZM17.3757%2017.4889L17.6177%2017.3118L17.5278%2017.189H17.3757V17.4889ZM20.133%2021.2573L19.8909%2021.4345L19.8967%2021.4419L20.133%2021.2573ZM20.1386%2021.2645L19.9023%2021.4491V21.4491L20.1386%2021.2645ZM21.8647%2021.2666L22.1001%2021.4522L22.1005%2021.4517L21.8647%2021.2666ZM21.8661%2021.2648L22.1019%2021.45L22.1023%2021.4495L21.8661%2021.2648ZM22.505%2020.4477L22.7412%2020.6324L22.7431%2020.63L22.505%2020.4477ZM22.5069%2020.4453L22.7449%2020.6276L22.745%2020.6275L22.5069%2020.4453ZM22.5076%2019.1075L22.2651%2019.2841L22.2702%2019.2907L22.5076%2019.1075ZM19.8102%2015.4041L20.0527%2015.2275L20.0463%2015.2193L19.8102%2015.4041ZM19.804%2015.3963L19.5679%2015.5811L19.5679%2015.5811L19.804%2015.3963ZM9.44828%2017.1626C9.44828%2015.7496%2010.6043%2014.5935%2012.0173%2014.5935V13.9939C10.2731%2013.9939%208.8486%2015.4184%208.8486%2017.1626H9.44828ZM9.44828%2031.8372V17.1626H8.8486V31.8372H9.44828ZM12.0173%2034.4063C10.6022%2034.4063%209.44828%2033.2501%209.44828%2031.8372H8.8486C8.8486%2033.581%2010.2707%2035.006%2012.0173%2035.006V34.4063ZM17.5428%2034.4063H12.0173V35.006H17.5428V34.4063ZM19.5676%2033.4211C19.0766%2034.0462%2018.3393%2034.4063%2017.5428%2034.4063V35.006C18.524%2035.006%2019.4349%2034.5608%2020.0392%2033.7915L19.5676%2033.4211ZM19.5681%2033.4205L19.5674%2033.4214L20.0394%2033.7912L20.0401%2033.7903L19.5681%2033.4205ZM32.1764%2017.3022L19.5679%2033.4206L20.0403%2033.7901L32.6488%2017.6717L32.1764%2017.3022ZM37.4552%2017.1871H32.4126V17.7868H37.4552V17.1871ZM37.755%2031.509V17.4869H37.1553V31.509H37.755ZM32.4204%2031.8089H37.4552V31.2092H32.4204V31.8089ZM29.651%2028.1464L32.1763%2031.6833L32.6644%2031.3348L30.1391%2027.7979L29.651%2028.1464ZM29.6511%2028.1469L29.6594%2028.1575L30.1307%2027.7867L30.1224%2027.7761L29.6511%2028.1469ZM28.3992%2028.1469C28.7176%2027.7422%2029.3327%2027.7422%2029.6511%2028.1469L30.1224%2027.7761C29.5639%2027.0662%2028.4864%2027.0662%2027.9279%2027.7761L28.3992%2028.1469ZM27.7558%2028.9666L28.3994%2028.1466L27.9277%2027.7764L27.2841%2028.5964L27.7558%2028.9666ZM27.7559%2028.9665L27.7581%2028.9637L27.2819%2028.5993L27.2797%2028.6021L27.7559%2028.9665ZM27.7508%2029.9365C27.5333%2029.65%2027.5374%2029.2521%2027.7559%2028.9665L27.2797%2028.6021C26.9002%2029.098%2026.8893%2029.7935%2027.2732%2030.2991L27.7508%2029.9365ZM30.2293%2033.4197L27.7563%2029.944L27.2677%2030.2916L29.7407%2033.7674L30.2293%2033.4197ZM30.2293%2033.4191L30.2208%2033.4083L29.7492%2033.7788L29.7577%2033.7896L30.2293%2033.4191ZM32.2541%2034.4044C31.4617%2034.4044%2030.7205%2034.0445%2030.2293%2033.4191L29.7577%2033.7896C30.3625%2034.5595%2031.2775%2035.0041%2032.2541%2035.0041V34.4044ZM37.7795%2034.4044H32.2541V35.0041H37.7795V34.4044ZM40.3486%2031.8353C40.3486%2033.2521%2039.1985%2034.4044%2037.7795%2034.4044V35.0041C39.5301%2035.0041%2040.9483%2033.5829%2040.9483%2031.8353H40.3486ZM40.3486%2017.1626V31.8353H40.9483V17.1626H40.3486ZM37.7795%2014.5935C39.1987%2014.5935%2040.3486%2015.7479%2040.3486%2017.1626H40.9483C40.9483%2015.4174%2039.5305%2013.9939%2037.7795%2013.9939V14.5935ZM32.2541%2014.5935H37.7795V13.9939H32.2541V14.5935ZM30.2289%2015.5812C30.72%2014.9537%2031.4596%2014.5935%2032.2541%2014.5935V13.9939C31.2749%2013.9939%2030.3613%2014.4391%2029.7567%2015.2116L30.2289%2015.5812ZM17.6219%2031.6957L30.2289%2015.5811L29.7566%2015.2116L17.1496%2031.3262L17.6219%2031.6957ZM12.3417%2031.8108H17.3858V31.2111H12.3417V31.8108ZM12.0418%2017.4889V31.511H12.6415V17.4889H12.0418ZM17.3757%2017.189H12.3417V17.7887H17.3757V17.189ZM20.375%2021.0803L17.6177%2017.3118L17.1337%2017.6659L19.891%2021.4344L20.375%2021.0803ZM20.3749%2021.08L20.3693%2021.0728L19.8967%2021.4419L19.9023%2021.4491L20.3749%2021.08ZM21.6292%2021.0809C21.3091%2021.4869%2020.6937%2021.488%2020.3749%2021.08L19.9023%2021.4491C20.4627%2022.1665%2021.5415%2022.1608%2022.1001%2021.4522L21.6292%2021.0809ZM21.6302%2021.0796L21.6288%2021.0814L22.1005%2021.4517L22.1019%2021.45L21.6302%2021.0796ZM22.2688%2020.263L21.6299%2021.0801L22.1023%2021.4495L22.7412%2020.6324L22.2688%2020.263ZM22.2688%2020.263L22.2669%2020.2654L22.7431%2020.63L22.7449%2020.6276L22.2688%2020.263ZM22.2702%2019.2907C22.4916%2019.5777%2022.4877%2019.977%2022.2687%2020.2631L22.745%2020.6275C23.1252%2020.1307%2023.1363%2019.4315%2022.7449%2018.9243L22.2702%2019.2907ZM19.5678%2015.5807L22.2652%2019.284L22.7499%2018.931L20.0525%2015.2276L19.5678%2015.5807ZM19.5679%2015.5811L19.5741%2015.589L20.0463%2015.2193L20.0401%2015.2114L19.5679%2015.5811ZM17.5428%2014.5935C18.3394%2014.5935%2019.0768%2014.9537%2019.5679%2015.5811L20.0401%2015.2114C19.4357%2014.4393%2018.5243%2013.9939%2017.5428%2013.9939V14.5935ZM12.0173%2014.5935H17.5428V13.9939H12.0173V14.5935Z'%20fill='white'/%3e%3c/svg%3e";function tb(e){let t,n,r,o=!1;return function(s){void 0===t?(t=s,n=0,r=-1):t=function(e,t){const n=new Uint8Array(e.length+t.length);return n.set(e),n.set(t,e.length),n}(t,s);const i=t.length;let l=0;for(;n<i;){o&&(10===t[n]&&(l=++n),o=!1);let u=-1;for(;n<i&&-1===u;++n)switch(t[n]){case 58:-1===r&&(r=n-l);break;case 13:o=!0;case 10:u=n}if(-1===u)break;e(t.subarray(l,u),r),l=n,r=-1}l===i?t=void 0:0!==l&&(t=t.subarray(l),n-=l)}}const au="text/event-stream",Dp="last-event-id";function sb(e,t){var{signal:n,headers:r,onopen:o,onmessage:a,onclose:s,onerror:i,openWhenHidden:l,fetch:u}=t,c=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]])}return n}(t,["signal","headers","onopen","onmessage","onclose","onerror","openWhenHidden","fetch"]);return new Promise(((p,d)=>{const g=Object.assign({},r);let A;function b(){A.abort(),document.hidden||N()}g.accept||(g.accept=au),l||document.addEventListener("visibilitychange",b);let C=1e3,h=0;function m(){document.removeEventListener("visibilitychange",b),window.clearTimeout(h),A.abort()}null==n||n.addEventListener("abort",(()=>{m(),p()}));const E=u??window.fetch,v=o??ib;async function N(){var _;A=new AbortController;try{const S=await E(e,Object.assign(Object.assign({},c),{headers:g,signal:A.signal}));await v(S),await async function(e,t){const n=e.getReader();let r;for(;!(r=await n.read()).done;)t(r.value)}(S.body,tb(function(e,t,n){let r={data:"",event:"",id:"",retry:void 0};const o=new TextDecoder;return function(s,i){if(0===s.length)null==n||n(r),r={data:"",event:"",id:"",retry:void 0};else if(i>0){const l=o.decode(s.subarray(0,i)),u=i+(32===s[i+1]?2:1),c=o.decode(s.subarray(u));switch(l){case"data":r.data=r.data?r.data+"\n"+c:c;break;case"event":r.event=c;break;case"id":e(r.id=c);break;case"retry":const p=parseInt(c,10);isNaN(p)||t(r.retry=p)}}}}((R=>{R?g[Dp]=R:delete g[Dp]}),(R=>{C=R}),a))),null==s||s(),m(),p()}catch(S){if(!A.signal.aborted)try{const R=null!==(_=null==i?void 0:i(S))&&void 0!==_?_:C;window.clearTimeout(h),h=window.setTimeout(N,R)}catch(R){m(),d(R)}}}N()}))}function ib(e){const t=e.headers.get("content-type");if(null==t||!t.startsWith(au))throw new Error(`Expected content-type to be ${au}, Actual: ${t}`)}const ds={embedSessionHistory:async function(e,t){const{embedId:n,baseApiUrl:r}=e;return await fetch(`${r}/${n}/${t}`).then((o=>{if(o.ok)return o.json();throw new Error("Invalid response from server")})).then((o=>o.history.map((a=>({...a,id:zn(),sender:"user"===a.role?"user":"system",textResponse:a.content,close:!1}))))).catch((o=>(console.error(o),[])))},resetEmbedChatSession:async function(e,t){const{baseApiUrl:n,embedId:r}=e;return await fetch(`${n}/${r}/${t}`,{method:"DELETE"}).then((o=>o.ok)).catch((()=>!1))},streamChat:async function(e,t,n,r){const{baseApiUrl:o,embedId:a}=t,s={prompt:(null==t?void 0:t.prompt)??null,model:(null==t?void 0:t.model)??null,temperature:(null==t?void 0:t.temperature)??null},i=new AbortController;await sb(`${o}/${a}/stream-chat`,{method:"POST",body:JSON.stringify({message:n,sessionId:e,...s}),signal:i.signal,openWhenHidden:!0,async onopen(l){if(!l.ok)throw l.status>=400?(await l.json().then((u=>{r(u)})).catch((()=>{r({id:zn(),type:"abort",textResponse:null,sources:[],close:!0,error:`An error occurred while streaming response. Code ${l.status}`})})),i.abort(),new Error):(r({id:zn(),type:"abort",textResponse:null,sources:[],close:!0,error:"An error occurred while streaming response. Unknown Error."}),i.abort(),new Error("Unknown Error"))},async onmessage(l){try{const u=JSON.parse(l.data);r(u)}catch{}},onerror(l){throw r({id:zn(),type:"abort",textResponse:null,sources:[],close:!0,error:`An error occurred while streaming response. ${l.message}`}),i.abort(),new Error}})}};function yp({sessionId:e,settings:t={},iconUrl:n=null,closeChat:r,setChatHistory:o}){const[a,s]=Z.useState(!1),i=Z.useRef(),l=Z.useRef();return Z.useEffect((()=>{function c(p){i.current&&!i.current.contains(p.target)&&l.current&&!l.current.contains(p.target)&&s(!1)}return document.addEventListener("mousedown",c),()=>{document.removeEventListener("mousedown",c)}}),[i]),w.jsxs("div",{style:{borderBottom:"1px solid #E9E9E9"},className:"allm-flex allm-items-center allm-relative allm-rounded-t-2xl",id:"anything-llm-header",children:[w.jsx("div",{className:"allm-flex allm-justify-center allm-items-center allm-w-full allm-h-[76px]",children:w.jsx("img",{style:{maxWidth:48,maxHeight:48},src:n??ko,alt:n?"Brand":"AnythingLLM Logo"})}),w.jsxs("div",{className:"allm-absolute allm-right-0 allm-flex allm-gap-x-1 allm-items-center allm-px-[22px]",children:[t.loaded&&w.jsx("button",{ref:l,type:"button",onClick:()=>s(!a),className:"allm-bg-transparent hover:allm-cursor-pointer allm-border-none hover:allm-bg-gray-100 allm-rounded-sm allm-text-slate-800/60","aria-label":"Options",children:w.jsx(X2,{size:20,weight:"fill"})}),w.jsx("button",{type:"button",onClick:r,className:"allm-bg-transparent hover:allm-cursor-pointer allm-border-none hover:allm-bg-gray-100 allm-rounded-sm allm-text-slate-800/60","aria-label":"Close",children:w.jsx(_p,{size:20,weight:"bold"})})]}),w.jsx(lb,{settings:t,showing:a,resetChat:async()=>{await ds.resetEmbedChatSession(t,e),o([]),s(!1)},sessionId:e,menuRef:i})]})}function lb({settings:e,showing:t,resetChat:n,sessionId:r,menuRef:o}){return t?w.jsxs("div",{ref:o,className:"allm-bg-white allm-absolute allm-z-10 allm-flex allm-flex-col allm-gap-y-1 allm-rounded-xl allm-shadow-lg allm-top-[64px] allm-right-[46px]",children:[w.jsxs("button",{onClick:n,className:"hover:allm-cursor-pointer allm-bg-white allm-gap-x-[12px] hover:allm-bg-gray-100 allm-rounded-lg allm-border-none allm-flex allm-items-center allm-text-base allm-text-[#7A7D7E] allm-font-bold allm-px-4",children:[w.jsx(L2,{size:24}),w.jsx("p",{className:"allm-text-[14px]",children:"Reset Chat"})]}),w.jsx(cb,{email:e.supportEmail}),w.jsx(ub,{sessionId:r})]}):null}function ub({sessionId:e}){if(!e)return null;const[t,n]=Z.useState(!1);return t?w.jsxs("div",{className:"hover:allm-cursor-pointer allm-bg-white allm-gap-x-[12px] hover:allm-bg-gray-100 allm-rounded-lg allm-border-none allm-flex allm-items-center allm-text-base allm-text-[#7A7D7E] allm-font-bold allm-px-4",children:[w.jsx(z2,{size:24}),w.jsx("p",{className:"allm-text-[14px] allm-font-sans",children:"Copied!"})]}):w.jsxs("button",{onClick:()=>{navigator.clipboard.writeText(e),n(!0),setTimeout((()=>n(!1)),1e3)},className:"hover:allm-cursor-pointer allm-bg-white allm-gap-x-[12px] hover:allm-bg-gray-100 allm-rounded-lg allm-border-none allm-flex allm-items-center allm-text-base allm-text-[#7A7D7E] allm-font-bold allm-px-4",children:[w.jsx(W2,{size:24}),w.jsx("p",{className:"allm-text-[14px]",children:"Session ID"})]})}function cb({email:e=null}){if(!e)return null;const t=`Inquiry from ${window.location.origin}`;return w.jsxs("a",{href:`mailto:${e}?Subject=${encodeURIComponent(t)}`,className:"allm-no-underline hover:allm-underline hover:allm-cursor-pointer allm-bg-white allm-gap-x-[12px] hover:allm-bg-gray-100 allm-rounded-lg allm-border-none allm-flex allm-items-center allm-text-base allm-text-[#7A7D7E] allm-font-bold allm-px-4",children:[w.jsx(ep,{size:24}),w.jsx("p",{className:"allm-text-[14px] allm-font-sans",children:"Email Support"})]})}function db(){const e=y2();return e?w.jsx("div",{className:"allm-text-xs allm-text-gray-300 allm-w-full allm-text-center",children:e}):null}var ps={exports:{}};/*! https://mths.be/he v1.2.0 by @mathias | MIT license */!function(e,t){!function(n){var r=t,o=e&&e.exports==r&&e,a="object"==typeof Nt&&Nt;(a.global===a||a.window===a)&&(n=a);var s=/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,i=/[\x01-\x7F]/g,l=/[\x01-\t\x0B\f\x0E-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0-\uFFFF]/g,u=/<\u20D2|=\u20E5|>\u20D2|\u205F\u200A|\u219D\u0338|\u2202\u0338|\u2220\u20D2|\u2229\uFE00|\u222A\uFE00|\u223C\u20D2|\u223D\u0331|\u223E\u0333|\u2242\u0338|\u224B\u0338|\u224D\u20D2|\u224E\u0338|\u224F\u0338|\u2250\u0338|\u2261\u20E5|\u2264\u20D2|\u2265\u20D2|\u2266\u0338|\u2267\u0338|\u2268\uFE00|\u2269\uFE00|\u226A\u0338|\u226A\u20D2|\u226B\u0338|\u226B\u20D2|\u227F\u0338|\u2282\u20D2|\u2283\u20D2|\u228A\uFE00|\u228B\uFE00|\u228F\u0338|\u2290\u0338|\u2293\uFE00|\u2294\uFE00|\u22B4\u20D2|\u22B5\u20D2|\u22D8\u0338|\u22D9\u0338|\u22DA\uFE00|\u22DB\uFE00|\u22F5\u0338|\u22F9\u0338|\u2933\u0338|\u29CF\u0338|\u29D0\u0338|\u2A6D\u0338|\u2A70\u0338|\u2A7D\u0338|\u2A7E\u0338|\u2AA1\u0338|\u2AA2\u0338|\u2AAC\uFE00|\u2AAD\uFE00|\u2AAF\u0338|\u2AB0\u0338|\u2AC5\u0338|\u2AC6\u0338|\u2ACB\uFE00|\u2ACC\uFE00|\u2AFD\u20E5|[\xA0-\u0113\u0116-\u0122\u0124-\u012B\u012E-\u014D\u0150-\u017E\u0192\u01B5\u01F5\u0237\u02C6\u02C7\u02D8-\u02DD\u0311\u0391-\u03A1\u03A3-\u03A9\u03B1-\u03C9\u03D1\u03D2\u03D5\u03D6\u03DC\u03DD\u03F0\u03F1\u03F5\u03F6\u0401-\u040C\u040E-\u044F\u0451-\u045C\u045E\u045F\u2002-\u2005\u2007-\u2010\u2013-\u2016\u2018-\u201A\u201C-\u201E\u2020-\u2022\u2025\u2026\u2030-\u2035\u2039\u203A\u203E\u2041\u2043\u2044\u204F\u2057\u205F-\u2063\u20AC\u20DB\u20DC\u2102\u2105\u210A-\u2113\u2115-\u211E\u2122\u2124\u2127-\u2129\u212C\u212D\u212F-\u2131\u2133-\u2138\u2145-\u2148\u2153-\u215E\u2190-\u219B\u219D-\u21A7\u21A9-\u21AE\u21B0-\u21B3\u21B5-\u21B7\u21BA-\u21DB\u21DD\u21E4\u21E5\u21F5\u21FD-\u2205\u2207-\u2209\u220B\u220C\u220F-\u2214\u2216-\u2218\u221A\u221D-\u2238\u223A-\u2257\u2259\u225A\u225C\u225F-\u2262\u2264-\u228B\u228D-\u229B\u229D-\u22A5\u22A7-\u22B0\u22B2-\u22BB\u22BD-\u22DB\u22DE-\u22E3\u22E6-\u22F7\u22F9-\u22FE\u2305\u2306\u2308-\u2310\u2312\u2313\u2315\u2316\u231C-\u231F\u2322\u2323\u232D\u232E\u2336\u233D\u233F\u237C\u23B0\u23B1\u23B4-\u23B6\u23DC-\u23DF\u23E2\u23E7\u2423\u24C8\u2500\u2502\u250C\u2510\u2514\u2518\u251C\u2524\u252C\u2534\u253C\u2550-\u256C\u2580\u2584\u2588\u2591-\u2593\u25A1\u25AA\u25AB\u25AD\u25AE\u25B1\u25B3-\u25B5\u25B8\u25B9\u25BD-\u25BF\u25C2\u25C3\u25CA\u25CB\u25EC\u25EF\u25F8-\u25FC\u2605\u2606\u260E\u2640\u2642\u2660\u2663\u2665\u2666\u266A\u266D-\u266F\u2713\u2717\u2720\u2736\u2758\u2772\u2773\u27C8\u27C9\u27E6-\u27ED\u27F5-\u27FA\u27FC\u27FF\u2902-\u2905\u290C-\u2913\u2916\u2919-\u2920\u2923-\u292A\u2933\u2935-\u2939\u293C\u293D\u2945\u2948-\u294B\u294E-\u2976\u2978\u2979\u297B-\u297F\u2985\u2986\u298B-\u2996\u299A\u299C\u299D\u29A4-\u29B7\u29B9\u29BB\u29BC\u29BE-\u29C5\u29C9\u29CD-\u29D0\u29DC-\u29DE\u29E3-\u29E5\u29EB\u29F4\u29F6\u2A00-\u2A02\u2A04\u2A06\u2A0C\u2A0D\u2A10-\u2A17\u2A22-\u2A27\u2A29\u2A2A\u2A2D-\u2A31\u2A33-\u2A3C\u2A3F\u2A40\u2A42-\u2A4D\u2A50\u2A53-\u2A58\u2A5A-\u2A5D\u2A5F\u2A66\u2A6A\u2A6D-\u2A75\u2A77-\u2A9A\u2A9D-\u2AA2\u2AA4-\u2AB0\u2AB3-\u2AC8\u2ACB\u2ACC\u2ACF-\u2ADB\u2AE4\u2AE6-\u2AE9\u2AEB-\u2AF3\u2AFD\uFB00-\uFB04]|\uD835[\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDCCF\uDD04\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDD6B]/g,c={"":"shy","":"zwnj","":"zwj","":"lrm","":"ic","":"it","":"af","":"rlm","":"ZeroWidthSpace","":"NoBreak","̑":"DownBreve","⃛":"tdot","⃜":"DotDot","\t":"Tab","\n":"NewLine"," ":"puncsp"," ":"MediumSpace"," ":"thinsp"," ":"hairsp"," ":"emsp13"," ":"ensp"," ":"emsp14"," ":"emsp"," ":"numsp"," ":"nbsp"," ":"ThickSpace","‾":"oline",_:"lowbar","‐":"dash","–":"ndash","—":"mdash","―":"horbar",",":"comma",";":"semi","⁏":"bsemi",":":"colon","⩴":"Colone","!":"excl","¡":"iexcl","?":"quest","¿":"iquest",".":"period","‥":"nldr","…":"mldr","·":"middot","'":"apos","‘":"lsquo","’":"rsquo","‚":"sbquo","‹":"lsaquo","›":"rsaquo",'"':"quot","“":"ldquo","”":"rdquo","„":"bdquo","«":"laquo","»":"raquo","(":"lpar",")":"rpar","[":"lsqb","]":"rsqb","{":"lcub","}":"rcub","⌈":"lceil","⌉":"rceil","⌊":"lfloor","⌋":"rfloor","⦅":"lopar","⦆":"ropar","⦋":"lbrke","⦌":"rbrke","⦍":"lbrkslu","⦎":"rbrksld","⦏":"lbrksld","⦐":"rbrkslu","⦑":"langd","⦒":"rangd","⦓":"lparlt","⦔":"rpargt","⦕":"gtlPar","⦖":"ltrPar","⟦":"lobrk","⟧":"robrk","⟨":"lang","⟩":"rang","⟪":"Lang","⟫":"Rang","⟬":"loang","⟭":"roang","❲":"lbbrk","❳":"rbbrk","‖":"Vert","§":"sect","¶":"para","@":"commat","*":"ast","/":"sol",undefined:null,"&":"amp","#":"num","%":"percnt","‰":"permil","‱":"pertenk","†":"dagger","‡":"Dagger","•":"bull","⁃":"hybull","′":"prime","″":"Prime","‴":"tprime","⁗":"qprime","‵":"bprime","⁁":"caret","`":"grave","´":"acute","˜":"tilde","^":"Hat","¯":"macr","˘":"breve","˙":"dot","¨":"die","˚":"ring","˝":"dblac","¸":"cedil","˛":"ogon","ˆ":"circ","ˇ":"caron","°":"deg","©":"copy","®":"reg","℗":"copysr","℘":"wp","℞":"rx","℧":"mho","℩":"iiota","←":"larr","↚":"nlarr","→":"rarr","↛":"nrarr","↑":"uarr","↓":"darr","↔":"harr","↮":"nharr","↕":"varr","↖":"nwarr","↗":"nearr","↘":"searr","↙":"swarr","↝":"rarrw","↝̸":"nrarrw","↞":"Larr","↟":"Uarr","↠":"Rarr","↡":"Darr","↢":"larrtl","↣":"rarrtl","↤":"mapstoleft","↥":"mapstoup","↦":"map","↧":"mapstodown","↩":"larrhk","↪":"rarrhk","↫":"larrlp","↬":"rarrlp","↭":"harrw","↰":"lsh","↱":"rsh","↲":"ldsh","↳":"rdsh","↵":"crarr","↶":"cularr","↷":"curarr","↺":"olarr","↻":"orarr","↼":"lharu","↽":"lhard","↾":"uharr","↿":"uharl","⇀":"rharu","⇁":"rhard","⇂":"dharr","⇃":"dharl","⇄":"rlarr","⇅":"udarr","⇆":"lrarr","⇇":"llarr","⇈":"uuarr","⇉":"rrarr","⇊":"ddarr","⇋":"lrhar","⇌":"rlhar","⇐":"lArr","⇍":"nlArr","⇑":"uArr","⇒":"rArr","⇏":"nrArr","⇓":"dArr","⇔":"iff","⇎":"nhArr","⇕":"vArr","⇖":"nwArr","⇗":"neArr","⇘":"seArr","⇙":"swArr","⇚":"lAarr","⇛":"rAarr","⇝":"zigrarr","⇤":"larrb","⇥":"rarrb","⇵":"duarr","⇽":"loarr","⇾":"roarr","⇿":"hoarr","∀":"forall","∁":"comp","∂":"part","∂̸":"npart","∃":"exist","∄":"nexist","∅":"empty","∇":"Del","∈":"in","∉":"notin","∋":"ni","∌":"notni","϶":"bepsi","∏":"prod","∐":"coprod","∑":"sum","+":"plus","±":"pm","÷":"div","×":"times","<":"lt","≮":"nlt","<⃒":"nvlt","=":"equals","≠":"ne","=⃥":"bne","⩵":"Equal",">":"gt","≯":"ngt",">⃒":"nvgt","¬":"not","|":"vert","¦":"brvbar","−":"minus","∓":"mp","∔":"plusdo","⁄":"frasl","∖":"setmn","∗":"lowast","∘":"compfn","√":"Sqrt","∝":"prop","∞":"infin","∟":"angrt","∠":"ang","∠⃒":"nang","∡":"angmsd","∢":"angsph","∣":"mid","∤":"nmid","∥":"par","∦":"npar","∧":"and","∨":"or","∩":"cap","∩︀":"caps","∪":"cup","∪︀":"cups","∫":"int","∬":"Int","∭":"tint","⨌":"qint","∮":"oint","∯":"Conint","∰":"Cconint","∱":"cwint","∲":"cwconint","∳":"awconint","∴":"there4","∵":"becaus","∶":"ratio","∷":"Colon","∸":"minusd","∺":"mDDot","∻":"homtht","∼":"sim","≁":"nsim","∼⃒":"nvsim","∽":"bsim","∽̱":"race","∾":"ac","∾̳":"acE","∿":"acd","≀":"wr","≂":"esim","≂̸":"nesim","≃":"sime","≄":"nsime","≅":"cong","≇":"ncong","≆":"simne","≈":"ap","≉":"nap","≊":"ape","≋":"apid","≋̸":"napid","≌":"bcong","≍":"CupCap","≭":"NotCupCap","≍⃒":"nvap","≎":"bump","≎̸":"nbump","≏":"bumpe","≏̸":"nbumpe","≐":"doteq","≐̸":"nedot","≑":"eDot","≒":"efDot","≓":"erDot","≔":"colone","≕":"ecolon","≖":"ecir","≗":"cire","≙":"wedgeq","≚":"veeeq","≜":"trie","≟":"equest","≡":"equiv","≢":"nequiv","≡⃥":"bnequiv","≤":"le","≰":"nle","≤⃒":"nvle","≥":"ge","≱":"nge","≥⃒":"nvge","≦":"lE","≦̸":"nlE","≧":"gE","≧̸":"ngE","≨︀":"lvnE","≨":"lnE","≩":"gnE","≩︀":"gvnE","≪":"ll","≪̸":"nLtv","≪⃒":"nLt","≫":"gg","≫̸":"nGtv","≫⃒":"nGt","≬":"twixt","≲":"lsim","≴":"nlsim","≳":"gsim","≵":"ngsim","≶":"lg","≸":"ntlg","≷":"gl","≹":"ntgl","≺":"pr","⊀":"npr","≻":"sc","⊁":"nsc","≼":"prcue","⋠":"nprcue","≽":"sccue","⋡":"nsccue","≾":"prsim","≿":"scsim","≿̸":"NotSucceedsTilde","⊂":"sub","⊄":"nsub","⊂⃒":"vnsub","⊃":"sup","⊅":"nsup","⊃⃒":"vnsup","⊆":"sube","⊈":"nsube","⊇":"supe","⊉":"nsupe","⊊︀":"vsubne","⊊":"subne","⊋︀":"vsupne","⊋":"supne","⊍":"cupdot","⊎":"uplus","⊏":"sqsub","⊏̸":"NotSquareSubset","⊐":"sqsup","⊐̸":"NotSquareSuperset","⊑":"sqsube","⋢":"nsqsube","⊒":"sqsupe","⋣":"nsqsupe","⊓":"sqcap","⊓︀":"sqcaps","⊔":"sqcup","⊔︀":"sqcups","⊕":"oplus","⊖":"ominus","⊗":"otimes","⊘":"osol","⊙":"odot","⊚":"ocir","⊛":"oast","⊝":"odash","⊞":"plusb","⊟":"minusb","⊠":"timesb","⊡":"sdotb","⊢":"vdash","⊬":"nvdash","⊣":"dashv","⊤":"top","⊥":"bot","⊧":"models","⊨":"vDash","⊭":"nvDash","⊩":"Vdash","⊮":"nVdash","⊪":"Vvdash","⊫":"VDash","⊯":"nVDash","⊰":"prurel","⊲":"vltri","⋪":"nltri","⊳":"vrtri","⋫":"nrtri","⊴":"ltrie","⋬":"nltrie","⊴⃒":"nvltrie","⊵":"rtrie","⋭":"nrtrie","⊵⃒":"nvrtrie","⊶":"origof","⊷":"imof","⊸":"mumap","⊹":"hercon","⊺":"intcal","⊻":"veebar","⊽":"barvee","⊾":"angrtvb","⊿":"lrtri","⋀":"Wedge","⋁":"Vee","⋂":"xcap","⋃":"xcup","⋄":"diam","⋅":"sdot","⋆":"Star","⋇":"divonx","⋈":"bowtie","⋉":"ltimes","⋊":"rtimes","⋋":"lthree","⋌":"rthree","⋍":"bsime","⋎":"cuvee","⋏":"cuwed","⋐":"Sub","⋑":"Sup","⋒":"Cap","⋓":"Cup","⋔":"fork","⋕":"epar","⋖":"ltdot","⋗":"gtdot","⋘":"Ll","⋘̸":"nLl","⋙":"Gg","⋙̸":"nGg","⋚︀":"lesg","⋚":"leg","⋛":"gel","⋛︀":"gesl","⋞":"cuepr","⋟":"cuesc","⋦":"lnsim","⋧":"gnsim","⋨":"prnsim","⋩":"scnsim","⋮":"vellip","⋯":"ctdot","⋰":"utdot","⋱":"dtdot","⋲":"disin","⋳":"isinsv","⋴":"isins","⋵":"isindot","⋵̸":"notindot","⋶":"notinvc","⋷":"notinvb","⋹":"isinE","⋹̸":"notinE","⋺":"nisd","⋻":"xnis","⋼":"nis","⋽":"notnivc","⋾":"notnivb","⌅":"barwed","⌆":"Barwed","⌌":"drcrop","⌍":"dlcrop","⌎":"urcrop","⌏":"ulcrop","⌐":"bnot","⌒":"profline","⌓":"profsurf","⌕":"telrec","⌖":"target","⌜":"ulcorn","⌝":"urcorn","⌞":"dlcorn","⌟":"drcorn","⌢":"frown","⌣":"smile","⌭":"cylcty","⌮":"profalar","⌶":"topbot","⌽":"ovbar","⌿":"solbar","⍼":"angzarr","⎰":"lmoust","⎱":"rmoust","⎴":"tbrk","⎵":"bbrk","⎶":"bbrktbrk","⏜":"OverParenthesis","⏝":"UnderParenthesis","⏞":"OverBrace","⏟":"UnderBrace","⏢":"trpezium","⏧":"elinters","␣":"blank","─":"boxh","│":"boxv","┌":"boxdr","┐":"boxdl","└":"boxur","┘":"boxul","├":"boxvr","┤":"boxvl","┬":"boxhd","┴":"boxhu","┼":"boxvh","═":"boxH","║":"boxV","╒":"boxdR","╓":"boxDr","╔":"boxDR","╕":"boxdL","╖":"boxDl","╗":"boxDL","╘":"boxuR","╙":"boxUr","╚":"boxUR","╛":"boxuL","╜":"boxUl","╝":"boxUL","╞":"boxvR","╟":"boxVr","╠":"boxVR","╡":"boxvL","╢":"boxVl","╣":"boxVL","╤":"boxHd","╥":"boxhD","╦":"boxHD","╧":"boxHu","╨":"boxhU","╩":"boxHU","╪":"boxvH","╫":"boxVh","╬":"boxVH","▀":"uhblk","▄":"lhblk","█":"block","░":"blk14","▒":"blk12","▓":"blk34","□":"squ","▪":"squf","▫":"EmptyVerySmallSquare","▭":"rect","▮":"marker","▱":"fltns","△":"xutri","▴":"utrif","▵":"utri","▸":"rtrif","▹":"rtri","▽":"xdtri","▾":"dtrif","▿":"dtri","◂":"ltrif","◃":"ltri","◊":"loz","○":"cir","◬":"tridot","◯":"xcirc","◸":"ultri","◹":"urtri","◺":"lltri","◻":"EmptySmallSquare","◼":"FilledSmallSquare","★":"starf","☆":"star","☎":"phone","♀":"female","♂":"male","♠":"spades","♣":"clubs","♥":"hearts","♦":"diams","♪":"sung","✓":"check","✗":"cross","✠":"malt","✶":"sext","❘":"VerticalSeparator","⟈":"bsolhsub","⟉":"suphsol","⟵":"xlarr","⟶":"xrarr","⟷":"xharr","⟸":"xlArr","⟹":"xrArr","⟺":"xhArr","⟼":"xmap","⟿":"dzigrarr","⤂":"nvlArr","⤃":"nvrArr","⤄":"nvHarr","⤅":"Map","⤌":"lbarr","⤍":"rbarr","⤎":"lBarr","⤏":"rBarr","⤐":"RBarr","⤑":"DDotrahd","⤒":"UpArrowBar","⤓":"DownArrowBar","⤖":"Rarrtl","⤙":"latail","⤚":"ratail","⤛":"lAtail","⤜":"rAtail","⤝":"larrfs","⤞":"rarrfs","⤟":"larrbfs","⤠":"rarrbfs","⤣":"nwarhk","⤤":"nearhk","⤥":"searhk","⤦":"swarhk","⤧":"nwnear","⤨":"toea","⤩":"tosa","⤪":"swnwar","⤳":"rarrc","⤳̸":"nrarrc","⤵":"cudarrr","⤶":"ldca","⤷":"rdca","⤸":"cudarrl","⤹":"larrpl","⤼":"curarrm","⤽":"cularrp","⥅":"rarrpl","⥈":"harrcir","⥉":"Uarrocir","⥊":"lurdshar","⥋":"ldrushar","⥎":"LeftRightVector","⥏":"RightUpDownVector","⥐":"DownLeftRightVector","⥑":"LeftUpDownVector","⥒":"LeftVectorBar","⥓":"RightVectorBar","⥔":"RightUpVectorBar","⥕":"RightDownVectorBar","⥖":"DownLeftVectorBar","⥗":"DownRightVectorBar","⥘":"LeftUpVectorBar","⥙":"LeftDownVectorBar","⥚":"LeftTeeVector","⥛":"RightTeeVector","⥜":"RightUpTeeVector","⥝":"RightDownTeeVector","⥞":"DownLeftTeeVector","⥟":"DownRightTeeVector","⥠":"LeftUpTeeVector","⥡":"LeftDownTeeVector","⥢":"lHar","⥣":"uHar","⥤":"rHar","⥥":"dHar","⥦":"luruhar","⥧":"ldrdhar","⥨":"ruluhar","⥩":"rdldhar","⥪":"lharul","⥫":"llhard","⥬":"rharul","⥭":"lrhard","⥮":"udhar","⥯":"duhar","⥰":"RoundImplies","⥱":"erarr","⥲":"simrarr","⥳":"larrsim","⥴":"rarrsim","⥵":"rarrap","⥶":"ltlarr","⥸":"gtrarr","⥹":"subrarr","⥻":"suplarr","⥼":"lfisht","⥽":"rfisht","⥾":"ufisht","⥿":"dfisht","⦚":"vzigzag","⦜":"vangrt","⦝":"angrtvbd","⦤":"ange","⦥":"range","⦦":"dwangle","⦧":"uwangle","⦨":"angmsdaa","⦩":"angmsdab","⦪":"angmsdac","⦫":"angmsdad","⦬":"angmsdae","⦭":"angmsdaf","⦮":"angmsdag","⦯":"angmsdah","⦰":"bemptyv","⦱":"demptyv","⦲":"cemptyv","⦳":"raemptyv","⦴":"laemptyv","⦵":"ohbar","⦶":"omid","⦷":"opar","⦹":"operp","⦻":"olcross","⦼":"odsold","⦾":"olcir","⦿":"ofcir","⧀":"olt","⧁":"ogt","⧂":"cirscir","⧃":"cirE","⧄":"solb","⧅":"bsolb","⧉":"boxbox","⧍":"trisb","⧎":"rtriltri","⧏":"LeftTriangleBar","⧏̸":"NotLeftTriangleBar","⧐":"RightTriangleBar","⧐̸":"NotRightTriangleBar","⧜":"iinfin","⧝":"infintie","⧞":"nvinfin","⧣":"eparsl","⧤":"smeparsl","⧥":"eqvparsl","⧫":"lozf","⧴":"RuleDelayed","⧶":"dsol","⨀":"xodot","⨁":"xoplus","⨂":"xotime","⨄":"xuplus","⨆":"xsqcup","⨍":"fpartint","⨐":"cirfnint","⨑":"awint","⨒":"rppolint","⨓":"scpolint","⨔":"npolint","⨕":"pointint","⨖":"quatint","⨗":"intlarhk","⨢":"pluscir","⨣":"plusacir","⨤":"simplus","⨥":"plusdu","⨦":"plussim","⨧":"plustwo","⨩":"mcomma","⨪":"minusdu","⨭":"loplus","⨮":"roplus","⨯":"Cross","⨰":"timesd","⨱":"timesbar","⨳":"smashp","⨴":"lotimes","⨵":"rotimes","⨶":"otimesas","⨷":"Otimes","⨸":"odiv","⨹":"triplus","⨺":"triminus","⨻":"tritime","⨼":"iprod","⨿":"amalg","⩀":"capdot","⩂":"ncup","⩃":"ncap","⩄":"capand","⩅":"cupor","⩆":"cupcap","⩇":"capcup","⩈":"cupbrcap","⩉":"capbrcup","⩊":"cupcup","⩋":"capcap","⩌":"ccups","⩍":"ccaps","⩐":"ccupssm","⩓":"And","⩔":"Or","⩕":"andand","⩖":"oror","⩗":"orslope","⩘":"andslope","⩚":"andv","⩛":"orv","⩜":"andd","⩝":"ord","⩟":"wedbar","⩦":"sdote","⩪":"simdot","⩭":"congdot","⩭̸":"ncongdot","⩮":"easter","⩯":"apacir","⩰":"apE","⩰̸":"napE","⩱":"eplus","⩲":"pluse","⩳":"Esim","⩷":"eDDot","⩸":"equivDD","⩹":"ltcir","⩺":"gtcir","⩻":"ltquest","⩼":"gtquest","⩽":"les","⩽̸":"nles","⩾":"ges","⩾̸":"nges","⩿":"lesdot","⪀":"gesdot","⪁":"lesdoto","⪂":"gesdoto","⪃":"lesdotor","⪄":"gesdotol","⪅":"lap","⪆":"gap","⪇":"lne","⪈":"gne","⪉":"lnap","⪊":"gnap","⪋":"lEg","⪌":"gEl","⪍":"lsime","⪎":"gsime","⪏":"lsimg","⪐":"gsiml","⪑":"lgE","⪒":"glE","⪓":"lesges","⪔":"gesles","⪕":"els","⪖":"egs","⪗":"elsdot","⪘":"egsdot","⪙":"el","⪚":"eg","⪝":"siml","⪞":"simg","⪟":"simlE","⪠":"simgE","⪡":"LessLess","⪡̸":"NotNestedLessLess","⪢":"GreaterGreater","⪢̸":"NotNestedGreaterGreater","⪤":"glj","⪥":"gla","⪦":"ltcc","⪧":"gtcc","⪨":"lescc","⪩":"gescc","⪪":"smt","⪫":"lat","⪬":"smte","⪬︀":"smtes","⪭":"late","⪭︀":"lates","⪮":"bumpE","⪯":"pre","⪯̸":"npre","⪰":"sce","⪰̸":"nsce","⪳":"prE","⪴":"scE","⪵":"prnE","⪶":"scnE","⪷":"prap","⪸":"scap","⪹":"prnap","⪺":"scnap","⪻":"Pr","⪼":"Sc","⪽":"subdot","⪾":"supdot","⪿":"subplus","⫀":"supplus","⫁":"submult","⫂":"supmult","⫃":"subedot","⫄":"supedot","⫅":"subE","⫅̸":"nsubE","⫆":"supE","⫆̸":"nsupE","⫇":"subsim","⫈":"supsim","⫋︀":"vsubnE","⫋":"subnE","⫌︀":"vsupnE","⫌":"supnE","⫏":"csub","⫐":"csup","⫑":"csube","⫒":"csupe","⫓":"subsup","⫔":"supsub","⫕":"subsub","⫖":"supsup","⫗":"suphsub","⫘":"supdsub","⫙":"forkv","⫚":"topfork","⫛":"mlcp","⫤":"Dashv","⫦":"Vdashl","⫧":"Barv","⫨":"vBar","⫩":"vBarv","⫫":"Vbar","⫬":"Not","⫭":"bNot","⫮":"rnmid","⫯":"cirmid","⫰":"midcir","⫱":"topcir","⫲":"nhpar","⫳":"parsim","⫽":"parsl","⫽⃥":"nparsl","♭":"flat","♮":"natur","♯":"sharp","¤":"curren","¢":"cent",$:"dollar","£":"pound","¥":"yen","€":"euro","¹":"sup1","½":"half","⅓":"frac13","¼":"frac14","⅕":"frac15","⅙":"frac16","⅛":"frac18","²":"sup2","⅔":"frac23","⅖":"frac25","³":"sup3","¾":"frac34","⅗":"frac35","⅜":"frac38","⅘":"frac45","⅚":"frac56","⅝":"frac58","⅞":"frac78","𝒶":"ascr","𝕒":"aopf","𝔞":"afr","𝔸":"Aopf","𝔄":"Afr","𝒜":"Ascr","ª":"ordf","á":"aacute","Á":"Aacute","à":"agrave","À":"Agrave","ă":"abreve","Ă":"Abreve","â":"acirc","Â":"Acirc","å":"aring","Å":"angst","ä":"auml","Ä":"Auml","ã":"atilde","Ã":"Atilde","ą":"aogon","Ą":"Aogon","ā":"amacr","Ā":"Amacr","æ":"aelig","Æ":"AElig","𝒷":"bscr","𝕓":"bopf","𝔟":"bfr","𝔹":"Bopf","ℬ":"Bscr","𝔅":"Bfr","𝔠":"cfr","𝒸":"cscr","𝕔":"copf","ℭ":"Cfr","𝒞":"Cscr","ℂ":"Copf","ć":"cacute","Ć":"Cacute","ĉ":"ccirc","Ĉ":"Ccirc","č":"ccaron","Č":"Ccaron","ċ":"cdot","Ċ":"Cdot","ç":"ccedil","Ç":"Ccedil","℅":"incare","𝔡":"dfr","ⅆ":"dd","𝕕":"dopf","𝒹":"dscr","𝒟":"Dscr","𝔇":"Dfr","ⅅ":"DD","𝔻":"Dopf","ď":"dcaron","Ď":"Dcaron","đ":"dstrok","Đ":"Dstrok","ð":"eth","Ð":"ETH","ⅇ":"ee","ℯ":"escr","𝔢":"efr","𝕖":"eopf","ℰ":"Escr","𝔈":"Efr","𝔼":"Eopf","é":"eacute","É":"Eacute","è":"egrave","È":"Egrave","ê":"ecirc","Ê":"Ecirc","ě":"ecaron","Ě":"Ecaron","ë":"euml","Ë":"Euml","ė":"edot","Ė":"Edot","ę":"eogon","Ę":"Eogon","ē":"emacr","Ē":"Emacr","𝔣":"ffr","𝕗":"fopf","𝒻":"fscr","𝔉":"Ffr","𝔽":"Fopf","ℱ":"Fscr","ff":"fflig","ffi":"ffilig","ffl":"ffllig","fi":"filig",fj:"fjlig","fl":"fllig","ƒ":"fnof","ℊ":"gscr","𝕘":"gopf","𝔤":"gfr","𝒢":"Gscr","𝔾":"Gopf","𝔊":"Gfr","ǵ":"gacute","ğ":"gbreve","Ğ":"Gbreve","ĝ":"gcirc","Ĝ":"Gcirc","ġ":"gdot","Ġ":"Gdot","Ģ":"Gcedil","𝔥":"hfr","ℎ":"planckh","𝒽":"hscr","𝕙":"hopf","ℋ":"Hscr","ℌ":"Hfr","ℍ":"Hopf","ĥ":"hcirc","Ĥ":"Hcirc","ℏ":"hbar","ħ":"hstrok","Ħ":"Hstrok","𝕚":"iopf","𝔦":"ifr","𝒾":"iscr","ⅈ":"ii","𝕀":"Iopf","ℐ":"Iscr","ℑ":"Im","í":"iacute","Í":"Iacute","ì":"igrave","Ì":"Igrave","î":"icirc","Î":"Icirc","ï":"iuml","Ï":"Iuml","ĩ":"itilde","Ĩ":"Itilde","İ":"Idot","į":"iogon","Į":"Iogon","ī":"imacr","Ī":"Imacr","ij":"ijlig","IJ":"IJlig","ı":"imath","𝒿":"jscr","𝕛":"jopf","𝔧":"jfr","𝒥":"Jscr","𝔍":"Jfr","𝕁":"Jopf","ĵ":"jcirc","Ĵ":"Jcirc","ȷ":"jmath","𝕜":"kopf","𝓀":"kscr","𝔨":"kfr","𝒦":"Kscr","𝕂":"Kopf","𝔎":"Kfr","ķ":"kcedil","Ķ":"Kcedil","𝔩":"lfr","𝓁":"lscr","ℓ":"ell","𝕝":"lopf","ℒ":"Lscr","𝔏":"Lfr","𝕃":"Lopf","ĺ":"lacute","Ĺ":"Lacute","ľ":"lcaron","Ľ":"Lcaron","ļ":"lcedil","Ļ":"Lcedil","ł":"lstrok","Ł":"Lstrok","ŀ":"lmidot","Ŀ":"Lmidot","𝔪":"mfr","𝕞":"mopf","𝓂":"mscr","𝔐":"Mfr","𝕄":"Mopf","ℳ":"Mscr","𝔫":"nfr","𝕟":"nopf","𝓃":"nscr","ℕ":"Nopf","𝒩":"Nscr","𝔑":"Nfr","ń":"nacute","Ń":"Nacute","ň":"ncaron","Ň":"Ncaron","ñ":"ntilde","Ñ":"Ntilde","ņ":"ncedil","Ņ":"Ncedil","№":"numero","ŋ":"eng","Ŋ":"ENG","𝕠":"oopf","𝔬":"ofr","ℴ":"oscr","𝒪":"Oscr","𝔒":"Ofr","𝕆":"Oopf","º":"ordm","ó":"oacute","Ó":"Oacute","ò":"ograve","Ò":"Ograve","ô":"ocirc","Ô":"Ocirc","ö":"ouml","Ö":"Ouml","ő":"odblac","Ő":"Odblac","õ":"otilde","Õ":"Otilde","ø":"oslash","Ø":"Oslash","ō":"omacr","Ō":"Omacr","œ":"oelig","Œ":"OElig","𝔭":"pfr","𝓅":"pscr","𝕡":"popf","ℙ":"Popf","𝔓":"Pfr","𝒫":"Pscr","𝕢":"qopf","𝔮":"qfr","𝓆":"qscr","𝒬":"Qscr","𝔔":"Qfr","ℚ":"Qopf","ĸ":"kgreen","𝔯":"rfr","𝕣":"ropf","𝓇":"rscr","ℛ":"Rscr","ℜ":"Re","ℝ":"Ropf","ŕ":"racute","Ŕ":"Racute","ř":"rcaron","Ř":"Rcaron","ŗ":"rcedil","Ŗ":"Rcedil","𝕤":"sopf","𝓈":"sscr","𝔰":"sfr","𝕊":"Sopf","𝔖":"Sfr","𝒮":"Sscr","Ⓢ":"oS","ś":"sacute","Ś":"Sacute","ŝ":"scirc","Ŝ":"Scirc","š":"scaron","Š":"Scaron","ş":"scedil","Ş":"Scedil","ß":"szlig","𝔱":"tfr","𝓉":"tscr","𝕥":"topf","𝒯":"Tscr","𝔗":"Tfr","𝕋":"Topf","ť":"tcaron","Ť":"Tcaron","ţ":"tcedil","Ţ":"Tcedil","™":"trade","ŧ":"tstrok","Ŧ":"Tstrok","𝓊":"uscr","𝕦":"uopf","𝔲":"ufr","𝕌":"Uopf","𝔘":"Ufr","𝒰":"Uscr","ú":"uacute","Ú":"Uacute","ù":"ugrave","Ù":"Ugrave","ŭ":"ubreve","Ŭ":"Ubreve","û":"ucirc","Û":"Ucirc","ů":"uring","Ů":"Uring","ü":"uuml","Ü":"Uuml","ű":"udblac","Ű":"Udblac","ũ":"utilde","Ũ":"Utilde","ų":"uogon","Ų":"Uogon","ū":"umacr","Ū":"Umacr","𝔳":"vfr","𝕧":"vopf","𝓋":"vscr","𝔙":"Vfr","𝕍":"Vopf","𝒱":"Vscr","𝕨":"wopf","𝓌":"wscr","𝔴":"wfr","𝒲":"Wscr","𝕎":"Wopf","𝔚":"Wfr","ŵ":"wcirc","Ŵ":"Wcirc","𝔵":"xfr","𝓍":"xscr","𝕩":"xopf","𝕏":"Xopf","𝔛":"Xfr","𝒳":"Xscr","𝔶":"yfr","𝓎":"yscr","𝕪":"yopf","𝒴":"Yscr","𝔜":"Yfr","𝕐":"Yopf","ý":"yacute","Ý":"Yacute","ŷ":"ycirc","Ŷ":"Ycirc","ÿ":"yuml","Ÿ":"Yuml","𝓏":"zscr","𝔷":"zfr","𝕫":"zopf","ℨ":"Zfr","ℤ":"Zopf","𝒵":"Zscr","ź":"zacute","Ź":"Zacute","ž":"zcaron","Ž":"Zcaron","ż":"zdot","Ż":"Zdot","Ƶ":"imped","þ":"thorn","Þ":"THORN","ʼn":"napos","α":"alpha","Α":"Alpha","β":"beta","Β":"Beta","γ":"gamma","Γ":"Gamma","δ":"delta","Δ":"Delta","ε":"epsi","ϵ":"epsiv","Ε":"Epsilon","ϝ":"gammad","Ϝ":"Gammad","ζ":"zeta","Ζ":"Zeta","η":"eta","Η":"Eta","θ":"theta","ϑ":"thetav","Θ":"Theta","ι":"iota","Ι":"Iota","κ":"kappa","ϰ":"kappav","Κ":"Kappa","λ":"lambda","Λ":"Lambda","μ":"mu","µ":"micro","Μ":"Mu","ν":"nu","Ν":"Nu","ξ":"xi","Ξ":"Xi","ο":"omicron","Ο":"Omicron","π":"pi","ϖ":"piv","Π":"Pi","ρ":"rho","ϱ":"rhov","Ρ":"Rho","σ":"sigma","Σ":"Sigma","ς":"sigmaf","τ":"tau","Τ":"Tau","υ":"upsi","Υ":"Upsilon","ϒ":"Upsi","φ":"phi","ϕ":"phiv","Φ":"Phi","χ":"chi","Χ":"Chi","ψ":"psi","Ψ":"Psi","ω":"omega","Ω":"ohm","а":"acy","А":"Acy","б":"bcy","Б":"Bcy","в":"vcy","В":"Vcy","г":"gcy","Г":"Gcy","ѓ":"gjcy","Ѓ":"GJcy","д":"dcy","Д":"Dcy","ђ":"djcy","Ђ":"DJcy","е":"iecy","Е":"IEcy","ё":"iocy","Ё":"IOcy","є":"jukcy","Є":"Jukcy","ж":"zhcy","Ж":"ZHcy","з":"zcy","З":"Zcy","ѕ":"dscy","Ѕ":"DScy","и":"icy","И":"Icy","і":"iukcy","І":"Iukcy","ї":"yicy","Ї":"YIcy","й":"jcy","Й":"Jcy","ј":"jsercy","Ј":"Jsercy","к":"kcy","К":"Kcy","ќ":"kjcy","Ќ":"KJcy","л":"lcy","Л":"Lcy","љ":"ljcy","Љ":"LJcy","м":"mcy","М":"Mcy","н":"ncy","Н":"Ncy","њ":"njcy","Њ":"NJcy","о":"ocy","О":"Ocy","п":"pcy","П":"Pcy","р":"rcy","Р":"Rcy","с":"scy","С":"Scy","т":"tcy","Т":"Tcy","ћ":"tshcy","Ћ":"TSHcy","у":"ucy","У":"Ucy","ў":"ubrcy","Ў":"Ubrcy","ф":"fcy","Ф":"Fcy","х":"khcy","Х":"KHcy","ц":"tscy","Ц":"TScy","ч":"chcy","Ч":"CHcy","џ":"dzcy","Џ":"DZcy","ш":"shcy","Ш":"SHcy","щ":"shchcy","Щ":"SHCHcy","ъ":"hardcy","Ъ":"HARDcy","ы":"ycy","Ы":"Ycy","ь":"softcy","Ь":"SOFTcy","э":"ecy","Э":"Ecy","ю":"yucy","Ю":"YUcy","я":"yacy","Я":"YAcy","ℵ":"aleph","ℶ":"beth","ℷ":"gimel","ℸ":"daleth"},p=/["&'<>`]/g,d={'"':""","&":"&","'":"'","<":"<",">":">","`":"`"},g=/&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/,A=/[\0-\x08\x0B\x0E-\x1F\x7F-\x9F\uFDD0-\uFDEF\uFFFE\uFFFF]|[\uD83F\uD87F\uD8BF\uD8FF\uD93F\uD97F\uD9BF\uD9FF\uDA3F\uDA7F\uDABF\uDAFF\uDB3F\uDB7F\uDBBF\uDBFF][\uDFFE\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/,b=/&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g,C={aacute:"á",Aacute:"Á",abreve:"ă",Abreve:"Ă",ac:"∾",acd:"∿",acE:"∾̳",acirc:"â",Acirc:"Â",acute:"´",acy:"а",Acy:"А",aelig:"æ",AElig:"Æ",af:"",afr:"𝔞",Afr:"𝔄",agrave:"à",Agrave:"À",alefsym:"ℵ",aleph:"ℵ",alpha:"α",Alpha:"Α",amacr:"ā",Amacr:"Ā",amalg:"⨿",amp:"&",AMP:"&",and:"∧",And:"⩓",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsd:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",aogon:"ą",Aogon:"Ą",aopf:"𝕒",Aopf:"𝔸",ap:"≈",apacir:"⩯",ape:"≊",apE:"⩰",apid:"≋",apos:"'",ApplyFunction:"",approx:"≈",approxeq:"≊",aring:"å",Aring:"Å",ascr:"𝒶",Ascr:"𝒜",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",bcy:"б",Bcy:"Б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",beta:"β",Beta:"Β",beth:"ℶ",between:"≬",bfr:"𝔟",Bfr:"𝔅",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bnot:"⌐",bNot:"⫭",bopf:"𝕓",Bopf:"𝔹",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxhD:"╥",boxHd:"╤",boxHD:"╦",boxhu:"┴",boxhU:"╨",boxHu:"╧",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpe:"≏",bumpE:"⪮",bumpeq:"≏",Bumpeq:"≎",cacute:"ć",Cacute:"Ć",cap:"∩",Cap:"⋒",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",ccaron:"č",Ccaron:"Č",ccedil:"ç",Ccedil:"Ç",ccirc:"ĉ",Ccirc:"Ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",cdot:"ċ",Cdot:"Ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",chcy:"ч",CHcy:"Ч",check:"✓",checkmark:"✓",chi:"χ",Chi:"Χ",cir:"○",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cire:"≗",cirE:"⧃",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",colone:"≔",Colone:"⩴",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",cscr:"𝒸",Cscr:"𝒞",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cup:"∪",Cup:"⋓",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",dArr:"⇓",Darr:"↡",dash:"‐",dashv:"⊣",Dashv:"⫤",dbkarow:"⤏",dblac:"˝",dcaron:"ď",Dcaron:"Ď",dcy:"д",Dcy:"Д",dd:"ⅆ",DD:"ⅅ",ddagger:"‡",ddarr:"⇊",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",delta:"δ",Delta:"Δ",demptyv:"⦱",dfisht:"⥿",dfr:"𝔡",Dfr:"𝔇",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",djcy:"ђ",DJcy:"Ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",dopf:"𝕕",Dopf:"𝔻",dot:"˙",Dot:"¨",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",downarrow:"↓",Downarrow:"⇓",DownArrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",DownTeeArrow:"↧",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",dscr:"𝒹",Dscr:"𝒟",dscy:"ѕ",DScy:"Ѕ",dsol:"⧶",dstrok:"đ",Dstrok:"Đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",dzcy:"џ",DZcy:"Џ",dzigrarr:"⟿",eacute:"é",Eacute:"É",easter:"⩮",ecaron:"ě",Ecaron:"Ě",ecir:"≖",ecirc:"ê",Ecirc:"Ê",ecolon:"≕",ecy:"э",Ecy:"Э",eDDot:"⩷",edot:"ė",eDot:"≑",Edot:"Ė",ee:"ⅇ",efDot:"≒",efr:"𝔢",Efr:"𝔈",eg:"⪚",egrave:"è",Egrave:"È",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",emacr:"ē",Emacr:"Ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp:" ",emsp13:" ",emsp14:" ",eng:"ŋ",ENG:"Ŋ",ensp:" ",eogon:"ę",Eogon:"Ę",eopf:"𝕖",Eopf:"𝔼",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",epsilon:"ε",Epsilon:"Ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",esim:"≂",Esim:"⩳",eta:"η",Eta:"Η",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",fcy:"ф",Fcy:"Ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",ffr:"𝔣",Ffr:"𝔉",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",fopf:"𝕗",Fopf:"𝔽",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",gamma:"γ",Gamma:"Γ",gammad:"ϝ",Gammad:"Ϝ",gap:"⪆",gbreve:"ğ",Gbreve:"Ğ",Gcedil:"Ģ",gcirc:"ĝ",Gcirc:"Ĝ",gcy:"г",Gcy:"Г",gdot:"ġ",Gdot:"Ġ",ge:"≥",gE:"≧",gel:"⋛",gEl:"⪌",geq:"≥",geqq:"≧",geqslant:"⩾",ges:"⩾",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",gfr:"𝔤",Gfr:"𝔊",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",gjcy:"ѓ",GJcy:"Ѓ",gl:"≷",gla:"⪥",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",gopf:"𝕘",Gopf:"𝔾",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",gscr:"ℊ",Gscr:"𝒢",gsim:"≳",gsime:"⪎",gsiml:"⪐",gt:">",Gt:"≫",GT:">",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",hardcy:"ъ",HARDcy:"Ъ",harr:"↔",hArr:"⇔",harrcir:"⥈",harrw:"↭",Hat:"^",hbar:"ℏ",hcirc:"ĥ",Hcirc:"Ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",hstrok:"ħ",Hstrok:"Ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",iacute:"í",Iacute:"Í",ic:"",icirc:"î",Icirc:"Î",icy:"и",Icy:"И",Idot:"İ",iecy:"е",IEcy:"Е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",igrave:"ì",Igrave:"Ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",ijlig:"ij",IJlig:"IJ",Im:"ℑ",imacr:"ī",Imacr:"Ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",imof:"⊷",imped:"Ƶ",Implies:"⇒",in:"∈",incare:"℅",infin:"∞",infintie:"⧝",inodot:"ı",int:"∫",Int:"∬",intcal:"⊺",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"",InvisibleTimes:"",iocy:"ё",IOcy:"Ё",iogon:"į",Iogon:"Į",iopf:"𝕚",Iopf:"𝕀",iota:"ι",Iota:"Ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"",itilde:"ĩ",Itilde:"Ĩ",iukcy:"і",Iukcy:"І",iuml:"ï",Iuml:"Ï",jcirc:"ĵ",Jcirc:"Ĵ",jcy:"й",Jcy:"Й",jfr:"𝔧",Jfr:"𝔍",jmath:"ȷ",jopf:"𝕛",Jopf:"𝕁",jscr:"𝒿",Jscr:"𝒥",jsercy:"ј",Jsercy:"Ј",jukcy:"є",Jukcy:"Є",kappa:"κ",Kappa:"Κ",kappav:"ϰ",kcedil:"ķ",Kcedil:"Ķ",kcy:"к",Kcy:"К",kfr:"𝔨",Kfr:"𝔎",kgreen:"ĸ",khcy:"х",KHcy:"Х",kjcy:"ќ",KJcy:"Ќ",kopf:"𝕜",Kopf:"𝕂",kscr:"𝓀",Kscr:"𝒦",lAarr:"⇚",lacute:"ĺ",Lacute:"Ĺ",laemptyv:"⦴",lagran:"ℒ",lambda:"λ",Lambda:"Λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larr:"←",lArr:"⇐",Larr:"↞",larrb:"⇤",larrbfs:"⤟",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",lat:"⪫",latail:"⤙",lAtail:"⤛",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",lcaron:"ľ",Lcaron:"Ľ",lcedil:"ļ",Lcedil:"Ļ",lceil:"⌈",lcub:"{",lcy:"л",Lcy:"Л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",leftarrow:"←",Leftarrow:"⇐",LeftArrow:"←",LeftArrowBar:"⇤",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",Leftrightarrow:"⇔",LeftRightArrow:"↔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTee:"⊣",LeftTeeArrow:"↤",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangle:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",LeftVectorBar:"⥒",leg:"⋚",lEg:"⪋",leq:"≤",leqq:"≦",leqslant:"⩽",les:"⩽",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",lfr:"𝔩",Lfr:"𝔏",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",ljcy:"љ",LJcy:"Љ",ll:"≪",Ll:"⋘",llarr:"⇇",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",lmidot:"ŀ",Lmidot:"Ŀ",lmoust:"⎰",lmoustache:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",Longleftarrow:"⟸",LongLeftArrow:"⟵",longleftrightarrow:"⟷",Longleftrightarrow:"⟺",LongLeftRightArrow:"⟷",longmapsto:"⟼",longrightarrow:"⟶",Longrightarrow:"⟹",LongRightArrow:"⟶",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",lopf:"𝕝",Lopf:"𝕃",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",lstrok:"ł",Lstrok:"Ł",lt:"<",Lt:"≪",LT:"<",ltcc:"⪦",ltcir:"⩹",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",map:"↦",Map:"⤅",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",mcy:"м",Mcy:"М",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",mfr:"𝔪",Mfr:"𝔐",mho:"℧",micro:"µ",mid:"∣",midast:"*",midcir:"⫰",middot:"·",minus:"−",minusb:"⊟",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",mopf:"𝕞",Mopf:"𝕄",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",mu:"μ",Mu:"Μ",multimap:"⊸",mumap:"⊸",nabla:"∇",nacute:"ń",Nacute:"Ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natur:"♮",natural:"♮",naturals:"ℕ",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",ncaron:"ň",Ncaron:"Ň",ncedil:"ņ",Ncedil:"Ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",ncy:"н",Ncy:"Н",ndash:"–",ne:"≠",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",nedot:"≐̸",NegativeMediumSpace:"",NegativeThickSpace:"",NegativeThinSpace:"",NegativeVeryThinSpace:"",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",nfr:"𝔫",Nfr:"𝔑",nge:"≱",ngE:"≧̸",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",ngt:"≯",nGt:"≫⃒",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",njcy:"њ",NJcy:"Њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nle:"≰",nlE:"≦̸",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nlt:"≮",nLt:"≪⃒",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",not:"¬",Not:"⫬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangle:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangle:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",npar:"∦",nparallel:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",npre:"⪯̸",nprec:"⊀",npreceq:"⪯̸",nrarr:"↛",nrArr:"⇏",nrarrc:"⤳̸",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",nscr:"𝓃",Nscr:"𝒩",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsube:"⊈",nsubE:"⫅̸",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupe:"⊉",nsupE:"⫆̸",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",ntilde:"ñ",Ntilde:"Ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",nu:"ν",Nu:"Ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",oacute:"ó",Oacute:"Ó",oast:"⊛",ocir:"⊚",ocirc:"ô",Ocirc:"Ô",ocy:"о",Ocy:"О",odash:"⊝",odblac:"ő",Odblac:"Ő",odiv:"⨸",odot:"⊙",odsold:"⦼",oelig:"œ",OElig:"Œ",ofcir:"⦿",ofr:"𝔬",Ofr:"𝔒",ogon:"˛",ograve:"ò",Ograve:"Ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",omacr:"ō",Omacr:"Ō",omega:"ω",Omega:"Ω",omicron:"ο",Omicron:"Ο",omid:"⦶",ominus:"⊖",oopf:"𝕠",Oopf:"𝕆",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",or:"∨",Or:"⩔",orarr:"↻",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",oscr:"ℴ",Oscr:"𝒪",oslash:"ø",Oslash:"Ø",osol:"⊘",otilde:"õ",Otilde:"Õ",otimes:"⊗",Otimes:"⨷",otimesas:"⨶",ouml:"ö",Ouml:"Ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",par:"∥",para:"¶",parallel:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",pcy:"п",Pcy:"П",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",pfr:"𝔭",Pfr:"𝔓",phi:"φ",Phi:"Φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",pi:"π",Pi:"Π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plus:"+",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",pr:"≺",Pr:"⪻",prap:"⪷",prcue:"≼",pre:"⪯",prE:"⪳",prec:"≺",precapprox:"⪷",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportion:"∷",Proportional:"∝",propto:"∝",prsim:"≾",prurel:"⊰",pscr:"𝓅",Pscr:"𝒫",psi:"ψ",Psi:"Ψ",puncsp:" ",qfr:"𝔮",Qfr:"𝔔",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",qscr:"𝓆",Qscr:"𝒬",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",racute:"ŕ",Racute:"Ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarr:"→",rArr:"⇒",Rarr:"↠",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",rarrtl:"↣",Rarrtl:"⤖",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",rcaron:"ř",Rcaron:"Ř",rcedil:"ŗ",Rcedil:"Ŗ",rceil:"⌉",rcub:"}",rcy:"р",Rcy:"Р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",Re:"ℜ",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",rho:"ρ",Rho:"Ρ",rhov:"ϱ",RightAngleBracket:"⟩",rightarrow:"→",Rightarrow:"⇒",RightArrow:"→",RightArrowBar:"⇥",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTee:"⊢",RightTeeArrow:"↦",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangle:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",RightVectorBar:"⥓",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",sacute:"ś",Sacute:"Ś",sbquo:"‚",sc:"≻",Sc:"⪼",scap:"⪸",scaron:"š",Scaron:"Š",sccue:"≽",sce:"⪰",scE:"⪴",scedil:"ş",Scedil:"Ş",scirc:"ŝ",Scirc:"Ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",scy:"с",Scy:"С",sdot:"⋅",sdotb:"⊡",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",sfr:"𝔰",Sfr:"𝔖",sfrown:"⌢",sharp:"♯",shchcy:"щ",SHCHcy:"Щ",shcy:"ш",SHcy:"Ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"",sigma:"σ",Sigma:"Σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",softcy:"ь",SOFTcy:"Ь",sol:"/",solb:"⧄",solbar:"⌿",sopf:"𝕤",Sopf:"𝕊",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",squ:"□",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squf:"▪",srarr:"→",sscr:"𝓈",Sscr:"𝒮",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",star:"☆",Star:"⋆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",sube:"⊆",subE:"⫅",subedot:"⫃",submult:"⫁",subne:"⊊",subnE:"⫋",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succ:"≻",succapprox:"⪸",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup:"⊃",Sup:"⋑",sup1:"¹",sup2:"²",sup3:"³",supdot:"⪾",supdsub:"⫘",supe:"⊇",supE:"⫆",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supne:"⊋",supnE:"⫌",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",tau:"τ",Tau:"Τ",tbrk:"⎴",tcaron:"ť",Tcaron:"Ť",tcedil:"ţ",Tcedil:"Ţ",tcy:"т",Tcy:"Т",tdot:"⃛",telrec:"⌕",tfr:"𝔱",Tfr:"𝔗",there4:"∴",therefore:"∴",Therefore:"∴",theta:"θ",Theta:"Θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:" ",thinsp:" ",ThinSpace:" ",thkap:"≈",thksim:"∼",thorn:"þ",THORN:"Þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",times:"×",timesb:"⊠",timesbar:"⨱",timesd:"⨰",tint:"∭",toea:"⤨",top:"⊤",topbot:"⌶",topcir:"⫱",topf:"𝕥",Topf:"𝕋",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",tscr:"𝓉",Tscr:"𝒯",tscy:"ц",TScy:"Ц",tshcy:"ћ",TSHcy:"Ћ",tstrok:"ŧ",Tstrok:"Ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",uacute:"ú",Uacute:"Ú",uarr:"↑",uArr:"⇑",Uarr:"↟",Uarrocir:"⥉",ubrcy:"ў",Ubrcy:"Ў",ubreve:"ŭ",Ubreve:"Ŭ",ucirc:"û",Ucirc:"Û",ucy:"у",Ucy:"У",udarr:"⇅",udblac:"ű",Udblac:"Ű",udhar:"⥮",ufisht:"⥾",ufr:"𝔲",Ufr:"𝔘",ugrave:"ù",Ugrave:"Ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",umacr:"ū",Umacr:"Ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",uogon:"ų",Uogon:"Ų",uopf:"𝕦",Uopf:"𝕌",uparrow:"↑",Uparrow:"⇑",UpArrow:"↑",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",updownarrow:"↕",Updownarrow:"⇕",UpDownArrow:"↕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",upsilon:"υ",Upsilon:"Υ",UpTee:"⊥",UpTeeArrow:"↥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",uring:"ů",Uring:"Ů",urtri:"◹",uscr:"𝓊",Uscr:"𝒰",utdot:"⋰",utilde:"ũ",Utilde:"Ũ",utri:"▵",utrif:"▴",uuarr:"⇈",uuml:"ü",Uuml:"Ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",vcy:"в",Vcy:"В",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",vee:"∨",Vee:"⋁",veebar:"⊻",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",vfr:"𝔳",Vfr:"𝔙",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",vopf:"𝕧",Vopf:"𝕍",vprop:"∝",vrtri:"⊳",vscr:"𝓋",Vscr:"𝒱",vsubne:"⊊︀",vsubnE:"⫋︀",vsupne:"⊋︀",vsupnE:"⫌︀",Vvdash:"⊪",vzigzag:"⦚",wcirc:"ŵ",Wcirc:"Ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",wfr:"𝔴",Wfr:"𝔚",wopf:"𝕨",Wopf:"𝕎",wp:"℘",wr:"≀",wreath:"≀",wscr:"𝓌",Wscr:"𝒲",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",xfr:"𝔵",Xfr:"𝔛",xharr:"⟷",xhArr:"⟺",xi:"ξ",Xi:"Ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",xopf:"𝕩",Xopf:"𝕏",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",xscr:"𝓍",Xscr:"𝒳",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",yacute:"ý",Yacute:"Ý",yacy:"я",YAcy:"Я",ycirc:"ŷ",Ycirc:"Ŷ",ycy:"ы",Ycy:"Ы",yen:"¥",yfr:"𝔶",Yfr:"𝔜",yicy:"ї",YIcy:"Ї",yopf:"𝕪",Yopf:"𝕐",yscr:"𝓎",Yscr:"𝒴",yucy:"ю",YUcy:"Ю",yuml:"ÿ",Yuml:"Ÿ",zacute:"ź",Zacute:"Ź",zcaron:"ž",Zcaron:"Ž",zcy:"з",Zcy:"З",zdot:"ż",Zdot:"Ż",zeetrf:"ℨ",ZeroWidthSpace:"",zeta:"ζ",Zeta:"Ζ",zfr:"𝔷",Zfr:"ℨ",zhcy:"ж",ZHcy:"Ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",zscr:"𝓏",Zscr:"𝒵",zwj:"",zwnj:""},h={aacute:"á",Aacute:"Á",acirc:"â",Acirc:"Â",acute:"´",aelig:"æ",AElig:"Æ",agrave:"à",Agrave:"À",amp:"&",AMP:"&",aring:"å",Aring:"Å",atilde:"ã",Atilde:"Ã",auml:"ä",Auml:"Ä",brvbar:"¦",ccedil:"ç",Ccedil:"Ç",cedil:"¸",cent:"¢",copy:"©",COPY:"©",curren:"¤",deg:"°",divide:"÷",eacute:"é",Eacute:"É",ecirc:"ê",Ecirc:"Ê",egrave:"è",Egrave:"È",eth:"ð",ETH:"Ð",euml:"ë",Euml:"Ë",frac12:"½",frac14:"¼",frac34:"¾",gt:">",GT:">",iacute:"í",Iacute:"Í",icirc:"î",Icirc:"Î",iexcl:"¡",igrave:"ì",Igrave:"Ì",iquest:"¿",iuml:"ï",Iuml:"Ï",laquo:"«",lt:"<",LT:"<",macr:"¯",micro:"µ",middot:"·",nbsp:" ",not:"¬",ntilde:"ñ",Ntilde:"Ñ",oacute:"ó",Oacute:"Ó",ocirc:"ô",Ocirc:"Ô",ograve:"ò",Ograve:"Ò",ordf:"ª",ordm:"º",oslash:"ø",Oslash:"Ø",otilde:"õ",Otilde:"Õ",ouml:"ö",Ouml:"Ö",para:"¶",plusmn:"±",pound:"£",quot:'"',QUOT:'"',raquo:"»",reg:"®",REG:"®",sect:"§",shy:"",sup1:"¹",sup2:"²",sup3:"³",szlig:"ß",thorn:"þ",THORN:"Þ",times:"×",uacute:"ú",Uacute:"Ú",ucirc:"û",Ucirc:"Û",ugrave:"ù",Ugrave:"Ù",uml:"¨",uuml:"ü",Uuml:"Ü",yacute:"ý",Yacute:"Ý",yen:"¥",yuml:"ÿ"},m={0:"�",128:"€",130:"‚",131:"ƒ",132:"„",133:"…",134:"†",135:"‡",136:"ˆ",137:"‰",138:"Š",139:"‹",140:"Œ",142:"Ž",145:"‘",146:"’",147:"“",148:"”",149:"•",150:"–",151:"—",152:"˜",153:"™",154:"š",155:"›",156:"œ",158:"ž",159:"Ÿ"},E=[1,2,3,4,5,6,7,8,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,64976,64977,64978,64979,64980,64981,64982,64983,64984,64985,64986,64987,64988,64989,64990,64991,64992,64993,64994,64995,64996,64997,64998,64999,65e3,65001,65002,65003,65004,65005,65006,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111],v=String.fromCharCode,_={}.hasOwnProperty,S=function(y,L){return _.call(y,L)},q=function(y,L){if(!y)return L;var H,k={};for(H in L)k[H]=S(y,H)?y[H]:L[H];return k},I=function(y,L){var k="";return y>=55296&&y<=57343||y>1114111?(L&&Y("character reference outside the permissible Unicode range"),"�"):S(m,y)?(L&&Y("disallowed character reference"),m[y]):(L&&function(y,L){for(var k=-1,H=y.length;++k<H;)if(y[k]==L)return!0;return!1}(E,y)&&Y("disallowed character reference"),y>65535&&(k+=v((y-=65536)>>>10&1023|55296),y=56320|1023&y),k+=v(y))},Q=function(y){return"&#x"+y.toString(16).toUpperCase()+";"},ie=function(y){return"&#"+y+";"},Y=function(y){throw Error("Parse error: "+y)},O=function(y,L){(L=q(L,O.options)).strict&&A.test(y)&&Y("forbidden code point");var H=L.encodeEverything,j=L.useNamedReferences,me=L.allowUnsafeSymbols,ce=L.decimal?ie:Q,se=function(le){return ce(le.charCodeAt(0))};return H?(y=y.replace(i,(function(le){return j&&S(c,le)?"&"+c[le]+";":se(le)})),j&&(y=y.replace(/>\u20D2/g,">⃒").replace(/<\u20D2/g,"<⃒").replace(/fj/g,"fj")),j&&(y=y.replace(u,(function(le){return"&"+c[le]+";"})))):j?(me||(y=y.replace(p,(function(le){return"&"+c[le]+";"}))),y=(y=y.replace(/>\u20D2/g,">⃒").replace(/<\u20D2/g,"<⃒")).replace(u,(function(le){return"&"+c[le]+";"}))):me||(y=y.replace(p,se)),y.replace(s,(function(le){var gt=le.charCodeAt(0),Ft=le.charCodeAt(1);return ce(1024*(gt-55296)+Ft-56320+65536)})).replace(l,se)};O.options={allowUnsafeSymbols:!1,encodeEverything:!1,strict:!1,useNamedReferences:!1,decimal:!1};var G=function(y,L){var k=(L=q(L,G.options)).strict;return k&&g.test(y)&&Y("malformed character reference"),y.replace(b,(function(H,j,me,ce,se,le,gt,Ft,ht){var Ge,Ct,te,Re,ke,Ce;return j?C[ke=j]:me?(ke=me,(Ce=ce)&&L.isAttributeValue?(k&&"="==Ce&&Y("`&` did not start a character reference"),H):(k&&Y("named character reference was not terminated by a semicolon"),h[ke]+(Ce||""))):se?(te=se,Ct=le,k&&!Ct&&Y("character reference was not terminated by a semicolon"),Ge=parseInt(te,10),I(Ge,k)):gt?(Re=gt,Ct=Ft,k&&!Ct&&Y("character reference was not terminated by a semicolon"),Ge=parseInt(Re,16),I(Ge,k)):(k&&Y("named character reference was not terminated by a semicolon"),H)}))};G.options={isAttributeValue:!1,strict:!1};var x={version:"1.2.0",encode:O,decode:G,escape:function(y){return y.replace(p,(function(L){return d[L]}))},unescape:G};if(r&&!r.nodeType)if(o)o.exports=x;else for(var T in x)S(x,T)&&(r[T]=x[T]);else n.he=x}(Nt)}(ps,ps.exports);var fb=ps.exports,ae={},Tp={Aacute:"Á",aacute:"á",Abreve:"Ă",abreve:"ă",ac:"∾",acd:"∿",acE:"∾̳",Acirc:"Â",acirc:"â",acute:"´",Acy:"А",acy:"а",AElig:"Æ",aelig:"æ",af:"",Afr:"𝔄",afr:"𝔞",Agrave:"À",agrave:"à",alefsym:"ℵ",aleph:"ℵ",Alpha:"Α",alpha:"α",Amacr:"Ā",amacr:"ā",amalg:"⨿",amp:"&",AMP:"&",andand:"⩕",And:"⩓",and:"∧",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",ange:"⦤",angle:"∠",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angmsd:"∡",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angst:"Å",angzarr:"⍼",Aogon:"Ą",aogon:"ą",Aopf:"𝔸",aopf:"𝕒",apacir:"⩯",ap:"≈",apE:"⩰",ape:"≊",apid:"≋",apos:"'",ApplyFunction:"",approx:"≈",approxeq:"≊",Aring:"Å",aring:"å",Ascr:"𝒜",ascr:"𝒶",Assign:"≔",ast:"*",asymp:"≈",asympeq:"≍",Atilde:"Ã",atilde:"ã",Auml:"Ä",auml:"ä",awconint:"∳",awint:"⨑",backcong:"≌",backepsilon:"϶",backprime:"‵",backsim:"∽",backsimeq:"⋍",Backslash:"∖",Barv:"⫧",barvee:"⊽",barwed:"⌅",Barwed:"⌆",barwedge:"⌅",bbrk:"⎵",bbrktbrk:"⎶",bcong:"≌",Bcy:"Б",bcy:"б",bdquo:"„",becaus:"∵",because:"∵",Because:"∵",bemptyv:"⦰",bepsi:"϶",bernou:"ℬ",Bernoullis:"ℬ",Beta:"Β",beta:"β",beth:"ℶ",between:"≬",Bfr:"𝔅",bfr:"𝔟",bigcap:"⋂",bigcirc:"◯",bigcup:"⋃",bigodot:"⨀",bigoplus:"⨁",bigotimes:"⨂",bigsqcup:"⨆",bigstar:"★",bigtriangledown:"▽",bigtriangleup:"△",biguplus:"⨄",bigvee:"⋁",bigwedge:"⋀",bkarow:"⤍",blacklozenge:"⧫",blacksquare:"▪",blacktriangle:"▴",blacktriangledown:"▾",blacktriangleleft:"◂",blacktriangleright:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bNot:"⫭",bnot:"⌐",Bopf:"𝔹",bopf:"𝕓",bot:"⊥",bottom:"⊥",bowtie:"⋈",boxbox:"⧉",boxdl:"┐",boxdL:"╕",boxDl:"╖",boxDL:"╗",boxdr:"┌",boxdR:"╒",boxDr:"╓",boxDR:"╔",boxh:"─",boxH:"═",boxhd:"┬",boxHd:"╤",boxhD:"╥",boxHD:"╦",boxhu:"┴",boxHu:"╧",boxhU:"╨",boxHU:"╩",boxminus:"⊟",boxplus:"⊞",boxtimes:"⊠",boxul:"┘",boxuL:"╛",boxUl:"╜",boxUL:"╝",boxur:"└",boxuR:"╘",boxUr:"╙",boxUR:"╚",boxv:"│",boxV:"║",boxvh:"┼",boxvH:"╪",boxVh:"╫",boxVH:"╬",boxvl:"┤",boxvL:"╡",boxVl:"╢",boxVL:"╣",boxvr:"├",boxvR:"╞",boxVr:"╟",boxVR:"╠",bprime:"‵",breve:"˘",Breve:"˘",brvbar:"¦",bscr:"𝒷",Bscr:"ℬ",bsemi:"⁏",bsim:"∽",bsime:"⋍",bsolb:"⧅",bsol:"\\",bsolhsub:"⟈",bull:"•",bullet:"•",bump:"≎",bumpE:"⪮",bumpe:"≏",Bumpeq:"≎",bumpeq:"≏",Cacute:"Ć",cacute:"ć",capand:"⩄",capbrcup:"⩉",capcap:"⩋",cap:"∩",Cap:"⋒",capcup:"⩇",capdot:"⩀",CapitalDifferentialD:"ⅅ",caps:"∩︀",caret:"⁁",caron:"ˇ",Cayleys:"ℭ",ccaps:"⩍",Ccaron:"Č",ccaron:"č",Ccedil:"Ç",ccedil:"ç",Ccirc:"Ĉ",ccirc:"ĉ",Cconint:"∰",ccups:"⩌",ccupssm:"⩐",Cdot:"Ċ",cdot:"ċ",cedil:"¸",Cedilla:"¸",cemptyv:"⦲",cent:"¢",centerdot:"·",CenterDot:"·",cfr:"𝔠",Cfr:"ℭ",CHcy:"Ч",chcy:"ч",check:"✓",checkmark:"✓",Chi:"Χ",chi:"χ",circ:"ˆ",circeq:"≗",circlearrowleft:"↺",circlearrowright:"↻",circledast:"⊛",circledcirc:"⊚",circleddash:"⊝",CircleDot:"⊙",circledR:"®",circledS:"Ⓢ",CircleMinus:"⊖",CirclePlus:"⊕",CircleTimes:"⊗",cir:"○",cirE:"⧃",cire:"≗",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",ClockwiseContourIntegral:"∲",CloseCurlyDoubleQuote:"”",CloseCurlyQuote:"’",clubs:"♣",clubsuit:"♣",colon:":",Colon:"∷",Colone:"⩴",colone:"≔",coloneq:"≔",comma:",",commat:"@",comp:"∁",compfn:"∘",complement:"∁",complexes:"ℂ",cong:"≅",congdot:"⩭",Congruent:"≡",conint:"∮",Conint:"∯",ContourIntegral:"∮",copf:"𝕔",Copf:"ℂ",coprod:"∐",Coproduct:"∐",copy:"©",COPY:"©",copysr:"℗",CounterClockwiseContourIntegral:"∳",crarr:"↵",cross:"✗",Cross:"⨯",Cscr:"𝒞",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",cuesc:"⋟",cularr:"↶",cularrp:"⤽",cupbrcap:"⩈",cupcap:"⩆",CupCap:"≍",cup:"∪",Cup:"⋓",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curarrm:"⤼",curlyeqprec:"⋞",curlyeqsucc:"⋟",curlyvee:"⋎",curlywedge:"⋏",curren:"¤",curvearrowleft:"↶",curvearrowright:"↷",cuvee:"⋎",cuwed:"⋏",cwconint:"∲",cwint:"∱",cylcty:"⌭",dagger:"†",Dagger:"‡",daleth:"ℸ",darr:"↓",Darr:"↡",dArr:"⇓",dash:"‐",Dashv:"⫤",dashv:"⊣",dbkarow:"⤏",dblac:"˝",Dcaron:"Ď",dcaron:"ď",Dcy:"Д",dcy:"д",ddagger:"‡",ddarr:"⇊",DD:"ⅅ",dd:"ⅆ",DDotrahd:"⤑",ddotseq:"⩷",deg:"°",Del:"∇",Delta:"Δ",delta:"δ",demptyv:"⦱",dfisht:"⥿",Dfr:"𝔇",dfr:"𝔡",dHar:"⥥",dharl:"⇃",dharr:"⇂",DiacriticalAcute:"´",DiacriticalDot:"˙",DiacriticalDoubleAcute:"˝",DiacriticalGrave:"`",DiacriticalTilde:"˜",diam:"⋄",diamond:"⋄",Diamond:"⋄",diamondsuit:"♦",diams:"♦",die:"¨",DifferentialD:"ⅆ",digamma:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",DJcy:"Ђ",djcy:"ђ",dlcorn:"⌞",dlcrop:"⌍",dollar:"$",Dopf:"𝔻",dopf:"𝕕",Dot:"¨",dot:"˙",DotDot:"⃜",doteq:"≐",doteqdot:"≑",DotEqual:"≐",dotminus:"∸",dotplus:"∔",dotsquare:"⊡",doublebarwedge:"⌆",DoubleContourIntegral:"∯",DoubleDot:"¨",DoubleDownArrow:"⇓",DoubleLeftArrow:"⇐",DoubleLeftRightArrow:"⇔",DoubleLeftTee:"⫤",DoubleLongLeftArrow:"⟸",DoubleLongLeftRightArrow:"⟺",DoubleLongRightArrow:"⟹",DoubleRightArrow:"⇒",DoubleRightTee:"⊨",DoubleUpArrow:"⇑",DoubleUpDownArrow:"⇕",DoubleVerticalBar:"∥",DownArrowBar:"⤓",downarrow:"↓",DownArrow:"↓",Downarrow:"⇓",DownArrowUpArrow:"⇵",DownBreve:"̑",downdownarrows:"⇊",downharpoonleft:"⇃",downharpoonright:"⇂",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVectorBar:"⥖",DownLeftVector:"↽",DownRightTeeVector:"⥟",DownRightVectorBar:"⥗",DownRightVector:"⇁",DownTeeArrow:"↧",DownTee:"⊤",drbkarow:"⤐",drcorn:"⌟",drcrop:"⌌",Dscr:"𝒟",dscr:"𝒹",DScy:"Ѕ",dscy:"ѕ",dsol:"⧶",Dstrok:"Đ",dstrok:"đ",dtdot:"⋱",dtri:"▿",dtrif:"▾",duarr:"⇵",duhar:"⥯",dwangle:"⦦",DZcy:"Џ",dzcy:"џ",dzigrarr:"⟿",Eacute:"É",eacute:"é",easter:"⩮",Ecaron:"Ě",ecaron:"ě",Ecirc:"Ê",ecirc:"ê",ecir:"≖",ecolon:"≕",Ecy:"Э",ecy:"э",eDDot:"⩷",Edot:"Ė",edot:"ė",eDot:"≑",ee:"ⅇ",efDot:"≒",Efr:"𝔈",efr:"𝔢",eg:"⪚",Egrave:"È",egrave:"è",egs:"⪖",egsdot:"⪘",el:"⪙",Element:"∈",elinters:"⏧",ell:"ℓ",els:"⪕",elsdot:"⪗",Emacr:"Ē",emacr:"ē",empty:"∅",emptyset:"∅",EmptySmallSquare:"◻",emptyv:"∅",EmptyVerySmallSquare:"▫",emsp13:" ",emsp14:" ",emsp:" ",ENG:"Ŋ",eng:"ŋ",ensp:" ",Eogon:"Ę",eogon:"ę",Eopf:"𝔼",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",Epsilon:"Ε",epsilon:"ε",epsiv:"ϵ",eqcirc:"≖",eqcolon:"≕",eqsim:"≂",eqslantgtr:"⪖",eqslantless:"⪕",Equal:"⩵",equals:"=",EqualTilde:"≂",equest:"≟",Equilibrium:"⇌",equiv:"≡",equivDD:"⩸",eqvparsl:"⧥",erarr:"⥱",erDot:"≓",escr:"ℯ",Escr:"ℰ",esdot:"≐",Esim:"⩳",esim:"≂",Eta:"Η",eta:"η",ETH:"Ð",eth:"ð",Euml:"Ë",euml:"ë",euro:"€",excl:"!",exist:"∃",Exists:"∃",expectation:"ℰ",exponentiale:"ⅇ",ExponentialE:"ⅇ",fallingdotseq:"≒",Fcy:"Ф",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",Ffr:"𝔉",ffr:"𝔣",filig:"fi",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",Fopf:"𝔽",fopf:"𝕗",forall:"∀",ForAll:"∀",fork:"⋔",forkv:"⫙",Fouriertrf:"ℱ",fpartint:"⨍",frac12:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",fscr:"𝒻",Fscr:"ℱ",gacute:"ǵ",Gamma:"Γ",gamma:"γ",Gammad:"Ϝ",gammad:"ϝ",gap:"⪆",Gbreve:"Ğ",gbreve:"ğ",Gcedil:"Ģ",Gcirc:"Ĝ",gcirc:"ĝ",Gcy:"Г",gcy:"г",Gdot:"Ġ",gdot:"ġ",ge:"≥",gE:"≧",gEl:"⪌",gel:"⋛",geq:"≥",geqq:"≧",geqslant:"⩾",gescc:"⪩",ges:"⩾",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",Gfr:"𝔊",gfr:"𝔤",gg:"≫",Gg:"⋙",ggg:"⋙",gimel:"ℷ",GJcy:"Ѓ",gjcy:"ѓ",gla:"⪥",gl:"≷",glE:"⪒",glj:"⪤",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gnE:"≩",gneq:"⪈",gneqq:"≩",gnsim:"⋧",Gopf:"𝔾",gopf:"𝕘",grave:"`",GreaterEqual:"≥",GreaterEqualLess:"⋛",GreaterFullEqual:"≧",GreaterGreater:"⪢",GreaterLess:"≷",GreaterSlantEqual:"⩾",GreaterTilde:"≳",Gscr:"𝒢",gscr:"ℊ",gsim:"≳",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gt:">",GT:">",Gt:"≫",gtdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrapprox:"⪆",gtrarr:"⥸",gtrdot:"⋗",gtreqless:"⋛",gtreqqless:"⪌",gtrless:"≷",gtrsim:"≳",gvertneqq:"≩︀",gvnE:"≩︀",Hacek:"ˇ",hairsp:" ",half:"½",hamilt:"ℋ",HARDcy:"Ъ",hardcy:"ъ",harrcir:"⥈",harr:"↔",hArr:"⇔",harrw:"↭",Hat:"^",hbar:"ℏ",Hcirc:"Ĥ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",hercon:"⊹",hfr:"𝔥",Hfr:"ℌ",HilbertSpace:"ℋ",hksearow:"⤥",hkswarow:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",hookrightarrow:"↪",hopf:"𝕙",Hopf:"ℍ",horbar:"―",HorizontalLine:"─",hscr:"𝒽",Hscr:"ℋ",hslash:"ℏ",Hstrok:"Ħ",hstrok:"ħ",HumpDownHump:"≎",HumpEqual:"≏",hybull:"⁃",hyphen:"‐",Iacute:"Í",iacute:"í",ic:"",Icirc:"Î",icirc:"î",Icy:"И",icy:"и",Idot:"İ",IEcy:"Е",iecy:"е",iexcl:"¡",iff:"⇔",ifr:"𝔦",Ifr:"ℑ",Igrave:"Ì",igrave:"ì",ii:"ⅈ",iiiint:"⨌",iiint:"∭",iinfin:"⧜",iiota:"℩",IJlig:"IJ",ijlig:"ij",Imacr:"Ī",imacr:"ī",image:"ℑ",ImaginaryI:"ⅈ",imagline:"ℐ",imagpart:"ℑ",imath:"ı",Im:"ℑ",imof:"⊷",imped:"Ƶ",Implies:"⇒",incare:"℅",in:"∈",infin:"∞",infintie:"⧝",inodot:"ı",intcal:"⊺",int:"∫",Int:"∬",integers:"ℤ",Integral:"∫",intercal:"⊺",Intersection:"⋂",intlarhk:"⨗",intprod:"⨼",InvisibleComma:"",InvisibleTimes:"",IOcy:"Ё",iocy:"ё",Iogon:"Į",iogon:"į",Iopf:"𝕀",iopf:"𝕚",Iota:"Ι",iota:"ι",iprod:"⨼",iquest:"¿",iscr:"𝒾",Iscr:"ℐ",isin:"∈",isindot:"⋵",isinE:"⋹",isins:"⋴",isinsv:"⋳",isinv:"∈",it:"",Itilde:"Ĩ",itilde:"ĩ",Iukcy:"І",iukcy:"і",Iuml:"Ï",iuml:"ï",Jcirc:"Ĵ",jcirc:"ĵ",Jcy:"Й",jcy:"й",Jfr:"𝔍",jfr:"𝔧",jmath:"ȷ",Jopf:"𝕁",jopf:"𝕛",Jscr:"𝒥",jscr:"𝒿",Jsercy:"Ј",jsercy:"ј",Jukcy:"Є",jukcy:"є",Kappa:"Κ",kappa:"κ",kappav:"ϰ",Kcedil:"Ķ",kcedil:"ķ",Kcy:"К",kcy:"к",Kfr:"𝔎",kfr:"𝔨",kgreen:"ĸ",KHcy:"Х",khcy:"х",KJcy:"Ќ",kjcy:"ќ",Kopf:"𝕂",kopf:"𝕜",Kscr:"𝒦",kscr:"𝓀",lAarr:"⇚",Lacute:"Ĺ",lacute:"ĺ",laemptyv:"⦴",lagran:"ℒ",Lambda:"Λ",lambda:"λ",lang:"⟨",Lang:"⟪",langd:"⦑",langle:"⟨",lap:"⪅",Laplacetrf:"ℒ",laquo:"«",larrb:"⇤",larrbfs:"⤟",larr:"←",Larr:"↞",lArr:"⇐",larrfs:"⤝",larrhk:"↩",larrlp:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",latail:"⤙",lAtail:"⤛",lat:"⪫",late:"⪭",lates:"⪭︀",lbarr:"⤌",lBarr:"⤎",lbbrk:"❲",lbrace:"{",lbrack:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",Lcaron:"Ľ",lcaron:"ľ",Lcedil:"Ļ",lcedil:"ļ",lceil:"⌈",lcub:"{",Lcy:"Л",lcy:"л",ldca:"⤶",ldquo:"“",ldquor:"„",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",lE:"≦",LeftAngleBracket:"⟨",LeftArrowBar:"⇤",leftarrow:"←",LeftArrow:"←",Leftarrow:"⇐",LeftArrowRightArrow:"⇆",leftarrowtail:"↢",LeftCeiling:"⌈",LeftDoubleBracket:"⟦",LeftDownTeeVector:"⥡",LeftDownVectorBar:"⥙",LeftDownVector:"⇃",LeftFloor:"⌊",leftharpoondown:"↽",leftharpoonup:"↼",leftleftarrows:"⇇",leftrightarrow:"↔",LeftRightArrow:"↔",Leftrightarrow:"⇔",leftrightarrows:"⇆",leftrightharpoons:"⇋",leftrightsquigarrow:"↭",LeftRightVector:"⥎",LeftTeeArrow:"↤",LeftTee:"⊣",LeftTeeVector:"⥚",leftthreetimes:"⋋",LeftTriangleBar:"⧏",LeftTriangle:"⊲",LeftTriangleEqual:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVectorBar:"⥘",LeftUpVector:"↿",LeftVectorBar:"⥒",LeftVector:"↼",lEg:"⪋",leg:"⋚",leq:"≤",leqq:"≦",leqslant:"⩽",lescc:"⪨",les:"⩽",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessapprox:"⪅",lessdot:"⋖",lesseqgtr:"⋚",lesseqqgtr:"⪋",LessEqualGreater:"⋚",LessFullEqual:"≦",LessGreater:"≶",lessgtr:"≶",LessLess:"⪡",lesssim:"≲",LessSlantEqual:"⩽",LessTilde:"≲",lfisht:"⥼",lfloor:"⌊",Lfr:"𝔏",lfr:"𝔩",lg:"≶",lgE:"⪑",lHar:"⥢",lhard:"↽",lharu:"↼",lharul:"⥪",lhblk:"▄",LJcy:"Љ",ljcy:"љ",llarr:"⇇",ll:"≪",Ll:"⋘",llcorner:"⌞",Lleftarrow:"⇚",llhard:"⥫",lltri:"◺",Lmidot:"Ŀ",lmidot:"ŀ",lmoustache:"⎰",lmoust:"⎰",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lnE:"≨",lneq:"⪇",lneqq:"≨",lnsim:"⋦",loang:"⟬",loarr:"⇽",lobrk:"⟦",longleftarrow:"⟵",LongLeftArrow:"⟵",Longleftarrow:"⟸",longleftrightarrow:"⟷",LongLeftRightArrow:"⟷",Longleftrightarrow:"⟺",longmapsto:"⟼",longrightarrow:"⟶",LongRightArrow:"⟶",Longrightarrow:"⟹",looparrowleft:"↫",looparrowright:"↬",lopar:"⦅",Lopf:"𝕃",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",lowbar:"_",LowerLeftArrow:"↙",LowerRightArrow:"↘",loz:"◊",lozenge:"◊",lozf:"⧫",lpar:"(",lparlt:"⦓",lrarr:"⇆",lrcorner:"⌟",lrhar:"⇋",lrhard:"⥭",lrm:"",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",Lscr:"ℒ",lsh:"↰",Lsh:"↰",lsim:"≲",lsime:"⪍",lsimg:"⪏",lsqb:"[",lsquo:"‘",lsquor:"‚",Lstrok:"Ł",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",lt:"<",LT:"<",Lt:"≪",ltdot:"⋖",lthree:"⋋",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltri:"◃",ltrie:"⊴",ltrif:"◂",ltrPar:"⦖",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",macr:"¯",male:"♂",malt:"✠",maltese:"✠",Map:"⤅",map:"↦",mapsto:"↦",mapstodown:"↧",mapstoleft:"↤",mapstoup:"↥",marker:"▮",mcomma:"⨩",Mcy:"М",mcy:"м",mdash:"—",mDDot:"∺",measuredangle:"∡",MediumSpace:" ",Mellintrf:"ℳ",Mfr:"𝔐",mfr:"𝔪",mho:"℧",micro:"µ",midast:"*",midcir:"⫰",mid:"∣",middot:"·",minusb:"⊟",minus:"−",minusd:"∸",minusdu:"⨪",MinusPlus:"∓",mlcp:"⫛",mldr:"…",mnplus:"∓",models:"⊧",Mopf:"𝕄",mopf:"𝕞",mp:"∓",mscr:"𝓂",Mscr:"ℳ",mstpos:"∾",Mu:"Μ",mu:"μ",multimap:"⊸",mumap:"⊸",nabla:"∇",Nacute:"Ń",nacute:"ń",nang:"∠⃒",nap:"≉",napE:"⩰̸",napid:"≋̸",napos:"ʼn",napprox:"≉",natural:"♮",naturals:"ℕ",natur:"♮",nbsp:" ",nbump:"≎̸",nbumpe:"≏̸",ncap:"⩃",Ncaron:"Ň",ncaron:"ň",Ncedil:"Ņ",ncedil:"ņ",ncong:"≇",ncongdot:"⩭̸",ncup:"⩂",Ncy:"Н",ncy:"н",ndash:"–",nearhk:"⤤",nearr:"↗",neArr:"⇗",nearrow:"↗",ne:"≠",nedot:"≐̸",NegativeMediumSpace:"",NegativeThickSpace:"",NegativeThinSpace:"",NegativeVeryThinSpace:"",nequiv:"≢",nesear:"⤨",nesim:"≂̸",NestedGreaterGreater:"≫",NestedLessLess:"≪",NewLine:"\n",nexist:"∄",nexists:"∄",Nfr:"𝔑",nfr:"𝔫",ngE:"≧̸",nge:"≱",ngeq:"≱",ngeqq:"≧̸",ngeqslant:"⩾̸",nges:"⩾̸",nGg:"⋙̸",ngsim:"≵",nGt:"≫⃒",ngt:"≯",ngtr:"≯",nGtv:"≫̸",nharr:"↮",nhArr:"⇎",nhpar:"⫲",ni:"∋",nis:"⋼",nisd:"⋺",niv:"∋",NJcy:"Њ",njcy:"њ",nlarr:"↚",nlArr:"⇍",nldr:"‥",nlE:"≦̸",nle:"≰",nleftarrow:"↚",nLeftarrow:"⇍",nleftrightarrow:"↮",nLeftrightarrow:"⇎",nleq:"≰",nleqq:"≦̸",nleqslant:"⩽̸",nles:"⩽̸",nless:"≮",nLl:"⋘̸",nlsim:"≴",nLt:"≪⃒",nlt:"≮",nltri:"⋪",nltrie:"⋬",nLtv:"≪̸",nmid:"∤",NoBreak:"",NonBreakingSpace:" ",nopf:"𝕟",Nopf:"ℕ",Not:"⫬",not:"¬",NotCongruent:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",NotElement:"∉",NotEqual:"≠",NotEqualTilde:"≂̸",NotExists:"∄",NotGreater:"≯",NotGreaterEqual:"≱",NotGreaterFullEqual:"≧̸",NotGreaterGreater:"≫̸",NotGreaterLess:"≹",NotGreaterSlantEqual:"⩾̸",NotGreaterTilde:"≵",NotHumpDownHump:"≎̸",NotHumpEqual:"≏̸",notin:"∉",notindot:"⋵̸",notinE:"⋹̸",notinva:"∉",notinvb:"⋷",notinvc:"⋶",NotLeftTriangleBar:"⧏̸",NotLeftTriangle:"⋪",NotLeftTriangleEqual:"⋬",NotLess:"≮",NotLessEqual:"≰",NotLessGreater:"≸",NotLessLess:"≪̸",NotLessSlantEqual:"⩽̸",NotLessTilde:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",notni:"∌",notniva:"∌",notnivb:"⋾",notnivc:"⋽",NotPrecedes:"⊀",NotPrecedesEqual:"⪯̸",NotPrecedesSlantEqual:"⋠",NotReverseElement:"∌",NotRightTriangleBar:"⧐̸",NotRightTriangle:"⋫",NotRightTriangleEqual:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",NotSubset:"⊂⃒",NotSubsetEqual:"⊈",NotSucceeds:"⊁",NotSucceedsEqual:"⪰̸",NotSucceedsSlantEqual:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",NotSupersetEqual:"⊉",NotTilde:"≁",NotTildeEqual:"≄",NotTildeFullEqual:"≇",NotTildeTilde:"≉",NotVerticalBar:"∤",nparallel:"∦",npar:"∦",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",npr:"⊀",nprcue:"⋠",nprec:"⊀",npreceq:"⪯̸",npre:"⪯̸",nrarrc:"⤳̸",nrarr:"↛",nrArr:"⇏",nrarrw:"↝̸",nrightarrow:"↛",nRightarrow:"⇏",nrtri:"⋫",nrtrie:"⋭",nsc:"⊁",nsccue:"⋡",nsce:"⪰̸",Nscr:"𝒩",nscr:"𝓃",nshortmid:"∤",nshortparallel:"∦",nsim:"≁",nsime:"≄",nsimeq:"≄",nsmid:"∤",nspar:"∦",nsqsube:"⋢",nsqsupe:"⋣",nsub:"⊄",nsubE:"⫅̸",nsube:"⊈",nsubset:"⊂⃒",nsubseteq:"⊈",nsubseteqq:"⫅̸",nsucc:"⊁",nsucceq:"⪰̸",nsup:"⊅",nsupE:"⫆̸",nsupe:"⊉",nsupset:"⊃⃒",nsupseteq:"⊉",nsupseteqq:"⫆̸",ntgl:"≹",Ntilde:"Ñ",ntilde:"ñ",ntlg:"≸",ntriangleleft:"⋪",ntrianglelefteq:"⋬",ntriangleright:"⋫",ntrianglerighteq:"⋭",Nu:"Ν",nu:"ν",num:"#",numero:"№",numsp:" ",nvap:"≍⃒",nvdash:"⊬",nvDash:"⊭",nVdash:"⊮",nVDash:"⊯",nvge:"≥⃒",nvgt:">⃒",nvHarr:"⤄",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwarhk:"⤣",nwarr:"↖",nwArr:"⇖",nwarrow:"↖",nwnear:"⤧",Oacute:"Ó",oacute:"ó",oast:"⊛",Ocirc:"Ô",ocirc:"ô",ocir:"⊚",Ocy:"О",ocy:"о",odash:"⊝",Odblac:"Ő",odblac:"ő",odiv:"⨸",odot:"⊙",odsold:"⦼",OElig:"Œ",oelig:"œ",ofcir:"⦿",Ofr:"𝔒",ofr:"𝔬",ogon:"˛",Ograve:"Ò",ograve:"ò",ogt:"⧁",ohbar:"⦵",ohm:"Ω",oint:"∮",olarr:"↺",olcir:"⦾",olcross:"⦻",oline:"‾",olt:"⧀",Omacr:"Ō",omacr:"ō",Omega:"Ω",omega:"ω",Omicron:"Ο",omicron:"ο",omid:"⦶",ominus:"⊖",Oopf:"𝕆",oopf:"𝕠",opar:"⦷",OpenCurlyDoubleQuote:"“",OpenCurlyQuote:"‘",operp:"⦹",oplus:"⊕",orarr:"↻",Or:"⩔",or:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oS:"Ⓢ",Oscr:"𝒪",oscr:"ℴ",Oslash:"Ø",oslash:"ø",osol:"⊘",Otilde:"Õ",otilde:"õ",otimesas:"⨶",Otimes:"⨷",otimes:"⊗",Ouml:"Ö",ouml:"ö",ovbar:"⌽",OverBar:"‾",OverBrace:"⏞",OverBracket:"⎴",OverParenthesis:"⏜",para:"¶",parallel:"∥",par:"∥",parsim:"⫳",parsl:"⫽",part:"∂",PartialD:"∂",Pcy:"П",pcy:"п",percnt:"%",period:".",permil:"‰",perp:"⊥",pertenk:"‱",Pfr:"𝔓",pfr:"𝔭",Phi:"Φ",phi:"φ",phiv:"ϕ",phmmat:"ℳ",phone:"☎",Pi:"Π",pi:"π",pitchfork:"⋔",piv:"ϖ",planck:"ℏ",planckh:"ℎ",plankv:"ℏ",plusacir:"⨣",plusb:"⊞",pluscir:"⨢",plus:"+",plusdo:"∔",plusdu:"⨥",pluse:"⩲",PlusMinus:"±",plusmn:"±",plussim:"⨦",plustwo:"⨧",pm:"±",Poincareplane:"ℌ",pointint:"⨕",popf:"𝕡",Popf:"ℙ",pound:"£",prap:"⪷",Pr:"⪻",pr:"≺",prcue:"≼",precapprox:"⪷",prec:"≺",preccurlyeq:"≼",Precedes:"≺",PrecedesEqual:"⪯",PrecedesSlantEqual:"≼",PrecedesTilde:"≾",preceq:"⪯",precnapprox:"⪹",precneqq:"⪵",precnsim:"⋨",pre:"⪯",prE:"⪳",precsim:"≾",prime:"′",Prime:"″",primes:"ℙ",prnap:"⪹",prnE:"⪵",prnsim:"⋨",prod:"∏",Product:"∏",profalar:"⌮",profline:"⌒",profsurf:"⌓",prop:"∝",Proportional:"∝",Proportion:"∷",propto:"∝",prsim:"≾",prurel:"⊰",Pscr:"𝒫",pscr:"𝓅",Psi:"Ψ",psi:"ψ",puncsp:" ",Qfr:"𝔔",qfr:"𝔮",qint:"⨌",qopf:"𝕢",Qopf:"ℚ",qprime:"⁗",Qscr:"𝒬",qscr:"𝓆",quaternions:"ℍ",quatint:"⨖",quest:"?",questeq:"≟",quot:'"',QUOT:'"',rAarr:"⇛",race:"∽̱",Racute:"Ŕ",racute:"ŕ",radic:"√",raemptyv:"⦳",rang:"⟩",Rang:"⟫",rangd:"⦒",range:"⦥",rangle:"⟩",raquo:"»",rarrap:"⥵",rarrb:"⇥",rarrbfs:"⤠",rarrc:"⤳",rarr:"→",Rarr:"↠",rArr:"⇒",rarrfs:"⤞",rarrhk:"↪",rarrlp:"↬",rarrpl:"⥅",rarrsim:"⥴",Rarrtl:"⤖",rarrtl:"↣",rarrw:"↝",ratail:"⤚",rAtail:"⤜",ratio:"∶",rationals:"ℚ",rbarr:"⤍",rBarr:"⤏",RBarr:"⤐",rbbrk:"❳",rbrace:"}",rbrack:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",Rcaron:"Ř",rcaron:"ř",Rcedil:"Ŗ",rcedil:"ŗ",rceil:"⌉",rcub:"}",Rcy:"Р",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdquo:"”",rdquor:"”",rdsh:"↳",real:"ℜ",realine:"ℛ",realpart:"ℜ",reals:"ℝ",Re:"ℜ",rect:"▭",reg:"®",REG:"®",ReverseElement:"∋",ReverseEquilibrium:"⇋",ReverseUpEquilibrium:"⥯",rfisht:"⥽",rfloor:"⌋",rfr:"𝔯",Rfr:"ℜ",rHar:"⥤",rhard:"⇁",rharu:"⇀",rharul:"⥬",Rho:"Ρ",rho:"ρ",rhov:"ϱ",RightAngleBracket:"⟩",RightArrowBar:"⇥",rightarrow:"→",RightArrow:"→",Rightarrow:"⇒",RightArrowLeftArrow:"⇄",rightarrowtail:"↣",RightCeiling:"⌉",RightDoubleBracket:"⟧",RightDownTeeVector:"⥝",RightDownVectorBar:"⥕",RightDownVector:"⇂",RightFloor:"⌋",rightharpoondown:"⇁",rightharpoonup:"⇀",rightleftarrows:"⇄",rightleftharpoons:"⇌",rightrightarrows:"⇉",rightsquigarrow:"↝",RightTeeArrow:"↦",RightTee:"⊢",RightTeeVector:"⥛",rightthreetimes:"⋌",RightTriangleBar:"⧐",RightTriangle:"⊳",RightTriangleEqual:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVectorBar:"⥔",RightUpVector:"↾",RightVectorBar:"⥓",RightVector:"⇀",ring:"˚",risingdotseq:"≓",rlarr:"⇄",rlhar:"⇌",rlm:"",rmoustache:"⎱",rmoust:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",robrk:"⟧",ropar:"⦆",ropf:"𝕣",Ropf:"ℝ",roplus:"⨮",rotimes:"⨵",RoundImplies:"⥰",rpar:")",rpargt:"⦔",rppolint:"⨒",rrarr:"⇉",Rrightarrow:"⇛",rsaquo:"›",rscr:"𝓇",Rscr:"ℛ",rsh:"↱",Rsh:"↱",rsqb:"]",rsquo:"’",rsquor:"’",rthree:"⋌",rtimes:"⋊",rtri:"▹",rtrie:"⊵",rtrif:"▸",rtriltri:"⧎",RuleDelayed:"⧴",ruluhar:"⥨",rx:"℞",Sacute:"Ś",sacute:"ś",sbquo:"‚",scap:"⪸",Scaron:"Š",scaron:"š",Sc:"⪼",sc:"≻",sccue:"≽",sce:"⪰",scE:"⪴",Scedil:"Ş",scedil:"ş",Scirc:"Ŝ",scirc:"ŝ",scnap:"⪺",scnE:"⪶",scnsim:"⋩",scpolint:"⨓",scsim:"≿",Scy:"С",scy:"с",sdotb:"⊡",sdot:"⋅",sdote:"⩦",searhk:"⤥",searr:"↘",seArr:"⇘",searrow:"↘",sect:"§",semi:";",seswar:"⤩",setminus:"∖",setmn:"∖",sext:"✶",Sfr:"𝔖",sfr:"𝔰",sfrown:"⌢",sharp:"♯",SHCHcy:"Щ",shchcy:"щ",SHcy:"Ш",shcy:"ш",ShortDownArrow:"↓",ShortLeftArrow:"←",shortmid:"∣",shortparallel:"∥",ShortRightArrow:"→",ShortUpArrow:"↑",shy:"",Sigma:"Σ",sigma:"σ",sigmaf:"ς",sigmav:"ς",sim:"∼",simdot:"⩪",sime:"≃",simeq:"≃",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",slarr:"←",SmallCircle:"∘",smallsetminus:"∖",smashp:"⨳",smeparsl:"⧤",smid:"∣",smile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",SOFTcy:"Ь",softcy:"ь",solbar:"⌿",solb:"⧄",sol:"/",Sopf:"𝕊",sopf:"𝕤",spades:"♠",spadesuit:"♠",spar:"∥",sqcap:"⊓",sqcaps:"⊓︀",sqcup:"⊔",sqcups:"⊔︀",Sqrt:"√",sqsub:"⊏",sqsube:"⊑",sqsubset:"⊏",sqsubseteq:"⊑",sqsup:"⊐",sqsupe:"⊒",sqsupset:"⊐",sqsupseteq:"⊒",square:"□",Square:"□",SquareIntersection:"⊓",SquareSubset:"⊏",SquareSubsetEqual:"⊑",SquareSuperset:"⊐",SquareSupersetEqual:"⊒",SquareUnion:"⊔",squarf:"▪",squ:"□",squf:"▪",srarr:"→",Sscr:"𝒮",sscr:"𝓈",ssetmn:"∖",ssmile:"⌣",sstarf:"⋆",Star:"⋆",star:"☆",starf:"★",straightepsilon:"ϵ",straightphi:"ϕ",strns:"¯",sub:"⊂",Sub:"⋐",subdot:"⪽",subE:"⫅",sube:"⊆",subedot:"⫃",submult:"⫁",subnE:"⫋",subne:"⊊",subplus:"⪿",subrarr:"⥹",subset:"⊂",Subset:"⋐",subseteq:"⊆",subseteqq:"⫅",SubsetEqual:"⊆",subsetneq:"⊊",subsetneqq:"⫋",subsim:"⫇",subsub:"⫕",subsup:"⫓",succapprox:"⪸",succ:"≻",succcurlyeq:"≽",Succeeds:"≻",SucceedsEqual:"⪰",SucceedsSlantEqual:"≽",SucceedsTilde:"≿",succeq:"⪰",succnapprox:"⪺",succneqq:"⪶",succnsim:"⋩",succsim:"≿",SuchThat:"∋",sum:"∑",Sum:"∑",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",sup:"⊃",Sup:"⋑",supdot:"⪾",supdsub:"⫘",supE:"⫆",supe:"⊇",supedot:"⫄",Superset:"⊃",SupersetEqual:"⊇",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supne:"⊋",supplus:"⫀",supset:"⊃",Supset:"⋑",supseteq:"⊇",supseteqq:"⫆",supsetneq:"⊋",supsetneqq:"⫌",supsim:"⫈",supsub:"⫔",supsup:"⫖",swarhk:"⤦",swarr:"↙",swArr:"⇙",swarrow:"↙",swnwar:"⤪",szlig:"ß",Tab:"\t",target:"⌖",Tau:"Τ",tau:"τ",tbrk:"⎴",Tcaron:"Ť",tcaron:"ť",Tcedil:"Ţ",tcedil:"ţ",Tcy:"Т",tcy:"т",tdot:"⃛",telrec:"⌕",Tfr:"𝔗",tfr:"𝔱",there4:"∴",therefore:"∴",Therefore:"∴",Theta:"Θ",theta:"θ",thetasym:"ϑ",thetav:"ϑ",thickapprox:"≈",thicksim:"∼",ThickSpace:" ",ThinSpace:" ",thinsp:" ",thkap:"≈",thksim:"∼",THORN:"Þ",thorn:"þ",tilde:"˜",Tilde:"∼",TildeEqual:"≃",TildeFullEqual:"≅",TildeTilde:"≈",timesbar:"⨱",timesb:"⊠",times:"×",timesd:"⨰",tint:"∭",toea:"⤨",topbot:"⌶",topcir:"⫱",top:"⊤",Topf:"𝕋",topf:"𝕥",topfork:"⫚",tosa:"⤩",tprime:"‴",trade:"™",TRADE:"™",triangle:"▵",triangledown:"▿",triangleleft:"◃",trianglelefteq:"⊴",triangleq:"≜",triangleright:"▹",trianglerighteq:"⊵",tridot:"◬",trie:"≜",triminus:"⨺",TripleDot:"⃛",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",Tscr:"𝒯",tscr:"𝓉",TScy:"Ц",tscy:"ц",TSHcy:"Ћ",tshcy:"ћ",Tstrok:"Ŧ",tstrok:"ŧ",twixt:"≬",twoheadleftarrow:"↞",twoheadrightarrow:"↠",Uacute:"Ú",uacute:"ú",uarr:"↑",Uarr:"↟",uArr:"⇑",Uarrocir:"⥉",Ubrcy:"Ў",ubrcy:"ў",Ubreve:"Ŭ",ubreve:"ŭ",Ucirc:"Û",ucirc:"û",Ucy:"У",ucy:"у",udarr:"⇅",Udblac:"Ű",udblac:"ű",udhar:"⥮",ufisht:"⥾",Ufr:"𝔘",ufr:"𝔲",Ugrave:"Ù",ugrave:"ù",uHar:"⥣",uharl:"↿",uharr:"↾",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",Umacr:"Ū",umacr:"ū",uml:"¨",UnderBar:"_",UnderBrace:"⏟",UnderBracket:"⎵",UnderParenthesis:"⏝",Union:"⋃",UnionPlus:"⊎",Uogon:"Ų",uogon:"ų",Uopf:"𝕌",uopf:"𝕦",UpArrowBar:"⤒",uparrow:"↑",UpArrow:"↑",Uparrow:"⇑",UpArrowDownArrow:"⇅",updownarrow:"↕",UpDownArrow:"↕",Updownarrow:"⇕",UpEquilibrium:"⥮",upharpoonleft:"↿",upharpoonright:"↾",uplus:"⊎",UpperLeftArrow:"↖",UpperRightArrow:"↗",upsi:"υ",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",upsilon:"υ",UpTeeArrow:"↥",UpTee:"⊥",upuparrows:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",Uring:"Ů",uring:"ů",urtri:"◹",Uscr:"𝒰",uscr:"𝓊",utdot:"⋰",Utilde:"Ũ",utilde:"ũ",utri:"▵",utrif:"▴",uuarr:"⇈",Uuml:"Ü",uuml:"ü",uwangle:"⦧",vangrt:"⦜",varepsilon:"ϵ",varkappa:"ϰ",varnothing:"∅",varphi:"ϕ",varpi:"ϖ",varpropto:"∝",varr:"↕",vArr:"⇕",varrho:"ϱ",varsigma:"ς",varsubsetneq:"⊊︀",varsubsetneqq:"⫋︀",varsupsetneq:"⊋︀",varsupsetneqq:"⫌︀",vartheta:"ϑ",vartriangleleft:"⊲",vartriangleright:"⊳",vBar:"⫨",Vbar:"⫫",vBarv:"⫩",Vcy:"В",vcy:"в",vdash:"⊢",vDash:"⊨",Vdash:"⊩",VDash:"⊫",Vdashl:"⫦",veebar:"⊻",vee:"∨",Vee:"⋁",veeeq:"≚",vellip:"⋮",verbar:"|",Verbar:"‖",vert:"|",Vert:"‖",VerticalBar:"∣",VerticalLine:"|",VerticalSeparator:"❘",VerticalTilde:"≀",VeryThinSpace:" ",Vfr:"𝔙",vfr:"𝔳",vltri:"⊲",vnsub:"⊂⃒",vnsup:"⊃⃒",Vopf:"𝕍",vopf:"𝕧",vprop:"∝",vrtri:"⊳",Vscr:"𝒱",vscr:"𝓋",vsubnE:"⫋︀",vsubne:"⊊︀",vsupnE:"⫌︀",vsupne:"⊋︀",Vvdash:"⊪",vzigzag:"⦚",Wcirc:"Ŵ",wcirc:"ŵ",wedbar:"⩟",wedge:"∧",Wedge:"⋀",wedgeq:"≙",weierp:"℘",Wfr:"𝔚",wfr:"𝔴",Wopf:"𝕎",wopf:"𝕨",wp:"℘",wr:"≀",wreath:"≀",Wscr:"𝒲",wscr:"𝓌",xcap:"⋂",xcirc:"◯",xcup:"⋃",xdtri:"▽",Xfr:"𝔛",xfr:"𝔵",xharr:"⟷",xhArr:"⟺",Xi:"Ξ",xi:"ξ",xlarr:"⟵",xlArr:"⟸",xmap:"⟼",xnis:"⋻",xodot:"⨀",Xopf:"𝕏",xopf:"𝕩",xoplus:"⨁",xotime:"⨂",xrarr:"⟶",xrArr:"⟹",Xscr:"𝒳",xscr:"𝓍",xsqcup:"⨆",xuplus:"⨄",xutri:"△",xvee:"⋁",xwedge:"⋀",Yacute:"Ý",yacute:"ý",YAcy:"Я",yacy:"я",Ycirc:"Ŷ",ycirc:"ŷ",Ycy:"Ы",ycy:"ы",yen:"¥",Yfr:"𝔜",yfr:"𝔶",YIcy:"Ї",yicy:"ї",Yopf:"𝕐",yopf:"𝕪",Yscr:"𝒴",yscr:"𝓎",YUcy:"Ю",yucy:"ю",yuml:"ÿ",Yuml:"Ÿ",Zacute:"Ź",zacute:"ź",Zcaron:"Ž",zcaron:"ž",Zcy:"З",zcy:"з",Zdot:"Ż",zdot:"ż",zeetrf:"ℨ",ZeroWidthSpace:"",Zeta:"Ζ",zeta:"ζ",zfr:"𝔷",Zfr:"ℨ",ZHcy:"Ж",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",Zopf:"ℤ",Zscr:"𝒵",zscr:"𝓏",zwj:"",zwnj:""},su=/[!-#%-\*,-\/:;\?@\[-\]_\{\}\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u09FD\u0A76\u0AF0\u0C84\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E4E\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD803[\uDF55-\uDF59]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC8\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDC4B-\uDC4F\uDC5B\uDC5D\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDE60-\uDE6C\uDF3C-\uDF3E]|\uD806[\uDC3B\uDE3F-\uDE46\uDE9A-\uDE9C\uDE9E-\uDEA2]|\uD807[\uDC41-\uDC45\uDC70\uDC71\uDEF7\uDEF8]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD81B[\uDE97-\uDE9A]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]|\uD83A[\uDD5E\uDD5F]/,xr={},Cp={};function fs(e,t,n){var r,o,a,s,i,l="";for("string"!=typeof t&&(n=t,t=fs.defaultChars),typeof n>"u"&&(n=!0),i=function(e){var t,n,r=Cp[e];if(r)return r;for(r=Cp[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),/^[0-9a-z]$/i.test(n)?r.push(n):r.push("%"+("0"+t.toString(16).toUpperCase()).slice(-2));for(t=0;t<e.length;t++)r[e.charCodeAt(t)]=e[t];return r}(t),r=0,o=e.length;r<o;r++)if(a=e.charCodeAt(r),n&&37===a&&r+2<o&&/^[0-9a-f]{2}$/i.test(e.slice(r+1,r+3)))l+=e.slice(r,r+3),r+=2;else if(a<128)l+=i[a];else if(a>=55296&&a<=57343){if(a>=55296&&a<=56319&&r+1<o&&((s=e.charCodeAt(r+1))>=56320&&s<=57343)){l+=encodeURIComponent(e[r]+e[r+1]),r++;continue}l+="%EF%BF%BD"}else l+=encodeURIComponent(e[r]);return l}fs.defaultChars=";/?:@&=+$,-_.!~*'()#",fs.componentChars="-_.!~*'()";var gb=fs,Np={};function ms(e,t){var n;return"string"!=typeof t&&(t=ms.defaultChars),n=function(e){var t,n,r=Np[e];if(r)return r;for(r=Np[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),r.push(n);for(t=0;t<e.length;t++)r[n=e.charCodeAt(t)]="%"+("0"+n.toString(16).toUpperCase()).slice(-2);return r}(t),e.replace(/(%[a-f0-9]{2})+/gi,(function(r){var o,a,s,i,l,u,c,p="";for(o=0,a=r.length;o<a;o+=3)(s=parseInt(r.slice(o+1,o+3),16))<128?p+=n[s]:192==(224&s)&&o+3<a&&128==(192&(i=parseInt(r.slice(o+4,o+6),16)))?(p+=(c=s<<6&1984|63&i)<128?"��":String.fromCharCode(c),o+=3):224==(240&s)&&o+6<a&&(i=parseInt(r.slice(o+4,o+6),16),l=parseInt(r.slice(o+7,o+9),16),128==(192&i)&&128==(192&l))?(p+=(c=s<<12&61440|i<<6&4032|63&l)<2048||c>=55296&&c<=57343?"���":String.fromCharCode(c),o+=6):240==(248&s)&&o+9<a&&(i=parseInt(r.slice(o+4,o+6),16),l=parseInt(r.slice(o+7,o+9),16),u=parseInt(r.slice(o+10,o+12),16),128==(192&i)&&128==(192&l)&&128==(192&u))?((c=s<<18&1835008|i<<12&258048|l<<6&4032|63&u)<65536||c>1114111?p+="����":(c-=65536,p+=String.fromCharCode(55296+(c>>10),56320+(1023&c))),o+=9):p+="�";return p}))}ms.defaultChars=";/?:@&=+$,#",ms.componentChars="";var Eb=ms;function gs(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var bb=/^([a-z0-9.+-]+:)/i,_b=/:[0-9]*$/,vb=/^(\/\/?(?!\/)[^\?\s]*)(\?[^\s]*)?$/,yb=["{","}","|","\\","^","`"].concat(["<",">",'"',"`"," ","\r","\n","\t"]),Tb=["'"].concat(yb),Sp=["%","/","?",";","#"].concat(Tb),wp=["/","?","#"],xp=/^[+a-z0-9A-Z_-]{0,63}$/,Nb=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,Rp={javascript:!0,"javascript:":!0},Lp={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,"http:":!0,"https:":!0,"ftp:":!0,"gopher:":!0,"file:":!0};gs.prototype.parse=function(e,t){var n,r,o,a,s,i=e;if(i=i.trim(),!t&&1===e.split("#").length){var l=vb.exec(i);if(l)return this.pathname=l[1],l[2]&&(this.search=l[2]),this}var u=bb.exec(i);if(u&&(o=(u=u[0]).toLowerCase(),this.protocol=u,i=i.substr(u.length)),(t||u||i.match(/^\/\/[^@\/]+@[^@\/]+/))&&((s="//"===i.substr(0,2))&&!(u&&Rp[u])&&(i=i.substr(2),this.slashes=!0)),!Rp[u]&&(s||u&&!Lp[u])){var p,d,c=-1;for(n=0;n<wp.length;n++)-1!==(a=i.indexOf(wp[n]))&&(-1===c||a<c)&&(c=a);for(-1!==(d=-1===c?i.lastIndexOf("@"):i.lastIndexOf("@",c))&&(p=i.slice(0,d),i=i.slice(d+1),this.auth=p),c=-1,n=0;n<Sp.length;n++)-1!==(a=i.indexOf(Sp[n]))&&(-1===c||a<c)&&(c=a);-1===c&&(c=i.length),":"===i[c-1]&&c--;var g=i.slice(0,c);i=i.slice(c),this.parseHost(g),this.hostname=this.hostname||"";var A="["===this.hostname[0]&&"]"===this.hostname[this.hostname.length-1];if(!A){var b=this.hostname.split(/\./);for(n=0,r=b.length;n<r;n++){var C=b[n];if(C&&!C.match(xp)){for(var h="",m=0,E=C.length;m<E;m++)C.charCodeAt(m)>127?h+="x":h+=C[m];if(!h.match(xp)){var v=b.slice(0,n),N=b.slice(n+1),_=C.match(Nb);_&&(v.push(_[1]),N.unshift(_[2])),N.length&&(i=N.join(".")+i),this.hostname=v.join(".");break}}}}this.hostname.length>255&&(this.hostname=""),A&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var S=i.indexOf("#");-1!==S&&(this.hash=i.substr(S),i=i.slice(0,S));var R=i.indexOf("?");return-1!==R&&(this.search=i.substr(R),i=i.slice(0,R)),i&&(this.pathname=i),Lp[o]&&this.hostname&&!this.pathname&&(this.pathname=""),this},gs.prototype.parseHost=function(e){var t=_b.exec(e);t&&(":"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)};var wb=function(e,t){if(e&&e instanceof gs)return e;var n=new gs;return n.parse(e,t),n};xr.encode=gb,xr.decode=Eb,xr.format=function(t){var n="";return n+=t.protocol||"",n+=t.slashes?"//":"",n+=t.auth?t.auth+"@":"",t.hostname&&-1!==t.hostname.indexOf(":")?n+="["+t.hostname+"]":n+=t.hostname||"",n+=t.port?":"+t.port:"",n+=t.pathname||"",n+=t.search||"",n+=t.hash||""},xr.parse=wb;var iu,Op,lu,Ip,uu,Fp,cu,Bp,Up,Gn={};function kp(){return Op||(Op=1,iu=/[\0-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/),iu}function Mp(){return Ip||(Ip=1,lu=/[\0-\x1F\x7F-\x9F]/),lu}function Pp(){return Bp||(Bp=1,cu=/[ \xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000]/),cu}function Rb(){return Up||(Up=1,Gn.Any=kp(),Gn.Cc=Mp(),Gn.Cf=(Fp||(Fp=1,uu=/[\xAD\u0600-\u0605\u061C\u06DD\u070F\u08E2\u180E\u200B-\u200F\u202A-\u202E\u2060-\u2064\u2066-\u206F\uFEFF\uFFF9-\uFFFB]|\uD804[\uDCBD\uDCCD]|\uD82F[\uDCA0-\uDCA3]|\uD834[\uDD73-\uDD7A]|\uDB40[\uDC01\uDC20-\uDC7F]/),uu),Gn.P=su,Gn.Z=Pp()),Gn}!function(e){var r=Object.prototype.hasOwnProperty;function o(O,G){return r.call(O,G)}function i(O){return!(O>=55296&&O<=57343||O>=64976&&O<=65007||65535==(65535&O)||65534==(65535&O)||O>=0&&O<=8||11===O||O>=14&&O<=31||O>=127&&O<=159||O>1114111)}function l(O){if(O>65535){var G=55296+((O-=65536)>>10),P=56320+(1023&O);return String.fromCharCode(G,P)}return String.fromCharCode(O)}var u=/\\([!"#$%&'()*+,\-.\/:;<=>?@[\\\]^_`{|}~])/g,p=new RegExp(u.source+"|"+/&([a-z#][a-z0-9]{1,31});/gi.source,"gi"),d=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i,g=Tp;var h=/[&<>"]/,m=/[&<>"]/g,E={"&":"&","<":"<",">":">",'"':"""};function v(O){return E[O]}var _=/[.?*+^$[\]\\(){}|-]/g;var I=su;e.lib={},e.lib.mdurl=xr,e.lib.ucmicro=Rb(),e.assign=function(O){return Array.prototype.slice.call(arguments,1).forEach((function(P){if(P){if("object"!=typeof P)throw new TypeError(P+"must be object");Object.keys(P).forEach((function(x){O[x]=P[x]}))}})),O},e.isString=function(O){return"[object String]"===function(O){return Object.prototype.toString.call(O)}(O)},e.has=o,e.unescapeMd=function(O){return O.indexOf("\\")<0?O:O.replace(u,"$1")},e.unescapeAll=function(O){return O.indexOf("\\")<0&&O.indexOf("&")<0?O:O.replace(p,(function(G,P,x){return P||function(O,G){var P;return o(g,G)?g[G]:35===G.charCodeAt(0)&&d.test(G)&&i(P="x"===G[1].toLowerCase()?parseInt(G.slice(2),16):parseInt(G.slice(1),10))?l(P):O}(G,x)}))},e.isValidEntityCode=i,e.fromCodePoint=l,e.escapeHtml=function(O){return h.test(O)?O.replace(m,v):O},e.arrayReplaceAt=function(O,G,P){return[].concat(O.slice(0,G),P,O.slice(G+1))},e.isSpace=function(O){switch(O){case 9:case 32:return!0}return!1},e.isWhiteSpace=function(O){if(O>=8192&&O<=8202)return!0;switch(O){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1},e.isMdAsciiPunct=function(O){switch(O){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}},e.isPunctChar=function(O){return I.test(O)},e.escapeRE=function(O){return O.replace(_,"\\$&")},e.normalizeReference=function(O){return O=O.trim().replace(/\s+/g," "),"Ṿ"==="ẞ".toLowerCase()&&(O=O.replace(/ẞ/g,"ß")),O.toLowerCase().toUpperCase()}}(ae);var hs={},qp=ae.unescapeAll,kb=ae.unescapeAll;hs.parseLinkLabel=function(t,n,r){var o,a,s,i,l=-1,u=t.posMax,c=t.pos;for(t.pos=n+1,o=1;t.pos<u;){if(93===(s=t.src.charCodeAt(t.pos))&&0===--o){a=!0;break}if(i=t.pos,t.md.inline.skipToken(t),91===s)if(i===t.pos-1)o++;else if(r)return t.pos=c,-1}return a&&(l=t.pos),t.pos=c,l},hs.parseLinkDestination=function(t,n,r){var o,a,s=n,i={ok:!1,pos:0,lines:0,str:""};if(60===t.charCodeAt(s)){for(s++;s<r;){if(10===(o=t.charCodeAt(s))||60===o)return i;if(62===o)return i.pos=s+1,i.str=qp(t.slice(n+1,s)),i.ok=!0,i;92===o&&s+1<r?s+=2:s++}return i}for(a=0;s<r&&!(32===(o=t.charCodeAt(s))||o<32||127===o);)if(92===o&&s+1<r){if(32===t.charCodeAt(s+1))break;s+=2}else{if(40===o&&++a>32)return i;if(41===o){if(0===a)break;a--}s++}return n===s||0!==a||(i.str=qp(t.slice(n,s)),i.pos=s,i.ok=!0),i},hs.parseLinkTitle=function(t,n,r){var o,a,s=0,i=n,l={ok:!1,pos:0,lines:0,str:""};if(i>=r||34!==(a=t.charCodeAt(i))&&39!==a&&40!==a)return l;for(i++,40===a&&(a=41);i<r;){if((o=t.charCodeAt(i))===a)return l.pos=i+1,l.lines=s,l.str=kb(t.slice(n+1,i)),l.ok=!0,l;if(40===o&&41===a)return l;10===o?s++:92===o&&i+1<r&&(i++,10===t.charCodeAt(i)&&s++),i++}return l};var Mb=ae.assign,Fb=ae.unescapeAll,$n=ae.escapeHtml,zt={};function Rr(){this.rules=Mb({},zt)}zt.code_inline=function(e,t,n,r,o){var a=e[t];return"<code"+o.renderAttrs(a)+">"+$n(a.content)+"</code>"},zt.code_block=function(e,t,n,r,o){var a=e[t];return"<pre"+o.renderAttrs(a)+"><code>"+$n(e[t].content)+"</code></pre>\n"},zt.fence=function(e,t,n,r,o){var u,c,p,d,g,a=e[t],s=a.info?Fb(a.info).trim():"",i="",l="";return s&&(i=(p=s.split(/(\s+)/g))[0],l=p.slice(2).join("")),0===(u=n.highlight&&n.highlight(a.content,i,l)||$n(a.content)).indexOf("<pre")?u+"\n":s?(c=a.attrIndex("class"),d=a.attrs?a.attrs.slice():[],c<0?d.push(["class",n.langPrefix+i]):(d[c]=d[c].slice(),d[c][1]+=" "+n.langPrefix+i),g={attrs:d},"<pre><code"+o.renderAttrs(g)+">"+u+"</code></pre>\n"):"<pre><code"+o.renderAttrs(a)+">"+u+"</code></pre>\n"},zt.image=function(e,t,n,r,o){var a=e[t];return a.attrs[a.attrIndex("alt")][1]=o.renderInlineAsText(a.children,n,r),o.renderToken(e,t,n)},zt.hardbreak=function(e,t,n){return n.xhtmlOut?"<br />\n":"<br>\n"},zt.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?"<br />\n":"<br>\n":"\n"},zt.text=function(e,t){return $n(e[t].content)},zt.html_block=function(e,t){return e[t].content},zt.html_inline=function(e,t){return e[t].content},Rr.prototype.renderAttrs=function(t){var n,r,o;if(!t.attrs)return"";for(o="",n=0,r=t.attrs.length;n<r;n++)o+=" "+$n(t.attrs[n][0])+'="'+$n(t.attrs[n][1])+'"';return o},Rr.prototype.renderToken=function(t,n,r){var o,a="",s=!1,i=t[n];return i.hidden?"":(i.block&&-1!==i.nesting&&n&&t[n-1].hidden&&(a+="\n"),a+=(-1===i.nesting?"</":"<")+i.tag,a+=this.renderAttrs(i),0===i.nesting&&r.xhtmlOut&&(a+=" /"),i.block&&(s=!0,1===i.nesting&&n+1<t.length&&(("inline"===(o=t[n+1]).type||o.hidden||-1===o.nesting&&o.tag===i.tag)&&(s=!1))),a+=s?">\n":">")},Rr.prototype.renderInline=function(e,t,n){for(var r,o="",a=this.rules,s=0,i=e.length;s<i;s++)typeof a[r=e[s].type]<"u"?o+=a[r](e,s,t,n,this):o+=this.renderToken(e,s,t);return o},Rr.prototype.renderInlineAsText=function(e,t,n){for(var r="",o=0,a=e.length;o<a;o++)"text"===e[o].type?r+=e[o].content:"image"===e[o].type?r+=this.renderInlineAsText(e[o].children,t,n):"softbreak"===e[o].type&&(r+="\n");return r},Rr.prototype.render=function(e,t,n){var r,o,a,s="",i=this.rules;for(r=0,o=e.length;r<o;r++)"inline"===(a=e[r].type)?s+=this.renderInline(e[r].children,t,n):typeof i[a]<"u"?s+=i[a](e,r,t,n,this):s+=this.renderToken(e,r,t,n);return s};var Bb=Rr;function It(){this.__rules__=[],this.__cache__=null}It.prototype.__find__=function(e){for(var t=0;t<this.__rules__.length;t++)if(this.__rules__[t].name===e)return t;return-1},It.prototype.__compile__=function(){var e=this,t=[""];e.__rules__.forEach((function(n){n.enabled&&n.alt.forEach((function(r){t.indexOf(r)<0&&t.push(r)}))})),e.__cache__={},t.forEach((function(n){e.__cache__[n]=[],e.__rules__.forEach((function(r){r.enabled&&(n&&r.alt.indexOf(n)<0||e.__cache__[n].push(r.fn))}))}))},It.prototype.at=function(e,t,n){var r=this.__find__(e),o=n||{};if(-1===r)throw new Error("Parser rule not found: "+e);this.__rules__[r].fn=t,this.__rules__[r].alt=o.alt||[],this.__cache__=null},It.prototype.before=function(e,t,n,r){var o=this.__find__(e),a=r||{};if(-1===o)throw new Error("Parser rule not found: "+e);this.__rules__.splice(o,0,{name:t,enabled:!0,fn:n,alt:a.alt||[]}),this.__cache__=null},It.prototype.after=function(e,t,n,r){var o=this.__find__(e),a=r||{};if(-1===o)throw new Error("Parser rule not found: "+e);this.__rules__.splice(o+1,0,{name:t,enabled:!0,fn:n,alt:a.alt||[]}),this.__cache__=null},It.prototype.push=function(e,t,n){var r=n||{};this.__rules__.push({name:e,enabled:!0,fn:t,alt:r.alt||[]}),this.__cache__=null},It.prototype.enable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach((function(r){var o=this.__find__(r);if(o<0){if(t)return;throw new Error("Rules manager: invalid rule name "+r)}this.__rules__[o].enabled=!0,n.push(r)}),this),this.__cache__=null,n},It.prototype.enableOnly=function(e,t){Array.isArray(e)||(e=[e]),this.__rules__.forEach((function(n){n.enabled=!1})),this.enable(e,t)},It.prototype.disable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach((function(r){var o=this.__find__(r);if(o<0){if(t)return;throw new Error("Rules manager: invalid rule name "+r)}this.__rules__[o].enabled=!1,n.push(r)}),this),this.__cache__=null,n},It.prototype.getRules=function(e){return null===this.__cache__&&this.__compile__(),this.__cache__[e]||[]};var du=It,Pb=/\r\n?|\n/g,Ub=/\0/g,zb=ae.arrayReplaceAt;function Gb(e){return/^<a[>\s]/i.test(e)}function $b(e){return/^<\/a\s*>/i.test(e)}var Hp=/\+-|\.\.|\?\?\?\?|!!!!|,,|--/,jb=/\((c|tm|r)\)/i,Wb=/\((c|tm|r)\)/gi,Yb={c:"©",r:"®",tm:"™"};function Kb(e,t){return Yb[t.toLowerCase()]}function Xb(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)"text"===(n=e[t]).type&&!r&&(n.content=n.content.replace(Wb,Kb)),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}function Qb(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)"text"===(n=e[t]).type&&!r&&Hp.test(n.content)&&(n.content=n.content.replace(/\+-/g,"±").replace(/\.{2,}/g,"…").replace(/([?!])…/g,"$1..").replace(/([?!]){4,}/g,"$1$1$1").replace(/,{2,}/g,",").replace(/(^|[^-])---(?=[^-]|$)/gm,"$1—").replace(/(^|\s)--(?=\s|$)/gm,"$1–").replace(/(^|[^-\s])--(?=[^-\s]|$)/gm,"$1–")),"link_open"===n.type&&"auto"===n.info&&r--,"link_close"===n.type&&"auto"===n.info&&r++}var Vp=ae.isWhiteSpace,zp=ae.isPunctChar,Gp=ae.isMdAsciiPunct,e_=/['"]/,$p=/['"]/g;function Es(e,t,n){return e.slice(0,t)+n+e.slice(t+1)}function t_(e,t){var n,r,o,a,s,i,l,u,c,p,d,g,A,b,C,h,m,E,v,N,_;for(v=[],n=0;n<e.length;n++){for(r=e[n],l=e[n].level,m=v.length-1;m>=0&&!(v[m].level<=l);m--);if(v.length=m+1,"text"===r.type){s=0,i=(o=r.content).length;e:for(;s<i&&($p.lastIndex=s,a=$p.exec(o),a);){if(C=h=!0,s=a.index+1,E="'"===a[0],c=32,a.index-1>=0)c=o.charCodeAt(a.index-1);else for(m=n-1;m>=0&&"softbreak"!==e[m].type&&"hardbreak"!==e[m].type;m--)if(e[m].content){c=e[m].content.charCodeAt(e[m].content.length-1);break}if(p=32,s<i)p=o.charCodeAt(s);else for(m=n+1;m<e.length&&"softbreak"!==e[m].type&&"hardbreak"!==e[m].type;m++)if(e[m].content){p=e[m].content.charCodeAt(0);break}if(d=Gp(c)||zp(String.fromCharCode(c)),g=Gp(p)||zp(String.fromCharCode(p)),A=Vp(c),(b=Vp(p))?C=!1:g&&(A||d||(C=!1)),A?h=!1:d&&(b||g||(h=!1)),34===p&&'"'===a[0]&&c>=48&&c<=57&&(h=C=!1),C&&h&&(C=d,h=g),C||h){if(h)for(m=v.length-1;m>=0&&(u=v[m],!(v[m].level<l));m--)if(u.single===E&&v[m].level===l){u=v[m],E?(N=t.md.options.quotes[2],_=t.md.options.quotes[3]):(N=t.md.options.quotes[0],_=t.md.options.quotes[1]),r.content=Es(r.content,a.index,_),e[u.token].content=Es(e[u.token].content,u.pos,N),s+=_.length-1,u.token===n&&(s+=N.length-1),i=(o=r.content).length,v.length=m;continue e}C?v.push({token:n,pos:a.index,single:E,level:l}):h&&E&&(r.content=Es(r.content,a.index,"’"))}else E&&(r.content=Es(r.content,a.index,"’"))}}}}function Lr(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content="",this.markup="",this.info="",this.meta=null,this.block=!1,this.hidden=!1}Lr.prototype.attrIndex=function(t){var n,r,o;if(!this.attrs)return-1;for(r=0,o=(n=this.attrs).length;r<o;r++)if(n[r][0]===t)return r;return-1},Lr.prototype.attrPush=function(t){this.attrs?this.attrs.push(t):this.attrs=[t]},Lr.prototype.attrSet=function(t,n){var r=this.attrIndex(t),o=[t,n];r<0?this.attrPush(o):this.attrs[r]=o},Lr.prototype.attrGet=function(t){var n=this.attrIndex(t),r=null;return n>=0&&(r=this.attrs[n][1]),r},Lr.prototype.attrJoin=function(t,n){var r=this.attrIndex(t);r<0?this.attrPush([t,n]):this.attrs[r][1]=this.attrs[r][1]+" "+n};var pu=Lr,o_=pu;function jp(e,t,n){this.src=e,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=t}jp.prototype.Token=o_;var a_=jp,s_=du,fu=[["normalize",function(t){var n;n=(n=t.src.replace(Pb,"\n")).replace(Ub,"�"),t.src=n}],["block",function(t){var n;t.inlineMode?((n=new t.Token("inline","",0)).content=t.src,n.map=[0,1],n.children=[],t.tokens.push(n)):t.md.block.parse(t.src,t.md,t.env,t.tokens)}],["inline",function(t){var r,o,a,n=t.tokens;for(o=0,a=n.length;o<a;o++)"inline"===(r=n[o]).type&&t.md.inline.parse(r.content,t.md,t.env,r.children)}],["linkify",function(t){var n,r,o,a,s,i,l,u,c,p,d,g,A,b,C,h,E,m=t.tokens;if(t.md.options.linkify)for(r=0,o=m.length;r<o;r++)if("inline"===m[r].type&&t.md.linkify.pretest(m[r].content))for(A=0,n=(a=m[r].children).length-1;n>=0;n--)if("link_close"!==(i=a[n]).type){if("html_inline"===i.type&&(Gb(i.content)&&A>0&&A--,$b(i.content)&&A++),!(A>0)&&"text"===i.type&&t.md.linkify.test(i.content)){for(c=i.content,E=t.md.linkify.match(c),l=[],g=i.level,d=0,E.length>0&&0===E[0].index&&n>0&&"text_special"===a[n-1].type&&(E=E.slice(1)),u=0;u<E.length;u++)b=E[u].url,C=t.md.normalizeLink(b),t.md.validateLink(C)&&(h=E[u].text,h=E[u].schema?"mailto:"!==E[u].schema||/^mailto:/i.test(h)?t.md.normalizeLinkText(h):t.md.normalizeLinkText("mailto:"+h).replace(/^mailto:/,""):t.md.normalizeLinkText("http://"+h).replace(/^http:\/\//,""),(p=E[u].index)>d&&((s=new t.Token("text","",0)).content=c.slice(d,p),s.level=g,l.push(s)),(s=new t.Token("link_open","a",1)).attrs=[["href",C]],s.level=g++,s.markup="linkify",s.info="auto",l.push(s),(s=new t.Token("text","",0)).content=h,s.level=g,l.push(s),(s=new t.Token("link_close","a",-1)).level=--g,s.markup="linkify",s.info="auto",l.push(s),d=E[u].lastIndex);d<c.length&&((s=new t.Token("text","",0)).content=c.slice(d),s.level=g,l.push(s)),m[r].children=a=zb(a,n,l)}}else for(n--;a[n].level!==i.level&&"link_open"!==a[n].type;)n--}],["replacements",function(t){var n;if(t.md.options.typographer)for(n=t.tokens.length-1;n>=0;n--)"inline"===t.tokens[n].type&&(jb.test(t.tokens[n].content)&&Xb(t.tokens[n].children),Hp.test(t.tokens[n].content)&&Qb(t.tokens[n].children))}],["smartquotes",function(t){var n;if(t.md.options.typographer)for(n=t.tokens.length-1;n>=0;n--)"inline"!==t.tokens[n].type||!e_.test(t.tokens[n].content)||t_(t.tokens[n].children,t)}],["text_join",function(t){var n,r,o,a,s,i,l=t.tokens;for(n=0,r=l.length;n<r;n++)if("inline"===l[n].type){for(s=(o=l[n].children).length,a=0;a<s;a++)"text_special"===o[a].type&&(o[a].type="text");for(a=i=0;a<s;a++)"text"===o[a].type&&a+1<s&&"text"===o[a+1].type?o[a+1].content=o[a].content+o[a+1].content:(a!==i&&(o[i]=o[a]),i++);a!==i&&(o.length=i)}}]];function mu(){this.ruler=new s_;for(var e=0;e<fu.length;e++)this.ruler.push(fu[e][0],fu[e][1])}mu.prototype.process=function(e){var t,n,r;for(t=0,n=(r=this.ruler.getRules("")).length;t<n;t++)r[t](e)},mu.prototype.State=a_;var i_=mu,gu=ae.isSpace;function hu(e,t){var n=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.slice(n,r)}function Wp(e){var o,t=[],n=0,r=e.length,a=!1,s=0,i="";for(o=e.charCodeAt(n);n<r;)124===o&&(a?(i+=e.substring(s,n-1),s=n):(t.push(i+e.substring(s,n)),i="",s=n+1)),a=92===o,n++,o=e.charCodeAt(n);return t.push(i+e.substring(s)),t}var d_=ae.isSpace,f_=ae.isSpace,Yp=ae.isSpace;function Kp(e,t){var n,r,o,a;return r=e.bMarks[t]+e.tShift[t],o=e.eMarks[t],42!==(n=e.src.charCodeAt(r++))&&45!==n&&43!==n||r<o&&(a=e.src.charCodeAt(r),!Yp(a))?-1:r}function Xp(e,t){var n,r=e.bMarks[t]+e.tShift[t],o=r,a=e.eMarks[t];if(o+1>=a||((n=e.src.charCodeAt(o++))<48||n>57))return-1;for(;;){if(o>=a)return-1;if(!((n=e.src.charCodeAt(o++))>=48&&n<=57)){if(41===n||46===n)break;return-1}if(o-r>=10)return-1}return o<a&&(n=e.src.charCodeAt(o),!Yp(n))?-1:o}var E_=ae.normalizeReference,As=ae.isSpace,bs={},Qp="<[A-Za-z][A-Za-z0-9\\-]*(?:\\s+[a-zA-Z_:][a-zA-Z0-9:._-]*(?:\\s*=\\s*(?:[^\"'=<>`\\x00-\\x20]+|'[^']*'|\"[^\"]*\"))?)*\\s*\\/?>",Jp="<\\/[A-Za-z][A-Za-z0-9\\-]*\\s*>",R_=new RegExp("^(?:"+Qp+"|"+Jp+"|\x3c!----\x3e|\x3c!--(?:-?[^>-])(?:-?[^-])*--\x3e|<[?][\\s\\S]*?[?]>|<![A-Z]+\\s+[^>]*>|<!\\[CDATA\\[[\\s\\S]*?\\]\\]>)"),L_=new RegExp("^(?:"+Qp+"|"+Jp+")");bs.HTML_TAG_RE=R_,bs.HTML_OPEN_CLOSE_TAG_RE=L_;var O_=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","section","source","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],k_=bs.HTML_OPEN_CLOSE_TAG_RE,Or=[[/^<(script|pre|style|textarea)(?=(\s|>|$))/i,/<\/(script|pre|style|textarea)>/i,!0],[/^<!--/,/-->/,!0],[/^<\?/,/\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\[CDATA\[/,/\]\]>/,!0],[new RegExp("^</?("+O_.join("|")+")(?=(\\s|/?>|$))","i"),/^$/,!0],[new RegExp(k_.source+"\\s*$"),/^$/,!1]],ef=ae.isSpace,tf=pu,_s=ae.isSpace;function Gt(e,t,n,r){var o,a,s,i,l,u,c,p;for(this.src=e,this.md=t,this.env=n,this.tokens=r,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType="root",this.level=0,this.result="",p=!1,s=i=u=c=0,l=(a=this.src).length;i<l;i++){if(o=a.charCodeAt(i),!p){if(_s(o)){u++,9===o?c+=4-c%4:c++;continue}p=!0}(10===o||i===l-1)&&(10!==o&&i++,this.bMarks.push(s),this.eMarks.push(i),this.tShift.push(u),this.sCount.push(c),this.bsCount.push(0),p=!1,u=0,c=0,s=i+1)}this.bMarks.push(a.length),this.eMarks.push(a.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}Gt.prototype.push=function(e,t,n){var r=new tf(e,t,n);return r.block=!0,n<0&&this.level--,r.level=this.level,n>0&&this.level++,this.tokens.push(r),r},Gt.prototype.isEmpty=function(t){return this.bMarks[t]+this.tShift[t]>=this.eMarks[t]},Gt.prototype.skipEmptyLines=function(t){for(var n=this.lineMax;t<n&&!(this.bMarks[t]+this.tShift[t]<this.eMarks[t]);t++);return t},Gt.prototype.skipSpaces=function(t){for(var n,r=this.src.length;t<r&&(n=this.src.charCodeAt(t),_s(n));t++);return t},Gt.prototype.skipSpacesBack=function(t,n){if(t<=n)return t;for(;t>n;)if(!_s(this.src.charCodeAt(--t)))return t+1;return t},Gt.prototype.skipChars=function(t,n){for(var r=this.src.length;t<r&&this.src.charCodeAt(t)===n;t++);return t},Gt.prototype.skipCharsBack=function(t,n,r){if(t<=r)return t;for(;t>r;)if(n!==this.src.charCodeAt(--t))return t+1;return t},Gt.prototype.getLines=function(t,n,r,o){var a,s,i,l,u,c,p,d=t;if(t>=n)return"";for(c=new Array(n-t),a=0;d<n;d++,a++){for(s=0,p=l=this.bMarks[d],u=d+1<n||o?this.eMarks[d]+1:this.eMarks[d];l<u&&s<r;){if(i=this.src.charCodeAt(l),_s(i))9===i?s+=4-(s+this.bsCount[d])%4:s++;else{if(!(l-p<this.tShift[d]))break;s++}l++}c[a]=s>r?new Array(s-r+1).join(" ")+this.src.slice(l,u):this.src.slice(l,u)}return c.join("")},Gt.prototype.Token=tf;var P_=Gt,U_=du,vs=[["table",function(t,n,r,o){var a,s,i,l,u,c,p,d,g,A,b,C,h,m,E,v,N,_;if(n+2>r||(c=n+1,t.sCount[c]<t.blkIndent)||t.sCount[c]-t.blkIndent>=4||(i=t.bMarks[c]+t.tShift[c])>=t.eMarks[c]||124!==(N=t.src.charCodeAt(i++))&&45!==N&&58!==N||i>=t.eMarks[c]||124!==(_=t.src.charCodeAt(i++))&&45!==_&&58!==_&&!gu(_)||45===N&&gu(_))return!1;for(;i<t.eMarks[c];){if(124!==(a=t.src.charCodeAt(i))&&45!==a&&58!==a&&!gu(a))return!1;i++}for(p=(s=hu(t,n+1)).split("|"),A=[],l=0;l<p.length;l++){if(!(b=p[l].trim())){if(0===l||l===p.length-1)continue;return!1}if(!/^:?-+:?$/.test(b))return!1;58===b.charCodeAt(b.length-1)?A.push(58===b.charCodeAt(0)?"center":"right"):58===b.charCodeAt(0)?A.push("left"):A.push("")}if(-1===(s=hu(t,n).trim()).indexOf("|")||t.sCount[n]-t.blkIndent>=4||((p=Wp(s)).length&&""===p[0]&&p.shift(),p.length&&""===p[p.length-1]&&p.pop(),0===(d=p.length)||d!==A.length))return!1;if(o)return!0;for(m=t.parentType,t.parentType="table",v=t.md.block.ruler.getRules("blockquote"),(g=t.push("table_open","table",1)).map=C=[n,0],(g=t.push("thead_open","thead",1)).map=[n,n+1],(g=t.push("tr_open","tr",1)).map=[n,n+1],l=0;l<p.length;l++)g=t.push("th_open","th",1),A[l]&&(g.attrs=[["style","text-align:"+A[l]]]),(g=t.push("inline","",0)).content=p[l].trim(),g.children=[],g=t.push("th_close","th",-1);for(g=t.push("tr_close","tr",-1),g=t.push("thead_close","thead",-1),c=n+2;c<r&&!(t.sCount[c]<t.blkIndent);c++){for(E=!1,l=0,u=v.length;l<u;l++)if(v[l](t,c,r,!0)){E=!0;break}if(E||!(s=hu(t,c).trim())||t.sCount[c]-t.blkIndent>=4)break;for((p=Wp(s)).length&&""===p[0]&&p.shift(),p.length&&""===p[p.length-1]&&p.pop(),c===n+2&&((g=t.push("tbody_open","tbody",1)).map=h=[n+2,0]),(g=t.push("tr_open","tr",1)).map=[c,c+1],l=0;l<d;l++)g=t.push("td_open","td",1),A[l]&&(g.attrs=[["style","text-align:"+A[l]]]),(g=t.push("inline","",0)).content=p[l]?p[l].trim():"",g.children=[],g=t.push("td_close","td",-1);g=t.push("tr_close","tr",-1)}return h&&(g=t.push("tbody_close","tbody",-1),h[1]=c),g=t.push("table_close","table",-1),C[1]=c,t.parentType=m,t.line=c,!0},["paragraph","reference"]],["code",function(t,n,r){var o,a,s;if(t.sCount[n]-t.blkIndent<4)return!1;for(a=o=n+1;o<r;)if(t.isEmpty(o))o++;else{if(!(t.sCount[o]-t.blkIndent>=4))break;a=++o}return t.line=a,(s=t.push("code_block","code",0)).content=t.getLines(n,a,4+t.blkIndent,!1)+"\n",s.map=[n,t.line],!0}],["fence",function(t,n,r,o){var a,s,i,l,u,c,p,d=!1,g=t.bMarks[n]+t.tShift[n],A=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||g+3>A||126!==(a=t.src.charCodeAt(g))&&96!==a||(u=g,(s=(g=t.skipChars(g,a))-u)<3)||(p=t.src.slice(u,g),i=t.src.slice(g,A),96===a&&i.indexOf(String.fromCharCode(a))>=0))return!1;if(o)return!0;for(l=n;!(++l>=r||(g=u=t.bMarks[l]+t.tShift[l],A=t.eMarks[l],g<A&&t.sCount[l]<t.blkIndent));)if(!(t.src.charCodeAt(g)!==a||t.sCount[l]-t.blkIndent>=4||(g=t.skipChars(g,a),g-u<s||(g=t.skipSpaces(g),g<A)))){d=!0;break}return s=t.sCount[n],t.line=l+(d?1:0),(c=t.push("fence","code",0)).info=i,c.content=t.getLines(n+1,l,s,!0),c.markup=p,c.map=[n,t.line],!0},["paragraph","reference","blockquote","list"]],["blockquote",function(t,n,r,o){var a,s,i,l,u,c,p,d,g,A,b,C,h,m,E,v,N,_,S,R,q=t.lineMax,I=t.bMarks[n]+t.tShift[n],Q=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||62!==t.src.charCodeAt(I))return!1;if(o)return!0;for(A=[],b=[],m=[],E=[],_=t.md.block.ruler.getRules("blockquote"),h=t.parentType,t.parentType="blockquote",d=n;d<r&&(R=t.sCount[d]<t.blkIndent,!((I=t.bMarks[d]+t.tShift[d])>=(Q=t.eMarks[d])));d++)if(62!==t.src.charCodeAt(I++)||R){if(c)break;for(N=!1,i=0,u=_.length;i<u;i++)if(_[i](t,d,r,!0)){N=!0;break}if(N){t.lineMax=d,0!==t.blkIndent&&(A.push(t.bMarks[d]),b.push(t.bsCount[d]),E.push(t.tShift[d]),m.push(t.sCount[d]),t.sCount[d]-=t.blkIndent);break}A.push(t.bMarks[d]),b.push(t.bsCount[d]),E.push(t.tShift[d]),m.push(t.sCount[d]),t.sCount[d]=-1}else{for(l=t.sCount[d]+1,32===t.src.charCodeAt(I)?(I++,l++,a=!1,v=!0):9===t.src.charCodeAt(I)?(v=!0,(t.bsCount[d]+l)%4==3?(I++,l++,a=!1):a=!0):v=!1,g=l,A.push(t.bMarks[d]),t.bMarks[d]=I;I<Q&&(s=t.src.charCodeAt(I),d_(s));)9===s?g+=4-(g+t.bsCount[d]+(a?1:0))%4:g++,I++;c=I>=Q,b.push(t.bsCount[d]),t.bsCount[d]=t.sCount[d]+1+(v?1:0),m.push(t.sCount[d]),t.sCount[d]=g-l,E.push(t.tShift[d]),t.tShift[d]=I-t.bMarks[d]}for(C=t.blkIndent,t.blkIndent=0,(S=t.push("blockquote_open","blockquote",1)).markup=">",S.map=p=[n,0],t.md.block.tokenize(t,n,d),(S=t.push("blockquote_close","blockquote",-1)).markup=">",t.lineMax=q,t.parentType=h,p[1]=t.line,i=0;i<E.length;i++)t.bMarks[i+n]=A[i],t.tShift[i+n]=E[i],t.sCount[i+n]=m[i],t.bsCount[i+n]=b[i];return t.blkIndent=C,!0},["paragraph","reference","blockquote","list"]],["hr",function(t,n,r,o){var a,s,i,l,u=t.bMarks[n]+t.tShift[n],c=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||42!==(a=t.src.charCodeAt(u++))&&45!==a&&95!==a)return!1;for(s=1;u<c;){if((i=t.src.charCodeAt(u++))!==a&&!f_(i))return!1;i===a&&s++}return!(s<3)&&(o||(t.line=n+1,(l=t.push("hr","hr",0)).map=[n,t.line],l.markup=Array(s+1).join(String.fromCharCode(a))),!0)},["paragraph","reference","blockquote","list"]],["list",function(t,n,r,o){var a,s,i,l,u,c,p,d,g,A,b,C,h,m,E,v,N,_,S,R,q,I,Q,ie,Y,O,G,P=n,x=!1,T=!0;if(t.sCount[P]-t.blkIndent>=4||t.listIndent>=0&&t.sCount[P]-t.listIndent>=4&&t.sCount[P]<t.blkIndent)return!1;if(o&&"paragraph"===t.parentType&&t.sCount[P]>=t.blkIndent&&(x=!0),(I=Xp(t,P))>=0){if(p=!0,ie=t.bMarks[P]+t.tShift[P],h=Number(t.src.slice(ie,I-1)),x&&1!==h)return!1}else{if(!((I=Kp(t,P))>=0))return!1;p=!1}if(x&&t.skipSpaces(I)>=t.eMarks[P])return!1;if(o)return!0;for(C=t.src.charCodeAt(I-1),b=t.tokens.length,p?(G=t.push("ordered_list_open","ol",1),1!==h&&(G.attrs=[["start",h]])):G=t.push("bullet_list_open","ul",1),G.map=A=[P,0],G.markup=String.fromCharCode(C),Q=!1,O=t.md.block.ruler.getRules("list"),N=t.parentType,t.parentType="list";P<r;){for(q=I,m=t.eMarks[P],c=E=t.sCount[P]+I-(t.bMarks[P]+t.tShift[P]);q<m;){if(9===(a=t.src.charCodeAt(q)))E+=4-(E+t.bsCount[P])%4;else{if(32!==a)break;E++}q++}if((u=(s=q)>=m?1:E-c)>4&&(u=1),l=c+u,(G=t.push("list_item_open","li",1)).markup=String.fromCharCode(C),G.map=d=[P,0],p&&(G.info=t.src.slice(ie,I-1)),R=t.tight,S=t.tShift[P],_=t.sCount[P],v=t.listIndent,t.listIndent=t.blkIndent,t.blkIndent=l,t.tight=!0,t.tShift[P]=s-t.bMarks[P],t.sCount[P]=E,s>=m&&t.isEmpty(P+1)?t.line=Math.min(t.line+2,r):t.md.block.tokenize(t,P,r,!0),(!t.tight||Q)&&(T=!1),Q=t.line-P>1&&t.isEmpty(t.line-1),t.blkIndent=t.listIndent,t.listIndent=v,t.tShift[P]=S,t.sCount[P]=_,t.tight=R,(G=t.push("list_item_close","li",-1)).markup=String.fromCharCode(C),P=t.line,d[1]=P,P>=r||t.sCount[P]<t.blkIndent||t.sCount[P]-t.blkIndent>=4)break;for(Y=!1,i=0,g=O.length;i<g;i++)if(O[i](t,P,r,!0)){Y=!0;break}if(Y)break;if(p){if((I=Xp(t,P))<0)break;ie=t.bMarks[P]+t.tShift[P]}else if((I=Kp(t,P))<0)break;if(C!==t.src.charCodeAt(I-1))break}return(G=p?t.push("ordered_list_close","ol",-1):t.push("bullet_list_close","ul",-1)).markup=String.fromCharCode(C),A[1]=P,t.line=P,t.parentType=N,T&&function(e,t){var n,r,o=e.level+2;for(n=t+2,r=e.tokens.length-2;n<r;n++)e.tokens[n].level===o&&"paragraph_open"===e.tokens[n].type&&(e.tokens[n+2].hidden=!0,e.tokens[n].hidden=!0,n+=2)}(t,b),!0},["paragraph","reference","blockquote"]],["reference",function(t,n,r,o){var a,s,i,l,u,c,p,d,g,A,b,C,h,m,E,v,N=0,_=t.bMarks[n]+t.tShift[n],S=t.eMarks[n],R=n+1;if(t.sCount[n]-t.blkIndent>=4||91!==t.src.charCodeAt(_))return!1;for(;++_<S;)if(93===t.src.charCodeAt(_)&&92!==t.src.charCodeAt(_-1)){if(_+1===S||58!==t.src.charCodeAt(_+1))return!1;break}for(l=t.lineMax,E=t.md.block.ruler.getRules("reference"),A=t.parentType,t.parentType="reference";R<l&&!t.isEmpty(R);R++)if(!(t.sCount[R]-t.blkIndent>3||t.sCount[R]<0)){for(m=!1,c=0,p=E.length;c<p;c++)if(E[c](t,R,l,!0)){m=!0;break}if(m)break}for(S=(h=t.getLines(n,R,t.blkIndent,!1).trim()).length,_=1;_<S;_++){if(91===(a=h.charCodeAt(_)))return!1;if(93===a){g=_;break}10===a?N++:92===a&&(++_<S&&10===h.charCodeAt(_)&&N++)}if(g<0||58!==h.charCodeAt(g+1))return!1;for(_=g+2;_<S;_++)if(10===(a=h.charCodeAt(_)))N++;else if(!As(a))break;if(!(b=t.md.helpers.parseLinkDestination(h,_,S)).ok||(u=t.md.normalizeLink(b.str),!t.md.validateLink(u)))return!1;for(s=_=b.pos,i=N+=b.lines,C=_;_<S;_++)if(10===(a=h.charCodeAt(_)))N++;else if(!As(a))break;for(b=t.md.helpers.parseLinkTitle(h,_,S),_<S&&C!==_&&b.ok?(v=b.str,_=b.pos,N+=b.lines):(v="",_=s,N=i);_<S&&(a=h.charCodeAt(_),As(a));)_++;if(_<S&&10!==h.charCodeAt(_)&&v)for(v="",_=s,N=i;_<S&&(a=h.charCodeAt(_),As(a));)_++;return!(_<S&&10!==h.charCodeAt(_)||(d=E_(h.slice(1,g)),!d))&&(o||(typeof t.env.references>"u"&&(t.env.references={}),typeof t.env.references[d]>"u"&&(t.env.references[d]={title:v,href:u}),t.parentType=A,t.line=n+N+1),!0)}],["html_block",function(t,n,r,o){var a,s,i,l,u=t.bMarks[n]+t.tShift[n],c=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||!t.md.options.html||60!==t.src.charCodeAt(u))return!1;for(l=t.src.slice(u,c),a=0;a<Or.length&&!Or[a][0].test(l);a++);if(a===Or.length)return!1;if(o)return Or[a][2];if(s=n+1,!Or[a][1].test(l))for(;s<r&&!(t.sCount[s]<t.blkIndent);s++)if(u=t.bMarks[s]+t.tShift[s],c=t.eMarks[s],l=t.src.slice(u,c),Or[a][1].test(l)){0!==l.length&&s++;break}return t.line=s,(i=t.push("html_block","",0)).map=[n,s],i.content=t.getLines(n,s,t.blkIndent,!0),!0},["paragraph","reference","blockquote"]],["heading",function(t,n,r,o){var a,s,i,l,u=t.bMarks[n]+t.tShift[n],c=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||(35!==(a=t.src.charCodeAt(u))||u>=c))return!1;for(s=1,a=t.src.charCodeAt(++u);35===a&&u<c&&s<=6;)s++,a=t.src.charCodeAt(++u);return!(s>6||u<c&&!ef(a))&&(o||(c=t.skipSpacesBack(c,u),(i=t.skipCharsBack(c,35,u))>u&&ef(t.src.charCodeAt(i-1))&&(c=i),t.line=n+1,(l=t.push("heading_open","h"+String(s),1)).markup="########".slice(0,s),l.map=[n,t.line],(l=t.push("inline","",0)).content=t.src.slice(u,c).trim(),l.map=[n,t.line],l.children=[],(l=t.push("heading_close","h"+String(s),-1)).markup="########".slice(0,s)),!0)},["paragraph","reference","blockquote"]],["lheading",function(t,n,r){var o,a,s,i,l,u,c,p,d,A,g=n+1,b=t.md.block.ruler.getRules("paragraph");if(t.sCount[n]-t.blkIndent>=4)return!1;for(A=t.parentType,t.parentType="paragraph";g<r&&!t.isEmpty(g);g++)if(!(t.sCount[g]-t.blkIndent>3)){if(t.sCount[g]>=t.blkIndent&&((u=t.bMarks[g]+t.tShift[g])<(c=t.eMarks[g])&&((45===(d=t.src.charCodeAt(u))||61===d)&&(u=t.skipChars(u,d),(u=t.skipSpaces(u))>=c)))){p=61===d?1:2;break}if(!(t.sCount[g]<0)){for(a=!1,s=0,i=b.length;s<i;s++)if(b[s](t,g,r,!0)){a=!0;break}if(a)break}}return!!p&&(o=t.getLines(n,g,t.blkIndent,!1).trim(),t.line=g+1,(l=t.push("heading_open","h"+String(p),1)).markup=String.fromCharCode(d),l.map=[n,t.line],(l=t.push("inline","",0)).content=o,l.map=[n,t.line-1],l.children=[],(l=t.push("heading_close","h"+String(p),-1)).markup=String.fromCharCode(d),t.parentType=A,!0)}],["paragraph",function(t,n,r){var o,a,s,i,l,u,c=n+1,p=t.md.block.ruler.getRules("paragraph");for(u=t.parentType,t.parentType="paragraph";c<r&&!t.isEmpty(c);c++)if(!(t.sCount[c]-t.blkIndent>3||t.sCount[c]<0)){for(a=!1,s=0,i=p.length;s<i;s++)if(p[s](t,c,r,!0)){a=!0;break}if(a)break}return o=t.getLines(n,c,t.blkIndent,!1).trim(),t.line=c,(l=t.push("paragraph_open","p",1)).map=[n,t.line],(l=t.push("inline","",0)).content=o,l.map=[n,t.line],l.children=[],l=t.push("paragraph_close","p",-1),t.parentType=u,!0}]];function Ds(){this.ruler=new U_;for(var e=0;e<vs.length;e++)this.ruler.push(vs[e][0],vs[e][1],{alt:(vs[e][2]||[]).slice()})}Ds.prototype.tokenize=function(e,t,n){for(var r,o,a,s=this.ruler.getRules(""),i=s.length,l=t,u=!1,c=e.md.options.maxNesting;l<n&&(e.line=l=e.skipEmptyLines(l),!(l>=n||e.sCount[l]<e.blkIndent));){if(e.level>=c){e.line=n;break}for(a=e.line,o=0;o<i;o++)if(r=s[o](e,l,n,!1)){if(a>=e.line)throw new Error("block rule didn't increment state.line");break}if(!r)throw new Error("none of the block rules matched");e.tight=!u,e.isEmpty(e.line-1)&&(u=!0),(l=e.line)<n&&e.isEmpty(l)&&(u=!0,l++,e.line=l)}},Ds.prototype.parse=function(e,t,n,r){var o;e&&(o=new this.State(e,t,n,r),this.tokenize(o,o.line,o.lineMax))},Ds.prototype.State=P_;var q_=Ds;function H_(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}for(var z_=/(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i,$_=ae.isSpace,j_=ae.isSpace,Eu=[],nf=0;nf<256;nf++)Eu.push(0);"\\!\"#$%&'()*+,./:;<=>?@[]^_`{|}~-".split("").forEach((function(e){Eu[e.charCodeAt(0)]=1}));var ys={};function rf(e,t){var n,r,o,a,s,i=[],l=t.length;for(n=0;n<l;n++)126===(o=t[n]).marker&&-1!==o.end&&(a=t[o.end],(s=e.tokens[o.token]).type="s_open",s.tag="s",s.nesting=1,s.markup="~~",s.content="",(s=e.tokens[a.token]).type="s_close",s.tag="s",s.nesting=-1,s.markup="~~",s.content="","text"===e.tokens[a.token-1].type&&"~"===e.tokens[a.token-1].content&&i.push(a.token-1));for(;i.length;){for(r=(n=i.pop())+1;r<e.tokens.length&&"s_close"===e.tokens[r].type;)r++;n!==--r&&(s=e.tokens[r],e.tokens[r]=e.tokens[n],e.tokens[n]=s)}}ys.tokenize=function(t,n){var r,o,s,i,l=t.pos,u=t.src.charCodeAt(l);if(n||126!==u||(s=(o=t.scanDelims(t.pos,!0)).length,i=String.fromCharCode(u),s<2))return!1;for(s%2&&(t.push("text","",0).content=i,s--),r=0;r<s;r+=2)t.push("text","",0).content=i+i,t.delimiters.push({marker:u,length:0,token:t.tokens.length-1,end:-1,open:o.can_open,close:o.can_close});return t.pos+=o.length,!0},ys.postProcess=function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(rf(t,t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&rf(t,r[n].delimiters)};var Ts={};function of(e,t){var n,r,o,a,s,i;for(n=t.length-1;n>=0;n--)(95===(r=t[n]).marker||42===r.marker)&&-1!==r.end&&(o=t[r.end],i=n>0&&t[n-1].end===r.end+1&&t[n-1].marker===r.marker&&t[n-1].token===r.token-1&&t[r.end+1].token===o.token+1,s=String.fromCharCode(r.marker),(a=e.tokens[r.token]).type=i?"strong_open":"em_open",a.tag=i?"strong":"em",a.nesting=1,a.markup=i?s+s:s,a.content="",(a=e.tokens[o.token]).type=i?"strong_close":"em_close",a.tag=i?"strong":"em",a.nesting=-1,a.markup=i?s+s:s,a.content="",i&&(e.tokens[t[n-1].token].content="",e.tokens[t[r.end+1].token].content="",n--))}Ts.tokenize=function(t,n){var r,o,s=t.pos,i=t.src.charCodeAt(s);if(n||95!==i&&42!==i)return!1;for(o=t.scanDelims(t.pos,42===i),r=0;r<o.length;r++)t.push("text","",0).content=String.fromCharCode(i),t.delimiters.push({marker:i,length:o.length,token:t.tokens.length-1,end:-1,open:o.can_open,close:o.can_close});return t.pos+=o.length,!0},Ts.postProcess=function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(of(t,t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&of(t,r[n].delimiters)};var K_=ae.normalizeReference,Au=ae.isSpace,Q_=ae.normalizeReference,bu=ae.isSpace,ev=/^([a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,tv=/^([a-zA-Z][a-zA-Z0-9+.\-]{1,31}):([^<>\x00-\x20]*)$/,rv=bs.HTML_TAG_RE;var af=Tp,lv=ae.has,uv=ae.isValidEntityCode,sf=ae.fromCodePoint,cv=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,dv=/^&([a-z][a-z0-9]{1,31});/i;function lf(e){var t,n,r,o,a,s,i,l,u={},c=e.length;if(c){var p=0,d=-2,g=[];for(t=0;t<c;t++)if(r=e[t],g.push(0),(e[p].marker!==r.marker||d!==r.token-1)&&(p=t),d=r.token,r.length=r.length||0,r.close){for(u.hasOwnProperty(r.marker)||(u[r.marker]=[-1,-1,-1,-1,-1,-1]),a=u[r.marker][(r.open?3:0)+r.length%3],s=n=p-g[p]-1;n>a;n-=g[n]+1)if((o=e[n]).marker===r.marker&&o.open&&o.end<0&&(i=!1,(o.close||r.open)&&(o.length+r.length)%3==0&&(o.length%3!=0||r.length%3!=0)&&(i=!0),!i)){l=n>0&&!e[n-1].open?g[n-1]+1:0,g[t]=t-n+l,g[n]=l,r.open=!1,o.end=t,o.close=!1,s=-1,d=-2;break}-1!==s&&(u[r.marker][(r.open?3:0)+(r.length||0)%3]=s)}}}var _u=pu,uf=ae.isWhiteSpace,cf=ae.isPunctChar,df=ae.isMdAsciiPunct;function Io(e,t,n,r){this.src=e,this.env=n,this.md=t,this.tokens=r,this.tokens_meta=Array(r.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending="",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1,this.linkLevel=0}Io.prototype.pushPending=function(){var e=new _u("text","",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending="",e},Io.prototype.push=function(e,t,n){this.pending&&this.pushPending();var r=new _u(e,t,n),o=null;return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),r.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],o={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(r),this.tokens_meta.push(o),r},Io.prototype.scanDelims=function(e,t){var r,o,a,s,i,l,u,c,p,n=e,d=!0,g=!0,A=this.posMax,b=this.src.charCodeAt(e);for(r=e>0?this.src.charCodeAt(e-1):32;n<A&&this.src.charCodeAt(n)===b;)n++;return a=n-e,o=n<A?this.src.charCodeAt(n):32,u=df(r)||cf(String.fromCharCode(r)),p=df(o)||cf(String.fromCharCode(o)),l=uf(r),(c=uf(o))?d=!1:p&&(l||u||(d=!1)),l?g=!1:u&&(c||p||(g=!1)),t?(s=d,i=g):(s=d&&(!g||u),i=g&&(!d||p)),{can_open:s,can_close:i,length:a}},Io.prototype.Token=_u;var gv=Io,pf=du,vu=[["text",function(t,n){for(var r=t.pos;r<t.posMax&&!H_(t.src.charCodeAt(r));)r++;return r!==t.pos&&(n||(t.pending+=t.src.slice(t.pos,r)),t.pos=r,!0)}],["linkify",function(t,n){var r,o,a,s,i,l,u,c;return!(!t.md.options.linkify||t.linkLevel>0||(r=t.pos,o=t.posMax,r+3>o)||58!==t.src.charCodeAt(r)||47!==t.src.charCodeAt(r+1)||47!==t.src.charCodeAt(r+2)||(a=t.pending.match(z_),!a)||(s=a[1],i=t.md.linkify.matchAtStart(t.src.slice(r-s.length)),!i)||(l=i.url,l.length<=s.length)||(l=l.replace(/\*+$/,""),u=t.md.normalizeLink(l),!t.md.validateLink(u))||(n||(t.pending=t.pending.slice(0,-s.length),(c=t.push("link_open","a",1)).attrs=[["href",u]],c.markup="linkify",c.info="auto",(c=t.push("text","",0)).content=t.md.normalizeLinkText(l),(c=t.push("link_close","a",-1)).markup="linkify",c.info="auto"),t.pos+=l.length-s.length,0))}],["newline",function(t,n){var r,o,a,s=t.pos;if(10!==t.src.charCodeAt(s))return!1;if(r=t.pending.length-1,o=t.posMax,!n)if(r>=0&&32===t.pending.charCodeAt(r))if(r>=1&&32===t.pending.charCodeAt(r-1)){for(a=r-1;a>=1&&32===t.pending.charCodeAt(a-1);)a--;t.pending=t.pending.slice(0,a),t.push("hardbreak","br",0)}else t.pending=t.pending.slice(0,-1),t.push("softbreak","br",0);else t.push("softbreak","br",0);for(s++;s<o&&$_(t.src.charCodeAt(s));)s++;return t.pos=s,!0}],["escape",function(t,n){var r,o,a,s,i,l=t.pos,u=t.posMax;if(92!==t.src.charCodeAt(l)||++l>=u)return!1;if(10===(r=t.src.charCodeAt(l))){for(n||t.push("hardbreak","br",0),l++;l<u&&(r=t.src.charCodeAt(l),j_(r));)l++;return t.pos=l,!0}return s=t.src[l],r>=55296&&r<=56319&&l+1<u&&((o=t.src.charCodeAt(l+1))>=56320&&o<=57343&&(s+=t.src[l+1],l++)),a="\\"+s,n||(i=t.push("text_special","",0),r<256&&0!==Eu[r]?i.content=s:i.content=a,i.markup=a,i.info="escape"),t.pos=l+1,!0}],["backticks",function(t,n){var r,o,a,s,i,l,u,c,p=t.pos;if(96!==t.src.charCodeAt(p))return!1;for(r=p,p++,o=t.posMax;p<o&&96===t.src.charCodeAt(p);)p++;if(u=(a=t.src.slice(r,p)).length,t.backticksScanned&&(t.backticks[u]||0)<=r)return n||(t.pending+=a),t.pos+=u,!0;for(l=p;-1!==(i=t.src.indexOf("`",l));){for(l=i+1;l<o&&96===t.src.charCodeAt(l);)l++;if((c=l-i)===u)return n||((s=t.push("code_inline","code",0)).markup=a,s.content=t.src.slice(p,i).replace(/\n/g," ").replace(/^ (.+) $/,"$1")),t.pos=l,!0;t.backticks[c]=i}return t.backticksScanned=!0,n||(t.pending+=a),t.pos+=u,!0}],["strikethrough",ys.tokenize],["emphasis",Ts.tokenize],["link",function(t,n){var r,o,a,s,i,l,u,c,d="",g="",A=t.pos,b=t.posMax,C=t.pos,h=!0;if(91!==t.src.charCodeAt(t.pos)||(i=t.pos+1,(s=t.md.helpers.parseLinkLabel(t,t.pos,!0))<0))return!1;if((l=s+1)<b&&40===t.src.charCodeAt(l)){for(h=!1,l++;l<b&&(o=t.src.charCodeAt(l),Au(o)||10===o);l++);if(l>=b)return!1;if(C=l,(u=t.md.helpers.parseLinkDestination(t.src,l,t.posMax)).ok){for(d=t.md.normalizeLink(u.str),t.md.validateLink(d)?l=u.pos:d="",C=l;l<b&&(o=t.src.charCodeAt(l),Au(o)||10===o);l++);if(u=t.md.helpers.parseLinkTitle(t.src,l,t.posMax),l<b&&C!==l&&u.ok)for(g=u.str,l=u.pos;l<b&&(o=t.src.charCodeAt(l),Au(o)||10===o);l++);}(l>=b||41!==t.src.charCodeAt(l))&&(h=!0),l++}if(h){if(typeof t.env.references>"u")return!1;if(l<b&&91===t.src.charCodeAt(l)?(C=l+1,(l=t.md.helpers.parseLinkLabel(t,l))>=0?a=t.src.slice(C,l++):l=s+1):l=s+1,a||(a=t.src.slice(i,s)),!(c=t.env.references[K_(a)]))return t.pos=A,!1;d=c.href,g=c.title}return n||(t.pos=i,t.posMax=s,t.push("link_open","a",1).attrs=r=[["href",d]],g&&r.push(["title",g]),t.linkLevel++,t.md.inline.tokenize(t),t.linkLevel--,t.push("link_close","a",-1)),t.pos=l,t.posMax=b,!0}],["image",function(t,n){var r,o,a,s,i,l,u,c,p,d,g,A,b,C="",h=t.pos,m=t.posMax;if(33!==t.src.charCodeAt(t.pos)||91!==t.src.charCodeAt(t.pos+1)||(l=t.pos+2,(i=t.md.helpers.parseLinkLabel(t,t.pos+1,!1))<0))return!1;if((u=i+1)<m&&40===t.src.charCodeAt(u)){for(u++;u<m&&(o=t.src.charCodeAt(u),bu(o)||10===o);u++);if(u>=m)return!1;for(b=u,(p=t.md.helpers.parseLinkDestination(t.src,u,t.posMax)).ok&&(C=t.md.normalizeLink(p.str),t.md.validateLink(C)?u=p.pos:C=""),b=u;u<m&&(o=t.src.charCodeAt(u),bu(o)||10===o);u++);if(p=t.md.helpers.parseLinkTitle(t.src,u,t.posMax),u<m&&b!==u&&p.ok)for(d=p.str,u=p.pos;u<m&&(o=t.src.charCodeAt(u),bu(o)||10===o);u++);else d="";if(u>=m||41!==t.src.charCodeAt(u))return t.pos=h,!1;u++}else{if(typeof t.env.references>"u")return!1;if(u<m&&91===t.src.charCodeAt(u)?(b=u+1,(u=t.md.helpers.parseLinkLabel(t,u))>=0?s=t.src.slice(b,u++):u=i+1):u=i+1,s||(s=t.src.slice(l,i)),!(c=t.env.references[Q_(s)]))return t.pos=h,!1;C=c.href,d=c.title}return n||(a=t.src.slice(l,i),t.md.inline.parse(a,t.md,t.env,A=[]),(g=t.push("image","img",0)).attrs=r=[["src",C],["alt",""]],g.children=A,g.content=a,d&&r.push(["title",d])),t.pos=u,t.posMax=m,!0}],["autolink",function(t,n){var r,o,a,s,i,l,u=t.pos;if(60!==t.src.charCodeAt(u))return!1;for(i=t.pos,l=t.posMax;;){if(++u>=l||60===(s=t.src.charCodeAt(u)))return!1;if(62===s)break}return r=t.src.slice(i+1,u),tv.test(r)?(o=t.md.normalizeLink(r),!!t.md.validateLink(o)&&(n||((a=t.push("link_open","a",1)).attrs=[["href",o]],a.markup="autolink",a.info="auto",(a=t.push("text","",0)).content=t.md.normalizeLinkText(r),(a=t.push("link_close","a",-1)).markup="autolink",a.info="auto"),t.pos+=r.length+2,!0)):!!ev.test(r)&&(o=t.md.normalizeLink("mailto:"+r),!!t.md.validateLink(o)&&(n||((a=t.push("link_open","a",1)).attrs=[["href",o]],a.markup="autolink",a.info="auto",(a=t.push("text","",0)).content=t.md.normalizeLinkText(r),(a=t.push("link_close","a",-1)).markup="autolink",a.info="auto"),t.pos+=r.length+2,!0))}],["html_inline",function(t,n){var r,o,a,s,i=t.pos;return!(!t.md.options.html||(a=t.posMax,60!==t.src.charCodeAt(i)||i+2>=a)||(r=t.src.charCodeAt(i+1),33!==r&&63!==r&&47!==r&&!function(e){var t=32|e;return t>=97&&t<=122}(r))||(o=t.src.slice(i).match(rv),!o))&&(n||((s=t.push("html_inline","",0)).content=o[0],function(e){return/^<a[>\s]/i.test(e)}(s.content)&&t.linkLevel++,function(e){return/^<\/a\s*>/i.test(e)}(s.content)&&t.linkLevel--),t.pos+=o[0].length,!0)}],["entity",function(t,n){var o,a,s,i=t.pos,l=t.posMax;if(38!==t.src.charCodeAt(i)||i+1>=l)return!1;if(35===t.src.charCodeAt(i+1)){if(a=t.src.slice(i).match(cv))return n||(o="x"===a[1][0].toLowerCase()?parseInt(a[1].slice(1),16):parseInt(a[1],10),(s=t.push("text_special","",0)).content=uv(o)?sf(o):sf(65533),s.markup=a[0],s.info="entity"),t.pos+=a[0].length,!0}else if((a=t.src.slice(i).match(dv))&&lv(af,a[1]))return n||((s=t.push("text_special","",0)).content=af[a[1]],s.markup=a[0],s.info="entity"),t.pos+=a[0].length,!0;return!1}]],Du=[["balance_pairs",function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(lf(t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&lf(r[n].delimiters)}],["strikethrough",ys.postProcess],["emphasis",Ts.postProcess],["fragments_join",function(t){var n,r,o=0,a=t.tokens,s=t.tokens.length;for(n=r=0;n<s;n++)a[n].nesting<0&&o--,a[n].level=o,a[n].nesting>0&&o++,"text"===a[n].type&&n+1<s&&"text"===a[n+1].type?a[n+1].content=a[n].content+a[n+1].content:(n!==r&&(a[r]=a[n]),r++);n!==r&&(a.length=r)}]];function Mo(){var e;for(this.ruler=new pf,e=0;e<vu.length;e++)this.ruler.push(vu[e][0],vu[e][1]);for(this.ruler2=new pf,e=0;e<Du.length;e++)this.ruler2.push(Du[e][0],Du[e][1])}Mo.prototype.skipToken=function(e){var t,n,r=e.pos,o=this.ruler.getRules(""),a=o.length,s=e.md.options.maxNesting,i=e.cache;if(typeof i[r]<"u")e.pos=i[r];else{if(e.level<s){for(n=0;n<a;n++)if(e.level++,t=o[n](e,!0),e.level--,t){if(r>=e.pos)throw new Error("inline rule didn't increment state.pos");break}}else e.pos=e.posMax;t||e.pos++,i[r]=e.pos}},Mo.prototype.tokenize=function(e){for(var t,n,r,o=this.ruler.getRules(""),a=o.length,s=e.posMax,i=e.md.options.maxNesting;e.pos<s;){if(r=e.pos,e.level<i)for(n=0;n<a;n++)if(t=o[n](e,!1)){if(r>=e.pos)throw new Error("inline rule didn't increment state.pos");break}if(t){if(e.pos>=s)break}else e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()},Mo.prototype.parse=function(e,t,n,r){var o,a,s,i=new this.State(e,t,n,r);for(this.tokenize(i),s=(a=this.ruler2.getRules("")).length,o=0;o<s;o++)a[o](i)},Mo.prototype.State=gv;var yu,ff,hv=Mo;function Tu(e){return Array.prototype.slice.call(arguments,1).forEach((function(n){n&&Object.keys(n).forEach((function(r){e[r]=n[r]}))})),e}function Cs(e){return Object.prototype.toString.call(e)}function mf(e){return"[object Function]"===Cs(e)}function vv(e){return e.replace(/[.?*+^$[\]\\(){}|-]/g,"\\$&")}var gf={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};var yv={"http:":{validate:function(e,t,n){var r=e.slice(t);return n.re.http||(n.re.http=new RegExp("^\\/\\/"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,"i")),n.re.http.test(r)?r.match(n.re.http)[0].length:0}},"https:":"http:","ftp:":"http:","//":{validate:function(e,t,n){var r=e.slice(t);return n.re.no_http||(n.re.no_http=new RegExp("^"+n.re.src_auth+"(?:localhost|(?:(?:"+n.re.src_domain+")\\.)+"+n.re.src_domain_root+")"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,"i")),n.re.no_http.test(r)?t>=3&&":"===e[t-3]||t>=3&&"/"===e[t-3]?0:r.match(n.re.no_http)[0].length:0}},"mailto:":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp("^"+n.re.src_email_name+"@"+n.re.src_host_strict,"i")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},Tv="a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]",Cv="biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф".split("|");function Ns(e){var t=e.re=(ff||(ff=1,yu=function(e){var t={};e=e||{},t.src_Any=kp().source,t.src_Cc=Mp().source,t.src_Z=Pp().source,t.src_P=su.source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join("|"),t.src_ZCc=[t.src_Z,t.src_Cc].join("|");var n="[><|]";return t.src_pseudo_letter="(?:(?![><|]|"+t.src_ZPCc+")"+t.src_Any+")",t.src_ip4="(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",t.src_auth="(?:(?:(?!"+t.src_ZCc+"|[@/\\[\\]()]).)+@)?",t.src_port="(?::(?:6(?:[0-4]\\d{3}|5(?:[0-4]\\d{2}|5(?:[0-2]\\d|3[0-5])))|[1-5]?\\d{1,4}))?",t.src_host_terminator="(?=$|[><|]|"+t.src_ZPCc+")(?!"+(e["---"]?"-(?!--)|":"-|")+"_|:\\d|\\.-|\\.(?!$|"+t.src_ZPCc+"))",t.src_path="(?:[/?#](?:(?!"+t.src_ZCc+"|"+n+"|[()[\\]{}.,\"'?!\\-;]).|\\[(?:(?!"+t.src_ZCc+"|\\]).)*\\]|\\((?:(?!"+t.src_ZCc+"|[)]).)*\\)|\\{(?:(?!"+t.src_ZCc+'|[}]).)*\\}|\\"(?:(?!'+t.src_ZCc+'|["]).)+\\"|\\\'(?:(?!'+t.src_ZCc+"|[']).)+\\'|\\'(?="+t.src_pseudo_letter+"|[-])|\\.{2,}[a-zA-Z0-9%/&]|\\.(?!"+t.src_ZCc+"|[.]|$)|"+(e["---"]?"\\-(?!--(?:[^-]|$))(?:-*)|":"\\-+|")+",(?!"+t.src_ZCc+"|$)|;(?!"+t.src_ZCc+"|$)|\\!+(?!"+t.src_ZCc+"|[!]|$)|\\?(?!"+t.src_ZCc+"|[?]|$))+|\\/)?",t.src_email_name='[\\-;:&=\\+\\$,\\.a-zA-Z0-9_][\\-;:&=\\+\\$,\\"\\.a-zA-Z0-9_]*',t.src_xn="xn--[a-z0-9\\-]{1,59}",t.src_domain_root="(?:"+t.src_xn+"|"+t.src_pseudo_letter+"{1,63})",t.src_domain="(?:"+t.src_xn+"|(?:"+t.src_pseudo_letter+")|(?:"+t.src_pseudo_letter+"(?:-|"+t.src_pseudo_letter+"){0,61}"+t.src_pseudo_letter+"))",t.src_host="(?:(?:(?:(?:"+t.src_domain+")\\.)*"+t.src_domain+"))",t.tpl_host_fuzzy="(?:"+t.src_ip4+"|(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%)))",t.tpl_host_no_ip_fuzzy="(?:(?:(?:"+t.src_domain+")\\.)+(?:%TLDS%))",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test="localhost|www\\.|\\.\\d{1,3}\\.|(?:\\.(?:%TLDS%)(?:"+t.src_ZPCc+"|>|$))",t.tpl_email_fuzzy='(^|[><|]|"|\\(|'+t.src_ZCc+")("+t.src_email_name+"@"+t.tpl_host_fuzzy_strict+")",t.tpl_link_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_fuzzy_strict+t.src_path+")",t.tpl_link_no_ip_fuzzy="(^|(?![.:/\\-_@])(?:[$+<=>^`||]|"+t.src_ZPCc+"))((?![$+<=>^`||])"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+")",t}),yu)(e.__opts__),n=e.__tlds__.slice();function r(i){return i.replace("%TLDS%",t.src_tlds)}e.onCompile(),e.__tlds_replaced__||n.push(Tv),n.push(t.src_xn),t.src_tlds=n.join("|"),t.email_fuzzy=RegExp(r(t.tpl_email_fuzzy),"i"),t.link_fuzzy=RegExp(r(t.tpl_link_fuzzy),"i"),t.link_no_ip_fuzzy=RegExp(r(t.tpl_link_no_ip_fuzzy),"i"),t.host_fuzzy_test=RegExp(r(t.tpl_host_fuzzy_test),"i");var o=[];function a(i,l){throw new Error('(LinkifyIt) Invalid schema "'+i+'": '+l)}e.__compiled__={},Object.keys(e.__schemas__).forEach((function(i){var l=e.__schemas__[i];if(null!==l){var u={validate:null,link:null};if(e.__compiled__[i]=u,function(e){return"[object Object]"===Cs(e)}(l))return!function(e){return"[object RegExp]"===Cs(e)}(l.validate)?mf(l.validate)?u.validate=l.validate:a(i,l):u.validate=function(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}(l.validate),void(mf(l.normalize)?u.normalize=l.normalize:l.normalize?a(i,l):u.normalize=function(e,t){t.normalize(e)});if(function(e){return"[object String]"===Cs(e)}(l))return void o.push(i);a(i,l)}})),o.forEach((function(i){e.__compiled__[e.__schemas__[i]]&&(e.__compiled__[i].validate=e.__compiled__[e.__schemas__[i]].validate,e.__compiled__[i].normalize=e.__compiled__[e.__schemas__[i]].normalize)})),e.__compiled__[""]={validate:null,normalize:function(e,t){t.normalize(e)}};var s=Object.keys(e.__compiled__).filter((function(i){return i.length>0&&e.__compiled__[i]})).map(vv).join("|");e.re.schema_test=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","i"),e.re.schema_search=RegExp("(^|(?!_)(?:[><|]|"+t.src_ZPCc+"))("+s+")","ig"),e.re.schema_at_start=RegExp("^"+e.re.schema_search.source,"i"),e.re.pretest=RegExp("("+e.re.schema_test.source+")|("+e.re.host_fuzzy_test.source+")|@","i"),function(e){e.__index__=-1,e.__text_cache__=""}(e)}function wv(e,t){var n=e.__index__,r=e.__last_index__,o=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=o,this.text=o,this.url=o}function Cu(e,t){var n=new wv(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function ft(e,t){if(!(this instanceof ft))return new ft(e,t);t||function(e){return Object.keys(e||{}).reduce((function(t,n){return t||gf.hasOwnProperty(n)}),!1)}(e)&&(t=e,e={}),this.__opts__=Tu({},gf,t),this.__index__=-1,this.__last_index__=-1,this.__schema__="",this.__text_cache__="",this.__schemas__=Tu({},yv,e),this.__compiled__={},this.__tlds__=Cv,this.__tlds_replaced__=!1,this.re={},Ns(this)}ft.prototype.add=function(t,n){return this.__schemas__[t]=n,Ns(this),this},ft.prototype.set=function(t){return this.__opts__=Tu(this.__opts__,t),this},ft.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var n,r,o,a,s,i,l,u;if(this.re.schema_test.test(t))for((l=this.re.schema_search).lastIndex=0;null!==(n=l.exec(t));)if(a=this.testSchemaAt(t,n[2],l.lastIndex)){this.__schema__=n[2],this.__index__=n.index+n[1].length,this.__last_index__=n.index+n[0].length+a;break}return this.__opts__.fuzzyLink&&this.__compiled__["http:"]&&((u=t.search(this.re.host_fuzzy_test))>=0&&(this.__index__<0||u<this.__index__)&&null!==(r=t.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))&&(s=r.index+r[1].length,(this.__index__<0||s<this.__index__)&&(this.__schema__="",this.__index__=s,this.__last_index__=r.index+r[0].length))),this.__opts__.fuzzyEmail&&this.__compiled__["mailto:"]&&(t.indexOf("@")>=0&&null!==(o=t.match(this.re.email_fuzzy))&&(s=o.index+o[1].length,i=o.index+o[0].length,(this.__index__<0||s<this.__index__||s===this.__index__&&i>this.__last_index__)&&(this.__schema__="mailto:",this.__index__=s,this.__last_index__=i))),this.__index__>=0},ft.prototype.pretest=function(t){return this.re.pretest.test(t)},ft.prototype.testSchemaAt=function(t,n,r){return this.__compiled__[n.toLowerCase()]?this.__compiled__[n.toLowerCase()].validate(t,r,this):0},ft.prototype.match=function(t){var n=0,r=[];this.__index__>=0&&this.__text_cache__===t&&(r.push(Cu(this,n)),n=this.__last_index__);for(var o=n?t.slice(n):t;this.test(o);)r.push(Cu(this,n)),o=o.slice(this.__last_index__),n+=this.__last_index__;return r.length?r:null},ft.prototype.matchAtStart=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return null;var n=this.re.schema_at_start.exec(t);if(!n)return null;var r=this.testSchemaAt(t,n[2],n[0].length);return r?(this.__schema__=n[2],this.__index__=n.index+n[1].length,this.__last_index__=n.index+n[0].length+r,Cu(this,0)):null},ft.prototype.tlds=function(t,n){return t=Array.isArray(t)?t:[t],n?(this.__tlds__=this.__tlds__.concat(t).sort().filter((function(r,o,a){return r!==a[o-1]})).reverse(),Ns(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,Ns(this),this)},ft.prototype.normalize=function(t){t.schema||(t.url="http://"+t.url),"mailto:"===t.schema&&!/^mailto:/i.test(t.url)&&(t.url="mailto:"+t.url)},ft.prototype.onCompile=function(){};var xv=ft;const kr=2147483647,Ov=/^xn--/,kv=/[^\0-\x7F]/,Iv=/[\x2E\u3002\uFF0E\uFF61]/g,Mv={overflow:"Overflow: input needs wider integers to process","not-basic":"Illegal input >= 0x80 (not a basic code point)","invalid-input":"Invalid input"},Zt=Math.floor,wu=String.fromCharCode;function Sn(e){throw new RangeError(Mv[e])}function _f(e,t){const n=e.split("@");let r="";n.length>1&&(r=n[0]+"@",e=n[1]);const a=function(e,t){const n=[];let r=e.length;for(;r--;)n[r]=t(e[r]);return n}((e=e.replace(Iv,".")).split("."),t).join(".");return r+a}function xu(e){const t=[];let n=0;const r=e.length;for(;n<r;){const o=e.charCodeAt(n++);if(o>=55296&&o<=56319&&n<r){const a=e.charCodeAt(n++);56320==(64512&a)?t.push(((1023&o)<<10)+(1023&a)+65536):(t.push(o),n--)}else t.push(o)}return t}const vf=e=>String.fromCodePoint(...e),Bv=function(e){return e>=48&&e<58?e-48+26:e>=65&&e<91?e-65:e>=97&&e<123?e-97:36},Df=function(e,t){return e+22+75*(e<26)-((0!=t)<<5)},yf=function(e,t,n){let r=0;for(e=n?Zt(e/700):e>>1,e+=Zt(e/t);e>455;r+=36)e=Zt(e/35);return Zt(r+36*e/(e+38))},Ru=function(e){const t=[],n=e.length;let r=0,o=128,a=72,s=e.lastIndexOf("-");s<0&&(s=0);for(let i=0;i<s;++i)e.charCodeAt(i)>=128&&Sn("not-basic"),t.push(e.charCodeAt(i));for(let i=s>0?s+1:0;i<n;){const l=r;for(let c=1,p=36;;p+=36){i>=n&&Sn("invalid-input");const d=Bv(e.charCodeAt(i++));d>=36&&Sn("invalid-input"),d>Zt((kr-r)/c)&&Sn("overflow"),r+=d*c;const g=p<=a?1:p>=a+26?26:p-a;if(d<g)break;const A=36-g;c>Zt(kr/A)&&Sn("overflow"),c*=A}const u=t.length+1;a=yf(r-l,u,0==l),Zt(r/u)>kr-o&&Sn("overflow"),o+=Zt(r/u),r%=u,t.splice(r++,0,o)}return String.fromCodePoint(...t)},Lu=function(e){const t=[],n=(e=xu(e)).length;let r=128,o=0,a=72;for(const l of e)l<128&&t.push(wu(l));const s=t.length;let i=s;for(s&&t.push("-");i<n;){let l=kr;for(const c of e)c>=r&&c<l&&(l=c);const u=i+1;l-r>Zt((kr-o)/u)&&Sn("overflow"),o+=(l-r)*u,r=l;for(const c of e)if(c<r&&++o>kr&&Sn("overflow"),c===r){let p=o;for(let d=36;;d+=36){const g=d<=a?1:d>=a+26?26:d-a;if(p<g)break;const A=p-g,b=36-g;t.push(wu(Df(g+A%b,0))),p=Zt(A/b)}t.push(wu(Df(p,0))),a=yf(o,u,i===s),o=0,++i}++o,++r}return t.join("")},Tf=function(e){return _f(e,(function(t){return Ov.test(t)?Ru(t.slice(4).toLowerCase()):t}))},Cf=function(e){return _f(e,(function(t){return kv.test(t)?"xn--"+Lu(t):t}))},Pv=function(e){if(e.__esModule)return e;var t=e.default;if("function"==typeof t){var n=function r(){return this instanceof r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,"__esModule",{value:!0}),Object.keys(e).forEach((function(r){var o=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(n,r,o.get?o:{enumerable:!0,get:function(){return e[r]}})})),n}(Object.freeze(Object.defineProperty({__proto__:null,decode:Ru,default:{version:"2.3.1",ucs2:{decode:xu,encode:vf},decode:Ru,encode:Lu,toASCII:Cf,toUnicode:Tf},encode:Lu,toASCII:Cf,toUnicode:Tf,ucs2decode:xu,ucs2encode:vf},Symbol.toStringTag,{value:"Module"})));var Bo=ae,Vv=hs,zv=Bb,Gv=i_,$v=q_,Zv=hv,jv=xv,Zn=xr,Nf=Pv,Wv={default:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}},zero:{options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["paragraph"]},inline:{rules:["text"],rules2:["balance_pairs","fragments_join"]}}},commonmark:{options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:"language-",linkify:!1,typographer:!1,quotes:"“”‘’",highlight:null,maxNesting:20},components:{core:{rules:["normalize","block","inline","text_join"]},block:{rules:["blockquote","code","fence","heading","hr","html_block","lheading","list","reference","paragraph"]},inline:{rules:["autolink","backticks","emphasis","entity","escape","html_inline","image","link","newline","text"],rules2:["balance_pairs","emphasis","fragments_join"]}}}},Yv=/^(vbscript|javascript|file|data):/,Kv=/^data:image\/(gif|png|jpeg|webp);/;function Xv(e){var t=e.trim().toLowerCase();return!Yv.test(t)||!!Kv.test(t)}var Sf=["http:","https:","mailto:"];function Qv(e){var t=Zn.parse(e,!0);if(t.hostname&&(!t.protocol||Sf.indexOf(t.protocol)>=0))try{t.hostname=Nf.toASCII(t.hostname)}catch{}return Zn.encode(Zn.format(t))}function Jv(e){var t=Zn.parse(e,!0);if(t.hostname&&(!t.protocol||Sf.indexOf(t.protocol)>=0))try{t.hostname=Nf.toUnicode(t.hostname)}catch{}return Zn.decode(Zn.format(t),Zn.decode.defaultChars+"%")}function yt(e,t){if(!(this instanceof yt))return new yt(e,t);t||Bo.isString(e)||(t=e||{},e="default"),this.inline=new Zv,this.block=new $v,this.core=new Gv,this.renderer=new zv,this.linkify=new jv,this.validateLink=Xv,this.normalizeLink=Qv,this.normalizeLinkText=Jv,this.utils=Bo,this.helpers=Bo.assign({},Vv),this.options={},this.configure(e),t&&this.set(t)}yt.prototype.set=function(e){return Bo.assign(this.options,e),this},yt.prototype.configure=function(e){var n,t=this;if(Bo.isString(e)&&!(e=Wv[n=e]))throw new Error('Wrong `markdown-it` preset "'+n+'", check name');if(!e)throw new Error("Wrong `markdown-it` preset, can't be empty");return e.options&&t.set(e.options),e.components&&Object.keys(e.components).forEach((function(r){e.components[r].rules&&t[r].ruler.enableOnly(e.components[r].rules),e.components[r].rules2&&t[r].ruler2.enableOnly(e.components[r].rules2)})),this},yt.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(o){n=n.concat(this[o].ruler.enable(e,!0))}),this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter((function(o){return n.indexOf(o)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to enable unknown rule(s): "+r);return this},yt.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),["core","block","inline"].forEach((function(o){n=n.concat(this[o].ruler.disable(e,!0))}),this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter((function(o){return n.indexOf(o)<0}));if(r.length&&!t)throw new Error("MarkdownIt. Failed to disable unknown rule(s): "+r);return this},yt.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this},yt.prototype.parse=function(e,t){if("string"!=typeof e)throw new Error("Input data should be a String");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens},yt.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)},yt.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens},yt.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)};const nD=jo(yt);function wf(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete=function(){throw new Error("set is read-only")}),Object.freeze(e),Object.getOwnPropertyNames(e).forEach((t=>{const n=e[t],r=typeof n;("object"===r||"function"===r)&&!Object.isFrozen(n)&&wf(n)})),e}class xf{constructor(t){void 0===t.data&&(t.data={}),this.data=t.data,this.isMatchIgnored=!1}ignoreMatch(){this.isMatchIgnored=!0}}function Rf(e){return e.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function wn(e,...t){const n=Object.create(null);for(const r in e)n[r]=e[r];return t.forEach((function(r){for(const o in r)n[o]=r[o]})),n}const Lf=e=>!!e.scope;class aD{constructor(t,n){this.buffer="",this.classPrefix=n.classPrefix,t.walk(this)}addText(t){this.buffer+=Rf(t)}openNode(t){if(!Lf(t))return;const n=((e,{prefix:t})=>{if(e.startsWith("language:"))return e.replace("language:","language-");if(e.includes(".")){const n=e.split(".");return[`${t}${n.shift()}`,...n.map(((r,o)=>`${r}${"_".repeat(o+1)}`))].join(" ")}return`${t}${e}`})(t.scope,{prefix:this.classPrefix});this.span(n)}closeNode(t){Lf(t)&&(this.buffer+="</span>")}value(){return this.buffer}span(t){this.buffer+=`<span class="${t}">`}}const Of=(e={})=>{const t={children:[]};return Object.assign(t,e),t};class Ou{constructor(){this.rootNode=Of(),this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(t){this.top.children.push(t)}openNode(t){const n=Of({scope:t});this.add(n),this.stack.push(n)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(t){return this.constructor._walk(t,this.rootNode)}static _walk(t,n){return"string"==typeof n?t.addText(n):n.children&&(t.openNode(n),n.children.forEach((r=>this._walk(t,r))),t.closeNode(n)),t}static _collapse(t){"string"!=typeof t&&t.children&&(t.children.every((n=>"string"==typeof n))?t.children=[t.children.join("")]:t.children.forEach((n=>{Ou._collapse(n)})))}}class sD extends Ou{constructor(t){super(),this.options=t}addText(t){""!==t&&this.add(t)}startScope(t){this.openNode(t)}endScope(){this.closeNode()}__addSublanguage(t,n){const r=t.root;n&&(r.scope=`language:${n}`),this.add(r)}toHTML(){return new aD(this,this.options).value()}finalize(){return this.closeAllNodes(),!0}}function Po(e){return e?"string"==typeof e?e:e.source:null}function kf(e){return jn("(?=",e,")")}function iD(e){return jn("(?:",e,")*")}function lD(e){return jn("(?:",e,")?")}function jn(...e){return e.map((n=>Po(n))).join("")}function ku(...e){return"("+(function(e){const t=e[e.length-1];return"object"==typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}(e).capture?"":"?:")+e.map((r=>Po(r))).join("|")+")"}function If(e){return new RegExp(e.toString()+"|").exec("").length-1}const dD=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function Iu(e,{joinWith:t}){let n=0;return e.map((r=>{n+=1;const o=n;let a=Po(r),s="";for(;a.length>0;){const i=dD.exec(a);if(!i){s+=a;break}s+=a.substring(0,i.index),a=a.substring(i.index+i[0].length),"\\"===i[0][0]&&i[1]?s+="\\"+String(Number(i[1])+o):(s+=i[0],"("===i[0]&&n++)}return s})).map((r=>`(${r})`)).join(t)}const Mf="[a-zA-Z]\\w*",Mu="[a-zA-Z_]\\w*",Ff="\\b\\d+(\\.\\d+)?",Bf="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",Pf="\\b(0b[01]+)",Uo={begin:"\\\\[\\s\\S]",relevance:0},gD={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[Uo]},hD={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[Uo]},Ss=function(e,t,n={}){const r=wn({scope:"comment",begin:e,end:t,contains:[]},n);r.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const o=ku("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return r.contains.push({begin:jn(/[ ]+/,"(",o,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),r},AD=Ss("//","$"),bD=Ss("/\\*","\\*/"),_D=Ss("#","$"),vD={scope:"number",begin:Ff,relevance:0},DD={scope:"number",begin:Bf,relevance:0},yD={scope:"number",begin:Pf,relevance:0},TD={scope:"regexp",begin:/\/(?=[^/\n]*\/)/,end:/\/[gimuy]*/,contains:[Uo,{begin:/\[/,end:/\]/,relevance:0,contains:[Uo]}]},CD={scope:"title",begin:Mf,relevance:0},ND={scope:"title",begin:Mu,relevance:0},SD={begin:"\\.\\s*"+Mu,relevance:0};var ws=Object.freeze({__proto__:null,APOS_STRING_MODE:gD,BACKSLASH_ESCAPE:Uo,BINARY_NUMBER_MODE:yD,BINARY_NUMBER_RE:Pf,COMMENT:Ss,C_BLOCK_COMMENT_MODE:bD,C_LINE_COMMENT_MODE:AD,C_NUMBER_MODE:DD,C_NUMBER_RE:Bf,END_SAME_AS_BEGIN:function(e){return Object.assign(e,{"on:begin":(t,n)=>{n.data._beginMatch=t[1]},"on:end":(t,n)=>{n.data._beginMatch!==t[1]&&n.ignoreMatch()}})},HASH_COMMENT_MODE:_D,IDENT_RE:Mf,MATCH_NOTHING_RE:/\b\B/,METHOD_GUARD:SD,NUMBER_MODE:vD,NUMBER_RE:Ff,PHRASAL_WORDS_MODE:{begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},QUOTE_STRING_MODE:hD,REGEXP_MODE:TD,RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",SHEBANG:(e={})=>{const t=/^#![ ]*\//;return e.binary&&(e.begin=jn(t,/.*\b/,e.binary,/\b.*/)),wn({scope:"meta",begin:t,end:/$/,relevance:0,"on:begin":(n,r)=>{0!==n.index&&r.ignoreMatch()}},e)},TITLE_MODE:CD,UNDERSCORE_IDENT_RE:Mu,UNDERSCORE_TITLE_MODE:ND});function wD(e,t){"."===e.input[e.index-1]&&t.ignoreMatch()}function xD(e,t){void 0!==e.className&&(e.scope=e.className,delete e.className)}function RD(e,t){t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=wD,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function LD(e,t){Array.isArray(e.illegal)&&(e.illegal=ku(...e.illegal))}function OD(e,t){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function kD(e,t){void 0===e.relevance&&(e.relevance=1)}const ID=(e,t)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const n=Object.assign({},e);Object.keys(e).forEach((r=>{delete e[r]})),e.keywords=n.keywords,e.begin=jn(n.beforeMatch,kf(n.begin)),e.starts={relevance:0,contains:[Object.assign(n,{endsParent:!0})]},e.relevance=0,delete n.beforeMatch},MD=["of","and","for","in","not","or","if","then","parent","list","value"],FD="keyword";function Uf(e,t,n=FD){const r=Object.create(null);return"string"==typeof e?o(n,e.split(" ")):Array.isArray(e)?o(n,e):Object.keys(e).forEach((function(a){Object.assign(r,Uf(e[a],t,a))})),r;function o(a,s){t&&(s=s.map((i=>i.toLowerCase()))),s.forEach((function(i){const l=i.split("|");r[l[0]]=[a,BD(l[0],l[1])]}))}}function BD(e,t){return t?Number(t):function(e){return MD.includes(e.toLowerCase())}(e)?0:1}const qf={},Wn=e=>{console.error(e)},Hf=(e,...t)=>{console.log(`WARN: ${e}`,...t)},Ir=(e,t)=>{qf[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),qf[`${e}/${t}`]=!0)},xs=new Error;function Vf(e,t,{key:n}){let r=0;const o=e[n],a={},s={};for(let i=1;i<=t.length;i++)s[i+r]=o[i],a[i+r]=!0,r+=If(t[i-1]);e[n]=s,e[n]._emit=a,e[n]._multi=!0}function VD(e){(function(e){e.scope&&"object"==typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,delete e.scope)})(e),"string"==typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),"string"==typeof e.endScope&&(e.endScope={_wrap:e.endScope}),function(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw Wn("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),xs;if("object"!=typeof e.beginScope||null===e.beginScope)throw Wn("beginScope must be object"),xs;Vf(e,e.begin,{key:"beginScope"}),e.begin=Iu(e.begin,{joinWith:""})}}(e),function(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw Wn("skip, excludeEnd, returnEnd not compatible with endScope: {}"),xs;if("object"!=typeof e.endScope||null===e.endScope)throw Wn("endScope must be object"),xs;Vf(e,e.end,{key:"endScope"}),e.end=Iu(e.end,{joinWith:""})}}(e)}function zD(e){function t(s,i){return new RegExp(Po(s),"m"+(e.case_insensitive?"i":"")+(e.unicodeRegex?"u":"")+(i?"g":""))}class n{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(i,l){l.position=this.position++,this.matchIndexes[this.matchAt]=l,this.regexes.push([l,i]),this.matchAt+=If(i)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const i=this.regexes.map((l=>l[1]));this.matcherRe=t(Iu(i,{joinWith:"|"}),!0),this.lastIndex=0}exec(i){this.matcherRe.lastIndex=this.lastIndex;const l=this.matcherRe.exec(i);if(!l)return null;const u=l.findIndex(((p,d)=>d>0&&void 0!==p)),c=this.matchIndexes[u];return l.splice(0,u),Object.assign(l,c)}}class r{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(i){if(this.multiRegexes[i])return this.multiRegexes[i];const l=new n;return this.rules.slice(i).forEach((([u,c])=>l.addRule(u,c))),l.compile(),this.multiRegexes[i]=l,l}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(i,l){this.rules.push([i,l]),"begin"===l.type&&this.count++}exec(i){const l=this.getMatcher(this.regexIndex);l.lastIndex=this.lastIndex;let u=l.exec(i);if(this.resumingScanAtSamePosition()&&(!u||u.index!==this.lastIndex)){const c=this.getMatcher(0);c.lastIndex=this.lastIndex+1,u=c.exec(i)}return u&&(this.regexIndex+=u.position+1,this.regexIndex===this.count&&this.considerAll()),u}}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=wn(e.classNameAliases||{}),function a(s,i){const l=s;if(s.isCompiled)return l;[xD,OD,VD,ID].forEach((c=>c(s,i))),e.compilerExtensions.forEach((c=>c(s,i))),s.__beforeBegin=null,[RD,LD,kD].forEach((c=>c(s,i))),s.isCompiled=!0;let u=null;return"object"==typeof s.keywords&&s.keywords.$pattern&&(s.keywords=Object.assign({},s.keywords),u=s.keywords.$pattern,delete s.keywords.$pattern),u=u||/\w+/,s.keywords&&(s.keywords=Uf(s.keywords,e.case_insensitive)),l.keywordPatternRe=t(u,!0),i&&(s.begin||(s.begin=/\B|\b/),l.beginRe=t(l.begin),!s.end&&!s.endsWithParent&&(s.end=/\B|\b/),s.end&&(l.endRe=t(l.end)),l.terminatorEnd=Po(l.end)||"",s.endsWithParent&&i.terminatorEnd&&(l.terminatorEnd+=(s.end?"|":"")+i.terminatorEnd)),s.illegal&&(l.illegalRe=t(s.illegal)),s.contains||(s.contains=[]),s.contains=[].concat(...s.contains.map((function(c){return function(e){return e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(t){return wn(e,{variants:null},t)}))),e.cachedVariants?e.cachedVariants:zf(e)?wn(e,{starts:e.starts?wn(e.starts):null}):Object.isFrozen(e)?wn(e):e}("self"===c?s:c)}))),s.contains.forEach((function(c){a(c,l)})),s.starts&&a(s.starts,i),l.matcher=function(s){const i=new r;return s.contains.forEach((l=>i.addRule(l.begin,{rule:l,type:"begin"}))),s.terminatorEnd&&i.addRule(s.terminatorEnd,{type:"end"}),s.illegal&&i.addRule(s.illegal,{type:"illegal"}),i}(l),l}(e)}function zf(e){return!!e&&(e.endsWithParent||zf(e.starts))}class ZD extends Error{constructor(t,n){super(t),this.name="HTMLInjectionError",this.html=n}}const Fu=Rf,Gf=wn,$f=Symbol("nomatch"),Zf=function(e){const t=Object.create(null),n=Object.create(null),r=[];let o=!0;const a="Could not find the language '{}', did you forget to load/include a language module?",s={disableAutodetect:!0,name:"Plain text",contains:[]};let i={ignoreUnescapedHTML:!1,throwUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:sD};function l(x){return i.noHighlightRe.test(x)}function c(x,T,y){let L="",k="";"object"==typeof T?(L=x,y=T.ignoreIllegals,k=T.language):(Ir("10.7.0","highlight(lang, code, ...args) has been deprecated."),Ir("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),k=x,L=T),void 0===y&&(y=!0);const H={code:L,language:k};G("before:highlight",H);const j=H.result?H.result:p(H.language,H.code,y);return j.code=H.code,G("after:highlight",j),j}function p(x,T,y,L){const k=Object.create(null);function H(B,V){return B.keywords[V]}function j(){if(!W.keywords)return void ye.addText(oe);let B=0;W.keywordPatternRe.lastIndex=0;let V=W.keywordPatternRe.exec(oe),K="";for(;V;){K+=oe.substring(B,V.index);const ne=Ce.case_insensitive?V[0].toLowerCase():V[0],ge=H(W,ne);if(ge){const[$e,zo]=ge;if(ye.addText(K),K="",k[ne]=(k[ne]||0)+1,k[ne]<=7&&(Bt+=zo),$e.startsWith("_"))K+=V[0];else{const Go=Ce.classNameAliases[$e]||$e;se(V[0],Go)}}else K+=V[0];B=W.keywordPatternRe.lastIndex,V=W.keywordPatternRe.exec(oe)}K+=oe.substring(B),ye.addText(K)}function ce(){null!=W.subLanguage?function(){if(""===oe)return;let B=null;if("string"==typeof W.subLanguage){if(!t[W.subLanguage])return void ye.addText(oe);B=p(W.subLanguage,oe,!0,Ur[W.subLanguage]),Ur[W.subLanguage]=B._top}else B=g(oe,W.subLanguage.length?W.subLanguage:null);W.relevance>0&&(Bt+=B.relevance),ye.__addSublanguage(B._emitter,B.language)}():j(),oe=""}function se(B,V){""!==B&&(ye.startScope(V),ye.addText(B),ye.endScope())}function le(B,V){let K=1;const ne=V.length-1;for(;K<=ne;){if(!B._emit[K]){K++;continue}const ge=Ce.classNameAliases[B[K]]||B[K],$e=V[K];ge?se($e,ge):(oe=$e,j(),oe=""),K++}}function gt(B,V){return B.scope&&"string"==typeof B.scope&&ye.openNode(Ce.classNameAliases[B.scope]||B.scope),B.beginScope&&(B.beginScope._wrap?(se(oe,Ce.classNameAliases[B.beginScope._wrap]||B.beginScope._wrap),oe=""):B.beginScope._multi&&(le(B.beginScope,V),oe="")),W=Object.create(B,{parent:{value:W}}),W}function Ft(B,V,K){let ne=function(e,t){const n=e&&e.exec(t);return n&&0===n.index}(B.endRe,K);if(ne){if(B["on:end"]){const ge=new xf(B);B["on:end"](V,ge),ge.isMatchIgnored&&(ne=!1)}if(ne){for(;B.endsParent&&B.parent;)B=B.parent;return B}}if(B.endsWithParent)return Ft(B.parent,V,K)}function ht(B){return 0===W.matcher.regexIndex?(oe+=B[0],1):(Hr=!0,0)}function Ct(B){const V=B[0],K=T.substring(B.index),ne=Ft(W,B,K);if(!ne)return $f;const ge=W;W.endScope&&W.endScope._wrap?(ce(),se(V,W.endScope._wrap)):W.endScope&&W.endScope._multi?(ce(),le(W.endScope,B)):ge.skip?oe+=V:(ge.returnEnd||ge.excludeEnd||(oe+=V),ce(),ge.excludeEnd&&(oe=V));do{W.scope&&ye.closeNode(),!W.skip&&!W.subLanguage&&(Bt+=W.relevance),W=W.parent}while(W!==ne.parent);return ne.starts&>(ne.starts,B),ge.returnEnd?0:V.length}let Re={};function ke(B,V){const K=V&&V[0];if(oe+=B,null==K)return ce(),0;if("begin"===Re.type&&"end"===V.type&&Re.index===V.index&&""===K){if(oe+=T.slice(V.index,V.index+1),!o){const ne=new Error(`0 width match regex (${x})`);throw ne.languageName=x,ne.badRule=Re.rule,ne}return 1}if(Re=V,"begin"===V.type)return function(B){const V=B[0],K=B.rule,ne=new xf(K),ge=[K.__beforeBegin,K["on:begin"]];for(const $e of ge)if($e&&($e(B,ne),ne.isMatchIgnored))return ht(V);return K.skip?oe+=V:(K.excludeBegin&&(oe+=V),ce(),!K.returnBegin&&!K.excludeBegin&&(oe=V)),gt(K,B),K.returnBegin?0:V.length}(V);if("illegal"===V.type&&!y){const ne=new Error('Illegal lexeme "'+K+'" for mode "'+(W.scope||"<unnamed>")+'"');throw ne.mode=W,ne}if("end"===V.type){const ne=Ct(V);if(ne!==$f)return ne}if("illegal"===V.type&&""===K)return 1;if(qr>1e5&&qr>3*V.index)throw new Error("potential infinite loop, way more iterations than matches");return oe+=K,K.length}const Ce=q(x);if(!Ce)throw Wn(a.replace("{}",x)),new Error('Unknown language: "'+x+'"');const Hs=zD(Ce);let Pr="",W=L||Hs;const Ur={},ye=new i.__emitter(i);!function(){const B=[];for(let V=W;V!==Ce;V=V.parent)V.scope&&B.unshift(V.scope);B.forEach((V=>ye.openNode(V)))}();let oe="",Bt=0,jt=0,qr=0,Hr=!1;try{if(Ce.__emitTokens)Ce.__emitTokens(T,ye);else{for(W.matcher.considerAll();;){qr++,Hr?Hr=!1:W.matcher.considerAll(),W.matcher.lastIndex=jt;const B=W.matcher.exec(T);if(!B)break;const K=ke(T.substring(jt,B.index),B);jt=B.index+K}ke(T.substring(jt))}return ye.finalize(),Pr=ye.toHTML(),{language:x,value:Pr,relevance:Bt,illegal:!1,_emitter:ye,_top:W}}catch(B){if(B.message&&B.message.includes("Illegal"))return{language:x,value:Fu(T),illegal:!0,relevance:0,_illegalBy:{message:B.message,index:jt,context:T.slice(jt-100,jt+100),mode:B.mode,resultSoFar:Pr},_emitter:ye};if(o)return{language:x,value:Fu(T),illegal:!1,relevance:0,errorRaised:B,_emitter:ye,_top:W};throw B}}function g(x,T){T=T||i.languages||Object.keys(t);const y=function(x){const T={value:Fu(x),illegal:!1,relevance:0,_top:s,_emitter:new i.__emitter(i)};return T._emitter.addText(x),T}(x),L=T.filter(q).filter(Q).map((ce=>p(ce,x,!1)));L.unshift(y);const k=L.sort(((ce,se)=>{if(ce.relevance!==se.relevance)return se.relevance-ce.relevance;if(ce.language&&se.language){if(q(ce.language).supersetOf===se.language)return 1;if(q(se.language).supersetOf===ce.language)return-1}return 0})),[H,j]=k,me=H;return me.secondBest=j,me}function b(x){let T=null;const y=function(x){let T=x.className+" ";T+=x.parentNode?x.parentNode.className:"";const y=i.languageDetectRe.exec(T);if(y){const L=q(y[1]);return L||(Hf(a.replace("{}",y[1])),Hf("Falling back to no-highlight mode for this block.",x)),L?y[1]:"no-highlight"}return T.split(/\s+/).find((L=>l(L)||q(L)))}(x);if(l(y))return;if(G("before:highlightElement",{el:x,language:y}),x.dataset.highlighted)return void console.log("Element previously highlighted. To highlight again, first unset `dataset.highlighted`.",x);if(x.children.length>0&&(i.ignoreUnescapedHTML||(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/wiki/security"),console.warn("The element with unescaped HTML:"),console.warn(x)),i.throwUnescapedHTML))throw new ZD("One of your code blocks includes unescaped HTML.",x.innerHTML);T=x;const L=T.textContent,k=y?c(L,{language:y,ignoreIllegals:!0}):g(L);x.innerHTML=k.value,x.dataset.highlighted="yes",function(x,T,y){const L=T&&n[T]||y;x.classList.add("hljs"),x.classList.add(`language-${L}`)}(x,y,k.language),x.result={language:k.language,re:k.relevance,relevance:k.relevance},k.secondBest&&(x.secondBest={language:k.secondBest.language,relevance:k.secondBest.relevance}),G("after:highlightElement",{el:x,result:k,text:L})}let E=!1;function v(){"loading"!==document.readyState?document.querySelectorAll(i.cssSelector).forEach(b):E=!0}function q(x){return x=(x||"").toLowerCase(),t[x]||t[n[x]]}function I(x,{languageName:T}){"string"==typeof x&&(x=[x]),x.forEach((y=>{n[y.toLowerCase()]=T}))}function Q(x){const T=q(x);return T&&!T.disableAutodetect}function G(x,T){const y=x;r.forEach((function(L){L[y]&&L[y](T)}))}typeof window<"u"&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(function(){E&&v()}),!1),Object.assign(e,{highlight:c,highlightAuto:g,highlightAll:v,highlightElement:b,highlightBlock:function(x){return Ir("10.7.0","highlightBlock will be removed entirely in v12.0"),Ir("10.7.0","Please use highlightElement now."),b(x)},configure:function(x){i=Gf(i,x)},initHighlighting:()=>{v(),Ir("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")},initHighlightingOnLoad:function(){v(),Ir("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")},registerLanguage:function(x,T){let y=null;try{y=T(e)}catch(L){if(Wn("Language definition for '{}' could not be registered.".replace("{}",x)),!o)throw L;Wn(L),y=s}y.name||(y.name=x),t[x]=y,y.rawDefinition=T.bind(null,e),y.aliases&&I(y.aliases,{languageName:x})},unregisterLanguage:function(x){delete t[x];for(const T of Object.keys(n))n[T]===x&&delete n[T]},listLanguages:function(){return Object.keys(t)},getLanguage:q,registerAliases:I,autoDetection:Q,inherit:Gf,addPlugin:function(x){(function(x){x["before:highlightBlock"]&&!x["before:highlightElement"]&&(x["before:highlightElement"]=T=>{x["before:highlightBlock"](Object.assign({block:T.el},T))}),x["after:highlightBlock"]&&!x["after:highlightElement"]&&(x["after:highlightElement"]=T=>{x["after:highlightBlock"](Object.assign({block:T.el},T))})})(x),r.push(x)},removePlugin:function(x){const T=r.indexOf(x);-1!==T&&r.splice(T,1)}}),e.debugMode=function(){o=!1},e.safeMode=function(){o=!0},e.versionString="11.9.0",e.regex={concat:jn,lookahead:kf,either:ku,optional:lD,anyNumberOfTimes:iD};for(const x in ws)"object"==typeof ws[x]&&wf(ws[x]);return Object.assign(e,ws),e},Mr=Zf({});Mr.newInstance=()=>Zf({});var WD=Mr;Mr.HighlightJS=Mr,Mr.default=Mr;const X=jo(WD);const ty=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],ny=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],ry=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],oy=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],ay=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();var Fr="[0-9](_*[0-9])*",Rs=`\\.(${Fr})`,Ls="[0-9a-fA-F](_*[0-9a-fA-F])*",jf={className:"number",variants:[{begin:`(\\b(${Fr})((${Rs})|\\.)?|(${Rs}))[eE][+-]?(${Fr})[fFdD]?\\b`},{begin:`\\b(${Fr})((${Rs})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${Rs})[fFdD]?\\b`},{begin:`\\b(${Fr})[fFdD]\\b`},{begin:`\\b0[xX]((${Ls})\\.?|(${Ls})?\\.(${Ls}))[pP][+-]?(${Fr})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${Ls})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};function Wf(e,t,n){return-1===n?"":e.replace(t,(r=>Wf(e,t,n-1)))}const Yf="[A-Za-z$_][0-9A-Za-z$_]*",py=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],fy=["true","false","null","undefined","NaN","Infinity"],Kf=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],Xf=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],Qf=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],my=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],gy=[].concat(Qf,Kf,Xf);var Br="[0-9](_*[0-9])*",Os=`\\.(${Br})`,ks="[0-9a-fA-F](_*[0-9a-fA-F])*",Ay={className:"number",variants:[{begin:`(\\b(${Br})((${Os})|\\.)?|(${Os}))[eE][+-]?(${Br})[fFdD]?\\b`},{begin:`\\b(${Br})((${Os})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{begin:`(${Os})[fFdD]?\\b`},{begin:`\\b(${Br})[fFdD]\\b`},{begin:`\\b0[xX]((${ks})\\.?|(${ks})?\\.(${ks}))[pP][+-]?(${Br})[fFdD]?\\b`},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${ks})[lL]?\\b`},{begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}],relevance:0};const vy=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],Dy=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],Jf=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],e1=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],yy=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse(),Ty=Jf.concat(e1);const Vy=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],zy=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],Gy=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],$y=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],Zy=["align-content","align-items","align-self","all","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","backface-visibility","background","background-attachment","background-blend-mode","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","block-size","border","border-block","border-block-color","border-block-end","border-block-end-color","border-block-end-style","border-block-end-width","border-block-start","border-block-start-color","border-block-start-style","border-block-start-width","border-block-style","border-block-width","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-inline","border-inline-color","border-inline-end","border-inline-end-color","border-inline-end-style","border-inline-end-width","border-inline-start","border-inline-start-color","border-inline-start-style","border-inline-start-width","border-inline-style","border-inline-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","caret-color","clear","clip","clip-path","clip-rule","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","contain","content","content-visibility","counter-increment","counter-reset","cue","cue-after","cue-before","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","flow","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-synthesis","font-variant","font-variant-caps","font-variant-east-asian","font-variant-ligatures","font-variant-numeric","font-variant-position","font-variation-settings","font-weight","gap","glyph-orientation-vertical","grid","grid-area","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-column","grid-column-end","grid-column-start","grid-gap","grid-row","grid-row-end","grid-row-start","grid-template","grid-template-areas","grid-template-columns","grid-template-rows","hanging-punctuation","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inline-size","isolation","justify-content","left","letter-spacing","line-break","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-block","margin-block-end","margin-block-start","margin-bottom","margin-inline","margin-inline-end","margin-inline-start","margin-left","margin-right","margin-top","marks","mask","mask-border","mask-border-mode","mask-border-outset","mask-border-repeat","mask-border-slice","mask-border-source","mask-border-width","mask-clip","mask-composite","mask-image","mask-mode","mask-origin","mask-position","mask-repeat","mask-size","mask-type","max-block-size","max-height","max-inline-size","max-width","min-block-size","min-height","min-inline-size","min-width","mix-blend-mode","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-block","padding-block-end","padding-block-start","padding-bottom","padding-inline","padding-inline-end","padding-inline-start","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","pause","pause-after","pause-before","perspective","perspective-origin","pointer-events","position","quotes","resize","rest","rest-after","rest-before","right","row-gap","scroll-margin","scroll-margin-block","scroll-margin-block-end","scroll-margin-block-start","scroll-margin-bottom","scroll-margin-inline","scroll-margin-inline-end","scroll-margin-inline-start","scroll-margin-left","scroll-margin-right","scroll-margin-top","scroll-padding","scroll-padding-block","scroll-padding-block-end","scroll-padding-block-start","scroll-padding-bottom","scroll-padding-inline","scroll-padding-inline-end","scroll-padding-inline-start","scroll-padding-left","scroll-padding-right","scroll-padding-top","scroll-snap-align","scroll-snap-stop","scroll-snap-type","scrollbar-color","scrollbar-gutter","scrollbar-width","shape-image-threshold","shape-margin","shape-outside","speak","speak-as","src","tab-size","table-layout","text-align","text-align-all","text-align-last","text-combine-upright","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-emphasis","text-emphasis-color","text-emphasis-position","text-emphasis-style","text-indent","text-justify","text-orientation","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-box","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","voice-balance","voice-duration","voice-family","voice-pitch","voice-range","voice-rate","voice-stress","voice-volume","white-space","widows","width","will-change","word-break","word-spacing","word-wrap","writing-mode","z-index"].reverse();function t1(e){return e?"string"==typeof e?e:e.source:null}function Is(e){return de("(?=",e,")")}function de(...e){return e.map((n=>t1(n))).join("")}function ot(...e){return"("+(function(e){const t=e[e.length-1];return"object"==typeof t&&t.constructor===Object?(e.splice(e.length-1,1),t):{}}(e).capture?"":"?:")+e.map((r=>t1(r))).join("|")+")"}const Bu=e=>de(/\b/,e,/\w$/.test(e)?/\b/:/\B/),Xy=["Protocol","Type"].map(Bu),n1=["init","self"].map(Bu),Qy=["Any","Self"],Pu=["actor","any","associatedtype","async","await",/as\?/,/as!/,"as","borrowing","break","case","catch","class","consume","consuming","continue","convenience","copy","default","defer","deinit","didSet","distributed","do","dynamic","each","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","isolated","nonisolated","lazy","let","macro","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],r1=["false","nil","true"],Jy=["assignment","associativity","higherThan","left","lowerThan","none","right"],e3=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warning"],o1=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],a1=ot(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),s1=ot(a1,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),Uu=de(a1,s1,"*"),i1=ot(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),Ms=ot(i1,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),on=de(i1,Ms,"*"),qu=de(/[A-Z]/,Ms,"*"),t3=["attached","autoclosure",de(/convention\(/,ot("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","freestanding","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",de(/objc\(/,on,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","resultBuilder","Sendable","testable","UIApplicationMain","unchecked","unknown","usableFromInline","warn_unqualified_access"],n3=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"];const Fs="[A-Za-z$_][0-9A-Za-z$_]*",l1=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],u1=["true","false","null","undefined","NaN","Infinity"],c1=["Object","Function","Boolean","Symbol","Math","Date","Number","BigInt","String","RegExp","Array","Float32Array","Float64Array","Int8Array","Uint8Array","Uint8ClampedArray","Int16Array","Int32Array","Uint16Array","Uint32Array","BigInt64Array","BigUint64Array","Set","Map","WeakSet","WeakMap","ArrayBuffer","SharedArrayBuffer","Atomics","DataView","JSON","Promise","Generator","GeneratorFunction","AsyncFunction","Reflect","Proxy","Intl","WebAssembly"],d1=["Error","EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"],p1=["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],f1=["arguments","this","super","console","window","document","localStorage","sessionStorage","module","global"],m1=[].concat(p1,c1,d1);X.registerLanguage("apache",(function(e){const r={className:"number",begin:/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?/};return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0,contains:[e.HASH_COMMENT_MODE,{className:"section",begin:/<\/?/,end:/>/,contains:[r,{className:"number",begin:/:\d{1,5}/},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute",begin:/\w+/,relevance:0,keywords:{_:["order","deny","allow","setenv","rewriterule","rewriteengine","rewritecond","documentroot","sethandler","errordocument","loadmodule","options","header","listen","serverroot","servername"]},starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"},contains:[{className:"meta",begin:/\s\[/,end:/\]$/},{className:"variable",begin:/[\$%]\{/,end:/\}/,contains:["self",{className:"number",begin:/[$%]\d+/}]},r,{className:"number",begin:/\b\d+/},e.QUOTE_STRING_MODE]}}],illegal:/\S/}})),X.registerLanguage("bash",(function(e){const t=e.regex,n={},r={begin:/\$\{/,end:/\}/,contains:["self",{begin:/:-/,contains:[n]}]};Object.assign(n,{className:"variable",variants:[{begin:t.concat(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},r]});const o={className:"subst",begin:/\$\(/,end:/\)/,contains:[e.BACKSLASH_ESCAPE]},a={begin:/<<-?\s*(?=\w+)/,starts:{contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,className:"string"})]}},s={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,n,o]};o.contains.push(s);const c={begin:/\$?\(\(/,end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},e.NUMBER_MODE,n]},d=e.SHEBANG({binary:`(${["fish","bash","zsh","sh","csh","ksh","tcsh","dash","scsh"].join("|")})`,relevance:10}),g={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0,contains:[e.inherit(e.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{name:"Bash",aliases:["sh"],keywords:{$pattern:/\b[a-z][a-z0-9._-]+\b/,keyword:["if","then","else","elif","fi","for","while","until","in","do","done","case","esac","function","select"],literal:["true","false"],built_in:["break","cd","continue","eval","exec","exit","export","getopts","hash","pwd","readonly","return","shift","test","times","trap","umask","unset","alias","bind","builtin","caller","command","declare","echo","enable","help","let","local","logout","mapfile","printf","read","readarray","source","type","typeset","ulimit","unalias","set","shopt","autoload","bg","bindkey","bye","cap","chdir","clone","comparguments","compcall","compctl","compdescribe","compfiles","compgroups","compquote","comptags","comptry","compvalues","dirs","disable","disown","echotc","echoti","emulate","fc","fg","float","functions","getcap","getln","history","integer","jobs","kill","limit","log","noglob","popd","print","pushd","pushln","rehash","sched","setcap","setopt","stat","suspend","ttyctl","unfunction","unhash","unlimit","unsetopt","vared","wait","whence","where","which","zcompile","zformat","zftp","zle","zmodload","zparseopts","zprof","zpty","zregexparse","zsocket","zstyle","ztcp","chcon","chgrp","chown","chmod","cp","dd","df","dir","dircolors","ln","ls","mkdir","mkfifo","mknod","mktemp","mv","realpath","rm","rmdir","shred","sync","touch","truncate","vdir","b2sum","base32","base64","cat","cksum","comm","csplit","cut","expand","fmt","fold","head","join","md5sum","nl","numfmt","od","paste","ptx","pr","sha1sum","sha224sum","sha256sum","sha384sum","sha512sum","shuf","sort","split","sum","tac","tail","tr","tsort","unexpand","uniq","wc","arch","basename","chroot","date","dirname","du","echo","env","expr","factor","groups","hostid","id","link","logname","nice","nohup","nproc","pathchk","pinky","printenv","printf","pwd","readlink","runcon","seq","sleep","stat","stdbuf","stty","tee","test","timeout","tty","uname","unlink","uptime","users","who","whoami","yes"]},contains:[d,e.SHEBANG(),g,c,e.HASH_COMMENT_MODE,a,{match:/(\/[a-z._-]+)+/},s,{match:/\\"/},{className:"string",begin:/'/,end:/'/},{match:/\\'/},n]}})),X.registerLanguage("c",(function(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),r="decltype\\(auto\\)",o="[a-zA-Z_]\\w*::",s="("+r+"|"+t.optional(o)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",i={className:"type",variants:[{begin:"\\b[a-z\\d_]*_t\\b"},{match:/\batomic_[a-z]{3,6}\b/}]},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},c={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},p={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},d={className:"title",begin:t.optional(o)+e.IDENT_RE,relevance:0},g=t.optional(o)+e.IDENT_RE+"\\s*\\(",C={keyword:["asm","auto","break","case","continue","default","do","else","enum","extern","for","fortran","goto","if","inline","register","restrict","return","sizeof","struct","switch","typedef","union","volatile","while","_Alignas","_Alignof","_Atomic","_Generic","_Noreturn","_Static_assert","_Thread_local","alignas","alignof","noreturn","static_assert","thread_local","_Pragma"],type:["float","double","signed","unsigned","int","short","long","char","void","_Bool","_Complex","_Imaginary","_Decimal32","_Decimal64","_Decimal128","const","static","complex","bool","imaginary"],literal:"true false NULL",built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"},h=[p,i,n,e.C_BLOCK_COMMENT_MODE,c,u],m={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:C,contains:h.concat([{begin:/\(/,end:/\)/,keywords:C,contains:h.concat(["self"]),relevance:0}]),relevance:0},E={begin:"("+s+"[\\*&\\s]+)+"+g,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:C,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:r,keywords:C,relevance:0},{begin:g,returnBegin:!0,contains:[e.inherit(d,{className:"title.function"})],relevance:0},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:C,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,c,i,{begin:/\(/,end:/\)/,keywords:C,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,c,i]}]},i,n,e.C_BLOCK_COMMENT_MODE,p]};return{name:"C",aliases:["h"],keywords:C,disableAutodetect:!0,illegal:"</",contains:[].concat(m,E,h,[p,{begin:e.IDENT_RE+"::",keywords:C},{className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/,contains:[{beginKeywords:"final class struct"},e.TITLE_MODE]}]),exports:{preprocessor:p,strings:u,keywords:C}}})),X.registerLanguage("cpp",(function(e){const t=e.regex,n=e.COMMENT("//","$",{contains:[{begin:/\\\n/}]}),r="decltype\\(auto\\)",o="[a-zA-Z_]\\w*::",s="(?!struct)("+r+"|"+t.optional(o)+"[a-zA-Z_]\\w*"+t.optional("<[^<>]+>")+")",i={className:"type",begin:"\\b[a-z\\d_]*_t\\b"},u={className:"string",variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]},{begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)",end:"'",illegal:"."},e.END_SAME_AS_BEGIN({begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},c={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},p={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(u,{className:"string"}),{className:"string",begin:/<.*?>/},n,e.C_BLOCK_COMMENT_MODE]},d={className:"title",begin:t.optional(o)+e.IDENT_RE,relevance:0},g=t.optional(o)+e.IDENT_RE+"\\s*\\(",v={type:["bool","char","char16_t","char32_t","char8_t","double","float","int","long","short","void","wchar_t","unsigned","signed","const","static"],keyword:["alignas","alignof","and","and_eq","asm","atomic_cancel","atomic_commit","atomic_noexcept","auto","bitand","bitor","break","case","catch","class","co_await","co_return","co_yield","compl","concept","const_cast|10","consteval","constexpr","constinit","continue","decltype","default","delete","do","dynamic_cast|10","else","enum","explicit","export","extern","false","final","for","friend","goto","if","import","inline","module","mutable","namespace","new","noexcept","not","not_eq","nullptr","operator","or","or_eq","override","private","protected","public","reflexpr","register","reinterpret_cast|10","requires","return","sizeof","static_assert","static_cast|10","struct","switch","synchronized","template","this","thread_local","throw","transaction_safe","transaction_safe_dynamic","true","try","typedef","typeid","typename","union","using","virtual","volatile","while","xor","xor_eq"],literal:["NULL","false","nullopt","nullptr","true"],built_in:["_Pragma"],_type_hints:["any","auto_ptr","barrier","binary_semaphore","bitset","complex","condition_variable","condition_variable_any","counting_semaphore","deque","false_type","future","imaginary","initializer_list","istringstream","jthread","latch","lock_guard","multimap","multiset","mutex","optional","ostringstream","packaged_task","pair","promise","priority_queue","queue","recursive_mutex","recursive_timed_mutex","scoped_lock","set","shared_future","shared_lock","shared_mutex","shared_timed_mutex","shared_ptr","stack","string_view","stringstream","timed_mutex","thread","true_type","tuple","unique_lock","unique_ptr","unordered_map","unordered_multimap","unordered_multiset","unordered_set","variant","vector","weak_ptr","wstring","wstring_view"]},N={className:"function.dispatch",relevance:0,keywords:{_hint:["abort","abs","acos","apply","as_const","asin","atan","atan2","calloc","ceil","cerr","cin","clog","cos","cosh","cout","declval","endl","exchange","exit","exp","fabs","floor","fmod","forward","fprintf","fputs","free","frexp","fscanf","future","invoke","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","labs","launder","ldexp","log","log10","make_pair","make_shared","make_shared_for_overwrite","make_tuple","make_unique","malloc","memchr","memcmp","memcpy","memset","modf","move","pow","printf","putchar","puts","realloc","scanf","sin","sinh","snprintf","sprintf","sqrt","sscanf","std","stderr","stdin","stdout","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","swap","tan","tanh","terminate","to_underlying","tolower","toupper","vfprintf","visit","vprintf","vsprintf"]},begin:t.concat(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!switch)/,/(?!while)/,e.IDENT_RE,t.lookahead(/(<[^<>]+>|)\s*\(/))},_=[N,p,i,n,e.C_BLOCK_COMMENT_MODE,c,u],S={variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{beginKeywords:"new throw return else",end:/;/}],keywords:v,contains:_.concat([{begin:/\(/,end:/\)/,keywords:v,contains:_.concat(["self"]),relevance:0}]),relevance:0},R={className:"function",begin:"("+s+"[\\*&\\s]+)+"+g,returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:v,illegal:/[^\w\s\*&:<>.]/,contains:[{begin:r,keywords:v,relevance:0},{begin:g,returnBegin:!0,contains:[d],relevance:0},{begin:/::/,relevance:0},{begin:/:/,endsWithParent:!0,contains:[u,c]},{relevance:0,match:/,/},{className:"params",begin:/\(/,end:/\)/,keywords:v,relevance:0,contains:[n,e.C_BLOCK_COMMENT_MODE,u,c,i,{begin:/\(/,end:/\)/,keywords:v,relevance:0,contains:["self",n,e.C_BLOCK_COMMENT_MODE,u,c,i]}]},i,n,e.C_BLOCK_COMMENT_MODE,p]};return{name:"C++",aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:v,illegal:"</",classNameAliases:{"function.dispatch":"built_in"},contains:[].concat(S,R,N,_,[p,{begin:"\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function)\\s*<(?!<)",end:">",keywords:v,contains:["self",i]},{begin:e.IDENT_RE+"::",keywords:v},{match:[/\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/,/\s+/,/\w+/],className:{1:"keyword",3:"title.class"}}])}})),X.registerLanguage("csharp",(function(e){const s={keyword:["abstract","as","base","break","case","catch","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","scoped","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]),built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"],literal:["default","false","null","true"]},i=e.inherit(e.TITLE_MODE,{begin:"[a-zA-Z](\\.?\\w)*"}),l={className:"number",variants:[{begin:"\\b(0b[01']+)"},{begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"}],relevance:0},u={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}]},c=e.inherit(u,{illegal:/\n/}),p={className:"subst",begin:/\{/,end:/\}/,keywords:s},d=e.inherit(p,{illegal:/\n/}),g={className:"string",begin:/\$"/,end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},e.BACKSLASH_ESCAPE,d]},A={className:"string",begin:/\$@"/,end:'"',contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},p]},b=e.inherit(A,{illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},d]});p.contains=[A,g,u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,l,e.C_BLOCK_COMMENT_MODE],d.contains=[b,g,c,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,l,e.inherit(e.C_BLOCK_COMMENT_MODE,{illegal:/\n/})];const C={variants:[A,g,u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},h={begin:"<",end:">",contains:[{beginKeywords:"in out"},i]},m=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",E={begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"],keywords:s,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0,contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{begin:"\x3c!--|--\x3e"},{begin:"</?",end:">"}]}]}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#",end:"$",keywords:{keyword:"if else elif endif define undef warning error line region endregion pragma checksum"}},C,l,{beginKeywords:"class interface",relevance:0,end:/[{;=]/,illegal:/[^\s:,]/,contains:[{beginKeywords:"where class"},i,h,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[i,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/,contains:[i,h,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta",begin:"^\\s*\\[(?=[\\w])",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{className:"string",begin:/"/,end:/"/}]},{beginKeywords:"new return throw await else",relevance:0},{className:"function",begin:"("+m+"\\s+)+"+e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,end:/\s*[{;=]/,excludeEnd:!0,keywords:s,contains:[{beginKeywords:["public","private","protected","static","internal","protected","abstract","async","extern","override","unsafe","virtual","new","sealed","partial"].join(" "),relevance:0},{begin:e.IDENT_RE+"\\s*(<[^=]+>\\s*)?\\(",returnBegin:!0,contains:[e.TITLE_MODE,h],relevance:0},{match:/\(\)/},{className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:s,relevance:0,contains:[C,l,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},E]}})),X.registerLanguage("css",(function(e){const t=e.regex,n=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}))(e),i=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE];return{name:"CSS",case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"},classNameAliases:{keyframePosition:"selector-tag"},contains:[n.BLOCK_COMMENT,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/},n.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0},{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{begin:":("+ry.join("|")+")"},{begin:":(:)?("+oy.join("|")+")"}]},n.CSS_VARIABLE,{className:"attribute",begin:"\\b("+ay.join("|")+")\\b"},{begin:/:/,end:/[;}{]/,contains:[n.BLOCK_COMMENT,n.HEXCOLOR,n.IMPORTANT,n.CSS_NUMBER_MODE,...i,{begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri"},contains:[...i,{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}]},n.FUNCTION_DISPATCH]},{begin:t.lookahead(/@/),end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword",begin:/@-?\w[\w]*(-\w+)*/},{begin:/\s/,endsWithParent:!0,excludeEnd:!0,relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:"and or not only",attribute:ny.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute"},...i,n.CSS_NUMBER_MODE]}]},{className:"selector-tag",begin:"\\b("+ty.join("|")+")\\b"}]}})),X.registerLanguage("diff",(function(e){const t=e.regex;return{name:"Diff",aliases:["patch"],contains:[{className:"meta",relevance:10,match:t.either(/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/,/^\*\*\* +\d+,\d+ +\*\*\*\*$/,/^--- +\d+,\d+ +----$/)},{className:"comment",variants:[{begin:t.either(/Index: /,/^index/,/={3,}/,/^-{3}/,/^\*{3} /,/^\+{3}/,/^diff --git/),end:/$/},{match:/^\*{15}$/}]},{className:"addition",begin:/^\+/,end:/$/},{className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/,end:/$/}]}})),X.registerLanguage("go",(function(e){const a={keyword:["break","case","chan","const","continue","default","defer","else","fallthrough","for","func","go","goto","if","import","interface","map","package","range","return","select","struct","switch","type","var"],type:["bool","byte","complex64","complex128","error","float32","float64","int8","int16","int32","int64","string","uint8","uint16","uint32","uint64","int","uint","uintptr","rune"],literal:["true","false","iota","nil"],built_in:["append","cap","close","complex","copy","imag","len","make","new","panic","print","println","real","recover","delete"]};return{name:"Go",aliases:["golang"],keywords:a,illegal:"</",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"string",variants:[e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{begin:"`",end:"`"}]},{className:"number",variants:[{begin:e.C_NUMBER_RE+"[i]",relevance:1},e.C_NUMBER_MODE]},{begin:/:=/},{className:"function",beginKeywords:"func",end:"\\s*(\\{|$)",excludeEnd:!0,contains:[e.TITLE_MODE,{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:a,illegal:/["']/}]}]}})),X.registerLanguage("graphql",(function(e){const t=e.regex;return{name:"GraphQL",aliases:["gql"],case_insensitive:!0,disableAutodetect:!1,keywords:{keyword:["query","mutation","subscription","type","input","schema","directive","interface","union","scalar","fragment","enum","on"],literal:["true","false","null"]},contains:[e.HASH_COMMENT_MODE,e.QUOTE_STRING_MODE,e.NUMBER_MODE,{scope:"punctuation",match:/[.]{3}/,relevance:0},{scope:"punctuation",begin:/[\!\(\)\:\=\[\]\{\|\}]{1}/,relevance:0},{scope:"variable",begin:/\$/,end:/\W/,excludeEnd:!0,relevance:0},{scope:"meta",match:/@\w+/,excludeEnd:!0},{scope:"symbol",begin:t.concat(/[_A-Za-z][_0-9A-Za-z]*/,t.lookahead(/\s*:/)),relevance:0}],illegal:[/[;<']/,/BEGIN/]}})),X.registerLanguage("ini",(function(e){const t=e.regex,n={className:"number",relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:e.NUMBER_RE}]},r=e.COMMENT();r.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const o={className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/}]},a={className:"literal",begin:/\bon|off|true|false|yes|no\b/},s={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:"'''",end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"'},{begin:"'",end:"'"}]},i={begin:/\[/,end:/\]/,contains:[r,a,o,s,n,"self"],relevance:0},p=t.either(/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/);return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/,contains:[r,{className:"section",begin:/\[+/,end:/\]+/},{begin:t.concat(p,"(\\s*\\.\\s*",p,")*",t.lookahead(/\s*=\s*[^#\s]/)),className:"attr",starts:{end:/$/,contains:[r,i,a,o,s,n]}}]}})),X.registerLanguage("java",(function(e){const t=e.regex,n="[À-ʸa-zA-Z_$][À-ʸa-zA-Z_$0-9]*",r=n+Wf("(?:<"+n+"~~~(?:\\s*,\\s*"+n+"~~~)*>)?",/~~~/g,2),l={keyword:["synchronized","abstract","private","var","static","if","const ","for","while","strictfp","finally","protected","import","native","final","void","enum","else","break","transient","catch","instanceof","volatile","case","assert","package","default","public","try","switch","continue","throws","protected","public","private","module","requires","exports","do","sealed","yield","permits"],literal:["false","true","null"],type:["char","boolean","long","float","int","byte","short","double"],built_in:["super","this"]},u={className:"meta",begin:"@"+n,contains:[{begin:/\(/,end:/\)/,contains:["self"]}]},c={className:"params",begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE],endsParent:!0};return{name:"Java",aliases:["jsp"],keywords:l,illegal:/<\/|#/,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/,relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{begin:/import java\.[a-z]+\./,keywords:"import",relevance:2},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{begin:/"""/,end:/"""/,className:"string",contains:[e.BACKSLASH_ESCAPE]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{match:[/\b(?:class|interface|enum|extends|implements|new)/,/\s+/,n],className:{1:"keyword",3:"title.class"}},{match:/non-sealed/,scope:"keyword"},{begin:[t.concat(/(?!else)/,n),/\s+/,n,/\s+/,/=(?!=)/],className:{1:"type",3:"variable",5:"operator"}},{begin:[/record/,/\s+/,n],className:{1:"keyword",3:"title.class"},contains:[c,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"new throw return else",relevance:0},{begin:["(?:"+r+"\\s+)",e.UNDERSCORE_IDENT_RE,/\s*(?=\()/],className:{2:"title.function"},keywords:l,contains:[{className:"params",begin:/\(/,end:/\)/,keywords:l,relevance:0,contains:[u,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,jf,e.C_BLOCK_COMMENT_MODE]},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},jf,u]}})),X.registerLanguage("javascript",(function(e){const t=e.regex,r=Yf,o_begin="<>",o_end="</>",s={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(T,y)=>{const L=T[0].length+T.index,k=T.input[L];if("<"===k||","===k)return void y.ignoreMatch();let H;">"===k&&(((T,{after:y})=>{const L="</"+T[0].slice(1);return-1!==T.input.indexOf(L,y)})(T,{after:L})||y.ignoreMatch());const j=T.input.substring(L);((H=j.match(/^\s*=/))||(H=j.match(/^\s+extends\s+/))&&0===H.index)&&y.ignoreMatch()}},i={$pattern:Yf,keyword:py,literal:fy,built_in:gy,"variable.language":my},l="[0-9](_?[0-9])*",u=`\\.(${l})`,c="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",p={className:"number",variants:[{begin:`(\\b(${c})((${u})|\\.)?|(${u}))[eE][+-]?(${l})\\b`},{begin:`\\b(${c})\\b((${u})\\b|\\.)?|(${u})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},d={className:"subst",begin:"\\$\\{",end:"\\}",keywords:i,contains:[]},g={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"xml"}},A={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"css"}},b={begin:"gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"graphql"}},C={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,d]},m={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:r+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},E=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,g,A,b,C,{match:/\$\d+/},p];d.contains=E.concat({begin:/\{/,end:/\}/,keywords:i,contains:["self"].concat(E)});const v=[].concat(m,d.contains),N=v.concat([{begin:/\(/,end:/\)/,keywords:i,contains:["self"].concat(v)}]),_={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:N},S={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,t.concat(r,"(",t.concat(/\./,r),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,r],scope:{1:"keyword",3:"title.class"}}]},R={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...Kf,...Xf]}},I={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[_],illegal:/%/},Y={match:t.concat(/\b/,(T=[...Qf,"super","import"],t.concat("(?!",T.join("|"),")")),r,t.lookahead(/\(/)),className:"title.function",relevance:0},O={begin:t.concat(/\./,t.lookahead(t.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},G={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},_]},P="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",x={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(P)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[_]};var T;return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{PARAMS_CONTAINS:N,CLASS_REFERENCE:R},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,g,A,b,C,m,{match:/\$\d+/},p,R,{className:"attr",begin:r+t.lookahead(":"),relevance:0},x,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[m,e.REGEXP_MODE,{className:"function",begin:P,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:N}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:o_begin,end:o_end},{match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:s.begin,"on:begin":s.isTrulyOpeningTag,end:s.end}],subLanguage:"xml",contains:[{begin:s.begin,end:s.end,skip:!0,contains:["self"]}]}]},I,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[_,e.inherit(e.TITLE_MODE,{begin:r,className:"title.function"})]},{match:/\.\.\./,relevance:0},O,{match:"\\$"+r,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[_]},Y,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},S,G,{match:/\$[(.]/}]}})),X.registerLanguage("json",(function(e){const r=["true","false","null"],o={scope:"literal",beginKeywords:r.join(" ")};return{name:"JSON",keywords:{literal:r},contains:[{className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{match:/[{}[\],:]/,className:"punctuation",relevance:0},e.QUOTE_STRING_MODE,o,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}})),X.registerLanguage("kotlin",(function(e){const t={keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual",built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing",literal:"true false null"},r={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@"},o={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},a={className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},s={className:"string",variants:[{begin:'"""',end:'"""(?=[^"])',contains:[a,o]},{begin:"'",end:"'",illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/,contains:[e.BACKSLASH_ESCAPE,a,o]}]};o.contains.push(s);const i={className:"meta",begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?"},l={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/,end:/\)/,contains:[e.inherit(s,{className:"string"}),"self"]}]},u=Ay,c=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),p={variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/,contains:[]}]},d=p;return d.variants[1].contains=[p],p.variants[1].contains=[d],{name:"Kotlin",aliases:["kt","kts"],keywords:t,contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,c,{className:"keyword",begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol",begin:/@\w+/}]}},r,i,l,{className:"function",beginKeywords:"fun",end:"[(]|$",returnBegin:!0,excludeEnd:!0,keywords:t,relevance:5,contains:[{begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0,contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin:/</,end:/>/,keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/,endsParent:!0,keywords:t,relevance:0,contains:[{begin:/:/,end:/[=,\/]/,endsWithParent:!0,contains:[p,e.C_LINE_COMMENT_MODE,c],relevance:0},e.C_LINE_COMMENT_MODE,c,i,l,s,e.C_NUMBER_MODE]},c]},{begin:[/class|interface|trait/,/\s+/,e.UNDERSCORE_IDENT_RE],beginScope:{3:"title.class"},keywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0,illegal:"extends implements",contains:[{beginKeywords:"public protected internal private constructor"},e.UNDERSCORE_TITLE_MODE,{className:"type",begin:/</,end:/>/,excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,){\s]|$/,excludeBegin:!0,returnEnd:!0},i,l]},s,{className:"meta",begin:"^#!/usr/bin/env",end:"$",illegal:"\n"},u]}})),X.registerLanguage("less",(function(e){const t=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}))(e),n=Ty,o="[\\w-]+",a="("+o+"|@\\{"+o+"\\})",s=[],i=[],l=function(E){return{className:"string",begin:"~?"+E+".*?"+E}},u=function(E,v,N){return{className:E,begin:v,relevance:N}},c={$pattern:/[a-z-]+/,keyword:"and or not only",attribute:Dy.join(" ")},p={begin:"\\(",end:"\\)",contains:i,keywords:c,relevance:0};i.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,l("'"),l('"'),t.CSS_NUMBER_MODE,{begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]",excludeEnd:!0}},t.HEXCOLOR,p,u("variable","@@?"+o,10),u("variable","@\\{"+o+"\\}"),u("built_in","~?`[^`]*?`"),{className:"attribute",begin:o+"\\s*:",end:":",returnBegin:!0,excludeEnd:!0},t.IMPORTANT,{beginKeywords:"and not"},t.FUNCTION_DISPATCH);const d=i.concat({begin:/\{/,end:/\}/,contains:s}),g={beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not"}].concat(i)},A={begin:a+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0,contains:[{begin:/-(webkit|moz|ms|o)-/},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+yy.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0,illegal:"[<=$]",relevance:0,contains:i}}]},b={className:"keyword",begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b",starts:{end:"[;{}]",keywords:c,returnEnd:!0,contains:i,relevance:0}},C={className:"variable",variants:[{begin:"@"+o+"\\s*:",relevance:15},{begin:"@"+o}],starts:{end:"[;}]",returnEnd:!0,contains:d}},h={variants:[{begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:a,end:/\{/}],returnBegin:!0,returnEnd:!0,illegal:"[<='$\"]",relevance:0,contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,g,u("keyword","all\\b"),u("variable","@\\{"+o+"\\}"),{begin:"\\b("+vy.join("|")+")\\b",className:"selector-tag"},t.CSS_NUMBER_MODE,u("selector-tag",a,0),u("selector-id","#"+a),u("selector-class","\\."+a,0),u("selector-tag","&",0),t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",begin:":("+Jf.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+e1.join("|")+")"},{begin:/\(/,end:/\)/,relevance:0,contains:d},{begin:"!important"},t.FUNCTION_DISPATCH]},m={begin:o+`:(:)?(${n.join("|")})`,returnBegin:!0,contains:[h]};return s.push(e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,b,C,m,A,h,g,t.FUNCTION_DISPATCH),{name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:s}})),X.registerLanguage("lua",(function(e){const t="\\[=*\\[",n="\\]=*\\]",r={begin:t,end:n,contains:["self"]},o=[e.COMMENT("--(?!"+t+")","$"),e.COMMENT("--"+t,n,{contains:[r],relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE,literal:"true false nil",keyword:"and break do else elseif end for goto if in local not or repeat return then until while",built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"},contains:o.concat([{className:"function",beginKeywords:"function",end:"\\)",contains:[e.inherit(e.TITLE_MODE,{begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params",begin:"\\(",endsWithParent:!0,contains:o}].concat(o)},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string",begin:t,end:n,contains:[r],relevance:5}])}})),X.registerLanguage("makefile",(function(e){const t={className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)",contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%<?\^\+\*]/}]},n={className:"string",begin:/"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,t]},r={className:"variable",begin:/\$\([\w-]+\s/,end:/\)/,keywords:{built_in:"subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"},contains:[t]},o={begin:"^"+e.UNDERSCORE_IDENT_RE+"\\s*(?=[:+?]?=)"},s={className:"section",begin:/^[^\s]+:/,end:/$/,contains:[t]};return{name:"Makefile",aliases:["mk","mak","make"],keywords:{$pattern:/[\w-]+/,keyword:"define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath"},contains:[e.HASH_COMMENT_MODE,t,n,r,o,{className:"meta",begin:/^\.PHONY:/,end:/$/,keywords:{$pattern:/[\.\w]+/,keyword:".PHONY"}},s]}})),X.registerLanguage("markdown",(function(e){const n={begin:/<\/?[A-Za-z_]/,end:">",subLanguage:"xml",relevance:0},l={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/,relevance:2},{begin:e.regex.concat(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/),relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{begin:/\[.*?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{match:/\[(?=\])/},{className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0,returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[",end:"\\]",excludeBegin:!0,excludeEnd:!0}]},u={className:"strong",contains:[],variants:[{begin:/_{2}(?!\s)/,end:/_{2}/},{begin:/\*{2}(?!\s)/,end:/\*{2}/}]},c={className:"emphasis",contains:[],variants:[{begin:/\*(?![*\s])/,end:/\*/},{begin:/_(?![_\s])/,end:/_/,relevance:0}]},p=e.inherit(u,{contains:[]}),d=e.inherit(c,{contains:[]});u.contains.push(d),c.contains.push(p);let g=[n,l];return[u,c,p,d].forEach((C=>{C.contains=C.contains.concat(g)})),g=g.concat(u,c),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:g},{begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n",contains:g}]}]},n,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)",end:"\\s+",excludeEnd:!0},u,c,{className:"quote",begin:"^>\\s+",contains:g,end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))",contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{begin:"^[-\\*]{3,}",end:"$"},l,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}})),X.registerLanguage("nginx",(function(e){const t=e.regex,n={className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{\w+\}/},{begin:t.concat(/[$@]/,e.UNDERSCORE_IDENT_RE)}]},o={endsWithParent:!0,keywords:{$pattern:/[a-z_]{2,}|\/dev\/poll/,literal:["on","off","yes","no","true","false","none","blocked","debug","info","notice","warn","error","crit","select","break","last","permanent","redirect","kqueue","rtsig","epoll","poll","/dev/poll"]},relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/}]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[n]},{className:"regexp",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:"\\s\\^",end:"\\s|\\{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|\\{|;",returnEnd:!0},{begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number",begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{className:"number",begin:"\\b\\d+[kKmMgGdshdwy]?\\b",relevance:0},n]};return{name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{beginKeywords:"upstream location",end:/;|\{/,contains:o.contains,keywords:{section:"upstream location"}},{className:"section",begin:t.concat(e.UNDERSCORE_IDENT_RE+t.lookahead(/\s+\{/)),relevance:0},{begin:t.lookahead(e.UNDERSCORE_IDENT_RE+"\\s"),end:";|\\{",contains:[{className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:o}],relevance:0}],illegal:"[^\\s\\}\\{]"}})),X.registerLanguage("objectivec",(function(e){const n=/[a-zA-Z@][a-zA-Z0-9_]*/,l={$pattern:n,keyword:["@interface","@class","@protocol","@implementation"]};return{name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"],keywords:{"variable.language":["this","super"],$pattern:n,keyword:["while","export","sizeof","typedef","const","struct","for","union","volatile","static","mutable","if","do","return","goto","enum","else","break","extern","asm","case","default","register","explicit","typename","switch","continue","inline","readonly","assign","readwrite","self","@synchronized","id","typeof","nonatomic","IBOutlet","IBAction","strong","weak","copy","in","out","inout","bycopy","byref","oneway","__strong","__weak","__block","__autoreleasing","@private","@protected","@public","@try","@property","@end","@throw","@catch","@finally","@autoreleasepool","@synthesize","@dynamic","@selector","@optional","@required","@encode","@package","@import","@defs","@compatibility_alias","__bridge","__bridge_transfer","__bridge_retained","__bridge_retain","__covariant","__contravariant","__kindof","_Nonnull","_Nullable","_Null_unspecified","__FUNCTION__","__PRETTY_FUNCTION__","__attribute__","getter","setter","retain","unsafe_unretained","nonnull","nullable","null_unspecified","null_resettable","class","instancetype","NS_DESIGNATED_INITIALIZER","NS_UNAVAILABLE","NS_REQUIRES_SUPER","NS_RETURNS_INNER_POINTER","NS_INLINE","NS_AVAILABLE","NS_DEPRECATED","NS_ENUM","NS_OPTIONS","NS_SWIFT_UNAVAILABLE","NS_ASSUME_NONNULL_BEGIN","NS_ASSUME_NONNULL_END","NS_REFINED_FOR_SWIFT","NS_SWIFT_NAME","NS_SWIFT_NOTHROW","NS_DURING","NS_HANDLER","NS_ENDHANDLER","NS_VALUERETURN","NS_VOIDRETURN"],literal:["false","true","FALSE","TRUE","nil","YES","NO","NULL"],built_in:["dispatch_once_t","dispatch_queue_t","dispatch_sync","dispatch_async","dispatch_once"],type:["int","float","char","unsigned","signed","short","long","double","wchar_t","unichar","void","bool","BOOL","id|0","_Bool"]},illegal:"</",contains:[{className:"built_in",begin:"\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.C_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,{className:"string",variants:[{begin:'@"',end:'"',illegal:"\\n",contains:[e.BACKSLASH_ESCAPE]}]},{className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{keyword:"if else elif endif define undef warning error line pragma ifdef ifndef include"},contains:[{begin:/\\\n/,relevance:0},e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),{className:"string",begin:/<.*?>/,end:/$/,illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"class",begin:"("+l.keyword.join("|")+")\\b",end:/(\{|$)/,excludeEnd:!0,keywords:l,contains:[e.UNDERSCORE_TITLE_MODE]},{begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}})),X.registerLanguage("perl",(function(e){const t=e.regex,r=/[dualxmsipngr]{0,12}/,o={$pattern:/[\w.]+/,keyword:["abs","accept","alarm","and","atan2","bind","binmode","bless","break","caller","chdir","chmod","chomp","chop","chown","chr","chroot","close","closedir","connect","continue","cos","crypt","dbmclose","dbmopen","defined","delete","die","do","dump","each","else","elsif","endgrent","endhostent","endnetent","endprotoent","endpwent","endservent","eof","eval","exec","exists","exit","exp","fcntl","fileno","flock","for","foreach","fork","format","formline","getc","getgrent","getgrgid","getgrnam","gethostbyaddr","gethostbyname","gethostent","getlogin","getnetbyaddr","getnetbyname","getnetent","getpeername","getpgrp","getpriority","getprotobyname","getprotobynumber","getprotoent","getpwent","getpwnam","getpwuid","getservbyname","getservbyport","getservent","getsockname","getsockopt","given","glob","gmtime","goto","grep","gt","hex","if","index","int","ioctl","join","keys","kill","last","lc","lcfirst","length","link","listen","local","localtime","log","lstat","lt","ma","map","mkdir","msgctl","msgget","msgrcv","msgsnd","my","ne","next","no","not","oct","open","opendir","or","ord","our","pack","package","pipe","pop","pos","print","printf","prototype","push","q|0","qq","quotemeta","qw","qx","rand","read","readdir","readline","readlink","readpipe","recv","redo","ref","rename","require","reset","return","reverse","rewinddir","rindex","rmdir","say","scalar","seek","seekdir","select","semctl","semget","semop","send","setgrent","sethostent","setnetent","setpgrp","setpriority","setprotoent","setpwent","setservent","setsockopt","shift","shmctl","shmget","shmread","shmwrite","shutdown","sin","sleep","socket","socketpair","sort","splice","split","sprintf","sqrt","srand","stat","state","study","sub","substr","symlink","syscall","sysopen","sysread","sysseek","system","syswrite","tell","telldir","tie","tied","time","times","tr","truncate","uc","ucfirst","umask","undef","unless","unlink","unpack","unshift","untie","until","use","utime","values","vec","wait","waitpid","wantarray","warn","when","while","write","x|0","xor","y|0"].join(" ")},a={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:o},s={begin:/->\{/,end:/\}/},i={variants:[{begin:/\$\d/},{begin:t.concat(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])")},{begin:/[$%@][^\s\w{]/,relevance:0}]},l=[e.BACKSLASH_ESCAPE,a,i],u=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],c=(g,A,b="\\1")=>{const C="\\1"===b?b:t.concat(b,A);return t.concat(t.concat("(?:",g,")"),A,/(?:\\.|[^\\\/])*?/,C,/(?:\\.|[^\\\/])*?/,b,r)},p=(g,A,b)=>t.concat(t.concat("(?:",g,")"),A,/(?:\\.|[^\\\/])*?/,b,r),d=[i,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{endsWithParent:!0}),s,{className:"string",contains:l,variants:[{begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[",end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">",relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'",contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number",begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b",relevance:0},{begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*",keywords:"split return print reverse grep",relevance:0,contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{begin:c("s|tr|y",t.either(...u,{capture:!0}))},{begin:c("s|tr|y","\\(","\\)")},{begin:c("s|tr|y","\\[","\\]")},{begin:c("s|tr|y","\\{","\\}")}],relevance:2},{className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{begin:p("(?:m|qr)?",/\//,/\//)},{begin:p("m|qr",t.either(...u,{capture:!0}),/\1/)},{begin:p("m|qr",/\(/,/\)/)},{begin:p("m|qr",/\[/,/\]/)},{begin:p("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub",end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$",subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}]}];return a.contains=d,s.contains=d,{name:"Perl",aliases:["pl","pm"],keywords:o,contains:d}})),X.registerLanguage("pgsql",(function(e){const t=e.COMMENT("--","$"),r="\\$([a-zA-Z_]?|[a-zA-Z_][a-zA-Z_0-9]*)\\$",l="BIGINT INT8 BIGSERIAL SERIAL8 BIT VARYING VARBIT BOOLEAN BOOL BOX BYTEA CHARACTER CHAR VARCHAR CIDR CIRCLE DATE DOUBLE PRECISION FLOAT8 FLOAT INET INTEGER INT INT4 INTERVAL JSON JSONB LINE LSEG|10 MACADDR MACADDR8 MONEY NUMERIC DEC DECIMAL PATH POINT POLYGON REAL FLOAT4 SMALLINT INT2 SMALLSERIAL|10 SERIAL2|10 SERIAL|10 SERIAL4|10 TEXT TIME ZONE TIMETZ|10 TIMESTAMP TIMESTAMPTZ|10 TSQUERY|10 TSVECTOR|10 TXID_SNAPSHOT|10 UUID XML NATIONAL NCHAR INT4RANGE|10 INT8RANGE|10 NUMRANGE|10 TSRANGE|10 TSTZRANGE|10 DATERANGE|10 ANYELEMENT ANYARRAY ANYNONARRAY ANYENUM ANYRANGE CSTRING INTERNAL RECORD PG_DDL_COMMAND VOID UNKNOWN OPAQUE REFCURSOR NAME OID REGPROC|10 REGPROCEDURE|10 REGOPER|10 REGOPERATOR|10 REGCLASS|10 REGTYPE|10 REGROLE|10 REGNAMESPACE|10 REGCONFIG|10 REGDICTIONARY|10 ",u=l.trim().split(" ").map((function(b){return b.split("|")[0]})).join("|"),A="ARRAY_AGG AVG BIT_AND BIT_OR BOOL_AND BOOL_OR COUNT EVERY JSON_AGG JSONB_AGG JSON_OBJECT_AGG JSONB_OBJECT_AGG MAX MIN MODE STRING_AGG SUM XMLAGG CORR COVAR_POP COVAR_SAMP REGR_AVGX REGR_AVGY REGR_COUNT REGR_INTERCEPT REGR_R2 REGR_SLOPE REGR_SXX REGR_SXY REGR_SYY STDDEV STDDEV_POP STDDEV_SAMP VARIANCE VAR_POP VAR_SAMP PERCENTILE_CONT PERCENTILE_DISC ROW_NUMBER RANK DENSE_RANK PERCENT_RANK CUME_DIST NTILE LAG LEAD FIRST_VALUE LAST_VALUE NTH_VALUE NUM_NONNULLS NUM_NULLS ABS CBRT CEIL CEILING DEGREES DIV EXP FLOOR LN LOG MOD PI POWER RADIANS ROUND SCALE SIGN SQRT TRUNC WIDTH_BUCKET RANDOM SETSEED ACOS ACOSD ASIN ASIND ATAN ATAND ATAN2 ATAN2D COS COSD COT COTD SIN SIND TAN TAND BIT_LENGTH CHAR_LENGTH CHARACTER_LENGTH LOWER OCTET_LENGTH OVERLAY POSITION SUBSTRING TREAT TRIM UPPER ASCII BTRIM CHR CONCAT CONCAT_WS CONVERT CONVERT_FROM CONVERT_TO DECODE ENCODE INITCAP LEFT LENGTH LPAD LTRIM MD5 PARSE_IDENT PG_CLIENT_ENCODING QUOTE_IDENT|10 QUOTE_LITERAL|10 QUOTE_NULLABLE|10 REGEXP_MATCH REGEXP_MATCHES REGEXP_REPLACE REGEXP_SPLIT_TO_ARRAY REGEXP_SPLIT_TO_TABLE REPEAT REPLACE REVERSE RIGHT RPAD RTRIM SPLIT_PART STRPOS SUBSTR TO_ASCII TO_HEX TRANSLATE OCTET_LENGTH GET_BIT GET_BYTE SET_BIT SET_BYTE TO_CHAR TO_DATE TO_NUMBER TO_TIMESTAMP AGE CLOCK_TIMESTAMP|10 DATE_PART DATE_TRUNC ISFINITE JUSTIFY_DAYS JUSTIFY_HOURS JUSTIFY_INTERVAL MAKE_DATE MAKE_INTERVAL|10 MAKE_TIME MAKE_TIMESTAMP|10 MAKE_TIMESTAMPTZ|10 NOW STATEMENT_TIMESTAMP|10 TIMEOFDAY TRANSACTION_TIMESTAMP|10 ENUM_FIRST ENUM_LAST ENUM_RANGE AREA CENTER DIAMETER HEIGHT ISCLOSED ISOPEN NPOINTS PCLOSE POPEN RADIUS WIDTH BOX BOUND_BOX CIRCLE LINE LSEG PATH POLYGON ABBREV BROADCAST HOST HOSTMASK MASKLEN NETMASK NETWORK SET_MASKLEN TEXT INET_SAME_FAMILY INET_MERGE MACADDR8_SET7BIT ARRAY_TO_TSVECTOR GET_CURRENT_TS_CONFIG NUMNODE PLAINTO_TSQUERY PHRASETO_TSQUERY WEBSEARCH_TO_TSQUERY QUERYTREE SETWEIGHT STRIP TO_TSQUERY TO_TSVECTOR JSON_TO_TSVECTOR JSONB_TO_TSVECTOR TS_DELETE TS_FILTER TS_HEADLINE TS_RANK TS_RANK_CD TS_REWRITE TSQUERY_PHRASE TSVECTOR_TO_ARRAY TSVECTOR_UPDATE_TRIGGER TSVECTOR_UPDATE_TRIGGER_COLUMN XMLCOMMENT XMLCONCAT XMLELEMENT XMLFOREST XMLPI XMLROOT XMLEXISTS XML_IS_WELL_FORMED XML_IS_WELL_FORMED_DOCUMENT XML_IS_WELL_FORMED_CONTENT XPATH XPATH_EXISTS XMLTABLE XMLNAMESPACES TABLE_TO_XML TABLE_TO_XMLSCHEMA TABLE_TO_XML_AND_XMLSCHEMA QUERY_TO_XML QUERY_TO_XMLSCHEMA QUERY_TO_XML_AND_XMLSCHEMA CURSOR_TO_XML CURSOR_TO_XMLSCHEMA SCHEMA_TO_XML SCHEMA_TO_XMLSCHEMA SCHEMA_TO_XML_AND_XMLSCHEMA DATABASE_TO_XML DATABASE_TO_XMLSCHEMA DATABASE_TO_XML_AND_XMLSCHEMA XMLATTRIBUTES TO_JSON TO_JSONB ARRAY_TO_JSON ROW_TO_JSON JSON_BUILD_ARRAY JSONB_BUILD_ARRAY JSON_BUILD_OBJECT JSONB_BUILD_OBJECT JSON_OBJECT JSONB_OBJECT JSON_ARRAY_LENGTH JSONB_ARRAY_LENGTH JSON_EACH JSONB_EACH JSON_EACH_TEXT JSONB_EACH_TEXT JSON_EXTRACT_PATH JSONB_EXTRACT_PATH JSON_OBJECT_KEYS JSONB_OBJECT_KEYS JSON_POPULATE_RECORD JSONB_POPULATE_RECORD JSON_POPULATE_RECORDSET JSONB_POPULATE_RECORDSET JSON_ARRAY_ELEMENTS JSONB_ARRAY_ELEMENTS JSON_ARRAY_ELEMENTS_TEXT JSONB_ARRAY_ELEMENTS_TEXT JSON_TYPEOF JSONB_TYPEOF JSON_TO_RECORD JSONB_TO_RECORD JSON_TO_RECORDSET JSONB_TO_RECORDSET JSON_STRIP_NULLS JSONB_STRIP_NULLS JSONB_SET JSONB_INSERT JSONB_PRETTY CURRVAL LASTVAL NEXTVAL SETVAL COALESCE NULLIF GREATEST LEAST ARRAY_APPEND ARRAY_CAT ARRAY_NDIMS ARRAY_DIMS ARRAY_FILL ARRAY_LENGTH ARRAY_LOWER ARRAY_POSITION ARRAY_POSITIONS ARRAY_PREPEND ARRAY_REMOVE ARRAY_REPLACE ARRAY_TO_STRING ARRAY_UPPER CARDINALITY STRING_TO_ARRAY UNNEST ISEMPTY LOWER_INC UPPER_INC LOWER_INF UPPER_INF RANGE_MERGE GENERATE_SERIES GENERATE_SUBSCRIPTS CURRENT_DATABASE CURRENT_QUERY CURRENT_SCHEMA|10 CURRENT_SCHEMAS|10 INET_CLIENT_ADDR INET_CLIENT_PORT INET_SERVER_ADDR INET_SERVER_PORT ROW_SECURITY_ACTIVE FORMAT_TYPE TO_REGCLASS TO_REGPROC TO_REGPROCEDURE TO_REGOPER TO_REGOPERATOR TO_REGTYPE TO_REGNAMESPACE TO_REGROLE COL_DESCRIPTION OBJ_DESCRIPTION SHOBJ_DESCRIPTION TXID_CURRENT TXID_CURRENT_IF_ASSIGNED TXID_CURRENT_SNAPSHOT TXID_SNAPSHOT_XIP TXID_SNAPSHOT_XMAX TXID_SNAPSHOT_XMIN TXID_VISIBLE_IN_SNAPSHOT TXID_STATUS CURRENT_SETTING SET_CONFIG BRIN_SUMMARIZE_NEW_VALUES BRIN_SUMMARIZE_RANGE BRIN_DESUMMARIZE_RANGE GIN_CLEAN_PENDING_LIST SUPPRESS_REDUNDANT_UPDATES_TRIGGER LO_FROM_BYTEA LO_PUT LO_GET LO_CREAT LO_CREATE LO_UNLINK LO_IMPORT LO_EXPORT LOREAD LOWRITE GROUPING CAST ".trim().split(" ").map((function(b){return b.split("|")[0]})).join("|");return{name:"PostgreSQL",aliases:["postgres","postgresql"],supersetOf:"sql",case_insensitive:!0,keywords:{keyword:"ABORT ALTER ANALYZE BEGIN CALL CHECKPOINT|10 CLOSE CLUSTER COMMENT COMMIT COPY CREATE DEALLOCATE DECLARE DELETE DISCARD DO DROP END EXECUTE EXPLAIN FETCH GRANT IMPORT INSERT LISTEN LOAD LOCK MOVE NOTIFY PREPARE REASSIGN|10 REFRESH REINDEX RELEASE RESET REVOKE ROLLBACK SAVEPOINT SECURITY SELECT SET SHOW START TRUNCATE UNLISTEN|10 UPDATE VACUUM|10 VALUES AGGREGATE COLLATION CONVERSION|10 DATABASE DEFAULT PRIVILEGES DOMAIN TRIGGER EXTENSION FOREIGN WRAPPER|10 TABLE FUNCTION GROUP LANGUAGE LARGE OBJECT MATERIALIZED VIEW OPERATOR CLASS FAMILY POLICY PUBLICATION|10 ROLE RULE SCHEMA SEQUENCE SERVER STATISTICS SUBSCRIPTION SYSTEM TABLESPACE CONFIGURATION DICTIONARY PARSER TEMPLATE TYPE USER MAPPING PREPARED ACCESS METHOD CAST AS TRANSFORM TRANSACTION OWNED TO INTO SESSION AUTHORIZATION INDEX PROCEDURE ASSERTION ALL ANALYSE AND ANY ARRAY ASC ASYMMETRIC|10 BOTH CASE CHECK COLLATE COLUMN CONCURRENTLY|10 CONSTRAINT CROSS DEFERRABLE RANGE DESC DISTINCT ELSE EXCEPT FOR FREEZE|10 FROM FULL HAVING ILIKE IN INITIALLY INNER INTERSECT IS ISNULL JOIN LATERAL LEADING LIKE LIMIT NATURAL NOT NOTNULL NULL OFFSET ON ONLY OR ORDER OUTER OVERLAPS PLACING PRIMARY REFERENCES RETURNING SIMILAR SOME SYMMETRIC TABLESAMPLE THEN TRAILING UNION UNIQUE USING VARIADIC|10 VERBOSE WHEN WHERE WINDOW WITH BY RETURNS INOUT OUT SETOF|10 IF STRICT CURRENT CONTINUE OWNER LOCATION OVER PARTITION WITHIN BETWEEN ESCAPE EXTERNAL INVOKER DEFINER WORK RENAME VERSION CONNECTION CONNECT TABLES TEMP TEMPORARY FUNCTIONS SEQUENCES TYPES SCHEMAS OPTION CASCADE RESTRICT ADD ADMIN EXISTS VALID VALIDATE ENABLE DISABLE REPLICA|10 ALWAYS PASSING COLUMNS PATH REF VALUE OVERRIDING IMMUTABLE STABLE VOLATILE BEFORE AFTER EACH ROW PROCEDURAL ROUTINE NO HANDLER VALIDATOR OPTIONS STORAGE OIDS|10 WITHOUT INHERIT DEPENDS CALLED INPUT LEAKPROOF|10 COST ROWS NOWAIT SEARCH UNTIL ENCRYPTED|10 PASSWORD CONFLICT|10 INSTEAD INHERITS CHARACTERISTICS WRITE CURSOR ALSO STATEMENT SHARE EXCLUSIVE INLINE ISOLATION REPEATABLE READ COMMITTED SERIALIZABLE UNCOMMITTED LOCAL GLOBAL SQL PROCEDURES RECURSIVE SNAPSHOT ROLLUP CUBE TRUSTED|10 INCLUDE FOLLOWING PRECEDING UNBOUNDED RANGE GROUPS UNENCRYPTED|10 SYSID FORMAT DELIMITER HEADER QUOTE ENCODING FILTER OFF FORCE_QUOTE FORCE_NOT_NULL FORCE_NULL COSTS BUFFERS TIMING SUMMARY DISABLE_PAGE_SKIPPING RESTART CYCLE GENERATED IDENTITY DEFERRED IMMEDIATE LEVEL LOGGED UNLOGGED OF NOTHING NONE EXCLUDE ATTRIBUTE USAGE ROUTINES TRUE FALSE NAN INFINITY ALIAS BEGIN CONSTANT DECLARE END EXCEPTION RETURN PERFORM|10 RAISE GET DIAGNOSTICS STACKED|10 FOREACH LOOP ELSIF EXIT WHILE REVERSE SLICE DEBUG LOG INFO NOTICE WARNING ASSERT OPEN SUPERUSER NOSUPERUSER CREATEDB NOCREATEDB CREATEROLE NOCREATEROLE INHERIT NOINHERIT LOGIN NOLOGIN REPLICATION NOREPLICATION BYPASSRLS NOBYPASSRLS ",built_in:"CURRENT_TIME CURRENT_TIMESTAMP CURRENT_USER CURRENT_CATALOG|10 CURRENT_DATE LOCALTIME LOCALTIMESTAMP CURRENT_ROLE|10 CURRENT_SCHEMA|10 SESSION_USER PUBLIC FOUND NEW OLD TG_NAME|10 TG_WHEN|10 TG_LEVEL|10 TG_OP|10 TG_RELID|10 TG_RELNAME|10 TG_TABLE_NAME|10 TG_TABLE_SCHEMA|10 TG_NARGS|10 TG_ARGV|10 TG_EVENT|10 TG_TAG|10 ROW_COUNT RESULT_OID|10 PG_CONTEXT|10 RETURNED_SQLSTATE COLUMN_NAME CONSTRAINT_NAME PG_DATATYPE_NAME|10 MESSAGE_TEXT TABLE_NAME SCHEMA_NAME PG_EXCEPTION_DETAIL|10 PG_EXCEPTION_HINT|10 PG_EXCEPTION_CONTEXT|10 SQLSTATE SQLERRM|10 SUCCESSFUL_COMPLETION WARNING DYNAMIC_RESULT_SETS_RETURNED IMPLICIT_ZERO_BIT_PADDING NULL_VALUE_ELIMINATED_IN_SET_FUNCTION PRIVILEGE_NOT_GRANTED PRIVILEGE_NOT_REVOKED STRING_DATA_RIGHT_TRUNCATION DEPRECATED_FEATURE NO_DATA NO_ADDITIONAL_DYNAMIC_RESULT_SETS_RETURNED SQL_STATEMENT_NOT_YET_COMPLETE CONNECTION_EXCEPTION CONNECTION_DOES_NOT_EXIST CONNECTION_FAILURE SQLCLIENT_UNABLE_TO_ESTABLISH_SQLCONNECTION SQLSERVER_REJECTED_ESTABLISHMENT_OF_SQLCONNECTION TRANSACTION_RESOLUTION_UNKNOWN PROTOCOL_VIOLATION TRIGGERED_ACTION_EXCEPTION FEATURE_NOT_SUPPORTED INVALID_TRANSACTION_INITIATION LOCATOR_EXCEPTION INVALID_LOCATOR_SPECIFICATION INVALID_GRANTOR INVALID_GRANT_OPERATION INVALID_ROLE_SPECIFICATION DIAGNOSTICS_EXCEPTION STACKED_DIAGNOSTICS_ACCESSED_WITHOUT_ACTIVE_HANDLER CASE_NOT_FOUND CARDINALITY_VIOLATION DATA_EXCEPTION ARRAY_SUBSCRIPT_ERROR CHARACTER_NOT_IN_REPERTOIRE DATETIME_FIELD_OVERFLOW DIVISION_BY_ZERO ERROR_IN_ASSIGNMENT ESCAPE_CHARACTER_CONFLICT INDICATOR_OVERFLOW INTERVAL_FIELD_OVERFLOW INVALID_ARGUMENT_FOR_LOGARITHM INVALID_ARGUMENT_FOR_NTILE_FUNCTION INVALID_ARGUMENT_FOR_NTH_VALUE_FUNCTION INVALID_ARGUMENT_FOR_POWER_FUNCTION INVALID_ARGUMENT_FOR_WIDTH_BUCKET_FUNCTION INVALID_CHARACTER_VALUE_FOR_CAST INVALID_DATETIME_FORMAT INVALID_ESCAPE_CHARACTER INVALID_ESCAPE_OCTET INVALID_ESCAPE_SEQUENCE NONSTANDARD_USE_OF_ESCAPE_CHARACTER INVALID_INDICATOR_PARAMETER_VALUE INVALID_PARAMETER_VALUE INVALID_REGULAR_EXPRESSION INVALID_ROW_COUNT_IN_LIMIT_CLAUSE INVALID_ROW_COUNT_IN_RESULT_OFFSET_CLAUSE INVALID_TABLESAMPLE_ARGUMENT INVALID_TABLESAMPLE_REPEAT INVALID_TIME_ZONE_DISPLACEMENT_VALUE INVALID_USE_OF_ESCAPE_CHARACTER MOST_SPECIFIC_TYPE_MISMATCH NULL_VALUE_NOT_ALLOWED NULL_VALUE_NO_INDICATOR_PARAMETER NUMERIC_VALUE_OUT_OF_RANGE SEQUENCE_GENERATOR_LIMIT_EXCEEDED STRING_DATA_LENGTH_MISMATCH STRING_DATA_RIGHT_TRUNCATION SUBSTRING_ERROR TRIM_ERROR UNTERMINATED_C_STRING ZERO_LENGTH_CHARACTER_STRING FLOATING_POINT_EXCEPTION INVALID_TEXT_REPRESENTATION INVALID_BINARY_REPRESENTATION BAD_COPY_FILE_FORMAT UNTRANSLATABLE_CHARACTER NOT_AN_XML_DOCUMENT INVALID_XML_DOCUMENT INVALID_XML_CONTENT INVALID_XML_COMMENT INVALID_XML_PROCESSING_INSTRUCTION INTEGRITY_CONSTRAINT_VIOLATION RESTRICT_VIOLATION NOT_NULL_VIOLATION FOREIGN_KEY_VIOLATION UNIQUE_VIOLATION CHECK_VIOLATION EXCLUSION_VIOLATION INVALID_CURSOR_STATE INVALID_TRANSACTION_STATE ACTIVE_SQL_TRANSACTION BRANCH_TRANSACTION_ALREADY_ACTIVE HELD_CURSOR_REQUIRES_SAME_ISOLATION_LEVEL INAPPROPRIATE_ACCESS_MODE_FOR_BRANCH_TRANSACTION INAPPROPRIATE_ISOLATION_LEVEL_FOR_BRANCH_TRANSACTION NO_ACTIVE_SQL_TRANSACTION_FOR_BRANCH_TRANSACTION READ_ONLY_SQL_TRANSACTION SCHEMA_AND_DATA_STATEMENT_MIXING_NOT_SUPPORTED NO_ACTIVE_SQL_TRANSACTION IN_FAILED_SQL_TRANSACTION IDLE_IN_TRANSACTION_SESSION_TIMEOUT INVALID_SQL_STATEMENT_NAME TRIGGERED_DATA_CHANGE_VIOLATION INVALID_AUTHORIZATION_SPECIFICATION INVALID_PASSWORD DEPENDENT_PRIVILEGE_DESCRIPTORS_STILL_EXIST DEPENDENT_OBJECTS_STILL_EXIST INVALID_TRANSACTION_TERMINATION SQL_ROUTINE_EXCEPTION FUNCTION_EXECUTED_NO_RETURN_STATEMENT MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED INVALID_CURSOR_NAME EXTERNAL_ROUTINE_EXCEPTION CONTAINING_SQL_NOT_PERMITTED MODIFYING_SQL_DATA_NOT_PERMITTED PROHIBITED_SQL_STATEMENT_ATTEMPTED READING_SQL_DATA_NOT_PERMITTED EXTERNAL_ROUTINE_INVOCATION_EXCEPTION INVALID_SQLSTATE_RETURNED NULL_VALUE_NOT_ALLOWED TRIGGER_PROTOCOL_VIOLATED SRF_PROTOCOL_VIOLATED EVENT_TRIGGER_PROTOCOL_VIOLATED SAVEPOINT_EXCEPTION INVALID_SAVEPOINT_SPECIFICATION INVALID_CATALOG_NAME INVALID_SCHEMA_NAME TRANSACTION_ROLLBACK TRANSACTION_INTEGRITY_CONSTRAINT_VIOLATION SERIALIZATION_FAILURE STATEMENT_COMPLETION_UNKNOWN DEADLOCK_DETECTED SYNTAX_ERROR_OR_ACCESS_RULE_VIOLATION SYNTAX_ERROR INSUFFICIENT_PRIVILEGE CANNOT_COERCE GROUPING_ERROR WINDOWING_ERROR INVALID_RECURSION INVALID_FOREIGN_KEY INVALID_NAME NAME_TOO_LONG RESERVED_NAME DATATYPE_MISMATCH INDETERMINATE_DATATYPE COLLATION_MISMATCH INDETERMINATE_COLLATION WRONG_OBJECT_TYPE GENERATED_ALWAYS UNDEFINED_COLUMN UNDEFINED_FUNCTION UNDEFINED_TABLE UNDEFINED_PARAMETER UNDEFINED_OBJECT DUPLICATE_COLUMN DUPLICATE_CURSOR DUPLICATE_DATABASE DUPLICATE_FUNCTION DUPLICATE_PREPARED_STATEMENT DUPLICATE_SCHEMA DUPLICATE_TABLE DUPLICATE_ALIAS DUPLICATE_OBJECT AMBIGUOUS_COLUMN AMBIGUOUS_FUNCTION AMBIGUOUS_PARAMETER AMBIGUOUS_ALIAS INVALID_COLUMN_REFERENCE INVALID_COLUMN_DEFINITION INVALID_CURSOR_DEFINITION INVALID_DATABASE_DEFINITION INVALID_FUNCTION_DEFINITION INVALID_PREPARED_STATEMENT_DEFINITION INVALID_SCHEMA_DEFINITION INVALID_TABLE_DEFINITION INVALID_OBJECT_DEFINITION WITH_CHECK_OPTION_VIOLATION INSUFFICIENT_RESOURCES DISK_FULL OUT_OF_MEMORY TOO_MANY_CONNECTIONS CONFIGURATION_LIMIT_EXCEEDED PROGRAM_LIMIT_EXCEEDED STATEMENT_TOO_COMPLEX TOO_MANY_COLUMNS TOO_MANY_ARGUMENTS OBJECT_NOT_IN_PREREQUISITE_STATE OBJECT_IN_USE CANT_CHANGE_RUNTIME_PARAM LOCK_NOT_AVAILABLE OPERATOR_INTERVENTION QUERY_CANCELED ADMIN_SHUTDOWN CRASH_SHUTDOWN CANNOT_CONNECT_NOW DATABASE_DROPPED SYSTEM_ERROR IO_ERROR UNDEFINED_FILE DUPLICATE_FILE SNAPSHOT_TOO_OLD CONFIG_FILE_ERROR LOCK_FILE_EXISTS FDW_ERROR FDW_COLUMN_NAME_NOT_FOUND FDW_DYNAMIC_PARAMETER_VALUE_NEEDED FDW_FUNCTION_SEQUENCE_ERROR FDW_INCONSISTENT_DESCRIPTOR_INFORMATION FDW_INVALID_ATTRIBUTE_VALUE FDW_INVALID_COLUMN_NAME FDW_INVALID_COLUMN_NUMBER FDW_INVALID_DATA_TYPE FDW_INVALID_DATA_TYPE_DESCRIPTORS FDW_INVALID_DESCRIPTOR_FIELD_IDENTIFIER FDW_INVALID_HANDLE FDW_INVALID_OPTION_INDEX FDW_INVALID_OPTION_NAME FDW_INVALID_STRING_LENGTH_OR_BUFFER_LENGTH FDW_INVALID_STRING_FORMAT FDW_INVALID_USE_OF_NULL_POINTER FDW_TOO_MANY_HANDLES FDW_OUT_OF_MEMORY FDW_NO_SCHEMAS FDW_OPTION_NAME_NOT_FOUND FDW_REPLY_HANDLE FDW_SCHEMA_NOT_FOUND FDW_TABLE_NOT_FOUND FDW_UNABLE_TO_CREATE_EXECUTION FDW_UNABLE_TO_CREATE_REPLY FDW_UNABLE_TO_ESTABLISH_CONNECTION PLPGSQL_ERROR RAISE_EXCEPTION NO_DATA_FOUND TOO_MANY_ROWS ASSERT_FAILURE INTERNAL_ERROR DATA_CORRUPTED INDEX_CORRUPTED "},illegal:/:==|\W\s*\(\*|(^|\s)\$[a-z]|\{\{|[a-z]:\s*$|\.\.\.|TO:|DO:/,contains:[{className:"keyword",variants:[{begin:/\bTEXT\s*SEARCH\b/},{begin:/\b(PRIMARY|FOREIGN|FOR(\s+NO)?)\s+KEY\b/},{begin:/\bPARALLEL\s+(UNSAFE|RESTRICTED|SAFE)\b/},{begin:/\bSTORAGE\s+(PLAIN|EXTERNAL|EXTENDED|MAIN)\b/},{begin:/\bMATCH\s+(FULL|PARTIAL|SIMPLE)\b/},{begin:/\bNULLS\s+(FIRST|LAST)\b/},{begin:/\bEVENT\s+TRIGGER\b/},{begin:/\b(MAPPING|OR)\s+REPLACE\b/},{begin:/\b(FROM|TO)\s+(PROGRAM|STDIN|STDOUT)\b/},{begin:/\b(SHARE|EXCLUSIVE)\s+MODE\b/},{begin:/\b(LEFT|RIGHT)\s+(OUTER\s+)?JOIN\b/},{begin:/\b(FETCH|MOVE)\s+(NEXT|PRIOR|FIRST|LAST|ABSOLUTE|RELATIVE|FORWARD|BACKWARD)\b/},{begin:/\bPRESERVE\s+ROWS\b/},{begin:/\bDISCARD\s+PLANS\b/},{begin:/\bREFERENCING\s+(OLD|NEW)\b/},{begin:/\bSKIP\s+LOCKED\b/},{begin:/\bGROUPING\s+SETS\b/},{begin:/\b(BINARY|INSENSITIVE|SCROLL|NO\s+SCROLL)\s+(CURSOR|FOR)\b/},{begin:/\b(WITH|WITHOUT)\s+HOLD\b/},{begin:/\bWITH\s+(CASCADED|LOCAL)\s+CHECK\s+OPTION\b/},{begin:/\bEXCLUDE\s+(TIES|NO\s+OTHERS)\b/},{begin:/\bFORMAT\s+(TEXT|XML|JSON|YAML)\b/},{begin:/\bSET\s+((SESSION|LOCAL)\s+)?NAMES\b/},{begin:/\bIS\s+(NOT\s+)?UNKNOWN\b/},{begin:/\bSECURITY\s+LABEL\b/},{begin:/\bSTANDALONE\s+(YES|NO|NO\s+VALUE)\b/},{begin:/\bWITH\s+(NO\s+)?DATA\b/},{begin:/\b(FOREIGN|SET)\s+DATA\b/},{begin:/\bSET\s+(CATALOG|CONSTRAINTS)\b/},{begin:/\b(WITH|FOR)\s+ORDINALITY\b/},{begin:/\bIS\s+(NOT\s+)?DOCUMENT\b/},{begin:/\bXML\s+OPTION\s+(DOCUMENT|CONTENT)\b/},{begin:/\b(STRIP|PRESERVE)\s+WHITESPACE\b/},{begin:/\bNO\s+(ACTION|MAXVALUE|MINVALUE)\b/},{begin:/\bPARTITION\s+BY\s+(RANGE|LIST|HASH)\b/},{begin:/\bAT\s+TIME\s+ZONE\b/},{begin:/\bGRANTED\s+BY\b/},{begin:/\bRETURN\s+(QUERY|NEXT)\b/},{begin:/\b(ATTACH|DETACH)\s+PARTITION\b/},{begin:/\bFORCE\s+ROW\s+LEVEL\s+SECURITY\b/},{begin:/\b(INCLUDING|EXCLUDING)\s+(COMMENTS|CONSTRAINTS|DEFAULTS|IDENTITY|INDEXES|STATISTICS|STORAGE|ALL)\b/},{begin:/\bAS\s+(ASSIGNMENT|IMPLICIT|PERMISSIVE|RESTRICTIVE|ENUM|RANGE)\b/}]},{begin:/\b(FORMAT|FAMILY|VERSION)\s*\(/},{begin:/\bINCLUDE\s*\(/,keywords:"INCLUDE"},{begin:/\bRANGE(?!\s*(BETWEEN|UNBOUNDED|CURRENT|[-0-9]+))/},{begin:/\b(VERSION|OWNER|TEMPLATE|TABLESPACE|CONNECTION\s+LIMIT|PROCEDURE|RESTRICT|JOIN|PARSER|COPY|START|END|COLLATION|INPUT|ANALYZE|STORAGE|LIKE|DEFAULT|DELIMITER|ENCODING|COLUMN|CONSTRAINT|TABLE|SCHEMA)\s*=/},{begin:/\b(PG_\w+?|HAS_[A-Z_]+_PRIVILEGE)\b/,relevance:10},{begin:/\bEXTRACT\s*\(/,end:/\bFROM\b/,returnEnd:!0,keywords:{type:"CENTURY DAY DECADE DOW DOY EPOCH HOUR ISODOW ISOYEAR MICROSECONDS MILLENNIUM MILLISECONDS MINUTE MONTH QUARTER SECOND TIMEZONE TIMEZONE_HOUR TIMEZONE_MINUTE WEEK YEAR"}},{begin:/\b(XMLELEMENT|XMLPI)\s*\(\s*NAME/,keywords:{keyword:"NAME"}},{begin:/\b(XMLPARSE|XMLSERIALIZE)\s*\(\s*(DOCUMENT|CONTENT)/,keywords:{keyword:"DOCUMENT CONTENT"}},{beginKeywords:"CACHE INCREMENT MAXVALUE MINVALUE",end:e.C_NUMBER_RE,returnEnd:!0,keywords:"BY CACHE INCREMENT MAXVALUE MINVALUE"},{className:"type",begin:/\b(WITH|WITHOUT)\s+TIME\s+ZONE\b/},{className:"type",begin:/\bINTERVAL\s+(YEAR|MONTH|DAY|HOUR|MINUTE|SECOND)(\s+TO\s+(MONTH|HOUR|MINUTE|SECOND))?\b/},{begin:/\bRETURNS\s+(LANGUAGE_HANDLER|TRIGGER|EVENT_TRIGGER|FDW_HANDLER|INDEX_AM_HANDLER|TSM_HANDLER)\b/,keywords:{keyword:"RETURNS",type:"LANGUAGE_HANDLER TRIGGER EVENT_TRIGGER FDW_HANDLER INDEX_AM_HANDLER TSM_HANDLER"}},{begin:"\\b("+A+")\\s*\\("},{begin:"\\.("+u+")\\b"},{begin:"\\b("+u+")\\s+PATH\\b",keywords:{keyword:"PATH",type:l.replace("PATH ","")}},{className:"type",begin:"\\b("+u+")\\b"},{className:"string",begin:"'",end:"'",contains:[{begin:"''"}]},{className:"string",begin:"(e|E|u&|U&)'",end:"'",contains:[{begin:"\\\\."}],relevance:10},e.END_SAME_AS_BEGIN({begin:r,end:r,contains:[{subLanguage:["pgsql","perl","python","tcl","r","lua","java","php","ruby","bash","scheme","xml","json"],endsWithParent:!0}]}),{begin:'"',end:'"',contains:[{begin:'""'}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,t,{className:"meta",variants:[{begin:"%(ROW)?TYPE",relevance:10},{begin:"\\$\\d+"},{begin:"^#\\w",end:"$"}]},{className:"symbol",begin:"<<\\s*[a-zA-Z_][a-zA-Z_0-9$]*\\s*>>",relevance:10}]}})),X.registerLanguage("php",(function(e){const t=e.regex,n=/(?![A-Za-z0-9])(?![$])/,r=t.concat(/[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/,n),o=t.concat(/(\\?[A-Z][a-z0-9_\x7f-\xff]+|\\?[A-Z]+(?=[A-Z][a-z0-9_\x7f-\xff])){1,}/,n),a={scope:"variable",match:"\\$+"+r},i={scope:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/,end:/\}/}]},l=e.inherit(e.APOS_STRING_MODE,{illegal:null}),d="[ \t\n]",g={scope:"string",variants:[e.inherit(e.QUOTE_STRING_MODE,{illegal:null,contains:e.QUOTE_STRING_MODE.contains.concat(i)}),l,{begin:/<<<[ \t]*(?:(\w+)|"(\w+)")\n/,end:/[ \t]*(\w+)\b/,contains:e.QUOTE_STRING_MODE.contains.concat(i),"on:begin":(Y,O)=>{O.data._beginMatch=Y[1]||Y[2]},"on:end":(Y,O)=>{O.data._beginMatch!==Y[1]&&O.ignoreMatch()}},e.END_SAME_AS_BEGIN({begin:/<<<[ \t]*'(\w+)'\n/,end:/[ \t]*(\w+)\b/})]},A={scope:"number",variants:[{begin:"\\b0[bB][01]+(?:_[01]+)*\\b"},{begin:"\\b0[oO][0-7]+(?:_[0-7]+)*\\b"},{begin:"\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b"},{begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"}],relevance:0},b=["false","null","true"],C=["__CLASS__","__DIR__","__FILE__","__FUNCTION__","__COMPILER_HALT_OFFSET__","__LINE__","__METHOD__","__NAMESPACE__","__TRAIT__","die","echo","exit","include","include_once","print","require","require_once","array","abstract","and","as","binary","bool","boolean","break","callable","case","catch","class","clone","const","continue","declare","default","do","double","else","elseif","empty","enddeclare","endfor","endforeach","endif","endswitch","endwhile","enum","eval","extends","final","finally","float","for","foreach","from","global","goto","if","implements","instanceof","insteadof","int","integer","interface","isset","iterable","list","match|0","mixed","new","never","object","or","private","protected","public","readonly","real","return","string","switch","throw","trait","try","unset","use","var","void","while","xor","yield"],h=["Error|0","AppendIterator","ArgumentCountError","ArithmeticError","ArrayIterator","ArrayObject","AssertionError","BadFunctionCallException","BadMethodCallException","CachingIterator","CallbackFilterIterator","CompileError","Countable","DirectoryIterator","DivisionByZeroError","DomainException","EmptyIterator","ErrorException","Exception","FilesystemIterator","FilterIterator","GlobIterator","InfiniteIterator","InvalidArgumentException","IteratorIterator","LengthException","LimitIterator","LogicException","MultipleIterator","NoRewindIterator","OutOfBoundsException","OutOfRangeException","OuterIterator","OverflowException","ParentIterator","ParseError","RangeException","RecursiveArrayIterator","RecursiveCachingIterator","RecursiveCallbackFilterIterator","RecursiveDirectoryIterator","RecursiveFilterIterator","RecursiveIterator","RecursiveIteratorIterator","RecursiveRegexIterator","RecursiveTreeIterator","RegexIterator","RuntimeException","SeekableIterator","SplDoublyLinkedList","SplFileInfo","SplFileObject","SplFixedArray","SplHeap","SplMaxHeap","SplMinHeap","SplObjectStorage","SplObserver","SplPriorityQueue","SplQueue","SplStack","SplSubject","SplTempFileObject","TypeError","UnderflowException","UnexpectedValueException","UnhandledMatchError","ArrayAccess","BackedEnum","Closure","Fiber","Generator","Iterator","IteratorAggregate","Serializable","Stringable","Throwable","Traversable","UnitEnum","WeakReference","WeakMap","Directory","__PHP_Incomplete_Class","parent","php_user_filter","self","static","stdClass"],E={keyword:C,literal:(Y=>{const O=[];return Y.forEach((G=>{O.push(G),G.toLowerCase()===G?O.push(G.toUpperCase()):O.push(G.toLowerCase())})),O})(b),built_in:h},v=Y=>Y.map((O=>O.replace(/\|\d+$/,""))),N={variants:[{match:[/new/,t.concat(d,"+"),t.concat("(?!",v(h).join("\\b|"),"\\b)"),o],scope:{1:"keyword",4:"title.class"}}]},_=t.concat(r,"\\b(?!\\()"),S={variants:[{match:[t.concat(/::/,t.lookahead(/(?!class\b)/)),_],scope:{2:"variable.constant"}},{match:[/::/,/class/],scope:{2:"variable.language"}},{match:[o,t.concat(/::/,t.lookahead(/(?!class\b)/)),_],scope:{1:"title.class",3:"variable.constant"}},{match:[o,t.concat("::",t.lookahead(/(?!class\b)/))],scope:{1:"title.class"}},{match:[o,/::/,/class/],scope:{1:"title.class",3:"variable.language"}}]},R={scope:"attr",match:t.concat(r,t.lookahead(":"),t.lookahead(/(?!::)/))},q={relevance:0,begin:/\(/,end:/\)/,keywords:E,contains:[R,a,S,e.C_BLOCK_COMMENT_MODE,g,A,N]},I={relevance:0,match:[/\b/,t.concat("(?!fn\\b|function\\b|",v(C).join("\\b|"),"|",v(h).join("\\b|"),"\\b)"),r,t.concat(d,"*"),t.lookahead(/(?=\()/)],scope:{3:"title.function.invoke"},contains:[q]};q.contains.push(I);const Q=[R,S,e.C_BLOCK_COMMENT_MODE,g,A,N];return{case_insensitive:!1,keywords:E,contains:[{begin:t.concat(/#\[\s*/,o),beginScope:"meta",end:/]/,endScope:"meta",keywords:{literal:b,keyword:["new","array"]},contains:[{begin:/\[/,end:/]/,keywords:{literal:b,keyword:["new","array"]},contains:["self",...Q]},...Q,{scope:"meta",match:o}]},e.HASH_COMMENT_MODE,e.COMMENT("//","$"),e.COMMENT("/\\*","\\*/",{contains:[{scope:"doctag",match:"@[A-Za-z]+"}]}),{match:/__halt_compiler\(\);/,keywords:"__halt_compiler",starts:{scope:"comment",end:e.MATCH_NOTHING_RE,contains:[{match:/\?>/,scope:"meta",endsParent:!0}]}},{scope:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?=/},{begin:/<\?/,relevance:.1},{begin:/\?>/}]},{scope:"variable.language",match:/\$this\b/},a,I,S,{match:[/const/,/\s/,r],scope:{1:"keyword",3:"variable.constant"}},N,{scope:"function",relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0,illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{begin:"=>",endsParent:!0},{scope:"params",begin:"\\(",end:"\\)",excludeBegin:!0,excludeEnd:!0,keywords:E,contains:["self",a,S,e.C_BLOCK_COMMENT_MODE,g,A]}]},{scope:"class",variants:[{beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait",illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/,contains:[e.inherit(e.UNDERSCORE_TITLE_MODE,{scope:"title.class"})]},{beginKeywords:"use",relevance:0,end:";",contains:[{match:/\b(as|const|function)\b/,scope:"keyword"},e.UNDERSCORE_TITLE_MODE]},g,A]}})),X.registerLanguage("php-template",(function(e){return{name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/,subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"',end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},e.inherit(e.APOS_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0}),e.inherit(e.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null,skip:!0})]}]}})),X.registerLanguage("plaintext",(function(e){return{name:"Plain text",aliases:["text","txt"],disableAutodetect:!0}})),X.registerLanguage("python",(function(e){const t=e.regex,n=new RegExp("[\\p{XID_Start}_]\\p{XID_Continue}*","u"),r=["and","as","assert","async","await","break","case","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","match","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"],i={$pattern:/[A-Za-z]\w+|__\w+__/,keyword:r,built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"],literal:["__debug__","Ellipsis","False","None","NotImplemented","True"],type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"]},l={className:"meta",begin:/^(>>>|\.\.\.) /},u={className:"subst",begin:/\{/,end:/\}/,keywords:i,illegal:/#/},c={begin:/\{\{/,relevance:0},p={className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,l],relevance:10},{begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,l],relevance:10},{begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/,contains:[e.BACKSLASH_ESCAPE,l,c,u]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/,end:/"""/,contains:[e.BACKSLASH_ESCAPE,l,c,u]},{begin:/([uU]|[rR])'/,end:/'/,relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/,end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/,contains:[e.BACKSLASH_ESCAPE,c,u]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/,contains:[e.BACKSLASH_ESCAPE,c,u]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},d="[0-9](_?[0-9])*",g=`(\\b(${d}))?\\.(${d})|\\b(${d})\\.`,A=`\\b|${r.join("|")}`,b={className:"number",relevance:0,variants:[{begin:`(\\b(${d})|(${g}))[eE][+-]?(${d})[jJ]?(?=${A})`},{begin:`(${g})[jJ]?`},{begin:`\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?=${A})`},{begin:`\\b0[bB](_?[01])+[lL]?(?=${A})`},{begin:`\\b0[oO](_?[0-7])+[lL]?(?=${A})`},{begin:`\\b0[xX](_?[0-9a-fA-F])+[lL]?(?=${A})`},{begin:`\\b(${d})[jJ](?=${A})`}]},C={className:"comment",begin:t.lookahead(/# type:/),end:/$/,keywords:i,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/,endsWithParent:!0}]},h={className:"params",variants:[{className:"",begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:["self",l,b,p,e.HASH_COMMENT_MODE]}]};return u.contains=[p,b,l],{name:"Python",aliases:["py","gyp","ipython"],unicodeRegex:!0,keywords:i,illegal:/(<\/|\?)|=>/,contains:[l,b,{begin:/\bself\b/},{beginKeywords:"if",relevance:0},p,C,e.HASH_COMMENT_MODE,{match:[/\bdef/,/\s+/,n],scope:{1:"keyword",3:"title.function"},contains:[h]},{variants:[{match:[/\bclass/,/\s+/,n,/\s*/,/\(\s*/,n,/\s*\)/]},{match:[/\bclass/,/\s+/,n]}],scope:{1:"keyword",3:"title.class",6:"title.class.inherited"}},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[b,h,p]}]}})),X.registerLanguage("python-repl",(function(e){return{aliases:["pycon"],contains:[{className:"meta.prompt",starts:{end:/ |$/,starts:{end:"$",subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{begin:/^\.\.\.(?=[ ]|$)/}]}]}})),X.registerLanguage("r",(function(e){const t=e.regex,n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/,r=t.either(/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/,/0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/,/(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/),o=/[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/,a=t.either(/[()]/,/[{}]/,/\[\[/,/[[\]]/,/\\/,/,/);return{name:"R",keywords:{$pattern:n,keyword:"function if in break next repeat else for while",literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10",built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"},contains:[e.COMMENT(/#'/,/$/,{contains:[{scope:"doctag",match:/@examples/,starts:{end:t.lookahead(t.either(/\n^#'\s*(?=@[a-zA-Z]+)/,/\n^(?!#')/)),endsParent:!0}},{scope:"doctag",begin:"@param",end:/$/,contains:[{scope:"variable",variants:[{match:n},{match:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{scope:"doctag",match:/@[a-zA-Z]+/},{scope:"keyword",match:/\\[a-zA-Z]+/}]}),e.HASH_COMMENT_MODE,{scope:"string",contains:[e.BACKSLASH_ESCAPE],variants:[e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/}),e.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"',relevance:0},{begin:"'",end:"'",relevance:0}]},{relevance:0,variants:[{scope:{1:"operator",2:"number"},match:[o,r]},{scope:{1:"operator",2:"number"},match:[/%[^%]*%/,r]},{scope:{1:"punctuation",2:"number"},match:[a,r]},{scope:{2:"number"},match:[/[^a-zA-Z0-9._]|^/,r]}]},{scope:{3:"operator"},match:[n,/\s+/,/<-/,/\s+/]},{scope:"operator",relevance:0,variants:[{match:o},{match:/%[^%]*%/}]},{scope:"punctuation",relevance:0,match:a},{begin:"`",end:"`",contains:[{begin:/\\./}]}]}})),X.registerLanguage("ruby",(function(e){const t=e.regex,n="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",r=t.either(/\b([A-Z]+[a-z0-9]+)+/,/\b([A-Z]+[a-z0-9]+)+[A-Z]+/),o=t.concat(r,/(::\w+)*/),s={"variable.constant":["__FILE__","__LINE__","__ENCODING__"],"variable.language":["self","super"],keyword:["alias","and","begin","BEGIN","break","case","class","defined","do","else","elsif","end","END","ensure","for","if","in","module","next","not","or","redo","require","rescue","retry","return","then","undef","unless","until","when","while","yield","include","extend","prepend","public","private","protected","raise","throw"],built_in:["proc","lambda","attr_accessor","attr_reader","attr_writer","define_method","private_constant","module_function"],literal:["true","false","nil"]},i={className:"doctag",begin:"@[A-Za-z]+"},l={begin:"#<",end:">"},u=[e.COMMENT("#","$",{contains:[i]}),e.COMMENT("^=begin","^=end",{contains:[i],relevance:10}),e.COMMENT("^__END__",e.MATCH_NOTHING_RE)],c={className:"subst",begin:/#\{/,end:/\}/,keywords:s},p={className:"string",contains:[e.BACKSLASH_ESCAPE,c],variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/,end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{begin:/%[qQwWx]?</,end:/>/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/,end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{begin:t.concat(/<<[-~]?'?/,t.lookahead(/(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/)),contains:[e.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/,contains:[e.BACKSLASH_ESCAPE,c]})]}]},g="[0-9](_?[0-9])*",A={className:"number",relevance:0,variants:[{begin:`\\b([1-9](_?[0-9])*|0)(\\.(${g}))?([eE][+-]?(${g})|r)?i?\\b`},{begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{begin:"\\b0(_?[0-7])+r?i?\\b"}]},b={variants:[{match:/\(\)/},{className:"params",begin:/\(/,end:/(?=\))/,excludeBegin:!0,endsParent:!0,keywords:s}]},_=[p,{variants:[{match:[/class\s+/,o,/\s+<\s+/,o]},{match:[/\b(class|module)\s+/,o]}],scope:{2:"title.class",4:"title.class.inherited"},keywords:s},{match:[/(include|extend)\s+/,o],scope:{2:"title.class"},keywords:s},{relevance:0,match:[o,/\.new[. (]/],scope:{1:"title.class"}},{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},{relevance:0,match:r,scope:"title.class"},{match:[/def/,/\s+/,n],scope:{1:"keyword",3:"title.function"},contains:[b]},{begin:e.IDENT_RE+"::"},{className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol",begin:":(?!\\s)",contains:[p,{begin:n}],relevance:0},A,{className:"variable",begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{className:"params",begin:/\|/,end:/\|/,excludeBegin:!0,excludeEnd:!0,relevance:0,keywords:s},{begin:"("+e.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{className:"regexp",contains:[e.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(",end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}]}].concat(l,u),relevance:0}].concat(l,u);c.contains=_,b.contains=_;const I=[{begin:/^\s*=>/,starts:{end:"$",contains:_}},{className:"meta.prompt",begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+[>*]|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])",starts:{end:"$",keywords:s,contains:_}}];return u.unshift(l),{name:"Ruby",aliases:["rb","gemspec","podspec","thor","irb"],keywords:s,illegal:/\/\*/,contains:[e.SHEBANG({binary:"ruby"})].concat(I).concat(u).concat(_)}})),X.registerLanguage("rust",(function(e){const t=e.regex,n={className:"title.function.invoke",relevance:0,begin:t.concat(/\b/,/(?!let|for|while|if|else|match\b)/,e.IDENT_RE,t.lookahead(/\s*\(/))},r="([ui](8|16|32|64|128|size)|f(32|64))?",s=["drop ","Copy","Send","Sized","Sync","Drop","Fn","FnMut","FnOnce","ToOwned","Clone","Debug","PartialEq","PartialOrd","Eq","Ord","AsRef","AsMut","Into","From","Default","Iterator","Extend","IntoIterator","DoubleEndedIterator","ExactSizeIterator","SliceConcatExt","ToString","assert!","assert_eq!","bitflags!","bytes!","cfg!","col!","concat!","concat_idents!","debug_assert!","debug_assert_eq!","env!","eprintln!","panic!","file!","format!","format_args!","include_bytes!","include_str!","line!","local_data_key!","module_path!","option_env!","print!","println!","select!","stringify!","try!","unimplemented!","unreachable!","vec!","write!","writeln!","macro_rules!","assert_ne!","debug_assert_ne!"],i=["i8","i16","i32","i64","i128","isize","u8","u16","u32","u64","u128","usize","f32","f64","str","char","bool","Box","Option","Result","String","Vec"];return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?",type:i,keyword:["abstract","as","async","await","become","box","break","const","continue","crate","do","dyn","else","enum","extern","false","final","fn","for","if","impl","in","let","loop","macro","match","mod","move","mut","override","priv","pub","ref","return","self","Self","static","struct","super","trait","true","try","type","typeof","unsafe","unsized","use","virtual","where","while","yield"],literal:["true","false","Some","None","Ok","Err"],built_in:s},illegal:"</",contains:[e.C_LINE_COMMENT_MODE,e.COMMENT("/\\*","\\*/",{contains:["self"]}),e.inherit(e.QUOTE_STRING_MODE,{begin:/b?"/,illegal:null}),{className:"string",variants:[{begin:/b?r(#*)"(.|\n)*?"\1(?!#)/},{begin:/b?'\\?(x\w{2}|u\w{4}|U\w{8}|.)'/}]},{className:"symbol",begin:/'[a-zA-Z_][a-zA-Z0-9_]*/},{className:"number",variants:[{begin:"\\b0b([01_]+)"+r},{begin:"\\b0o([0-7_]+)"+r},{begin:"\\b0x([A-Fa-f0-9_]+)"+r},{begin:"\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)"+r}],relevance:0},{begin:[/fn/,/\s+/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",3:"title.function"}},{className:"meta",begin:"#!?\\[",end:"\\]",contains:[{className:"string",begin:/"/,end:/"/}]},{begin:[/let/,/\s+/,/(?:mut\s+)?/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",3:"keyword",4:"variable"}},{begin:[/for/,/\s+/,e.UNDERSCORE_IDENT_RE,/\s+/,/in/],className:{1:"keyword",3:"variable",5:"keyword"}},{begin:[/type/,/\s+/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",3:"title.class"}},{begin:[/(?:trait|enum|struct|union|impl|for)/,/\s+/,e.UNDERSCORE_IDENT_RE],className:{1:"keyword",3:"title.class"}},{begin:e.IDENT_RE+"::",keywords:{keyword:"Self",built_in:s,type:i}},{className:"punctuation",begin:"->"},n]}})),X.registerLanguage("scss",(function(e){const t=(e=>({IMPORTANT:{scope:"meta",begin:"!important"},BLOCK_COMMENT:e.C_BLOCK_COMMENT_MODE,HEXCOLOR:{scope:"number",begin:/#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/},FUNCTION_DISPATCH:{className:"built_in",begin:/[\w-]+(?=\()/},ATTRIBUTE_SELECTOR_MODE:{scope:"selector-attr",begin:/\[/,end:/\]/,illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]},CSS_NUMBER_MODE:{scope:"number",begin:e.NUMBER_RE+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?",relevance:0},CSS_VARIABLE:{className:"attr",begin:/--[A-Za-z_][A-Za-z0-9_-]*/}}))(e),n=$y,r=Gy,o="@[a-z-]+",i={className:"variable",begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b",relevance:0};return{name:"SCSS",case_insensitive:!0,illegal:"[=/|']",contains:[e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,t.CSS_NUMBER_MODE,{className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0},t.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag",begin:"\\b("+Vy.join("|")+")\\b",relevance:0},{className:"selector-pseudo",begin:":("+r.join("|")+")"},{className:"selector-pseudo",begin:":(:)?("+n.join("|")+")"},i,{begin:/\(/,end:/\)/,contains:[t.CSS_NUMBER_MODE]},t.CSS_VARIABLE,{className:"attribute",begin:"\\b("+Zy.join("|")+")\\b"},{begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"},{begin:/:/,end:/[;}{]/,relevance:0,contains:[t.BLOCK_COMMENT,i,t.HEXCOLOR,t.CSS_NUMBER_MODE,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.IMPORTANT,t.FUNCTION_DISPATCH]},{begin:"@(page|font-face)",keywords:{$pattern:o,keyword:"@page @font-face"}},{begin:"@",end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/,keyword:"and or not only",attribute:zy.join(" ")},contains:[{begin:o,className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute"},i,e.QUOTE_STRING_MODE,e.APOS_STRING_MODE,t.HEXCOLOR,t.CSS_NUMBER_MODE]},t.FUNCTION_DISPATCH]}})),X.registerLanguage("shell",(function(e){return{name:"Shell Session",aliases:["console","shellsession"],contains:[{className:"meta.prompt",begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/,starts:{end:/[^\\](?=\s*$)/,subLanguage:"bash"}}]}})),X.registerLanguage("sql",(function(e){const t=e.regex,n=e.COMMENT("--","$"),a=["true","false","unknown"],i=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],c=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],d=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],g=c,A=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((E=>!c.includes(E))),h={begin:t.concat(/\b/,t.either(...g),/\s*\(/),relevance:0,keywords:{built_in:g}};return{name:"SQL",case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/,keyword:function(E,{exceptions:v,when:N}={}){const _=N;return v=v||[],E.map((S=>S.match(/\|\d+$/)||v.includes(S)?S:_(S)?`${S}|0`:S))}(A,{when:E=>E.length<3}),literal:a,type:i,built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"]},contains:[{begin:t.either(...d),relevance:0,keywords:{$pattern:/[\w\.]+/,keyword:A.concat(d),literal:a,type:i}},{className:"type",begin:t.either("double precision","large object","with timezone","without timezone")},h,{className:"variable",begin:/@[a-z0-9][a-z0-9_]*/},{className:"string",variants:[{begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,{className:"operator",begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}})),X.registerLanguage("swift",(function(e){const t={match:/\s+/,relevance:0},n=e.COMMENT("/\\*","\\*/",{contains:["self"]}),r=[e.C_LINE_COMMENT_MODE,n],o={match:[/\./,ot(...Xy,...n1)],className:{2:"keyword"}},a={match:de(/\./,ot(...Pu)),relevance:0},s=Pu.filter((te=>"string"==typeof te)).concat(["_|0"]),l={variants:[{className:"keyword",match:ot(...Pu.filter((te=>"string"!=typeof te)).concat(Qy).map(Bu),...n1)}]},u={$pattern:ot(/\b\w+/,/#\w+/),keyword:s.concat(e3),literal:r1},c=[o,a,l],g=[{match:de(/\./,ot(...o1)),relevance:0},{className:"built_in",match:de(/\b/,ot(...o1),/(?=\()/)}],A={match:/->/,relevance:0},C=[A,{className:"operator",relevance:0,variants:[{match:Uu},{match:`\\.(\\.|${s1})+`}]}],h="([0-9]_*)+",m="([0-9a-fA-F]_*)+",E={className:"number",relevance:0,variants:[{match:`\\b(${h})(\\.(${h}))?([eE][+-]?(${h}))?\\b`},{match:`\\b0x(${m})(\\.(${m}))?([pP][+-]?(${h}))?\\b`},{match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},v=(te="")=>({className:"subst",variants:[{match:de(/\\/,te,/[0\\tnr"']/)},{match:de(/\\/,te,/u\{[0-9a-fA-F]{1,8}\}/)}]}),N=(te="")=>({className:"subst",match:de(/\\/,te,/[\t ]*(?:[\r\n]|\r\n)/)}),_=(te="")=>({className:"subst",label:"interpol",begin:de(/\\/,te,/\(/),end:/\)/}),S=(te="")=>({begin:de(te,/"""/),end:de(/"""/,te),contains:[v(te),N(te),_(te)]}),R=(te="")=>({begin:de(te,/"/),end:de(/"/,te),contains:[v(te),_(te)]}),q={className:"string",variants:[S(),S("#"),S("##"),S("###"),R(),R("#"),R("##"),R("###")]},I=[e.BACKSLASH_ESCAPE,{begin:/\[/,end:/\]/,relevance:0,contains:[e.BACKSLASH_ESCAPE]}],Q={begin:/\/[^\s](?=[^/\n]*\/)/,end:/\//,contains:I},ie=te=>{const Re=de(te,/\//),ke=de(/\//,te);return{begin:Re,end:ke,contains:[...I,{scope:"comment",begin:`#(?!.*${ke})`,end:/$/}]}},Y={scope:"regexp",variants:[ie("###"),ie("##"),ie("#"),Q]},O={match:de(/`/,on,/`/)},x=[O,{className:"variable",match:/\$\d+/},{className:"variable",match:`\\$${Ms}+`}],k=[{match:/(@|#(un)?)available/,scope:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:n3,contains:[...C,E,q]}]}},{scope:"keyword",match:de(/@/,ot(...t3))},{scope:"meta",match:de(/@/,on)}],H={match:Is(/\b[A-Z]/),relevance:0,contains:[{className:"type",match:de(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,Ms,"+")},{className:"type",match:qu,relevance:0},{match:/[?!]+/,relevance:0},{match:/\.\.\./,relevance:0},{match:de(/\s+&\s+/,Is(qu)),relevance:0}]},j={begin:/</,end:/>/,keywords:u,contains:[...r,...c,...k,A,H]};H.contains.push(j);const ce={begin:/\(/,end:/\)/,relevance:0,keywords:u,contains:["self",{match:de(on,/\s*:/),keywords:"_|0",relevance:0},...r,Y,...c,...g,...C,E,q,...x,...k,H]},se={begin:/</,end:/>/,keywords:"repeat each",contains:[...r,H]},gt={begin:/\(/,end:/\)/,keywords:u,contains:[{begin:ot(Is(de(on,/\s*:/)),Is(de(on,/\s+/,on,/\s*:/))),end:/:/,relevance:0,contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:on}]},...r,...c,...C,E,q,...k,H,ce],endsParent:!0,illegal:/["']/},Ft={match:[/(func|macro)/,/\s+/,ot(O.match,on,Uu)],className:{1:"keyword",3:"title.function"},contains:[se,gt,t],illegal:[/\[/,/%/]},ht={match:[/\b(?:subscript|init[?!]?)/,/\s*(?=[<(])/],className:{1:"keyword"},contains:[se,gt,t],illegal:/\[|%/},Ge={match:[/operator/,/\s+/,Uu],className:{1:"keyword",3:"title"}},Ct={begin:[/precedencegroup/,/\s+/,qu],className:{1:"keyword",3:"title"},contains:[H],keywords:[...Jy,...r1],end:/}/};for(const te of q.variants){const Re=te.contains.find((Ce=>"interpol"===Ce.label));Re.keywords=u;const ke=[...c,...g,...C,E,q,...x];Re.contains=[...ke,{begin:/\(/,end:/\)/,contains:["self",...ke]}]}return{name:"Swift",keywords:u,contains:[...r,Ft,ht,{beginKeywords:"struct protocol class extension enum actor",end:"\\{",excludeEnd:!0,keywords:u,contains:[e.inherit(e.TITLE_MODE,{className:"title.class",begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...c]},Ge,Ct,{beginKeywords:"import",end:/$/,contains:[...r],relevance:0},Y,...c,...g,...C,E,q,...x,...k,H,ce]}})),X.registerLanguage("typescript",(function(e){const t=function(e){const t=e.regex,r=Fs,o_begin="<>",o_end="</>",s={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(T,y)=>{const L=T[0].length+T.index,k=T.input[L];if("<"===k||","===k)return void y.ignoreMatch();let H;">"===k&&(((T,{after:y})=>{const L="</"+T[0].slice(1);return-1!==T.input.indexOf(L,y)})(T,{after:L})||y.ignoreMatch());const j=T.input.substring(L);((H=j.match(/^\s*=/))||(H=j.match(/^\s+extends\s+/))&&0===H.index)&&y.ignoreMatch()}},i={$pattern:Fs,keyword:l1,literal:u1,built_in:m1,"variable.language":f1},l="[0-9](_?[0-9])*",u=`\\.(${l})`,c="0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*",p={className:"number",variants:[{begin:`(\\b(${c})((${u})|\\.)?|(${u}))[eE][+-]?(${l})\\b`},{begin:`\\b(${c})\\b((${u})\\b|\\.)?|(${u})\\b`},{begin:"\\b(0|[1-9](_?[0-9])*)n\\b"},{begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*n?\\b"},{begin:"\\b0[oO][0-7](_?[0-7])*n?\\b"},{begin:"\\b0[0-7]+n?\\b"}],relevance:0},d={className:"subst",begin:"\\$\\{",end:"\\}",keywords:i,contains:[]},g={begin:"html`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"xml"}},A={begin:"css`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"css"}},b={begin:"gql`",end:"",starts:{end:"`",returnEnd:!1,contains:[e.BACKSLASH_ESCAPE,d],subLanguage:"graphql"}},C={className:"string",begin:"`",end:"`",contains:[e.BACKSLASH_ESCAPE,d]},m={className:"comment",variants:[e.COMMENT(/\/\*\*(?!\/)/,"\\*/",{relevance:0,contains:[{begin:"(?=@[A-Za-z]+)",relevance:0,contains:[{className:"doctag",begin:"@[A-Za-z]+"},{className:"type",begin:"\\{",end:"\\}",excludeEnd:!0,excludeBegin:!0,relevance:0},{className:"variable",begin:r+"(?=\\s*(-)|$)",endsParent:!0,relevance:0},{begin:/(?=[^\n])\s/,relevance:0}]}]}),e.C_BLOCK_COMMENT_MODE,e.C_LINE_COMMENT_MODE]},E=[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,g,A,b,C,{match:/\$\d+/},p];d.contains=E.concat({begin:/\{/,end:/\}/,keywords:i,contains:["self"].concat(E)});const v=[].concat(m,d.contains),N=v.concat([{begin:/\(/,end:/\)/,keywords:i,contains:["self"].concat(v)}]),_={className:"params",begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:N},S={variants:[{match:[/class/,/\s+/,r,/\s+/,/extends/,/\s+/,t.concat(r,"(",t.concat(/\./,r),")*")],scope:{1:"keyword",3:"title.class",5:"keyword",7:"title.class.inherited"}},{match:[/class/,/\s+/,r],scope:{1:"keyword",3:"title.class"}}]},R={relevance:0,match:t.either(/\bJSON/,/\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/,/\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/,/\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/),className:"title.class",keywords:{_:[...c1,...d1]}},I={variants:[{match:[/function/,/\s+/,r,/(?=\s*\()/]},{match:[/function/,/\s*(?=\()/]}],className:{1:"keyword",3:"title.function"},label:"func.def",contains:[_],illegal:/%/},Y={match:t.concat(/\b/,(T=[...p1,"super","import"],t.concat("(?!",T.join("|"),")")),r,t.lookahead(/\(/)),className:"title.function",relevance:0},O={begin:t.concat(/\./,t.lookahead(t.concat(r,/(?![0-9A-Za-z$_(])/))),end:r,excludeBegin:!0,keywords:"prototype",className:"property",relevance:0},G={match:[/get|set/,/\s+/,r,/(?=\()/],className:{1:"keyword",3:"title.function"},contains:[{begin:/\(\)/},_]},P="(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|"+e.UNDERSCORE_IDENT_RE+")\\s*=>",x={match:[/const|var|let/,/\s+/,r,/\s*/,/=\s*/,/(async\s*)?/,t.lookahead(P)],keywords:"async",className:{1:"keyword",3:"title.function"},contains:[_]};var T;return{name:"JavaScript",aliases:["js","jsx","mjs","cjs"],keywords:i,exports:{PARAMS_CONTAINS:N,CLASS_REFERENCE:R},illegal:/#(?![$_A-z])/,contains:[e.SHEBANG({label:"shebang",binary:"node",relevance:5}),{label:"use_strict",className:"meta",relevance:10,begin:/^\s*['"]use (strict|asm)['"]/},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,g,A,b,C,m,{match:/\$\d+/},p,R,{className:"attr",begin:r+t.lookahead(":"),relevance:0},x,{begin:"("+e.RE_STARTERS_RE+"|\\b(case|return|throw)\\b)\\s*",keywords:"return throw case",relevance:0,contains:[m,e.REGEXP_MODE,{className:"function",begin:P,returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{begin:e.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:i,contains:N}]}]},{begin:/,/,relevance:0},{match:/\s+/,relevance:0},{variants:[{begin:o_begin,end:o_end},{match:/<[A-Za-z0-9\\._:-]+\s*\/>/},{begin:s.begin,"on:begin":s.isTrulyOpeningTag,end:s.end}],subLanguage:"xml",contains:[{begin:s.begin,end:s.end,skip:!0,contains:["self"]}]}]},I,{beginKeywords:"while if switch catch for"},{begin:"\\b(?!function)"+e.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{",returnBegin:!0,label:"func.def",contains:[_,e.inherit(e.TITLE_MODE,{begin:r,className:"title.function"})]},{match:/\.\.\./,relevance:0},O,{match:"\\$"+r,relevance:0},{match:[/\bconstructor(?=\s*\()/],className:{1:"title.function"},contains:[_]},Y,{relevance:0,match:/\b[A-Z][A-Z_0-9]+\b/,className:"variable.constant"},S,G,{match:/\$[(.]/}]}}(e),n=Fs,r=["any","void","number","boolean","string","object","never","symbol","bigint","unknown"],o={beginKeywords:"namespace",end:/\{/,excludeEnd:!0,contains:[t.exports.CLASS_REFERENCE]},a={beginKeywords:"interface",end:/\{/,excludeEnd:!0,keywords:{keyword:"interface extends",built_in:r},contains:[t.exports.CLASS_REFERENCE]},l={$pattern:Fs,keyword:l1.concat(["type","namespace","interface","public","private","protected","implements","declare","abstract","readonly","enum","override"]),literal:u1,built_in:m1.concat(r),"variable.language":f1},u={className:"meta",begin:"@"+n},c=(d,g,A)=>{const b=d.contains.findIndex((C=>C.label===g));if(-1===b)throw new Error("can not find mode to replace");d.contains.splice(b,1,A)};return Object.assign(t.keywords,l),t.exports.PARAMS_CONTAINS.push(u),t.contains=t.contains.concat([u,o,a]),c(t,"shebang",e.SHEBANG()),c(t,"use_strict",{className:"meta",relevance:10,begin:/^\s*['"]use strict['"]/}),t.contains.find((d=>"func.def"===d.label)).relevance=0,Object.assign(t,{name:"TypeScript",aliases:["ts","tsx","mts","cts"]}),t})),X.registerLanguage("vbnet",(function(e){const t=e.regex,o=/\d{1,2}\/\d{1,2}\/\d{4}/,a=/\d{4}-\d{1,2}-\d{1,2}/,s=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,i=/\d{1,2}(:\d{1,2}){1,2}/,l={className:"literal",variants:[{begin:t.concat(/# */,t.either(a,o),/ *#/)},{begin:t.concat(/# */,i,/ *#/)},{begin:t.concat(/# */,s,/ *#/)},{begin:t.concat(/# */,t.either(a,o),/ +/,t.either(s,i),/ *#/)}]},p=e.COMMENT(/'''/,/$/,{contains:[{className:"doctag",begin:/<\/?/,end:/>/}]}),d=e.COMMENT(null,/$/,{variants:[{begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET",aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield",built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort",type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort",literal:"true false nothing"},illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/,end:/"/,illegal:/\n/,contains:[{begin:/""/}]},l,{className:"number",relevance:0,variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{className:"label",begin:/^\w+:/},p,d,{className:"meta",begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,end:/$/,keywords:{keyword:"const disable else elseif enable end externalsource if region then"},contains:[d]}]}})),X.registerLanguage("wasm",(function(e){e.regex;const t=e.COMMENT(/\(;/,/;\)/);return t.contains.push("self"),{name:"WebAssembly",keywords:{$pattern:/[\w.]+/,keyword:["anyfunc","block","br","br_if","br_table","call","call_indirect","data","drop","elem","else","end","export","func","global.get","global.set","local.get","local.set","local.tee","get_global","get_local","global","if","import","local","loop","memory","memory.grow","memory.size","module","mut","nop","offset","param","result","return","select","set_global","set_local","start","table","tee_local","then","type","unreachable"]},contains:[e.COMMENT(/;;/,/$/),t,{match:[/(?:offset|align)/,/\s*/,/=/],className:{1:"keyword",3:"operator"}},{className:"variable",begin:/\$[\w_]+/},{match:/(\((?!;)|\))+/,className:"punctuation",relevance:0},{begin:[/(?:func|call|call_indirect)/,/\s+/,/\$[^\s)]+/],className:{1:"keyword",3:"title.function"}},e.QUOTE_STRING_MODE,{match:/(i32|i64|f32|f64)(?!\.)/,className:"type"},{className:"keyword",match:/\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/},{className:"number",relevance:0,match:/[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/}]}})),X.registerLanguage("xml",(function(e){const t=e.regex,n=t.concat(/[\p{L}_]/u,t.optional(/[\p{L}0-9_.-]*:/u),/[\p{L}0-9_.-]*/u),o={className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},a={begin:/\s/,contains:[{className:"keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}]},s=e.inherit(a,{begin:/\(/,end:/\)/}),i=e.inherit(e.APOS_STRING_MODE,{className:"string"}),l=e.inherit(e.QUOTE_STRING_MODE,{className:"string"}),u={endsWithParent:!0,illegal:/</,relevance:0,contains:[{className:"attr",begin:/[\p{L}0-9._:-]+/u,relevance:0},{begin:/=\s*/,relevance:0,contains:[{className:"string",endsParent:!0,variants:[{begin:/"/,end:/"/,contains:[o]},{begin:/'/,end:/'/,contains:[o]},{begin:/[^\s"'=<>`]+/}]}]}]};return{name:"HTML, XML",aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"],case_insensitive:!0,unicodeRegex:!0,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,relevance:10,contains:[a,l,i,s,{begin:/\[/,end:/\]/,contains:[{className:"meta",begin:/<![a-z]/,end:/>/,contains:[a,s,l,i]}]}]},e.COMMENT(/<!--/,/-->/,{relevance:10}),{begin:/<!\[CDATA\[/,end:/\]\]>/,relevance:10},o,{className:"meta",end:/\?>/,variants:[{begin:/<\?xml/,relevance:10,contains:[l]},{begin:/<\?[a-z][a-z0-9]+/}]},{className:"tag",begin:/<style(?=\s|>)/,end:/>/,keywords:{name:"style"},contains:[u],starts:{end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag",begin:/<script(?=\s|>)/,end:/>/,keywords:{name:"script"},contains:[u],starts:{end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{className:"tag",begin:/<>|<\/>/},{className:"tag",begin:t.concat(/</,t.lookahead(t.concat(n,t.either(/\/>/,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name",begin:n,relevance:0,starts:u}]},{className:"tag",begin:t.concat(/<\//,t.lookahead(t.concat(n,/>/))),contains:[{className:"name",begin:n,relevance:0},{begin:/>/,relevance:0,endsParent:!0}]}]}})),X.registerLanguage("yaml",(function(e){const t="true false yes no null",n="[\\w#;/?:@&=+$,.~*'()[\\]]+",a={className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable",variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},s=e.inherit(a,{variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),d={end:",",endsWithParent:!0,excludeEnd:!0,keywords:t,relevance:0},g={begin:/\{/,end:/\}/,contains:[d],illegal:"\\n",relevance:0},A={begin:"\\[",end:"\\]",contains:[d],illegal:"\\n",relevance:0},b=[{className:"attr",variants:[{begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$",relevance:10},{className:"string",begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0,relevance:0},{className:"type",begin:"!\\w+!"+n},{className:"type",begin:"!<"+n+">"},{className:"type",begin:"!"+n},{className:"type",begin:"!!"+n},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta",begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)",relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:t,keywords:{literal:t}},{className:"number",begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b"},{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},g,A,a],C=[...b];return C.pop(),C.push(s),d.contains=C,{name:"YAML",case_insensitive:!0,aliases:["yml"],contains:b}}));const g1=X,c3=nD({html:!1,typographer:!0,highlight:function(e,t){const n=zn();if(t&&g1.getLanguage(t))try{return`<div class="whitespace-pre-line w-full rounded-lg bg-black-900 pb-4 relative font-mono font-normal text-sm text-slate-200">\n <div class="w-full flex items-center absolute top-0 left-0 text-slate-200 bg-stone-800 px-4 py-2 text-xs font-sans justify-between rounded-t-md">\n <div class="flex gap-2"><code class="text-xs">${t}</code></div>\n <button data-code-snippet data-code="code-${n}" class="flex items-center gap-x-2">\n <svg stroke="currentColor" fill="none" stroke-width="2" viewBox="0 0 24 24" stroke-linecap="round" stroke-linejoin="round" class="h-4 w-4" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect></svg>\n <p>Copy</p>\n </button>\n </div>\n <pre class="whitespace-pre-wrap px-2">`+g1.highlight(e,{language:t,ignoreIllegals:!0}).value+"</pre></div>"}catch{}return`<div class="whitespace-pre-line w-full rounded-lg bg-black-900 pb-4 relative font-mono font-normal text-sm text-slate-200">\n <div class="w-full flex items-center absolute top-0 left-0 text-slate-200 bg-stone-800 px-4 py-2 text-xs font-sans justify-between rounded-t-md">\n <div class="flex gap-2"><code class="text-xs"></code></div>\n <button data-code-snippet data-code="code-${n}" class="flex items-center gap-x-2">\n <svg stroke="currentColor" fill="none" stroke-width="2" viewBox="0 0 24 24" stroke-linecap="round" stroke-linejoin="round" class="h-4 w-4" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"></path><rect x="8" y="2" width="8" height="4" rx="1" ry="1"></rect></svg>\n <p>Copy</p>\n </button>\n </div>\n <pre class="whitespace-pre-wrap px-2">`+fb.encode(e)+"</pre></div>"}}).disable("list");function h1(e=""){return c3.render(e)}/*! @license DOMPurify 3.0.8 | (c) Cure53 and other contributors | Released under the Apache license 2.0 and Mozilla Public License 2.0 | github.com/cure53/DOMPurify/blob/3.0.8/LICENSE */const{entries:E1,setPrototypeOf:A1,isFrozen:d3,getPrototypeOf:p3,getOwnPropertyDescriptor:Hu}=Object;let{freeze:Qe,seal:Mt,create:b1}=Object,{apply:Vu,construct:zu}=typeof Reflect<"u"&&Reflect;Qe||(Qe=function(t){return t}),Mt||(Mt=function(t){return t}),Vu||(Vu=function(t,n,r){return t.apply(n,r)}),zu||(zu=function(t,n){return new t(...n)});const Bs=Tt(Array.prototype.forEach),_1=Tt(Array.prototype.pop),qo=Tt(Array.prototype.push),Ps=Tt(String.prototype.toLowerCase),Gu=Tt(String.prototype.toString),f3=Tt(String.prototype.match),Ho=Tt(String.prototype.replace),m3=Tt(String.prototype.indexOf),g3=Tt(String.prototype.trim),mt=Tt(RegExp.prototype.test),Vo=function(e){return function(){for(var t=arguments.length,n=new Array(t),r=0;r<t;r++)n[r]=arguments[r];return zu(e,n)}}(TypeError);function Tt(e){return function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),o=1;o<n;o++)r[o-1]=arguments[o];return Vu(e,t,r)}}function J(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Ps;A1&&A1(e,null);let r=t.length;for(;r--;){let o=t[r];if("string"==typeof o){const a=n(o);a!==o&&(d3(t)||(t[r]=a),o=a)}e[o]=!0}return e}function E3(e){for(let t=0;t<e.length;t++)void 0===Hu(e,t)&&(e[t]=null);return e}function Yn(e){const t=b1(null);for(const[n,r]of E1(e))void 0!==Hu(e,n)&&(Array.isArray(r)?t[n]=E3(r):r&&"object"==typeof r&&r.constructor===Object?t[n]=Yn(r):t[n]=r);return t}function Us(e,t){for(;null!==e;){const r=Hu(e,t);if(r){if(r.get)return Tt(r.get);if("function"==typeof r.value)return Tt(r.value)}e=p3(e)}return function(r){return console.warn("fallback value for",r),null}}const v1=Qe(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),$u=Qe(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),Zu=Qe(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),A3=Qe(["animate","color-profile","cursor","discard","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),ju=Qe(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover","mprescripts"]),b3=Qe(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),D1=Qe(["#text"]),y1=Qe(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),Wu=Qe(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),T1=Qe(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),qs=Qe(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),_3=Mt(/\{\{[\w\W]*|[\w\W]*\}\}/gm),v3=Mt(/<%[\w\W]*|[\w\W]*%>/gm),D3=Mt(/\${[\w\W]*}/gm),y3=Mt(/^data-[\-\w.\u00B7-\uFFFF]/),T3=Mt(/^aria-[\-\w]+$/),C1=Mt(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|sms|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),C3=Mt(/^(?:\w+script|data):/i),N3=Mt(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),N1=Mt(/^html$/i);var S1=Object.freeze({__proto__:null,MUSTACHE_EXPR:_3,ERB_EXPR:v3,TMPLIT_EXPR:D3,DATA_ATTR:y3,ARIA_ATTR:T3,IS_ALLOWED_URI:C1,IS_SCRIPT_OR_DATA:C3,ATTR_WHITESPACE:N3,DOCTYPE_NAME:N1});var x3=function w1(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:typeof window>"u"?null:window;const t=$=>w1($);if(t.version="3.0.8",t.removed=[],!e||!e.document||9!==e.document.nodeType)return t.isSupported=!1,t;let{document:n}=e;const r=n,o=r.currentScript,{DocumentFragment:a,HTMLTemplateElement:s,Node:i,Element:l,NodeFilter:u,NamedNodeMap:c=e.NamedNodeMap||e.MozNamedAttrMap,HTMLFormElement:p,DOMParser:d,trustedTypes:g}=e,A=l.prototype,b=Us(A,"cloneNode"),C=Us(A,"nextSibling"),h=Us(A,"childNodes"),m=Us(A,"parentNode");if("function"==typeof s){const $=n.createElement("template");$.content&&$.content.ownerDocument&&(n=$.content.ownerDocument)}let E,v="";const{implementation:N,createNodeIterator:_,createDocumentFragment:S,getElementsByTagName:R}=n,{importNode:q}=r;let I={};t.isSupported="function"==typeof E1&&"function"==typeof m&&N&&void 0!==N.createHTMLDocument;const{MUSTACHE_EXPR:Q,ERB_EXPR:ie,TMPLIT_EXPR:Y,DATA_ATTR:O,ARIA_ATTR:G,IS_SCRIPT_OR_DATA:P,ATTR_WHITESPACE:x}=S1;let{IS_ALLOWED_URI:T}=S1,y=null;const L=J({},[...v1,...$u,...Zu,...ju,...D1]);let k=null;const H=J({},[...y1,...Wu,...T1,...qs]);let j=Object.seal(b1(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),me=null,ce=null,se=!0,le=!0,gt=!1,Ft=!0,ht=!1,Ge=!1,Ct=!1,te=!1,Re=!1,ke=!1,Ce=!1,Hs=!0,Pr=!1,Ur=!0,ye=!1,oe={},Bt=null;const jt=J({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]);let qr=null;const Hr=J({},["audio","video","img","source","image","track"]);let B=null;const V=J({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),K="http://www.w3.org/1998/Math/MathML",ne="http://www.w3.org/2000/svg",ge="http://www.w3.org/1999/xhtml";let $e=ge,zo=!1,Go=null;const c8=J({},[K,ne,ge],Gu);let $o=null;const d8=["application/xhtml+xml","text/html"];let Ie=null,Vr=null;const f8=n.createElement("form"),F1=function(D){return D instanceof RegExp||D instanceof Function},Xu=function(){let D=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};if(!Vr||Vr!==D){if((!D||"object"!=typeof D)&&(D={}),D=Yn(D),$o=-1===d8.indexOf(D.PARSER_MEDIA_TYPE)?"text/html":D.PARSER_MEDIA_TYPE,Ie="application/xhtml+xml"===$o?Gu:Ps,y="ALLOWED_TAGS"in D?J({},D.ALLOWED_TAGS,Ie):L,k="ALLOWED_ATTR"in D?J({},D.ALLOWED_ATTR,Ie):H,Go="ALLOWED_NAMESPACES"in D?J({},D.ALLOWED_NAMESPACES,Gu):c8,B="ADD_URI_SAFE_ATTR"in D?J(Yn(V),D.ADD_URI_SAFE_ATTR,Ie):V,qr="ADD_DATA_URI_TAGS"in D?J(Yn(Hr),D.ADD_DATA_URI_TAGS,Ie):Hr,Bt="FORBID_CONTENTS"in D?J({},D.FORBID_CONTENTS,Ie):jt,me="FORBID_TAGS"in D?J({},D.FORBID_TAGS,Ie):{},ce="FORBID_ATTR"in D?J({},D.FORBID_ATTR,Ie):{},oe="USE_PROFILES"in D&&D.USE_PROFILES,se=!1!==D.ALLOW_ARIA_ATTR,le=!1!==D.ALLOW_DATA_ATTR,gt=D.ALLOW_UNKNOWN_PROTOCOLS||!1,Ft=!1!==D.ALLOW_SELF_CLOSE_IN_ATTR,ht=D.SAFE_FOR_TEMPLATES||!1,Ge=D.WHOLE_DOCUMENT||!1,Re=D.RETURN_DOM||!1,ke=D.RETURN_DOM_FRAGMENT||!1,Ce=D.RETURN_TRUSTED_TYPE||!1,te=D.FORCE_BODY||!1,Hs=!1!==D.SANITIZE_DOM,Pr=D.SANITIZE_NAMED_PROPS||!1,Ur=!1!==D.KEEP_CONTENT,ye=D.IN_PLACE||!1,T=D.ALLOWED_URI_REGEXP||C1,$e=D.NAMESPACE||ge,j=D.CUSTOM_ELEMENT_HANDLING||{},D.CUSTOM_ELEMENT_HANDLING&&F1(D.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(j.tagNameCheck=D.CUSTOM_ELEMENT_HANDLING.tagNameCheck),D.CUSTOM_ELEMENT_HANDLING&&F1(D.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(j.attributeNameCheck=D.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),D.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof D.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(j.allowCustomizedBuiltInElements=D.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),ht&&(le=!1),ke&&(Re=!0),oe&&(y=J({},D1),k=[],!0===oe.html&&(J(y,v1),J(k,y1)),!0===oe.svg&&(J(y,$u),J(k,Wu),J(k,qs)),!0===oe.svgFilters&&(J(y,Zu),J(k,Wu),J(k,qs)),!0===oe.mathMl&&(J(y,ju),J(k,T1),J(k,qs))),D.ADD_TAGS&&(y===L&&(y=Yn(y)),J(y,D.ADD_TAGS,Ie)),D.ADD_ATTR&&(k===H&&(k=Yn(k)),J(k,D.ADD_ATTR,Ie)),D.ADD_URI_SAFE_ATTR&&J(B,D.ADD_URI_SAFE_ATTR,Ie),D.FORBID_CONTENTS&&(Bt===jt&&(Bt=Yn(Bt)),J(Bt,D.FORBID_CONTENTS,Ie)),Ur&&(y["#text"]=!0),Ge&&J(y,["html","head","body"]),y.table&&(J(y,["tbody"]),delete me.tbody),D.TRUSTED_TYPES_POLICY){if("function"!=typeof D.TRUSTED_TYPES_POLICY.createHTML)throw Vo('TRUSTED_TYPES_POLICY configuration option must provide a "createHTML" hook.');if("function"!=typeof D.TRUSTED_TYPES_POLICY.createScriptURL)throw Vo('TRUSTED_TYPES_POLICY configuration option must provide a "createScriptURL" hook.');E=D.TRUSTED_TYPES_POLICY,v=E.createHTML("")}else void 0===E&&(E=function(t,n){if("object"!=typeof t||"function"!=typeof t.createPolicy)return null;let r=null;const o="data-tt-policy-suffix";n&&n.hasAttribute(o)&&(r=n.getAttribute(o));const a="dompurify"+(r?"#"+r:"");try{return t.createPolicy(a,{createHTML:s=>s,createScriptURL:s=>s})}catch{return console.warn("TrustedTypes policy "+a+" could not be created."),null}}(g,o)),null!==E&&"string"==typeof v&&(v=E.createHTML(""));Qe&&Qe(D),Vr=D}},B1=J({},["mi","mo","mn","ms","mtext"]),P1=J({},["foreignobject","desc","title","annotation-xml"]),m8=J({},["title","style","font","a","script"]),U1=J({},[...$u,...Zu,...A3]),q1=J({},[...ju,...b3]),Xn=function(D){qo(t.removed,{element:D});try{D.parentNode.removeChild(D)}catch{D.remove()}},Qu=function(D,F){try{qo(t.removed,{attribute:F.getAttributeNode(D),from:F})}catch{qo(t.removed,{attribute:null,from:F})}if(F.removeAttribute(D),"is"===D&&!k[D])if(Re||ke)try{Xn(F)}catch{}else try{F.setAttribute(D,"")}catch{}},H1=function(D){let F=null,z=null;if(te)D="<remove></remove>"+D;else{const je=f3(D,/^[\r\n\t ]+/);z=je&&je[0]}"application/xhtml+xml"===$o&&$e===ge&&(D='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+D+"</body></html>");const he=E?E.createHTML(D):D;if($e===ge)try{F=(new d).parseFromString(he,$o)}catch{}if(!F||!F.documentElement){F=N.createDocument($e,"template",null);try{F.documentElement.innerHTML=zo?v:he}catch{}}const Ze=F.body||F.documentElement;return D&&z&&Ze.insertBefore(n.createTextNode(z),Ze.childNodes[0]||null),$e===ge?R.call(F,Ge?"html":"body")[0]:Ge?F.documentElement:Ze},V1=function(D){return _.call(D.ownerDocument||D,D,u.SHOW_ELEMENT|u.SHOW_COMMENT|u.SHOW_TEXT,null)},z1=function(D){return"function"==typeof i&&D instanceof i},an=function(D,F,z){I[D]&&Bs(I[D],(he=>{he.call(t,F,z,Vr)}))},G1=function(D){let F=null;if(an("beforeSanitizeElements",D,null),function(D){return D instanceof p&&("string"!=typeof D.nodeName||"string"!=typeof D.textContent||"function"!=typeof D.removeChild||!(D.attributes instanceof c)||"function"!=typeof D.removeAttribute||"function"!=typeof D.setAttribute||"string"!=typeof D.namespaceURI||"function"!=typeof D.insertBefore||"function"!=typeof D.hasChildNodes)}(D))return Xn(D),!0;const z=Ie(D.nodeName);if(an("uponSanitizeElement",D,{tagName:z,allowedTags:y}),D.hasChildNodes()&&!z1(D.firstElementChild)&&mt(/<[/\w]/g,D.innerHTML)&&mt(/<[/\w]/g,D.textContent))return Xn(D),!0;if(!y[z]||me[z]){if(!me[z]&&Z1(z)&&(j.tagNameCheck instanceof RegExp&&mt(j.tagNameCheck,z)||j.tagNameCheck instanceof Function&&j.tagNameCheck(z)))return!1;if(Ur&&!Bt[z]){const he=m(D)||D.parentNode,Ze=h(D)||D.childNodes;if(Ze&&he){for(let at=Ze.length-1;at>=0;--at)he.insertBefore(b(Ze[at],!0),C(D))}}return Xn(D),!0}return D instanceof l&&!function(D){let F=m(D);(!F||!F.tagName)&&(F={namespaceURI:$e,tagName:"template"});const z=Ps(D.tagName),he=Ps(F.tagName);return!!Go[D.namespaceURI]&&(D.namespaceURI===ne?F.namespaceURI===ge?"svg"===z:F.namespaceURI===K?"svg"===z&&("annotation-xml"===he||B1[he]):!!U1[z]:D.namespaceURI===K?F.namespaceURI===ge?"math"===z:F.namespaceURI===ne?"math"===z&&P1[he]:!!q1[z]:D.namespaceURI===ge?!(F.namespaceURI===ne&&!P1[he]||F.namespaceURI===K&&!B1[he])&&!q1[z]&&(m8[z]||!U1[z]):!("application/xhtml+xml"!==$o||!Go[D.namespaceURI]))}(D)||("noscript"===z||"noembed"===z||"noframes"===z)&&mt(/<\/no(script|embed|frames)/i,D.innerHTML)?(Xn(D),!0):(ht&&3===D.nodeType&&(F=D.textContent,Bs([Q,ie,Y],(he=>{F=Ho(F,he," ")})),D.textContent!==F&&(qo(t.removed,{element:D.cloneNode()}),D.textContent=F)),an("afterSanitizeElements",D,null),!1)},$1=function(D,F,z){if(Hs&&("id"===F||"name"===F)&&(z in n||z in f8))return!1;if((!le||ce[F]||!mt(O,F))&&(!se||!mt(G,F)))if(!k[F]||ce[F]){if(!(Z1(D)&&(j.tagNameCheck instanceof RegExp&&mt(j.tagNameCheck,D)||j.tagNameCheck instanceof Function&&j.tagNameCheck(D))&&(j.attributeNameCheck instanceof RegExp&&mt(j.attributeNameCheck,F)||j.attributeNameCheck instanceof Function&&j.attributeNameCheck(F))||"is"===F&&j.allowCustomizedBuiltInElements&&(j.tagNameCheck instanceof RegExp&&mt(j.tagNameCheck,z)||j.tagNameCheck instanceof Function&&j.tagNameCheck(z))))return!1}else if(!B[F]&&!mt(T,Ho(z,x,""))&&("src"!==F&&"xlink:href"!==F&&"href"!==F||"script"===D||0!==m3(z,"data:")||!qr[D])&&(!gt||mt(P,Ho(z,x,"")))&&z)return!1;return!0},Z1=function(D){return D.indexOf("-")>0},j1=function(D){an("beforeSanitizeAttributes",D,null);const{attributes:F}=D;if(!F)return;const z={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:k};let he=F.length;for(;he--;){const Ze=F[he],{name:je,namespaceURI:at,value:Qn}=Ze,Zo=Ie(je);let st="value"===je?Qn:g3(Qn);if(z.attrName=Zo,z.attrValue=st,z.keepAttr=!0,z.forceKeepAttr=void 0,an("uponSanitizeAttribute",D,z),st=z.attrValue,z.forceKeepAttr||(Qu(je,D),!z.keepAttr))continue;if(!Ft&&mt(/\/>/i,st)){Qu(je,D);continue}ht&&Bs([Q,ie,Y],(Y1=>{st=Ho(st,Y1," ")}));const W1=Ie(D.nodeName);if($1(W1,Zo,st)){if(Pr&&("id"===Zo||"name"===Zo)&&(Qu(je,D),st="user-content-"+st),E&&"object"==typeof g&&"function"==typeof g.getAttributeType&&!at)switch(g.getAttributeType(W1,Zo)){case"TrustedHTML":st=E.createHTML(st);break;case"TrustedScriptURL":st=E.createScriptURL(st)}try{at?D.setAttributeNS(at,je,st):D.setAttribute(je,st),_1(t.removed)}catch{}}}an("afterSanitizeAttributes",D,null)},E8=function $(D){let F=null;const z=V1(D);for(an("beforeSanitizeShadowDOM",D,null);F=z.nextNode();)an("uponSanitizeShadowNode",F,null),!G1(F)&&(F.content instanceof a&&$(F.content),j1(F));an("afterSanitizeShadowDOM",D,null)};return t.sanitize=function($){let D=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},F=null,z=null,he=null,Ze=null;if(zo=!$,zo&&($="\x3c!--\x3e"),"string"!=typeof $&&!z1($)){if("function"!=typeof $.toString)throw Vo("toString is not a function");if("string"!=typeof($=$.toString()))throw Vo("dirty is not a string, aborting")}if(!t.isSupported)return $;if(Ct||Xu(D),t.removed=[],"string"==typeof $&&(ye=!1),ye){if($.nodeName){const Qn=Ie($.nodeName);if(!y[Qn]||me[Qn])throw Vo("root node is forbidden and cannot be sanitized in-place")}}else if($ instanceof i)F=H1("\x3c!----\x3e"),z=F.ownerDocument.importNode($,!0),1===z.nodeType&&"BODY"===z.nodeName||"HTML"===z.nodeName?F=z:F.appendChild(z);else{if(!Re&&!ht&&!Ge&&-1===$.indexOf("<"))return E&&Ce?E.createHTML($):$;if(F=H1($),!F)return Re?null:Ce?v:""}F&&te&&Xn(F.firstChild);const je=V1(ye?$:F);for(;he=je.nextNode();)G1(he)||(he.content instanceof a&&E8(he.content),j1(he));if(ye)return $;if(Re){if(ke)for(Ze=S.call(F.ownerDocument);F.firstChild;)Ze.appendChild(F.firstChild);else Ze=F;return(k.shadowroot||k.shadowrootmode)&&(Ze=q.call(r,Ze,!0)),Ze}let at=Ge?F.outerHTML:F.innerHTML;return Ge&&y["!doctype"]&&F.ownerDocument&&F.ownerDocument.doctype&&F.ownerDocument.doctype.name&&mt(N1,F.ownerDocument.doctype.name)&&(at="<!DOCTYPE "+F.ownerDocument.doctype.name+">\n"+at),ht&&Bs([Q,ie,Y],(Qn=>{at=Ho(at,Qn," ")})),E&&Ce?E.createHTML(at):at},t.setConfig=function(){Xu(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}),Ct=!0},t.clearConfig=function(){Vr=null,Ct=!1},t.isValidAttribute=function($,D,F){Vr||Xu({});const z=Ie($),he=Ie(D);return $1(z,he,F)},t.addHook=function($,D){"function"==typeof D&&(I[$]=I[$]||[],qo(I[$],D))},t.removeHook=function($){if(I[$])return _1(I[$])},t.removeHooks=function($){I[$]&&(I[$]=[])},t.removeAllHooks=function(){I={}},t}();function x1(e){return new Date(1e3*e).toLocaleTimeString([],{hour:"numeric",minute:"2-digit",hour12:!0})}const R3=x3(window),L3=Z.forwardRef((({uuid:e=zn(),message:t,role:n,sources:r=[],error:o=!1,sentAt:a},s)=>{const i=pe.settings.textSize?`allm-text-[${pe.settings.textSize}px]`:"allm-text-sm";return w.jsxs("div",{className:"py-[5px]",children:["assistant"===n&&w.jsx("div",{className:"allm-text-[10px] allm-text-gray-400 allm-ml-[54px] allm-mr-6 allm-mb-2 allm-text-left allm-font-sans",children:pe.settings.assistantName||"Anything LLM Chat Assistant"}),w.jsxs("div",{ref:s,className:"allm-flex allm-items-start allm-w-full allm-h-fit "+("user"===n?"allm-justify-end":"allm-justify-start"),children:["assistant"===n&&w.jsx("img",{src:pe.settings.assistantIcon||ko,alt:"Anything LLM Icon",className:"allm-w-9 allm-h-9 allm-flex-shrink-0 allm-ml-2 allm-mt-2",id:"anything-llm-icon"}),w.jsx("div",{style:{wordBreak:"break-word",backgroundColor:"user"===n?pe.USER_STYLES.msgBg:pe.ASSISTANT_STYLES.msgBg},className:`allm-py-[11px] allm-px-4 allm-flex allm-flex-col allm-font-sans ${o?"allm-bg-red-200 allm-rounded-lg allm-mr-[37px] allm-ml-[9px]":"user"===n?`${pe.USER_STYLES.base} allm-anything-llm-user-message`:`${pe.ASSISTANT_STYLES.base} allm-anything-llm-assistant-message`} allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)]`,children:w.jsx("div",{className:"allm-flex",children:o?w.jsxs("div",{className:"allm-p-2 allm-rounded-lg allm-bg-red-50 allm-text-red-500",children:[w.jsxs("span",{className:"allm-inline-block ",children:[w.jsx(ru,{className:"allm-h-4 allm-w-4 allm-mb-1 allm-inline-block"})," ","Could not respond to message."]}),w.jsx("p",{className:"allm-text-xs allm-font-mono allm-mt-2 allm-border-l-2 allm-border-red-500 allm-pl-2 allm-bg-red-300 allm-p-2 allm-rounded-sm",children:o})]}):w.jsx("span",{className:`allm-whitespace-pre-line allm-flex allm-flex-col allm-gap-y-1 ${i} allm-leading-[20px]`,dangerouslySetInnerHTML:{__html:R3.sanitize(h1(t))}})})})]},e),a&&w.jsx("div",{className:"allm-font-sans allm-text-[10px] allm-text-gray-400 allm-ml-[54px] allm-mr-6 allm-mt-2 "+("user"===n?"allm-text-right":"allm-text-left"),children:x1(a)})]})})),O3=Z.memo(L3),k3=Z.forwardRef((({uuid:e,reply:t,pending:n,error:r,sources:o=[]},a)=>t||0!==o.length||n||r?n?w.jsxs("div",{className:"allm-flex allm-items-start allm-w-full allm-h-fit allm-justify-start",children:[w.jsx("img",{src:pe.settings.assistantIcon||ko,alt:"Anything LLM Icon",className:"allm-w-9 allm-h-9 allm-flex-shrink-0 allm-ml-2"}),w.jsx("div",{style:{wordBreak:"break-word",backgroundColor:pe.ASSISTANT_STYLES.msgBg},className:`allm-py-[11px] allm-px-4 allm-flex allm-flex-col ${pe.ASSISTANT_STYLES.base} allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)]`,children:w.jsx("div",{className:"allm-flex allm-gap-x-5",children:w.jsx("div",{className:"allm-mx-4 allm-my-1 allm-dot-falling"})})})]}):r?w.jsxs("div",{className:"allm-flex allm-items-end allm-w-full allm-h-fit allm-justify-start",children:[w.jsx("img",{src:pe.settings.assistantIcon||ko,alt:"Anything LLM Icon",className:"allm-w-9 allm-h-9 allm-flex-shrink-0 allm-ml-2"}),w.jsx("div",{style:{wordBreak:"break-word"},className:"allm-py-[11px] allm-px-4 allm-rounded-lg allm-flex allm-flex-col allm-bg-red-200 allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)] allm-mr-[37px] allm-ml-[9px]",children:w.jsx("div",{className:"allm-flex allm-gap-x-5",children:w.jsxs("span",{className:"allm-inline-block allm-p-2 allm-rounded-lg allm-bg-red-50 allm-text-red-500",children:[w.jsx(ru,{className:"allm-h-4 allm-w-4 allm-mb-1 allm-inline-block"})," ","Could not respond to message.",w.jsxs("span",{className:"allm-text-xs",children:["Reason: ",r||"unknown"]})]})})})]}):w.jsxs("div",{className:"allm-py-[5px]",children:[w.jsx("div",{className:"allm-text-[10px] allm-text-gray-400 allm-ml-[54px] allm-mr-6 allm-mb-2 allm-text-left allm-font-sans",children:pe.settings.assistantName||"Anything LLM Chat Assistant"}),w.jsxs("div",{ref:a,className:"allm-flex allm-items-start allm-w-full allm-h-fit allm-justify-start",children:[w.jsx("img",{src:pe.settings.assistantIcon||ko,alt:"Anything LLM Icon",className:"allm-w-9 allm-h-9 allm-flex-shrink-0 allm-ml-2"}),w.jsx("div",{style:{wordBreak:"break-word",backgroundColor:pe.ASSISTANT_STYLES.msgBg},className:`allm-py-[11px] allm-px-4 allm-flex allm-flex-col ${r?"allm-bg-red-200":pe.ASSISTANT_STYLES.base} allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)]`,children:w.jsx("div",{className:"allm-flex allm-gap-x-5",children:w.jsx("span",{className:"allm-font-sans allm-reply allm-whitespace-pre-line allm-font-normal allm-text-sm allm-md:text-sm allm-flex allm-flex-col allm-gap-y-1",dangerouslySetInnerHTML:{__html:h1(t)}})})})]},e),w.jsx("div",{className:"allm-text-[10px] allm-text-gray-400 allm-ml-[54px] allm-mr-6 allm-mt-2 allm-text-left allm-font-sans",children:x1(Date.now()/1e3)})]}):null)),I3=Z.memo(k3);var R1=NaN,F3="[object Symbol]",B3=/^\s+|\s+$/g,P3=/^[-+]0x[0-9a-f]+$/i,U3=/^0b[01]+$/i,q3=/^0o[0-7]+$/i,H3=parseInt,V3="object"==typeof Nt&&Nt&&Nt.Object===Object&&Nt,z3="object"==typeof self&&self&&self.Object===Object&&self,G3=V3||z3||Function("return this")(),Z3=Object.prototype.toString,j3=Math.max,W3=Math.min,Yu=function(){return G3.Date.now()};function Ku(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function L1(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&Z3.call(e)==F3}(e))return R1;if(Ku(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Ku(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(B3,"");var n=U3.test(e);return n||q3.test(e)?H3(e.slice(2),n?2:8):P3.test(e)?R1:+e}var Q3=function(e,t,n){var r,o,a,s,i,l,u=0,c=!1,p=!1,d=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function g(_){var S=r,R=o;return r=o=void 0,u=_,s=e.apply(R,S)}function C(_){var S=_-l;return void 0===l||S>=t||S<0||p&&_-u>=a}function h(){var _=Yu();if(C(_))return m(_);i=setTimeout(h,function(_){var q=t-(_-l);return p?W3(q,a-(_-u)):q}(_))}function m(_){return i=void 0,d&&r?g(_):(r=o=void 0,s)}function N(){var _=Yu(),S=C(_);if(r=arguments,o=this,l=_,S){if(void 0===i)return function(_){return u=_,i=setTimeout(h,t),c?g(_):s}(l);if(p)return i=setTimeout(h,t),g(l)}return void 0===i&&(i=setTimeout(h,t)),s}return t=L1(t)||0,Ku(n)&&(c=!!n.leading,a=(p="maxWait"in n)?j3(L1(n.maxWait)||0,t):a,d="trailing"in n?!!n.trailing:d),N.cancel=function(){void 0!==i&&clearTimeout(i),u=0,r=l=o=i=void 0},N.flush=function(){return void 0===i?s:m(Yu())},N};const J3=jo(Q3);function e8({settings:e={},history:t=[]}){const n=Z.useRef(null),[r,o]=Z.useState(!0),a=Z.useRef(null);Z.useEffect((()=>{l()}),[t]);const i=J3((()=>{if(!a.current)return;const c=a.current.scrollHeight-a.current.scrollTop-a.current.clientHeight<=40;o(c)}),100);Z.useEffect((()=>{!function(){if(!a.current)return null;const c=a.current;if(!c)return null;c.addEventListener("scroll",i)}()}),[]);const l=()=>{a.current&&a.current.scrollTo({top:a.current.scrollHeight,behavior:"smooth"})};return 0===t.length?w.jsx("div",{className:"allm-pb-[100px] allm-pt-[5px] allm-rounded-lg allm-px-2 allm-h-full allm-mt-2 allm-gap-y-2 allm-overflow-y-scroll allm-flex allm-flex-col allm-justify-start allm-no-scroll",children:w.jsx("div",{className:"allm-flex allm-h-full allm-flex-col allm-items-center allm-justify-center",children:w.jsx("p",{className:"allm-text-slate-400 allm-text-sm allm-font-sans allm-py-4 allm-text-center",children:(null==e?void 0:e.greeting)??"Send a chat to get started."})})}):w.jsxs("div",{className:"allm-pb-[30px] allm-pt-[5px] allm-rounded-lg allm-px-2 allm-h-full allm-gap-y-2 allm-overflow-y-scroll allm-flex allm-flex-col allm-justify-start allm-no-scroll allm-md:max-h-[500px]",id:"chat-history",ref:a,children:[t.map(((u,c)=>{const p=c===t.length-1;return c===t.length-1&&"assistant"===u.role&&u.animate?w.jsx(I3,{ref:p?n:null,uuid:u.uuid,reply:u.content,pending:u.pending,sources:u.sources,error:u.error,closed:u.closed},u.uuid):w.jsx(O3,{ref:p?n:null,message:u.content,sentAt:u.sentAt||Date.now()/1e3,role:u.role,sources:u.sources,chatId:u.chatId,feedbackScore:u.feedbackScore,error:u.error},c)})),!r&&w.jsx("div",{className:"allm-fixed allm-bottom-[10rem] allm-right-[50px] allm-z-50 allm-cursor-pointer allm-animate-pulse",children:w.jsx("div",{className:"allm-flex allm-flex-col allm-items-center",children:w.jsx("div",{className:"allm-p-1 allm-rounded-full allm-border allm-border-white/10 allm-bg-black/20 hover:allm-bg-black/50",children:w.jsx(I2,{weight:"bold",className:"allm-text-white/50 allm-w-5 allm-h-5",onClick:l,id:"scroll-to-bottom-button","aria-label":"Scroll to bottom"})})})})]})}function t8(){return w.jsx("div",{className:"allm-h-full allm-w-full allm-relative",children:w.jsx("div",{className:"allm-h-full allm-max-h-[82vh] allm-pb-[100px] allm-pt-[5px] allm-bg-gray-100 allm-rounded-lg allm-px-2 allm-h-full allm-mt-2 allm-gap-y-2 allm-overflow-y-scroll allm-flex allm-flex-col allm-justify-start allm-no-scroll",children:w.jsx("div",{className:"allm-flex allm-h-full allm-flex-col allm-items-center allm-justify-center",children:w.jsx(nu,{size:14,className:"allm-text-slate-400 allm-animate-spin"})})})})}function n8({message:e,submit:t,onChange:n,inputDisabled:r,buttonDisabled:o}){const a=Z.useRef(null),s=Z.useRef(null),[i,l]=Z.useState(!1);Z.useEffect((()=>{!r&&s.current&&s.current.focus(),c()}),[r]);const c=()=>{s.current&&(s.current.style.height="auto")},d=g=>{const A=g.target;A.style.height="auto",A.style.height=0!==g.target.value.length?A.scrollHeight+"px":"auto"};return w.jsx("div",{className:"allm-w-full allm-sticky allm-bottom-0 allm-z-10 allm-flex allm-justify-center allm-items-center allm-bg-white",children:w.jsx("form",{onSubmit:g=>{l(!1),t(g)},className:"allm-flex allm-flex-col allm-gap-y-1 allm-rounded-t-lg allm-w-full allm-items-center allm-justify-center",children:w.jsx("div",{className:"allm-flex allm-items-center allm-w-full",children:w.jsx("div",{className:"allm-bg-white allm-flex allm-flex-col allm-px-4 allm-overflow-hidden allm-w-full",children:w.jsxs("div",{style:{border:"1.5px solid #22262833"},className:"allm-flex allm-items-center allm-w-full allm-rounded-2xl",children:[w.jsx("textarea",{ref:s,onKeyUp:d,onKeyDown:g=>{13==g.keyCode&&(g.shiftKey||t(g))},onChange:n,required:!0,disabled:r,onFocus:()=>l(!0),onBlur:g=>{l(!1),d(g)},value:e,className:"allm-font-sans allm-border-none allm-cursor-text allm-max-h-[100px] allm-text-[14px] allm-mx-2 allm-py-2 allm-w-full allm-text-black allm-bg-transparent placeholder:allm-text-slate-800/60 allm-resize-none active:allm-outline-none focus:allm-outline-none allm-flex-grow",placeholder:"Send a message",id:"message-input"}),w.jsxs("button",{ref:a,type:"submit",disabled:o,className:"allm-bg-transparent allm-border-none allm-inline-flex allm-justify-center allm-rounded-2xl allm-cursor-pointer allm-text-black group",id:"send-message-button","aria-label":"Send message",children:[o?w.jsx(nu,{className:"allm-w-4 allm-h-4 allm-animate-spin"}):w.jsx(pp,{size:24,className:"allm-my-3 allm-text-[#22262899]/60 group-hover:allm-text-[#22262899]/90",weight:"fill"}),w.jsx("span",{className:"allm-sr-only",children:"Send message"})]})]})})})})})}function o8({sessionId:e,settings:t,knownHistory:n=[]}){const[r,o]=Z.useState(""),[a,s]=Z.useState(!1),[i,l]=Z.useState(n);Z.useEffect((()=>{n.length!==i.length&&l([...n])}),[n]);return Z.useEffect((()=>{!0===a&&async function(){const d=i.length>0?i[i.length-1]:null,g=i.length>0?i.slice(0,-1):[];var A=[...g];if(!d||null==d||!d.userMessage)return s(!1),!1;await ds.streamChat(e,t,d.userMessage,(b=>function(e,t,n,r,o){const{uuid:a,textResponse:s,type:i,sources:l=[],error:u,close:c}=e;if("abort"===i)t(!1),n([...r,{uuid:a,content:s,role:"assistant",sources:l,closed:!0,error:u,animate:!1,pending:!1}]),o.push({uuid:a,content:s,role:"assistant",sources:l,closed:!0,error:u,animate:!1,pending:!1});else if("textResponse"===i)t(!1),n([...r,{uuid:a,content:s,role:"assistant",sources:l,closed:c,error:u,animate:!c,pending:!1}]),o.push({uuid:a,content:s,role:"assistant",sources:l,closed:c,error:u,animate:!c,pending:!1});else if("textResponseChunk"===i){const p=o.findIndex((d=>d.uuid===a));if(-1!==p){const d={...o[p]},g={...d,content:d.content+s,sources:l,error:u,closed:c,animate:!c,pending:!1};o[p]=g}else o.push({uuid:a,sources:l,error:u,content:s,role:"assistant",closed:c,animate:!c,pending:!1});n([...o])}}(b,s,l,g,A)))}()}),[a,i]),w.jsxs("div",{className:"allm-h-full allm-w-full allm-flex allm-flex-col",children:[w.jsx("div",{className:"allm-flex-grow allm-overflow-y-auto",children:w.jsx(e8,{settings:t,history:i})}),w.jsx(n8,{message:r,submit:async p=>{if(p.preventDefault(),!r||""===r)return!1;const d=[...i,{content:r,role:"user"},{content:"",role:"assistant",pending:!0,userMessage:r,animate:!0}];l(d),o(""),s(!0)},onChange:p=>{o(p.target.value)},inputDisabled:a,buttonDisabled:a})]})}function O1({settings:e}){return e.noSponsor?null:w.jsx("div",{className:"allm-flex allm-w-full allm-items-center allm-justify-center",children:w.jsx("a",{style:{color:"#0119D9"},href:e.sponsorLink??"#",target:"_blank",rel:"noreferrer",className:"allm-text-xs allm-font-sans hover:allm-opacity-80 hover:allm-underline",children:e.sponsorText})})}function a8({setChatHistory:e,settings:t,sessionId:n}){return w.jsx("div",{className:"allm-w-full allm-flex allm-justify-center",children:w.jsx("button",{style:{color:"#7A7D7E"},className:"hover:allm-cursor-pointer allm-border-none allm-text-sm allm-bg-transparent hover:allm-opacity-80 hover:allm-underline",onClick:()=>(async()=>{await ds.resetEmbedChatSession(t,n),e([])})(),children:"Reset Chat"})})}function s8({closeChat:e,settings:t,sessionId:n}){const{chatHistory:r,setChatHistory:o,loading:a}=function(e=null,t=null){const[n,r]=Z.useState(!0),[o,a]=Z.useState([]);return Z.useEffect((()=>{!async function(){if(t&&e)try{const i=await ds.embedSessionHistory(e,t);a(i),r(!1)}catch(i){console.error("Error fetching historical chats:",i),r(!1)}}()}),[t,e]),{chatHistory:o,setChatHistory:a,loading:n}}(t,n);return a?w.jsxs("div",{className:"allm-flex allm-flex-col allm-h-full",children:[w.jsx(yp,{sessionId:n,settings:t,iconUrl:t.brandImageUrl,closeChat:e,setChatHistory:o}),w.jsx(t8,{}),w.jsxs("div",{className:"allm-pt-4 allm-pb-2 allm-h-fit allm-gap-y-1",children:[w.jsx(db,{}),w.jsx(O1,{settings:t})]})]}):(null==document||document.addEventListener("click",(function(e){var r;const t=e.target.closest("[data-code-snippet]"),n=null==(r=null==t?void 0:t.dataset)?void 0:r.code;if(!n)return!1;!function(e){var o,a,s;const t=document.querySelector(`[data-code="${e}"]`);if(!t)return!1;const n=null==(s=null==(a=null==(o=t.parentElement)?void 0:o.parentElement)?void 0:a.querySelector("pre:first-of-type"))?void 0:s.innerText;if(!n)return!1;window.navigator.clipboard.writeText(n),t.classList.add("allm-text-green-500");const r=t.innerHTML;t.innerText="Copied!",t.setAttribute("disabled",!0),setTimeout((()=>{t.classList.remove("allm-text-green-500"),t.innerHTML=r,t.removeAttribute("disabled")}),2500)}(n)})),w.jsxs("div",{className:"allm-flex allm-flex-col allm-h-full",children:[w.jsx(yp,{sessionId:n,settings:t,iconUrl:t.brandImageUrl,closeChat:e,setChatHistory:o}),w.jsx("div",{className:"allm-flex-grow allm-overflow-y-auto",children:w.jsx(o8,{sessionId:n,settings:t,knownHistory:r})}),w.jsxs("div",{className:"allm-mt-4 allm-pb-4 allm-h-fit allm-gap-y-2 allm-z-10",children:[w.jsx(O1,{settings:t}),w.jsx(a8,{setChatHistory:o,settings:t,sessionId:n})]})]}))}const k1=document.createElement("div");document.body.appendChild(k1),js.createRoot(k1).render(w.jsx(f.StrictMode,{children:w.jsx((function(){const{isChatOpen:e,toggleOpenChat:t}=function(){var r;const[e,t]=Z.useState(!(null==(r=null==window?void 0:window.localStorage)||!r.getItem(tu))||!1);return{isChatOpen:e,toggleOpenChat:function(o){!0===o&&window.localStorage.setItem(tu,"1"),!1===o&&window.localStorage.removeItem(tu),t(o)}}}(),n=function(){const[e,t]=Z.useState({loaded:!1,...v2});return Z.useEffect((()=>{!function(){if(!document)return!1;if(!pe.settings.baseApiUrl||!pe.settings.embedId)throw new Error("[AnythingLLM Embed Module::Abort] - Invalid script tag setup detected. Missing required parameters for boot!");t({...v2,...pe.settings,loaded:!0})}()}),[document]),e}(),r=y2();if(Z.useEffect((()=>{"on"===n.openOnLoad&&t(!0)}),[n.loaded]),!n.loaded)return null;const o={"bottom-left":"allm-bottom-0 allm-left-0 allm-ml-4","bottom-right":"allm-bottom-0 allm-right-0 allm-mr-4","top-left":"allm-top-0 allm-left-0 allm-ml-4 allm-mt-4","top-right":"allm-top-0 allm-right-0 allm-mr-4 allm-mt-4"},a=n.position||"bottom-right",s=n.windowWidth??"400px",i=n.windowHeight??"700px";return w.jsxs(w.Fragment,{children:[w.jsx(Rh,{}),w.jsx("div",{id:"anything-llm-embed-chat-container",className:"allm-fixed allm-inset-0 allm-z-50 "+(e?"allm-block":"allm-hidden"),children:w.jsx("div",{style:{maxWidth:s,maxHeight:i},className:`allm-h-full allm-w-full allm-bg-white allm-fixed allm-bottom-0 allm-right-0 allm-mb-4 allm-md:mr-4 allm-rounded-2xl allm-border allm-border-gray-300 allm-shadow-[0_4px_14px_rgba(0,0,0,0.25)] ${o[a]}`,id:"anything-llm-chat",children:e&&w.jsx(s8,{closeChat:()=>t(!1),settings:n,sessionId:r})})}),!e&&w.jsx("div",{id:"anything-llm-embed-chat-button-container",className:`allm-fixed allm-bottom-0 ${o[a]} allm-mb-4 allm-z-50`,children:w.jsx(JA,{settings:n,isOpen:e,toggleOpen:()=>t(!0)})})]})}),{})}));const Kn=Object.assign({},(null==(I1=null==document?void 0:document.currentScript)?void 0:I1.dataset)||{}),pe={settings:Kn,stylesSrc:function(e=null){try{const t=new URL(e);return t.pathname=t.pathname.replace("anythingllm-chat-widget.js","anythingllm-chat-widget.min.css").replace("anythingllm-chat-widget.min.js","anythingllm-chat-widget.min.css"),t.toString()}catch{return""}}(null==(M1=null==document?void 0:document.currentScript)?void 0:M1.src),USER_STYLES:{msgBg:(null==Kn?void 0:Kn.userBgColor)??"#3DBEF5",base:"allm-text-white allm-rounded-t-[18px] allm-rounded-bl-[18px] allm-rounded-br-[4px] allm-mx-[20px]"},ASSISTANT_STYLES:{msgBg:(null==Kn?void 0:Kn.userBgColor)??"#FFFFFF",base:"allm-text-[#222628] allm-rounded-t-[18px] allm-rounded-br-[18px] allm-rounded-bl-[4px] allm-mr-[37px] allm-ml-[9px]"}};Jn.embedderSettings=pe,Object.defineProperty(Jn,Symbol.toStringTag,{value:"Module"})})); \ No newline at end of file -- GitLab