@allurereport/web-classic 3.0.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc--old.cjs +18 -0
- package/.babelrc.js +46 -0
- package/.eslintrc--old.cjs +125 -0
- package/.eslintrc.cjs +22 -0
- package/README.md +27 -0
- package/dist/multi/10.app-970f027d.js +1 -0
- package/dist/multi/222.app-970f027d.js +1 -0
- package/dist/multi/26.app-970f027d.js +1 -0
- package/dist/multi/302.app-970f027d.js +1 -0
- package/dist/multi/304.app-970f027d.js +1 -0
- package/dist/multi/369.app-970f027d.js +1 -0
- package/dist/multi/389.app-970f027d.js +1 -0
- package/dist/multi/498.app-970f027d.js +1 -0
- package/dist/multi/60.app-970f027d.js +1 -0
- package/dist/multi/643.app-970f027d.js +1 -0
- package/dist/multi/671.app-970f027d.js +1 -0
- package/dist/multi/725.app-970f027d.js +1 -0
- package/dist/multi/770.app-970f027d.js +1 -0
- package/dist/multi/848.app-970f027d.js +1 -0
- package/dist/multi/853.app-970f027d.js +1 -0
- package/dist/multi/872.app-970f027d.js +1 -0
- package/dist/multi/895.app-970f027d.js +1 -0
- package/dist/multi/920.app-970f027d.js +1 -0
- package/dist/multi/979.app-970f027d.js +1 -0
- package/dist/multi/991.app-970f027d.js +1 -0
- package/dist/multi/JetBrainsMono_vf-9e9649b6..woff2 +0 -0
- package/dist/multi/JetBrainsMono_vf-b9a9c326..woff +0 -0
- package/dist/multi/app-970f027d.js +2 -0
- package/dist/multi/app-970f027d.js.LICENSE.txt +25 -0
- package/dist/multi/manifest.json +28 -0
- package/dist/multi/pt-root-ui_vf-22fe60ca..woff +0 -0
- package/dist/multi/pt-root-ui_vf-9d251e8b..woff2 +0 -0
- package/dist/multi/styles-970f027d.css +283 -0
- package/dist/single/app-2babff54.js +2 -0
- package/dist/single/app-2babff54.js.LICENSE.txt +25 -0
- package/dist/single/manifest.json +3 -0
- package/package--old.json +106 -0
- package/package.json +107 -0
- package/postcss.config.js +5 -0
- package/src/assets/scss/_common.scss +142 -0
- package/src/assets/scss/code.scss +71 -0
- package/src/assets/scss/day.scss +51 -0
- package/src/assets/scss/fonts.scss +3 -0
- package/src/assets/scss/index.scss +9 -0
- package/src/assets/scss/night.scss +61 -0
- package/src/assets/scss/palette.scss +393 -0
- package/src/assets/scss/theme.scss +117 -0
- package/src/assets/scss/typography.scss +218 -0
- package/src/assets/scss/vars.scss +8 -0
- package/src/components/ArrowButton/index.tsx +36 -0
- package/src/components/ArrowButton/styles.scss +35 -0
- package/src/components/BaseLayout/index.tsx +23 -0
- package/src/components/BaseLayout/styles.scss +63 -0
- package/src/components/Behaviors/BehaviorsList.tsx +67 -0
- package/src/components/Behaviors/index.tsx +60 -0
- package/src/components/Behaviors/styles.scss +196 -0
- package/src/components/Categories/CategoriesList.tsx +67 -0
- package/src/components/Categories/index.tsx +60 -0
- package/src/components/Categories/styles.scss +196 -0
- package/src/components/Footer/FooterLogo.tsx +16 -0
- package/src/components/Footer/FooterVersion.tsx +33 -0
- package/src/components/Footer/index.tsx +13 -0
- package/src/components/Footer/styles.scss +14 -0
- package/src/components/Graphs/index.tsx +2 -0
- package/src/components/Header/index.tsx +14 -0
- package/src/components/Header/styles.scss +26 -0
- package/src/components/HeaderActions/Filters.tsx +90 -0
- package/src/components/HeaderActions/HeaderActions.tsx +59 -0
- package/src/components/HeaderActions/SortBy.tsx +128 -0
- package/src/components/HeaderActions/styles.scss +82 -0
- package/src/components/LanguagePicker/index.tsx +41 -0
- package/src/components/LanguagePicker/styles.scss +3 -0
- package/src/components/MainReport/index.tsx +19 -0
- package/src/components/Metadata/index.tsx +121 -0
- package/src/components/Metadata/styles.scss +146 -0
- package/src/components/MetadataButton/index.tsx +32 -0
- package/src/components/MetadataButton/styles.scss +53 -0
- package/src/components/Modal/ModalView.hbs +13 -0
- package/src/components/Modal/ModalView.js +43 -0
- package/src/components/Modal/index.tsx +174 -0
- package/src/components/Modal/styles.scss +126 -0
- package/src/components/Overview/index.tsx +9 -0
- package/src/components/Packages/PackagesList.tsx +67 -0
- package/src/components/Packages/index.tsx +59 -0
- package/src/components/Packages/styles.scss +196 -0
- package/src/components/ReportBody/Filters.tsx +92 -0
- package/src/components/ReportBody/HeaderActions.tsx +21 -0
- package/src/components/ReportBody/SortBy.tsx +132 -0
- package/src/components/ReportBody/context.tsx +106 -0
- package/src/components/ReportBody/index.tsx +71 -0
- package/src/components/ReportBody/styles.scss +64 -0
- package/src/components/ReportHeader/ReportHeaderLabelList.tsx +12 -0
- package/src/components/ReportHeader/ReportHeaderLogo.tsx +10 -0
- package/src/components/ReportHeader/ReportHeaderPie.tsx +14 -0
- package/src/components/ReportHeader/index.tsx +33 -0
- package/src/components/ReportHeader/styles.scss +49 -0
- package/src/components/ReportLogo/index.tsx +16 -0
- package/src/components/ReportLogo/styles.scss +20 -0
- package/src/components/ReportLogoFull/index.tsx +20 -0
- package/src/components/ReportLogoFull/styles.scss +7 -0
- package/src/components/ReportMetadata/MetadataItem.tsx +45 -0
- package/src/components/ReportMetadata/MetadataSummary.tsx +81 -0
- package/src/components/ReportMetadata/MetadataTestType.tsx +16 -0
- package/src/components/ReportMetadata/MetadataWithIcon.tsx +21 -0
- package/src/components/ReportMetadata/index.tsx +46 -0
- package/src/components/ReportMetadata/styles.scss +99 -0
- package/src/components/SideBySide/index.tsx +54 -0
- package/src/components/SideBySide/styles.scss +59 -0
- package/src/components/SideNav/SideNav.tsx +78 -0
- package/src/components/SideNav/SideNavView.hbs +39 -0
- package/src/components/SideNav/SideNavView.js +81 -0
- package/src/components/SideNav/styles.scss +126 -0
- package/src/components/Suites/index.tsx +62 -0
- package/src/components/Suites/styles.scss +10 -0
- package/src/components/Tabs/index.tsx +33 -0
- package/src/components/Tabs/styles.scss +56 -0
- package/src/components/TestResult/TestResultAttachmentsView/index.tsx +27 -0
- package/src/components/TestResult/TestResultAttachmentsView/styles.scss +12 -0
- package/src/components/TestResult/TestResultDescription/index.tsx +27 -0
- package/src/components/TestResult/TestResultDescription/styles.scss +12 -0
- package/src/components/TestResult/TestResultDropdown/index.tsx +23 -0
- package/src/components/TestResult/TestResultDropdown/styles.scss +34 -0
- package/src/components/TestResult/TestResultEmpty/index.tsx +33 -0
- package/src/components/TestResult/TestResultEmpty/styles.scss +25 -0
- package/src/components/TestResult/TestResultError/index.tsx +48 -0
- package/src/components/TestResult/TestResultError/styles.scss +51 -0
- package/src/components/TestResult/TestResultHeader/index.tsx +53 -0
- package/src/components/TestResult/TestResultHeader/styles.scss +43 -0
- package/src/components/TestResult/TestResultHistory/TestResultHistoryItem.tsx +67 -0
- package/src/components/TestResult/TestResultHistory/index.tsx +26 -0
- package/src/components/TestResult/TestResultHistory/styles.scss +63 -0
- package/src/components/TestResult/TestResultInfo/TestResultInfoStatuses.tsx +30 -0
- package/src/components/TestResult/TestResultInfo/index.tsx +79 -0
- package/src/components/TestResult/TestResultInfo/styles.scss +50 -0
- package/src/components/TestResult/TestResultLinks/index.tsx +56 -0
- package/src/components/TestResult/TestResultLinks/styles.scss +30 -0
- package/src/components/TestResult/TestResultMetadata/index.tsx +27 -0
- package/src/components/TestResult/TestResultMetadata/styles.scss +8 -0
- package/src/components/TestResult/TestResultNavigation/index.tsx +80 -0
- package/src/components/TestResult/TestResultNavigation/styles.scss +48 -0
- package/src/components/TestResult/TestResultOverview.tsx +40 -0
- package/src/components/TestResult/TestResultParameters/index.tsx +30 -0
- package/src/components/TestResult/TestResultParameters/styles.scss +8 -0
- package/src/components/TestResult/TestResultPrevStatuses/index.tsx +49 -0
- package/src/components/TestResult/TestResultPrevStatuses/styles.scss +57 -0
- package/src/components/TestResult/TestResultRetriesView/TestResultRetriesItem.tsx +49 -0
- package/src/components/TestResult/TestResultRetriesView/index.tsx +20 -0
- package/src/components/TestResult/TestResultRetriesView/styles.scss +69 -0
- package/src/components/TestResult/TestResultSetup/index.tsx +49 -0
- package/src/components/TestResult/TestResultSeverity/index.tsx +27 -0
- package/src/components/TestResult/TestResultSeverity/styles.scss +29 -0
- package/src/components/TestResult/TestResultStatus/index.tsx +26 -0
- package/src/components/TestResult/TestResultStatus/styles.scss +36 -0
- package/src/components/TestResult/TestResultSteps/HtmlAttachmentPreview.tsx +12 -0
- package/src/components/TestResult/TestResultSteps/attachment.tsx +68 -0
- package/src/components/TestResult/TestResultSteps/attachmentCode.tsx +20 -0
- package/src/components/TestResult/TestResultSteps/attachmentImage.tsx +32 -0
- package/src/components/TestResult/TestResultSteps/attachmentVideo.tsx +15 -0
- package/src/components/TestResult/TestResultSteps/index.tsx +49 -0
- package/src/components/TestResult/TestResultSteps/styles.scss +225 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachment.tsx +77 -0
- package/src/components/TestResult/TestResultSteps/testResultAttachmentInfo.tsx +83 -0
- package/src/components/TestResult/TestResultSteps/testResultStep.tsx +78 -0
- package/src/components/TestResult/TestResultSteps/testResultStepInfo.tsx +30 -0
- package/src/components/TestResult/TestResultSteps/wrongAttachment.tsx +8 -0
- package/src/components/TestResult/TestResultTabs/index.tsx +59 -0
- package/src/components/TestResult/TestResultTabs/styles.scss +76 -0
- package/src/components/TestResult/TestResultTeardown/index.tsx +49 -0
- package/src/components/TestResult/TestResultView.hbs +32 -0
- package/src/components/TestResult/TestResultView.js +90 -0
- package/src/components/TestResult/index.tsx +54 -0
- package/src/components/TestResult/styles.scss +29 -0
- package/src/components/TestResultView/index.tsx +31 -0
- package/src/components/ThemeButton/ThemeButton.tsx +20 -0
- package/src/components/Timeline/index.tsx +2 -0
- package/src/components/Tree/Tree.tsx +76 -0
- package/src/components/Tree/TreeHeader.tsx +82 -0
- package/src/components/Tree/TreeItem.tsx +49 -0
- package/src/components/Tree/TreeItemIcon.tsx +32 -0
- package/src/components/Tree/index.tsx +60 -0
- package/src/components/Tree/styles.scss +185 -0
- package/src/favicon.ico +0 -0
- package/src/index.html +40 -0
- package/src/index.js +52 -0
- package/src/index.tsx +60 -0
- package/src/mixins.scss +128 -0
- package/src/rtl.scss +19 -0
- package/src/stores/behaviors.ts +127 -0
- package/src/stores/categories.ts +127 -0
- package/src/stores/chart.ts +32 -0
- package/src/stores/envInfo.ts +34 -0
- package/src/stores/index.ts +4 -0
- package/src/stores/locale.ts +83 -0
- package/src/stores/packages.ts +127 -0
- package/src/stores/router.ts +55 -0
- package/src/stores/stats.ts +36 -0
- package/src/stores/tabs.ts +7 -0
- package/src/stores/testResults.ts +66 -0
- package/src/stores/theme.ts +33 -0
- package/src/stores/tree.ts +127 -0
- package/src/stores/types.ts +5 -0
- package/src/styles.scss +91 -0
- package/src/translations/am.json +127 -0
- package/src/translations/az.json +127 -0
- package/src/translations/br.json +214 -0
- package/src/translations/constants.ts +124 -0
- package/src/translations/de.json +127 -0
- package/src/translations/en.json +128 -0
- package/src/translations/es.json +118 -0
- package/src/translations/fr.json +118 -0
- package/src/translations/he.json +118 -0
- package/src/translations/isv.json +216 -0
- package/src/translations/it.json +118 -0
- package/src/translations/ja.json +118 -0
- package/src/translations/ka.json +118 -0
- package/src/translations/kr.json +118 -0
- package/src/translations/nl.json +118 -0
- package/src/translations/pl.json +116 -0
- package/src/translations/pt.json +118 -0
- package/src/translations/ru.json +116 -0
- package/src/translations/sv.json +118 -0
- package/src/translations/tr.json +118 -0
- package/src/translations/zh.json +118 -0
- package/src/types/globals.d.ts +13 -0
- package/src/types/window.d.ts +8 -0
- package/src/utils/attachments.ts +156 -0
- package/src/utils/capitalize.ts +6 -0
- package/src/utils/copyToClipboard.ts +16 -0
- package/src/utils/isMac.ts +8 -0
- package/src/utils/navigate.ts +7 -0
- package/src/utils/statuses.js +1 -0
- package/src/utils/statuses.ts +55 -0
- package/src/utils/time.ts +17 -0
- package/src/utils/treeFilters.ts +139 -0
- package/src/variables.scss +71 -0
- package/test/utils/treeFilters.test.ts +448 -0
- package/tsconfig.json +25 -0
- package/types.d.ts +85 -0
- package/vitest.config.ts +18 -0
- package/webpack.config--old.js +127 -0
- package/webpack.config.js +108 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! For license information please see app-970f027d.js.LICENSE.txt */
|
|
2
|
+
!function(){var e,t,n,r,i={891:function(){Prism.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/}},282:function(e,t,n){var r=function(e){var t=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,n=0,r={},i={manual:e.Prism&&e.Prism.manual,disableWorkerMessageHandler:e.Prism&&e.Prism.disableWorkerMessageHandler,util:{encode:function e(t){return t instanceof o?new o(t.type,e(t.content),t.alias):Array.isArray(t)?t.map(e):t.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).slice(8,-1)},objId:function(e){return e.__id||Object.defineProperty(e,"__id",{value:++n}),e.__id},clone:function e(t,n){var r,o;switch(n=n||{},i.util.type(t)){case"Object":if(o=i.util.objId(t),n[o])return n[o];for(var a in r={},n[o]=r,t)t.hasOwnProperty(a)&&(r[a]=e(t[a],n));return r;case"Array":return o=i.util.objId(t),n[o]?n[o]:(r=[],n[o]=r,t.forEach((function(t,i){r[i]=e(t,n)})),r);default:return t}},getLanguage:function(e){for(;e;){var n=t.exec(e.className);if(n)return n[1].toLowerCase();e=e.parentElement}return"none"},setLanguage:function(e,n){e.className=e.className.replace(RegExp(t,"gi"),""),e.classList.add("language-"+n)},currentScript:function(){if("undefined"==typeof document)return null;if("currentScript"in document)return document.currentScript;try{throw new Error}catch(r){var e=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(r.stack)||[])[1];if(e){var t=document.getElementsByTagName("script");for(var n in t)if(t[n].src==e)return t[n]}return null}},isActive:function(e,t,n){for(var r="no-"+t;e;){var i=e.classList;if(i.contains(t))return!0;if(i.contains(r))return!1;e=e.parentElement}return!!n}},languages:{plain:r,plaintext:r,text:r,txt:r,extend:function(e,t){var n=i.util.clone(i.languages[e]);for(var r in t)n[r]=t[r];return n},insertBefore:function(e,t,n,r){var o=(r=r||i.languages)[e],a={};for(var s in o)if(o.hasOwnProperty(s)){if(s==t)for(var l in n)n.hasOwnProperty(l)&&(a[l]=n[l]);n.hasOwnProperty(s)||(a[s]=o[s])}var c=r[e];return r[e]=a,i.languages.DFS(i.languages,(function(t,n){n===c&&t!=e&&(this[t]=a)})),a},DFS:function e(t,n,r,o){o=o||{};var a=i.util.objId;for(var s in t)if(t.hasOwnProperty(s)){n.call(t,s,t[s],r||s);var l=t[s],c=i.util.type(l);"Object"!==c||o[a(l)]?"Array"!==c||o[a(l)]||(o[a(l)]=!0,e(l,n,s,o)):(o[a(l)]=!0,e(l,n,null,o))}}},plugins:{},highlightAll:function(e,t){i.highlightAllUnder(document,e,t)},highlightAllUnder:function(e,t,n){var r={callback:n,container:e,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};i.hooks.run("before-highlightall",r),r.elements=Array.prototype.slice.apply(r.container.querySelectorAll(r.selector)),i.hooks.run("before-all-elements-highlight",r);for(var o,a=0;o=r.elements[a++];)i.highlightElement(o,!0===t,r.callback)},highlightElement:function(t,n,r){var o=i.util.getLanguage(t),a=i.languages[o];i.util.setLanguage(t,o);var s=t.parentElement;s&&"pre"===s.nodeName.toLowerCase()&&i.util.setLanguage(s,o);var l={element:t,language:o,grammar:a,code:t.textContent};function c(e){l.highlightedCode=e,i.hooks.run("before-insert",l),l.element.innerHTML=l.highlightedCode,i.hooks.run("after-highlight",l),i.hooks.run("complete",l),r&&r.call(l.element)}if(i.hooks.run("before-sanity-check",l),(s=l.element.parentElement)&&"pre"===s.nodeName.toLowerCase()&&!s.hasAttribute("tabindex")&&s.setAttribute("tabindex","0"),!l.code)return i.hooks.run("complete",l),void(r&&r.call(l.element));if(i.hooks.run("before-highlight",l),l.grammar)if(n&&e.Worker){var u=new Worker(i.filename);u.onmessage=function(e){c(e.data)},u.postMessage(JSON.stringify({language:l.language,code:l.code,immediateClose:!0}))}else c(i.highlight(l.code,l.grammar,l.language));else c(i.util.encode(l.code))},highlight:function(e,t,n){var r={code:e,grammar:t,language:n};if(i.hooks.run("before-tokenize",r),!r.grammar)throw new Error('The language "'+r.language+'" has no grammar.');return r.tokens=i.tokenize(r.code,r.grammar),i.hooks.run("after-tokenize",r),o.stringify(i.util.encode(r.tokens),r.language)},tokenize:function(e,t){var n=t.rest;if(n){for(var r in n)t[r]=n[r];delete t.rest}var i=new l;return c(i,i.head,e),s(e,i,t,i.head,0),function(e){for(var t=[],n=e.head.next;n!==e.tail;)t.push(n.value),n=n.next;return t}(i)},hooks:{all:{},add:function(e,t){var n=i.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=i.hooks.all[e];if(n&&n.length)for(var r,o=0;r=n[o++];)r(t)}},Token:o};function o(e,t,n,r){this.type=e,this.content=t,this.alias=n,this.length=0|(r||"").length}function a(e,t,n,r){e.lastIndex=t;var i=e.exec(n);if(i&&r&&i[1]){var o=i[1].length;i.index+=o,i[0]=i[0].slice(o)}return i}function s(e,t,n,r,l,d){for(var f in n)if(n.hasOwnProperty(f)&&n[f]){var h=n[f];h=Array.isArray(h)?h:[h];for(var p=0;p<h.length;++p){if(d&&d.cause==f+","+p)return;var g=h[p],m=g.inside,v=!!g.lookbehind,b=!!g.greedy,y=g.alias;if(b&&!g.pattern.global){var _=g.pattern.toString().match(/[imsuy]*$/)[0];g.pattern=RegExp(g.pattern.source,_+"g")}for(var w=g.pattern||g,x=r.next,k=l;x!==t.tail&&!(d&&k>=d.reach);k+=x.value.length,x=x.next){var C=x.value;if(t.length>e.length)return;if(!(C instanceof o)){var S,M=1;if(b){if(!(S=a(w,k,e,v))||S.index>=e.length)break;var T=S.index,A=S.index+S[0].length,N=k;for(N+=x.value.length;T>=N;)N+=(x=x.next).value.length;if(k=N-=x.value.length,x.value instanceof o)continue;for(var O=x;O!==t.tail&&(N<A||"string"==typeof O.value);O=O.next)M++,N+=O.value.length;M--,C=e.slice(k,N),S.index-=k}else if(!(S=a(w,0,C,v)))continue;T=S.index;var P=S[0],L=C.slice(0,T),E=C.slice(T+P.length),F=k+C.length;d&&F>d.reach&&(d.reach=F);var j=x.prev;if(L&&(j=c(t,j,L),k+=L.length),u(t,j,M),x=c(t,j,new o(f,m?i.tokenize(P,m):P,y,P)),E&&c(t,x,E),M>1){var z={cause:f+","+p,reach:F};s(e,t,n,x.prev,k,z),d&&z.reach>d.reach&&(d.reach=z.reach)}}}}}}function l(){var e={value:null,prev:null,next:null},t={value:null,prev:e,next:null};e.next=t,this.head=e,this.tail=t,this.length=0}function c(e,t,n){var r=t.next,i={value:n,prev:t,next:r};return t.next=i,r.prev=i,e.length++,i}function u(e,t,n){for(var r=t.next,i=0;i<n&&r!==e.tail;i++)r=r.next;t.next=r,r.prev=t,e.length-=i}if(e.Prism=i,o.stringify=function e(t,n){if("string"==typeof t)return t;if(Array.isArray(t)){var r="";return t.forEach((function(t){r+=e(t,n)})),r}var o={type:t.type,content:e(t.content,n),tag:"span",classes:["token",t.type],attributes:{},language:n},a=t.alias;a&&(Array.isArray(a)?Array.prototype.push.apply(o.classes,a):o.classes.push(a)),i.hooks.run("wrap",o);var s="";for(var l in o.attributes)s+=" "+l+'="'+(o.attributes[l]||"").replace(/"/g,""")+'"';return"<"+o.tag+' class="'+o.classes.join(" ")+'"'+s+">"+o.content+"</"+o.tag+">"},!e.document)return e.addEventListener?(i.disableWorkerMessageHandler||e.addEventListener("message",(function(t){var n=JSON.parse(t.data),r=n.language,o=n.code,a=n.immediateClose;e.postMessage(i.highlight(o,i.languages[r],r)),a&&e.close()}),!1),i):i;var d=i.util.currentScript();function f(){i.manual||i.highlightAll()}if(d&&(i.filename=d.src,d.hasAttribute("data-manual")&&(i.manual=!0)),!i.manual){var h=document.readyState;"loading"===h||"interactive"===h&&d&&d.defer?document.addEventListener("DOMContentLoaded",f):window.requestAnimationFrame?window.requestAnimationFrame(f):window.setTimeout(f,16)}return i}("undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{});e.exports&&(e.exports=r),void 0!==n.g&&(n.g.Prism=r)},174:function(){!function(e){function t(e,t){return e.replace(/<<(\d+)>>/g,(function(e,n){return"(?:"+t[+n]+")"}))}function n(e,n,r){return RegExp(t(e,n),r||"")}function r(e,t){for(var n=0;n<t;n++)e=e.replace(/<<self>>/g,(function(){return"(?:"+e+")"}));return e.replace(/<<self>>/g,"[^\\s\\S]")}var i="bool byte char decimal double dynamic float int long object sbyte short string uint ulong ushort var void",o="class enum interface record struct",a="add alias and ascending async await by descending from(?=\\s*(?:\\w|$)) get global group into init(?=\\s*;) join let nameof not notnull on or orderby partial remove select set unmanaged value when where with(?=\\s*{)",s="abstract as base break case catch checked const continue default delegate do else event explicit extern finally fixed for foreach goto if implicit in internal is lock namespace new null operator out override params private protected public readonly ref return sealed sizeof stackalloc static switch this throw try typeof unchecked unsafe using virtual volatile while yield";function l(e){return"\\b(?:"+e.trim().replace(/ /g,"|")+")\\b"}var c=l(o),u=RegExp(l(i+" "+o+" "+a+" "+s)),d=l(o+" "+a+" "+s),f=l(i+" "+o+" "+s),h=r(/<(?:[^<>;=+\-*/%&|^]|<<self>>)*>/.source,2),p=r(/\((?:[^()]|<<self>>)*\)/.source,2),g=/@?\b[A-Za-z_]\w*\b/.source,m=t(/<<0>>(?:\s*<<1>>)?/.source,[g,h]),v=t(/(?!<<0>>)<<1>>(?:\s*\.\s*<<1>>)*/.source,[d,m]),b=/\[\s*(?:,\s*)*\]/.source,y=t(/<<0>>(?:\s*(?:\?\s*)?<<1>>)*(?:\s*\?)?/.source,[v,b]),_=t(/[^,()<>[\];=+\-*/%&|^]|<<0>>|<<1>>|<<2>>/.source,[h,p,b]),w=t(/\(<<0>>+(?:,<<0>>+)+\)/.source,[_]),x=t(/(?:<<0>>|<<1>>)(?:\s*(?:\?\s*)?<<2>>)*(?:\s*\?)?/.source,[w,v,b]),k={keyword:u,punctuation:/[<>()?,.:[\]]/},C=/'(?:[^\r\n'\\]|\\.|\\[Uux][\da-fA-F]{1,8})'/.source,S=/"(?:\\.|[^\\"\r\n])*"/.source,M=/@"(?:""|\\[\s\S]|[^\\"])*"(?!")/.source;e.languages.csharp=e.languages.extend("clike",{string:[{pattern:n(/(^|[^$\\])<<0>>/.source,[M]),lookbehind:!0,greedy:!0},{pattern:n(/(^|[^@$\\])<<0>>/.source,[S]),lookbehind:!0,greedy:!0}],"class-name":[{pattern:n(/(\busing\s+static\s+)<<0>>(?=\s*;)/.source,[v]),lookbehind:!0,inside:k},{pattern:n(/(\busing\s+<<0>>\s*=\s*)<<1>>(?=\s*;)/.source,[g,x]),lookbehind:!0,inside:k},{pattern:n(/(\busing\s+)<<0>>(?=\s*=)/.source,[g]),lookbehind:!0},{pattern:n(/(\b<<0>>\s+)<<1>>/.source,[c,m]),lookbehind:!0,inside:k},{pattern:n(/(\bcatch\s*\(\s*)<<0>>/.source,[v]),lookbehind:!0,inside:k},{pattern:n(/(\bwhere\s+)<<0>>/.source,[g]),lookbehind:!0},{pattern:n(/(\b(?:is(?:\s+not)?|as)\s+)<<0>>/.source,[y]),lookbehind:!0,inside:k},{pattern:n(/\b<<0>>(?=\s+(?!<<1>>|with\s*\{)<<2>>(?:\s*[=,;:{)\]]|\s+(?:in|when)\b))/.source,[x,f,g]),inside:k}],keyword:u,number:/(?:\b0(?:x[\da-f_]*[\da-f]|b[01_]*[01])|(?:\B\.\d+(?:_+\d+)*|\b\d+(?:_+\d+)*(?:\.\d+(?:_+\d+)*)?)(?:e[-+]?\d+(?:_+\d+)*)?)(?:[dflmu]|lu|ul)?\b/i,operator:/>>=?|<<=?|[-=]>|([-+&|])\1|~|\?\?=?|[-+*/%&|^!=<>]=?/,punctuation:/\?\.?|::|[{}[\];(),.:]/}),e.languages.insertBefore("csharp","number",{range:{pattern:/\.\./,alias:"operator"}}),e.languages.insertBefore("csharp","punctuation",{"named-parameter":{pattern:n(/([(,]\s*)<<0>>(?=\s*:)/.source,[g]),lookbehind:!0,alias:"punctuation"}}),e.languages.insertBefore("csharp","class-name",{namespace:{pattern:n(/(\b(?:namespace|using)\s+)<<0>>(?:\s*\.\s*<<0>>)*(?=\s*[;{])/.source,[g]),lookbehind:!0,inside:{punctuation:/\./}},"type-expression":{pattern:n(/(\b(?:default|sizeof|typeof)\s*\(\s*(?!\s))(?:[^()\s]|\s(?!\s)|<<0>>)*(?=\s*\))/.source,[p]),lookbehind:!0,alias:"class-name",inside:k},"return-type":{pattern:n(/<<0>>(?=\s+(?:<<1>>\s*(?:=>|[({]|\.\s*this\s*\[)|this\s*\[))/.source,[x,v]),inside:k,alias:"class-name"},"constructor-invocation":{pattern:n(/(\bnew\s+)<<0>>(?=\s*[[({])/.source,[x]),lookbehind:!0,inside:k,alias:"class-name"},"generic-method":{pattern:n(/<<0>>\s*<<1>>(?=\s*\()/.source,[g,h]),inside:{function:n(/^<<0>>/.source,[g]),generic:{pattern:RegExp(h),alias:"class-name",inside:k}}},"type-list":{pattern:n(/\b((?:<<0>>\s+<<1>>|record\s+<<1>>\s*<<5>>|where\s+<<2>>)\s*:\s*)(?:<<3>>|<<4>>|<<1>>\s*<<5>>|<<6>>)(?:\s*,\s*(?:<<3>>|<<4>>|<<6>>))*(?=\s*(?:where|[{;]|=>|$))/.source,[c,m,g,x,u.source,p,/\bnew\s*\(\s*\)/.source]),lookbehind:!0,inside:{"record-arguments":{pattern:n(/(^(?!new\s*\()<<0>>\s*)<<1>>/.source,[m,p]),lookbehind:!0,greedy:!0,inside:e.languages.csharp},keyword:u,"class-name":{pattern:RegExp(x),greedy:!0,inside:k},punctuation:/[,()]/}},preprocessor:{pattern:/(^[\t ]*)#.*/m,lookbehind:!0,alias:"property",inside:{directive:{pattern:/(#)\b(?:define|elif|else|endif|endregion|error|if|line|nullable|pragma|region|undef|warning)\b/,lookbehind:!0,alias:"keyword"}}}});var T=S+"|"+C,A=t(/\/(?![*/])|\/\/[^\r\n]*[\r\n]|\/\*(?:[^*]|\*(?!\/))*\*\/|<<0>>/.source,[T]),N=r(t(/[^"'/()]|<<0>>|\(<<self>>*\)/.source,[A]),2),O=/\b(?:assembly|event|field|method|module|param|property|return|type)\b/.source,P=t(/<<0>>(?:\s*\(<<1>>*\))?/.source,[v,N]);e.languages.insertBefore("csharp","class-name",{attribute:{pattern:n(/((?:^|[^\s\w>)?])\s*\[\s*)(?:<<0>>\s*:\s*)?<<1>>(?:\s*,\s*<<1>>)*(?=\s*\])/.source,[O,P]),lookbehind:!0,greedy:!0,inside:{target:{pattern:n(/^<<0>>(?=\s*:)/.source,[O]),alias:"keyword"},"attribute-arguments":{pattern:n(/\(<<0>>*\)/.source,[N]),inside:e.languages.csharp},"class-name":{pattern:RegExp(v),inside:{punctuation:/\./}},punctuation:/[:,]/}}});var L=/:[^}\r\n]+/.source,E=r(t(/[^"'/()]|<<0>>|\(<<self>>*\)/.source,[A]),2),F=t(/\{(?!\{)(?:(?![}:])<<0>>)*<<1>>?\}/.source,[E,L]),j=r(t(/[^"'/()]|\/(?!\*)|\/\*(?:[^*]|\*(?!\/))*\*\/|<<0>>|\(<<self>>*\)/.source,[T]),2),z=t(/\{(?!\{)(?:(?![}:])<<0>>)*<<1>>?\}/.source,[j,L]);function $(t,r){return{interpolation:{pattern:n(/((?:^|[^{])(?:\{\{)*)<<0>>/.source,[t]),lookbehind:!0,inside:{"format-string":{pattern:n(/(^\{(?:(?![}:])<<0>>)*)<<1>>(?=\}$)/.source,[r,L]),lookbehind:!0,inside:{punctuation:/^:/}},punctuation:/^\{|\}$/,expression:{pattern:/[\s\S]+/,alias:"language-csharp",inside:e.languages.csharp}}},string:/[\s\S]+/}}e.languages.insertBefore("csharp","string",{"interpolation-string":[{pattern:n(/(^|[^\\])(?:\$@|@\$)"(?:""|\\[\s\S]|\{\{|<<0>>|[^\\{"])*"/.source,[F]),lookbehind:!0,greedy:!0,inside:$(F,E)},{pattern:n(/(^|[^@\\])\$"(?:\\.|\{\{|<<0>>|[^\\"{])*"/.source,[z]),lookbehind:!0,greedy:!0,inside:$(z,j)}],char:{pattern:RegExp(C),greedy:!0}}),e.languages.dotnet=e.languages.cs=e.languages.csharp}(Prism)},678:function(){!function(e){var t=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:RegExp("@[\\w-](?:"+/[^;{\s"']|\s+(?!\s)/.source+"|"+t.source+")*?"+/(?:;|(?=\s*\{))/.source),inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+t.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+t.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+t.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:t,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var n=e.languages.markup;n&&(n.tag.addInlined("style","css"),n.tag.addAttribute("style","css"))}(Prism)},345:function(){Prism.languages.csv={value:/[^\r\n,"]+|"(?:[^"]|"")*"(?!")/,punctuation:/,/}},175:function(){!function(e){var t=/(?:\r?\n|\r)[ \t]*\|.+\|(?:(?!\|).)*/.source;e.languages.gherkin={pystring:{pattern:/("""|''')[\s\S]+?\1/,alias:"string"},comment:{pattern:/(^[ \t]*)#.*/m,lookbehind:!0},tag:{pattern:/(^[ \t]*)@\S*/m,lookbehind:!0},feature:{pattern:/((?:^|\r?\n|\r)[ \t]*)(?:Ability|Ahoy matey!|Arwedd|Aspekt|Besigheid Behoefte|Business Need|Caracteristica|Característica|Egenskab|Egenskap|Eiginleiki|Feature|Fīča|Fitur|Fonctionnalité|Fonksyonalite|Funcionalidade|Funcionalitat|Functionalitate|Funcţionalitate|Funcționalitate|Functionaliteit|Fungsi|Funkcia|Funkcija|Funkcionalitāte|Funkcionalnost|Funkcja|Funksie|Funktionalität|Funktionalitéit|Funzionalità|Hwaet|Hwæt|Jellemző|Karakteristik|Lastnost|Mak|Mogucnost|laH|Mogućnost|Moznosti|Možnosti|OH HAI|Omadus|Ominaisuus|Osobina|Özellik|Potrzeba biznesowa|perbogh|poQbogh malja'|Požadavek|Požiadavka|Pretty much|Qap|Qu'meH 'ut|Savybė|Tính năng|Trajto|Vermoë|Vlastnosť|Właściwość|Značilnost|Δυνατότητα|Λειτουργία|Могућност|Мөмкинлек|Особина|Свойство|Үзенчәлеклелек|Функционал|Функционалност|Функция|Функціонал|תכונה|خاصية|خصوصیت|صلاحیت|کاروبار کی ضرورت|وِیژگی|रूप लेख|ਖਾਸੀਅਤ|ਨਕਸ਼ ਨੁਹਾਰ|ਮੁਹਾਂਦਰਾ|గుణము|ಹೆಚ್ಚಳ|ความต้องการทางธุรกิจ|ความสามารถ|โครงหลัก|기능|フィーチャ|功能|機能):(?:[^:\r\n]+(?:\r?\n|\r|$))*/,lookbehind:!0,inside:{important:{pattern:/(:)[^\r\n]+/,lookbehind:!0},keyword:/[^:\r\n]+:/}},scenario:{pattern:/(^[ \t]*)(?:Abstract Scenario|Abstrakt Scenario|Achtergrond|Aer|Ær|Agtergrond|All y'all|Antecedentes|Antecedents|Atburðarás|Atburðarásir|Awww, look mate|B4|Background|Baggrund|Bakgrund|Bakgrunn|Bakgrunnur|Beispiele|Beispiller|Bối cảnh|Cefndir|Cenario|Cenário|Cenario de Fundo|Cenário de Fundo|Cenarios|Cenários|Contesto|Context|Contexte|Contexto|Conto|Contoh|Contone|Dæmi|Dasar|Dead men tell no tales|Delineacao do Cenario|Delineação do Cenário|Dis is what went down|Dữ liệu|Dyagram Senaryo|Dyagram senaryo|Egzanp|Ejemplos|Eksempler|Ekzemploj|Enghreifftiau|Esbozo do escenario|Escenari|Escenario|Esempi|Esquema de l'escenari|Esquema del escenario|Esquema do Cenario|Esquema do Cenário|EXAMPLZ|Examples|Exempel|Exemple|Exemples|Exemplos|First off|Fono|Forgatókönyv|Forgatókönyv vázlat|Fundo|Geçmiş|Grundlage|Hannergrond|ghantoH|Háttér|Heave to|Istorik|Juhtumid|Keadaan|Khung kịch bản|Khung tình huống|Kịch bản|Koncept|Konsep skenario|Kontèks|Kontekst|Kontekstas|Konteksts|Kontext|Konturo de la scenaro|Latar Belakang|lut chovnatlh|lut|lutmey|Lýsing Atburðarásar|Lýsing Dæma|MISHUN SRSLY|MISHUN|Menggariskan Senario|mo'|Náčrt Scenára|Náčrt Scénáře|Náčrt Scenáru|Oris scenarija|Örnekler|Osnova|Osnova Scenára|Osnova scénáře|Osnutek|Ozadje|Paraugs|Pavyzdžiai|Példák|Piemēri|Plan du scénario|Plan du Scénario|Plan Senaryo|Plan senaryo|Plang vum Szenario|Pozadí|Pozadie|Pozadina|Príklady|Příklady|Primer|Primeri|Primjeri|Przykłady|Raamstsenaarium|Reckon it's like|Rerefons|Scenár|Scénář|Scenarie|Scenarij|Scenarijai|Scenarijaus šablonas|Scenariji|Scenārijs|Scenārijs pēc parauga|Scenarijus|Scenario|Scénario|Scenario Amlinellol|Scenario Outline|Scenario Template|Scenariomal|Scenariomall|Scenarios|Scenariu|Scenariusz|Scenaro|Schema dello scenario|Se ðe|Se the|Se þe|Senario|Senaryo Deskripsyon|Senaryo deskripsyon|Senaryo|Senaryo taslağı|Shiver me timbers|Situācija|Situai|Situasie Uiteensetting|Situasie|Skenario konsep|Skenario|Skica|Structura scenariu|Structură scenariu|Struktura scenarija|Stsenaarium|Swa hwaer swa|Swa|Swa hwær swa|Szablon scenariusza|Szenario|Szenariogrundriss|Tapaukset|Tapaus|Tapausaihio|Taust|Tausta|Template Keadaan|Template Senario|Template Situai|The thing of it is|Tình huống|Variantai|Voorbeelde|Voorbeelden|Wharrimean is|Yo-ho-ho|You'll wanna|Założenia|Παραδείγματα|Περιγραφή Σεναρίου|Σενάρια|Σενάριο|Υπόβαθρο|Кереш|Контекст|Концепт|Мисаллар|Мисоллар|Основа|Передумова|Позадина|Предистория|Предыстория|Приклади|Пример|Примери|Примеры|Рамка на сценарий|Скица|Структура сценарија|Структура сценария|Структура сценарію|Сценарий|Сценарий структураси|Сценарийның төзелеше|Сценарији|Сценарио|Сценарій|Тарих|Үрнәкләр|דוגמאות|רקע|תבנית תרחיש|תרחיש|الخلفية|الگوی سناریو|امثلة|پس منظر|زمینه|سناریو|سيناريو|سيناريو مخطط|مثالیں|منظر نامے کا خاکہ|منظرنامہ|نمونه ها|उदाहरण|परिदृश्य|परिदृश्य रूपरेखा|पृष्ठभूमि|ਉਦਾਹਰਨਾਂ|ਪਟਕਥਾ|ਪਟਕਥਾ ਢਾਂਚਾ|ਪਟਕਥਾ ਰੂਪ ਰੇਖਾ|ਪਿਛੋਕੜ|ఉదాహరణలు|కథనం|నేపథ్యం|సన్నివేశం|ಉದಾಹರಣೆಗಳು|ಕಥಾಸಾರಾಂಶ|ವಿವರಣೆ|ಹಿನ್ನೆಲೆ|โครงสร้างของเหตุการณ์|ชุดของตัวอย่าง|ชุดของเหตุการณ์|แนวคิด|สรุปเหตุการณ์|เหตุการณ์|배경|시나리오|시나리오 개요|예|サンプル|シナリオ|シナリオアウトライン|シナリオテンプレ|シナリオテンプレート|テンプレ|例|例子|剧本|剧本大纲|劇本|劇本大綱|场景|场景大纲|場景|場景大綱|背景):[^:\r\n]*/m,lookbehind:!0,inside:{important:{pattern:/(:)[^\r\n]*/,lookbehind:!0},keyword:/[^:\r\n]+:/}},"table-body":{pattern:RegExp("("+t+")(?:"+t+")+"),lookbehind:!0,inside:{outline:{pattern:/<[^>]+>/,alias:"variable"},td:{pattern:/\s*[^\s|][^|]*/,alias:"string"},punctuation:/\|/}},"table-head":{pattern:RegExp(t),inside:{th:{pattern:/\s*[^\s|][^|]*/,alias:"variable"},punctuation:/\|/}},atrule:{pattern:/(^[ \t]+)(?:'a|'ach|'ej|7|a|A také|A taktiež|A tiež|A zároveň|Aber|Ac|Adott|Akkor|Ak|Aleshores|Ale|Ali|Allora|Alors|Als|Ama|Amennyiben|Amikor|Ampak|an|AN|Ananging|And y'all|And|Angenommen|Anrhegedig a|An|Apabila|Atès|Atesa|Atunci|Avast!|Aye|A|awer|Bagi|Banjur|Bet|Biết|Blimey!|Buh|But at the end of the day I reckon|But y'all|But|BUT|Cal|Când|Cand|Cando|Ce|Cuando|Če|Ða ðe|Ða|Dadas|Dada|Dados|Dado|DaH ghu' bejlu'|dann|Dann|Dano|Dan|Dar|Dat fiind|Data|Date fiind|Date|Dati fiind|Dati|Daţi fiind|Dați fiind|DEN|Dato|De|Den youse gotta|Dengan|Diberi|Diyelim ki|Donada|Donat|Donitaĵo|Do|Dun|Duota|Ðurh|Eeldades|Ef|Eğer ki|Entao|Então|Entón|E|En|Entonces|Epi|És|Etant donnée|Etant donné|Et|Étant données|Étant donnée|Étant donné|Etant données|Etant donnés|Étant donnés|Fakat|Gangway!|Gdy|Gegeben seien|Gegeben sei|Gegeven|Gegewe|ghu' noblu'|Gitt|Given y'all|Given|Givet|Givun|Ha|Cho|I CAN HAZ|In|Ir|It's just unbelievable|I|Ja|Jeśli|Jeżeli|Kad|Kada|Kadar|Kai|Kaj|Když|Keď|Kemudian|Ketika|Khi|Kiedy|Ko|Kuid|Kui|Kun|Lan|latlh|Le sa a|Let go and haul|Le|Lè sa a|Lè|Logo|Lorsqu'<|Lorsque|mä|Maar|Mais|Mając|Ma|Majd|Maka|Manawa|Mas|Men|Menawa|Mutta|Nalika|Nalikaning|Nanging|Når|När|Nato|Nhưng|Niin|Njuk|O zaman|Och|Og|Oletetaan|Ond|Onda|Oraz|Pak|Pero|Però|Podano|Pokiaľ|Pokud|Potem|Potom|Privzeto|Pryd|Quan|Quand|Quando|qaSDI'|Så|Sed|Se|Siis|Sipoze ke|Sipoze Ke|Sipoze|Si|Şi|Și|Soit|Stel|Tada|Tad|Takrat|Tak|Tapi|Ter|Tetapi|Tha the|Tha|Then y'all|Then|Thì|Thurh|Toda|Too right|Un|Und|ugeholl|Và|vaj|Vendar|Ve|wann|Wanneer|WEN|Wenn|When y'all|When|Wtedy|Wun|Y'know|Yeah nah|Yna|Youse know like when|Youse know when youse got|Y|Za predpokladu|Za předpokladu|Zadan|Zadani|Zadano|Zadate|Zadato|Zakładając|Zaradi|Zatati|Þa þe|Þa|Þá|Þegar|Þurh|Αλλά|Δεδομένου|Και|Όταν|Τότε|А також|Агар|Але|Али|Аммо|А|Әгәр|Әйтик|Әмма|Бирок|Ва|Вә|Дадено|Дано|Допустим|Если|Задате|Задати|Задато|И|І|К тому же|Када|Кад|Когато|Когда|Коли|Ләкин|Лекин|Нәтиҗәдә|Нехай|Но|Онда|Припустимо, що|Припустимо|Пусть|Также|Та|Тогда|Тоді|То|Унда|Һәм|Якщо|אבל|אזי|אז|בהינתן|וגם|כאשר|آنگاه|اذاً|اگر|اما|اور|با فرض|بالفرض|بفرض|پھر|تب|ثم|جب|عندما|فرض کیا|لكن|لیکن|متى|هنگامی|و|अगर|और|कदा|किन्तु|चूंकि|जब|तथा|तदा|तब|परन्तु|पर|यदि|ਅਤੇ|ਜਦੋਂ|ਜਿਵੇਂ ਕਿ|ਜੇਕਰ|ਤਦ|ਪਰ|అప్పుడు|ఈ పరిస్థితిలో|కాని|చెప్పబడినది|మరియు|ಆದರೆ|ನಂತರ|ನೀಡಿದ|ಮತ್ತು|ಸ್ಥಿತಿಯನ್ನು|กำหนดให้|ดังนั้น|แต่|เมื่อ|และ|그러면<|그리고<|단<|만약<|만일<|먼저<|조건<|하지만<|かつ<|しかし<|ただし<|ならば<|もし<|並且<|但し<|但是<|假如<|假定<|假設<|假设<|前提<|同时<|同時<|并且<|当<|當<|而且<|那么<|那麼<)(?=[ \t])/m,lookbehind:!0},string:{pattern:/"(?:\\.|[^"\\\r\n])*"|'(?:\\.|[^'\\\r\n])*'/,inside:{outline:{pattern:/<[^>]+>/,alias:"variable"}}},outline:{pattern:/<[^>]+>/,alias:"variable"}}}(Prism)},699:function(){Prism.languages.go=Prism.languages.extend("clike",{string:{pattern:/(^|[^\\])"(?:\\.|[^"\\\r\n])*"|`[^`]*`/,lookbehind:!0,greedy:!0},keyword:/\b(?:break|case|chan|const|continue|default|defer|else|fallthrough|for|func|go(?:to)?|if|import|interface|map|package|range|return|select|struct|switch|type|var)\b/,boolean:/\b(?:_|false|iota|nil|true)\b/,number:[/\b0(?:b[01_]+|o[0-7_]+)i?\b/i,/\b0x(?:[a-f\d_]+(?:\.[a-f\d_]*)?|\.[a-f\d_]+)(?:p[+-]?\d+(?:_\d+)*)?i?(?!\w)/i,/(?:\b\d[\d_]*(?:\.[\d_]*)?|\B\.\d[\d_]*)(?:e[+-]?[\d_]+)?i?(?!\w)/i],operator:/[*\/%^!=]=?|\+[=+]?|-[=-]?|\|[=|]?|&(?:=|&|\^=?)?|>(?:>=?|=)?|<(?:<=?|=|-)?|:=|\.\.\./,builtin:/\b(?:append|bool|byte|cap|close|complex|complex(?:64|128)|copy|delete|error|float(?:32|64)|u?int(?:8|16|32|64)?|imag|len|make|new|panic|print(?:ln)?|real|recover|rune|string|uintptr)\b/}),Prism.languages.insertBefore("go","string",{char:{pattern:/'(?:\\.|[^'\\\r\n]){0,10}'/,greedy:!0}}),delete Prism.languages.go["class-name"]},225:function(){!function(e){var t=/\b(?:abstract|assert|boolean|break|byte|case|catch|char|class|const|continue|default|do|double|else|enum|exports|extends|final|finally|float|for|goto|if|implements|import|instanceof|int|interface|long|module|native|new|non-sealed|null|open|opens|package|permits|private|protected|provides|public|record(?!\s*[(){}[\]<>=%~.:,;?+\-*/&|^])|requires|return|sealed|short|static|strictfp|super|switch|synchronized|this|throw|throws|to|transient|transitive|try|uses|var|void|volatile|while|with|yield)\b/,n=/(?:[a-z]\w*\s*\.\s*)*(?:[A-Z]\w*\s*\.\s*)*/.source,r={pattern:RegExp(/(^|[^\w.])/.source+n+/[A-Z](?:[\d_A-Z]*[a-z]\w*)?\b/.source),lookbehind:!0,inside:{namespace:{pattern:/^[a-z]\w*(?:\s*\.\s*[a-z]\w*)*(?:\s*\.)?/,inside:{punctuation:/\./}},punctuation:/\./}};e.languages.java=e.languages.extend("clike",{string:{pattern:/(^|[^\\])"(?:\\.|[^"\\\r\n])*"/,lookbehind:!0,greedy:!0},"class-name":[r,{pattern:RegExp(/(^|[^\w.])/.source+n+/[A-Z]\w*(?=\s+\w+\s*[;,=()]|\s*(?:\[[\s,]*\]\s*)?::\s*new\b)/.source),lookbehind:!0,inside:r.inside},{pattern:RegExp(/(\b(?:class|enum|extends|implements|instanceof|interface|new|record|throws)\s+)/.source+n+/[A-Z]\w*\b/.source),lookbehind:!0,inside:r.inside}],keyword:t,function:[e.languages.clike.function,{pattern:/(::\s*)[a-z_]\w*/,lookbehind:!0}],number:/\b0b[01][01_]*L?\b|\b0x(?:\.[\da-f_p+-]+|[\da-f_]+(?:\.[\da-f_p+-]+)?)\b|(?:\b\d[\d_]*(?:\.[\d_]*)?|\B\.\d[\d_]*)(?:e[+-]?\d[\d_]*)?[dfl]?/i,operator:{pattern:/(^|[^.])(?:<<=?|>>>?=?|->|--|\+\+|&&|\|\||::|[?:~]|[-+*/%&|^!=<>]=?)/m,lookbehind:!0},constant:/\b[A-Z][A-Z_\d]+\b/}),e.languages.insertBefore("java","string",{"triple-quoted-string":{pattern:/"""[ \t]*[\r\n](?:(?:"|"")?(?:\\.|[^"\\]))*"""/,greedy:!0,alias:"string"},char:{pattern:/'(?:\\.|[^'\\\r\n]){1,6}'/,greedy:!0}}),e.languages.insertBefore("java","class-name",{annotation:{pattern:/(^|[^.])@\w+(?:\s*\.\s*\w+)*/,lookbehind:!0,alias:"punctuation"},generics:{pattern:/<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&)|<(?:[\w\s,.?]|&(?!&))*>)*>)*>)*>/,inside:{"class-name":r,keyword:t,punctuation:/[<>(),.:]/,operator:/[?&|]/}},import:[{pattern:RegExp(/(\bimport\s+)/.source+n+/(?:[A-Z]\w*|\*)(?=\s*;)/.source),lookbehind:!0,inside:{namespace:r.inside.namespace,punctuation:/\./,operator:/\*/,"class-name":/\w+/}},{pattern:RegExp(/(\bimport\s+static\s+)/.source+n+/(?:\w+|\*)(?=\s*;)/.source),lookbehind:!0,alias:"static",inside:{namespace:r.inside.namespace,static:/\b\w+$/,punctuation:/\./,operator:/\*/,"class-name":/\w+/}}],namespace:{pattern:RegExp(/(\b(?:exports|import(?:\s+static)?|module|open|opens|package|provides|requires|to|transitive|uses|with)\s+)(?!<keyword>)[a-z]\w*(?:\.[a-z]\w*)*\.?/.source.replace(/<keyword>/g,(function(){return t.source}))),lookbehind:!0,inside:{punctuation:/\./}}})}(Prism)},590:function(){Prism.languages.javascript=Prism.languages.extend("clike",{"class-name":[Prism.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(/(^|[^\w$])/.source+"(?:"+/NaN|Infinity/.source+"|"+/0[bB][01]+(?:_[01]+)*n?/.source+"|"+/0[oO][0-7]+(?:_[0-7]+)*n?/.source+"|"+/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source+"|"+/\d+(?:_\d+)*n/.source+"|"+/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source+")"+/(?![\w$])/.source),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),Prism.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,Prism.languages.insertBefore("javascript","keyword",{regex:{pattern:RegExp(/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)/.source+/\//.source+"(?:"+/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}/.source+"|"+/(?:\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.)*\])*\])*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}v[dgimyus]{0,7}/.source+")"+/(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/.source),lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:Prism.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:Prism.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:Prism.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),Prism.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:Prism.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),Prism.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),Prism.languages.markup&&(Prism.languages.markup.tag.addInlined("script","javascript"),Prism.languages.markup.tag.addAttribute(/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,"javascript")),Prism.languages.js=Prism.languages.javascript},895:function(){Prism.languages.json={property:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,lookbehind:!0,greedy:!0},string:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,lookbehind:!0,greedy:!0},comment:{pattern:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,greedy:!0},number:/-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,punctuation:/[{}[\],]/,operator:/:/,boolean:/\b(?:false|true)\b/,null:{pattern:/\bnull\b/,alias:"keyword"}},Prism.languages.webmanifest=Prism.languages.json},988:function(){!function(e){e.languages.kotlin=e.languages.extend("clike",{keyword:{pattern:/(^|[^.])\b(?:abstract|actual|annotation|as|break|by|catch|class|companion|const|constructor|continue|crossinline|data|do|dynamic|else|enum|expect|external|final|finally|for|fun|get|if|import|in|infix|init|inline|inner|interface|internal|is|lateinit|noinline|null|object|open|operator|out|override|package|private|protected|public|reified|return|sealed|set|super|suspend|tailrec|this|throw|to|try|typealias|val|var|vararg|when|where|while)\b/,lookbehind:!0},function:[{pattern:/(?:`[^\r\n`]+`|\b\w+)(?=\s*\()/,greedy:!0},{pattern:/(\.)(?:`[^\r\n`]+`|\w+)(?=\s*\{)/,lookbehind:!0,greedy:!0}],number:/\b(?:0[xX][\da-fA-F]+(?:_[\da-fA-F]+)*|0[bB][01]+(?:_[01]+)*|\d+(?:_\d+)*(?:\.\d+(?:_\d+)*)?(?:[eE][+-]?\d+(?:_\d+)*)?[fFL]?)\b/,operator:/\+[+=]?|-[-=>]?|==?=?|!(?:!|==?)?|[\/*%<>]=?|[?:]:?|\.\.|&&|\|\||\b(?:and|inv|or|shl|shr|ushr|xor)\b/}),delete e.languages.kotlin["class-name"];var t={"interpolation-punctuation":{pattern:/^\$\{?|\}$/,alias:"punctuation"},expression:{pattern:/[\s\S]+/,inside:e.languages.kotlin}};e.languages.insertBefore("kotlin","string",{"string-literal":[{pattern:/"""(?:[^$]|\$(?:(?!\{)|\{[^{}]*\}))*?"""/,alias:"multiline",inside:{interpolation:{pattern:/\$(?:[a-z_]\w*|\{[^{}]*\})/i,inside:t},string:/[\s\S]+/}},{pattern:/"(?:[^"\\\r\n$]|\\.|\$(?:(?!\{)|\{[^{}]*\}))*"/,alias:"singleline",inside:{interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$(?:[a-z_]\w*|\{[^{}]*\})/i,lookbehind:!0,inside:t},string:/[\s\S]+/}}],char:{pattern:/'(?:[^'\\\r\n]|\\(?:.|u[a-fA-F0-9]{0,4}))'/,greedy:!0}}),delete e.languages.kotlin.string,e.languages.insertBefore("kotlin","keyword",{annotation:{pattern:/\B@(?:\w+:)?(?:[A-Z]\w*|\[[^\]]+\])/,alias:"builtin"}}),e.languages.insertBefore("kotlin","function",{label:{pattern:/\b\w+@|@\w+\b/,alias:"symbol"}}),e.languages.kt=e.languages.kotlin,e.languages.kts=e.languages.kotlin}(Prism)},347:function(){!function(e){function t(e,t){return"___"+e.toUpperCase()+t+"___"}Object.defineProperties(e.languages["markup-templating"]={},{buildPlaceholders:{value:function(n,r,i,o){if(n.language===r){var a=n.tokenStack=[];n.code=n.code.replace(i,(function(e){if("function"==typeof o&&!o(e))return e;for(var i,s=a.length;-1!==n.code.indexOf(i=t(r,s));)++s;return a[s]=e,i})),n.grammar=e.languages.markup}}},tokenizePlaceholders:{value:function(n,r){if(n.language===r&&n.tokenStack){n.grammar=e.languages[r];var i=0,o=Object.keys(n.tokenStack);!function a(s){for(var l=0;l<s.length&&!(i>=o.length);l++){var c=s[l];if("string"==typeof c||c.content&&"string"==typeof c.content){var u=o[i],d=n.tokenStack[u],f="string"==typeof c?c:c.content,h=t(r,u),p=f.indexOf(h);if(p>-1){++i;var g=f.substring(0,p),m=new e.Token(r,e.tokenize(d,n.grammar),"language-"+r,d),v=f.substring(p+h.length),b=[];g&&b.push.apply(b,a([g])),b.push(m),v&&b.push.apply(b,a([v])),"string"==typeof c?s.splice.apply(s,[l,1].concat(b)):c.content=b}}else c.content&&a(c.content)}return s}(n.tokens)}}}})}(Prism)},709:function(){Prism.languages.markup={comment:{pattern:/<!--(?:(?!<!--)[\s\S])*?-->/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},Prism.languages.markup.tag.inside["attr-value"].inside.entity=Prism.languages.markup.entity,Prism.languages.markup.doctype.inside["internal-subset"].inside=Prism.languages.markup,Prism.hooks.add("wrap",(function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))})),Object.defineProperty(Prism.languages.markup.tag,"addInlined",{value:function(e,t){var n={};n["language-"+t]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:Prism.languages[t]},n.cdata=/^<!\[CDATA\[|\]\]>$/i;var r={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:n}};r["language-"+t]={pattern:/[\s\S]+/,inside:Prism.languages[t]};var i={};i[e]={pattern:RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g,(function(){return e})),"i"),lookbehind:!0,greedy:!0,inside:r},Prism.languages.insertBefore("markup","cdata",i)}}),Object.defineProperty(Prism.languages.markup.tag,"addAttribute",{value:function(e,t){Prism.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+e+")"+/\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,"i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[t,"language-"+t],inside:Prism.languages[t]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),Prism.languages.html=Prism.languages.markup,Prism.languages.mathml=Prism.languages.markup,Prism.languages.svg=Prism.languages.markup,Prism.languages.xml=Prism.languages.extend("markup",{}),Prism.languages.ssml=Prism.languages.xml,Prism.languages.atom=Prism.languages.xml,Prism.languages.rss=Prism.languages.xml},813:function(){!function(e){var t=/\/\*[\s\S]*?\*\/|\/\/.*|#(?!\[).*/,n=[{pattern:/\b(?:false|true)\b/i,alias:"boolean"},{pattern:/(::\s*)\b[a-z_]\w*\b(?!\s*\()/i,greedy:!0,lookbehind:!0},{pattern:/(\b(?:case|const)\s+)\b[a-z_]\w*(?=\s*[;=])/i,greedy:!0,lookbehind:!0},/\b(?:null)\b/i,/\b[A-Z_][A-Z0-9_]*\b(?!\s*\()/],r=/\b0b[01]+(?:_[01]+)*\b|\b0o[0-7]+(?:_[0-7]+)*\b|\b0x[\da-f]+(?:_[\da-f]+)*\b|(?:\b\d+(?:_\d+)*\.?(?:\d+(?:_\d+)*)?|\B\.\d+)(?:e[+-]?\d+)?/i,i=/<?=>|\?\?=?|\.{3}|\??->|[!=]=?=?|::|\*\*=?|--|\+\+|&&|\|\||<<|>>|[?~]|[/^|%*&<>.+-]=?/,o=/[{}\[\](),:;]/;e.languages.php={delimiter:{pattern:/\?>$|^<\?(?:php(?=\s)|=)?/i,alias:"important"},comment:t,variable:/\$+(?:\w+\b|(?=\{))/,package:{pattern:/(namespace\s+|use\s+(?:function\s+)?)(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,lookbehind:!0,inside:{punctuation:/\\/}},"class-name-definition":{pattern:/(\b(?:class|enum|interface|trait)\s+)\b[a-z_]\w*(?!\\)\b/i,lookbehind:!0,alias:"class-name"},"function-definition":{pattern:/(\bfunction\s+)[a-z_]\w*(?=\s*\()/i,lookbehind:!0,alias:"function"},keyword:[{pattern:/(\(\s*)\b(?:array|bool|boolean|float|int|integer|object|string)\b(?=\s*\))/i,alias:"type-casting",greedy:!0,lookbehind:!0},{pattern:/([(,?]\s*)\b(?:array(?!\s*\()|bool|callable|(?:false|null)(?=\s*\|)|float|int|iterable|mixed|object|self|static|string)\b(?=\s*\$)/i,alias:"type-hint",greedy:!0,lookbehind:!0},{pattern:/(\)\s*:\s*(?:\?\s*)?)\b(?:array(?!\s*\()|bool|callable|(?:false|null)(?=\s*\|)|float|int|iterable|mixed|never|object|self|static|string|void)\b/i,alias:"return-type",greedy:!0,lookbehind:!0},{pattern:/\b(?:array(?!\s*\()|bool|float|int|iterable|mixed|object|string|void)\b/i,alias:"type-declaration",greedy:!0},{pattern:/(\|\s*)(?:false|null)\b|\b(?:false|null)(?=\s*\|)/i,alias:"type-declaration",greedy:!0,lookbehind:!0},{pattern:/\b(?:parent|self|static)(?=\s*::)/i,alias:"static-context",greedy:!0},{pattern:/(\byield\s+)from\b/i,lookbehind:!0},/\bclass\b/i,{pattern:/((?:^|[^\s>:]|(?:^|[^-])>|(?:^|[^:]):)\s*)\b(?:abstract|and|array|as|break|callable|case|catch|clone|const|continue|declare|default|die|do|echo|else|elseif|empty|enddeclare|endfor|endforeach|endif|endswitch|endwhile|enum|eval|exit|extends|final|finally|fn|for|foreach|function|global|goto|if|implements|include|include_once|instanceof|insteadof|interface|isset|list|match|namespace|never|new|or|parent|print|private|protected|public|readonly|require|require_once|return|self|static|switch|throw|trait|try|unset|use|var|while|xor|yield|__halt_compiler)\b/i,lookbehind:!0}],"argument-name":{pattern:/([(,]\s*)\b[a-z_]\w*(?=\s*:(?!:))/i,lookbehind:!0},"class-name":[{pattern:/(\b(?:extends|implements|instanceof|new(?!\s+self|\s+static))\s+|\bcatch\s*\()\b[a-z_]\w*(?!\\)\b/i,greedy:!0,lookbehind:!0},{pattern:/(\|\s*)\b[a-z_]\w*(?!\\)\b/i,greedy:!0,lookbehind:!0},{pattern:/\b[a-z_]\w*(?!\\)\b(?=\s*\|)/i,greedy:!0},{pattern:/(\|\s*)(?:\\?\b[a-z_]\w*)+\b/i,alias:"class-name-fully-qualified",greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/(?:\\?\b[a-z_]\w*)+\b(?=\s*\|)/i,alias:"class-name-fully-qualified",greedy:!0,inside:{punctuation:/\\/}},{pattern:/(\b(?:extends|implements|instanceof|new(?!\s+self\b|\s+static\b))\s+|\bcatch\s*\()(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,alias:"class-name-fully-qualified",greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/\b[a-z_]\w*(?=\s*\$)/i,alias:"type-declaration",greedy:!0},{pattern:/(?:\\?\b[a-z_]\w*)+(?=\s*\$)/i,alias:["class-name-fully-qualified","type-declaration"],greedy:!0,inside:{punctuation:/\\/}},{pattern:/\b[a-z_]\w*(?=\s*::)/i,alias:"static-context",greedy:!0},{pattern:/(?:\\?\b[a-z_]\w*)+(?=\s*::)/i,alias:["class-name-fully-qualified","static-context"],greedy:!0,inside:{punctuation:/\\/}},{pattern:/([(,?]\s*)[a-z_]\w*(?=\s*\$)/i,alias:"type-hint",greedy:!0,lookbehind:!0},{pattern:/([(,?]\s*)(?:\\?\b[a-z_]\w*)+(?=\s*\$)/i,alias:["class-name-fully-qualified","type-hint"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}},{pattern:/(\)\s*:\s*(?:\?\s*)?)\b[a-z_]\w*(?!\\)\b/i,alias:"return-type",greedy:!0,lookbehind:!0},{pattern:/(\)\s*:\s*(?:\?\s*)?)(?:\\?\b[a-z_]\w*)+\b(?!\\)/i,alias:["class-name-fully-qualified","return-type"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}}],constant:n,function:{pattern:/(^|[^\\\w])\\?[a-z_](?:[\w\\]*\w)?(?=\s*\()/i,lookbehind:!0,inside:{punctuation:/\\/}},property:{pattern:/(->\s*)\w+/,lookbehind:!0},number:r,operator:i,punctuation:o};var a={pattern:/\{\$(?:\{(?:\{[^{}]+\}|[^{}]+)\}|[^{}])+\}|(^|[^\\{])\$+(?:\w+(?:\[[^\r\n\[\]]+\]|->\w+)?)/,lookbehind:!0,inside:e.languages.php},s=[{pattern:/<<<'([^']+)'[\r\n](?:.*[\r\n])*?\1;/,alias:"nowdoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<<'[^']+'|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<'?|[';]$/}}}},{pattern:/<<<(?:"([^"]+)"[\r\n](?:.*[\r\n])*?\1;|([a-z_]\w*)[\r\n](?:.*[\r\n])*?\2;)/i,alias:"heredoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<<(?:"[^"]+"|[a-z_]\w*)|[a-z_]\w*;$/i,alias:"symbol",inside:{punctuation:/^<<<"?|[";]$/}},interpolation:a}},{pattern:/`(?:\\[\s\S]|[^\\`])*`/,alias:"backtick-quoted-string",greedy:!0},{pattern:/'(?:\\[\s\S]|[^\\'])*'/,alias:"single-quoted-string",greedy:!0},{pattern:/"(?:\\[\s\S]|[^\\"])*"/,alias:"double-quoted-string",greedy:!0,inside:{interpolation:a}}];e.languages.insertBefore("php","variable",{string:s,attribute:{pattern:/#\[(?:[^"'\/#]|\/(?![*/])|\/\/.*$|#(?!\[).*$|\/\*(?:[^*]|\*(?!\/))*\*\/|"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*')+\](?=\s*[a-z$#])/im,greedy:!0,inside:{"attribute-content":{pattern:/^(#\[)[\s\S]+(?=\]$)/,lookbehind:!0,inside:{comment:t,string:s,"attribute-class-name":[{pattern:/([^:]|^)\b[a-z_]\w*(?!\\)\b/i,alias:"class-name",greedy:!0,lookbehind:!0},{pattern:/([^:]|^)(?:\\?\b[a-z_]\w*)+/i,alias:["class-name","class-name-fully-qualified"],greedy:!0,lookbehind:!0,inside:{punctuation:/\\/}}],constant:n,number:r,operator:i,punctuation:o}},delimiter:{pattern:/^#\[|\]$/,alias:"punctuation"}}}}),e.hooks.add("before-tokenize",(function(t){/<\?/.test(t.code)&&e.languages["markup-templating"].buildPlaceholders(t,"php",/<\?(?:[^"'/#]|\/(?![*/])|("|')(?:\\[\s\S]|(?!\1)[^\\])*\1|(?:\/\/|#(?!\[))(?:[^?\n\r]|\?(?!>))*(?=$|\?>|[\r\n])|#\[|\/\*(?:[^*]|\*(?!\/))*(?:\*\/|$))*?(?:\?>|$)/g)})),e.hooks.add("after-tokenize",(function(t){e.languages["markup-templating"].tokenizePlaceholders(t,"php")}))}(Prism)},623:function(){Prism.languages.python={comment:{pattern:/(^|[^\\])#.*/,lookbehind:!0,greedy:!0},"string-interpolation":{pattern:/(?:f|fr|rf)(?:("""|''')[\s\S]*?\1|("|')(?:\\.|(?!\2)[^\\\r\n])*\2)/i,greedy:!0,inside:{interpolation:{pattern:/((?:^|[^{])(?:\{\{)*)\{(?!\{)(?:[^{}]|\{(?!\{)(?:[^{}]|\{(?!\{)(?:[^{}])+\})+\})+\}/,lookbehind:!0,inside:{"format-spec":{pattern:/(:)[^:(){}]+(?=\}$)/,lookbehind:!0},"conversion-option":{pattern://,alias:"punctuation"},rest:null}},string:/[\s\S]+/}},"triple-quoted-string":{pattern:/(?:[rub]|br|rb)?("""|''')[\s\S]*?\1/i,greedy:!0,alias:"string"},string:{pattern:/(?:[rub]|br|rb)?("|')(?:\\.|(?!\1)[^\\\r\n])*\1/i,greedy:!0},function:{pattern:/((?:^|\s)def[ \t]+)[a-zA-Z_]\w*(?=\s*\()/g,lookbehind:!0},"class-name":{pattern:/(\bclass\s+)\w+/i,lookbehind:!0},decorator:{pattern:/(^[\t ]*)@\w+(?:\.\w+)*/m,lookbehind:!0,alias:["annotation","punctuation"],inside:{punctuation:/\./}},keyword:/\b(?:_(?=\s*:)|and|as|assert|async|await|break|case|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|match|nonlocal|not|or|pass|print|raise|return|try|while|with|yield)\b/,builtin:/\b(?:__import__|abs|all|any|apply|ascii|basestring|bin|bool|buffer|bytearray|bytes|callable|chr|classmethod|cmp|coerce|compile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:False|None|True)\b/,number:/\b0(?:b(?:_?[01])+|o(?:_?[0-7])+|x(?:_?[a-f0-9])+)\b|(?:\b\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\B\.\d+(?:_\d+)*)(?:e[+-]?\d+(?:_\d+)*)?j?(?!\w)/i,operator:/[-+%=]=?|!=|:=|\*\*?=?|\/\/?=?|<[<=>]?|>[=>]?|[&|^~]/,punctuation:/[{}[\];(),.:]/},Prism.languages.python["string-interpolation"].inside.interpolation.inside.rest=Prism.languages.python,Prism.languages.py=Prism.languages.python},817:function(){!function(e){e.languages.ruby=e.languages.extend("clike",{comment:{pattern:/#.*|^=begin\s[\s\S]*?^=end/m,greedy:!0},"class-name":{pattern:/(\b(?:class|module)\s+|\bcatch\s+\()[\w.\\]+|\b[A-Z_]\w*(?=\s*\.\s*new\b)/,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:BEGIN|END|alias|and|begin|break|case|class|def|define_method|defined|do|each|else|elsif|end|ensure|extend|for|if|in|include|module|new|next|nil|not|or|prepend|private|protected|public|raise|redo|require|rescue|retry|return|self|super|then|throw|undef|unless|until|when|while|yield)\b/,operator:/\.{2,3}|&\.|===|<?=>|[!=]?~|(?:&&|\|\||<<|>>|\*\*|[+\-*/%<>!^&|=])=?|[?:]/,punctuation:/[(){}[\].,;]/}),e.languages.insertBefore("ruby","operator",{"double-colon":{pattern:/::/,alias:"punctuation"}});var t={pattern:/((?:^|[^\\])(?:\\{2})*)#\{(?:[^{}]|\{[^{}]*\})*\}/,lookbehind:!0,inside:{content:{pattern:/^(#\{)[\s\S]+(?=\}$)/,lookbehind:!0,inside:e.languages.ruby},delimiter:{pattern:/^#\{|\}$/,alias:"punctuation"}}};delete e.languages.ruby.function;var n="(?:"+[/([^a-zA-Z0-9\s{(\[<=])(?:(?!\1)[^\\]|\\[\s\S])*\1/.source,/\((?:[^()\\]|\\[\s\S]|\((?:[^()\\]|\\[\s\S])*\))*\)/.source,/\{(?:[^{}\\]|\\[\s\S]|\{(?:[^{}\\]|\\[\s\S])*\})*\}/.source,/\[(?:[^\[\]\\]|\\[\s\S]|\[(?:[^\[\]\\]|\\[\s\S])*\])*\]/.source,/<(?:[^<>\\]|\\[\s\S]|<(?:[^<>\\]|\\[\s\S])*>)*>/.source].join("|")+")",r=/(?:"(?:\\.|[^"\\\r\n])*"|(?:\b[a-zA-Z_]\w*|[^\s\0-\x7F]+)[?!]?|\$.)/.source;e.languages.insertBefore("ruby","keyword",{"regex-literal":[{pattern:RegExp(/%r/.source+n+/[egimnosux]{0,6}/.source),greedy:!0,inside:{interpolation:t,regex:/[\s\S]+/}},{pattern:/(^|[^/])\/(?!\/)(?:\[[^\r\n\]]+\]|\\.|[^[/\\\r\n])+\/[egimnosux]{0,6}(?=\s*(?:$|[\r\n,.;})#]))/,lookbehind:!0,greedy:!0,inside:{interpolation:t,regex:/[\s\S]+/}}],variable:/[@$]+[a-zA-Z_]\w*(?:[?!]|\b)/,symbol:[{pattern:RegExp(/(^|[^:]):/.source+r),lookbehind:!0,greedy:!0},{pattern:RegExp(/([\r\n{(,][ \t]*)/.source+r+/(?=:(?!:))/.source),lookbehind:!0,greedy:!0}],"method-definition":{pattern:/(\bdef\s+)\w+(?:\s*\.\s*\w+)?/,lookbehind:!0,inside:{function:/\b\w+$/,keyword:/^self\b/,"class-name":/^\w+/,punctuation:/\./}}}),e.languages.insertBefore("ruby","string",{"string-literal":[{pattern:RegExp(/%[qQiIwWs]?/.source+n),greedy:!0,inside:{interpolation:t,string:/[\s\S]+/}},{pattern:/("|')(?:#\{[^}]+\}|#(?!\{)|\\(?:\r\n|[\s\S])|(?!\1)[^\\#\r\n])*\1/,greedy:!0,inside:{interpolation:t,string:/[\s\S]+/}},{pattern:/<<[-~]?([a-z_]\w*)[\r\n](?:.*[\r\n])*?[\t ]*\1/i,alias:"heredoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<[-~]?[a-z_]\w*|\b[a-z_]\w*$/i,inside:{symbol:/\b\w+/,punctuation:/^<<[-~]?/}},interpolation:t,string:/[\s\S]+/}},{pattern:/<<[-~]?'([a-z_]\w*)'[\r\n](?:.*[\r\n])*?[\t ]*\1/i,alias:"heredoc-string",greedy:!0,inside:{delimiter:{pattern:/^<<[-~]?'[a-z_]\w*'|\b[a-z_]\w*$/i,inside:{symbol:/\b\w+/,punctuation:/^<<[-~]?'|'$/}},string:/[\s\S]+/}}],"command-literal":[{pattern:RegExp(/%x/.source+n),greedy:!0,inside:{interpolation:t,command:{pattern:/[\s\S]+/,alias:"string"}}},{pattern:/`(?:#\{[^}]+\}|#(?!\{)|\\(?:\r\n|[\s\S])|[^\\`#\r\n])*`/,greedy:!0,inside:{interpolation:t,command:{pattern:/[\s\S]+/,alias:"string"}}}]}),delete e.languages.ruby.string,e.languages.insertBefore("ruby","number",{builtin:/\b(?:Array|Bignum|Binding|Class|Continuation|Dir|Exception|FalseClass|File|Fixnum|Float|Hash|IO|Integer|MatchData|Method|Module|NilClass|Numeric|Object|Proc|Range|Regexp|Stat|String|Struct|Symbol|TMS|Thread|ThreadGroup|Time|TrueClass)\b/,constant:/\b[A-Z][A-Z0-9_]*(?:[?!]|\b)/}),e.languages.rb=e.languages.ruby}(Prism)},54:function(){!function(e){e.languages.typescript=e.languages.extend("javascript",{"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|type)\s+)(?!keyof\b)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?:\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>)?/,lookbehind:!0,greedy:!0,inside:null},builtin:/\b(?:Array|Function|Promise|any|boolean|console|never|number|string|symbol|unknown)\b/}),e.languages.typescript.keyword.push(/\b(?:abstract|declare|is|keyof|readonly|require)\b/,/\b(?:asserts|infer|interface|module|namespace|type)\b(?=\s*(?:[{_$a-zA-Z\xA0-\uFFFF]|$))/,/\btype\b(?=\s*(?:[\{*]|$))/),delete e.languages.typescript.parameter,delete e.languages.typescript["literal-property"];var t=e.languages.extend("typescript",{});delete t["class-name"],e.languages.typescript["class-name"].inside=t,e.languages.insertBefore("typescript","function",{decorator:{pattern:/@[$\w\xA0-\uFFFF]+/,inside:{at:{pattern:/^@/,alias:"operator"},function:/^[\s\S]+/}},"generic-function":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>(?=\s*\()/,greedy:!0,inside:{function:/^#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*/,generic:{pattern:/<[\s\S]+/,alias:"class-name",inside:t}}}}),e.languages.ts=e.languages.typescript}(Prism)},108:function(){!function(){if("undefined"!=typeof Prism&&"undefined"!=typeof document){var e="line-numbers",t=/\n(?!$)/g,n=Prism.plugins.lineNumbers={getLine:function(t,n){if("PRE"===t.tagName&&t.classList.contains(e)){var r=t.querySelector(".line-numbers-rows");if(r){var i=parseInt(t.getAttribute("data-start"),10)||1,o=i+(r.children.length-1);n<i&&(n=i),n>o&&(n=o);var a=n-i;return r.children[a]}}},resize:function(e){i([e])},assumeViewportIndependence:!0},r=void 0;window.addEventListener("resize",(function(){n.assumeViewportIndependence&&r===window.innerWidth||(r=window.innerWidth,i(Array.prototype.slice.call(document.querySelectorAll("pre."+e))))})),Prism.hooks.add("complete",(function(n){if(n.code){var r=n.element,o=r.parentNode;if(o&&/pre/i.test(o.nodeName)&&!r.querySelector(".line-numbers-rows")&&Prism.util.isActive(r,e)){r.classList.remove(e),o.classList.add(e);var a,s=n.code.match(t),l=s?s.length+1:1,c=new Array(l+1).join("<span></span>");(a=document.createElement("span")).setAttribute("aria-hidden","true"),a.className="line-numbers-rows",a.innerHTML=c,o.hasAttribute("data-start")&&(o.style.counterReset="linenumber "+(parseInt(o.getAttribute("data-start"),10)-1)),n.element.appendChild(a),i([o]),Prism.hooks.run("line-numbers",n)}}})),Prism.hooks.add("line-numbers",(function(e){e.plugins=e.plugins||{},e.plugins.lineNumbers=!0}))}function i(e){if(0!=(e=e.filter((function(e){var t,n=(t=e,t?window.getComputedStyle?getComputedStyle(t):t.currentStyle||null:null)["white-space"];return"pre-wrap"===n||"pre-line"===n}))).length){var n=e.map((function(e){var n=e.querySelector("code"),r=e.querySelector(".line-numbers-rows");if(n&&r){var i=e.querySelector(".line-numbers-sizer"),o=n.textContent.split(t);i||((i=document.createElement("span")).className="line-numbers-sizer",n.appendChild(i)),i.innerHTML="0",i.style.display="block";var a=i.getBoundingClientRect().height;return i.innerHTML="",{element:e,lines:o,lineHeights:[],oneLinerHeight:a,sizer:i}}})).filter(Boolean);n.forEach((function(e){var t=e.sizer,n=e.lines,r=e.lineHeights,i=e.oneLinerHeight;r[n.length-1]=void 0,n.forEach((function(e,n){if(e&&e.length>1){var o=t.appendChild(document.createElement("span"));o.style.display="block",o.textContent=e}else r[n]=i}))})),n.forEach((function(e){for(var t=e.sizer,n=e.lineHeights,r=0,i=0;i<n.length;i++)void 0===n[i]&&(n[i]=t.children[r++].getBoundingClientRect().height)})),n.forEach((function(e){var t=e.sizer,n=e.element.querySelector(".line-numbers-rows");t.style.display="none",t.innerHTML="",e.lineHeights.forEach((function(e,t){n.children[t].style.height=e+"px"}))}))}}}()},364:function(){!function(){if("undefined"!=typeof Prism&&"undefined"!=typeof document)if(Prism.plugins.toolbar){var e={none:"Plain text",plain:"Plain text",plaintext:"Plain text",text:"Plain text",txt:"Plain text",html:"HTML",xml:"XML",svg:"SVG",mathml:"MathML",ssml:"SSML",rss:"RSS",css:"CSS",clike:"C-like",js:"JavaScript",abap:"ABAP",abnf:"ABNF",al:"AL",antlr4:"ANTLR4",g4:"ANTLR4",apacheconf:"Apache Configuration",apl:"APL",aql:"AQL",ino:"Arduino",arff:"ARFF",armasm:"ARM Assembly","arm-asm":"ARM Assembly",art:"Arturo",asciidoc:"AsciiDoc",adoc:"AsciiDoc",aspnet:"ASP.NET (C#)",asm6502:"6502 Assembly",asmatmel:"Atmel AVR Assembly",autohotkey:"AutoHotkey",autoit:"AutoIt",avisynth:"AviSynth",avs:"AviSynth","avro-idl":"Avro IDL",avdl:"Avro IDL",awk:"AWK",gawk:"GAWK",sh:"Shell",basic:"BASIC",bbcode:"BBcode",bbj:"BBj",bnf:"BNF",rbnf:"RBNF",bqn:"BQN",bsl:"BSL (1C:Enterprise)",oscript:"OneScript",csharp:"C#",cs:"C#",dotnet:"C#",cpp:"C++",cfscript:"CFScript",cfc:"CFScript",cil:"CIL",cilkc:"Cilk/C","cilk-c":"Cilk/C",cilkcpp:"Cilk/C++","cilk-cpp":"Cilk/C++",cilk:"Cilk/C++",cmake:"CMake",cobol:"COBOL",coffee:"CoffeeScript",conc:"Concurnas",csp:"Content-Security-Policy","css-extras":"CSS Extras",csv:"CSV",cue:"CUE",dataweave:"DataWeave",dax:"DAX",django:"Django/Jinja2",jinja2:"Django/Jinja2","dns-zone-file":"DNS zone file","dns-zone":"DNS zone file",dockerfile:"Docker",dot:"DOT (Graphviz)",gv:"DOT (Graphviz)",ebnf:"EBNF",editorconfig:"EditorConfig",ejs:"EJS",etlua:"Embedded Lua templating",erb:"ERB","excel-formula":"Excel Formula",xlsx:"Excel Formula",xls:"Excel Formula",fsharp:"F#","firestore-security-rules":"Firestore security rules",ftl:"FreeMarker Template Language",gml:"GameMaker Language",gamemakerlanguage:"GameMaker Language",gap:"GAP (CAS)",gcode:"G-code",gdscript:"GDScript",gedcom:"GEDCOM",gettext:"gettext",po:"gettext",glsl:"GLSL",gn:"GN",gni:"GN","linker-script":"GNU Linker Script",ld:"GNU Linker Script","go-module":"Go module","go-mod":"Go module",graphql:"GraphQL",hbs:"Handlebars",hs:"Haskell",hcl:"HCL",hlsl:"HLSL",http:"HTTP",hpkp:"HTTP Public-Key-Pins",hsts:"HTTP Strict-Transport-Security",ichigojam:"IchigoJam","icu-message-format":"ICU Message Format",idr:"Idris",ignore:".ignore",gitignore:".gitignore",hgignore:".hgignore",npmignore:".npmignore",inform7:"Inform 7",javadoc:"JavaDoc",javadoclike:"JavaDoc-like",javastacktrace:"Java stack trace",jq:"JQ",jsdoc:"JSDoc","js-extras":"JS Extras",json:"JSON",webmanifest:"Web App Manifest",json5:"JSON5",jsonp:"JSONP",jsstacktrace:"JS stack trace","js-templates":"JS Templates",keepalived:"Keepalived Configure",kts:"Kotlin Script",kt:"Kotlin",kumir:"KuMir (КуМир)",kum:"KuMir (КуМир)",latex:"LaTeX",tex:"TeX",context:"ConTeXt",lilypond:"LilyPond",ly:"LilyPond",emacs:"Lisp",elisp:"Lisp","emacs-lisp":"Lisp",llvm:"LLVM IR",log:"Log file",lolcode:"LOLCODE",magma:"Magma (CAS)",md:"Markdown","markup-templating":"Markup templating",matlab:"MATLAB",maxscript:"MAXScript",mel:"MEL",metafont:"METAFONT",mongodb:"MongoDB",moon:"MoonScript",n1ql:"N1QL",n4js:"N4JS",n4jsd:"N4JS","nand2tetris-hdl":"Nand To Tetris HDL",naniscript:"Naninovel Script",nani:"Naninovel Script",nasm:"NASM",neon:"NEON",nginx:"nginx",nsis:"NSIS",objectivec:"Objective-C",objc:"Objective-C",ocaml:"OCaml",opencl:"OpenCL",openqasm:"OpenQasm",qasm:"OpenQasm",parigp:"PARI/GP",objectpascal:"Object Pascal",psl:"PATROL Scripting Language",pcaxis:"PC-Axis",px:"PC-Axis",peoplecode:"PeopleCode",pcode:"PeopleCode",php:"PHP",phpdoc:"PHPDoc","php-extras":"PHP Extras","plant-uml":"PlantUML",plantuml:"PlantUML",plsql:"PL/SQL",powerquery:"PowerQuery",pq:"PowerQuery",mscript:"PowerQuery",powershell:"PowerShell",promql:"PromQL",properties:".properties",protobuf:"Protocol Buffers",purebasic:"PureBasic",pbfasm:"PureBasic",purs:"PureScript",py:"Python",qsharp:"Q#",qs:"Q#",q:"Q (kdb+ database)",qml:"QML",rkt:"Racket",cshtml:"Razor C#",razor:"Razor C#",jsx:"React JSX",tsx:"React TSX",renpy:"Ren'py",rpy:"Ren'py",res:"ReScript",rest:"reST (reStructuredText)",robotframework:"Robot Framework",robot:"Robot Framework",rb:"Ruby",sas:"SAS",sass:"Sass (Sass)",scss:"Sass (SCSS)","shell-session":"Shell session","sh-session":"Shell session",shellsession:"Shell session",sml:"SML",smlnj:"SML/NJ",solidity:"Solidity (Ethereum)",sol:"Solidity (Ethereum)","solution-file":"Solution file",sln:"Solution file",soy:"Soy (Closure Template)",sparql:"SPARQL",rq:"SPARQL","splunk-spl":"Splunk SPL",sqf:"SQF: Status Quo Function (Arma 3)",sql:"SQL",stata:"Stata Ado",iecst:"Structured Text (IEC 61131-3)",supercollider:"SuperCollider",sclang:"SuperCollider",systemd:"Systemd configuration file","t4-templating":"T4 templating","t4-cs":"T4 Text Templates (C#)",t4:"T4 Text Templates (C#)","t4-vb":"T4 Text Templates (VB)",tap:"TAP",tt2:"Template Toolkit 2",toml:"TOML",trickle:"trickle",troy:"troy",trig:"TriG",ts:"TypeScript",tsconfig:"TSConfig",uscript:"UnrealScript",uc:"UnrealScript",uorazor:"UO Razor Script",uri:"URI",url:"URL",vbnet:"VB.Net",vhdl:"VHDL",vim:"vim","visual-basic":"Visual Basic",vba:"VBA",vb:"Visual Basic",wasm:"WebAssembly","web-idl":"Web IDL",webidl:"Web IDL",wgsl:"WGSL",wiki:"Wiki markup",wolfram:"Wolfram language",nb:"Mathematica Notebook",wl:"Wolfram language",xeoracube:"XeoraCube","xml-doc":"XML doc (.net)",xojo:"Xojo (REALbasic)",xquery:"XQuery",yaml:"YAML",yml:"YAML",yang:"YANG"};Prism.plugins.toolbar.registerButton("show-language",(function(t){var n=t.element.parentNode;if(n&&/pre/i.test(n.nodeName)){var r,i=n.getAttribute("data-language")||e[t.language]||((r=t.language)?(r.substring(0,1).toUpperCase()+r.substring(1)).replace(/s(?=cript)/,"S"):r);if(i){var o=document.createElement("span");return o.textContent=i,o}}}))}else console.warn("Show Languages plugin loaded before Toolbar plugin.")}()},44:function(){!function(){if("undefined"!=typeof Prism&&"undefined"!=typeof document){var e=[],t={},n=function(){};Prism.plugins.toolbar={};var r=Prism.plugins.toolbar.registerButton=function(n,r){var i;i="function"==typeof r?r:function(e){var t;return"function"==typeof r.onClick?((t=document.createElement("button")).type="button",t.addEventListener("click",(function(){r.onClick.call(this,e)}))):"string"==typeof r.url?(t=document.createElement("a")).href=r.url:t=document.createElement("span"),r.className&&t.classList.add(r.className),t.textContent=r.text,t},n in t?console.warn('There is a button with the key "'+n+'" registered already.'):e.push(t[n]=i)},i=Prism.plugins.toolbar.hook=function(r){var i=r.element.parentNode;if(i&&/pre/i.test(i.nodeName)&&!i.parentNode.classList.contains("code-toolbar")){var o=document.createElement("div");o.classList.add("code-toolbar"),i.parentNode.insertBefore(o,i),o.appendChild(i);var a=document.createElement("div");a.classList.add("toolbar");var s=e,l=function(e){for(;e;){var t=e.getAttribute("data-toolbar-order");if(null!=t)return(t=t.trim()).length?t.split(/\s*,\s*/g):[];e=e.parentElement}}(r.element);l&&(s=l.map((function(e){return t[e]||n}))),s.forEach((function(e){var t=e(r);if(t){var n=document.createElement("div");n.classList.add("toolbar-item"),n.appendChild(t),a.appendChild(n)}})),o.appendChild(a)}};r("label",(function(e){var t=e.element.parentNode;if(t&&/pre/i.test(t.nodeName)&&t.hasAttribute("data-label")){var n,r,i=t.getAttribute("data-label");try{r=document.querySelector("template#"+i)}catch(e){}return r?n=r.content:(t.hasAttribute("data-url")?(n=document.createElement("a")).href=t.getAttribute("data-url"):n=document.createElement("span"),n.textContent=i),n}})),Prism.hooks.add("complete",i)}}()},79:function(e,t,n){var r={"./am.json":[60,60],"./az.json":[853,853],"./br.json":[770,770],"./de.json":[369,369],"./en.json":[389,389],"./es.json":[302,302],"./fr.json":[222,222],"./he.json":[725,725],"./isv.json":[848,848],"./it.json":[276,895],"./ja.json":[979,979],"./ka.json":[498,498],"./kr.json":[643,643],"./nl.json":[920,920],"./pl.json":[26,26],"./pt.json":[10,10],"./ru.json":[671,671],"./sv.json":[991,991],"./tr.json":[304,304],"./zh.json":[872,872]};function i(e){if(!n.o(r,e))return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}));var t=r[e],i=t[0];return n.e(t[1]).then((function(){return n.t(i,19)}))}i.keys=function(){return Object.keys(r)},i.id=79,e.exports=i}},o={};function a(e){var t=o[e];if(void 0!==t)return t.exports;var n=o[e]={exports:{}};return i[e](n,n.exports,a),n.exports}a.m=i,a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,{a:t}),t},t=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},a.t=function(n,r){if(1&r&&(n=this(n)),8&r)return n;if("object"==typeof n&&n){if(4&r&&n.__esModule)return n;if(16&r&&"function"==typeof n.then)return n}var i=Object.create(null);a.r(i);var o={};e=e||[null,t({}),t([]),t(t)];for(var s=2&r&&n;"object"==typeof s&&!~e.indexOf(s);s=t(s))Object.getOwnPropertyNames(s).forEach((function(e){o[e]=function(){return n[e]}}));return o.default=function(){return n},a.d(i,o),i},a.d=function(e,t){for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.f={},a.e=function(e){return Promise.all(Object.keys(a.f).reduce((function(t,n){return a.f[n](e,t),t}),[]))},a.u=function(e){return e+".app-"+a.h().slice(0,8)+".js"},a.miniCssF=function(e){},a.h=function(){return"970f027d62b038531d45"},a.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n={},r="@allurereport/web-classic:",a.l=function(e,t,i,o){if(n[e])n[e].push(t);else{var s,l;if(void 0!==i)for(var c=document.getElementsByTagName("script"),u=0;u<c.length;u++){var d=c[u];if(d.getAttribute("src")==e||d.getAttribute("data-webpack")==r+i){s=d;break}}s||(l=!0,(s=document.createElement("script")).charset="utf-8",s.timeout=120,a.nc&&s.setAttribute("nonce",a.nc),s.setAttribute("data-webpack",r+i),s.src=e),n[e]=[t];var f=function(t,r){s.onerror=s.onload=null,clearTimeout(h);var i=n[e];if(delete n[e],s.parentNode&&s.parentNode.removeChild(s),i&&i.forEach((function(e){return e(r)})),t)return t(r)},h=setTimeout(f.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=f.bind(null,s.onerror),s.onload=f.bind(null,s.onload),l&&document.head.appendChild(s)}},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){var e;a.g.importScripts&&(e=a.g.location+"");var t=a.g.document;if(!e&&t&&(t.currentScript&&"SCRIPT"===t.currentScript.tagName.toUpperCase()&&(e=t.currentScript.src),!e)){var n=t.getElementsByTagName("script");if(n.length)for(var r=n.length-1;r>-1&&(!e||!/^http(s?):/.test(e));)e=n[r--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),a.p=e}(),function(){var e={792:0};a.f.j=function(t,n){var r=a.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else{var i=new Promise((function(n,i){r=e[t]=[n,i]}));n.push(r[2]=i);var o=a.p+a.u(t),s=new Error;a.l(o,(function(n){if(a.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var i=n&&("load"===n.type?"missing":n.type),o=n&&n.target&&n.target.src;s.message="Loading chunk "+t+" failed.\n("+i+": "+o+")",s.name="ChunkLoadError",s.type=i,s.request=o,r[1](s)}}),"chunk-"+t,t)}};var t=function(t,n){var r,i,o=n[0],s=n[1],l=n[2],c=0;if(o.some((function(t){return 0!==e[t]}))){for(r in s)a.o(s,r)&&(a.m[r]=s[r]);l&&l(a)}for(t&&t(n);c<o.length;c++)i=o[c],a.o(e,i)&&e[i]&&e[i][0](),e[i]=0},n=self.webpackChunk_allurereport_web_classic=self.webpackChunk_allurereport_web_classic||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))}(),function(){"use strict";var e={};a.r(e),a.d(e,{broken:function(){return NL},failed:function(){return OL},"item-time":function(){return PL},"item-title":function(){return LL},order:function(){return EL},passed:function(){return FL},root:function(){return jL},skipped:function(){return zL},"status-broken":function(){return $L},"status-failed":function(){return BL},"status-passed":function(){return RL},"status-skipped":function(){return DL},"status-unknown":function(){return IL},"test-count":function(){return UL},tree:function(){return HL},"tree-content":function(){return qL},"tree-count":function(){return VL},"tree-empty-results":function(){return WL},"tree-empty-results-clear-button":function(){return YL},"tree-empty-results-title":function(){return GL},"tree-header":function(){return ZL},"tree-header-arrow":function(){return XL},"tree-header-arrow-opened":function(){return KL},"tree-header-bar":function(){return QL},"tree-header-bar-item":function(){return JL},"tree-header-title":function(){return eE},"tree-item":function(){return tE},"tree-item-icon":function(){return nE},"tree-item-marked":function(){return rE},"tree-list":function(){return iE},unknown:function(){return oE}});var t={};a.r(t),a.d(t,{"arrow-button":function(){return pE},"arrow-button-icon":function(){return gE},"arrow-button-icon--opened":function(){return mE},"arrow-button-m":function(){return vE},"arrow-button-s":function(){return bE},"icon-size-m":function(){return yE}});var n={};a.r(n),a.d(n,{"status-broken":function(){return UF},"status-failed":function(){return HF},"status-passed":function(){return qF},"status-skipped":function(){return VF},"status-unknown":function(){return WF},"test-result-prev-status":function(){return YF},"test-result-prev-status-tooltip":function(){return GF},"test-result-prev-statuses":function(){return ZF}});var r={};a.r(r),a.d(r,{"severity-blocker":function(){return JF},"severity-critical":function(){return ej},"severity-minor":function(){return tj},"severity-normal":function(){return nj},"severity-trivial":function(){return rj},"test-result-severity":function(){return ij},"test-result-severity-text":function(){return oj}});var i={};a.r(i),a.d(i,{"status-broken":function(){return lj},"status-failed":function(){return cj},"status-passed":function(){return uj},"status-skipped":function(){return dj},"status-unknown":function(){return fj},"test-result-status":function(){return hj},"test-result-status-icon":function(){return pj},"test-result-status-text":function(){return gj}});var o={};a.r(o),a.d(o,{"metadata-color-badge":function(){return $j},"metadata-icon":function(){return Bj},"metadata-item-title":function(){return Rj},"metadata-item-value":function(){return Dj},"metadata-test-type":function(){return Ij},"metadata-tooltip":function(){return Uj},"metadata-tooltip-value":function(){return Hj},"metadata-with-icon":function(){return qj},"report-metadata":function(){return Vj},"report-metadata-all-tests":function(){return Wj},"report-metadata-keyvalue":function(){return Yj},"report-metadata-keyvalue-title":function(){return Gj},"report-metadata-keyvalue-value":function(){return Zj},"report-metadata-keyvalue-wrapper":function(){return Xj},"report-metadata-list":function(){return Kj},"report-metadata-s":function(){return Qj},"report-metadata-separator":function(){return Jj},"report-metadata-status":function(){return ez},"report-metadata-summary":function(){return tz},"report-metadata-values":function(){return nz},"report-metadata-wrapper":function(){return rz},"status-broken":function(){return iz},"status-failed":function(){return oz},"status-passed":function(){return az},"status-skipped":function(){return sz},"status-unknown":function(){return lz}});var s,l,c,u,d,f,h,p,g,m,v,b,y={},_=[],w=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,x=Array.isArray;function k(e,t){for(var n in t)e[n]=t[n];return e}function C(e){e&&e.parentNode&&e.parentNode.removeChild(e)}function S(e,t,n){var r,i,o,a={};for(o in t)"key"==o?r=t[o]:"ref"==o?i=t[o]:a[o]=t[o];if(arguments.length>2&&(a.children=arguments.length>3?s.call(arguments,2):n),"function"==typeof e&&null!=e.defaultProps)for(o in e.defaultProps)void 0===a[o]&&(a[o]=e.defaultProps[o]);return M(e,a,r,i,null)}function M(e,t,n,r,i){var o={type:e,props:t,key:n,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:null==i?++c:i,__i:-1,__u:0};return null==i&&null!=l.vnode&&l.vnode(o),o}function T(e){return e.children}function A(e,t){this.props=e,this.context=t}function N(e,t){if(null==t)return e.__?N(e.__,e.__i+1):null;for(var n;t<e.__k.length;t++)if(null!=(n=e.__k[t])&&null!=n.__e)return n.__e;return"function"==typeof e.type?N(e):null}function O(e){var t,n;if(null!=(e=e.__)&&null!=e.__c){for(e.__e=e.__c.base=null,t=0;t<e.__k.length;t++)if(null!=(n=e.__k[t])&&null!=n.__e){e.__e=e.__c.base=n.__e;break}return O(e)}}function P(e){(!e.__d&&(e.__d=!0)&&d.push(e)&&!L.__r++||f!==l.debounceRendering)&&((f=l.debounceRendering)||h)(L)}function L(){var e,t,n,r,i,o,a,s;for(d.sort(p);e=d.shift();)e.__d&&(t=d.length,r=void 0,o=(i=(n=e).__v).__e,a=[],s=[],n.__P&&((r=k({},i)).__v=i.__v+1,l.vnode&&l.vnode(r),I(n.__P,r,i,n.__n,n.__P.namespaceURI,32&i.__u?[o]:null,a,null==o?N(i):o,!!(32&i.__u),s),r.__v=i.__v,r.__.__k[r.__i]=r,U(a,r,s),r.__e!=o&&O(r)),d.length>t&&d.sort(p));L.__r=0}function E(e,t,n,r,i,o,a,s,l,c,u){var d,f,h,p,g,m=r&&r.__k||_,v=t.length;for(n.__d=l,F(n,t,m),l=n.__d,d=0;d<v;d++)null!=(h=n.__k[d])&&(f=-1===h.__i?y:m[h.__i]||y,h.__i=d,I(e,h,f,i,o,a,s,l,c,u),p=h.__e,h.ref&&f.ref!=h.ref&&(f.ref&&q(f.ref,null,h),u.push(h.ref,h.__c||p,h)),null==g&&null!=p&&(g=p),65536&h.__u||f.__k===h.__k?l=j(h,l,e):"function"==typeof h.type&&void 0!==h.__d?l=h.__d:p&&(l=p.nextSibling),h.__d=void 0,h.__u&=-196609);n.__d=l,n.__e=g}function F(e,t,n){var r,i,o,a,s,l=t.length,c=n.length,u=c,d=0;for(e.__k=[],r=0;r<l;r++)null!=(i=t[r])&&"boolean"!=typeof i&&"function"!=typeof i?(a=r+d,(i=e.__k[r]="string"==typeof i||"number"==typeof i||"bigint"==typeof i||i.constructor==String?M(null,i,null,null,null):x(i)?M(T,{children:i},null,null,null):void 0===i.constructor&&i.__b>0?M(i.type,i.props,i.key,i.ref?i.ref:null,i.__v):i).__=e,i.__b=e.__b+1,o=null,-1!==(s=i.__i=$(i,n,a,u))&&(u--,(o=n[s])&&(o.__u|=131072)),null==o||null===o.__v?(-1==s&&d--,"function"!=typeof i.type&&(i.__u|=65536)):s!==a&&(s==a-1?d--:s==a+1?d++:(s>a?d--:d++,i.__u|=65536))):i=e.__k[r]=null;if(u)for(r=0;r<c;r++)null!=(o=n[r])&&!(131072&o.__u)&&(o.__e==e.__d&&(e.__d=N(o)),V(o,o))}function j(e,t,n){var r,i;if("function"==typeof e.type){for(r=e.__k,i=0;r&&i<r.length;i++)r[i]&&(r[i].__=e,t=j(r[i],t,n));return t}e.__e!=t&&(t&&e.type&&!n.contains(t)&&(t=N(e)),n.insertBefore(e.__e,t||null),t=e.__e);do{t=t&&t.nextSibling}while(null!=t&&8===t.nodeType);return t}function z(e,t){return t=t||[],null==e||"boolean"==typeof e||(x(e)?e.some((function(e){z(e,t)})):t.push(e)),t}function $(e,t,n,r){var i=e.key,o=e.type,a=n-1,s=n+1,l=t[n];if(null===l||l&&i==l.key&&o===l.type&&!(131072&l.__u))return n;if(r>(null==l||131072&l.__u?0:1))for(;a>=0||s<t.length;){if(a>=0){if((l=t[a])&&!(131072&l.__u)&&i==l.key&&o===l.type)return a;a--}if(s<t.length){if((l=t[s])&&!(131072&l.__u)&&i==l.key&&o===l.type)return s;s++}}return-1}function B(e,t,n){"-"===t[0]?e.setProperty(t,null==n?"":n):e[t]=null==n?"":"number"!=typeof n||w.test(t)?n:n+"px"}function R(e,t,n,r,i){var o;e:if("style"===t)if("string"==typeof n)e.style.cssText=n;else{if("string"==typeof r&&(e.style.cssText=r=""),r)for(t in r)n&&t in n||B(e.style,t,"");if(n)for(t in n)r&&n[t]===r[t]||B(e.style,t,n[t])}else if("o"===t[0]&&"n"===t[1])o=t!==(t=t.replace(/(PointerCapture)$|Capture$/i,"$1")),t=t.toLowerCase()in e||"onFocusOut"===t||"onFocusIn"===t?t.toLowerCase().slice(2):t.slice(2),e.l||(e.l={}),e.l[t+o]=n,n?r?n.u=r.u:(n.u=g,e.addEventListener(t,o?v:m,o)):e.removeEventListener(t,o?v:m,o);else{if("http://www.w3.org/2000/svg"==i)t=t.replace(/xlink(H|:h)/,"h").replace(/sName$/,"s");else if("width"!=t&&"height"!=t&&"href"!=t&&"list"!=t&&"form"!=t&&"tabIndex"!=t&&"download"!=t&&"rowSpan"!=t&&"colSpan"!=t&&"role"!=t&&"popover"!=t&&t in e)try{e[t]=null==n?"":n;break e}catch(e){}"function"==typeof n||(null==n||!1===n&&"-"!==t[4]?e.removeAttribute(t):e.setAttribute(t,"popover"==t&&1==n?"":n))}}function D(e){return function(t){if(this.l){var n=this.l[t.type+e];if(null==t.t)t.t=g++;else if(t.t<n.u)return;return n(l.event?l.event(t):t)}}}function I(e,t,n,r,i,o,a,s,c,u){var d,f,h,p,g,m,v,b,y,_,w,C,S,M,N,O,P=t.type;if(void 0!==t.constructor)return null;128&n.__u&&(c=!!(32&n.__u),o=[s=t.__e=n.__e]),(d=l.__b)&&d(t);e:if("function"==typeof P)try{if(b=t.props,y="prototype"in P&&P.prototype.render,_=(d=P.contextType)&&r[d.__c],w=d?_?_.props.value:d.__:r,n.__c?v=(f=t.__c=n.__c).__=f.__E:(y?t.__c=f=new P(b,w):(t.__c=f=new A(b,w),f.constructor=P,f.render=W),_&&_.sub(f),f.props=b,f.state||(f.state={}),f.context=w,f.__n=r,h=f.__d=!0,f.__h=[],f._sb=[]),y&&null==f.__s&&(f.__s=f.state),y&&null!=P.getDerivedStateFromProps&&(f.__s==f.state&&(f.__s=k({},f.__s)),k(f.__s,P.getDerivedStateFromProps(b,f.__s))),p=f.props,g=f.state,f.__v=t,h)y&&null==P.getDerivedStateFromProps&&null!=f.componentWillMount&&f.componentWillMount(),y&&null!=f.componentDidMount&&f.__h.push(f.componentDidMount);else{if(y&&null==P.getDerivedStateFromProps&&b!==p&&null!=f.componentWillReceiveProps&&f.componentWillReceiveProps(b,w),!f.__e&&(null!=f.shouldComponentUpdate&&!1===f.shouldComponentUpdate(b,f.__s,w)||t.__v===n.__v)){for(t.__v!==n.__v&&(f.props=b,f.state=f.__s,f.__d=!1),t.__e=n.__e,t.__k=n.__k,t.__k.some((function(e){e&&(e.__=t)})),C=0;C<f._sb.length;C++)f.__h.push(f._sb[C]);f._sb=[],f.__h.length&&a.push(f);break e}null!=f.componentWillUpdate&&f.componentWillUpdate(b,f.__s,w),y&&null!=f.componentDidUpdate&&f.__h.push((function(){f.componentDidUpdate(p,g,m)}))}if(f.context=w,f.props=b,f.__P=e,f.__e=!1,S=l.__r,M=0,y){for(f.state=f.__s,f.__d=!1,S&&S(t),d=f.render(f.props,f.state,f.context),N=0;N<f._sb.length;N++)f.__h.push(f._sb[N]);f._sb=[]}else do{f.__d=!1,S&&S(t),d=f.render(f.props,f.state,f.context),f.state=f.__s}while(f.__d&&++M<25);f.state=f.__s,null!=f.getChildContext&&(r=k(k({},r),f.getChildContext())),y&&!h&&null!=f.getSnapshotBeforeUpdate&&(m=f.getSnapshotBeforeUpdate(p,g)),E(e,x(O=null!=d&&d.type===T&&null==d.key?d.props.children:d)?O:[O],t,n,r,i,o,a,s,c,u),f.base=t.__e,t.__u&=-161,f.__h.length&&a.push(f),v&&(f.__E=f.__=null)}catch(e){if(t.__v=null,c||null!=o){for(t.__u|=c?160:32;s&&8===s.nodeType&&s.nextSibling;)s=s.nextSibling;o[o.indexOf(s)]=null,t.__e=s}else t.__e=n.__e,t.__k=n.__k;l.__e(e,t,n)}else null==o&&t.__v===n.__v?(t.__k=n.__k,t.__e=n.__e):t.__e=H(n.__e,t,n,r,i,o,a,c,u);(d=l.diffed)&&d(t)}function U(e,t,n){t.__d=void 0;for(var r=0;r<n.length;r++)q(n[r],n[++r],n[++r]);l.__c&&l.__c(t,e),e.some((function(t){try{e=t.__h,t.__h=[],e.some((function(e){e.call(t)}))}catch(e){l.__e(e,t.__v)}}))}function H(e,t,n,r,i,o,a,c,u){var d,f,h,p,g,m,v,b=n.props,_=t.props,w=t.type;if("svg"===w?i="http://www.w3.org/2000/svg":"math"===w?i="http://www.w3.org/1998/Math/MathML":i||(i="http://www.w3.org/1999/xhtml"),null!=o)for(d=0;d<o.length;d++)if((g=o[d])&&"setAttribute"in g==!!w&&(w?g.localName===w:3===g.nodeType)){e=g,o[d]=null;break}if(null==e){if(null===w)return document.createTextNode(_);e=document.createElementNS(i,w,_.is&&_),c&&(l.__m&&l.__m(t,o),c=!1),o=null}if(null===w)b===_||c&&e.data===_||(e.data=_);else{if(o=o&&s.call(e.childNodes),b=n.props||y,!c&&null!=o)for(b={},d=0;d<e.attributes.length;d++)b[(g=e.attributes[d]).name]=g.value;for(d in b)if(g=b[d],"children"==d);else if("dangerouslySetInnerHTML"==d)h=g;else if(!(d in _)){if("value"==d&&"defaultValue"in _||"checked"==d&&"defaultChecked"in _)continue;R(e,d,null,g,i)}for(d in _)g=_[d],"children"==d?p=g:"dangerouslySetInnerHTML"==d?f=g:"value"==d?m=g:"checked"==d?v=g:c&&"function"!=typeof g||b[d]===g||R(e,d,g,b[d],i);if(f)c||h&&(f.__html===h.__html||f.__html===e.innerHTML)||(e.innerHTML=f.__html),t.__k=[];else if(h&&(e.innerHTML=""),E(e,x(p)?p:[p],t,n,r,"foreignObject"===w?"http://www.w3.org/1999/xhtml":i,o,a,o?o[0]:n.__k&&N(n,0),c,u),null!=o)for(d=o.length;d--;)C(o[d]);c||(d="value","progress"===w&&null==m?e.removeAttribute("value"):void 0!==m&&(m!==e[d]||"progress"===w&&!m||"option"===w&&m!==b[d])&&R(e,d,m,b[d],i),d="checked",void 0!==v&&v!==e[d]&&R(e,d,v,b[d],i))}return e}function q(e,t,n){try{if("function"==typeof e){var r="function"==typeof e.__u;r&&e.__u(),r&&null==t||(e.__u=e(t))}else e.current=t}catch(e){l.__e(e,n)}}function V(e,t,n){var r,i;if(l.unmount&&l.unmount(e),(r=e.ref)&&(r.current&&r.current!==e.__e||q(r,null,t)),null!=(r=e.__c)){if(r.componentWillUnmount)try{r.componentWillUnmount()}catch(e){l.__e(e,t)}r.base=r.__P=null}if(r=e.__k)for(i=0;i<r.length;i++)r[i]&&V(r[i],t,n||"function"!=typeof e.type);n||C(e.__e),e.__c=e.__=e.__e=e.__d=void 0}function W(e,t,n){return this.constructor(e,n)}function Y(e,t,n){var r,i,o,a,l=k({},e.props);for(o in e.type&&e.type.defaultProps&&(a=e.type.defaultProps),t)"key"==o?r=t[o]:"ref"==o?i=t[o]:l[o]=void 0===t[o]&&void 0!==a?a[o]:t[o];return arguments.length>2&&(l.children=arguments.length>3?s.call(arguments,2):n),M(e.type,l,r||e.key,i||e.ref,null)}function G(e,t){var n={__c:t="__cC"+b++,__:e,Consumer:function(e,t){return e.children(t)},Provider:function(e){var n,r;return this.getChildContext||(n=[],(r={})[t]=this,this.getChildContext=function(){return r},this.componentWillUnmount=function(){n=null},this.shouldComponentUpdate=function(e){this.props.value!==e.value&&n.some((function(e){e.__e=!0,P(e)}))},this.sub=function(e){n.push(e);var t=e.componentWillUnmount;e.componentWillUnmount=function(){n&&n.splice(n.indexOf(e),1),t&&t.call(e)}}),e.children}};return n.Provider.__=n.Consumer.contextType=n}s=_.slice,l={__e:function(e,t,n,r){for(var i,o,a;t=t.__;)if((i=t.__c)&&!i.__)try{if((o=i.constructor)&&null!=o.getDerivedStateFromError&&(i.setState(o.getDerivedStateFromError(e)),a=i.__d),null!=i.componentDidCatch&&(i.componentDidCatch(e,r||{}),a=i.__d),a)return i.__E=i}catch(t){e=t}throw e}},c=0,u=function(e){return null!=e&&null==e.constructor},A.prototype.setState=function(e,t){var n;n=null!=this.__s&&this.__s!==this.state?this.__s:this.__s=k({},this.state),"function"==typeof e&&(e=e(k({},n),this.props)),e&&k(n,e),null!=e&&this.__v&&(t&&this._sb.push(t),P(this))},A.prototype.forceUpdate=function(e){this.__v&&(this.__e=!0,e&&this.__h.push(e),P(this))},A.prototype.render=T,d=[],h="function"==typeof Promise?Promise.prototype.then.bind(Promise.resolve()):setTimeout,p=function(e,t){return e.__v.__b-t.__v.__b},L.__r=0,g=0,m=D(!1),v=D(!0),b=0;var Z,X,K,Q,J=0,ee=[],te=l,ne=te.__b,re=te.__r,ie=te.diffed,oe=te.__c,ae=te.unmount,se=te.__;function le(e,t){te.__h&&te.__h(X,e,J||t),J=0;var n=X.__H||(X.__H={__:[],__h:[]});return e>=n.__.length&&n.__.push({}),n.__[e]}function ce(e){return J=1,function(e,t,n){var r=le(Z++,2);if(r.t=e,!r.__c&&(r.__=[n?n(t):we(void 0,t),function(e){var t=r.__N?r.__N[0]:r.__[0],n=r.t(t,e);t!==n&&(r.__N=[n,r.__[1]],r.__c.setState({}))}],r.__c=X,!X.u)){var i=function(e,t,n){if(!r.__c.__H)return!0;var i=r.__c.__H.__.filter((function(e){return!!e.__c}));if(i.every((function(e){return!e.__N})))return!o||o.call(this,e,t,n);var a=!1;return i.forEach((function(e){if(e.__N){var t=e.__[0];e.__=e.__N,e.__N=void 0,t!==e.__[0]&&(a=!0)}})),!(!a&&r.__c.props===e)&&(!o||o.call(this,e,t,n))};X.u=!0;var o=X.shouldComponentUpdate,a=X.componentWillUpdate;X.componentWillUpdate=function(e,t,n){if(this.__e){var r=o;o=void 0,i(e,t,n),o=r}a&&a.call(this,e,t,n)},X.shouldComponentUpdate=i}return r.__N||r.__}(we,e)}function ue(e,t){var n=le(Z++,3);!te.__s&&_e(n.__H,t)&&(n.__=e,n.i=t,X.__H.__h.push(n))}function de(e){return J=5,fe((function(){return{current:e}}),[])}function fe(e,t){var n=le(Z++,7);return _e(n.__H,t)&&(n.__=e(),n.__H=t,n.__h=e),n.__}function he(e,t){return J=8,fe((function(){return e}),t)}function pe(e){var t=X.context[e.__c],n=le(Z++,9);return n.c=e,t?(null==n.__&&(n.__=!0,t.sub(X)),t.props.value):e.__}function ge(){for(var e;e=ee.shift();)if(e.__P&&e.__H)try{e.__H.__h.forEach(be),e.__H.__h.forEach(ye),e.__H.__h=[]}catch(t){e.__H.__h=[],te.__e(t,e.__v)}}te.__b=function(e){X=null,ne&&ne(e)},te.__=function(e,t){e&&t.__k&&t.__k.__m&&(e.__m=t.__k.__m),se&&se(e,t)},te.__r=function(e){re&&re(e),Z=0;var t=(X=e.__c).__H;t&&(K===X?(t.__h=[],X.__h=[],t.__.forEach((function(e){e.__N&&(e.__=e.__N),e.i=e.__N=void 0}))):(t.__h.forEach(be),t.__h.forEach(ye),t.__h=[],Z=0)),K=X},te.diffed=function(e){ie&&ie(e);var t=e.__c;t&&t.__H&&(t.__H.__h.length&&(1!==ee.push(t)&&Q===te.requestAnimationFrame||((Q=te.requestAnimationFrame)||ve)(ge)),t.__H.__.forEach((function(e){e.i&&(e.__H=e.i),e.i=void 0}))),K=X=null},te.__c=function(e,t){t.some((function(e){try{e.__h.forEach(be),e.__h=e.__h.filter((function(e){return!e.__||ye(e)}))}catch(n){t.some((function(e){e.__h&&(e.__h=[])})),t=[],te.__e(n,e.__v)}})),oe&&oe(e,t)},te.unmount=function(e){ae&&ae(e);var t,n=e.__c;n&&n.__H&&(n.__H.__.forEach((function(e){try{be(e)}catch(e){t=e}})),n.__H=void 0,t&&te.__e(t,n.__v))};var me="function"==typeof requestAnimationFrame;function ve(e){var t,n=function(){clearTimeout(r),me&&cancelAnimationFrame(t),setTimeout(e)},r=setTimeout(n,100);me&&(t=requestAnimationFrame(n))}function be(e){var t=X,n=e.__c;"function"==typeof n&&(e.__c=void 0,n()),X=t}function ye(e){var t=X;e.__c=e.__(),X=t}function _e(e,t){return!e||e.length!==t.length||t.some((function(t,n){return t!==e[n]}))}function we(e,t){return"function"==typeof t?t(e):t}function xe(e,t){for(var n in t)e[n]=t[n];return e}function ke(e,t){for(var n in e)if("__source"!==n&&!(n in t))return!0;for(var r in t)if("__source"!==r&&e[r]!==t[r])return!0;return!1}function Ce(e,t){this.props=e,this.context=t}function Se(e,t){function n(e){var n=this.props.ref,r=n==e.ref;return!r&&n&&(n.call?n(null):n.current=null),t?!t(this.props,e)||!r:ke(this.props,e)}function r(t){return this.shouldComponentUpdate=n,S(e,t)}return r.displayName="Memo("+(e.displayName||e.name)+")",r.prototype.isReactComponent=!0,r.__f=!0,r}(Ce.prototype=new A).isPureReactComponent=!0,Ce.prototype.shouldComponentUpdate=function(e,t){return ke(this.props,e)||ke(this.state,t)};var Me=l.__b;l.__b=function(e){e.type&&e.type.__f&&e.ref&&(e.props.ref=e.ref,e.ref=null),Me&&Me(e)};var Te="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.forward_ref")||3911;function Ae(e){function t(t){var n=xe({},t);return delete n.ref,e(n,t.ref||null)}return t.$$typeof=Te,t.render=t,t.prototype.isReactComponent=t.__f=!0,t.displayName="ForwardRef("+(e.displayName||e.name)+")",t}var Ne=l.__e;l.__e=function(e,t,n,r){if(e.then)for(var i,o=t;o=o.__;)if((i=o.__c)&&i.__c)return null==t.__e&&(t.__e=n.__e,t.__k=n.__k),i.__c(e,t);Ne(e,t,n,r)};var Oe=l.unmount;function Pe(e,t,n){return e&&(e.__c&&e.__c.__H&&(e.__c.__H.__.forEach((function(e){"function"==typeof e.__c&&e.__c()})),e.__c.__H=null),null!=(e=xe({},e)).__c&&(e.__c.__P===n&&(e.__c.__P=t),e.__c=null),e.__k=e.__k&&e.__k.map((function(e){return Pe(e,t,n)}))),e}function Le(e,t,n){return e&&n&&(e.__v=null,e.__k=e.__k&&e.__k.map((function(e){return Le(e,t,n)})),e.__c&&e.__c.__P===t&&(e.__e&&n.appendChild(e.__e),e.__c.__e=!0,e.__c.__P=n)),e}function Ee(){this.__u=0,this.t=null,this.__b=null}function Fe(e){var t=e.__.__c;return t&&t.__a&&t.__a(e)}function je(){this.u=null,this.o=null}l.unmount=function(e){var t=e.__c;t&&t.__R&&t.__R(),t&&32&e.__u&&(e.type=null),Oe&&Oe(e)},(Ee.prototype=new A).__c=function(e,t){var n=t.__c,r=this;null==r.t&&(r.t=[]),r.t.push(n);var i=Fe(r.__v),o=!1,a=function(){o||(o=!0,n.__R=null,i?i(s):s())};n.__R=a;var s=function(){if(! --r.__u){if(r.state.__a){var e=r.state.__a;r.__v.__k[0]=Le(e,e.__c.__P,e.__c.__O)}var t;for(r.setState({__a:r.__b=null});t=r.t.pop();)t.forceUpdate()}};r.__u++||32&t.__u||r.setState({__a:r.__b=r.__v.__k[0]}),e.then(a,a)},Ee.prototype.componentWillUnmount=function(){this.t=[]},Ee.prototype.render=function(e,t){if(this.__b){if(this.__v.__k){var n=document.createElement("div"),r=this.__v.__k[0].__c;this.__v.__k[0]=Pe(this.__b,n,r.__O=r.__P)}this.__b=null}var i=t.__a&&S(T,null,e.fallback);return i&&(i.__u&=-33),[S(T,null,t.__a?null:e.children),i]};var ze=function(e,t,n){if(++n[1]===n[0]&&e.o.delete(t),e.props.revealOrder&&("t"!==e.props.revealOrder[0]||!e.o.size))for(n=e.u;n;){for(;n.length>3;)n.pop()();if(n[1]<n[0])break;e.u=n=n[2]}};(je.prototype=new A).__a=function(e){var t=this,n=Fe(t.__v),r=t.o.get(e);return r[0]++,function(i){var o=function(){t.props.revealOrder?(r.push(i),ze(t,e,r)):i()};n?n(o):o()}},je.prototype.render=function(e){this.u=null,this.o=new Map;var t=z(e.children);e.revealOrder&&"b"===e.revealOrder[0]&&t.reverse();for(var n=t.length;n--;)this.o.set(t[n],this.u=[1,0,this.u]);return e.children},je.prototype.componentDidUpdate=je.prototype.componentDidMount=function(){var e=this;this.o.forEach((function(t,n){ze(e,n,t)}))};var $e="undefined"!=typeof Symbol&&Symbol.for&&Symbol.for("react.element")||60103,Be=/^(?:accent|alignment|arabic|baseline|cap|clip(?!PathU)|color|dominant|fill|flood|font|glyph(?!R)|horiz|image(!S)|letter|lighting|marker(?!H|W|U)|overline|paint|pointer|shape|stop|strikethrough|stroke|text(?!L)|transform|underline|unicode|units|v|vector|vert|word|writing|x(?!C))[A-Z]/,Re=/^on(Ani|Tra|Tou|BeforeInp|Compo)/,De=/[A-Z0-9]/g,Ie="undefined"!=typeof document,Ue=function(e){return("undefined"!=typeof Symbol&&"symbol"==typeof Symbol()?/fil|che|rad/:/fil|che|ra/).test(e)};A.prototype.isReactComponent={},["componentWillMount","componentWillReceiveProps","componentWillUpdate"].forEach((function(e){Object.defineProperty(A.prototype,e,{configurable:!0,get:function(){return this["UNSAFE_"+e]},set:function(t){Object.defineProperty(this,e,{configurable:!0,writable:!0,value:t})}})}));var He=l.event;function qe(){}function Ve(){return this.cancelBubble}function We(){return this.defaultPrevented}l.event=function(e){return He&&(e=He(e)),e.persist=qe,e.isPropagationStopped=Ve,e.isDefaultPrevented=We,e.nativeEvent=e};var Ye={enumerable:!1,configurable:!0,get:function(){return this.class}},Ge=l.vnode;l.vnode=function(e){"string"==typeof e.type&&function(e){var t=e.props,n=e.type,r={},i=-1===n.indexOf("-");for(var o in t){var a=t[o];if(!("value"===o&&"defaultValue"in t&&null==a||Ie&&"children"===o&&"noscript"===n||"class"===o||"className"===o)){var s=o.toLowerCase();"defaultValue"===o&&"value"in t&&null==t.value?o="value":"download"===o&&!0===a?a="":"translate"===s&&"no"===a?a=!1:"o"===s[0]&&"n"===s[1]?"ondoubleclick"===s?o="ondblclick":"onchange"!==s||"input"!==n&&"textarea"!==n||Ue(t.type)?"onfocus"===s?o="onfocusin":"onblur"===s?o="onfocusout":Re.test(o)&&(o=s):s=o="oninput":i&&Be.test(o)?o=o.replace(De,"-$&").toLowerCase():null===a&&(a=void 0),"oninput"===s&&r[o=s]&&(o="oninputCapture"),r[o]=a}}"select"==n&&r.multiple&&Array.isArray(r.value)&&(r.value=z(t.children).forEach((function(e){e.props.selected=-1!=r.value.indexOf(e.props.value)}))),"select"==n&&null!=r.defaultValue&&(r.value=z(t.children).forEach((function(e){e.props.selected=r.multiple?-1!=r.defaultValue.indexOf(e.props.value):r.defaultValue==e.props.value}))),t.class&&!t.className?(r.class=t.class,Object.defineProperty(r,"className",Ye)):(t.className&&!t.class||t.class&&t.className)&&(r.class=r.className=t.className),e.props=r}(e),e.$$typeof=$e,Ge&&Ge(e)};var Ze=l.__r;l.__r=function(e){Ze&&Ze(e),e.__c};var Xe=l.diffed;function Ke(e){return function(e){return!!e&&e.$$typeof===$e}(e)?Y.apply(null,arguments):e}l.diffed=function(e){Xe&&Xe(e);var t=e.props,n=e.__e;null!=n&&"textarea"===e.type&&"value"in t&&t.value!==n.value&&(n.value=null==t.value?"":t.value)};var Qe=0;function Je(e,t,n,r,i,o){t||(t={});var a,s,c=t;if("ref"in c)for(s in c={},t)"ref"==s?a=t[s]:c[s]=t[s];var u={type:e,props:c,key:n,ref:a,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:--Qe,__i:-1,__u:0,__source:i,__self:o};if("function"==typeof e&&(a=e.defaultProps))for(s in a)void 0===c[s]&&(c[s]=a[s]);return l.vnode&&l.vnode(u),u}function et(e){var t,n,r="";if("string"==typeof e||"number"==typeof e)r+=e;else if("object"==typeof e)if(Array.isArray(e)){var i=e.length;for(t=0;t<i;t++)e[t]&&(n=et(e[t]))&&(r&&(r+=" "),r+=n)}else for(n in e)e[n]&&(r&&(r+=" "),r+=n);return r}function tt(){for(var e,t,n=0,r="",i=arguments.length;n<i;n++)(e=arguments[n])&&(t=et(e))&&(r&&(r+=" "),r+=t);return r}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;var nt={exports:{}};nt.exports=function(){function e(e){return e&&"object"==typeof e&&"[object RegExp]"!==Object.prototype.toString.call(e)&&"[object Date]"!==Object.prototype.toString.call(e)}function t(t,n){return n&&!0===n.clone&&e(t)?i(function(e){return Array.isArray(e)?[]:{}}(t),t,n):t}function n(n,r,o){var a=n.slice();return r.forEach((function(r,s){void 0===a[s]?a[s]=t(r,o):e(r)?a[s]=i(n[s],r,o):-1===n.indexOf(r)&&a.push(t(r,o))})),a}function r(n,r,o){var a={};return e(n)&&Object.keys(n).forEach((function(e){a[e]=t(n[e],o)})),Object.keys(r).forEach((function(s){e(r[s])&&n[s]?a[s]=i(n[s],r[s],o):a[s]=t(r[s],o)})),a}function i(e,i,o){var a=Array.isArray(i),s=(o||{arrayMerge:n}).arrayMerge||n;return a?Array.isArray(e)?s(e,i,o):t(i,o):r(e,i,o)}return i.all=function(e,t){if(!Array.isArray(e)||e.length<2)throw new Error("first argument should be an array with at least two elements");return e.reduce((function(e,n){return i(e,n,t)}))},i}();var rt,it,ot=nt.exports,at={exports:{}};rt=at,(it=at.exports).default={svg:{name:"xmlns",uri:"http://www.w3.org/2000/svg"},xlink:{name:"xmlns:xlink",uri:"http://www.w3.org/1999/xlink"}},rt.exports=it.default;var st=at.exports;const{svg:lt,xlink:ct}=st,ut={[lt.name]:lt.uri,[ct.name]:ct.uri};function dt(e="",t){const n=function(e){return Object.keys(e).map((t=>`${t}="${e[t].toString().replace(/"/g,""")}"`)).join(" ")}(ot(ut,t||{}));return`<svg ${n}>${e}</svg>`}const{svg:ft,xlink:ht}=st;var pt={attrs:{[ft.name]:ft.uri,[ht.name]:ht.uri,style:["position: absolute","width: 0","height: 0"].join("; "),"aria-hidden":"true"}};class gt{constructor(e){this.config=ot(pt,e||{}),this.symbols=[]}add(e){const{symbols:t}=this,n=this.find(e.id);return n?(t[t.indexOf(n)]=e,!1):(t.push(e),!0)}remove(e){const{symbols:t}=this,n=this.find(e);return!!n&&(t.splice(t.indexOf(n),1),n.destroy(),!0)}find(e){return this.symbols.filter((t=>t.id===e))[0]||null}has(e){return null!==this.find(e)}stringify(){const{attrs:e}=this.config;return dt(this.symbols.map((e=>e.stringify())).join(""),e)}toString(){return this.stringify()}destroy(){this.symbols.forEach((e=>e.destroy()))}}class mt{constructor({id:e,viewBox:t,content:n}){this.id=e,this.viewBox=t,this.content=n}stringify(){return this.content}toString(){return this.stringify()}destroy(){["id","viewBox","content"].forEach((e=>delete this[e]))}}function vt(e){const t=!!document.importNode,n=(new DOMParser).parseFromString(e,"image/svg+xml").documentElement;return t?document.importNode(n,!0):n}class bt extends mt{get isMounted(){return!!this.node}static createFromExistingNode(e){return new bt({id:e.getAttribute("id"),viewBox:e.getAttribute("viewBox"),content:e.outerHTML})}destroy(){this.isMounted&&this.unmount(),super.destroy()}mount(e){if(this.isMounted)return this.node;const t="string"==typeof e?document.querySelector(e):e,n=this.render();return this.node=n,t.appendChild(n),n}render(){return vt(dt(this.stringify())).childNodes[0]}unmount(){this.node.parentNode.removeChild(this.node)}}var yt={autoConfigure:!0,mountTo:"body",syncUrlsWithBaseTag:!1,listenLocationChangeEvent:!0,locationChangeEvent:"locationChange",locationChangeAngularEmitter:!1,usagesToUpdate:"use[*|href]",moveGradientsOutsideSymbol:!1};function _t(e){return Array.prototype.slice.call(e,0)}function wt(e){return(e||window.location.href).split("#")[0]}function xt(e,t="linearGradient, radialGradient, pattern, mask, clipPath"){return _t(e.querySelectorAll("symbol")).forEach((e=>{_t(e.querySelectorAll(t)).forEach((t=>{e.parentNode.insertBefore(t,e)}))})),e}const kt=st.xlink.uri,Ct="xlink:href",St=/[{}|\\\^\[\]`"<>]/g;function Mt(e){return e.replace(St,(e=>`%${e[0].charCodeAt(0).toString(16).toUpperCase()}`))}const Tt=["clipPath","colorProfile","src","cursor","fill","filter","marker","markerStart","markerMid","markerEnd","mask","stroke","style"],At=Tt.map((e=>`[${e}]`)).join(","),Nt="mount",Ot="symbol_mount",Pt="__SVG_SPRITE_NODE__",Lt="__SVG_SPRITE__",Et=()=>{const e=document.getElementById(Pt);e?Ft.attach(e):Ft.mount(document.body,!0)};let Ft=new class extends gt{constructor(e={}){super(ot(yt,e));const t=(n=n||Object.create(null),{on:function(e,t){(n[e]||(n[e]=[])).push(t)},off:function(e,t){n[e]&&n[e].splice(n[e].indexOf(t)>>>0,1)},emit:function(e,t){(n[e]||[]).map((function(e){e(t)})),(n["*"]||[]).map((function(n){n(e,t)}))}});var n;this._emitter=t,this.node=null;const{config:r}=this;if(r.autoConfigure&&this._autoConfigure(e),r.syncUrlsWithBaseTag){const e=document.getElementsByTagName("base")[0].getAttribute("href");t.on(Nt,(()=>this.updateUrls("#",e)))}const i=this._handleLocationChange.bind(this);this._handleLocationChange=i,r.listenLocationChangeEvent&&window.addEventListener(r.locationChangeEvent,i),r.locationChangeAngularEmitter&&function(e){angular.module("ng").run(["$rootScope",t=>{t.$on("$locationChangeSuccess",((t,n,r)=>{!function(e,t){const n=document.createEvent("CustomEvent");n.initCustomEvent(e,!1,!1,t),window.dispatchEvent(n)}(e,{oldUrl:r,newUrl:n})}))}])}(r.locationChangeEvent),t.on(Nt,(e=>{r.moveGradientsOutsideSymbol&&xt(e)})),t.on(Ot,(e=>{r.moveGradientsOutsideSymbol&&xt(e.parentNode),(/msie/i.test(navigator.userAgent)||/trident/i.test(navigator.userAgent)||/edge/i.test(navigator.userAgent))&&function(e){const t=[];_t(e.querySelectorAll("style")).forEach((e=>{e.textContent+="",t.push(e)}))}(e)}))}get isMounted(){return!!this.node}_autoConfigure(e){const{config:t}=this;void 0===e.syncUrlsWithBaseTag&&(t.syncUrlsWithBaseTag=void 0!==document.getElementsByTagName("base")[0]),void 0===e.locationChangeAngularEmitter&&(t.locationChangeAngularEmitter=void 0!==window.angular),void 0===e.moveGradientsOutsideSymbol&&(t.moveGradientsOutsideSymbol=/firefox/i.test(navigator.userAgent))}_handleLocationChange(e){const{oldUrl:t,newUrl:n}=e.detail;this.updateUrls(t,n)}add(e){const t=super.add(e);return this.isMounted&&t&&(e.mount(this.node),this._emitter.emit(Ot,e.node)),t}attach(e){const t=this;if(t.isMounted)return t.node;const n="string"==typeof e?document.querySelector(e):e;return t.node=n,this.symbols.forEach((e=>{e.mount(t.node),this._emitter.emit(Ot,e.node)})),_t(n.querySelectorAll("symbol")).forEach((e=>{const n=bt.createFromExistingNode(e);n.node=e,t.add(n)})),this._emitter.emit(Nt,n),n}destroy(){const{config:e,symbols:t,_emitter:n}=this;t.forEach((e=>e.destroy())),n.off("*"),window.removeEventListener(e.locationChangeEvent,this._handleLocationChange),this.isMounted&&this.unmount()}mount(e=this.config.mountTo,t=!1){const n=this;if(n.isMounted)return n.node;const r="string"==typeof e?document.querySelector(e):e,i=n.render();return this.node=i,t&&r.childNodes[0]?r.insertBefore(i,r.childNodes[0]):r.appendChild(i),this._emitter.emit(Nt,i),i}render(){return vt(this.stringify())}unmount(){this.node.parentNode.removeChild(this.node)}updateUrls(e,t){if(!this.isMounted)return!1;const n=document.querySelectorAll(this.config.usagesToUpdate);return function(e,t,n,r){const i=Mt(n),o=Mt(r),a=function(e,t){return _t(e).reduce(((e,n)=>{if(!n.attributes)return e;const r=_t(n.attributes).filter(t);return e.concat(r)}),[])}(e.querySelectorAll(At),(({localName:e,value:t})=>-1!==Tt.indexOf(e)&&-1!==t.indexOf(`url(${i}`)));a.forEach((e=>e.value=e.value.replace(new RegExp(i.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g"),o))),function(e,t,n){_t(e).forEach((e=>{const r=e.getAttribute(Ct);if(r&&0===r.indexOf(t)){const i=r.replace(t,n);e.setAttributeNS(kt,Ct,i)}}))}(t,i,o)}(this.node,n,`${wt(e)}#`,`${wt(t)}#`),!0}}({attrs:{id:Pt,"aria-hidden":"true"},autoConfigure:"undefined"!=typeof document,listenLocationChangeEvent:"undefined"!=typeof window});var jt,zt,$t,Bt,Rt,Dt;"undefined"!=typeof window&&"undefined"!=typeof document&&(window[Lt]?Ft=window[Lt]:window[Lt]=Ft,document.body?Et():(zt=[],Bt=($t=document).documentElement.doScroll,Rt="DOMContentLoaded",(Dt=(Bt?/^loaded|^c/:/^loaded|^i|^c/).test($t.readyState))||$t.addEventListener(Rt,jt=function(){for($t.removeEventListener(Rt,jt),Dt=1;jt=zt.shift();)jt()}),function(e){Dt?setTimeout(e,0):zt.push(e)})(Et));const It=new bt({id:"7e3aa6e8f105b74dd36141c94bfbc1eb",content:'<symbol viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" id="7e3aa6e8f105b74dd36141c94bfbc1eb">\n <path fill-rule="evenodd" clip-rule="evenodd" d="M9.554 4.47a.6.6 0 0 1-.13.654l-3 3a.6.6 0 0 1-.849 0l-3-3A.6.6 0 0 1 3 4.1h6a.6.6 0 0 1 .554.37Z" fill="currentColor" fill-opacity=".56" />\n</symbol>',viewBox:"0 0 12 12"});Ft.add(It);const Ut=new bt({id:"b1d648a783b58a400b404192338f655e",content:'<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 98 96" id="b1d648a783b58a400b404192338f655e">\n <path fill="currentColor" fill-rule="evenodd" d="M48.85 0C21.84 0 0 22 0 49.22 0 70.97 14 89.39 33.4 95.9c2.43.49 3.32-1.06 3.32-2.37 0-1.14-.08-5.05-.08-9.12-13.59 2.93-16.42-5.87-16.42-5.87-2.18-5.7-5.42-7.17-5.42-7.17-4.45-3.01.33-3.01.33-3.01 4.93.32 7.52 5.05 7.52 5.05 4.37 7.5 11.4 5.38 14.23 4.07.4-3.18 1.7-5.38 3.08-6.6-10.84-1.14-22.25-5.38-22.25-24.28 0-5.38 1.94-9.78 5.02-13.2-.49-1.22-2.19-6.28.48-13.04 0 0 4.13-1.3 13.43 5.05a46.97 46.97 0 0 1 12.21-1.63c4.13 0 8.33.57 12.22 1.63 9.3-6.35 13.42-5.05 13.42-5.05 2.67 6.76.97 11.82.49 13.04a18.9 18.9 0 0 1 5.01 13.2c0 18.9-11.4 23.06-22.32 24.28 1.78 1.55 3.32 4.48 3.32 9.13 0 6.6-.08 11.9-.08 13.52 0 1.3.89 2.86 3.31 2.37a49.18 49.18 0 0 0 33.4-46.7C97.72 22 75.8 0 48.86 0z" clip-rule="evenodd" />\n</symbol>',viewBox:"0 0 98 96"});Ft.add(Ut);const Ht=new bt({id:"97e840812207a4e85942a3d4cc9c425d",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="97e840812207a4e85942a3d4cc9c425d">\n <g clip-path="url(#97e840812207a4e85942a3d4cc9c425d_a)">\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".56" stroke-width="1.5" d="M8 5.333V8m0 2.666h.006M14.666 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.333 0Z" />\n </g>\n <defs>\n <clipPath id="97e840812207a4e85942a3d4cc9c425d_a">\n <path fill="currentColor" d="M0 0h16v16H0z" />\n </clipPath>\n </defs>\n</symbol>',viewBox:"0 0 16 16"});Ft.add(Ht);const qt=new bt({id:"fd1fdbebd322c484b74d1ba8222ec72e",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="fd1fdbebd322c484b74d1ba8222ec72e">\n<path vector-effect="non-scaling-stroke" d="M11 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V13M20.1213 3.87868C21.2929 5.05025 21.2929 6.94975 20.1213 8.12132C18.9497 9.29289 17.0503 9.29289 15.8787 8.12132C14.7071 6.94975 14.7071 5.05025 15.8787 3.87868C17.0503 2.70711 18.9497 2.70711 20.1213 3.87868Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(qt);const Vt=new bt({id:"6a0dfad9d21a9029d1e845251a03a91c",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="6a0dfad9d21a9029d1e845251a03a91c">\n<path vector-effect="non-scaling-stroke" d="M7 13L12 18L17 13M7 6L12 11L17 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Vt);const Wt=new bt({id:"6714b0a01cad0cd868b19137adbf8ef7",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="6714b0a01cad0cd868b19137adbf8ef7">\n<path vector-effect="non-scaling-stroke" d="M6 9L12 15L18 9" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Wt);const Yt=new bt({id:"d369105b52d959e0f31d7e56dae2612e",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="d369105b52d959e0f31d7e56dae2612e">\n<path vector-effect="non-scaling-stroke" d="M9 18L15 12L9 6" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Yt);const Gt=new bt({id:"0b66582bad1b04536ee18b4b8d9e9a30",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="0b66582bad1b04536ee18b4b8d9e9a30">\n<path vector-effect="non-scaling-stroke" d="M17 18L12 13L7 18M17 11L12 6L7 11" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Gt);const Zt=new bt({id:"7d421dfdc55a22c840e4f6e7f6d142f1",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="7d421dfdc55a22c840e4f6e7f6d142f1">\n<path vector-effect="non-scaling-stroke" d="M18 15L12 9L6 15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Zt);const Xt=new bt({id:"a5aca797db351fc35e3c4b4d5d3a6673",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="a5aca797db351fc35e3c4b4d5d3a6673">\n<path vector-effect="non-scaling-stroke" d="M4 4V5.4C4 8.76031 4 10.4405 4.65396 11.7239C5.2292 12.8529 6.14708 13.7708 7.27606 14.346C8.55953 15 10.2397 15 13.6 15H20M20 15L15 10M20 15L15 20" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Xt);const Kt=new bt({id:"14ab32a1c041859dcf2a710b85f4e6bb",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="14ab32a1c041859dcf2a710b85f4e6bb">\n<path vector-effect="non-scaling-stroke" d="M14 10L21 3M21 3H15M21 3V9M10 14L3 21M3 21H9M3 21L3 15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Kt);const Qt=new bt({id:"2df7897188ce65409ea57e820129bd3f",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="2df7897188ce65409ea57e820129bd3f">\n<path vector-effect="non-scaling-stroke" d="M8.54636 19.7675C10.9455 20.8319 13.803 20.7741 16.2499 19.3613C20.3154 17.0141 21.7084 11.8156 19.3612 7.75008L19.1112 7.31706M4.63826 16.2502C2.29105 12.1847 3.68399 6.98619 7.74948 4.63898C10.1965 3.22621 13.0539 3.16841 15.4531 4.23277M2.49316 16.3338L5.22521 17.0659L5.95727 14.3338M18.0424 9.6659L18.7744 6.93385L21.5065 7.6659" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Qt);const Jt=new bt({id:"2e896c815a6200a31f8b8e813ff3443b",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="2e896c815a6200a31f8b8e813ff3443b">\n<path vector-effect="non-scaling-stroke" d="M4.5 18H19.5M4.5 12H15.5M4.5 6H12.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Jt);const en=new bt({id:"9401086058a257018c5f11bd2d0f1699",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="9401086058a257018c5f11bd2d0f1699">\n<path vector-effect="non-scaling-stroke" d="M4.5 6H19.5M4.5 12C6.45262 12 13.5474 12 15.5 12M4.5 18L12.5 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(en);const tn=new bt({id:"b46ed421558c23c2bc56040f64fea542",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="b46ed421558c23c2bc56040f64fea542">\n<path vector-effect="non-scaling-stroke" d="M7 4V20M7 20L3 16M7 20L11 16M17 20V4M17 4L13 8M17 4L21 8" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(tn);const nn=new bt({id:"bb021e85399e995f42b66451360b7f3e",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="bb021e85399e995f42b66451360b7f3e">\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".7" stroke-width="1.5" d="M8 13v4m8-6v6M12 7v10m-4 4h11l2-2V5l-2-2H5L3 5v14l2 2h3Z" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(nn);const rn=new bt({id:"c2b90d2236acecf4ea15dfe9c6962306",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="c2b90d2236acecf4ea15dfe9c6962306">\n<path vector-effect="non-scaling-stroke" d="M2.5 7L5 9.5M2.5 20.5L5.5 17.5M1.5 13.5H4.6213M19 13.5H22.5M19 9.5L21.5 7M18.5 17.5L21.5 20.5M8 7.5V6.5C8 4.29086 9.7908 2.5 12 2.5C14.2092 2.5 16 4.29086 16 6.5V7.5M12 21.5C8.13401 21.5 5 18.366 5 14.5V11.4999C5 10.3829 5 9.82428 5.15712 9.37516C5.43856 8.57093 6.07093 7.93856 6.87522 7.65712C7.32427 7.5 7.88284 7.5 9 7.5H15.0001C16.1171 7.5 16.6757 7.5 17.1248 7.65712C17.9291 7.93856 18.5614 8.57093 18.8429 9.37516C19 9.82428 19 10.3829 19 11.4999V14.5C19 18.366 15.866 21.5 12 21.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(rn);const on=new bt({id:"11fffc2467a7bbf0274413a1ad37dc9f",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="11fffc2467a7bbf0274413a1ad37dc9f">\n<path vector-effect="non-scaling-stroke" d="M14.5 15L17.5 12L14.5 9M9.5 9L6.5 12L9.5 15M7.8 21H16.2C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2V7.8C21 6.11984 21 5.27976 20.673 4.63803C20.3854 4.07354 19.9265 3.6146 19.362 3.32698C18.7202 3 17.8802 3 16.2 3H7.8C6.11984 3 5.27976 3 4.63803 3.32698C4.07354 3.6146 3.6146 4.07354 3.32698 4.63803C3 5.27976 3 6.11984 3 7.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(on);const an=new bt({id:"6a4ae14f6cf80dfe96ec4985f4a1f09a",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="6a4ae14f6cf80dfe96ec4985f4a1f09a">\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".7" stroke-width="1.5" d="M12 4v14l2 2h3m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0ZM7 4h10M7 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm10 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0Zm-5 8h5m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0Z" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(an);const sn=new bt({id:"28573ddc1fa4574541a30ea41dc809d3",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="28573ddc1fa4574541a30ea41dc809d3">\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".7" stroke-width="1.5" d="M16 4h2l2 2v14l-2 2H6l-2-2V6l2-2h2m1 11 2 2 5-4m-6-7h5l1-1V4v0-1l-1-1H9L8 3v2l1 1h1Z" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(sn);const ln=new bt({id:"5d13576ad53afa1a06870e7f2a89611c",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="5d13576ad53afa1a06870e7f2a89611c">\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".7" stroke-width="1.5" d="M14 11H8m2 4H8m8-8H8m12 0v13l-2 2H6l-2-2V4l2-2h12l2 2v3Z" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(ln);const cn=new bt({id:"301433459aced022caf70a344436a818",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="301433459aced022caf70a344436a818">\n<path vector-effect="non-scaling-stroke" d="M20 7V6.8C20 5.11984 20 4.27976 19.673 3.63803C19.3854 3.07354 18.9265 2.6146 18.362 2.32698C17.7202 2 16.8802 2 15.2 2H8.8C7.11984 2 6.27976 2 5.63803 2.32698C5.07354 2.6146 4.6146 3.07354 4.32698 3.63803C4 4.27976 4 5.11984 4 6.8V17.2C4 18.8802 4 19.7202 4.32698 20.362C4.6146 20.9265 5.07354 21.3854 5.63803 21.673C6.27976 22 7.11984 22 8.8 22H12.5M12.5 11H8M11.5 15H8M16 7H8M18 18V12.5C18 11.6716 18.6716 11 19.5 11C20.3284 11 21 11.6716 21 12.5V18C21 19.6569 19.6569 21 18 21C16.3431 21 15 19.6569 15 18V14" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(cn);const un=new bt({id:"8e25e3f623b611fe5142a6270ac7268d",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="8e25e3f623b611fe5142a6270ac7268d">\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".7" stroke-width="1.5" d="m13 7-1-2-1-1-1-1H3L2 4v3m0 0h18l2 2v10l-2 2H4l-2-2V7Z" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(un);const dn=new bt({id:"fcf877cdf00a9154483271d31c261114",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="fcf877cdf00a9154483271d31c261114">\n<path vector-effect="non-scaling-stroke" d="M20 6L9 17L4 12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(dn);const fn=new bt({id:"1bc28c2f0dfd279d91231ef6e553e638",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="1bc28c2f0dfd279d91231ef6e553e638">\n<path vector-effect="non-scaling-stroke" d="M13 5H21M13 9H18M13 15H21M13 19H18M3 17.012L4.99133 19L9 15M4 4H8C8.55228 4 9 4.44772 9 5V9C9 9.55228 8.55228 10 8 10H4C3.44772 10 3 9.55228 3 9V5C3 4.44772 3.44772 4 4 4Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(fn);const hn=new bt({id:"472a7e86c3a9476a4f38bb06c801d30d",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="472a7e86c3a9476a4f38bb06c801d30d">\n<path vector-effect="non-scaling-stroke" d="M5 15C4.06812 15 3.60218 15 3.23463 14.8478C2.74458 14.6448 2.35523 14.2554 2.15224 13.7654C2 13.3978 2 12.9319 2 12V5.2C2 4.0799 2 3.51984 2.21799 3.09202C2.40973 2.71569 2.71569 2.40973 3.09202 2.21799C3.51984 2 4.0799 2 5.2 2H12C12.9319 2 13.3978 2 13.7654 2.15224C14.2554 2.35523 14.6448 2.74458 14.8478 3.23463C15 3.60218 15 4.06812 15 5M12.2 22H18.8C19.9201 22 20.4802 22 20.908 21.782C21.2843 21.5903 21.5903 21.2843 21.782 20.908C22 20.4802 22 19.9201 22 18.8V12.2C22 11.0799 22 10.5198 21.782 10.092C21.5903 9.71569 21.2843 9.40973 20.908 9.21799C20.4802 9 19.9201 9 18.8 9H12.2C11.0799 9 10.5198 9 10.092 9.21799C9.71569 9.40973 9.40973 9.71569 9.21799 10.092C9 10.5198 9 11.0799 9 12.2V18.8C9 19.9201 9 20.4802 9.21799 20.908C9.40973 21.2843 9.71569 21.5903 10.092 21.782C10.5198 22 11.0799 22 12.2 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(hn);const pn=new bt({id:"0e6dd40015c633a2be9271018b9b22bf",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="0e6dd40015c633a2be9271018b9b22bf">\n<path vector-effect="non-scaling-stroke" d="M4 16.2422C2.79401 15.435 2 14.0602 2 12.5C2 10.1564 3.79151 8.23129 6.07974 8.01937C6.54781 5.17213 9.02024 3 12 3C14.9798 3 17.4522 5.17213 17.9203 8.01937C20.2085 8.23129 22 10.1564 22 12.5C22 14.0602 21.206 15.435 20 16.2422M8 17L12 21M12 21L16 17M12 21V12" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(pn);const gn=new bt({id:"dacf24b7c84e8a250ab378b98cf65780",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="dacf24b7c84e8a250ab378b98cf65780">\n<path vector-effect="non-scaling-stroke" d="M5 9H19M5 15H19" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(gn);const mn=new bt({id:"f6af8233c5d208fa571aed090bfc4178",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="f6af8233c5d208fa571aed090bfc4178">\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".56" stroke-width="1.5" d="M1.613 8.475c-.09-.144-.136-.216-.161-.326a.782.782 0 0 1 0-.298c.025-.111.07-.183.161-.327C2.363 6.336 4.597 3.333 8 3.333c3.404 0 5.637 3.003 6.387 4.191.09.144.136.216.162.327.019.083.019.214 0 .298-.026.11-.071.182-.162.326-.75 1.188-2.983 4.191-6.387 4.191-3.403 0-5.636-3.003-6.387-4.19Z" />\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".56" stroke-width="1.5" d="M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z" />\n</symbol>',viewBox:"0 0 16 16"});Ft.add(mn);const vn=new bt({id:"e2bf3103166453fd92fed1c3c2fcc807",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="e2bf3103166453fd92fed1c3c2fcc807">\n<path vector-effect="non-scaling-stroke" d="M8 17H16M11.0177 2.764L4.23539 8.03912C3.78202 8.39175 3.55534 8.56806 3.39203 8.78886C3.24737 8.98444 3.1396 9.20478 3.07403 9.43905C3 9.70352 3 9.9907 3 10.5651V17.8C3 18.9201 3 19.4801 3.21799 19.908C3.40973 20.2843 3.71569 20.5903 4.09202 20.782C4.51984 21 5.07989 21 6.2 21H17.8C18.9201 21 19.4802 21 19.908 20.782C20.2843 20.5903 20.5903 20.2843 20.782 19.908C21 19.4801 21 18.9201 21 17.8V10.5651C21 9.9907 21 9.70352 20.926 9.43905C20.8604 9.20478 20.7526 8.98444 20.608 8.78886C20.4447 8.56806 20.218 8.39175 19.7646 8.03913L12.9823 2.764C12.631 2.49075 12.4553 2.35412 12.2613 2.3016C12.0902 2.25526 11.9098 2.25526 11.7387 2.3016C11.5447 2.35412 11.369 2.49075 11.0177 2.764Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(vn);const bn=new bt({id:"db4c3937a96a0ed2c4446a44d3ed4487",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="db4c3937a96a0ed2c4446a44d3ed4487">\n<path vector-effect="non-scaling-stroke" d="M10.0002 13C10.4297 13.5741 10.9776 14.0491 11.6067 14.3929C12.2359 14.7367 12.9317 14.9411 13.6468 14.9923C14.362 15.0435 15.0798 14.9403 15.7515 14.6897C16.4233 14.4392 17.0333 14.047 17.5402 13.54L20.5402 10.54C21.451 9.59695 21.955 8.33394 21.9436 7.02296C21.9322 5.71198 21.4063 4.45791 20.4793 3.53087C19.5523 2.60383 18.2982 2.07799 16.9872 2.0666C15.6762 2.0552 14.4132 2.55918 13.4702 3.46997L11.7502 5.17997M14.0002 11C13.5707 10.4258 13.0228 9.95078 12.3936 9.60703C11.7645 9.26327 11.0687 9.05885 10.3535 9.00763C9.63841 8.95641 8.92061 9.0596 8.24885 9.31018C7.5771 9.56077 6.96709 9.9529 6.4602 10.46L3.4602 13.46C2.54941 14.403 2.04544 15.666 2.05683 16.977C2.06822 18.288 2.59407 19.542 3.52111 20.4691C4.44815 21.3961 5.70221 21.9219 7.01319 21.9333C8.32418 21.9447 9.58719 21.4408 10.5302 20.53L12.2402 18.82" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(bn);const yn=new bt({id:"f346781556394af2bd92144ed8a81446",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="f346781556394af2bd92144ed8a81446">\n<path vector-effect="non-scaling-stroke" d="M21 9L21 3M21 3H15M21 3L13 11M10 5H7.8C6.11984 5 5.27976 5 4.63803 5.32698C4.07354 5.6146 3.6146 6.07354 3.32698 6.63803C3 7.27976 3 8.11984 3 9.8V16.2C3 17.8802 3 18.7202 3.32698 19.362C3.6146 19.9265 4.07354 20.3854 4.63803 20.673C5.27976 21 6.11984 21 7.8 21H14.2C15.8802 21 16.7202 21 17.362 20.673C17.9265 20.3854 18.3854 19.9265 18.673 19.362C19 18.7202 19 17.8802 19 16.2V14" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(yn);const _n=new bt({id:"eb91e2adaaf820e51d7f9276a36ae9bc",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="eb91e2adaaf820e51d7f9276a36ae9bc">\n<path vector-effect="non-scaling-stroke" d="M21 21L16.65 16.65M19 11C19 15.4183 15.4183 19 11 19C6.58172 19 3 15.4183 3 11C3 6.58172 6.58172 3 11 3C15.4183 3 19 6.58172 19 11Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(_n);const wn=new bt({id:"a3d8dc7d008afa216e105f1d0e428c8a",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="a3d8dc7d008afa216e105f1d0e428c8a">\n<path vector-effect="non-scaling-stroke" d="M3 8L15 8M15 8C15 9.65686 16.3431 11 18 11C19.6569 11 21 9.65685 21 8C21 6.34315 19.6569 5 18 5C16.3431 5 15 6.34315 15 8ZM9 16L21 16M9 16C9 17.6569 7.65685 19 6 19C4.34315 19 3 17.6569 3 16C3 14.3431 4.34315 13 6 13C7.65685 13 9 14.3431 9 16Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(wn);const xn=new bt({id:"00720afc1b6bf51893d1d598043a4de1",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="00720afc1b6bf51893d1d598043a4de1">\n<path vector-effect="non-scaling-stroke" d="M18 6L6 18M6 6L18 18" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(xn);const kn=new bt({id:"72dc6b01e3eb761c8218eb9909e841a6",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="72dc6b01e3eb761c8218eb9909e841a6">\n<path vector-effect="non-scaling-stroke" d="M12.9999 2L4.09332 12.6879C3.74451 13.1064 3.57011 13.3157 3.56744 13.4925C3.56512 13.6461 3.63359 13.7923 3.75312 13.8889C3.89061 14 4.16304 14 4.7079 14H11.9999L10.9999 22L19.9064 11.3121C20.2552 10.8936 20.4296 10.6843 20.4323 10.5075C20.4346 10.3539 20.3661 10.2077 20.2466 10.1111C20.1091 10 19.8367 10 19.2918 10H11.9999L12.9999 2Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(kn);const Cn=new bt({id:"2b588854ea2eb02a33849edc6074ba47",content:'<symbol fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="2b588854ea2eb02a33849edc6074ba47">\n <path d="M2.667 10s.667-.667 2.667-.667c2 0 3.333 1.333 5.333 1.333S13.334 10 13.334 10V2s-.667.666-2.667.666c-2 0-3.333-1.333-5.333-1.333S2.667 2 2.667 2v12.666" stroke="currentColor" stroke-opacity=".72" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 16 16"});Ft.add(Cn);const Sn=new bt({id:"e7a5450a50d9dbdceccdc513ec1c2df5",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="e7a5450a50d9dbdceccdc513ec1c2df5">\n<path vector-effect="non-scaling-stroke" d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n<path vector-effect="non-scaling-stroke" d="M9.5 8.96533C9.5 8.48805 9.5 8.24941 9.59974 8.11618C9.68666 8.00007 9.81971 7.92744 9.96438 7.9171C10.1304 7.90525 10.3311 8.03429 10.7326 8.29239L15.4532 11.3271C15.8016 11.551 15.9758 11.663 16.0359 11.8054C16.0885 11.9298 16.0885 12.0702 16.0359 12.1946C15.9758 12.337 15.8016 12.449 15.4532 12.6729L10.7326 15.7076C10.3311 15.9657 10.1304 16.0948 9.96438 16.0829C9.81971 16.0726 9.68666 15.9999 9.59974 15.8838C9.5 15.7506 9.5 15.512 9.5 15.0347V8.96533Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Sn);const Mn=new bt({id:"212b7cc7454a8f2131b99a6dc35cdac7",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="212b7cc7454a8f2131b99a6dc35cdac7">\n <g clip-path="url(#212b7cc7454a8f2131b99a6dc35cdac7_a)">\n <path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity=".56" stroke-width="1.5" d="m9.566 3.1 1.3-1.3a1.607 1.607 0 0 1 2.267 0L14.2 2.867a1.6 1.6 0 0 1 0 2.266l-1.3 1.3m1.766-5.1-1 1m-.333 6.334a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z" />\n </g>\n <defs>\n <clipPath id="212b7cc7454a8f2131b99a6dc35cdac7_a">\n <path fill="currentColor" d="M0 0h16v16H0z" />\n </clipPath>\n </defs>\n</symbol>',viewBox:"0 0 16 16"});Ft.add(Mn);const Tn=new bt({id:"74dd05c5f266368b8b6322f3a7323966",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="74dd05c5f266368b8b6322f3a7323966">\n <path vector-effect="non-scaling-stroke" d="M16.2 21H6.93137C6.32555 21 6.02265 21 5.88238 20.8802C5.76068 20.7763 5.69609 20.6203 5.70865 20.4608C5.72312 20.2769 5.93731 20.0627 6.36569 19.6343L14.8686 11.1314C15.2646 10.7354 15.4627 10.5373 15.691 10.4632C15.8918 10.3979 16.1082 10.3979 16.309 10.4632C16.5373 10.5373 16.7354 10.7354 17.1314 11.1314L21 15V16.2M16.2 21C17.8802 21 18.7202 21 19.362 20.673C19.9265 20.3854 20.3854 19.9265 20.673 19.362C21 18.7202 21 17.8802 21 16.2M16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2M10.5 8.5C10.5 9.60457 9.60457 10.5 8.5 10.5C7.39543 10.5 6.5 9.60457 6.5 8.5C6.5 7.39543 7.39543 6.5 8.5 6.5C9.60457 6.5 10.5 7.39543 10.5 8.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Tn);const An=new bt({id:"59472a73e3c4c5e34794720bd8f10af7",content:'<symbol viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" id="59472a73e3c4c5e34794720bd8f10af7">\n <path vector-effect="non-scaling-stroke" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-opacity="1" stroke-width="1.5" d="M12 3v18M8 3h11l2 2v14l-2 2H5l-2-2V5l2-2h3Z" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(An);const Nn=new bt({id:"a7ec9c9b2ab84be9a85639d7ee018535",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="a7ec9c9b2ab84be9a85639d7ee018535">\n <path vector-effect="non-scaling-stroke" d="M3 9H21M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z" stroke="currentColor" stroke-opacity="1" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Nn);const On=new bt({id:"2cfef4a6ca3bcab80737e78fa35a1e8e",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="2cfef4a6ca3bcab80737e78fa35a1e8e">\n<path vector-effect="non-scaling-stroke" d="M15 9H15.01M15 15C18.3137 15 21 12.3137 21 9C21 5.68629 18.3137 3 15 3C11.6863 3 9 5.68629 9 9C9 9.27368 9.01832 9.54308 9.05381 9.80704C9.11218 10.2412 9.14136 10.4583 9.12172 10.5956C9.10125 10.7387 9.0752 10.8157 9.00469 10.9419C8.937 11.063 8.81771 11.1823 8.57913 11.4209L3.46863 16.5314C3.29568 16.7043 3.2092 16.7908 3.14736 16.8917C3.09253 16.9812 3.05213 17.0787 3.02763 17.1808C3 17.2959 3 17.4182 3 17.6627V19.4C3 19.9601 3 20.2401 3.10899 20.454C3.20487 20.6422 3.35785 20.7951 3.54601 20.891C3.75992 21 4.03995 21 4.6 21H6.33726C6.58185 21 6.70414 21 6.81923 20.9724C6.92127 20.9479 7.01881 20.9075 7.10828 20.8526C7.2092 20.7908 7.29568 20.7043 7.46863 20.5314L12.5791 15.4209C12.8177 15.1823 12.937 15.063 13.0581 14.9953C13.1843 14.9248 13.2613 14.8987 13.4044 14.8783C13.5417 14.8586 13.7588 14.8878 14.193 14.9462C14.4569 14.9817 14.7263 15 15 15Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(On);const Pn=new bt({id:"f5f0f4b804a352ab8e0f24140051bbe3",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="f5f0f4b804a352ab8e0f24140051bbe3">\n<path vector-effect="non-scaling-stroke" d="M8.99999 12H12M8.99999 12C8.99999 12.3965 9.07692 12.7751 9.21667 13.1216M8.99999 12C8.99999 11.6224 9.06975 11.2611 9.19707 10.9283M15 12H12M15 12C15 11.6224 14.9303 11.2611 14.8029 10.9283M15 12C15 12.3776 14.9303 12.7389 14.8029 13.0717M12 15V12M12 15C11.6219 15 11.2601 14.93 10.9269 14.8024M12 15C12.4299 15 12.8388 14.9096 13.2085 14.7467M12 9V12M12 9C12.4299 9 12.8388 9.09044 13.2085 9.25334M12 9C11.5908 9 11.2008 9.08191 10.8454 9.23022M12 12L9.82377 9.93503M12 12L14.3085 13.916M12 12L9.94168 14.1825M12 12L14.1762 9.93503M12 12L14.8029 10.9283M12 12L9.21667 13.1216M12 12L10.9269 14.8024M12 12L13.2085 9.25334M12 12L14.8029 13.0717M12 12L13.2085 14.7467M12 12L10.8454 9.23022M12 12L9.19707 10.9283M9.82377 9.93503C10.1094 9.63416 10.4567 9.39246 10.8454 9.23022M9.82377 9.93503C9.55415 10.2191 9.33956 10.5559 9.19707 10.9283M14.3085 13.916C14.5165 13.6657 14.6846 13.381 14.8029 13.0717M14.3085 13.916C14.0131 14.2716 13.6371 14.5578 13.2085 14.7467M9.94168 14.1825C9.62921 13.8877 9.38003 13.5266 9.21667 13.1216M9.94168 14.1825C10.224 14.4488 10.5579 14.661 10.9269 14.8024M14.1762 9.93503C14.4458 10.2191 14.6604 10.5559 14.8029 10.9283M14.1762 9.93503C13.9039 9.64814 13.5755 9.41504 13.2085 9.25334M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Pn);const Ln=new bt({id:"b53acf6616bc3217ee53f6fa11e30526",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="b53acf6616bc3217ee53f6fa11e30526">\n<path vector-effect="non-scaling-stroke" d="M5.5839 4.7328C6.33209 3.98462 7.17125 3.38527 8.06529 2.9339C7.43285 6.41756 8.46285 10.1468 11.158 12.842C13.8532 15.5372 17.5824 16.5672 21.0661 15.9347C20.6147 16.8288 20.0154 17.6679 19.2672 18.4161C15.4887 22.1946 9.36244 22.1946 5.5839 18.4161C1.80537 14.6376 1.80537 8.51134 5.5839 4.7328Z" stroke="currentColor" stroke-width="1.5" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Ln);const En=new bt({id:"f6726cf2a294337e9b40efc54b12453b",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="f6726cf2a294337e9b40efc54b12453b">\n<path vector-effect="non-scaling-stroke" d="M22 12H20M19.071 19.0711L17.6567 17.6569M4 12H2M6.34292 6.34317L4.92871 4.92896M12 4V2M17.6567 6.34317L19.071 4.92896M12 22V20M4.92871 19.0711L6.34292 17.6569M18 12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(En);const Fn=new bt({id:"fcf01aebea5d02da45d4b8d3bac62b58",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="fcf01aebea5d02da45d4b8d3bac62b58">\n<path vector-effect="non-scaling-stroke" d="M12 9.5V13.5L14.5 15M12 5C7.30558 5 3.5 8.80558 3.5 13.5C3.5 18.1944 7.30558 22 12 22C16.6944 22 20.5 18.1944 20.5 13.5C20.5 8.80558 16.6944 5 12 5ZM12 5V2M10 2H14M20.329 5.59204L18.829 4.09204L19.579 4.84204M3.67102 5.59204L5.17102 4.09204L4.42102 4.84204" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Fn);const jn=new bt({id:"4af8011a58a597dd8fd8c52187120c54",content:'<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 32 32" id="4af8011a58a597dd8fd8c52187120c54">\n <g clip-path="url(#4af8011a58a597dd8fd8c52187120c54_a)">\n <path fill="url(#4af8011a58a597dd8fd8c52187120c54_b)" fill-rule="evenodd" d="M22.23 4.66a3.6 3.6 0 0 1 5.1.04A16.08 16.08 0 0 1 31.97 16a3.6 3.6 0 1 1-7.2 0c0-2.4-.98-4.61-2.58-6.24a3.6 3.6 0 0 1 .03-5.1Z" clip-rule="evenodd" />\n <path fill="url(#4af8011a58a597dd8fd8c52187120c54_c)" fill-rule="evenodd" d="M12.4 3.6A3.6 3.6 0 0 1 16 0c4.4 0 8.4 1.8 11.29 4.66a3.6 3.6 0 0 1-5.06 5.13A8.87 8.87 0 0 0 16 7.2a3.6 3.6 0 0 1-3.6-3.6Z" clip-rule="evenodd" />\n <path fill="url(#4af8011a58a597dd8fd8c52187120c54_d)" fill-rule="evenodd" d="M0 16A16 16 0 0 1 16 0a3.6 3.6 0 0 1 0 7.2 8.8 8.8 0 0 0-6.21 15.04 3.6 3.6 0 0 1-5.13 5.06A16.08 16.08 0 0 1 0 16Z" clip-rule="evenodd" />\n <path fill="url(#4af8011a58a597dd8fd8c52187120c54_e)" fill-rule="evenodd" d="M4.66 22.24a3.6 3.6 0 0 1 5.1-.03 8.87 8.87 0 0 0 6.23 2.59 3.6 3.6 0 0 1 0 7.2c-4.4 0-8.4-1.8-11.3-4.66a3.6 3.6 0 0 1-.03-5.1Z" clip-rule="evenodd" />\n <path fill="url(#4af8011a58a597dd8fd8c52187120c54_f)" fill-rule="evenodd" d="M28.38 12.4a3.6 3.6 0 0 1 3.6 3.6A16 16 0 0 1 16 32a3.6 3.6 0 0 1 0-7.2 8.8 8.8 0 0 0 8.8-8.8 3.6 3.6 0 0 1 3.6-3.6Z" clip-rule="evenodd" />\n <path fill="url(#4af8011a58a597dd8fd8c52187120c54_g)" fill-rule="evenodd" d="M28.38 12.4a3.6 3.6 0 0 1 3.6 3.6v12.4a3.6 3.6 0 1 1-7.2 0V16a3.6 3.6 0 0 1 3.6-3.6Z" clip-rule="evenodd" />\n <g clip-path="url(#4af8011a58a597dd8fd8c52187120c54_h)">\n <path fill="url(#4af8011a58a597dd8fd8c52187120c54_i)" fill-rule="evenodd" d="M22.23 4.66a3.6 3.6 0 0 1 5.1.04A16.08 16.08 0 0 1 31.97 16a3.6 3.6 0 1 1-7.2 0c0-2.4-.98-4.61-2.58-6.24a3.6 3.6 0 0 1 .03-5.1Z" clip-rule="evenodd" />\n </g>\n </g>\n <defs>\n <linearGradient id="4af8011a58a597dd8fd8c52187120c54_b" x1="26.4" x2="28.8" y1="9.6" y2="15.01" gradientUnits="userSpaceOnUse">\n <stop stop-color="#7E22CE" />\n <stop offset="1" stop-color="#8B5CF6" />\n </linearGradient>\n <linearGradient id="4af8011a58a597dd8fd8c52187120c54_c" x1="26.8" x2="17.8" y1="9.4" y2="3.61" gradientUnits="userSpaceOnUse">\n <stop stop-color="#EF4444" />\n <stop offset="1" stop-color="#DC2626" />\n </linearGradient>\n <linearGradient id="4af8011a58a597dd8fd8c52187120c54_d" x1="3.6" x2="5.4" y1="14.01" y2="24.81" gradientUnits="userSpaceOnUse">\n <stop stop-color="#22C55E" />\n <stop offset="1" stop-color="#15803D" />\n </linearGradient>\n <linearGradient id="4af8011a58a597dd8fd8c52187120c54_e" x1="4.8" x2="14.4" y1="22.21" y2="29.21" gradientUnits="userSpaceOnUse">\n <stop stop-color="#94A3B8" />\n <stop offset=".96" stop-color="#64748B" />\n <stop offset="1" stop-color="#64748B" />\n </linearGradient>\n <linearGradient id="4af8011a58a597dd8fd8c52187120c54_f" x1="28.4" x2="22.19" y1="22.18" y2="28.4" gradientUnits="userSpaceOnUse">\n <stop stop-color="#D97706" />\n <stop offset="1" stop-color="#FBBF24" />\n </linearGradient>\n <linearGradient id="4af8011a58a597dd8fd8c52187120c54_g" x1="29.2" x2="30.63" y1="54.43" y2="54.28" gradientUnits="userSpaceOnUse">\n <stop stop-color="#FBBF24" />\n <stop offset="1" stop-color="#FBBF24" />\n </linearGradient>\n <linearGradient id="4af8011a58a597dd8fd8c52187120c54_i" x1="26.4" x2="28.8" y1="9.6" y2="15.01" gradientUnits="userSpaceOnUse">\n <stop stop-color="#7E22CE" />\n <stop offset="1" stop-color="#8B5CF6" />\n </linearGradient>\n <clipPath id="4af8011a58a597dd8fd8c52187120c54_a">\n <path fill="#fff" d="M0 0h32v32H0z" />\n </clipPath>\n <clipPath id="4af8011a58a597dd8fd8c52187120c54_h">\n <path fill="#fff" d="M24.8 12H32v8h-7.2z" />\n </clipPath>\n </defs>\n</symbol>',viewBox:"0 0 32 32"});Ft.add(jn);const zn=new bt({id:"9a80d543f66830af93634ae4d68aa0b7",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="9a80d543f66830af93634ae4d68aa0b7">\n<path vector-effect="non-scaling-stroke" fill-rule="evenodd" clip-rule="evenodd" d="M12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1ZM13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8V12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12V8ZM12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17H12.01C12.5623 17 13.01 16.5523 13.01 16C13.01 15.4477 12.5623 15 12.01 15H12Z" fill="currentColor" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(zn);const $n=new bt({id:"9fc212651ca048f099abf61155ea3483",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="9fc212651ca048f099abf61155ea3483">\n<path vector-effect="non-scaling-stroke" fill-rule="evenodd" clip-rule="evenodd" d="M12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1ZM17.2071 9.70711C17.5976 9.31658 17.5976 8.68342 17.2071 8.29289C16.8166 7.90237 16.1834 7.90237 15.7929 8.29289L10.5 13.5858L8.20711 11.2929C7.81658 10.9024 7.18342 10.9024 6.79289 11.2929C6.40237 11.6834 6.40237 12.3166 6.79289 12.7071L9.79289 15.7071C10.1834 16.0976 10.8166 16.0976 11.2071 15.7071L17.2071 9.70711Z" fill="currentColor" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add($n);const Bn=new bt({id:"6f69a868093429cca2d18204c014d1de",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="6f69a868093429cca2d18204c014d1de">\n<path vector-effect="non-scaling-stroke" fill-rule="evenodd" clip-rule="evenodd" d="M12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1ZM10.9066 8.27123C11.3138 8.03191 11.7926 7.94443 12.2581 8.02428C12.7236 8.10413 13.1459 8.34615 13.45 8.70749C13.7542 9.06883 13.9207 9.52615 13.92 9.99847L13.92 9.99996C13.92 10.4691 13.5549 10.9582 12.8653 11.4179C12.5509 11.6275 12.2294 11.7889 11.9826 11.8986C11.8606 11.9529 11.7603 11.9929 11.6929 12.0186C11.663 12.03 11.6329 12.041 11.6027 12.0516C11.0794 12.2267 10.7968 12.7926 10.9713 13.3162C11.146 13.8401 11.7123 14.1233 12.2362 13.9486L12.4049 13.8876C12.5015 13.8508 12.6356 13.7971 12.7949 13.7263C13.1105 13.586 13.5391 13.3724 13.9747 13.082C14.7849 12.5419 15.9195 11.5312 15.92 10.0009C15.9213 9.05644 15.5883 8.14201 14.9801 7.41949C14.3717 6.69682 13.5273 6.21277 12.5962 6.05307C11.6652 5.89337 10.7077 6.06833 9.89327 6.54696C9.07886 7.02559 8.46013 7.77701 8.14666 8.66812C7.96339 9.18911 8.23716 9.76002 8.75815 9.9433C9.27914 10.1266 9.85006 9.85279 10.0333 9.33181C10.1901 8.88625 10.4994 8.51054 10.9066 8.27123ZM12 16C11.4477 16 11 16.4477 11 17C11 17.5522 11.4477 18 12 18H12.01C12.5623 18 13.01 17.5522 13.01 17C13.01 16.4477 12.5623 16 12.01 16H12Z" fill="currentColor" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Bn);const Rn=new bt({id:"27eb29a1af650efa3c8f236e96fd49b8",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="27eb29a1af650efa3c8f236e96fd49b8">\n<path vector-effect="non-scaling-stroke" fill-rule="evenodd" clip-rule="evenodd" d="M12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1ZM8 11C7.44772 11 7 11.4477 7 12C7 12.5523 7.44772 13 8 13H16C16.5523 13 17 12.5523 17 12C17 11.4477 16.5523 11 16 11H8Z" fill="currentColor" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Rn);const Dn=new bt({id:"d37b4d7c76a2a7896f3890561ed86f2d",content:'<symbol viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" id="d37b4d7c76a2a7896f3890561ed86f2d">\n<path vector-effect="non-scaling-stroke" fill-rule="evenodd" clip-rule="evenodd" d="M12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1ZM15.7071 8.29289C16.0976 8.68342 16.0976 9.31658 15.7071 9.70711L13.4142 12L15.7071 14.2929C16.0976 14.6834 16.0976 15.3166 15.7071 15.7071C15.3166 16.0976 14.6834 16.0976 14.2929 15.7071L12 13.4142L9.70711 15.7071C9.31658 16.0976 8.68342 16.0976 8.29289 15.7071C7.90237 15.3166 7.90237 14.6834 8.29289 14.2929L10.5858 12L8.29289 9.70711C7.90237 9.31658 7.90237 8.68342 8.29289 8.29289C8.68342 7.90237 9.31658 7.90237 9.70711 8.29289L12 10.5858L14.2929 8.29289C14.6834 7.90237 15.3166 7.90237 15.7071 8.29289Z" fill="currentColor" />\n</symbol>',viewBox:"0 0 24 24"});Ft.add(Dn);const In=new bt({id:"eddd9bec4b080bb230775b072a486acc",content:'<symbol viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" id="eddd9bec4b080bb230775b072a486acc">\n <circle cx="8" cy="8" r="7" stroke="currentColor" stroke-opacity="0.32" stroke-width="1.5" vector-effect="non-scaling-stroke" />\n <path d="M 15 8 A 7 7 0 0 1 8 15" stroke="currentColor" stroke-opacity="1" stroke-width="1.5" class="allure-spinner" vector-effect="non-scaling-stroke" />\n <style>\n #eddd9bec4b080bb230775b072a486acc .allure-spinner {\n transform-origin: center;\n animation: allure-spinner-spin 0.75s infinite ease-in-out;\n }\n\n @keyframes allure-spinner-spin {\n 100% {\n transform: rotate(360deg);\n }\n }\n </style>\n</symbol>',viewBox:"0 0 16 16"});Ft.add(In);const Un=new bt({id:"baef59387353cd7f2939ebd4ddf30155",content:'<symbol viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" id="baef59387353cd7f2939ebd4ddf30155">\n<g clip-path="url(#baef59387353cd7f2939ebd4ddf30155_clip0_428_25)">\n<path d="M5.24 22.51L6.67 21.09C5.10422 19.6841 3.87398 17.9447 3.07 16C5.1 10.93 10.7 7 16 7C17.3639 7.018 18.7154 7.26128 20 7.72L21.55 6.16C19.7927 5.41732 17.9077 5.02335 16 5C12.7405 5.12257 9.58839 6.19756 6.9332 8.09209C4.27802 9.98662 2.23616 12.6176 1.06 15.66C0.980569 15.8797 0.980569 16.1203 1.06 16.34C1.94825 18.697 3.38043 20.811 5.24 22.51Z" fill="currentColor" />\n<path d="M12 15.73C12.0695 14.7717 12.4817 13.8705 13.1611 13.1911C13.8405 12.5117 14.7417 12.0995 15.7 12.03L17.51 10.21C16.4958 9.94295 15.4292 9.94642 14.4168 10.2201C13.4043 10.4937 12.4812 11.028 11.7396 11.7696C10.998 12.5112 10.4637 13.4343 10.1901 14.4468C9.91642 15.4592 9.91295 16.5258 10.18 17.54L12 15.73Z" fill="currentColor" />\n<path d="M30.94 15.66C29.7933 12.6732 27.7981 10.087 25.2 8.22L30 3.41L28.59 2L2 28.59L3.41 30L8.51 24.9C10.7839 26.234 13.364 26.9574 16 27C19.2595 26.8774 22.4116 25.8024 25.0668 23.9079C27.722 22.0134 29.7638 19.3824 30.94 16.34C31.0194 16.1203 31.0194 15.8797 30.94 15.66ZM20 16C19.9958 16.7001 19.8079 17.3868 19.4551 17.9916C19.1023 18.5963 18.597 19.0978 17.9896 19.4461C17.3822 19.7943 16.6941 19.977 15.994 19.9759C15.2939 19.9749 14.6063 19.7901 14 19.44L19.44 14C19.7995 14.6057 19.9927 15.2957 20 16ZM16 25C13.9021 24.9634 11.8439 24.4214 10 23.42L12.54 20.88C13.6953 21.6816 15.0955 22.052 16.4961 21.9265C17.8967 21.8009 19.2087 21.1874 20.2031 20.1931C21.1974 19.1987 21.8109 17.8867 21.9365 16.4861C22.062 15.0855 21.6916 13.6853 20.89 12.53L23.76 9.66C26.0546 11.235 27.849 13.4354 28.93 16C26.9 21.07 21.3 25 16 25Z" fill="currentColor" />\n</g>\n<defs>\n<clipPath id="baef59387353cd7f2939ebd4ddf30155_clip0_428_25">\n<rect width="32" height="32" fill="white" />\n</clipPath>\n</defs>\n</symbol>',viewBox:"0 0 32 32"});Ft.add(Un);const Hn=new bt({id:"81703ad6b4eb056b5d8424a52fc8c0e8",content:'<symbol viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg" id="81703ad6b4eb056b5d8424a52fc8c0e8">\n<g clip-path="url(#81703ad6b4eb056b5d8424a52fc8c0e8_clip0_428_24)">\n<path d="M30.94 15.66C29.7638 12.6176 27.722 9.98662 25.0668 8.09209C22.4116 6.19756 19.2595 5.12257 16 5C12.7405 5.12257 9.58839 6.19756 6.9332 8.09209C4.27802 9.98662 2.23616 12.6176 1.06 15.66C0.980569 15.8797 0.980569 16.1203 1.06 16.34C2.23616 19.3824 4.27802 22.0134 6.9332 23.9079C9.58839 25.8024 12.7405 26.8774 16 27C19.2595 26.8774 22.4116 25.8024 25.0668 23.9079C27.722 22.0134 29.7638 19.3824 30.94 16.34C31.0194 16.1203 31.0194 15.8797 30.94 15.66ZM16 25C10.7 25 5.1 21.07 3.07 16C5.1 10.93 10.7 7 16 7C21.3 7 26.9 10.93 28.93 16C26.9 21.07 21.3 25 16 25Z" fill="currentColor" />\n<path d="M16 10C14.8133 10 13.6533 10.3519 12.6666 11.0112C11.6799 11.6705 10.9109 12.6075 10.4567 13.7039C10.0026 14.8003 9.88378 16.0067 10.1153 17.1705C10.3468 18.3344 10.9182 19.4035 11.7574 20.2426C12.5965 21.0818 13.6656 21.6532 14.8295 21.8847C15.9933 22.1162 17.1997 21.9974 18.2961 21.5433C19.3925 21.0892 20.3295 20.3201 20.9888 19.3334C21.6481 18.3467 22 17.1867 22 16C22 14.4087 21.3679 12.8826 20.2426 11.7574C19.1174 10.6321 17.5913 10 16 10ZM16 20C15.2089 20 14.4355 19.7654 13.7777 19.3259C13.1199 18.8864 12.6072 18.2616 12.3045 17.5307C12.0017 16.7998 11.9225 15.9956 12.0769 15.2196C12.2312 14.4437 12.6122 13.731 13.1716 13.1716C13.731 12.6122 14.4437 12.2312 15.2196 12.0769C15.9956 11.9225 16.7998 12.0017 17.5307 12.3045C18.2616 12.6072 18.8864 13.1199 19.3259 13.7777C19.7654 14.4355 20 15.2089 20 16C20 17.0609 19.5786 18.0783 18.8284 18.8284C18.0783 19.5786 17.0609 20 16 20Z" fill="currentColor" />\n</g>\n<defs>\n<clipPath id="81703ad6b4eb056b5d8424a52fc8c0e8_clip0_428_24">\n<rect width="32" height="32" fill="white" />\n</clipPath>\n</defs>\n</symbol>',viewBox:"0 0 32 32"});Ft.add(Hn);var qn={icon:"styles_icon__peopu","size-xs":"styles_size-xs__jr71y","size-s":"styles_size-s__nGH-V","size-m":"styles_size-m__INBNd",inline:"styles_inline__BmJqE"};const Vn={arrowsChevronDown:It.id,github:Ut.id,lineAlertsAlertCircle:Ht.id,lineAlertsNotificationBox:qt.id,lineArrowsChevronDown:Wt.id,lineArrowsChevronDownDouble:Vt.id,lineArrowsChevronRight:Yt.id,lineArrowsChevronUp:Zt.id,lineArrowsChevronUpDouble:Gt.id,lineArrowsCornerDownRight:Xt.id,lineArrowsExpand3:Kt.id,lineArrowsRefreshCcw1:Qt.id,lineArrowsSortLineAsc:Jt.id,lineArrowsSortLineDesc:en.id,lineArrowsSwitchVertical1:tn.id,lineChartsBarChartSquare:nn.id,lineDevBug2:rn.id,lineDevCodeSquare:on.id,lineDevDataflow3:an.id,lineFilesClipboardCheck:sn.id,lineFilesFile2:ln.id,lineFilesFileAttachment2:cn.id,lineFilesFolder:un.id,lineGeneralCheck:dn.id,lineGeneralChecklist3:fn.id,lineGeneralCopy3:hn.id,lineGeneralDownloadCloud:pn.id,lineGeneralEqual:gn.id,lineGeneralEye:mn.id,lineGeneralHomeLine:vn.id,lineGeneralLink1:bn.id,lineGeneralLinkExternal:yn.id,lineGeneralSearchMd:_n.id,lineGeneralSettings1:wn.id,lineGeneralXClose:xn.id,lineGeneralZap:kn.id,lineHelpersFlag:Cn.id,lineHelpersPlayCircle:Sn.id,lineIconBomb2:Mn.id,lineImagesImage:Tn.id,lineLayoutsColumn2:An.id,lineLayoutsLayoutTop:Nn.id,lineSecurityKey:On.id,lineShapesDotCircle:Pn.id,lineShapesMoon:Ln.id,lineShapesSun:En.id,lineTimeClockStopwatch:Fn.id,reportLogo:jn.id,solidAlertCircle:zn.id,solidCheckCircle:$n.id,solidHelpCircle:Bn.id,solidMinusCircle:Rn.id,solidXCircle:Dn.id,spinner:In.id,view:Hn.id,viewOff:Un.id},Wn=({id:e,size:t="s",inline:n=!1,className:r=""})=>Je("svg",{className:tt(qn.icon,qn[`size-${t}`],n&&qn.inline,r),children:Je("use",{xlinkHref:`#${e}`})}),Yn=({size:e})=>Je(Wn,{role:"progressbar",id:In.id,size:e}),Gn=({size:e="m",tag:t="span",type:n="paragraph",bold:r=!1,className:i,children:o,...a})=>"paragraph"===n?Je(t,{...a,className:tt(`paragraphs-text-${e}${r?"-bold":""}`,i),children:o}):"ui"===n?Je(t,{...a,className:tt(`ui-text-${e}-ui${r?"-bold":""}`,i),children:o}):null,Zn=({size:e="m",tag:t="span",type:n="paragraph",bold:r=!1,className:i,children:o,...a})=>"paragraph"===n?Je(t,{...a,className:tt(`paragraphs-code-${e}${r?"-bold":""}`,i),children:o}):"ui"===n?Je(t,{...a,className:tt(`ui-code-${e}-ui${r?"-bold":""}`,i),children:o}):null,Xn=({size:e="m",tag:t="span",className:n,children:r,...i})=>Je(t,{...i,className:tt(`headings-head-${e}`,n),children:r});var Kn={button:"styles_button__dJOMr",fullWidth:"styles_fullWidth__UvMfL",contentIcon:"styles_contentIcon__WG8cP",leadingIcon:"styles_leadingIcon__YCONr",dropdownIcon:"styles_dropdownIcon__QbL-e",buttonIcon:"styles_buttonIcon__jkuyM",size_l:"styles_size_l__qdpXc",size_m:"styles_size_m__YdAJU",size_s:"styles_size_s__ujh2O",icon_size_xs:"styles_icon_size_xs__I8F1x",style_primary:"styles_style_primary__repZw",active:"styles_active__qHBgG",danger:"styles_danger__ifSNz",positive:"styles_positive__NaE-e",style_outline:"styles_style_outline__UDLGz",style_ghost:"styles_style_ghost__XxqyT",style_flat:"styles_style_flat__tgVZ1",style_raised:"styles_style_raised__Pwwft",text:"styles_text__n3hds",pending:"styles_pending__8GUAj",content:"styles_content__pYX6n",spinner:"styles_spinner__anTET"};const Qn=e=>{const{text:t,type:n="button",icon:r,iconSize:i="m",onClick:o,isPending:a=!1,size:s="m",style:l="primary",action:c="default",fullWidth:u=!1,isDisabled:d=!1,isIconButton:f=!1,isDropdownButton:h=!1,isActive:p=!1,focusable:g=!0,className:m,...v}=e,b=d||a;return Je("button",{...v,tabIndex:g?0:-1,className:tt(Kn.button,f&&Kn.buttonIcon,Kn[`size_${s}`],Kn[`icon_size_${i}`],Kn[`style_${l}`],"danger"===c&&Kn.danger,"positive"===c&&Kn.positive,a&&Kn.pending,u&&Kn.fullWidth,!b&&p&&Kn.active,m),disabled:b,onClick:o,type:n,children:Je(Gn,{type:"ui",size:"s"===s?"s":"m",bold:!0,className:Kn.content,children:[r&&Je(Wn,{size:"s",className:f?Kn.contentIcon:Kn.leadingIcon,id:r}),!f&&Je("span",{className:Kn.text,children:t}),h&&Je(Wn,{id:Vn.lineArrowsChevronDown,size:"s",className:Kn.dropdownIcon}),Je("span",{className:Kn.spinner,"aria-hidden":!a,children:Je(Yn,{})})]})})},Jn=e=>Je(Qn,{...e}),er=e=>Je(Qn,{...e,isIconButton:!0}),tr=e=>Je(Qn,{...e,isDropdownButton:!0,isActive:e.isExpanded}),nr=Math.min,rr=Math.max,ir={left:"right",right:"left",bottom:"top",top:"bottom"},or={start:"end",end:"start"};function ar(e,t,n){return rr(e,nr(t,n))}function sr(e,t){return"function"==typeof e?e(t):e}function lr(e){return e.split("-")[0]}function cr(e){return e.split("-")[1]}function ur(e){return"x"===e?"y":"x"}function dr(e){return"y"===e?"height":"width"}function fr(e){return["top","bottom"].includes(lr(e))?"y":"x"}function hr(e){return ur(fr(e))}function pr(e){return e.replace(/start|end/g,(e=>or[e]))}function gr(e){return e.replace(/left|right|bottom|top/g,(e=>ir[e]))}function mr(e){const{x:t,y:n,width:r,height:i}=e;return{width:r,height:i,top:n,left:t,right:t+r,bottom:n+i,x:t,y:n}}function vr(e,t,n){let{reference:r,floating:i}=e;const o=fr(t),a=hr(t),s=dr(a),l=lr(t),c="y"===o,u=r.x+r.width/2-i.width/2,d=r.y+r.height/2-i.height/2,f=r[s]/2-i[s]/2;let h;switch(l){case"top":h={x:u,y:r.y-i.height};break;case"bottom":h={x:u,y:r.y+r.height};break;case"right":h={x:r.x+r.width,y:d};break;case"left":h={x:r.x-i.width,y:d};break;default:h={x:r.x,y:r.y}}switch(cr(t)){case"start":h[a]-=f*(n&&c?-1:1);break;case"end":h[a]+=f*(n&&c?-1:1)}return h}async function br(e,t){var n;void 0===t&&(t={});const{x:r,y:i,platform:o,rects:a,elements:s,strategy:l}=e,{boundary:c="clippingAncestors",rootBoundary:u="viewport",elementContext:d="floating",altBoundary:f=!1,padding:h=0}=sr(t,e),p=function(e){return"number"!=typeof e?function(e){return{top:0,right:0,bottom:0,left:0,...e}}(e):{top:e,right:e,bottom:e,left:e}}(h),g=s[f?"floating"===d?"reference":"floating":d],m=mr(await o.getClippingRect({element:null==(n=await(null==o.isElement?void 0:o.isElement(g)))||n?g:g.contextElement||await(null==o.getDocumentElement?void 0:o.getDocumentElement(s.floating)),boundary:c,rootBoundary:u,strategy:l})),v="floating"===d?{x:r,y:i,width:a.floating.width,height:a.floating.height}:a.reference,b=await(null==o.getOffsetParent?void 0:o.getOffsetParent(s.floating)),y=await(null==o.isElement?void 0:o.isElement(b))&&await(null==o.getScale?void 0:o.getScale(b))||{x:1,y:1},_=mr(o.convertOffsetParentRelativeRectToViewportRelativeRect?await o.convertOffsetParentRelativeRectToViewportRelativeRect({elements:s,rect:v,offsetParent:b,strategy:l}):v);return{top:(m.top-_.top+p.top)/y.y,bottom:(_.bottom-m.bottom+p.bottom)/y.y,left:(m.left-_.left+p.left)/y.x,right:(_.right-m.right+p.right)/y.x}}const yr=Math.min,_r=Math.max,wr=Math.round,xr=Math.floor,kr=e=>({x:e,y:e});function Cr(){return"undefined"!=typeof window}function Sr(e){return Ar(e)?(e.nodeName||"").toLowerCase():"#document"}function Mr(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function Tr(e){var t;return null==(t=(Ar(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function Ar(e){return!!Cr()&&(e instanceof Node||e instanceof Mr(e).Node)}function Nr(e){return!!Cr()&&(e instanceof Element||e instanceof Mr(e).Element)}function Or(e){return!!Cr()&&(e instanceof HTMLElement||e instanceof Mr(e).HTMLElement)}function Pr(e){return!(!Cr()||"undefined"==typeof ShadowRoot)&&(e instanceof ShadowRoot||e instanceof Mr(e).ShadowRoot)}function Lr(e){const{overflow:t,overflowX:n,overflowY:r,display:i}=Br(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!["inline","contents"].includes(i)}function Er(e){return["table","td","th"].includes(Sr(e))}function Fr(e){return[":popover-open",":modal"].some((t=>{try{return e.matches(t)}catch(e){return!1}}))}function jr(e){const t=zr(),n=Nr(e)?Br(e):e;return["transform","translate","scale","rotate","perspective"].some((e=>!!n[e]&&"none"!==n[e]))||!!n.containerType&&"normal"!==n.containerType||!t&&!!n.backdropFilter&&"none"!==n.backdropFilter||!t&&!!n.filter&&"none"!==n.filter||["transform","translate","scale","rotate","perspective","filter"].some((e=>(n.willChange||"").includes(e)))||["paint","layout","strict","content"].some((e=>(n.contain||"").includes(e)))}function zr(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function $r(e){return["html","body","#document"].includes(Sr(e))}function Br(e){return Mr(e).getComputedStyle(e)}function Rr(e){return Nr(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function Dr(e){if("html"===Sr(e))return e;const t=e.assignedSlot||e.parentNode||Pr(e)&&e.host||Tr(e);return Pr(t)?t.host:t}function Ir(e){const t=Dr(e);return $r(t)?e.ownerDocument?e.ownerDocument.body:e.body:Or(t)&&Lr(t)?t:Ir(t)}function Ur(e,t,n){var r;void 0===t&&(t=[]),void 0===n&&(n=!0);const i=Ir(e),o=i===(null==(r=e.ownerDocument)?void 0:r.body),a=Mr(i);if(o){const e=Hr(a);return t.concat(a,a.visualViewport||[],Lr(i)?i:[],e&&n?Ur(e):[])}return t.concat(i,Ur(i,[],n))}function Hr(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function qr(e){const t=Br(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const i=Or(e),o=i?e.offsetWidth:n,a=i?e.offsetHeight:r,s=wr(n)!==o||wr(r)!==a;return s&&(n=o,r=a),{width:n,height:r,$:s}}function Vr(e){return Nr(e)?e:e.contextElement}function Wr(e){const t=Vr(e);if(!Or(t))return kr(1);const n=t.getBoundingClientRect(),{width:r,height:i,$:o}=qr(t);let a=(o?wr(n.width):n.width)/r,s=(o?wr(n.height):n.height)/i;return a&&Number.isFinite(a)||(a=1),s&&Number.isFinite(s)||(s=1),{x:a,y:s}}const Yr=kr(0);function Gr(e){const t=Mr(e);return zr()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:Yr}function Zr(e,t,n,r){void 0===t&&(t=!1),void 0===n&&(n=!1);const i=e.getBoundingClientRect(),o=Vr(e);let a=kr(1);t&&(r?Nr(r)&&(a=Wr(r)):a=Wr(e));const s=function(e,t,n){return void 0===t&&(t=!1),!(!n||t&&n!==Mr(e))&&t}(o,n,r)?Gr(o):kr(0);let l=(i.left+s.x)/a.x,c=(i.top+s.y)/a.y,u=i.width/a.x,d=i.height/a.y;if(o){const e=Mr(o),t=r&&Nr(r)?Mr(r):r;let n=e,i=Hr(n);for(;i&&r&&t!==n;){const e=Wr(i),t=i.getBoundingClientRect(),r=Br(i),o=t.left+(i.clientLeft+parseFloat(r.paddingLeft))*e.x,a=t.top+(i.clientTop+parseFloat(r.paddingTop))*e.y;l*=e.x,c*=e.y,u*=e.x,d*=e.y,l+=o,c+=a,n=Mr(i),i=Hr(n)}}return mr({width:u,height:d,x:l,y:c})}function Xr(e,t){const n=Rr(e).scrollLeft;return t?t.left+n:Zr(Tr(e)).left+n}function Kr(e,t,n){void 0===n&&(n=!1);const r=e.getBoundingClientRect();return{x:r.left+t.scrollLeft-(n?0:Xr(e,r)),y:r.top+t.scrollTop}}function Qr(e,t,n){let r;if("viewport"===t)r=function(e,t){const n=Mr(e),r=Tr(e),i=n.visualViewport;let o=r.clientWidth,a=r.clientHeight,s=0,l=0;if(i){o=i.width,a=i.height;const e=zr();(!e||e&&"fixed"===t)&&(s=i.offsetLeft,l=i.offsetTop)}return{width:o,height:a,x:s,y:l}}(e,n);else if("document"===t)r=function(e){const t=Tr(e),n=Rr(e),r=e.ownerDocument.body,i=_r(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),o=_r(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let a=-n.scrollLeft+Xr(e);const s=-n.scrollTop;return"rtl"===Br(r).direction&&(a+=_r(t.clientWidth,r.clientWidth)-i),{width:i,height:o,x:a,y:s}}(Tr(e));else if(Nr(t))r=function(e,t){const n=Zr(e,!0,"fixed"===t),r=n.top+e.clientTop,i=n.left+e.clientLeft,o=Or(e)?Wr(e):kr(1);return{width:e.clientWidth*o.x,height:e.clientHeight*o.y,x:i*o.x,y:r*o.y}}(t,n);else{const n=Gr(e);r={x:t.x-n.x,y:t.y-n.y,width:t.width,height:t.height}}return mr(r)}function Jr(e,t){const n=Dr(e);return!(n===t||!Nr(n)||$r(n))&&("fixed"===Br(n).position||Jr(n,t))}function ei(e,t,n){const r=Or(t),i=Tr(t),o="fixed"===n,a=Zr(e,!0,o,t);let s={scrollLeft:0,scrollTop:0};const l=kr(0);if(r||!r&&!o)if(("body"!==Sr(t)||Lr(i))&&(s=Rr(t)),r){const e=Zr(t,!0,o,t);l.x=e.x+t.clientLeft,l.y=e.y+t.clientTop}else i&&(l.x=Xr(i));const c=!i||r||o?kr(0):Kr(i,s);return{x:a.left+s.scrollLeft-l.x-c.x,y:a.top+s.scrollTop-l.y-c.y,width:a.width,height:a.height}}function ti(e){return"static"===Br(e).position}function ni(e,t){if(!Or(e)||"fixed"===Br(e).position)return null;if(t)return t(e);let n=e.offsetParent;return Tr(e)===n&&(n=n.ownerDocument.body),n}function ri(e,t){const n=Mr(e);if(Fr(e))return n;if(!Or(e)){let t=Dr(e);for(;t&&!$r(t);){if(Nr(t)&&!ti(t))return t;t=Dr(t)}return n}let r=ni(e,t);for(;r&&Er(r)&&ti(r);)r=ni(r,t);return r&&$r(r)&&ti(r)&&!jr(r)?n:r||function(e){let t=Dr(e);for(;Or(t)&&!$r(t);){if(jr(t))return t;if(Fr(t))return null;t=Dr(t)}return null}(e)||n}const ii={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:t,rect:n,offsetParent:r,strategy:i}=e;const o="fixed"===i,a=Tr(r),s=!!t&&Fr(t.floating);if(r===a||s&&o)return n;let l={scrollLeft:0,scrollTop:0},c=kr(1);const u=kr(0),d=Or(r);if((d||!d&&!o)&&(("body"!==Sr(r)||Lr(a))&&(l=Rr(r)),Or(r))){const e=Zr(r);c=Wr(r),u.x=e.x+r.clientLeft,u.y=e.y+r.clientTop}const f=!a||d||o?kr(0):Kr(a,l,!0);return{width:n.width*c.x,height:n.height*c.y,x:n.x*c.x-l.scrollLeft*c.x+u.x+f.x,y:n.y*c.y-l.scrollTop*c.y+u.y+f.y}},getDocumentElement:Tr,getClippingRect:function(e){let{element:t,boundary:n,rootBoundary:r,strategy:i}=e;const o=[..."clippingAncestors"===n?Fr(t)?[]:function(e,t){const n=t.get(e);if(n)return n;let r=Ur(e,[],!1).filter((e=>Nr(e)&&"body"!==Sr(e))),i=null;const o="fixed"===Br(e).position;let a=o?Dr(e):e;for(;Nr(a)&&!$r(a);){const t=Br(a),n=jr(a);n||"fixed"!==t.position||(i=null),(o?!n&&!i:!n&&"static"===t.position&&i&&["absolute","fixed"].includes(i.position)||Lr(a)&&!n&&Jr(e,a))?r=r.filter((e=>e!==a)):i=t,a=Dr(a)}return t.set(e,r),r}(t,this._c):[].concat(n),r],a=o[0],s=o.reduce(((e,n)=>{const r=Qr(t,n,i);return e.top=_r(r.top,e.top),e.right=yr(r.right,e.right),e.bottom=yr(r.bottom,e.bottom),e.left=_r(r.left,e.left),e}),Qr(t,a,i));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}},getOffsetParent:ri,getElementRects:async function(e){const t=this.getOffsetParent||ri,n=this.getDimensions,r=await n(e.floating);return{reference:ei(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}},getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){const{width:t,height:n}=qr(e);return{width:t,height:n}},getScale:Wr,isElement:Nr,isRTL:function(e){return"rtl"===Br(e).direction}};function oi(e,t){return e.x===t.x&&e.y===t.y&&e.width===t.width&&e.height===t.height}function ai(e,t,n,r){void 0===r&&(r={});const{ancestorScroll:i=!0,ancestorResize:o=!0,elementResize:a="function"==typeof ResizeObserver,layoutShift:s="function"==typeof IntersectionObserver,animationFrame:l=!1}=r,c=Vr(e),u=i||o?[...c?Ur(c):[],...Ur(t)]:[];u.forEach((e=>{i&&e.addEventListener("scroll",n,{passive:!0}),o&&e.addEventListener("resize",n)}));const d=c&&s?function(e,t){let n,r=null;const i=Tr(e);function o(){var e;clearTimeout(n),null==(e=r)||e.disconnect(),r=null}return function a(s,l){void 0===s&&(s=!1),void 0===l&&(l=1),o();const c=e.getBoundingClientRect(),{left:u,top:d,width:f,height:h}=c;if(s||t(),!f||!h)return;const p={rootMargin:-xr(d)+"px "+-xr(i.clientWidth-(u+f))+"px "+-xr(i.clientHeight-(d+h))+"px "+-xr(u)+"px",threshold:_r(0,yr(1,l))||1};let g=!0;function m(t){const r=t[0].intersectionRatio;if(r!==l){if(!g)return a();r?a(!1,r):n=setTimeout((()=>{a(!1,1e-7)}),1e3)}1!==r||oi(c,e.getBoundingClientRect())||a(),g=!1}try{r=new IntersectionObserver(m,{...p,root:i.ownerDocument})}catch(e){r=new IntersectionObserver(m,p)}r.observe(e)}(!0),o}(c,n):null;let f,h=-1,p=null;a&&(p=new ResizeObserver((e=>{let[r]=e;r&&r.target===c&&p&&(p.unobserve(t),cancelAnimationFrame(h),h=requestAnimationFrame((()=>{var e;null==(e=p)||e.observe(t)}))),n()})),c&&!l&&p.observe(c),p.observe(t));let g=l?Zr(e):null;return l&&function t(){const r=Zr(e);g&&!oi(g,r)&&n(),g=r,f=requestAnimationFrame(t)}(),n(),()=>{var e;u.forEach((e=>{i&&e.removeEventListener("scroll",n),o&&e.removeEventListener("resize",n)})),null==d||d(),null==(e=p)||e.disconnect(),p=null,l&&cancelAnimationFrame(f)}}const si=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(t){var n,r;const{x:i,y:o,placement:a,middlewareData:s}=t,l=await async function(e,t){const{placement:n,platform:r,elements:i}=e,o=await(null==r.isRTL?void 0:r.isRTL(i.floating)),a=lr(n),s=cr(n),l="y"===fr(n),c=["left","top"].includes(a)?-1:1,u=o&&l?-1:1,d=sr(t,e);let{mainAxis:f,crossAxis:h,alignmentAxis:p}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:d.mainAxis||0,crossAxis:d.crossAxis||0,alignmentAxis:d.alignmentAxis};return s&&"number"==typeof p&&(h="end"===s?-1*p:p),l?{x:h*u,y:f*c}:{x:f*c,y:h*u}}(t,e);return a===(null==(n=s.offset)?void 0:n.placement)&&null!=(r=s.arrow)&&r.alignmentOffset?{}:{x:i+l.x,y:o+l.y,data:{...l,placement:a}}}}},li=function(e){return void 0===e&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:i}=t,{mainAxis:o=!0,crossAxis:a=!1,limiter:s={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...l}=sr(e,t),c={x:n,y:r},u=await br(t,l),d=fr(lr(i)),f=ur(d);let h=c[f],p=c[d];if(o){const e="y"===f?"bottom":"right";h=ar(h+u["y"===f?"top":"left"],h,h-u[e])}if(a){const e="y"===d?"bottom":"right";p=ar(p+u["y"===d?"top":"left"],p,p-u[e])}const g=s.fn({...t,[f]:h,[d]:p});return{...g,data:{x:g.x-n,y:g.y-r,enabled:{[f]:o,[d]:a}}}}}},ci=function(e){return void 0===e&&(e={}),{name:"flip",options:e,async fn(t){var n,r;const{placement:i,middlewareData:o,rects:a,initialPlacement:s,platform:l,elements:c}=t,{mainAxis:u=!0,crossAxis:d=!0,fallbackPlacements:f,fallbackStrategy:h="bestFit",fallbackAxisSideDirection:p="none",flipAlignment:g=!0,...m}=sr(e,t);if(null!=(n=o.arrow)&&n.alignmentOffset)return{};const v=lr(i),b=fr(s),y=lr(s)===s,_=await(null==l.isRTL?void 0:l.isRTL(c.floating)),w=f||(y||!g?[gr(s)]:function(e){const t=gr(e);return[pr(e),t,pr(t)]}(s)),x="none"!==p;!f&&x&&w.push(...function(e,t,n,r){const i=cr(e);let o=function(e,t,n){const r=["left","right"],i=["right","left"],o=["top","bottom"],a=["bottom","top"];switch(e){case"top":case"bottom":return n?t?i:r:t?r:i;case"left":case"right":return t?o:a;default:return[]}}(lr(e),"start"===n,r);return i&&(o=o.map((e=>e+"-"+i)),t&&(o=o.concat(o.map(pr)))),o}(s,g,p,_));const k=[s,...w],C=await br(t,m),S=[];let M=(null==(r=o.flip)?void 0:r.overflows)||[];if(u&&S.push(C[v]),d){const e=function(e,t,n){void 0===n&&(n=!1);const r=cr(e),i=hr(e),o=dr(i);let a="x"===i?r===(n?"end":"start")?"right":"left":"start"===r?"bottom":"top";return t.reference[o]>t.floating[o]&&(a=gr(a)),[a,gr(a)]}(i,a,_);S.push(C[e[0]],C[e[1]])}if(M=[...M,{placement:i,overflows:S}],!S.every((e=>e<=0))){var T,A;const e=((null==(T=o.flip)?void 0:T.index)||0)+1,t=k[e];if(t)return{data:{index:e,overflows:M},reset:{placement:t}};let n=null==(A=M.filter((e=>e.overflows[0]<=0)).sort(((e,t)=>e.overflows[1]-t.overflows[1]))[0])?void 0:A.placement;if(!n)switch(h){case"bestFit":{var N;const e=null==(N=M.filter((e=>{if(x){const t=fr(e.placement);return t===b||"y"===t}return!0})).map((e=>[e.placement,e.overflows.filter((e=>e>0)).reduce(((e,t)=>e+t),0)])).sort(((e,t)=>e[1]-t[1]))[0])?void 0:N[0];e&&(n=e);break}case"initialPlacement":n=s}if(i!==n)return{reset:{placement:n}}}return{}}}},ui=(e,t,n)=>{const r=new Map,i={platform:ii,...n},o={...i.platform,_c:r};return(async(e,t,n)=>{const{placement:r="bottom",strategy:i="absolute",middleware:o=[],platform:a}=n,s=o.filter(Boolean),l=await(null==a.isRTL?void 0:a.isRTL(t));let c=await a.getElementRects({reference:e,floating:t,strategy:i}),{x:u,y:d}=vr(c,r,l),f=r,h={},p=0;for(let n=0;n<s.length;n++){const{name:o,fn:g}=s[n],{x:m,y:v,data:b,reset:y}=await g({x:u,y:d,initialPlacement:r,placement:f,strategy:i,middlewareData:h,rects:c,platform:a,elements:{reference:e,floating:t}});u=null!=m?m:u,d=null!=v?v:d,h={...h,[o]:{...h[o],...b}},y&&p<=50&&(p++,"object"==typeof y&&(y.placement&&(f=y.placement),y.rects&&(c=!0===y.rects?await a.getElementRects({reference:e,floating:t,strategy:i}):y.rects),({x:u,y:d}=vr(c,f,l))),n=-1)}return{x:u,y:d,placement:f,strategy:i,middlewareData:h}})(e,t,{...i,platform:o})},di=({children:e})=>Je("div",{className:"styles_custom-tooltip__2reCz",children:Je(Gn,{className:"tooltip-content",size:"s",bold:!0,children:e})}),fi=({tooltipText:e,tooltipTextAfterClick:t,tooltipComponent:n,children:r,placement:i="top",triggerMode:o="hover",autoHideDelay:a=600,isTriggerActive:s=!0})=>{const l=de(null),c=de(null),[u,d]=ce(!1),[f,h]=ce(e),p=de(null);ue((()=>{h(e);const t=()=>{c.current&&l.current&&ui(c.current,l.current,{placement:i,middleware:[si(6),ci(),li({padding:5})]}).then((({x:e,y:t})=>{l.current&&Object.assign(l.current.style,{left:`${e}px`,top:`${t}px`,position:"absolute","z-index":100})}))};return u&&t(),c.current&&l.current?ai(c.current,l.current,t):()=>{}}),[u,i,e]),ue((()=>()=>{p.current&&clearTimeout(p.current)}),[]);const g=n||Je(di,{children:f});return Je("div",{onMouseEnter:()=>{"hover"===o&&s&&d(!0),"click"===o&&p.current&&clearTimeout(p.current)},onMouseLeave:()=>{"hover"===o?(d(!1),h(e)):"click"===o&&u&&(p.current=window.setTimeout((()=>{d(!1)}),a))},onClick:()=>{"click"===o&&c.current&&s&&(d(!0),p.current&&clearTimeout(p.current)),t&&h(t)},children:[Je("div",{ref:c,children:r}),Je("div",{ref:l,children:u&&g})]})},hi=e=>{const{source:t,transformData:n=(e=>e),renderLoader:r=(()=>null),renderError:i=(e=>Je("div",{children:e})),renderData:o}=e;return t.value.loading?r():t.value.error?i(t.value.error):o(n(t.value.data))},pi=()=>Je("div",{className:"styles_page-loader__OFuzd",children:Je(Yn,{size:"m"})}),gi=e=>{const{placeholder:t,value:n,onChange:r,changeDebounce:i=300}=e,[o,a]=ce(n),s=((e,t=300)=>{const n=de(e);return ue((()=>{n.current=e}),[e]),he(((e,t=300)=>{let n;return(...r)=>{clearTimeout(n),n=setTimeout((()=>{e(...r)}),t)}})(((...e)=>n.current(...e)),t),[t])})(r,i),l=!!o;return Je(Gn,{className:"styles_inputWrap__96bWy",type:"ui",size:"m",tag:"div",children:[Je(Wn,{id:_n.id,size:"s",className:"styles_leadingIcon__6Bcbs"}),Je("input",{className:tt("styles_input__ir8z5",l&&"styles_inputClear__R8pU3"),type:"text",placeholder:t,onInput:e=>{const t=e.target.value;a(t),s(t)},value:o,name:"search",autocomplete:"off","data-testid":"search-input"}),l&&Je("div",{className:"styles_clearButton__SR4Dg",children:Je(er,{size:"s",icon:xn.id,onClick:e=>{e.preventDefault(),e.stopPropagation(),a(""),s("")},style:"ghost","data-testid":"clear-button"})})]})};var mi={menu:"styles_menu__Y2xWi","size-s":"styles_size-s__phegq","size-m":"styles_size-m__FqoGi","size-l":"styles_size-l__ShSlS","size-xl":"styles_size-xl__Mk5k2",menuListItem:"styles_menuListItem__FHex0",section:"styles_section__gV07b",menuItem:"styles_menuItem__mOGZq",interactive:"styles_interactive__VHNnJ",leadingIcon:"styles_leadingIcon__0ikkr",content:"styles_content__XpstT",right:"styles_right__9xwiq",checkmarkIcon:"styles_checkmarkIcon__SnS-7"};const vi=G(null),bi=e=>{const{children:t,menuTrigger:n,menuTriggerWrapper:r="div",size:i="m",isInitialOpened:o=!1,placement:a="bottom-end"}=e,[s,l]=ce(o),c=de(null),u=de(null);return ue((()=>{const e=e=>{"Escape"===e.key&&s&&l(!1)};return document.addEventListener("keydown",e),()=>{document.removeEventListener("keydown",e)}}),[s]),ue((()=>{const e=e=>{s&&c.current&&(c.current.contains(e.target)||l(!1))};return s&&document.addEventListener("click",e),()=>{document.removeEventListener("click",e)}}),[s]),ue((()=>{const e=()=>{(c.current||u.current)&&ui(u.current,c.current,{placement:a,middleware:[si(6),ci(),li({padding:5})]}).then((({x:e,y:t})=>{c.current&&Object.assign(c.current.style,{left:`${e}px`,top:`${t}px`,position:"absolute","z-index":10})}))};return e(),ai(u.current,c.current,e)}),[c.current,u.current]),Je(vi.Provider,{value:{setIsOpened:l},children:Je(T,{children:["function"==typeof n&&Je(r,{ref:u,children:n({isOpened:s,onClick:()=>{l(!s)},setIsOpened:l})}),Je("div",{ref:c,children:s&&Je("aside",{className:tt(mi.menu,mi[`size-${i}`]),children:t})})]})})};bi.Section=e=>Je("ul",{className:mi.section,children:e.children}),bi.Item=e=>{const{setIsOpened:t}=(()=>{const e=pe(vi);if(!e)throw new Error("useMenuContext must be used within a Menu");return e})(),{children:n,onClick:r,leadingIcon:i,rightSlot:o,ariaLabel:a,closeMenuOnClick:s=!0}=e,l="function"==typeof r,c="string"==typeof i;return Je("li",{className:mi.menuListItem,children:Je(Gn,{"aria-label":a,type:"paragraph",size:"m",tag:l?"button":"div",className:tt(mi.menuItem,l&&mi.interactive),onClick:e=>{l&&s&&(e.stopPropagation(),t(!1)),l&&r?.()},"data-interactive-menu-item":!!l||void 0,children:[c&&Je(Wn,{id:i,className:mi.leadingIcon,size:"m"}),Je("div",{className:mi.content,children:n}),o&&Je("div",{className:mi.right,children:o})]})})},bi.ItemWithCheckmark=e=>{const{isChecked:t=!1,...n}=e;return Je(bi.Item,{...n,rightSlot:t&&Je(Wn,{className:mi.checkmarkIcon,id:dn.id})})};var yi="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function _i(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var wi,xi,ki,Ci={exports:{}},Si=(wi||(wi=1,xi=Ci,ki=function(e){var t=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,n=0,r={},i={manual:e.Prism&&e.Prism.manual,disableWorkerMessageHandler:e.Prism&&e.Prism.disableWorkerMessageHandler,util:{encode:function e(t){return t instanceof o?new o(t.type,e(t.content),t.alias):Array.isArray(t)?t.map(e):t.replace(/&/g,"&").replace(/</g,"<").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).slice(8,-1)},objId:function(e){return e.__id||Object.defineProperty(e,"__id",{value:++n}),e.__id},clone:function e(t,n){var r,o;switch(n=n||{},i.util.type(t)){case"Object":if(o=i.util.objId(t),n[o])return n[o];for(var a in r={},n[o]=r,t)t.hasOwnProperty(a)&&(r[a]=e(t[a],n));return r;case"Array":return o=i.util.objId(t),n[o]?n[o]:(r=[],n[o]=r,t.forEach((function(t,i){r[i]=e(t,n)})),r);default:return t}},getLanguage:function(e){for(;e;){var n=t.exec(e.className);if(n)return n[1].toLowerCase();e=e.parentElement}return"none"},setLanguage:function(e,n){e.className=e.className.replace(RegExp(t,"gi"),""),e.classList.add("language-"+n)},currentScript:function(){if("undefined"==typeof document)return null;if("currentScript"in document)return document.currentScript;try{throw new Error}catch(r){var e=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(r.stack)||[])[1];if(e){var t=document.getElementsByTagName("script");for(var n in t)if(t[n].src==e)return t[n]}return null}},isActive:function(e,t,n){for(var r="no-"+t;e;){var i=e.classList;if(i.contains(t))return!0;if(i.contains(r))return!1;e=e.parentElement}return!!n}},languages:{plain:r,plaintext:r,text:r,txt:r,extend:function(e,t){var n=i.util.clone(i.languages[e]);for(var r in t)n[r]=t[r];return n},insertBefore:function(e,t,n,r){var o=(r=r||i.languages)[e],a={};for(var s in o)if(o.hasOwnProperty(s)){if(s==t)for(var l in n)n.hasOwnProperty(l)&&(a[l]=n[l]);n.hasOwnProperty(s)||(a[s]=o[s])}var c=r[e];return r[e]=a,i.languages.DFS(i.languages,(function(t,n){n===c&&t!=e&&(this[t]=a)})),a},DFS:function e(t,n,r,o){o=o||{};var a=i.util.objId;for(var s in t)if(t.hasOwnProperty(s)){n.call(t,s,t[s],r||s);var l=t[s],c=i.util.type(l);"Object"!==c||o[a(l)]?"Array"!==c||o[a(l)]||(o[a(l)]=!0,e(l,n,s,o)):(o[a(l)]=!0,e(l,n,null,o))}}},plugins:{},highlightAll:function(e,t){i.highlightAllUnder(document,e,t)},highlightAllUnder:function(e,t,n){var r={callback:n,container:e,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};i.hooks.run("before-highlightall",r),r.elements=Array.prototype.slice.apply(r.container.querySelectorAll(r.selector)),i.hooks.run("before-all-elements-highlight",r);for(var o,a=0;o=r.elements[a++];)i.highlightElement(o,!0===t,r.callback)},highlightElement:function(t,n,r){var o=i.util.getLanguage(t),a=i.languages[o];i.util.setLanguage(t,o);var s=t.parentElement;s&&"pre"===s.nodeName.toLowerCase()&&i.util.setLanguage(s,o);var l={element:t,language:o,grammar:a,code:t.textContent};function c(e){l.highlightedCode=e,i.hooks.run("before-insert",l),l.element.innerHTML=l.highlightedCode,i.hooks.run("after-highlight",l),i.hooks.run("complete",l),r&&r.call(l.element)}if(i.hooks.run("before-sanity-check",l),(s=l.element.parentElement)&&"pre"===s.nodeName.toLowerCase()&&!s.hasAttribute("tabindex")&&s.setAttribute("tabindex","0"),!l.code)return i.hooks.run("complete",l),void(r&&r.call(l.element));if(i.hooks.run("before-highlight",l),l.grammar)if(n&&e.Worker){var u=new Worker(i.filename);u.onmessage=function(e){c(e.data)},u.postMessage(JSON.stringify({language:l.language,code:l.code,immediateClose:!0}))}else c(i.highlight(l.code,l.grammar,l.language));else c(i.util.encode(l.code))},highlight:function(e,t,n){var r={code:e,grammar:t,language:n};if(i.hooks.run("before-tokenize",r),!r.grammar)throw new Error('The language "'+r.language+'" has no grammar.');return r.tokens=i.tokenize(r.code,r.grammar),i.hooks.run("after-tokenize",r),o.stringify(i.util.encode(r.tokens),r.language)},tokenize:function(e,t){var n=t.rest;if(n){for(var r in n)t[r]=n[r];delete t.rest}var i=new l;return c(i,i.head,e),s(e,i,t,i.head,0),function(e){for(var t=[],n=e.head.next;n!==e.tail;)t.push(n.value),n=n.next;return t}(i)},hooks:{all:{},add:function(e,t){var n=i.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=i.hooks.all[e];if(n&&n.length)for(var r,o=0;r=n[o++];)r(t)}},Token:o};function o(e,t,n,r){this.type=e,this.content=t,this.alias=n,this.length=0|(r||"").length}function a(e,t,n,r){e.lastIndex=t;var i=e.exec(n);if(i&&r&&i[1]){var o=i[1].length;i.index+=o,i[0]=i[0].slice(o)}return i}function s(e,t,n,r,l,d){for(var f in n)if(n.hasOwnProperty(f)&&n[f]){var h=n[f];h=Array.isArray(h)?h:[h];for(var p=0;p<h.length;++p){if(d&&d.cause==f+","+p)return;var g=h[p],m=g.inside,v=!!g.lookbehind,b=!!g.greedy,y=g.alias;if(b&&!g.pattern.global){var _=g.pattern.toString().match(/[imsuy]*$/)[0];g.pattern=RegExp(g.pattern.source,_+"g")}for(var w=g.pattern||g,x=r.next,k=l;x!==t.tail&&!(d&&k>=d.reach);k+=x.value.length,x=x.next){var C=x.value;if(t.length>e.length)return;if(!(C instanceof o)){var S,M=1;if(b){if(!(S=a(w,k,e,v))||S.index>=e.length)break;var T=S.index,A=S.index+S[0].length,N=k;for(N+=x.value.length;T>=N;)N+=(x=x.next).value.length;if(k=N-=x.value.length,x.value instanceof o)continue;for(var O=x;O!==t.tail&&(N<A||"string"==typeof O.value);O=O.next)M++,N+=O.value.length;M--,C=e.slice(k,N),S.index-=k}else if(!(S=a(w,0,C,v)))continue;T=S.index;var P=S[0],L=C.slice(0,T),E=C.slice(T+P.length),F=k+C.length;d&&F>d.reach&&(d.reach=F);var j=x.prev;if(L&&(j=c(t,j,L),k+=L.length),u(t,j,M),x=c(t,j,new o(f,m?i.tokenize(P,m):P,y,P)),E&&c(t,x,E),M>1){var z={cause:f+","+p,reach:F};s(e,t,n,x.prev,k,z),d&&z.reach>d.reach&&(d.reach=z.reach)}}}}}}function l(){var e={value:null,prev:null,next:null},t={value:null,prev:e,next:null};e.next=t,this.head=e,this.tail=t,this.length=0}function c(e,t,n){var r=t.next,i={value:n,prev:t,next:r};return t.next=i,r.prev=i,e.length++,i}function u(e,t,n){for(var r=t.next,i=0;i<n&&r!==e.tail;i++)r=r.next;t.next=r,r.prev=t,e.length-=i}if(e.Prism=i,o.stringify=function e(t,n){if("string"==typeof t)return t;if(Array.isArray(t)){var r="";return t.forEach((function(t){r+=e(t,n)})),r}var o={type:t.type,content:e(t.content,n),tag:"span",classes:["token",t.type],attributes:{},language:n},a=t.alias;a&&(Array.isArray(a)?Array.prototype.push.apply(o.classes,a):o.classes.push(a)),i.hooks.run("wrap",o);var s="";for(var l in o.attributes)s+=" "+l+'="'+(o.attributes[l]||"").replace(/"/g,""")+'"';return"<"+o.tag+' class="'+o.classes.join(" ")+'"'+s+">"+o.content+"</"+o.tag+">"},!e.document)return e.addEventListener?(i.disableWorkerMessageHandler||e.addEventListener("message",(function(t){var n=JSON.parse(t.data),r=n.language,o=n.code,a=n.immediateClose;e.postMessage(i.highlight(o,i.languages[r],r)),a&&e.close()}),!1),i):i;var d=i.util.currentScript();function f(){i.manual||i.highlightAll()}if(d&&(i.filename=d.src,d.hasAttribute("data-manual")&&(i.manual=!0)),!i.manual){var h=document.readyState;"loading"===h||"interactive"===h&&d&&d.defer?document.addEventListener("DOMContentLoaded",f):window.requestAnimationFrame?window.requestAnimationFrame(f):window.setTimeout(f,16)}return i}("undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{}),xi.exports&&(xi.exports=ki),void 0!==yi&&(yi.Prism=ki),ki.languages.markup={comment:{pattern:/<!--(?:(?!<!--)[\s\S])*?-->/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},{pattern:/^(\s*)["']|["']$/,lookbehind:!0}]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},ki.languages.markup.tag.inside["attr-value"].inside.entity=ki.languages.markup.entity,ki.languages.markup.doctype.inside["internal-subset"].inside=ki.languages.markup,ki.hooks.add("wrap",(function(e){"entity"===e.type&&(e.attributes.title=e.content.replace(/&/,"&"))})),Object.defineProperty(ki.languages.markup.tag,"addInlined",{value:function(e,t){var n={};n["language-"+t]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:ki.languages[t]},n.cdata=/^<!\[CDATA\[|\]\]>$/i;var r={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:n}};r["language-"+t]={pattern:/[\s\S]+/,inside:ki.languages[t]};var i={};i[e]={pattern:RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g,(function(){return e})),"i"),lookbehind:!0,greedy:!0,inside:r},ki.languages.insertBefore("markup","cdata",i)}}),Object.defineProperty(ki.languages.markup.tag,"addAttribute",{value:function(e,t){ki.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+e+")"+/\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,"i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[t,"language-"+t],inside:ki.languages[t]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),ki.languages.html=ki.languages.markup,ki.languages.mathml=ki.languages.markup,ki.languages.svg=ki.languages.markup,ki.languages.xml=ki.languages.extend("markup",{}),ki.languages.ssml=ki.languages.xml,ki.languages.atom=ki.languages.xml,ki.languages.rss=ki.languages.xml,function(e){var t=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:RegExp("@[\\w-](?:"+/[^;{\s"']|\s+(?!\s)/.source+"|"+t.source+")*?"+/(?:;|(?=\s*\{))/.source),inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+t.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+t.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+t.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:t,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var n=e.languages.markup;n&&(n.tag.addInlined("style","css"),n.tag.addAttribute("style","css"))}(ki),ki.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/},ki.languages.javascript=ki.languages.extend("clike",{"class-name":[ki.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(/(^|[^\w$])/.source+"(?:"+/NaN|Infinity/.source+"|"+/0[bB][01]+(?:_[01]+)*n?/.source+"|"+/0[oO][0-7]+(?:_[0-7]+)*n?/.source+"|"+/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source+"|"+/\d+(?:_\d+)*n/.source+"|"+/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source+")"+/(?![\w$])/.source),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),ki.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,ki.languages.insertBefore("javascript","keyword",{regex:{pattern:RegExp(/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)/.source+/\//.source+"(?:"+/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}/.source+"|"+/(?:\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.|\[(?:[^[\]\\\r\n]|\\.)*\])*\])*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}v[dgimyus]{0,7}/.source+")"+/(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/.source),lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:ki.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:ki.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:ki.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:ki.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:ki.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),ki.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:ki.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),ki.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),ki.languages.markup&&(ki.languages.markup.tag.addInlined("script","javascript"),ki.languages.markup.tag.addAttribute(/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,"javascript")),ki.languages.js=ki.languages.javascript,function(){if(void 0!==ki&&"undefined"!=typeof document){Element.prototype.matches||(Element.prototype.matches=Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector);var e={js:"javascript",py:"python",rb:"ruby",ps1:"powershell",psm1:"powershell",sh:"bash",bat:"batch",h:"c",tex:"latex"},t="data-src-status",n="loading",r="loaded",i="pre[data-src]:not(["+t+'="'+r+'"]):not(['+t+'="'+n+'"])';ki.hooks.add("before-highlightall",(function(e){e.selector+=", "+i})),ki.hooks.add("before-sanity-check",(function(o){var a=o.element;if(a.matches(i)){o.code="",a.setAttribute(t,n);var s=a.appendChild(document.createElement("CODE"));s.textContent="Loading…";var l=a.getAttribute("data-src"),c=o.language;if("none"===c){var u=(/\.(\w+)$/.exec(l)||[,"none"])[1];c=e[u]||u}ki.util.setLanguage(s,c),ki.util.setLanguage(a,c);var d=ki.plugins.autoloader;d&&d.loadLanguages(c),function(e,t,n){var r=new XMLHttpRequest;r.open("GET",e,!0),r.onreadystatechange=function(){4==r.readyState&&(r.status<400&&r.responseText?t(r.responseText):r.status>=400?n("✖ Error "+r.status+" while fetching file: "+r.statusText):n("✖ Error: File does not exist or is empty"))},r.send(null)}(l,(function(e){a.setAttribute(t,r);var n=function(e){var t=/^\s*(\d+)\s*(?:(,)\s*(?:(\d+)\s*)?)?$/.exec(e||"");if(t){var n=Number(t[1]),r=t[2],i=t[3];return r?i?[n,Number(i)]:[n,void 0]:[n,n]}}(a.getAttribute("data-range"));if(n){var i=e.split(/\r\n?|\n/g),o=n[0],l=null==n[1]?i.length:n[1];o<0&&(o+=i.length),o=Math.max(0,Math.min(o-1,i.length)),l<0&&(l+=i.length),l=Math.max(0,Math.min(l,i.length)),e=i.slice(o,l).join("\n"),a.hasAttribute("data-start")||a.setAttribute("data-start",String(o+1))}s.textContent=e,ki.highlightElement(s)}),(function(e){a.setAttribute(t,"failed"),s.textContent=e}))}})),ki.plugins.fileHighlight={highlight:function(e){for(var t,n=(e||document).querySelectorAll(i),r=0;t=n[r++];)ki.highlightElement(t)}};var o=!1;ki.fileHighlight=function(){o||(console.warn("Prism.fileHighlight is deprecated. Use `Prism.plugins.fileHighlight.highlight` instead."),o=!0),ki.plugins.fileHighlight.highlight.apply(this,arguments)}}}()),Ci.exports);_i(Si);const Mi=new Set(["failed","broken"]),Ti=new Set(["passed"]),Ai=new Set([...Mi,...Ti]),Ni=e=>{const t=new Set(e);return e=>t.has(e.status)};Ni(Ti),Ni(Mi),Ni(Ai);const{solidAlertCircle:Oi,solidCheckCircle:Pi,solidHelpCircle:Li,solidMinusCircle:Ei,solidXCircle:Fi}=Vn;var ji={counter:"styles_counter__chRZ-","status-passed":"styles_status-passed__fOOfy","status-failed":"styles_status-failed__CIBqD","status-broken":"styles_status-broken__caix7","status-skipped":"styles_status-skipped__FrjS4","status-unknown":"styles_status-unknown__wxCbv","size-s":"styles_size-s__MzJcz","size-m":"styles_size-m__zaoMz","size-l":"styles_size-l__foUrC"};const zi=e=>{const{count:t,size:n="s",truncateCount:r=!1,status:i}=e,o=r&&t>99?"99+":t;return Je(Gn,{tag:"small",size:"l"===n?"m":"s",type:"ui",bold:!0,className:tt(ji.counter,ji[`size-${n}`],i&&ji[`status-${i}`]),children:o})},$i=e=>{const{value:t,label:n,onChange:r,focusable:i=!0,...o}=e;return Je("input",{...o,tabIndex:i?0:-1,className:"styles_toggle__aBRpI",role:"switch",type:"checkbox",checked:t,"aria-label":n,onToggle:e=>{const t=!e.target.checked;r(t)}})},Bi=e=>{const{children:t,onClick:n,href:r}=e;return Je(void 0===r?"button":"a",{href:r,onClick:n,className:"styles_link__BC-2O",children:t})};var Ri,Di,Ii,Ui,Hi,qi={exports:{}};var Vi=_i((Hi||(Hi=1,qi.exports=function(){if(Ui)return Ii;Ui=1;var e=Di?Ri:(Di=1,Ri="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");function t(){}function n(){}return n.resetWarningCache=t,Ii=function(){function r(t,n,r,i,o,a){if(a!==e){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function i(){return r}r.isRequired=r;var o={array:r,bigint:r,bool:r,func:r,number:r,object:r,string:r,symbol:r,any:r,arrayOf:i,element:r,elementType:r,instanceOf:i,node:r,objectOf:i,oneOf:i,oneOfType:i,shape:i,exact:i,checkPropTypes:n,resetWarningCache:t};return o.PropTypes=o,o}}()()),qi.exports)),Wi=lo(),Yi=e=>io(e,Wi),Gi=lo();Yi.write=e=>io(e,Gi);var Zi=lo();Yi.onStart=e=>io(e,Zi);var Xi=lo();Yi.onFrame=e=>io(e,Xi);var Ki=lo();Yi.onFinish=e=>io(e,Ki);var Qi=[];Yi.setTimeout=(e,t)=>{const n=Yi.now()+t,r=()=>{const e=Qi.findIndex((e=>e.cancel==r));~e&&Qi.splice(e,1),no-=~e?1:0},i={time:n,handler:e,cancel:r};return Qi.splice(Ji(n),0,i),no+=1,oo(),i};var Ji=e=>~(~Qi.findIndex((t=>t.time>e))||~Qi.length);Yi.cancel=e=>{Zi.delete(e),Xi.delete(e),Ki.delete(e),Wi.delete(e),Gi.delete(e)},Yi.sync=e=>{ro=!0,Yi.batchedUpdates(e),ro=!1},Yi.throttle=e=>{let t;function n(){try{e(...t)}finally{t=null}}function r(...e){t=e,Yi.onStart(n)}return r.handler=e,r.cancel=()=>{Zi.delete(n),t=null},r};var eo="undefined"!=typeof window?window.requestAnimationFrame:()=>{};Yi.use=e=>eo=e,Yi.now="undefined"!=typeof performance?()=>performance.now():Date.now,Yi.batchedUpdates=e=>e(),Yi.catch=console.error,Yi.frameLoop="always",Yi.advance=()=>{"demand"!==Yi.frameLoop?console.warn("Cannot call the manual advancement of rafz whilst frameLoop is not set as demand"):so()};var to=-1,no=0,ro=!1;function io(e,t){ro?(t.delete(e),e(0)):(t.add(e),oo())}function oo(){to<0&&(to=0,"demand"!==Yi.frameLoop&&eo(ao))}function ao(){~to&&(eo(ao),Yi.batchedUpdates(so))}function so(){const e=to;to=Yi.now();const t=Ji(to);t&&(co(Qi.splice(0,t),(e=>e.handler())),no-=t),no?(Zi.flush(),Wi.flush(e?Math.min(64,to-e):16.667),Xi.flush(),Gi.flush(),Ki.flush()):to=-1}function lo(){let e=new Set,t=e;return{add(n){no+=t!=e||e.has(n)?0:1,e.add(n)},delete:n=>(no-=t==e&&e.has(n)?1:0,e.delete(n)),flush(n){t.size&&(e=new Set,no-=t.size,co(t,(t=>t(n)&&e.add(t))),no+=e.size,t=e)}}}function co(e,t){e.forEach((e=>{try{t(e)}catch(e){Yi.catch(e)}}))}var uo=Object.defineProperty,fo={};function ho(){}((e,t)=>{for(var n in t)uo(e,n,{get:t[n],enumerable:!0})})(fo,{assign:()=>To,colors:()=>Co,createStringInterpolator:()=>_o,skipAnimation:()=>So,to:()=>wo,willAdvance:()=>Mo});var po={arr:Array.isArray,obj:e=>!!e&&"Object"===e.constructor.name,fun:e=>"function"==typeof e,str:e=>"string"==typeof e,num:e=>"number"==typeof e,und:e=>void 0===e};function go(e,t){if(po.arr(e)){if(!po.arr(t)||e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}return e===t}var mo=(e,t)=>e.forEach(t);function vo(e,t,n){if(po.arr(e))for(let r=0;r<e.length;r++)t.call(n,e[r],`${r}`);else for(const r in e)e.hasOwnProperty(r)&&t.call(n,e[r],r)}var bo=e=>po.und(e)?[]:po.arr(e)?e:[e];function yo(e,t){if(e.size){const n=Array.from(e);e.clear(),mo(n,t)}}var _o,wo,xo=(e,...t)=>yo(e,(e=>e(...t))),ko=()=>"undefined"==typeof window||!window.navigator||/ServerSideRendering|^Deno\//.test(window.navigator.userAgent),Co=null,So=!1,Mo=ho,To=e=>{e.to&&(wo=e.to),e.now&&(Yi.now=e.now),void 0!==e.colors&&(Co=e.colors),null!=e.skipAnimation&&(So=e.skipAnimation),e.createStringInterpolator&&(_o=e.createStringInterpolator),e.requestAnimationFrame&&Yi.use(e.requestAnimationFrame),e.batchedUpdates&&(Yi.batchedUpdates=e.batchedUpdates),e.willAdvance&&(Mo=e.willAdvance),e.frameLoop&&(Yi.frameLoop=e.frameLoop)},Ao=new Set,No=[],Oo=[],Po=0,Lo={get idle(){return!Ao.size&&!No.length},start(e){Po>e.priority?(Ao.add(e),Yi.onStart(Eo)):(Fo(e),Yi(zo))},advance:zo,sort(e){if(Po)Yi.onFrame((()=>Lo.sort(e)));else{const t=No.indexOf(e);~t&&(No.splice(t,1),jo(e))}},clear(){No=[],Ao.clear()}};function Eo(){Ao.forEach(Fo),Ao.clear(),Yi(zo)}function Fo(e){No.includes(e)||jo(e)}function jo(e){No.splice(function(e,t){const n=e.findIndex(t);return n<0?e.length:n}(No,(t=>t.priority>e.priority)),0,e)}function zo(e){const t=Oo;for(let n=0;n<No.length;n++){const r=No[n];Po=r.priority,r.idle||(Mo(r),r.advance(e),r.idle||t.push(r))}return Po=0,(Oo=No).length=0,(No=t).length>0}var $o="[-+]?\\d*\\.?\\d+",Bo=$o+"%";function Ro(...e){return"\\(\\s*("+e.join(")\\s*,\\s*(")+")\\s*\\)"}var Do=new RegExp("rgb"+Ro($o,$o,$o)),Io=new RegExp("rgba"+Ro($o,$o,$o,$o)),Uo=new RegExp("hsl"+Ro($o,Bo,Bo)),Ho=new RegExp("hsla"+Ro($o,Bo,Bo,$o)),qo=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,Vo=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,Wo=/^#([0-9a-fA-F]{6})$/,Yo=/^#([0-9a-fA-F]{8})$/;function Go(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function Zo(e,t,n){const r=n<.5?n*(1+t):n+t-n*t,i=2*n-r,o=Go(i,r,e+1/3),a=Go(i,r,e),s=Go(i,r,e-1/3);return Math.round(255*o)<<24|Math.round(255*a)<<16|Math.round(255*s)<<8}function Xo(e){const t=parseInt(e,10);return t<0?0:t>255?255:t}function Ko(e){return(parseFloat(e)%360+360)%360/360}function Qo(e){const t=parseFloat(e);return t<0?0:t>1?255:Math.round(255*t)}function Jo(e){const t=parseFloat(e);return t<0?0:t>100?1:t/100}function ea(e){let t=function(e){let t;return"number"==typeof e?e>>>0===e&&e>=0&&e<=4294967295?e:null:(t=Wo.exec(e))?parseInt(t[1]+"ff",16)>>>0:Co&&void 0!==Co[e]?Co[e]:(t=Do.exec(e))?(Xo(t[1])<<24|Xo(t[2])<<16|Xo(t[3])<<8|255)>>>0:(t=Io.exec(e))?(Xo(t[1])<<24|Xo(t[2])<<16|Xo(t[3])<<8|Qo(t[4]))>>>0:(t=qo.exec(e))?parseInt(t[1]+t[1]+t[2]+t[2]+t[3]+t[3]+"ff",16)>>>0:(t=Yo.exec(e))?parseInt(t[1],16)>>>0:(t=Vo.exec(e))?parseInt(t[1]+t[1]+t[2]+t[2]+t[3]+t[3]+t[4]+t[4],16)>>>0:(t=Uo.exec(e))?(255|Zo(Ko(t[1]),Jo(t[2]),Jo(t[3])))>>>0:(t=Ho.exec(e))?(Zo(Ko(t[1]),Jo(t[2]),Jo(t[3]))|Qo(t[4]))>>>0:null}(e);return null===t?e:(t=t||0,`rgba(${(4278190080&t)>>>24}, ${(16711680&t)>>>16}, ${(65280&t)>>>8}, ${(255&t)/255})`)}var ta=(e,t,n)=>{if(po.fun(e))return e;if(po.arr(e))return ta({range:e,output:t,extrapolate:n});if(po.str(e.output[0]))return _o(e);const r=e,i=r.output,o=r.range||[0,1],a=r.extrapolateLeft||r.extrapolate||"extend",s=r.extrapolateRight||r.extrapolate||"extend",l=r.easing||(e=>e);return e=>{const t=function(e,t){for(var n=1;n<t.length-1&&!(t[n]>=e);++n);return n-1}(e,o);return function(e,t,n,r,i,o,a,s,l){let c=l?l(e):e;if(c<t){if("identity"===a)return c;"clamp"===a&&(c=t)}if(c>n){if("identity"===s)return c;"clamp"===s&&(c=n)}return r===i?r:t===n?e<=t?r:i:(t===-1/0?c=-c:n===1/0?c-=t:c=(c-t)/(n-t),c=o(c),r===-1/0?c=-c:i===1/0?c+=r:c=c*(i-r)+r,c)}(e,o[t],o[t+1],i[t],i[t+1],l,a,s,r.map)}},na=1.70158,ra=1.525*na,ia=na+1,oa=2*Math.PI/3,aa=2*Math.PI/4.5,sa=e=>{const t=7.5625,n=2.75;return e<1/n?t*e*e:e<2/n?t*(e-=1.5/n)*e+.75:e<2.5/n?t*(e-=2.25/n)*e+.9375:t*(e-=2.625/n)*e+.984375},la={linear:e=>e,easeInQuad:e=>e*e,easeOutQuad:e=>1-(1-e)*(1-e),easeInOutQuad:e=>e<.5?2*e*e:1-Math.pow(-2*e+2,2)/2,easeInCubic:e=>e*e*e,easeOutCubic:e=>1-Math.pow(1-e,3),easeInOutCubic:e=>e<.5?4*e*e*e:1-Math.pow(-2*e+2,3)/2,easeInQuart:e=>e*e*e*e,easeOutQuart:e=>1-Math.pow(1-e,4),easeInOutQuart:e=>e<.5?8*e*e*e*e:1-Math.pow(-2*e+2,4)/2,easeInQuint:e=>e*e*e*e*e,easeOutQuint:e=>1-Math.pow(1-e,5),easeInOutQuint:e=>e<.5?16*e*e*e*e*e:1-Math.pow(-2*e+2,5)/2,easeInSine:e=>1-Math.cos(e*Math.PI/2),easeOutSine:e=>Math.sin(e*Math.PI/2),easeInOutSine:e=>-(Math.cos(Math.PI*e)-1)/2,easeInExpo:e=>0===e?0:Math.pow(2,10*e-10),easeOutExpo:e=>1===e?1:1-Math.pow(2,-10*e),easeInOutExpo:e=>0===e?0:1===e?1:e<.5?Math.pow(2,20*e-10)/2:(2-Math.pow(2,-20*e+10))/2,easeInCirc:e=>1-Math.sqrt(1-Math.pow(e,2)),easeOutCirc:e=>Math.sqrt(1-Math.pow(e-1,2)),easeInOutCirc:e=>e<.5?(1-Math.sqrt(1-Math.pow(2*e,2)))/2:(Math.sqrt(1-Math.pow(-2*e+2,2))+1)/2,easeInBack:e=>ia*e*e*e-na*e*e,easeOutBack:e=>1+ia*Math.pow(e-1,3)+na*Math.pow(e-1,2),easeInOutBack:e=>e<.5?Math.pow(2*e,2)*(7.189819*e-ra)/2:(Math.pow(2*e-2,2)*((ra+1)*(2*e-2)+ra)+2)/2,easeInElastic:e=>0===e?0:1===e?1:-Math.pow(2,10*e-10)*Math.sin((10*e-10.75)*oa),easeOutElastic:e=>0===e?0:1===e?1:Math.pow(2,-10*e)*Math.sin((10*e-.75)*oa)+1,easeInOutElastic:e=>0===e?0:1===e?1:e<.5?-Math.pow(2,20*e-10)*Math.sin((20*e-11.125)*aa)/2:Math.pow(2,-20*e+10)*Math.sin((20*e-11.125)*aa)/2+1,easeInBounce:e=>1-sa(1-e),easeOutBounce:sa,easeInOutBounce:e=>e<.5?(1-sa(1-2*e))/2:(1+sa(2*e-1))/2,steps:(e,t="end")=>n=>{const r=(n="end"===t?Math.min(n,.999):Math.max(n,.001))*e;return((e,t,n)=>Math.min(Math.max(n,0),1))(0,0,("end"===t?Math.floor(r):Math.ceil(r))/e)}},ca=Symbol.for("FluidValue.get"),ua=Symbol.for("FluidValue.observers"),da=e=>Boolean(e&&e[ca]),fa=e=>e&&e[ca]?e[ca]():e,ha=e=>e[ua]||null;function pa(e,t){const n=e[ua];n&&n.forEach((e=>{!function(e,t){e.eventObserved?e.eventObserved(t):e(t)}(e,t)}))}var ga=class{constructor(e){if(!e&&!(e=this.get))throw Error("Unknown getter");ma(this,e)}},ma=(e,t)=>_a(e,ca,t);function va(e,t){if(e[ca]){let n=e[ua];n||_a(e,ua,n=new Set),n.has(t)||(n.add(t),e.observerAdded&&e.observerAdded(n.size,t))}return t}function ba(e,t){const n=e[ua];if(n&&n.has(t)){const r=n.size-1;r?n.delete(t):e[ua]=null,e.observerRemoved&&e.observerRemoved(r,t)}}var ya,_a=(e,t,n)=>Object.defineProperty(e,t,{value:n,writable:!0,configurable:!0}),wa=/[+\-]?(?:0|[1-9]\d*)(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,xa=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\((-?\d+%?[,\s]+){2,3}\s*[\d\.]+%?\))/gi,ka=new RegExp(`(${wa.source})(%|[a-z]+)`,"i"),Ca=/rgba\(([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+), ([0-9\.-]+)\)/gi,Sa=/var\((--[a-zA-Z0-9-_]+),? ?([a-zA-Z0-9 ()%#.,-]+)?\)/,Ma=e=>{const[t,n]=Ta(e);if(!t||ko())return e;const r=window.getComputedStyle(document.documentElement).getPropertyValue(t);return r?r.trim():n&&n.startsWith("--")?window.getComputedStyle(document.documentElement).getPropertyValue(n)||e:n&&Sa.test(n)?Ma(n):n||e},Ta=e=>{const t=Sa.exec(e);if(!t)return[,];const[,n,r]=t;return[n,r]},Aa=(e,t,n,r,i)=>`rgba(${Math.round(t)}, ${Math.round(n)}, ${Math.round(r)}, ${i})`,Na=e=>{ya||(ya=Co?new RegExp(`(${Object.keys(Co).join("|")})(?!\\w)`,"g"):/^\b$/);const t=e.output.map((e=>fa(e).replace(Sa,Ma).replace(xa,ea).replace(ya,ea))),n=t.map((e=>e.match(wa).map(Number))),r=n[0].map(((e,t)=>n.map((e=>{if(!(t in e))throw Error('The arity of each "output" value must be equal');return e[t]})))),i=r.map((t=>ta({...e,output:t})));return e=>{const n=!ka.test(t[0])&&t.find((e=>ka.test(e)))?.replace(wa,"");let r=0;return t[0].replace(wa,(()=>`${i[r++](e)}${n||""}`)).replace(Ca,Aa)}},Oa="react-spring: ",Pa=e=>{const t=e;let n=!1;if("function"!=typeof t)throw new TypeError(`${Oa}once requires a function parameter`);return(...e)=>{n||(t(...e),n=!0)}},La=Pa(console.warn),Ea=Pa(console.warn);function Fa(e){return po.str(e)&&("#"==e[0]||/\d/.test(e)||!ko()&&Sa.test(e)||e in(Co||{}))}var ja=ko()?ue:function(e,t){var n=le(Z++,4);!te.__s&&_e(n.__H,t)&&(n.__=e,n.i=t,X.__h.push(n))};function za(){const e=ce()[1],t=(()=>{const e=de(!1);return ja((()=>(e.current=!0,()=>{e.current=!1})),[]),e})();return()=>{t.current&&e(Math.random())}}var $a=e=>ue(e,Ba),Ba=[];function Ra(e){const t=de();return ue((()=>{t.current=e})),t.current}var Da=Symbol.for("Animated:node"),Ia=e=>e&&e[Da],Ua=(e,t)=>{return n=e,r=Da,i=t,Object.defineProperty(n,r,{value:i,writable:!0,configurable:!0});var n,r,i},Ha=e=>e&&e[Da]&&e[Da].getPayload(),qa=class{constructor(){Ua(this,this)}getPayload(){return this.payload||[]}},Va=class extends qa{constructor(e){super(),this._value=e,this.done=!0,this.durationProgress=0,po.num(this._value)&&(this.lastPosition=this._value)}static create(e){return new Va(e)}getPayload(){return[this]}getValue(){return this._value}setValue(e,t){return po.num(e)&&(this.lastPosition=e,t&&(e=Math.round(e/t)*t,this.done&&(this.lastPosition=e))),this._value!==e&&(this._value=e,!0)}reset(){const{done:e}=this;this.done=!1,po.num(this._value)&&(this.elapsedTime=0,this.durationProgress=0,this.lastPosition=this._value,e&&(this.lastVelocity=null),this.v0=null)}},Wa=class extends Va{constructor(e){super(0),this._string=null,this._toString=ta({output:[e,e]})}static create(e){return new Wa(e)}getValue(){const e=this._string;return null==e?this._string=this._toString(this._value):e}setValue(e){if(po.str(e)){if(e==this._string)return!1;this._string=e,this._value=1}else{if(!super.setValue(e))return!1;this._string=null}return!0}reset(e){e&&(this._toString=ta({output:[this.getValue(),e]})),this._value=0,super.reset()}},Ya={dependencies:null},Ga=class extends qa{constructor(e){super(),this.source=e,this.setValue(e)}getValue(e){const t={};return vo(this.source,((n,r)=>{var i;(i=n)&&i[Da]===i?t[r]=n.getValue(e):da(n)?t[r]=fa(n):e||(t[r]=n)})),t}setValue(e){this.source=e,this.payload=this._makePayload(e)}reset(){this.payload&&mo(this.payload,(e=>e.reset()))}_makePayload(e){if(e){const t=new Set;return vo(e,this._addToPayload,t),Array.from(t)}}_addToPayload(e){Ya.dependencies&&da(e)&&Ya.dependencies.add(e);const t=Ha(e);t&&mo(t,(e=>this.add(e)))}},Za=class extends Ga{constructor(e){super(e)}static create(e){return new Za(e)}getValue(){return this.source.map((e=>e.getValue()))}setValue(e){const t=this.getPayload();return e.length==t.length?t.map(((t,n)=>t.setValue(e[n]))).some(Boolean):(super.setValue(e.map(Xa)),!0)}};function Xa(e){return(Fa(e)?Wa:Va).create(e)}function Ka(e){const t=Ia(e);return t?t.constructor:po.arr(e)?Za:Fa(e)?Wa:Va}var Qa=(e,t)=>{const n=!po.fun(e)||e.prototype&&e.prototype.isReactComponent;return Ae(((r,i)=>{const o=de(null),a=n&&he((e=>{o.current=function(e,t){return e&&(po.fun(e)?e(t):e.current=t),t}(i,e)}),[i]),[s,l]=function(e,t){const n=new Set;return Ya.dependencies=n,e.style&&(e={...e,style:t.createAnimatedStyle(e.style)}),e=new Ga(e),Ya.dependencies=null,[e,n]}(r,t),c=za(),u=()=>{const e=o.current;n&&!e||!1===(!!e&&t.applyAnimatedValues(e,s.getValue(!0)))&&c()},d=new Ja(u,l),f=de();ja((()=>(f.current=d,mo(l,(e=>va(e,d))),()=>{f.current&&(mo(f.current.deps,(e=>ba(e,f.current))),Yi.cancel(f.current.update))}))),ue(u,[]),$a((()=>()=>{const e=f.current;mo(e.deps,(t=>ba(t,e)))}));const h=t.getComponentProps(s.getValue());return S(e,{...h,ref:a})}))},Ja=class{constructor(e,t){this.update=e,this.deps=t}eventObserved(e){"change"==e.type&&Yi.write(this.update)}},es=Symbol.for("AnimatedComponent"),ts=e=>po.str(e)?e:e&&po.str(e.displayName)?e.displayName:po.fun(e)&&e.name||null;function ns(e,...t){return po.fun(e)?e(...t):e}var rs=(e,t)=>!0===e||!!(t&&e&&(po.fun(e)?e(t):bo(e).includes(t))),is=(e,t)=>po.obj(e)?t&&e[t]:e,os=(e,t)=>!0===e.default?e[t]:e.default?e.default[t]:void 0,as=e=>e,ss=(e,t=as)=>{let n=ls;e.default&&!0!==e.default&&(e=e.default,n=Object.keys(e));const r={};for(const i of n){const n=t(e[i],i);po.und(n)||(r[i]=n)}return r},ls=["config","onProps","onStart","onChange","onPause","onResume","onRest"],cs={config:1,from:1,to:1,ref:1,loop:1,reset:1,pause:1,cancel:1,reverse:1,immediate:1,default:1,delay:1,onProps:1,onStart:1,onChange:1,onPause:1,onResume:1,onRest:1,onResolve:1,items:1,trail:1,sort:1,expires:1,initial:1,enter:1,update:1,leave:1,children:1,onDestroyed:1,keys:1,callId:1,parentId:1};function us(e){const t=function(e){const t={};let n=0;if(vo(e,((e,r)=>{cs[r]||(t[r]=e,n++)})),n)return t}(e);if(t){const n={to:t};return vo(e,((e,r)=>r in t||(n[r]=e))),n}return{...e}}function ds(e){return e=fa(e),po.arr(e)?e.map(ds):Fa(e)?fo.createStringInterpolator({range:[0,1],output:[e,e]})(1):e}function fs(e){for(const t in e)return!0;return!1}function hs(e){return po.fun(e)||po.arr(e)&&po.obj(e[0])}function ps(e,t){e.ref?.delete(e),t?.delete(e)}function gs(e,t){t&&e.ref!==t&&(e.ref?.delete(e),t.add(e),e.ref=t)}var ms={default:{tension:170,friction:26},gentle:{tension:120,friction:14},wobbly:{tension:180,friction:12},stiff:{tension:210,friction:20},slow:{tension:280,friction:60},molasses:{tension:280,friction:120}},vs={...ms.default,mass:1,damping:1,easing:la.linear,clamp:!1},bs=class{constructor(){this.velocity=0,Object.assign(this,vs)}};function ys(e,t){if(po.und(t.decay)){const n=!po.und(t.tension)||!po.und(t.friction);!n&&po.und(t.frequency)&&po.und(t.damping)&&po.und(t.mass)||(e.duration=void 0,e.decay=void 0),n&&(e.frequency=void 0)}else e.duration=void 0}var _s=[],ws=class{constructor(){this.changed=!1,this.values=_s,this.toValues=null,this.fromValues=_s,this.config=new bs,this.immediate=!1}};function xs(e,{key:t,props:n,defaultProps:r,state:i,actions:o}){return new Promise(((a,s)=>{let l,c,u=rs(n.cancel??r?.cancel,t);if(u)h();else{po.und(n.pause)||(i.paused=rs(n.pause,t));let e=r?.pause;!0!==e&&(e=i.paused||rs(e,t)),l=ns(n.delay||0,t),e?(i.resumeQueue.add(f),o.pause()):(o.resume(),f())}function d(){i.resumeQueue.add(f),i.timeouts.delete(c),c.cancel(),l=c.time-Yi.now()}function f(){l>0&&!fo.skipAnimation?(i.delayed=!0,c=Yi.setTimeout(h,l),i.pauseQueue.add(d),i.timeouts.add(c)):h()}function h(){i.delayed&&(i.delayed=!1),i.pauseQueue.delete(d),i.timeouts.delete(c),e<=(i.cancelId||0)&&(u=!0);try{o.start({...n,callId:e,cancel:u},a)}catch(e){s(e)}}}))}var ks=(e,t)=>1==t.length?t[0]:t.some((e=>e.cancelled))?Ms(e.get()):t.every((e=>e.noop))?Cs(e.get()):Ss(e.get(),t.every((e=>e.finished))),Cs=e=>({value:e,noop:!0,finished:!0,cancelled:!1}),Ss=(e,t,n=!1)=>({value:e,finished:t,cancelled:n}),Ms=e=>({value:e,cancelled:!0,finished:!1});function Ts(e,t,n,r){const{callId:i,parentId:o,onRest:a}=t,{asyncTo:s,promise:l}=n;return o||e!==s||t.reset?n.promise=(async()=>{n.asyncId=i,n.asyncTo=e;const c=ss(t,((e,t)=>"onRest"===t?void 0:e));let u,d;const f=new Promise(((e,t)=>(u=e,d=t))),h=e=>{const t=i<=(n.cancelId||0)&&Ms(r)||i!==n.asyncId&&Ss(r,!1);if(t)throw e.result=t,d(e),e},p=(e,t)=>{const o=new Ns,a=new Os;return(async()=>{if(fo.skipAnimation)throw As(n),a.result=Ss(r,!1),d(a),a;h(o);const s=po.obj(e)?{...e}:{...t,to:e};s.parentId=i,vo(c,((e,t)=>{po.und(s[t])&&(s[t]=e)}));const l=await r.start(s);return h(o),n.paused&&await new Promise((e=>{n.resumeQueue.add(e)})),l})()};let g;if(fo.skipAnimation)return As(n),Ss(r,!1);try{let t;t=po.arr(e)?(async e=>{for(const t of e)await p(t)})(e):Promise.resolve(e(p,r.stop.bind(r))),await Promise.all([t.then(u),f]),g=Ss(r.get(),!0,!1)}catch(e){if(e instanceof Ns)g=e.result;else{if(!(e instanceof Os))throw e;g=e.result}}finally{i==n.asyncId&&(n.asyncId=o,n.asyncTo=o?s:void 0,n.promise=o?l:void 0)}return po.fun(a)&&Yi.batchedUpdates((()=>{a(g,r,r.item)})),g})():l}function As(e,t){yo(e.timeouts,(e=>e.cancel())),e.pauseQueue.clear(),e.resumeQueue.clear(),e.asyncId=e.asyncTo=e.promise=void 0,t&&(e.cancelId=t)}var Ns=class extends Error{constructor(){super("An async animation has been interrupted. You see this error because you forgot to use `await` or `.catch(...)` on its returned promise.")}},Os=class extends Error{constructor(){super("SkipAnimationSignal")}},Ps=e=>e instanceof Es,Ls=1,Es=class extends ga{constructor(){super(...arguments),this.id=Ls++,this._priority=0}get priority(){return this._priority}set priority(e){this._priority!=e&&(this._priority=e,this._onPriorityChange(e))}get(){const e=Ia(this);return e&&e.getValue()}to(...e){return fo.to(this,e)}interpolate(...e){return La(`${Oa}The "interpolate" function is deprecated in v9 (use "to" instead)`),fo.to(this,e)}toJSON(){return this.get()}observerAdded(e){1==e&&this._attach()}observerRemoved(e){0==e&&this._detach()}_attach(){}_detach(){}_onChange(e,t=!1){pa(this,{type:"change",parent:this,value:e,idle:t})}_onPriorityChange(e){this.idle||Lo.sort(this),pa(this,{type:"priority",parent:this,priority:e})}},Fs=Symbol.for("SpringPhase"),js=e=>(1&e[Fs])>0,zs=e=>(2&e[Fs])>0,$s=e=>(4&e[Fs])>0,Bs=(e,t)=>t?e[Fs]|=3:e[Fs]&=-3,Rs=(e,t)=>t?e[Fs]|=4:e[Fs]&=-5,Ds=class extends Es{constructor(e,t){if(super(),this.animation=new ws,this.defaultProps={},this._state={paused:!1,delayed:!1,pauseQueue:new Set,resumeQueue:new Set,timeouts:new Set},this._pendingCalls=new Set,this._lastCallId=0,this._lastToId=0,this._memoizedDuration=0,!po.und(e)||!po.und(t)){const n=po.obj(e)?{...e}:{...t,from:e};po.und(n.default)&&(n.default=!0),this.start(n)}}get idle(){return!(zs(this)||this._state.asyncTo)||$s(this)}get goal(){return fa(this.animation.to)}get velocity(){const e=Ia(this);return e instanceof Va?e.lastVelocity||0:e.getPayload().map((e=>e.lastVelocity||0))}get hasAnimated(){return js(this)}get isAnimating(){return zs(this)}get isPaused(){return $s(this)}get isDelayed(){return this._state.delayed}advance(e){let t=!0,n=!1;const r=this.animation;let{toValues:i}=r;const{config:o}=r,a=Ha(r.to);!a&&da(r.to)&&(i=bo(fa(r.to))),r.values.forEach(((s,l)=>{if(s.done)return;const c=s.constructor==Wa?1:a?a[l].lastPosition:i[l];let u=r.immediate,d=c;if(!u){if(d=s.lastPosition,o.tension<=0)return void(s.done=!0);let t=s.elapsedTime+=e;const n=r.fromValues[l],i=null!=s.v0?s.v0:s.v0=po.arr(o.velocity)?o.velocity[l]:o.velocity;let a;const f=o.precision||(n==c?.005:Math.min(1,.001*Math.abs(c-n)));if(po.und(o.duration))if(o.decay){const e=!0===o.decay?.998:o.decay,r=Math.exp(-(1-e)*t);d=n+i/(1-e)*(1-r),u=Math.abs(s.lastPosition-d)<=f,a=i*r}else{a=null==s.lastVelocity?i:s.lastVelocity;const t=o.restVelocity||f/10,r=o.clamp?0:o.bounce,l=!po.und(r),h=n==c?s.v0>0:n<c;let p,g=!1;const m=1,v=Math.ceil(e/m);for(let e=0;e<v&&(p=Math.abs(a)>t,p||(u=Math.abs(c-d)<=f,!u));++e)l&&(g=d==c||d>c==h,g&&(a=-a*r,d=c)),a+=(1e-6*-o.tension*(d-c)+.001*-o.friction*a)/o.mass*m,d+=a*m}else{let r=1;o.duration>0&&(this._memoizedDuration!==o.duration&&(this._memoizedDuration=o.duration,s.durationProgress>0&&(s.elapsedTime=o.duration*s.durationProgress,t=s.elapsedTime+=e)),r=(o.progress||0)+t/this._memoizedDuration,r=r>1?1:r<0?0:r,s.durationProgress=r),d=n+o.easing(r)*(c-n),a=(d-s.lastPosition)/e,u=1==r}s.lastVelocity=a,Number.isNaN(d)&&(console.warn("Got NaN while animating:",this),u=!0)}a&&!a[l].done&&(u=!1),u?s.done=!0:t=!1,s.setValue(d,o.round)&&(n=!0)}));const s=Ia(this),l=s.getValue();if(t){const e=fa(r.to);l===e&&!n||o.decay?n&&o.decay&&this._onChange(l):(s.setValue(e),this._onChange(e)),this._stop()}else n&&this._onChange(l)}set(e){return Yi.batchedUpdates((()=>{this._stop(),this._focus(e),this._set(e)})),this}pause(){this._update({pause:!0})}resume(){this._update({pause:!1})}finish(){if(zs(this)){const{to:e,config:t}=this.animation;Yi.batchedUpdates((()=>{this._onStart(),t.decay||this._set(e,!1),this._stop()}))}return this}update(e){return(this.queue||(this.queue=[])).push(e),this}start(e,t){let n;return po.und(e)?(n=this.queue||[],this.queue=[]):n=[po.obj(e)?e:{...t,to:e}],Promise.all(n.map((e=>this._update(e)))).then((e=>ks(this,e)))}stop(e){const{to:t}=this.animation;return this._focus(this.get()),As(this._state,e&&this._lastCallId),Yi.batchedUpdates((()=>this._stop(t,e))),this}reset(){this._update({reset:!0})}eventObserved(e){"change"==e.type?this._start():"priority"==e.type&&(this.priority=e.priority+1)}_prepareNode(e){const t=this.key||"";let{to:n,from:r}=e;n=po.obj(n)?n[t]:n,(null==n||hs(n))&&(n=void 0),r=po.obj(r)?r[t]:r,null==r&&(r=void 0);const i={to:n,from:r};return js(this)||(e.reverse&&([n,r]=[r,n]),r=fa(r),po.und(r)?Ia(this)||this._set(n):this._set(r)),i}_update({...e},t){const{key:n,defaultProps:r}=this;e.default&&Object.assign(r,ss(e,((e,t)=>/^on/.test(t)?is(e,n):e))),Ys(this,e,"onProps"),Gs(this,"onProps",e,this);const i=this._prepareNode(e);if(Object.isFrozen(this))throw Error("Cannot animate a `SpringValue` object that is frozen. Did you forget to pass your component to `animated(...)` before animating its props?");const o=this._state;return xs(++this._lastCallId,{key:n,props:e,defaultProps:r,state:o,actions:{pause:()=>{$s(this)||(Rs(this,!0),xo(o.pauseQueue),Gs(this,"onPause",Ss(this,Is(this,this.animation.to)),this))},resume:()=>{$s(this)&&(Rs(this,!1),zs(this)&&this._resume(),xo(o.resumeQueue),Gs(this,"onResume",Ss(this,Is(this,this.animation.to)),this))},start:this._merge.bind(this,i)}}).then((n=>{if(e.loop&&n.finished&&(!t||!n.noop)){const t=Us(e);if(t)return this._update(t,!0)}return n}))}_merge(e,t,n){if(t.cancel)return this.stop(!0),n(Ms(this));const r=!po.und(e.to),i=!po.und(e.from);if(r||i){if(!(t.callId>this._lastToId))return n(Ms(this));this._lastToId=t.callId}const{key:o,defaultProps:a,animation:s}=this,{to:l,from:c}=s;let{to:u=l,from:d=c}=e;!i||r||t.default&&!po.und(u)||(u=d),t.reverse&&([u,d]=[d,u]);const f=!go(d,c);f&&(s.from=d),d=fa(d);const h=!go(u,l);h&&this._focus(u);const p=hs(t.to),{config:g}=s,{decay:m,velocity:v}=g;(r||i)&&(g.velocity=0),t.config&&!p&&function(e,t,n){n&&(ys(n={...n},t),t={...n,...t}),ys(e,t),Object.assign(e,t);for(const t in vs)null==e[t]&&(e[t]=vs[t]);let{frequency:r,damping:i}=e;const{mass:o}=e;po.und(r)||(r<.01&&(r=.01),i<0&&(i=0),e.tension=Math.pow(2*Math.PI/r,2)*o,e.friction=4*Math.PI*i*o/r)}(g,ns(t.config,o),t.config!==a.config?ns(a.config,o):void 0);let b=Ia(this);if(!b||po.und(u))return n(Ss(this,!0));const y=po.und(t.reset)?i&&!t.default:!po.und(d)&&rs(t.reset,o),_=y?d:this.get(),w=ds(u),x=po.num(w)||po.arr(w)||Fa(w),k=!p&&(!x||rs(a.immediate||t.immediate,o));if(h){const e=Ka(u);if(e!==b.constructor){if(!k)throw Error(`Cannot animate between ${b.constructor.name} and ${e.name}, as the "to" prop suggests`);b=this._set(w)}}const C=b.constructor;let S=da(u),M=!1;if(!S){const e=y||!js(this)&&f;(h||e)&&(M=go(ds(_),w),S=!M),(go(s.immediate,k)||k)&&go(g.decay,m)&&go(g.velocity,v)||(S=!0)}if(M&&zs(this)&&(s.changed&&!y?S=!0:S||this._stop(l)),!p&&((S||da(l))&&(s.values=b.getPayload(),s.toValues=da(u)?null:C==Wa?[1]:bo(w)),s.immediate!=k&&(s.immediate=k,k||y||this._set(l)),S)){const{onRest:e}=s;mo(Ws,(e=>Ys(this,t,e)));const r=Ss(this,Is(this,l));xo(this._pendingCalls,r),this._pendingCalls.add(n),s.changed&&Yi.batchedUpdates((()=>{s.changed=!y,e?.(r,this),y?ns(a.onRest,r):s.onStart?.(r,this)}))}y&&this._set(_),p?n(Ts(t.to,t,this._state,this)):S?this._start():zs(this)&&!h?this._pendingCalls.add(n):n(Cs(_))}_focus(e){const t=this.animation;e!==t.to&&(ha(this)&&this._detach(),t.to=e,ha(this)&&this._attach())}_attach(){let e=0;const{to:t}=this.animation;da(t)&&(va(t,this),Ps(t)&&(e=t.priority+1)),this.priority=e}_detach(){const{to:e}=this.animation;da(e)&&ba(e,this)}_set(e,t=!0){const n=fa(e);if(!po.und(n)){const e=Ia(this);if(!e||!go(n,e.getValue())){const r=Ka(n);e&&e.constructor==r?e.setValue(n):Ua(this,r.create(n)),e&&Yi.batchedUpdates((()=>{this._onChange(n,t)}))}}return Ia(this)}_onStart(){const e=this.animation;e.changed||(e.changed=!0,Gs(this,"onStart",Ss(this,Is(this,e.to)),this))}_onChange(e,t){t||(this._onStart(),ns(this.animation.onChange,e,this)),ns(this.defaultProps.onChange,e,this),super._onChange(e,t)}_start(){const e=this.animation;Ia(this).reset(fa(e.to)),e.immediate||(e.fromValues=e.values.map((e=>e.lastPosition))),zs(this)||(Bs(this,!0),$s(this)||this._resume())}_resume(){fo.skipAnimation?this.finish():Lo.start(this)}_stop(e,t){if(zs(this)){Bs(this,!1);const n=this.animation;mo(n.values,(e=>{e.done=!0})),n.toValues&&(n.onChange=n.onPause=n.onResume=void 0),pa(this,{type:"idle",parent:this});const r=t?Ms(this.get()):Ss(this.get(),Is(this,e??n.to));xo(this._pendingCalls,r),n.changed&&(n.changed=!1,Gs(this,"onRest",r,this))}}};function Is(e,t){const n=ds(t);return go(ds(e.get()),n)}function Us(e,t=e.loop,n=e.to){const r=ns(t);if(r){const i=!0!==r&&us(r),o=(i||e).reverse,a=!i||i.reset;return Hs({...e,loop:t,default:!1,pause:void 0,to:!o||hs(n)?n:void 0,from:a?e.from:void 0,reset:a,...i})}}function Hs(e){const{to:t,from:n}=e=us(e),r=new Set;return po.obj(t)&&Vs(t,r),po.obj(n)&&Vs(n,r),e.keys=r.size?Array.from(r):null,e}function qs(e){const t=Hs(e);return po.und(t.default)&&(t.default=ss(t)),t}function Vs(e,t){vo(e,((e,n)=>null!=e&&t.add(n)))}var Ws=["onStart","onRest","onChange","onPause","onResume"];function Ys(e,t,n){e.animation[n]=t[n]!==os(t,n)?is(t[n],e.key):void 0}function Gs(e,t,...n){e.animation[t]?.(...n),e.defaultProps[t]?.(...n)}var Zs=["onStart","onChange","onRest"],Xs=1,Ks=class{constructor(e,t){this.id=Xs++,this.springs={},this.queue=[],this._lastAsyncId=0,this._active=new Set,this._changed=new Set,this._started=!1,this._state={paused:!1,pauseQueue:new Set,resumeQueue:new Set,timeouts:new Set},this._events={onStart:new Map,onChange:new Map,onRest:new Map},this._onFrame=this._onFrame.bind(this),t&&(this._flush=t),e&&this.start({default:!0,...e})}get idle(){return!this._state.asyncTo&&Object.values(this.springs).every((e=>e.idle&&!e.isDelayed&&!e.isPaused))}get item(){return this._item}set item(e){this._item=e}get(){const e={};return this.each(((t,n)=>e[n]=t.get())),e}set(e){for(const t in e){const n=e[t];po.und(n)||this.springs[t].set(n)}}update(e){return e&&this.queue.push(Hs(e)),this}start(e){let{queue:t}=this;return e?t=bo(e).map(Hs):this.queue=[],this._flush?this._flush(this,t):(il(this,t),Qs(this,t))}stop(e,t){if(e!==!!e&&(t=e),t){const n=this.springs;mo(bo(t),(t=>n[t].stop(!!e)))}else As(this._state,this._lastAsyncId),this.each((t=>t.stop(!!e)));return this}pause(e){if(po.und(e))this.start({pause:!0});else{const t=this.springs;mo(bo(e),(e=>t[e].pause()))}return this}resume(e){if(po.und(e))this.start({pause:!1});else{const t=this.springs;mo(bo(e),(e=>t[e].resume()))}return this}each(e){vo(this.springs,e)}_onFrame(){const{onStart:e,onChange:t,onRest:n}=this._events,r=this._active.size>0,i=this._changed.size>0;(r&&!this._started||i&&!this._started)&&(this._started=!0,yo(e,(([e,t])=>{t.value=this.get(),e(t,this,this._item)})));const o=!r&&this._started,a=i||o&&n.size?this.get():null;i&&t.size&&yo(t,(([e,t])=>{t.value=a,e(t,this,this._item)})),o&&(this._started=!1,yo(n,(([e,t])=>{t.value=a,e(t,this,this._item)})))}eventObserved(e){if("change"==e.type)this._changed.add(e.parent),e.idle||this._active.add(e.parent);else{if("idle"!=e.type)return;this._active.delete(e.parent)}Yi.onFrame(this._onFrame)}};function Qs(e,t){return Promise.all(t.map((t=>Js(e,t)))).then((t=>ks(e,t)))}async function Js(e,t,n){const{keys:r,to:i,from:o,loop:a,onRest:s,onResolve:l}=t,c=po.obj(t.default)&&t.default;a&&(t.loop=!1),!1===i&&(t.to=null),!1===o&&(t.from=null);const u=po.arr(i)||po.fun(i)?i:void 0;u?(t.to=void 0,t.onRest=void 0,c&&(c.onRest=void 0)):mo(Zs,(n=>{const r=t[n];if(po.fun(r)){const i=e._events[n];t[n]=({finished:e,cancelled:t})=>{const n=i.get(r);n?(e||(n.finished=!1),t&&(n.cancelled=!0)):i.set(r,{value:null,finished:e||!1,cancelled:t||!1})},c&&(c[n]=t[n])}}));const d=e._state;t.pause===!d.paused?(d.paused=t.pause,xo(t.pause?d.pauseQueue:d.resumeQueue)):d.paused&&(t.pause=!0);const f=(r||Object.keys(e.springs)).map((n=>e.springs[n].start(t))),h=!0===t.cancel||!0===os(t,"cancel");(u||h&&d.asyncId)&&f.push(xs(++e._lastAsyncId,{props:t,state:d,actions:{pause:ho,resume:ho,start(t,n){h?(As(d,e._lastAsyncId),n(Ms(e))):(t.onRest=s,n(Ts(u,t,d,e)))}}})),d.paused&&await new Promise((e=>{d.resumeQueue.add(e)}));const p=ks(e,await Promise.all(f));if(a&&p.finished&&(!n||!p.noop)){const n=Us(t,a,i);if(n)return il(e,[n]),Js(e,n,!0)}return l&&Yi.batchedUpdates((()=>l(p,e,e.item))),p}function el(e,t){const n={...e.springs};return t&&mo(bo(t),(e=>{po.und(e.keys)&&(e=Hs(e)),po.obj(e.to)||(e={...e,to:void 0}),rl(n,e,(e=>nl(e)))})),tl(e,n),n}function tl(e,t){vo(t,((t,n)=>{e.springs[n]||(e.springs[n]=t,va(t,e))}))}function nl(e,t){const n=new Ds;return n.key=e,t&&va(n,t),n}function rl(e,t,n){t.keys&&mo(t.keys,(r=>{(e[r]||(e[r]=n(r)))._prepareNode(t)}))}function il(e,t){mo(t,(t=>{rl(e.springs,t,(t=>nl(t,e)))}))}var ol=({children:e,...t})=>{const n=pe(al),r=t.pause||!!n.pause,i=t.immediate||!!n.immediate;t=function(e,t){const[n]=ce((()=>({inputs:t,result:e()}))),r=de(),i=r.current;let o=i;if(o){const n=Boolean(o.inputs&&function(e,t){if(e.length!==t.length)return!1;for(let n=0;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}(t,o.inputs));n||(o={inputs:t,result:e()})}else o=n;return ue((()=>{r.current=o,i==n&&(n.inputs=n.result=void 0)}),[o]),o.result}((()=>({pause:r,immediate:i})),[r,i]);const{Provider:o}=al;return S(o,{value:t},e)},al=function(e,t){return Object.assign(e,G({})),e.Provider._context=e,e.Consumer._context=e,e}(ol);ol.Provider=al.Provider,ol.Consumer=al.Consumer;var sl=()=>{const e=[],t=function(t){Ea(`${Oa}Directly calling start instead of using the api object is deprecated in v9 (use ".start" instead), this will be removed in later 0.X.0 versions`);const r=[];return mo(e,((e,i)=>{if(po.und(t))r.push(e.start());else{const o=n(t,e,i);o&&r.push(e.start(o))}})),r};t.current=e,t.add=function(t){e.includes(t)||e.push(t)},t.delete=function(t){const n=e.indexOf(t);~n&&e.splice(n,1)},t.pause=function(){return mo(e,(e=>e.pause(...arguments))),this},t.resume=function(){return mo(e,(e=>e.resume(...arguments))),this},t.set=function(t){mo(e,((e,n)=>{const r=po.fun(t)?t(n,e):t;r&&e.set(r)}))},t.start=function(t){const n=[];return mo(e,((e,r)=>{if(po.und(t))n.push(e.start());else{const i=this._getProps(t,e,r);i&&n.push(e.start(i))}})),n},t.stop=function(){return mo(e,(e=>e.stop(...arguments))),this},t.update=function(t){return mo(e,((e,n)=>e.update(this._getProps(t,e,n)))),this};const n=function(e,t,n){return po.fun(e)?e(n,t):e};return t._getProps=n,t};function ll(e,t){const n=po.fun(e),[[r],i]=function(e,t,n){const r=po.fun(t)&&t;r&&!n&&(n=[]);const i=fe((()=>r||3==arguments.length?sl():void 0),[]),o=de(0),a=za(),s=fe((()=>({ctrls:[],queue:[],flush(e,t){const n=el(e,t);return o.current>0&&!s.queue.length&&!Object.keys(n).some((t=>!e.springs[t]))?Qs(e,t):new Promise((r=>{tl(e,n),s.queue.push((()=>{r(Qs(e,t))})),a()}))}})),[]),l=de([...s.ctrls]),c=[],u=Ra(e)||0;function d(e,n){for(let i=e;i<n;i++){const e=l.current[i]||(l.current[i]=new Ks(null,s.flush)),n=r?r(i,e):t[i];n&&(c[i]=qs(n))}}fe((()=>{mo(l.current.slice(e,u),(e=>{ps(e,i),e.stop(!0)})),l.current.length=e,d(u,e)}),[e]),fe((()=>{d(0,Math.min(u,e))}),n);const f=l.current.map(((e,t)=>el(e,c[t]))),h=pe(ol),p=Ra(h),g=h!==p&&fs(h);ja((()=>{o.current++,s.ctrls=l.current;const{queue:e}=s;e.length&&(s.queue=[],mo(e,(e=>e()))),mo(l.current,((e,t)=>{i?.add(e),g&&e.start({default:h});const n=c[t];n&&(gs(e,n.ref),e.ref?e.queue.push(n):e.start(n))}))})),$a((()=>()=>{mo(s.ctrls,(e=>e.stop(!0)))}));const m=f.map((e=>({...e})));return i?[m,i]:m}(1,n?e:[e],n?[]:t);return n||2==arguments.length?[r,i]:r}function cl(e,t,n){const r=po.fun(t)&&t,{reset:i,sort:o,trail:a=0,expires:s=!0,exitBeforeEnter:l=!1,onDestroyed:c,ref:u,config:d}=r?r():t,f=fe((()=>r||3==arguments.length?sl():void 0),[]),h=bo(e),p=[],g=de(null),m=i?null:g.current;ja((()=>{g.current=p})),$a((()=>(mo(p,(e=>{f?.add(e.ctrl),e.ctrl.ref=f})),()=>{mo(g.current,(e=>{e.expired&&clearTimeout(e.expirationId),ps(e.ctrl,f),e.ctrl.stop(!0)}))})));const v=function(e,{key:t,keys:n=t},r){if(null===n){const t=new Set;return e.map((e=>{const n=r&&r.find((n=>n.item===e&&"leave"!==n.phase&&!t.has(n)));return n?(t.add(n),n.key):ul++}))}return po.und(n)?e:po.fun(n)?e.map(n):bo(n)}(h,r?r():t,m),b=i&&g.current||[];ja((()=>mo(b,(({ctrl:e,item:t,key:n})=>{ps(e,f),ns(c,t,n)}))));const y=[];if(m&&mo(m,((e,t)=>{e.expired?(clearTimeout(e.expirationId),b.push(e)):~(t=y[t]=v.indexOf(e.key))&&(p[t]=e)})),mo(h,((e,t)=>{p[t]||(p[t]={key:v[t],item:e,phase:"mount",ctrl:new Ks},p[t].ctrl.item=e)})),y.length){let e=-1;const{leave:n}=r?r():t;mo(y,((t,r)=>{const i=m[r];~t?(e=p.indexOf(i),p[e]={...i,item:h[t]}):n&&p.splice(++e,0,i)}))}po.fun(o)&&p.sort(((e,t)=>o(e.item,t.item)));let _=-a;const w=za(),x=ss(t),k=new Map,C=de(new Map),M=de(!1);mo(p,((e,n)=>{const i=e.key,o=e.phase,c=r?r():t;let f,h;const p=ns(c.delay||0,i);if("mount"==o)f=c.enter,h="enter";else{const e=v.indexOf(i)<0;if("leave"!=o)if(e)f=c.leave,h="leave";else{if(!(f=c.update))return;h="update"}else{if(e)return;f=c.enter,h="enter"}}if(f=ns(f,e.item,n),f=po.obj(f)?us(f):{to:f},!f.config){const t=d||x.config;f.config=ns(t,e.item,n,h)}_+=a;const b={...x,delay:p+_,ref:u,immediate:c.immediate,reset:!1,...f};if("enter"==h&&po.und(b.from)){const i=r?r():t,o=po.und(i.initial)||m?i.from:i.initial;b.from=ns(o,e.item,n)}const{onResolve:y}=b;b.onResolve=e=>{ns(y,e);const t=g.current,n=t.find((e=>e.key===i));if(n&&(!e.cancelled||"update"==n.phase)&&n.ctrl.idle){const e=t.every((e=>e.ctrl.idle));if("leave"==n.phase){const t=ns(s,n.item);if(!1!==t){const r=!0===t?0:t;if(n.expired=!0,!e&&r>0)return void(r<=2147483647&&(n.expirationId=setTimeout(w,r)))}}e&&t.some((e=>e.expired))&&(C.current.delete(n),l&&(M.current=!0),w())}};const S=el(e.ctrl,b);"leave"===h&&l?C.current.set(e,{phase:h,springs:S,payload:b}):k.set(e,{phase:h,springs:S,payload:b})}));const A=pe(ol),N=Ra(A),O=A!==N&&fs(A);ja((()=>{O&&mo(p,(e=>{e.ctrl.start({default:A})}))}),[A]),mo(k,((e,t)=>{if(C.current.size){const e=p.findIndex((e=>e.key===t.key));p.splice(e,1)}})),ja((()=>{mo(C.current.size?C.current:k,(({phase:e,payload:t},n)=>{const{ctrl:r}=n;n.phase=e,f?.add(r),O&&"enter"==e&&r.start({default:A}),t&&(gs(r,t.ref),!r.ref&&!f||M.current?(r.start(t),M.current&&(M.current=!1)):r.update(t))}))}),i?void 0:n);const P=e=>S(T,null,p.map(((t,n)=>{const{springs:r}=k.get(t)||t.ctrl,i=e({...r},t.item,t,n);return i&&i.type?S(i.type,{...i.props,key:po.str(t.key)||po.num(t.key)?t.key:t.ctrl.id,ref:i.ref}):i})));return f?[P,f]:P}var ul=1,dl=class extends Es{constructor(e,t){super(),this.source=e,this.idle=!0,this._active=new Set,this.calc=ta(...t);const n=this._get(),r=Ka(n);Ua(this,r.create(n))}advance(e){const t=this._get();go(t,this.get())||(Ia(this).setValue(t),this._onChange(t,this.idle)),!this.idle&&hl(this._active)&&pl(this)}_get(){const e=po.arr(this.source)?this.source.map(fa):bo(fa(this.source));return this.calc(...e)}_start(){this.idle&&!hl(this._active)&&(this.idle=!1,mo(Ha(this),(e=>{e.done=!1})),fo.skipAnimation?(Yi.batchedUpdates((()=>this.advance())),pl(this)):Lo.start(this))}_attach(){let e=1;mo(bo(this.source),(t=>{da(t)&&va(t,this),Ps(t)&&(t.idle||this._active.add(t),e=Math.max(e,t.priority+1))})),this.priority=e,this._start()}_detach(){mo(bo(this.source),(e=>{da(e)&&ba(e,this)})),this._active.clear(),pl(this)}eventObserved(e){"change"==e.type?e.idle?this.advance():(this._active.add(e.parent),this._start()):"idle"==e.type?this._active.delete(e.parent):"priority"==e.type&&(this.priority=bo(this.source).reduce(((e,t)=>Math.max(e,(Ps(t)?t.priority:0)+1)),0))}};function fl(e){return!1!==e.idle}function hl(e){return!e.size||Array.from(e).every(fl)}function pl(e){e.idle||(e.idle=!0,mo(Ha(e),(e=>{e.done=!0})),pa(e,{type:"idle",parent:e}))}fo.assign({createStringInterpolator:Na,to:(e,t)=>new dl(e,t)});var gl=/^--/;function ml(e,t){return null==t||"boolean"==typeof t||""===t?"":"number"!=typeof t||0===t||gl.test(e)||bl.hasOwnProperty(e)&&bl[e]?(""+t).trim():t+"px"}var vl={},bl={animationIterationCount:!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,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},yl=["Webkit","Ms","Moz","O"];bl=Object.keys(bl).reduce(((e,t)=>(yl.forEach((n=>e[((e,t)=>e+t.charAt(0).toUpperCase()+t.substring(1))(n,t)]=e[t])),e)),bl);var _l=/^(matrix|translate|scale|rotate|skew)/,wl=/^(translate)/,xl=/^(rotate|skew)/,kl=(e,t)=>po.num(e)&&0!==e?e+t:e,Cl=(e,t)=>po.arr(e)?e.every((e=>Cl(e,t))):po.num(e)?e===t:parseFloat(e)===t,Sl=class extends Ga{constructor({x:e,y:t,z:n,...r}){const i=[],o=[];(e||t||n)&&(i.push([e||0,t||0,n||0]),o.push((e=>[`translate3d(${e.map((e=>kl(e,"px"))).join(",")})`,Cl(e,0)]))),vo(r,((e,t)=>{if("transform"===t)i.push([e||""]),o.push((e=>[e,""===e]));else if(_l.test(t)){if(delete r[t],po.und(e))return;const n=wl.test(t)?"px":xl.test(t)?"deg":"";i.push(bo(e)),o.push("rotate3d"===t?([e,t,r,i])=>[`rotate3d(${e},${t},${r},${kl(i,n)})`,Cl(i,0)]:e=>[`${t}(${e.map((e=>kl(e,n))).join(",")})`,Cl(e,t.startsWith("scale")?1:0)])}})),i.length&&(r.transform=new Ml(i,o)),super(r)}},Ml=class extends ga{constructor(e,t){super(),this.inputs=e,this.transforms=t,this._value=null}get(){return this._value||(this._value=this._get())}_get(){let e="",t=!0;return mo(this.inputs,((n,r)=>{const i=fa(n[0]),[o,a]=this.transforms[r](po.arr(i)?i:n.map(fa));e+=" "+o,t=t&&a})),t?"none":e}observerAdded(e){1==e&&mo(this.inputs,(e=>mo(e,(e=>da(e)&&va(e,this)))))}observerRemoved(e){0==e&&mo(this.inputs,(e=>mo(e,(e=>da(e)&&ba(e,this)))))}eventObserved(e){"change"==e.type&&(this._value=null),pa(this,e)}};fo.assign({batchedUpdates:function(e,t){return e(t)},createStringInterpolator:Na,colors:{transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199}});var Tl=((e,{applyAnimatedValues:t=(()=>!1),createAnimatedStyle:n=(e=>new Ga(e)),getComponentProps:r=(e=>e)}={})=>{const i={applyAnimatedValues:t,createAnimatedStyle:n,getComponentProps:r},o=e=>{const t=ts(e)||"Anonymous";return(e=po.str(e)?o[e]||(o[e]=Qa(e,i)):e[es]||(e[es]=Qa(e,i))).displayName=`Animated(${t})`,e};return vo(e,((t,n)=>{po.arr(e)&&(n=ts(t)),o[n]=o(t)})),{animated:o}})(["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","big","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","keygen","label","legend","li","link","main","map","mark","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rp","rt","ruby","s","samp","script","section","select","small","source","span","strong","style","sub","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr","circle","clipPath","defs","ellipse","foreignObject","g","image","line","linearGradient","mask","path","pattern","polygon","polyline","radialGradient","rect","stop","svg","text","tspan"],{applyAnimatedValues:function(e,t){if(!e.nodeType||!e.setAttribute)return!1;const n="filter"===e.nodeName||e.parentNode&&"filter"===e.parentNode.nodeName,{className:r,style:i,children:o,scrollTop:a,scrollLeft:s,viewBox:l,...c}=t,u=Object.values(c),d=Object.keys(c).map((t=>n||e.hasAttribute(t)?t:vl[t]||(vl[t]=t.replace(/([A-Z])/g,(e=>"-"+e.toLowerCase())))));void 0!==o&&(e.textContent=o);for(const t in i)if(i.hasOwnProperty(t)){const n=ml(t,i[t]);gl.test(t)?e.style.setProperty(t,n):e.style[t]=n}d.forEach(((t,n)=>{e.setAttribute(t,u[n])})),void 0!==r&&(e.className=r),void 0!==a&&(e.scrollTop=a),void 0!==s&&(e.scrollLeft=s),void 0!==l&&e.setAttribute("viewBox",l)},createAnimatedStyle:e=>new Sl(e),getComponentProps:({scrollTop:e,scrollLeft:t,...n})=>n}),Al=Tl.animated;function Nl(){return Nl=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Nl.apply(this,arguments)}var Ol={pointerEvents:"none",position:"absolute",zIndex:10,top:0,left:0},Pl=function(e,t){return"translate("+e+"px, "+t+"px)"},Ll=Se((function(e){var t,n=e.position,r=e.anchor,i=e.children,o=NS(),a=gS(),s=a.animate,l=a.config,c=CS(),u=c[0],d=c[1],f=de(!1),h=void 0,p=!1,g=d.width>0&&d.height>0,m=Math.round(n[0]),v=Math.round(n[1]);g&&("top"===r?(m-=d.width/2,v-=d.height+14):"right"===r?(m+=14,v-=d.height/2):"bottom"===r?(m-=d.width/2,v+=14):"left"===r?(m-=d.width+14,v-=d.height/2):"center"===r&&(m-=d.width/2,v-=d.height/2),h={transform:Pl(m,v)},f.current||(p=!0),f.current=[m,v]);var b=ll({to:h,config:l,immediate:!s||p}),y=Nl({},Ol,o.tooltip.wrapper,{transform:null!=(t=b.transform)?t:Pl(m,v),opacity:b.transform?1:0});return Je(Al.div,{ref:u,style:y,children:i})}));Ll.displayName="TooltipWrapper";var El=Se((function(e){var t=e.size,n=void 0===t?12:t,r=e.color,i=e.style;return Je("span",{style:Nl({display:"block",width:n,height:n,background:r},void 0===i?{}:i)})})),Fl=Se((function(e){var t,n=e.id,r=e.value,i=e.format,o=e.enableChip,a=void 0!==o&&o,s=e.color,l=e.renderContent,c=NS(),u=SS(i);if("function"==typeof l)t=l();else{var d=r;void 0!==u&&void 0!==d&&(d=u(d)),t=Je("div",{style:c.tooltip.basic,children:[a&&Je(El,{color:s,style:c.tooltip.chip}),void 0!==d?Je("span",{children:[n,": ",Je("strong",{children:""+d})]}):n]})}return Je("div",{style:c.tooltip.container,children:t})})),jl={width:"100%",borderCollapse:"collapse"},zl=Se((function(e){var t,n=e.title,r=e.rows,i=void 0===r?[]:r,o=e.renderContent,a=NS();return i.length?(t="function"==typeof o?o():Je("div",{children:[n&&n,Je("table",{style:Nl({},jl,a.tooltip.table),children:Je("tbody",{children:i.map((function(e,t){return Je("tr",{children:e.map((function(e,t){return Je("td",{style:a.tooltip.tableCell,children:e},t)}))},t)}))})})]}),Je("div",{style:a.tooltip.container,children:t})):null}));zl.displayName="TableTooltip";var $l=Se((function(e){var t=e.x0,n=e.x1,r=e.y0,i=e.y1,o=NS(),a=gS(),s=a.animate,l=a.config,c=fe((function(){return Nl({},o.crosshair.line,{pointerEvents:"none"})}),[o.crosshair.line]),u=ll({x1:t,x2:n,y1:r,y2:i,config:l,immediate:!s});return Je(Al.line,Nl({},u,{fill:"none",style:c}))}));$l.displayName="CrosshairLine";var Bl=Se((function(e){var t,n,r=e.width,i=e.height,o=e.type,a=e.x,s=e.y;return"cross"===o?(t={x0:a,x1:a,y0:0,y1:i},n={x0:0,x1:r,y0:s,y1:s}):"top-left"===o?(t={x0:a,x1:a,y0:0,y1:s},n={x0:0,x1:a,y0:s,y1:s}):"top"===o?t={x0:a,x1:a,y0:0,y1:s}:"top-right"===o?(t={x0:a,x1:a,y0:0,y1:s},n={x0:a,x1:r,y0:s,y1:s}):"right"===o?n={x0:a,x1:r,y0:s,y1:s}:"bottom-right"===o?(t={x0:a,x1:a,y0:s,y1:i},n={x0:a,x1:r,y0:s,y1:s}):"bottom"===o?t={x0:a,x1:a,y0:s,y1:i}:"bottom-left"===o?(t={x0:a,x1:a,y0:s,y1:i},n={x0:0,x1:a,y0:s,y1:s}):"left"===o?n={x0:0,x1:a,y0:s,y1:s}:"x"===o?t={x0:a,x1:a,y0:0,y1:i}:"y"===o&&(n={x0:0,x1:r,y0:s,y1:s}),Je(T,{children:[t&&Je($l,{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1}),n&&Je($l,{x0:n.x0,x1:n.x1,y0:n.y0,y1:n.y1})]})}));Bl.displayName="Crosshair";var Rl,Dl,Il,Ul,Hl,ql,Vl,Wl,Yl,Gl,Zl,Xl,Kl,Ql,Jl,ec,tc,nc,rc,ic,oc,ac,sc,lc,cc,uc,dc,fc,hc,pc,gc,mc,vc,bc,yc,_c,wc,xc,kc,Cc,Sc,Mc,Tc,Ac,Nc,Oc,Pc,Lc,Ec,Fc,jc,zc,$c,Bc,Rc,Dc,Ic,Uc,Hc,qc,Vc,Wc,Yc,Gc,Zc,Xc,Kc,Qc,Jc,eu,tu,nu,ru,iu,ou,au,su,lu,cu,uu,du,fu,hu,pu,gu,mu,vu,bu,yu,_u,wu,xu,ku,Cu,Su,Mu,Tu,Au,Nu=G({showTooltipAt:function(){},showTooltipFromEvent:function(){},hideTooltip:function(){}}),Ou={isVisible:!1,position:[null,null],content:null,anchor:null},Pu=G(Ou),Lu=function(){var e=pe(Nu);if(void 0===e)throw new Error("useTooltip must be used within a TooltipProvider");return e},Eu=function(){var e=function(){var e=pe(Pu);if(void 0===e)throw new Error("useTooltipState must be used within a TooltipProvider");return e}();return function(e){return e.isVisible}(e)?Je(Ll,{position:e.position,anchor:e.anchor,children:e.content}):null},Fu=function(e){var t=e.container,n=e.children,r=function(e){var t=ce(Ou),n=t[0],r=t[1],i=he((function(e,t,n){var i=t[0],o=t[1];void 0===n&&(n="top"),r({isVisible:!0,position:[i,o],anchor:n,content:e})}),[r]),o=he((function(t,n,i){void 0===i&&(i="top");var o=e.current.getBoundingClientRect(),a=e.current.offsetWidth,s=a===o.width?1:a/o.width,l="touches"in n?n.touches[0]:n,c=l.clientX,u=l.clientY,d=(c-o.left)*s,f=(u-o.top)*s;"left"!==i&&"right"!==i||(i=d<o.width/2?"right":"left"),r({isVisible:!0,position:[d,f],anchor:i,content:t})}),[e,r]),a=he((function(){r(Ou)}),[r]);return{actions:fe((function(){return{showTooltipAt:i,showTooltipFromEvent:o,hideTooltip:a}}),[i,o,a]),state:n}}(t),i=r.actions,o=r.state;return Je(Nu.Provider,{value:i,children:Je(Pu.Provider,{value:o,children:n})})};function ju(){return Ul?Il:(Ul=1,Il=function(e,t){return e===t||e!=e&&t!=t})}function zu(){if(ql)return Hl;ql=1;var e=ju();return Hl=function(t,n){for(var r=t.length;r--;)if(e(t[r][0],n))return r;return-1},Hl}function $u(){if(ec)return Jl;ec=1;var e=Dl?Rl:(Dl=1,Rl=function(){this.__data__=[],this.size=0}),t=function(){if(Wl)return Vl;Wl=1;var e=zu(),t=Array.prototype.splice;return Vl=function(n){var r=this.__data__,i=e(r,n);return!(i<0||(i==r.length-1?r.pop():t.call(r,i,1),--this.size,0))}}(),n=function(){if(Gl)return Yl;Gl=1;var e=zu();return Yl=function(t){var n=this.__data__,r=e(n,t);return r<0?void 0:n[r][1]}}(),r=function(){if(Xl)return Zl;Xl=1;var e=zu();return Zl=function(t){return e(this.__data__,t)>-1}}(),i=function(){if(Ql)return Kl;Ql=1;var e=zu();return Kl=function(t,n){var r=this.__data__,i=e(r,t);return i<0?(++this.size,r.push([t,n])):r[i][1]=n,this}}();function o(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}return o.prototype.clear=e,o.prototype.delete=t,o.prototype.get=n,o.prototype.has=r,o.prototype.set=i,Jl=o}function Bu(){if(uc)return cc;uc=1;var e="object"==typeof yi&&yi&&yi.Object===Object&&yi;return cc=e}function Ru(){if(fc)return dc;fc=1;var e=Bu(),t="object"==typeof self&&self&&self.Object===Object&&self,n=e||t||Function("return this")();return dc=n}function Du(){if(pc)return hc;pc=1;var e=Ru().Symbol;return hc=e}function Iu(){if(_c)return yc;_c=1;var e=Du(),t=function(){if(mc)return gc;mc=1;var e=Du(),t=Object.prototype,n=t.hasOwnProperty,r=t.toString,i=e?e.toStringTag:void 0;return gc=function(e){var t=n.call(e,i),o=e[i];try{e[i]=void 0;var a=!0}catch(e){}var s=r.call(e);return a&&(t?e[i]=o:delete e[i]),s}}(),n=function(){if(bc)return vc;bc=1;var e=Object.prototype.toString;return vc=function(t){return e.call(t)}}(),r=e?e.toStringTag:void 0;return yc=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":r&&r in Object(e)?t(e):n(e)}}function Uu(){return xc?wc:(xc=1,wc=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)})}function Hu(){if(Cc)return kc;Cc=1;var e=Iu(),t=Uu();return kc=function(n){if(!t(n))return!1;var r=e(n);return"[object Function]"==r||"[object GeneratorFunction]"==r||"[object AsyncFunction]"==r||"[object Proxy]"==r}}function qu(){if(Oc)return Nc;Oc=1;var e=Function.prototype.toString;return Nc=function(t){if(null!=t){try{return e.call(t)}catch(e){}try{return t+""}catch(e){}}return""}}function Vu(){if(zc)return jc;zc=1;var e=function(){if(Lc)return Pc;Lc=1;var e=Hu(),t=function(){if(Ac)return Tc;Ac=1;var e,t=function(){if(Mc)return Sc;Mc=1;var e=Ru()["__core-js_shared__"];return Sc=e}(),n=(e=/[^.]+$/.exec(t&&t.keys&&t.keys.IE_PROTO||""))?"Symbol(src)_1."+e:"";return Tc=function(e){return!!n&&n in e}}(),n=Uu(),r=qu(),i=/^\[object .+?Constructor\]$/,o=Function.prototype,a=Object.prototype,s=o.toString,l=a.hasOwnProperty,c=RegExp("^"+s.call(l).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");return Pc=function(o){return!(!n(o)||t(o))&&(e(o)?c:i).test(r(o))}}(),t=(Fc||(Fc=1,Ec=function(e,t){return null==e?void 0:e[t]}),Ec);return jc=function(n,r){var i=t(n,r);return e(i)?i:void 0},jc}function Wu(){if(Bc)return $c;Bc=1;var e=Vu()(Ru(),"Map");return $c=e}function Yu(){if(Dc)return Rc;Dc=1;var e=Vu()(Object,"create");return Rc=e}function Gu(){if(iu)return ru;iu=1;var e=nu?tu:(nu=1,tu=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e});return ru=function(t,n){var r=t.__data__;return e(n)?r["string"==typeof n?"string":"hash"]:r.map},ru}function Zu(){if(pu)return hu;pu=1;var e=function(){if(eu)return Jc;eu=1;var e=function(){if(Qc)return Kc;Qc=1;var e=function(){if(Uc)return Ic;Uc=1;var e=Yu();return Ic=function(){this.__data__=e?e(null):{},this.size=0}}(),t=qc?Hc:(qc=1,Hc=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}),n=function(){if(Wc)return Vc;Wc=1;var e=Yu(),t=Object.prototype.hasOwnProperty;return Vc=function(n){var r=this.__data__;if(e){var i=r[n];return"__lodash_hash_undefined__"===i?void 0:i}return t.call(r,n)?r[n]:void 0}}(),r=function(){if(Gc)return Yc;Gc=1;var e=Yu(),t=Object.prototype.hasOwnProperty;return Yc=function(n){var r=this.__data__;return e?void 0!==r[n]:t.call(r,n)}}(),i=function(){if(Xc)return Zc;Xc=1;var e=Yu();return Zc=function(t,n){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=e&&void 0===n?"__lodash_hash_undefined__":n,this}}();function o(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}return o.prototype.clear=e,o.prototype.delete=t,o.prototype.get=n,o.prototype.has=r,o.prototype.set=i,Kc=o}(),t=$u(),n=Wu();return Jc=function(){this.size=0,this.__data__={hash:new e,map:new(n||t),string:new e}}}(),t=function(){if(au)return ou;au=1;var e=Gu();return ou=function(t){var n=e(this,t).delete(t);return this.size-=n?1:0,n}}(),n=function(){if(lu)return su;lu=1;var e=Gu();return su=function(t){return e(this,t).get(t)}}(),r=function(){if(uu)return cu;uu=1;var e=Gu();return cu=function(t){return e(this,t).has(t)}}(),i=function(){if(fu)return du;fu=1;var e=Gu();return du=function(t,n){var r=e(this,t),i=r.size;return r.set(t,n),this.size+=r.size==i?0:1,this}}();function o(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var r=e[t];this.set(r[0],r[1])}}return o.prototype.clear=e,o.prototype.delete=t,o.prototype.get=n,o.prototype.has=r,o.prototype.set=i,hu=o}function Xu(){if(bu)return vu;bu=1;var e=$u(),t=function(){if(nc)return tc;nc=1;var e=$u();return tc=function(){this.__data__=new e,this.size=0}}(),n=ic?rc:(ic=1,rc=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n}),r=ac?oc:(ac=1,oc=function(e){return this.__data__.get(e)}),i=lc?sc:(lc=1,sc=function(e){return this.__data__.has(e)}),o=function(){if(mu)return gu;mu=1;var e=$u(),t=Wu(),n=Zu();return gu=function(r,i){var o=this.__data__;if(o instanceof e){var a=o.__data__;if(!t||a.length<199)return a.push([r,i]),this.size=++o.size,this;o=this.__data__=new n(a)}return o.set(r,i),this.size=o.size,this}}();function a(t){var n=this.__data__=new e(t);this.size=n.size}return a.prototype.clear=t,a.prototype.delete=n,a.prototype.get=r,a.prototype.has=i,a.prototype.set=o,vu=a}function Ku(){if(_u)return yu;_u=1;var e=Vu(),t=function(){try{var t=e(Object,"defineProperty");return t({},"",{}),t}catch(e){}}();return yu=t}function Qu(){if(xu)return wu;xu=1;var e=Ku();return wu=function(t,n,r){"__proto__"==n&&e?e(t,n,{configurable:!0,enumerable:!0,value:r,writable:!0}):t[n]=r},wu}function Ju(){if(Cu)return ku;Cu=1;var e=Qu(),t=ju();return ku=function(n,r,i){(void 0!==i&&!t(n[r],i)||void 0===i&&!(r in n))&&e(n,r,i)},ku}function ed(){if(Au)return Tu;Au=1;var e=(Mu||(Mu=1,Su=function(e){return function(t,n,r){for(var i=-1,o=Object(t),a=r(t),s=a.length;s--;){var l=a[e?s:++i];if(!1===n(o[l],l,o))break}return t}}),Su),t=e();return Tu=t}var td,nd,rd,id,od,ad,sd,ld,cd,ud,dd,fd,hd,pd,gd,md,vd,bd,yd,_d,wd,xd,kd,Cd,Sd,Md,Td,Ad,Nd,Od,Pd,Ld,Ed,Fd={exports:{}};function jd(){if(rd)return nd;rd=1;var e=Ru().Uint8Array;return nd=e}function zd(){return hd?fd:(hd=1,fd=function(e,t){return function(n){return e(t(n))}})}function $d(){if(gd)return pd;gd=1;var e=zd()(Object.getPrototypeOf,Object);return pd=e}function Bd(){if(vd)return md;vd=1;var e=Object.prototype;return md=function(t){var n=t&&t.constructor;return t===("function"==typeof n&&n.prototype||e)}}function Rd(){return wd?_d:(wd=1,_d=function(e){return null!=e&&"object"==typeof e})}function Dd(){if(Sd)return Cd;Sd=1;var e=function(){if(kd)return xd;kd=1;var e=Iu(),t=Rd();return xd=function(n){return t(n)&&"[object Arguments]"==e(n)}}(),t=Rd(),n=Object.prototype,r=n.hasOwnProperty,i=n.propertyIsEnumerable,o=e(function(){return arguments}())?e:function(e){return t(e)&&r.call(e,"callee")&&!i.call(e,"callee")};return Cd=o}function Id(){if(Td)return Md;Td=1;var e=Array.isArray;return Md=e}function Ud(){return Nd?Ad:(Nd=1,Ad=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991})}function Hd(){if(Pd)return Od;Pd=1;var e=Hu(),t=Ud();return Od=function(n){return null!=n&&t(n.length)&&!e(n)}}function qd(){if(Ed)return Ld;Ed=1;var e=Hd(),t=Rd();return Ld=function(n){return t(n)&&e(n)}}var Vd,Wd,Yd,Gd,Zd,Xd,Kd,Qd,Jd,ef={exports:{}};function tf(){return Yd||(Yd=1,function(e,t){var n=Ru(),r=Wd?Vd:(Wd=1,Vd=function(){return!1}),i=t&&!t.nodeType&&t,o=i&&e&&!e.nodeType&&e,a=o&&o.exports===i?n.Buffer:void 0,s=(a?a.isBuffer:void 0)||r;e.exports=s}(ef,ef.exports)),ef.exports}function nf(){if(Zd)return Gd;Zd=1;var e=Iu(),t=$d(),n=Rd(),r=Function.prototype,i=Object.prototype,o=r.toString,a=i.hasOwnProperty,s=o.call(Object);return Gd=function(r){if(!n(r)||"[object Object]"!=e(r))return!1;var i=t(r);if(null===i)return!0;var l=a.call(i,"constructor")&&i.constructor;return"function"==typeof l&&l instanceof l&&o.call(l)==s}}function rf(){return Jd?Qd:(Jd=1,Qd=function(e){return function(t){return e(t)}})}var of,af,sf,lf,cf,uf,df,ff,hf,pf,gf,mf,vf,bf,yf,_f,wf,xf,kf,Cf,Sf,Mf,Tf,Af,Nf,Of,Pf,Lf,Ef,Ff,jf,zf,$f,Bf,Rf,Df,If,Uf,Hf,qf,Vf,Wf,Yf,Gf,Zf,Xf,Kf,Qf,Jf,eh={exports:{}};function th(){return of||(of=1,function(e,t){var n=Bu(),r=t&&!t.nodeType&&t,i=r&&e&&!e.nodeType&&e,o=i&&i.exports===r&&n.process,a=function(){try{return i&&i.require&&i.require("util").types||o&&o.binding&&o.binding("util")}catch(e){}}();e.exports=a}(eh,eh.exports)),eh.exports}function nh(){if(sf)return af;sf=1;var e=function(){if(Kd)return Xd;Kd=1;var e=Iu(),t=Ud(),n=Rd(),r={};return r["[object Float32Array]"]=r["[object Float64Array]"]=r["[object Int8Array]"]=r["[object Int16Array]"]=r["[object Int32Array]"]=r["[object Uint8Array]"]=r["[object Uint8ClampedArray]"]=r["[object Uint16Array]"]=r["[object Uint32Array]"]=!0,r["[object Arguments]"]=r["[object Array]"]=r["[object ArrayBuffer]"]=r["[object Boolean]"]=r["[object DataView]"]=r["[object Date]"]=r["[object Error]"]=r["[object Function]"]=r["[object Map]"]=r["[object Number]"]=r["[object Object]"]=r["[object RegExp]"]=r["[object Set]"]=r["[object String]"]=r["[object WeakMap]"]=!1,Xd=function(i){return n(i)&&t(i.length)&&!!r[e(i)]}}(),t=rf(),n=th(),r=n&&n.isTypedArray,i=r?t(r):e;return af=i}function rh(){return cf||(cf=1,lf=function(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]}),lf}function ih(){if(df)return uf;df=1;var e=Qu(),t=ju(),n=Object.prototype.hasOwnProperty;return uf=function(r,i,o){var a=r[i];n.call(r,i)&&t(a,o)&&(void 0!==o||i in r)||e(r,i,o)},uf}function oh(){if(vf)return mf;vf=1;var e=/^(?:0|[1-9]\d*)$/;return mf=function(t,n){var r=typeof t;return!!(n=null==n?9007199254740991:n)&&("number"==r||"symbol"!=r&&e.test(t))&&t>-1&&t%1==0&&t<n}}function ah(){if(yf)return bf;yf=1;var e=(gf||(gf=1,pf=function(e,t){for(var n=-1,r=Array(e);++n<e;)r[n]=t(n);return r}),pf),t=Dd(),n=Id(),r=tf(),i=oh(),o=nh(),a=Object.prototype.hasOwnProperty;return bf=function(s,l){var c=n(s),u=!c&&t(s),d=!c&&!u&&r(s),f=!c&&!u&&!d&&o(s),h=c||u||d||f,p=h?e(s.length,String):[],g=p.length;for(var m in s)!l&&!a.call(s,m)||h&&("length"==m||d&&("offset"==m||"parent"==m)||f&&("buffer"==m||"byteLength"==m||"byteOffset"==m)||i(m,g))||p.push(m);return p}}function sh(){if(Sf)return Cf;Sf=1;var e=ah(),t=function(){if(kf)return xf;kf=1;var e=Uu(),t=Bd(),n=(wf||(wf=1,_f=function(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t}),_f),r=Object.prototype.hasOwnProperty;return xf=function(i){if(!e(i))return n(i);var o=t(i),a=[];for(var s in i)("constructor"!=s||!o&&r.call(i,s))&&a.push(s);return a},xf}(),n=Hd();return Cf=function(r){return n(r)?e(r,!0):t(r)}}function lh(){return Ef?Lf:(Ef=1,Lf=function(e){return e})}function ch(){if($f)return zf;$f=1;var e=jf?Ff:(jf=1,Ff=function(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}),t=Math.max;return zf=function(n,r,i){return r=t(void 0===r?n.length-1:r,0),function(){for(var o=arguments,a=-1,s=t(o.length-r,0),l=Array(s);++a<s;)l[a]=o[r+a];a=-1;for(var c=Array(r+1);++a<r;)c[a]=o[a];return c[r]=i(l),e(n,this,c)}},zf}function uh(){if(Vf)return qf;Vf=1;var e=function(){if(If)return Df;If=1;var e=Rf?Bf:(Rf=1,Bf=function(e){return function(){return e}}),t=Ku(),n=lh();return Df=t?function(n,r){return t(n,"toString",{configurable:!0,enumerable:!1,value:e(r),writable:!0})}:n}(),t=function(){if(Hf)return Uf;Hf=1;var e=Date.now;return Uf=function(t){var n=0,r=0;return function(){var i=e(),o=16-(i-r);if(r=i,o>0){if(++n>=800)return arguments[0]}else n=0;return t.apply(void 0,arguments)}},Uf}(),n=t(e);return qf=n}function dh(){if(Yf)return Wf;Yf=1;var e=lh(),t=ch(),n=uh();return Wf=function(r,i){return n(t(r,i,e),r+"")}}function fh(){if(Zf)return Gf;Zf=1;var e=ju(),t=Hd(),n=oh(),r=Uu();return Gf=function(i,o,a){if(!r(a))return!1;var s=typeof o;return!!("number"==s?t(a)&&n(o,a.length):"string"==s&&o in a)&&e(a[o],i)},Gf}var hh,ph,gh,mh,vh,bh,yh,_h,wh,xh,kh,Ch,Sh,Mh,Th,Ah,Nh,Oh,Ph,Lh,Eh,Fh,jh,zh,$h=function(){if(Jf)return Qf;Jf=1;var e=function(){if(Pf)return Of;Pf=1;var e=Xu(),t=Ju(),n=ed(),r=function(){if(Nf)return Af;Nf=1;var e=Ju(),t=(td||(td=1,function(e,t){var n=Ru(),r=t&&!t.nodeType&&t,i=r&&e&&!e.nodeType&&e,o=i&&i.exports===r?n.Buffer:void 0,a=o?o.allocUnsafe:void 0;e.exports=function(e,t){if(t)return e.slice();var n=e.length,r=a?a(n):new e.constructor(n);return e.copy(r),r}}(Fd,Fd.exports)),Fd.exports),n=function(){if(sd)return ad;sd=1;var e=function(){if(od)return id;od=1;var e=jd();return id=function(t){var n=new t.constructor(t.byteLength);return new e(n).set(new e(t)),n}}();return ad=function(t,n){var r=n?e(t.buffer):t.buffer;return new t.constructor(r,t.byteOffset,t.length)}}(),r=(cd||(cd=1,ld=function(e,t){var n=-1,r=e.length;for(t||(t=Array(r));++n<r;)t[n]=e[n];return t}),ld),i=function(){if(yd)return bd;yd=1;var e=function(){if(dd)return ud;dd=1;var e=Uu(),t=Object.create,n=function(){function n(){}return function(r){if(!e(r))return{};if(t)return t(r);n.prototype=r;var i=new n;return n.prototype=void 0,i}}();return ud=n}(),t=$d(),n=Bd();return bd=function(r){return"function"!=typeof r.constructor||n(r)?{}:e(t(r))}}(),o=Dd(),a=Id(),s=qd(),l=tf(),c=Hu(),u=Uu(),d=nf(),f=nh(),h=rh(),p=function(){if(Tf)return Mf;Tf=1;var e=function(){if(hf)return ff;hf=1;var e=ih(),t=Qu();return ff=function(n,r,i,o){var a=!i;i||(i={});for(var s=-1,l=r.length;++s<l;){var c=r[s],u=o?o(i[c],n[c],c,i,n):void 0;void 0===u&&(u=n[c]),a?t(i,c,u):e(i,c,u)}return i},ff}(),t=sh();return Mf=function(n){return e(n,t(n))}}();return Af=function(g,m,v,b,y,_,w){var x=h(g,v),k=h(m,v),C=w.get(k);if(C)e(g,v,C);else{var S=_?_(x,k,v+"",g,m,w):void 0,M=void 0===S;if(M){var T=a(k),A=!T&&l(k),N=!T&&!A&&f(k);S=k,T||A||N?a(x)?S=x:s(x)?S=r(x):A?(M=!1,S=t(k,!0)):N?(M=!1,S=n(k,!0)):S=[]:d(k)||o(k)?(S=x,o(x)?S=p(x):u(x)&&!c(x)||(S=i(k))):M=!1}M&&(w.set(k,S),y(S,k,b,_,w),w.delete(k)),e(g,v,S)}},Af}(),i=Uu(),o=sh(),a=rh();return Of=function s(l,c,u,d,f){l!==c&&n(c,(function(n,o){if(f||(f=new e),i(n))r(l,c,o,u,s,d,f);else{var h=d?d(a(l,o),n,o+"",l,c,f):void 0;void 0===h&&(h=n),t(l,o,h)}}),o)},Of}(),t=function(){if(Kf)return Xf;Kf=1;var e=dh(),t=fh();return Xf=function(n){return e((function(e,r){var i=-1,o=r.length,a=o>1?r[o-1]:void 0,s=o>2?r[2]:void 0;for(a=n.length>3&&"function"==typeof a?(o--,a):void 0,s&&t(r[0],r[1],s)&&(a=o<3?void 0:a,o=1),e=Object(e);++i<o;){var l=r[i];l&&n(e,l,i,a)}return e}))},Xf}(),n=t((function(t,n,r){e(t,n,r)}));return Qf=n}(),Bh=_i($h);function Rh(){if(ph)return hh;ph=1;var e=Iu(),t=Rd();return hh=function(n){return"symbol"==typeof n||t(n)&&"[object Symbol]"==e(n)}}function Dh(){if(mh)return gh;mh=1;var e=Id(),t=Rh(),n=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,r=/^\w*$/;return gh=function(i,o){if(e(i))return!1;var a=typeof i;return!("number"!=a&&"symbol"!=a&&"boolean"!=a&&null!=i&&!t(i))||r.test(i)||!n.test(i)||null!=o&&i in Object(o)},gh}function Ih(){return Ch||(Ch=1,kh=function(e,t){for(var n=-1,r=null==e?0:e.length,i=Array(r);++n<r;)i[n]=t(e[n],n,e);return i}),kh}function Uh(){if(Ah)return Th;Ah=1;var e=function(){if(Mh)return Sh;Mh=1;var e=Du(),t=Ih(),n=Id(),r=Rh(),i=e?e.prototype:void 0,o=i?i.toString:void 0;return Sh=function e(i){if("string"==typeof i)return i;if(n(i))return t(i,e)+"";if(r(i))return o?o.call(i):"";var a=i+"";return"0"==a&&1/i==-1/0?"-0":a},Sh}();return Th=function(t){return null==t?"":e(t)}}function Hh(){if(Oh)return Nh;Oh=1;var e=Id(),t=Dh(),n=function(){if(xh)return wh;xh=1;var e=function(){if(_h)return yh;_h=1;var e=function(){if(bh)return vh;bh=1;var e=Zu();function t(n,r){if("function"!=typeof n||null!=r&&"function"!=typeof r)throw new TypeError("Expected a function");var i=function(){var e=arguments,t=r?r.apply(this,e):e[0],o=i.cache;if(o.has(t))return o.get(t);var a=n.apply(this,e);return i.cache=o.set(t,a)||o,a};return i.cache=new(t.Cache||e),i}return t.Cache=e,vh=t}();return yh=function(t){var n=e(t,(function(e){return 500===r.size&&r.clear(),e})),r=n.cache;return n}}(),t=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,n=/\\(\\)?/g,r=e((function(e){var r=[];return 46===e.charCodeAt(0)&&r.push(""),e.replace(t,(function(e,t,i,o){r.push(i?o.replace(n,"$1"):t||e)})),r}));return wh=r}(),r=Uh();return Nh=function(i,o){return e(i)?i:t(i,o)?[i]:n(r(i))}}function qh(){if(Lh)return Ph;Lh=1;var e=Rh();return Ph=function(t){if("string"==typeof t||e(t))return t;var n=t+"";return"0"==n&&1/t==-1/0?"-0":n}}function Vh(){if(Fh)return Eh;Fh=1;var e=Hh(),t=qh();return Eh=function(n,r){for(var i=0,o=(r=e(r,n)).length;null!=n&&i<o;)n=n[t(r[i++])];return i&&i==o?n:void 0},Eh}function Wh(){if(zh)return jh;zh=1;var e=Vh();return jh=function(t,n,r){var i=null==t?void 0:e(t,n);return void 0===i?r:i},jh}var Yh,Gh,Zh,Xh,Kh=_i(Wh());function Qh(){if(Gh)return Yh;Gh=1;var e=ih(),t=Hh(),n=oh(),r=Uu(),i=qh();return Yh=function(o,a,s,l){if(!r(o))return o;for(var c=-1,u=(a=t(a,o)).length,d=u-1,f=o;null!=f&&++c<u;){var h=i(a[c]),p=s;if("__proto__"===h||"constructor"===h||"prototype"===h)return o;if(c!=d){var g=f[h];void 0===(p=l?l(g,h,f):void 0)&&(p=r(g)?g:n(a[c+1])?[]:{})}e(f,h,p),f=f[h]}return o},Yh}var Jh=function(){if(Xh)return Zh;Xh=1;var e=Qh();return Zh=function(t,n,r){return null==t?t:e(t,n,r)},Zh}(),ep=_i(Jh);function tp(e,t,n){e.prototype=t.prototype=n,n.constructor=e}function np(e,t){var n=Object.create(e.prototype);for(var r in t)n[r]=t[r];return n}function rp(){}var ip=.7,op=1/ip,ap="\\s*([+-]?\\d+)\\s*",sp="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",lp="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",cp=/^#([0-9a-f]{3,8})$/,up=new RegExp(`^rgb\\(${ap},${ap},${ap}\\)$`),dp=new RegExp(`^rgb\\(${lp},${lp},${lp}\\)$`),fp=new RegExp(`^rgba\\(${ap},${ap},${ap},${sp}\\)$`),hp=new RegExp(`^rgba\\(${lp},${lp},${lp},${sp}\\)$`),pp=new RegExp(`^hsl\\(${sp},${lp},${lp}\\)$`),gp=new RegExp(`^hsla\\(${sp},${lp},${lp},${sp}\\)$`),mp={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function vp(){return this.rgb().formatHex()}function bp(){return this.rgb().formatRgb()}function yp(e){var t,n;return e=(e+"").trim().toLowerCase(),(t=cp.exec(e))?(n=t[1].length,t=parseInt(t[1],16),6===n?_p(t):3===n?new Cp(t>>8&15|t>>4&240,t>>4&15|240&t,(15&t)<<4|15&t,1):8===n?wp(t>>24&255,t>>16&255,t>>8&255,(255&t)/255):4===n?wp(t>>12&15|t>>8&240,t>>8&15|t>>4&240,t>>4&15|240&t,((15&t)<<4|15&t)/255):null):(t=up.exec(e))?new Cp(t[1],t[2],t[3],1):(t=dp.exec(e))?new Cp(255*t[1]/100,255*t[2]/100,255*t[3]/100,1):(t=fp.exec(e))?wp(t[1],t[2],t[3],t[4]):(t=hp.exec(e))?wp(255*t[1]/100,255*t[2]/100,255*t[3]/100,t[4]):(t=pp.exec(e))?Op(t[1],t[2]/100,t[3]/100,1):(t=gp.exec(e))?Op(t[1],t[2]/100,t[3]/100,t[4]):mp.hasOwnProperty(e)?_p(mp[e]):"transparent"===e?new Cp(NaN,NaN,NaN,0):null}function _p(e){return new Cp(e>>16&255,e>>8&255,255&e,1)}function wp(e,t,n,r){return r<=0&&(e=t=n=NaN),new Cp(e,t,n,r)}function xp(e){return e instanceof rp||(e=yp(e)),e?new Cp((e=e.rgb()).r,e.g,e.b,e.opacity):new Cp}function kp(e,t,n,r){return 1===arguments.length?xp(e):new Cp(e,t,n,null==r?1:r)}function Cp(e,t,n,r){this.r=+e,this.g=+t,this.b=+n,this.opacity=+r}function Sp(){return`#${Np(this.r)}${Np(this.g)}${Np(this.b)}`}function Mp(){const e=Tp(this.opacity);return`${1===e?"rgb(":"rgba("}${Ap(this.r)}, ${Ap(this.g)}, ${Ap(this.b)}${1===e?")":`, ${e})`}`}function Tp(e){return isNaN(e)?1:Math.max(0,Math.min(1,e))}function Ap(e){return Math.max(0,Math.min(255,Math.round(e)||0))}function Np(e){return((e=Ap(e))<16?"0":"")+e.toString(16)}function Op(e,t,n,r){return r<=0?e=t=n=NaN:n<=0||n>=1?e=t=NaN:t<=0&&(e=NaN),new Lp(e,t,n,r)}function Pp(e){if(e instanceof Lp)return new Lp(e.h,e.s,e.l,e.opacity);if(e instanceof rp||(e=yp(e)),!e)return new Lp;if(e instanceof Lp)return e;var t=(e=e.rgb()).r/255,n=e.g/255,r=e.b/255,i=Math.min(t,n,r),o=Math.max(t,n,r),a=NaN,s=o-i,l=(o+i)/2;return s?(a=t===o?(n-r)/s+6*(n<r):n===o?(r-t)/s+2:(t-n)/s+4,s/=l<.5?o+i:2-o-i,a*=60):s=l>0&&l<1?0:a,new Lp(a,s,l,e.opacity)}function Lp(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}function Ep(e){return(e=(e||0)%360)<0?e+360:e}function Fp(e){return Math.max(0,Math.min(1,e||0))}function jp(e,t,n){return 255*(e<60?t+(n-t)*e/60:e<180?n:e<240?t+(n-t)*(240-e)/60:t)}tp(rp,yp,{copy(e){return Object.assign(new this.constructor,this,e)},displayable(){return this.rgb().displayable()},hex:vp,formatHex:vp,formatHex8:function(){return this.rgb().formatHex8()},formatHsl:function(){return Pp(this).formatHsl()},formatRgb:bp,toString:bp}),tp(Cp,kp,np(rp,{brighter(e){return e=null==e?op:Math.pow(op,e),new Cp(this.r*e,this.g*e,this.b*e,this.opacity)},darker(e){return e=null==e?ip:Math.pow(ip,e),new Cp(this.r*e,this.g*e,this.b*e,this.opacity)},rgb(){return this},clamp(){return new Cp(Ap(this.r),Ap(this.g),Ap(this.b),Tp(this.opacity))},displayable(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:Sp,formatHex:Sp,formatHex8:function(){return`#${Np(this.r)}${Np(this.g)}${Np(this.b)}${Np(255*(isNaN(this.opacity)?1:this.opacity))}`},formatRgb:Mp,toString:Mp})),tp(Lp,(function(e,t,n,r){return 1===arguments.length?Pp(e):new Lp(e,t,n,null==r?1:r)}),np(rp,{brighter(e){return e=null==e?op:Math.pow(op,e),new Lp(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=null==e?ip:Math.pow(ip,e),new Lp(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=this.h%360+360*(this.h<0),t=isNaN(e)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*t,i=2*n-r;return new Cp(jp(e>=240?e-240:e+120,i,r),jp(e,i,r),jp(e<120?e+240:e-120,i,r),this.opacity)},clamp(){return new Lp(Ep(this.h),Fp(this.s),Fp(this.l),Tp(this.opacity))},displayable(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl(){const e=Tp(this.opacity);return`${1===e?"hsl(":"hsla("}${Ep(this.h)}, ${100*Fp(this.s)}%, ${100*Fp(this.l)}%${1===e?")":`, ${e})`}`}}));const zp=Math.PI/180,$p=180/Math.PI;var Bp=-.14861,Rp=1.78277,Dp=-.29227,Ip=-.90649,Up=1.97294,Hp=Up*Ip,qp=Up*Rp,Vp=Rp*Dp-Ip*Bp;function Wp(e,t,n,r){return 1===arguments.length?function(e){if(e instanceof Yp)return new Yp(e.h,e.s,e.l,e.opacity);e instanceof Cp||(e=xp(e));var t=e.r/255,n=e.g/255,r=e.b/255,i=(Vp*r+Hp*t-qp*n)/(Vp+Hp-qp),o=r-i,a=(Up*(n-i)-Dp*o)/Ip,s=Math.sqrt(a*a+o*o)/(Up*i*(1-i)),l=s?Math.atan2(a,o)*$p-120:NaN;return new Yp(l<0?l+360:l,s,i,e.opacity)}(e):new Yp(e,t,n,null==r?1:r)}function Yp(e,t,n,r){this.h=+e,this.s=+t,this.l=+n,this.opacity=+r}tp(Yp,Wp,np(rp,{brighter(e){return e=null==e?op:Math.pow(op,e),new Yp(this.h,this.s,this.l*e,this.opacity)},darker(e){return e=null==e?ip:Math.pow(ip,e),new Yp(this.h,this.s,this.l*e,this.opacity)},rgb(){var e=isNaN(this.h)?0:(this.h+120)*zp,t=+this.l,n=isNaN(this.s)?0:this.s*t*(1-t),r=Math.cos(e),i=Math.sin(e);return new Cp(255*(t+n*(Bp*r+Rp*i)),255*(t+n*(Dp*r+Ip*i)),255*(t+n*(Up*r)),this.opacity)}}));var Gp=e=>()=>e;function Zp(e,t){return function(n){return e+n*t}}function Xp(e,t){var n=t-e;return n?Zp(e,n):Gp(isNaN(e)?t:e)}var Kp,Qp=function e(t){var n=function(e){return 1==(e=+e)?Xp:function(t,n){return n-t?function(e,t,n){return e=Math.pow(e,n),t=Math.pow(t,n)-e,n=1/n,function(r){return Math.pow(e+r*t,n)}}(t,n,e):Gp(isNaN(t)?n:t)}}(t);function r(e,t){var r=n((e=kp(e)).r,(t=kp(t)).r),i=n(e.g,t.g),o=n(e.b,t.b),a=Xp(e.opacity,t.opacity);return function(t){return e.r=r(t),e.g=i(t),e.b=o(t),e.opacity=a(t),e+""}}return r.gamma=e,r}(1),Jp=(Kp=function(e){var t=e.length-1;return function(n){var r=n<=0?n=0:n>=1?(n=1,t-1):Math.floor(n*t),i=e[r],o=e[r+1],a=r>0?e[r-1]:2*i-o,s=r<t-1?e[r+2]:2*o-i;return function(e,t,n,r,i){var o=e*e,a=o*e;return((1-3*e+3*o-a)*t+(4-6*o+3*a)*n+(1+3*e+3*o-3*a)*r+a*i)/6}((n-r/t)*t,a,i,o,s)}},function(e){var t,n,r=e.length,i=new Array(r),o=new Array(r),a=new Array(r);for(t=0;t<r;++t)n=kp(e[t]),i[t]=n.r||0,o[t]=n.g||0,a[t]=n.b||0;return i=Kp(i),o=Kp(o),a=Kp(a),n.opacity=1,function(e){return n.r=i(e),n.g=o(e),n.b=a(e),n+""}});function eg(e,t){t||(t=[]);var n,r=e?Math.min(t.length,e.length):0,i=t.slice();return function(o){for(n=0;n<r;++n)i[n]=e[n]*(1-o)+t[n]*o;return i}}function tg(e,t){var n,r=t?t.length:0,i=e?Math.min(r,e.length):0,o=new Array(i),a=new Array(r);for(n=0;n<i;++n)o[n]=lg(e[n],t[n]);for(;n<r;++n)a[n]=t[n];return function(e){for(n=0;n<i;++n)a[n]=o[n](e);return a}}function ng(e,t){var n=new Date;return e=+e,t=+t,function(r){return n.setTime(e*(1-r)+t*r),n}}function rg(e,t){return e=+e,t=+t,function(n){return e*(1-n)+t*n}}function ig(e,t){var n,r={},i={};for(n in null!==e&&"object"==typeof e||(e={}),null!==t&&"object"==typeof t||(t={}),t)n in e?r[n]=lg(e[n],t[n]):i[n]=t[n];return function(e){for(n in r)i[n]=r[n](e);return i}}var og=/[-+]?(?:\d+\.?\d*|\.?\d+)(?:[eE][-+]?\d+)?/g,ag=new RegExp(og.source,"g");function sg(e,t){var n,r,i,o=og.lastIndex=ag.lastIndex=0,a=-1,s=[],l=[];for(e+="",t+="";(n=og.exec(e))&&(r=ag.exec(t));)(i=r.index)>o&&(i=t.slice(o,i),s[a]?s[a]+=i:s[++a]=i),(n=n[0])===(r=r[0])?s[a]?s[a]+=r:s[++a]=r:(s[++a]=null,l.push({i:a,x:rg(n,r)})),o=ag.lastIndex;return o<t.length&&(i=t.slice(o),s[a]?s[a]+=i:s[++a]=i),s.length<2?l[0]?function(e){return function(t){return e(t)+""}}(l[0].x):function(e){return function(){return e}}(t):(t=l.length,function(e){for(var n,r=0;r<t;++r)s[(n=l[r]).i]=n.x(e);return s.join("")})}function lg(e,t){var n,r=typeof t;return null==t||"boolean"===r?Gp(t):("number"===r?rg:"string"===r?(n=yp(t))?(t=n,Qp):sg:t instanceof yp?Qp:t instanceof Date?ng:function(e){return ArrayBuffer.isView(e)&&!(e instanceof DataView)}(t)?eg:Array.isArray(t)?tg:"function"!=typeof t.valueOf&&"function"!=typeof t.toString||isNaN(t)?ig:rg)(e,t)}function cg(e,t){return e=+e,t=+t,function(n){return Math.round(e*(1-n)+t*n)}}function ug(e){return function t(n){function r(t,r){var i=e((t=Wp(t)).h,(r=Wp(r)).h),o=Xp(t.s,r.s),a=Xp(t.l,r.l),s=Xp(t.opacity,r.opacity);return function(e){return t.h=i(e),t.s=o(e),t.l=a(Math.pow(e,n)),t.opacity=s(e),t+""}}return n=+n,r.gamma=t,r}(1)}ug((function(e,t){var n=t-e;return n?Zp(e,n>180||n<-180?n-360*Math.round(n/360):n):Gp(isNaN(e)?t:e)}));var dg,fg,hg,pg,gg=ug(Xp),mg=_i(function(){if(fg)return dg;fg=1;var e=Iu(),t=Id(),n=Rd();return dg=function(r){return"string"==typeof r||!t(r)&&n(r)&&"[object String]"==e(r)}}()),vg=_i((pg||(pg=1,hg=function(e){var t=null==e?0:e.length;return t?e[t-1]:void 0}),hg));function bg(e,t){return null==e||null==t?NaN:e<t?-1:e>t?1:e>=t?0:NaN}function yg(e,t){return null==e||null==t?NaN:t<e?-1:t>e?1:t>=e?0:NaN}function _g(e){let t,n,r;function i(e,r,i=0,o=e.length){if(i<o){if(0!==t(r,r))return o;do{const t=i+o>>>1;n(e[t],r)<0?i=t+1:o=t}while(i<o)}return i}return 2!==e.length?(t=bg,n=(t,n)=>bg(e(t),n),r=(t,n)=>e(t)-n):(t=e===bg||e===yg?e:wg,n=e,r=e),{left:i,center:function(e,t,n=0,o=e.length){const a=i(e,t,n,o-1);return a>n&&r(e[a-1],t)>-r(e[a],t)?a-1:a},right:function(e,r,i=0,o=e.length){if(i<o){if(0!==t(r,r))return o;do{const t=i+o>>>1;n(e[t],r)<=0?i=t+1:o=t}while(i<o)}return i}}}function wg(){return 0}Id();const xg=_g(bg).right;_g((function(e){return null===e?NaN:+e})).center;class kg extends Map{constructor(e,t=Sg){if(super(),Object.defineProperties(this,{_intern:{value:new Map},_key:{value:t}}),null!=e)for(const[t,n]of e)this.set(t,n)}get(e){return super.get(Cg(this,e))}has(e){return super.has(Cg(this,e))}set(e,t){return super.set(function({_intern:e,_key:t},n){const r=t(n);return e.has(r)?e.get(r):(e.set(r,n),n)}(this,e),t)}delete(e){return super.delete(function({_intern:e,_key:t},n){const r=t(n);return e.has(r)&&(n=e.get(r),e.delete(r)),n}(this,e))}}function Cg({_intern:e,_key:t},n){const r=t(n);return e.has(r)?e.get(r):n}function Sg(e){return null!==e&&"object"==typeof e?e.valueOf():e}const Mg=Math.sqrt(50),Tg=Math.sqrt(10),Ag=Math.sqrt(2);function Ng(e,t,n){const r=(t-e)/Math.max(0,n),i=Math.floor(Math.log10(r)),o=r/Math.pow(10,i),a=o>=Mg?10:o>=Tg?5:o>=Ag?2:1;let s,l,c;return i<0?(c=Math.pow(10,-i)/a,s=Math.round(e*c),l=Math.round(t*c),s/c<e&&++s,l/c>t&&--l,c=-c):(c=Math.pow(10,i)*a,s=Math.round(e/c),l=Math.round(t/c),s*c<e&&++s,l*c>t&&--l),l<s&&.5<=n&&n<2?Ng(e,t,2*n):[s,l,c]}function Og(e,t,n){if(!((n=+n)>0))return[];if((e=+e)==(t=+t))return[e];const r=t<e,[i,o,a]=r?Ng(t,e,n):Ng(e,t,n);if(!(o>=i))return[];const s=o-i+1,l=new Array(s);if(r)if(a<0)for(let e=0;e<s;++e)l[e]=(o-e)/-a;else for(let e=0;e<s;++e)l[e]=(o-e)*a;else if(a<0)for(let e=0;e<s;++e)l[e]=(i+e)/-a;else for(let e=0;e<s;++e)l[e]=(i+e)*a;return l}function Pg(e,t,n){return Ng(e=+e,t=+t,n=+n)[2]}function Lg(e,t,n){n=+n;const r=(t=+t)<(e=+e),i=r?Pg(t,e,n):Pg(e,t,n);return(r?-1:1)*(i<0?1/-i:i)}function Eg(e,t){switch(arguments.length){case 0:break;case 1:this.range(e);break;default:this.range(t).domain(e)}return this}const Fg=Symbol("implicit");function jg(){var e=new kg,t=[],n=[],r=Fg;function i(i){let o=e.get(i);if(void 0===o){if(r!==Fg)return r;e.set(i,o=t.push(i)-1)}return n[o%n.length]}return i.domain=function(n){if(!arguments.length)return t.slice();t=[],e=new kg;for(const r of n)e.has(r)||e.set(r,t.push(r)-1);return i},i.range=function(e){return arguments.length?(n=Array.from(e),i):n.slice()},i.unknown=function(e){return arguments.length?(r=e,i):r},i.copy=function(){return jg(t,n).unknown(r)},Eg.apply(i,arguments),i}function zg(){var e,t,n=jg().unknown(void 0),r=n.domain,i=n.range,o=0,a=1,s=!1,l=0,c=0,u=.5;function d(){var n=r().length,d=a<o,f=d?a:o,h=d?o:a;e=(h-f)/Math.max(1,n-l+2*c),s&&(e=Math.floor(e)),f+=(h-f-e*(n-l))*u,t=e*(1-l),s&&(f=Math.round(f),t=Math.round(t));var p=function(e,t,n){e=+e,t=+t,n=(i=arguments.length)<2?(t=e,e=0,1):i<3?1:+n;for(var r=-1,i=0|Math.max(0,Math.ceil((t-e)/n)),o=new Array(i);++r<i;)o[r]=e+r*n;return o}(n).map((function(t){return f+e*t}));return i(d?p.reverse():p)}return delete n.unknown,n.domain=function(e){return arguments.length?(r(e),d()):r()},n.range=function(e){return arguments.length?([o,a]=e,o=+o,a=+a,d()):[o,a]},n.rangeRound=function(e){return[o,a]=e,o=+o,a=+a,s=!0,d()},n.bandwidth=function(){return t},n.step=function(){return e},n.round=function(e){return arguments.length?(s=!!e,d()):s},n.padding=function(e){return arguments.length?(l=Math.min(1,c=+e),d()):l},n.paddingInner=function(e){return arguments.length?(l=Math.min(1,e),d()):l},n.paddingOuter=function(e){return arguments.length?(c=+e,d()):c},n.align=function(e){return arguments.length?(u=Math.max(0,Math.min(1,e)),d()):u},n.copy=function(){return zg(r(),[o,a]).round(s).paddingInner(l).paddingOuter(c).align(u)},Eg.apply(d(),arguments)}function $g(e){var t=e.copy;return e.padding=e.paddingOuter,delete e.paddingInner,delete e.paddingOuter,e.copy=function(){return $g(t())},e}function Bg(){return $g(zg.apply(null,arguments).paddingInner(1))}function Rg(e){return+e}var Dg=[0,1];function Ig(e){return e}function Ug(e,t){return(t-=e=+e)?function(n){return(n-e)/t}:function(e){return function(){return e}}(isNaN(t)?NaN:.5)}function Hg(e,t,n){var r=e[0],i=e[1],o=t[0],a=t[1];return i<r?(r=Ug(i,r),o=n(a,o)):(r=Ug(r,i),o=n(o,a)),function(e){return o(r(e))}}function qg(e,t,n){var r=Math.min(e.length,t.length)-1,i=new Array(r),o=new Array(r),a=-1;for(e[r]<e[0]&&(e=e.slice().reverse(),t=t.slice().reverse());++a<r;)i[a]=Ug(e[a],e[a+1]),o[a]=n(t[a],t[a+1]);return function(t){var n=xg(e,t,1,r)-1;return o[n](i[n](t))}}function Vg(e,t){return t.domain(e.domain()).range(e.range()).interpolate(e.interpolate()).clamp(e.clamp()).unknown(e.unknown())}function Wg(){var e,t,n,r,i,o,a=Dg,s=Dg,l=lg,c=Ig;function u(){var e=Math.min(a.length,s.length);return c!==Ig&&(c=function(e,t){var n;return e>t&&(n=e,e=t,t=n),function(n){return Math.max(e,Math.min(t,n))}}(a[0],a[e-1])),r=e>2?qg:Hg,i=o=null,d}function d(t){return null==t||isNaN(t=+t)?n:(i||(i=r(a.map(e),s,l)))(e(c(t)))}return d.invert=function(n){return c(t((o||(o=r(s,a.map(e),rg)))(n)))},d.domain=function(e){return arguments.length?(a=Array.from(e,Rg),u()):a.slice()},d.range=function(e){return arguments.length?(s=Array.from(e),u()):s.slice()},d.rangeRound=function(e){return s=Array.from(e),l=cg,u()},d.clamp=function(e){return arguments.length?(c=!!e||Ig,u()):c!==Ig},d.interpolate=function(e){return arguments.length?(l=e,u()):l},d.unknown=function(e){return arguments.length?(n=e,d):n},function(n,r){return e=n,t=r,u()}}function Yg(){return Wg()(Ig,Ig)}function Gg(e,t){if((n=(e=t?e.toExponential(t-1):e.toExponential()).indexOf("e"))<0)return null;var n,r=e.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+e.slice(n+1)]}function Zg(e){return(e=Gg(Math.abs(e)))?e[1]:NaN}var Xg,Kg=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Qg(e){if(!(t=Kg.exec(e)))throw new Error("invalid format: "+e);var t;return new Jg({fill:t[1],align:t[2],sign:t[3],symbol:t[4],zero:t[5],width:t[6],comma:t[7],precision:t[8]&&t[8].slice(1),trim:t[9],type:t[10]})}function Jg(e){this.fill=void 0===e.fill?" ":e.fill+"",this.align=void 0===e.align?">":e.align+"",this.sign=void 0===e.sign?"-":e.sign+"",this.symbol=void 0===e.symbol?"":e.symbol+"",this.zero=!!e.zero,this.width=void 0===e.width?void 0:+e.width,this.comma=!!e.comma,this.precision=void 0===e.precision?void 0:+e.precision,this.trim=!!e.trim,this.type=void 0===e.type?"":e.type+""}function em(e,t){var n=Gg(e,t);if(!n)return e+"";var r=n[0],i=n[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}Qg.prototype=Jg.prototype,Jg.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var tm={"%":(e,t)=>(100*e).toFixed(t),b:e=>Math.round(e).toString(2),c:e=>e+"",d:function(e){return Math.abs(e=Math.round(e))>=1e21?e.toLocaleString("en").replace(/,/g,""):e.toString(10)},e:(e,t)=>e.toExponential(t),f:(e,t)=>e.toFixed(t),g:(e,t)=>e.toPrecision(t),o:e=>Math.round(e).toString(8),p:(e,t)=>em(100*e,t),r:em,s:function(e,t){var n=Gg(e,t);if(!n)return e+"";var r=n[0],i=n[1],o=i-(Xg=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Gg(e,Math.max(0,t+o-1))[0]},X:e=>Math.round(e).toString(16).toUpperCase(),x:e=>Math.round(e).toString(16)};function nm(e){return e}var rm,im,om,am=Array.prototype.map,sm=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];function lm(e){var t=e.domain;return e.ticks=function(e){var n=t();return Og(n[0],n[n.length-1],null==e?10:e)},e.tickFormat=function(e,n){var r=t();return function(e,t,n,r){var i,o=Lg(e,t,n);switch((r=Qg(null==r?",f":r)).type){case"s":var a=Math.max(Math.abs(e),Math.abs(t));return null!=r.precision||isNaN(i=function(e,t){return Math.max(0,3*Math.max(-8,Math.min(8,Math.floor(Zg(t)/3)))-Zg(Math.abs(e)))}(o,a))||(r.precision=i),om(r,a);case"":case"e":case"g":case"p":case"r":null!=r.precision||isNaN(i=function(e,t){return e=Math.abs(e),t=Math.abs(t)-e,Math.max(0,Zg(t)-Zg(e))+1}(o,Math.max(Math.abs(e),Math.abs(t))))||(r.precision=i-("e"===r.type));break;case"f":case"%":null!=r.precision||isNaN(i=function(e){return Math.max(0,-Zg(Math.abs(e)))}(o))||(r.precision=i-2*("%"===r.type))}return im(r)}(r[0],r[r.length-1],null==e?10:e,n)},e.nice=function(n){null==n&&(n=10);var r,i,o=t(),a=0,s=o.length-1,l=o[a],c=o[s],u=10;for(c<l&&(i=l,l=c,c=i,i=a,a=s,s=i);u-- >0;){if((i=Pg(l,c,n))===r)return o[a]=l,o[s]=c,t(o);if(i>0)l=Math.floor(l/i)*i,c=Math.ceil(c/i)*i;else{if(!(i<0))break;l=Math.ceil(l*i)/i,c=Math.floor(c*i)/i}r=i}return e},e}function cm(){var e=Yg();return e.copy=function(){return Vg(e,cm())},Eg.apply(e,arguments),lm(e)}function um(e,t){var n,r=0,i=(e=e.slice()).length-1,o=e[r],a=e[i];return a<o&&(n=r,r=i,i=n,n=o,o=a,a=n),e[r]=t.floor(o),e[i]=t.ceil(a),e}function dm(e){return Math.log(e)}function fm(e){return Math.exp(e)}function hm(e){return-Math.log(-e)}function pm(e){return-Math.exp(-e)}function gm(e){return isFinite(e)?+("1e"+e):e<0?0:e}function mm(e){return(t,n)=>-e(-t,n)}function vm(){const e=function(e){const t=e(dm,fm),n=t.domain;let r,i,o=10;function a(){return r=function(e){return e===Math.E?Math.log:10===e&&Math.log10||2===e&&Math.log2||(e=Math.log(e),t=>Math.log(t)/e)}(o),i=function(e){return 10===e?gm:e===Math.E?Math.exp:t=>Math.pow(e,t)}(o),n()[0]<0?(r=mm(r),i=mm(i),e(hm,pm)):e(dm,fm),t}return t.base=function(e){return arguments.length?(o=+e,a()):o},t.domain=function(e){return arguments.length?(n(e),a()):n()},t.ticks=e=>{const t=n();let a=t[0],s=t[t.length-1];const l=s<a;l&&([a,s]=[s,a]);let c,u,d=r(a),f=r(s);const h=null==e?10:+e;let p=[];if(!(o%1)&&f-d<h){if(d=Math.floor(d),f=Math.ceil(f),a>0){for(;d<=f;++d)for(c=1;c<o;++c)if(u=d<0?c/i(-d):c*i(d),!(u<a)){if(u>s)break;p.push(u)}}else for(;d<=f;++d)for(c=o-1;c>=1;--c)if(u=d>0?c/i(-d):c*i(d),!(u<a)){if(u>s)break;p.push(u)}2*p.length<h&&(p=Og(a,s,h))}else p=Og(d,f,Math.min(f-d,h)).map(i);return l?p.reverse():p},t.tickFormat=(e,n)=>{if(null==e&&(e=10),null==n&&(n=10===o?"s":","),"function"!=typeof n&&(o%1||null!=(n=Qg(n)).precision||(n.trim=!0),n=im(n)),e===1/0)return n;const a=Math.max(1,o*e/t.ticks().length);return e=>{let t=e/i(Math.round(r(e)));return t*o<o-.5&&(t*=o),t<=a?n(e):""}},t.nice=()=>n(um(n(),{floor:e=>i(Math.floor(r(e))),ceil:e=>i(Math.ceil(r(e)))})),t}(Wg()).domain([1,10]);return e.copy=()=>Vg(e,vm()).base(e.base()),Eg.apply(e,arguments),e}function bm(e){return function(t){return Math.sign(t)*Math.log1p(Math.abs(t/e))}}function ym(e){return function(t){return Math.sign(t)*Math.expm1(Math.abs(t))*e}}function _m(){var e=function(e){var t=1,n=e(bm(t),ym(t));return n.constant=function(n){return arguments.length?e(bm(t=+n),ym(t)):t},lm(n)}(Wg());return e.copy=function(){return Vg(e,_m()).constant(e.constant())},Eg.apply(e,arguments)}rm=function(e){var t,n,r=void 0===e.grouping||void 0===e.thousands?nm:(t=am.call(e.grouping,Number),n=e.thousands+"",function(e,r){for(var i=e.length,o=[],a=0,s=t[0],l=0;i>0&&s>0&&(l+s+1>r&&(s=Math.max(1,r-l)),o.push(e.substring(i-=s,i+s)),!((l+=s+1)>r));)s=t[a=(a+1)%t.length];return o.reverse().join(n)}),i=void 0===e.currency?"":e.currency[0]+"",o=void 0===e.currency?"":e.currency[1]+"",a=void 0===e.decimal?".":e.decimal+"",s=void 0===e.numerals?nm:function(e){return function(t){return t.replace(/[0-9]/g,(function(t){return e[+t]}))}}(am.call(e.numerals,String)),l=void 0===e.percent?"%":e.percent+"",c=void 0===e.minus?"−":e.minus+"",u=void 0===e.nan?"NaN":e.nan+"";function d(e){var t=(e=Qg(e)).fill,n=e.align,d=e.sign,f=e.symbol,h=e.zero,p=e.width,g=e.comma,m=e.precision,v=e.trim,b=e.type;"n"===b?(g=!0,b="g"):tm[b]||(void 0===m&&(m=12),v=!0,b="g"),(h||"0"===t&&"="===n)&&(h=!0,t="0",n="=");var y="$"===f?i:"#"===f&&/[boxX]/.test(b)?"0"+b.toLowerCase():"",_="$"===f?o:/[%p]/.test(b)?l:"",w=tm[b],x=/[defgprs%]/.test(b);function k(e){var i,o,l,f=y,k=_;if("c"===b)k=w(e)+k,e="";else{var C=(e=+e)<0||1/e<0;if(e=isNaN(e)?u:w(Math.abs(e),m),v&&(e=function(e){e:for(var t,n=e.length,r=1,i=-1;r<n;++r)switch(e[r]){case".":i=t=r;break;case"0":0===i&&(i=r),t=r;break;default:if(!+e[r])break e;i>0&&(i=0)}return i>0?e.slice(0,i)+e.slice(t+1):e}(e)),C&&0==+e&&"+"!==d&&(C=!1),f=(C?"("===d?d:c:"-"===d||"("===d?"":d)+f,k=("s"===b?sm[8+Xg/3]:"")+k+(C&&"("===d?")":""),x)for(i=-1,o=e.length;++i<o;)if(48>(l=e.charCodeAt(i))||l>57){k=(46===l?a+e.slice(i+1):e.slice(i))+k,e=e.slice(0,i);break}}g&&!h&&(e=r(e,1/0));var S=f.length+e.length+k.length,M=S<p?new Array(p-S+1).join(t):"";switch(g&&h&&(e=r(M+e,M.length?p-k.length:1/0),M=""),n){case"<":e=f+e+k+M;break;case"=":e=f+M+e+k;break;case"^":e=M.slice(0,S=M.length>>1)+f+e+k+M.slice(S);break;default:e=M+f+e+k}return s(e)}return m=void 0===m?6:/[gprs]/.test(b)?Math.max(1,Math.min(21,m)):Math.max(0,Math.min(20,m)),k.toString=function(){return e+""},k}return{format:d,formatPrefix:function(e,t){var n=d(((e=Qg(e)).type="f",e)),r=3*Math.max(-8,Math.min(8,Math.floor(Zg(t)/3))),i=Math.pow(10,-r),o=sm[8+r/3];return function(e){return n(i*e)+o}}}}({thousands:",",grouping:[3],currency:["$",""]}),im=rm.format,om=rm.formatPrefix;const wm=new Date,xm=new Date;function km(e,t,n,r){function i(t){return e(t=0===arguments.length?new Date:new Date(+t)),t}return i.floor=t=>(e(t=new Date(+t)),t),i.ceil=n=>(e(n=new Date(n-1)),t(n,1),e(n),n),i.round=e=>{const t=i(e),n=i.ceil(e);return e-t<n-e?t:n},i.offset=(e,n)=>(t(e=new Date(+e),null==n?1:Math.floor(n)),e),i.range=(n,r,o)=>{const a=[];if(n=i.ceil(n),o=null==o?1:Math.floor(o),!(n<r&&o>0))return a;let s;do{a.push(s=new Date(+n)),t(n,o),e(n)}while(s<n&&n<r);return a},i.filter=n=>km((t=>{if(t>=t)for(;e(t),!n(t);)t.setTime(t-1)}),((e,r)=>{if(e>=e)if(r<0)for(;++r<=0;)for(;t(e,-1),!n(e););else for(;--r>=0;)for(;t(e,1),!n(e););})),n&&(i.count=(t,r)=>(wm.setTime(+t),xm.setTime(+r),e(wm),e(xm),Math.floor(n(wm,xm))),i.every=e=>(e=Math.floor(e),isFinite(e)&&e>0?e>1?i.filter(r?t=>r(t)%e==0:t=>i.count(0,t)%e==0):i:null)),i}const Cm=km((()=>{}),((e,t)=>{e.setTime(+e+t)}),((e,t)=>t-e));Cm.every=e=>(e=Math.floor(e),isFinite(e)&&e>0?e>1?km((t=>{t.setTime(Math.floor(t/e)*e)}),((t,n)=>{t.setTime(+t+n*e)}),((t,n)=>(n-t)/e)):Cm:null),Cm.range;const Sm=1e3,Mm=6e4,Tm=36e5,Am=864e5,Nm=6048e5,Om=31536e6,Pm=km((e=>{e.setTime(e-e.getMilliseconds())}),((e,t)=>{e.setTime(+e+t*Sm)}),((e,t)=>(t-e)/Sm),(e=>e.getUTCSeconds()));Pm.range;const Lm=km((e=>{e.setTime(e-e.getMilliseconds()-e.getSeconds()*Sm)}),((e,t)=>{e.setTime(+e+t*Mm)}),((e,t)=>(t-e)/Mm),(e=>e.getMinutes()));Lm.range;const Em=km((e=>{e.setUTCSeconds(0,0)}),((e,t)=>{e.setTime(+e+t*Mm)}),((e,t)=>(t-e)/Mm),(e=>e.getUTCMinutes()));Em.range;const Fm=km((e=>{e.setTime(e-e.getMilliseconds()-e.getSeconds()*Sm-e.getMinutes()*Mm)}),((e,t)=>{e.setTime(+e+t*Tm)}),((e,t)=>(t-e)/Tm),(e=>e.getHours()));Fm.range;const jm=km((e=>{e.setUTCMinutes(0,0,0)}),((e,t)=>{e.setTime(+e+t*Tm)}),((e,t)=>(t-e)/Tm),(e=>e.getUTCHours()));jm.range;const zm=km((e=>e.setHours(0,0,0,0)),((e,t)=>e.setDate(e.getDate()+t)),((e,t)=>(t-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*Mm)/Am),(e=>e.getDate()-1));zm.range;const $m=km((e=>{e.setUTCHours(0,0,0,0)}),((e,t)=>{e.setUTCDate(e.getUTCDate()+t)}),((e,t)=>(t-e)/Am),(e=>e.getUTCDate()-1));$m.range;const Bm=km((e=>{e.setUTCHours(0,0,0,0)}),((e,t)=>{e.setUTCDate(e.getUTCDate()+t)}),((e,t)=>(t-e)/Am),(e=>Math.floor(e/Am)));function Rm(e){return km((t=>{t.setDate(t.getDate()-(t.getDay()+7-e)%7),t.setHours(0,0,0,0)}),((e,t)=>{e.setDate(e.getDate()+7*t)}),((e,t)=>(t-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*Mm)/Nm))}Bm.range;const Dm=Rm(0),Im=Rm(1),Um=Rm(2),Hm=Rm(3),qm=Rm(4),Vm=Rm(5),Wm=Rm(6);function Ym(e){return km((t=>{t.setUTCDate(t.getUTCDate()-(t.getUTCDay()+7-e)%7),t.setUTCHours(0,0,0,0)}),((e,t)=>{e.setUTCDate(e.getUTCDate()+7*t)}),((e,t)=>(t-e)/Nm))}Dm.range,Im.range,Um.range,Hm.range,qm.range,Vm.range,Wm.range;const Gm=Ym(0),Zm=Ym(1),Xm=Ym(2),Km=Ym(3),Qm=Ym(4),Jm=Ym(5),ev=Ym(6);Gm.range,Zm.range,Xm.range,Km.range,Qm.range,Jm.range,ev.range;const tv=km((e=>{e.setDate(1),e.setHours(0,0,0,0)}),((e,t)=>{e.setMonth(e.getMonth()+t)}),((e,t)=>t.getMonth()-e.getMonth()+12*(t.getFullYear()-e.getFullYear())),(e=>e.getMonth()));tv.range;const nv=km((e=>{e.setUTCDate(1),e.setUTCHours(0,0,0,0)}),((e,t)=>{e.setUTCMonth(e.getUTCMonth()+t)}),((e,t)=>t.getUTCMonth()-e.getUTCMonth()+12*(t.getUTCFullYear()-e.getUTCFullYear())),(e=>e.getUTCMonth()));nv.range;const rv=km((e=>{e.setMonth(0,1),e.setHours(0,0,0,0)}),((e,t)=>{e.setFullYear(e.getFullYear()+t)}),((e,t)=>t.getFullYear()-e.getFullYear()),(e=>e.getFullYear()));rv.every=e=>isFinite(e=Math.floor(e))&&e>0?km((t=>{t.setFullYear(Math.floor(t.getFullYear()/e)*e),t.setMonth(0,1),t.setHours(0,0,0,0)}),((t,n)=>{t.setFullYear(t.getFullYear()+n*e)})):null,rv.range;const iv=km((e=>{e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),((e,t)=>{e.setUTCFullYear(e.getUTCFullYear()+t)}),((e,t)=>t.getUTCFullYear()-e.getUTCFullYear()),(e=>e.getUTCFullYear()));function ov(e,t,n,r,i,o){const a=[[Pm,1,Sm],[Pm,5,5e3],[Pm,15,15e3],[Pm,30,3e4],[o,1,Mm],[o,5,3e5],[o,15,9e5],[o,30,18e5],[i,1,Tm],[i,3,108e5],[i,6,216e5],[i,12,432e5],[r,1,Am],[r,2,1728e5],[n,1,Nm],[t,1,2592e6],[t,3,7776e6],[e,1,Om]];function s(t,n,r){const i=Math.abs(n-t)/r,o=_g((([,,e])=>e)).right(a,i);if(o===a.length)return e.every(Lg(t/Om,n/Om,r));if(0===o)return Cm.every(Math.max(Lg(t,n,r),1));const[s,l]=a[i/a[o-1][2]<a[o][2]/i?o-1:o];return s.every(l)}return[function(e,t,n){const r=t<e;r&&([e,t]=[t,e]);const i=n&&"function"==typeof n.range?n:s(e,t,n),o=i?i.range(e,+t+1):[];return r?o.reverse():o},s]}iv.every=e=>isFinite(e=Math.floor(e))&&e>0?km((t=>{t.setUTCFullYear(Math.floor(t.getUTCFullYear()/e)*e),t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),((t,n)=>{t.setUTCFullYear(t.getUTCFullYear()+n*e)})):null,iv.range;const[av,sv]=ov(iv,nv,Gm,Bm,jm,Em),[lv,cv]=ov(rv,tv,Dm,zm,Fm,Lm);function uv(e){if(0<=e.y&&e.y<100){var t=new Date(-1,e.m,e.d,e.H,e.M,e.S,e.L);return t.setFullYear(e.y),t}return new Date(e.y,e.m,e.d,e.H,e.M,e.S,e.L)}function dv(e){if(0<=e.y&&e.y<100){var t=new Date(Date.UTC(-1,e.m,e.d,e.H,e.M,e.S,e.L));return t.setUTCFullYear(e.y),t}return new Date(Date.UTC(e.y,e.m,e.d,e.H,e.M,e.S,e.L))}function fv(e,t,n){return{y:e,m:t,d:n,H:0,M:0,S:0,L:0}}var hv,pv,gv,mv={"-":"",_:" ",0:"0"},vv=/^\s*\d+/,bv=/^%/,yv=/[\\^$*+?|[\]().{}]/g;function _v(e,t,n){var r=e<0?"-":"",i=(r?-e:e)+"",o=i.length;return r+(o<n?new Array(n-o+1).join(t)+i:i)}function wv(e){return e.replace(yv,"\\$&")}function xv(e){return new RegExp("^(?:"+e.map(wv).join("|")+")","i")}function kv(e){return new Map(e.map(((e,t)=>[e.toLowerCase(),t])))}function Cv(e,t,n){var r=vv.exec(t.slice(n,n+1));return r?(e.w=+r[0],n+r[0].length):-1}function Sv(e,t,n){var r=vv.exec(t.slice(n,n+1));return r?(e.u=+r[0],n+r[0].length):-1}function Mv(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.U=+r[0],n+r[0].length):-1}function Tv(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.V=+r[0],n+r[0].length):-1}function Av(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.W=+r[0],n+r[0].length):-1}function Nv(e,t,n){var r=vv.exec(t.slice(n,n+4));return r?(e.y=+r[0],n+r[0].length):-1}function Ov(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.y=+r[0]+(+r[0]>68?1900:2e3),n+r[0].length):-1}function Pv(e,t,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(t.slice(n,n+6));return r?(e.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function Lv(e,t,n){var r=vv.exec(t.slice(n,n+1));return r?(e.q=3*r[0]-3,n+r[0].length):-1}function Ev(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.m=r[0]-1,n+r[0].length):-1}function Fv(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.d=+r[0],n+r[0].length):-1}function jv(e,t,n){var r=vv.exec(t.slice(n,n+3));return r?(e.m=0,e.d=+r[0],n+r[0].length):-1}function zv(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.H=+r[0],n+r[0].length):-1}function $v(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.M=+r[0],n+r[0].length):-1}function Bv(e,t,n){var r=vv.exec(t.slice(n,n+2));return r?(e.S=+r[0],n+r[0].length):-1}function Rv(e,t,n){var r=vv.exec(t.slice(n,n+3));return r?(e.L=+r[0],n+r[0].length):-1}function Dv(e,t,n){var r=vv.exec(t.slice(n,n+6));return r?(e.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function Iv(e,t,n){var r=bv.exec(t.slice(n,n+1));return r?n+r[0].length:-1}function Uv(e,t,n){var r=vv.exec(t.slice(n));return r?(e.Q=+r[0],n+r[0].length):-1}function Hv(e,t,n){var r=vv.exec(t.slice(n));return r?(e.s=+r[0],n+r[0].length):-1}function qv(e,t){return _v(e.getDate(),t,2)}function Vv(e,t){return _v(e.getHours(),t,2)}function Wv(e,t){return _v(e.getHours()%12||12,t,2)}function Yv(e,t){return _v(1+zm.count(rv(e),e),t,3)}function Gv(e,t){return _v(e.getMilliseconds(),t,3)}function Zv(e,t){return Gv(e,t)+"000"}function Xv(e,t){return _v(e.getMonth()+1,t,2)}function Kv(e,t){return _v(e.getMinutes(),t,2)}function Qv(e,t){return _v(e.getSeconds(),t,2)}function Jv(e){var t=e.getDay();return 0===t?7:t}function eb(e,t){return _v(Dm.count(rv(e)-1,e),t,2)}function tb(e){var t=e.getDay();return t>=4||0===t?qm(e):qm.ceil(e)}function nb(e,t){return e=tb(e),_v(qm.count(rv(e),e)+(4===rv(e).getDay()),t,2)}function rb(e){return e.getDay()}function ib(e,t){return _v(Im.count(rv(e)-1,e),t,2)}function ob(e,t){return _v(e.getFullYear()%100,t,2)}function ab(e,t){return _v((e=tb(e)).getFullYear()%100,t,2)}function sb(e,t){return _v(e.getFullYear()%1e4,t,4)}function lb(e,t){var n=e.getDay();return _v((e=n>=4||0===n?qm(e):qm.ceil(e)).getFullYear()%1e4,t,4)}function cb(e){var t=e.getTimezoneOffset();return(t>0?"-":(t*=-1,"+"))+_v(t/60|0,"0",2)+_v(t%60,"0",2)}function ub(e,t){return _v(e.getUTCDate(),t,2)}function db(e,t){return _v(e.getUTCHours(),t,2)}function fb(e,t){return _v(e.getUTCHours()%12||12,t,2)}function hb(e,t){return _v(1+$m.count(iv(e),e),t,3)}function pb(e,t){return _v(e.getUTCMilliseconds(),t,3)}function gb(e,t){return pb(e,t)+"000"}function mb(e,t){return _v(e.getUTCMonth()+1,t,2)}function vb(e,t){return _v(e.getUTCMinutes(),t,2)}function bb(e,t){return _v(e.getUTCSeconds(),t,2)}function yb(e){var t=e.getUTCDay();return 0===t?7:t}function _b(e,t){return _v(Gm.count(iv(e)-1,e),t,2)}function wb(e){var t=e.getUTCDay();return t>=4||0===t?Qm(e):Qm.ceil(e)}function xb(e,t){return e=wb(e),_v(Qm.count(iv(e),e)+(4===iv(e).getUTCDay()),t,2)}function kb(e){return e.getUTCDay()}function Cb(e,t){return _v(Zm.count(iv(e)-1,e),t,2)}function Sb(e,t){return _v(e.getUTCFullYear()%100,t,2)}function Mb(e,t){return _v((e=wb(e)).getUTCFullYear()%100,t,2)}function Tb(e,t){return _v(e.getUTCFullYear()%1e4,t,4)}function Ab(e,t){var n=e.getUTCDay();return _v((e=n>=4||0===n?Qm(e):Qm.ceil(e)).getUTCFullYear()%1e4,t,4)}function Nb(){return"+0000"}function Ob(){return"%"}function Pb(e){return+e}function Lb(e){return Math.floor(+e/1e3)}function Eb(e){return new Date(e)}function Fb(e){return e instanceof Date?+e:+new Date(+e)}function jb(e,t,n,r,i,o,a,s,l,c){var u=Yg(),d=u.invert,f=u.domain,h=c(".%L"),p=c(":%S"),g=c("%I:%M"),m=c("%I %p"),v=c("%a %d"),b=c("%b %d"),y=c("%B"),_=c("%Y");function w(e){return(l(e)<e?h:s(e)<e?p:a(e)<e?g:o(e)<e?m:r(e)<e?i(e)<e?v:b:n(e)<e?y:_)(e)}return u.invert=function(e){return new Date(d(e))},u.domain=function(e){return arguments.length?f(Array.from(e,Fb)):f().map(Eb)},u.ticks=function(t){var n=f();return e(n[0],n[n.length-1],null==t?10:t)},u.tickFormat=function(e,t){return null==t?w:c(t)},u.nice=function(e){var n=f();return e&&"function"==typeof e.range||(e=t(n[0],n[n.length-1],null==e?10:e)),e?f(um(n,e)):u},u.copy=function(){return Vg(u,jb(e,t,n,r,i,o,a,s,l,c))},u}function zb(e){for(var t=e.length/6|0,n=new Array(t),r=0;r<t;)n[r]="#"+e.slice(6*r,6*++r);return n}hv=function(e){var t=e.dateTime,n=e.date,r=e.time,i=e.periods,o=e.days,a=e.shortDays,s=e.months,l=e.shortMonths,c=xv(i),u=kv(i),d=xv(o),f=kv(o),h=xv(a),p=kv(a),g=xv(s),m=kv(s),v=xv(l),b=kv(l),y={a:function(e){return a[e.getDay()]},A:function(e){return o[e.getDay()]},b:function(e){return l[e.getMonth()]},B:function(e){return s[e.getMonth()]},c:null,d:qv,e:qv,f:Zv,g:ab,G:lb,H:Vv,I:Wv,j:Yv,L:Gv,m:Xv,M:Kv,p:function(e){return i[+(e.getHours()>=12)]},q:function(e){return 1+~~(e.getMonth()/3)},Q:Pb,s:Lb,S:Qv,u:Jv,U:eb,V:nb,w:rb,W:ib,x:null,X:null,y:ob,Y:sb,Z:cb,"%":Ob},_={a:function(e){return a[e.getUTCDay()]},A:function(e){return o[e.getUTCDay()]},b:function(e){return l[e.getUTCMonth()]},B:function(e){return s[e.getUTCMonth()]},c:null,d:ub,e:ub,f:gb,g:Mb,G:Ab,H:db,I:fb,j:hb,L:pb,m:mb,M:vb,p:function(e){return i[+(e.getUTCHours()>=12)]},q:function(e){return 1+~~(e.getUTCMonth()/3)},Q:Pb,s:Lb,S:bb,u:yb,U:_b,V:xb,w:kb,W:Cb,x:null,X:null,y:Sb,Y:Tb,Z:Nb,"%":Ob},w={a:function(e,t,n){var r=h.exec(t.slice(n));return r?(e.w=p.get(r[0].toLowerCase()),n+r[0].length):-1},A:function(e,t,n){var r=d.exec(t.slice(n));return r?(e.w=f.get(r[0].toLowerCase()),n+r[0].length):-1},b:function(e,t,n){var r=v.exec(t.slice(n));return r?(e.m=b.get(r[0].toLowerCase()),n+r[0].length):-1},B:function(e,t,n){var r=g.exec(t.slice(n));return r?(e.m=m.get(r[0].toLowerCase()),n+r[0].length):-1},c:function(e,n,r){return C(e,t,n,r)},d:Fv,e:Fv,f:Dv,g:Ov,G:Nv,H:zv,I:zv,j:jv,L:Rv,m:Ev,M:$v,p:function(e,t,n){var r=c.exec(t.slice(n));return r?(e.p=u.get(r[0].toLowerCase()),n+r[0].length):-1},q:Lv,Q:Uv,s:Hv,S:Bv,u:Sv,U:Mv,V:Tv,w:Cv,W:Av,x:function(e,t,r){return C(e,n,t,r)},X:function(e,t,n){return C(e,r,t,n)},y:Ov,Y:Nv,Z:Pv,"%":Iv};function x(e,t){return function(n){var r,i,o,a=[],s=-1,l=0,c=e.length;for(n instanceof Date||(n=new Date(+n));++s<c;)37===e.charCodeAt(s)&&(a.push(e.slice(l,s)),null!=(i=mv[r=e.charAt(++s)])?r=e.charAt(++s):i="e"===r?" ":"0",(o=t[r])&&(r=o(n,i)),a.push(r),l=s+1);return a.push(e.slice(l,s)),a.join("")}}function k(e,t){return function(n){var r,i,o=fv(1900,void 0,1);if(C(o,e,n+="",0)!=n.length)return null;if("Q"in o)return new Date(o.Q);if("s"in o)return new Date(1e3*o.s+("L"in o?o.L:0));if(t&&!("Z"in o)&&(o.Z=0),"p"in o&&(o.H=o.H%12+12*o.p),void 0===o.m&&(o.m="q"in o?o.q:0),"V"in o){if(o.V<1||o.V>53)return null;"w"in o||(o.w=1),"Z"in o?(i=(r=dv(fv(o.y,0,1))).getUTCDay(),r=i>4||0===i?Zm.ceil(r):Zm(r),r=$m.offset(r,7*(o.V-1)),o.y=r.getUTCFullYear(),o.m=r.getUTCMonth(),o.d=r.getUTCDate()+(o.w+6)%7):(i=(r=uv(fv(o.y,0,1))).getDay(),r=i>4||0===i?Im.ceil(r):Im(r),r=zm.offset(r,7*(o.V-1)),o.y=r.getFullYear(),o.m=r.getMonth(),o.d=r.getDate()+(o.w+6)%7)}else("W"in o||"U"in o)&&("w"in o||(o.w="u"in o?o.u%7:"W"in o?1:0),i="Z"in o?dv(fv(o.y,0,1)).getUTCDay():uv(fv(o.y,0,1)).getDay(),o.m=0,o.d="W"in o?(o.w+6)%7+7*o.W-(i+5)%7:o.w+7*o.U-(i+6)%7);return"Z"in o?(o.H+=o.Z/100|0,o.M+=o.Z%100,dv(o)):uv(o)}}function C(e,t,n,r){for(var i,o,a=0,s=t.length,l=n.length;a<s;){if(r>=l)return-1;if(37===(i=t.charCodeAt(a++))){if(i=t.charAt(a++),!(o=w[i in mv?t.charAt(a++):i])||(r=o(e,n,r))<0)return-1}else if(i!=n.charCodeAt(r++))return-1}return r}return y.x=x(n,y),y.X=x(r,y),y.c=x(t,y),_.x=x(n,_),_.X=x(r,_),_.c=x(t,_),{format:function(e){var t=x(e+="",y);return t.toString=function(){return e},t},parse:function(e){var t=k(e+="",!1);return t.toString=function(){return e},t},utcFormat:function(e){var t=x(e+="",_);return t.toString=function(){return e},t},utcParse:function(e){var t=k(e+="",!0);return t.toString=function(){return e},t}}}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}),pv=hv.format,hv.parse,gv=hv.utcFormat,hv.utcParse;var $b=zb("1f77b4ff7f0e2ca02cd627289467bd8c564be377c27f7f7fbcbd2217becf"),Bb=zb("7fc97fbeaed4fdc086ffff99386cb0f0027fbf5b17666666"),Rb=zb("1b9e77d95f027570b3e7298a66a61ee6ab02a6761d666666"),Db=zb("a6cee31f78b4b2df8a33a02cfb9a99e31a1cfdbf6fff7f00cab2d66a3d9affff99b15928"),Ib=zb("fbb4aeb3cde3ccebc5decbe4fed9a6ffffcce5d8bdfddaecf2f2f2"),Ub=zb("b3e2cdfdcdaccbd5e8f4cae4e6f5c9fff2aef1e2cccccccc"),Hb=zb("e41a1c377eb84daf4a984ea3ff7f00ffff33a65628f781bf999999"),qb=zb("66c2a5fc8d628da0cbe78ac3a6d854ffd92fe5c494b3b3b3"),Vb=zb("8dd3c7ffffb3bebadafb807280b1d3fdb462b3de69fccde5d9d9d9bc80bdccebc5ffed6f"),Wb=zb("4e79a7f28e2ce1575976b7b259a14fedc949af7aa1ff9da79c755fbab0ab"),Yb=e=>Jp(e[e.length-1]),Gb=new Array(3).concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(zb),Zb=Yb(Gb),Xb=new Array(3).concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(zb),Kb=Yb(Xb),Qb=new Array(3).concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(zb),Jb=Yb(Qb),ey=new Array(3).concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(zb),ty=Yb(ey),ny=new Array(3).concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(zb),ry=Yb(ny),iy=new Array(3).concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(zb),oy=Yb(iy),ay=new Array(3).concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(zb),sy=Yb(ay),ly=new Array(3).concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(zb),cy=Yb(ly),uy=new Array(3).concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(zb),dy=Yb(uy),fy=new Array(3).concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(zb),hy=Yb(fy),py=new Array(3).concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(zb),gy=Yb(py),my=new Array(3).concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(zb),vy=Yb(my),by=new Array(3).concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(zb),yy=Yb(by),_y=new Array(3).concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(zb),wy=Yb(_y),xy=new Array(3).concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(zb),ky=Yb(xy),Cy=new Array(3).concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(zb),Sy=Yb(Cy),My=new Array(3).concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(zb),Ty=Yb(My),Ay=new Array(3).concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(zb),Ny=Yb(Ay),Oy=new Array(3).concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(zb),Py=Yb(Oy),Ly=new Array(3).concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(zb),Ey=Yb(Ly),Fy=new Array(3).concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(zb),jy=Yb(Fy),zy=new Array(3).concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(zb),$y=Yb(zy),By=new Array(3).concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(zb),Ry=Yb(By),Dy=new Array(3).concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(zb),Iy=Yb(Dy),Uy=new Array(3).concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(zb),Hy=Yb(Uy),qy=new Array(3).concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(zb),Vy=Yb(qy),Wy=new Array(3).concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(zb),Yy=Yb(Wy),Gy=gg(Wp(300,.5,0),Wp(-240,.5,1)),Zy=gg(Wp(-100,.75,.35),Wp(80,1.5,.8)),Xy=gg(Wp(260,.75,.35),Wp(80,1.5,.8)),Ky=Wp(),Qy=kp(),Jy=Math.PI/3,e_=2*Math.PI/3;function t_(e){var t=e.length;return function(n){return e[Math.max(0,Math.min(t-1,Math.floor(n*t)))]}}var n_,r_,i_,o_,a_,s_,l_,c_,u_,d_,f_,h_,p_,g_,m_,v_,b_,y_,__,w_,x_,k_,C_,S_,M_=t_(zb("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725")),T_=t_(zb("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),A_=t_(zb("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),N_=t_(zb("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921")),O_=_i(Hu());function P_(){if(s_)return a_;s_=1;var e=Zu(),t=r_?n_:(r_=1,n_=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this}),n=o_?i_:(o_=1,i_=function(e){return this.__data__.has(e)});function r(t){var n=-1,r=null==t?0:t.length;for(this.__data__=new e;++n<r;)this.add(t[n])}return r.prototype.add=r.prototype.push=t,r.prototype.has=n,a_=r}function L_(){if(v_)return m_;v_=1;var e=function(){if(g_)return p_;g_=1;var e=(c_||(c_=1,l_=function(e,t,n,r){for(var i=e.length,o=n+(r?1:-1);r?o--:++o<i;)if(t(e[o],o,e))return o;return-1}),l_),t=d_?u_:(d_=1,u_=function(e){return e!=e}),n=(h_||(h_=1,f_=function(e,t,n){for(var r=n-1,i=e.length;++r<i;)if(e[r]===t)return r;return-1}),f_);return p_=function(r,i,o){return i==i?n(r,i,o):e(r,t,o)}}();return m_=function(t,n){return!(null==t||!t.length)&&e(t,n,0)>-1},m_}function E_(){return y_||(y_=1,b_=function(e,t,n){for(var r=-1,i=null==e?0:e.length;++r<i;)if(n(t,e[r]))return!0;return!1}),b_}function F_(){return w_?__:(w_=1,__=function(e,t){return e.has(t)})}var j_=function(){if(S_)return C_;S_=1;var e=function(){if(k_)return x_;k_=1;var e=P_(),t=L_(),n=E_(),r=Ih(),i=rf(),o=F_();return x_=function(a,s,l,c){var u=-1,d=t,f=!0,h=a.length,p=[],g=s.length;if(!h)return p;l&&(s=r(s,i(l))),c?(d=n,f=!1):s.length>=200&&(d=o,f=!1,s=new e(s));e:for(;++u<h;){var m=a[u],v=null==l?m:l(m);if(m=c||0!==m?m:0,f&&v==v){for(var b=g;b--;)if(s[b]===v)continue e;p.push(m)}else d(s,v,c)||p.push(m)}return p},x_}(),t=dh(),n=qd(),r=t((function(t,r){return n(t)?e(t,r):[]}));return C_=r}(),z_=_i(j_);function $_(e){return function(){return e}}const B_=Math.PI,R_=2*B_,D_=1e-6,I_=R_-D_;function U_(e){this._+=e[0];for(let t=1,n=e.length;t<n;++t)this._+=arguments[t]+e[t]}let H_=class{constructor(e){this._x0=this._y0=this._x1=this._y1=null,this._="",this._append=null==e?U_:function(e){let t=Math.floor(e);if(!(t>=0))throw new Error(`invalid digits: ${e}`);if(t>15)return U_;const n=10**t;return function(e){this._+=e[0];for(let t=1,r=e.length;t<r;++t)this._+=Math.round(arguments[t]*n)/n+e[t]}}(e)}moveTo(e,t){this._append`M${this._x0=this._x1=+e},${this._y0=this._y1=+t}`}closePath(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._append`Z`)}lineTo(e,t){this._append`L${this._x1=+e},${this._y1=+t}`}quadraticCurveTo(e,t,n,r){this._append`Q${+e},${+t},${this._x1=+n},${this._y1=+r}`}bezierCurveTo(e,t,n,r,i,o){this._append`C${+e},${+t},${+n},${+r},${this._x1=+i},${this._y1=+o}`}arcTo(e,t,n,r,i){if(e=+e,t=+t,n=+n,r=+r,(i=+i)<0)throw new Error(`negative radius: ${i}`);let o=this._x1,a=this._y1,s=n-e,l=r-t,c=o-e,u=a-t,d=c*c+u*u;if(null===this._x1)this._append`M${this._x1=e},${this._y1=t}`;else if(d>D_)if(Math.abs(u*s-l*c)>D_&&i){let f=n-o,h=r-a,p=s*s+l*l,g=f*f+h*h,m=Math.sqrt(p),v=Math.sqrt(d),b=i*Math.tan((B_-Math.acos((p+d-g)/(2*m*v)))/2),y=b/v,_=b/m;Math.abs(y-1)>D_&&this._append`L${e+y*c},${t+y*u}`,this._append`A${i},${i},0,0,${+(u*f>c*h)},${this._x1=e+_*s},${this._y1=t+_*l}`}else this._append`L${this._x1=e},${this._y1=t}`}arc(e,t,n,r,i,o){if(e=+e,t=+t,o=!!o,(n=+n)<0)throw new Error(`negative radius: ${n}`);let a=n*Math.cos(r),s=n*Math.sin(r),l=e+a,c=t+s,u=1^o,d=o?r-i:i-r;null===this._x1?this._append`M${l},${c}`:(Math.abs(this._x1-l)>D_||Math.abs(this._y1-c)>D_)&&this._append`L${l},${c}`,n&&(d<0&&(d=d%R_+R_),d>I_?this._append`A${n},${n},0,1,${u},${e-a},${t-s}A${n},${n},0,1,${u},${this._x1=l},${this._y1=c}`:d>D_&&this._append`A${n},${n},0,${+(d>=B_)},${u},${this._x1=e+n*Math.cos(i)},${this._y1=t+n*Math.sin(i)}`)}rect(e,t,n,r){this._append`M${this._x0=this._x1=+e},${this._y0=this._y1=+t}h${n=+n}v${+r}h${-n}Z`}toString(){return this._}};function q_(e){let t=3;return e.digits=function(n){if(!arguments.length)return t;if(null==n)t=null;else{const e=Math.floor(n);if(!(e>=0))throw new RangeError(`invalid digits: ${n}`);t=e}return e},()=>new H_(t)}function V_(e){return"object"==typeof e&&"length"in e?e:Array.from(e)}function W_(e){this._context=e}function Y_(e){return new W_(e)}function G_(e){return e[0]}function Z_(e){return e[1]}function X_(e,t){var n=$_(!0),r=null,i=Y_,o=null,a=q_(s);function s(s){var l,c,u,d=(s=V_(s)).length,f=!1;for(null==r&&(o=i(u=a())),l=0;l<=d;++l)!(l<d&&n(c=s[l],l,s))===f&&((f=!f)?o.lineStart():o.lineEnd()),f&&o.point(+e(c,l,s),+t(c,l,s));if(u)return o=null,u+""||null}return e="function"==typeof e?e:void 0===e?G_:$_(e),t="function"==typeof t?t:void 0===t?Z_:$_(t),s.x=function(t){return arguments.length?(e="function"==typeof t?t:$_(+t),s):e},s.y=function(e){return arguments.length?(t="function"==typeof e?e:$_(+e),s):t},s.defined=function(e){return arguments.length?(n="function"==typeof e?e:$_(!!e),s):n},s.curve=function(e){return arguments.length?(i=e,null!=r&&(o=i(r)),s):i},s.context=function(e){return arguments.length?(null==e?r=o=null:o=i(r=e),s):r},s}function K_(){}function Q_(e,t,n){e._context.bezierCurveTo((2*e._x0+e._x1)/3,(2*e._y0+e._y1)/3,(e._x0+2*e._x1)/3,(e._y0+2*e._y1)/3,(e._x0+4*e._x1+t)/6,(e._y0+4*e._y1+n)/6)}function J_(e){this._context=e}function ew(e){this._context=e}function tw(e){this._context=e}function nw(e,t){this._basis=new J_(e),this._beta=t}W_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;default:this._context.lineTo(e,t)}}},J_.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:Q_(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:Q_(this,e,t)}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}},ew.prototype={areaStart:K_,areaEnd:K_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._x2=e,this._y2=t;break;case 1:this._point=2,this._x3=e,this._y3=t;break;case 2:this._point=3,this._x4=e,this._y4=t,this._context.moveTo((this._x0+4*this._x1+e)/6,(this._y0+4*this._y1+t)/6);break;default:Q_(this,e,t)}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}},tw.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var n=(this._x0+4*this._x1+e)/6,r=(this._y0+4*this._y1+t)/6;this._line?this._context.lineTo(n,r):this._context.moveTo(n,r);break;case 3:this._point=4;default:Q_(this,e,t)}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t}},nw.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var e=this._x,t=this._y,n=e.length-1;if(n>0)for(var r,i=e[0],o=t[0],a=e[n]-i,s=t[n]-o,l=-1;++l<=n;)r=l/n,this._basis.point(this._beta*e[l]+(1-this._beta)*(i+r*a),this._beta*t[l]+(1-this._beta)*(o+r*s));this._x=this._y=null,this._basis.lineEnd()},point:function(e,t){this._x.push(+e),this._y.push(+t)}};var rw=function e(t){function n(e){return 1===t?new J_(e):new nw(e,t)}return n.beta=function(t){return e(+t)},n}(.85);function iw(e,t,n){e._context.bezierCurveTo(e._x1+e._k*(e._x2-e._x0),e._y1+e._k*(e._y2-e._y0),e._x2+e._k*(e._x1-t),e._y2+e._k*(e._y1-n),e._x2,e._y2)}function ow(e,t){this._context=e,this._k=(1-t)/6}ow.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:iw(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2,this._x1=e,this._y1=t;break;case 2:this._point=3;default:iw(this,e,t)}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};var aw=function e(t){function n(e){return new ow(e,t)}return n.tension=function(t){return e(+t)},n}(0);function sw(e,t){this._context=e,this._k=(1-t)/6}sw.prototype={areaStart:K_,areaEnd:K_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._x3=e,this._y3=t;break;case 1:this._point=2,this._context.moveTo(this._x4=e,this._y4=t);break;case 2:this._point=3,this._x5=e,this._y5=t;break;default:iw(this,e,t)}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};var lw=function e(t){function n(e){return new sw(e,t)}return n.tension=function(t){return e(+t)},n}(0);function cw(e,t){this._context=e,this._k=(1-t)/6}cw.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:iw(this,e,t)}this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};var uw=function e(t){function n(e){return new cw(e,t)}return n.tension=function(t){return e(+t)},n}(0);function dw(e,t,n){var r=e._x1,i=e._y1,o=e._x2,a=e._y2;if(e._l01_a>1e-12){var s=2*e._l01_2a+3*e._l01_a*e._l12_a+e._l12_2a,l=3*e._l01_a*(e._l01_a+e._l12_a);r=(r*s-e._x0*e._l12_2a+e._x2*e._l01_2a)/l,i=(i*s-e._y0*e._l12_2a+e._y2*e._l01_2a)/l}if(e._l23_a>1e-12){var c=2*e._l23_2a+3*e._l23_a*e._l12_a+e._l12_2a,u=3*e._l23_a*(e._l23_a+e._l12_a);o=(o*c+e._x1*e._l23_2a-t*e._l12_2a)/u,a=(a*c+e._y1*e._l23_2a-n*e._l12_2a)/u}e._context.bezierCurveTo(r,i,o,a,e._x2,e._y2)}function fw(e,t){this._context=e,this._alpha=t}fw.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){if(e=+e,t=+t,this._point){var n=this._x2-e,r=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3;default:dw(this,e,t)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};var hw=function e(t){function n(e){return t?new fw(e,t):new ow(e,0)}return n.alpha=function(t){return e(+t)},n}(.5);function pw(e,t){this._context=e,this._alpha=t}pw.prototype={areaStart:K_,areaEnd:K_,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(e,t){if(e=+e,t=+t,this._point){var n=this._x2-e,r=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=e,this._y3=t;break;case 1:this._point=2,this._context.moveTo(this._x4=e,this._y4=t);break;case 2:this._point=3,this._x5=e,this._y5=t;break;default:dw(this,e,t)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};var gw=function e(t){function n(e){return t?new pw(e,t):new sw(e,0)}return n.alpha=function(t){return e(+t)},n}(.5);function mw(e,t){this._context=e,this._alpha=t}mw.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){if(e=+e,t=+t,this._point){var n=this._x2-e,r=this._y2-t;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:dw(this,e,t)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=e,this._y0=this._y1,this._y1=this._y2,this._y2=t}};var vw=function e(t){function n(e){return t?new mw(e,t):new cw(e,0)}return n.alpha=function(t){return e(+t)},n}(.5);function bw(e){this._context=e}function yw(e){return e<0?-1:1}function _w(e,t,n){var r=e._x1-e._x0,i=t-e._x1,o=(e._y1-e._y0)/(r||i<0&&-0),a=(n-e._y1)/(i||r<0&&-0),s=(o*i+a*r)/(r+i);return(yw(o)+yw(a))*Math.min(Math.abs(o),Math.abs(a),.5*Math.abs(s))||0}function ww(e,t){var n=e._x1-e._x0;return n?(3*(e._y1-e._y0)/n-t)/2:t}function xw(e,t,n){var r=e._x0,i=e._y0,o=e._x1,a=e._y1,s=(o-r)/3;e._context.bezierCurveTo(r+s,i+s*t,o-s,a-s*n,o,a)}function kw(e){this._context=e}function Cw(e){this._context=new Sw(e)}function Sw(e){this._context=e}function Mw(e){this._context=e}function Tw(e){var t,n,r=e.length-1,i=new Array(r),o=new Array(r),a=new Array(r);for(i[0]=0,o[0]=2,a[0]=e[0]+2*e[1],t=1;t<r-1;++t)i[t]=1,o[t]=4,a[t]=4*e[t]+2*e[t+1];for(i[r-1]=2,o[r-1]=7,a[r-1]=8*e[r-1]+e[r],t=1;t<r;++t)n=i[t]/o[t-1],o[t]-=n,a[t]-=n*a[t-1];for(i[r-1]=a[r-1]/o[r-1],t=r-2;t>=0;--t)i[t]=(a[t]-i[t+1])/o[t];for(o[r-1]=(e[r]+i[r-1])/2,t=0;t<r-1;++t)o[t]=2*e[t+1]-i[t+1];return[i,o]}function Aw(e,t){this._context=e,this._t=t}function Nw(e,t){if((n=(e=t?e.toExponential(t-1):e.toExponential()).indexOf("e"))<0)return null;var n,r=e.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+e.slice(n+1)]}bw.prototype={areaStart:K_,areaEnd:K_,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(e,t){e=+e,t=+t,this._point?this._context.lineTo(e,t):(this._point=1,this._context.moveTo(e,t))}},kw.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:xw(this,this._t0,ww(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(e,t){var n=NaN;if(t=+t,(e=+e)!==this._x1||t!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;break;case 2:this._point=3,xw(this,ww(this,n=_w(this,e,t)),n);break;default:xw(this,this._t0,n=_w(this,e,t))}this._x0=this._x1,this._x1=e,this._y0=this._y1,this._y1=t,this._t0=n}}},(Cw.prototype=Object.create(kw.prototype)).point=function(e,t){kw.prototype.point.call(this,t,e)},Sw.prototype={moveTo:function(e,t){this._context.moveTo(t,e)},closePath:function(){this._context.closePath()},lineTo:function(e,t){this._context.lineTo(t,e)},bezierCurveTo:function(e,t,n,r,i,o){this._context.bezierCurveTo(t,e,r,n,o,i)}},Mw.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var e=this._x,t=this._y,n=e.length;if(n)if(this._line?this._context.lineTo(e[0],t[0]):this._context.moveTo(e[0],t[0]),2===n)this._context.lineTo(e[1],t[1]);else for(var r=Tw(e),i=Tw(t),o=0,a=1;a<n;++o,++a)this._context.bezierCurveTo(r[0][o],i[0][o],r[1][o],i[1][o],e[a],t[a]);(this._line||0!==this._line&&1===n)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(e,t){this._x.push(+e),this._y.push(+t)}},Aw.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(e,t){switch(e=+e,t=+t,this._point){case 0:this._point=1,this._line?this._context.lineTo(e,t):this._context.moveTo(e,t);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,t),this._context.lineTo(e,t);else{var n=this._x*(1-this._t)+e*this._t;this._context.lineTo(n,this._y),this._context.lineTo(n,t)}}this._x=e,this._y=t}};var Ow,Pw=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function Lw(e){if(!(t=Pw.exec(e)))throw new Error("invalid format: "+e);var t;return new Ew({fill:t[1],align:t[2],sign:t[3],symbol:t[4],zero:t[5],width:t[6],comma:t[7],precision:t[8]&&t[8].slice(1),trim:t[9],type:t[10]})}function Ew(e){this.fill=void 0===e.fill?" ":e.fill+"",this.align=void 0===e.align?">":e.align+"",this.sign=void 0===e.sign?"-":e.sign+"",this.symbol=void 0===e.symbol?"":e.symbol+"",this.zero=!!e.zero,this.width=void 0===e.width?void 0:+e.width,this.comma=!!e.comma,this.precision=void 0===e.precision?void 0:+e.precision,this.trim=!!e.trim,this.type=void 0===e.type?"":e.type+""}function Fw(e,t){var n=Nw(e,t);if(!n)return e+"";var r=n[0],i=n[1];return i<0?"0."+new Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+new Array(i-r.length+2).join("0")}Lw.prototype=Ew.prototype,Ew.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};var jw={"%":function(e,t){return(100*e).toFixed(t)},b:function(e){return Math.round(e).toString(2)},c:function(e){return e+""},d:function(e){return Math.abs(e=Math.round(e))>=1e21?e.toLocaleString("en").replace(/,/g,""):e.toString(10)},e:function(e,t){return e.toExponential(t)},f:function(e,t){return e.toFixed(t)},g:function(e,t){return e.toPrecision(t)},o:function(e){return Math.round(e).toString(8)},p:function(e,t){return Fw(100*e,t)},r:Fw,s:function(e,t){var n=Nw(e,t);if(!n)return e+"";var r=n[0],i=n[1],o=i-(Ow=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=r.length;return o===a?r:o>a?r+new Array(o-a+1).join("0"):o>0?r.slice(0,o)+"."+r.slice(o):"0."+new Array(1-o).join("0")+Nw(e,Math.max(0,t+o-1))[0]},X:function(e){return Math.round(e).toString(16).toUpperCase()},x:function(e){return Math.round(e).toString(16)}};function zw(e){return e}var $w,Bw,Rw=Array.prototype.map,Dw=["y","z","a","f","p","n","µ","m","","k","M","G","T","P","E","Z","Y"];$w=function(e){var t,n,r=void 0===e.grouping||void 0===e.thousands?zw:(t=Rw.call(e.grouping,Number),n=e.thousands+"",function(e,r){for(var i=e.length,o=[],a=0,s=t[0],l=0;i>0&&s>0&&(l+s+1>r&&(s=Math.max(1,r-l)),o.push(e.substring(i-=s,i+s)),!((l+=s+1)>r));)s=t[a=(a+1)%t.length];return o.reverse().join(n)}),i=void 0===e.currency?"":e.currency[0]+"",o=void 0===e.currency?"":e.currency[1]+"",a=void 0===e.decimal?".":e.decimal+"",s=void 0===e.numerals?zw:function(e){return function(t){return t.replace(/[0-9]/g,(function(t){return e[+t]}))}}(Rw.call(e.numerals,String)),l=void 0===e.percent?"%":e.percent+"",c=void 0===e.minus?"-":e.minus+"",u=void 0===e.nan?"NaN":e.nan+"";function d(e){var t=(e=Lw(e)).fill,n=e.align,d=e.sign,f=e.symbol,h=e.zero,p=e.width,g=e.comma,m=e.precision,v=e.trim,b=e.type;"n"===b?(g=!0,b="g"):jw[b]||(void 0===m&&(m=12),v=!0,b="g"),(h||"0"===t&&"="===n)&&(h=!0,t="0",n="=");var y="$"===f?i:"#"===f&&/[boxX]/.test(b)?"0"+b.toLowerCase():"",_="$"===f?o:/[%p]/.test(b)?l:"",w=jw[b],x=/[defgprs%]/.test(b);function k(e){var i,o,l,f=y,k=_;if("c"===b)k=w(e)+k,e="";else{var C=(e=+e)<0||1/e<0;if(e=isNaN(e)?u:w(Math.abs(e),m),v&&(e=function(e){e:for(var t,n=e.length,r=1,i=-1;r<n;++r)switch(e[r]){case".":i=t=r;break;case"0":0===i&&(i=r),t=r;break;default:if(!+e[r])break e;i>0&&(i=0)}return i>0?e.slice(0,i)+e.slice(t+1):e}(e)),C&&0==+e&&"+"!==d&&(C=!1),f=(C?"("===d?d:c:"-"===d||"("===d?"":d)+f,k=("s"===b?Dw[8+Ow/3]:"")+k+(C&&"("===d?")":""),x)for(i=-1,o=e.length;++i<o;)if(48>(l=e.charCodeAt(i))||l>57){k=(46===l?a+e.slice(i+1):e.slice(i))+k,e=e.slice(0,i);break}}g&&!h&&(e=r(e,1/0));var S=f.length+e.length+k.length,M=S<p?new Array(p-S+1).join(t):"";switch(g&&h&&(e=r(M+e,M.length?p-k.length:1/0),M=""),n){case"<":e=f+e+k+M;break;case"=":e=f+M+e+k;break;case"^":e=M.slice(0,S=M.length>>1)+f+e+k+M.slice(S);break;default:e=M+f+e+k}return s(e)}return m=void 0===m?6:/[gprs]/.test(b)?Math.max(1,Math.min(21,m)):Math.max(0,Math.min(20,m)),k.toString=function(){return e+""},k}return{format:d,formatPrefix:function(e,t){var n=d(((e=Lw(e)).type="f",e)),r=3*Math.max(-8,Math.min(8,Math.floor(function(e){return(e=Nw(Math.abs(e)))?e[1]:NaN}(t)/3))),i=Math.pow(10,-r),o=Dw[8+r/3];return function(e){return n(i*e)+o}}}}({decimal:".",thousands:",",grouping:[3],currency:["$",""],minus:"-"}),Bw=$w.format,$w.formatPrefix;var Iw=new Date,Uw=new Date;function Hw(e,t,n,r){function i(t){return e(t=0===arguments.length?new Date:new Date(+t)),t}return i.floor=function(t){return e(t=new Date(+t)),t},i.ceil=function(n){return e(n=new Date(n-1)),t(n,1),e(n),n},i.round=function(e){var t=i(e),n=i.ceil(e);return e-t<n-e?t:n},i.offset=function(e,n){return t(e=new Date(+e),null==n?1:Math.floor(n)),e},i.range=function(n,r,o){var a,s=[];if(n=i.ceil(n),o=null==o?1:Math.floor(o),!(n<r&&o>0))return s;do{s.push(a=new Date(+n)),t(n,o),e(n)}while(a<n&&n<r);return s},i.filter=function(n){return Hw((function(t){if(t>=t)for(;e(t),!n(t);)t.setTime(t-1)}),(function(e,r){if(e>=e)if(r<0)for(;++r<=0;)for(;t(e,-1),!n(e););else for(;--r>=0;)for(;t(e,1),!n(e););}))},n&&(i.count=function(t,r){return Iw.setTime(+t),Uw.setTime(+r),e(Iw),e(Uw),Math.floor(n(Iw,Uw))},i.every=function(e){return e=Math.floor(e),isFinite(e)&&e>0?e>1?i.filter(r?function(t){return r(t)%e==0}:function(t){return i.count(0,t)%e==0}):i:null}),i}const qw=864e5,Vw=6048e5;var Ww=Hw((e=>e.setHours(0,0,0,0)),((e,t)=>e.setDate(e.getDate()+t)),((e,t)=>(t-e-6e4*(t.getTimezoneOffset()-e.getTimezoneOffset()))/qw),(e=>e.getDate()-1));function Yw(e){return Hw((function(t){t.setDate(t.getDate()-(t.getDay()+7-e)%7),t.setHours(0,0,0,0)}),(function(e,t){e.setDate(e.getDate()+7*t)}),(function(e,t){return(t-e-6e4*(t.getTimezoneOffset()-e.getTimezoneOffset()))/Vw}))}Ww.range;var Gw=Yw(0),Zw=Yw(1),Xw=Yw(2),Kw=Yw(3),Qw=Yw(4),Jw=Yw(5),ex=Yw(6);Gw.range,Zw.range,Xw.range,Kw.range,Qw.range,Jw.range,ex.range;var tx=Hw((function(e){e.setMonth(0,1),e.setHours(0,0,0,0)}),(function(e,t){e.setFullYear(e.getFullYear()+t)}),(function(e,t){return t.getFullYear()-e.getFullYear()}),(function(e){return e.getFullYear()}));tx.every=function(e){return isFinite(e=Math.floor(e))&&e>0?Hw((function(t){t.setFullYear(Math.floor(t.getFullYear()/e)*e),t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,n){t.setFullYear(t.getFullYear()+n*e)})):null},tx.range;var nx=Hw((function(e){e.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCDate(e.getUTCDate()+t)}),(function(e,t){return(t-e)/qw}),(function(e){return e.getUTCDate()-1}));function rx(e){return Hw((function(t){t.setUTCDate(t.getUTCDate()-(t.getUTCDay()+7-e)%7),t.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCDate(e.getUTCDate()+7*t)}),(function(e,t){return(t-e)/Vw}))}nx.range;var ix=rx(0),ox=rx(1),ax=rx(2),sx=rx(3),lx=rx(4),cx=rx(5),ux=rx(6);ix.range,ox.range,ax.range,sx.range,lx.range,cx.range,ux.range;var dx=Hw((function(e){e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCFullYear(e.getUTCFullYear()+t)}),(function(e,t){return t.getUTCFullYear()-e.getUTCFullYear()}),(function(e){return e.getUTCFullYear()}));function fx(e){if(0<=e.y&&e.y<100){var t=new Date(-1,e.m,e.d,e.H,e.M,e.S,e.L);return t.setFullYear(e.y),t}return new Date(e.y,e.m,e.d,e.H,e.M,e.S,e.L)}function hx(e){if(0<=e.y&&e.y<100){var t=new Date(Date.UTC(-1,e.m,e.d,e.H,e.M,e.S,e.L));return t.setUTCFullYear(e.y),t}return new Date(Date.UTC(e.y,e.m,e.d,e.H,e.M,e.S,e.L))}function px(e,t,n){return{y:e,m:t,d:n,H:0,M:0,S:0,L:0}}dx.every=function(e){return isFinite(e=Math.floor(e))&&e>0?Hw((function(t){t.setUTCFullYear(Math.floor(t.getUTCFullYear()/e)*e),t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n*e)})):null},dx.range;var gx,mx,vx,bx,yx={"-":"",_:" ",0:"0"},_x=/^\s*\d+/,wx=/^%/,xx=/[\\^$*+?|[\]().{}]/g;function kx(e,t,n){var r=e<0?"-":"",i=(r?-e:e)+"",o=i.length;return r+(o<n?new Array(n-o+1).join(t)+i:i)}function Cx(e){return e.replace(xx,"\\$&")}function Sx(e){return new RegExp("^(?:"+e.map(Cx).join("|")+")","i")}function Mx(e){return new Map(e.map(((e,t)=>[e.toLowerCase(),t])))}function Tx(e,t,n){var r=_x.exec(t.slice(n,n+1));return r?(e.w=+r[0],n+r[0].length):-1}function Ax(e,t,n){var r=_x.exec(t.slice(n,n+1));return r?(e.u=+r[0],n+r[0].length):-1}function Nx(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.U=+r[0],n+r[0].length):-1}function Ox(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.V=+r[0],n+r[0].length):-1}function Px(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.W=+r[0],n+r[0].length):-1}function Lx(e,t,n){var r=_x.exec(t.slice(n,n+4));return r?(e.y=+r[0],n+r[0].length):-1}function Ex(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.y=+r[0]+(+r[0]>68?1900:2e3),n+r[0].length):-1}function Fx(e,t,n){var r=/^(Z)|([+-]\d\d)(?::?(\d\d))?/.exec(t.slice(n,n+6));return r?(e.Z=r[1]?0:-(r[2]+(r[3]||"00")),n+r[0].length):-1}function jx(e,t,n){var r=_x.exec(t.slice(n,n+1));return r?(e.q=3*r[0]-3,n+r[0].length):-1}function zx(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.m=r[0]-1,n+r[0].length):-1}function $x(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.d=+r[0],n+r[0].length):-1}function Bx(e,t,n){var r=_x.exec(t.slice(n,n+3));return r?(e.m=0,e.d=+r[0],n+r[0].length):-1}function Rx(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.H=+r[0],n+r[0].length):-1}function Dx(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.M=+r[0],n+r[0].length):-1}function Ix(e,t,n){var r=_x.exec(t.slice(n,n+2));return r?(e.S=+r[0],n+r[0].length):-1}function Ux(e,t,n){var r=_x.exec(t.slice(n,n+3));return r?(e.L=+r[0],n+r[0].length):-1}function Hx(e,t,n){var r=_x.exec(t.slice(n,n+6));return r?(e.L=Math.floor(r[0]/1e3),n+r[0].length):-1}function qx(e,t,n){var r=wx.exec(t.slice(n,n+1));return r?n+r[0].length:-1}function Vx(e,t,n){var r=_x.exec(t.slice(n));return r?(e.Q=+r[0],n+r[0].length):-1}function Wx(e,t,n){var r=_x.exec(t.slice(n));return r?(e.s=+r[0],n+r[0].length):-1}function Yx(e,t){return kx(e.getDate(),t,2)}function Gx(e,t){return kx(e.getHours(),t,2)}function Zx(e,t){return kx(e.getHours()%12||12,t,2)}function Xx(e,t){return kx(1+Ww.count(tx(e),e),t,3)}function Kx(e,t){return kx(e.getMilliseconds(),t,3)}function Qx(e,t){return Kx(e,t)+"000"}function Jx(e,t){return kx(e.getMonth()+1,t,2)}function ek(e,t){return kx(e.getMinutes(),t,2)}function tk(e,t){return kx(e.getSeconds(),t,2)}function nk(e){var t=e.getDay();return 0===t?7:t}function rk(e,t){return kx(Gw.count(tx(e)-1,e),t,2)}function ik(e){var t=e.getDay();return t>=4||0===t?Qw(e):Qw.ceil(e)}function ok(e,t){return e=ik(e),kx(Qw.count(tx(e),e)+(4===tx(e).getDay()),t,2)}function ak(e){return e.getDay()}function sk(e,t){return kx(Zw.count(tx(e)-1,e),t,2)}function lk(e,t){return kx(e.getFullYear()%100,t,2)}function ck(e,t){return kx((e=ik(e)).getFullYear()%100,t,2)}function uk(e,t){return kx(e.getFullYear()%1e4,t,4)}function dk(e,t){var n=e.getDay();return kx((e=n>=4||0===n?Qw(e):Qw.ceil(e)).getFullYear()%1e4,t,4)}function fk(e){var t=e.getTimezoneOffset();return(t>0?"-":(t*=-1,"+"))+kx(t/60|0,"0",2)+kx(t%60,"0",2)}function hk(e,t){return kx(e.getUTCDate(),t,2)}function pk(e,t){return kx(e.getUTCHours(),t,2)}function gk(e,t){return kx(e.getUTCHours()%12||12,t,2)}function mk(e,t){return kx(1+nx.count(dx(e),e),t,3)}function vk(e,t){return kx(e.getUTCMilliseconds(),t,3)}function bk(e,t){return vk(e,t)+"000"}function yk(e,t){return kx(e.getUTCMonth()+1,t,2)}function _k(e,t){return kx(e.getUTCMinutes(),t,2)}function wk(e,t){return kx(e.getUTCSeconds(),t,2)}function xk(e){var t=e.getUTCDay();return 0===t?7:t}function kk(e,t){return kx(ix.count(dx(e)-1,e),t,2)}function Ck(e){var t=e.getUTCDay();return t>=4||0===t?lx(e):lx.ceil(e)}function Sk(e,t){return e=Ck(e),kx(lx.count(dx(e),e)+(4===dx(e).getUTCDay()),t,2)}function Mk(e){return e.getUTCDay()}function Tk(e,t){return kx(ox.count(dx(e)-1,e),t,2)}function Ak(e,t){return kx(e.getUTCFullYear()%100,t,2)}function Nk(e,t){return kx((e=Ck(e)).getUTCFullYear()%100,t,2)}function Ok(e,t){return kx(e.getUTCFullYear()%1e4,t,4)}function Pk(e,t){var n=e.getUTCDay();return kx((e=n>=4||0===n?lx(e):lx.ceil(e)).getUTCFullYear()%1e4,t,4)}function Lk(){return"+0000"}function Ek(){return"%"}function Fk(e){return+e}function jk(e){return Math.floor(+e/1e3)}gx=function(e){var t=e.dateTime,n=e.date,r=e.time,i=e.periods,o=e.days,a=e.shortDays,s=e.months,l=e.shortMonths,c=Sx(i),u=Mx(i),d=Sx(o),f=Mx(o),h=Sx(a),p=Mx(a),g=Sx(s),m=Mx(s),v=Sx(l),b=Mx(l),y={a:function(e){return a[e.getDay()]},A:function(e){return o[e.getDay()]},b:function(e){return l[e.getMonth()]},B:function(e){return s[e.getMonth()]},c:null,d:Yx,e:Yx,f:Qx,g:ck,G:dk,H:Gx,I:Zx,j:Xx,L:Kx,m:Jx,M:ek,p:function(e){return i[+(e.getHours()>=12)]},q:function(e){return 1+~~(e.getMonth()/3)},Q:Fk,s:jk,S:tk,u:nk,U:rk,V:ok,w:ak,W:sk,x:null,X:null,y:lk,Y:uk,Z:fk,"%":Ek},_={a:function(e){return a[e.getUTCDay()]},A:function(e){return o[e.getUTCDay()]},b:function(e){return l[e.getUTCMonth()]},B:function(e){return s[e.getUTCMonth()]},c:null,d:hk,e:hk,f:bk,g:Nk,G:Pk,H:pk,I:gk,j:mk,L:vk,m:yk,M:_k,p:function(e){return i[+(e.getUTCHours()>=12)]},q:function(e){return 1+~~(e.getUTCMonth()/3)},Q:Fk,s:jk,S:wk,u:xk,U:kk,V:Sk,w:Mk,W:Tk,x:null,X:null,y:Ak,Y:Ok,Z:Lk,"%":Ek},w={a:function(e,t,n){var r=h.exec(t.slice(n));return r?(e.w=p.get(r[0].toLowerCase()),n+r[0].length):-1},A:function(e,t,n){var r=d.exec(t.slice(n));return r?(e.w=f.get(r[0].toLowerCase()),n+r[0].length):-1},b:function(e,t,n){var r=v.exec(t.slice(n));return r?(e.m=b.get(r[0].toLowerCase()),n+r[0].length):-1},B:function(e,t,n){var r=g.exec(t.slice(n));return r?(e.m=m.get(r[0].toLowerCase()),n+r[0].length):-1},c:function(e,n,r){return C(e,t,n,r)},d:$x,e:$x,f:Hx,g:Ex,G:Lx,H:Rx,I:Rx,j:Bx,L:Ux,m:zx,M:Dx,p:function(e,t,n){var r=c.exec(t.slice(n));return r?(e.p=u.get(r[0].toLowerCase()),n+r[0].length):-1},q:jx,Q:Vx,s:Wx,S:Ix,u:Ax,U:Nx,V:Ox,w:Tx,W:Px,x:function(e,t,r){return C(e,n,t,r)},X:function(e,t,n){return C(e,r,t,n)},y:Ex,Y:Lx,Z:Fx,"%":qx};function x(e,t){return function(n){var r,i,o,a=[],s=-1,l=0,c=e.length;for(n instanceof Date||(n=new Date(+n));++s<c;)37===e.charCodeAt(s)&&(a.push(e.slice(l,s)),null!=(i=yx[r=e.charAt(++s)])?r=e.charAt(++s):i="e"===r?" ":"0",(o=t[r])&&(r=o(n,i)),a.push(r),l=s+1);return a.push(e.slice(l,s)),a.join("")}}function k(e,t){return function(n){var r,i,o=px(1900,void 0,1);if(C(o,e,n+="",0)!=n.length)return null;if("Q"in o)return new Date(o.Q);if("s"in o)return new Date(1e3*o.s+("L"in o?o.L:0));if(t&&!("Z"in o)&&(o.Z=0),"p"in o&&(o.H=o.H%12+12*o.p),void 0===o.m&&(o.m="q"in o?o.q:0),"V"in o){if(o.V<1||o.V>53)return null;"w"in o||(o.w=1),"Z"in o?(i=(r=hx(px(o.y,0,1))).getUTCDay(),r=i>4||0===i?ox.ceil(r):ox(r),r=nx.offset(r,7*(o.V-1)),o.y=r.getUTCFullYear(),o.m=r.getUTCMonth(),o.d=r.getUTCDate()+(o.w+6)%7):(i=(r=fx(px(o.y,0,1))).getDay(),r=i>4||0===i?Zw.ceil(r):Zw(r),r=Ww.offset(r,7*(o.V-1)),o.y=r.getFullYear(),o.m=r.getMonth(),o.d=r.getDate()+(o.w+6)%7)}else("W"in o||"U"in o)&&("w"in o||(o.w="u"in o?o.u%7:"W"in o?1:0),i="Z"in o?hx(px(o.y,0,1)).getUTCDay():fx(px(o.y,0,1)).getDay(),o.m=0,o.d="W"in o?(o.w+6)%7+7*o.W-(i+5)%7:o.w+7*o.U-(i+6)%7);return"Z"in o?(o.H+=o.Z/100|0,o.M+=o.Z%100,hx(o)):fx(o)}}function C(e,t,n,r){for(var i,o,a=0,s=t.length,l=n.length;a<s;){if(r>=l)return-1;if(37===(i=t.charCodeAt(a++))){if(i=t.charAt(a++),!(o=w[i in yx?t.charAt(a++):i])||(r=o(e,n,r))<0)return-1}else if(i!=n.charCodeAt(r++))return-1}return r}return y.x=x(n,y),y.X=x(r,y),y.c=x(t,y),_.x=x(n,_),_.X=x(r,_),_.c=x(t,_),{format:function(e){var t=x(e+="",y);return t.toString=function(){return e},t},parse:function(e){var t=k(e+="",!1);return t.toString=function(){return e},t},utcFormat:function(e){var t=x(e+="",_);return t.toString=function(){return e},t},utcParse:function(e){var t=k(e+="",!0);return t.toString=function(){return e},t}}}({dateTime:"%x, %X",date:"%-m/%-d/%Y",time:"%-I:%M:%S %p",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]}),mx=gx.format,vx=gx.parse,gx.utcFormat,bx=gx.utcParse;var zk,$k,Bk,Rk,Dk,Ik,Uk,Hk,qk,Vk,Wk,Yk,Gk,Zk,Xk,Kk,Qk,Jk,eC,tC,nC,rC,iC=_i(nf());function oC(){if(Hk)return Uk;Hk=1;var e=(Rk||(Rk=1,Bk=function(e,t){return null!=e&&t in Object(e)}),Bk),t=function(){if(Ik)return Dk;Ik=1;var e=Hh(),t=Dd(),n=Id(),r=oh(),i=Ud(),o=qh();return Dk=function(a,s,l){for(var c=-1,u=(s=e(s,a)).length,d=!1;++c<u;){var f=o(s[c]);if(!(d=null!=a&&l(a,f)))break;a=a[f]}return d||++c!=u?d:!!(u=null==a?0:a.length)&&i(u)&&r(f,u)&&(n(a)||t(a))},Dk}();return Uk=function(n,r){return null!=n&&t(n,r,e)},Uk}function aC(){return Yk||(Yk=1,Wk=function(e,t){for(var n=-1,r=t.length,i=e.length;++n<r;)e[i+n]=t[n];return e}),Wk}function sC(){if(Kk)return Xk;Kk=1;var e=aC(),t=function(){if(Zk)return Gk;Zk=1;var e=Du(),t=Dd(),n=Id(),r=e?e.isConcatSpreadable:void 0;return Gk=function(e){return n(e)||t(e)||!!(r&&e&&e[r])}}();return Xk=function n(r,i,o,a,s){var l=-1,c=r.length;for(o||(o=t),s||(s=[]);++l<c;){var u=r[l];i>0&&o(u)?i>1?n(u,i-1,o,a,s):e(s,u):a||(s[s.length]=u)}return s},Xk}var lC,cC,uC,dC,fC,hC,pC,gC,mC,vC,bC,yC,_C,wC,xC,kC,CC,SC,MC,TC,AC,NC,OC,PC,LC,EC,FC,jC,zC,$C,BC,RC,DC,IC,UC,HC,qC,VC,WC,YC,GC,ZC,XC,KC,QC=function(){if(rC)return nC;rC=1;var e=function(){if(Vk)return qk;Vk=1;var e=function(){if($k)return zk;$k=1;var e=Vh(),t=Qh(),n=Hh();return zk=function(r,i,o){for(var a=-1,s=i.length,l={};++a<s;){var c=i[a],u=e(r,c);o(u,c)&&t(l,n(c,r),u)}return l},zk}(),t=oC();return qk=function(n,r){return e(n,r,(function(e,r){return t(n,r)}))},qk}(),t=function(){if(tC)return eC;tC=1;var e=function(){if(Jk)return Qk;Jk=1;var e=sC();return Qk=function(t){return null!=t&&t.length?e(t,1):[]},Qk}(),t=ch(),n=uh();return eC=function(r){return n(t(r,void 0,e),r+"")}}()((function(t,n){return null==t?{}:e(t,n)}));return nC=t}(),JC=_i(QC);function eS(){if(dC)return uC;dC=1;var e=P_(),t=(cC||(cC=1,lC=function(e,t){for(var n=-1,r=null==e?0:e.length;++n<r;)if(t(e[n],n,e))return!0;return!1}),lC),n=F_();return uC=function(r,i,o,a,s,l){var c=1&o,u=r.length,d=i.length;if(u!=d&&!(c&&d>u))return!1;var f=l.get(r),h=l.get(i);if(f&&h)return f==i&&h==r;var p=-1,g=!0,m=2&o?new e:void 0;for(l.set(r,i),l.set(i,r);++p<u;){var v=r[p],b=i[p];if(a)var y=c?a(b,v,p,i,r,l):a(v,b,p,r,i,l);if(void 0!==y){if(y)continue;g=!1;break}if(m){if(!t(i,(function(e,t){if(!n(m,t)&&(v===e||s(v,e,o,a,l)))return m.push(t)}))){g=!1;break}}else if(v!==b&&!s(v,b,o,a,l)){g=!1;break}}return l.delete(r),l.delete(i),g},uC}function tS(){return gC?pC:(gC=1,pC=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e){n[++t]=e})),n})}function nS(){if(PC)return OC;PC=1;var e=ah(),t=function(){if(NC)return AC;NC=1;var e=Bd(),t=function(){if(TC)return MC;TC=1;var e=zd()(Object.keys,Object);return MC=e}(),n=Object.prototype.hasOwnProperty;return AC=function(r){if(!e(r))return t(r);var i=[];for(var o in Object(r))n.call(r,o)&&"constructor"!=o&&i.push(o);return i}}(),n=Hd();return OC=function(r){return n(r)?e(r):t(r)}}function rS(){if(IC)return DC;IC=1;var e=Vu()(Ru(),"Set");return DC=e}function iS(){if(YC)return WC;YC=1;var e=Xu(),t=eS(),n=function(){if(vC)return mC;vC=1;var e=Du(),t=jd(),n=ju(),r=eS(),i=(hC||(hC=1,fC=function(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}),fC),o=tS(),a=e?e.prototype:void 0,s=a?a.valueOf:void 0;return mC=function(e,a,l,c,u,d,f){switch(l){case"[object DataView]":if(e.byteLength!=a.byteLength||e.byteOffset!=a.byteOffset)return!1;e=e.buffer,a=a.buffer;case"[object ArrayBuffer]":return!(e.byteLength!=a.byteLength||!d(new t(e),new t(a)));case"[object Boolean]":case"[object Date]":case"[object Number]":return n(+e,+a);case"[object Error]":return e.name==a.name&&e.message==a.message;case"[object RegExp]":case"[object String]":return e==a+"";case"[object Map]":var h=i;case"[object Set]":var p=1&c;if(h||(h=o),e.size!=a.size&&!p)return!1;var g=f.get(e);if(g)return g==a;c|=2,f.set(e,a);var m=r(h(e),h(a),c,u,d,f);return f.delete(e),m;case"[object Symbol]":if(s)return s.call(e)==s.call(a)}return!1},mC}(),r=function(){if(jC)return FC;jC=1;var e=function(){if(EC)return LC;EC=1;var e=function(){if(yC)return bC;yC=1;var e=aC(),t=Id();return bC=function(n,r,i){var o=r(n);return t(n)?o:e(o,i(n))},bC}(),t=function(){if(SC)return CC;SC=1;var e=(wC||(wC=1,_C=function(e,t){for(var n=-1,r=null==e?0:e.length,i=0,o=[];++n<r;){var a=e[n];t(a,n,e)&&(o[i++]=a)}return o}),_C),t=kC?xC:(kC=1,xC=function(){return[]}),n=Object.prototype.propertyIsEnumerable,r=Object.getOwnPropertySymbols,i=r?function(t){return null==t?[]:(t=Object(t),e(r(t),(function(e){return n.call(t,e)})))}:t;return CC=i}(),n=nS();return LC=function(r){return e(r,n,t)}}(),t=Object.prototype.hasOwnProperty;return FC=function(n,r,i,o,a,s){var l=1&i,c=e(n),u=c.length;if(u!=e(r).length&&!l)return!1;for(var d=u;d--;){var f=c[d];if(!(l?f in r:t.call(r,f)))return!1}var h=s.get(n),p=s.get(r);if(h&&p)return h==r&&p==n;var g=!0;s.set(n,r),s.set(r,n);for(var m=l;++d<u;){var v=n[f=c[d]],b=r[f];if(o)var y=l?o(b,v,f,r,n,s):o(v,b,f,n,r,s);if(!(void 0===y?v===b||a(v,b,i,o,s):y)){g=!1;break}m||(m="constructor"==f)}if(g&&!m){var _=n.constructor,w=r.constructor;_==w||!("constructor"in n)||!("constructor"in r)||"function"==typeof _&&_ instanceof _&&"function"==typeof w&&w instanceof w||(g=!1)}return s.delete(n),s.delete(r),g},FC}(),i=function(){if(VC)return qC;VC=1;var e=function(){if($C)return zC;$C=1;var e=Vu()(Ru(),"DataView");return zC=e}(),t=Wu(),n=function(){if(RC)return BC;RC=1;var e=Vu()(Ru(),"Promise");return BC=e}(),r=rS(),i=function(){if(HC)return UC;HC=1;var e=Vu()(Ru(),"WeakMap");return UC=e}(),o=Iu(),a=qu(),s="[object Map]",l="[object Promise]",c="[object Set]",u="[object WeakMap]",d="[object DataView]",f=a(e),h=a(t),p=a(n),g=a(r),m=a(i),v=o;return(e&&v(new e(new ArrayBuffer(1)))!=d||t&&v(new t)!=s||n&&v(n.resolve())!=l||r&&v(new r)!=c||i&&v(new i)!=u)&&(v=function(e){var t=o(e),n="[object Object]"==t?e.constructor:void 0,r=n?a(n):"";if(r)switch(r){case f:return d;case h:return s;case p:return l;case g:return c;case m:return u}return t}),qC=v}(),o=Id(),a=tf(),s=nh(),l="[object Arguments]",c="[object Array]",u="[object Object]",d=Object.prototype.hasOwnProperty;return WC=function(f,h,p,g,m,v){var b=o(f),y=o(h),_=b?c:i(f),w=y?c:i(h),x=(_=_==l?u:_)==u,k=(w=w==l?u:w)==u,C=_==w;if(C&&a(f)){if(!a(h))return!1;b=!0,x=!1}if(C&&!x)return v||(v=new e),b||s(f)?t(f,h,p,g,m,v):n(f,h,_,p,g,m,v);if(!(1&p)){var S=x&&d.call(f,"__wrapped__"),M=k&&d.call(h,"__wrapped__");if(S||M){var T=S?f.value():f,A=M?h.value():h;return v||(v=new e),m(T,A,p,g,v)}}return!!C&&(v||(v=new e),r(f,h,p,g,m,v))},WC}function oS(){if(ZC)return GC;ZC=1;var e=iS(),t=Rd();return GC=function n(r,i,o,a,s){return r===i||(null==r||null==i||!t(r)&&!t(i)?r!=r&&i!=i:e(r,i,o,a,n,s))},GC}var aS=_i(function(){if(KC)return XC;KC=1;var e=oS();return XC=function(t,n){return e(t,n)}}()),sS={background:"transparent",text:{fontFamily:"sans-serif",fontSize:11,fill:"#333333",outlineWidth:0,outlineColor:"transparent",outlineOpacity:1},axis:{domain:{line:{stroke:"transparent",strokeWidth:1}},ticks:{line:{stroke:"#777777",strokeWidth:1},text:{}},legend:{text:{fontSize:12}}},grid:{line:{stroke:"#dddddd",strokeWidth:1}},legends:{hidden:{symbol:{fill:"#333333",opacity:.6},text:{fill:"#333333",opacity:.6}},text:{},ticks:{line:{stroke:"#777777",strokeWidth:1},text:{fontSize:10}},title:{text:{}}},labels:{text:{}},markers:{lineColor:"#000000",lineStrokeWidth:1,text:{}},dots:{text:{}},tooltip:{container:{background:"white",color:"inherit",fontSize:"inherit",borderRadius:"2px",boxShadow:"0 1px 2px rgba(0, 0, 0, 0.25)",padding:"5px 9px"},basic:{whiteSpace:"pre",display:"flex",alignItems:"center"},chip:{marginRight:7},table:{},tableCell:{padding:"3px 5px"},tableCellValue:{fontWeight:"bold"}},crosshair:{line:{stroke:"#000000",strokeWidth:1,strokeOpacity:.75,strokeDasharray:"6 6"}},annotations:{text:{fontSize:13,outlineWidth:2,outlineColor:"#ffffff",outlineOpacity:1},link:{stroke:"#000000",strokeWidth:1,outlineWidth:2,outlineColor:"#ffffff",outlineOpacity:1},outline:{fill:"none",stroke:"#000000",strokeWidth:2,outlineWidth:2,outlineColor:"#ffffff",outlineOpacity:1},symbol:{fill:"#000000",outlineWidth:2,outlineColor:"#ffffff",outlineOpacity:1}}};function lS(){return lS=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},lS.apply(this,arguments)}function cS(e,t){return cS=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},cS(e,t)}function uS(e,t){if(null==e)return{};var n,r,i={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}var dS=["axis.ticks.text","axis.legend.text","legends.title.text","legends.text","legends.ticks.text","legends.title.text","labels.text","dots.text","markers.text","annotations.text"],fS=G(),hS=function(e){var t=e.children,n=e.animate,r=void 0===n||n,i=e.config,o=void 0===i?"default":i,a=fe((function(){var e=mg(o)?ms[o]:o;return{animate:r,config:e}}),[r,o]);return Je(fS.Provider,{value:a,children:t})},pS={animate:Vi.bool,motionConfig:Vi.oneOfType([Vi.oneOf(Object.keys(ms)),Vi.shape({mass:Vi.number,tension:Vi.number,friction:Vi.number,clamp:Vi.bool,precision:Vi.number,velocity:Vi.number,duration:Vi.number,easing:Vi.func})])};hS.propTypes={children:Vi.node.isRequired,animate:pS.animate,config:pS.motionConfig};var gS=function(){return pe(fS)},mS=function(e){var t=gS(),n=t.animate,r=t.config,i=function(e){var t=de();return ue((function(){t.current=e}),[e]),t.current}(e),o=fe((function(){return sg(i,e)}),[i,e]);return((e,...t)=>new dl(e,t))(ll({from:{value:0},to:{value:1},reset:!0,config:r,immediate:!n}).value,o)},vS={nivo:["#d76445","#f47560","#e8c1a0","#97e3d5","#61cdbb","#00b0a7"],BrBG:vg(Gb),PRGn:vg(Xb),PiYG:vg(Qb),PuOr:vg(ey),RdBu:vg(ny),RdGy:vg(iy),RdYlBu:vg(ay),RdYlGn:vg(ly),spectral:vg(uy),blues:vg(zy),greens:vg(By),greys:vg(Dy),oranges:vg(Wy),purples:vg(Uy),reds:vg(qy),BuGn:vg(fy),BuPu:vg(py),GnBu:vg(my),OrRd:vg(by),PuBuGn:vg(_y),PuBu:vg(xy),PuRd:vg(Cy),RdPu:vg(My),YlGnBu:vg(Ay),YlGn:vg(Oy),YlOrBr:vg(Ly),YlOrRd:vg(Fy)},bS=Object.keys(vS);vg(Gb),vg(Xb),vg(Qb),vg(ey),vg(ny),vg(iy),vg(ay),vg(ly),vg(uy),vg(zy),vg(By),vg(Dy),vg(Wy),vg(Uy),vg(qy),vg(fy),vg(py),vg(my),vg(by),vg(_y),vg(xy),vg(Cy),vg(My),vg(Ay),vg(Oy),vg(Ly),vg(Fy),Vi.oneOfType([Vi.oneOf(bS),Vi.func,Vi.arrayOf(Vi.string)]);var yS={basis:function(e){return new J_(e)},basisClosed:function(e){return new ew(e)},basisOpen:function(e){return new tw(e)},bundle:rw,cardinal:aw,cardinalClosed:lw,cardinalOpen:uw,catmullRom:hw,catmullRomClosed:gw,catmullRomOpen:vw,linear:Y_,linearClosed:function(e){return new bw(e)},monotoneX:function(e){return new kw(e)},monotoneY:function(e){return new Cw(e)},natural:function(e){return new Mw(e)},step:function(e){return new Aw(e,.5)},stepAfter:function(e){return new Aw(e,1)},stepBefore:function(e){return new Aw(e,0)}},_S=Object.keys(yS);_S.filter((function(e){return e.endsWith("Closed")})),z_(_S,"bundle","basisClosed","basisOpen","cardinalClosed","cardinalOpen","catmullRomClosed","catmullRomOpen","linearClosed"),z_(_S,"bundle","basisClosed","basisOpen","cardinalClosed","cardinalOpen","catmullRomClosed","catmullRomOpen","linearClosed");var wS=function(e){if(!yS[e])throw new TypeError("'"+e+"', is not a valid curve interpolator identifier.");return yS[e]};Vi.shape({top:Vi.number,right:Vi.number,bottom:Vi.number,left:Vi.number}).isRequired,Vi.oneOf(["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]),jg(Vb);var xS={top:0,right:0,bottom:0,left:0},kS=function(e,t,n){return void 0===n&&(n={}),fe((function(){var r=lS({},xS,n);return{margin:r,innerWidth:e-r.left-r.right,innerHeight:t-r.top-r.bottom,outerWidth:e,outerHeight:t}}),[e,t,n.top,n.right,n.bottom,n.left])},CS=function(){var e=de(null),t=ce({left:0,top:0,width:0,height:0}),n=t[0],r=t[1],i=ce((function(){return"undefined"==typeof ResizeObserver?null:new ResizeObserver((function(e){var t=e[0];return r(t.contentRect)}))}))[0];return ue((function(){return e.current&&null!==i&&i.observe(e.current),function(){null!==i&&i.disconnect()}}),[]),[e,n]},SS=function(e){return fe((function(){return function(e){return"function"==typeof e?e:"string"==typeof e?0===e.indexOf("time:")?mx(e.slice("5")):Bw(e):function(e){return""+e}}(e)}),[e])},MS=G(),TS={},AS=function(e){var t=e.theme,n=void 0===t?TS:t,r=e.children,i=function(e){return fe((function(){return function(e,t){var n=Bh({},e,t);return dS.forEach((function(e){ep(n,e,function(e,t){return lS({},t,e)}(Kh(n,e),n.text))})),n}(sS,e)}),[e])}(n);return Je(MS.Provider,{value:i,children:r})};AS.propTypes={children:Vi.node.isRequired,theme:Vi.object};var NS=function(){return pe(MS)},OS=["outlineWidth","outlineColor","outlineOpacity"],PS=function(e){return e.outlineWidth,e.outlineColor,e.outlineOpacity,uS(e,OS)},LS=function(e){var t=e.children,n=e.condition,r=e.wrapper;return n?Ke(r,{},t):t};LS.propTypes={children:Vi.node.isRequired,condition:Vi.bool.isRequired,wrapper:Vi.element.isRequired};var ES={position:"relative"},FS=function(e){var t=e.children,n=e.theme,r=e.renderWrapper,i=void 0===r||r,o=e.isInteractive,a=void 0===o||o,s=e.animate,l=e.motionConfig,c=de(null);return Je(AS,{theme:n,children:Je(hS,{animate:s,config:l,children:Je(Fu,{container:c,children:Je(LS,{condition:i,wrapper:Je("div",{style:ES,ref:c}),children:[t,a&&Je(Eu,{})]})})})})};FS.propTypes={children:Vi.element.isRequired,isInteractive:Vi.bool,renderWrapper:Vi.bool,theme:Vi.object,animate:Vi.bool,motionConfig:Vi.oneOfType([Vi.string,pS.motionConfig])},Vi.func.isRequired,Vi.bool,Vi.bool,Vi.object.isRequired,Vi.bool.isRequired,Vi.oneOfType([Vi.string,pS.motionConfig]);var jS=function(e){var t=e.children,n=CS(),r=n[0],i=n[1];return Je("div",{ref:r,style:{width:"100%",height:"100%"},children:i.width>0&&i.height>0&&t({width:i.width,height:i.height})})};jS.propTypes={children:Vi.func.isRequired};var zS=["id","colors"],$S=function(e){var t=e.id,n=e.colors;return Je("linearGradient",lS({id:t,x1:0,x2:0,y1:0,y2:1},uS(e,zS),{children:n.map((function(e){var t=e.offset,n=e.color,r=e.opacity;return Je("stop",{offset:t+"%",stopColor:n,stopOpacity:void 0!==r?r:1},t)}))}))};$S.propTypes={id:Vi.string.isRequired,colors:Vi.arrayOf(Vi.shape({offset:Vi.number.isRequired,color:Vi.string.isRequired,opacity:Vi.number})).isRequired,gradientTransform:Vi.string};var BS={linearGradient:$S},RS=Se((function(e){var t=e.id,n=e.background,r=void 0===n?"#ffffff":n,i=e.color,o=void 0===i?"#000000":i,a=e.size,s=void 0===a?4:a,l=e.padding,c=void 0===l?4:l,u=e.stagger,d=void 0!==u&&u,f=s+c,h=s/2,p=c/2;return!0===d&&(f=2*s+2*c),Je("pattern",{id:t,width:f,height:f,patternUnits:"userSpaceOnUse",children:[Je("rect",{width:f,height:f,fill:r}),Je("circle",{cx:p+h,cy:p+h,r:h,fill:o}),d&&Je("circle",{cx:1.5*c+s+h,cy:1.5*c+s+h,r:h,fill:o})]})}));RS.displayName="PatternDots",RS.propTypes={id:Vi.string.isRequired,color:Vi.string.isRequired,background:Vi.string.isRequired,size:Vi.number.isRequired,padding:Vi.number.isRequired,stagger:Vi.bool.isRequired};var DS=function(e){return e*Math.PI/180},IS={svg:{align:{left:"start",center:"middle",right:"end",start:"start",middle:"middle",end:"end"},baseline:{top:"text-before-edge",center:"central",bottom:"alphabetic"}},canvas:{align:{left:"left",center:"center",right:"right",start:"left",middle:"center",end:"right"},baseline:{top:"top",center:"middle",bottom:"bottom"}}},US=Se((function(e){var t=e.id,n=e.spacing,r=void 0===n?5:n,i=e.rotation,o=void 0===i?0:i,a=e.background,s=void 0===a?"#000000":a,l=e.color,c=void 0===l?"#ffffff":l,u=e.lineWidth,d=void 0===u?2:u,f=Math.round(o)%360,h=Math.abs(r);f>180?f-=360:f>90?f-=180:f<-180?f+=360:f<-90&&(f+=180);var p,g=h,m=h;return 0===f?p="\n M 0 0 L "+g+" 0\n M 0 "+m+" L "+g+" "+m+"\n ":90===f?p="\n M 0 0 L 0 "+m+"\n M "+g+" 0 L "+g+" "+m+"\n ":(g=Math.abs(h/Math.sin(DS(f))),m=h/Math.sin(DS(90-f)),p=f>0?"\n M 0 "+-m+" L "+2*g+" "+m+"\n M "+-g+" "+-m+" L "+g+" "+m+"\n M "+-g+" 0 L "+g+" "+2*m+"\n ":"\n M "+-g+" "+m+" L "+g+" "+-m+"\n M "+-g+" "+2*m+" L "+2*g+" "+-m+"\n M 0 "+2*m+" L "+2*g+" 0\n "),Je("pattern",{id:t,width:g,height:m,patternUnits:"userSpaceOnUse",children:[Je("rect",{width:g,height:m,fill:s,stroke:"rgba(255, 0, 0, 0.1)",strokeWidth:0}),Je("path",{d:p,strokeWidth:d,stroke:c,strokeLinecap:"square"})]})}));US.displayName="PatternLines",US.propTypes={id:Vi.string.isRequired,spacing:Vi.number.isRequired,rotation:Vi.number.isRequired,background:Vi.string.isRequired,color:Vi.string.isRequired,lineWidth:Vi.number.isRequired};var HS=Se((function(e){var t=e.id,n=e.color,r=void 0===n?"#000000":n,i=e.background,o=void 0===i?"#ffffff":i,a=e.size,s=void 0===a?4:a,l=e.padding,c=void 0===l?4:l,u=e.stagger,d=void 0!==u&&u,f=s+c,h=c/2;return!0===d&&(f=2*s+2*c),Je("pattern",{id:t,width:f,height:f,patternUnits:"userSpaceOnUse",children:[Je("rect",{width:f,height:f,fill:o}),Je("rect",{x:h,y:h,width:s,height:s,fill:r}),d&&Je("rect",{x:1.5*c+s,y:1.5*c+s,width:s,height:s,fill:r})]})}));HS.displayName="PatternSquares",HS.propTypes={id:Vi.string.isRequired,color:Vi.string.isRequired,background:Vi.string.isRequired,size:Vi.number.isRequired,padding:Vi.number.isRequired,stagger:Vi.bool.isRequired};var qS={patternDots:RS,patternLines:US,patternSquares:HS},VS=["type"],WS=lS({},BS,qS),YS=function(e){var t=e.defs;return!t||t.length<1?null:Je("defs",{"aria-hidden":!0,children:t.map((function(e){var t=e.type,n=uS(e,VS);return WS[t]?S(WS[t],lS({key:n.id},n)):null}))})};YS.propTypes={defs:Vi.arrayOf(Vi.shape({type:Vi.oneOf(Object.keys(WS)).isRequired,id:Vi.string.isRequired}))};var GS=Se(YS),ZS=function(e){var t=e.width,n=e.height,r=e.margin,i=e.defs,o=e.children,a=e.role,s=e.ariaLabel,l=e.ariaLabelledBy,c=e.ariaDescribedBy,u=e.isFocusable,d=NS();return Je("svg",{xmlns:"http://www.w3.org/2000/svg",width:t,height:n,role:a,"aria-label":s,"aria-labelledby":l,"aria-describedby":c,focusable:u,tabIndex:u?0:void 0,children:[Je(GS,{defs:i}),Je("rect",{width:t,height:n,fill:d.background}),Je("g",{transform:"translate("+r.left+","+r.top+")",children:o})]})};ZS.propTypes={width:Vi.number.isRequired,height:Vi.number.isRequired,margin:Vi.shape({top:Vi.number.isRequired,left:Vi.number.isRequired}).isRequired,defs:Vi.array,children:Vi.oneOfType([Vi.arrayOf(Vi.node),Vi.node]).isRequired,role:Vi.string,isFocusable:Vi.bool,ariaLabel:Vi.string,ariaLabelledBy:Vi.string,ariaDescribedBy:Vi.string};var XS=function(e){var t=e.size,n=e.color,r=e.borderWidth;return Je("circle",{r:t/2,fill:n,stroke:e.borderColor,strokeWidth:r,style:{pointerEvents:"none"}})};XS.propTypes={size:Vi.number.isRequired,color:Vi.string.isRequired,borderWidth:Vi.number.isRequired,borderColor:Vi.string.isRequired};var KS=Se(XS),QS=function(e){var t=e.x,n=e.y,r=e.symbol,i=void 0===r?KS:r,o=e.size,a=e.datum,s=e.color,l=e.borderWidth,c=e.borderColor,u=e.label,d=e.labelTextAnchor,f=void 0===d?"middle":d,h=e.labelYOffset,p=void 0===h?-12:h,g=NS(),m=gS(),v=m.animate,b=ll({transform:"translate("+t+", "+n+")",config:m.config,immediate:!v});return Je(Al.g,{transform:b.transform,style:{pointerEvents:"none"},children:[S(i,{size:o,color:s,datum:a,borderWidth:l,borderColor:c}),u&&Je("text",{textAnchor:f,y:p,style:PS(g.dots.text),children:u})]})};QS.propTypes={x:Vi.number.isRequired,y:Vi.number.isRequired,datum:Vi.object.isRequired,size:Vi.number.isRequired,color:Vi.string.isRequired,borderWidth:Vi.number.isRequired,borderColor:Vi.string.isRequired,symbol:Vi.oneOfType([Vi.func,Vi.object]),label:Vi.oneOfType([Vi.string,Vi.number]),labelTextAnchor:Vi.oneOf(["start","middle","end"]),labelYOffset:Vi.number};var JS=Se(QS),eM=function(e){var t=e.width,n=e.height,r=e.axis,i=e.scale,o=e.value,a=e.lineStyle,s=e.textStyle,l=e.legend,c=e.legendNode,u=e.legendPosition,d=void 0===u?"top-right":u,f=e.legendOffsetX,h=void 0===f?14:f,p=e.legendOffsetY,g=void 0===p?14:p,m=e.legendOrientation,v=void 0===m?"horizontal":m,b=NS(),y=0,_=0,w=0,x=0;if("y"===r?(w=i(o),_=t):(y=i(o),x=n),l&&!c){var k=function(e){var t=e.width,n=e.height,r=e.position,i=e.offsetX,o=e.offsetY,a=e.orientation,s=0,l=0,c="vertical"===a?-90:0,u="start";if("x"===e.axis)switch(r){case"top-left":s=-i,l=o,u="end";break;case"top":l=-o,u="horizontal"===a?"middle":"start";break;case"top-right":s=i,l=o,u="horizontal"===a?"start":"end";break;case"right":s=i,l=n/2,u="horizontal"===a?"start":"middle";break;case"bottom-right":s=i,l=n-o,u="start";break;case"bottom":l=n+o,u="horizontal"===a?"middle":"end";break;case"bottom-left":l=n-o,s=-i,u="horizontal"===a?"end":"start";break;case"left":s=-i,l=n/2,u="horizontal"===a?"end":"middle"}else switch(r){case"top-left":s=i,l=-o,u="start";break;case"top":s=t/2,l=-o,u="horizontal"===a?"middle":"start";break;case"top-right":s=t-i,l=-o,u="horizontal"===a?"end":"start";break;case"right":s=t+i,u="horizontal"===a?"start":"middle";break;case"bottom-right":s=t-i,l=o,u="end";break;case"bottom":s=t/2,l=o,u="horizontal"===a?"middle":"end";break;case"bottom-left":s=i,l=o,u="horizontal"===a?"start":"end";break;case"left":s=-i,u="horizontal"===a?"end":"middle"}return{x:s,y:l,rotation:c,textAnchor:u}}({axis:r,width:t,height:n,position:d,offsetX:h,offsetY:g,orientation:v});c=Je("text",{transform:"translate("+k.x+", "+k.y+") rotate("+k.rotation+")",textAnchor:k.textAnchor,dominantBaseline:"central",style:s,children:l})}return Je("g",{transform:"translate("+y+", "+w+")",children:[Je("line",{x1:0,x2:_,y1:0,y2:x,stroke:b.markers.lineColor,strokeWidth:b.markers.lineStrokeWidth,style:a}),c]})};eM.propTypes={width:Vi.number.isRequired,height:Vi.number.isRequired,axis:Vi.oneOf(["x","y"]).isRequired,scale:Vi.func.isRequired,value:Vi.oneOfType([Vi.number,Vi.string,Vi.instanceOf(Date)]).isRequired,lineStyle:Vi.object,textStyle:Vi.object,legend:Vi.string,legendPosition:Vi.oneOf(["top-left","top","top-right","right","bottom-right","bottom","bottom-left","left"]),legendOffsetX:Vi.number.isRequired,legendOffsetY:Vi.number.isRequired,legendOrientation:Vi.oneOf(["horizontal","vertical"]).isRequired};var tM=Se(eM),nM=function(e){var t=e.markers,n=e.width,r=e.height,i=e.xScale,o=e.yScale;return t&&0!==t.length?t.map((function(e,t){return Je(tM,lS({},e,{width:n,height:r,scale:"y"===e.axis?o:i}),t)})):null};nM.propTypes={width:Vi.number.isRequired,height:Vi.number.isRequired,xScale:Vi.func.isRequired,yScale:Vi.func.isRequired,markers:Vi.arrayOf(Vi.shape({axis:Vi.oneOf(["x","y"]).isRequired,value:Vi.oneOfType([Vi.number,Vi.string,Vi.instanceOf(Date)]).isRequired,lineStyle:Vi.object,textStyle:Vi.object}))};var rM=Se(nM),iM=["theme","renderWrapper","animate","motionConfig"],oM=function(e){return function(t){var n,r;function i(){return t.apply(this,arguments)||this}return r=t,(n=i).prototype=Object.create(r.prototype),n.prototype.constructor=n,cS(n,r),i.prototype.render=function(){var t=this.props,n=t.theme,r=t.renderWrapper,i=t.animate,o=t.motionConfig,a=uS(t,iM);return Je(FS,{theme:n,renderWrapper:r,isInteractive:a.isInteractive,animate:i,motionConfig:o,children:Je(e,lS({},a))})},i}(A)},aM=function(e,t){var n,r="touches"in t?t.touches[0]:t,i=r.clientX,o=r.clientY,a=e.getBoundingClientRect(),s=(n=void 0!==e.getBBox?e.getBBox():{width:e.offsetWidth||0,height:e.offsetHeight||0}).width===a.width?1:n.width/a.width;return[(i-a.left)*s,(o-a.top)*s]},sM=Object.keys(BS),lM=Object.keys(qS);function cM(){return cM=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},cM.apply(this,arguments)}function uM(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var dM={nivo:["#e8c1a0","#f47560","#f1e15b","#e8a838","#61cdbb","#97e3d5"],category10:$b,accent:Bb,dark2:Rb,paired:Db,pastel1:Ib,pastel2:Ub,set1:Hb,set2:qb,set3:Vb,tableau10:Wb},fM=Object.keys(dM),hM={brown_blueGreen:Gb,purpleRed_green:Xb,pink_yellowGreen:Qb,purple_orange:ey,red_blue:ny,red_grey:iy,red_yellow_blue:ay,red_yellow_green:ly,spectral:uy},pM=Object.keys(hM),gM={brown_blueGreen:Zb,purpleRed_green:Kb,pink_yellowGreen:Jb,purple_orange:ty,red_blue:ry,red_grey:oy,red_yellow_blue:sy,red_yellow_green:cy,spectral:dy},mM={blues:zy,greens:By,greys:Dy,oranges:Wy,purples:Uy,reds:qy,blue_green:fy,blue_purple:py,green_blue:my,orange_red:by,purple_blue_green:_y,purple_blue:xy,purple_red:Cy,red_purple:My,yellow_green_blue:Ay,yellow_green:Oy,yellow_orange_brown:Ly,yellow_orange_red:Fy},vM=Object.keys(mM),bM={blues:$y,greens:Ry,greys:Iy,oranges:Yy,purples:Hy,reds:Vy,turbo:function(e){return e=Math.max(0,Math.min(1,e)),"rgb("+Math.max(0,Math.min(255,Math.round(34.61+e*(1172.33-e*(10793.56-e*(33300.12-e*(38394.49-14825.05*e)))))))+", "+Math.max(0,Math.min(255,Math.round(23.31+e*(557.33+e*(1225.33-e*(3574.96-e*(1073.77+707.56*e)))))))+", "+Math.max(0,Math.min(255,Math.round(27.2+e*(3211.1-e*(15327.97-e*(27814-e*(22569.18-6838.66*e)))))))+")"},viridis:M_,inferno:A_,magma:T_,plasma:N_,cividis:function(e){return e=Math.max(0,Math.min(1,e)),"rgb("+Math.max(0,Math.min(255,Math.round(-4.54-e*(35.34-e*(2381.73-e*(6402.7-e*(7024.72-2710.57*e)))))))+", "+Math.max(0,Math.min(255,Math.round(32.49+e*(170.73+e*(52.82-e*(131.46-e*(176.58-67.37*e)))))))+", "+Math.max(0,Math.min(255,Math.round(81.24+e*(442.36-e*(2482.43-e*(6167.24-e*(6614.94-2475.67*e)))))))+")"},warm:Zy,cool:Xy,cubehelixDefault:Gy,blue_green:hy,blue_purple:gy,green_blue:vy,orange_red:yy,purple_blue_green:wy,purple_blue:ky,purple_red:Sy,red_purple:Ty,yellow_green_blue:Ny,yellow_green:Py,yellow_orange_brown:Ey,yellow_orange_red:jy},yM=cM({},dM,hM,mM);cM({},gM,bM,{rainbow:function(e){(e<0||e>1)&&(e-=Math.floor(e));var t=Math.abs(e-.5);return Ky.h=360*e-100,Ky.s=1.5-1.5*t,Ky.l=.8-.9*t,Ky+""},sinebow:function(e){var t;return e=(.5-e)*Math.PI,Qy.r=255*(t=Math.sin(e))*t,Qy.g=255*(t=Math.sin(e+Jy))*t,Qy.b=255*(t=Math.sin(e+e_))*t,Qy+""}});var _M,wM,xM,kM,CM,SM,MM,TM,AM=function(e,t){return fe((function(){return function(e,t){if("function"==typeof e)return e;if(iC(e)){if(function(e){return void 0!==e.theme}(e)){if(void 0===t)throw new Error("Unable to use color from theme as no theme was provided");var n=Kh(t,e.theme);if(void 0===n)throw new Error("Color from theme is undefined at path: '"+e.theme+"'");return function(){return n}}if(function(e){return void 0!==e.from}(e)){var r=function(t){return Kh(t,e.from)};if(Array.isArray(e.modifiers)){for(var i,o=[],a=function(){var e=i.value,t=e[0],n=e[1];if("brighter"===t)o.push((function(e){return e.brighter(n)}));else if("darker"===t)o.push((function(e){return e.darker(n)}));else{if("opacity"!==t)throw new Error("Invalid color modifier: '"+t+"', must be one of: 'brighter', 'darker', 'opacity'");o.push((function(e){return e.opacity=n,e}))}},s=function(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(n)return(n=n.call(e)).next.bind(n);if(Array.isArray(e)||(n=function(e,t){if(e){if("string"==typeof e)return uM(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?uM(e,t):void 0}}(e))){n&&(e=n);var r=0;return function(){return r>=e.length?{done:!0}:{done:!1,value:e[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.")}(e.modifiers);!(i=s()).done;)a();return 0===o.length?r:function(e){return o.reduce((function(e,t){return t(e)}),kp(r(e))).toString()}}return r}throw new Error("Invalid color spec, you should either specify 'theme' or 'from' when using a config object")}return function(){return e}}(e,t)}),[e,t])};function NM(){if(SM)return CM;SM=1;var e=P_(),t=L_(),n=E_(),r=F_(),i=function(){if(kM)return xM;kM=1;var e=rS(),t=wM?_M:(wM=1,_M=function(){}),n=tS(),r=e&&1/n(new e([,-0]))[1]==1/0?function(t){return new e(t)}:t;return xM=r}(),o=tS();return CM=function(a,s,l){var c=-1,u=t,d=a.length,f=!0,h=[],p=h;if(l)f=!1,u=n;else if(d>=200){var g=s?null:i(a);if(g)return o(g);f=!1,u=r,p=new e}else p=s?[]:h;e:for(;++c<d;){var m=a[c],v=s?s(m):m;if(m=l||0!==m?m:0,f&&v==v){for(var b=p.length;b--;)if(p[b]===v)continue e;s&&p.push(v),h.push(m)}else u(p,v,l)||(p!==h&&p.push(v),h.push(m))}return h},CM}Vi.oneOfType([Vi.string,Vi.func,Vi.shape({theme:Vi.string.isRequired}),Vi.shape({from:Vi.string.isRequired,modifiers:Vi.arrayOf(Vi.array)})]);var OM,PM,LM,EM,FM,jM,zM,$M,BM,RM,DM,IM,UM,HM,qM,VM,WM,YM,GM,ZM,XM,KM,QM=_i(function(){if(TM)return MM;TM=1;var e=NM();return MM=function(t){return t&&t.length?e(t):[]}}());function JM(){if(EM)return LM;EM=1;var e=Uu();return LM=function(t){return t==t&&!e(t)}}function eT(){return $M||($M=1,zM=function(e,t){return function(n){return null!=n&&n[e]===t&&(void 0!==t||e in Object(n))}}),zM}function tT(){if(ZM)return GM;ZM=1;var e=function(){if(RM)return BM;RM=1;var e=function(){if(PM)return OM;PM=1;var e=Xu(),t=oS();return OM=function(n,r,i,o){var a=i.length,s=a,l=!o;if(null==n)return!s;for(n=Object(n);a--;){var c=i[a];if(l&&c[2]?c[1]!==n[c[0]]:!(c[0]in n))return!1}for(;++a<s;){var u=(c=i[a])[0],d=n[u],f=c[1];if(l&&c[2]){if(void 0===d&&!(u in n))return!1}else{var h=new e;if(o)var p=o(d,f,u,n,r,h);if(!(void 0===p?t(f,d,3,o,h):p))return!1}}return!0},OM}(),t=function(){if(jM)return FM;jM=1;var e=JM(),t=nS();return FM=function(n){for(var r=t(n),i=r.length;i--;){var o=r[i],a=n[o];r[i]=[o,a,e(a)]}return r},FM}(),n=eT();return BM=function(r){var i=t(r);return 1==i.length&&i[0][2]?n(i[0][0],i[0][1]):function(t){return t===r||e(t,r,i)}}}(),t=function(){if(IM)return DM;IM=1;var e=oS(),t=Wh(),n=oC(),r=Dh(),i=JM(),o=eT(),a=qh();return DM=function(s,l){return r(s)&&i(l)?o(a(s),l):function(r){var i=t(r,s);return void 0===i&&i===l?n(r,s):e(l,i,3)}},DM}(),n=lh(),r=Id(),i=function(){if(YM)return WM;YM=1;var e=(HM||(HM=1,UM=function(e){return function(t){return null==t?void 0:t[e]}}),UM),t=function(){if(VM)return qM;VM=1;var e=Vh();return qM=function(t){return function(n){return e(n,t)}},qM}(),n=Dh(),r=qh();return WM=function(i){return n(i)?e(r(i)):t(i)}}();return GM=function(o){return"function"==typeof o?o:null==o?n:"object"==typeof o?r(o)?t(o[0],o[1]):e(o):i(o)}}var nT,rT,iT,oT,aT,sT,lT,cT,uT,dT,fT,hT,pT,gT,mT,vT,bT,yT,_T=function(){if(KM)return XM;KM=1;var e=tT(),t=NM();return XM=function(n,r){return n&&n.length?t(n,e(r,2)):[]},XM}(),wT=_i(_T);var xT,kT,CT,ST,MT=_i(function(){if(yT)return bT;yT=1;var e=sC(),t=function(){if(vT)return mT;vT=1;var e=Ih(),t=Vh(),n=tT(),r=function(){if(cT)return lT;cT=1;var e=function(){if(sT)return aT;sT=1;var e=function(){if(rT)return nT;rT=1;var e=ed(),t=nS();return nT=function(n,r){return n&&e(n,r,t)},nT}(),t=function(){if(oT)return iT;oT=1;var e=Hd();return iT=function(t,n){return function(r,i){if(null==r)return r;if(!e(r))return t(r,i);for(var o=r.length,a=n?o:-1,s=Object(r);(n?a--:++a<o)&&!1!==i(s[a],a,s););return r}}}()(e);return aT=t}(),t=Hd();return lT=function(n,r){var i=-1,o=t(n)?Array(n.length):[];return e(n,(function(e,t,n){o[++i]=r(e,t,n)})),o}}(),i=(dT||(dT=1,uT=function(e,t){var n=e.length;for(e.sort(t);n--;)e[n]=e[n].value;return e}),uT),o=rf(),a=function(){if(gT)return pT;gT=1;var e=function(){if(hT)return fT;hT=1;var e=Rh();return fT=function(t,n){if(t!==n){var r=void 0!==t,i=null===t,o=t==t,a=e(t),s=void 0!==n,l=null===n,c=n==n,u=e(n);if(!l&&!u&&!a&&t>n||a&&s&&c&&!l&&!u||i&&s&&c||!r&&c||!o)return 1;if(!i&&!a&&!u&&t<n||u&&r&&o&&!i&&!a||l&&r&&o||!s&&o||!c)return-1}return 0}}();return pT=function(t,n,r){for(var i=-1,o=t.criteria,a=n.criteria,s=o.length,l=r.length;++i<s;){var c=e(o[i],a[i]);if(c)return i>=l?c:c*("desc"==r[i]?-1:1)}return t.index-n.index},pT}(),s=lh(),l=Id();return mT=function(c,u,d){u=u.length?e(u,(function(e){return l(e)?function(n){return t(n,1===e.length?e[0]:e)}:e})):[s];var f=-1;u=e(u,o(n));var h=r(c,(function(t,n,r){return{criteria:e(u,(function(e){return e(t)})),index:++f,value:t}}));return i(h,(function(e,t){return a(e,t,d)}))},mT}(),n=dh(),r=fh(),i=n((function(n,i){if(null==n)return[];var o=i.length;return o>1&&r(n,i[0],i[1])?i=[]:o>2&&r(i[0],i[1],i[2])&&(i=[i[0]]),t(n,e(i,1),[])}));return bT=i}()),TT=_i(function(){if(ST)return CT;ST=1;var e=function(){if(kT)return xT;kT=1;var e=Iu(),t=Rd();return xT=function(n){return t(n)&&"[object Date]"==e(n)}}(),t=rf(),n=th(),r=n&&n.isDate,i=r?t(r):e;return CT=i}()),AT=new Date,NT=new Date;function OT(e,t,n,r){function i(t){return e(t=0===arguments.length?new Date:new Date(+t)),t}return i.floor=function(t){return e(t=new Date(+t)),t},i.ceil=function(n){return e(n=new Date(n-1)),t(n,1),e(n),n},i.round=function(e){var t=i(e),n=i.ceil(e);return e-t<n-e?t:n},i.offset=function(e,n){return t(e=new Date(+e),null==n?1:Math.floor(n)),e},i.range=function(n,r,o){var a,s=[];if(n=i.ceil(n),o=null==o?1:Math.floor(o),!(n<r&&o>0))return s;do{s.push(a=new Date(+n)),t(n,o),e(n)}while(a<n&&n<r);return s},i.filter=function(n){return OT((function(t){if(t>=t)for(;e(t),!n(t);)t.setTime(t-1)}),(function(e,r){if(e>=e)if(r<0)for(;++r<=0;)for(;t(e,-1),!n(e););else for(;--r>=0;)for(;t(e,1),!n(e););}))},n&&(i.count=function(t,r){return AT.setTime(+t),NT.setTime(+r),e(AT),e(NT),Math.floor(n(AT,NT))},i.every=function(e){return e=Math.floor(e),isFinite(e)&&e>0?e>1?i.filter(r?function(t){return r(t)%e==0}:function(t){return i.count(0,t)%e==0}):i:null}),i}var PT=OT((function(){}),(function(e,t){e.setTime(+e+t)}),(function(e,t){return t-e}));PT.every=function(e){return e=Math.floor(e),isFinite(e)&&e>0?e>1?OT((function(t){t.setTime(Math.floor(t/e)*e)}),(function(t,n){t.setTime(+t+n*e)}),(function(t,n){return(n-t)/e})):PT:null},PT.range;var LT=1e3,ET=6e4,FT=36e5,jT=6048e5,zT=OT((function(e){e.setTime(e-e.getMilliseconds())}),(function(e,t){e.setTime(+e+t*LT)}),(function(e,t){return(t-e)/LT}),(function(e){return e.getUTCSeconds()}));zT.range;var $T=OT((function(e){e.setTime(e-e.getMilliseconds()-e.getSeconds()*LT)}),(function(e,t){e.setTime(+e+t*ET)}),(function(e,t){return(t-e)/ET}),(function(e){return e.getMinutes()}));$T.range;var BT=OT((function(e){e.setTime(e-e.getMilliseconds()-e.getSeconds()*LT-e.getMinutes()*ET)}),(function(e,t){e.setTime(+e+t*FT)}),(function(e,t){return(t-e)/FT}),(function(e){return e.getHours()}));function RT(e){return OT((function(t){t.setDate(t.getDate()-(t.getDay()+7-e)%7),t.setHours(0,0,0,0)}),(function(e,t){e.setDate(e.getDate()+7*t)}),(function(e,t){return(t-e-(t.getTimezoneOffset()-e.getTimezoneOffset())*ET)/jT}))}BT.range;var DT=RT(0),IT=RT(1),UT=RT(2),HT=RT(3),qT=RT(4),VT=RT(5),WT=RT(6);DT.range,IT.range,UT.range,HT.range,qT.range,VT.range,WT.range;var YT=OT((function(e){e.setDate(1),e.setHours(0,0,0,0)}),(function(e,t){e.setMonth(e.getMonth()+t)}),(function(e,t){return t.getMonth()-e.getMonth()+12*(t.getFullYear()-e.getFullYear())}),(function(e){return e.getMonth()}));YT.range;var GT=OT((function(e){e.setMonth(0,1),e.setHours(0,0,0,0)}),(function(e,t){e.setFullYear(e.getFullYear()+t)}),(function(e,t){return t.getFullYear()-e.getFullYear()}),(function(e){return e.getFullYear()}));GT.every=function(e){return isFinite(e=Math.floor(e))&&e>0?OT((function(t){t.setFullYear(Math.floor(t.getFullYear()/e)*e),t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,n){t.setFullYear(t.getFullYear()+n*e)})):null},GT.range;var ZT=OT((function(e){e.setUTCSeconds(0,0)}),(function(e,t){e.setTime(+e+t*ET)}),(function(e,t){return(t-e)/ET}),(function(e){return e.getUTCMinutes()}));ZT.range;var XT=OT((function(e){e.setUTCMinutes(0,0,0)}),(function(e,t){e.setTime(+e+t*FT)}),(function(e,t){return(t-e)/FT}),(function(e){return e.getUTCHours()}));function KT(e){return OT((function(t){t.setUTCDate(t.getUTCDate()-(t.getUTCDay()+7-e)%7),t.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCDate(e.getUTCDate()+7*t)}),(function(e,t){return(t-e)/jT}))}XT.range;var QT=KT(0),JT=KT(1),eA=KT(2),tA=KT(3),nA=KT(4),rA=KT(5),iA=KT(6);QT.range,JT.range,eA.range,tA.range,nA.range,rA.range,iA.range;var oA=OT((function(e){e.setUTCDate(1),e.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCMonth(e.getUTCMonth()+t)}),(function(e,t){return t.getUTCMonth()-e.getUTCMonth()+12*(t.getUTCFullYear()-e.getUTCFullYear())}),(function(e){return e.getUTCMonth()}));oA.range;var aA=OT((function(e){e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),(function(e,t){e.setUTCFullYear(e.getUTCFullYear()+t)}),(function(e,t){return t.getUTCFullYear()-e.getUTCFullYear()}),(function(e){return e.getUTCFullYear()}));function sA(){return sA=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},sA.apply(this,arguments)}aA.every=function(e){return isFinite(e=Math.floor(e))&&e>0?OT((function(t){t.setUTCFullYear(Math.floor(t.getUTCFullYear()/e)*e),t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,n){t.setUTCFullYear(t.getUTCFullYear()+n*e)})):null},aA.range;var lA=[function(e){return e.setMilliseconds(0)},function(e){return e.setSeconds(0)},function(e){return e.setMinutes(0)},function(e){return e.setHours(0)},function(e){return e.setDate(1)},function(e){return e.setMonth(0)}],cA={millisecond:[],second:lA.slice(0,1),minute:lA.slice(0,2),hour:lA.slice(0,3),day:lA.slice(0,4),month:lA.slice(0,5),year:lA.slice(0,6)},uA=function(e){var t=e.format,n=void 0===t?"native":t,r=e.precision,i=void 0===r?"millisecond":r,o=e.useUTC,a=void 0===o||o,s=function(e){return function(t){return cA[e].forEach((function(e){e(t)})),t}}(i);return function(e){if(void 0===e)return e;if("native"===n||e instanceof Date)return s(e);var t=a?bx(n):vx(n);return s(t(e))}},dA=function(e,t,n,r){var i,o,a,s,l=e.min,c=void 0===l?0:l,u=e.max,d=void 0===u?"auto":u,f=e.stacked,h=void 0!==f&&f,p=e.reverse,g=void 0!==p&&p,m=e.clamp,v=void 0!==m&&m,b=e.nice,y=void 0!==b&&b;i="auto"===c?!0===h?null!=(o=t.minStacked)?o:0:t.min:c,a="auto"===d?!0===h?null!=(s=t.maxStacked)?s:0:t.max:d;var _=cm().rangeRound("x"===r?[0,n]:[n,0]).domain(g?[a,i]:[i,a]).clamp(v);return!0===y?_.nice():"number"==typeof y&&_.nice(y),fA(_,h)},fA=function(e,t){void 0===t&&(t=!1);var n=e;return n.type="linear",n.stacked=t,n},hA=function(e,t){return e===t},pA=function(e,t){return e.getTime()===t.getTime()};function gA(e,t,n,r){switch(e.type){case"linear":return dA(e,t,n,r);case"point":return function(e,t,n){var r=Bg().range([0,n]).domain(t.all);return r.type="point",r}(0,t,n);case"band":return function(e,t,n,r){var i=e.round,o=void 0===i||i;return function(e){var t=e;return t.type="band",t}(zg().range("x"===r?[0,n]:[n,0]).domain(t.all).round(o))}(e,t,n,r);case"time":return function(e,t,n){var r,i,o=e.format,a=void 0===o?"native":o,s=e.precision,l=void 0===s?"millisecond":s,c=e.min,u=void 0===c?"auto":c,d=e.max,f=void 0===d?"auto":d,h=e.useUTC,p=void 0===h||h,g=e.nice,m=void 0!==g&&g,v=uA({format:a,precision:l,useUTC:p});r="auto"===u?v(t.min):"native"!==a?v(u):u,i="auto"===f?v(t.max):"native"!==a?v(f):f;var b=p?function(){return Eg.apply(jb(av,sv,iv,nv,Gm,$m,jm,Em,Pm,gv).domain([Date.UTC(2e3,0,1),Date.UTC(2e3,0,2)]),arguments)}():function(){return Eg.apply(jb(lv,cv,rv,tv,Dm,zm,Fm,Lm,Pm,pv).domain([new Date(2e3,0,1),new Date(2e3,0,2)]),arguments)}();b.range([0,n]),r&&i&&b.domain([r,i]),!0===m?b.nice():"object"!=typeof m&&"number"!=typeof m||b.nice(m);var y=b;return y.type="time",y.useUTC=p,y}(e,t,n);case"log":return function(e,t,n,r){var i,o=e.base,a=void 0===o?10:o,s=e.min,l=void 0===s?"auto":s,c=e.max,u=void 0===c?"auto":c;if(t.all.some((function(e){return 0===e})))throw new Error("a log scale domain must not include or cross zero");var d,f,h=!1;if(t.all.filter((function(e){return null!=e})).forEach((function(e){h||(void 0===i?i=Math.sign(e):Math.sign(e)!==i&&(h=!0))})),h)throw new Error("a log scale domain must be strictly-positive or strictly-negative");d="auto"===l?t.min:l,f="auto"===u?t.max:u;var p=vm().domain([d,f]).rangeRound("x"===r?[0,n]:[n,0]).base(a).nice();return p.type="log",p}(e,t,n,r);case"symlog":return function(e,t,n,r){var i,o,a=e.constant,s=void 0===a?1:a,l=e.min,c=void 0===l?"auto":l,u=e.max,d=void 0===u?"auto":u,f=e.reverse,h=void 0!==f&&f;i="auto"===c?t.min:c,o="auto"===d?t.max:d;var p=_m().constant(s).rangeRound("x"===r?[0,n]:[n,0]).nice();!0===h?p.domain([o,i]):p.domain([i,o]);var g=p;return g.type="symlog",g}(e,t,n,r);default:throw new Error("invalid scale spec")}}var mA=function(e,t,n){var r;if("stacked"in n&&n.stacked){var i=e.data["x"===t?"xStacked":"yStacked"];return null==i?null:n(i)}return null!=(r=n(e.data[t]))?r:null},vA=function(e,t,n,r){var i={},o=i.getValue,a=void 0===o?function(e){return e.data[t]}:o,s=i.setValue,l=void 0===s?function(e,n){e.data[t]=n}:s;if("linear"===n.type)e.forEach((function(e){e.data.forEach((function(e){var t=a(e);t&&l(e,parseFloat(String(t)))}))}));else if("time"===n.type&&"native"!==n.format){var c=uA(n);e.forEach((function(e){e.data.forEach((function(e){var t=a(e);t&&l(e,c(t))}))}))}var u=[];switch(e.forEach((function(e){e.data.forEach((function(e){u.push(a(e))}))})),n.type){case"linear":var d=MT(QM(u).filter((function(e){return null!==e})),(function(e){return e}));return{all:d,min:Math.min.apply(Math,d),max:Math.max.apply(Math,d)};case"time":var f=wT(u,(function(e){return e.getTime()})).slice(0).sort((function(e,t){return t.getTime()-e.getTime()})).reverse();return{all:f,min:f[0],max:vg(f)};default:var h=QM(u);return{all:h,min:h[0],max:vg(h)}}},bA=function(e,t,n){var r=function(e){return"x"===e?"y":"x"}(e),i=[];t[r].all.forEach((function(t){var o=TT(t)?pA:hA,a=[];n.forEach((function(n){var s=n.data.find((function(e){return o(e.data[r],t)})),l=null,c=null;if(void 0!==s){if(null!==(l=s.data[e])){var u=vg(a);void 0===u?c=l:null!==u&&(c=u+l)}s.data["x"===e?"xStacked":"yStacked"]=c}a.push(c),null!==c&&i.push(c)}))})),t[e].minStacked=Math.min.apply(Math,i),t[e].maxStacked=Math.max.apply(Math,i)},yA=function(e){var t=e.bandwidth();if(0===t)return e;var n=t/2;return e.round()&&(n=Math.round(n)),function(t){var r;return(null!=(r=e(t))?r:0)+n}},_A={millisecond:[PT,PT],second:[zT,zT],minute:[$T,ZT],hour:[BT,XT],day:[OT((function(e){return e.setHours(0,0,0,0)}),(function(e,t){return e.setDate(e.getDate()+t)}),(function(e,t){return(t.getTime()-e.getTime())/864e5}),(function(e){return Math.floor(e.getTime()/864e5)})),OT((function(e){return e.setUTCHours(0,0,0,0)}),(function(e,t){return e.setUTCDate(e.getUTCDate()+t)}),(function(e,t){return(t.getTime()-e.getTime())/864e5}),(function(e){return Math.floor(e.getTime()/864e5)}))],week:[DT,QT],sunday:[DT,QT],monday:[IT,JT],tuesday:[UT,eA],wednesday:[HT,tA],thursday:[qT,nA],friday:[VT,rA],saturday:[WT,iA],month:[YT,oA],year:[GT,aA]},wA=Object.keys(_A),xA=new RegExp("^every\\s*(\\d+)?\\s*("+wA.join("|")+")s?$","i"),kA=function(e,t){if(Array.isArray(t))return t;if("string"==typeof t&&"useUTC"in e){var n=t.match(xA);if(n){var r=n[1],i=n[2],o=_A[i][e.useUTC?1:0];if("day"===i){var a,s,l=e.domain(),c=l[0],u=l[1],d=new Date(u);return d.setDate(d.getDate()+1),null!=(a=null==(s=o.every(Number(null!=r?r:1)))?void 0:s.range(c,d))?a:[]}if(void 0===r)return e.ticks(o);var f=o.every(Number(r));if(f)return e.ticks(f)}throw new Error("Invalid tickValues: "+t)}if("ticks"in e){if(void 0===t)return e.ticks();if("number"==typeof(h=t)&&isFinite(h)&&Math.floor(h)===h)return e.ticks(t)}var h;return e.domain()};function CA(){return CA=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},CA.apply(this,arguments)}var SA=function(e){var t,n=e.axis,r=e.scale,i=e.ticksPosition,o=e.tickValues,a=e.tickSize,s=e.tickPadding,l=e.tickRotation,c=e.truncateTickAt,u=e.engine,d=void 0===u?"svg":u,f=kA(r,o),h=IS[d],p="bandwidth"in r?yA(r):r,g={lineX:0,lineY:0},m={textX:0,textY:0},v="object"==typeof document&&"rtl"===document.dir,b=h.align.center,y=h.baseline.center;return"x"===n?(t=function(e){var t;return{x:null!=(t=p(e))?t:0,y:0}},g.lineY=a*("after"===i?1:-1),m.textY=(a+s)*("after"===i?1:-1),y="after"===i?h.baseline.top:h.baseline.bottom,0===l?b=h.align.center:"after"===i&&l<0||"before"===i&&l>0?(b=h.align[v?"left":"right"],y=h.baseline.center):("after"===i&&l>0||"before"===i&&l<0)&&(b=h.align[v?"right":"left"],y=h.baseline.center)):(t=function(e){var t;return{x:0,y:null!=(t=p(e))?t:0}},g.lineX=a*("after"===i?1:-1),m.textX=(a+s)*("after"===i?1:-1),b="after"===i?h.align.left:h.align.right),{ticks:f.map((function(e){var n="string"==typeof e?function(e){var t=String(e).length;return c&&c>0&&t>c?""+String(e).slice(0,c).concat("..."):""+e}(e):e;return CA({key:e instanceof Date?""+e.valueOf():""+e,value:n},t(e),g,m)})),textAlign:b,textBaseline:y}},MA=function(e,t){if(void 0===e||"function"==typeof e)return e;if("time"===t.type){var n=mx(e);return function(e){return n(e instanceof Date?e:new Date(e))}}return Bw(e)},TA=function(e){var t,n=e.width,r=e.height,i=e.scale,o=e.axis,a=e.values,s=(t=a,(Array.isArray(t)?a:void 0)||kA(i,a)),l="bandwidth"in i?yA(i):i,c="x"===o?s.map((function(e){var t,n;return{key:e instanceof Date?""+e.valueOf():""+e,x1:null!=(t=l(e))?t:0,x2:null!=(n=l(e))?n:0,y1:0,y2:r}})):s.map((function(e){var t,r;return{key:e instanceof Date?""+e.valueOf():""+e,x1:0,x2:n,y1:null!=(t=l(e))?t:0,y2:null!=(r=l(e))?r:0}}));return c},AA=Se((function(e){var t,n=e.value,r=e.format,i=e.lineX,o=e.lineY,a=e.onClick,s=e.textBaseline,l=e.textAnchor,c=e.animatedProps,u=NS(),d=u.axis.ticks.line,f=u.axis.ticks.text,h=null!=(t=null==r?void 0:r(n))?t:n,p=fe((function(){var e={opacity:c.opacity};return a?{style:CA({},e,{cursor:"pointer"}),onClick:function(e){return a(e,h)}}:{style:e}}),[c.opacity,a,h]);return Je(Al.g,CA({transform:c.transform},p,{children:[Je("line",{x1:0,x2:i,y1:0,y2:o,style:d}),f.outlineWidth>0&&Je(Al.text,{dominantBaseline:s,textAnchor:l,transform:c.textTransform,style:f,strokeWidth:2*f.outlineWidth,stroke:f.outlineColor,strokeLinejoin:"round",children:""+h}),Je(Al.text,{dominantBaseline:s,textAnchor:l,transform:c.textTransform,style:PS(f),children:""+h})]}))})),NA=Se((function(e){var t=e.axis,n=e.scale,r=e.x,i=void 0===r?0:r,o=e.y,a=void 0===o?0:o,s=e.length,l=e.ticksPosition,c=e.tickValues,u=e.tickSize,d=void 0===u?5:u,f=e.tickPadding,h=void 0===f?5:f,p=e.tickRotation,g=void 0===p?0:p,m=e.format,v=e.renderTick,b=void 0===v?AA:v,y=e.truncateTickAt,_=e.legend,w=e.legendPosition,x=void 0===w?"end":w,k=e.legendOffset,C=void 0===k?0:k,M=e.onClick,A=e.ariaHidden,N=NS(),O=N.axis.legend.text,P=fe((function(){return MA(m,n)}),[m,n]),L=SA({axis:t,scale:n,ticksPosition:l,tickValues:c,tickSize:d,tickPadding:h,tickRotation:g,truncateTickAt:y}),E=L.ticks,F=L.textAlign,j=L.textBaseline,z=null;if(void 0!==_){var $,B=0,R=0,D=0;"y"===t?(D=-90,B=C,"start"===x?($="start",R=s):"middle"===x?($="middle",R=s/2):"end"===x&&($="end")):(R=C,"start"===x?$="start":"middle"===x?($="middle",B=s/2):"end"===x&&($="end",B=s)),z=Je(T,{children:[O.outlineWidth>0&&Je("text",{transform:"translate("+B+", "+R+") rotate("+D+")",textAnchor:$,style:CA({dominantBaseline:"central"},O),strokeWidth:2*O.outlineWidth,stroke:O.outlineColor,strokeLinejoin:"round",children:_}),Je("text",{transform:"translate("+B+", "+R+") rotate("+D+")",textAnchor:$,style:CA({dominantBaseline:"central"},O),children:_})]})}var I=gS(),U=I.animate,H=I.config,q=ll({transform:"translate("+i+","+a+")",lineX2:"x"===t?s:0,lineY2:"x"===t?0:s,config:H,immediate:!U}),V=he((function(e){return{opacity:1,transform:"translate("+e.x+","+e.y+")",textTransform:"translate("+e.textX+","+e.textY+") rotate("+g+")"}}),[g]),W=he((function(e){return{opacity:0,transform:"translate("+e.x+","+e.y+")",textTransform:"translate("+e.textX+","+e.textY+") rotate("+g+")"}}),[g]),Y=cl(E,{keys:function(e){return e.key},initial:V,from:W,enter:V,update:V,leave:{opacity:0},config:H,immediate:!U});return Je(Al.g,{transform:q.transform,"aria-hidden":A,children:[Y((function(e,t,n,r){return S(b,CA({tickIndex:r,format:P,rotate:g,textBaseline:j,textAnchor:F,truncateTickAt:y,animatedProps:e},t,M?{onClick:M}:{}))})),Je(Al.line,{style:N.axis.domain.line,x1:0,x2:q.lineX2,y1:0,y2:q.lineY2}),z]})})),OA=["top","right","bottom","left"],PA=Se((function(e){var t=e.xScale,n=e.yScale,r=e.width,i=e.height,o={top:e.top,right:e.right,bottom:e.bottom,left:e.left};return Je(T,{children:OA.map((function(e){var a=o[e];if(!a)return null;var s="top"===e||"bottom"===e;return Je(NA,CA({},a,{axis:s?"x":"y",x:"right"===e?r:0,y:"bottom"===e?i:0,scale:s?t:n,length:s?r:i,ticksPosition:"top"===e||"left"===e?"before":"after",truncateTickAt:a.truncateTickAt}),e)}))})})),LA=Se((function(e){var t=e.animatedProps,n=NS();return Je(Al.line,CA({},t,n.grid.line))})),EA=Se((function(e){var t=e.lines,n=gS(),r=n.animate,i=cl(t,{keys:function(e){return e.key},initial:function(e){return{opacity:1,x1:e.x1,x2:e.x2,y1:e.y1,y2:e.y2}},from:function(e){return{opacity:0,x1:e.x1,x2:e.x2,y1:e.y1,y2:e.y2}},enter:function(e){return{opacity:1,x1:e.x1,x2:e.x2,y1:e.y1,y2:e.y2}},update:function(e){return{opacity:1,x1:e.x1,x2:e.x2,y1:e.y1,y2:e.y2}},leave:{opacity:0},config:n.config,immediate:!r});return Je("g",{children:i((function(e,t){return S(LA,CA({},t,{key:t.key,animatedProps:e}))}))})})),FA=Se((function(e){var t=e.width,n=e.height,r=e.xScale,i=e.yScale,o=e.xValues,a=e.yValues,s=fe((function(){return!!r&&TA({width:t,height:n,scale:r,axis:"x",values:o})}),[r,o,t,n]),l=fe((function(){return!!i&&TA({width:t,height:n,scale:i,axis:"y",values:a})}),[n,t,i,a]);return Je(T,{children:[s&&Je(EA,{lines:s}),l&&Je(EA,{lines:l})]})})),jA=function(e,t){var n=t.width,r=t.height,i=t.scale,o=t.axis,a=t.values;TA({width:n,height:r,scale:i,axis:o,values:a}).forEach((function(t){e.beginPath(),e.moveTo(t.x1,t.y1),e.lineTo(t.x2,t.y2),e.stroke()}))};function zA(){return zA=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},zA.apply(this,arguments)}var $A,BA,RA={top:0,right:0,bottom:0,left:0},DA=function(e){var t,n=e.direction,r=e.itemsSpacing,i=e.padding,o=e.itemCount,a=e.itemWidth,s=e.itemHeight;if("number"!=typeof i&&("object"!=typeof(t=i)||Array.isArray(t)||null===t))throw new Error("Invalid property padding, must be one of: number, object");var l="number"==typeof i?{top:i,right:i,bottom:i,left:i}:zA({},RA,i),c=l.left+l.right,u=l.top+l.bottom,d=a+c,f=s+u,h=(o-1)*r;return"row"===n?d=a*o+h+c:"column"===n&&(f=s*o+h+u),{width:d,height:f,padding:l}},IA=function(e){var t=e.anchor,n=e.translateX,r=e.translateY,i=e.containerWidth,o=e.containerHeight,a=e.width,s=e.height,l=n,c=r;switch(t){case"top":l+=(i-a)/2;break;case"top-right":l+=i-a;break;case"right":l+=i-a,c+=(o-s)/2;break;case"bottom-right":l+=i-a,c+=o-s;break;case"bottom":l+=(i-a)/2,c+=o-s;break;case"bottom-left":c+=o-s;break;case"left":c+=(o-s)/2;break;case"center":l+=(i-a)/2,c+=(o-s)/2}return{x:l,y:c}},UA=function(e){var t,n,r,i,o,a,s=e.direction,l=e.justify,c=e.symbolSize,u=e.symbolSpacing,d=e.width,f=e.height;switch(s){case"left-to-right":t=0,n=(f-c)/2,i=f/2,a="central",l?(r=d,o="end"):(r=c+u,o="start");break;case"right-to-left":t=d-c,n=(f-c)/2,i=f/2,a="central",l?(r=0,o="start"):(r=d-c-u,o="end");break;case"top-to-bottom":t=(d-c)/2,n=0,r=d/2,o="middle",l?(i=f,a="alphabetic"):(i=c+u,a="text-before-edge");break;case"bottom-to-top":t=(d-c)/2,n=f-c,r=d/2,o="middle",l?(i=0,a="text-before-edge"):(i=f-c-u,a="alphabetic")}return{symbolX:t,symbolY:n,labelX:r,labelY:i,labelAnchor:o,labelAlignment:a}},HA={circle:function(e){var t=e.x,n=e.y,r=e.size,i=e.fill,o=e.opacity,a=void 0===o?1:o,s=e.borderWidth,l=void 0===s?0:s,c=e.borderColor;return Je("circle",{r:r/2,cx:t+r/2,cy:n+r/2,fill:i,opacity:a,strokeWidth:l,stroke:void 0===c?"transparent":c,style:{pointerEvents:"none"}})},diamond:function(e){var t=e.x,n=e.y,r=e.size,i=e.fill,o=e.opacity,a=void 0===o?1:o,s=e.borderWidth,l=void 0===s?0:s,c=e.borderColor;return Je("g",{transform:"translate("+t+","+n+")",children:Je("path",{d:"\n M"+r/2+" 0\n L"+.8*r+" "+r/2+"\n L"+r/2+" "+r+"\n L"+.2*r+" "+r/2+"\n L"+r/2+" 0\n ",fill:i,opacity:a,strokeWidth:l,stroke:void 0===c?"transparent":c,style:{pointerEvents:"none"}})})},square:function(e){var t=e.x,n=e.y,r=e.size,i=e.fill,o=e.opacity,a=void 0===o?1:o,s=e.borderWidth,l=void 0===s?0:s,c=e.borderColor;return Je("rect",{x:t,y:n,fill:i,opacity:a,strokeWidth:l,stroke:void 0===c?"transparent":c,width:r,height:r,style:{pointerEvents:"none"}})},triangle:function(e){var t=e.x,n=e.y,r=e.size,i=e.fill,o=e.opacity,a=void 0===o?1:o,s=e.borderWidth,l=void 0===s?0:s,c=e.borderColor;return Je("g",{transform:"translate("+t+","+n+")",children:Je("path",{d:"\n M"+r/2+" 0\n L"+r+" "+r+"\n L0 "+r+"\n L"+r/2+" 0\n ",fill:i,opacity:a,strokeWidth:l,stroke:void 0===c?"transparent":c,style:{pointerEvents:"none"}})})}},qA=function(e){var t,n,r,i,o,a,s,l,c,u,d,f=e.x,h=e.y,p=e.width,g=e.height,m=e.data,v=e.direction,b=void 0===v?"left-to-right":v,y=e.justify,_=void 0!==y&&y,w=e.textColor,x=e.background,k=void 0===x?"transparent":x,C=e.opacity,M=void 0===C?1:C,T=e.symbolShape,A=void 0===T?"square":T,N=e.symbolSize,O=void 0===N?16:N,P=e.symbolSpacing,L=void 0===P?8:P,E=e.symbolBorderWidth,F=void 0===E?0:E,j=e.symbolBorderColor,z=void 0===j?"transparent":j,$=e.onClick,B=e.onMouseEnter,R=e.onMouseLeave,D=e.toggleSerie,I=e.effects,U=ce({}),H=U[0],q=U[1],V=NS(),W=he((function(e){if(I){var t=I.filter((function(e){return"hover"===e.on})).reduce((function(e,t){return zA({},e,t.style)}),{});q(t)}null==B||B(m,e)}),[B,m,I]),Y=he((function(e){if(I){var t=I.filter((function(e){return"hover"!==e.on})).reduce((function(e,t){return zA({},e,t.style)}),{});q(t)}null==R||R(m,e)}),[R,m,I]),G=UA({direction:b,justify:_,symbolSize:null!=(t=H.symbolSize)?t:O,symbolSpacing:L,width:p,height:g}),Z=G.symbolX,X=G.symbolY,K=G.labelX,Q=G.labelY,J=G.labelAnchor,ee=G.labelAlignment,te=[$,B,R,D].some((function(e){return void 0!==e})),ne="function"==typeof A?A:HA[A];return Je("g",{transform:"translate("+f+","+h+")",style:{opacity:null!=(n=H.itemOpacity)?n:M},children:[Je("rect",{width:p,height:g,fill:null!=(r=H.itemBackground)?r:k,style:{cursor:te?"pointer":"auto"},onClick:function(e){null==$||$(m,e),null==D||D(m.id)},onMouseEnter:W,onMouseLeave:Y}),S(ne,zA({id:m.id,x:Z,y:X,size:null!=(i=H.symbolSize)?i:O,fill:null!=(o=null!=(a=m.fill)?a:m.color)?o:"black",borderWidth:null!=(s=H.symbolBorderWidth)?s:F,borderColor:null!=(l=H.symbolBorderColor)?l:z},m.hidden?V.legends.hidden.symbol:void 0)),Je("text",{textAnchor:J,style:zA({},PS(V.legends.text),{fill:null!=(c=null!=(u=null!=(d=H.itemTextColor)?d:w)?u:V.legends.text.fill)?c:"black",dominantBaseline:ee,pointerEvents:"none",userSelect:"none"},m.hidden?V.legends.hidden.text:void 0),x:K,y:Q,children:m.label})]})},VA=function(e){var t=e.data,n=e.x,r=e.y,i=e.direction,o=e.padding,a=void 0===o?0:o,s=e.justify,l=e.effects,c=e.itemWidth,u=e.itemHeight,d=e.itemDirection,f=void 0===d?"left-to-right":d,h=e.itemsSpacing,p=void 0===h?0:h,g=e.itemTextColor,m=e.itemBackground,v=void 0===m?"transparent":m,b=e.itemOpacity,y=void 0===b?1:b,_=e.symbolShape,w=e.symbolSize,x=e.symbolSpacing,k=e.symbolBorderWidth,C=e.symbolBorderColor,S=e.onClick,M=e.onMouseEnter,T=e.onMouseLeave,A=e.toggleSerie,N=DA({itemCount:t.length,itemWidth:c,itemHeight:u,itemsSpacing:p,direction:i,padding:a}).padding,O="row"===i?c+p:0,P="column"===i?u+p:0;return Je("g",{transform:"translate("+n+","+r+")",children:t.map((function(e,t){return Je(qA,{data:e,x:t*O+N.left,y:t*P+N.top,width:c,height:u,direction:f,justify:s,effects:l,textColor:g,background:v,opacity:y,symbolShape:_,symbolSize:w,symbolSpacing:x,symbolBorderWidth:k,symbolBorderColor:C,onClick:S,onMouseEnter:M,onMouseLeave:T,toggleSerie:A},t)}))})},WA=function(e){var t=e.data,n=e.containerWidth,r=e.containerHeight,i=e.translateX,o=void 0===i?0:i,a=e.translateY,s=void 0===a?0:a,l=e.anchor,c=e.direction,u=e.padding,d=void 0===u?0:u,f=e.justify,h=e.itemsSpacing,p=void 0===h?0:h,g=e.itemWidth,m=e.itemHeight,v=e.itemDirection,b=e.itemTextColor,y=e.itemBackground,_=e.itemOpacity,w=e.symbolShape,x=e.symbolSize,k=e.symbolSpacing,C=e.symbolBorderWidth,S=e.symbolBorderColor,M=e.onClick,T=e.onMouseEnter,A=e.onMouseLeave,N=e.toggleSerie,O=e.effects,P=DA({itemCount:t.length,itemsSpacing:p,itemWidth:g,itemHeight:m,direction:c,padding:d}),L=P.width,E=P.height,F=IA({anchor:l,translateX:o,translateY:s,containerWidth:n,containerHeight:r,width:L,height:E}),j=F.x,z=F.y;return Je(VA,{data:t,x:j,y:z,direction:c,padding:d,justify:f,effects:O,itemsSpacing:p,itemWidth:g,itemHeight:m,itemDirection:v,itemTextColor:b,itemBackground:y,itemOpacity:_,symbolShape:w,symbolSize:x,symbolSpacing:k,symbolBorderWidth:C,symbolBorderColor:S,onClick:M,onMouseEnter:T,onMouseLeave:A,toggleSerie:"boolean"==typeof N?void 0:N})},YA={start:"left",middle:"center",end:"right"},GA=function(){if(BA)return $A;BA=1;var e=Uh(),t=0;return $A=function(n){var r=++t;return e(n)+r},$A}(),ZA=_i(GA);const XA=134217729;function KA(e,t,n,r,i){let o,a,s,l,c=t[0],u=r[0],d=0,f=0;u>c==u>-c?(o=c,c=t[++d]):(o=u,u=r[++f]);let h=0;if(d<e&&f<n)for(u>c==u>-c?(a=c+o,s=o-(a-c),c=t[++d]):(a=u+o,s=o-(a-u),u=r[++f]),o=a,0!==s&&(i[h++]=s);d<e&&f<n;)u>c==u>-c?(a=o+c,l=a-o,s=o-(a-l)+(c-l),c=t[++d]):(a=o+u,l=a-o,s=o-(a-l)+(u-l),u=r[++f]),o=a,0!==s&&(i[h++]=s);for(;d<e;)a=o+c,l=a-o,s=o-(a-l)+(c-l),c=t[++d],o=a,0!==s&&(i[h++]=s);for(;f<n;)a=o+u,l=a-o,s=o-(a-l)+(u-l),u=r[++f],o=a,0!==s&&(i[h++]=s);return 0===o&&0!==h||(i[h++]=o),h}function QA(e){return new Float64Array(e)}const JA=QA(4),eN=QA(8),tN=QA(12),nN=QA(16),rN=QA(4);function iN(e,t,n,r,i,o){const a=(t-o)*(n-i),s=(e-i)*(r-o),l=a-s,c=Math.abs(a+s);return Math.abs(l)>=33306690738754716e-32*c?l:-function(e,t,n,r,i,o,a){let s,l,c,u,d,f,h,p,g,m,v,b,y,_,w,x,k,C;const S=e-i,M=n-i,T=t-o,A=r-o;_=S*A,f=XA*S,h=f-(f-S),p=S-h,f=XA*A,g=f-(f-A),m=A-g,w=p*m-(_-h*g-p*g-h*m),x=T*M,f=XA*T,h=f-(f-T),p=T-h,f=XA*M,g=f-(f-M),m=M-g,k=p*m-(x-h*g-p*g-h*m),v=w-k,d=w-v,JA[0]=w-(v+d)+(d-k),b=_+v,d=b-_,y=_-(b-d)+(v-d),v=y-x,d=y-v,JA[1]=y-(v+d)+(d-x),C=b+v,d=C-b,JA[2]=b-(C-d)+(v-d),JA[3]=C;let N=function(e,t){let n=t[0];for(let e=1;e<4;e++)n+=t[e];return n}(0,JA),O=22204460492503146e-32*a;if(N>=O||-N>=O)return N;if(d=e-S,s=e-(S+d)+(d-i),d=n-M,c=n-(M+d)+(d-i),d=t-T,l=t-(T+d)+(d-o),d=r-A,u=r-(A+d)+(d-o),0===s&&0===l&&0===c&&0===u)return N;if(O=11093356479670487e-47*a+33306690738754706e-32*Math.abs(N),N+=S*u+A*s-(T*c+M*l),N>=O||-N>=O)return N;_=s*A,f=XA*s,h=f-(f-s),p=s-h,f=XA*A,g=f-(f-A),m=A-g,w=p*m-(_-h*g-p*g-h*m),x=l*M,f=XA*l,h=f-(f-l),p=l-h,f=XA*M,g=f-(f-M),m=M-g,k=p*m-(x-h*g-p*g-h*m),v=w-k,d=w-v,rN[0]=w-(v+d)+(d-k),b=_+v,d=b-_,y=_-(b-d)+(v-d),v=y-x,d=y-v,rN[1]=y-(v+d)+(d-x),C=b+v,d=C-b,rN[2]=b-(C-d)+(v-d),rN[3]=C;const P=KA(4,JA,4,rN,eN);_=S*u,f=XA*S,h=f-(f-S),p=S-h,f=XA*u,g=f-(f-u),m=u-g,w=p*m-(_-h*g-p*g-h*m),x=T*c,f=XA*T,h=f-(f-T),p=T-h,f=XA*c,g=f-(f-c),m=c-g,k=p*m-(x-h*g-p*g-h*m),v=w-k,d=w-v,rN[0]=w-(v+d)+(d-k),b=_+v,d=b-_,y=_-(b-d)+(v-d),v=y-x,d=y-v,rN[1]=y-(v+d)+(d-x),C=b+v,d=C-b,rN[2]=b-(C-d)+(v-d),rN[3]=C;const L=KA(P,eN,4,rN,tN);_=s*u,f=XA*s,h=f-(f-s),p=s-h,f=XA*u,g=f-(f-u),m=u-g,w=p*m-(_-h*g-p*g-h*m),x=l*c,f=XA*l,h=f-(f-l),p=l-h,f=XA*c,g=f-(f-c),m=c-g,k=p*m-(x-h*g-p*g-h*m),v=w-k,d=w-v,rN[0]=w-(v+d)+(d-k),b=_+v,d=b-_,y=_-(b-d)+(v-d),v=y-x,d=y-v,rN[1]=y-(v+d)+(d-x),C=b+v,d=C-b,rN[2]=b-(C-d)+(v-d),rN[3]=C;const E=KA(L,tN,4,rN,nN);return nN[E-1]}(e,t,n,r,i,o,c)}const oN=Math.pow(2,-52),aN=new Uint32Array(512);class sN{static from(e,t=hN,n=pN){const r=e.length,i=new Float64Array(2*r);for(let o=0;o<r;o++){const r=e[o];i[2*o]=t(r),i[2*o+1]=n(r)}return new sN(i)}constructor(e){const t=e.length>>1;if(t>0&&"number"!=typeof e[0])throw new Error("Expected coords to contain numbers.");this.coords=e;const n=Math.max(2*t-5,0);this._triangles=new Uint32Array(3*n),this._halfedges=new Int32Array(3*n),this._hashSize=Math.ceil(Math.sqrt(t)),this._hullPrev=new Uint32Array(t),this._hullNext=new Uint32Array(t),this._hullTri=new Uint32Array(t),this._hullHash=new Int32Array(this._hashSize),this._ids=new Uint32Array(t),this._dists=new Float64Array(t),this.update()}update(){const{coords:e,_hullPrev:t,_hullNext:n,_hullTri:r,_hullHash:i}=this,o=e.length>>1;let a=1/0,s=1/0,l=-1/0,c=-1/0;for(let t=0;t<o;t++){const n=e[2*t],r=e[2*t+1];n<a&&(a=n),r<s&&(s=r),n>l&&(l=n),r>c&&(c=r),this._ids[t]=t}const u=(a+l)/2,d=(s+c)/2;let f,h,p;for(let t=0,n=1/0;t<o;t++){const r=lN(u,d,e[2*t],e[2*t+1]);r<n&&(f=t,n=r)}const g=e[2*f],m=e[2*f+1];for(let t=0,n=1/0;t<o;t++){if(t===f)continue;const r=lN(g,m,e[2*t],e[2*t+1]);r<n&&r>0&&(h=t,n=r)}let v=e[2*h],b=e[2*h+1],y=1/0;for(let t=0;t<o;t++){if(t===f||t===h)continue;const n=uN(g,m,v,b,e[2*t],e[2*t+1]);n<y&&(p=t,y=n)}let _=e[2*p],w=e[2*p+1];if(y===1/0){for(let t=0;t<o;t++)this._dists[t]=e[2*t]-e[0]||e[2*t+1]-e[1];dN(this._ids,this._dists,0,o-1);const t=new Uint32Array(o);let n=0;for(let e=0,r=-1/0;e<o;e++){const i=this._ids[e],o=this._dists[i];o>r&&(t[n++]=i,r=o)}return this.hull=t.subarray(0,n),this.triangles=new Uint32Array(0),void(this.halfedges=new Uint32Array(0))}if(iN(g,m,v,b,_,w)<0){const e=h,t=v,n=b;h=p,v=_,b=w,p=e,_=t,w=n}const x=function(e,t,n,r,i,o){const a=n-e,s=r-t,l=i-e,c=o-t,u=a*a+s*s,d=l*l+c*c,f=.5/(a*c-s*l);return{x:e+(c*u-s*d)*f,y:t+(a*d-l*u)*f}}(g,m,v,b,_,w);this._cx=x.x,this._cy=x.y;for(let t=0;t<o;t++)this._dists[t]=lN(e[2*t],e[2*t+1],x.x,x.y);dN(this._ids,this._dists,0,o-1),this._hullStart=f;let k=3;n[f]=t[p]=h,n[h]=t[f]=p,n[p]=t[h]=f,r[f]=0,r[h]=1,r[p]=2,i.fill(-1),i[this._hashKey(g,m)]=f,i[this._hashKey(v,b)]=h,i[this._hashKey(_,w)]=p,this.trianglesLen=0,this._addTriangle(f,h,p,-1,-1,-1);for(let o,a,s=0;s<this._ids.length;s++){const l=this._ids[s],c=e[2*l],u=e[2*l+1];if(s>0&&Math.abs(c-o)<=oN&&Math.abs(u-a)<=oN)continue;if(o=c,a=u,l===f||l===h||l===p)continue;let d=0;for(let e=0,t=this._hashKey(c,u);e<this._hashSize&&(d=i[(t+e)%this._hashSize],-1===d||d===n[d]);e++);d=t[d];let g,m=d;for(;g=n[m],iN(c,u,e[2*m],e[2*m+1],e[2*g],e[2*g+1])>=0;)if(m=g,m===d){m=-1;break}if(-1===m)continue;let v=this._addTriangle(m,l,n[m],-1,-1,r[m]);r[l]=this._legalize(v+2),r[m]=v,k++;let b=n[m];for(;g=n[b],iN(c,u,e[2*b],e[2*b+1],e[2*g],e[2*g+1])<0;)v=this._addTriangle(b,l,g,r[l],-1,r[b]),r[l]=this._legalize(v+2),n[b]=b,k--,b=g;if(m===d)for(;g=t[m],iN(c,u,e[2*g],e[2*g+1],e[2*m],e[2*m+1])<0;)v=this._addTriangle(g,l,m,-1,r[m],r[g]),this._legalize(v+2),r[g]=v,n[m]=m,k--,m=g;this._hullStart=t[l]=m,n[m]=t[b]=l,n[l]=b,i[this._hashKey(c,u)]=l,i[this._hashKey(e[2*m],e[2*m+1])]=m}this.hull=new Uint32Array(k);for(let e=0,t=this._hullStart;e<k;e++)this.hull[e]=t,t=n[t];this.triangles=this._triangles.subarray(0,this.trianglesLen),this.halfedges=this._halfedges.subarray(0,this.trianglesLen)}_hashKey(e,t){return Math.floor(function(e,t){const n=e/(Math.abs(e)+Math.abs(t));return(t>0?3-n:1+n)/4}(e-this._cx,t-this._cy)*this._hashSize)%this._hashSize}_legalize(e){const{_triangles:t,_halfedges:n,coords:r}=this;let i=0,o=0;for(;;){const a=n[e],s=e-e%3;if(o=s+(e+2)%3,-1===a){if(0===i)break;e=aN[--i];continue}const l=a-a%3,c=s+(e+1)%3,u=l+(a+2)%3,d=t[o],f=t[e],h=t[c],p=t[u];if(cN(r[2*d],r[2*d+1],r[2*f],r[2*f+1],r[2*h],r[2*h+1],r[2*p],r[2*p+1])){t[e]=p,t[a]=d;const r=n[u];if(-1===r){let t=this._hullStart;do{if(this._hullTri[t]===u){this._hullTri[t]=e;break}t=this._hullPrev[t]}while(t!==this._hullStart)}this._link(e,r),this._link(a,n[o]),this._link(o,u);const s=l+(a+1)%3;i<aN.length&&(aN[i++]=s)}else{if(0===i)break;e=aN[--i]}}return o}_link(e,t){this._halfedges[e]=t,-1!==t&&(this._halfedges[t]=e)}_addTriangle(e,t,n,r,i,o){const a=this.trianglesLen;return this._triangles[a]=e,this._triangles[a+1]=t,this._triangles[a+2]=n,this._link(a,r),this._link(a+1,i),this._link(a+2,o),this.trianglesLen+=3,a}}function lN(e,t,n,r){const i=e-n,o=t-r;return i*i+o*o}function cN(e,t,n,r,i,o,a,s){const l=e-a,c=t-s,u=n-a,d=r-s,f=i-a,h=o-s,p=u*u+d*d,g=f*f+h*h;return l*(d*g-p*h)-c*(u*g-p*f)+(l*l+c*c)*(u*h-d*f)<0}function uN(e,t,n,r,i,o){const a=n-e,s=r-t,l=i-e,c=o-t,u=a*a+s*s,d=l*l+c*c,f=.5/(a*c-s*l),h=(c*u-s*d)*f,p=(a*d-l*u)*f;return h*h+p*p}function dN(e,t,n,r){if(r-n<=20)for(let i=n+1;i<=r;i++){const r=e[i],o=t[r];let a=i-1;for(;a>=n&&t[e[a]]>o;)e[a+1]=e[a--];e[a+1]=r}else{let i=n+1,o=r;fN(e,n+r>>1,i),t[e[n]]>t[e[r]]&&fN(e,n,r),t[e[i]]>t[e[r]]&&fN(e,i,r),t[e[n]]>t[e[i]]&&fN(e,n,i);const a=e[i],s=t[a];for(;;){do{i++}while(t[e[i]]<s);do{o--}while(t[e[o]]>s);if(o<i)break;fN(e,i,o)}e[n+1]=e[o],e[o]=a,r-i+1>=o-n?(dN(e,t,i,r),dN(e,t,n,o-1)):(dN(e,t,n,o-1),dN(e,t,i,r))}}function fN(e,t,n){const r=e[t];e[t]=e[n],e[n]=r}function hN(e){return e[0]}function pN(e){return e[1]}const gN=1e-6;class mN{constructor(){this._x0=this._y0=this._x1=this._y1=null,this._=""}moveTo(e,t){this._+=`M${this._x0=this._x1=+e},${this._y0=this._y1=+t}`}closePath(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+="Z")}lineTo(e,t){this._+=`L${this._x1=+e},${this._y1=+t}`}arc(e,t,n){const r=(e=+e)+(n=+n),i=t=+t;if(n<0)throw new Error("negative radius");null===this._x1?this._+=`M${r},${i}`:(Math.abs(this._x1-r)>gN||Math.abs(this._y1-i)>gN)&&(this._+="L"+r+","+i),n&&(this._+=`A${n},${n},0,1,1,${e-n},${t}A${n},${n},0,1,1,${this._x1=r},${this._y1=i}`)}rect(e,t,n,r){this._+=`M${this._x0=this._x1=+e},${this._y0=this._y1=+t}h${+n}v${+r}h${-n}Z`}value(){return this._||null}}class vN{constructor(){this._=[]}moveTo(e,t){this._.push([e,t])}closePath(){this._.push(this._[0].slice())}lineTo(e,t){this._.push([e,t])}value(){return this._.length?this._:null}}class bN{constructor(e,[t,n,r,i]=[0,0,960,500]){if(!((r=+r)>=(t=+t)&&(i=+i)>=(n=+n)))throw new Error("invalid bounds");this.delaunay=e,this._circumcenters=new Float64Array(2*e.points.length),this.vectors=new Float64Array(2*e.points.length),this.xmax=r,this.xmin=t,this.ymax=i,this.ymin=n,this._init()}update(){return this.delaunay.update(),this._init(),this}_init(){const{delaunay:{points:e,hull:t,triangles:n},vectors:r}=this;let i,o;const a=this.circumcenters=this._circumcenters.subarray(0,n.length/3*2);for(let r,s,l=0,c=0,u=n.length;l<u;l+=3,c+=2){const u=2*n[l],d=2*n[l+1],f=2*n[l+2],h=e[u],p=e[u+1],g=e[d],m=e[d+1],v=e[f],b=e[f+1],y=g-h,_=m-p,w=v-h,x=b-p,k=2*(y*x-_*w);if(Math.abs(k)<1e-9){if(void 0===i){i=o=0;for(const n of t)i+=e[2*n],o+=e[2*n+1];i/=t.length,o/=t.length}const n=1e9*Math.sign((i-h)*x-(o-p)*w);r=(h+v)/2-n*x,s=(p+b)/2+n*w}else{const e=1/k,t=y*y+_*_,n=w*w+x*x;r=h+(x*t-_*n)*e,s=p+(y*n-w*t)*e}a[c]=r,a[c+1]=s}let s,l,c,u=t[t.length-1],d=4*u,f=e[2*u],h=e[2*u+1];r.fill(0);for(let n=0;n<t.length;++n)u=t[n],s=d,l=f,c=h,d=4*u,f=e[2*u],h=e[2*u+1],r[s+2]=r[d]=c-h,r[s+3]=r[d+1]=f-l}render(e){const t=null==e?e=new mN:void 0,{delaunay:{halfedges:n,inedges:r,hull:i},circumcenters:o,vectors:a}=this;if(i.length<=1)return null;for(let t=0,r=n.length;t<r;++t){const r=n[t];if(r<t)continue;const i=2*Math.floor(t/3),a=2*Math.floor(r/3),s=o[i],l=o[i+1],c=o[a],u=o[a+1];this._renderSegment(s,l,c,u,e)}let s,l=i[i.length-1];for(let t=0;t<i.length;++t){s=l,l=i[t];const n=2*Math.floor(r[l]/3),c=o[n],u=o[n+1],d=4*s,f=this._project(c,u,a[d+2],a[d+3]);f&&this._renderSegment(c,u,f[0],f[1],e)}return t&&t.value()}renderBounds(e){const t=null==e?e=new mN:void 0;return e.rect(this.xmin,this.ymin,this.xmax-this.xmin,this.ymax-this.ymin),t&&t.value()}renderCell(e,t){const n=null==t?t=new mN:void 0,r=this._clip(e);if(null===r||!r.length)return;t.moveTo(r[0],r[1]);let i=r.length;for(;r[0]===r[i-2]&&r[1]===r[i-1]&&i>1;)i-=2;for(let e=2;e<i;e+=2)r[e]===r[e-2]&&r[e+1]===r[e-1]||t.lineTo(r[e],r[e+1]);return t.closePath(),n&&n.value()}*cellPolygons(){const{delaunay:{points:e}}=this;for(let t=0,n=e.length/2;t<n;++t){const e=this.cellPolygon(t);e&&(e.index=t,yield e)}}cellPolygon(e){const t=new vN;return this.renderCell(e,t),t.value()}_renderSegment(e,t,n,r,i){let o;const a=this._regioncode(e,t),s=this._regioncode(n,r);0===a&&0===s?(i.moveTo(e,t),i.lineTo(n,r)):(o=this._clipSegment(e,t,n,r,a,s))&&(i.moveTo(o[0],o[1]),i.lineTo(o[2],o[3]))}contains(e,t,n){return(t=+t)==t&&(n=+n)==n&&this.delaunay._step(e,t,n)===e}*neighbors(e){const t=this._clip(e);if(t)for(const n of this.delaunay.neighbors(e)){const e=this._clip(n);if(e)e:for(let r=0,i=t.length;r<i;r+=2)for(let o=0,a=e.length;o<a;o+=2)if(t[r]===e[o]&&t[r+1]===e[o+1]&&t[(r+2)%i]===e[(o+a-2)%a]&&t[(r+3)%i]===e[(o+a-1)%a]){yield n;break e}}}_cell(e){const{circumcenters:t,delaunay:{inedges:n,halfedges:r,triangles:i}}=this,o=n[e];if(-1===o)return null;const a=[];let s=o;do{const n=Math.floor(s/3);if(a.push(t[2*n],t[2*n+1]),s=s%3==2?s-2:s+1,i[s]!==e)break;s=r[s]}while(s!==o&&-1!==s);return a}_clip(e){if(0===e&&1===this.delaunay.hull.length)return[this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax,this.xmin,this.ymin];const t=this._cell(e);if(null===t)return null;const{vectors:n}=this,r=4*e;return this._simplify(n[r]||n[r+1]?this._clipInfinite(e,t,n[r],n[r+1],n[r+2],n[r+3]):this._clipFinite(e,t))}_clipFinite(e,t){const n=t.length;let r,i,o,a,s=null,l=t[n-2],c=t[n-1],u=this._regioncode(l,c),d=0;for(let f=0;f<n;f+=2)if(r=l,i=c,l=t[f],c=t[f+1],o=u,u=this._regioncode(l,c),0===o&&0===u)a=d,d=0,s?s.push(l,c):s=[l,c];else{let t,n,f,h,p;if(0===o){if(null===(t=this._clipSegment(r,i,l,c,o,u)))continue;[n,f,h,p]=t}else{if(null===(t=this._clipSegment(l,c,r,i,u,o)))continue;[h,p,n,f]=t,a=d,d=this._edgecode(n,f),a&&d&&this._edge(e,a,d,s,s.length),s?s.push(n,f):s=[n,f]}a=d,d=this._edgecode(h,p),a&&d&&this._edge(e,a,d,s,s.length),s?s.push(h,p):s=[h,p]}if(s)a=d,d=this._edgecode(s[0],s[1]),a&&d&&this._edge(e,a,d,s,s.length);else if(this.contains(e,(this.xmin+this.xmax)/2,(this.ymin+this.ymax)/2))return[this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax,this.xmin,this.ymin];return s}_clipSegment(e,t,n,r,i,o){const a=i<o;for(a&&([e,t,n,r,i,o]=[n,r,e,t,o,i]);;){if(0===i&&0===o)return a?[n,r,e,t]:[e,t,n,r];if(i&o)return null;let s,l,c=i||o;8&c?(s=e+(n-e)*(this.ymax-t)/(r-t),l=this.ymax):4&c?(s=e+(n-e)*(this.ymin-t)/(r-t),l=this.ymin):2&c?(l=t+(r-t)*(this.xmax-e)/(n-e),s=this.xmax):(l=t+(r-t)*(this.xmin-e)/(n-e),s=this.xmin),i?(e=s,t=l,i=this._regioncode(e,t)):(n=s,r=l,o=this._regioncode(n,r))}}_clipInfinite(e,t,n,r,i,o){let a,s=Array.from(t);if((a=this._project(s[0],s[1],n,r))&&s.unshift(a[0],a[1]),(a=this._project(s[s.length-2],s[s.length-1],i,o))&&s.push(a[0],a[1]),s=this._clipFinite(e,s))for(let t,n=0,r=s.length,i=this._edgecode(s[r-2],s[r-1]);n<r;n+=2)t=i,i=this._edgecode(s[n],s[n+1]),t&&i&&(n=this._edge(e,t,i,s,n),r=s.length);else this.contains(e,(this.xmin+this.xmax)/2,(this.ymin+this.ymax)/2)&&(s=[this.xmin,this.ymin,this.xmax,this.ymin,this.xmax,this.ymax,this.xmin,this.ymax]);return s}_edge(e,t,n,r,i){for(;t!==n;){let n,o;switch(t){case 5:t=4;continue;case 4:t=6,n=this.xmax,o=this.ymin;break;case 6:t=2;continue;case 2:t=10,n=this.xmax,o=this.ymax;break;case 10:t=8;continue;case 8:t=9,n=this.xmin,o=this.ymax;break;case 9:t=1;continue;case 1:t=5,n=this.xmin,o=this.ymin}r[i]===n&&r[i+1]===o||!this.contains(e,n,o)||(r.splice(i,0,n,o),i+=2)}return i}_project(e,t,n,r){let i,o,a,s=1/0;if(r<0){if(t<=this.ymin)return null;(i=(this.ymin-t)/r)<s&&(a=this.ymin,o=e+(s=i)*n)}else if(r>0){if(t>=this.ymax)return null;(i=(this.ymax-t)/r)<s&&(a=this.ymax,o=e+(s=i)*n)}if(n>0){if(e>=this.xmax)return null;(i=(this.xmax-e)/n)<s&&(o=this.xmax,a=t+(s=i)*r)}else if(n<0){if(e<=this.xmin)return null;(i=(this.xmin-e)/n)<s&&(o=this.xmin,a=t+(s=i)*r)}return[o,a]}_edgecode(e,t){return(e===this.xmin?1:e===this.xmax?2:0)|(t===this.ymin?4:t===this.ymax?8:0)}_regioncode(e,t){return(e<this.xmin?1:e>this.xmax?2:0)|(t<this.ymin?4:t>this.ymax?8:0)}_simplify(e){if(e&&e.length>4){for(let t=0;t<e.length;t+=2){const n=(t+2)%e.length,r=(t+4)%e.length;(e[t]===e[n]&&e[n]===e[r]||e[t+1]===e[n+1]&&e[n+1]===e[r+1])&&(e.splice(n,2),t-=2)}e.length||(e=null)}return e}}const yN=2*Math.PI,_N=Math.pow;function wN(e){return e[0]}function xN(e){return e[1]}function kN(e,t,n){return[e+Math.sin(e+t)*n,t+Math.cos(e-t)*n]}class CN{static from(e,t=wN,n=xN,r){return new CN("length"in e?function(e,t,n,r){const i=e.length,o=new Float64Array(2*i);for(let a=0;a<i;++a){const i=e[a];o[2*a]=t.call(r,i,a,e),o[2*a+1]=n.call(r,i,a,e)}return o}(e,t,n,r):Float64Array.from(function*(e,t,n,r){let i=0;for(const o of e)yield t.call(r,o,i,e),yield n.call(r,o,i,e),++i}(e,t,n,r)))}constructor(e){this._delaunator=new sN(e),this.inedges=new Int32Array(e.length/2),this._hullIndex=new Int32Array(e.length/2),this.points=this._delaunator.coords,this._init()}update(){return this._delaunator.update(),this._init(),this}_init(){const e=this._delaunator,t=this.points;if(e.hull&&e.hull.length>2&&function(e){const{triangles:t,coords:n}=e;for(let e=0;e<t.length;e+=3){const r=2*t[e],i=2*t[e+1],o=2*t[e+2];if((n[o]-n[r])*(n[i+1]-n[r+1])-(n[i]-n[r])*(n[o+1]-n[r+1])>1e-10)return!1}return!0}(e)){this.collinear=Int32Array.from({length:t.length/2},((e,t)=>t)).sort(((e,n)=>t[2*e]-t[2*n]||t[2*e+1]-t[2*n+1]));const e=this.collinear[0],n=this.collinear[this.collinear.length-1],r=[t[2*e],t[2*e+1],t[2*n],t[2*n+1]],i=1e-8*Math.hypot(r[3]-r[1],r[2]-r[0]);for(let e=0,n=t.length/2;e<n;++e){const n=kN(t[2*e],t[2*e+1],i);t[2*e]=n[0],t[2*e+1]=n[1]}this._delaunator=new sN(t)}else delete this.collinear;const n=this.halfedges=this._delaunator.halfedges,r=this.hull=this._delaunator.hull,i=this.triangles=this._delaunator.triangles,o=this.inedges.fill(-1),a=this._hullIndex.fill(-1);for(let e=0,t=n.length;e<t;++e){const t=i[e%3==2?e-2:e+1];-1!==n[e]&&-1!==o[t]||(o[t]=e)}for(let e=0,t=r.length;e<t;++e)a[r[e]]=e;r.length<=2&&r.length>0&&(this.triangles=new Int32Array(3).fill(-1),this.halfedges=new Int32Array(3).fill(-1),this.triangles[0]=r[0],o[r[0]]=1,2===r.length&&(o[r[1]]=0,this.triangles[1]=r[1],this.triangles[2]=r[1]))}voronoi(e){return new bN(this,e)}*neighbors(e){const{inedges:t,hull:n,_hullIndex:r,halfedges:i,triangles:o,collinear:a}=this;if(a){const t=a.indexOf(e);return t>0&&(yield a[t-1]),void(t<a.length-1&&(yield a[t+1]))}const s=t[e];if(-1===s)return;let l=s,c=-1;do{if(yield c=o[l],l=l%3==2?l-2:l+1,o[l]!==e)return;if(l=i[l],-1===l){const t=n[(r[e]+1)%n.length];return void(t!==c&&(yield t))}}while(l!==s)}find(e,t,n=0){if((e=+e)!=e||(t=+t)!=t)return-1;const r=n;let i;for(;(i=this._step(n,e,t))>=0&&i!==n&&i!==r;)n=i;return i}_step(e,t,n){const{inedges:r,hull:i,_hullIndex:o,halfedges:a,triangles:s,points:l}=this;if(-1===r[e]||!l.length)return(e+1)%(l.length>>1);let c=e,u=_N(t-l[2*e],2)+_N(n-l[2*e+1],2);const d=r[e];let f=d;do{let r=s[f];const d=_N(t-l[2*r],2)+_N(n-l[2*r+1],2);if(d<u&&(u=d,c=r),f=f%3==2?f-2:f+1,s[f]!==e)break;if(f=a[f],-1===f){if(f=i[(o[e]+1)%i.length],f!==r&&_N(t-l[2*f],2)+_N(n-l[2*f+1],2)<u)return f;break}}while(f!==d);return c}render(e){const t=null==e?e=new mN:void 0,{points:n,halfedges:r,triangles:i}=this;for(let t=0,o=r.length;t<o;++t){const o=r[t];if(o<t)continue;const a=2*i[t],s=2*i[o];e.moveTo(n[a],n[a+1]),e.lineTo(n[s],n[s+1])}return this.renderHull(e),t&&t.value()}renderPoints(e,t){void 0!==t||e&&"function"==typeof e.moveTo||(t=e,e=null),t=null==t?2:+t;const n=null==e?e=new mN:void 0,{points:r}=this;for(let n=0,i=r.length;n<i;n+=2){const i=r[n],o=r[n+1];e.moveTo(i+t,o),e.arc(i,o,t,0,yN)}return n&&n.value()}renderHull(e){const t=null==e?e=new mN:void 0,{hull:n,points:r}=this,i=2*n[0],o=n.length;e.moveTo(r[i],r[i+1]);for(let t=1;t<o;++t){const i=2*n[t];e.lineTo(r[i],r[i+1])}return e.closePath(),t&&t.value()}hullPolygon(){const e=new vN;return this.renderHull(e),e.value()}renderTriangle(e,t){const n=null==t?t=new mN:void 0,{points:r,triangles:i}=this,o=2*i[e*=3],a=2*i[e+1],s=2*i[e+2];return t.moveTo(r[o],r[o+1]),t.lineTo(r[a],r[a+1]),t.lineTo(r[s],r[s+1]),t.closePath(),n&&n.value()}*trianglePolygons(){const{triangles:e}=this;for(let t=0,n=e.length/3;t<n;++t)yield this.trianglePolygon(t)}trianglePolygon(e){const t=new vN;return this.renderTriangle(e,t),t.value()}}var SN=function(e){return[e.x,e.y]},MN=xS,TN="cursor",AN=function(e){var t=e.points,n=e.getNodePosition,r=void 0===n?SN:n,i=e.margin,o=void 0===i?MN:i;return t.map((function(e){var t=r(e),n=t[0],i=t[1];return[n+o.left,i+o.top]}))},NN=function(e){var t=e.points,n=e.getNodePosition,r=void 0===n?SN:n,i=e.width,o=e.height,a=e.margin,s=void 0===a?MN:a,l=e.debug;return fe((function(){return function(e){var t=e.points,n=e.width,r=e.height,i=e.margin,o=void 0===i?MN:i,a=e.debug,s=CN.from(t),l=a?s.voronoi([0,0,o.left+n+o.right,o.top+r+o.bottom]):void 0;return{points:t,delaunay:s,voronoi:l}}({points:AN({points:t,margin:s,getNodePosition:r}),width:i,height:o,margin:s,debug:l})}),[t,i,o,s,l])},ON=function(e){var t=e.nodes,n=e.width,r=e.height,i=e.margin,o=void 0===i?MN:i,a=e.getNodePosition,s=e.setCurrent,l=e.onMouseEnter,c=e.onMouseMove,u=e.onMouseLeave,d=e.onClick,f=e.onTouchStart,h=e.onTouchMove,p=e.onTouchEnd,g=e.enableTouchCrosshair,m=void 0!==g&&g,v=e.detectionRadius,b=void 0===v?1/0:v,y=e.tooltip,_=e.tooltipPosition,w=void 0===_?TN:_,x=e.tooltipAnchor,k=void 0===x?"top":x,C=e.debug,S=de(null),M=NN({points:t,getNodePosition:a,width:n,height:r,margin:o,debug:C}),A=M.delaunay,N=M.voronoi,O=function(e){var t=e.elementRef,n=e.nodes,r=e.getNodePosition,i=void 0===r?SN:r,o=e.delaunay,a=e.setCurrent,s=e.margin,l=void 0===s?MN:s,c=e.detectionRadius,u=void 0===c?1/0:c,d=e.isInteractive,f=void 0===d||d,h=e.onMouseEnter,p=e.onMouseMove,g=e.onMouseLeave,m=e.onClick,v=e.onTouchStart,b=e.onTouchMove,y=e.onTouchEnd,_=e.enableTouchCrosshair,w=void 0!==_&&_,x=e.tooltip,k=e.tooltipPosition,C=void 0===k?TN:k,S=e.tooltipAnchor,M=void 0===S?"top":S,T=ce(null),A=T[0],N=T[1],O=de(null);ue((function(){O.current=A}),[O,A]);var P=he((function(e){if(!t.current)return null;var r=aM(t.current,e),a=r[0],s=r[1],c=o.find(a,s),d=void 0!==c?n[c]:null;if(d&&u!==1/0){var f=i(d),h=f[0],p=f[1];(function(e,t,n,r){var i=n-e,o=r-t;return i*=i,o*=o,Math.sqrt(i+o)})(a,s,h+l.left,p+l.top)>u&&(c=null,d=null)}return null===c||null===d?null:[c,d]}),[t,o,n,i,l,u]),L=Lu(),E=L.showTooltipAt,F=L.showTooltipFromEvent,j=L.hideTooltip,z=fe((function(){if(x)return"cursor"===C?function(e,t){F(x(e),t,M)}:function(e){var t=i(e),n=t[0],r=t[1];E(x(e),[n+l.left,r+l.top],M)}}),[E,F,x,C,M,i,l]),$=he((function(e){var t=P(e);if(N(t),null==a||a(t?t[1]:null),t){var n=t[1];null==z||z(n,e),null==h||h(t[1],e)}}),[P,N,a,z,h]),B=he((function(e){var t=P(e);if(N(t),t){var n=t[0],r=t[1];if(null==a||a(r),null==z||z(r,e),O.current){var i=O.current,o=i[0],s=i[1];n!==o?null==g||g(s,e):null==p||p(r,e)}else null==h||h(r,e)}else null==a||a(null),null==j||j(),O.current&&(null==g||g(O.current[1],e))}),[P,N,O,h,p,g,z,j]),R=he((function(e){N(null),null==a||a(null),j(),g&&O.current&&g(O.current[1],e)}),[N,a,O,j,g]),D=he((function(e){var t=P(e);N(t),t&&(null==m||m(t[1],e))}),[P,N,m]),I=he((function(e){var t=P(e);w&&(N(t),null==a||a(t?t[1]:null)),t&&(null==v||v(t[1],e))}),[P,N,a,w,v]),U=he((function(e){var t=P(e);w&&(N(t),null==a||a(t?t[1]:null)),t&&(null==b||b(t[1],e))}),[P,N,a,w,b]),H=he((function(e){w&&(N(null),null==a||a(null)),y&&O.current&&y(O.current[1],e)}),[w,N,a,y,O]);return{current:A,handleMouseEnter:f?$:void 0,handleMouseMove:f?B:void 0,handleMouseLeave:f?R:void 0,handleClick:f?D:void 0,handleTouchStart:f?I:void 0,handleTouchMove:f?U:void 0,handleTouchEnd:f?H:void 0}}({elementRef:S,nodes:t,delaunay:A,margin:o,detectionRadius:b,setCurrent:s,onMouseEnter:l,onMouseMove:c,onMouseLeave:u,onClick:d,onTouchStart:f,onTouchMove:h,onTouchEnd:p,enableTouchCrosshair:m,tooltip:y,tooltipPosition:w,tooltipAnchor:k}),P=O.current,L=O.handleMouseEnter,E=O.handleMouseMove,F=O.handleMouseLeave,j=O.handleClick,z=O.handleTouchStart,$=O.handleTouchMove,B=O.handleTouchEnd,R=fe((function(){if(C&&N)return N.render()}),[C,N]);return Je("g",{ref:S,transform:"translate("+-o.left+","+-o.top+")",children:[C&&N&&Je(T,{children:[Je("path",{d:R,stroke:"red",strokeWidth:1,opacity:.75}),b<1/0&&Je("path",{stroke:"red",strokeWidth:.35,fill:"none",d:A.renderPoints(void 0,b)}),P&&Je("path",{fill:"pink",opacity:.35,d:N.renderCell(P[0])})]}),Je("rect",{"data-ref":"mesh-interceptor",width:o.left+n+o.right,height:o.top+r+o.bottom,fill:"red",opacity:0,style:{cursor:"auto"},onMouseEnter:L,onMouseMove:E,onMouseLeave:F,onTouchStart:z,onTouchMove:$,onTouchEnd:B,onClick:j})]})};function PN(){return PN=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},PN.apply(this,arguments)}var LN=Se((function(e){var t=e.point;return Je(Fl,{id:Je("span",{children:["x: ",Je("strong",{children:t.data.xFormatted}),", y:"," ",Je("strong",{children:t.data.yFormatted})]}),enableChip:!0,color:t.serieColor})})),EN=Se((function(e){var t=e.slice,n=e.axis,r=NS(),i="x"===n?"y":"x";return Je(zl,{rows:t.points.map((function(e){return[Je(El,{color:e.serieColor,style:r.tooltip.chip},"chip"),e.serieId,Je("span",{style:r.tooltip.tableCellValue,children:e.data[i+"Formatted"]},"value")]}))})})),FN={curve:"linear",xScale:{type:"point"},yScale:{type:"linear",min:0,max:"auto"},layers:["grid","markers","axes","areas","crosshair","lines","points","slices","mesh","legends"],axisBottom:{},axisLeft:{},enableGridX:!0,enableGridY:!0,enablePoints:!0,pointSize:6,pointColor:{from:"color"},pointBorderWidth:0,pointBorderColor:{theme:"background"},enablePointLabel:!1,pointLabel:"yFormatted",colors:{scheme:"nivo"},enableArea:!1,areaBaselineValue:0,areaOpacity:.2,areaBlendMode:"normal",lineWidth:2,legends:[],isInteractive:!0,tooltip:LN,enableSlices:!1,debugSlices:!1,sliceTooltip:EN,debugMesh:!1,enableCrosshair:!0,crosshairType:"bottom-left"},jN=PN({},FN,{enablePointLabel:!1,useMesh:!1,enableTouchCrosshair:!1,animate:!0,motionConfig:"gentle",defs:[],fill:[],role:"img",initialHiddenIds:[]});PN({},FN,{pixelRatio:"undefined"!=typeof window&&window.devicePixelRatio||1});var zN=function(e){var t=e.curve;return fe((function(){return X_().defined((function(e){return null!==e.x&&null!==e.y})).x((function(e){return e.x})).y((function(e){return e.y})).curve(wS(t))}),[t])},$N=function(e){var t=e.curve,n=e.yScale,r=e.areaBaselineValue;return fe((function(){return function(e,t,n){var r=null,i=$_(!0),o=null,a=Y_,s=null,l=q_(c);function c(c){var u,d,f,h,p,g=(c=V_(c)).length,m=!1,v=new Array(g),b=new Array(g);for(null==o&&(s=a(p=l())),u=0;u<=g;++u){if(!(u<g&&i(h=c[u],u,c))===m)if(m=!m)d=u,s.areaStart(),s.lineStart();else{for(s.lineEnd(),s.lineStart(),f=u-1;f>=d;--f)s.point(v[f],b[f]);s.lineEnd(),s.areaEnd()}m&&(v[u]=+e(h,u,c),b[u]=+t(h,u,c),s.point(r?+r(h,u,c):v[u],n?+n(h,u,c):b[u]))}if(p)return s=null,p+""||null}function u(){return X_().defined(i).curve(a).context(o)}return e="function"==typeof e?e:void 0===e?G_:$_(+e),t="function"==typeof t?t:$_(void 0===t?0:+t),n="function"==typeof n?n:void 0===n?Z_:$_(+n),c.x=function(t){return arguments.length?(e="function"==typeof t?t:$_(+t),r=null,c):e},c.x0=function(t){return arguments.length?(e="function"==typeof t?t:$_(+t),c):e},c.x1=function(e){return arguments.length?(r=null==e?null:"function"==typeof e?e:$_(+e),c):r},c.y=function(e){return arguments.length?(t="function"==typeof e?e:$_(+e),n=null,c):t},c.y0=function(e){return arguments.length?(t="function"==typeof e?e:$_(+e),c):t},c.y1=function(e){return arguments.length?(n=null==e?null:"function"==typeof e?e:$_(+e),c):n},c.lineX0=c.lineY0=function(){return u().x(e).y(t)},c.lineY1=function(){return u().x(e).y(n)},c.lineX1=function(){return u().x(r).y(t)},c.defined=function(e){return arguments.length?(i="function"==typeof e?e:$_(!!e),c):i},c.curve=function(e){return arguments.length?(a=e,null!=o&&(s=a(o)),c):a},c.context=function(e){return arguments.length?(null==e?o=s=null:s=a(o=e),c):o},c}().defined((function(e){return null!==e.x&&null!==e.y})).x((function(e){return e.x})).y1((function(e){return e.y})).curve(wS(t)).y0(n(r))}),[t,n,r])},BN=function(e){var t=e.data,n=e.xScale,r=void 0===n?jN.xScale:n,i=e.xFormat,o=e.yScale,a=void 0===o?jN.yScale:o,s=e.yFormat,l=e.width,c=e.height,u=e.colors,d=void 0===u?jN.colors:u,f=e.curve,h=void 0===f?jN.curve:f,p=e.areaBaselineValue,g=void 0===p?jN.areaBaselineValue:p,m=e.pointColor,v=void 0===m?jN.pointColor:m,b=e.pointBorderColor,y=void 0===b?jN.pointBorderColor:b,_=e.enableSlices,w=void 0===_?jN.enableSlicesTooltip:_,x=e.initialHiddenIds,k=void 0===x?jN.initialHiddenIds:x,C=ce(ZA("line"))[0],S=SS(i),M=SS(s),T=function(e,t){return fe((function(){return function(e,t){if("function"==typeof e)return e;var n=function(e){return Kh(e,"id")};if(Array.isArray(e)){var r=jg(e),i=function(e){return r(n(e))};return i.scale=r,i}if(iC(e)){if(function(e){return void 0!==e.datum}(e))return function(t){return Kh(t,e.datum)};if(function(e){return void 0!==e.scheme}(e)){if(function(e){return fM.includes(e)}(e.scheme)){var o=jg(yM[e.scheme]),a=function(e){return o(n(e))};return a.scale=o,a}if(function(e){return pM.includes(e)}(e.scheme)){if(void 0!==e.size&&(e.size<3||e.size>11))throw new Error("Invalid size '"+e.size+"' for diverging color scheme '"+e.scheme+"', must be between 3~11");var s=jg(yM[e.scheme][e.size||11]),l=function(e){return s(n(e))};return l.scale=s,l}if(function(e){return vM.includes(e)}(e.scheme)){if(void 0!==e.size&&(e.size<3||e.size>9))throw new Error("Invalid size '"+e.size+"' for sequential color scheme '"+e.scheme+"', must be between 3~9");var c=jg(yM[e.scheme][e.size||9]),u=function(e){return c(n(e))};return u.scale=c,u}}throw new Error("Invalid colors, when using an object, you should either pass a 'datum' or a 'scheme' property")}return function(){return e}}(e)}),[e,"id"])}(d),A=NS(),N=AM(v,A),O=AM(y,A),P=ce(null!=k?k:[]),L=P[0],E=P[1],F=fe((function(){return function(e,t,n,r,i){var o=e.map((function(e){return function(e){return sA({},e,{data:e.data.map((function(e){return{data:sA({},e)}}))})}(e)})),a=function(e,t,n){return{x:vA(e,"x",t),y:vA(e,"y",n)}}(o,t,n);"stacked"in t&&!0===t.stacked&&function(e,t){bA("x",e,t)}(a,o),"stacked"in n&&!0===n.stacked&&function(e,t){bA("y",e,t)}(a,o);var s=gA(t,a.x,r,"x"),l=gA(n,a.y,i,"y"),c=o.map((function(e){return sA({},e,{data:e.data.map((function(e){return sA({},e,{position:{x:mA(e,"x",s),y:mA(e,"y",l)}})}))})}));return sA({},a,{series:c,xScale:s,yScale:l})}(t.filter((function(e){return-1===L.indexOf(e.id)})),r,a,l,c)}),[t,L,r,a,l,c]),j=F.xScale,z=F.yScale,$=F.series,B=fe((function(){var e=t.map((function(e){return{id:e.id,label:e.id,color:T(e)}})),n=e.map((function(e){return PN({},$.find((function(t){return t.id===e.id})),{color:e.color})})).filter((function(e){return Boolean(e.id)}));return{legendData:e.map((function(e){return PN({},e,{hidden:!n.find((function(t){return t.id===e.id}))})})).reverse(),series:n}}),[t,$,T]),R=B.legendData,D=B.series,I=he((function(e){E((function(t){return t.indexOf(e)>-1?t.filter((function(t){return t!==e})):[].concat(t,[e])}))}),[]),U=function(e){var t=e.series,n=e.getPointColor,r=e.getPointBorderColor,i=e.formatX,o=e.formatY;return fe((function(){return t.reduce((function(e,t){return[].concat(e,t.data.filter((function(e){return null!==e.position.x&&null!==e.position.y})).map((function(a,s){var l={id:t.id+"."+s,index:e.length+s,serieId:t.id,serieColor:t.color,x:a.position.x,y:a.position.y};return l.color=n(t),l.borderColor=r(l),l.data=PN({},a.data,{xFormatted:i(a.data.x),yFormatted:o(a.data.y)}),l})))}),[])}),[t,n,r,i,o])}({series:D,getPointColor:N,getPointBorderColor:O,formatX:S,formatY:M}),H=function(e){var t=e.componentId,n=e.enableSlices,r=e.points,i=e.width,o=e.height;return fe((function(){if(!1===n)return[];if("x"===n){var e=new Map;return r.forEach((function(t){null!==t.data.x&&null!==t.data.y&&(e.has(t.x)?e.get(t.x).push(t):e.set(t.x,[t]))})),Array.from(e.entries()).sort((function(e,t){return e[0]-t[0]})).map((function(e,n,r){var a,s,l=e[0],c=e[1],u=r[n-1],d=r[n+1];return a=u?l-(l-u[0])/2:l,s=d?l-a+(d[0]-l)/2:i-a,{id:"slice:"+t+":"+l,x0:a,x:l,y0:0,y:0,width:s,height:o,points:c.reverse()}}))}if("y"===n){var a=new Map;return r.forEach((function(e){null!==e.data.x&&null!==e.data.y&&(a.has(e.y)?a.get(e.y).push(e):a.set(e.y,[e]))})),Array.from(a.entries()).sort((function(e,t){return e[0]-t[0]})).map((function(e,t,n){var r,a,s=e[0],l=e[1],c=n[t-1],u=n[t+1];return r=c?s-(s-c[0])/2:s,a=u?s-r+(u[0]-s)/2:o-r,{id:s,x0:0,x:0,y0:r,y:s,width:i,height:a,points:l.reverse()}}))}}),[t,n,o,r,i])}({componentId:C,enableSlices:w,points:U,width:l,height:c});return{legendData:R,toggleSerie:I,lineGenerator:zN({curve:h}),areaGenerator:$N({curve:h,yScale:z,areaBaselineValue:g}),getColor:T,series:D,xScale:j,yScale:z,slices:H,points:U}},RN=function(e){var t=e.areaBlendMode,n=e.areaOpacity,r=e.color,i=e.fill,o=e.path,a=gS(),s=a.animate,l=a.config,c=mS(o),u=ll({color:r,config:l,immediate:!s});return Je(Al.path,{d:c,fill:i||u.color,fillOpacity:n,strokeWidth:0,style:{mixBlendMode:t}})},DN=Se((function(e){var t=e.areaGenerator,n=e.areaOpacity,r=e.areaBlendMode;return Je("g",{children:e.lines.slice(0).reverse().map((function(e){return Je(RN,PN({path:t(e.data.map((function(e){return e.position})))},PN({areaOpacity:n,areaBlendMode:r},e)),e.id)}))})})),IN=Se((function(e){var t=e.lineGenerator,n=e.points,r=e.color,i=e.thickness,o=fe((function(){return t(n)}),[t,n]),a=mS(o);return Je(Al.path,{d:a,fill:"none",strokeWidth:i,stroke:r})})),UN=Se((function(e){var t=e.lines,n=e.lineGenerator,r=e.lineWidth;return t.slice(0).reverse().map((function(e){var t=e.id,i=e.data,o=e.color;return Je(IN,{id:t,points:i.map((function(e){return e.position})),lineGenerator:n,color:o,thickness:r},t)}))})),HN=Se((function(e){var t=e.slice,n=e.slices,r=e.axis,i=e.debug,o=e.tooltip,a=e.isCurrent,s=e.setCurrent,l=e.onMouseEnter,c=e.onMouseMove,u=e.onMouseLeave,d=e.onClick,f=e.onTouchStart,h=e.onTouchMove,p=e.onTouchEnd,g=Lu(),m=g.showTooltipFromEvent,v=g.hideTooltip,b=he((function(e){m(S(o,{slice:t,axis:r}),e,"right"),s(t),l&&l(t,e)}),[m,o,t,r,s,l]),y=he((function(e){m(S(o,{slice:t,axis:r}),e,"right"),c&&c(t,e)}),[m,o,t,r,c]),_=he((function(e){v(),s(null),u&&u(t,e)}),[v,s,u,t]),w=he((function(e){d&&d(t,e)}),[t,d]),x=he((function(e){m(S(o,{slice:t,axis:r}),e,"right"),s(t),f&&f(t,e)}),[r,f,s,m,t,o]),k=he((function(e){var i=e.touches[0],a=document.elementFromPoint(i.clientX,i.clientY),l=null==a?void 0:a.getAttribute("data-ref");if(l){var c=n.find((function(e){return e.id===l}));c&&(m(S(o,{slice:c,axis:r}),e,"right"),s(c))}h&&h(t,e)}),[r,h,s,m,t,n,o]),C=he((function(e){v(),s(null),p&&p(t,e)}),[v,s,p,t]);return Je("rect",{x:t.x0,y:t.y0,width:t.width,height:t.height,stroke:"red",strokeWidth:i?1:0,strokeOpacity:.75,fill:"red",fillOpacity:a&&i?.35:0,onMouseEnter:b,onMouseMove:y,onMouseLeave:_,onClick:w,onTouchStart:x,onTouchMove:k,onTouchEnd:C,"data-ref":t.id})})),qN=Se((function(e){var t=e.slices,n=e.axis,r=e.debug,i=e.height,o=e.tooltip,a=e.current,s=e.setCurrent,l=e.onMouseEnter,c=e.onMouseMove,u=e.onMouseLeave,d=e.onClick,f=e.onTouchStart,h=e.onTouchMove,p=e.onTouchEnd;return t.map((function(e){return Je(HN,{slice:e,slices:t,axis:n,debug:r,height:i,tooltip:o,setCurrent:s,isCurrent:null!==a&&a.id===e.id,onMouseEnter:l,onMouseMove:c,onMouseLeave:u,onClick:d,onTouchStart:f,onTouchMove:h,onTouchEnd:p},e.id)}))})),VN=Se((function(e){var t=e.points,n=e.symbol,r=e.size,i=e.borderWidth,o=e.enableLabel,a=e.label,s=e.labelYOffset,l=NS(),c=function(e){return O_(e)?e:function(t){return Kh(t,e)}}(a),u=t.slice(0).reverse().map((function(e){return{id:e.id,x:e.x,y:e.y,datum:e.data,fill:e.color,stroke:e.borderColor,label:o?c(e):null}}));return Je("g",{children:u.map((function(e){return Je(JS,{x:e.x,y:e.y,datum:e.datum,symbol:n,size:r,color:e.fill,borderWidth:i,borderColor:e.stroke,label:e.label,labelYOffset:s,theme:l},e.id)}))})})),WN=Se((function(e){var t=e.points,n=e.width,r=e.height,i=e.margin,o=e.setCurrent,a=e.onMouseEnter,s=e.onMouseMove,l=e.onMouseLeave,c=e.onClick,u=e.onTouchStart,d=e.onTouchMove,f=e.onTouchEnd,h=e.tooltip,p=e.debug,g=e.enableTouchCrosshair,m=Lu(),v=m.showTooltipAt,b=m.hideTooltip,y=he((function(e,t){v(S(h,{point:e}),[e.x+i.left,e.y+i.top],"top"),a&&a(e,t)}),[v,h,a,i]),_=he((function(e,t){v(S(h,{point:e}),[e.x+i.left,e.y+i.top],"top"),s&&s(e,t)}),[v,h,i.left,i.top,s]),w=he((function(e,t){b(),l&&l(e,t)}),[b,l]),x=he((function(e,t){c&&c(e,t)}),[c]),k=he((function(e,t){v(S(h,{point:e}),[e.x+i.left,e.y+i.top],"top"),u&&u(e,t)}),[i.left,i.top,u,v,h]),C=he((function(e,t){v(S(h,{point:e}),[e.x+i.left,e.y+i.top],"top"),d&&d(e,t)}),[i.left,i.top,d,v,h]),M=he((function(e,t){b(),f&&f(e,t)}),[f,b]);return Je(ON,{nodes:t,width:n,height:r,setCurrent:o,onMouseEnter:y,onMouseMove:_,onMouseLeave:w,onClick:x,onTouchStart:k,onTouchMove:C,onTouchEnd:M,enableTouchCrosshair:g,debug:p})})),YN=(oM((function(e){var t=e.data,n=e.xScale,r=void 0===n?{type:"point"}:n,i=e.xFormat,o=e.yScale,a=void 0===o?{type:"linear",min:0,max:"auto"}:o,s=e.yFormat,l=e.layers,c=void 0===l?["grid","markers","axes","areas","crosshair","lines","points","slices","mesh","legends"]:l,u=e.curve,d=void 0===u?"linear":u,f=e.areaBaselineValue,h=void 0===f?0:f,p=e.colors,g=void 0===p?{scheme:"nivo"}:p,m=e.margin,v=e.width,b=e.height,y=e.axisTop,_=e.axisRight,w=e.axisBottom,x=void 0===w?{}:w,k=e.axisLeft,C=void 0===k?{}:k,S=e.enableGridX,M=void 0===S||S,A=e.enableGridY,N=void 0===A||A,O=e.gridXValues,P=e.gridYValues,L=e.lineWidth,E=void 0===L?2:L,F=e.enableArea,j=void 0!==F&&F,z=e.areaOpacity,$=void 0===z?.2:z,B=e.areaBlendMode,R=void 0===B?"normal":B,D=e.enablePoints,I=void 0===D||D,U=e.pointSymbol,H=e.pointSize,q=void 0===H?6:H,V=e.pointColor,W=void 0===V?{from:"color"}:V,Y=e.pointBorderWidth,G=void 0===Y?0:Y,Z=e.pointBorderColor,X=void 0===Z?{theme:"background"}:Z,K=e.enablePointLabel,Q=void 0!==K&&K,J=e.pointLabel,ee=void 0===J?"data.yFormatted":J,te=e.pointLabelYOffset,ne=e.defs,re=void 0===ne?[]:ne,ie=e.fill,oe=void 0===ie?[]:ie,ae=e.markers,se=e.legends,le=void 0===se?[]:se,ue=e.isInteractive,de=void 0===ue||ue,fe=e.useMesh,he=void 0!==fe&&fe,pe=e.debugMesh,ge=void 0!==pe&&pe,me=e.onMouseEnter,ve=e.onMouseMove,be=e.onMouseLeave,ye=e.onClick,_e=e.onTouchStart,we=e.onTouchMove,xe=e.onTouchEnd,ke=e.tooltip,Ce=void 0===ke?LN:ke,Se=e.enableSlices,Me=void 0!==Se&&Se,Te=e.debugSlices,Ae=void 0!==Te&&Te,Ne=e.sliceTooltip,Oe=void 0===Ne?EN:Ne,Pe=e.enableCrosshair,Le=void 0===Pe||Pe,Ee=e.crosshairType,Fe=void 0===Ee?"bottom-left":Ee,je=e.enableTouchCrosshair,ze=void 0!==je&&je,$e=e.role,Be=void 0===$e?"img":$e,Re=e.initialHiddenIds,De=void 0===Re?[]:Re,Ie=kS(v,b,m),Ue=Ie.margin,He=Ie.innerWidth,qe=Ie.innerHeight,Ve=Ie.outerWidth,We=Ie.outerHeight,Ye=BN({data:t,xScale:r,xFormat:i,yScale:a,yFormat:s,width:He,height:qe,colors:g,curve:d,areaBaselineValue:h,pointColor:W,pointBorderColor:X,enableSlices:Me,initialHiddenIds:De}),Ge=Ye.legendData,Ze=Ye.toggleSerie,Xe=Ye.lineGenerator,Ke=Ye.areaGenerator,Qe=Ye.series,et=Ye.xScale,tt=Ye.yScale,nt=Ye.slices,rt=Ye.points,it=NS(),ot=AM(W,it),at=AM(X,it),st=ce(null),lt=st[0],ct=st[1],ut=ce(null),dt=ut[0],ft=ut[1],ht={grid:Je(FA,{theme:it,width:He,height:qe,xScale:M?et:null,yScale:N?tt:null,xValues:O,yValues:P},"grid"),markers:Je(rM,{markers:ae,width:He,height:qe,xScale:et,yScale:tt,theme:it},"markers"),axes:Je(PA,{xScale:et,yScale:tt,width:He,height:qe,theme:it,top:y,right:_,bottom:x,left:C},"axes"),areas:null,lines:Je(UN,{lines:Qe,lineGenerator:Xe,lineWidth:E},"lines"),slices:null,points:null,crosshair:null,mesh:null,legends:le.map((function(e,t){return Je(WA,PN({},e,{containerWidth:He,containerHeight:qe,data:e.data||Ge,theme:it,toggleSerie:e.toggleSerie?Ze:void 0}),"legend."+t)}))},pt=function(e,t,n,r){var i={},o=i.dataKey,a=i.colorKey,s=void 0===a?"color":a,l=i.targetKey,c=void 0===l?"fill":l,u=[],d={};return e.length&&t.length&&(u=[].concat(e),t.forEach((function(t){for(var r=function(){var r=n[i],a=r.id;if(function(e,t,n){if("*"===e)return!0;if(O_(e))return e(t);if(iC(e)){var r=n?Kh(t,n):t;return aS(JC(r,Object.keys(e)),e)}return!1}(r.match,t,o)){var l=e.find((function(e){return e.id===a}));if(l)if(lM.includes(l.type))if("inherit"===l.background||"inherit"===l.color){var f=Kh(t,s),h=l.background,p=l.color,g=a;"inherit"===l.background&&(g=g+".bg."+f,h=f),"inherit"===l.color&&(g=g+".fg."+f,p=f),ep(t,c,"url(#"+g+")"),d[g]||(u.push(lS({},l,{id:g,background:h,color:p})),d[g]=1)}else ep(t,c,"url(#"+a+")");else if(sM.includes(l.type))if(l.colors.map((function(e){return e.color})).includes("inherit")){var m=Kh(t,s),v=a,b=lS({},l,{colors:l.colors.map((function(e,t){return"inherit"!==e.color?e:(v=v+"."+t+"."+m,lS({},e,{color:"inherit"===e.color?m:e.color}))}))});b.id=v,ep(t,c,"url(#"+v+")"),d[v]||(u.push(b),d[v]=1)}else ep(t,c,"url(#"+a+")");return"break"}},i=0;i<n.length&&"break"!==r();i++);}))),u}(re,Qe,oe);return j&&(ht.areas=Je(DN,{areaGenerator:Ke,areaOpacity:$,areaBlendMode:R,lines:Qe},"areas")),de&&!1!==Me&&(ht.slices=Je(qN,{slices:nt,axis:Me,debug:Ae,height:qe,tooltip:Oe,current:dt,setCurrent:ft,onMouseEnter:me,onMouseMove:ve,onMouseLeave:be,onClick:ye,onTouchStart:_e,onTouchMove:we,onTouchEnd:xe},"slices")),I&&(ht.points=Je(VN,{points:rt,symbol:U,size:q,color:ot,borderWidth:G,borderColor:at,enableLabel:Q,label:ee,labelYOffset:te},"points")),de&&Le&&(null!==lt&&(ht.crosshair=Je(Bl,{width:He,height:qe,x:lt.x,y:lt.y,type:Fe},"crosshair")),null!==dt&&(ht.crosshair=Je(Bl,{width:He,height:qe,x:dt.x,y:dt.y,type:Me},"crosshair"))),de&&he&&!1===Me&&(ht.mesh=Je(WN,{points:rt,width:He,height:qe,margin:Ue,current:lt,setCurrent:ct,onMouseEnter:me,onMouseMove:ve,onMouseLeave:be,onClick:ye,onTouchStart:_e,onTouchMove:we,onTouchEnd:xe,tooltip:Ce,enableTouchCrosshair:ze,debug:ge},"mesh")),Je(ZS,{defs:pt,width:Ve,height:We,margin:Ue,role:Be,children:c.map((function(t,n){return"function"==typeof t?Je(T,{children:t(PN({},e,{innerWidth:He,innerHeight:qe,series:Qe,slices:nt,points:rt,xScale:et,yScale:tt,lineGenerator:Xe,areaGenerator:Ke,currentPoint:lt,setCurrentPoint:ct,currentSlice:dt,setCurrentSlice:ft}))},n):ht[t]}))})})),oM((function(e){var t=de(null),n=e.width,r=e.height,i=e.margin,o=e.pixelRatio,a=void 0===o?"undefined"!=typeof window&&window.devicePixelRatio||1:o,s=e.data,l=e.xScale,c=void 0===l?{type:"point"}:l,u=e.xFormat,d=e.yScale,f=void 0===d?{type:"linear",min:0,max:"auto"}:d,h=e.yFormat,p=e.curve,g=void 0===p?"linear":p,m=e.layers,v=void 0===m?["grid","markers","axes","areas","crosshair","lines","points","slices","mesh","legends"]:m,b=e.colors,y=void 0===b?{scheme:"nivo"}:b,_=e.lineWidth,w=void 0===_?2:_,x=e.enableArea,k=void 0!==x&&x,C=e.areaBaselineValue,M=void 0===C?0:C,T=e.areaOpacity,A=void 0===T?.2:T,N=e.enablePoints,O=void 0===N||N,P=e.pointSize,L=void 0===P?6:P,E=e.pointColor,F=void 0===E?{from:"color"}:E,j=e.pointBorderWidth,z=void 0===j?0:j,$=e.pointBorderColor,B=void 0===$?{theme:"background"}:$,R=e.enableGridX,D=void 0===R||R,I=e.gridXValues,U=e.enableGridY,H=void 0===U||U,q=e.gridYValues,V=e.axisTop,W=e.axisRight,Y=e.axisBottom,G=void 0===Y?{}:Y,Z=e.axisLeft,X=void 0===Z?{}:Z,K=e.legends,Q=void 0===K?[]:K,J=e.isInteractive,ee=void 0===J||J,te=e.debugMesh,ne=void 0!==te&&te,re=e.onMouseLeave,ie=e.onClick,oe=e.tooltip,ae=void 0===oe?LN:oe,se=e.canvasRef,le=kS(n,r,i),fe=le.margin,pe=le.innerWidth,ge=le.innerHeight,me=le.outerWidth,ve=le.outerHeight,be=NS(),ye=ce(null),_e=ye[0],we=ye[1],xe=BN({data:s,xScale:c,xFormat:u,yScale:f,yFormat:h,width:pe,height:ge,colors:y,curve:g,areaBaselineValue:M,pointColor:F,pointBorderColor:B}),ke=xe.lineGenerator,Ce=xe.areaGenerator,Se=xe.series,Me=xe.xScale,Te=xe.yScale,Ae=xe.points,Ne=NN({points:Ae,width:pe,height:ge,debug:ne}),Oe=Ne.delaunay,Pe=Ne.voronoi;ue((function(){se&&(se.current=t.current),t.current.width=me*a,t.current.height=ve*a;var e=t.current.getContext("2d");e.scale(a,a),e.fillStyle=be.background,e.fillRect(0,0,me,ve),e.translate(fe.left,fe.top),v.forEach((function(t){if("function"==typeof t&&t({ctx:e,innerWidth:pe,innerHeight:ge,series:Se,points:Ae,xScale:Me,yScale:Te,lineWidth:w,lineGenerator:ke,areaGenerator:Ce,currentPoint:_e,setCurrentPoint:we}),"grid"===t&&be.grid.line.strokeWidth>0&&(e.lineWidth=be.grid.line.strokeWidth,e.strokeStyle=be.grid.line.stroke,D&&jA(e,{width:pe,height:ge,scale:Me,axis:"x",values:I}),H&&jA(e,{width:pe,height:ge,scale:Te,axis:"y",values:q})),"axes"===t&&function(e,t){var n=t.xScale,r=t.yScale,i=t.width,o=t.height,a=t.theme,s={top:t.top,right:t.right,bottom:t.bottom,left:t.left};OA.forEach((function(t){var l=s[t];if(!l)return null;var c="top"===t||"bottom"===t,u="top"===t||"left"===t?"before":"after",d=c?n:r,f=MA(l.format,d);!function(e,t){var n,r=t.axis,i=t.scale,o=t.x,a=void 0===o?0:o,s=t.y,l=void 0===s?0:s,c=t.length,u=t.ticksPosition,d=t.tickValues,f=t.tickSize,h=void 0===f?5:f,p=t.tickPadding,g=void 0===p?5:p,m=t.tickRotation,v=void 0===m?0:m,b=t.format,y=t.legend,_=t.legendPosition,w=void 0===_?"end":_,x=t.legendOffset,k=void 0===x?0:x,C=t.theme,S=SA({axis:r,scale:i,ticksPosition:u,tickValues:d,tickSize:h,tickPadding:g,tickRotation:v,engine:"canvas"}),M=S.ticks,T=S.textAlign,A=S.textBaseline;e.save(),e.translate(a,l),e.textAlign=T,e.textBaseline=A;var N=C.axis.ticks.text;e.font=(N.fontWeight?N.fontWeight+" ":"")+N.fontSize+"px "+N.fontFamily,(null!=(n=C.axis.domain.line.strokeWidth)?n:0)>0&&(e.lineWidth=Number(C.axis.domain.line.strokeWidth),e.lineCap="square",C.axis.domain.line.stroke&&(e.strokeStyle=C.axis.domain.line.stroke),e.beginPath(),e.moveTo(0,0),e.lineTo("x"===r?c:0,"x"===r?0:c),e.stroke());var O="function"==typeof b?b:function(e){return""+e};if(M.forEach((function(t){var n;(null!=(n=C.axis.ticks.line.strokeWidth)?n:0)>0&&(e.lineWidth=Number(C.axis.ticks.line.strokeWidth),e.lineCap="square",C.axis.ticks.line.stroke&&(e.strokeStyle=C.axis.ticks.line.stroke),e.beginPath(),e.moveTo(t.x,t.y),e.lineTo(t.x+t.lineX,t.y+t.lineY),e.stroke());var r=O(t.value);e.save(),e.translate(t.x+t.textX,t.y+t.textY),e.rotate(DS(v)),N.outlineWidth>0&&(e.strokeStyle=N.outlineColor,e.lineWidth=2*N.outlineWidth,e.lineJoin="round",e.strokeText(""+r,0,0)),C.axis.ticks.text.fill&&(e.fillStyle=N.fill),e.fillText(""+r,0,0),e.restore()})),void 0!==y){var P=0,L=0,E=0,F="center";"y"===r?(E=-90,P=k,"start"===w?(F="start",L=c):"middle"===w?(F="center",L=c/2):"end"===w&&(F="end")):(L=k,"start"===w?F="start":"middle"===w?(F="center",P=c/2):"end"===w&&(F="end",P=c)),e.translate(P,L),e.rotate(DS(E)),e.font=(C.axis.legend.text.fontWeight?C.axis.legend.text.fontWeight+" ":"")+C.axis.legend.text.fontSize+"px "+C.axis.legend.text.fontFamily,C.axis.legend.text.fill&&(e.fillStyle=C.axis.legend.text.fill),e.textAlign=F,e.textBaseline="middle",e.fillText(y,0,0)}e.restore()}(e,CA({},l,{axis:c?"x":"y",x:"right"===t?i:0,y:"bottom"===t?o:0,scale:d,format:f,length:c?i:o,ticksPosition:u,theme:a}))}))}(e,{xScale:Me,yScale:Te,width:pe,height:ge,top:V,right:W,bottom:G,left:X,theme:be}),"areas"===t&&!0===k){e.save(),e.globalAlpha=A,Ce.context(e);for(var n=Se.length-1;n>=0;n--)e.fillStyle=Se[n].color,e.beginPath(),Ce(Se[n].data.map((function(e){return e.position}))),e.fill();e.restore()}if("lines"===t&&(ke.context(e),Se.forEach((function(t){e.strokeStyle=t.color,e.lineWidth=w,e.beginPath(),ke(t.data.map((function(e){return e.position}))),e.stroke()}))),"points"===t&&!0===O&&L>0&&Ae.forEach((function(t){e.fillStyle=t.color,e.beginPath(),e.arc(t.x,t.y,L/2,0,2*Math.PI),e.fill(),z>0&&(e.strokeStyle=t.borderColor,e.lineWidth=z,e.stroke())})),"mesh"===t&&!0===ne&&(function(e,t){e.save(),e.globalAlpha=.75,e.beginPath(),t.render(e),e.strokeStyle="red",e.lineWidth=1,e.stroke(),e.restore()}(e,Pe),_e&&function(e,t,n){e.save(),e.globalAlpha=.35,e.beginPath(),t.renderCell(n,e),e.fillStyle="pink",e.fill(),e.restore()}(e,Pe,_e.index)),"legends"===t){var r=Se.map((function(e){return{id:e.id,label:e.id,color:e.color}})).reverse();Q.forEach((function(t){!function(e,t){var n=t.data,r=t.containerWidth,i=t.containerHeight,o=t.translateX,a=void 0===o?0:o,s=t.translateY,l=void 0===s?0:s,c=t.anchor,u=t.direction,d=t.padding,f=void 0===d?0:d,h=t.justify,p=void 0!==h&&h,g=t.itemsSpacing,m=void 0===g?0:g,v=t.itemWidth,b=t.itemHeight,y=t.itemDirection,_=void 0===y?"left-to-right":y,w=t.itemTextColor,x=t.symbolSize,k=void 0===x?16:x,C=t.symbolSpacing,S=void 0===C?8:C,M=t.theme,T=DA({itemCount:n.length,itemWidth:v,itemHeight:b,itemsSpacing:m,direction:u,padding:f}),A=T.width,N=T.height,O=T.padding,P=IA({anchor:c,translateX:a,translateY:l,containerWidth:r,containerHeight:i,width:A,height:N}),L=P.x,E=P.y,F="row"===u?v+m:0,j="column"===u?b+m:0;e.save(),e.translate(L,E),e.font=M.legends.text.fontSize+"px "+(M.legends.text.fontFamily||"sans-serif"),n.forEach((function(t,n){var r,i,o=n*F+O.left,a=n*j+O.top,s=UA({direction:_,justify:p,symbolSize:k,symbolSpacing:S,width:v,height:b}),l=s.symbolX,c=s.symbolY,u=s.labelX,d=s.labelY,f=s.labelAnchor,h=s.labelAlignment;e.fillStyle=null!=(r=t.color)?r:"black",e.fillRect(o+l,a+c,k,k),e.textAlign=YA[f],"central"===h&&(e.textBaseline="middle"),e.fillStyle=null!=(i=null!=w?w:M.legends.text.fill)?i:"black",e.fillText(String(t.label),o+u,a+d)})),e.restore()}(e,PN({},t,{data:t.data||r,containerWidth:pe,containerHeight:ge,theme:be}))}))}}))}),[t,me,ve,v,be,ke,Se,Me,Te,D,I,H,q,V,W,G,X,Q,Ae,O,L,_e]);var Le=he((function(e){var n=aM(t.current,e),r=n[0],i=n[1];if(!function(e,t,n,r,i,o){return e<=i&&i<=e+n&&t<=o&&o<=t+r}(fe.left,fe.top,pe,ge,r,i))return null;var o=Oe.find(r-fe.left,i-fe.top);return Ae[o]}),[t,fe,pe,ge,Oe]),Ee=Lu(),Fe=Ee.showTooltipFromEvent,je=Ee.hideTooltip,ze=he((function(e){var t=Le(e);we(t),t?Fe(S(ae,{point:t}),e):je()}),[Le,we,Fe,je,ae]),$e=he((function(e){je(),we(null),_e&&re&&re(_e,e)}),[je,we,re]),Be=he((function(e){if(ie){var t=Le(e);t&&ie(t,e)}}),[Le,ie]);return Je("canvas",{ref:t,width:me*a,height:ve*a,style:{width:me,height:ve,cursor:ee?"auto":"normal"},onMouseEnter:ee?ze:void 0,onMouseMove:ee?ze:void 0,onMouseLeave:ee?$e:void 0,onClick:ee?Be:void 0})}))),GN=Ae((function(e,t){return Je(YN,PN({},e,{canvasRef:t}))}));Ae((function(e,t){return Je(jS,{children:function(n){var r=n.width,i=n.height;return Je(GN,PN({width:r,height:i},e,{ref:t}))}})}));var ZN=Symbol.for("preact-signals");function XN(){if(eO>1)eO--;else{for(var e,t=!1;void 0!==JN;){var n=JN;for(JN=void 0,tO++;void 0!==n;){var r=n.o;if(n.o=void 0,n.f&=-3,!(8&n.f)&&aO(n))try{n.c()}catch(n){t||(e=n,t=!0)}n=r}}if(tO=0,eO--,t)throw e}}var KN,QN=void 0,JN=void 0,eO=0,tO=0,nO=0;function rO(e){if(void 0!==QN){var t=e.n;if(void 0===t||t.t!==QN)return t={i:0,S:e,p:QN.s,n:void 0,t:QN,e:void 0,x:void 0,r:t},void 0!==QN.s&&(QN.s.n=t),QN.s=t,e.n=t,32&QN.f&&e.S(t),t;if(-1===t.i)return t.i=0,void 0!==t.n&&(t.n.p=t.p,void 0!==t.p&&(t.p.n=t.n),t.p=QN.s,t.n=void 0,QN.s.n=t,QN.s=t),t}}function iO(e){this.v=e,this.i=0,this.n=void 0,this.t=void 0}function oO(e){return new iO(e)}function aO(e){for(var t=e.s;void 0!==t;t=t.n)if(t.S.i!==t.i||!t.S.h()||t.S.i!==t.i)return!0;return!1}function sO(e){for(var t=e.s;void 0!==t;t=t.n){var n=t.S.n;if(void 0!==n&&(t.r=n),t.S.n=t,t.i=-1,void 0===t.n){e.s=t;break}}}function lO(e){for(var t=e.s,n=void 0;void 0!==t;){var r=t.p;-1===t.i?(t.S.U(t),void 0!==r&&(r.n=t.n),void 0!==t.n&&(t.n.p=r)):n=t,t.S.n=t.r,void 0!==t.r&&(t.r=void 0),t=r}e.s=n}function cO(e){iO.call(this,void 0),this.x=e,this.s=void 0,this.g=nO-1,this.f=4}function uO(e){return new cO(e)}function dO(e){var t=e.u;if(e.u=void 0,"function"==typeof t){eO++;var n=QN;QN=void 0;try{t()}catch(t){throw e.f&=-2,e.f|=8,fO(e),t}finally{QN=n,XN()}}}function fO(e){for(var t=e.s;void 0!==t;t=t.n)t.S.U(t);e.x=void 0,e.s=void 0,dO(e)}function hO(e){if(QN!==this)throw new Error("Out-of-order effect");lO(this),QN=e,this.f&=-2,8&this.f&&fO(this),XN()}function pO(e){this.x=e,this.u=void 0,this.s=void 0,this.o=void 0,this.f=32}function gO(e){var t=new pO(e);try{t.c()}catch(e){throw t.d(),e}return t.d.bind(t)}function mO(e,t){l[e]=t.bind(null,l[e]||function(){})}function vO(e){KN&&KN(),KN=e&&e.S()}function bO(e){var t=this,n=e.data,r=function(e){return fe((function(){return oO(e)}),[])}(n);r.value=n;var i=fe((function(){for(var e=t.__v;e=e.__;)if(e.__c){e.__c.__$f|=4;break}return t.__$u.c=function(){var e;u(i.peek())||3!==(null==(e=t.base)?void 0:e.nodeType)?(t.__$f|=1,t.setState({})):t.base.data=i.peek()},uO((function(){var e=r.value.value;return 0===e?0:!0===e?"":e||""}))}),[]);return i.value}function yO(e,t,n,r){var i=t in e&&void 0===e.ownerSVGElement,o=oO(n);return{o:function(e,t){o.value=e,r=t},d:gO((function(){var n=o.value.value;r[t]!==n&&(r[t]=n,i?e[t]=n:n?e.setAttribute(t,n):e.removeAttribute(t))}))}}iO.prototype.brand=ZN,iO.prototype.h=function(){return!0},iO.prototype.S=function(e){this.t!==e&&void 0===e.e&&(e.x=this.t,void 0!==this.t&&(this.t.e=e),this.t=e)},iO.prototype.U=function(e){if(void 0!==this.t){var t=e.e,n=e.x;void 0!==t&&(t.x=n,e.e=void 0),void 0!==n&&(n.e=t,e.x=void 0),e===this.t&&(this.t=n)}},iO.prototype.subscribe=function(e){var t=this;return gO((function(){var n=t.value,r=QN;QN=void 0;try{e(n)}finally{QN=r}}))},iO.prototype.valueOf=function(){return this.value},iO.prototype.toString=function(){return this.value+""},iO.prototype.toJSON=function(){return this.value},iO.prototype.peek=function(){var e=QN;QN=void 0;try{return this.value}finally{QN=e}},Object.defineProperty(iO.prototype,"value",{get:function(){var e=rO(this);return void 0!==e&&(e.i=this.i),this.v},set:function(e){if(e!==this.v){if(tO>100)throw new Error("Cycle detected");this.v=e,this.i++,nO++,eO++;try{for(var t=this.t;void 0!==t;t=t.x)t.t.N()}finally{XN()}}}}),(cO.prototype=new iO).h=function(){if(this.f&=-3,1&this.f)return!1;if(32==(36&this.f))return!0;if(this.f&=-5,this.g===nO)return!0;if(this.g=nO,this.f|=1,this.i>0&&!aO(this))return this.f&=-2,!0;var e=QN;try{sO(this),QN=this;var t=this.x();(16&this.f||this.v!==t||0===this.i)&&(this.v=t,this.f&=-17,this.i++)}catch(e){this.v=e,this.f|=16,this.i++}return QN=e,lO(this),this.f&=-2,!0},cO.prototype.S=function(e){if(void 0===this.t){this.f|=36;for(var t=this.s;void 0!==t;t=t.n)t.S.S(t)}iO.prototype.S.call(this,e)},cO.prototype.U=function(e){if(void 0!==this.t&&(iO.prototype.U.call(this,e),void 0===this.t)){this.f&=-33;for(var t=this.s;void 0!==t;t=t.n)t.S.U(t)}},cO.prototype.N=function(){if(!(2&this.f)){this.f|=6;for(var e=this.t;void 0!==e;e=e.x)e.t.N()}},Object.defineProperty(cO.prototype,"value",{get:function(){if(1&this.f)throw new Error("Cycle detected");var e=rO(this);if(this.h(),void 0!==e&&(e.i=this.i),16&this.f)throw this.v;return this.v}}),pO.prototype.c=function(){var e=this.S();try{if(8&this.f)return;if(void 0===this.x)return;var t=this.x();"function"==typeof t&&(this.u=t)}finally{e()}},pO.prototype.S=function(){if(1&this.f)throw new Error("Cycle detected");this.f|=1,this.f&=-9,dO(this),sO(this),eO++;var e=QN;return QN=this,hO.bind(this,e)},pO.prototype.N=function(){2&this.f||(this.f|=2,this.o=JN,JN=this)},pO.prototype.d=function(){this.f|=8,1&this.f||fO(this)},bO.displayName="_st",Object.defineProperties(iO.prototype,{constructor:{configurable:!0,value:void 0},type:{configurable:!0,value:bO},props:{configurable:!0,get:function(){return{data:this}}},__b:{configurable:!0,value:1}}),mO("__b",(function(e,t){if("string"==typeof t.type){var n,r=t.props;for(var i in r)if("children"!==i){var o=r[i];o instanceof iO&&(n||(t.__np=n={}),n[i]=o,r[i]=o.peek())}}e(t)})),mO("__r",(function(e,t){vO();var n,r=t.__c;r&&(r.__$f&=-2,void 0===(n=r.__$u)&&(r.__$u=n=function(e){var t;return gO((function(){t=this})),t.c=function(){r.__$f|=1,r.setState({})},t}())),vO(n),e(t)})),mO("__e",(function(e,t,n,r){vO(),e(t,n,r)})),mO("diffed",(function(e,t){var n;if(vO(),"string"==typeof t.type&&(n=t.__e)){var r=t.__np,i=t.props;if(r){var o=n.U;if(o)for(var a in o){var s=o[a];void 0===s||a in r||(s.d(),o[a]=void 0)}else n.U=o={};for(var l in r){var c=o[l],u=r[l];void 0===c?(c=yO(n,l,u,i),o[l]=c):c.o(u,i)}}}e(t)})),mO("unmount",(function(e,t){if("string"==typeof t.type){var n=t.__e;if(n){var r=n.U;if(r)for(var i in n.U=void 0,r){var o=r[i];o&&o.d()}}}else{var a=t.__c;if(a){var s=a.__$u;s&&(a.__$u=void 0,s.d())}}e(t)})),mO("__h",(function(e,t,n,r){(r<3||9===r)&&(t.__$f|=2),e(t,n,r)})),A.prototype.shouldComponentUpdate=function(e,t){var n=this.__$u;if(!(n&&void 0!==n.s||4&this.__$f))return!0;if(3&this.__$f)return!0;for(var r in t)return!0;for(var i in e)if("__source"!==i&&e[i]!==this.props[i])return!0;for(var o in this.props)if(!(o in e))return!0;return!1};var _O=a(282),wO=a.n(_O),xO=(a(891),a(709),a(590),a(678),a(54),a(345),a(895),a(225),a(174),a(988),a(623),a(817),a(175),a(699),a(347),a(813),a(108),a(44),a(364),"cuqrZqSD"),kO="rwwirjWt",CO="MaIvtNh8",SO="X56whbwT",MO="SQiA8HDQ",TO="yfMESXbo",AO="djketuNQ",NO="f3ol8RHy",OO="TIvA3Oyn",PO=0;function LO(e,t,n,r,i,o){t||(t={});var a,s,c=t;if("ref"in c)for(s in c={},t)"ref"==s?a=t[s]:c[s]=t[s];var u={type:e,props:c,key:n,ref:a,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,constructor:void 0,__v:--PO,__i:-1,__u:0,__source:i,__self:o};if("function"==typeof e&&(a=e.defaultProps))for(s in a)void 0===c[s]&&(c[s]=a[s]);return l.vnode&&l.vnode(u),u}Array.isArray;const EO=({attachment:e,item:t})=>(ue((()=>{wO().highlightAll()}),[e]),LO("pre",{className:`language-${t?.link?.ext?.replace(".","")} line-numbers`,children:LO("code",{children:e?.text})},t?.link?.id)),FO=async(e,t="application/octet-stream")=>{if(globalThis.allureReportData){const n=e.replace(/\?attachment$/,"");return`data:${t};base64,${await(async e=>(await new Promise((e=>{const t=()=>{if(globalThis.allureReportDataReady)return e(!0);setTimeout(t,30)};t()})),new Promise(((t,n)=>globalThis.allureReportData[e]?t(globalThis.allureReportData[e]):n(new Error(`Data "${e}" not found!`))))))(n)}`}const n=globalThis.document.head.querySelector("base")?.href??"https://localhost",r=new URL(e,n),i=globalThis.localStorage.getItem("__allure_report_live_reload_hash__");return i&&r.searchParams.set("live_reload_hash",i),r.pathname+r.search+r.hash},jO=async e=>{const t=await FO(e),n=await globalThis.fetch(t);if(!n.ok)throw new Error(`Failed to fetch ${t}, response status: ${n.status}`);return n.json()},zO=()=>globalThis.allureReportOptions,{theme:$O}=zO()??{},BO=oO("light"),RO=e=>{BO.value=e,document.documentElement.setAttribute("data-theme",e),window.localStorage.setItem("theme",e)},DO=oO({loading:!0,error:void 0,data:{total:0}}),IO=e=>"string"==typeof e,UO=()=>{let e,t;const n=new Promise(((n,r)=>{e=n,t=r}));return n.resolve=e,n.reject=t,n},HO=e=>null==e?"":""+e,qO=/###/g,VO=e=>e&&e.indexOf("###")>-1?e.replace(qO,"."):e,WO=e=>!e||IO(e),YO=(e,t,n)=>{const r=IO(t)?t.split("."):t;let i=0;for(;i<r.length-1;){if(WO(e))return{};const t=VO(r[i]);!e[t]&&n&&(e[t]=new n),e=Object.prototype.hasOwnProperty.call(e,t)?e[t]:{},++i}return WO(e)?{}:{obj:e,k:VO(r[i])}},GO=(e,t,n)=>{const{obj:r,k:i}=YO(e,t,Object);if(void 0!==r||1===t.length)return void(r[i]=n);let o=t[t.length-1],a=t.slice(0,t.length-1),s=YO(e,a,Object);for(;void 0===s.obj&&a.length;)o=`${a[a.length-1]}.${o}`,a=a.slice(0,a.length-1),s=YO(e,a,Object),s?.obj&&void 0!==s.obj[`${s.k}.${o}`]&&(s.obj=void 0);s.obj[`${s.k}.${o}`]=n},ZO=(e,t)=>{const{obj:n,k:r}=YO(e,t);if(n)return n[r]},XO=(e,t,n)=>{for(const r in t)"__proto__"!==r&&"constructor"!==r&&(r in e?IO(e[r])||e[r]instanceof String||IO(t[r])||t[r]instanceof String?n&&(e[r]=t[r]):XO(e[r],t[r],n):e[r]=t[r]);return e},KO=e=>e.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&");var QO={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};const JO=e=>IO(e)?e.replace(/[&<>"'\/]/g,(e=>QO[e])):e,eP=[" ",",","?","!",";"],tP=new class{constructor(e){this.capacity=e,this.regExpMap=new Map,this.regExpQueue=[]}getRegExp(e){const t=this.regExpMap.get(e);if(void 0!==t)return t;const n=new RegExp(e);return this.regExpQueue.length===this.capacity&&this.regExpMap.delete(this.regExpQueue.shift()),this.regExpMap.set(e,n),this.regExpQueue.push(e),n}}(20),nP=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:".";if(!e)return;if(e[t])return e[t];const r=t.split(n);let i=e;for(let e=0;e<r.length;){if(!i||"object"!=typeof i)return;let t,o="";for(let a=e;a<r.length;++a)if(a!==e&&(o+=n),o+=r[a],t=i[o],void 0!==t){if(["string","number","boolean"].indexOf(typeof t)>-1&&a<r.length-1)continue;e+=a-e+1;break}i=t}return i},rP=e=>e?.replace("_","-"),iP={type:"logger",log(e){this.output("log",e)},warn(e){this.output("warn",e)},error(e){this.output("error",e)},output(e,t){console?.[e]?.apply?.(console,t)}};class oP{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.init(e,t)}init(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.prefix=t.prefix||"i18next:",this.logger=e||iP,this.options=t,this.debug=t.debug}log(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.forward(t,"log","",!0)}warn(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.forward(t,"warn","",!0)}error(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.forward(t,"error","")}deprecate(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.forward(t,"warn","WARNING DEPRECATED: ",!0)}forward(e,t,n,r){return r&&!this.debug?null:(IO(e[0])&&(e[0]=`${n}${this.prefix} ${e[0]}`),this.logger[t](e))}create(e){return new oP(this.logger,{prefix:`${this.prefix}:${e}:`,...this.options})}clone(e){return(e=e||this.options).prefix=e.prefix||this.prefix,new oP(this.logger,e)}}var aP=new oP;class sP{constructor(){this.observers={}}on(e,t){return e.split(" ").forEach((e=>{this.observers[e]||(this.observers[e]=new Map);const n=this.observers[e].get(t)||0;this.observers[e].set(t,n+1)})),this}off(e,t){this.observers[e]&&(t?this.observers[e].delete(t):delete this.observers[e])}emit(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];this.observers[e]&&Array.from(this.observers[e].entries()).forEach((e=>{let[t,r]=e;for(let e=0;e<r;e++)t(...n)})),this.observers["*"]&&Array.from(this.observers["*"].entries()).forEach((t=>{let[r,i]=t;for(let t=0;t<i;t++)r.apply(r,[e,...n])}))}}class lP extends sP{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{ns:["translation"],defaultNS:"translation"};super(),this.data=e||{},this.options=t,void 0===this.options.keySeparator&&(this.options.keySeparator="."),void 0===this.options.ignoreJSONStructure&&(this.options.ignoreJSONStructure=!0)}addNamespaces(e){this.options.ns.indexOf(e)<0&&this.options.ns.push(e)}removeNamespaces(e){const t=this.options.ns.indexOf(e);t>-1&&this.options.ns.splice(t,1)}getResource(e,t,n){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};const i=void 0!==r.keySeparator?r.keySeparator:this.options.keySeparator,o=void 0!==r.ignoreJSONStructure?r.ignoreJSONStructure:this.options.ignoreJSONStructure;let a;e.indexOf(".")>-1?a=e.split("."):(a=[e,t],n&&(Array.isArray(n)?a.push(...n):IO(n)&&i?a.push(...n.split(i)):a.push(n)));const s=ZO(this.data,a);return!s&&!t&&!n&&e.indexOf(".")>-1&&(e=a[0],t=a[1],n=a.slice(2).join(".")),!s&&o&&IO(n)?nP(this.data?.[e]?.[t],n,i):s}addResource(e,t,n,r){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{silent:!1};const o=void 0!==i.keySeparator?i.keySeparator:this.options.keySeparator;let a=[e,t];n&&(a=a.concat(o?n.split(o):n)),e.indexOf(".")>-1&&(a=e.split("."),r=t,t=a[1]),this.addNamespaces(t),GO(this.data,a,r),i.silent||this.emit("added",e,t,n,r)}addResources(e,t,n){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{silent:!1};for(const r in n)(IO(n[r])||Array.isArray(n[r]))&&this.addResource(e,t,r,n[r],{silent:!0});r.silent||this.emit("added",e,t,n)}addResourceBundle(e,t,n,r,i){let o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{silent:!1,skipCopy:!1},a=[e,t];e.indexOf(".")>-1&&(a=e.split("."),r=n,n=t,t=a[1]),this.addNamespaces(t);let s=ZO(this.data,a)||{};o.skipCopy||(n=JSON.parse(JSON.stringify(n))),r?XO(s,n,i):s={...s,...n},GO(this.data,a,s),o.silent||this.emit("added",e,t,n)}removeResourceBundle(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit("removed",e,t)}hasResourceBundle(e,t){return void 0!==this.getResource(e,t)}getResourceBundle(e,t){return t||(t=this.options.defaultNS),this.getResource(e,t)}getDataByLanguage(e){return this.data[e]}hasLanguageSomeTranslations(e){const t=this.getDataByLanguage(e);return!!(t&&Object.keys(t)||[]).find((e=>t[e]&&Object.keys(t[e]).length>0))}toJSON(){return this.data}}var cP={processors:{},addPostProcessor(e){this.processors[e.name]=e},handle(e,t,n,r,i){return e.forEach((e=>{t=this.processors[e]?.process(t,n,r,i)??t})),t}};const uP={};class dP extends sP{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};super(),((e,t,n)=>{["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat","utils"].forEach((e=>{t[e]&&(n[e]=t[e])}))})(0,e,this),this.options=t,void 0===this.options.keySeparator&&(this.options.keySeparator="."),this.logger=aP.create("translator")}changeLanguage(e){e&&(this.language=e)}exists(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{interpolation:{}};if(null==e)return!1;const n=this.resolve(e,t);return void 0!==n?.res}extractFromKey(e,t){let n=void 0!==t.nsSeparator?t.nsSeparator:this.options.nsSeparator;void 0===n&&(n=":");const r=void 0!==t.keySeparator?t.keySeparator:this.options.keySeparator;let i=t.ns||this.options.defaultNS||[];const o=n&&e.indexOf(n)>-1,a=!(this.options.userDefinedKeySeparator||t.keySeparator||this.options.userDefinedNsSeparator||t.nsSeparator||((e,t,n)=>{t=t||"",n=n||"";const r=eP.filter((e=>t.indexOf(e)<0&&n.indexOf(e)<0));if(0===r.length)return!0;const i=tP.getRegExp(`(${r.map((e=>"?"===e?"\\?":e)).join("|")})`);let o=!i.test(e);if(!o){const t=e.indexOf(n);t>0&&!i.test(e.substring(0,t))&&(o=!0)}return o})(e,n,r));if(o&&!a){const t=e.match(this.interpolator.nestingRegexp);if(t&&t.length>0)return{key:e,namespaces:IO(i)?[i]:i};const o=e.split(n);(n!==r||n===r&&this.options.ns.indexOf(o[0])>-1)&&(i=o.shift()),e=o.join(r)}return{key:e,namespaces:IO(i)?[i]:i}}translate(e,t,n){if("object"!=typeof t&&this.options.overloadTranslationOptionHandler&&(t=this.options.overloadTranslationOptionHandler(arguments)),"object"==typeof t&&(t={...t}),t||(t={}),null==e)return"";Array.isArray(e)||(e=[String(e)]);const r=void 0!==t.returnDetails?t.returnDetails:this.options.returnDetails,i=void 0!==t.keySeparator?t.keySeparator:this.options.keySeparator,{key:o,namespaces:a}=this.extractFromKey(e[e.length-1],t),s=a[a.length-1],l=t.lng||this.language,c=t.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if("cimode"===l?.toLowerCase()){if(c){const e=t.nsSeparator||this.options.nsSeparator;return r?{res:`${s}${e}${o}`,usedKey:o,exactUsedKey:o,usedLng:l,usedNS:s,usedParams:this.getUsedParamsDetails(t)}:`${s}${e}${o}`}return r?{res:o,usedKey:o,exactUsedKey:o,usedLng:l,usedNS:s,usedParams:this.getUsedParamsDetails(t)}:o}const u=this.resolve(e,t);let d=u?.res;const f=u?.usedKey||o,h=u?.exactUsedKey||o,p=Object.prototype.toString.apply(d),g=void 0!==t.joinArrays?t.joinArrays:this.options.joinArrays,m=!this.i18nFormat||this.i18nFormat.handleAsObject,v=!IO(d)&&"boolean"!=typeof d&&"number"!=typeof d;if(!(m&&d&&v&&["[object Number]","[object Function]","[object RegExp]"].indexOf(p)<0)||IO(g)&&Array.isArray(d))if(m&&IO(g)&&Array.isArray(d))d=d.join(g),d&&(d=this.extendTranslation(d,e,t,n));else{let r=!1,a=!1;const c=void 0!==t.count&&!IO(t.count),f=dP.hasDefaultValue(t),h=c?this.pluralResolver.getSuffix(l,t.count,t):"",p=t.ordinal&&c?this.pluralResolver.getSuffix(l,t.count,{ordinal:!1}):"",g=c&&!t.ordinal&&0===t.count,m=g&&t[`defaultValue${this.options.pluralSeparator}zero`]||t[`defaultValue${h}`]||t[`defaultValue${p}`]||t.defaultValue;!this.isValidLookup(d)&&f&&(r=!0,d=m),this.isValidLookup(d)||(a=!0,d=o);const v=(t.missingKeyNoValueFallbackToKey||this.options.missingKeyNoValueFallbackToKey)&&a?void 0:d,b=f&&m!==d&&this.options.updateMissing;if(a||r||b){if(this.logger.log(b?"updateKey":"missingKey",l,s,o,b?m:d),i){const e=this.resolve(o,{...t,keySeparator:!1});e&&e.res&&this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.")}let e=[];const n=this.languageUtils.getFallbackCodes(this.options.fallbackLng,t.lng||this.language);if("fallback"===this.options.saveMissingTo&&n&&n[0])for(let t=0;t<n.length;t++)e.push(n[t]);else"all"===this.options.saveMissingTo?e=this.languageUtils.toResolveHierarchy(t.lng||this.language):e.push(t.lng||this.language);const r=(e,n,r)=>{const i=f&&r!==d?r:v;this.options.missingKeyHandler?this.options.missingKeyHandler(e,s,n,i,b,t):this.backendConnector?.saveMissing&&this.backendConnector.saveMissing(e,s,n,i,b,t),this.emit("missingKey",e,s,n,d)};this.options.saveMissing&&(this.options.saveMissingPlurals&&c?e.forEach((e=>{const n=this.pluralResolver.getSuffixes(e,t);g&&t[`defaultValue${this.options.pluralSeparator}zero`]&&n.indexOf(`${this.options.pluralSeparator}zero`)<0&&n.push(`${this.options.pluralSeparator}zero`),n.forEach((n=>{r([e],o+n,t[`defaultValue${n}`]||m)}))})):r(e,o,m))}d=this.extendTranslation(d,e,t,u,n),a&&d===o&&this.options.appendNamespaceToMissingKey&&(d=`${s}:${o}`),(a||r)&&this.options.parseMissingKeyHandler&&(d=this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey?`${s}:${o}`:o,r?d:void 0))}else{if(!t.returnObjects&&!this.options.returnObjects){this.options.returnedObjectHandler||this.logger.warn("accessing an object - but returnObjects options is not enabled!");const e=this.options.returnedObjectHandler?this.options.returnedObjectHandler(f,d,{...t,ns:a}):`key '${o} (${this.language})' returned an object instead of string.`;return r?(u.res=e,u.usedParams=this.getUsedParamsDetails(t),u):e}if(i){const e=Array.isArray(d),n=e?[]:{},r=e?h:f;for(const e in d)if(Object.prototype.hasOwnProperty.call(d,e)){const o=`${r}${i}${e}`;n[e]=this.translate(o,{...t,joinArrays:!1,ns:a}),n[e]===o&&(n[e]=d[e])}d=n}}return r?(u.res=d,u.usedParams=this.getUsedParamsDetails(t),u):d}extendTranslation(e,t,n,r,i){var o=this;if(this.i18nFormat?.parse)e=this.i18nFormat.parse(e,{...this.options.interpolation.defaultVariables,...n},n.lng||this.language||r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!n.skipInterpolation){n.interpolation&&this.interpolator.init({...n,interpolation:{...this.options.interpolation,...n.interpolation}});const a=IO(e)&&(void 0!==n?.interpolation?.skipOnVariables?n.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables);let s;if(a){const t=e.match(this.interpolator.nestingRegexp);s=t&&t.length}let l=n.replace&&!IO(n.replace)?n.replace:n;if(this.options.interpolation.defaultVariables&&(l={...this.options.interpolation.defaultVariables,...l}),e=this.interpolator.interpolate(e,l,n.lng||this.language||r.usedLng,n),a){const t=e.match(this.interpolator.nestingRegexp);s<(t&&t.length)&&(n.nest=!1)}!n.lng&&r&&r.res&&(n.lng=this.language||r.usedLng),!1!==n.nest&&(e=this.interpolator.nest(e,(function(){for(var e=arguments.length,r=new Array(e),a=0;a<e;a++)r[a]=arguments[a];return i?.[0]!==r[0]||n.context?o.translate(...r,t):(o.logger.warn(`It seems you are nesting recursively key: ${r[0]} in key: ${t[0]}`),null)}),n)),n.interpolation&&this.interpolator.reset()}const a=n.postProcess||this.options.postProcess,s=IO(a)?[a]:a;return null!=e&&s?.length&&!1!==n.applyPostProcessor&&(e=cP.handle(s,e,t,this.options&&this.options.postProcessPassResolved?{i18nResolved:{...r,usedParams:this.getUsedParamsDetails(n)},...n}:n,this)),e}resolve(e){let t,n,r,i,o,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return IO(e)&&(e=[e]),e.forEach((e=>{if(this.isValidLookup(t))return;const s=this.extractFromKey(e,a),l=s.key;n=l;let c=s.namespaces;this.options.fallbackNS&&(c=c.concat(this.options.fallbackNS));const u=void 0!==a.count&&!IO(a.count),d=u&&!a.ordinal&&0===a.count,f=void 0!==a.context&&(IO(a.context)||"number"==typeof a.context)&&""!==a.context,h=a.lngs?a.lngs:this.languageUtils.toResolveHierarchy(a.lng||this.language,a.fallbackLng);c.forEach((e=>{this.isValidLookup(t)||(o=e,uP[`${h[0]}-${e}`]||!this.utils?.hasLoadedNamespace||this.utils?.hasLoadedNamespace(o)||(uP[`${h[0]}-${e}`]=!0,this.logger.warn(`key "${n}" for languages "${h.join(", ")}" won't get resolved as namespace "${o}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")),h.forEach((n=>{if(this.isValidLookup(t))return;i=n;const o=[l];if(this.i18nFormat?.addLookupKeys)this.i18nFormat.addLookupKeys(o,l,n,e,a);else{let e;u&&(e=this.pluralResolver.getSuffix(n,a.count,a));const t=`${this.options.pluralSeparator}zero`,r=`${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;if(u&&(o.push(l+e),a.ordinal&&0===e.indexOf(r)&&o.push(l+e.replace(r,this.options.pluralSeparator)),d&&o.push(l+t)),f){const n=`${l}${this.options.contextSeparator}${a.context}`;o.push(n),u&&(o.push(n+e),a.ordinal&&0===e.indexOf(r)&&o.push(n+e.replace(r,this.options.pluralSeparator)),d&&o.push(n+t))}}let s;for(;s=o.pop();)this.isValidLookup(t)||(r=s,t=this.getResource(n,e,s,a))})))}))})),{res:t,usedKey:n,exactUsedKey:r,usedLng:i,usedNS:o}}isValidLookup(e){return!(void 0===e||!this.options.returnNull&&null===e||!this.options.returnEmptyString&&""===e)}getResource(e,t,n){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return this.i18nFormat?.getResource?this.i18nFormat.getResource(e,t,n,r):this.resourceStore.getResource(e,t,n,r)}getUsedParamsDetails(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};const t=["defaultValue","ordinal","context","replace","lng","lngs","fallbackLng","ns","keySeparator","nsSeparator","returnObjects","returnDetails","joinArrays","postProcess","interpolation"],n=e.replace&&!IO(e.replace);let r=n?e.replace:e;if(n&&void 0!==e.count&&(r.count=e.count),this.options.interpolation.defaultVariables&&(r={...this.options.interpolation.defaultVariables,...r}),!n){r={...r};for(const e of t)delete r[e]}return r}static hasDefaultValue(e){for(const t in e)if(Object.prototype.hasOwnProperty.call(e,t)&&"defaultValue"===t.substring(0,12)&&void 0!==e[t])return!0;return!1}}class fP{constructor(e){this.options=e,this.supportedLngs=this.options.supportedLngs||!1,this.logger=aP.create("languageUtils")}getScriptPartFromCode(e){if(!(e=rP(e))||e.indexOf("-")<0)return null;const t=e.split("-");return 2===t.length?null:(t.pop(),"x"===t[t.length-1].toLowerCase()?null:this.formatLanguageCode(t.join("-")))}getLanguagePartFromCode(e){if(!(e=rP(e))||e.indexOf("-")<0)return e;const t=e.split("-");return this.formatLanguageCode(t[0])}formatLanguageCode(e){if(IO(e)&&e.indexOf("-")>-1){let t;try{t=Intl.getCanonicalLocales(e)[0]}catch(e){}return t&&this.options.lowerCaseLng&&(t=t.toLowerCase()),t||(this.options.lowerCaseLng?e.toLowerCase():e)}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}isSupportedCode(e){return("languageOnly"===this.options.load||this.options.nonExplicitSupportedLngs)&&(e=this.getLanguagePartFromCode(e)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.indexOf(e)>-1}getBestMatchFromCodes(e){if(!e)return null;let t;return e.forEach((e=>{if(t)return;const n=this.formatLanguageCode(e);this.options.supportedLngs&&!this.isSupportedCode(n)||(t=n)})),!t&&this.options.supportedLngs&&e.forEach((e=>{if(t)return;const n=this.getLanguagePartFromCode(e);if(this.isSupportedCode(n))return t=n;t=this.options.supportedLngs.find((e=>e===n?e:e.indexOf("-")<0&&n.indexOf("-")<0?void 0:e.indexOf("-")>0&&n.indexOf("-")<0&&e.substring(0,e.indexOf("-"))===n||0===e.indexOf(n)&&n.length>1?e:void 0))})),t||(t=this.getFallbackCodes(this.options.fallbackLng)[0]),t}getFallbackCodes(e,t){if(!e)return[];if("function"==typeof e&&(e=e(t)),IO(e)&&(e=[e]),Array.isArray(e))return e;if(!t)return e.default||[];let n=e[t];return n||(n=e[this.getScriptPartFromCode(t)]),n||(n=e[this.formatLanguageCode(t)]),n||(n=e[this.getLanguagePartFromCode(t)]),n||(n=e.default),n||[]}toResolveHierarchy(e,t){const n=this.getFallbackCodes(t||this.options.fallbackLng||[],e),r=[],i=e=>{e&&(this.isSupportedCode(e)?r.push(e):this.logger.warn(`rejecting language code not found in supportedLngs: ${e}`))};return IO(e)&&(e.indexOf("-")>-1||e.indexOf("_")>-1)?("languageOnly"!==this.options.load&&i(this.formatLanguageCode(e)),"languageOnly"!==this.options.load&&"currentOnly"!==this.options.load&&i(this.getScriptPartFromCode(e)),"currentOnly"!==this.options.load&&i(this.getLanguagePartFromCode(e))):IO(e)&&i(this.formatLanguageCode(e)),n.forEach((e=>{r.indexOf(e)<0&&i(this.formatLanguageCode(e))})),r}}const hP={zero:0,one:1,two:2,few:3,many:4,other:5},pP={select:e=>1===e?"one":"other",resolvedOptions:()=>({pluralCategories:["one","other"]})};class gP{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.languageUtils=e,this.options=t,this.logger=aP.create("pluralResolver"),this.pluralRulesCache={}}addRule(e,t){this.rules[e]=t}clearCache(){this.pluralRulesCache={}}getRule(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const n=rP("dev"===e?"en":e),r=t.ordinal?"ordinal":"cardinal",i=JSON.stringify({cleanedCode:n,type:r});if(i in this.pluralRulesCache)return this.pluralRulesCache[i];let o;try{o=new Intl.PluralRules(n,{type:r})}catch(n){if(!Intl)return this.logger.error("No Intl support, please use an Intl polyfill!"),pP;if(!e.match(/-|_/))return pP;const r=this.languageUtils.getLanguagePartFromCode(e);o=this.getRule(r,t)}return this.pluralRulesCache[i]=o,o}needsPlural(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=this.getRule(e,t);return n||(n=this.getRule("dev",t)),n?.resolvedOptions().pluralCategories.length>1}getPluralFormsOfKey(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.getSuffixes(e,n).map((e=>`${t}${e}`))}getSuffixes(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=this.getRule(e,t);return n||(n=this.getRule("dev",t)),n?n.resolvedOptions().pluralCategories.sort(((e,t)=>hP[e]-hP[t])).map((e=>`${this.options.prepend}${t.ordinal?`ordinal${this.options.prepend}`:""}${e}`)):[]}getSuffix(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const r=this.getRule(e,n);return r?`${this.options.prepend}${n.ordinal?`ordinal${this.options.prepend}`:""}${r.select(t)}`:(this.logger.warn(`no plural rule found for: ${e}`),this.getSuffix("dev",t,n))}}const mP=function(e,t,n){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:".",i=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],o=((e,t,n)=>{const r=ZO(e,n);return void 0!==r?r:ZO(t,n)})(e,t,n);return!o&&i&&IO(n)&&(o=nP(e,n,r),void 0===o&&(o=nP(t,n,r))),o},vP=e=>e.replace(/\$/g,"$$$$");class bP{constructor(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.logger=aP.create("interpolator"),this.options=e,this.format=e?.interpolation?.format||(e=>e),this.init(e)}init(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e.interpolation||(e.interpolation={escapeValue:!0});const{escape:t,escapeValue:n,useRawValueToEscape:r,prefix:i,prefixEscaped:o,suffix:a,suffixEscaped:s,formatSeparator:l,unescapeSuffix:c,unescapePrefix:u,nestingPrefix:d,nestingPrefixEscaped:f,nestingSuffix:h,nestingSuffixEscaped:p,nestingOptionsSeparator:g,maxReplaces:m,alwaysFormat:v}=e.interpolation;this.escape=void 0!==t?t:JO,this.escapeValue=void 0===n||n,this.useRawValueToEscape=void 0!==r&&r,this.prefix=i?KO(i):o||"{{",this.suffix=a?KO(a):s||"}}",this.formatSeparator=l||",",this.unescapePrefix=c?"":u||"-",this.unescapeSuffix=this.unescapePrefix?"":c||"",this.nestingPrefix=d?KO(d):f||KO("$t("),this.nestingSuffix=h?KO(h):p||KO(")"),this.nestingOptionsSeparator=g||",",this.maxReplaces=m||1e3,this.alwaysFormat=void 0!==v&&v,this.resetRegExp()}reset(){this.options&&this.init(this.options)}resetRegExp(){const e=(e,t)=>e?.source===t?(e.lastIndex=0,e):new RegExp(t,"g");this.regexp=e(this.regexp,`${this.prefix}(.+?)${this.suffix}`),this.regexpUnescape=e(this.regexpUnescape,`${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`),this.nestingRegexp=e(this.nestingRegexp,`${this.nestingPrefix}(.+?)${this.nestingSuffix}`)}interpolate(e,t,n,r){let i,o,a;const s=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},l=e=>{if(e.indexOf(this.formatSeparator)<0){const i=mP(t,s,e,this.options.keySeparator,this.options.ignoreJSONStructure);return this.alwaysFormat?this.format(i,void 0,n,{...r,...t,interpolationkey:e}):i}const i=e.split(this.formatSeparator),o=i.shift().trim(),a=i.join(this.formatSeparator).trim();return this.format(mP(t,s,o,this.options.keySeparator,this.options.ignoreJSONStructure),a,n,{...r,...t,interpolationkey:o})};this.resetRegExp();const c=r?.missingInterpolationHandler||this.options.missingInterpolationHandler,u=void 0!==r?.interpolation?.skipOnVariables?r.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:e=>vP(e)},{regex:this.regexp,safeValue:e=>this.escapeValue?vP(this.escape(e)):vP(e)}].forEach((t=>{for(a=0;i=t.regex.exec(e);){const n=i[1].trim();if(o=l(n),void 0===o)if("function"==typeof c){const t=c(e,i,r);o=IO(t)?t:""}else if(r&&Object.prototype.hasOwnProperty.call(r,n))o="";else{if(u){o=i[0];continue}this.logger.warn(`missed to pass in variable ${n} for interpolating ${e}`),o=""}else IO(o)||this.useRawValueToEscape||(o=HO(o));const s=t.safeValue(o);if(e=e.replace(i[0],s),u?(t.regex.lastIndex+=o.length,t.regex.lastIndex-=i[0].length):t.regex.lastIndex=0,a++,a>=this.maxReplaces)break}})),e}nest(e,t){let n,r,i,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};const a=(e,t)=>{const n=this.nestingOptionsSeparator;if(e.indexOf(n)<0)return e;const r=e.split(new RegExp(`${n}[ ]*{`));let o=`{${r[1]}`;e=r[0],o=this.interpolate(o,i);const a=o.match(/'/g),s=o.match(/"/g);((a?.length??0)%2==0&&!s||s.length%2!=0)&&(o=o.replace(/'/g,'"'));try{i=JSON.parse(o),t&&(i={...t,...i})}catch(t){return this.logger.warn(`failed parsing options string in nesting for key ${e}`,t),`${e}${n}${o}`}return i.defaultValue&&i.defaultValue.indexOf(this.prefix)>-1&&delete i.defaultValue,e};for(;n=this.nestingRegexp.exec(e);){let s=[];i={...o},i=i.replace&&!IO(i.replace)?i.replace:i,i.applyPostProcessor=!1,delete i.defaultValue;let l=!1;if(-1!==n[0].indexOf(this.formatSeparator)&&!/{.*}/.test(n[1])){const e=n[1].split(this.formatSeparator).map((e=>e.trim()));n[1]=e.shift(),s=e,l=!0}if(r=t(a.call(this,n[1].trim(),i),i),r&&n[0]===e&&!IO(r))return r;IO(r)||(r=HO(r)),r||(this.logger.warn(`missed to resolve ${n[1]} for nesting ${e}`),r=""),l&&(r=s.reduce(((e,t)=>this.format(e,t,o.lng,{...o,interpolationkey:n[1].trim()})),r.trim())),e=e.replace(n[0],r),this.regexp.lastIndex=0}return e}}const yP=e=>{const t={};return(n,r,i)=>{let o=i;i&&i.interpolationkey&&i.formatParams&&i.formatParams[i.interpolationkey]&&i[i.interpolationkey]&&(o={...o,[i.interpolationkey]:void 0});const a=r+JSON.stringify(o);let s=t[a];return s||(s=e(rP(r),i),t[a]=s),s(n)}};class _P{constructor(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.logger=aP.create("formatter"),this.options=e,this.formats={number:yP(((e,t)=>{const n=new Intl.NumberFormat(e,{...t});return e=>n.format(e)})),currency:yP(((e,t)=>{const n=new Intl.NumberFormat(e,{...t,style:"currency"});return e=>n.format(e)})),datetime:yP(((e,t)=>{const n=new Intl.DateTimeFormat(e,{...t});return e=>n.format(e)})),relativetime:yP(((e,t)=>{const n=new Intl.RelativeTimeFormat(e,{...t});return e=>n.format(e,t.range||"day")})),list:yP(((e,t)=>{const n=new Intl.ListFormat(e,{...t});return e=>n.format(e)}))},this.init(e)}init(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{interpolation:{}};this.formatSeparator=t.interpolation.formatSeparator||","}add(e,t){this.formats[e.toLowerCase().trim()]=t}addCached(e,t){this.formats[e.toLowerCase().trim()]=yP(t)}format(e,t,n){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};const i=t.split(this.formatSeparator);if(i.length>1&&i[0].indexOf("(")>1&&i[0].indexOf(")")<0&&i.find((e=>e.indexOf(")")>-1))){const e=i.findIndex((e=>e.indexOf(")")>-1));i[0]=[i[0],...i.splice(1,e)].join(this.formatSeparator)}const o=i.reduce(((e,t)=>{const{formatName:i,formatOptions:o}=(e=>{let t=e.toLowerCase().trim();const n={};if(e.indexOf("(")>-1){const r=e.split("(");t=r[0].toLowerCase().trim();const i=r[1].substring(0,r[1].length-1);"currency"===t&&i.indexOf(":")<0?n.currency||(n.currency=i.trim()):"relativetime"===t&&i.indexOf(":")<0?n.range||(n.range=i.trim()):i.split(";").forEach((e=>{if(e){const[t,...r]=e.split(":"),i=r.join(":").trim().replace(/^'+|'+$/g,""),o=t.trim();n[o]||(n[o]=i),"false"===i&&(n[o]=!1),"true"===i&&(n[o]=!0),isNaN(i)||(n[o]=parseInt(i,10))}}))}return{formatName:t,formatOptions:n}})(t);if(this.formats[i]){let t=e;try{const a=r?.formatParams?.[r.interpolationkey]||{},s=a.locale||a.lng||r.locale||r.lng||n;t=this.formats[i](e,s,{...o,...r,...a})}catch(e){this.logger.warn(e)}return t}return this.logger.warn(`there was no format function for ${i}`),e}),e);return o}}class wP extends sP{constructor(e,t,n){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};super(),this.backend=e,this.store=t,this.services=n,this.languageUtils=n.languageUtils,this.options=r,this.logger=aP.create("backendConnector"),this.waitingReads=[],this.maxParallelReads=r.maxParallelReads||10,this.readingCalls=0,this.maxRetries=r.maxRetries>=0?r.maxRetries:5,this.retryTimeout=r.retryTimeout>=1?r.retryTimeout:350,this.state={},this.queue=[],this.backend?.init?.(n,r.backend,r)}queueLoad(e,t,n,r){const i={},o={},a={},s={};return e.forEach((e=>{let r=!0;t.forEach((t=>{const a=`${e}|${t}`;!n.reload&&this.store.hasResourceBundle(e,t)?this.state[a]=2:this.state[a]<0||(1===this.state[a]?void 0===o[a]&&(o[a]=!0):(this.state[a]=1,r=!1,void 0===o[a]&&(o[a]=!0),void 0===i[a]&&(i[a]=!0),void 0===s[t]&&(s[t]=!0)))})),r||(a[e]=!0)})),(Object.keys(i).length||Object.keys(o).length)&&this.queue.push({pending:o,pendingCount:Object.keys(o).length,loaded:{},errors:[],callback:r}),{toLoad:Object.keys(i),pending:Object.keys(o),toLoadLanguages:Object.keys(a),toLoadNamespaces:Object.keys(s)}}loaded(e,t,n){const r=e.split("|"),i=r[0],o=r[1];t&&this.emit("failedLoading",i,o,t),!t&&n&&this.store.addResourceBundle(i,o,n,void 0,void 0,{skipCopy:!0}),this.state[e]=t?-1:2,t&&n&&(this.state[e]=0);const a={};this.queue.forEach((n=>{((e,t,n,r)=>{const{obj:i,k:o}=YO(e,t,Object);i[o]=i[o]||[],i[o].push(n)})(n.loaded,[i],o),((e,t)=>{void 0!==e.pending[t]&&(delete e.pending[t],e.pendingCount--)})(n,e),t&&n.errors.push(t),0!==n.pendingCount||n.done||(Object.keys(n.loaded).forEach((e=>{a[e]||(a[e]={});const t=n.loaded[e];t.length&&t.forEach((t=>{void 0===a[e][t]&&(a[e][t]=!0)}))})),n.done=!0,n.errors.length?n.callback(n.errors):n.callback())})),this.emit("loaded",a),this.queue=this.queue.filter((e=>!e.done))}read(e,t,n){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:this.retryTimeout,o=arguments.length>5?arguments[5]:void 0;if(!e.length)return o(null,{});if(this.readingCalls>=this.maxParallelReads)return void this.waitingReads.push({lng:e,ns:t,fcName:n,tried:r,wait:i,callback:o});this.readingCalls++;const a=(a,s)=>{if(this.readingCalls--,this.waitingReads.length>0){const e=this.waitingReads.shift();this.read(e.lng,e.ns,e.fcName,e.tried,e.wait,e.callback)}a&&s&&r<this.maxRetries?setTimeout((()=>{this.read.call(this,e,t,n,r+1,2*i,o)}),i):o(a,s)},s=this.backend[n].bind(this.backend);if(2!==s.length)return s(e,t,a);try{const n=s(e,t);n&&"function"==typeof n.then?n.then((e=>a(null,e))).catch(a):a(null,n)}catch(e){a(e)}}prepareLoading(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3?arguments[3]:void 0;if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),r&&r();IO(e)&&(e=this.languageUtils.toResolveHierarchy(e)),IO(t)&&(t=[t]);const i=this.queueLoad(e,t,n,r);if(!i.toLoad.length)return i.pending.length||r(),null;i.toLoad.forEach((e=>{this.loadOne(e)}))}load(e,t,n){this.prepareLoading(e,t,{},n)}reload(e,t,n){this.prepareLoading(e,t,{reload:!0},n)}loadOne(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";const n=e.split("|"),r=n[0],i=n[1];this.read(r,i,"read",void 0,void 0,((n,o)=>{n&&this.logger.warn(`${t}loading namespace ${i} for language ${r} failed`,n),!n&&o&&this.logger.log(`${t}loaded namespace ${i} for language ${r}`,o),this.loaded(e,n,o)}))}saveMissing(e,t,n,r,i){let o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},a=arguments.length>6&&void 0!==arguments[6]?arguments[6]:()=>{};if(!this.services?.utils?.hasLoadedNamespace||this.services?.utils?.hasLoadedNamespace(t)){if(null!=n&&""!==n){if(this.backend?.create){const s={...o,isUpdate:i},l=this.backend.create.bind(this.backend);if(l.length<6)try{let i;i=5===l.length?l(e,t,n,r,s):l(e,t,n,r),i&&"function"==typeof i.then?i.then((e=>a(null,e))).catch(a):a(null,i)}catch(e){a(e)}else l(e,t,n,r,a,s)}e&&e[0]&&this.store.addResource(e[0],t,n,r)}}else this.logger.warn(`did not save key "${n}" as the namespace "${t}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")}}const xP=()=>({debug:!1,initAsync:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:"all",preload:!1,simplifyPluralSuffix:!0,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!1,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:e=>{let t={};if("object"==typeof e[1]&&(t=e[1]),IO(e[1])&&(t.defaultValue=e[1]),IO(e[2])&&(t.tDescription=e[2]),"object"==typeof e[2]||"object"==typeof e[3]){const n=e[3]||e[2];Object.keys(n).forEach((e=>{t[e]=n[e]}))}return t},interpolation:{escapeValue:!0,format:e=>e,prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",nestingOptionsSeparator:",",maxReplaces:1e3,skipOnVariables:!0}}),kP=e=>(IO(e.ns)&&(e.ns=[e.ns]),IO(e.fallbackLng)&&(e.fallbackLng=[e.fallbackLng]),IO(e.fallbackNS)&&(e.fallbackNS=[e.fallbackNS]),e.supportedLngs?.indexOf?.("cimode")<0&&(e.supportedLngs=e.supportedLngs.concat(["cimode"])),"boolean"==typeof e.initImmediate&&(e.initAsync=e.initImmediate),e),CP=()=>{};class SP extends sP{constructor(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;var n;if(super(),this.options=kP(e),this.services={},this.logger=aP,this.modules={external:[]},n=this,Object.getOwnPropertyNames(Object.getPrototypeOf(n)).forEach((e=>{"function"==typeof n[e]&&(n[e]=n[e].bind(n))})),t&&!this.isInitialized&&!e.isClone){if(!this.options.initAsync)return this.init(e,t),this;setTimeout((()=>{this.init(e,t)}),0)}}init(){var e=this;let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1?arguments[1]:void 0;this.isInitializing=!0,"function"==typeof t&&(n=t,t={}),!t.defaultNS&&!1!==t.defaultNS&&t.ns&&(IO(t.ns)?t.defaultNS=t.ns:t.ns.indexOf("translation")<0&&(t.defaultNS=t.ns[0]));const r=xP();this.options={...r,...this.options,...kP(t)},this.options.interpolation={...r.interpolation,...this.options.interpolation},void 0!==t.keySeparator&&(this.options.userDefinedKeySeparator=t.keySeparator),void 0!==t.nsSeparator&&(this.options.userDefinedNsSeparator=t.nsSeparator);const i=e=>e?"function"==typeof e?new e:e:null;if(!this.options.isClone){let t;this.modules.logger?aP.init(i(this.modules.logger),this.options):aP.init(null,this.options),t=this.modules.formatter?this.modules.formatter:_P;const n=new fP(this.options);this.store=new lP(this.options.resources,this.options);const o=this.services;o.logger=aP,o.resourceStore=this.store,o.languageUtils=n,o.pluralResolver=new gP(n,{prepend:this.options.pluralSeparator,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),!t||this.options.interpolation.format&&this.options.interpolation.format!==r.interpolation.format||(o.formatter=i(t),o.formatter.init(o,this.options),this.options.interpolation.format=o.formatter.format.bind(o.formatter)),o.interpolator=new bP(this.options),o.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},o.backendConnector=new wP(i(this.modules.backend),o.resourceStore,o,this.options),o.backendConnector.on("*",(function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];e.emit(t,...r)})),this.modules.languageDetector&&(o.languageDetector=i(this.modules.languageDetector),o.languageDetector.init&&o.languageDetector.init(o,this.options.detection,this.options)),this.modules.i18nFormat&&(o.i18nFormat=i(this.modules.i18nFormat),o.i18nFormat.init&&o.i18nFormat.init(this)),this.translator=new dP(this.services,this.options),this.translator.on("*",(function(t){for(var n=arguments.length,r=new Array(n>1?n-1:0),i=1;i<n;i++)r[i-1]=arguments[i];e.emit(t,...r)})),this.modules.external.forEach((e=>{e.init&&e.init(this)}))}if(this.format=this.options.interpolation.format,n||(n=CP),this.options.fallbackLng&&!this.services.languageDetector&&!this.options.lng){const e=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);e.length>0&&"dev"!==e[0]&&(this.options.lng=e[0])}this.services.languageDetector||this.options.lng||this.logger.warn("init: no languageDetector is used and no lng is defined"),["getResource","hasResourceBundle","getResourceBundle","getDataByLanguage"].forEach((t=>{this[t]=function(){return e.store[t](...arguments)}})),["addResource","addResources","addResourceBundle","removeResourceBundle"].forEach((t=>{this[t]=function(){return e.store[t](...arguments),e}}));const o=UO(),a=()=>{const e=(e,t)=>{this.isInitializing=!1,this.isInitialized&&!this.initializedStoreOnce&&this.logger.warn("init: i18next is already initialized. You should call init just once!"),this.isInitialized=!0,this.options.isClone||this.logger.log("initialized",this.options),this.emit("initialized",this.options),o.resolve(t),n(e,t)};if(this.languages&&!this.isInitialized)return e(null,this.t.bind(this));this.changeLanguage(this.options.lng,e)};return this.options.resources||!this.options.initAsync?a():setTimeout(a,0),o}loadResources(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:CP;const n=IO(e)?e:this.language;if("function"==typeof e&&(t=e),!this.options.resources||this.options.partialBundledLanguages){if("cimode"===n?.toLowerCase()&&(!this.options.preload||0===this.options.preload.length))return t();const e=[],r=t=>{t&&"cimode"!==t&&this.services.languageUtils.toResolveHierarchy(t).forEach((t=>{"cimode"!==t&&e.indexOf(t)<0&&e.push(t)}))};n?r(n):this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach((e=>r(e))),this.options.preload?.forEach?.((e=>r(e))),this.services.backendConnector.load(e,this.options.ns,(e=>{e||this.resolvedLanguage||!this.language||this.setResolvedLanguage(this.language),t(e)}))}else t(null)}reloadResources(e,t,n){const r=UO();return"function"==typeof e&&(n=e,e=void 0),"function"==typeof t&&(n=t,t=void 0),e||(e=this.languages),t||(t=this.options.ns),n||(n=CP),this.services.backendConnector.reload(e,t,(e=>{r.resolve(),n(e)})),r}use(e){if(!e)throw new Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");if(!e.type)throw new Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");return"backend"===e.type&&(this.modules.backend=e),("logger"===e.type||e.log&&e.warn&&e.error)&&(this.modules.logger=e),"languageDetector"===e.type&&(this.modules.languageDetector=e),"i18nFormat"===e.type&&(this.modules.i18nFormat=e),"postProcessor"===e.type&&cP.addPostProcessor(e),"formatter"===e.type&&(this.modules.formatter=e),"3rdParty"===e.type&&this.modules.external.push(e),this}setResolvedLanguage(e){if(e&&this.languages&&!(["cimode","dev"].indexOf(e)>-1))for(let e=0;e<this.languages.length;e++){const t=this.languages[e];if(!(["cimode","dev"].indexOf(t)>-1)&&this.store.hasLanguageSomeTranslations(t)){this.resolvedLanguage=t;break}}}changeLanguage(e,t){var n=this;this.isLanguageChangingTo=e;const r=UO();this.emit("languageChanging",e);const i=e=>{this.language=e,this.languages=this.services.languageUtils.toResolveHierarchy(e),this.resolvedLanguage=void 0,this.setResolvedLanguage(e)},o=(e,o)=>{o?(i(o),this.translator.changeLanguage(o),this.isLanguageChangingTo=void 0,this.emit("languageChanged",o),this.logger.log("languageChanged",o)):this.isLanguageChangingTo=void 0,r.resolve((function(){return n.t(...arguments)})),t&&t(e,(function(){return n.t(...arguments)}))},a=t=>{e||t||!this.services.languageDetector||(t=[]);const n=IO(t)?t:this.services.languageUtils.getBestMatchFromCodes(t);n&&(this.language||i(n),this.translator.language||this.translator.changeLanguage(n),this.services.languageDetector?.cacheUserLanguage?.(n)),this.loadResources(n,(e=>{o(e,n)}))};return e||!this.services.languageDetector||this.services.languageDetector.async?!e&&this.services.languageDetector&&this.services.languageDetector.async?0===this.services.languageDetector.detect.length?this.services.languageDetector.detect().then(a):this.services.languageDetector.detect(a):a(e):a(this.services.languageDetector.detect()),r}getFixedT(e,t,n){var r=this;const i=function(e,t){let o;if("object"!=typeof t){for(var a=arguments.length,s=new Array(a>2?a-2:0),l=2;l<a;l++)s[l-2]=arguments[l];o=r.options.overloadTranslationOptionHandler([e,t].concat(s))}else o={...t};o.lng=o.lng||i.lng,o.lngs=o.lngs||i.lngs,o.ns=o.ns||i.ns,""!==o.keyPrefix&&(o.keyPrefix=o.keyPrefix||n||i.keyPrefix);const c=r.options.keySeparator||".";let u;return u=o.keyPrefix&&Array.isArray(e)?e.map((e=>`${o.keyPrefix}${c}${e}`)):o.keyPrefix?`${o.keyPrefix}${c}${e}`:e,r.t(u,o)};return IO(e)?i.lng=e:i.lngs=e,i.ns=t,i.keyPrefix=n,i}t(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.translator?.translate(...t)}exists(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return this.translator?.exists(...t)}setDefaultNamespace(e){this.options.defaultNS=e}hasLoadedNamespace(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.isInitialized)return this.logger.warn("hasLoadedNamespace: i18next was not initialized",this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty",this.languages),!1;const n=t.lng||this.resolvedLanguage||this.languages[0],r=!!this.options&&this.options.fallbackLng,i=this.languages[this.languages.length-1];if("cimode"===n.toLowerCase())return!0;const o=(e,t)=>{const n=this.services.backendConnector.state[`${e}|${t}`];return-1===n||0===n||2===n};if(t.precheck){const e=t.precheck(this,o);if(void 0!==e)return e}return!(!this.hasResourceBundle(n,e)&&this.services.backendConnector.backend&&(!this.options.resources||this.options.partialBundledLanguages)&&(!o(n,e)||r&&!o(i,e)))}loadNamespaces(e,t){const n=UO();return this.options.ns?(IO(e)&&(e=[e]),e.forEach((e=>{this.options.ns.indexOf(e)<0&&this.options.ns.push(e)})),this.loadResources((e=>{n.resolve(),t&&t(e)})),n):(t&&t(),Promise.resolve())}loadLanguages(e,t){const n=UO();IO(e)&&(e=[e]);const r=this.options.preload||[],i=e.filter((e=>r.indexOf(e)<0&&this.services.languageUtils.isSupportedCode(e)));return i.length?(this.options.preload=r.concat(i),this.loadResources((e=>{n.resolve(),t&&t(e)})),n):(t&&t(),Promise.resolve())}dir(e){if(e||(e=this.resolvedLanguage||(this.languages?.length>0?this.languages[0]:this.language)),!e)return"rtl";const t=this.services?.languageUtils||new fP(xP());return["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ug","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam","ckb"].indexOf(t.getLanguagePartFromCode(e))>-1||e.toLowerCase().indexOf("-arab")>1?"rtl":"ltr"}static createInstance(){return new SP(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},arguments.length>1?arguments[1]:void 0)}cloneInstance(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:CP;const n=e.forkResourceStore;n&&delete e.forkResourceStore;const r={...this.options,...e,isClone:!0},i=new SP(r);return void 0===e.debug&&void 0===e.prefix||(i.logger=i.logger.clone(e)),["store","services","language"].forEach((e=>{i[e]=this[e]})),i.services={...this.services},i.services.utils={hasLoadedNamespace:i.hasLoadedNamespace.bind(i)},n&&(i.store=new lP(this.store.data,r),i.services.resourceStore=i.store),i.translator=new dP(i.services,r),i.translator.on("*",(function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];i.emit(e,...n)})),i.init(r,t),i.translator.options=r,i.translator.backendConnector.services.utils={hasLoadedNamespace:i.hasLoadedNamespace.bind(i)},i}toJSON(){return{options:this.options,store:this.store,language:this.language,languages:this.languages,resolvedLanguage:this.resolvedLanguage}}}const MP=SP.createInstance();MP.createInstance=SP.createInstance,MP.createInstance,MP.dir,MP.init,MP.loadResources,MP.reloadResources,MP.use,MP.changeLanguage,MP.getFixedT,MP.t,MP.exists,MP.setDefaultNamespace,MP.hasLoadedNamespace,MP.loadNamespaces,MP.loadLanguages;const TP={en:{short:"Eng",full:"English",iso:"en-US"},ru:{short:"Ру",full:"Русский",iso:"ru-RU"},pl:{short:"Pl",full:"Polski",iso:"pl-PL"},es:{short:"Es",full:"Español",iso:"es-ES"},pt:{short:"Pt",full:"Português",iso:"pt-PT"},de:{short:"De",full:"Deutsch",iso:"de-DE"},am:{short:"Am",full:"Հայերեն",iso:"hy-AM"},az:{short:"Az",full:"Azərbaycan",iso:"az-AZ"},fr:{short:"Fr",full:"Français",iso:"fr-FR"},it:{short:"It",full:"Italiano",iso:"it-IT"},ja:{short:"Ja",full:"日本語",iso:"ja-JP"},he:{short:"He",full:"עברית",iso:"he-IL"},ka:{short:"Ka",full:"ქართული",iso:"ka-GE"},kr:{short:"Kr",full:"한국어",iso:"kr-KR"},nl:{short:"Nl",full:"Nederlands",iso:"nl-NL"},sv:{short:"Sv",full:"Svenska",iso:"sv-SE"},tr:{short:"Tr",full:"Türkçe",iso:"tr-TR"},zh:{short:"Zh",full:"中文",iso:"zh-CN"}},{reportLanguage:AP}=zO()??{},NP=oO("");uO((()=>{const e=NP.value;return TP[e].iso})),uO((()=>["ar","he","fa"].includes(NP.value))),MP.use({type:"backend",read:async(e,t,n)=>{try{n(null,(await a(79)(`./${e}.json`))[t]||null)}catch(e){n(e,null)}}}).init({lng:NP.value,fallbackLng:"en",ns:["empty","execution","filters","search","severity","sort-by","sort-by.directions","sort-by.values","statuses","tabs","testSummary","ui","welcome","controls","errors","nav"],interpolation:{escapeValue:!1}});const OP=e=>({t:uO((()=>(t,n)=>MP.t(t,{ns:e,...n}))).value,currentLocale:NP.value}),PP=async e=>{await MP.changeLanguage(e),localStorage.setItem("currentLocale",e),NP.value=e},LP=()=>{const{t:e}=OP("errors");return LO("div",{className:"rHchoJLy",children:e("missedAttachment")})},EP=({attachment:e})=>{const[t,n]=ce(!0);return ue((()=>{if(e?.img){const t=new Image;t.onload=()=>n(!0),t.onerror=()=>n(!1),t.src=e.img}}),[e?.img]),LO("div",e?.img&&t?{className:"Z6GDZ107",children:e?.img&&LO("img",{src:e.img,alt:e.originalFileName})}:{className:"SEnVh3g6",children:LO(LP,{})})},FP=async({id:e,ext:t,contentType:n})=>(async(e,t)=>{const n=await FO(e,t);return globalThis.fetch(n)})(`data/attachments/${e||"-"}${t||""}?attachment`,n),jP=async(e,t,n)=>{const r=await FP({id:e,ext:t,contentType:n});return await r.blob()},zP=async(e,t,n)=>{if(!e&&!t)return;const r=`${e}${t}`,i=await jP(e,t,n),o=URL.createObjectURL(i),a=document.createElement("a");a.href=o,a.download=r,a.click(),URL.revokeObjectURL(o)},$P=e=>{switch(e){case"image/bmp":case"image/gif":case"image/tiff":case"image/jpeg":case"image/jpg":case"image/png":case"image/*":return{type:"image",icon:"file"};case"text/xml":case"application/xml":case"application/json":case"text/json":case"text/yaml":case"application/yaml":case"application/x-yaml":case"text/x-yaml":case"text/css":return{type:"code",icon:"file"};case"text/plain":case"text/*":return{type:"text",icon:"txt"};case"text/html":return{type:"html",icon:"file"};case"text/csv":return{type:"table",icon:"csv"};case"text/tab-separated-values":return{type:"table",icon:"table"};case"image/svg+xml":return{type:"svg",icon:"file"};case"video/mp4":case"video/ogg":case"video/webm":return{type:"video",icon:"file"};case"text/uri-list":return{type:"uri",icon:"list"};case"application/x-tar":case"application/x-gtar":case"application/x-bzip2":case"application/gzip":case"application/zip":return{type:"archive",icon:"file"};default:return{type:null,icon:"file"}}},BP={image:EP,svg:EP,json:EO,code:EO,uri:EO,css:EO,table:EO,html:EO,text:EO,video:({attachment:e})=>e?LO("video",{controls:!0,loop:!0,muted:!0,children:LO("source",{src:e?.src,type:e?.contentType})}):LO(Yn,{})},RP={html:({attachment:e})=>LO("div",{className:"vDBalBeq",dangerouslySetInnerHTML:{__html:e?.text}})},DP=({item:e,previewable:t})=>{const{link:{contentType:n,id:r,ext:i}}=e,[o,a]=ce(null),[s,l]=ce(!1),c=$P(n),u=BP[c.type],d=RP[c.type];return ue((()=>{(async()=>{const e=await(async(e,t,n)=>{if(!e&&!t)return;const r=await FP({id:e,ext:t,contentType:n});switch($P(n).type){case"svg":case"image":{const t=await r.blob();return{img:URL.createObjectURL(t),id:e}}case"uri":case"code":case"html":case"table":case"text":return{text:await r.text()};case"video":{const t=await r.blob();return{src:URL.createObjectURL(t),id:e,contentType:n}}default:return}})(r,i,n);l(!0),a(e)})()}),[n,r,i]),s?d&&t&&UP.value.preview?LO(d,{attachment:o,item:e}):u?LO(u,{attachment:o,item:e}):LO(LP,{}):LO("div",{className:"TJQH8dah",children:LO(Yn,{})})},IP=oO(!1),UP=oO({data:null,preview:!1,component:null}),HP=({data:e,component:t,preview:n})=>{UP.value={data:e,component:t,preview:n},IP.value=!0},qP=()=>{IP.value=!1},VP=({item:e,children:t})=>LO("div",{className:"GLs1WXMz "+(UP.value.data?.link?.id===e.link?.id?"NiSx0lA3":""),onClick:()=>{var t;HP({data:t=e,component:LO(DP,{item:t},t.link?.id)})},children:t}),WP=({attachments:e=[]})=>LO("div",{className:"Klkf7XB0",children:e.filter((({link:{contentType:e}})=>{const t=$P(e).type;return!["archive",null].includes(t)})).map(((e,t)=>LO(VP,{item:e,children:LO(DP,{item:e})},t)))});var YP=({testResult:e})=>{const{link:t}=UP.value.data||{},n=t?.name?`${t?.name}`:`${t?.id}${t?.ext}`;ue((()=>(wO().highlightAll(),IP.value?document.body.style.overflow="hidden":document.body.style.overflow="",()=>{document.body.style.overflow=""})),[]);const r=t?.contentType?.startsWith("image"),i="text/html"===t?.contentType;return IP.value?LO("div",{className:"bCsvCGcv",onClick:qP,children:LO("div",{className:"Mws6akQI",onClick:e=>e.stopPropagation(),children:[LO("div",{className:"B2HE5riJ",children:[LO("div",{className:"vt3tJSMb",children:[LO(Xn,{size:"s",children:n}),LO("div",{className:"PNTabbbi",children:[r&&LO(Jn,{style:"outline",onClick:async()=>{const{id:e,ext:n,contentType:r}=t||{};await(async(e,t,n)=>{if(!e&&!t)return;const r=await jP(e,t,n),i=URL.createObjectURL(r);globalThis.open(i,"_blank")})(e,n,r)},icon:Vn.lineGeneralLinkExternal,text:"Open in new tab"}),i&&LO(fi,{tooltipText:"Preview attachment",children:LO(er,{style:"outline",size:"m",iconSize:"s",icon:UP.value.preview?Vn.viewOff:Vn.view,onClick:()=>{UP.value={...UP.value,preview:!UP.value.preview}}})}),LO(fi,{tooltipText:"Download attachment",children:LO(er,{style:"outline",size:"m",iconSize:"s",icon:Vn.lineGeneralDownloadCloud,onClick:e=>(async e=>{e.stopPropagation();const{id:n,ext:r,contentType:i}=t||{};n&&r&&i&&await zP(n,r,i)})(e)})}),LO(er,{iconSize:"m",style:"ghost",onClick:qP,icon:Vn.lineGeneralXClose})]})]}),LO("div",{className:"PeTgBB_j",children:LO("div",{className:"zjOzUXJR",children:UP.value?.component},UP.value?.data?.link?.id)})]}),LO(WP,{attachments:e.attachments})]})}):null};function GP(e){var t,n,r="";if("string"==typeof e||"number"==typeof e)r+=e;else if("object"==typeof e)if(Array.isArray(e)){var i=e.length;for(t=0;t<i;t++)e[t]&&(n=GP(e[t]))&&(r&&(r+=" "),r+=n)}else for(n in e)e[n]&&(r&&(r+=" "),r+=n);return r}function ZP(){for(var e,t,n=0,r="",i=arguments.length;n<i;n++)(e=arguments[n])&&(t=GP(e))&&(r&&(r+=" "),r+=t);return r}var XP=ZP;const KP=Object.entries(TP).map((([e,{full:t}])=>({key:e,value:t}))),QP=()=>{const e=NP.value;return LO(bi,{size:"s",menuTrigger:({onClick:t})=>LO(Jn,{style:"raised",className:"llvyxAoW",size:"s",text:TP[e||"en"].short,onClick:t}),children:LO(bi.Section,{children:KP.map((({key:t,value:n})=>LO(bi.ItemWithCheckmark,{onClick:()=>{PP(t)},isChecked:e===t,children:n},t)))})})},JP=()=>{const e=globalThis.location.hash.slice(1),[t,...n]=e.split("/");return{tabName:t,params:{id:n[0]||null,testResultId:n[1]||null}}},eL=oO(JP()),tL=()=>{const e=JP();e.tabName===eL.value.tabName&&e.params.id===eL.value.params.id&&e.params.testResultId===eL.value.params.testResultId||(eL.value=e)},nL=uO((()=>eL.value.tabName)),rL=e=>{globalThis.location.hash=e};var iL="EeevEqCT",oL="w4EeDOWE",aL="boBBDQTD",sL="gZQ8bgST";const lL=[{tabName:"overview",title:"Overview",icon:"lineGeneralHomeLine",active:!1},{tabName:"behaviors",title:"Behaviors",icon:"lineFilesClipboardCheck",active:!1},{tabName:"categories",title:"Categories",icon:"lineFilesFile2",active:!1},{tabName:"graphs",title:"Graphs",icon:"lineChartsBarChartSquare",active:!1},{tabName:"packages",title:"Packages",icon:"lineDevDataflow3",active:!1},{tabName:"suites",title:"Suites",icon:"lineFilesFolder",active:!1},{tabName:"timeline",title:"Timeline",icon:"lineTimeClockStopwatch",active:!1}];var cL=()=>{const{t:e}=OP("controls"),{t:t}=OP("nav"),[n,r]=ce("true"===localStorage.getItem("sidebarCollapsed"));return LO("div",{class:XP("TLLQTrhC",n&&"xMPJFBDw"),children:[LO("a",{href:"#",className:"KM6orgHa","data-ga4-event":"home_click",children:[LO(Wn,{id:Vn.reportLogo,size:"s",className:iL}),LO(Gn,{className:"vND2V3bB",bold:!0,children:"Allure Report"})]}),LO("ul",{className:"b402YGN_",children:lL?.map((e=>LO("li",{className:oL,"data-tooltip":e.title,"data-ga4-event":"tab_click","data-ga4-param-tab":e.tabName,children:LO("a",{href:`#${e.tabName}`,className:XP("aXLTfP6m",{[aL]:nL.value===e.tabName}),onClick:()=>rL(e.tabName),children:[LO("span",{className:iL,children:LO(Wn,{id:Vn[e.icon]})}),LO(Gn,{className:sL,children:t(e.tabName)})]})},e.tabName)))}),LO("div",{className:"j3vXv7pr"}),LO("div",{className:"iRiQ2siX",children:[LO("div",{className:"UfeYx5YH","data-tooltip":"Language",children:LO(QP,{})}),LO("div",{className:oL,"data-tooltip":"Expand","data-ga4-event":"expand_menu_click",onClick:()=>{localStorage.setItem("sidebarCollapsed",String(!n)),r(!n)},children:LO("div",{className:"OAVqfOY7",children:[LO("span",{className:"S68Ym5T1",children:LO(Wn,{id:Vn.lineArrowsChevronDown})}),LO(Gn,{className:sL,children:e("collapse")})]})})]})]})};const uL=oO({loading:!0,error:void 0,data:void 0}),dL=oO({loading:!0,error:void 0,data:void 0}),fL=async e=>{if(e){uL.value={...uL.value,loading:!0,error:void 0};try{const t=await jO(`data/test-results/${e}.json`);uL.value={data:{...uL.value.data,[e]:t},error:void 0,loading:!1}}catch(e){uL.value={...uL.value,error:e.message,loading:!1}}}};var hL="N3IRv8v_";const pL=({children:e})=>{const{testResultId:t}=eL.value.params,n=uL.value;return ue((()=>{(async()=>{DO.value={...DO.value,loading:!0,error:void 0};try{const e=await jO("widgets/allure_statistic.json");DO.value={data:e,error:void 0,loading:!1}}catch(e){DO.value={data:{total:0},error:e.message,loading:!1}}})()}),[]),LO("div",{className:"CfGgwYiF",children:[LO(cL,{}),e,LO(YP,{testResult:n.data?.[t]})]})},gL=["failed","broken","passed","skipped","unknown"],mL=new Set(["failed","broken"]),vL=new Set(["passed"]),bL=new Set([...mL,...vL]),yL=e=>{const t=new Set(e);return e=>t.has(e.status)},_L=(yL(vL),yL(mL),yL(bL),(e,t,n=1)=>{e[t]=(e[t]??0)+n,e.total+=n}),wL=[{suffix:"d",accessor:e=>Math.floor(e/864e5)},{suffix:"h",accessor:e=>Math.floor(e/36e5)%24},{suffix:"m",accessor:e=>Math.floor(e/6e4)%60},{suffix:"s",accessor:e=>Math.floor(e/1e3)%60},{suffix:"ms",accessor:e=>Math.round(e)%1e3}],xL=e=>{if(void 0===e)return"unknown";if(e<.5)return"0s";const t=[];for(const{accessor:n,suffix:r}of wL){const i=n(e);if((0!==t.length||i)&&(t.push(i+r),t.length>1))break}return t.join(" ")},kL=e=>(t,n)=>e(n,t),CL=e=>(t,n)=>t===n?0:null==t?1:null==n?-1:e(t,n),SL=(e,t,n)=>CL(((r,i)=>void 0!==n?t(r[e]??n,i[e]??n):e in r&&e in i?t(r[e],i[e]):0)),ML=e=>(t,n)=>{for(const r of e){const e=r(t,n);if(0!==e)return e}return 0},TL=()=>CL(((e,t)=>e.localeCompare(t))),AL=()=>CL(((e,t)=>e-t));var NL="O6jbdXAk",OL="wdXHJuqC",PL="xBzEd5dz",LL="KxE0dng7",EL="WUfcxsgW",FL="SSURJYtT",jL="pfVDoVIH",zL="p8BrY8T5",$L="LuXekrqy",BL="QoY_wwVj",RL="ETmyhMT9",DL="dfOOidbB",IL="sVbP9hsS",UL="VPuF7Mke",HL="c37SlL63",qL="wDYUmegY",VL="NWQDP0AF",WL="qWrwxu6j",YL="i31d8d94",GL="fsOIsHLA",ZL="RlaQI2ep",XL="pErF_r57",KL="r8zl8cNS",QL="wFAgAxoI",JL="vxJA6pf8",eE="KJcusCaa",tE="WmV4Oc0o",nE="gWl7QbrP",rE="brT49w7l",iE="mvQf76Qn",oE="eKeasBSI";const{solidAlertCircle:aE,solidCheckCircle:sE,solidHelpCircle:lE,solidMinusCircle:cE,solidXCircle:uE}=Vn,dE={failed:uE,broken:aE,passed:sE,skipped:cE,unknown:lE};var fE=({status:t="unknown",className:n,classNameIcon:r})=>{const i=ZP(e[`status-${t}`],r);return LO("div",{"data-testid":`tree-leaf-status-${t}`,className:ZP(nE,n),children:LO(Wn,{className:i,id:dE[t]})})},hE=({name:e,groupOrder:t,status:n,duration:r,id:i,parentNodeId:o,isMarked:a,...s})=>{const{tabName:l}=eL.value,c=xL(r);return LO("div",{...s,className:XP(tE,a&&rE),onClick:()=>(e=>{let t="";if("string"==typeof e)t=e.startsWith("#")?e.slice(1):e;else{const{tabName:n="overview",params:r={}}=e,{id:i=null,testResultId:o=null}=r;t=`${n}/${i||""}/${o||""}`}history.pushState(null,"",`#${t}`),tL()})(`#${l}/${o||"root"}/${i}`),children:[LO(fE,{status:n}),LO("span",{"data-testid":"tree-leaf-order",className:EL,children:t}),LO(Gn,{"data-testid":"tree-leaf-title",className:LL,children:e}),LO(Gn,{"data-testid":"tree-leaf-duration",type:"ui",size:"m",className:PL,children:c})]})},pE="pkAmb3H0",gE="cRDmGSBn",mE="p50HH678",vE="tcaKNlfE",bE="wJsbiVN7",yE="QoIY5gbV";const _E=({isOpened:e,buttonSize:n="m",iconSize:r="xs",className:i,icon:o=Vn.lineArrowsChevronDown,...a})=>LO("button",{className:ZP(pE,t[`arrow-button-${n}`]),...a,children:LO(Wn,{id:o,size:r,className:ZP(gE,e&&mE,t[`icon-size-${r}`],i)})}),wE=e=>{const t=(e=>{const t=SL;switch(e){case"alphabet":return t("name",TL());case"order":case"duration":case"status":return t("statistic",(()=>{const e=gL.map((e=>SL(e,kL(AL()),0)));return CL(ML(e))})())}})(e.sortBy),n="asc"===e.direction?t:kL(t);return ML([n,SL("name",TL())])},xE=(e=[],t,n)=>{const r=[...e].map((e=>t[e])).filter((e=>((e,t)=>[!t?.query||e.name.toLowerCase().includes(t.query.toLowerCase()),!t?.status||"total"===t?.status||e.status===t.status,!t?.filter?.flaky||e.flaky,!t?.filter?.retry||e.retry].every(Boolean))(e,n))),i=(e=>{const t=(e=>{const t=SL;switch(e){case"order":return t("groupOrder",AL());case"duration":return t("duration",AL());case"alphabet":return t("name",TL());case"status":return t("status",CL(((e,t)=>gL.indexOf(e)-gL.indexOf(t))))}})(e.sortBy),n="asc"===e.direction?t:kL(t);return ML([n,SL("name",TL())])})(n);return r.sort(i)},kE=e=>{const{group:t,groupsById:n,leavesById:r,filterOptions:i}=e,o=t.leaves??[],a=xE(o,r,i),s=t.groups?.map((e=>kE({group:n[e],groupsById:n,leavesById:r,filterOptions:i})))?.filter((e=>!CE(e)))??[],l={total:0};return s.forEach((e=>{if(e.statistic){const t=e.statistic;((e,t)=>{gL.forEach((n=>{t[n]&&_L(e,n,t[n])}))})(l,t)}})),a.forEach((e=>{const t=e.status;_L(l,t)})),{...t,statistic:l,leaves:a,trees:s.sort(wE(i))}},CE=e=>!e.trees?.length&&!e.leaves?.length||!e.leaves?.length&&e.trees?.every((e=>CE(e))),SE=oO({loading:!0,error:void 0,data:void 0}),ME=uO((()=>!Object.keys(SE?.value?.data?.leavesById).length)),TE=oO({query:"",status:"total",filter:{flaky:!1,retry:!1,new:!1},sortBy:"order",direction:"asc"}),AE=uO((()=>{const{root:e,leavesById:t,groupsById:n}=SE.value.data;return kE({group:e,leavesById:t,groupsById:n,filterOptions:TE.value})})),NE=uO((()=>CE(AE.value))),OE=e=>{TE.value={...TE.value,query:e}},PE=e=>{TE.value={...TE.value,sortBy:e}},LE=e=>{TE.value={...TE.value,direction:e}},EE=(e,t)=>{TE.value={...TE.value,filter:{...TE.value.filter,[e]:t}}};var FE=({categoryTitle:t,isOpened:n,toggleTree:r,statistic:i,...o})=>{const{status:a}=TE.value;return LO(hi,{source:DO,renderData:s=>{const l=Math.floor(94*((e,t)=>{const n=Math.log(10);return(Math.log(e+10)-n)/(Math.log(t+10)-n)})(i.total,s.total)+46),c=i?gL.map((e=>({status:e,value:i[e]}))).filter((({status:e,value:t})=>void 0!==t&&("total"===a||a===e&&t>0))).map((({status:t,value:n})=>LO("div",{className:ZP(JL,e[t]),style:{flexGrow:n},children:n},t))):null;return LO("div",{"data-testid":"tree-header",...o,className:ZL,onClick:r,children:[LO(_E,{"data-testid":"tree-arrow",isOpened:n}),LO(Gn,{"data-testid":"tree-header-title",size:"m",bold:!0,className:eE,children:t}),c&&LO("div",{className:QL,style:{width:`${l}px`},children:c})]})}})};const jE=({tree:e,statusFilter:t,root:n,name:r,statistic:i})=>{const{params:o}=eL.value,{id:a,testResultId:s}=o,[l,c]=ce(a===e.nodeId||void 0===i||!!i.failed||!!i.broken);if(!e?.trees?.length&&!e?.leaves?.length)return null;const u=l&&LO("div",{"data-testid":"tree-content",className:XP({[qL]:!0,[jL]:n}),children:[e?.trees?.map?.((e=>LO(jE,{name:e.name,tree:e,statistic:e.statistic,statusFilter:t},e.nodeId))),e?.leaves?.map?.((t=>LO(hE,{"data-testid":"tree-leaf",id:t.nodeId,name:t.name,status:t.status,groupOrder:t.groupOrder,duration:t.duration,parentNodeId:e.nodeId,isMarked:t.nodeId===s},t.nodeId)))]});return LO("div",{className:HL,children:[r&&LO(FE,{categoryTitle:r,isOpened:l,toggleTree:()=>{c(!l)},statistic:i}),u]})};var zE=jE;const $E=oO({loading:!0,error:void 0,data:void 0}),BE=uO((()=>!Object.keys($E?.value?.data?.leavesById).length)),RE=oO({query:"",status:"total",filter:{flaky:!1,retry:!1,new:!1},sortBy:"order",direction:"asc"}),DE=uO((()=>{const{root:e,leavesById:t,groupsById:n}=$E.value.data;return kE({group:e,leavesById:t,groupsById:n,filterOptions:RE.value})})),IE=uO((()=>CE(DE.value))),UE=oO("total");var HE="rROZ1Xam",qE="EfiHPq3D",VE="gu2HRvzV";const WE=()=>{const{t:e}=OP("empty");return ue((()=>{var e;e=UE.value,RE.value={...RE.value,status:e}}),[UE.value]),LO(hi,{source:$E,renderLoader:()=>LO(pi,{}),renderData:()=>BE.value?LO("div",{className:VE,children:LO("div",{className:HE,children:LO(Gn,{className:qE,children:e("no-results")})})}):IE.value?LO("div",{className:VE,children:LO("div",{className:HE,children:[LO(Gn,{tag:"p",className:qE,children:e("no-tests-found")}),LO(Jn,{className:"H3rNsO_3",type:"button",text:e("clear-filters"),size:"s",style:"outline",onClick:()=>{RE.value={query:"",status:"total",filter:{flaky:!1,retry:!1,new:!1},sortBy:"order",direction:"asc"}}})]})}):LO("div",{className:VE,children:LO(zE,{tree:DE.value,statusFilter:UE.value,root:!0})})})};var YE="SwPk6rQi";const GE=({children:e})=>LO("div",{className:"E8NDohwx",children:e}),ZE=()=>{const{t:e}=OP("sort-by"),{t:t}=OP("sort-by.values"),{t:n}=OP("sort-by.directions"),{sortBy:r,direction:i}=TE.value,o=t(r),a=n(`${r}-${i}-short`);return LO("div",{children:LO(Gn,{type:"paragraph",size:"m",className:"s_37abuM",children:[e("sort-by-text")," ",LO(bi,{size:"l",menuTriggerWrapper:"span",menuTrigger:({onClick:e,isOpened:t})=>LO(Gn,{type:"paragraph",size:"m",children:LO(Bi,{onClick:e,children:[o," ",a,LO(Wn,{size:"s",id:Vn.lineArrowsChevronDown,className:XP("uFVj7_qh",t&&"ATGP4otR")})]})}),children:LO(bi.Section,{children:[LO(bi,{size:"s",menuTrigger:({onClick:t,isOpened:n})=>LO(bi.Item,{closeMenuOnClick:!1,onClick:t,leadingIcon:Vn.lineArrowsSwitchVertical1,rightSlot:LO(GE,{children:LO(tr,{style:"outline",size:"s",isExpanded:n,text:o,focusable:!1})}),children:e("sort-by-category")}),children:LO(bi.Section,{children:[LO(bi.ItemWithCheckmark,{onClick:()=>PE("order"),isChecked:"order"===r,children:t("order")}),LO(bi.ItemWithCheckmark,{onClick:()=>PE("duration"),isChecked:"duration"===r,children:t("duration")}),LO(bi.ItemWithCheckmark,{onClick:()=>PE("status"),isChecked:"status"===r,children:t("status")}),LO(bi.ItemWithCheckmark,{onClick:()=>PE("alphabet"),isChecked:"alphabet"===r,children:t("alphabet")})]})}),LO(bi,{size:"m",menuTrigger:({onClick:t,isOpened:n})=>LO(bi.Item,{closeMenuOnClick:!1,onClick:t,leadingIcon:"asc"===i?Vn.lineArrowsSortLineAsc:Vn.lineArrowsSortLineDesc,rightSlot:LO(GE,{children:LO(tr,{style:"outline",size:"s",isExpanded:n,text:a,focusable:!1})}),children:e("direction-category")}),children:LO(bi.Section,{children:[LO(bi.ItemWithCheckmark,{onClick:()=>LE("asc"),leadingIcon:Vn.lineArrowsSortLineAsc,isChecked:"asc"===i,children:n(`${r}-asc`)}),LO(bi.ItemWithCheckmark,{onClick:()=>LE("desc"),leadingIcon:Vn.lineArrowsSortLineDesc,isChecked:"desc"===i,children:n(`${r}-desc`)})]})})]})})]})})},XE=e=>{const{id:t,children:n,...r}=e;return LO("button",{...r,className:"UsCYY7sB",onClick:()=>{return e=t,void(UE.value=e);var e},"aria-current":!(UE.value!==t)||void 0,children:LO(Gn,{type:"paragraph",size:"m",bold:!0,children:n})})},KE=e=>{if(e)return e.charAt(0).toLocaleUpperCase()+e.slice(1)},QE=()=>{const{t:e}=OP("filters"),{flaky:t,retry:n,new:r}=TE.value.filter,i=t||n||r;return LO(bi,{menuTrigger:({isOpened:t,onClick:n})=>LO("div",{className:i&&"YfN3wtCh",children:LO(Jn,{icon:Vn.lineGeneralSettings1,text:e("more-filters"),size:"m",style:"outline",isActive:t,"data-testid":"filters-button",onClick:n})}),children:LO(bi.Section,{children:[LO(bi.Item,{closeMenuOnClick:!1,ariaLabel:e("enable-filter",{filter:e("flaky")}),onClick:()=>{EE("flaky",!t)},leadingIcon:Vn.lineGeneralZap,rightSlot:LO("div",{className:YE,children:LO($i,{focusable:!1,value:t,label:e("enable-filter",{filter:e("flaky")}),"data-testid":"flaky-filter",onChange:e=>EE("flaky",e)})}),children:e("flaky")}),LO(bi.Item,{closeMenuOnClick:!1,ariaLabel:e("enable-filter",{filter:e("retry")}),onClick:()=>EE("retry",!n),leadingIcon:Vn.lineArrowsRefreshCcw1,rightSlot:LO("div",{className:YE,children:LO($i,{focusable:!1,value:n,label:e("enable-filter",{filter:e("retry")}),"data-testid":"retry-filter",onChange:e=>EE("retry",e)})}),children:e("retry")}),LO(bi.Item,{closeMenuOnClick:!1,ariaLabel:e("enable-filter",{filter:e("new")}),onClick:()=>EE("new",!r),leadingIcon:Vn.lineAlertsNotificationBox,rightSlot:LO("div",{className:YE,children:LO($i,{focusable:!1,value:r,label:e("enable-filter",{filter:e("new")}),"data-testid":"new-filter",onChange:e=>EE("new",e)})}),children:e("new")})]})})},JE=()=>{const{query:e}=TE.value,{t:t}=OP("search");return LO(gi,{placeholder:t("search-placeholder"),value:e,onChange:OE})},eF=()=>{const{t:e}=OP("statuses");return LO("div",{className:"XucdxLZi",children:[LO("div",{className:"Yvmys5Jh",children:[LO(JE,{}),LO(QE,{})]}),LO("div",{className:"Rp0AiF9N",children:[LO("div",{className:"OEbXGm38",children:LO(hi,{source:DO,renderData:t=>{const n=gL.map((e=>({status:e,value:t[e]}))).filter((({value:e})=>e)).map((({status:t,value:n})=>LO(XE,{"data-testid":`tab-${t}`,id:t,children:[KE(e(t)??t)," ",LO(zi,{count:n,size:"s",status:t})]},t)));return LO(T,{children:[LO(XE,{"data-testid":"tab-all",id:"total",children:[KE(e("total"))," ",LO(zi,{count:t?.total??0,size:"s"})]}),n]})}})}),LO(ZE,{})]})]})};var tF="undefined"!=typeof window?window:null,nF=null===tF,rF=nF?void 0:tF.document,iF="addEventListener",oF="removeEventListener",aF="getBoundingClientRect",sF="_a",lF="_b",cF="_c",uF="horizontal",dF=function(){return!1},fF=nF?"calc":["","-webkit-","-moz-","-o-"].filter((function(e){var t=rF.createElement("div");return t.style.cssText="width:"+e+"calc(9px)",!!t.style.length})).shift()+"calc",hF=function(e){return"string"==typeof e||e instanceof String},pF=function(e){if(hF(e)){var t=rF.querySelector(e);if(!t)throw new Error("Selector "+e+" did not match a DOM element");return t}return e},gF=function(e,t,n){var r=e[t];return void 0!==r?r:n},mF=function(e,t,n,r){if(t){if("end"===r)return 0;if("center"===r)return e/2}else if(n){if("start"===r)return 0;if("center"===r)return e/2}return e},vF=function(e,t){var n=rF.createElement("div");return n.className="gutter gutter-"+t,n},bF=function(e,t,n){var r={};return hF(t)?r[e]=t:r[e]=fF+"("+t+"% - "+n+"px)",r},yF=function(e,t){var n;return(n={})[e]=t+"px",n},_F=function(e,t){if(void 0===t&&(t={}),nF)return{};var n,r,i,o,a,s,l=e;Array.from&&(l=Array.from(l));var c=pF(l[0]).parentNode,u=getComputedStyle?getComputedStyle(c):null,d=u?u.flexDirection:null,f=gF(t,"sizes")||l.map((function(){return 100/l.length})),h=gF(t,"minSize",100),p=Array.isArray(h)?h:l.map((function(){return h})),g=gF(t,"maxSize",1/0),m=Array.isArray(g)?g:l.map((function(){return g})),v=gF(t,"expandToMin",!1),b=gF(t,"gutterSize",10),y=gF(t,"gutterAlign","center"),_=gF(t,"snapOffset",30),w=Array.isArray(_)?_:l.map((function(){return _})),x=gF(t,"dragInterval",1),k=gF(t,"direction",uF),C=gF(t,"cursor",k===uF?"col-resize":"row-resize"),S=gF(t,"gutter",vF),M=gF(t,"elementStyle",bF),T=gF(t,"gutterStyle",yF);function A(e,t,r,i){var o=M(n,t,r,i);Object.keys(o).forEach((function(t){e.style[t]=o[t]}))}function N(){return s.map((function(e){return e.size}))}function O(e){return"touches"in e?e.touches[0][r]:e[r]}function P(e){var t=s[this.a],n=s[this.b],r=t.size+n.size;t.size=e/this.size*r,n.size=r-e/this.size*r,A(t.element,t.size,this[lF],t.i),A(n.element,n.size,this[cF],n.i)}function L(e){var n,r=s[this.a],i=s[this.b];this.dragging&&(n=O(e)-this.start+(this[lF]-this.dragOffset),x>1&&(n=Math.round(n/x)*x),n<=r.minSize+r.snapOffset+this[lF]?n=r.minSize+this[lF]:n>=this.size-(i.minSize+i.snapOffset+this[cF])&&(n=this.size-(i.minSize+this[cF])),n>=r.maxSize-r.snapOffset+this[lF]?n=r.maxSize+this[lF]:n<=this.size-(i.maxSize-i.snapOffset+this[cF])&&(n=this.size-(i.maxSize+this[cF])),P.call(this,n),gF(t,"onDrag",dF)(N()))}function E(){var e=s[this.a].element,t=s[this.b].element,r=e[aF](),a=t[aF]();this.size=r[n]+a[n]+this[lF]+this[cF],this.start=r[i],this.end=r[o]}function F(e){var t=function(e){if(!getComputedStyle)return null;var t=getComputedStyle(e);if(!t)return null;var n=e[a];return 0===n?null:n-=k===uF?parseFloat(t.paddingLeft)+parseFloat(t.paddingRight):parseFloat(t.paddingTop)+parseFloat(t.paddingBottom)}(c);if(null===t)return e;if(p.reduce((function(e,t){return e+t}),0)>t)return e;var n=0,r=[],i=e.map((function(i,o){var a=t*i/100,s=mF(b,0===o,o===e.length-1,y),l=p[o]+s;return a<l?(n+=l-a,r.push(0),l):(r.push(a-l),a)}));return 0===n?e:i.map((function(e,i){var o=e;if(n>0&&r[i]-n>0){var a=Math.min(n,r[i]-n);n-=a,o=e-a}return o/t*100}))}function j(){var e=this,n=s[e.a].element,r=s[e.b].element;e.dragging&&gF(t,"onDragEnd",dF)(N()),e.dragging=!1,tF[oF]("mouseup",e.stop),tF[oF]("touchend",e.stop),tF[oF]("touchcancel",e.stop),tF[oF]("mousemove",e.move),tF[oF]("touchmove",e.move),e.stop=null,e.move=null,n[oF]("selectstart",dF),n[oF]("dragstart",dF),r[oF]("selectstart",dF),r[oF]("dragstart",dF),n.style.userSelect="",n.style.webkitUserSelect="",n.style.MozUserSelect="",n.style.pointerEvents="",r.style.userSelect="",r.style.webkitUserSelect="",r.style.MozUserSelect="",r.style.pointerEvents="",e.gutter.style.cursor="",e.parent.style.cursor="",rF.body.style.cursor=""}function z(e){if(!("button"in e)||0===e.button){var n=this,r=s[n.a].element,i=s[n.b].element;n.dragging||gF(t,"onDragStart",dF)(N()),e.preventDefault(),n.dragging=!0,n.move=L.bind(n),n.stop=j.bind(n),tF[iF]("mouseup",n.stop),tF[iF]("touchend",n.stop),tF[iF]("touchcancel",n.stop),tF[iF]("mousemove",n.move),tF[iF]("touchmove",n.move),r[iF]("selectstart",dF),r[iF]("dragstart",dF),i[iF]("selectstart",dF),i[iF]("dragstart",dF),r.style.userSelect="none",r.style.webkitUserSelect="none",r.style.MozUserSelect="none",r.style.pointerEvents="none",i.style.userSelect="none",i.style.webkitUserSelect="none",i.style.MozUserSelect="none",i.style.pointerEvents="none",n.gutter.style.cursor=C,n.parent.style.cursor=C,rF.body.style.cursor=C,E.call(n),n.dragOffset=O(e)-n.end}}k===uF?(n="width",r="clientX",i="left",o="right",a="clientWidth"):"vertical"===k&&(n="height",r="clientY",i="top",o="bottom",a="clientHeight"),f=F(f);var $=[];function B(e){var t=e.i===$.length,n=t?$[e.i-1]:$[e.i];E.call(n);var r=t?n.size-e.minSize-n[cF]:e.minSize+n[lF];P.call(n,r)}return s=l.map((function(e,t){var r,i={element:pF(e),size:f[t],minSize:p[t],maxSize:m[t],snapOffset:w[t],i:t};if(t>0&&((r={a:t-1,b:t,dragging:!1,direction:k,parent:c})[lF]=mF(b,t-1==0,!1,y),r[cF]=mF(b,!1,t===l.length-1,y),"row-reverse"===d||"column-reverse"===d)){var o=r.a;r.a=r.b,r.b=o}if(t>0){var a=S(t,k,i.element);!function(e,t,r){var i=T(n,t,r);Object.keys(i).forEach((function(t){e.style[t]=i[t]}))}(a,b,t),r[sF]=z.bind(r),a[iF]("mousedown",r[sF]),a[iF]("touchstart",r[sF]),c.insertBefore(a,i.element),r.gutter=a}return A(i.element,i.size,mF(b,0===t,t===l.length-1,y),t),t>0&&$.push(r),i})),s.forEach((function(e){var t=e.element[aF]()[n];t<e.minSize&&(v?B(e):e.minSize=t)})),{setSizes:function(e){var t=F(e);t.forEach((function(e,n){if(n>0){var r=$[n-1],i=s[r.a],o=s[r.b];i.size=t[n-1],o.size=e,A(i.element,i.size,r[lF],i.i),A(o.element,o.size,r[cF],o.i)}}))},getSizes:N,collapse:function(e){B(s[e])},destroy:function(e,t){$.forEach((function(r){if(!0!==t?r.parent.removeChild(r.gutter):(r.gutter[oF]("mousedown",r[sF]),r.gutter[oF]("touchstart",r[sF])),!0!==e){var i=M(n,r.a.size,r[lF]);Object.keys(i).forEach((function(e){s[r.a].element.style[e]="",s[r.b].element.style[e]=""}))}}))},parent:c,pairs:$}},wF="OyL7dy7N",xF="t22uAI7s",kF=({left:e,right:t})=>{const n=de(null);return ue((()=>{const e=JSON.parse(localStorage.getItem("sideBySidePosition")||"[50, 50]"),t=_F([`.${wF}`,`.${xF}`],{sizes:e,gutterSize:7,gutter:()=>{const e=document.createElement("div");return e.className="sgMxjSNq",e.addEventListener("dblclick",(()=>{const e=t.getSizes();if("[50,50]"===JSON.stringify(e))return t.setSizes([30,70]),void localStorage.setItem("sideBySidePosition",JSON.stringify([30,70]));t.setSizes([50,50]),localStorage.setItem("sideBySidePosition",JSON.stringify([50,50]))})),e},onDragEnd:()=>{const e=t.getSizes();localStorage.setItem("sideBySidePosition",JSON.stringify(e))}});return()=>{t.destroy()}}),[]),LO("div",{class:"Jryczg8r",ref:n,children:[LO("div",{class:wF,children:e}),LO("div",{class:xF,children:t})]})};const CF="bits",SF="bytes",MF="",TF="jedec",AF={symbol:{iec:{bits:["bit","Kibit","Mibit","Gibit","Tibit","Pibit","Eibit","Zibit","Yibit"],bytes:["B","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"]},jedec:{bits:["bit","Kbit","Mbit","Gbit","Tbit","Pbit","Ebit","Zbit","Ybit"],bytes:["B","KB","MB","GB","TB","PB","EB","ZB","YB"]}},fullform:{iec:["","kibi","mebi","gibi","tebi","pebi","exbi","zebi","yobi"],jedec:["","kilo","mega","giga","tera","peta","exa","zetta","yotta"]}};const NF=({item:e,shouldExpand:t})=>{const{id:n,ext:r,contentType:i}=e.link,{t:o}=OP("controls"),a=!1===e.link.missed?e.link.contentLength:void 0,s=a?function(e,{bits:t=!1,pad:n=!1,base:r=-1,round:i=2,locale:o="",localeOptions:a={},separator:s="",spacer:l=" ",symbols:c={},standard:u="",output:d="string",fullform:f=!1,fullforms:h=[],exponent:p=-1,roundingMethod:g="round",precision:m=0}={}){let v=p,b=Number(e),y=[],_=0,w=MF;"si"===u?(r=10,u=TF):"iec"===u||u===TF?r=2:2===r?u="iec":(r=10,u=TF);const x=10===r?1e3:1024,k=!0===f,C=b<0,S=Math[g];if("bigint"!=typeof e&&isNaN(e))throw new TypeError("Invalid number");if("function"!=typeof S)throw new TypeError("Invalid rounding method");if(C&&(b=-b),(-1===v||isNaN(v))&&(v=Math.floor(Math.log(b)/Math.log(x)),v<0&&(v=0)),v>8&&(m>0&&(m+=8-v),v=8),"exponent"===d)return v;if(0===b)y[0]=0,w=y[1]=AF.symbol[u][t?CF:SF][v];else{_=b/(2===r?Math.pow(2,10*v):Math.pow(1e3,v)),t&&(_*=8,_>=x&&v<8&&(_/=x,v++));const e=Math.pow(10,v>0?i:0);y[0]=S(_*e)/e,y[0]===x&&v<8&&-1===p&&(y[0]=1,v++),w=y[1]=10===r&&1===v?t?"kbit":"kB":AF.symbol[u][t?CF:SF][v]}if(C&&(y[0]=-y[0]),m>0&&(y[0]=y[0].toPrecision(m)),y[1]=c[y[1]]||y[1],!0===o?y[0]=y[0].toLocaleString():o.length>0?y[0]=y[0].toLocaleString(o,a):s.length>0&&(y[0]=y[0].toString().replace(".",s)),n&&i>0){const e=y[0].toString(),t=s||(e.match(/(\D)/g)||[]).pop()||".",n=e.toString().split(t),r=n[1]||MF,o=r.length,a=i-o;y[0]=`${n[0]}${t}${r.padEnd(o+a,"0")}`}return k&&(y[1]=h[v]?h[v]:AF.fullform[u][v]+(t?"bit":"byte")+(1===y[0]?MF:"s")),"array"===d?y:"object"===d?{value:y[0],symbol:y[1],exponent:v,unit:w}:y.join(l)}(a,{base:2,round:1}):"-";return ue((()=>{IP.value&&HP({data:e,component:LO(DP,{item:e})})}),[e]),LO("div",{className:kO,children:[Boolean(i)&&LO(Gn,{size:"s",children:i}),Boolean(s)&&LO(Gn,{size:"s",children:s}),LO("div",{className:"jY67aHNB",children:[t&&LO(fi,{tooltipText:o("expand"),children:LO(er,{className:xO,style:"ghost",size:"s",iconSize:"s",icon:Vn.lineArrowsExpand3,onClick:t=>{t.stopPropagation(),HP({data:e,component:LO(DP,{item:e,previewable:!0})})}})}),LO(fi,{tooltipText:o("downloadAttachment"),children:LO(er,{style:"ghost",size:"s",iconSize:"s",className:xO,icon:Vn.lineGeneralDownloadCloud,onClick:e=>(async e=>{e.stopPropagation(),await zP(n,r,i)})(e)})})]})]})},{lineImagesImage:OF,lineFilesFileAttachment2:PF}=Vn,LF={"text/plain":PF,"application/xml":PF,"text/html":PF,"text/csv":PF,"text/tab-separated-values":PF,"text/css":PF,"text/uri-list":PF,"image/svg+xml":OF,"image/png":OF,"application/json":PF,"application/zip":PF,"video/webm":OF,"image/jpeg":OF,"video/mp4":OF,"application/vnd.allure.image.diff":OF},EF=({item:e,stepIndex:t})=>{const[n,r]=ce(!1),{link:i}=e,{missed:o}=i,a=$P(i.contentType),s=!["archive",null].includes(a.type);return LO("div",{className:MO,children:[LO("div",{className:"NClSgUkb",onClick:e=>{e.stopPropagation(),r((e=>!e))},children:[LO(_E,{isOpened:n}),LO("div",{className:"xsdu1baI",children:LO(Wn,{size:"s",id:LF[i.contentType]??PF})}),LO(Zn,{size:"s",className:TO,children:t}),LO(Gn,{className:"YhP1nstj",children:i.name||i.originalFileName}),o&&LO(Gn,{size:"s",className:"M5C3U8un",children:"missed"}),LO(NF,{item:e,shouldExpand:s})]}),n&&s&&LO("div",{className:"WOIqyvuJ",children:LO("div",{className:"y0BEE3YM",children:LO(DP,{item:e})})})]})},FF=({testResult:e})=>{const{attachments:t}=e??{},{t:n}=OP("empty");return LO("div",{className:"lHWtNuYW",children:t.length?t?.map(((e,t)=>LO(EF,{item:e,stepIndex:t+1},t))):LO("div",{className:"BiuJf74I",children:n("no-attachments-results")})})};var jF="YI1X4HYJ";const zF={flaky:Vn.lineIconBomb2,known:Vn.lineAlertsAlertCircle,muted:Vn.lineGeneralEye},$F=({statuses:e})=>{const{t:t}=OP("filters");return LO("div",{className:"Y2wO3Jz0",children:e.map((([e],n)=>{const r=t(e);return LO("div",{className:"v32hNHgM",children:[LO(Wn,{className:"l2lGqhp3",id:zF[e],size:"s"}),KE(r)]},n)}))})},BF=async e=>{if(navigator.clipboard)return void await navigator.clipboard.writeText(e);const t=document.createElement("textarea");t.value=e,t.style.position="fixed",t.style.opacity="0",document.body.appendChild(t),t.focus(),t.select(),document.execCommand("copy"),document.body.removeChild(t)},RF=({testResult:e})=>{const{fullName:t,id:n}=e??{},r=n||"",{t:i}=OP("controls"),o=()=>LO("div",{"data-testid":"test-result-fullname",className:"OGkPEw6j",children:[LO(fi,{tooltipText:i("clipboard"),tooltipTextAfterClick:i("clipboardSuccess"),children:LO(er,{"data-testid":"test-result-fullname-copy",style:"ghost",size:"s",icon:Vn.lineGeneralCopy3,onClick:()=>BF(t)})}),LO(Zn,{tag:"div",size:"s",className:"aDnq0qBA",children:t&&t})]});return LO(hi,{source:dL,renderData:n=>{const a=n.indexOf(r)+1;return LO("div",{className:"jZIVsVCY",children:[t&&LO(o,{}),n&&!e?.hidden&&LO("div",{className:"j6KIdAcw",children:[LO(fi,{tooltipText:i("prevTR"),isTriggerActive:a>1,children:LO(er,{icon:Vn.lineArrowsChevronDown,style:"ghost",isDisabled:a===n.length,"data-testid":"test-result-nav-prev",className:"w2YsvOzy",onClick:()=>rL(n[a])})}),LO(Zn,{"data-testid":"test-result-nav-current",size:"s",className:"uO8tXVUk",children:[a,"/",n.length]}),LO(fi,{tooltipText:i("nextTR"),children:LO(er,{icon:Vn.lineArrowsChevronDown,style:"ghost",isDisabled:a<=1,"data-testid":"test-result-nav-next",onClick:()=>rL(n[a-2])})})]})]})}})},DF={month:"numeric",day:"numeric",year:"numeric",hour:"numeric",minute:"numeric",second:"numeric",hour12:!1},IF=(e,t=DF)=>{const n=new Date(e),{t:r}=OP("ui");return new Intl.DateTimeFormat("en-US",t).format(n).replace(",",` ${r("at")}`)};var UF="xqQAEgub",HF="DQBIldwf",qF="XQ3awPuJ",VF="Aq7cjsJ6",WF="lMt3wwSw",YF="Fp44c8Rs",GF="mVYRZsN7",ZF="jx_WyjHM";const XF=({item:e})=>LO("div",{className:YF,onClick:()=>rL(`testresult/${e.id}`),children:LO(Wn,{id:Vn.lineShapesDotCircle,className:n[`status-${e?.status}`]})}),KF=({item:e})=>{const t=e.stop&&IF(e.stop),{t:n}=OP("statuses"),r=n(e.status);return LO("div",{className:GF,children:[LO(Gn,{tag:"div",size:"m",bold:!0,children:KE(r)}),LO(Gn,{size:"m",children:t})]})},QF=({history:e})=>LO("div",{className:ZF,children:e?.slice(0,6).map(((e,t)=>LO("div",{className:YF,children:LO(fi,{tooltipComponent:LO(KF,{item:e}),children:LO(XF,{item:e})},t)},t)))});var JF="ePVWhlAm",ej="sJislQz7",tj="aDIydjIg",nj="lMk40Juq",rj="AS2wQZhs",ij="HBsDl1PG",oj="mmgpkdOE";const aj={blocker:Vn.lineArrowsChevronUpDouble,critical:Vn.lineArrowsChevronUp,normal:Vn.lineGeneralEqual,minor:Vn.lineArrowsChevronDown,trivial:Vn.lineArrowsChevronDownDouble},sj=({severity:e="normal"})=>{const{t:t}=OP("severity"),n=XP(r[`severity-${e}`]);return LO("div",{className:ij,children:[LO(Wn,{className:n,id:aj[e]}),LO(Gn,{size:"s",bold:!0,className:oj,children:KE(t(e))})]})};var lj="VTYhq6OX",cj="kQ8ST0Is",uj="GuvN0hpG",dj="AzRqq4g7",fj="Vbn0h8fE",hj="OgKWktgc",pj="syxme624",gj="Vk53tsKp";const mj=({status:e})=>{const{t:t}=OP("statuses");return LO("div",{"data-testid":`test-result-status-${e}`,className:XP(hj,i[`status-${e}`]),children:[LO(fE,{status:e,className:pj,classNameIcon:pj}),LO(Gn,{type:"ui",size:"s",bold:!0,className:gj,children:KE(t(e)??e)})]})},vj=G(null),bj=()=>{const e=pe(vj);if(!e)throw new Error("TestResultTabs components must be used within a TestResultTabs component");return e},yj=e=>{const{children:t,initialTab:n}=e,[r,i]=ce(n);return LO(vj.Provider,{value:{currentTab:r,setCurrentTab:i},children:t})},_j=e=>LO(yj,{...e}),wj=e=>LO("div",{className:"ehcbtGaK",children:e.children}),xj=e=>{const{id:t,children:n}=e,{currentTab:r,setCurrentTab:i}=bj(),o=r===t;return LO("button",{className:"jTSna8cM",onClick:()=>{o||i(t)},"aria-current":!!o||void 0,children:LO(Gn,{type:"paragraph",size:"m",children:n})})},kj=({testResult:e})=>{const{name:t,status:n,muted:r,flaky:i,known:o,duration:a,labels:s,history:l,retries:c,attachments:u,stop:d}=e??{},f=xL(a),h=d&&IF(d),p=s?.find((e=>"severity"===e.name))?.value??"normal",{t:g}=OP("ui"),m=Object.entries({flaky:i,muted:r,known:o}).filter((([,e])=>e));return LO("div",{className:"Hz45mnhp",children:[LO(RF,{testResult:e}),e&&LO((()=>LO(T,{children:[t&&LO(Xn,{"data-testid":"test-result-info-title",tag:"h1",size:"s",className:"vcNRTtSe",children:t}),LO("div",{className:"On9PeyVM",children:[Boolean(n)&&LO(mj,{status:n}),Boolean(l?.length)&&LO(QF,{history:l}),LO(sj,{severity:p}),Boolean(m.length)&&LO($F,{statuses:m}),LO(fi,{tooltipText:h,children:LO(Gn,{tag:"div",size:"s",bold:!0,className:"NDKPGnKG",children:f})})]}),LO("div",{className:"IgPGUqT3",children:LO(wj,{children:[LO(xj,{id:"overview",children:g("overview")}),LO(xj,{id:"history",disabled:!l?.length,children:LO("div",{className:jF,children:[g("history"),Boolean(l?.length)&&LO(zi,{size:"s",count:l?.length})]})}),LO(xj,{id:"retries",disabled:!c?.length,children:LO("div",{className:jF,children:[g("retries"),Boolean(c?.length)&&LO(zi,{size:"s",count:c?.length})]})}),LO(xj,{id:"attachments",disabled:!u?.length,children:LO("div",{className:jF,children:[g("attachments"),Boolean(u?.length)&&LO(zi,{size:"s",count:u?.length})]})})]})})]})),{})]})},Cj=()=>LO("div",{className:"sKQc4srm",children:LO("div",{className:"xSISIn1t",children:[LO(Wn,{size:"m",width:"32px",height:"32px",id:Vn.lineDevCodeSquare,className:"kByfPQ8J"}),LO(Gn,{className:"_nmn14QL",children:"No test case results"})]})});var Sj=()=>LO("div",{className:hL,children:[LO(kj,{}),LO(Cj,{})]});const Mj=({trace:e})=>LO("div",{"data-testid":"test-result-error-trace",className:"P9jo6syG",children:LO(Zn,{size:"s",type:"ui",children:LO("pre",{children:e})})}),Tj=({message:e,trace:t})=>{const[n,r]=ce(!1),{t:i}=OP("ui"),{t:o}=OP("controls");return LO("div",{"data-testid":"test-result-error",className:"PYOcNd_c",children:[LO("div",{"data-testid":"test-result-error-header",className:"uuV4cOHF",children:[LO(Gn,{tag:"p",size:"m",bold:!0,className:"KPkfuiBe",children:i("error")}),LO(fi,{tooltipText:o("clipboard"),tooltipTextAfterClick:o("clipboardSuccess"),children:LO(er,{style:"ghost",size:"s",icon:Vn.lineGeneralCopy3,onClick:()=>{BF(e)}})})]}),LO("div",{className:"opuJhL4z",onClick:()=>r(!n),children:LO(Zn,{"data-testid":"test-result-error-message",size:"s",children:LO("pre",{children:e})})}),n&&t&&LO(Mj,{trace:t})]})};var Aj="g2Q2QUdS",Nj="G3x0qV6C";const Oj=({testResultItem:e})=>{const{status:t,message:n,trace:r,stop:i,duration:o,id:a}=e,[s,l]=ce(!1),c=IF(i),u=xL(o),{t:d}=OP("controls"),f=`testresult/${a}`;return LO("div",{children:[LO("div",{className:"v4OGkqDl",children:[Boolean(n)&&LO("span",{onClick:()=>l(!s),children:LO(_E,{isOpened:s,icon:Vn.arrowsChevronDown})}),LO("div",{className:"hPMeC81o",onClick:e=>{e.stopPropagation(),rL(f)},children:[LO(fE,{status:t,className:"ESLht2mP"}),LO(Gn,{className:"ZLJkKiOW",children:c}),LO("div",{className:"U5zJuGoO",children:[LO(Gn,{type:"ui",size:"s",className:"ugNJ_2CO",children:u}),LO(fi,{tooltipText:d("openInNewTab"),children:LO(er,{icon:Vn.lineGeneralLinkExternal,style:"ghost",size:"s",className:"PeifZUoW",onClick:e=>{var t;e.stopPropagation(),t=f,window.open(`#${t}`,"_blank")}})})]})]})]}),s&&n&&LO("div",{children:LO(Tj,{message:n,trace:r})})]})};var Pj=({testResult:e})=>{const{history:t}=e??{},{t:n}=OP("empty");return LO("div",{className:Nj,children:t.length?t?.map(((e,t)=>LO(Oj,{testResultItem:e},t))):LO("div",{className:Aj,children:n("no-history-results")})})};const Lj=({isOpened:e,setIsOpen:t,counter:n,title:r})=>LO("div",{className:XP("pLtXZ2UC",e&&"WwtUTGAA"),onClick:()=>t(!e),children:[LO(Gn,{size:"m",bold:!0,children:r}),n&&LO(zi,{count:n,size:"s"}),LO(_E,{isOpened:e,iconSize:"s",buttonSize:"s",className:"tRJc3qyU"})]}),Ej=({description:e})=>{const[t,n]=ce(!0);return LO("div",{className:"pq4AfC4A",children:LO("div",{className:"JPSZ15fh",children:[LO(Lj,{title:"Description",setIsOpen:n,isOpened:t}),t&&LO(Gn,{tag:"p",className:"ZMk0p9l2",children:e||"Description mock"})]})})},Fj={issue:Vn.lineDevBug2,link:Vn.lineGeneralLink1,tms:Vn.lineGeneralChecklist3,github:Vn.github},jj=({link:e})=>{const{url:t,type:n}=e;return LO("div",{className:"_MFVY6eP",children:[LO(Wn,{id:Fj[n]??Vn.lineGeneralLink1}),LO(Gn,{tag:"a",href:t,target:"_blank",size:"m",className:"OJlBpBh6",children:t})]})},zj=({links:e})=>{const[t,n]=ce(!0),{t:r}=OP("ui"),i=e.map(((e,t)=>LO(jj,{link:e},t)));return LO("div",{className:"KSGnxExI",children:LO("div",{className:"Q1OuSIN9",children:[LO(Lj,{isOpened:t,setIsOpen:n,counter:e.length,title:r("links")}),t&&LO("div",{className:"XCAUNxEG",children:i})]})})};var $j="nN4HTcaV",Bj="zekPInHE",Rj="n8aAEqJN",Dj="gWhwmmak",Ij="vbS07EBz",Uj="GnFlAHvD",Hj="SOj4fXZr",qj="Y0BjnooD",Vj="DYf1zpQK",Wj="x3aRsFUn",Yj="UDXyMSw0",Gj="S2HdG_Q4",Zj="J2Ih3NTA",Xj="P3sa8qE8",Kj="mINTqK_J",Qj="Mo_tidg4",Jj="A6GWJHtf",ez="mS0_tpbu",tz="Qc1PPhPw",nz="WnwsZxzW",rz="FFZ1ZZHu",iz="SmbunT7K",oz="XZvscg6t",az="tf5VzSUo",sz="a26GxOK7",lz="HaG13R7H";const cz=({envInfo:e,size:t="m",columns:n=2})=>LO("div",{class:Kj,style:{gridTemplateColumns:`repeat(${n}, ${100/n-5}%)`},children:e?.map((({name:e,values:n,value:r})=>LO(hz,{size:t,title:e,value:r,values:n},e)))}),uz=({groupedLabels:e,size:t="m"})=>LO("div",{class:Kj,children:e&&Object.entries(e)?.map((([e,n])=>LO(hz,{size:t,title:e,values:n},e)))}),dz=e=>{const{value:t}=e,{t:n}=OP("ui");return LO("div",{className:Uj,children:[LO("div",{className:Hj,children:LO(Gn,{children:t})}),LO(Jn,{style:"outline",icon:Vn.lineGeneralCopy3,text:n("copy"),onClick:()=>BF(t)})]})},fz=({size:e="s",value:t})=>LO(bi,{size:"xl",menuTrigger:({onClick:n})=>LO("div",{className:Xj,children:LO(Gn,{type:"ui",size:e,onClick:n,bold:!0,className:Zj,children:t})}),children:LO(bi.Section,{children:LO(dz,{value:t})})}),hz=({title:e,value:t,values:n,size:r="m"})=>LO("div",{className:Yj,children:[LO(Gn,{type:"ui",size:r,className:XP(Gj,o[`report-metadata-${r}`]),children:e}),LO("div",n?.length?{className:nz,children:n.map((e=>LO(fz,{value:e},e)))}:{className:nz,children:LO(fz,{value:t})})]}),pz=({testResult:e})=>{const{t:t}=OP("ui"),{labels:n,groupedLabels:r}=e??{},[i,o]=ce(!0);return LO("div",{className:"HMzudBb_",children:[LO(Lj,{isOpened:i,setIsOpen:o,counter:n?.length,title:t("labels")}),LO("div",{className:"G8UXauSk",children:i&&LO(uz,{groupedLabels:r})})]})},gz=({parameters:e})=>{const[t,n]=ce(!0),{t:r}=OP("ui");return LO("div",{className:"vlhZ6yiu",children:[LO(Lj,{isOpened:t,setIsOpen:n,counter:e?.length,title:r("parameters")}),LO("div",{className:"stx8B093",children:t&&LO(cz,{envInfo:e})})]})},mz=({isOpened:e,setIsOpen:t,title:n,icon:r,counter:i})=>LO("div",{className:"ZVl83t31",onClick:()=>t(!e),children:[LO(_E,{isOpened:e,icon:Vn.arrowsChevronDown}),LO("div",{className:"MCykzAEY",children:[LO(Wn,{id:r}),LO(Gn,{bold:!0,children:n}),LO(zi,{count:i,size:"s"})]})]}),vz=e=>{const{item:t}=e,n=xL(t?.duration),r=t.steps?.length,i=t.steps?.filter((e=>"attachment"===e.type))?.length;return LO("div",{className:kO,children:[Boolean(r)&&LO("div",{className:CO,children:[LO(Wn,{id:Vn.lineArrowsCornerDownRight,className:SO}),LO(Gn,{size:"s",children:r})]}),Boolean(i)&&LO("div",{className:CO,children:[LO(Wn,{id:Vn.lineFilesFileAttachment2,className:SO}),LO(Gn,{size:"s",children:i})]}),LO(Gn,{type:"ui",size:"s",className:"Lbzy38ql",children:n})]})},bz=e=>{const{parameters:t}=e;return LO("div",{className:"x7E22IMb",children:LO(cz,{size:"s",envInfo:t,columns:1})})},yz=e=>{const{item:t}=e;return LO("div",{className:"V59qwsC9",children:[Boolean(t?.parameters?.length)&&LO(bz,{parameters:t.parameters}),Boolean(t?.steps?.length)&&LO(T,{children:t.steps?.map(((e,t)=>"step"===e.type?LO(_z,{stepIndex:t+1,item:e},t):"attachment"===e.type?LO(EF,{stepIndex:t+1,item:e},t):null))})]})},_z=({item:e,stepIndex:t})=>{const[n,r]=ce(!1),i=Boolean(e?.steps?.length||e?.parameters?.length);return LO("div",{className:MO,children:[LO("div",{className:"BLj8jyeL",onClick:()=>r(!n),children:[i?LO(_E,{isOpened:n,icon:Vn.arrowsChevronDown,iconSize:"xs",className:i?"":"ltfK3AJk"}):LO("div",{className:"EqxJciQs"}),LO(fE,{status:e.status}),LO(Zn,{size:"s",className:TO,children:t}),LO(Gn,{className:"PSq1xZ_F",children:e.name}),LO(vz,{item:e})]}),i&&n&&LO(yz,{item:e})]})},wz={before:_z,after:_z,step:_z,attachment:EF},xz=({setup:e})=>{const[t,n]=ce(!1),{t:r}=OP("execution");return LO("div",{className:NO,children:[LO(mz,{icon:Vn.lineTimeClockStopwatch,isOpened:t,setIsOpen:n,counter:e?.length,title:r("setup")}),t&&LO("div",{className:OO,children:e?.map(((e,t)=>{const n=wz[e.type];return n?LO(n,{item:e,stepIndex:t+1,className:AO},t):null}))})]})},kz={step:_z,attachment:EF},Cz=({steps:e})=>{const[t,n]=ce(!0),{t:r}=OP("execution");return LO("div",{className:NO,children:[LO(mz,{icon:Vn.lineHelpersPlayCircle,isOpened:t,setIsOpen:n,counter:e?.length,title:r("body")}),t&&LO("div",{className:OO,children:e?.map(((e,t)=>{const{type:n}=e,r=kz[n];return r?LO(r,{item:e,stepIndex:t+1},t):null}))})]})},Sz={before:_z,after:_z,step:_z,attachment:EF},Mz=({teardown:e})=>{const[t,n]=ce(!1),{t:r}=OP("execution");return LO("div",{className:NO,children:[LO(mz,{icon:Vn.lineHelpersFlag,isOpened:t,setIsOpen:n,counter:e?.length,title:r("teardown")}),t&&LO("div",{className:OO,children:e?.map(((e,t)=>{const n=Sz[e.type];return n?LO(n,{item:e,stepIndex:t+1,className:AO},t):null}))})]})},Tz=({testResult:e})=>{const{error:t,parameters:n,groupedLabels:r,links:i,description:o,setup:a,steps:s,teardown:l}=e||{};return LO(T,{children:[Boolean(t?.message)&&LO("div",{className:"ysybXq6j",children:LO(Tj,{...t})}),Boolean(n?.length)&&LO(gz,{parameters:n}),Boolean(r&&Object.keys(r||{})?.length)&&LO(pz,{testResult:e}),Boolean(i?.length)&&LO(zj,{links:i}),Boolean(o)&&LO(Ej,{description:o}),LO("div",{className:"ngxaEBWQ",children:[Boolean(a?.length)&&LO(xz,{setup:a}),Boolean(s?.length)&&LO(Cz,{steps:s}),Boolean(l?.length)&&LO(Mz,{teardown:l})]})]})},Az=({testResultItem:e})=>{const{id:t,status:n,message:r,trace:i,stop:o,duration:a}=e,[s,l]=ce(!1),c=IF(o),u=xL(a),d=`testresult/${t}`;return LO("div",{children:[LO("div",{className:"icEXWH0q",onClick:()=>l(!s),children:[Boolean(r)&&LO(_E,{isOpened:s,icon:Vn.lineArrowsChevronDown}),LO("div",{className:"COrcA2CS",children:[LO(fE,{status:n,className:"Har2oz3M"}),LO(Gn,{className:"AVV9JXDC",children:c}),LO("div",{className:"bveFbTQm",children:[LO(Gn,{type:"ui",size:"s",className:"FIRhvdKc",children:u}),LO(er,{icon:Vn.lineGeneralLinkExternal,style:"ghost",size:"s",className:"O_j9Bgov",onClick:()=>rL(d)})]})]})]}),s&&r&&LO("div",{className:"SEWVHj8Z",children:LO(Tj,{message:r,trace:i})})]})},Nz=({testResult:e})=>{const{retries:t}=e??{},{t:n}=OP("empty");return LO("div",{className:Nj,children:t.length?t?.map(((e,t)=>LO(Az,{testResultItem:e},t))):LO("div",{className:Aj,children:n("no-retries-results")})})},Oz=({testResult:e})=>{const{currentTab:t}=bj();return LO({overview:Tz,history:Pj,attachments:FF,retries:Nz}[t],{testResult:e})},Pz=({testResult:e})=>LO(_j,{initialTab:"overview",children:[LO(kj,{testResult:e}),LO(Oz,{testResult:e})]});var Lz=({testResult:e})=>LO(T,{children:LO("div",{className:hL,children:e?LO(Pz,{testResult:e}):LO(Sj,{})})});const Ez=oO({loading:!0,error:void 0,data:void 0}),Fz=uO((()=>!Object.keys(Ez?.value?.data?.leavesById).length)),jz=oO({query:"",status:"total",filter:{flaky:!1,retry:!1,new:!1},sortBy:"order",direction:"asc"}),zz=uO((()=>{const{root:e,leavesById:t,groupsById:n}=Ez.value.data;return kE({group:e,leavesById:t,groupsById:n,filterOptions:jz.value})})),$z=uO((()=>CE(zz.value)));var Bz="dlLOOQT8",Rz="vyvjSUmg",Dz="pTNCfJfg";const Iz=()=>{const{t:e}=OP("empty");return ue((()=>{var e;e=UE.value,jz.value={...jz.value,status:e}}),[UE.value]),LO(hi,{source:Ez,renderLoader:()=>LO(pi,{}),renderData:()=>Fz.value?LO("div",{className:Dz,children:LO("div",{className:Bz,children:LO(Gn,{className:Rz,children:e("no-results")})})}):$z.value?LO("div",{className:Dz,children:LO("div",{className:Bz,children:[LO(Gn,{tag:"p",className:Rz,children:e("no-tests-found")}),LO(Jn,{className:"oRkZSoHE",type:"button",text:e("clear-filters"),size:"s",style:"outline",onClick:()=>{jz.value={query:"",status:"total",filter:{flaky:!1,retry:!1,new:!1},sortBy:"order",direction:"asc"}}})]})}):LO("div",{className:Dz,children:LO(zE,{tree:zz.value,statusFilter:UE.value,root:!0})})})};const Uz=oO({loading:!0,error:void 0,data:void 0}),Hz=uO((()=>!Object.keys(Uz?.value?.data?.leavesById).length)),qz=oO({query:"",status:"total",filter:{flaky:!1,retry:!1,new:!1},sortBy:"order",direction:"asc"}),Vz=uO((()=>{const{root:e,leavesById:t,groupsById:n}=Uz.value.data;return kE({group:e,leavesById:t,groupsById:n,filterOptions:qz.value})})),Wz=uO((()=>CE(Vz.value)));var Yz="sLYl7Pra",Gz="m2UQBrrI",Zz="nbXrFukM";const Xz=()=>{const{t:e}=OP("empty");return ue((()=>{var e;e=UE.value,qz.value={...qz.value,status:e}}),[UE.value]),LO(hi,{source:Uz,renderLoader:()=>LO(pi,{}),renderData:()=>Hz.value?LO("div",{className:Zz,children:LO("div",{className:Yz,children:LO(Gn,{className:Gz,children:e("no-results")})})}):Wz.value?LO("div",{className:Zz,children:LO("div",{className:Yz,children:[LO(Gn,{tag:"p",className:Gz,children:e("no-tests-found")}),LO(Jn,{className:"B5ZlHO6K",type:"button",text:e("clear-filters"),size:"s",style:"outline",onClick:()=>{qz.value={query:"",status:"total",filter:{flaky:!1,retry:!1,new:!1},sortBy:"order",direction:"asc"}}})]})}):LO("div",{className:Zz,children:LO(zE,{tree:Vz.value,statusFilter:UE.value,root:!0})})})},Kz=()=>{const{t:e}=OP("empty");return ue((()=>{var e;e=UE.value,TE.value={...TE.value,status:e}}),[UE.value]),LO(hi,{source:SE,renderLoader:()=>LO(pi,{}),renderData:()=>ME.value?LO("div",{className:iE,children:LO("div",{className:WL,children:LO(Gn,{className:GL,children:e("no-results")})})}):NE.value?LO("div",{className:iE,children:LO("div",{className:WL,children:[LO(Gn,{tag:"p",className:GL,children:e("no-tests-found")}),LO(Jn,{className:YL,type:"button",text:e("clear-filters"),size:"s",style:"outline",onClick:()=>{TE.value={query:"",status:"total",filter:{flaky:!1,retry:!1,new:!1},sortBy:"order",direction:"asc"}}})]})}):LO("div",{className:iE,children:LO(zE,{tree:AE.value,statusFilter:UE.value,root:!0})})})};var Qz="lMYxNqRg";const Jz={overview:()=>{},behaviors:()=>{const{params:e}=eL.value,{testResultId:t}=e;ue((()=>{(async()=>{$E.value={...$E.value,loading:!0,error:void 0};try{const e=await jO("widgets/behaviors.json");$E.value={data:e,error:void 0,loading:!1}}catch(e){$E.value={...$E.value,error:e.message,loading:!1}}})()}),[]),ue((()=>{t&&fL(t)}),[t]);const n=LO(hi,{source:uL,renderLoader:()=>LO(pi,{}),transformData:e=>e[t],renderError:()=>LO("div",{}),renderData:e=>LO(T,{children:LO("div",{className:"zZc6y7v6",children:LO(Lz,{testResult:e})},e?.id)})});return LO(kF,{left:LO((()=>{const{t:e}=OP("nav");return LO("div",{className:"zMmzgCM8",children:[LO(Xn,{size:"s",className:"p1AN6VZ2",children:e("behaviors")}),LO(eF,{}),LO(WE,{})]})}),{}),right:n})},categories:()=>{const{params:e}=eL.value,{testResultId:t}=e;ue((()=>{(async()=>{Ez.value={...Ez.value,loading:!0,error:void 0};try{const e=await jO("widgets/categories.json");Ez.value={data:e,error:void 0,loading:!1}}catch(e){Ez.value={...Ez.value,error:e.message,loading:!1}}})()}),[]),ue((()=>{t&&fL(t)}),[t]);const n=LO(hi,{source:uL,renderLoader:()=>LO(pi,{}),transformData:e=>e[t],renderError:()=>LO("div",{}),renderData:e=>LO(T,{children:LO("div",{className:"Z6JSWQNg",children:LO(Lz,{testResult:e})},e?.id)})});return LO(kF,{left:LO((()=>{const{t:e}=OP("nav");return LO("div",{className:"_27AJ8l7V",children:[LO(Xn,{size:"s",className:"yc9T8hmO",children:e("categories")}),LO(eF,{}),LO(Iz,{})]})}),{}),right:n})},graphs:()=>LO("div",{children:"Overview"}),packages:()=>{const{testResultId:e}=eL.value.params;ue((()=>{(async()=>{Uz.value={...Uz.value,loading:!0,error:void 0};try{const e=await jO("widgets/packages.json");Uz.value={data:e,error:void 0,loading:!1}}catch(e){Uz.value={...Uz.value,error:e.message,loading:!1}}})()}),[]),ue((()=>{e&&fL(e)}),[e]);const t=LO(hi,{source:uL,renderLoader:()=>LO(pi,{}),transformData:t=>t[e],renderError:()=>LO("div",{}),renderData:e=>LO(T,{children:LO("div",{className:"otlnAeuR",children:LO(Lz,{testResult:e})},e?.id)})});return LO(kF,{left:LO((()=>{const{t:e}=OP("nav");return LO("div",{className:"Ypntsuso",children:[LO(Xn,{size:"s",className:"NQ8xEHpy",children:e("packages")}),LO(eF,{}),LO(Xz,{})]})}),{}),right:t})},suites:()=>{const{params:e}=eL.value,{testResultId:t}=e;ue((()=>{(async()=>{SE.value={...SE.value,loading:!0,error:void 0};try{const e=await jO("widgets/tree.json");SE.value={data:e,error:void 0,loading:!1}}catch(e){SE.value={...SE.value,error:e.message,loading:!1}}})()}),[]),ue((()=>{t&&fL(t)}),[t]);const n=t?LO(hi,{source:uL,renderLoader:()=>LO(pi,{}),transformData:e=>e[t],renderData:e=>LO(T,{children:LO("div",{className:Qz,children:LO(Lz,{testResult:e})},e?.id)})}):LO("div",{className:Qz,children:LO(hi,{source:SE,renderLoader:()=>LO(pi,{}),renderData:()=>LO("div",{})})});return LO(kF,{left:LO((()=>{const{t:e}=OP("nav");return LO("div",{className:"rcXAje3q",children:[LO(Xn,{size:"s",className:"IDDAQ_al",children:e("suites")}),LO(eF,{}),LO(Kz,{})]})}),{}),right:n})},timeline:()=>LO("div",{children:"Overview"}),testresult:()=>{const{params:e}=eL.value,{id:t}=e;return ue((()=>{fL(t)}),[]),LO(hi,{source:uL,renderLoader:()=>LO(pi,{}),transformData:e=>e[t],renderError:()=>LO(Sj,{}),renderData:e=>LO(T,{children:LO("div",{children:LO(Lz,{testResult:e})},t)})})}},e$=()=>{ue((()=>{(()=>{const e=window.localStorage.getItem("theme")||$O;if(e)return void RO(e);const t=window.matchMedia("(prefers-color-scheme: dark)").matches;RO(t?"dark":"light")})(),(()=>{const e=localStorage.getItem("currentLocale")||AP||"en";PP(e)})(),tL()}),[]),ue((()=>(globalThis.addEventListener("hashchange",tL),()=>{globalThis.removeEventListener("hashchange",tL)})),[]);const e=fe((()=>Jz[eL.value.tabName]||(()=>null)),[eL.value.tabName]);return NP.value?LO(pL,{children:LO(e,{params:eL.value.params})}):LO(pi,{})},t$=document.getElementById("app");(async()=>{!function(e,t,n){var r,i,o,a;l.__&&l.__(e,t),i=(r="function"==typeof n)?null:n&&n.__k||t.__k,o=[],a=[],I(t,e=(!r&&n||t).__k=S(T,null,[e]),i||y,y,t.namespaceURI,!r&&n?[n]:i?null:t.firstChild?s.call(t.childNodes):null,o,!r&&n?n:i?i.__e:t.firstChild,r,a),U(o,e,a)}(LO(e$,{}),t$)})()}()}();
|