diff --git a/.gitignore b/.gitignore index 75234f8..f22b95a 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ dist-ssr .yarn/* !.yarn/patches/ +storybook-static diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 27c5f37..1207053 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -1,11 +1,12 @@ -import { css, cx } from '@/lib/css'; -import { theme } from '@/theme'; import { css as csl } from '@linaria/core'; import type { Preview } from '@storybook/react'; import 'ress'; import 'unfonts.css'; import { withRouter } from 'storybook-addon-remix-react-router'; +import { css, cx } from '@lib/css'; +import { theme } from '@theme'; + const preview: Preview = { parameters: { layout: 'fullscreen', diff --git a/src/.stories/components/corner.stories.tsx b/src/.stories/components/corner.stories.tsx index 4e528aa..f44ea5e 100644 --- a/src/.stories/components/corner.stories.tsx +++ b/src/.stories/components/corner.stories.tsx @@ -1,6 +1,7 @@ -import { GithubCorner } from '@/components/github'; import type { Meta, StoryObj } from '@storybook/react'; +import { GithubCorner } from '@components/github'; + const meta: Meta = { title: 'Components/Github/Corner', component: GithubCorner, diff --git a/src/.stories/components/footer.stories.tsx b/src/.stories/components/footer.stories.tsx index 1e0322a..c2cf820 100644 --- a/src/.stories/components/footer.stories.tsx +++ b/src/.stories/components/footer.stories.tsx @@ -1,6 +1,7 @@ -import { Footer as Component } from '@/components/layout'; import type { Meta, StoryObj } from '@storybook/react'; +import { Footer as Component } from '@components/layout'; + const meta: Meta = { title: 'Components/Layout/Footer', component: Component, diff --git a/src/.stories/components/grid.stories.tsx b/src/.stories/components/grid.stories.tsx index f48bc98..b0da788 100644 --- a/src/.stories/components/grid.stories.tsx +++ b/src/.stories/components/grid.stories.tsx @@ -1,10 +1,11 @@ -import { Layout as Component } from '@/components/layout'; -import { css, cx } from '@/lib/css'; -import { useDimensions } from '@/lib/hooks'; -import { theme } from '@/theme'; import type { Meta, StoryObj } from '@storybook/react'; import type { ReactNode } from 'react'; +import { Layout as Component } from '@components/layout'; +import { css, cx } from '@lib/css'; +import { useDimensions } from '@lib/hooks'; +import { theme } from '@theme'; + const meta: Meta = { title: 'Components/Layout/Layout', }; diff --git a/src/.stories/components/loc._.tsx b/src/.stories/components/loc._.tsx index 2d73b78..3ea2e7f 100644 --- a/src/.stories/components/loc._.tsx +++ b/src/.stories/components/loc._.tsx @@ -1,6 +1,7 @@ -import { LOC } from '@/components/github'; import type { Meta, StoryObj } from '@storybook/react'; +import { LOC } from '@components/github'; + const meta: Meta = { title: 'Components/Github/Lines of Code', component: LOC, diff --git a/src/.stories/components/people_line.stories.tsx b/src/.stories/components/people_line.stories.tsx index b03e62d..1a413fe 100644 --- a/src/.stories/components/people_line.stories.tsx +++ b/src/.stories/components/people_line.stories.tsx @@ -1,6 +1,7 @@ -import { PeopleLine as Component, Person, type PersonProps } from '@/components/people_line'; import type { Meta, StoryObj } from '@storybook/react'; +import { PeopleLine as Component, Person, type PersonProps } from '@components/people_line'; + const meta: Meta = { title: 'Components/People Line', component: Component, diff --git a/src/.stories/components/section.stories.tsx b/src/.stories/components/section.stories.tsx index 90d4ec4..e80ea30 100644 --- a/src/.stories/components/section.stories.tsx +++ b/src/.stories/components/section.stories.tsx @@ -1,8 +1,9 @@ -import { Section as Component, type SectionProps } from '@/components/layout'; -import type { SectionHeaderProps } from '@/components/layout/section/section_header'; -import { css } from '@/lib/css'; import type { Meta, StoryObj } from '@storybook/react'; +import { Section as Component, type SectionProps } from '@components/layout'; +import type { SectionHeaderProps } from '@components/layout/section/section_header'; +import { css } from '@lib/css'; + const meta: Meta = { title: 'Components/Layout/Section', component: Component, @@ -22,7 +23,12 @@ export const Section: StoryObj = { render: (args: Arguments) => { return ( - +
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec dui nec ligula bibendum fringilla. Nulla facilisi. Donec ut nunc nec nunc facilisis fermentum. Nulla facilisi. diff --git a/src/.stories/components/stats.stories.tsx b/src/.stories/components/stats.stories.tsx index 89d5a53..3fc466a 100644 --- a/src/.stories/components/stats.stories.tsx +++ b/src/.stories/components/stats.stories.tsx @@ -1,6 +1,7 @@ -import { GithubStats } from '@/components/github'; import type { Meta, StoryObj } from '@storybook/react'; +import { GithubStats } from '@components/github'; + const meta: Meta = { title: 'Components/Github/Stats', component: GithubStats, diff --git a/src/.stories/components/timeline.stories.tsx b/src/.stories/components/timeline.stories.tsx index 6401c99..8985342 100644 --- a/src/.stories/components/timeline.stories.tsx +++ b/src/.stories/components/timeline.stories.tsx @@ -1,7 +1,8 @@ -import type { TimelineItemProps } from '@/components/timeline'; -import { Timeline as Component, TimelineItem } from '@/components/timeline'; import type { Meta, StoryObj } from '@storybook/react'; +import type { TimelineItemProps } from '@components/timeline'; +import { Timeline as Component, TimelineItem } from '@components/timeline'; + const meta: Meta = { title: 'Components/Timeline', component: Component, diff --git a/src/.stories/home/about.stories.tsx b/src/.stories/home/about.stories.tsx index f50bb1f..b7cd086 100644 --- a/src/.stories/home/about.stories.tsx +++ b/src/.stories/home/about.stories.tsx @@ -1,6 +1,7 @@ -import { Home } from '@/home'; import type { Meta, StoryObj } from '@storybook/react'; +import { Home } from '@home'; + const meta: Meta = { title: 'Home/About', component: Home.About, diff --git a/src/.stories/home/career.stories.tsx b/src/.stories/home/career.stories.tsx index cbc5998..f035221 100644 --- a/src/.stories/home/career.stories.tsx +++ b/src/.stories/home/career.stories.tsx @@ -1,6 +1,7 @@ -import { Home } from '@/home'; import type { Meta, StoryObj } from '@storybook/react'; +import { Home } from '@home'; + const meta: Meta = { title: 'Home/Career', component: Home.Career, diff --git a/src/.stories/home/home.stories.tsx b/src/.stories/home/home.stories.tsx index 81d5832..43a0110 100644 --- a/src/.stories/home/home.stories.tsx +++ b/src/.stories/home/home.stories.tsx @@ -1,6 +1,7 @@ -import { Home as Component } from '@/home'; import type { Meta, StoryObj } from '@storybook/react'; +import { Home as Component } from '@home'; + const meta: Meta = { title: 'Pages/Home', component: Component, diff --git a/src/.stories/home/medium.stories.tsx b/src/.stories/home/medium.stories.tsx index 10e98fc..3604fd8 100644 --- a/src/.stories/home/medium.stories.tsx +++ b/src/.stories/home/medium.stories.tsx @@ -1,6 +1,7 @@ -import { Home } from '@/home'; import type { Meta, StoryObj } from '@storybook/react'; +import { Home } from '@home'; + const meta: Meta = { title: 'Home/Medium', component: Home.Medium, diff --git a/src/.stories/home/portfolio.stories.tsx b/src/.stories/home/portfolio.stories.tsx index 0969c28..3aeacbf 100644 --- a/src/.stories/home/portfolio.stories.tsx +++ b/src/.stories/home/portfolio.stories.tsx @@ -1,6 +1,7 @@ -import { Home } from '@/home'; import type { Meta, StoryObj } from '@storybook/react'; +import { Home } from '@home'; + const meta: Meta = { title: 'Home/Portfolio', component: Home.Portfolio, diff --git a/src/.stories/theme/font.stories.tsx b/src/.stories/theme/font.stories.tsx index 48d4c2b..e0c4c93 100644 --- a/src/.stories/theme/font.stories.tsx +++ b/src/.stories/theme/font.stories.tsx @@ -1,7 +1,8 @@ -import { css } from '@/lib/css'; -import { theme } from '@/theme'; import type { Meta, StoryObj } from '@storybook/react'; +import { css } from '@lib/css'; +import { theme } from '@theme'; + const meta: Meta = { title: 'Theme/Font', }; diff --git a/src/.stories/theme/icons.stories.tsx b/src/.stories/theme/icons.stories.tsx index 80755e3..1b2a4a4 100644 --- a/src/.stories/theme/icons.stories.tsx +++ b/src/.stories/theme/icons.stories.tsx @@ -1,7 +1,8 @@ -import { toProps } from '@/lib/css'; -import { theme } from '@/theme'; import type { Meta, StoryObj } from '@storybook/react'; +import { toProps } from '@lib/css'; +import { theme } from '@theme'; + const meta: Meta = { title: 'Theme/Icons', }; diff --git a/src/.stories/theme/spacing.stories.tsx b/src/.stories/theme/spacing.stories.tsx index fd7cf46..537a56a 100644 --- a/src/.stories/theme/spacing.stories.tsx +++ b/src/.stories/theme/spacing.stories.tsx @@ -1,9 +1,10 @@ -import { css, cx } from '@/lib/css'; -import { useDimensions } from '@/lib/hooks'; -import { theme } from '@/theme'; -import { type UtopiaSize } from '@/theme/spacing'; import type { Meta, StoryObj } from '@storybook/react'; +import { css, cx } from '@lib/css'; +import { useDimensions } from '@lib/hooks'; +import { theme } from '@theme'; +import { type UtopiaSize } from '@theme/spacing'; + const meta: Meta = { title: 'Theme/Spacing', }; @@ -13,21 +14,66 @@ export default meta; const { spacing } = theme.vars; const sizes: Record = { - step0: css`height: var(${spacing.step0}); width: var(${spacing.step0});`, - step1: css`height: var(${spacing.step1}); width: var(${spacing.step1});`, - step2: css`height: var(${spacing.step2}); width: var(${spacing.step2});`, - step3: css`height: var(${spacing.step3}); width: var(${spacing.step3});`, - step4: css`height: var(${spacing.step4}); width: var(${spacing.step4});`, - step5: css`height: var(${spacing.step5}); width: var(${spacing.step5});`, - step6: css`height: var(${spacing.step6}); width: var(${spacing.step6});`, - step7: css`height: var(${spacing.step7}); width: var(${spacing.step7});`, - step8: css`height: var(${spacing.step8}); width: var(${spacing.step8});`, - step9: css`height: var(${spacing.step9}); width: var(${spacing.step9});`, - avatar: css`height: var(${spacing.avatar}); width: var(${spacing.avatar});`, - sectionBottom: css`height: var(${spacing.sectionBottom}); width: var(${spacing.sectionBottom});`, - sectionTop: css`height: var(${spacing.sectionTop}); width: var(${spacing.sectionTop});`, - portfolioItemHeight: css`height: var(${spacing.portfolioItemHeight}); width: var(${spacing.portfolioItemHeight});`, - portfolioItemWidth: css`height: var(${spacing.portfolioItemWidth}); width: var(${spacing.portfolioItemWidth});`, + step0: css` + height: var(${spacing.step0}); + width: var(${spacing.step0}); + `, + step1: css` + height: var(${spacing.step1}); + width: var(${spacing.step1}); + `, + step2: css` + height: var(${spacing.step2}); + width: var(${spacing.step2}); + `, + step3: css` + height: var(${spacing.step3}); + width: var(${spacing.step3}); + `, + step4: css` + height: var(${spacing.step4}); + width: var(${spacing.step4}); + `, + step5: css` + height: var(${spacing.step5}); + width: var(${spacing.step5}); + `, + step6: css` + height: var(${spacing.step6}); + width: var(${spacing.step6}); + `, + step7: css` + height: var(${spacing.step7}); + width: var(${spacing.step7}); + `, + step8: css` + height: var(${spacing.step8}); + width: var(${spacing.step8}); + `, + step9: css` + height: var(${spacing.step9}); + width: var(${spacing.step9}); + `, + avatar: css` + height: var(${spacing.avatar}); + width: var(${spacing.avatar}); + `, + sectionBottom: css` + height: var(${spacing.sectionBottom}); + width: var(${spacing.sectionBottom}); + `, + sectionTop: css` + height: var(${spacing.sectionTop}); + width: var(${spacing.sectionTop}); + `, + portfolioItemHeight: css` + height: var(${spacing.portfolioItemHeight}); + width: var(${spacing.portfolioItemHeight}); + `, + portfolioItemWidth: css` + height: var(${spacing.portfolioItemWidth}); + width: var(${spacing.portfolioItemWidth}); + `, }; const Box = ({ size }: { size: UtopiaSize }) => { diff --git a/src/App.tsx b/src/App.tsx index 3974834..0140e86 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,4 +1,4 @@ -import { GithubCorner } from '@/components/github/corner'; +import { GithubCorner } from '@components/github/corner'; function App() { return ( diff --git a/src/components/github/corner.styles.ts b/src/components/github/corner.styles.ts index 91ac241..5545658 100644 --- a/src/components/github/corner.styles.ts +++ b/src/components/github/corner.styles.ts @@ -1,4 +1,4 @@ -import { css, cx, toProps } from '@/lib/css'; +import { css, cx, toProps } from '@lib/css'; const svgRoot = toProps(css` fill: #fff; diff --git a/src/components/github/loc_language.styles.ts b/src/components/github/loc_language.styles.ts index cb5de11..01157d0 100644 --- a/src/components/github/loc_language.styles.ts +++ b/src/components/github/loc_language.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars, decl } = theme; @@ -12,7 +12,7 @@ const header = toProps(css` ${decl.font.sansSerif.extraBold} ${decl.font.size.stepN1} text-transform: uppercase; - letter-spacing: calc(var(${vars.font.size.stepN1}) * .14); + letter-spacing: calc(var(${vars.font.size.stepN1}) * 0.14); margin-top: var(${vars.spacing.step3}); `); @@ -78,7 +78,7 @@ const percent = (width: string, background: string) => border-radius: 0 5px 5px 0; border-width: 1px; border-style: solid; - `, + `, { background, width, diff --git a/src/components/github/loc_language.tsx b/src/components/github/loc_language.tsx index 6cb3915..01e7ed6 100644 --- a/src/components/github/loc_language.tsx +++ b/src/components/github/loc_language.tsx @@ -1,6 +1,7 @@ -import { languageColors } from '@/lib/github_language_colors'; import numeral from 'numeral'; +import { languageColors } from '@lib/github_language_colors'; + import styles from './loc_language.styles'; export const Language = ({ loc, overallTotal }: { loc: LinesOfCode; overallTotal: number }) => { diff --git a/src/components/github/numbers.styles.ts b/src/components/github/numbers.styles.ts index 3e1adcb..0025336 100644 --- a/src/components/github/numbers.styles.ts +++ b/src/components/github/numbers.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars, decl } = theme; diff --git a/src/components/github/stats.tsx b/src/components/github/stats.tsx index 8ddaf88..0dee377 100644 --- a/src/components/github/stats.tsx +++ b/src/components/github/stats.tsx @@ -1,4 +1,4 @@ -import { loc, user } from '@/content/github.json'; +import { loc, user } from '@content/github.json'; import { LOC } from './loc'; import { Numbers } from './numbers'; diff --git a/src/components/layout/footer/footer.styles.ts b/src/components/layout/footer/footer.styles.ts index 7ad64f3..7c87027 100644 --- a/src/components/layout/footer/footer.styles.ts +++ b/src/components/layout/footer/footer.styles.ts @@ -1,13 +1,11 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { decl, vars } = theme; -const root = toProps( - css` - ${decl.color.background.dark} - padding: var(${vars.spacing.step4}) 0; - `, -); +const root = toProps(css` + ${decl.color.background.dark} + padding: var(${vars.spacing.step4}) 0; +`); export default { root }; diff --git a/src/components/layout/footer/footer.tsx b/src/components/layout/footer/footer.tsx index eaf49c4..e0da36c 100644 --- a/src/components/layout/footer/footer.tsx +++ b/src/components/layout/footer/footer.tsx @@ -1,4 +1,4 @@ -import { useResume } from '@/lib/hooks'; +import { useResume } from '@lib/hooks'; import { SiteCredits } from './site_credits'; import { SiteLogo } from './site_logo'; diff --git a/src/components/layout/footer/site_credits.styles.ts b/src/components/layout/footer/site_credits.styles.ts index d69c752..2922f5a 100644 --- a/src/components/layout/footer/site_credits.styles.ts +++ b/src/components/layout/footer/site_credits.styles.ts @@ -1,65 +1,62 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars, decl } = theme; -const root = toProps( - css` - ${decl.font.size.stepN1}; - ${decl.color.background.dark} - ${decl.font.color.text} +const root = toProps(css` + ${decl.font.size.stepN1}; + ${decl.color.background.dark} + ${decl.font.color.text} margin-top: var(${vars.spacing.sectionBottom}); - display: flex; - flex-flow: row wrap; - justify-content: center; - align-items: center; + display: flex; + flex-flow: row wrap; + justify-content: center; + align-items: center; - & > span { - display: inline-block; - position: relative; - padding: var(${vars.spacing.step0}) var(${vars.spacing.step5}); + & > span { + display: inline-block; + position: relative; + padding: var(${vars.spacing.step0}) var(${vars.spacing.step5}); - & > a { - display: inline-block; - &:hover, - &:active, - &:focus { - ${decl.font.color.lightAccent} - } - } - - &:before { - content: '|'; - position: absolute; - left: -2px; + & > a { + display: inline-block; + &:hover, + &:active, + &:focus { + ${decl.font.color.lightAccent} } + } - &:first-child:before { - content: ''; - } + &:before { + content: '|'; + position: absolute; + left: -2px; } + &:first-child:before { + content: ''; + } + } + + @media (max-width: 600px) { + &:before { + content: ''; + width: 100%; + order: 1; + } + + & > :nth-child(n + 2) { + order: 1; - @media (max-width: 600px) { &:before { content: ''; - width: 100%; - order: 1; } - - & > :nth-child(n + 2) { - order: 1; + } - &:before { - content: ''; - } - } - - & > :nth-child(n + 3):before { - content: '|'; - } + & > :nth-child(n + 3):before { + content: '|'; } - `, -); + } +`); export default { root }; diff --git a/src/components/layout/footer/site_logo.styles.ts b/src/components/layout/footer/site_logo.styles.ts index df04c02..bdd27b0 100644 --- a/src/components/layout/footer/site_logo.styles.ts +++ b/src/components/layout/footer/site_logo.styles.ts @@ -1,19 +1,14 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars } = theme; -const root = toProps( - css` - padding: var(${vars.spacing.step2}) 0; - margin: var(${vars.spacing.step5}) 0; - text-align: center; - `, -); +const root = toProps(css` + padding: var(${vars.spacing.step2}) 0; + margin: var(${vars.spacing.step5}) 0; + text-align: center; +`); -const link = toProps( - css` - `, -); +const link = toProps(css``); export default { root, link }; diff --git a/src/components/layout/footer/social_profiles.styles.ts b/src/components/layout/footer/social_profiles.styles.ts index 3d7f9f6..aef41e1 100644 --- a/src/components/layout/footer/social_profiles.styles.ts +++ b/src/components/layout/footer/social_profiles.styles.ts @@ -1,78 +1,72 @@ -import { css, type CSSProps, cx, toProps } from '@/lib/css'; -import { theme } from '@/theme'; -import type { IconSocial } from '@/theme/icons'; +import { css, type CSSProps, cx, toProps } from '@lib/css'; +import { theme } from '@theme'; +import type { IconSocial } from '@theme/icons'; const { vars, icons, decl } = theme; -const root = toProps( - css` - display: flex; - list-style: none; - flex-flow: row wrap; - justify-content: center; - - & a { - ${decl.font.color.light} - - &:hover, +const root = toProps(css` + display: flex; + list-style: none; + flex-flow: row wrap; + justify-content: center; + + & a { + ${decl.font.color.light} + + &:hover, &:active, &:focus { - ${decl.font.color.light} - } + ${decl.font.color.light} } + } + + @media (max-width: 600px) { + &:before { + content: ''; + width: 100%; + order: 1; + } + + & > li:nth-child(n + 4) { + order: 1; - @media (max-width: 600px) { &:before { content: ''; - width: 100%; - order: 1; - } - - & > li:nth-child(n + 4) { - order: 1; - - &:before { - content: ''; - } - } - - & > li:nth-child(n + 5):before { - content: '|'; } } - `, -); - -const item = toProps( - css` - ${decl.font.sansSerif.light}; - ${decl.font.size.stepN1}; - letter-spacing: calc(var(${vars.font.size.stepN1}) * .25); - padding: var(${vars.spacing.step1}) var(${vars.spacing.step3}); - position: relative; - &:before { + & > li:nth-child(n + 5):before { content: '|'; - position: absolute; - ${decl.font.color.text}; - left: -2px; } + } +`); - &:first-child:before { - content: ''; - } - `, -); - -const link = toProps( - css` - text-transform: uppercase; - display: flex; - align-items: center; - justify-content: center; - gap: var(${vars.spacing.step1}); - `, -); +const item = toProps(css` + ${decl.font.sansSerif.light}; + ${decl.font.size.stepN1}; + letter-spacing: calc(var(${vars.font.size.stepN1}) * 0.25); + padding: var(${vars.spacing.step1}) var(${vars.spacing.step3}); + position: relative; + + &:before { + content: '|'; + position: absolute; + ${decl.font.color.text}; + left: -2px; + } + + &:first-child:before { + content: ''; + } +`); + +const link = toProps(css` + text-transform: uppercase; + display: flex; + align-items: center; + justify-content: center; + gap: var(${vars.spacing.step1}); +`); const logo = css` ${decl.font.size.step0} diff --git a/src/components/layout/footer/social_profiles.tsx b/src/components/layout/footer/social_profiles.tsx index 7840221..1ced454 100644 --- a/src/components/layout/footer/social_profiles.tsx +++ b/src/components/layout/footer/social_profiles.tsx @@ -1,4 +1,4 @@ -import type { IconSocial } from '@/theme/icons'; +import type { IconSocial } from '@theme/icons'; import styles from './social_profiles.styles'; diff --git a/src/components/layout/layout.styles.ts b/src/components/layout/layout.styles.ts index 2a662bd..d7f2f82 100644 --- a/src/components/layout/layout.styles.ts +++ b/src/components/layout/layout.styles.ts @@ -1,16 +1,12 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; -const outer = toProps( - css` - ${theme.decl.grid.container} - `, -); +const outer = toProps(css` + ${theme.decl.grid.container} +`); -const inner = toProps( - css` - ${theme.decl.grid.root} - `, -); +const inner = toProps(css` + ${theme.decl.grid.root} +`); export default { outer, inner }; diff --git a/src/components/layout/layout.tsx b/src/components/layout/layout.tsx index 6cca5fe..27b398f 100644 --- a/src/components/layout/layout.tsx +++ b/src/components/layout/layout.tsx @@ -1,5 +1,6 @@ import React from 'react'; -import { cx } from '@/lib/css'; + +import { cx } from '@lib/css'; import { Footer } from './footer'; diff --git a/src/components/layout/section/section.styles.ts b/src/components/layout/section/section.styles.ts index 499c3a6..6ed1b00 100644 --- a/src/components/layout/section/section.styles.ts +++ b/src/components/layout/section/section.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars } = theme; diff --git a/src/components/layout/section/section.tsx b/src/components/layout/section/section.tsx index b1643e0..5af60fe 100644 --- a/src/components/layout/section/section.tsx +++ b/src/components/layout/section/section.tsx @@ -1,8 +1,9 @@ -import { Layout } from '@/components/layout'; -import { cx } from '@/lib/css'; -import { slot, useSlots } from '@/lib/hooks'; import type { ReactNode } from 'react'; +import { Layout } from '@components/layout'; +import { cx } from '@lib/css'; +import { slot, useSlots } from '@lib/hooks'; + import { SectionDivider as Divider } from './section_divider'; import { SectionHeader } from './section_header'; import { SectionLink as Link } from './section_link'; diff --git a/src/components/layout/section/section_divider.styles.ts b/src/components/layout/section/section_divider.styles.ts index d3d0b91..4258aca 100644 --- a/src/components/layout/section/section_divider.styles.ts +++ b/src/components/layout/section/section_divider.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars } = theme; diff --git a/src/components/layout/section/section_header.styles.ts b/src/components/layout/section/section_header.styles.ts index 9c0bdf0..5689dd0 100644 --- a/src/components/layout/section/section_header.styles.ts +++ b/src/components/layout/section/section_header.styles.ts @@ -1,5 +1,5 @@ -import { css, cx, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, cx, toProps } from '@lib/css'; +import { theme } from '@theme'; const { decl, vars } = theme; diff --git a/src/components/layout/section/section_header.tsx b/src/components/layout/section/section_header.tsx index 37db9f1..4d88e2b 100644 --- a/src/components/layout/section/section_header.tsx +++ b/src/components/layout/section/section_header.tsx @@ -1,4 +1,4 @@ -import { cx } from '@/lib/css'; +import { cx } from '@lib/css'; import styles from './section_header.styles'; diff --git a/src/components/layout/section/section_link.styles.ts b/src/components/layout/section/section_link.styles.ts index 54abbb5..0f5edf5 100644 --- a/src/components/layout/section/section_link.styles.ts +++ b/src/components/layout/section/section_link.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { decl, vars } = theme; @@ -16,13 +16,14 @@ const link = toProps(css` display: block; text-transform: uppercase; - letter-spacing: calc(var(${vars.font.size.stepN1}) * .25); + letter-spacing: calc(var(${vars.font.size.stepN1}) * 0.25); text-align: center; padding: var(${vars.spacing.step4}) var(${vars.spacing.step9}); line-height: var(${vars.font.size.step3}); } - a&:hover, a&:focus { + a&:hover, + a&:focus { ${decl.font.color.light} ${decl.color.background.accent} } diff --git a/src/components/layout/section/section_link.tsx b/src/components/layout/section/section_link.tsx index 8d56c69..43144b6 100644 --- a/src/components/layout/section/section_link.tsx +++ b/src/components/layout/section/section_link.tsx @@ -1,4 +1,4 @@ -import { cx } from '@/lib/css'; +import { cx } from '@lib/css'; import styles from './section_link.styles'; diff --git a/src/components/people_line/people_line.styles.ts b/src/components/people_line/people_line.styles.ts index bd8e6d3..dbd9a07 100644 --- a/src/components/people_line/people_line.styles.ts +++ b/src/components/people_line/people_line.styles.ts @@ -1,10 +1,11 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; import { css as csl } from '@linaria/core'; import 'swiper/css'; import 'swiper/css/navigation'; import 'swiper/css/pagination'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; + const { decl, vars } = theme; csl` @@ -71,7 +72,7 @@ export const root = toProps(css` padding: 0 var(${vars.spacing.step9}); position: relative; - &:before, + &:before, &:after { position: absolute; content: ''; @@ -84,14 +85,18 @@ export const root = toProps(css` &:before { left: calc(var(${vars.spacing.step8}) * -1); background: linear-gradient( - to left, var(${vars.color.background.subtle}), var(${vars.color.background.dark}) + to left, + var(${vars.color.background.subtle}), + var(${vars.color.background.dark}) ); } &:after { right: calc(var(${vars.spacing.step8}) * -1); background: linear-gradient( - to right, var(${vars.color.background.subtle}), var(${vars.color.background.dark}) + to right, + var(${vars.color.background.subtle}), + var(${vars.color.background.dark}) ); } `); diff --git a/src/components/people_line/person.styles.ts b/src/components/people_line/person.styles.ts index b22081b..05a85aa 100644 --- a/src/components/people_line/person.styles.ts +++ b/src/components/people_line/person.styles.ts @@ -1,12 +1,14 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars, decl } = theme; const root = toProps(css` --person-avatar-size: var(${vars.spacing.avatar}); --person-avatar-shadow: var(${vars.spacing.step1}); - --person-padding-left: calc(var(--person-avatar-size) + var(--person-avatar-shadow) + var(${vars.spacing.step6})); + --person-padding-left: calc( + var(--person-avatar-size) + var(--person-avatar-shadow) + var(${vars.spacing.step6}) + ); --person-padding-top: var(${vars.spacing.step9}); position: relative; @@ -25,7 +27,7 @@ const root = toProps(css` width: 1px; height: var(--person-padding-top); position: absolute; - left: calc((var(--person-avatar-size) + (var(--person-avatar-shadow)*2)) / 2); + left: calc((var(--person-avatar-size) + (var(--person-avatar-shadow) * 2)) / 2); top: 0; background-color: var(${vars.color.border.grid}); } diff --git a/src/components/people_line/person.tsx b/src/components/people_line/person.tsx index ad784ee..f1323d1 100644 --- a/src/components/people_line/person.tsx +++ b/src/components/people_line/person.tsx @@ -6,7 +6,7 @@ export interface PersonProps { imageKey: string; } -import { useAvatar } from '@/lib/hooks/use_people'; +import { useAvatar } from '@lib/hooks/use_people'; import styles from './person.styles'; diff --git a/src/components/portfolio/portfolio_grid.styles.ts b/src/components/portfolio/portfolio_grid.styles.ts index df07c73..07df312 100644 --- a/src/components/portfolio/portfolio_grid.styles.ts +++ b/src/components/portfolio/portfolio_grid.styles.ts @@ -1,33 +1,31 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { decl } = theme; -const root = toProps( - css` - display: grid; - ${decl.color.border.grid} - border-style: solid; - border-width: 1px 0 0 1px; +const root = toProps(css` + display: grid; + ${decl.color.border.grid} + border-style: solid; + border-width: 1px 0 0 1px; - @media (max-width: 975px) and (min-width: 600px) { - grid-template-columns: repeat(2, auto); - } + @media (max-width: 975px) and (min-width: 600px) { + grid-template-columns: repeat(2, auto); + } - @media (max-width: 600px) { - grid-template-columns: repeat(1, auto); - } + @media (max-width: 600px) { + grid-template-columns: repeat(1, auto); + } - grid-template-columns: repeat(3, auto); + grid-template-columns: repeat(3, auto); - & > * { - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - flex-grow: 1; - } - `, -); + & > * { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + flex-grow: 1; + } +`); export default { root }; diff --git a/src/components/portfolio/portfolio_grid.tsx b/src/components/portfolio/portfolio_grid.tsx index 17dd3ed..65a9fa3 100644 --- a/src/components/portfolio/portfolio_grid.tsx +++ b/src/components/portfolio/portfolio_grid.tsx @@ -1,4 +1,4 @@ -import { useEntryIds } from '@/lib/hooks/use_portfolio'; +import { useEntryIds } from '@lib/hooks/use_portfolio'; import { PortfolioItem } from './portfolio_item'; diff --git a/src/components/portfolio/portfolio_item.styles.ts b/src/components/portfolio/portfolio_item.styles.ts index 98e0b28..0b9e768 100644 --- a/src/components/portfolio/portfolio_item.styles.ts +++ b/src/components/portfolio/portfolio_item.styles.ts @@ -1,5 +1,5 @@ -import { css as css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css as css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars, icons, decl: CSS } = theme; @@ -29,7 +29,7 @@ const root = (image: string) => position: relative; & { - a { + a { cursor: pointer; } @@ -38,11 +38,11 @@ const root = (image: string) => opacity: 0; transition: all 0.3s; } - + > p { top: var(${vars.spacing.step7}); } - + > footer { right: var(${vars.spacing.step9}); } @@ -50,7 +50,7 @@ const root = (image: string) => &::before, &::after { - content: ""; + content: ''; position: absolute; top: 0; left: 0; @@ -67,11 +67,7 @@ const root = (image: string) => &::after { opacity: 0.8; - background: linear-gradient( - to bottom, - transparent 0%, - #000 100% - ); + background: linear-gradient(to bottom, transparent 0%, #000 100%); z-index: 1; } @@ -99,186 +95,176 @@ const root = (image: string) => }, ); -const header = toProps( - css` - bottom: var(${vars.spacing.step3}); - left: var(${vars.spacing.step5}); - position: absolute; - z-index: 3; - `, -); - -const title = toProps( - css` - ${CSS.font.size.stepN1}; - letter-spacing: calc(var(${vars.font.size.step1}) * 0.1); +const header = toProps(css` + bottom: var(${vars.spacing.step3}); + left: var(${vars.spacing.step5}); + position: absolute; + z-index: 3; +`); - @media (max-width: 975px) and (min-width: 600px) { - ${CSS.font.size.step0} - letter-spacing: calc(var(${vars.font.size.step2}) * 0.1); - } +const title = toProps(css` + ${CSS.font.size.stepN1}; + letter-spacing: calc(var(${vars.font.size.step1}) * 0.1); - @media (max-width: 600px) { - ${CSS.font.size.step1} - letter-spacing: calc(var(${vars.font.size.step3}) * 0.1); - } + @media (max-width: 975px) and (min-width: 600px) { + ${CSS.font.size.step0} + letter-spacing: calc(var(${vars.font.size.step2}) * 0.1); + } + + @media (max-width: 600px) { + ${CSS.font.size.step1} + letter-spacing: calc(var(${vars.font.size.step3}) * 0.1); + } + + ${CSS.font.color.light} + margin-bottom: var(${vars.spacing.step0}); + text-transform: uppercase; +`); + +const caption = toProps(css` + left: var(${vars.spacing.step5}); + line-height: var(${vars.spacing.step5}); + right: var(${vars.spacing.step5}); + top: var(${vars.spacing.step5}); + + @media (max-width: 975px) and (min-width: 600px) { + left: var(${vars.spacing.step6}); + line-height: var(${vars.spacing.step6}); + right: var(${vars.spacing.step6}); + top: var(${vars.spacing.step6}); + } + + @media (max-width: 600px) { + left: var(${vars.spacing.step9}); + line-height: var(${vars.spacing.step9}); + right: var(${vars.spacing.step9}); + top: var(${vars.spacing.step9}); + } + + ${CSS.font.color.light} + ${CSS.font.sansSerif.regular} + position: absolute; + z-index: 3; + & a { ${CSS.font.color.light} - margin-bottom: var(${vars.spacing.step0}); - text-transform: uppercase; - `, -); - -const caption = toProps( - css` - left: var(${vars.spacing.step5}); - line-height: var(${vars.spacing.step5}); - right: var(${vars.spacing.step5}); - top: var(${vars.spacing.step5}); + border: 2px solid var(${vars.color.background.light}); + background: var(${vars.color.background.dark}); - @media (max-width: 975px) and (min-width: 600px) { - left: var(${vars.spacing.step6}); - line-height: var(${vars.spacing.step6}); - right: var(${vars.spacing.step6}); - top: var(${vars.spacing.step6}); + &:hover { + ${CSS.font.color.dark} + background: var(${vars.color.background.light}); } + } +`); - @media (max-width: 600px) { - left: var(${vars.spacing.step9}); - line-height: var(${vars.spacing.step9}); - right: var(${vars.spacing.step9}); - top: var(${vars.spacing.step9}); - } +const tags = toProps(css` + ${CSS.font.size.stepN1}; + letter-spacing: calc(var(${vars.font.size.step1}) * 0.08); - ${CSS.font.color.light} - ${CSS.font.sansSerif.regular} - position: absolute; - z-index: 3; - - & a { - ${CSS.font.color.light} - border: 2px solid var(${vars.color.background.light}); - background: var(${vars.color.background.dark}); - - &:hover { - ${CSS.font.color.dark} - background: var(${vars.color.background.light}); - } - } - `, -); - -const tags = toProps( - css` - ${CSS.font.size.stepN1}; - letter-spacing: calc(var(${vars.font.size.step1}) * 0.08); - - @media (max-width: 975px) and (min-width: 600px) { - ${CSS.font.size.step0} - letter-spacing: calc(var(${vars.font.size.step2}) * 0.08); - } + @media (max-width: 975px) and (min-width: 600px) { + ${CSS.font.size.step0} + letter-spacing: calc(var(${vars.font.size.step2}) * 0.08); + } - @media (max-width: 600px) { - ${CSS.font.size.step1} - letter-spacing: calc(var(${vars.font.size.step3}) * 0.08); - } + @media (max-width: 600px) { + ${CSS.font.size.step1} + letter-spacing: calc(var(${vars.font.size.step3}) * 0.08); + } - & > a { - ${CSS.font.color.dim} + & > a { + ${CSS.font.color.dim} - ${CSS.font.sansSerif.light} + ${CSS.font.sansSerif.light} &:hover { - ${CSS.font.color.light} - } - } - `, -); - -const details = toProps( - css` - ${CSS.font.size.stepN1}; - letter-spacing: calc(var(${vars.font.size.step1}) * 0.08); - - @media (max-width: 975px) and (min-width: 600px) { - ${CSS.font.size.step0} - letter-spacing: calc(var(${vars.font.size.step2}) * 0.08); - } - - @media (max-width: 600px) { - ${CSS.font.size.step1} - letter-spacing: calc(var(${vars.font.size.step4}) * 0.08); + ${CSS.font.color.light} } - - ${CSS.font.sansSerif.regular} - display: block; - margin-top: var(${vars.spacing.step3}); - padding: var(${vars.spacing.step2}); - text-align: center; - text-transform: uppercase; - `, -); + } +`); -const footer = toProps( - css` - bottom: var(${vars.spacing.step3}); - position: absolute; - right: var(${vars.spacing.step5}); - z-index: 3; - `, -); - -const linkIcon = toProps( - icons.link( - css` - @media (max-width: 975px) and (min-width: 600px) { - ${CSS.font.size.step1} - } - - @media (max-width: 600px) { - ${CSS.font.size.step2} - } - `, - ), -); +const details = toProps(css` + ${CSS.font.size.stepN1}; + letter-spacing: calc(var(${vars.font.size.step1}) * 0.08); -const projectLink = toProps(css` - ${CSS.font.color.light} + @media (max-width: 975px) and (min-width: 600px) { ${CSS.font.size.step0} - height: var(${vars.spacing.step9}); - line-height: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step0})); - width: var(${vars.spacing.step9}); + letter-spacing: calc(var(${vars.font.size.step2}) * 0.08); + } + + @media (max-width: 600px) { + ${CSS.font.size.step1} + letter-spacing: calc(var(${vars.font.size.step4}) * 0.08); + } + + ${CSS.font.sansSerif.regular} + display: block; + margin-top: var(${vars.spacing.step3}); + padding: var(${vars.spacing.step2}); + text-align: center; + text-transform: uppercase; +`); + +const footer = toProps(css` + bottom: var(${vars.spacing.step3}); + position: absolute; + right: var(${vars.spacing.step5}); + z-index: 3; +`); +const linkIcon = toProps( + icons.link(css` @media (max-width: 975px) and (min-width: 600px) { - ${CSS.font.size.step0} - height: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step0})); - line-height: calc(calc(var(${vars.spacing.step9}) + var(${vars.spacing.step0})) + var(${vars.spacing.step0})); - width: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step0})); + ${CSS.font.size.step1} } @media (max-width: 600px) { - ${CSS.font.size.step0} - height: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step2})); - line-height: calc(calc(var(${vars.spacing.step9}) + var(${vars.spacing.step2})) + var(${vars.spacing.step0})); - width: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step2})); + ${CSS.font.size.step2} } + `), +); - border-radius: 50%; - box-shadow: 0 0 0 1px var(${vars.color.background.light}); - display: block; - text-align: center; - - a& { - background: var(${vars.color.background.dark}); - ${CSS.font.color.light} - } +const projectLink = toProps(css` + ${CSS.font.color.light} + ${CSS.font.size.step0} + height: var(${vars.spacing.step9}); + line-height: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step0})); + width: var(${vars.spacing.step9}); - &:hover, - &:active, - &:focus { - ${CSS.color.background.light} - ${CSS.font.color.dark} - } - `); + @media (max-width: 975px) and (min-width: 600px) { + ${CSS.font.size.step0} + height: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step0})); + line-height: calc( + calc(var(${vars.spacing.step9}) + var(${vars.spacing.step0})) + var(${vars.spacing.step0}) + ); + width: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step0})); + } + + @media (max-width: 600px) { + ${CSS.font.size.step0} + height: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step2})); + line-height: calc( + calc(var(${vars.spacing.step9}) + var(${vars.spacing.step2})) + var(${vars.spacing.step0}) + ); + width: calc(var(${vars.spacing.step9}) + var(${vars.spacing.step2})); + } + + border-radius: 50%; + box-shadow: 0 0 0 1px var(${vars.color.background.light}); + display: block; + text-align: center; + + a& { + background: var(${vars.color.background.dark}); + ${CSS.font.color.light} + } + + &:hover, + &:active, + &:focus { + ${CSS.color.background.light} + ${CSS.font.color.dark} + } +`); export default { root, caption, footer, header, title, tags, details, projectLink, linkIcon }; diff --git a/src/components/portfolio/portfolio_item.tsx b/src/components/portfolio/portfolio_item.tsx index 3e5adb0..fc0bc89 100644 --- a/src/components/portfolio/portfolio_item.tsx +++ b/src/components/portfolio/portfolio_item.tsx @@ -1,6 +1,7 @@ -import { useEntryMetadata, usePortfolioImage } from '@/lib/hooks/use_portfolio'; import { Link } from 'react-router-dom'; +import { useEntryMetadata, usePortfolioImage } from '@lib/hooks/use_portfolio'; + import styles from './portfolio_item.styles'; export interface PortfolioItemProps { diff --git a/src/components/timeline/timeline.styles.ts b/src/components/timeline/timeline.styles.ts index 1e4e415..f67c313 100644 --- a/src/components/timeline/timeline.styles.ts +++ b/src/components/timeline/timeline.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; import { BULLET_PADDING, BULLET_SIZE_EQ, TOP_PADDING } from './timeline_item.styles'; @@ -19,7 +19,7 @@ const root = toProps(css` } &::before { - content: ""; + content: ''; display: block; width: 1px; background: var(${vars.color.background.subtler}); @@ -32,7 +32,7 @@ const root = toProps(css` @media (min-width: 975px) { &::after { - content: ""; + content: ''; display: block; width: 1px; background: var(${vars.color.background.subtler}); diff --git a/src/components/timeline/timeline.tsx b/src/components/timeline/timeline.tsx index a0307b2..7c94db7 100644 --- a/src/components/timeline/timeline.tsx +++ b/src/components/timeline/timeline.tsx @@ -1,4 +1,4 @@ -import { TimelineItem, type TimelineItemProps } from '@/components/timeline'; +import { TimelineItem, type TimelineItemProps } from '@components/timeline'; import styles from './timeline.styles'; diff --git a/src/components/timeline/timeline_item.styles.ts b/src/components/timeline/timeline_item.styles.ts index 3eb5dde..4629afa 100644 --- a/src/components/timeline/timeline_item.styles.ts +++ b/src/components/timeline/timeline_item.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { decl, vars } = theme; @@ -24,7 +24,7 @@ const LOGO_VAR = '--timeline-item-logo'; const root = (logo?: string) => toProps( - css` + css` padding-left: calc(${BULLET_SIZE_EQ} + (var(${vars.grid.gutter}) / 2)); padding-top: ${TOP_PADDING}; position: relative; @@ -42,7 +42,7 @@ const header = toProps(css` flex-direction: column; &::before { - content: ""; + content: ''; border-radius: 50%; display: block; height: ${IMAGE_SIZE}; @@ -58,7 +58,7 @@ const header = toProps(css` &::after { background: var(${vars.color.background.subtler}); - content: ""; + content: ''; display: block; height: calc(${BULLET_SIZE_EQ}); width: calc(${BULLET_SIZE_EQ}); diff --git a/src/components/timeline/timeline_item.tsx b/src/components/timeline/timeline_item.tsx index 7d05d47..7b7fa8e 100644 --- a/src/components/timeline/timeline_item.tsx +++ b/src/components/timeline/timeline_item.tsx @@ -1,7 +1,8 @@ -import { useLogo } from '@/lib/hooks/use_logos'; import moment from 'moment'; import type { ReactNode } from 'react'; +import { useLogo } from '@lib/hooks/use_logos'; + import styles from './timeline_item.styles'; export interface TimelineItemProps { diff --git a/src/home/about/about.styles.ts b/src/home/about/about.styles.ts index 8fe90db..31ef97b 100644 --- a/src/home/about/about.styles.ts +++ b/src/home/about/about.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { decl, vars } = theme; @@ -25,7 +25,7 @@ const title = toProps(css` ${decl.font.sansSerif.medium} ${decl.font.weight.normal} ${decl.font.size.step2} - margin-bottom: var(${vars.spacing.step4}); + margin-bottom: var(${vars.spacing.step4}); `); const content = toProps(css` @@ -50,7 +50,7 @@ const code = toProps(css` @media (max-width: ${BREAKPOINT}px) { grid-area: auto / 1 / auto / span 12; } - + grid-area: auto / 7 / auto / span 6; `); diff --git a/src/home/about/about.tsx b/src/home/about/about.tsx index c51e7c2..a7b5d71 100644 --- a/src/home/about/about.tsx +++ b/src/home/about/about.tsx @@ -1,5 +1,5 @@ -import { Section } from '@/components/layout'; -import { attributes } from '@/content/about.md'; +import { Section } from '@components/layout'; +import { attributes } from '@content/about.md'; import { Code } from './code'; import { Summary } from './summary'; diff --git a/src/home/about/code.tsx b/src/home/about/code.tsx index 358f7f7..fcdf713 100644 --- a/src/home/about/code.tsx +++ b/src/home/about/code.tsx @@ -1,4 +1,4 @@ -import { GithubStats } from '@/components/github'; +import { GithubStats } from '@components/github'; import styles from './about.styles'; diff --git a/src/home/about/summary.tsx b/src/home/about/summary.tsx index 639ee7e..dd9fcb9 100644 --- a/src/home/about/summary.tsx +++ b/src/home/about/summary.tsx @@ -1,4 +1,4 @@ -import { ReactComponent } from '@/content/about.md'; +import { ReactComponent } from '@content/about.md'; import styles from './about.styles'; diff --git a/src/home/about/work.tsx b/src/home/about/work.tsx index 772712d..cbd229a 100644 --- a/src/home/about/work.tsx +++ b/src/home/about/work.tsx @@ -1,6 +1,7 @@ -import { useResume } from '@/lib/hooks'; import Markdown from 'react-markdown'; +import { useResume } from '@lib/hooks'; + import styles from './about.styles'; export const Work = () => { diff --git a/src/home/career/career.styles.ts b/src/home/career/career.styles.ts index a814b13..03737dd 100644 --- a/src/home/career/career.styles.ts +++ b/src/home/career/career.styles.ts @@ -1,4 +1,4 @@ -import { css, toProps } from '@/lib/css'; +import { css, toProps } from '@lib/css'; const header = toProps(css` grid-area: auto / 2 / auto / span 10; diff --git a/src/home/career/references.styles.ts b/src/home/career/references.styles.ts index abdc703..18c3b4a 100644 --- a/src/home/career/references.styles.ts +++ b/src/home/career/references.styles.ts @@ -1,15 +1,13 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars, decl } = theme; -const root = toProps( - css` - --spacing-sectionTop: calc(var(${vars.spacing.step8}) * 2); - --spacing-sectionDivider: var(${vars.spacing.step1}); - ${decl.color.background.dark} - `, -); +const root = toProps(css` + --spacing-sectionTop: calc(var(${vars.spacing.step8}) * 2); + --spacing-sectionDivider: var(${vars.spacing.step1}); + ${decl.color.background.dark} +`); const header = toProps(css` ${decl.font.color.light} @@ -26,6 +24,7 @@ const link = toProps(css` ${decl.font.color.dark} ${decl.color.background.light} } - }`); + } +`); export default { root, header, link }; diff --git a/src/home/career/references.tsx b/src/home/career/references.tsx index 49f5268..64045e9 100644 --- a/src/home/career/references.tsx +++ b/src/home/career/references.tsx @@ -1,6 +1,6 @@ -import { Section } from '@/components/layout'; -import { PeopleLine, Person } from '@/components/people_line'; -import { useResume } from '@/lib/hooks'; +import { Section } from '@components/layout'; +import { PeopleLine, Person } from '@components/people_line'; +import { useResume } from '@lib/hooks'; import styles from './references.styles'; diff --git a/src/home/career/timeline.tsx b/src/home/career/timeline.tsx index 08c5a5a..2b8ba8e 100644 --- a/src/home/career/timeline.tsx +++ b/src/home/career/timeline.tsx @@ -1,8 +1,9 @@ -import { Section } from '@/components/layout'; -import { Timeline as TimelineComponent } from '@/components/timeline'; -import { useResume } from '@/lib/hooks'; import Markdown from 'react-markdown'; +import { Section } from '@components/layout'; +import { Timeline as TimelineComponent } from '@components/timeline'; +import { useResume } from '@lib/hooks'; + import styles from './career.styles'; const attributes = { diff --git a/src/home/home.tsx b/src/home/home.tsx index 48addf7..a8c9d36 100644 --- a/src/home/home.tsx +++ b/src/home/home.tsx @@ -1,4 +1,4 @@ -import { Footer } from '@/components/layout'; +import { Footer } from '@components/layout'; import { About } from './about'; import { Career } from './career'; diff --git a/src/home/medium/item.styles.ts b/src/home/medium/item.styles.ts index 393d730..3a7cbc5 100644 --- a/src/home/medium/item.styles.ts +++ b/src/home/medium/item.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { decl, vars } = theme; @@ -57,8 +57,8 @@ export const category = toProps(css` ${decl.font.size.stepN1} display: inline-block; margin-right: var(${vars.spacing.step0}); - letter-spacing: calc(var(${vars.font.size.step0}) * .14); - + letter-spacing: calc(var(${vars.font.size.step0}) * 0.14); + & a { ${decl.font.weight.normal} ${decl.font.color.medium} @@ -68,7 +68,7 @@ export const category = toProps(css` &:active { ${decl.font.color.link} } - } + } &::after { ${decl.font.color.medium} @@ -78,7 +78,7 @@ export const category = toProps(css` &:last-child::after { display: none; } - + text-transform: uppercase; `); diff --git a/src/home/medium/medium.styles.ts b/src/home/medium/medium.styles.ts index 0ad9ec1..4a5c7e4 100644 --- a/src/home/medium/medium.styles.ts +++ b/src/home/medium/medium.styles.ts @@ -1,11 +1,11 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { vars, decl } = theme; const root = toProps(css` grid-area: auto / 2 / auto / span 10; - ${decl.color.background.subtlest} + ${decl.color.background.subtlest} `); const content = toProps(css` @@ -13,7 +13,7 @@ const content = toProps(css` gap: var(${vars.spacing.step9}); grid-template-columns: repeat(2, 1fr); grid-area: auto / 2 / auto / span 10; - + @media (max-width: 600px) { grid-template-columns: repeat(1, auto); } diff --git a/src/home/medium/medium.tsx b/src/home/medium/medium.tsx index 32ea41a..dd48032 100644 --- a/src/home/medium/medium.tsx +++ b/src/home/medium/medium.tsx @@ -1,5 +1,6 @@ import { useEffect, useState } from 'react'; -import { Section } from '@/components/layout'; + +import { Section } from '@components/layout'; import { Item } from './item'; @@ -21,7 +22,7 @@ const Component = () => { useEffect(() => { (async function loadPosts() { - const posts = await import('@/content/medium.json'); + const posts = await import('@content/medium.json'); setStories(posts); })(); }, [setStories, stories]); diff --git a/src/home/portfolio/portfolio.styles.ts b/src/home/portfolio/portfolio.styles.ts index 9637a71..6577e72 100644 --- a/src/home/portfolio/portfolio.styles.ts +++ b/src/home/portfolio/portfolio.styles.ts @@ -1,5 +1,5 @@ -import { css, toProps } from '@/lib/css'; -import { theme } from '@/theme'; +import { css, toProps } from '@lib/css'; +import { theme } from '@theme'; const { decl } = theme; diff --git a/src/home/portfolio/portfolio.tsx b/src/home/portfolio/portfolio.tsx index 131e275..ec08244 100644 --- a/src/home/portfolio/portfolio.tsx +++ b/src/home/portfolio/portfolio.tsx @@ -1,5 +1,5 @@ -import { Section } from '@/components/layout'; -import { PortfolioGrid } from '@/components/portfolio'; +import { Section } from '@components/layout'; +import { PortfolioGrid } from '@components/portfolio'; import styles from './portfolio.styles'; diff --git a/src/lib/hooks/use_logos.ts b/src/lib/hooks/use_logos.ts index 136ecce..fbbd9c7 100644 --- a/src/lib/hooks/use_logos.ts +++ b/src/lib/hooks/use_logos.ts @@ -10,7 +10,7 @@ interface OutputMetadata { // to derive the correct key... so it's COPY PASTA TIME const IMG_PATH_PREFIX = '/src/content/logos/'; -const imageModules = import.meta.glob<{ default: OutputMetadata }>('@/content/logos/*.png', { +const imageModules = import.meta.glob<{ default: OutputMetadata }>('@content/logos/*.png', { query: { w: '40', as: 'metadata', format: 'webp' }, eager: true, }); diff --git a/src/lib/hooks/use_people.ts b/src/lib/hooks/use_people.ts index d2c72fe..fa308ea 100644 --- a/src/lib/hooks/use_people.ts +++ b/src/lib/hooks/use_people.ts @@ -10,7 +10,7 @@ interface OutputMetadata { // to derive the correct key... so it's COPY PASTA TIME const IMG_PATH_PREFIX = '/src/content/people/'; -const imageModules = import.meta.glob<{ default: OutputMetadata }>('@/content/people/*.jpg', { +const imageModules = import.meta.glob<{ default: OutputMetadata }>('@content/people/*.jpg', { query: { w: '75', as: 'metadata', format: 'webp' }, eager: true, }); diff --git a/src/lib/hooks/use_portfolio.ts b/src/lib/hooks/use_portfolio.ts index 2df2969..d26237a 100644 --- a/src/lib/hooks/use_portfolio.ts +++ b/src/lib/hooks/use_portfolio.ts @@ -13,7 +13,7 @@ type Width = 480 | 1280; const IMG_PATH_PREFIX = '/src/content/portfolio/images/'; const jpgModules = import.meta.glob<{ default: OutputMetadata[] }>( - '@/content/portfolio/images/*.jpg', + '@content/portfolio/images/*.jpg', { query: { w: '480;1280', as: 'metadata', format: 'webp' }, eager: true, @@ -21,7 +21,7 @@ const jpgModules = import.meta.glob<{ default: OutputMetadata[] }>( ); const pngModules = import.meta.glob<{ default: OutputMetadata[] }>( - '@/content/portfolio/images/*.png', + '@content/portfolio/images/*.png', { query: { w: '480;1280', as: 'metadata', format: 'webp' }, eager: true, @@ -55,7 +55,7 @@ export const usePortfolioImage = (id: string | undefined, width: Width) => { // Portfolio Entries const DEFAULT_LIMIT = 6; -const contents = import.meta.glob('@/content/portfolio/*.md', { eager: true }); +const contents = import.meta.glob('@content/portfolio/*.md', { eager: true }); const entries = Object.values(contents).sort( (a, b) => b.attributes.timestamp - a.attributes.timestamp, ); diff --git a/src/lib/hooks/use_resume.ts b/src/lib/hooks/use_resume.ts index 2f79e0b..12ff0d0 100644 --- a/src/lib/hooks/use_resume.ts +++ b/src/lib/hooks/use_resume.ts @@ -4,7 +4,7 @@ export const useResume = () => { const [resume, setResume] = useState(null); useEffect(() => { - import('@/content/resume.json').then((res) => setResume(res)); + import('@content/resume.json').then((res) => setResume(res)); }, []); return resume; diff --git a/src/theme/color.ts b/src/theme/color.ts index c72115a..6a6fcb3 100644 --- a/src/theme/color.ts +++ b/src/theme/color.ts @@ -1,17 +1,18 @@ -import { buildTheme } from '@/lib/css'; -import { VAR_PREFIX_COLOR as varPrefix } from '@/theme/common'; +import { buildTheme } from '@lib/css'; +import { VAR_PREFIX_COLOR as varPrefix } from '@theme/common'; + +type Color = + | 'dark' + | 'light' + | 'subtle' + | 'subtler' + | 'subtlest' + | 'shade' + | 'separator' + | 'outline' + | 'accent' + | 'grid'; -type Color = 'dark' | - 'light' | - 'subtle' | - 'subtler' | - 'subtlest' | - 'shade' | - 'separator' | - 'outline' | - 'accent' | - 'grid'; - const themeValues: Record = { dark: '#000', subtlest: '#F1F1F1', diff --git a/src/theme/font/color.ts b/src/theme/font/color.ts index 082d86c..1ef37c8 100644 --- a/src/theme/font/color.ts +++ b/src/theme/font/color.ts @@ -1,5 +1,5 @@ -import { buildTheme } from '@/lib/css'; -import { VAR_PREFIX_FONT_COLOR as varPrefix } from '@/theme/common'; +import { buildTheme } from '@lib/css'; +import { VAR_PREFIX_FONT_COLOR as varPrefix } from '@theme/common'; type Color = | 'dark' diff --git a/src/theme/font/sans_serif.ts b/src/theme/font/sans_serif.ts index feca24c..a3d593c 100644 --- a/src/theme/font/sans_serif.ts +++ b/src/theme/font/sans_serif.ts @@ -1,5 +1,5 @@ -import { buildTheme } from '@/lib/css'; -import { VAR_PREFIX_FONT_FACE_SANS as varPrefix } from '@/theme/common'; +import { buildTheme } from '@lib/css'; +import { VAR_PREFIX_FONT_FACE_SANS as varPrefix } from '@theme/common'; const SANS_SERIF = ['regular', 'bold', 'extraBold', 'medium', 'semiBold', 'light'] as const; export type SansSerif = (typeof SANS_SERIF)[number]; diff --git a/src/theme/font/serif.ts b/src/theme/font/serif.ts index baff1e1..4f69e7c 100644 --- a/src/theme/font/serif.ts +++ b/src/theme/font/serif.ts @@ -1,5 +1,5 @@ -import { buildTheme } from '@/lib/css'; -import { VAR_PREFIX_FONT_FACE_SERIF as varPrefix } from '@/theme/common'; +import { buildTheme } from '@lib/css'; +import { VAR_PREFIX_FONT_FACE_SERIF as varPrefix } from '@theme/common'; const SERIF = ['regular', 'bold', 'italic'] as const; export type Serif = (typeof SERIF)[number]; diff --git a/src/theme/font/size.ts b/src/theme/font/size.ts index bfc70b6..cf46218 100644 --- a/src/theme/font/size.ts +++ b/src/theme/font/size.ts @@ -2,7 +2,9 @@ https://utopia.fyi/type/calculator/?c=320,10,1.2,1240,16,1.25,5,1,&s=0.75%7C0.5%7C0.25,1.5%7C2%7C3%7C4%7C6,s-l&g=m,l,2xl,12 */ -import { buildTheme } from '@/lib/css'; +import { calculateTypeScale } from 'utopia-core'; + +import { buildTheme } from '@lib/css'; import { FONT_SIZE_MAX, FONT_SIZE_MIN, @@ -11,8 +13,7 @@ import { VAR_PREFIX_FONT_SIZE as varPrefix, WIDTH_MAX, WIDTH_MIN, -} from '@/theme/common'; -import { calculateTypeScale } from 'utopia-core'; +} from '@theme/common'; const SIZES = ['step5', 'step4', 'step3', 'step2', 'step1', 'step0', 'stepN1'] as const; type Size = (typeof SIZES)[number]; diff --git a/src/theme/font/weight.ts b/src/theme/font/weight.ts index 4cac708..2c52dd2 100644 --- a/src/theme/font/weight.ts +++ b/src/theme/font/weight.ts @@ -1,5 +1,5 @@ -import { buildTheme } from '@/lib/css'; -import { VAR_PREFIX_FONT_WEIGHT as varPrefix } from '@/theme/common'; +import { buildTheme } from '@lib/css'; +import { VAR_PREFIX_FONT_WEIGHT as varPrefix } from '@theme/common'; const WEIGHTS = ['extraBold', 'bold', 'semiBold', 'normal', 'light'] as const; type Weight = (typeof WEIGHTS)[number]; diff --git a/src/theme/grid.ts b/src/theme/grid.ts index e5998ec..215cf15 100644 --- a/src/theme/grid.ts +++ b/src/theme/grid.ts @@ -1,7 +1,7 @@ /* @link https://utopia.fyi/grid/calculator?c=320,10,1.2,1184,16,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=l,l,2xl,12 */ -import { buildTheme } from '@/lib/css'; -import { VAR_PREFIX_GRID as varPrefix } from '@/theme/common'; +import { buildTheme } from '@lib/css'; +import { VAR_PREFIX_GRID as varPrefix } from '@theme/common'; import { spacing } from './spacing'; diff --git a/src/theme/icons.ts b/src/theme/icons.ts index a3bc1f2..644b661 100644 --- a/src/theme/icons.ts +++ b/src/theme/icons.ts @@ -1,4 +1,4 @@ -import { css, cx } from '@/lib/css'; +import { css, cx } from '@lib/css'; export const ICONS_SOCIAL = ['github', 'instagram', 'linkedin', 'twitter', 'facebook'] as const; export const ICONS = ['link', ...ICONS_SOCIAL] as const; diff --git a/src/theme/index.ts b/src/theme/index.ts index 4fb4819..15ab37b 100644 --- a/src/theme/index.ts +++ b/src/theme/index.ts @@ -1,11 +1,12 @@ // import 'unfonts.css'; -import { color } from '@/theme/color'; -import { font } from '@/theme/font'; -import { grid } from '@/theme/grid'; -import { icons } from '@/theme/icons'; -import { spacing } from '@/theme/spacing'; import 'ress'; +import { color } from '@theme/color'; +import { font } from '@theme/font'; +import { grid } from '@theme/grid'; +import { icons } from '@theme/icons'; +import { spacing } from '@theme/spacing'; + export const theme = { vars: { font: font.vars, diff --git a/src/theme/spacing.ts b/src/theme/spacing.ts index c5563c1..a328244 100644 --- a/src/theme/spacing.ts +++ b/src/theme/spacing.ts @@ -5,15 +5,16 @@ * */ -import { buildTheme } from '@/lib/css'; +import { calculateSpaceScale } from 'utopia-core'; + +import { buildTheme } from '@lib/css'; import { FONT_SIZE_MAX, FONT_SIZE_MIN, VAR_PREFIX_SPACING as varPrefix, WIDTH_MAX, WIDTH_MIN, -} from '@/theme/common'; -import { calculateSpaceScale } from 'utopia-core'; +} from '@theme/common'; export const UTOPIA_SIZES = [ 'step0', diff --git a/storybook-static/CNAME b/storybook-static/CNAME deleted file mode 100644 index 243a804..0000000 --- a/storybook-static/CNAME +++ /dev/null @@ -1 +0,0 @@ -clintandrewhall.com diff --git a/storybook-static/README.md b/storybook-static/README.md deleted file mode 100644 index a2d0939..0000000 --- a/storybook-static/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# About this repository - -This is a static build of [clintandrewhall.com](https://github.com/clintandrewhall/clintandrewhall.com). It is generated automatically by a Github Action and committed to this repo by [`gh-pages`](https://github.com/tschaub/gh-pages). - -For the curious, I used to CD my website with Heroku. Since Heroku had their breach and has [disabled GH OAuth tokens](https://status.heroku.com/incidents/2413), I decided to pull the trigger on an auto-deploy-to-gh-pages approach. - -It was [pretty easy](https://github.com/clintandrewhall/clintandrewhall.com/commit/22176bf5f4e693cc942cad21bdafba5d7807722b), in [the end](https://github.com/clintandrewhall/clintandrewhall.com/commits/main). diff --git a/storybook-static/assets/Color-KGDBMAHA-468b81d8.js b/storybook-static/assets/Color-KGDBMAHA-468b81d8.js deleted file mode 100644 index c61369f..0000000 --- a/storybook-static/assets/Color-KGDBMAHA-468b81d8.js +++ /dev/null @@ -1 +0,0 @@ -import{ae as Me,af as $,a2 as ie,a0 as Ce,w as $e,ag as Oe,ah as Ie}from"./DocsRenderer-PKQXORMH-b0610b88.js";import{R as h,r as m,g as ue}from"./index-f1f2c4b1.js";import{_ as Ne,i as fe}from"./isArray-03ed71c9.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./client-e941fabf.js";import"./index-5f347087.js";import"./index-1b441bc2.js";import"./index-356e4a49.js";function I(){return(I=Object.assign||function(e){for(var t=1;t=0||(o[n]=e[n]);return o}function K(e){var t=m.useRef(e),n=m.useRef(function(r){t.current&&t.current(r)});return t.current=e,n.current}var R=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=1),e>n?n:e0:p.buttons>0)&&o.current?a(te(o.current,p,l.current)):M(!1)},j=function(){return M(!1)};function M(p){var b=c.current,w=V(o.current),E=p?w.addEventListener:w.removeEventListener;E(b?"touchmove":"mousemove",x),E(b?"touchend":"mouseup",j)}return[function(p){var b=p.nativeEvent,w=o.current;if(w&&(ne(b),!function(k,O){return O&&!F(k)}(b,c.current)&&w)){if(F(b)){c.current=!0;var E=b.changedTouches||[];E.length&&(l.current=E[0].identifier)}w.focus(),a(te(w,b,l.current)),M(!0)}},function(p){var b=p.which||p.keyCode;b<37||b>40||(p.preventDefault(),s({left:b===39?.05:b===37?-.05:0,top:b===40?.05:b===38?-.05:0}))},M]},[s,a]),d=i[0],f=i[1],g=i[2];return m.useEffect(function(){return g},[g]),h.createElement("div",I({},r,{onTouchStart:d,onMouseDown:d,className:"react-colorful__interactive",ref:o,onKeyDown:f,tabIndex:0,role:"slider"}))}),T=function(e){return e.filter(Boolean).join(" ")},Z=function(e){var t=e.color,n=e.left,r=e.top,o=r===void 0?.5:r,a=T(["react-colorful__pointer",e.className]);return h.createElement("div",{className:a,style:{top:100*o+"%",left:100*n+"%"}},h.createElement("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}}))},y=function(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=Math.pow(10,t)),Math.round(n*e)/n},Se={grad:.9,turn:360,rad:360/(2*Math.PI)},Re=function(e){return ge(A(e))},A=function(e){return e[0]==="#"&&(e=e.substring(1)),e.length<6?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:e.length===4?y(parseInt(e[3]+e[3],16)/255,2):1}:{r:parseInt(e.substring(0,2),16),g:parseInt(e.substring(2,4),16),b:parseInt(e.substring(4,6),16),a:e.length===8?y(parseInt(e.substring(6,8),16)/255,2):1}},je=function(e,t){return t===void 0&&(t="deg"),Number(e)*(Se[t]||1)},ze=function(e){var t=/hsla?\(?\s*(-?\d*\.?\d+)(deg|rad|grad|turn)?[,\s]+(-?\d*\.?\d+)%?[,\s]+(-?\d*\.?\d+)%?,?\s*[/\s]*(-?\d*\.?\d+)?(%)?\s*\)?/i.exec(e);return t?Fe({h:je(t[1],t[2]),s:Number(t[3]),l:Number(t[4]),a:t[5]===void 0?1:Number(t[5])/(t[6]?100:1)}):{h:0,s:0,v:0,a:1}},Fe=function(e){var t=e.s,n=e.l;return{h:e.h,s:(t*=(n<50?n:100-n)/100)>0?2*t/(n+t)*100:0,v:n+t,a:e.a}},He=function(e){return Pe(de(e))},he=function(e){var t=e.s,n=e.v,r=e.a,o=(200-t)*n/100;return{h:y(e.h),s:y(o>0&&o<200?t*n/100/(o<=100?o:200-o)*100:0),l:y(o/2),a:y(r,2)}},G=function(e){var t=he(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},B=function(e){var t=he(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},de=function(e){var t=e.h,n=e.s,r=e.v,o=e.a;t=t/360*6,n/=100,r/=100;var a=Math.floor(t),s=r*(1-n),l=r*(1-(t-a)*n),c=r*(1-(1-t+a)*n),i=a%6;return{r:y(255*[r,l,s,s,c,r][i]),g:y(255*[c,r,r,l,s,s][i]),b:y(255*[s,s,c,r,r,l][i]),a:y(o,2)}},Te=function(e){var t=/rgba?\(?\s*(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?,?\s*[/\s]*(-?\d*\.?\d+)?(%)?\s*\)?/i.exec(e);return t?ge({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:t[7]===void 0?1:Number(t[7])/(t[8]?100:1)}):{h:0,s:0,v:0,a:1}},P=function(e){var t=e.toString(16);return t.length<2?"0"+t:t},Pe=function(e){var t=e.r,n=e.g,r=e.b,o=e.a,a=o<1?P(y(255*o)):"";return"#"+P(t)+P(n)+P(r)+a},ge=function(e){var t=e.r,n=e.g,r=e.b,o=e.a,a=Math.max(t,n,r),s=a-Math.min(t,n,r),l=s?a===t?(n-r)/s:a===n?2+(r-t)/s:4+(t-n)/s:0;return{h:y(60*(l<0?l+6:l)),s:y(a?s/a*100:0),v:y(a/255*100),a:o}},me=h.memo(function(e){var t=e.hue,n=e.onChange,r=T(["react-colorful__hue",e.className]);return h.createElement("div",{className:r},h.createElement(Q,{onMove:function(o){n({h:360*o.left})},onKey:function(o){n({h:R(t+360*o.left,0,360)})},"aria-label":"Hue","aria-valuenow":y(t),"aria-valuemax":"360","aria-valuemin":"0"},h.createElement(Z,{className:"react-colorful__hue-pointer",left:t/360,color:G({h:t,s:100,v:100,a:1})})))}),be=h.memo(function(e){var t=e.hsva,n=e.onChange,r={backgroundColor:G({h:t.h,s:100,v:100,a:1})};return h.createElement("div",{className:"react-colorful__saturation",style:r},h.createElement(Q,{onMove:function(o){n({s:100*o.left,v:100-100*o.top})},onKey:function(o){n({s:R(t.s+100*o.left,0,100),v:R(t.v-100*o.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+y(t.s)+"%, Brightness "+y(t.v)+"%"},h.createElement(Z,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:G(t)})))}),ve=function(e,t){if(e===t)return!0;for(var n in e)if(e[n]!==t[n])return!1;return!0},pe=function(e,t){return e.replace(/\s/g,"")===t.replace(/\s/g,"")},Le=function(e,t){return e.toLowerCase()===t.toLowerCase()||ve(A(e),A(t))};function ye(e,t,n){var r=K(n),o=m.useState(function(){return e.toHsva(t)}),a=o[0],s=o[1],l=m.useRef({color:t,hsva:a});m.useEffect(function(){if(!e.equal(t,l.current.color)){var i=e.toHsva(t);l.current={hsva:i,color:t},s(i)}},[t,e]),m.useEffect(function(){var i;ve(a,l.current.hsva)||e.equal(i=e.fromHsva(a),l.current.color)||(l.current={hsva:a,color:i},r(i))},[a,e,r]);var c=m.useCallback(function(i){s(function(d){return Object.assign({},d,i)})},[]);return[a,c]}var qe=typeof window<"u"?m.useLayoutEffect:m.useEffect,Be=function(){return typeof __webpack_nonce__<"u"?__webpack_nonce__:void 0},re=new Map,xe=function(e){qe(function(){var t=e.current?e.current.ownerDocument:document;if(t!==void 0&&!re.has(t)){var n=t.createElement("style");n.innerHTML=`.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}`,re.set(t,n);var r=Be();r&&n.setAttribute("nonce",r),t.head.appendChild(n)}},[])},Xe=function(e){var t=e.className,n=e.colorModel,r=e.color,o=r===void 0?n.defaultColor:r,a=e.onChange,s=J(e,["className","colorModel","color","onChange"]),l=m.useRef(null);xe(l);var c=ye(n,o,a),i=c[0],d=c[1],f=T(["react-colorful",t]);return h.createElement("div",I({},s,{ref:l,className:f}),h.createElement(be,{hsva:i,onChange:d}),h.createElement(me,{hue:i.h,onChange:d,className:"react-colorful__last-control"}))},De={defaultColor:"000",toHsva:Re,fromHsva:function(e){return He({h:e.h,s:e.s,v:e.v,a:1})},equal:Le},We=function(e){return h.createElement(Xe,I({},e,{colorModel:De}))},Ke=function(e){var t=e.className,n=e.hsva,r=e.onChange,o={backgroundImage:"linear-gradient(90deg, "+B(Object.assign({},n,{a:0}))+", "+B(Object.assign({},n,{a:1}))+")"},a=T(["react-colorful__alpha",t]),s=y(100*n.a);return h.createElement("div",{className:a},h.createElement("div",{className:"react-colorful__alpha-gradient",style:o}),h.createElement(Q,{onMove:function(l){r({a:l.left})},onKey:function(l){r({a:R(n.a+l.left)})},"aria-label":"Alpha","aria-valuetext":s+"%","aria-valuenow":s,"aria-valuemin":"0","aria-valuemax":"100"},h.createElement(Z,{className:"react-colorful__alpha-pointer",left:n.a,color:B(n)})))},we=function(e){var t=e.className,n=e.colorModel,r=e.color,o=r===void 0?n.defaultColor:r,a=e.onChange,s=J(e,["className","colorModel","color","onChange"]),l=m.useRef(null);xe(l);var c=ye(n,o,a),i=c[0],d=c[1],f=T(["react-colorful",t]);return h.createElement("div",I({},s,{ref:l,className:f}),h.createElement(be,{hsva:i,onChange:d}),h.createElement(me,{hue:i.h,onChange:d}),h.createElement(Ke,{hsva:i,onChange:d,className:"react-colorful__last-control"}))},Ve={defaultColor:"hsla(0, 0%, 0%, 1)",toHsva:ze,fromHsva:B,equal:pe},Ae=function(e){return h.createElement(we,I({},e,{colorModel:Ve}))},Ge={defaultColor:"rgba(0, 0, 0, 1)",toHsva:Te,fromHsva:function(e){var t=de(e);return"rgba("+t.r+", "+t.g+", "+t.b+", "+t.a+")"},equal:pe},Ue=function(e){return h.createElement(we,I({},e,{colorModel:Ge}))},Ye={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]};const H=Ye,ke={};for(const e of Object.keys(H))ke[H[e]]=e;const u={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};var _e=u;for(const e of Object.keys(u)){if(!("channels"in u[e]))throw new Error("missing channels property: "+e);if(!("labels"in u[e]))throw new Error("missing channel labels property: "+e);if(u[e].labels.length!==u[e].channels)throw new Error("channel and label counts mismatch: "+e);const{channels:t,labels:n}=u[e];delete u[e].channels,delete u[e].labels,Object.defineProperty(u[e],"channels",{value:t}),Object.defineProperty(u[e],"labels",{value:n})}u.rgb.hsl=function(e){const t=e[0]/255,n=e[1]/255,r=e[2]/255,o=Math.min(t,n,r),a=Math.max(t,n,r),s=a-o;let l,c;a===o?l=0:t===a?l=(n-r)/s:n===a?l=2+(r-t)/s:r===a&&(l=4+(t-n)/s),l=Math.min(l*60,360),l<0&&(l+=360);const i=(o+a)/2;return a===o?c=0:i<=.5?c=s/(a+o):c=s/(2-a-o),[l,c*100,i*100]};u.rgb.hsv=function(e){let t,n,r,o,a;const s=e[0]/255,l=e[1]/255,c=e[2]/255,i=Math.max(s,l,c),d=i-Math.min(s,l,c),f=function(g){return(i-g)/6/d+1/2};return d===0?(o=0,a=0):(a=d/i,t=f(s),n=f(l),r=f(c),s===i?o=r-n:l===i?o=1/3+t-r:c===i&&(o=2/3+n-t),o<0?o+=1:o>1&&(o-=1)),[o*360,a*100,i*100]};u.rgb.hwb=function(e){const t=e[0],n=e[1];let r=e[2];const o=u.rgb.hsl(e)[0],a=1/255*Math.min(t,Math.min(n,r));return r=1-1/255*Math.max(t,Math.max(n,r)),[o,a*100,r*100]};u.rgb.cmyk=function(e){const t=e[0]/255,n=e[1]/255,r=e[2]/255,o=Math.min(1-t,1-n,1-r),a=(1-t-o)/(1-o)||0,s=(1-n-o)/(1-o)||0,l=(1-r-o)/(1-o)||0;return[a*100,s*100,l*100,o*100]};function Je(e,t){return(e[0]-t[0])**2+(e[1]-t[1])**2+(e[2]-t[2])**2}u.rgb.keyword=function(e){const t=ke[e];if(t)return t;let n=1/0,r;for(const o of Object.keys(H)){const a=H[o],s=Je(e,a);s.04045?((t+.055)/1.055)**2.4:t/12.92,n=n>.04045?((n+.055)/1.055)**2.4:n/12.92,r=r>.04045?((r+.055)/1.055)**2.4:r/12.92;const o=t*.4124+n*.3576+r*.1805,a=t*.2126+n*.7152+r*.0722,s=t*.0193+n*.1192+r*.9505;return[o*100,a*100,s*100]};u.rgb.lab=function(e){const t=u.rgb.xyz(e);let n=t[0],r=t[1],o=t[2];n/=95.047,r/=100,o/=108.883,n=n>.008856?n**(1/3):7.787*n+16/116,r=r>.008856?r**(1/3):7.787*r+16/116,o=o>.008856?o**(1/3):7.787*o+16/116;const a=116*r-16,s=500*(n-r),l=200*(r-o);return[a,s,l]};u.hsl.rgb=function(e){const t=e[0]/360,n=e[1]/100,r=e[2]/100;let o,a,s;if(n===0)return s=r*255,[s,s,s];r<.5?o=r*(1+n):o=r+n-r*n;const l=2*r-o,c=[0,0,0];for(let i=0;i<3;i++)a=t+1/3*-(i-1),a<0&&a++,a>1&&a--,6*a<1?s=l+(o-l)*6*a:2*a<1?s=o:3*a<2?s=l+(o-l)*(2/3-a)*6:s=l,c[i]=s*255;return c};u.hsl.hsv=function(e){const t=e[0];let n=e[1]/100,r=e[2]/100,o=n;const a=Math.max(r,.01);r*=2,n*=r<=1?r:2-r,o*=a<=1?a:2-a;const s=(r+n)/2,l=r===0?2*o/(a+o):2*n/(r+n);return[t,l*100,s*100]};u.hsv.rgb=function(e){const t=e[0]/60,n=e[1]/100;let r=e[2]/100;const o=Math.floor(t)%6,a=t-Math.floor(t),s=255*r*(1-n),l=255*r*(1-n*a),c=255*r*(1-n*(1-a));switch(r*=255,o){case 0:return[r,c,s];case 1:return[l,r,s];case 2:return[s,r,c];case 3:return[s,l,r];case 4:return[c,s,r];case 5:return[r,s,l]}};u.hsv.hsl=function(e){const t=e[0],n=e[1]/100,r=e[2]/100,o=Math.max(r,.01);let a,s;s=(2-n)*r;const l=(2-n)*o;return a=n*o,a/=l<=1?l:2-l,a=a||0,s/=2,[t,a*100,s*100]};u.hwb.rgb=function(e){const t=e[0]/360;let n=e[1]/100,r=e[2]/100;const o=n+r;let a;o>1&&(n/=o,r/=o);const s=Math.floor(6*t),l=1-r;a=6*t-s,s&1&&(a=1-a);const c=n+a*(l-n);let i,d,f;switch(s){default:case 6:case 0:i=l,d=c,f=n;break;case 1:i=c,d=l,f=n;break;case 2:i=n,d=l,f=c;break;case 3:i=n,d=c,f=l;break;case 4:i=c,d=n,f=l;break;case 5:i=l,d=n,f=c;break}return[i*255,d*255,f*255]};u.cmyk.rgb=function(e){const t=e[0]/100,n=e[1]/100,r=e[2]/100,o=e[3]/100,a=1-Math.min(1,t*(1-o)+o),s=1-Math.min(1,n*(1-o)+o),l=1-Math.min(1,r*(1-o)+o);return[a*255,s*255,l*255]};u.xyz.rgb=function(e){const t=e[0]/100,n=e[1]/100,r=e[2]/100;let o,a,s;return o=t*3.2406+n*-1.5372+r*-.4986,a=t*-.9689+n*1.8758+r*.0415,s=t*.0557+n*-.204+r*1.057,o=o>.0031308?1.055*o**(1/2.4)-.055:o*12.92,a=a>.0031308?1.055*a**(1/2.4)-.055:a*12.92,s=s>.0031308?1.055*s**(1/2.4)-.055:s*12.92,o=Math.min(Math.max(0,o),1),a=Math.min(Math.max(0,a),1),s=Math.min(Math.max(0,s),1),[o*255,a*255,s*255]};u.xyz.lab=function(e){let t=e[0],n=e[1],r=e[2];t/=95.047,n/=100,r/=108.883,t=t>.008856?t**(1/3):7.787*t+16/116,n=n>.008856?n**(1/3):7.787*n+16/116,r=r>.008856?r**(1/3):7.787*r+16/116;const o=116*n-16,a=500*(t-n),s=200*(n-r);return[o,a,s]};u.lab.xyz=function(e){const t=e[0],n=e[1],r=e[2];let o,a,s;a=(t+16)/116,o=n/500+a,s=a-r/200;const l=a**3,c=o**3,i=s**3;return a=l>.008856?l:(a-16/116)/7.787,o=c>.008856?c:(o-16/116)/7.787,s=i>.008856?i:(s-16/116)/7.787,o*=95.047,a*=100,s*=108.883,[o,a,s]};u.lab.lch=function(e){const t=e[0],n=e[1],r=e[2];let o;o=Math.atan2(r,n)*360/2/Math.PI,o<0&&(o+=360);const s=Math.sqrt(n*n+r*r);return[t,s,o]};u.lch.lab=function(e){const t=e[0],n=e[1],o=e[2]/360*2*Math.PI,a=n*Math.cos(o),s=n*Math.sin(o);return[t,a,s]};u.rgb.ansi16=function(e,t=null){const[n,r,o]=e;let a=t===null?u.rgb.hsv(e)[2]:t;if(a=Math.round(a/50),a===0)return 30;let s=30+(Math.round(o/255)<<2|Math.round(r/255)<<1|Math.round(n/255));return a===2&&(s+=60),s};u.hsv.ansi16=function(e){return u.rgb.ansi16(u.hsv.rgb(e),e[2])};u.rgb.ansi256=function(e){const t=e[0],n=e[1],r=e[2];return t===n&&n===r?t<8?16:t>248?231:Math.round((t-8)/247*24)+232:16+36*Math.round(t/255*5)+6*Math.round(n/255*5)+Math.round(r/255*5)};u.ansi16.rgb=function(e){let t=e%10;if(t===0||t===7)return e>50&&(t+=3.5),t=t/10.5*255,[t,t,t];const n=(~~(e>50)+1)*.5,r=(t&1)*n*255,o=(t>>1&1)*n*255,a=(t>>2&1)*n*255;return[r,o,a]};u.ansi256.rgb=function(e){if(e>=232){const a=(e-232)*10+8;return[a,a,a]}e-=16;let t;const n=Math.floor(e/36)/5*255,r=Math.floor((t=e%36)/6)/5*255,o=t%6/5*255;return[n,r,o]};u.rgb.hex=function(e){const n=(((Math.round(e[0])&255)<<16)+((Math.round(e[1])&255)<<8)+(Math.round(e[2])&255)).toString(16).toUpperCase();return"000000".substring(n.length)+n};u.hex.rgb=function(e){const t=e.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!t)return[0,0,0];let n=t[0];t[0].length===3&&(n=n.split("").map(l=>l+l).join(""));const r=parseInt(n,16),o=r>>16&255,a=r>>8&255,s=r&255;return[o,a,s]};u.rgb.hcg=function(e){const t=e[0]/255,n=e[1]/255,r=e[2]/255,o=Math.max(Math.max(t,n),r),a=Math.min(Math.min(t,n),r),s=o-a;let l,c;return s<1?l=a/(1-s):l=0,s<=0?c=0:o===t?c=(n-r)/s%6:o===n?c=2+(r-t)/s:c=4+(t-n)/s,c/=6,c%=1,[c*360,s*100,l*100]};u.hsl.hcg=function(e){const t=e[1]/100,n=e[2]/100,r=n<.5?2*t*n:2*t*(1-n);let o=0;return r<1&&(o=(n-.5*r)/(1-r)),[e[0],r*100,o*100]};u.hsv.hcg=function(e){const t=e[1]/100,n=e[2]/100,r=t*n;let o=0;return r<1&&(o=(n-r)/(1-r)),[e[0],r*100,o*100]};u.hcg.rgb=function(e){const t=e[0]/360,n=e[1]/100,r=e[2]/100;if(n===0)return[r*255,r*255,r*255];const o=[0,0,0],a=t%1*6,s=a%1,l=1-s;let c=0;switch(Math.floor(a)){case 0:o[0]=1,o[1]=s,o[2]=0;break;case 1:o[0]=l,o[1]=1,o[2]=0;break;case 2:o[0]=0,o[1]=1,o[2]=s;break;case 3:o[0]=0,o[1]=l,o[2]=1;break;case 4:o[0]=s,o[1]=0,o[2]=1;break;default:o[0]=1,o[1]=0,o[2]=l}return c=(1-n)*r,[(n*o[0]+c)*255,(n*o[1]+c)*255,(n*o[2]+c)*255]};u.hcg.hsv=function(e){const t=e[1]/100,n=e[2]/100,r=t+n*(1-t);let o=0;return r>0&&(o=t/r),[e[0],o*100,r*100]};u.hcg.hsl=function(e){const t=e[1]/100,r=e[2]/100*(1-t)+.5*t;let o=0;return r>0&&r<.5?o=t/(2*r):r>=.5&&r<1&&(o=t/(2*(1-r))),[e[0],o*100,r*100]};u.hcg.hwb=function(e){const t=e[1]/100,n=e[2]/100,r=t+n*(1-t);return[e[0],(r-t)*100,(1-r)*100]};u.hwb.hcg=function(e){const t=e[1]/100,r=1-e[2]/100,o=r-t;let a=0;return o<1&&(a=(r-o)/(1-o)),[e[0],o*100,a*100]};u.apple.rgb=function(e){return[e[0]/65535*255,e[1]/65535*255,e[2]/65535*255]};u.rgb.apple=function(e){return[e[0]/255*65535,e[1]/255*65535,e[2]/255*65535]};u.gray.rgb=function(e){return[e[0]/100*255,e[0]/100*255,e[0]/100*255]};u.gray.hsl=function(e){return[0,0,e[0]]};u.gray.hsv=u.gray.hsl;u.gray.hwb=function(e){return[0,100,e[0]]};u.gray.cmyk=function(e){return[0,0,0,e[0]]};u.gray.lab=function(e){return[e[0],0,0]};u.gray.hex=function(e){const t=Math.round(e[0]/100*255)&255,r=((t<<16)+(t<<8)+t).toString(16).toUpperCase();return"000000".substring(r.length)+r};u.rgb.gray=function(e){return[(e[0]+e[1]+e[2])/3/255*100]};const X=_e;function Qe(){const e={},t=Object.keys(X);for(let n=t.length,r=0;r1&&(n=r),e(n))};return"conversion"in e&&(t.conversion=e.conversion),t}function st(e){const t=function(...n){const r=n[0];if(r==null)return r;r.length>1&&(n=r);const o=e(n);if(typeof o=="object")for(let a=o.length,s=0;s{N[e]={},Object.defineProperty(N[e],"channels",{value:U[e].channels}),Object.defineProperty(N[e],"labels",{value:U[e].labels});const t=rt(e);Object.keys(t).forEach(r=>{const o=t[r];N[e][r]=st(o),N[e][r].raw=at(o)})});var lt=N;const _=ue(lt);var ct=Ne,it=function(){return ct.Date.now()},ut=it,ft=/\s/;function ht(e){for(var t=e.length;t--&&ft.test(e.charAt(t)););return t}var dt=ht,gt=dt,mt=/^\s+/;function bt(e){return e&&e.slice(0,gt(e)+1).replace(mt,"")}var vt=bt,pt=vt,oe=fe,yt=Me,ae=0/0,xt=/^[-+]0x[0-9a-f]+$/i,wt=/^0b[01]+$/i,kt=/^0o[0-7]+$/i,_t=parseInt;function Et(e){if(typeof e=="number")return e;if(yt(e))return ae;if(oe(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=oe(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=pt(e);var n=wt.test(e);return n||kt.test(e)?_t(e.slice(2),n?2:8):xt.test(e)?ae:+e}var Mt=Et,Ct=fe,W=ut,se=Mt,$t="Expected a function",Ot=Math.max,It=Math.min;function Nt(e,t,n){var r,o,a,s,l,c,i=0,d=!1,f=!1,g=!0;if(typeof e!="function")throw new TypeError($t);t=se(t)||0,Ct(n)&&(d=!!n.leading,f="maxWait"in n,a=f?Ot(se(n.maxWait)||0,t):a,g="trailing"in n?!!n.trailing:g);function x(v){var C=r,z=o;return r=o=void 0,i=v,s=e.apply(z,C),s}function j(v){return i=v,l=setTimeout(b,t),d?x(v):s}function M(v){var C=v-c,z=v-i,ee=t-C;return f?It(ee,a-z):ee}function p(v){var C=v-c,z=v-i;return c===void 0||C>=t||C<0||f&&z>=a}function b(){var v=W();if(p(v))return w(v);l=setTimeout(b,M(v))}function w(v){return l=void 0,g&&r?x(v):(r=o=void 0,s)}function E(){l!==void 0&&clearTimeout(l),i=0,r=c=o=l=void 0}function k(){return l===void 0?s:w(W())}function O(){var v=W(),C=p(v);if(r=arguments,o=this,c=v,C){if(l===void 0)return j(c);if(f)return clearTimeout(l),l=setTimeout(b,t),x(c)}return l===void 0&&(l=setTimeout(b,t)),s}return O.cancel=E,O.flush=k,O}var St=Nt;const Rt=ue(St);var jt=$.div({position:"relative",maxWidth:250,'&[aria-readonly="true"]':{opacity:.5}}),zt=$(ie)({position:"absolute",zIndex:1,top:4,left:4,"[aria-readonly=true] &":{cursor:"not-allowed"}}),Ft=$.div({width:200,margin:5,".react-colorful__saturation":{borderRadius:"4px 4px 0 0"},".react-colorful__hue":{boxShadow:"inset 0 0 0 1px rgb(0 0 0 / 5%)"},".react-colorful__last-control":{borderRadius:"0 0 4px 4px"}}),Ht=$(Ce)(({theme:e})=>({fontFamily:e.typography.fonts.base})),Tt=$.div({display:"grid",gridTemplateColumns:"repeat(9, 16px)",gap:6,padding:3,marginTop:5,width:200}),Pt=$.div(({theme:e,active:t})=>({width:16,height:16,boxShadow:t?`${e.appBorderColor} 0 0 0 1px inset, ${e.textMutedColor}50 0 0 0 4px`:`${e.appBorderColor} 0 0 0 1px inset`,borderRadius:e.appBorderRadius})),Lt=`url('data:image/svg+xml;charset=utf-8,')`,le=({value:e,style:t,...n})=>{let r=`linear-gradient(${e}, ${e}), ${Lt}, linear-gradient(#fff, #fff)`;return h.createElement(Pt,{...n,style:{...t,backgroundImage:r}})},qt=$($e.Input)(({theme:e,readOnly:t})=>({width:"100%",paddingLeft:30,paddingRight:30,boxSizing:"border-box",fontFamily:e.typography.fonts.base})),Bt=$(Oe)(({theme:e})=>({position:"absolute",zIndex:1,top:6,right:7,width:20,height:20,padding:4,boxSizing:"border-box",cursor:"pointer",color:e.input.color})),Ee=(e=>(e.RGB="rgb",e.HSL="hsl",e.HEX="hex",e))(Ee||{}),L=Object.values(Ee),Xt=/\(([0-9]+),\s*([0-9]+)%?,\s*([0-9]+)%?,?\s*([0-9.]+)?\)/,Dt=/^\s*rgba?\(([0-9]+),\s*([0-9]+),\s*([0-9]+),?\s*([0-9.]+)?\)\s*$/i,Wt=/^\s*hsla?\(([0-9]+),\s*([0-9]+)%,\s*([0-9]+)%,?\s*([0-9.]+)?\)\s*$/i,Y=/^\s*#?([0-9a-f]{3}|[0-9a-f]{6})\s*$/i,Kt=/^\s*#?([0-9a-f]{3})\s*$/i,Vt={hex:We,rgb:Ue,hsl:Ae},q={hex:"transparent",rgb:"rgba(0, 0, 0, 0)",hsl:"hsla(0, 0%, 0%, 0)"},ce=e=>{let t=e==null?void 0:e.match(Xt);if(!t)return[0,0,0,1];let[,n,r,o,a=1]=t;return[n,r,o,a].map(Number)},S=e=>{if(!e)return;let t=!0;if(Dt.test(e)){let[s,l,c,i]=ce(e),[d,f,g]=_.rgb.hsl([s,l,c])||[0,0,0];return{valid:t,value:e,keyword:_.rgb.keyword([s,l,c]),colorSpace:"rgb",rgb:e,hsl:`hsla(${d}, ${f}%, ${g}%, ${i})`,hex:`#${_.rgb.hex([s,l,c]).toLowerCase()}`}}if(Wt.test(e)){let[s,l,c,i]=ce(e),[d,f,g]=_.hsl.rgb([s,l,c])||[0,0,0];return{valid:t,value:e,keyword:_.hsl.keyword([s,l,c]),colorSpace:"hsl",rgb:`rgba(${d}, ${f}, ${g}, ${i})`,hsl:e,hex:`#${_.hsl.hex([s,l,c]).toLowerCase()}`}}let n=e.replace("#",""),r=_.keyword.rgb(n)||_.hex.rgb(n),o=_.rgb.hsl(r),a=e;if(/[^#a-f0-9]/i.test(e)?a=n:Y.test(e)&&(a=`#${n}`),a.startsWith("#"))t=Y.test(a);else try{_.keyword.hex(a)}catch{t=!1}return{valid:t,value:a,keyword:_.rgb.keyword(r),colorSpace:"hex",rgb:`rgba(${r[0]}, ${r[1]}, ${r[2]}, 1)`,hsl:`hsla(${o[0]}, ${o[1]}%, ${o[2]}%, 1)`,hex:a}},At=(e,t,n)=>{if(!e||!(t!=null&&t.valid))return q[n];if(n!=="hex")return(t==null?void 0:t[n])||q[n];if(!t.hex.startsWith("#"))try{return`#${_.keyword.hex(t.hex)}`}catch{return q.hex}let r=t.hex.match(Kt);if(!r)return Y.test(t.hex)?t.hex:q.hex;let[o,a,s]=r[1].split("");return`#${o}${o}${a}${a}${s}${s}`},Gt=(e,t)=>{let[n,r]=m.useState(e||""),[o,a]=m.useState(()=>S(n)),[s,l]=m.useState((o==null?void 0:o.colorSpace)||"hex");m.useEffect(()=>{let f=e||"",g=S(f);r(f),a(g),l((g==null?void 0:g.colorSpace)||"hex")},[e]);let c=m.useMemo(()=>At(n,o,s).toLowerCase(),[n,o,s]),i=m.useCallback(f=>{let g=S(f),x=(g==null?void 0:g.value)||f||"";r(x),x===""&&(a(void 0),t(void 0)),g&&(a(g),l(g.colorSpace),t(g.value))},[t]),d=m.useCallback(()=>{let f=L.indexOf(s)+1;f>=L.length&&(f=0),l(L[f]);let g=(o==null?void 0:o[L[f]])||"";r(g),t(g)},[o,s,t]);return{value:n,realValue:c,updateValue:i,color:o,colorSpace:s,cycleColorSpace:d}},D=e=>e.replace(/\s*/,"").toLowerCase(),Ut=(e,t,n)=>{let[r,o]=m.useState(t!=null&&t.valid?[t]:[]);m.useEffect(()=>{t===void 0&&o([])},[t]);let a=m.useMemo(()=>(e||[]).map(l=>typeof l=="string"?S(l):l.title?{...S(l.color),keyword:l.title}:S(l.color)).concat(r).filter(Boolean).slice(-27),[e,r]),s=m.useCallback(l=>{l!=null&&l.valid&&(a.some(c=>D(c[n])===D(l[n]))||o(c=>c.concat(l)))},[n,a]);return{presets:a,addPreset:s}},Yt=({name:e,value:t,onChange:n,onFocus:r,onBlur:o,presetColors:a,startOpen:s=!1,argType:l})=>{var E;let c=m.useCallback(Rt(n,200),[n]),{value:i,realValue:d,updateValue:f,color:g,colorSpace:x,cycleColorSpace:j}=Gt(t,c),{presets:M,addPreset:p}=Ut(a,g,x),b=Vt[x],w=!!((E=l==null?void 0:l.table)!=null&&E.readonly);return h.createElement(jt,{"aria-readonly":w},h.createElement(zt,{startOpen:s,trigger:w?[null]:void 0,closeOnOutsideClick:!0,onVisibleChange:()=>p(g),tooltip:h.createElement(Ft,null,h.createElement(b,{color:d==="transparent"?"#000000":d,onChange:f,onFocus:r,onBlur:o}),M.length>0&&h.createElement(Tt,null,M.map((k,O)=>h.createElement(ie,{key:`${k.value}-${O}`,hasChrome:!1,tooltip:h.createElement(Ht,{note:k.keyword||k.value})},h.createElement(le,{value:k[x],active:g&&D(k[x])===D(g[x]),onClick:()=>f(k.value)})))))},h.createElement(le,{value:d,style:{margin:4}})),h.createElement(qt,{id:Ie(e),value:i,onChange:k=>f(k.target.value),onFocus:k=>k.target.select(),readOnly:w,placeholder:"Choose color..."}),i?h.createElement(Bt,{onClick:j}):null)},sn=Yt;export{Yt as ColorControl,sn as default}; diff --git a/storybook-static/assets/DocsRenderer-PKQXORMH-b0610b88.js b/storybook-static/assets/DocsRenderer-PKQXORMH-b0610b88.js deleted file mode 100644 index 12a3e37..0000000 --- a/storybook-static/assets/DocsRenderer-PKQXORMH-b0610b88.js +++ /dev/null @@ -1,573 +0,0 @@ -var wD=Object.defineProperty;var ED=(e,t,r)=>t in e?wD(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r;var yr=(e,t,r)=>(ED(e,typeof t!="symbol"?t+"":t,r),r);import{_ as ip}from"./iframe-33901838.js";import{R as y,r as l,g as xs}from"./index-f1f2c4b1.js";import{c as xD}from"./client-e941fabf.js";import{w as dy,r as lp}from"./index-5f347087.js";import{O as py,P as CD}from"./index-1b441bc2.js";import{_ as fr,h as fy,i as Ca,j as sp,d as hr,a as Cs,c as gn,k as DD,l as SD,b as hy,e as Xh,s as Ou}from"./isArray-03ed71c9.js";import{d as AD}from"./index-356e4a49.js";var _l=new Map,kD=({callback:e,children:t})=>{let r=l.useRef();return l.useLayoutEffect(()=>{r.current!==e&&(r.current=e,e())},[e]),t},_D=async(e,t,r)=>{let n=await ID(t,r);return new Promise(a=>{n.render(y.createElement(kD,{callback:()=>a(null)},e))})},FD=(e,t)=>{let r=_l.get(e);r&&(r.unmount(),_l.delete(e))},ID=async(e,t)=>{let r=_l.get(e);return r||(r=xD.createRoot(e,t),_l.set(e,r)),r},TD=Object.create,my=Object.defineProperty,RD=Object.getOwnPropertyDescriptor,gy=Object.getOwnPropertyNames,BD=Object.getPrototypeOf,zD=Object.prototype.hasOwnProperty,Da=(e,t)=>function(){return t||(0,e[gy(e)[0]])((t={exports:{}}).exports,t),t.exports},$D=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of gy(t))!zD.call(e,a)&&a!==r&&my(e,a,{get:()=>t[a],enumerable:!(n=RD(t,a))||n.enumerable});return e},OD=(e,t,r)=>(r=e!=null?TD(BD(e)):{},$D(t||!e||!e.__esModule?my(r,"default",{value:e,enumerable:!0}):r,e)),xt=e=>`control-${e.replace(/\s+/g,"-")}`,Ds=e=>`set-${e.replace(/\s+/g,"-")}`,LD=Object.create,up=Object.defineProperty,MD=Object.getOwnPropertyDescriptor,PD=Object.getOwnPropertyNames,ND=Object.getPrototypeOf,HD=Object.prototype.hasOwnProperty,I=(e,t)=>up(e,"name",{value:t,configurable:!0}),Fi=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,r)=>(typeof require<"u"?require:t)[r]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')}),Ss=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),jD=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of PD(t))!HD.call(e,a)&&a!==r&&up(e,a,{get:()=>t[a],enumerable:!(n=MD(t,a))||n.enumerable});return e},cp=(e,t,r)=>(r=e!=null?LD(ND(e)):{},jD(t||!e||!e.__esModule?up(r,"default",{value:e,enumerable:!0}):r,e)),VD=Ss(e=>{(function(){var t=typeof Symbol=="function"&&Symbol.for,r=t?Symbol.for("react.element"):60103,n=t?Symbol.for("react.portal"):60106,a=t?Symbol.for("react.fragment"):60107,o=t?Symbol.for("react.strict_mode"):60108,i=t?Symbol.for("react.profiler"):60114,s=t?Symbol.for("react.provider"):60109,u=t?Symbol.for("react.context"):60110,d=t?Symbol.for("react.async_mode"):60111,p=t?Symbol.for("react.concurrent_mode"):60111,h=t?Symbol.for("react.forward_ref"):60112,m=t?Symbol.for("react.suspense"):60113,f=t?Symbol.for("react.suspense_list"):60120,v=t?Symbol.for("react.memo"):60115,g=t?Symbol.for("react.lazy"):60116,b=t?Symbol.for("react.block"):60121,C=t?Symbol.for("react.fundamental"):60117,w=t?Symbol.for("react.responder"):60118,x=t?Symbol.for("react.scope"):60119;function E(P){return typeof P=="string"||typeof P=="function"||P===a||P===p||P===i||P===o||P===m||P===f||typeof P=="object"&&P!==null&&(P.$$typeof===g||P.$$typeof===v||P.$$typeof===s||P.$$typeof===u||P.$$typeof===h||P.$$typeof===C||P.$$typeof===w||P.$$typeof===x||P.$$typeof===b)}I(E,"isValidElementType");function D(P){if(typeof P=="object"&&P!==null){var st=P.$$typeof;switch(st){case r:var At=P.type;switch(At){case d:case p:case a:case i:case o:case m:return At;default:var Nr=At&&At.$$typeof;switch(Nr){case u:case h:case g:case v:case s:return Nr;default:return st}}case n:return st}}}I(D,"typeOf");var S=d,A=p,k=u,F=s,T=r,R=h,$=a,z=g,L=v,O=n,M=i,j=o,G=m,H=!1;function K(P){return H||(H=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")),te(P)||D(P)===d}I(K,"isAsyncMode");function te(P){return D(P)===p}I(te,"isConcurrentMode");function le(P){return D(P)===u}I(le,"isContextConsumer");function Q(P){return D(P)===s}I(Q,"isContextProvider");function re(P){return typeof P=="object"&&P!==null&&P.$$typeof===r}I(re,"isElement");function N(P){return D(P)===h}I(N,"isForwardRef");function Y(P){return D(P)===a}I(Y,"isFragment");function J(P){return D(P)===g}I(J,"isLazy");function pe(P){return D(P)===v}I(pe,"isMemo");function Se(P){return D(P)===n}I(Se,"isPortal");function St(P){return D(P)===i}I(St,"isProfiler");function Ue(P){return D(P)===o}I(Ue,"isStrictMode");function lt(P){return D(P)===m}I(lt,"isSuspense"),e.AsyncMode=S,e.ConcurrentMode=A,e.ContextConsumer=k,e.ContextProvider=F,e.Element=T,e.ForwardRef=R,e.Fragment=$,e.Lazy=z,e.Memo=L,e.Portal=O,e.Profiler=M,e.StrictMode=j,e.Suspense=G,e.isAsyncMode=K,e.isConcurrentMode=te,e.isContextConsumer=le,e.isContextProvider=Q,e.isElement=re,e.isForwardRef=N,e.isFragment=Y,e.isLazy=J,e.isMemo=pe,e.isPortal=Se,e.isProfiler=St,e.isStrictMode=Ue,e.isSuspense=lt,e.isValidElementType=E,e.typeOf=D})()}),UD=Ss((e,t)=>{t.exports=VD()}),vy=Ss((e,t)=>{var r=UD(),n={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};s[r.ForwardRef]=o,s[r.Memo]=i;function u(b){return r.isMemo(b)?i:s[b.$$typeof]||n}I(u,"getStatics");var d=Object.defineProperty,p=Object.getOwnPropertyNames,h=Object.getOwnPropertySymbols,m=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,v=Object.prototype;function g(b,C,w){if(typeof C!="string"){if(v){var x=f(C);x&&x!==v&&g(b,x,w)}var E=p(C);h&&(E=E.concat(h(C)));for(var D=u(b),S=u(C),A=0;A{(function(r){if(typeof e=="object"&&typeof t<"u")t.exports=r();else if(typeof define=="function"&&define.amd)define([],r);else{var n;typeof window<"u"?n=window:typeof global<"u"?n=global:typeof self<"u"?n=self:n=this,n.memoizerific=r()}})(function(){return I(function r(n,a,o){function i(d,p){if(!a[d]){if(!n[d]){var h=typeof Fi=="function"&&Fi;if(!p&&h)return h(d,!0);if(s)return s(d,!0);var m=new Error("Cannot find module '"+d+"'");throw m.code="MODULE_NOT_FOUND",m}var f=a[d]={exports:{}};n[d][0].call(f.exports,function(v){var g=n[d][1][v];return i(g||v)},f,f.exports,r,n,a,o)}return a[d].exports}I(i,"s");for(var s=typeof Fi=="function"&&Fi,u=0;u=0)return this.lastItem=this.list[s],this.list[s].val},o.prototype.set=function(i,s){var u;return this.lastItem&&this.isEqual(this.lastItem.key,i)?(this.lastItem.val=s,this):(u=this.indexOf(i),u>=0?(this.lastItem=this.list[u],this.list[u].val=s,this):(this.lastItem={key:i,val:s},this.list.push(this.lastItem),this.size++,this))},o.prototype.delete=function(i){var s;if(this.lastItem&&this.isEqual(this.lastItem.key,i)&&(this.lastItem=void 0),s=this.indexOf(i),s>=0)return this.size--,this.list.splice(s,1)[0]},o.prototype.has=function(i){var s;return this.lastItem&&this.isEqual(this.lastItem.key,i)?!0:(s=this.indexOf(i),s>=0?(this.lastItem=this.list[s],!0):!1)},o.prototype.forEach=function(i,s){var u;for(u=0;u0&&(w[C]={cacheItem:v,arg:arguments[C]},x?i(h,w):h.push(w),h.length>d&&s(h.shift())),f.wasMemoized=x,f.numArgs=C+1,b},"memoizerific");return f.limit=d,f.wasMemoized=!1,f.cache=p,f.lru=h,f}};function i(d,p){var h=d.length,m=p.length,f,v,g;for(v=0;v=0&&(h=d[f],m=h.cacheItem.get(h.arg),!m||!m.size);f--)h.cacheItem.delete(h.arg)}I(s,"removeCachedResult");function u(d,p){return d===p||d!==d&&p!==p}I(u,"isEqual")},{"map-or-similar":1}]},{},[3])(3)})});function Ut(){return Ut=Object.assign?Object.assign.bind():function(e){for(var t=1;t0?be(Sa,--je):0,aa--,de===10&&(aa=1,_s--),de}I(Ay,"prev");function Pe(){return de=je2||oa(de)>3?"":" "}I(ky,"whitespace");function _y(e,t){for(;--t&&Pe()&&!(de<48||de>102||de>57&&de<65||de>70&&de<97););return Aa(e,Co()+(t<6&>()==32&&Pe()==32))}I(_y,"escaping");function Tl(e){for(;Pe();)switch(de){case e:return je;case 34:case 39:e!==34&&e!==39&&Tl(de);break;case 40:e===41&&Tl(e);break;case 92:Pe();break}return je}I(Tl,"delimiter");function Fy(e,t){for(;Pe()&&e+de!==57&&!(e+de===84&>()===47););return"/*"+Aa(t,je-1)+"*"+As(e===47?e:Pe())}I(Fy,"commenter");function Iy(e){for(;!oa(gt());)Pe();return Aa(e,je)}I(Iy,"identifier");function Ty(e){return yp(So("",null,null,null,[""],e=vp(e),0,[0],e))}I(Ty,"compile");function So(e,t,r,n,a,o,i,s,u){for(var d=0,p=0,h=i,m=0,f=0,v=0,g=1,b=1,C=1,w=0,x="",E=a,D=o,S=n,A=x;b;)switch(v=w,w=Pe()){case 40:if(v!=108&&be(A,h-1)==58){Il(A+=X(Do(w),"&","&\f"),"&\f")!=-1&&(C=-1);break}case 34:case 39:case 91:A+=Do(w);break;case 9:case 10:case 13:case 32:A+=ky(v);break;case 92:A+=_y(Co()-1,7);continue;case 47:switch(gt()){case 42:case 47:po(Ry(Fy(Pe(),Co()),t,r),u);break;default:A+="/"}break;case 123*g:s[d++]=pt(A)*C;case 125*g:case 59:case 0:switch(w){case 0:case 125:b=0;case 59+p:C==-1&&(A=X(A,/\f/g,"")),f>0&&pt(A)-h&&po(f>32?ud(A+";",n,r,h-1):ud(X(A," ","")+";",n,r,h-2),u);break;case 59:A+=";";default:if(po(S=sd(A,t,r,d,p,a,s,x,E=[],D=[],h),o),w===123)if(p===0)So(A,t,S,S,E,o,h,s,D);else switch(m===99&&be(A,3)===110?100:m){case 100:case 108:case 109:case 115:So(e,S,S,n&&po(sd(e,S,S,0,0,a,s,x,a,E=[],h),D),a,D,h,s,n?E:D);break;default:So(A,S,S,S,[""],D,0,s,D)}}d=p=f=0,g=C=1,x=A="",h=i;break;case 58:h=1+pt(A),f=v;default:if(g<1){if(w==123)--g;else if(w==125&&g++==0&&Ay()==125)continue}switch(A+=As(w),w*g){case 38:C=p>0?1:(A+="\f",-1);break;case 44:s[d++]=(pt(A)-1)*C,C=1;break;case 64:gt()===45&&(A+=Do(Pe())),m=gt(),p=h=pt(x=A+=Iy(Co())),w++;break;case 45:v===45&&pt(A)==2&&(g=0)}}return o}I(So,"parse");function sd(e,t,r,n,a,o,i,s,u,d,p){for(var h=a-1,m=a===0?o:[""],f=ks(m),v=0,g=0,b=0;v0?m[C]+" "+w:X(w,/&\f/g,m[C])))&&(u[b++]=x);return Xo(e,t,r,a===0?hp:s,u,d,p)}I(sd,"ruleset");function Ry(e,t,r){return Xo(e,t,r,fp,As(Sy()),na(e,2,-2),0)}I(Ry,"comment");function ud(e,t,r,n){return Xo(e,t,r,mp,na(e,0,n),na(e,n+1,-1),n)}I(ud,"declaration");function on(e,t){for(var r="",n=ks(e),a=0;a-1},"isIgnoringComment"),oS=I(function(e){return function(t,r,n){if(!(t.type!=="rule"||e.compat)){var a=t.value.match(/(:first|:nth|:nth-last)-child/g);if(a){for(var o=!!t.parent,i=o?t.parent.children:n,s=i.length-1;s>=0;s--){var u=i[s];if(u.line=0;r--)if(!$y(t[r]))return!0;return!1},"isPrependedWithRegularRules"),tm=I(function(e){e.type="",e.value="",e.return="",e.children="",e.props=""},"nullifyElement"),lS=I(function(e,t,r){$y(e)&&(e.parent?(console.error("`@import` rules can't be nested inside other rules. Please move it to the top level and put it before regular rules. Keep in mind that they can only be used within global styles."),tm(e)):iS(t,r)&&(console.error("`@import` rules can't be after other rules. Please put your `@import` rules before your other rules."),tm(e)))},"incorrectImportAlarm");function bp(e,t){switch(Ey(e,t)){case 5103:return ee+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return ee+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return ee+e+Fl+e+Fe+e+e;case 6828:case 4268:return ee+e+Fe+e+e;case 6165:return ee+e+Fe+"flex-"+e+e;case 5187:return ee+e+X(e,/(\w+).+(:[^]+)/,ee+"box-$1$2"+Fe+"flex-$1$2")+e;case 5443:return ee+e+Fe+"flex-item-"+X(e,/flex-|-self/,"")+e;case 4675:return ee+e+Fe+"flex-line-pack"+X(e,/align-content|flex-|-self/,"")+e;case 5548:return ee+e+Fe+X(e,"shrink","negative")+e;case 5292:return ee+e+Fe+X(e,"basis","preferred-size")+e;case 6060:return ee+"box-"+X(e,"-grow","")+ee+e+Fe+X(e,"grow","positive")+e;case 4554:return ee+X(e,/([^-])(transform)/g,"$1"+ee+"$2")+e;case 6187:return X(X(X(e,/(zoom-|grab)/,ee+"$1"),/(image-set)/,ee+"$1"),e,"")+e;case 5495:case 3959:return X(e,/(image-set\([^]*)/,ee+"$1$`$1");case 4968:return X(X(e,/(.+:)(flex-)?(.*)/,ee+"box-pack:$3"+Fe+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+ee+e+e;case 4095:case 3583:case 4068:case 2532:return X(e,/(.+)-inline(.+)/,ee+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(pt(e)-1-t>6)switch(be(e,t+1)){case 109:if(be(e,t+4)!==45)break;case 102:return X(e,/(.+:)(.+)-([^]+)/,"$1"+ee+"$2-$3$1"+Fl+(be(e,t+3)==108?"$3":"$2-$3"))+e;case 115:return~Il(e,"stretch")?bp(X(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(be(e,t+1)!==115)break;case 6444:switch(be(e,pt(e)-3-(~Il(e,"!important")&&10))){case 107:return X(e,":",":"+ee)+e;case 101:return X(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+ee+(be(e,14)===45?"inline-":"")+"box$3$1"+ee+"$2$3$1"+Fe+"$2box$3")+e}break;case 5936:switch(be(e,t+11)){case 114:return ee+e+Fe+X(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return ee+e+Fe+X(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return ee+e+Fe+X(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return ee+e+Fe+e+e}return e}I(bp,"prefix");var sS=I(function(e,t,r,n){if(e.length>-1&&!e.return)switch(e.type){case mp:e.return=bp(e.value,e.length);break;case wy:return on([Nn(e,{value:X(e.value,"@","@"+ee)})],n);case hp:if(e.length)return Cy(e.props,function(a){switch(xy(a,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return on([Nn(e,{props:[X(a,/:(read-\w+)/,":"+Fl+"$1")]})],n);case"::placeholder":return on([Nn(e,{props:[X(a,/:(plac\w+)/,":"+ee+"input-$1")]}),Nn(e,{props:[X(a,/:(plac\w+)/,":"+Fl+"$1")]}),Nn(e,{props:[X(a,/:(plac\w+)/,Fe+"input-$1")]})],n)}return""})}},"prefixer"),uS=[sS],cS=I(function(e){var t=e.key;if(!t)throw new Error(`You have to configure \`key\` for your cache. Please make sure it's unique (and not equal to 'css') as it's used for linking styles to your cache. -If multiple caches share the same key they might "fight" for each other's style elements.`);if(t==="css"){var r=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(r,function(v){var g=v.getAttribute("data-emotion");g.indexOf(" ")!==-1&&(document.head.appendChild(v),v.setAttribute("data-s",""))})}var n=e.stylisPlugins||uS;if(/[^a-z-]/.test(t))throw new Error('Emotion key must only contain lower case alphabetical characters and - but "'+t+'" was passed');var a={},o,i=[];o=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),function(v){for(var g=v.getAttribute("data-emotion").split(" "),b=1;b=4;++n,a-=4)r=e.charCodeAt(n)&255|(e.charCodeAt(++n)&255)<<8|(e.charCodeAt(++n)&255)<<16|(e.charCodeAt(++n)&255)<<24,r=(r&65535)*1540483477+((r>>>16)*59797<<16),r^=r>>>24,t=(r&65535)*1540483477+((r>>>16)*59797<<16)^(t&65535)*1540483477+((t>>>16)*59797<<16);switch(a){case 3:t^=(e.charCodeAt(n+2)&255)<<16;case 2:t^=(e.charCodeAt(n+1)&255)<<8;case 1:t^=e.charCodeAt(n)&255,t=(t&65535)*1540483477+((t>>>16)*59797<<16)}return t^=t>>>13,t=(t&65535)*1540483477+((t>>>16)*59797<<16),((t^t>>>15)>>>0).toString(36)}I(Oy,"murmur2");var hS={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},rm=`You have illegal escape sequence in your template literal, most likely inside content's property value. -Because you write your CSS inside a JavaScript string you actually have to do double escaping, so for example "content: '\\00d7';" should become "content: '\\\\00d7';". -You can read more about this here: -https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`,mS="You have passed in falsy value as style object's key (can happen when in example you pass unexported component as computed key).",gS=/[A-Z]|^ms/g,Ly=/_EMO_([^_]+?)_([^]*?)_EMO_/g,wp=I(function(e){return e.charCodeAt(1)===45},"isCustomProperty"),nm=I(function(e){return e!=null&&typeof e!="boolean"},"isProcessableValue"),Lu=dp(function(e){return wp(e)?e:e.replace(gS,"-$&").toLowerCase()}),Rl=I(function(e,t){switch(e){case"animation":case"animationName":if(typeof t=="string")return t.replace(Ly,function(r,n,a){return Ot={name:n,styles:a,next:Ot},n})}return hS[e]!==1&&!wp(e)&&typeof t=="number"&&t!==0?t+"px":t},"processStyleValue");am=/(var|attr|counters?|url|element|(((repeating-)?(linear|radial))|conic)-gradient)\(|(no-)?(open|close)-quote/,om=["normal","none","initial","inherit","unset"],im=Rl,lm=/^-ms-/,sm=/-(.)/g,Mu={},Rl=I(function(e,t){if(e==="content"&&(typeof t!="string"||om.indexOf(t)===-1&&!am.test(t)&&(t.charAt(0)!==t.charAt(t.length-1)||t.charAt(0)!=='"'&&t.charAt(0)!=="'")))throw new Error("You seem to be using a value for 'content' without quotes, try replacing it with `content: '\""+t+"\"'`");var r=im(e,t);return r!==""&&!wp(e)&&e.indexOf("-")!==-1&&Mu[e]===void 0&&(Mu[e]=!0,console.error("Using kebab-case for css properties in objects is not supported. Did you mean "+e.replace(lm,"ms-").replace(sm,function(n,a){return a.toUpperCase()})+"?")),r},"processStyleValue");var am,om,im,lm,sm,Mu,My="Component selectors can only be used in conjunction with @emotion/babel-plugin, the swc Emotion plugin, or another Emotion-aware compiler transform.";function ia(e,t,r){if(r==null)return"";if(r.__emotion_styles!==void 0){if(r.toString()==="NO_COMPONENT_SELECTOR")throw new Error(My);return r}switch(typeof r){case"boolean":return"";case"object":{if(r.anim===1)return Ot={name:r.name,styles:r.styles,next:Ot},r.name;if(r.styles!==void 0){var n=r.next;if(n!==void 0)for(;n!==void 0;)Ot={name:n.name,styles:n.styles,next:Ot},n=n.next;var a=r.styles+";";return r.map!==void 0&&(a+=r.map),a}return Py(e,t,r)}case"function":{if(e!==void 0){var o=Ot,i=r(e);return Ot=o,ia(e,t,i)}else console.error("Functions that are interpolated in css calls will be stringified.\nIf you want to have a css call based on props, create a function that returns a css call like this\nlet dynamicStyle = (props) => css`color: ${props.color}`\nIt can be called directly with props or interpolated in a styled call like this\nlet SomeComponent = styled('div')`${dynamicStyle}`");break}case"string":var s=[],u=r.replace(Ly,function(p,h,m){var f="animation"+s.length;return s.push("const "+f+" = keyframes`"+m.replace(/^@keyframes animation-\w+/,"")+"`"),"${"+f+"}"});s.length&&console.error("`keyframes` output got interpolated into plain string, please wrap it with `css`.\n\nInstead of doing this:\n\n"+[].concat(s,["`"+u+"`"]).join(` -`)+` - -You should wrap it with \`css\` like this: - -`+("css`"+u+"`"));break}if(t==null)return r;var d=t[r];return d!==void 0?d:r}I(ia,"handleInterpolation");function Py(e,t,r){var n="";if(Array.isArray(r))for(var a=0;a ({})}!");return r}if(t==null||typeof t!="object"||Array.isArray(t))throw new Error("[ThemeProvider] Please make your theme prop a plain object");return Ut({},e,t)},"getTheme"),wS=Qh(function(e){return Qh(function(t){return bS(e,t)})}),Vy=I(function(e){var t=l.useContext(cr);return e.theme!==t&&(t=wS(t)(e.theme)),l.createElement(cr.Provider,{value:t},e.children)},"ThemeProvider");function ES(e){var t=e.displayName||e.name||"Component",r=I(function(a,o){var i=l.useContext(cr);return l.createElement(e,Ut({theme:i,ref:o},a))},"render"),n=l.forwardRef(r);return n.displayName="WithTheme("+t+")",pS(n,e)}I(ES,"withTheme");var dm="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",pm="__EMOTION_LABEL_PLEASE_DO_NOT_USE__",xS=I(function(e){var t=e.cache,r=e.serialized,n=e.isStringTag;return Is(t,r,n),Ep(function(){return Ts(t,r,n)}),null},"Insertion"),CS=Rs(function(e,t,r){var n=e.css;typeof n=="string"&&t.registered[n]!==void 0&&(n=t.registered[n]);var a=e[dm],o=[n],i="";typeof e.className=="string"?i=Fs(t.registered,o,e.className):e.className!=null&&(i=e.className+" ");var s=la(o,void 0,l.useContext(cr));if(s.name.indexOf("-")===-1){var u=e[pm];u&&(s=la([s,"label:"+u+";"]))}i+=t.key+"-"+s.name;var d={};for(var p in e)yS.call(e,p)&&p!=="css"&&p!==dm&&p!==pm&&(d[p]=e[p]);return d.ref=r,d.className=i,l.createElement(l.Fragment,null,l.createElement(xS,{cache:t,serialized:s,isStringTag:typeof a=="string"}),l.createElement(a,d))});CS.displayName="EmotionCssPropInternal";cp(vy());var DS={name:"@emotion/react",version:"11.11.4",main:"dist/emotion-react.cjs.js",module:"dist/emotion-react.esm.js",browser:{"./dist/emotion-react.esm.js":"./dist/emotion-react.browser.esm.js"},exports:{".":{module:{worker:"./dist/emotion-react.worker.esm.js",browser:"./dist/emotion-react.browser.esm.js",default:"./dist/emotion-react.esm.js"},import:"./dist/emotion-react.cjs.mjs",default:"./dist/emotion-react.cjs.js"},"./jsx-runtime":{module:{worker:"./jsx-runtime/dist/emotion-react-jsx-runtime.worker.esm.js",browser:"./jsx-runtime/dist/emotion-react-jsx-runtime.browser.esm.js",default:"./jsx-runtime/dist/emotion-react-jsx-runtime.esm.js"},import:"./jsx-runtime/dist/emotion-react-jsx-runtime.cjs.mjs",default:"./jsx-runtime/dist/emotion-react-jsx-runtime.cjs.js"},"./_isolated-hnrs":{module:{worker:"./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.worker.esm.js",browser:"./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.browser.esm.js",default:"./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.esm.js"},import:"./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.mjs",default:"./_isolated-hnrs/dist/emotion-react-_isolated-hnrs.cjs.js"},"./jsx-dev-runtime":{module:{worker:"./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.worker.esm.js",browser:"./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.browser.esm.js",default:"./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.esm.js"},import:"./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.mjs",default:"./jsx-dev-runtime/dist/emotion-react-jsx-dev-runtime.cjs.js"},"./package.json":"./package.json","./types/css-prop":"./types/css-prop.d.ts","./macro":{types:{import:"./macro.d.mts",default:"./macro.d.ts"},default:"./macro.js"}},types:"types/index.d.ts",files:["src","dist","jsx-runtime","jsx-dev-runtime","_isolated-hnrs","types/*.d.ts","macro.*"],sideEffects:!1,author:"Emotion Contributors",license:"MIT",scripts:{"test:typescript":"dtslint types"},dependencies:{"@babel/runtime":"^7.18.3","@emotion/babel-plugin":"^11.11.0","@emotion/cache":"^11.11.0","@emotion/serialize":"^1.1.3","@emotion/use-insertion-effect-with-fallbacks":"^1.0.1","@emotion/utils":"^1.2.1","@emotion/weak-memoize":"^0.3.1","hoist-non-react-statics":"^3.3.1"},peerDependencies:{react:">=16.8.0"},peerDependenciesMeta:{"@types/react":{optional:!0}},devDependencies:{"@definitelytyped/dtslint":"0.0.112","@emotion/css":"11.11.2","@emotion/css-prettifier":"1.1.3","@emotion/server":"11.11.0","@emotion/styled":"11.11.0","html-tag-names":"^1.1.2",react:"16.14.0","svg-tag-names":"^1.1.1",typescript:"^4.5.5"},repository:"https://github.com/emotion-js/emotion/tree/main/packages/react",publishConfig:{access:"public"},"umd:main":"dist/emotion-react.umd.min.js",preconstruct:{entrypoints:["./index.js","./jsx-runtime.js","./jsx-dev-runtime.js","./_isolated-hnrs.js"],umdName:"emotionReact",exports:{envConditions:["browser","worker"],extra:{"./types/css-prop":"./types/css-prop.d.ts","./macro":{types:{import:"./macro.d.mts",default:"./macro.d.ts"},default:"./macro.js"}}}}},fm=!1,SS=Rs(function(e,t){!fm&&(e.className||e.css)&&(console.error("It looks like you're using the css prop on Global, did you mean to use the styles prop instead?"),fm=!0);var r=e.styles,n=la([r],void 0,l.useContext(cr)),a=l.useRef();return cm(function(){var o=t.key+"-global",i=new t.sheet.constructor({key:o,nonce:t.sheet.nonce,container:t.sheet.container,speedy:t.sheet.isSpeedy}),s=!1,u=document.querySelector('style[data-emotion="'+o+" "+n.name+'"]');return t.sheet.tags.length&&(i.before=t.sheet.tags[0]),u!==null&&(s=!0,u.setAttribute("data-emotion",o),i.hydrate([u])),a.current=[i,s],function(){i.flush()}},[t]),cm(function(){var o=a.current,i=o[0],s=o[1];if(s){o[1]=!1;return}if(n.next!==void 0&&Ts(t,n.next,!0),i.tags.length){var u=i.tags[i.tags.length-1].nextElementSibling;i.before=u,i.flush()}t.insert("",n,i,!1)},[t,n.name]),null});SS.displayName="EmotionGlobal";function Bs(){for(var e=arguments.length,t=new Array(e),r=0;r component."),i="";for(var s in o)o[s]&&s&&(i&&(i+=" "),i+=s)}break}default:i=o}i&&(a&&(a+=" "),a+=i)}}return a},"classnames");function Uy(e,t,r){var n=[],a=Fs(e,n,r);return n.length<2?r:a+t(n)}I(Uy,"merge");var kS=I(function(e){var t=e.cache,r=e.serializedArr;return Ep(function(){for(var n=0;n96?FS:IS},"getDefaultShouldForwardProp"),gm=I(function(e,t,r){var n;if(t){var a=t.shouldForwardProp;n=e.__emotion_forwardProp&&a?function(o){return e.__emotion_forwardProp(o)&&a(o)}:a}return typeof n!="function"&&r&&(n=e.__emotion_forwardProp),n},"composeShouldForwardProps"),vm=`You have illegal escape sequence in your template literal, most likely inside content's property value. -Because you write your CSS inside a JavaScript string you actually have to do double escaping, so for example "content: '\\00d7';" should become "content: '\\\\00d7';". -You can read more about this here: -https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#ES2018_revision_of_illegal_escape_sequences`,TS=I(function(e){var t=e.cache,r=e.serialized,n=e.isStringTag;return Is(t,r,n),Ep(function(){return Ts(t,r,n)}),null},"Insertion"),RS=I(function e(t,r){if(t===void 0)throw new Error(`You are trying to create a styled element with an undefined component. -You may have forgotten to import it.`);var n=t.__emotion_real===t,a=n&&t.__emotion_base||t,o,i;r!==void 0&&(o=r.label,i=r.target);var s=gm(t,r,n),u=s||mm(a),d=!u("as");return function(){var p=arguments,h=n&&t.__emotion_styles!==void 0?t.__emotion_styles.slice(0):[];if(o!==void 0&&h.push("label:"+o+";"),p[0]==null||p[0].raw===void 0)h.push.apply(h,p);else{p[0][0]===void 0&&console.error(vm),h.push(p[0][0]);for(var m=p.length,f=1;f1?a-1:0),i=1;i=0&&a<1?(s=o,u=i):a>=1&&a<2?(s=i,u=o):a>=2&&a<3?(u=o,d=i):a>=3&&a<4?(u=i,d=o):a>=4&&a<5?(s=i,d=o):a>=5&&a<6&&(s=o,d=i);var p=r-o/2,h=s+p,m=u+p,f=d+p;return n(h,m,f)}I(ua,"hslToRgb");var ym={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function Zy(e){if(typeof e!="string")return e;var t=e.toLowerCase();return ym[t]?"#"+ym[t]:e}I(Zy,"nameToHex");var $S=/^#[a-fA-F0-9]{6}$/,OS=/^#[a-fA-F0-9]{8}$/,LS=/^#[a-fA-F0-9]{3}$/,MS=/^#[a-fA-F0-9]{4}$/,ju=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,PS=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,NS=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,HS=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function Qo(e){if(typeof e!="string")throw new Mt(3);var t=Zy(e);if(t.match($S))return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16)};if(t.match(OS)){var r=parseFloat((parseInt(""+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16),alpha:r}}if(t.match(LS))return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16)};if(t.match(MS)){var n=parseFloat((parseInt(""+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16),alpha:n}}var a=ju.exec(t);if(a)return{red:parseInt(""+a[1],10),green:parseInt(""+a[2],10),blue:parseInt(""+a[3],10)};var o=PS.exec(t.substring(0,50));if(o)return{red:parseInt(""+o[1],10),green:parseInt(""+o[2],10),blue:parseInt(""+o[3],10),alpha:parseFloat(""+o[4])>1?parseFloat(""+o[4])/100:parseFloat(""+o[4])};var i=NS.exec(t);if(i){var s=parseInt(""+i[1],10),u=parseInt(""+i[2],10)/100,d=parseInt(""+i[3],10)/100,p="rgb("+ua(s,u,d)+")",h=ju.exec(p);if(!h)throw new Mt(4,t,p);return{red:parseInt(""+h[1],10),green:parseInt(""+h[2],10),blue:parseInt(""+h[3],10)}}var m=HS.exec(t.substring(0,50));if(m){var f=parseInt(""+m[1],10),v=parseInt(""+m[2],10)/100,g=parseInt(""+m[3],10)/100,b="rgb("+ua(f,v,g)+")",C=ju.exec(b);if(!C)throw new Mt(4,t,b);return{red:parseInt(""+C[1],10),green:parseInt(""+C[2],10),blue:parseInt(""+C[3],10),alpha:parseFloat(""+m[4])>1?parseFloat(""+m[4])/100:parseFloat(""+m[4])}}throw new Mt(5)}I(Qo,"parseToRgb");function Xy(e){var t=e.red/255,r=e.green/255,n=e.blue/255,a=Math.max(t,r,n),o=Math.min(t,r,n),i=(a+o)/2;if(a===o)return e.alpha!==void 0?{hue:0,saturation:0,lightness:i,alpha:e.alpha}:{hue:0,saturation:0,lightness:i};var s,u=a-o,d=i>.5?u/(2-a-o):u/(a+o);switch(a){case t:s=(r-n)/u+(r=1?Bo(e,t,r):"rgba("+ua(e,t,r)+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?Bo(e.hue,e.saturation,e.lightness):"rgba("+ua(e.hue,e.saturation,e.lightness)+","+e.alpha+")";throw new Mt(2)}I(tb,"hsla");function $l(e,t,r){if(typeof e=="number"&&typeof t=="number"&&typeof r=="number")return cd("#"+Cr(e)+Cr(t)+Cr(r));if(typeof e=="object"&&t===void 0&&r===void 0)return cd("#"+Cr(e.red)+Cr(e.green)+Cr(e.blue));throw new Mt(6)}I($l,"rgb");function ca(e,t,r,n){if(typeof e=="string"&&typeof t=="number"){var a=Qo(e);return"rgba("+a.red+","+a.green+","+a.blue+","+t+")"}else{if(typeof e=="number"&&typeof t=="number"&&typeof r=="number"&&typeof n=="number")return n>=1?$l(e,t,r):"rgba("+e+","+t+","+r+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?$l(e.red,e.green,e.blue):"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")"}throw new Mt(7)}I(ca,"rgba");var VS=I(function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},"isRgb"),US=I(function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&typeof e.alpha=="number"},"isRgba"),qS=I(function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},"isHsl"),WS=I(function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&typeof e.alpha=="number"},"isHsla");function Sp(e){if(typeof e!="object")throw new Mt(8);if(US(e))return ca(e);if(VS(e))return $l(e);if(WS(e))return tb(e);if(qS(e))return eb(e);throw new Mt(8)}I(Sp,"toColorString");function Ap(e,t,r){return I(function(){var n=r.concat(Array.prototype.slice.call(arguments));return n.length>=t?e.apply(this,n):Ap(e,t,n)},"fn")}I(Ap,"curried");function ei(e){return Ap(e,e.length,[])}I(ei,"curry");function ti(e,t,r){return Math.max(e,Math.min(t,r))}I(ti,"guard");function rb(e,t){if(t==="transparent")return t;var r=Dp(t);return Sp(Ut({},r,{lightness:ti(0,1,r.lightness-parseFloat(e))}))}I(rb,"darken");var GS=ei(rb),KS=GS;function nb(e,t){if(t==="transparent")return t;var r=Dp(t);return Sp(Ut({},r,{lightness:ti(0,1,r.lightness+parseFloat(e))}))}I(nb,"lighten");var YS=ei(nb),JS=YS;function ab(e,t){if(t==="transparent")return t;var r=Qo(t),n=typeof r.alpha=="number"?r.alpha:1,a=Ut({},r,{alpha:ti(0,1,(n*100+parseFloat(e)*100)/100)});return ca(a)}I(ab,"opacify");var ZS=ei(ab),XS=ZS;function ob(e,t){if(t==="transparent")return t;var r=Qo(t),n=typeof r.alpha=="number"?r.alpha:1,a=Ut({},r,{alpha:ti(0,1,+(n*100-parseFloat(e)*100).toFixed(2)/100)});return ca(a)}I(ob,"transparentize");var QS=ei(ob),eA=QS,V={primary:"#FF4785",secondary:"#029CFD",tertiary:"#FAFBFC",ancillary:"#22a699",orange:"#FC521F",gold:"#FFAE00",green:"#66BF3C",seafoam:"#37D5D3",purple:"#6F2CAC",ultraviolet:"#2A0481",lightest:"#FFFFFF",lighter:"#F7FAFC",light:"#EEF3F6",mediumlight:"#ECF4F9",medium:"#D9E8F2",mediumdark:"#73828C",dark:"#5C6870",darker:"#454E54",darkest:"#2E3438",border:"hsla(203, 50%, 30%, 0.15)",positive:"#66BF3C",negative:"#FF4400",warning:"#E69D00",critical:"#FFFFFF",defaultText:"#2E3438",inverseText:"#FFFFFF",positiveText:"#448028",negativeText:"#D43900",warningText:"#A15C20"},Dr={app:"#F6F9FC",bar:V.lightest,content:V.lightest,preview:V.lightest,gridCellSize:10,hoverable:eA(.9,V.secondary),positive:"#E1FFD4",negative:"#FEDED2",warning:"#FFF5CF",critical:"#FF4400"},Pt={fonts:{base:['"Nunito Sans"',"-apple-system",'".SFNSText-Regular"','"San Francisco"',"BlinkMacSystemFont",'"Segoe UI"','"Helvetica Neue"',"Helvetica","Arial","sans-serif"].join(", "),mono:["ui-monospace","Menlo","Monaco",'"Roboto Mono"','"Oxygen Mono"','"Ubuntu Monospace"','"Source Code Pro"','"Droid Sans Mono"','"Courier New"',"monospace"].join(", ")},weight:{regular:400,bold:700},size:{s1:12,s2:14,s3:16,m1:20,m2:24,m3:28,l1:32,l2:40,l3:48,code:90}},ib=cp(qD(),1),tA=(0,ib.default)(1)(({typography:e})=>({body:{fontFamily:e.fonts.base,fontSize:e.size.s3,margin:0,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",WebkitOverflowScrolling:"touch"},"*":{boxSizing:"border-box"},"h1, h2, h3, h4, h5, h6":{fontWeight:e.weight.regular,margin:0,padding:0},"button, input, textarea, select":{fontFamily:"inherit",fontSize:"inherit",boxSizing:"border-box"},sub:{fontSize:"0.8em",bottom:"-0.2em"},sup:{fontSize:"0.8em",top:"-0.2em"},"b, strong":{fontWeight:e.weight.bold},hr:{border:"none",borderTop:"1px solid silver",clear:"both",marginBottom:"1.25rem"},code:{fontFamily:e.fonts.mono,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",display:"inline-block",paddingLeft:2,paddingRight:2,verticalAlign:"baseline",color:"inherit"},pre:{fontFamily:e.fonts.mono,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",lineHeight:"18px",padding:"11px 1rem",whiteSpace:"pre-wrap",color:"inherit",borderRadius:3,margin:"1rem 0"}}));(0,ib.default)(1)(({color:e,background:t,typography:r})=>{let n=tA({typography:r});return{...n,body:{...n.body,color:e.defaultText,background:t.app,overflow:"hidden"},hr:{...n.hr,borderTop:`1px solid ${e.border}`}}});var rA={base:"light",colorPrimary:"#FF4785",colorSecondary:"#029CFD",appBg:Dr.app,appContentBg:V.lightest,appPreviewBg:V.lightest,appBorderColor:V.border,appBorderRadius:4,fontBase:Pt.fonts.base,fontCode:Pt.fonts.mono,textColor:V.darkest,textInverseColor:V.lightest,textMutedColor:V.dark,barTextColor:V.mediumdark,barHoverColor:V.secondary,barSelectedColor:V.secondary,barBg:V.lightest,buttonBg:Dr.app,buttonBorder:V.medium,booleanBg:V.mediumlight,booleanSelectedBg:V.lightest,inputBg:V.lightest,inputBorder:V.border,inputTextColor:V.darkest,inputBorderRadius:4},Ol=rA,nA={base:"dark",colorPrimary:"#FF4785",colorSecondary:"#029CFD",appBg:"#222425",appContentBg:"#1B1C1D",appPreviewBg:V.lightest,appBorderColor:"rgba(255,255,255,.1)",appBorderRadius:4,fontBase:Pt.fonts.base,fontCode:Pt.fonts.mono,textColor:"#C9CDCF",textInverseColor:"#222425",textMutedColor:"#798186",barTextColor:V.mediumdark,barHoverColor:V.secondary,barSelectedColor:V.secondary,barBg:"#292C2E",buttonBg:"#222425",buttonBorder:"rgba(255,255,255,.1)",booleanBg:"#222425",booleanSelectedBg:"#2E3438",inputBg:"#1B1C1D",inputBorder:"rgba(255,255,255,.1)",inputTextColor:V.lightest,inputBorderRadius:4},aA=nA,oA=(()=>{let e;return typeof window<"u"?e=window:typeof globalThis<"u"?e=globalThis:typeof global<"u"?e=global:typeof self<"u"?e=self:e={},e})();const{logger:iA}=__STORYBOOK_MODULE_CLIENT_LOGGER__;var{window:Vu}=oA,lA=I(e=>({color:e}),"mkColor"),sA=I(e=>typeof e!="string"?(iA.warn(`Color passed to theme object should be a string. Instead ${e}(${typeof e}) was passed.`),!1):!0,"isColorString"),uA=I(e=>!/(gradient|var|calc)/.test(e),"isValidColorForPolished"),cA=I((e,t)=>e==="darken"?ca(`${KS(1,t)}`,.95):e==="lighten"?ca(`${JS(1,t)}`,.95):t,"applyPolished"),lb=I(e=>t=>{if(!sA(t)||!uA(t))return t;try{return cA(e,t)}catch{return t}},"colorFactory"),Wa=lb("lighten");lb("darken");var sb=I(()=>!Vu||!Vu.matchMedia?"light":Vu.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light","getPreferredColorScheme"),dd={light:Ol,dark:aA,normal:Ol};sb();var dA={rubber:"cubic-bezier(0.175, 0.885, 0.335, 1.05)"},pA=mr` - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -`,ub=mr` - 0%, 100% { opacity: 1; } - 50% { opacity: .4; } -`,fA=mr` - 0% { transform: translateY(1px); } - 25% { transform: translateY(0px); } - 50% { transform: translateY(-3px); } - 100% { transform: translateY(1px); } -`,hA=mr` - 0%, 100% { transform:translate3d(0,0,0); } - 12.5%, 62.5% { transform:translate3d(-4px,0,0); } - 37.5%, 87.5% { transform: translate3d(4px,0,0); } -`,mA=Bs` - animation: ${ub} 1.5s ease-in-out infinite; - color: transparent; - cursor: progress; -`,gA=Bs` - transition: all 150ms ease-out; - transform: translate3d(0, 0, 0); - - &:hover { - transform: translate3d(0, -2px, 0); - } - - &:active { - transform: translate3d(0, 0, 0); - } -`,vA={rotate360:pA,glow:ub,float:fA,jiggle:hA,inlineGlow:mA,hoverable:gA},yA={BASE_FONT_FAMILY:"Menlo, monospace",BASE_FONT_SIZE:"11px",BASE_LINE_HEIGHT:1.2,BASE_BACKGROUND_COLOR:"rgb(36, 36, 36)",BASE_COLOR:"rgb(213, 213, 213)",OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES:10,OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES:5,OBJECT_NAME_COLOR:"rgb(227, 110, 236)",OBJECT_VALUE_NULL_COLOR:"rgb(127, 127, 127)",OBJECT_VALUE_UNDEFINED_COLOR:"rgb(127, 127, 127)",OBJECT_VALUE_REGEXP_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_STRING_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_SYMBOL_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_NUMBER_COLOR:"hsl(252, 100%, 75%)",OBJECT_VALUE_BOOLEAN_COLOR:"hsl(252, 100%, 75%)",OBJECT_VALUE_FUNCTION_PREFIX_COLOR:"rgb(85, 106, 242)",HTML_TAG_COLOR:"rgb(93, 176, 215)",HTML_TAGNAME_COLOR:"rgb(93, 176, 215)",HTML_TAGNAME_TEXT_TRANSFORM:"lowercase",HTML_ATTRIBUTE_NAME_COLOR:"rgb(155, 187, 220)",HTML_ATTRIBUTE_VALUE_COLOR:"rgb(242, 151, 102)",HTML_COMMENT_COLOR:"rgb(137, 137, 137)",HTML_DOCTYPE_COLOR:"rgb(192, 192, 192)",ARROW_COLOR:"rgb(145, 145, 145)",ARROW_MARGIN_RIGHT:3,ARROW_FONT_SIZE:12,ARROW_ANIMATION_DURATION:"0",TREENODE_FONT_FAMILY:"Menlo, monospace",TREENODE_FONT_SIZE:"11px",TREENODE_LINE_HEIGHT:1.2,TREENODE_PADDING_LEFT:12,TABLE_BORDER_COLOR:"rgb(85, 85, 85)",TABLE_TH_BACKGROUND_COLOR:"rgb(44, 44, 44)",TABLE_TH_HOVER_COLOR:"rgb(48, 48, 48)",TABLE_SORT_ICON_COLOR:"black",TABLE_DATA_BACKGROUND_IMAGE:"linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(51, 139, 255, 0.0980392) 50%, rgba(51, 139, 255, 0.0980392))",TABLE_DATA_BACKGROUND_SIZE:"128px 32px"},bA={BASE_FONT_FAMILY:"Menlo, monospace",BASE_FONT_SIZE:"11px",BASE_LINE_HEIGHT:1.2,BASE_BACKGROUND_COLOR:"white",BASE_COLOR:"black",OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES:10,OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES:5,OBJECT_NAME_COLOR:"rgb(136, 19, 145)",OBJECT_VALUE_NULL_COLOR:"rgb(128, 128, 128)",OBJECT_VALUE_UNDEFINED_COLOR:"rgb(128, 128, 128)",OBJECT_VALUE_REGEXP_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_STRING_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_SYMBOL_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_NUMBER_COLOR:"rgb(28, 0, 207)",OBJECT_VALUE_BOOLEAN_COLOR:"rgb(28, 0, 207)",OBJECT_VALUE_FUNCTION_PREFIX_COLOR:"rgb(13, 34, 170)",HTML_TAG_COLOR:"rgb(168, 148, 166)",HTML_TAGNAME_COLOR:"rgb(136, 18, 128)",HTML_TAGNAME_TEXT_TRANSFORM:"lowercase",HTML_ATTRIBUTE_NAME_COLOR:"rgb(153, 69, 0)",HTML_ATTRIBUTE_VALUE_COLOR:"rgb(26, 26, 166)",HTML_COMMENT_COLOR:"rgb(35, 110, 37)",HTML_DOCTYPE_COLOR:"rgb(192, 192, 192)",ARROW_COLOR:"#6e6e6e",ARROW_MARGIN_RIGHT:3,ARROW_FONT_SIZE:12,ARROW_ANIMATION_DURATION:"0",TREENODE_FONT_FAMILY:"Menlo, monospace",TREENODE_FONT_SIZE:"11px",TREENODE_LINE_HEIGHT:1.2,TREENODE_PADDING_LEFT:12,TABLE_BORDER_COLOR:"#aaa",TABLE_TH_BACKGROUND_COLOR:"#eee",TABLE_TH_HOVER_COLOR:"hsla(0, 0%, 90%, 1)",TABLE_SORT_ICON_COLOR:"#6e6e6e",TABLE_DATA_BACKGROUND_IMAGE:"linear-gradient(to bottom, white, white 50%, rgb(234, 243, 255) 50%, rgb(234, 243, 255))",TABLE_DATA_BACKGROUND_SIZE:"128px 32px"},wA=I(e=>Object.entries(e).reduce((t,[r,n])=>({...t,[r]:lA(n)}),{}),"convertColors"),EA=I(({colors:e,mono:t})=>{let r=wA(e);return{token:{fontFamily:t,WebkitFontSmoothing:"antialiased","&.tag":r.red3,"&.comment":{...r.green1,fontStyle:"italic"},"&.prolog":{...r.green1,fontStyle:"italic"},"&.doctype":{...r.green1,fontStyle:"italic"},"&.cdata":{...r.green1,fontStyle:"italic"},"&.string":r.red1,"&.url":r.cyan1,"&.symbol":r.cyan1,"&.number":r.cyan1,"&.boolean":r.cyan1,"&.variable":r.cyan1,"&.constant":r.cyan1,"&.inserted":r.cyan1,"&.atrule":r.blue1,"&.keyword":r.blue1,"&.attr-value":r.blue1,"&.punctuation":r.gray1,"&.operator":r.gray1,"&.function":r.gray1,"&.deleted":r.red2,"&.important":{fontWeight:"bold"},"&.bold":{fontWeight:"bold"},"&.italic":{fontStyle:"italic"},"&.class-name":r.cyan2,"&.selector":r.red3,"&.attr-name":r.red4,"&.property":r.red4,"&.regex":r.red4,"&.entity":r.red4,"&.directive.tag .tag":{background:"#ffff00",...r.gray1}},"language-json .token.boolean":r.blue1,"language-json .token.number":r.blue1,"language-json .token.property":r.cyan2,namespace:{opacity:.7}}},"create"),xA={green1:"#008000",red1:"#A31515",red2:"#9a050f",red3:"#800000",red4:"#ff0000",gray1:"#393A34",cyan1:"#36acaa",cyan2:"#2B91AF",blue1:"#0000ff",blue2:"#00009f"},CA={green1:"#7C7C7C",red1:"#92C379",red2:"#9a050f",red3:"#A8FF60",red4:"#96CBFE",gray1:"#EDEDED",cyan1:"#C6C5FE",cyan2:"#FFFFB6",blue1:"#B474DD",blue2:"#00009f"},DA=I(e=>({primary:e.colorPrimary,secondary:e.colorSecondary,tertiary:V.tertiary,ancillary:V.ancillary,orange:V.orange,gold:V.gold,green:V.green,seafoam:V.seafoam,purple:V.purple,ultraviolet:V.ultraviolet,lightest:V.lightest,lighter:V.lighter,light:V.light,mediumlight:V.mediumlight,medium:V.medium,mediumdark:V.mediumdark,dark:V.dark,darker:V.darker,darkest:V.darkest,border:V.border,positive:V.positive,negative:V.negative,warning:V.warning,critical:V.critical,defaultText:e.textColor||V.darkest,inverseText:e.textInverseColor||V.lightest,positiveText:V.positiveText,negativeText:V.negativeText,warningText:V.warningText}),"createColors"),pd=I((e=dd[sb()])=>{let{base:t,colorPrimary:r,colorSecondary:n,appBg:a,appContentBg:o,appPreviewBg:i,appBorderColor:s,appBorderRadius:u,fontBase:d,fontCode:p,textColor:h,textInverseColor:m,barTextColor:f,barHoverColor:v,barSelectedColor:g,barBg:b,buttonBg:C,buttonBorder:w,booleanBg:x,booleanSelectedBg:E,inputBg:D,inputBorder:S,inputTextColor:A,inputBorderRadius:k,brandTitle:F,brandUrl:T,brandImage:R,brandTarget:$,gridCellSize:z,...L}=e;return{...L,base:t,color:DA(e),background:{app:a,bar:b,content:o,preview:i,gridCellSize:z||Dr.gridCellSize,hoverable:Dr.hoverable,positive:Dr.positive,negative:Dr.negative,warning:Dr.warning,critical:Dr.critical},typography:{fonts:{base:d,mono:p},weight:Pt.weight,size:Pt.size},animation:vA,easing:dA,input:{background:D,border:S,borderRadius:k,color:A},button:{background:C||D,border:w||S},boolean:{background:x||S,selectedBackground:E||D},layoutMargin:10,appBorderColor:s,appBorderRadius:u,barTextColor:f,barHoverColor:v||n,barSelectedColor:g||n,barBg:b,brand:{title:F,url:T,image:R||(F?null:void 0),target:$},code:EA({colors:t==="light"?xA:CA,mono:p}),addonActionsTheme:{...t==="light"?bA:yA,BASE_FONT_FAMILY:p,BASE_FONT_SIZE:Pt.size.s2-1,BASE_LINE_HEIGHT:"18px",BASE_BACKGROUND_COLOR:"transparent",BASE_COLOR:h,ARROW_COLOR:XS(.2,s),ARROW_MARGIN_RIGHT:4,ARROW_FONT_SIZE:8,TREENODE_FONT_FAMILY:p,TREENODE_FONT_SIZE:Pt.size.s2-1,TREENODE_LINE_HEIGHT:"18px",TREENODE_PADDING_LEFT:12}}},"convert");const{logger:SA}=__STORYBOOK_MODULE_CLIENT_LOGGER__;var AA=I(e=>Object.keys(e).length===0,"isEmpty"),Uu=I(e=>e!=null&&typeof e=="object","isObject"),kA=I((e,...t)=>Object.prototype.hasOwnProperty.call(e,...t),"hasOwnProperty"),_A=I(()=>Object.create(null),"makeObjectWithoutPrototype"),cb=I((e,t)=>e===t||!Uu(e)||!Uu(t)?{}:Object.keys(e).reduce((r,n)=>{if(kA(t,n)){let a=cb(e[n],t[n]);return Uu(a)&&AA(a)||(r[n]=a),r}return r[n]=void 0,r},_A()),"deletedDiff"),FA=cb;function db(e){for(var t=[],r=1;r{if(!e)return pd(Ol);let t=FA(Ol,e);return Object.keys(t).length&&SA.warn(db` - Your theme is missing properties, you should update your theme! - - theme-data missing: - `,t),pd(e)},"ensure"),fd="/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */",TA=Object.create,ri=Object.defineProperty,RA=Object.getOwnPropertyDescriptor,BA=Object.getOwnPropertyNames,zA=Object.getPrototypeOf,$A=Object.prototype.hasOwnProperty,OA=(e,t,r)=>t in e?ri(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,c=(e,t)=>ri(e,"name",{value:t,configurable:!0}),Ii=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,r)=>(typeof require<"u"?require:t)[r]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')}),B=(e,t)=>()=>(e&&(t=e(e=0)),t),q=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),ka=(e,t)=>{for(var r in t)ri(e,r,{get:t[r],enumerable:!0})},LA=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of BA(t))!$A.call(e,a)&&a!==r&&ri(e,a,{get:()=>t[a],enumerable:!(n=RA(t,a))||n.enumerable});return e},De=(e,t,r)=>(r=e!=null?TA(zA(e)):{},LA(t||!e||!e.__esModule?ri(r,"default",{value:e,enumerable:!0}):r,e)),MA=(e,t,r)=>OA(e,typeof t!="symbol"?t+"":t,r);function U(){return U=Object.assign?Object.assign.bind():function(e){for(var t=1;t{c(U,"_extends")});function pb(e){if(e===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}var PA=B(()=>{c(pb,"_assertThisInitialized")});function da(e,t){return da=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(r,n){return r.__proto__=n,r},da(e,t)}var kp=B(()=>{c(da,"_setPrototypeOf")});function Ll(e){return Ll=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},Ll(e)}var NA=B(()=>{c(Ll,"_getPrototypeOf")}),zs,_p=B(()=>{zs=(()=>{let e;return typeof window<"u"?e=window:typeof globalThis<"u"?e=globalThis:typeof global<"u"?e=global:typeof self<"u"?e=self:e={},e})()}),$s=q((e,t)=>{(function(r){if(typeof e=="object"&&typeof t<"u")t.exports=r();else if(typeof define=="function"&&define.amd)define([],r);else{var n;typeof window<"u"?n=window:typeof global<"u"?n=global:typeof self<"u"?n=self:n=this,n.memoizerific=r()}})(function(){return c(function r(n,a,o){function i(d,p){if(!a[d]){if(!n[d]){var h=typeof Ii=="function"&&Ii;if(!p&&h)return h(d,!0);if(s)return s(d,!0);var m=new Error("Cannot find module '"+d+"'");throw m.code="MODULE_NOT_FOUND",m}var f=a[d]={exports:{}};n[d][0].call(f.exports,function(v){var g=n[d][1][v];return i(g||v)},f,f.exports,r,n,a,o)}return a[d].exports}c(i,"s");for(var s=typeof Ii=="function"&&Ii,u=0;u=0)return this.lastItem=this.list[s],this.list[s].val},o.prototype.set=function(i,s){var u;return this.lastItem&&this.isEqual(this.lastItem.key,i)?(this.lastItem.val=s,this):(u=this.indexOf(i),u>=0?(this.lastItem=this.list[u],this.list[u].val=s,this):(this.lastItem={key:i,val:s},this.list.push(this.lastItem),this.size++,this))},o.prototype.delete=function(i){var s;if(this.lastItem&&this.isEqual(this.lastItem.key,i)&&(this.lastItem=void 0),s=this.indexOf(i),s>=0)return this.size--,this.list.splice(s,1)[0]},o.prototype.has=function(i){var s;return this.lastItem&&this.isEqual(this.lastItem.key,i)?!0:(s=this.indexOf(i),s>=0?(this.lastItem=this.list[s],!0):!1)},o.prototype.forEach=function(i,s){var u;for(u=0;u0&&(w[C]={cacheItem:v,arg:arguments[C]},x?i(h,w):h.push(w),h.length>d&&s(h.shift())),f.wasMemoized=x,f.numArgs=C+1,b},"memoizerific");return f.limit=d,f.wasMemoized=!1,f.cache=p,f.lru=h,f}};function i(d,p){var h=d.length,m=p.length,f,v,g;for(v=0;v=0&&(h=d[f],m=h.cacheItem.get(h.arg),!m||!m.size);f--)h.cacheItem.delete(h.arg)}c(s,"removeCachedResult");function u(d,p){return d===p||d!==d&&p!==p}c(u,"isEqual")},{"map-or-similar":1}]},{},[3])(3)})}),fb=q((e,t)=>{t.exports=r,r.displayName="jsx",r.aliases=[];function r(n){(function(a){var o=a.util.clone(a.languages.javascript),i=/(?:\s|\/\/.*(?!.)|\/\*(?:[^*]|\*(?!\/))\*\/)/.source,s=/(?:\{(?:\{(?:\{[^{}]*\}|[^{}])*\}|[^{}])*\})/.source,u=/(?:\{*\.{3}(?:[^{}]|)*\})/.source;function d(m,f){return m=m.replace(//g,function(){return i}).replace(//g,function(){return s}).replace(//g,function(){return u}),RegExp(m,f)}c(d,"re"),u=d(u).source,a.languages.jsx=a.languages.extend("markup",o),a.languages.jsx.tag.pattern=d(/<\/?(?:[\w.:-]+(?:+(?:[\w.:$-]+(?:=(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s{'"/>=]+|))?|))**\/?)?>/.source),a.languages.jsx.tag.inside.tag.pattern=/^<\/?[^\s>\/]*/,a.languages.jsx.tag.inside["attr-value"].pattern=/=(?!\{)(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s'">]+)/,a.languages.jsx.tag.inside.tag.inside["class-name"]=/^[A-Z]\w*(?:\.[A-Z]\w*)*$/,a.languages.jsx.tag.inside.comment=o.comment,a.languages.insertBefore("inside","attr-name",{spread:{pattern:d(//.source),inside:a.languages.jsx}},a.languages.jsx.tag),a.languages.insertBefore("inside","special-attr",{script:{pattern:d(/=/.source),alias:"language-javascript",inside:{"script-punctuation":{pattern:/^=(?=\{)/,alias:"punctuation"},rest:a.languages.jsx}}},a.languages.jsx.tag);var p=c(function(m){return m?typeof m=="string"?m:typeof m.content=="string"?m.content:m.content.map(p).join(""):""},"stringifyToken"),h=c(function(m){for(var f=[],v=0;v0&&f[f.length-1].tagName===p(g.content[0].content[1])&&f.pop():g.content[g.content.length-1].content==="/>"||f.push({tagName:p(g.content[0].content[1]),openedBraces:0}):f.length>0&&g.type==="punctuation"&&g.content==="{"?f[f.length-1].openedBraces++:f.length>0&&f[f.length-1].openedBraces>0&&g.type==="punctuation"&&g.content==="}"?f[f.length-1].openedBraces--:b=!0),(b||typeof g=="string")&&f.length>0&&f[f.length-1].openedBraces===0){var C=p(g);v0&&(typeof m[v-1]=="string"||m[v-1].type==="plain-text")&&(C=p(m[v-1])+C,m.splice(v-1,1),v--),m[v]=new a.Token("plain-text",C,null,C)}g.content&&typeof g.content!="string"&&h(g.content)}},"walkTokens");a.hooks.add("after-tokenize",function(m){m.language!=="jsx"&&m.language!=="tsx"||h(m.tokens)})})(n)}c(r,"jsx")}),bm,hb,HA=B(()=>{bm=De(fb()),hb=bm.default}),jA=q((e,t)=>{t.exports=r,r.displayName="bash",r.aliases=["shell"];function r(n){(function(a){var o="\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b",i={pattern:/(^(["']?)\w+\2)[ \t]+\S.*/,lookbehind:!0,alias:"punctuation",inside:null},s={bash:i,environment:{pattern:RegExp("\\$"+o),alias:"constant"},variable:[{pattern:/\$?\(\([\s\S]+?\)\)/,greedy:!0,inside:{variable:[{pattern:/(^\$\(\([\s\S]+)\)\)/,lookbehind:!0},/^\$\(\(/],number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,operator:/--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,punctuation:/\(\(?|\)\)?|,|;/}},{pattern:/\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,greedy:!0,inside:{variable:/^\$\(|^`|\)$|`$/}},{pattern:/\$\{[^}]+\}/,greedy:!0,inside:{operator:/:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,punctuation:/[\[\]]/,environment:{pattern:RegExp("(\\{)"+o),lookbehind:!0,alias:"constant"}}},/\$(?:\w+|[#?*!@$])/],entity:/\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/};a.languages.bash={shebang:{pattern:/^#!\s*\/.*/,alias:"important"},comment:{pattern:/(^|[^"{\\$])#.*/,lookbehind:!0},"function-name":[{pattern:/(\bfunction\s+)[\w-]+(?=(?:\s*\(?:\s*\))?\s*\{)/,lookbehind:!0,alias:"function"},{pattern:/\b[\w-]+(?=\s*\(\s*\)\s*\{)/,alias:"function"}],"for-or-select":{pattern:/(\b(?:for|select)\s+)\w+(?=\s+in\s)/,alias:"variable",lookbehind:!0},"assign-left":{pattern:/(^|[\s;|&]|[<>]\()\w+(?=\+?=)/,inside:{environment:{pattern:RegExp("(^|[\\s;|&]|[<>]\\()"+o),lookbehind:!0,alias:"constant"}},alias:"variable",lookbehind:!0},string:[{pattern:/((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,lookbehind:!0,greedy:!0,inside:s},{pattern:/((?:^|[^<])<<-?\s*)(["'])(\w+)\2\s[\s\S]*?(?:\r?\n|\r)\3/,lookbehind:!0,greedy:!0,inside:{bash:i}},{pattern:/(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,lookbehind:!0,greedy:!0,inside:s},{pattern:/(^|[^$\\])'[^']*'/,lookbehind:!0,greedy:!0},{pattern:/\$'(?:[^'\\]|\\[\s\S])*'/,greedy:!0,inside:{entity:s.entity}}],environment:{pattern:RegExp("\\$?"+o),alias:"constant"},variable:s.variable,function:{pattern:/(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,lookbehind:!0},keyword:{pattern:/(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,lookbehind:!0},builtin:{pattern:/(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,lookbehind:!0,alias:"class-name"},boolean:{pattern:/(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,lookbehind:!0},"file-descriptor":{pattern:/\B&\d\b/,alias:"important"},operator:{pattern:/\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,inside:{"file-descriptor":{pattern:/^\d/,alias:"important"}}},punctuation:/\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,number:{pattern:/(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,lookbehind:!0}},i.inside=a.languages.bash;for(var u=["comment","function-name","for-or-select","assign-left","string","environment","function","keyword","builtin","boolean","file-descriptor","operator","punctuation","number"],d=s.variable[1].inside,p=0;p{wm=De(jA()),mb=wm.default}),gb=q((e,t)=>{t.exports=r,r.displayName="css",r.aliases=[];function r(n){(function(a){var o=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;a.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,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\\((?:"+o.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+o.source+"$"),alias:"url"}}},selector:{pattern:RegExp(`(^|[{}\\s])[^{}\\s](?:[^{};"'\\s]|\\s+(?![\\s{])|`+o.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:o,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:/[(){};:,]/},a.languages.css.atrule.inside.rest=a.languages.css;var i=a.languages.markup;i&&(i.tag.addInlined("style","css"),i.tag.addAttribute("style","css"))})(n)}c(r,"css")}),Em,vb,UA=B(()=>{Em=De(gb()),vb=Em.default}),qA=q((e,t)=>{t.exports=r,r.displayName="jsExtras",r.aliases=[];function r(n){(function(a){a.languages.insertBefore("javascript","function-variable",{"method-variable":{pattern:RegExp("(\\.\\s*)"+a.languages.javascript["function-variable"].pattern.source),lookbehind:!0,alias:["function-variable","method","function","property-access"]}}),a.languages.insertBefore("javascript","function",{method:{pattern:RegExp("(\\.\\s*)"+a.languages.javascript.function.source),lookbehind:!0,alias:["function","property-access"]}}),a.languages.insertBefore("javascript","constant",{"known-class-name":[{pattern:/\b(?:(?:Float(?:32|64)|(?:Int|Uint)(?:8|16|32)|Uint8Clamped)?Array|ArrayBuffer|BigInt|Boolean|DataView|Date|Error|Function|Intl|JSON|(?:Weak)?(?:Map|Set)|Math|Number|Object|Promise|Proxy|Reflect|RegExp|String|Symbol|WebAssembly)\b/,alias:"class-name"},{pattern:/\b(?:[A-Z]\w*)Error\b/,alias:"class-name"}]});function o(h,m){return RegExp(h.replace(//g,function(){return/(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*/.source}),m)}c(o,"withId"),a.languages.insertBefore("javascript","keyword",{imports:{pattern:o(/(\bimport\b\s*)(?:(?:\s*,\s*(?:\*\s*as\s+|\{[^{}]*\}))?|\*\s*as\s+|\{[^{}]*\})(?=\s*\bfrom\b)/.source),lookbehind:!0,inside:a.languages.javascript},exports:{pattern:o(/(\bexport\b\s*)(?:\*(?:\s*as\s+)?(?=\s*\bfrom\b)|\{[^{}]*\})/.source),lookbehind:!0,inside:a.languages.javascript}}),a.languages.javascript.keyword.unshift({pattern:/\b(?:as|default|export|from|import)\b/,alias:"module"},{pattern:/\b(?:await|break|catch|continue|do|else|finally|for|if|return|switch|throw|try|while|yield)\b/,alias:"control-flow"},{pattern:/\bnull\b/,alias:["null","nil"]},{pattern:/\bundefined\b/,alias:"nil"}),a.languages.insertBefore("javascript","operator",{spread:{pattern:/\.{3}/,alias:"operator"},arrow:{pattern:/=>/,alias:"operator"}}),a.languages.insertBefore("javascript","punctuation",{"property-access":{pattern:o(/(\.\s*)#?/.source),lookbehind:!0},"maybe-class-name":{pattern:/(^|[^$\w\xA0-\uFFFF])[A-Z][$\w\xA0-\uFFFF]+/,lookbehind:!0},dom:{pattern:/\b(?:document|(?:local|session)Storage|location|navigator|performance|window)\b/,alias:"variable"},console:{pattern:/\bconsole(?=\s*\.)/,alias:"class-name"}});for(var i=["function","function-variable","method","method-variable","property-access"],s=0;s{xm=De(qA()),yb=xm.default}),GA=q((e,t)=>{t.exports=r,r.displayName="json",r.aliases=["webmanifest"];function r(n){n.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"}},n.languages.webmanifest=n.languages.json}c(r,"json")}),Cm,bb,KA=B(()=>{Cm=De(GA()),bb=Cm.default}),YA=q((e,t)=>{t.exports=r,r.displayName="graphql",r.aliases=[];function r(n){n.languages.graphql={comment:/#.*/,description:{pattern:/(?:"""(?:[^"]|(?!""")")*"""|"(?:\\.|[^\\"\r\n])*")(?=\s*[a-z_])/i,greedy:!0,alias:"string",inside:{"language-markdown":{pattern:/(^"(?:"")?)(?!\1)[\s\S]+(?=\1$)/,lookbehind:!0,inside:n.languages.markdown}}},string:{pattern:/"""(?:[^"]|(?!""")")*"""|"(?:\\.|[^\\"\r\n])*"/,greedy:!0},number:/(?:\B-|\b)\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,boolean:/\b(?:false|true)\b/,variable:/\$[a-z_]\w*/i,directive:{pattern:/@[a-z_]\w*/i,alias:"function"},"attr-name":{pattern:/\b[a-z_]\w*(?=\s*(?:\((?:[^()"]|"(?:\\.|[^\\"\r\n])*")*\))?:)/i,greedy:!0},"atom-input":{pattern:/\b[A-Z]\w*Input\b/,alias:"class-name"},scalar:/\b(?:Boolean|Float|ID|Int|String)\b/,constant:/\b[A-Z][A-Z_\d]*\b/,"class-name":{pattern:/(\b(?:enum|implements|interface|on|scalar|type|union)\s+|&\s*|:\s*|\[)[A-Z_]\w*/,lookbehind:!0},fragment:{pattern:/(\bfragment\s+|\.{3}\s*(?!on\b))[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},"definition-mutation":{pattern:/(\bmutation\s+)[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},"definition-query":{pattern:/(\bquery\s+)[a-zA-Z_]\w*/,lookbehind:!0,alias:"function"},keyword:/\b(?:directive|enum|extend|fragment|implements|input|interface|mutation|on|query|repeatable|scalar|schema|subscription|type|union)\b/,operator:/[!=|&]|\.{3}/,"property-query":/\w+(?=\s*\()/,object:/\w+(?=\s*\{)/,punctuation:/[!(){}\[\]:=,]/,property:/\w+/},n.hooks.add("after-tokenize",c(function(a){if(a.language!=="graphql")return;var o=a.tokens.filter(function(w){return typeof w!="string"&&w.type!=="comment"&&w.type!=="scalar"}),i=0;function s(w){return o[i+w]}c(s,"getToken");function u(w,x){x=x||0;for(var E=0;E0)){var g=d(/^\{$/,/^\}$/);if(g===-1)continue;for(var b=i;b=0&&p(C,"variable-input")}}}}},"afterTokenizeGraphql"))}c(r,"graphql")}),Dm,wb,JA=B(()=>{Dm=De(YA()),wb=Dm.default}),Eb=q((e,t)=>{t.exports=r,r.displayName="markup",r.aliases=["html","mathml","svg","xml","ssml","atom","rss"];function r(n){n.languages.markup={comment:{pattern://,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|)*\]\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://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"},/"|'/]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},n.languages.markup.tag.inside["attr-value"].inside.entity=n.languages.markup.entity,n.languages.markup.doctype.inside["internal-subset"].inside=n.languages.markup,n.hooks.add("wrap",function(a){a.type==="entity"&&(a.attributes.title=a.content.value.replace(/&/,"&"))}),Object.defineProperty(n.languages.markup.tag,"addInlined",{value:c(function(a,o){var i={};i["language-"+o]={pattern:/(^$)/i,lookbehind:!0,inside:n.languages[o]},i.cdata=/^$/i;var s={"included-cdata":{pattern://i,inside:i}};s["language-"+o]={pattern:/[\s\S]+/,inside:n.languages[o]};var u={};u[a]={pattern:RegExp(/(<__[^>]*>)(?:))*\]\]>|(?!)/.source.replace(/__/g,function(){return a}),"i"),lookbehind:!0,greedy:!0,inside:s},n.languages.insertBefore("markup","cdata",u)},"addInlined")}),Object.defineProperty(n.languages.markup.tag,"addAttribute",{value:c(function(a,o){n.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+a+")"+/\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:[o,"language-"+o],inside:n.languages[o]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})},"value")}),n.languages.html=n.languages.markup,n.languages.mathml=n.languages.markup,n.languages.svg=n.languages.markup,n.languages.xml=n.languages.extend("markup",{}),n.languages.ssml=n.languages.xml,n.languages.atom=n.languages.xml,n.languages.rss=n.languages.xml}c(r,"markup")}),Sm,xb,ZA=B(()=>{Sm=De(Eb()),xb=Sm.default}),XA=q((e,t)=>{t.exports=r,r.displayName="markdown",r.aliases=["md"];function r(n){(function(a){var o=/(?:\\.|[^\\\n\r]|(?:\n|\r\n?)(?![\r\n]))/.source;function i(v){return v=v.replace(//g,function(){return o}),RegExp(/((?:^|[^\\])(?:\\{2})*)/.source+"(?:"+v+")")}c(i,"createInline");var s=/(?:\\.|``(?:[^`\r\n]|`(?!`))+``|`[^`\r\n]+`|[^\\|\r\n`])+/.source,u=/\|?__(?:\|__)+\|?(?:(?:\n|\r\n?)|(?![\s\S]))/.source.replace(/__/g,function(){return s}),d=/\|?[ \t]*:?-{3,}:?[ \t]*(?:\|[ \t]*:?-{3,}:?[ \t]*)+\|?(?:\n|\r\n?)/.source;a.languages.markdown=a.languages.extend("markup",{}),a.languages.insertBefore("markdown","prolog",{"front-matter-block":{pattern:/(^(?:\s*[\r\n])?)---(?!.)[\s\S]*?[\r\n]---(?!.)/,lookbehind:!0,greedy:!0,inside:{punctuation:/^---|---$/,"front-matter":{pattern:/\S+(?:\s+\S+)*/,alias:["yaml","language-yaml"],inside:a.languages.yaml}}},blockquote:{pattern:/^>(?:[\t ]*>)*/m,alias:"punctuation"},table:{pattern:RegExp("^"+u+d+"(?:"+u+")*","m"),inside:{"table-data-rows":{pattern:RegExp("^("+u+d+")(?:"+u+")*$"),lookbehind:!0,inside:{"table-data":{pattern:RegExp(s),inside:a.languages.markdown},punctuation:/\|/}},"table-line":{pattern:RegExp("^("+u+")"+d+"$"),lookbehind:!0,inside:{punctuation:/\||:?-{3,}:?/}},"table-header-row":{pattern:RegExp("^"+u+"$"),inside:{"table-header":{pattern:RegExp(s),alias:"important",inside:a.languages.markdown},punctuation:/\|/}}}},code:[{pattern:/((?:^|\n)[ \t]*\n|(?:^|\r\n?)[ \t]*\r\n?)(?: {4}|\t).+(?:(?:\n|\r\n?)(?: {4}|\t).+)*/,lookbehind:!0,alias:"keyword"},{pattern:/^```[\s\S]*?^```$/m,greedy:!0,inside:{"code-block":{pattern:/^(```.*(?:\n|\r\n?))[\s\S]+?(?=(?:\n|\r\n?)^```$)/m,lookbehind:!0},"code-language":{pattern:/^(```).+/,lookbehind:!0},punctuation:/```/}}],title:[{pattern:/\S.*(?:\n|\r\n?)(?:==+|--+)(?=[ \t]*$)/m,alias:"important",inside:{punctuation:/==+$|--+$/}},{pattern:/(^\s*)#.+/m,lookbehind:!0,alias:"important",inside:{punctuation:/^#+|#+$/}}],hr:{pattern:/(^\s*)([*-])(?:[\t ]*\2){2,}(?=\s*$)/m,lookbehind:!0,alias:"punctuation"},list:{pattern:/(^\s*)(?:[*+-]|\d+\.)(?=[\t ].)/m,lookbehind:!0,alias:"punctuation"},"url-reference":{pattern:/!?\[[^\]]+\]:[\t ]+(?:\S+|<(?:\\.|[^>\\])+>)(?:[\t ]+(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\)))?/,inside:{variable:{pattern:/^(!?\[)[^\]]+/,lookbehind:!0},string:/(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\))$/,punctuation:/^[\[\]!:]|[<>]/},alias:"url"},bold:{pattern:i(/\b__(?:(?!_)|_(?:(?!_))+_)+__\b|\*\*(?:(?!\*)|\*(?:(?!\*))+\*)+\*\*/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^..)[\s\S]+(?=..$)/,lookbehind:!0,inside:{}},punctuation:/\*\*|__/}},italic:{pattern:i(/\b_(?:(?!_)|__(?:(?!_))+__)+_\b|\*(?:(?!\*)|\*\*(?:(?!\*))+\*\*)+\*/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^.)[\s\S]+(?=.$)/,lookbehind:!0,inside:{}},punctuation:/[*_]/}},strike:{pattern:i(/(~~?)(?:(?!~))+\2/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^~~?)[\s\S]+(?=\1$)/,lookbehind:!0,inside:{}},punctuation:/~~?/}},"code-snippet":{pattern:/(^|[^\\`])(?:``[^`\r\n]+(?:`[^`\r\n]+)*``(?!`)|`[^`\r\n]+`(?!`))/,lookbehind:!0,greedy:!0,alias:["code","keyword"]},url:{pattern:i(/!?\[(?:(?!\]))+\](?:\([^\s)]+(?:[\t ]+"(?:\\.|[^"\\])*")?\)|[ \t]?\[(?:(?!\]))+\])/.source),lookbehind:!0,greedy:!0,inside:{operator:/^!/,content:{pattern:/(^\[)[^\]]+(?=\])/,lookbehind:!0,inside:{}},variable:{pattern:/(^\][ \t]?\[)[^\]]+(?=\]$)/,lookbehind:!0},url:{pattern:/(^\]\()[^\s)]+/,lookbehind:!0},string:{pattern:/(^[ \t]+)"(?:\\.|[^"\\])*"(?=\)$)/,lookbehind:!0}}}}),["url","bold","italic","strike"].forEach(function(v){["url","bold","italic","strike","code-snippet"].forEach(function(g){v!==g&&(a.languages.markdown[v].inside.content.inside[g]=a.languages.markdown[g])})}),a.hooks.add("after-tokenize",function(v){if(v.language!=="markdown"&&v.language!=="md")return;function g(b){if(!(!b||typeof b=="string"))for(var C=0,w=b.length;C",quot:'"'},m=String.fromCodePoint||String.fromCharCode;function f(v){var g=v.replace(p,"");return g=g.replace(/&(\w{1,8}|#x?[\da-f]{1,8});/gi,function(b,C){if(C=C.toLowerCase(),C[0]==="#"){var w;return C[1]==="x"?w=parseInt(C.slice(2),16):w=Number(C.slice(1)),m(w)}else{var x=h[C];return x||b}}),g}c(f,"textContent"),a.languages.md=a.languages.markdown})(n)}c(r,"markdown")}),Am,Cb,QA=B(()=>{Am=De(XA()),Cb=Am.default}),ek=q((e,t)=>{t.exports=r,r.displayName="yaml",r.aliases=["yml"];function r(n){(function(a){var o=/[*&][^\s[\]{},]+/,i=/!(?:<[\w\-%#;/?:@&=+$,.!~*'()[\]]+>|(?:[a-zA-Z\d-]*!)?[\w\-%#;/?:@&=+$.~*'()]+)?/,s="(?:"+i.source+"(?:[ ]+"+o.source+")?|"+o.source+"(?:[ ]+"+i.source+")?)",u=/(?:[^\s\x00-\x08\x0e-\x1f!"#%&'*,\-:>?@[\]`{|}\x7f-\x84\x86-\x9f\ud800-\udfff\ufffe\uffff]|[?:-])(?:[ \t]*(?:(?![#:])|:))*/.source.replace(//g,function(){return/[^\s\x00-\x08\x0e-\x1f,[\]{}\x7f-\x84\x86-\x9f\ud800-\udfff\ufffe\uffff]/.source}),d=/"(?:[^"\\\r\n]|\\.)*"|'(?:[^'\\\r\n]|\\.)*'/.source;function p(h,m){m=(m||"").replace(/m/g,"")+"m";var f=/([:\-,[{]\s*(?:\s<>[ \t]+)?)(?:<>)(?=[ \t]*(?:$|,|\]|\}|(?:[\r\n]\s*)?#))/.source.replace(/<>/g,function(){return s}).replace(/<>/g,function(){return h});return RegExp(f,m)}c(p,"createValuePattern"),a.languages.yaml={scalar:{pattern:RegExp(/([\-:]\s*(?:\s<>[ \t]+)?[|>])[ \t]*(?:((?:\r?\n|\r)[ \t]+)\S[^\r\n]*(?:\2[^\r\n]+)*)/.source.replace(/<>/g,function(){return s})),lookbehind:!0,alias:"string"},comment:/#.*/,key:{pattern:RegExp(/((?:^|[:\-,[{\r\n?])[ \t]*(?:<>[ \t]+)?)<>(?=\s*:\s)/.source.replace(/<>/g,function(){return s}).replace(/<>/g,function(){return"(?:"+u+"|"+d+")"})),lookbehind:!0,greedy:!0,alias:"atrule"},directive:{pattern:/(^[ \t]*)%.+/m,lookbehind:!0,alias:"important"},datetime:{pattern:p(/\d{4}-\d\d?-\d\d?(?:[tT]|[ \t]+)\d\d?:\d{2}:\d{2}(?:\.\d*)?(?:[ \t]*(?:Z|[-+]\d\d?(?::\d{2})?))?|\d{4}-\d{2}-\d{2}|\d\d?:\d{2}(?::\d{2}(?:\.\d*)?)?/.source),lookbehind:!0,alias:"number"},boolean:{pattern:p(/false|true/.source,"i"),lookbehind:!0,alias:"important"},null:{pattern:p(/null|~/.source,"i"),lookbehind:!0,alias:"important"},string:{pattern:p(d),lookbehind:!0,greedy:!0},number:{pattern:p(/[+-]?(?:0x[\da-f]+|0o[0-7]+|(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?|\.inf|\.nan)/.source,"i"),lookbehind:!0},tag:i,important:o,punctuation:/---|[:[\]{}\-,|>?]|\.\.\./},a.languages.yml=a.languages.yaml})(n)}c(r,"yaml")}),km,Db,tk=B(()=>{km=De(ek()),Db=km.default}),Sb=q((e,t)=>{t.exports=r,r.displayName="typescript",r.aliases=["ts"];function r(n){(function(a){a.languages.typescript=a.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/}),a.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 a.languages.typescript.parameter,delete a.languages.typescript["literal-property"];var o=a.languages.extend("typescript",{});delete o["class-name"],a.languages.typescript["class-name"].inside=o,a.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:o}}}}),a.languages.ts=a.languages.typescript})(n)}c(r,"typescript")}),rk=q((e,t)=>{var r=fb(),n=Sb();t.exports=a,a.displayName="tsx",a.aliases=[];function a(o){o.register(r),o.register(n),function(i){var s=i.util.clone(i.languages.typescript);i.languages.tsx=i.languages.extend("jsx",s),delete i.languages.tsx.parameter,delete i.languages.tsx["literal-property"];var u=i.languages.tsx.tag;u.pattern=RegExp(/(^|[^\w$]|(?=<\/))/.source+"(?:"+u.pattern.source+")",u.pattern.flags),u.lookbehind=!0}(o)}c(a,"tsx")}),_m,Ab,nk=B(()=>{_m=De(rk()),Ab=_m.default}),Fm,kb,ak=B(()=>{Fm=De(Sb()),kb=Fm.default});function Os(e,t){if(e==null)return{};var r={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(t.indexOf(n)>=0)continue;r[n]=e[n]}return r}var Fp=B(()=>{c(Os,"_objectWithoutPropertiesLoose")});function _b(e,t){if(e==null)return{};var r,n,a=Os(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(n=0;n=0||{}.propertyIsEnumerable.call(e,r)&&(a[r]=e[r])}return a}var ok=B(()=>{Fp(),c(_b,"_objectWithoutProperties")});function Ml(e,t){(t==null||t>e.length)&&(t=e.length);for(var r=0,n=Array(t);r{c(Ml,"_arrayLikeToArray")});function Ib(e){if(Array.isArray(e))return Ml(e)}var ik=B(()=>{Fb(),c(Ib,"_arrayWithoutHoles")});function Tb(e){if(typeof Symbol<"u"&&e[Symbol.iterator]!=null||e["@@iterator"]!=null)return Array.from(e)}var lk=B(()=>{c(Tb,"_iterableToArray")});function Rb(e,t){if(e){if(typeof e=="string")return Ml(e,t);var r={}.toString.call(e).slice(8,-1);return r==="Object"&&e.constructor&&(r=e.constructor.name),r==="Map"||r==="Set"?Array.from(e):r==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Ml(e,t):void 0}}var sk=B(()=>{Fb(),c(Rb,"_unsupportedIterableToArray")});function Bb(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var uk=B(()=>{c(Bb,"_nonIterableSpread")});function zb(e){return Ib(e)||Tb(e)||Rb(e)||Bb()}var ck=B(()=>{ik(),lk(),sk(),uk(),c(zb,"_toConsumableArray")});function pa(e){"@babel/helpers - typeof";return pa=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(t){return typeof t}:function(t){return t&&typeof Symbol=="function"&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},pa(e)}var $b=B(()=>{c(pa,"_typeof")});function Ob(e,t){if(pa(e)!="object"||!e)return e;var r=e[Symbol.toPrimitive];if(r!==void 0){var n=r.call(e,t||"default");if(pa(n)!="object")return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return(t==="string"?String:Number)(e)}var dk=B(()=>{$b(),c(Ob,"toPrimitive")});function Lb(e){var t=Ob(e,"string");return pa(t)=="symbol"?t:t+""}var pk=B(()=>{$b(),dk(),c(Lb,"toPropertyKey")});function Ip(e,t,r){return(t=Lb(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var Mb=B(()=>{pk(),c(Ip,"_defineProperty")});function hd(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable})),r.push.apply(r,n)}return r}function Qr(e){for(var t=1;t=4)return[e[0],e[1],e[2],e[3],"".concat(e[0],".").concat(e[1]),"".concat(e[0],".").concat(e[2]),"".concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[0]),"".concat(e[1],".").concat(e[2]),"".concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[0]),"".concat(e[2],".").concat(e[1]),"".concat(e[2],".").concat(e[3]),"".concat(e[3],".").concat(e[0]),"".concat(e[3],".").concat(e[1]),"".concat(e[3],".").concat(e[2]),"".concat(e[0],".").concat(e[1],".").concat(e[2]),"".concat(e[0],".").concat(e[1],".").concat(e[3]),"".concat(e[0],".").concat(e[2],".").concat(e[1]),"".concat(e[0],".").concat(e[2],".").concat(e[3]),"".concat(e[0],".").concat(e[3],".").concat(e[1]),"".concat(e[0],".").concat(e[3],".").concat(e[2]),"".concat(e[1],".").concat(e[0],".").concat(e[2]),"".concat(e[1],".").concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[2],".").concat(e[0]),"".concat(e[1],".").concat(e[2],".").concat(e[3]),"".concat(e[1],".").concat(e[3],".").concat(e[0]),"".concat(e[1],".").concat(e[3],".").concat(e[2]),"".concat(e[2],".").concat(e[0],".").concat(e[1]),"".concat(e[2],".").concat(e[0],".").concat(e[3]),"".concat(e[2],".").concat(e[1],".").concat(e[0]),"".concat(e[2],".").concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[3],".").concat(e[0]),"".concat(e[2],".").concat(e[3],".").concat(e[1]),"".concat(e[3],".").concat(e[0],".").concat(e[1]),"".concat(e[3],".").concat(e[0],".").concat(e[2]),"".concat(e[3],".").concat(e[1],".").concat(e[0]),"".concat(e[3],".").concat(e[1],".").concat(e[2]),"".concat(e[3],".").concat(e[2],".").concat(e[0]),"".concat(e[3],".").concat(e[2],".").concat(e[1]),"".concat(e[0],".").concat(e[1],".").concat(e[2],".").concat(e[3]),"".concat(e[0],".").concat(e[1],".").concat(e[3],".").concat(e[2]),"".concat(e[0],".").concat(e[2],".").concat(e[1],".").concat(e[3]),"".concat(e[0],".").concat(e[2],".").concat(e[3],".").concat(e[1]),"".concat(e[0],".").concat(e[3],".").concat(e[1],".").concat(e[2]),"".concat(e[0],".").concat(e[3],".").concat(e[2],".").concat(e[1]),"".concat(e[1],".").concat(e[0],".").concat(e[2],".").concat(e[3]),"".concat(e[1],".").concat(e[0],".").concat(e[3],".").concat(e[2]),"".concat(e[1],".").concat(e[2],".").concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[2],".").concat(e[3],".").concat(e[0]),"".concat(e[1],".").concat(e[3],".").concat(e[0],".").concat(e[2]),"".concat(e[1],".").concat(e[3],".").concat(e[2],".").concat(e[0]),"".concat(e[2],".").concat(e[0],".").concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[0],".").concat(e[3],".").concat(e[1]),"".concat(e[2],".").concat(e[1],".").concat(e[0],".").concat(e[3]),"".concat(e[2],".").concat(e[1],".").concat(e[3],".").concat(e[0]),"".concat(e[2],".").concat(e[3],".").concat(e[0],".").concat(e[1]),"".concat(e[2],".").concat(e[3],".").concat(e[1],".").concat(e[0]),"".concat(e[3],".").concat(e[0],".").concat(e[1],".").concat(e[2]),"".concat(e[3],".").concat(e[0],".").concat(e[2],".").concat(e[1]),"".concat(e[3],".").concat(e[1],".").concat(e[0],".").concat(e[2]),"".concat(e[3],".").concat(e[1],".").concat(e[2],".").concat(e[0]),"".concat(e[3],".").concat(e[2],".").concat(e[0],".").concat(e[1]),"".concat(e[3],".").concat(e[2],".").concat(e[1],".").concat(e[0])]}function Nb(e){if(e.length===0||e.length===1)return e;var t=e.join(".");return il[t]||(il[t]=Pb(e)),il[t]}function Hb(e){var t=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},r=arguments.length>2?arguments[2]:void 0,n=e.filter(function(o){return o!=="token"}),a=Nb(n);return a.reduce(function(o,i){return Qr(Qr({},o),r[i])},t)}function md(e){return e.join(" ")}function jb(e,t){var r=0;return function(n){return r+=1,n.map(function(a,o){return Ls({node:a,stylesheet:e,useInlineStyles:t,key:"code-segment-".concat(r,"-").concat(o)})})}}function Ls(e){var t=e.node,r=e.stylesheet,n=e.style,a=n===void 0?{}:n,o=e.useInlineStyles,i=e.key,s=t.properties,u=t.type,d=t.tagName,p=t.value;if(u==="text")return p;if(d){var h=jb(r,o),m;if(!o)m=Qr(Qr({},s),{},{className:md(s.className)});else{var f=Object.keys(r).reduce(function(C,w){return w.split(".").forEach(function(x){C.includes(x)||C.push(x)}),C},[]),v=s.className&&s.className.includes("token")?["token"]:[],g=s.className&&v.concat(s.className.filter(function(C){return!f.includes(C)}));m=Qr(Qr({},s),{},{className:md(g)||void 0,style:Hb(s.className,Object.assign({},s.style,a),r)})}var b=h(t.children);return y.createElement(d,U({key:i},m),b)}}var il,Vb=B(()=>{Ct(),Mb(),c(hd,"ownKeys"),c(Qr,"_objectSpread"),c(Pb,"powerSetPermutations"),il={},c(Nb,"getClassNameCombinations"),c(Hb,"createStyleObject"),c(md,"createClassNameString"),c(jb,"createChildren"),c(Ls,"createElement")}),Ub,fk=B(()=>{Ub=c(function(e,t){var r=e.listLanguages();return r.indexOf(t)!==-1},"default")});function gd(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(a){return Object.getOwnPropertyDescriptor(e,a).enumerable})),r.push.apply(r,n)}return r}function ft(e){for(var t=1;t1&&arguments[1]!==void 0?arguments[1]:[],r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[],n=0;n2&&arguments[2]!==void 0?arguments[2]:[];return Ao({children:D,lineNumber:S,lineNumberStyle:s,largestLineNumber:i,showInlineLineNumbers:a,lineProps:r,className:A,showLineNumbers:n,wrapLongLines:u})}c(v,"createWrappedLine");function g(D,S){if(n&&S&&a){var A=Rp(s,S,i);D.unshift(Tp(S,A))}return D}c(g,"createUnwrappedLine");function b(D,S){var A=arguments.length>2&&arguments[2]!==void 0?arguments[2]:[];return t||A.length>0?v(D,S,A):g(D,S)}c(b,"createLine");for(var C=c(function(){var D=p[f],S=D.children[0].value,A=qb(S);if(A){var k=S.split(` -`);k.forEach(function(F,T){var R=n&&h.length+o,$={type:"text",value:"".concat(F,` -`)};if(T===0){var z=p.slice(m+1,f).concat(Ao({children:[$],className:D.properties.className})),L=b(z,R);h.push(L)}else if(T===k.length-1){var O=p[f+1]&&p[f+1].children&&p[f+1].children[0],M={type:"text",value:"".concat(F)};if(O){var j=Ao({children:[M],className:D.properties.className});p.splice(f+1,0,j)}else{var G=[M],H=b(G,R,D.properties.className);h.push(H)}}else{var K=[$],te=b(K,R,D.properties.className);h.push(te)}}),m=f}f++},"_loop");f{ok(),ck(),Mb(),Vb(),fk(),Qb=["language","children","style","customStyle","codeTagProps","useInlineStyles","showLineNumbers","showInlineLineNumbers","startingLineNumber","lineNumberContainerStyle","lineNumberStyle","wrapLines","wrapLongLines","lineProps","renderer","PreTag","CodeTag","code","astGenerator"],c(gd,"ownKeys"),c(ft,"_objectSpread"),e7=/\n/g,c(qb,"getNewLines"),c(Wb,"getAllLineNumbers"),c(Gb,"AllLineNumbers"),c(Kb,"getEmWidthOfNumber"),c(Tp,"getInlineLineNumber"),c(Rp,"assembleLineNumberStyles"),c(Ao,"createLineElement"),c(Bp,"flattenCodeTree"),c(Yb,"processLines"),c(Jb,"defaultRenderer"),c(zp,"isHighlightJs"),c(Zb,"getCodeTree"),c(Xb,"default")}),mk=q((e,t)=>{t.exports=n;var r=Object.prototype.hasOwnProperty;function n(){for(var a={},o=0;o{t.exports=n;var r=n.prototype;r.space=null,r.normal={},r.property={};function n(a,o,i){this.property=a,this.normal=o,i&&(this.space=i)}c(n,"Schema")}),gk=q((e,t)=>{var r=mk(),n=t7();t.exports=a;function a(o){for(var i=o.length,s=[],u=[],d=-1,p,h;++d{t.exports=r;function r(n){return n.toLowerCase()}c(r,"normalize")}),r7=q((e,t)=>{t.exports=n;var r=n.prototype;r.space=null,r.attribute=null,r.property=null,r.boolean=!1,r.booleanish=!1,r.overloadedBoolean=!1,r.number=!1,r.commaSeparated=!1,r.spaceSeparated=!1,r.commaOrSpaceSeparated=!1,r.mustUseProperty=!1,r.defined=!1;function n(a,o){this.property=a,this.attribute=o}c(n,"Info")}),Op=q(e=>{var t=0;e.boolean=r(),e.booleanish=r(),e.overloadedBoolean=r(),e.number=r(),e.spaceSeparated=r(),e.commaSeparated=r(),e.commaOrSpaceSeparated=r();function r(){return Math.pow(2,++t)}c(r,"increment")}),n7=q((e,t)=>{var r=r7(),n=Op();t.exports=i,i.prototype=new r,i.prototype.defined=!0;var a=["boolean","booleanish","overloadedBoolean","number","commaSeparated","spaceSeparated","commaOrSpaceSeparated"],o=a.length;function i(u,d,p,h){var m=-1,f;for(s(this,"space",h),r.call(this,u,d);++m{var r=$p(),n=t7(),a=n7();t.exports=o;function o(i){var s=i.space,u=i.mustUseProperty||[],d=i.attributes||{},p=i.properties,h=i.transform,m={},f={},v,g;for(v in p)g=new a(v,h(d,v),p[v],s),u.indexOf(v)!==-1&&(g.mustUseProperty=!0),m[v]=g,f[r(v)]=v,f[r(g.attribute)]=v;return new n(m,f,s)}c(o,"create")}),vk=q((e,t)=>{var r=ni();t.exports=r({space:"xlink",transform:n,properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null}});function n(a,o){return"xlink:"+o.slice(5).toLowerCase()}c(n,"xlinkTransform")}),yk=q((e,t)=>{var r=ni();t.exports=r({space:"xml",transform:n,properties:{xmlLang:null,xmlBase:null,xmlSpace:null}});function n(a,o){return"xml:"+o.slice(3).toLowerCase()}c(n,"xmlTransform")}),bk=q((e,t)=>{t.exports=r;function r(n,a){return a in n?n[a]:a}c(r,"caseSensitiveTransform")}),a7=q((e,t)=>{var r=bk();t.exports=n;function n(a,o){return r(a,o.toLowerCase())}c(n,"caseInsensitiveTransform")}),wk=q((e,t)=>{var r=ni(),n=a7();t.exports=r({space:"xmlns",attributes:{xmlnsxlink:"xmlns:xlink"},transform:n,properties:{xmlns:null,xmlnsXLink:null}})}),Ek=q((e,t)=>{var r=Op(),n=ni(),a=r.booleanish,o=r.number,i=r.spaceSeparated;t.exports=n({transform:s,properties:{ariaActiveDescendant:null,ariaAtomic:a,ariaAutoComplete:null,ariaBusy:a,ariaChecked:a,ariaColCount:o,ariaColIndex:o,ariaColSpan:o,ariaControls:i,ariaCurrent:null,ariaDescribedBy:i,ariaDetails:null,ariaDisabled:a,ariaDropEffect:i,ariaErrorMessage:null,ariaExpanded:a,ariaFlowTo:i,ariaGrabbed:a,ariaHasPopup:null,ariaHidden:a,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:i,ariaLevel:o,ariaLive:null,ariaModal:a,ariaMultiLine:a,ariaMultiSelectable:a,ariaOrientation:null,ariaOwns:i,ariaPlaceholder:null,ariaPosInSet:o,ariaPressed:a,ariaReadOnly:a,ariaRelevant:null,ariaRequired:a,ariaRoleDescription:i,ariaRowCount:o,ariaRowIndex:o,ariaRowSpan:o,ariaSelected:a,ariaSetSize:o,ariaSort:null,ariaValueMax:o,ariaValueMin:o,ariaValueNow:o,ariaValueText:null,role:null}});function s(u,d){return d==="role"?d:"aria-"+d.slice(4).toLowerCase()}c(s,"ariaTransform")}),xk=q((e,t)=>{var r=Op(),n=ni(),a=a7(),o=r.boolean,i=r.overloadedBoolean,s=r.booleanish,u=r.number,d=r.spaceSeparated,p=r.commaSeparated;t.exports=n({space:"html",attributes:{acceptcharset:"accept-charset",classname:"class",htmlfor:"for",httpequiv:"http-equiv"},transform:a,mustUseProperty:["checked","multiple","muted","selected"],properties:{abbr:null,accept:p,acceptCharset:d,accessKey:d,action:null,allow:null,allowFullScreen:o,allowPaymentRequest:o,allowUserMedia:o,alt:null,as:null,async:o,autoCapitalize:null,autoComplete:d,autoFocus:o,autoPlay:o,capture:o,charSet:null,checked:o,cite:null,className:d,cols:u,colSpan:null,content:null,contentEditable:s,controls:o,controlsList:d,coords:u|p,crossOrigin:null,data:null,dateTime:null,decoding:null,default:o,defer:o,dir:null,dirName:null,disabled:o,download:i,draggable:s,encType:null,enterKeyHint:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:o,formTarget:null,headers:d,height:u,hidden:o,high:u,href:null,hrefLang:null,htmlFor:d,httpEquiv:d,id:null,imageSizes:null,imageSrcSet:p,inputMode:null,integrity:null,is:null,isMap:o,itemId:null,itemProp:d,itemRef:d,itemScope:o,itemType:d,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:o,low:u,manifest:null,max:null,maxLength:u,media:null,method:null,min:null,minLength:u,multiple:o,muted:o,name:null,nonce:null,noModule:o,noValidate:o,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforePrint:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextMenu:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:o,optimum:u,pattern:null,ping:d,placeholder:null,playsInline:o,poster:null,preload:null,readOnly:o,referrerPolicy:null,rel:d,required:o,reversed:o,rows:u,rowSpan:u,sandbox:d,scope:null,scoped:o,seamless:o,selected:o,shape:null,size:u,sizes:null,slot:null,span:u,spellCheck:s,src:null,srcDoc:null,srcLang:null,srcSet:p,start:u,step:null,style:null,tabIndex:u,target:null,title:null,translate:null,type:null,typeMustMatch:o,useMap:null,value:s,width:u,wrap:null,align:null,aLink:null,archive:d,axis:null,background:null,bgColor:null,border:u,borderColor:null,bottomMargin:u,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:o,declare:o,event:null,face:null,frame:null,frameBorder:null,hSpace:u,leftMargin:u,link:null,longDesc:null,lowSrc:null,marginHeight:u,marginWidth:u,noResize:o,noHref:o,noShade:o,noWrap:o,object:null,profile:null,prompt:null,rev:null,rightMargin:u,rules:null,scheme:null,scrolling:s,standby:null,summary:null,text:null,topMargin:u,valueType:null,version:null,vAlign:null,vLink:null,vSpace:u,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:o,disableRemotePlayback:o,prefix:null,property:null,results:u,security:null,unselectable:null}})}),Ck=q((e,t)=>{var r=gk(),n=vk(),a=yk(),o=wk(),i=Ek(),s=xk();t.exports=r([a,n,o,i,s])}),Dk=q((e,t)=>{var r=$p(),n=n7(),a=r7(),o="data";t.exports=d;var i=/^data[-\w.:]+$/i,s=/-[a-z]/g,u=/[A-Z]/g;function d(v,g){var b=r(g),C=g,w=a;return b in v.normal?v.property[v.normal[b]]:(b.length>4&&b.slice(0,4)===o&&i.test(g)&&(g.charAt(4)==="-"?C=p(g):g=h(g),w=n),new w(C,g))}c(d,"find");function p(v){var g=v.slice(5).replace(s,f);return o+g.charAt(0).toUpperCase()+g.slice(1)}c(p,"datasetToProperty");function h(v){var g=v.slice(4);return s.test(g)?v:(g=g.replace(u,m),g.charAt(0)!=="-"&&(g="-"+g),o+g)}c(h,"datasetToAttribute");function m(v){return"-"+v.toLowerCase()}c(m,"kebab");function f(v){return v.charAt(1).toUpperCase()}c(f,"camelcase")}),Sk=q((e,t)=>{t.exports=n;var r=/[#.]/g;function n(a,o){for(var i=a||"",s=o||"div",u={},d=0,p,h,m;d{e.parse=a,e.stringify=o;var t="",r=" ",n=/[ \t\n\r\f]+/g;function a(i){var s=String(i||t).trim();return s===t?[]:s.split(n)}c(a,"parse");function o(i){return i.join(r).trim()}c(o,"stringify")}),kk=q(e=>{e.parse=a,e.stringify=o;var t=",",r=" ",n="";function a(i){for(var s=[],u=String(i||n),d=u.indexOf(t),p=0,h=!1,m;!h;)d===-1&&(d=u.length,h=!0),m=u.slice(p,d).trim(),(m||!h)&&s.push(m),p=d+1,d=u.indexOf(t,p);return s}c(a,"parse");function o(i,s){var u=s||{},d=u.padLeft===!1?n:r,p=u.padRight?r:n;return i[i.length-1]===n&&(i=i.concat(n)),i.join(p+t+d).trim()}c(o,"stringify")}),_k=q((e,t)=>{var r=Dk(),n=$p(),a=Sk(),o=Ak().parse,i=kk().parse;t.exports=u;var s={}.hasOwnProperty;function u(b,C,w){var x=w?g(w):null;return E;function E(S,A){var k=a(S,C),F=Array.prototype.slice.call(arguments,2),T=k.tagName.toLowerCase(),R;if(k.tagName=x&&s.call(x,T)?x[T]:T,A&&d(A,k)&&(F.unshift(A),A=null),A)for(R in A)D(k.properties,R,A[R]);return h(k.children,F),k.tagName==="template"&&(k.content={type:"root",children:k.children},k.children=[]),k}function D(S,A,k){var F,T,R;k==null||k!==k||(F=r(b,A),T=F.property,R=k,typeof R=="string"&&(F.spaceSeparated?R=o(R):F.commaSeparated?R=i(R):F.commaOrSpaceSeparated&&(R=o(i(R).join(" ")))),T==="style"&&typeof k!="string"&&(R=v(R)),T==="className"&&S.className&&(R=S.className.concat(R)),S[T]=m(F,T,R))}}c(u,"factory");function d(b,C){return typeof b=="string"||"length"in b||p(C.tagName,b)}c(d,"isChildren");function p(b,C){var w=C.type;return b==="input"||!w||typeof w!="string"?!1:typeof C.children=="object"&&"length"in C.children?!0:(w=w.toLowerCase(),b==="button"?w!=="menu"&&w!=="submit"&&w!=="reset"&&w!=="button":"value"in C)}c(p,"isNode");function h(b,C){var w,x;if(typeof C=="string"||typeof C=="number"){b.push({type:"text",value:String(C)});return}if(typeof C=="object"&&"length"in C){for(w=-1,x=C.length;++w{var r=Ck(),n=_k(),a=n(r,"div");a.displayName="html",t.exports=a}),Ik=q((e,t)=>{t.exports=Fk()}),Tk=q((e,t)=>{t.exports={AElig:"Æ",AMP:"&",Aacute:"Á",Acirc:"Â",Agrave:"À",Aring:"Å",Atilde:"Ã",Auml:"Ä",COPY:"©",Ccedil:"Ç",ETH:"Ð",Eacute:"É",Ecirc:"Ê",Egrave:"È",Euml:"Ë",GT:">",Iacute:"Í",Icirc:"Î",Igrave:"Ì",Iuml:"Ï",LT:"<",Ntilde:"Ñ",Oacute:"Ó",Ocirc:"Ô",Ograve:"Ò",Oslash:"Ø",Otilde:"Õ",Ouml:"Ö",QUOT:'"',REG:"®",THORN:"Þ",Uacute:"Ú",Ucirc:"Û",Ugrave:"Ù",Uuml:"Ü",Yacute:"Ý",aacute:"á",acirc:"â",acute:"´",aelig:"æ",agrave:"à",amp:"&",aring:"å",atilde:"ã",auml:"ä",brvbar:"¦",ccedil:"ç",cedil:"¸",cent:"¢",copy:"©",curren:"¤",deg:"°",divide:"÷",eacute:"é",ecirc:"ê",egrave:"è",eth:"ð",euml:"ë",frac12:"½",frac14:"¼",frac34:"¾",gt:">",iacute:"í",icirc:"î",iexcl:"¡",igrave:"ì",iquest:"¿",iuml:"ï",laquo:"«",lt:"<",macr:"¯",micro:"µ",middot:"·",nbsp:" ",not:"¬",ntilde:"ñ",oacute:"ó",ocirc:"ô",ograve:"ò",ordf:"ª",ordm:"º",oslash:"ø",otilde:"õ",ouml:"ö",para:"¶",plusmn:"±",pound:"£",quot:'"',raquo:"»",reg:"®",sect:"§",shy:"­",sup1:"¹",sup2:"²",sup3:"³",szlig:"ß",thorn:"þ",times:"×",uacute:"ú",ucirc:"û",ugrave:"ù",uml:"¨",uuml:"ü",yacute:"ý",yen:"¥",yuml:"ÿ"}}),Rk=q((e,t)=>{t.exports={0:"�",128:"€",130:"‚",131:"ƒ",132:"„",133:"…",134:"†",135:"‡",136:"ˆ",137:"‰",138:"Š",139:"‹",140:"Œ",142:"Ž",145:"‘",146:"’",147:"“",148:"”",149:"•",150:"–",151:"—",152:"˜",153:"™",154:"š",155:"›",156:"œ",158:"ž",159:"Ÿ"}}),o7=q((e,t)=>{t.exports=r;function r(n){var a=typeof n=="string"?n.charCodeAt(0):n;return a>=48&&a<=57}c(r,"decimal")}),Bk=q((e,t)=>{t.exports=r;function r(n){var a=typeof n=="string"?n.charCodeAt(0):n;return a>=97&&a<=102||a>=65&&a<=70||a>=48&&a<=57}c(r,"hexadecimal")}),zk=q((e,t)=>{t.exports=r;function r(n){var a=typeof n=="string"?n.charCodeAt(0):n;return a>=97&&a<=122||a>=65&&a<=90}c(r,"alphabetical")}),$k=q((e,t)=>{var r=zk(),n=o7();t.exports=a;function a(o){return r(o)||n(o)}c(a,"alphanumerical")}),Ok=q((e,t)=>{var r,n=59;t.exports=a;function a(o){var i="&"+o+";",s;return r=r||document.createElement("i"),r.innerHTML=i,s=r.textContent,s.charCodeAt(s.length-1)===n&&o!=="semi"||s===i?!1:s}c(a,"decodeEntity")}),Lk=q((e,t)=>{var r=Tk(),n=Rk(),a=o7(),o=Bk(),i=$k(),s=Ok();t.exports=te;var u={}.hasOwnProperty,d=String.fromCharCode,p=Function.prototype,h={warning:null,reference:null,text:null,warningContext:null,referenceContext:null,textContext:null,position:{},additional:null,attribute:!1,nonTerminated:!0},m=9,f=10,v=12,g=32,b=38,C=59,w=60,x=61,E=35,D=88,S=120,A=65533,k="named",F="hexadecimal",T="decimal",R={};R[F]=16,R[T]=10;var $={};$[k]=i,$[T]=a,$[F]=o;var z=1,L=2,O=3,M=4,j=5,G=6,H=7,K={};K[z]="Named character references must be terminated by a semicolon",K[L]="Numeric character references must be terminated by a semicolon",K[O]="Named character references cannot be empty",K[M]="Numeric character references cannot be empty",K[j]="Named character references must be known",K[G]="Numeric character references cannot be disallowed",K[H]="Numeric character references cannot be outside the permissible Unicode range";function te(N,Y){var J={},pe,Se;Y||(Y={});for(Se in h)pe=Y[Se],J[Se]=pe??h[Se];return(J.position.indent||J.position.start)&&(J.indent=J.position.indent||[],J.position=J.position.start),le(N,J)}c(te,"parseEntities");function le(N,Y){var J=Y.additional,pe=Y.nonTerminated,Se=Y.text,St=Y.reference,Ue=Y.warning,lt=Y.textContext,P=Y.referenceContext,st=Y.warningContext,At=Y.position,Nr=Y.indent||[],_n=N.length,kt=0,Ai=-1,Te=At.column||1,Hr=At.line||1,_t="",Fn=[],Ft,In,It,Ae,ut,ge,ce,Tt,ki,zu,jr,Va,Vr,er,Kh,Ua,_i,Rt,ve;for(typeof J=="string"&&(J=J.charCodeAt(0)),Ua=qa(),Tt=Ue?bD:p,kt--,_n++;++kt<_n;)if(ut===f&&(Te=Nr[Ai]||1),ut=N.charCodeAt(kt),ut===b){if(ce=N.charCodeAt(kt+1),ce===m||ce===f||ce===v||ce===g||ce===b||ce===w||ce!==ce||J&&ce===J){_t+=d(ut),Te++;continue}for(Vr=kt+1,Va=Vr,ve=Vr,ce===E?(ve=++Va,ce=N.charCodeAt(ve),ce===D||ce===S?(er=F,ve=++Va):er=T):er=k,Ft="",jr="",Ae="",Kh=$[er],ve--;++ve<_n&&(ce=N.charCodeAt(ve),!!Kh(ce));)Ae+=d(ce),er===k&&u.call(r,Ae)&&(Ft=Ae,jr=r[Ae]);It=N.charCodeAt(ve)===C,It&&(ve++,In=er===k?s(Ae):!1,In&&(Ft=Ae,jr=In)),Rt=1+ve-Vr,!It&&!pe||(Ae?er===k?(It&&!jr?Tt(j,1):(Ft!==Ae&&(ve=Va+Ft.length,Rt=1+ve-Va,It=!1),It||(ki=Ft?z:O,Y.attribute?(ce=N.charCodeAt(ve),ce===x?(Tt(ki,Rt),jr=null):i(ce)?jr=null:Tt(ki,Rt)):Tt(ki,Rt))),ge=jr):(It||Tt(L,Rt),ge=parseInt(Ae,R[er]),Q(ge)?(Tt(H,Rt),ge=d(A)):ge in n?(Tt(G,Rt),ge=n[ge]):(zu="",re(ge)&&Tt(G,Rt),ge>65535&&(ge-=65536,zu+=d(ge>>>10|55296),ge=56320|ge&1023),ge=zu+d(ge))):er!==k&&Tt(M,Rt)),ge?(Yh(),Ua=qa(),kt=ve-1,Te+=ve-Vr+1,Fn.push(ge),_i=qa(),_i.offset++,St&&St.call(P,ge,{start:Ua,end:_i},N.slice(Vr-1,ve)),Ua=_i):(Ae=N.slice(Vr-1,ve),_t+=Ae,Te+=Ae.length,kt=ve-1)}else ut===10&&(Hr++,Ai++,Te=0),ut===ut?(_t+=d(ut),Te++):Yh();return Fn.join("");function qa(){return{line:Hr,column:Te,offset:kt+(At.offset||0)}}function bD(Jh,Zh){var $u=qa();$u.column+=Zh,$u.offset+=Zh,Ue.call(st,K[Jh],$u,Jh)}function Yh(){_t&&(Fn.push(_t),Se&&Se.call(lt,_t,{start:Ua,end:qa()}),_t="")}}c(le,"parse");function Q(N){return N>=55296&&N<=57343||N>1114111}c(Q,"prohibited");function re(N){return N>=1&&N<=8||N===11||N>=13&&N<=31||N>=127&&N<=159||N>=64976&&N<=65007||(N&65535)===65535||(N&65535)===65534}c(re,"disallowed")}),Mk=q((e,t)=>{var r=typeof window<"u"?window:typeof WorkerGlobalScope<"u"&&self instanceof WorkerGlobalScope?self:{},n=function(a){var o=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,i=0,s={},u={manual:a.Prism&&a.Prism.manual,disableWorkerMessageHandler:a.Prism&&a.Prism.disableWorkerMessageHandler,util:{encode:c(function x(E){return E instanceof d?new d(E.type,x(E.content),E.alias):Array.isArray(E)?E.map(x):E.replace(/&/g,"&").replace(/"u")return null;if("currentScript"in document)return document.currentScript;try{throw new Error}catch(S){var x=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(S.stack)||[])[1];if(x){var E=document.getElementsByTagName("script");for(var D in E)if(E[D].src==x)return E[D]}return null}},"currentScript"),isActive:c(function(x,E,D){for(var S="no-"+E;x;){var A=x.classList;if(A.contains(E))return!0;if(A.contains(S))return!1;x=x.parentElement}return!!D},"isActive")},languages:{plain:s,plaintext:s,text:s,txt:s,extend:c(function(x,E){var D=u.util.clone(u.languages[x]);for(var S in E)D[S]=E[S];return D},"extend"),insertBefore:c(function(x,E,D,S){S=S||u.languages;var A=S[x],k={};for(var F in A)if(A.hasOwnProperty(F)){if(F==E)for(var T in D)D.hasOwnProperty(T)&&(k[T]=D[T]);D.hasOwnProperty(F)||(k[F]=A[F])}var R=S[x];return S[x]=k,u.languages.DFS(u.languages,function($,z){z===R&&$!=x&&(this[$]=k)}),k},"insertBefore"),DFS:c(function x(E,D,S,A){A=A||{};var k=u.util.objId;for(var F in E)if(E.hasOwnProperty(F)){D.call(E,F,E[F],S||F);var T=E[F],R=u.util.type(T);R==="Object"&&!A[k(T)]?(A[k(T)]=!0,x(T,D,null,A)):R==="Array"&&!A[k(T)]&&(A[k(T)]=!0,x(T,D,F,A))}},"DFS")},plugins:{},highlightAll:c(function(x,E){u.highlightAllUnder(document,x,E)},"highlightAll"),highlightAllUnder:c(function(x,E,D){var S={callback:D,container:x,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};u.hooks.run("before-highlightall",S),S.elements=Array.prototype.slice.apply(S.container.querySelectorAll(S.selector)),u.hooks.run("before-all-elements-highlight",S);for(var A=0,k;k=S.elements[A++];)u.highlightElement(k,E===!0,S.callback)},"highlightAllUnder"),highlightElement:c(function(x,E,D){var S=u.util.getLanguage(x),A=u.languages[S];u.util.setLanguage(x,S);var k=x.parentElement;k&&k.nodeName.toLowerCase()==="pre"&&u.util.setLanguage(k,S);var F=x.textContent,T={element:x,language:S,grammar:A,code:F};function R(z){T.highlightedCode=z,u.hooks.run("before-insert",T),T.element.innerHTML=T.highlightedCode,u.hooks.run("after-highlight",T),u.hooks.run("complete",T),D&&D.call(T.element)}if(c(R,"insertHighlightedCode"),u.hooks.run("before-sanity-check",T),k=T.element.parentElement,k&&k.nodeName.toLowerCase()==="pre"&&!k.hasAttribute("tabindex")&&k.setAttribute("tabindex","0"),!T.code){u.hooks.run("complete",T),D&&D.call(T.element);return}if(u.hooks.run("before-highlight",T),!T.grammar){R(u.util.encode(T.code));return}if(E&&a.Worker){var $=new Worker(u.filename);$.onmessage=function(z){R(z.data)},$.postMessage(JSON.stringify({language:T.language,code:T.code,immediateClose:!0}))}else R(u.highlight(T.code,T.grammar,T.language))},"highlightElement"),highlight:c(function(x,E,D){var S={code:x,grammar:E,language:D};if(u.hooks.run("before-tokenize",S),!S.grammar)throw new Error('The language "'+S.language+'" has no grammar.');return S.tokens=u.tokenize(S.code,S.grammar),u.hooks.run("after-tokenize",S),d.stringify(u.util.encode(S.tokens),S.language)},"highlight"),tokenize:c(function(x,E){var D=E.rest;if(D){for(var S in D)E[S]=D[S];delete E.rest}var A=new m;return f(A,A.head,x),h(x,A,E,A.head,0),g(A)},"tokenize"),hooks:{all:{},add:c(function(x,E){var D=u.hooks.all;D[x]=D[x]||[],D[x].push(E)},"add"),run:c(function(x,E){var D=u.hooks.all[x];if(!(!D||!D.length))for(var S=0,A;A=D[S++];)A(E)},"run")},Token:d};a.Prism=u;function d(x,E,D,S){this.type=x,this.content=E,this.alias=D,this.length=(S||"").length|0}c(d,"Token"),d.stringify=c(function x(E,D){if(typeof E=="string")return E;if(Array.isArray(E)){var S="";return E.forEach(function(R){S+=x(R,D)}),S}var A={type:E.type,content:x(E.content,D),tag:"span",classes:["token",E.type],attributes:{},language:D},k=E.alias;k&&(Array.isArray(k)?Array.prototype.push.apply(A.classes,k):A.classes.push(k)),u.hooks.run("wrap",A);var F="";for(var T in A.attributes)F+=" "+T+'="'+(A.attributes[T]||"").replace(/"/g,""")+'"';return"<"+A.tag+' class="'+A.classes.join(" ")+'"'+F+">"+A.content+""},"stringify");function p(x,E,D,S){x.lastIndex=E;var A=x.exec(D);if(A&&S&&A[1]){var k=A[1].length;A.index+=k,A[0]=A[0].slice(k)}return A}c(p,"matchPattern");function h(x,E,D,S,A,k){for(var F in D)if(!(!D.hasOwnProperty(F)||!D[F])){var T=D[F];T=Array.isArray(T)?T:[T];for(var R=0;R=k.reach);K+=H.value.length,H=H.next){var te=H.value;if(E.length>x.length)return;if(!(te instanceof d)){var le=1,Q;if(O){if(Q=p(G,K,x,L),!Q||Q.index>=x.length)break;var J=Q.index,re=Q.index+Q[0].length,N=K;for(N+=H.value.length;J>=N;)H=H.next,N+=H.value.length;if(N-=H.value.length,K=N,H.value instanceof d)continue;for(var Y=H;Y!==E.tail&&(Nk.reach&&(k.reach=Ue);var lt=H.prev;Se&&(lt=f(E,lt,Se),K+=Se.length),v(E,lt,le);var P=new d(F,z?u.tokenize(pe,z):pe,M,pe);if(H=f(E,lt,P),St&&f(E,H,St),le>1){var st={cause:F+","+R,reach:Ue};h(x,E,D,H.prev,K,st),k&&st.reach>k.reach&&(k.reach=st.reach)}}}}}}c(h,"matchGrammar");function m(){var x={value:null,prev:null,next:null},E={value:null,prev:x,next:null};x.next=E,this.head=x,this.tail=E,this.length=0}c(m,"LinkedList");function f(x,E,D){var S=E.next,A={value:D,prev:E,next:S};return E.next=A,S.prev=A,x.length++,A}c(f,"addAfter");function v(x,E,D){for(var S=E.next,A=0;A{t.exports=r,r.displayName="clike",r.aliases=[];function r(n){n.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:/[{}[\];(),.:]/}}c(r,"clike")}),Nk=q((e,t)=>{t.exports=r,r.displayName="javascript",r.aliases=["js"];function r(n){n.languages.javascript=n.languages.extend("clike",{"class-name":[n.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}|\?\?=?|\?\.?|[~:]/}),n.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,n.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:n.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:n.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:n.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:n.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:n.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),n.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:n.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"}}),n.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),n.languages.markup&&(n.languages.markup.tag.addInlined("script","javascript"),n.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")),n.languages.js=n.languages.javascript}c(r,"javascript")}),Hk=q((e,t)=>{var r=typeof globalThis=="object"?globalThis:typeof self=="object"?self:typeof window=="object"?window:typeof global=="object"?global:{},n=A();r.Prism={manual:!0,disableWorkerMessageHandler:!0};var a=Ik(),o=Lk(),i=Mk(),s=Eb(),u=gb(),d=Pk(),p=Nk();n();var h={}.hasOwnProperty;function m(){}c(m,"Refractor"),m.prototype=i;var f=new m;t.exports=f,f.highlight=b,f.register=v,f.alias=g,f.registered=C,f.listLanguages=w,v(s),v(u),v(d),v(p),f.util.encode=D,f.Token.stringify=x;function v(k){if(typeof k!="function"||!k.displayName)throw new Error("Expected `function` for `grammar`, got `"+k+"`");f.languages[k.displayName]===void 0&&k(f)}c(v,"register");function g(k,F){var T=f.languages,R=k,$,z,L,O;F&&(R={},R[k]=F);for($ in R)for(z=R[$],z=typeof z=="string"?[z]:z,L=z.length,O=-1;++O{hk(),Ti=De(Hk()),Ri=Xb(Ti.default,{}),Ri.registerLanguage=function(e,t){return Ti.default.register(t)},Ri.alias=function(e,t){return Ti.default.alias(e,t)},ll=Ri}),Vk=B(()=>{Vb()}),Im,qu,Lp,i7=B(()=>{Im=_.div(({theme:e})=>({position:"absolute",bottom:0,right:0,maxWidth:"100%",display:"flex",background:e.background.content,zIndex:1})),qu=_.button(({theme:e})=>({margin:0,border:"0 none",padding:"4px 10px",cursor:"pointer",display:"flex",alignItems:"center",color:e.color.defaultText,background:e.background.content,fontSize:12,lineHeight:"16px",fontFamily:e.typography.fonts.base,fontWeight:e.typography.weight.bold,borderTop:`1px solid ${e.appBorderColor}`,borderLeft:`1px solid ${e.appBorderColor}`,marginLeft:-1,borderRadius:"4px 0 0 0","&:not(:last-child)":{borderRight:`1px solid ${e.appBorderColor}`},"& + *":{borderLeft:`1px solid ${e.appBorderColor}`,borderRadius:0},"&:focus":{boxShadow:`${e.color.secondary} 0 -3px 0 0 inset`,outline:"0 none"}}),({disabled:e})=>e&&{cursor:"not-allowed",opacity:.5}),qu.displayName="ActionButton",Lp=c(({actionItems:e,...t})=>y.createElement(Im,{...t},e.map(({title:r,className:n,onClick:a,disabled:o},i)=>y.createElement(qu,{key:i,className:n,onClick:a,disabled:!!o},r))),"ActionBar")});function l7(e,t){typeof e=="function"?e(t):e!=null&&(e.current=t)}function Mp(...e){return t=>e.forEach(r=>l7(r,t))}function Ke(...e){return l.useCallback(Mp(...e),e)}var _a=B(()=>{c(l7,"$6ed0406888f73fc4$var$setRef"),c(Mp,"$6ed0406888f73fc4$export$43e446d32b3d21af"),c(Ke,"$6ed0406888f73fc4$export$c7b2cbe3552a0d05")});function Tm(e){return l.isValidElement(e)&&e.type===s7}function Rm(e,t){let r={...t};for(let n in t){let a=e[n],o=t[n];/^on[A-Z]/.test(n)?a&&o?r[n]=(...i)=>{o(...i),a(...i)}:a&&(r[n]=a):n==="style"?r[n]={...a,...o}:n==="className"&&(r[n]=[a,o].filter(Boolean).join(" "))}return{...e,...r}}var zo,Bi,s7,Pp=B(()=>{Ct(),_a(),zo=l.forwardRef((e,t)=>{let{children:r,...n}=e,a=l.Children.toArray(r),o=a.find(Tm);if(o){let i=o.props.children,s=a.map(u=>u===o?l.Children.count(i)>1?l.Children.only(null):l.isValidElement(i)?i.props.children:null:u);return l.createElement(Bi,U({},n,{ref:t}),l.isValidElement(i)?l.cloneElement(i,void 0,s):null)}return l.createElement(Bi,U({},n,{ref:t}),r)}),zo.displayName="Slot",Bi=l.forwardRef((e,t)=>{let{children:r,...n}=e;return l.isValidElement(r)?l.cloneElement(r,{...Rm(n,r.props),ref:t?Mp(t,r.ref):r.ref}):l.Children.count(r)>1?l.Children.only(null):null}),Bi.displayName="SlotClone",s7=c(({children:e})=>l.createElement(l.Fragment,null,e),"$5e63c961fc1ce211$export$d9f1ccf0bdb05d45"),c(Tm,"$5e63c961fc1ce211$var$isSlottable"),c(Rm,"$5e63c961fc1ce211$var$mergeProps")});function u7(e,t){e&&lp.flushSync(()=>e.dispatchEvent(t))}var Bm,Me,ai=B(()=>{Ct(),Pp(),Bm=["a","button","div","form","h2","h3","img","input","label","li","nav","ol","p","span","svg","ul"],Me=Bm.reduce((e,t)=>{let r=l.forwardRef((n,a)=>{let{asChild:o,...i}=n,s=o?zo:t;return l.useEffect(()=>{window[Symbol.for("radix-ui")]=!0},[]),l.createElement(s,U({},i,{ref:a}))});return r.displayName=`Primitive.${t}`,{...e,[t]:r}},{}),c(u7,"$8927f6f2acc4f386$export$6d1a0317bde7de7f")}),$o,Np=B(()=>{$o=globalThis!=null&&globalThis.document?l.useLayoutEffect:()=>{}});function c7(e,t){return l.useReducer((r,n)=>t[r][n]??r,e)}function zm(e){let[t,r]=l.useState(),n=l.useRef({}),a=l.useRef(e),o=l.useRef("none"),i=e?"mounted":"unmounted",[s,u]=c7(i,{mounted:{UNMOUNT:"unmounted",ANIMATION_OUT:"unmountSuspended"},unmountSuspended:{MOUNT:"mounted",ANIMATION_END:"unmounted"},unmounted:{MOUNT:"mounted"}});return l.useEffect(()=>{let d=fo(n.current);o.current=s==="mounted"?d:"none"},[s]),$o(()=>{let d=n.current,p=a.current;if(p!==e){let h=o.current,m=fo(d);e?u("MOUNT"):m==="none"||(d==null?void 0:d.display)==="none"?u("UNMOUNT"):u(p&&h!==m?"ANIMATION_OUT":"UNMOUNT"),a.current=e}},[e,u]),$o(()=>{if(t){let d=c(h=>{let m=fo(n.current).includes(h.animationName);h.target===t&&m&&lp.flushSync(()=>u("ANIMATION_END"))},"handleAnimationEnd"),p=c(h=>{h.target===t&&(o.current=fo(n.current))},"handleAnimationStart");return t.addEventListener("animationstart",p),t.addEventListener("animationcancel",d),t.addEventListener("animationend",d),()=>{t.removeEventListener("animationstart",p),t.removeEventListener("animationcancel",d),t.removeEventListener("animationend",d)}}else u("ANIMATION_END")},[t,u]),{isPresent:["mounted","unmountSuspended"].includes(s),ref:l.useCallback(d=>{d&&(n.current=getComputedStyle(d)),r(d)},[])}}function fo(e){return(e==null?void 0:e.animationName)||"none"}var sr,d7=B(()=>{_a(),Np(),c(c7,"$fe963b355347cc68$export$3e6543de14f8614f"),sr=c(e=>{let{present:t,children:r}=e,n=zm(t),a=typeof r=="function"?r({present:n.isPresent}):l.Children.only(r),o=Ke(n.ref,a.ref);return typeof r=="function"||n.isPresent?l.cloneElement(a,{ref:o}):null},"$921a889cee6df7e8$export$99c2b779aa4e8b8b"),sr.displayName="Presence",c(zm,"$921a889cee6df7e8$var$usePresence"),c(fo,"$921a889cee6df7e8$var$getAnimationName")});function p7(e,t){let r=l.createContext(t);function n(o){let{children:i,...s}=o,u=l.useMemo(()=>s,Object.values(s));return l.createElement(r.Provider,{value:u},i)}c(n,"Provider");function a(o){let i=l.useContext(r);if(i)return i;if(t!==void 0)return t;throw new Error(`\`${o}\` must be used within \`${e}\``)}return c(a,"useContext"),n.displayName=e+"Provider",[n,a]}function Hp(e,t=[]){let r=[];function n(o,i){let s=l.createContext(i),u=r.length;r=[...r,i];function d(h){let{scope:m,children:f,...v}=h,g=(m==null?void 0:m[e][u])||s,b=l.useMemo(()=>v,Object.values(v));return l.createElement(g.Provider,{value:b},f)}c(d,"Provider");function p(h,m){let f=(m==null?void 0:m[e][u])||s,v=l.useContext(f);if(v)return v;if(i!==void 0)return i;throw new Error(`\`${h}\` must be used within \`${o}\``)}return c(p,"useContext"),d.displayName=o+"Provider",[d,p]}c(n,"$c512c27ab02ef895$export$fd42f52fd3ae1109");let a=c(()=>{let o=r.map(i=>l.createContext(i));return c(function(i){let s=(i==null?void 0:i[e])||o;return l.useMemo(()=>({[`__scope${e}`]:{...i,[e]:s}}),[i,s])},"useScope")},"createScope");return a.scopeName=e,[n,f7(a,...t)]}function f7(...e){let t=e[0];if(e.length===1)return t;let r=c(()=>{let n=e.map(a=>({useScope:a(),scopeName:a.scopeName}));return c(function(a){let o=n.reduce((i,{useScope:s,scopeName:u})=>{let d=s(a)[`__scope${u}`];return{...i,...d}},{});return l.useMemo(()=>({[`__scope${t.scopeName}`]:o}),[o])},"useComposedScopes")},"createScope1");return r.scopeName=t.scopeName,r}var h7=B(()=>{c(p7,"$c512c27ab02ef895$export$fd42f52fd3ae1109"),c(Hp,"$c512c27ab02ef895$export$50c7b4e9d9f19c1"),c(f7,"$c512c27ab02ef895$var$composeContextScopes")});function ze(e){let t=l.useRef(e);return l.useEffect(()=>{t.current=e}),l.useMemo(()=>(...r)=>{var n;return(n=t.current)===null||n===void 0?void 0:n.call(t,...r)},[])}var oi=B(()=>{c(ze,"$b1b2314f5f9a1d84$export$25bec8c6f54ee79a")});function m7(e){let t=l.useContext(g7);return e||t||"ltr"}var g7,Uk=B(()=>{g7=l.createContext(void 0),c(m7,"$f631663db3294ace$export$b39126d51d94e6f3")});function v7(e,[t,r]){return Math.min(r,Math.max(t,e))}var qk=B(()=>{c(v7,"$ae6933e535247d3d$export$7d15b64cf5a3a4c4")});function Ie(e,t,{checkForDefaultPrevented:r=!0}={}){return c(function(n){if(e==null||e(n),r===!1||!n.defaultPrevented)return t==null?void 0:t(n)},"handleEvent")}var jp=B(()=>{c(Ie,"$e42e1063c40fb3ef$export$b9ecd428b558ff10")});function $m(e,t){return l.useReducer((r,n)=>t[r][n]??r,e)}function Ga(e){return e?parseInt(e,10):0}function vd(e,t){let r=e/t;return isNaN(r)?0:r}function ko(e){let t=vd(e.viewport,e.content),r=e.scrollbar.paddingStart+e.scrollbar.paddingEnd,n=(e.scrollbar.size-r)*t;return Math.max(n,18)}function Om(e,t,r,n="ltr"){let a=ko(r),o=a/2,i=t||o,s=a-i,u=r.scrollbar.paddingStart+i,d=r.scrollbar.size-r.scrollbar.paddingEnd-s,p=r.content-r.viewport,h=n==="ltr"?[0,p]:[p*-1,0];return Vp([u,d],h)(e)}function Wu(e,t,r="ltr"){let n=ko(t),a=t.scrollbar.paddingStart+t.scrollbar.paddingEnd,o=t.scrollbar.size-a,i=t.content-t.viewport,s=o-n,u=r==="ltr"?[0,i]:[i*-1,0],d=v7(e,u);return Vp([0,i],[0,s])(d)}function Vp(e,t){return r=>{if(e[0]===e[1]||t[0]===t[1])return t[0];let n=(t[1]-t[0])/(e[1]-e[0]);return t[0]+n*(r-e[0])}}function Gu(e,t){return e>0&&e()=>window.clearTimeout(n.current),[]),l.useCallback(()=>{window.clearTimeout(n.current),n.current=window.setTimeout(r,t)},[r,t])}function Ur(e,t){let r=ze(t);$o(()=>{let n=0;if(e){let a=new ResizeObserver(()=>{cancelAnimationFrame(n),n=window.requestAnimationFrame(r)});return a.observe(e),()=>{window.cancelAnimationFrame(n),a.unobserve(e)}}},[e,r])}var Ku,Yu,Wk,Lm,qe,Mm,Pm,Nm,Bt,Hm,jm,Vm,Ju,zi,Um,qm,Wm,Zu,Xu,$i,Gm,Km,Qu,Ym,Jm,Zm,y7,b7,w7,E7,x7,Gk=B(()=>{Ct(),ai(),d7(),h7(),_a(),oi(),Uk(),Np(),qk(),jp(),c($m,"$6c2e24571c90391f$export$3e6543de14f8614f"),Ku="ScrollArea",[Yu,Wk]=Hp(Ku),[Lm,qe]=Yu(Ku),Mm=l.forwardRef((e,t)=>{let{__scopeScrollArea:r,type:n="hover",dir:a,scrollHideDelay:o=600,...i}=e,[s,u]=l.useState(null),[d,p]=l.useState(null),[h,m]=l.useState(null),[f,v]=l.useState(null),[g,b]=l.useState(null),[C,w]=l.useState(0),[x,E]=l.useState(0),[D,S]=l.useState(!1),[A,k]=l.useState(!1),F=Ke(t,R=>u(R)),T=m7(a);return l.createElement(Lm,{scope:r,type:n,dir:T,scrollHideDelay:o,scrollArea:s,viewport:d,onViewportChange:p,content:h,onContentChange:m,scrollbarX:f,onScrollbarXChange:v,scrollbarXEnabled:D,onScrollbarXEnabledChange:S,scrollbarY:g,onScrollbarYChange:b,scrollbarYEnabled:A,onScrollbarYEnabledChange:k,onCornerWidthChange:w,onCornerHeightChange:E},l.createElement(Me.div,U({dir:T},i,{ref:F,style:{position:"relative","--radix-scroll-area-corner-width":C+"px","--radix-scroll-area-corner-height":x+"px",...e.style}})))}),Pm="ScrollAreaViewport",Nm=l.forwardRef((e,t)=>{let{__scopeScrollArea:r,children:n,...a}=e,o=qe(Pm,r),i=l.useRef(null),s=Ke(t,i,o.onViewportChange);return l.createElement(l.Fragment,null,l.createElement("style",{dangerouslySetInnerHTML:{__html:"[data-radix-scroll-area-viewport]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;}[data-radix-scroll-area-viewport]::-webkit-scrollbar{display:none}"}}),l.createElement(Me.div,U({"data-radix-scroll-area-viewport":""},a,{ref:s,style:{overflowX:o.scrollbarXEnabled?"scroll":"hidden",overflowY:o.scrollbarYEnabled?"scroll":"hidden",...e.style}}),l.createElement("div",{ref:o.onContentChange,style:{minWidth:"100%",display:"table"}},n)))}),Bt="ScrollAreaScrollbar",Hm=l.forwardRef((e,t)=>{let{forceMount:r,...n}=e,a=qe(Bt,e.__scopeScrollArea),{onScrollbarXEnabledChange:o,onScrollbarYEnabledChange:i}=a,s=e.orientation==="horizontal";return l.useEffect(()=>(s?o(!0):i(!0),()=>{s?o(!1):i(!1)}),[s,o,i]),a.type==="hover"?l.createElement(jm,U({},n,{ref:t,forceMount:r})):a.type==="scroll"?l.createElement(Vm,U({},n,{ref:t,forceMount:r})):a.type==="auto"?l.createElement(Ju,U({},n,{ref:t,forceMount:r})):a.type==="always"?l.createElement(zi,U({},n,{ref:t})):null}),jm=l.forwardRef((e,t)=>{let{forceMount:r,...n}=e,a=qe(Bt,e.__scopeScrollArea),[o,i]=l.useState(!1);return l.useEffect(()=>{let s=a.scrollArea,u=0;if(s){let d=c(()=>{window.clearTimeout(u),i(!0)},"handlePointerEnter"),p=c(()=>{u=window.setTimeout(()=>i(!1),a.scrollHideDelay)},"handlePointerLeave");return s.addEventListener("pointerenter",d),s.addEventListener("pointerleave",p),()=>{window.clearTimeout(u),s.removeEventListener("pointerenter",d),s.removeEventListener("pointerleave",p)}}},[a.scrollArea,a.scrollHideDelay]),l.createElement(sr,{present:r||o},l.createElement(Ju,U({"data-state":o?"visible":"hidden"},n,{ref:t})))}),Vm=l.forwardRef((e,t)=>{let{forceMount:r,...n}=e,a=qe(Bt,e.__scopeScrollArea),o=e.orientation==="horizontal",i=Ka(()=>u("SCROLL_END"),100),[s,u]=$m("hidden",{hidden:{SCROLL:"scrolling"},scrolling:{SCROLL_END:"idle",POINTER_ENTER:"interacting"},interacting:{SCROLL:"interacting",POINTER_LEAVE:"idle"},idle:{HIDE:"hidden",SCROLL:"scrolling",POINTER_ENTER:"interacting"}});return l.useEffect(()=>{if(s==="idle"){let d=window.setTimeout(()=>u("HIDE"),a.scrollHideDelay);return()=>window.clearTimeout(d)}},[s,a.scrollHideDelay,u]),l.useEffect(()=>{let d=a.viewport,p=o?"scrollLeft":"scrollTop";if(d){let h=d[p],m=c(()=>{let f=d[p];h!==f&&(u("SCROLL"),i()),h=f},"handleScroll");return d.addEventListener("scroll",m),()=>d.removeEventListener("scroll",m)}},[a.viewport,o,u,i]),l.createElement(sr,{present:r||s!=="hidden"},l.createElement(zi,U({"data-state":s==="hidden"?"hidden":"visible"},n,{ref:t,onPointerEnter:Ie(e.onPointerEnter,()=>u("POINTER_ENTER")),onPointerLeave:Ie(e.onPointerLeave,()=>u("POINTER_LEAVE"))})))}),Ju=l.forwardRef((e,t)=>{let r=qe(Bt,e.__scopeScrollArea),{forceMount:n,...a}=e,[o,i]=l.useState(!1),s=e.orientation==="horizontal",u=Ka(()=>{if(r.viewport){let d=r.viewport.offsetWidth{let{orientation:r="vertical",...n}=e,a=qe(Bt,e.__scopeScrollArea),o=l.useRef(null),i=l.useRef(0),[s,u]=l.useState({content:0,viewport:0,scrollbar:{size:0,paddingStart:0,paddingEnd:0}}),d=vd(s.viewport,s.content),p={...n,sizes:s,onSizesChange:u,hasThumb:d>0&&d<1,onThumbChange:c(m=>o.current=m,"onThumbChange"),onThumbPointerUp:c(()=>i.current=0,"onThumbPointerUp"),onThumbPointerDown:c(m=>i.current=m,"onThumbPointerDown")};function h(m,f){return Om(m,i.current,s,f)}return c(h,"getScrollPosition"),r==="horizontal"?l.createElement(Um,U({},p,{ref:t,onThumbPositionChange:c(()=>{if(a.viewport&&o.current){let m=a.viewport.scrollLeft,f=Wu(m,s,a.dir);o.current.style.transform=`translate3d(${f}px, 0, 0)`}},"onThumbPositionChange"),onWheelScroll:c(m=>{a.viewport&&(a.viewport.scrollLeft=m)},"onWheelScroll"),onDragScroll:c(m=>{a.viewport&&(a.viewport.scrollLeft=h(m,a.dir))},"onDragScroll")})):r==="vertical"?l.createElement(qm,U({},p,{ref:t,onThumbPositionChange:c(()=>{if(a.viewport&&o.current){let m=a.viewport.scrollTop,f=Wu(m,s);o.current.style.transform=`translate3d(0, ${f}px, 0)`}},"onThumbPositionChange"),onWheelScroll:c(m=>{a.viewport&&(a.viewport.scrollTop=m)},"onWheelScroll"),onDragScroll:c(m=>{a.viewport&&(a.viewport.scrollTop=h(m))},"onDragScroll")})):null}),Um=l.forwardRef((e,t)=>{let{sizes:r,onSizesChange:n,...a}=e,o=qe(Bt,e.__scopeScrollArea),[i,s]=l.useState(),u=l.useRef(null),d=Ke(t,u,o.onScrollbarXChange);return l.useEffect(()=>{u.current&&s(getComputedStyle(u.current))},[u]),l.createElement(Xu,U({"data-orientation":"horizontal"},a,{ref:d,sizes:r,style:{bottom:0,left:o.dir==="rtl"?"var(--radix-scroll-area-corner-width)":0,right:o.dir==="ltr"?"var(--radix-scroll-area-corner-width)":0,"--radix-scroll-area-thumb-width":ko(r)+"px",...e.style},onThumbPointerDown:c(p=>e.onThumbPointerDown(p.x),"onThumbPointerDown"),onDragScroll:c(p=>e.onDragScroll(p.x),"onDragScroll"),onWheelScroll:c((p,h)=>{if(o.viewport){let m=o.viewport.scrollLeft+p.deltaX;e.onWheelScroll(m),Gu(m,h)&&p.preventDefault()}},"onWheelScroll"),onResize:c(()=>{u.current&&o.viewport&&i&&n({content:o.viewport.scrollWidth,viewport:o.viewport.offsetWidth,scrollbar:{size:u.current.clientWidth,paddingStart:Ga(i.paddingLeft),paddingEnd:Ga(i.paddingRight)}})},"onResize")}))}),qm=l.forwardRef((e,t)=>{let{sizes:r,onSizesChange:n,...a}=e,o=qe(Bt,e.__scopeScrollArea),[i,s]=l.useState(),u=l.useRef(null),d=Ke(t,u,o.onScrollbarYChange);return l.useEffect(()=>{u.current&&s(getComputedStyle(u.current))},[u]),l.createElement(Xu,U({"data-orientation":"vertical"},a,{ref:d,sizes:r,style:{top:0,right:o.dir==="ltr"?0:void 0,left:o.dir==="rtl"?0:void 0,bottom:"var(--radix-scroll-area-corner-height)","--radix-scroll-area-thumb-height":ko(r)+"px",...e.style},onThumbPointerDown:c(p=>e.onThumbPointerDown(p.y),"onThumbPointerDown"),onDragScroll:c(p=>e.onDragScroll(p.y),"onDragScroll"),onWheelScroll:c((p,h)=>{if(o.viewport){let m=o.viewport.scrollTop+p.deltaY;e.onWheelScroll(m),Gu(m,h)&&p.preventDefault()}},"onWheelScroll"),onResize:c(()=>{u.current&&o.viewport&&i&&n({content:o.viewport.scrollHeight,viewport:o.viewport.offsetHeight,scrollbar:{size:u.current.clientHeight,paddingStart:Ga(i.paddingTop),paddingEnd:Ga(i.paddingBottom)}})},"onResize")}))}),[Wm,Zu]=Yu(Bt),Xu=l.forwardRef((e,t)=>{let{__scopeScrollArea:r,sizes:n,hasThumb:a,onThumbChange:o,onThumbPointerUp:i,onThumbPointerDown:s,onThumbPositionChange:u,onDragScroll:d,onWheelScroll:p,onResize:h,...m}=e,f=qe(Bt,r),[v,g]=l.useState(null),b=Ke(t,F=>g(F)),C=l.useRef(null),w=l.useRef(""),x=f.viewport,E=n.content-n.viewport,D=ze(p),S=ze(u),A=Ka(h,10);function k(F){if(C.current){let T=F.clientX-C.current.left,R=F.clientY-C.current.top;d({x:T,y:R})}}return c(k,"handleDragScroll"),l.useEffect(()=>{let F=c(T=>{let R=T.target;v!=null&&v.contains(R)&&D(T,E)},"handleWheel");return document.addEventListener("wheel",F,{passive:!1}),()=>document.removeEventListener("wheel",F,{passive:!1})},[x,v,E,D]),l.useEffect(S,[n,S]),Ur(v,A),Ur(f.content,A),l.createElement(Wm,{scope:r,scrollbar:v,hasThumb:a,onThumbChange:ze(o),onThumbPointerUp:ze(i),onThumbPositionChange:S,onThumbPointerDown:ze(s)},l.createElement(Me.div,U({},m,{ref:b,style:{position:"absolute",...m.style},onPointerDown:Ie(e.onPointerDown,F=>{F.button===0&&(F.target.setPointerCapture(F.pointerId),C.current=v.getBoundingClientRect(),w.current=document.body.style.webkitUserSelect,document.body.style.webkitUserSelect="none",f.viewport&&(f.viewport.style.scrollBehavior="auto"),k(F))}),onPointerMove:Ie(e.onPointerMove,k),onPointerUp:Ie(e.onPointerUp,F=>{let T=F.target;T.hasPointerCapture(F.pointerId)&&T.releasePointerCapture(F.pointerId),document.body.style.webkitUserSelect=w.current,f.viewport&&(f.viewport.style.scrollBehavior=""),C.current=null})})))}),$i="ScrollAreaThumb",Gm=l.forwardRef((e,t)=>{let{forceMount:r,...n}=e,a=Zu($i,e.__scopeScrollArea);return l.createElement(sr,{present:r||a.hasThumb},l.createElement(Km,U({ref:t},n)))}),Km=l.forwardRef((e,t)=>{let{__scopeScrollArea:r,style:n,...a}=e,o=qe($i,r),i=Zu($i,r),{onThumbPositionChange:s}=i,u=Ke(t,h=>i.onThumbChange(h)),d=l.useRef(),p=Ka(()=>{d.current&&(d.current(),d.current=void 0)},100);return l.useEffect(()=>{let h=o.viewport;if(h){let m=c(()=>{if(p(),!d.current){let f=Zm(h,s);d.current=f,s()}},"handleScroll");return s(),h.addEventListener("scroll",m),()=>h.removeEventListener("scroll",m)}},[o.viewport,p,s]),l.createElement(Me.div,U({"data-state":i.hasThumb?"visible":"hidden"},a,{ref:u,style:{width:"var(--radix-scroll-area-thumb-width)",height:"var(--radix-scroll-area-thumb-height)",...n},onPointerDownCapture:Ie(e.onPointerDownCapture,h=>{let m=h.target.getBoundingClientRect(),f=h.clientX-m.left,v=h.clientY-m.top;i.onThumbPointerDown({x:f,y:v})}),onPointerUp:Ie(e.onPointerUp,i.onThumbPointerUp)}))}),Qu="ScrollAreaCorner",Ym=l.forwardRef((e,t)=>{let r=qe(Qu,e.__scopeScrollArea),n=!!(r.scrollbarX&&r.scrollbarY);return r.type!=="scroll"&&n?l.createElement(Jm,U({},e,{ref:t})):null}),Jm=l.forwardRef((e,t)=>{let{__scopeScrollArea:r,...n}=e,a=qe(Qu,r),[o,i]=l.useState(0),[s,u]=l.useState(0),d=!!(o&&s);return Ur(a.scrollbarX,()=>{var p;let h=((p=a.scrollbarX)===null||p===void 0?void 0:p.offsetHeight)||0;a.onCornerHeightChange(h),u(h)}),Ur(a.scrollbarY,()=>{var p;let h=((p=a.scrollbarY)===null||p===void 0?void 0:p.offsetWidth)||0;a.onCornerWidthChange(h),i(h)}),d?l.createElement(Me.div,U({},n,{ref:t,style:{width:o,height:s,position:"absolute",right:a.dir==="ltr"?0:void 0,left:a.dir==="rtl"?0:void 0,bottom:0,...e.style}})):null}),c(Ga,"$57acba87d6e25586$var$toInt"),c(vd,"$57acba87d6e25586$var$getThumbRatio"),c(ko,"$57acba87d6e25586$var$getThumbSize"),c(Om,"$57acba87d6e25586$var$getScrollPositionFromPointer"),c(Wu,"$57acba87d6e25586$var$getThumbOffsetFromScroll"),c(Vp,"$57acba87d6e25586$var$linearScale"),c(Gu,"$57acba87d6e25586$var$isScrollingWithinScrollbarBounds"),Zm=c((e,t=()=>{})=>{let r={left:e.scrollLeft,top:e.scrollTop},n=0;return c(function a(){let o={left:e.scrollLeft,top:e.scrollTop},i=r.left!==o.left,s=r.top!==o.top;(i||s)&&t(),r=o,n=window.requestAnimationFrame(a)},"loop")(),()=>window.cancelAnimationFrame(n)},"$57acba87d6e25586$var$addUnlinkedScrollListener"),c(Ka,"$57acba87d6e25586$var$useDebounceCallback"),c(Ur,"$57acba87d6e25586$var$useResizeObserver"),y7=Mm,b7=Nm,w7=Hm,E7=Gm,x7=Ym}),Xm,Qm,ec,tc,Pl,Up=B(()=>{Gk(),Xm=_(y7)(({scrollbarsize:e,offset:t})=>({width:"100%",height:"100%",overflow:"hidden","--scrollbar-size":`${e+t}px`,"--radix-scroll-area-thumb-width":`${e}px`})),Qm=_(b7)({width:"100%",height:"100%"}),ec=_(w7)(({offset:e,horizontal:t,vertical:r})=>({display:"flex",userSelect:"none",touchAction:"none",background:"transparent",transition:"all 0.2s ease-out",borderRadius:"var(--scrollbar-size)",'&[data-orientation="vertical"]':{width:"var(--scrollbar-size)",paddingRight:e,marginTop:e,marginBottom:t==="true"&&r==="true"?0:e},'&[data-orientation="horizontal"]':{flexDirection:"column",height:"var(--scrollbar-size)",paddingBottom:e,marginLeft:e,marginRight:t==="true"&&r==="true"?0:e}})),tc=_(E7)(({theme:e})=>({flex:1,background:e.textMutedColor,opacity:.5,borderRadius:"var(--scrollbar-size)",position:"relative",transition:"opacity 0.2s ease-out","&:hover":{opacity:.8},"::before":{content:'""',position:"absolute",top:"50%",left:"50%",transform:"translate(-50%,-50%)",width:"100%",height:"100%"}})),Pl=l.forwardRef(({children:e,horizontal:t=!1,vertical:r=!1,offset:n=2,scrollbarSize:a=6,className:o},i)=>y.createElement(Xm,{scrollbarsize:a,offset:n,className:o},y.createElement(Qm,{ref:i},e),t&&y.createElement(ec,{orientation:"horizontal",offset:n,horizontal:t.toString(),vertical:r.toString()},y.createElement(tc,null)),r&&y.createElement(ec,{orientation:"vertical",offset:n,horizontal:t.toString(),vertical:r.toString()},y.createElement(tc,null)),t&&r&&y.createElement(x7,null))),Pl.displayName="ScrollArea"}),qp={};ka(qp,{SyntaxHighlighter:()=>_o,createCopyToClipboardFunction:()=>yd,default:()=>C7,supportedLanguages:()=>bd});const{logger:Kk}=__STORYBOOK_MODULE_CLIENT_LOGGER__;function yd(){return ho!=null&&ho.clipboard?e=>ho.clipboard.writeText(e):async e=>{let t=Hn.createElement("TEXTAREA"),r=Hn.activeElement;t.value=e,Hn.body.appendChild(t),t.select(),Hn.execCommand("copy"),Hn.body.removeChild(t),r.focus()}}var eg,ho,Hn,tg,bd,rg,ng,ag,og,ig,lg,sg,rc,ug,cg,_o,C7,Ms=B(()=>{_p(),eg=De($s(),1),HA(),VA(),UA(),WA(),KA(),JA(),ZA(),QA(),tk(),nk(),ak(),jk(),Vk(),i7(),Up(),{navigator:ho,document:Hn,window:tg}=zs,bd={jsextra:yb,jsx:hb,json:bb,yml:Db,md:Cb,bash:mb,css:vb,html:xb,tsx:Ab,typescript:kb,graphql:wb},Object.entries(bd).forEach(([e,t])=>{ll.registerLanguage(e,t)}),rg=(0,eg.default)(2)(e=>Object.entries(e.code||{}).reduce((t,[r,n])=>({...t,[`* .${r}`]:n}),{})),ng=yd(),c(yd,"createCopyToClipboardFunction"),ag=_.div(({theme:e})=>({position:"relative",overflow:"hidden",color:e.color.defaultText}),({theme:e,bordered:t})=>t?{border:`1px solid ${e.appBorderColor}`,borderRadius:e.borderRadius,background:e.background.content}:{},({showLineNumbers:e})=>e?{".react-syntax-highlighter-line-number::before":{content:"attr(data-line-number)"}}:{}),og=c(({children:e,className:t})=>y.createElement(Pl,{horizontal:!0,vertical:!0,className:t},e),"UnstyledScroller"),ig=_(og)({position:"relative"},({theme:e})=>rg(e)),lg=_.pre(({theme:e,padded:t})=>({display:"flex",justifyContent:"flex-start",margin:0,padding:t?e.layoutMargin:0})),sg=_.div(({theme:e})=>({flex:1,paddingLeft:2,paddingRight:e.layoutMargin,opacity:1,fontFamily:e.typography.fonts.mono})),rc=c(e=>{let t=[...e.children],r=t[0],n=r.children[0].value,a={...r,children:[],properties:{...r.properties,"data-line-number":n,style:{...r.properties.style,userSelect:"auto"}}};return t[0]=a,{...e,children:t}},"processLineNumber"),ug=c(({rows:e,stylesheet:t,useInlineStyles:r})=>e.map((n,a)=>Ls({node:rc(n),stylesheet:t,useInlineStyles:r,key:`code-segement${a}`})),"defaultRenderer"),cg=c((e,t)=>t?e?({rows:r,...n})=>e({rows:r.map(a=>rc(a)),...n}):ug:e,"wrapRenderer"),_o=c(({children:e,language:t="jsx",copyable:r=!1,bordered:n=!1,padded:a=!1,format:o=!0,formatter:i=void 0,className:s=void 0,showLineNumbers:u=!1,...d})=>{if(typeof e!="string"||!e.trim())return null;let[p,h]=l.useState("");l.useEffect(()=>{i?i(o,e).then(h):h(e.trim())},[e,o,i]);let[m,f]=l.useState(!1),v=l.useCallback(b=>{b.preventDefault(),ng(p).then(()=>{f(!0),tg.setTimeout(()=>f(!1),1500)}).catch(Kk.error)},[p]),g=cg(d.renderer,u);return y.createElement(ag,{bordered:n,padded:a,showLineNumbers:u,className:s},y.createElement(ig,null,y.createElement(ll,{padded:a||n,language:t,showLineNumbers:u,showInlineLineNumbers:u,useInlineStyles:!1,PreTag:lg,CodeTag:sg,lineNumberContainerStyle:{},...d,renderer:g},p)),r?y.createElement(Lp,{actionItems:[{title:m?"Copied":"Copy",onClick:v}]}):null)},"SyntaxHighlighter"),_o.registerLanguage=(...e)=>ll.registerLanguage(...e),C7=_o});function dg(e){if(typeof e=="string")return Ws;if(Array.isArray(e))return Gs;if(!e)return;let{type:t}=e;if(mf.has(t))return t}function pg(e){let t=e===null?"null":typeof e;if(t!=="string"&&t!=="object")return`Unexpected doc '${t}', -Expected it to be 'string' or 'object'.`;if(Ks(e))throw new Error("doc is valid.");let r=Object.prototype.toString.call(e);if(r!=="[object Object]")return`Unexpected doc '${r}'.`;let n=Fw([...mf].map(a=>`'${a}'`));return`Unexpected doc.type '${e.type}'. -Expected it to be ${n}.`}function Zt(e){return Br(e),{type:Mo,contents:e}}function Wp(e,t){return Br(t),{type:Po,contents:t,n:e}}function Ce(e,t={}){return Br(e),Ys(t.expandedStates,!0),{type:ha,id:t.id,contents:e,break:!!t.shouldBreak,expandedStates:t.expandedStates}}function D7(e){return Wp(Number.NEGATIVE_INFINITY,e)}function S7(e){return Wp({type:"root"},e)}function Gp(e){return Ys(e),{type:No,parts:e}}function Oo(e,t="",r={}){return Br(e),t!==""&&Br(t),{type:Ho,breakContents:e,flatContents:t,groupId:r.groupId}}function A7(e,t){return Br(e),{type:jo,contents:e,groupId:t.groupId,negate:t.negate}}function vn(e,t){Br(e),Ys(t);let r=[];for(let n=0;nt===""))return"";break;case ha:if(!e.contents&&!e.id&&!e.break&&!e.expandedStates)return"";if(e.contents.type===ha&&e.contents.id===e.id&&e.contents.break===e.break&&e.contents.expandedStates===e.expandedStates)return e.contents;break;case Po:case Mo:case jo:case Gl:if(!e.contents)return"";break;case Ho:if(!e.flatContents&&!e.breakContents)return"";break;case Gs:{let t=[];for(let r of e){if(!r)continue;let[n,...a]=Array.isArray(r)?r:[r];typeof n=="string"&&typeof ma(!1,t,-1)=="string"?t[t.length-1]+=n:t.push(n),t.push(...a)}return t.length===0?"":t.length===1?t[0]:t}case Ws:case ql:case Wl:case Kl:case Sr:case Yl:case Fo:break;default:throw new gf(e)}return e}function _7(e){return Ps(e,t=>k7(t))}function tt(e,t=Iw){return Ps(e,r=>typeof r=="string"?vn(t,r.split(` -`)):r)}function fg(e,t){let r=t===!0||t===bo?bo:kd,n=r===bo?kd:bo,a=0,o=0;for(let i of e)i===r?a++:i===n&&o++;return a>o?n:r}function hg(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}function mg(e){return(e==null?void 0:e.type)==="front-matter"}function nc(e,t){var r;if(e.type==="text"||e.type==="comment"||fi(e)||e.type==="yaml"||e.type==="toml")return null;if(e.type==="attribute"&&delete t.value,e.type==="docType"&&delete t.value,e.type==="angularControlFlowBlock"&&(r=t.parameters)!=null&&r.children)for(let n of t.parameters.children)Bw.has(e.name)?delete n.expression:n.expression=n.expression.trim();e.type==="angularIcuExpression"&&(t.switchValue=e.switchValue.trim())}async function gg(e,t){if(e.lang==="yaml"){let r=e.value.trim(),n=r?await t(r,{parser:"yaml"}):"";return S7([e.startDelimiter,oe,n,n?oe:"",e.endDelimiter])}}function ii(e,t=!0){return[Zt([xe,e]),t?xe:""]}function yn(e,t){let r=e.type==="NGRoot"?e.node.type==="NGMicrosyntax"&&e.node.body.length===1&&e.node.body[0].type==="NGMicrosyntaxExpression"?e.node.body[0].expression:e.node:e.type==="JsExpressionRoot"?e.node:e;return r&&(r.type==="ObjectExpression"||r.type==="ArrayExpression"||(t.parser==="__vue_expression"||t.parser==="__vue_ts_expression")&&(r.type==="TemplateLiteral"||r.type==="StringLiteral"))}async function yt(e,t,r,n){r={__isInHtmlAttribute:!0,__embeddedInHtml:!0,...r};let a=!0;n&&(r.__onHtmlBindingRoot=(i,s)=>{a=n(i,s)});let o=await t(e,r,t);return a?Ce(o):ii(o)}function vg(e,t,r,n){let{node:a}=r,o=n.originalText.slice(a.sourceSpan.start.offset,a.sourceSpan.end.offset);return/^\s*$/.test(o)?"":yt(o,e,{parser:"__ng_directive",__isInHtmlAttribute:!1,trailingComma:"none"},yn)}function wd(e,t){if(!t)return;let r=Ow(t).toLowerCase();return e.find(({filenames:n})=>n==null?void 0:n.some(a=>a.toLowerCase()===r))??e.find(({extensions:n})=>n==null?void 0:n.some(a=>r.endsWith(a)))}function F7(e,t){if(t)return e.find(({name:r})=>r.toLowerCase()===t)??e.find(({aliases:r})=>r==null?void 0:r.includes(t))??e.find(({extensions:r})=>r==null?void 0:r.includes(`.${t}`))}function yg(e,t){let r=e.plugins.flatMap(a=>a.languages??[]),n=F7(r,t.language)??wd(r,t.physicalFile)??wd(r,t.file)??(t.physicalFile,void 0);return n==null?void 0:n.parsers[0]}function bg(e){return e.type==="element"&&!e.hasExplicitNamespace&&!["html","svg"].includes(e.namespace)}function Kp(e,t){return!!(e.type==="ieConditionalComment"&&e.lastChild&&!e.lastChild.isSelfClosing&&!e.lastChild.endSourceSpan||e.type==="ieConditionalComment"&&!e.complete||cn(e)&&e.children.some(r=>r.type!=="text"&&r.type!=="interpolation")||Hs(e,t)&&!qt(e)&&e.type!=="interpolation")}function li(e){return e.type==="attribute"||!e.parent||!e.prev?!1:I7(e.prev)}function I7(e){return e.type==="comment"&&e.value.trim()==="prettier-ignore"}function Ye(e){return e.type==="text"||e.type==="comment"}function qt(e){return e.type==="element"&&(e.fullName==="script"||e.fullName==="style"||e.fullName==="svg:style"||e.fullName==="svg:script"||ga(e)&&(e.name==="script"||e.name==="style"))}function T7(e){return e.children&&!qt(e)}function R7(e){return qt(e)||e.type==="interpolation"||Yp(e)}function Yp(e){return rf(e).startsWith("pre")}function B7(e,t){var r,n;let a=o();if(a&&!e.prev&&(n=(r=e.parent)==null?void 0:r.tagDefinition)!=null&&n.ignoreFirstLf)return e.type==="interpolation";return a;function o(){return fi(e)||e.type==="angularControlFlowBlock"?!1:(e.type==="text"||e.type==="interpolation")&&e.prev&&(e.prev.type==="text"||e.prev.type==="interpolation")?!0:!e.parent||e.parent.cssDisplay==="none"?!1:cn(e.parent)?!0:!(!e.prev&&(e.parent.type==="root"||cn(e)&&e.parent||qt(e.parent)||si(e.parent,t)||!j7(e.parent.cssDisplay))||e.prev&&!q7(e.prev.cssDisplay))}}function z7(e,t){return fi(e)||e.type==="angularControlFlowBlock"?!1:(e.type==="text"||e.type==="interpolation")&&e.next&&(e.next.type==="text"||e.next.type==="interpolation")?!0:!e.parent||e.parent.cssDisplay==="none"?!1:cn(e.parent)?!0:!(!e.next&&(e.parent.type==="root"||cn(e)&&e.parent||qt(e.parent)||si(e.parent,t)||!V7(e.parent.cssDisplay))||e.next&&!U7(e.next.cssDisplay))}function $7(e){return W7(e.cssDisplay)&&!qt(e)}function mo(e){return fi(e)||e.next&&e.sourceSpan.end&&e.sourceSpan.end.line+10&&(["body","script","style"].includes(e.name)||e.children.some(t=>M7(t)))||e.firstChild&&e.firstChild===e.lastChild&&e.firstChild.type!=="text"&&Xp(e.firstChild)&&(!e.lastChild.isTrailingSpaceSensitive||Qp(e.lastChild))}function Jp(e){return e.type==="element"&&e.children.length>0&&(["html","head","ul","ol","select"].includes(e.name)||e.cssDisplay.startsWith("table")&&e.cssDisplay!=="table-cell")}function sl(e){return ef(e)||e.prev&&L7(e.prev)||Zp(e)}function L7(e){return ef(e)||e.type==="element"&&e.fullName==="br"||Zp(e)}function Zp(e){return Xp(e)&&Qp(e)}function Xp(e){return e.hasLeadingSpaces&&(e.prev?e.prev.sourceSpan.end.linee.sourceSpan.end.line:e.parent.type==="root"||e.parent.endSourceSpan&&e.parent.endSourceSpan.start.line>e.sourceSpan.end.line)}function ef(e){switch(e.type){case"ieConditionalComment":case"comment":case"directive":return!0;case"element":return["script","select"].includes(e.name)}return!1}function Ns(e){return e.lastChild?Ns(e.lastChild):e}function M7(e){var t;return(t=e.children)==null?void 0:t.some(r=>r.type!=="text")}function tf(e){if(e)switch(e){case"module":case"text/javascript":case"text/babel":case"application/javascript":return"babel";case"application/x-typescript":return"typescript";case"text/markdown":return"markdown";case"text/html":return"html";case"text/x-handlebars-template":return"glimmer";default:if(e.endsWith("json")||e.endsWith("importmap")||e==="speculationrules")return"json"}}function P7(e,t){let{name:r,attrMap:n}=e;if(r!=="script"||Object.prototype.hasOwnProperty.call(n,"src"))return;let{type:a,lang:o}=e.attrMap;return!o&&!a?"babel":hi(t,{language:o})??tf(a)}function N7(e,t){if(!Hs(e,t))return;let{attrMap:r}=e;if(Object.prototype.hasOwnProperty.call(r,"src"))return;let{type:n,lang:a}=r;return hi(t,{language:a})??tf(n)}function H7(e,t){if(e.name!=="style")return;let{lang:r}=e.attrMap;return r?hi(t,{language:r}):"css"}function Ed(e,t){return P7(e,t)??H7(e,t)??N7(e,t)}function Fa(e){return e==="block"||e==="list-item"||e.startsWith("table")}function j7(e){return!Fa(e)&&e!=="inline-block"}function V7(e){return!Fa(e)&&e!=="inline-block"}function U7(e){return!Fa(e)}function q7(e){return!Fa(e)}function W7(e){return!Fa(e)&&e!=="inline-block"}function cn(e){return rf(e).startsWith("pre")}function G7(e,t){let r=e;for(;r;){if(t(r))return!0;r=r.parent}return!1}function K7(e,t){var r;if(bn(e,t))return"block";if(((r=e.prev)==null?void 0:r.type)==="comment"){let a=e.prev.value.match(/^\s*display:\s*([a-z]+)\s*$/);if(a)return a[1]}let n=!1;if(e.type==="element"&&e.namespace==="svg")if(G7(e,a=>a.fullName==="svg:foreignObject"))n=!0;else return e.name==="svg"?"inline-block":"block";switch(t.htmlWhitespaceSensitivity){case"strict":return"inline";case"ignore":return"block";default:return e.type==="element"&&(!e.namespace||n||ga(e))&&Mw[e.name]||Lw}}function rf(e){return e.type==="element"&&(!e.namespace||ga(e))&&Nw[e.name]||Pw}function Y7(e){let t=Number.POSITIVE_INFINITY;for(let r of e.split(` -`)){if(r.length===0)continue;let n=mt.getLeadingWhitespaceCount(r);if(n===0)return 0;r.length!==n&&nr.slice(t)).join(` -`)}function af(e){return Ne(!1,Ne(!1,e,"'","'"),""",'"')}function gr(e){return af(e.value)}function si(e,t){return bn(e,t)&&!jw.has(e.fullName)}function bn(e,t){return t.parser==="vue"&&e.type==="element"&&e.parent.type==="root"&&e.fullName.toLowerCase()!=="html"}function Hs(e,t){return bn(e,t)&&(si(e,t)||e.attrMap.lang&&e.attrMap.lang!=="html")}function J7(e){let t=e.fullName;return t.charAt(0)==="#"||t==="slot-scope"||t==="v-slot"||t.startsWith("v-slot:")}function Z7(e,t){let r=e.parent;if(!bn(r,t))return!1;let n=r.fullName,a=e.fullName;return n==="script"&&a==="setup"||n==="style"&&a==="vars"}function of(e,t=e.value){return e.parent.isWhitespaceSensitive?e.parent.isIndentationSensitive?tt(t):tt(nf(vf(t)),oe):vn(Ee,mt.split(t))}function lf(e,t){return bn(e,t)&&e.name==="script"}async function X7(e,t){let r=[];for(let[n,a]of e.split(yf).entries())if(n%2===0)r.push(tt(a));else try{r.push(Ce(["{{",Zt([Ee,await yt(a,t,{parser:"__ng_interpolation",__isInHtmlInterpolation:!0,trailingComma:"none"})]),Ee,"}}"]))}catch{r.push("{{",tt(a),"}}")}return r}function Oi({parser:e}){return(t,r,n)=>yt(gr(n.node),t,{parser:e,trailingComma:"none"},yn)}function wg(e,t){if(t.parser!=="angular")return;let{node:r}=e,n=r.fullName;if(n.startsWith("(")&&n.endsWith(")")||n.startsWith("on-"))return Vw;if(n.startsWith("[")&&n.endsWith("]")||/^bind(?:on)?-/.test(n)||/^ng-(?:if|show|hide|class|style)$/.test(n))return Uw;if(n.startsWith("*"))return qw;let a=gr(r);if(/^i18n(?:-.+)?$/.test(n))return()=>ii(Gp(of(r,a.trim())),!a.includes("@@"));if(yf.test(a))return o=>X7(a,o)}function Eg(e,t){let{node:r}=e,n=gr(r);if(r.fullName==="class"&&!t.parentParser&&!n.includes("{{"))return()=>n.trim().split(/\s+/).join(" ")}function xd(e){return e===" "||e===` -`||e==="\f"||e==="\r"||e===" "}function xg(e){let t=e.length,r,n,a,o,i,s=0,u;function d(f){let v,g=f.exec(e.substring(s));if(g)return[v]=g,s+=v.length,v}c(d,"p");let p=[];for(;;){if(d(Yw),s>=t){if(p.length===0)throw new Error("Must contain one or more image candidate strings.");return p}u=s,r=d(Jw),n=[],r.slice(-1)===","?(r=r.replace(Zw,""),m()):h()}function h(){for(d(Kw),a="",o="in descriptor";;){if(i=e.charAt(s),o==="in descriptor")if(xd(i))a&&(n.push(a),a="",o="after descriptor");else if(i===","){s+=1,a&&n.push(a),m();return}else if(i==="(")a+=i,o="in parens";else if(i===""){a&&n.push(a),m();return}else a+=i;else if(o==="in parens")if(i===")")a+=i,o="in descriptor";else if(i===""){n.push(a),m();return}else a+=i;else if(o==="after descriptor"&&!xd(i))if(i===""){m();return}else o="in descriptor",s-=1;s+=1}}c(h,"m");function m(){let f=!1,v,g,b,C,w={},x,E,D,S,A;for(C=0;CQ7(gr(e.node))}function Q7(e){let t=Qw(e),r=e6.filter(p=>t.some(h=>Object.prototype.hasOwnProperty.call(h,p)));if(r.length>1)throw new Error("Mixed descriptor in srcset is not supported");let[n]=r,a=Fd[n],o=t.map(p=>p.source.value),i=Math.max(...o.map(p=>p.length)),s=t.map(p=>p[n]?String(p[n].value):""),u=s.map(p=>{let h=p.indexOf(".");return h===-1?p.length:h}),d=Math.max(...u);return ii(vn([",",Ee],o.map((p,h)=>{let m=[p],f=s[h];if(f){let v=i-p.length+1,g=d-u[h],b=" ".repeat(v+g);m.push(Oo(b," "),f+a)}return m})))}function ew(e,t){let{node:r}=e,n=gr(e.node).trim();if(r.fullName==="style"&&!t.parentParser&&!n.includes("{{"))return async a=>ii(await a(n,{parser:"css",__isHTMLStyleAttribute:!0}))}function Dg(e,t){let{root:r}=e;return ul.has(r)||ul.set(r,r.children.some(n=>lf(n,t)&&["ts","typescript"].includes(n.attrMap.lang))),ul.get(r)}function tw(e,t,r){let{node:n}=r,a=gr(n);return yt(`type T<${a}> = any`,e,{parser:"babel-ts",__isEmbeddedTypescriptGenericParameters:!0},yn)}function rw(e,t,{parseWithTs:r}){return yt(`function _(${e}) {}`,t,{parser:r?"babel-ts":"babel",__isVueBindings:!0})}function nw(e){let t=/^(?:[\w$]+|\([^)]*\))\s*=>|^function\s*\(/,r=/^[$_a-z][\w$]*(?:\.[$_a-z][\w$]*|\['[^']*']|\["[^"]*"]|\[\d+]|\[[$_a-z][\w$]*])*$/i,n=e.trim();return t.test(n)||r.test(n)}async function aw(e,t,r,n){let a=gr(r.node),{left:o,operator:i,right:s}=ow(a),u=Js(r,n);return[Ce(await yt(`function _(${o}) {}`,e,{parser:u?"babel-ts":"babel",__isVueForBindingLeft:!0}))," ",i," ",await yt(s,e,{parser:u?"__ts_expression":"__js_expression"})]}function ow(e){let t=/(.*?)\s+(in|of)\s+(.*)/s,r=/,([^,\]}]*)(?:,([^,\]}]*))?$/,n=/^\(|\)$/g,a=e.match(t);if(!a)return;let o={};if(o.for=a[3].trim(),!o.for)return;let i=Ne(!1,a[1].trim(),n,""),s=i.match(r);s?(o.alias=i.replace(r,""),o.iterator1=s[1].trim(),s[2]&&(o.iterator2=s[2].trim())):o.alias=i;let u=[o.alias,o.iterator1,o.iterator2];if(!u.some((d,p)=>!d&&(p===0||u.slice(p+1).some(Boolean))))return{left:u.filter(Boolean).join(","),operator:a[2],right:o.for}}function Sg(e,t){if(t.parser!=="vue")return;let{node:r}=e,n=r.fullName;if(n==="v-for")return aw;if(n==="generic"&&lf(r.parent,t))return tw;let a=gr(r),o=Js(e,t);if(J7(r)||Z7(r,t))return i=>rw(a,i,{parseWithTs:o});if(n.startsWith("@")||n.startsWith("v-on:"))return i=>iw(a,i,{parseWithTs:o});if(n.startsWith(":")||n.startsWith("v-bind:"))return i=>lw(a,i,{parseWithTs:o});if(n.startsWith("v-"))return i=>sf(a,i,{parseWithTs:o})}function iw(e,t,{parseWithTs:r}){return nw(e)?sf(e,t,{parseWithTs:r}):yt(e,t,{parser:r?"__vue_ts_event_binding":"__vue_event_binding"},yn)}function lw(e,t,{parseWithTs:r}){return yt(e,t,{parser:r?"__vue_ts_expression":"__vue_expression"},yn)}function sf(e,t,{parseWithTs:r}){return yt(e,t,{parser:r?"__ts_expression":"__js_expression"},yn)}function Ag(e,t){let{node:r}=e;if(r.value){if(/^PRETTIER_HTML_PLACEHOLDER_\d+_\d+_IN_JS$/.test(t.originalText.slice(r.valueSpan.start.offset,r.valueSpan.end.offset))||t.parser==="lwc"&&r.value.startsWith("{")&&r.value.endsWith("}"))return[r.rawName,"=",r.value];for(let n of[t6,ew,Gw,r6,Ww]){let a=n(e,t);if(a)return sw(a)}}}function sw(e){return async(t,r,n,a)=>{let o=await e(t,r,n,a);if(o)return o=Ps(o,i=>typeof i=="string"?Ne(!1,i,'"',"""):i),[n.node.rawName,'="',Ce(o),'"']}}function kg(e){return Array.isArray(e)&&e.length>0}function ui(e){return e.sourceSpan.start.offset}function ci(e){return e.sourceSpan.end.offset}function Nl(e,t){return[e.isSelfClosing?"":uw(e,t),Wn(e,t)]}function uw(e,t){return e.lastChild&&fa(e.lastChild)?"":[cw(e,t),js(e,t)]}function Wn(e,t){return(e.next?Tr(e.next):Ta(e.parent))?"":[Ia(e,t),Ir(e,t)]}function cw(e,t){return Ta(e)?Ia(e.lastChild,t):""}function Ir(e,t){return fa(e)?js(e.parent,t):di(e)?Vs(e.next):""}function js(e,t){if(bf(!e.isSelfClosing),uf(e,t))return"";switch(e.type){case"ieConditionalComment":return"";case"ieConditionalStartComment":return"]>";case"interpolation":return"}}";case"angularIcuExpression":return"}";case"element":if(e.isSelfClosing)return"/>";default:return">"}}function uf(e,t){return!e.isSelfClosing&&!e.endSourceSpan&&(li(e)||Kp(e.parent,t))}function Tr(e){return e.prev&&e.prev.type!=="docType"&&e.type!=="angularControlFlowBlock"&&!Ye(e.prev)&&e.isLeadingSpaceSensitive&&!e.hasLeadingSpaces}function Ta(e){var t;return((t=e.lastChild)==null?void 0:t.isTrailingSpaceSensitive)&&!e.lastChild.hasTrailingSpaces&&!Ye(Ns(e.lastChild))&&!cn(e)}function fa(e){return!e.next&&!e.hasTrailingSpaces&&e.isTrailingSpaceSensitive&&Ye(Ns(e))}function di(e){return e.next&&!Ye(e.next)&&Ye(e)&&e.isTrailingSpaceSensitive&&!e.hasTrailingSpaces}function dw(e){let t=e.trim().match(/^prettier-ignore-attribute(?:\s+(.+))?$/s);return t?t[1]?t[1].split(/\s+/):!0:!1}function pi(e){return!e.prev&&e.isLeadingSpaceSensitive&&!e.hasLeadingSpaces}function pw(e,t,r){var n;let{node:a}=e;if(!Zs(a.attrs))return a.isSelfClosing?" ":"";let o=((n=a.prev)==null?void 0:n.type)==="comment"&&dw(a.prev.value),i=typeof o=="boolean"?()=>o:Array.isArray(o)?h=>o.includes(h.rawName):()=>!1,s=e.map(({node:h})=>i(h)?tt(t.originalText.slice(ui(h),ci(h))):r(),"attrs"),u=a.type==="element"&&a.fullName==="script"&&a.attrs.length===1&&a.attrs[0].fullName==="src"&&a.children.length===0,d=t.singleAttributePerLine&&a.attrs.length>1&&!bn(a,t)?oe:Ee,p=[Zt([u?" ":Ee,vn(d,s)])];return a.firstChild&&pi(a.firstChild)||a.isSelfClosing&&Ta(a.parent)||u?p.push(a.isSelfClosing?" ":""):p.push(t.bracketSameLine?a.isSelfClosing?" ":"":a.isSelfClosing?Ee:xe),p}function fw(e){return e.firstChild&&pi(e.firstChild)?"":Us(e)}function Hl(e,t,r){let{node:n}=e;return[Gn(n,t),pw(e,t,r),n.isSelfClosing?"":fw(n)]}function Gn(e,t){return e.prev&&di(e.prev)?"":[Rr(e,t),Vs(e)]}function Rr(e,t){return pi(e)?Us(e.parent):Tr(e)?Ia(e.prev,t):""}function Vs(e){switch(e.type){case"ieConditionalComment":case"ieConditionalStartComment":return`<${e.rawName}`;default:return`<${e.rawName}`}}function Us(e){switch(bf(!e.isSelfClosing),e.type){case"ieConditionalComment":return"]>";case"element":if(e.condition)return">";default:return">"}}function _g(e,t){if(!e.endSourceSpan)return"";let r=e.startSourceSpan.end.offset;e.firstChild&&pi(e.firstChild)&&(r-=Us(e).length);let n=e.endSourceSpan.start.offset;return e.lastChild&&fa(e.lastChild)?n+=js(e,t).length:Ta(e)&&(n-=Ia(e.lastChild,t).length),t.originalText.slice(r,n)}function Fg(e,t){let{node:r}=e;switch(r.type){case"element":if(qt(r)||r.type==="interpolation")return;if(!r.isSelfClosing&&Hs(r,t)){let n=Ed(r,t);return n?async(a,o)=>{let i=wf(r,t),s=/^\s*$/.test(i),u="";return s||(u=await a(vf(i),{parser:n,__embeddedInHtml:!0}),s=u===""),[Rr(r,t),Ce(Hl(e,t,o)),s?"":oe,u,s?"":oe,Nl(r,t),Ir(r,t)]}:void 0}break;case"text":if(qt(r.parent)){let n=Ed(r.parent,t);if(n)return async a=>{let o=n==="markdown"?nf(r.value.replace(/^[^\S\n]*\n/,"")):r.value,i={parser:n,__embeddedInHtml:!0};if(t.parser==="html"&&n==="babel"){let s="script",{attrMap:u}=r.parent;u&&(u.type==="module"||u.type==="text/babel"&&u["data-type"]==="module")&&(s="module"),i.__babelSourceType=s}return[Yn,Rr(r,t),await a(o,i),Ir(r,t)]}}else if(r.parent.type==="interpolation")return async n=>{let a={__isInHtmlInterpolation:!0,__embeddedInHtml:!0};return t.parser==="angular"?(a.parser="__ng_interpolation",a.trailingComma="none"):t.parser==="vue"?a.parser=Js(e,t)?"__vue_ts_expression":"__vue_expression":a.parser="__js_expression",[Zt([Ee,await n(r.value,a)]),r.parent.next&&Tr(r.parent.next)?" ":Ee]};break;case"attribute":return n6(e,t);case"front-matter":return n=>zw(r,n);case"angularControlFlowBlockParameters":return a6.has(e.parent.name)?$w:void 0}}function Kn(e){if(Vn!==null&&typeof Vn.property){let t=Vn;return Vn=Kn.prototype=null,t}return Vn=Kn.prototype=e??Object.create(null),new Kn}function hw(e){return Kn(e)}function Ig(e,t="type"){hw(e);function r(n){let a=n[t],o=e[a];if(!Array.isArray(o))throw Object.assign(new Error(`Missing visitor keys for '${a}'.`),{node:n});return o}return c(r,"r"),r}function mw(e){return/^\s*/.test(e)}function Tg(e){return` - -`+e}function cf(e){let t=ci(e);return e.type==="element"&&!e.endSourceSpan&&Zs(e.children)?Math.max(t,cf(ma(!1,e.children,-1))):t}function jn(e,t,r){let n=e.node;if(li(n)){let a=cf(n);return[Rr(n,t),tt(mt.trimEnd(t.originalText.slice(ui(n)+(n.prev&&di(n.prev)?Vs(n).length:0),a-(n.next&&Tr(n.next)?Ia(n,t).length:0)))),Ir(n,t)]}return r()}function go(e,t){return Ye(e)&&Ye(t)?e.isTrailingSpaceSensitive?e.hasTrailingSpaces?sl(t)?oe:Ee:"":sl(t)?oe:xe:di(e)&&(li(t)||t.firstChild||t.isSelfClosing||t.type==="element"&&t.attrs.length>0)||e.type==="element"&&e.isSelfClosing&&Tr(t)?"":!t.isLeadingSpaceSensitive||sl(t)||Tr(t)&&e.lastChild&&fa(e.lastChild)&&e.lastChild.lastChild&&fa(e.lastChild.lastChild)?oe:t.hasLeadingSpaces?Ee:xe}function qs(e,t,r){let{node:n}=e;if(Jp(n))return[Yn,...e.map(o=>{let i=o.node,s=i.prev?go(i.prev,i):"";return[s?[s,mo(i.prev)?oe:""]:"",jn(o,t,r)]},"children")];let a=n.children.map(()=>Symbol(""));return e.map((o,i)=>{let s=o.node;if(Ye(s)){if(s.prev&&Ye(s.prev)){let v=go(s.prev,s);if(v)return mo(s.prev)?[oe,oe,jn(o,t,r)]:[v,jn(o,t,r)]}return jn(o,t,r)}let u=[],d=[],p=[],h=[],m=s.prev?go(s.prev,s):"",f=s.next?go(s,s.next):"";return m&&(mo(s.prev)?u.push(oe,oe):m===oe?u.push(oe):Ye(s.prev)?d.push(m):d.push(Oo("",xe,{groupId:a[i-1]}))),f&&(mo(s)?Ye(s.next)&&h.push(oe,oe):f===oe?Ye(s.next)&&h.push(oe):p.push(f)),[...u,Ce([...d,Ce([jn(o,t,r),...p],{id:a[i]})]),...h]},"children")}function gw(e,t,r){let{node:n}=e,a=[];vw(e)&&a.push("} "),a.push("@",n.name),n.parameters&&a.push(" (",Ce(r("parameters")),")"),a.push(" {");let o=df(n);return n.children.length>0?(n.firstChild.hasLeadingSpaces=!0,n.lastChild.hasTrailingSpaces=!0,a.push(Zt([oe,qs(e,t,r)])),o&&a.push(oe,"}")):o&&a.push("}"),Ce(a,{shouldBreak:!0})}function df(e){var t,r;return!(((t=e.next)==null?void 0:t.type)==="angularControlFlowBlock"&&(r=o6.get(e.name))!=null&&r.has(e.next.name))}function vw(e){let{previous:t}=e;return(t==null?void 0:t.type)==="angularControlFlowBlock"&&!li(t)&&!df(t)}function yw(e,t,r){return[Zt([xe,vn([";",Ee],e.map(r,"children"))]),xe]}function bw(e,t,r){let{node:n}=e;return[Gn(n,t),Ce([n.switchValue.trim(),", ",n.clause,n.cases.length>0?[",",Zt([Ee,vn(Ee,e.map(r,"cases"))])]:"",xe]),Wn(n,t)]}function ww(e,t,r){let{node:n}=e;return[n.value," {",Ce([Zt([xe,e.map(({node:a})=>a.type==="text"&&!mt.trim(a.value)?"":r(),"expression")]),xe]),"}"]}function Ew(e,t,r){let{node:n}=e;if(Kp(n,t))return[Rr(n,t),Ce(Hl(e,t,r)),tt(wf(n,t)),...Nl(n,t),Ir(n,t)];let a=n.children.length===1&&(n.firstChild.type==="interpolation"||n.firstChild.type==="angularIcuExpression")&&n.firstChild.isLeadingSpaceSensitive&&!n.firstChild.hasLeadingSpaces&&n.lastChild.isTrailingSpaceSensitive&&!n.lastChild.hasTrailingSpaces,o=Symbol("element-attr-group-id"),i=c(p=>Ce([Ce(Hl(e,t,r),{id:o}),p,Nl(n,t)]),"a"),s=c(p=>a?A7(p,{groupId:o}):(qt(n)||si(n,t))&&n.parent.type==="root"&&t.parser==="vue"&&!t.vueIndentScriptAndStyle?p:Zt(p),"o"),u=c(()=>a?Oo(xe,"",{groupId:o}):n.firstChild.hasLeadingSpaces&&n.firstChild.isLeadingSpaceSensitive?Ee:n.firstChild.type==="text"&&n.isWhitespaceSensitive&&n.isIndentationSensitive?D7(xe):xe,"u"),d=c(()=>(n.next?Tr(n.next):Ta(n.parent))?n.lastChild.hasTrailingSpaces&&n.lastChild.isTrailingSpaceSensitive?" ":"":a?Oo(xe,"",{groupId:o}):n.lastChild.hasTrailingSpaces&&n.lastChild.isTrailingSpaceSensitive?Ee:(n.lastChild.type==="comment"||n.lastChild.type==="text"&&n.isWhitespaceSensitive&&n.isIndentationSensitive)&&new RegExp(`\\n[\\t ]{${t.tabWidth*(e.ancestors.length-1)}}$`).test(n.lastChild.value)?"":xe,"p");return n.children.length===0?i(n.hasDanglingSpaces&&n.isDanglingSpaceSensitive?Ee:""):i([O7(n)?Yn:"",s([u(),qs(e,t,r)]),d()])}function jl(e){return e>=9&&e<=32||e==160}function pf(e){return 48<=e&&e<=57}function Vl(e){return e>=97&&e<=122||e>=65&&e<=90}function xw(e){return e>=97&&e<=102||e>=65&&e<=70||pf(e)}function ac(e){return e===10||e===13}function oc(e){return 48<=e&&e<=55}function ic(e){return e===39||e===34||e===96}function Rg(e){return e.replace(i6,(...t)=>t[1].toUpperCase())}function Bg(e,t){for(let r of l6)r(e,t);return e}function zg(e){e.walk(t=>{if(t.type==="element"&&t.tagDefinition.ignoreFirstLf&&t.children.length>0&&t.children[0].type==="text"&&t.children[0].value[0]===` -`){let r=t.children[0];r.value.length===1?t.removeChild(r):r.value=r.value.slice(1)}})}function $g(e){let t=c(r=>{var n,a;return r.type==="element"&&((n=r.prev)==null?void 0:n.type)==="ieConditionalStartComment"&&r.prev.sourceSpan.end.offset===r.startSourceSpan.start.offset&&((a=r.firstChild)==null?void 0:a.type)==="ieConditionalEndComment"&&r.firstChild.sourceSpan.start.offset===r.startSourceSpan.end.offset},"e");e.walk(r=>{if(r.children)for(let n=0;n{if(n.children)for(let a=0;at.type==="cdata",t=>``)}function Lg(e){let t=c(r=>{var n,a;return r.type==="element"&&r.attrs.length===0&&r.children.length===1&&r.firstChild.type==="text"&&!mt.hasWhitespaceCharacter(r.children[0].value)&&!r.firstChild.hasLeadingSpaces&&!r.firstChild.hasTrailingSpaces&&r.isLeadingSpaceSensitive&&!r.hasLeadingSpaces&&r.isTrailingSpaceSensitive&&!r.hasTrailingSpaces&&((n=r.prev)==null?void 0:n.type)==="text"&&((a=r.next)==null?void 0:a.type)==="text"},"e");e.walk(r=>{if(r.children)for(let n=0;n`+a.firstChild.value+``+i.value,o.sourceSpan=new Z(o.sourceSpan.start,i.sourceSpan.end),o.isTrailingSpaceSensitive=i.isTrailingSpaceSensitive,o.hasTrailingSpaces=i.hasTrailingSpaces,r.removeChild(a),n--,r.removeChild(i)}})}function Mg(e,t){if(t.parser==="html")return;let r=/{{(.+?)}}/s;e.walk(n=>{if(T7(n))for(let a of n.children){if(a.type!=="text")continue;let o=a.sourceSpan.start,i=null,s=a.value.split(r);for(let u=0;u0&&n.insertChildBefore(a,{type:"text",value:d,sourceSpan:new Z(o,i)});continue}i=o.moveBy(d.length+4),n.insertChildBefore(a,{type:"interpolation",sourceSpan:new Z(o,i),children:d.length===0?[]:[{type:"text",value:d,sourceSpan:new Z(o.moveBy(2),i.moveBy(-2))}]})}n.removeChild(a)}})}function Pg(e){e.walk(t=>{if(!t.children)return;if(t.children.length===0||t.children.length===1&&t.children[0].type==="text"&&mt.trim(t.children[0].value).length===0){t.hasDanglingSpaces=t.children.length>0,t.children=[];return}let r=R7(t),n=Yp(t);if(!r)for(let a=0;a{t.isSelfClosing=!t.children||t.type==="element"&&(t.tagDefinition.isVoid||t.endSourceSpan&&t.startSourceSpan.start===t.endSourceSpan.start&&t.startSourceSpan.end===t.endSourceSpan.end)})}function Hg(e,t){e.walk(r=>{r.type==="element"&&(r.hasHtmComponentClosingTag=r.endSourceSpan&&/^<\s*\/\s*\/\s*>$/.test(t.originalText.slice(r.endSourceSpan.start.offset,r.endSourceSpan.end.offset)))})}function jg(e,t){e.walk(r=>{r.cssDisplay=K7(r,t)})}function Vg(e,t){e.walk(r=>{let{children:n}=r;if(n){if(n.length===0){r.isDanglingSpaceSensitive=$7(r);return}for(let a of n)a.isLeadingSpaceSensitive=B7(a,t),a.isTrailingSpaceSensitive=z7(a,t);for(let a=0;a{!Za[t]&&vo(t)===null&&(Za[t]=new W({canSelfClose:!1}))})),Za[e]??q2}function Cd(e,t,r=null){let n=[],a=e.visit?o=>e.visit(o,r)||o.visit(e,r):o=>o.visit(e,r);return t.forEach(o=>{let i=a(o);i&&n.push(i)}),n}function Wg(e,t){if(t!=null&&!(Array.isArray(t)&&t.length==2))throw new Error(`Expected '${e}' to be an array, [start, end].`);if(t!=null){let r=t[0],n=t[1];c6.forEach(a=>{if(a.test(r)||a.test(n))throw new Error(`['${r}', '${n}'] contains unusable interpolation symbol.`)})}}function Gg(e,t,r,n={}){let a=new p6(new Ef(e,t),r,n);return a.tokenize(),new d6(Dw(a.tokens),a.errors,a.nonNormalizedIcuExpressions)}function qr(e){return`Unexpected character "${e===0?"EOF":String.fromCharCode(e)}"`}function cc(e){return`Unknown entity "${e}" - use the "&#;" or "&#x;" syntax`}function Kg(e,t){return`Unable to parse entity "${t}" - ${e} character reference entities must end with ";"`}function ye(e){return!jl(e)||e===0}function dc(e){return jl(e)||e===62||e===60||e===47||e===39||e===34||e===61||e===0}function Yg(e){return(e<97||12257)}function Jg(e){return e===59||e===0||!xw(e)}function Zg(e){return e===59||e===0||!Vl(e)}function Xg(e){return e!==125}function Qg(e,t){return Dd(e)===Dd(t)}function Dd(e){return e>=97&&e<=122?e-97+65:e}function pc(e){return Vl(e)||pf(e)||e===95}function fc(e){return e!==59&&ye(e)}function Dw(e){let t=[],r;for(let n=0;n0&&e[e.length-1]===t}function mc(e,t){return Io[t]!==void 0?Io[t]||e:/^#x[a-f0-9]+$/i.test(t)?String.fromCodePoint(parseInt(t.slice(2),16)):/^#\d+$/.test(t)?String.fromCodePoint(parseInt(t.slice(1),10)):e}function Sd(e,t={}){let{canSelfClose:r=!1,allowHtmComponentClosingTags:n=!1,isTagNameCaseSensitive:a=!1,getTagContentType:o,tokenizeAngularBlocks:i=!1}=t;return f6().parse(e,"angular-html-parser",{tokenizeExpansionForms:i,interpolationConfig:void 0,canSelfClose:r,allowHtmComponentClosingTags:n,tokenizeBlocks:i},a,o)}function e2(e,t){let r=new SyntaxError(e+" ("+t.loc.start.line+":"+t.loc.start.column+")");return Object.assign(r,t)}function t2(e){let t=e.match(m6);if(!t)return{content:e};let{startDelimiter:r,language:n,value:a="",endDelimiter:o}=t.groups,i=n.trim()||"yaml";if(r==="+++"&&(i="toml"),i!=="yaml"&&r!==o)return{content:e};let[s]=t;return{frontMatter:{type:"front-matter",lang:i,value:a,startDelimiter:r,endDelimiter:o,raw:s.replace(/\n$/,"")},content:Ne(!1,s,/[^\n]/g," ")+e.slice(s.length)}}function r2(e,t){let r=e.map(t);return r.some((n,a)=>n!==e[a])?r:e}function Sw(e,t){if(e.value)for(let{regex:r,parse:n}of y6){let a=e.value.match(r);if(a)return n(e,t,a)}return null}function n2(e,t,r){let[,n,a,o]=r,i=4+n.length,s=e.sourceSpan.start.moveBy(i),u=s.moveBy(o.length),[d,p]=(()=>{try{return[!0,t(o,s).children]}catch{return[!1,[{type:"text",value:o,sourceSpan:new Z(s,u)}]]}})();return{type:"ieConditionalComment",complete:d,children:p,condition:Ne(!1,a.trim(),/\s+/g," "),sourceSpan:e.sourceSpan,startSourceSpan:new Z(e.sourceSpan.start,s),endSourceSpan:new Z(u,e.sourceSpan.end)}}function a2(e,t,r){let[,n]=r;return{type:"ieConditionalStartComment",condition:Ne(!1,n.trim(),/\s+/g," "),sourceSpan:e.sourceSpan}}function o2(e){return{type:"ieConditionalEndComment",sourceSpan:e.sourceSpan}}function Aw(e){if(e.type==="block"){if(e.name=Ne(!1,e.name.toLowerCase(),/\s+/g," ").trim(),e.type="angularControlFlowBlock",!Zs(e.parameters)){delete e.parameters;return}for(let t of e.parameters)t.type="angularControlFlowBlockParameter";e.parameters={type:"angularControlFlowBlockParameters",children:e.parameters,sourceSpan:new Z(e.parameters[0].sourceSpan.start,ma(!1,e.parameters,-1).sourceSpan.end)}}}function kw(e){(e.type==="plural"||e.type==="select")&&(e.clause=e.type,e.type="angularIcuExpression"),e.type==="expansionCase"&&(e.type="angularIcuCase")}function ff(e,t,r){let{name:n,canSelfClose:a=!0,normalizeTagName:o=!1,normalizeAttributeName:i=!1,allowHtmComponentClosingTags:s=!1,isTagNameCaseSensitive:u=!1,shouldParseAsRawText:d}=t,{rootNodes:p,errors:h}=Sd(e,{canSelfClose:a,allowHtmComponentClosingTags:s,isTagNameCaseSensitive:u,getTagContentType:d?(...w)=>d(...w)?ht.RAW_TEXT:void 0:void 0,tokenizeAngularBlocks:n==="angular"?!0:void 0});if(n==="vue"){if(p.some(D=>D.type==="docType"&&D.value==="html"||D.type==="element"&&D.name.toLowerCase()==="html"))return ff(e,Id,r);let w,x=c(()=>w??(w=Sd(e,{canSelfClose:a,allowHtmComponentClosingTags:s,isTagNameCaseSensitive:u})),"y"),E=c(D=>x().rootNodes.find(({startSourceSpan:S})=>S&&S.start.offset===D.startSourceSpan.start.offset)??D,"O");for(let[D,S]of p.entries()){let{endSourceSpan:A,startSourceSpan:k}=S;if(A===null)h=x().errors,p[D]=E(S);else if(_w(S,r)){let F=x().errors.find(T=>T.span.start.offset>k.start.offset&&T.span.start.offset0&&Ad(h[0]);let m=c(w=>{let x=w.name.startsWith(":")?w.name.slice(1).split(":")[0]:null,E=w.nameSpan.toString(),D=x!==null&&E.startsWith(`${x}:`),S=D?E.slice(x.length+1):E;w.name=S,w.namespace=x,w.hasExplicitNamespace=D},"g"),f=c(w=>{switch(w.type){case"element":m(w);for(let x of w.attrs)m(x),x.valueSpan?(x.value=x.valueSpan.toString(),/["']/.test(x.value[0])&&(x.value=x.value.slice(1,-1))):x.value=null;break;case"comment":w.value=w.sourceSpan.toString().slice(4,-3);break;case"text":w.value=w.sourceSpan.toString();break}},"C"),v=c((w,x)=>{let E=w.toLowerCase();return x(E)?E:w},"_"),g=c(w=>{if(w.type==="element"&&(o&&(!w.namespace||w.namespace===w.tagDefinition.implicitNamespacePrefix||ga(w))&&(w.name=v(w.name,x=>b6.has(x))),i))for(let x of w.attrs)x.namespace||(x.name=v(x.name,E=>dl.has(w.name)&&(dl.get("*").has(E)||dl.get(w.name).has(E))))},"D"),b=c(w=>{w.sourceSpan&&w.endSourceSpan&&(w.sourceSpan=new Z(w.sourceSpan.start,w.endSourceSpan.end))},"I"),C=c(w=>{if(w.type==="element"){let x=Ul(u?w.name:w.name.toLowerCase());!w.namespace||w.namespace===x.implicitNamespacePrefix||ga(w)?w.tagDefinition=x:w.tagDefinition=Ul("")}},"B");return Cd(new class extends u6{visitExpansionCase(w,x){n==="angular"&&this.visitChildren(x,E=>{E(w.expression)})}visit(w){f(w),C(w),g(w),b(w)}},p),p}function _w(e,t){var r;if(e.type!=="element"||e.name!=="template")return!1;let n=(r=e.attrs.find(a=>a.name==="lang"))==null?void 0:r.value;return!n||hi(t,{language:n})==="html"}function Ad(e){let{msg:t,span:{start:r,end:n}}=e;throw h6(t,{loc:{start:{line:r.line+1,column:r.col+1},end:{line:n.line+1,column:n.col+1}},cause:e})}function hf(e,t,r={},n=!0){let{frontMatter:a,content:o}=n?g6(e):{frontMatter:null,content:e},i=new Ef(e,r.filepath),s=new Jl(i,0,0,0),u=s.moveBy(e.length),d={type:"root",sourceSpan:new Z(s,u),children:ff(o,t,r)};if(a){let m=new Jl(i,0,0,0),f=m.moveBy(a.raw.length);a.sourceSpan=new Z(m,f),d.children.unshift(a)}let p=new v6(d),h=c((m,f)=>{let{offset:v}=f,g=Ne(!1,e.slice(0,v),/[^\n\r]/g," "),b=hf(g+m,t,r,!1);b.sourceSpan=new Z(f,ma(!1,b.children,-1).sourceSpan.end);let C=b.children[0];return C.length===v?b.children.shift():(C.sourceSpan=new Z(C.sourceSpan.start.moveBy(v),C.sourceSpan.end),C.value=C.value.slice(v)),b},"m");return p.walk(m=>{if(m.type==="comment"){let f=Sw(m,h);f&&m.parent.replaceChild(m,f)}Aw(m),kw(m)}),p}function Ja(e){return{parse:c((t,r)=>hf(t,e,r),"parse"),hasPragma:mw,astFormat:"html",locStart:ui,locEnd:ci}}var i2,gc,vc,tr,l2,s2,yc,u2,Ne,Ws,Gs,ql,Mo,Po,Wl,ha,No,Ho,jo,Gl,Kl,Sr,Yl,Fo,mf,Ks,Fw,bc,c2,gf,wc,Br,Ys,Yn,d2,p2,Ee,xe,oe,Iw,f2,ma,bo,kd,Tw,ct,Ec,h2,m2,g2,v2,mt,xc,y2,Rw,fi,b2,Bw,w2,zw,$w,Ow,hi,Lw,Mw,Pw,Nw,ga,E2,vf,Hw,jw,yf,Vw,Uw,qw,Ww,Gw,Kw,Yw,Jw,Zw,_d,Xw,Qw,Fd,e6,t6,ul,Js,r6,n6,Cc,bf,Zs,wf,a6,x2,Vn,C2,D2,S2,A2,k2,_2,o6,i6,Li,Jl,Dc,Ef,Sc,Z,Mi,Ac,kc,l6,F2,I2,T2,R2,_c,Fc,B2,z2,Ic,$2,O2,Tc,Rc,en,L2,ht,cl,Bc,M2,P2,N2,H2,j2,V2,zc,U2,$c,s6,Oc,W,q2,Za,Lc,Tn,Mc,W2,Pc,G2,Nc,K2,Hc,Y2,jc,J2,Vc,rr,Uc,Z2,qc,X2,Wc,Wr,Gc,Kc,Yc,u6,Io,Q2,c6,Pi,e5,Jc,Zc,Ni,Xc,d6,t5,Hi,Qc,ji,e0,p6,Xa,t0,Qa,r5,r0,Vi,Ui,We,n0,n5,a0,a5,qi,o5,o0,i5,Wi,f6,h6,m6,g6,eo,i0,Gr,v6,y6,dl,b6,Id,l5,s5,u5,c5,d5,w6,Yk=B(()=>{i2=Object.defineProperty,gc=c((e,t)=>{for(var r in t)i2(e,r,{get:t[r],enumerable:!0})},"Yr"),vc=c((e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},"jr"),tr=c((e,t,r)=>(vc(e,t,"read from private field"),r?r.call(e):t.get(e)),"Q"),l2=c((e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},"Kr"),s2=c((e,t,r,n)=>(vc(e,t,"write to private field"),n?n.call(e,r):t.set(e,r),r),"Qr"),yc={},gc(yc,{languages:c(()=>R2,"languages"),options:c(()=>z2,"options"),parsers:c(()=>Ic,"parsers"),printers:c(()=>d5,"printers")}),u2=c((e,t,r,n)=>{if(!(e&&t==null))return t.replaceAll?t.replaceAll(r,n):r.global?t.replace(r,n):t.split(r).join(n)},"Zs"),Ne=u2,Ws="string",Gs="array",ql="cursor",Mo="indent",Po="align",Wl="trim",ha="group",No="fill",Ho="if-break",jo="indent-if-break",Gl="line-suffix",Kl="line-suffix-boundary",Sr="line",Yl="label",Fo="break-parent",mf=new Set([ql,Mo,Po,Wl,ha,No,Ho,jo,Gl,Kl,Sr,Yl,Fo]),c(dg,"ei"),Ks=dg,Fw=c(e=>new Intl.ListFormat("en-US",{type:"disjunction"}).format(e),"ti"),c(pg,"ri"),c2=(bc=class extends Error{constructor(t){super(pg(t));yr(this,"name","InvalidDocError");this.doc=t}},c(bc,"rr"),bc),gf=c2,wc=c(()=>{},"Xr"),Br=wc,Ys=wc,c(Zt,"L"),c(Wp,"Jr"),c(Ce,"E"),c(D7,"Zr"),c(S7,"en"),c(Gp,"Ct"),c(Oo,"me"),c(A7,"tn"),Yn={type:Fo},d2={type:Sr,hard:!0},p2={type:Sr,hard:!0,literal:!0},Ee={type:Sr},xe={type:Sr,soft:!0},oe=[d2,Yn],Iw=[p2,Yn],c(vn,"M"),f2=c((e,t,r)=>{if(!(e&&t==null))return Array.isArray(t)||typeof t=="string"?t[r<0?t.length+r:r]:t.at(r)},"ii"),ma=f2,c(Ps,"St"),c(k7,"ai"),c(_7,"nn"),c(tt,"T"),bo="'",kd='"',c(fg,"oi"),Tw=fg,c(hg,"nr"),h2=(Ec=class{constructor(e){l2(this,ct,void 0),s2(this,ct,new Set(e))}getLeadingWhitespaceCount(e){let t=tr(this,ct),r=0;for(let n=0;n=0&&t.has(e.charAt(n));n--)r++;return r}getLeadingWhitespace(e){let t=this.getLeadingWhitespaceCount(e);return e.slice(0,t)}getTrailingWhitespace(e){let t=this.getTrailingWhitespaceCount(e);return e.slice(e.length-t)}hasLeadingWhitespace(e){return tr(this,ct).has(e.charAt(0))}hasTrailingWhitespace(e){return tr(this,ct).has(ma(!1,e,-1))}trimStart(e){let t=this.getLeadingWhitespaceCount(e);return e.slice(t)}trimEnd(e){let t=this.getTrailingWhitespaceCount(e);return e.slice(0,e.length-t)}trim(e){return this.trimEnd(this.trimStart(e))}split(e,t=!1){let r=`[${hg([...tr(this,ct)].join(""))}]+`,n=new RegExp(t?`(${r})`:r);return e.split(n)}hasWhitespaceCharacter(e){let t=tr(this,ct);return Array.prototype.some.call(e,r=>t.has(r))}hasNonWhitespaceCharacter(e){let t=tr(this,ct);return Array.prototype.some.call(e,r=>!t.has(r))}isWhitespaceOnly(e){let t=tr(this,ct);return Array.prototype.every.call(e,r=>t.has(r))}},c(Ec,"sr"),Ec),ct=new WeakMap,m2=h2,g2=[" ",` -`,"\f","\r"," "],v2=new m2(g2),mt=v2,y2=(xc=class extends Error{constructor(t,r,n="type"){super(`Unexpected ${r} node ${n}: ${JSON.stringify(t[n])}.`);yr(this,"name","UnexpectedNodeError");this.node=t}},c(xc,"ir"),xc),Rw=y2,c(mg,"ci"),fi=mg,b2=new Set(["sourceSpan","startSourceSpan","endSourceSpan","nameSpan","valueSpan","keySpan","tagDefinition","tokens","valueTokens","switchValueSourceSpan","expSourceSpan","valueSourceSpan"]),Bw=new Set(["if","else if","for","switch","case"]),c(nc,"ln"),nc.ignoredProperties=b2,w2=nc,c(gg,"fi"),zw=gg,c(ii,"ge"),c(yn,"j"),c(yt,"x"),c(vg,"mi"),$w=vg,Ow=c(e=>String(e).split(/[/\\]/).pop(),"gi"),c(wd,"fn"),c(F7,"di"),c(yg,"Ci"),hi=yg,Lw="inline",Mw={area:"none",base:"none",basefont:"none",datalist:"none",head:"none",link:"none",meta:"none",noembed:"none",noframes:"none",param:"block",rp:"none",script:"block",style:"none",template:"inline",title:"none",html:"block",body:"block",address:"block",blockquote:"block",center:"block",dialog:"block",div:"block",figure:"block",figcaption:"block",footer:"block",form:"block",header:"block",hr:"block",legend:"block",listing:"block",main:"block",p:"block",plaintext:"block",pre:"block",search:"block",xmp:"block",slot:"contents",ruby:"ruby",rt:"ruby-text",article:"block",aside:"block",h1:"block",h2:"block",h3:"block",h4:"block",h5:"block",h6:"block",hgroup:"block",nav:"block",section:"block",dir:"block",dd:"block",dl:"block",dt:"block",menu:"block",ol:"block",ul:"block",li:"list-item",table:"table",caption:"table-caption",colgroup:"table-column-group",col:"table-column",thead:"table-header-group",tbody:"table-row-group",tfoot:"table-footer-group",tr:"table-row",td:"table-cell",th:"table-cell",input:"inline-block",button:"inline-block",fieldset:"block",marquee:"inline-block",source:"block",track:"block",details:"block",summary:"block",meter:"inline-block",progress:"inline-block",object:"inline-block",video:"inline-block",audio:"inline-block",select:"inline-block",option:"block",optgroup:"block"},Pw="normal",Nw={listing:"pre",plaintext:"pre",pre:"pre",xmp:"pre",nobr:"nowrap",table:"initial",textarea:"pre-wrap"},c(bg,"Si"),ga=bg,E2=c(e=>Ne(!1,e,/^[\t\f\r ]*\n/g,""),"_i"),vf=c(e=>E2(mt.trimEnd(e)),"ar"),Hw=c(e=>{let t=e,r=mt.getLeadingWhitespace(t);r&&(t=t.slice(r.length));let n=mt.getTrailingWhitespace(t);return n&&(t=t.slice(0,-n.length)),{leadingWhitespace:r,trailingWhitespace:n,text:t}},"Sn"),c(Kp,"Et"),c(li,"Se"),c(I7,"Ei"),c(Ye,"R"),c(qt,"U"),c(T7,"_n"),c(R7,"En"),c(Yp,"or"),c(B7,"An"),c(z7,"Dn"),c($7,"vn"),c(mo,"Qe"),c(O7,"yn"),c(Jp,"ur"),c(sl,"At"),c(L7,"Ai"),c(Zp,"wn"),c(Xp,"bn"),c(Qp,"Tn"),c(ef,"xn"),c(Ns,"Dt"),c(M7,"Di"),c(tf,"kn"),c(P7,"vi"),c(N7,"yi"),c(H7,"wi"),c(Ed,"lr"),c(Fa,"Xe"),c(j7,"bi"),c(V7,"Ti"),c(U7,"xi"),c(q7,"ki"),c(W7,"Bi"),c(cn,"Ce"),c(G7,"Li"),c(K7,"Bn"),c(rf,"Ln"),c(Y7,"Fi"),c(nf,"cr"),c(af,"pr"),c(gr,"P"),jw=new Set(["template","style","script"]),c(si,"Je"),c(bn,"_e"),c(Hs,"vt"),c(J7,"Fn"),c(Z7,"Pn"),c(of,"yt"),c(lf,"wt"),yf=/{{(.+?)}}/s,c(X7,"Nn"),c(Oi,"fr"),Vw=Oi({parser:"__ng_action"}),Uw=Oi({parser:"__ng_binding"}),qw=Oi({parser:"__ng_directive"}),c(wg,"$i"),Ww=wg,c(Eg,"Oi"),Gw=Eg,c(xd,"$n"),Kw=/^[ \t\n\r\u000c]+/,Yw=/^[, \t\n\r\u000c]+/,Jw=/^[^ \t\n\r\u000c]+/,Zw=/[,]+$/,_d=/^\d+$/,Xw=/^-?(?:[0-9]+|[0-9]*\.[0-9]+)(?:[eE][+-]?[0-9]+)?$/,c(xg,"Wi"),Qw=xg,c(Cg,"zi"),Fd={width:"w",height:"h",density:"x"},e6=Object.keys(Fd),c(Q7,"Yi"),t6=Cg,c(ew,"Vn"),ul=new WeakMap,c(Dg,"ji"),Js=Dg,c(tw,"Un"),c(rw,"Wn"),c(nw,"zn"),c(aw,"Gn"),c(ow,"Ki"),c(Sg,"Qi"),c(iw,"Xi"),c(lw,"Ji"),c(sf,"Yn"),r6=Sg,c(Ag,"Zi"),c(sw,"ea"),n6=Ag,Cc=new Proxy(()=>{},{get:c(()=>Cc,"get")}),bf=Cc,c(kg,"ta"),Zs=kg,c(ui,"se"),c(ci,"ie"),c(Nl,"Ze"),c(uw,"ra"),c(Wn,"Ee"),c(cw,"na"),c(Ir,"W"),c(js,"bt"),c(Ia,"Ae"),c(uf,"Xn"),c(Tr,"K"),c(Ta,"De"),c(fa,"ve"),c(di,"et"),c(dw,"sa"),c(pi,"tt"),c(pw,"ia"),c(fw,"aa"),c(Hl,"rt"),c(Gn,"ye"),c(Rr,"z"),c(Vs,"Tt"),c(Us,"xt"),c(_g,"oa"),wf=_g,a6=new Set(["if","else if","for","switch","case"]),c(Fg,"la"),x2=Fg,Vn=null,c(Kn,"st"),C2=10;for(let e=0;e<=C2;e++)Kn();c(hw,"dr"),c(Ig,"pa"),D2=Ig,S2={"front-matter":[],root:["children"],element:["attrs","children"],ieConditionalComment:["children"],ieConditionalStartComment:[],ieConditionalEndComment:[],interpolation:["children"],text:["children"],docType:[],comment:[],attribute:[],cdata:[],angularControlFlowBlock:["children","parameters"],angularControlFlowBlockParameters:["children"],angularControlFlowBlockParameter:[],angularIcuExpression:["cases"],angularIcuCase:["expression"]},A2=S2,k2=D2(A2),_2=k2,c(mw,"rs"),c(Tg,"ns"),o6=new Map([["if",new Set(["else if","else"])],["else if",new Set(["else if","else"])],["for",new Set(["empty"])],["defer",new Set(["placeholder","error","loading"])],["placeholder",new Set(["placeholder","error","loading"])],["error",new Set(["placeholder","error","loading"])],["loading",new Set(["placeholder","error","loading"])]]),c(cf,"is"),c(jn,"it"),c(go,"Bt"),c(qs,"qe"),c(gw,"as"),c(df,"os"),c(vw,"ma"),c(yw,"us"),c(bw,"ls"),c(ww,"cs"),c(Ew,"ps"),c(jl,"Lt"),c(pf,"Cr"),c(Vl,"Ft"),c(xw,"hs"),c(ac,"Sr"),c(oc,"_r"),c(ic,"Er"),i6=/-+([a-z0-9])/g,c(Rg,"ms"),Jl=(Li=class{constructor(e,t,r,n){this.file=e,this.offset=t,this.line=r,this.col=n}toString(){return this.offset!=null?`${this.file.url}@${this.line}:${this.col}`:this.file.url}moveBy(e){let t=this.file.content,r=t.length,n=this.offset,a=this.line,o=this.col;for(;n>0&&e<0;)if(n--,e++,t.charCodeAt(n)==10){a--;let i=t.substring(0,n-1).lastIndexOf(` -`);o=i>0?n-i:n}else o--;for(;n0;){let i=t.charCodeAt(n);n++,e--,i==10?(a++,o=0):o++}return new Li(this.file,n,a,o)}getContext(e,t){let r=this.file.content,n=this.offset;if(n!=null){n>r.length-1&&(n=r.length-1);let a=n,o=0,i=0;for(;o0&&(n--,o++,!(r[n]==` -`&&++i==t)););for(o=0,i=0;o]${e.after}")`:this.msg}toString(){let e=this.span.details?`, ${this.span.details}`:"";return`${this.contextualMessage()}: ${this.span.start}${e}`}},c(Ac,"Ve"),Ac),l6=[zg,$g,Og,Mg,Pg,jg,Ng,Hg,Vg,Lg],c(Bg,"Ca"),c(zg,"Sa"),c($g,"_a"),c(Cw,"Ea"),c(Og,"Aa"),c(Lg,"Da"),c(Mg,"va"),c(Pg,"ya"),c(Ng,"wa"),c(Hg,"ba"),c(jg,"Ta"),c(Vg,"xa"),F2=Bg,c(Ug,"ka"),I2={preprocess:F2,print:Ug,insertPragma:Tg,massageAstNode:w2,embed:x2,getVisitorKeys:_2},T2=I2,R2=[{linguistLanguageId:146,name:"Angular",type:"markup",tmScope:"text.html.basic",aceMode:"html",codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",color:"#e34c26",aliases:["xhtml"],extensions:[".component.html"],parsers:["angular"],vscodeLanguageIds:["html"],filenames:[]},{linguistLanguageId:146,name:"HTML",type:"markup",tmScope:"text.html.basic",aceMode:"html",codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",color:"#e34c26",aliases:["xhtml"],extensions:[".html",".hta",".htm",".html.hl",".inc",".xht",".xhtml",".mjml"],parsers:["html"],vscodeLanguageIds:["html"]},{linguistLanguageId:146,name:"Lightning Web Components",type:"markup",tmScope:"text.html.basic",aceMode:"html",codemirrorMode:"htmlmixed",codemirrorMimeType:"text/html",color:"#e34c26",aliases:["xhtml"],extensions:[],parsers:["lwc"],vscodeLanguageIds:["html"],filenames:[]},{linguistLanguageId:391,name:"Vue",type:"markup",color:"#41b883",extensions:[".vue"],tmScope:"text.html.vue",aceMode:"html",parsers:["vue"],vscodeLanguageIds:["vue"]}],_c={bracketSpacing:{category:"Common",type:"boolean",default:!0,description:"Print spaces between brackets.",oppositeDescription:"Do not print spaces between brackets."},singleQuote:{category:"Common",type:"boolean",default:!1,description:"Use single quotes instead of double quotes."},proseWrap:{category:"Common",type:"choice",default:"preserve",description:"How to wrap prose.",choices:[{value:"always",description:"Wrap prose if it exceeds the print width."},{value:"never",description:"Do not wrap prose."},{value:"preserve",description:"Wrap prose as-is."}]},bracketSameLine:{category:"Common",type:"boolean",default:!1,description:"Put > of opening tags on the last line instead of on a new line."},singleAttributePerLine:{category:"Common",type:"boolean",default:!1,description:"Enforce single attribute per line in HTML, Vue and JSX."}},Fc="HTML",B2={bracketSameLine:_c.bracketSameLine,htmlWhitespaceSensitivity:{category:Fc,type:"choice",default:"css",description:"How to handle whitespaces in HTML.",choices:[{value:"css",description:"Respect the default value of CSS display property."},{value:"strict",description:"Whitespaces are considered sensitive."},{value:"ignore",description:"Whitespaces are considered insensitive."}]},singleAttributePerLine:_c.singleAttributePerLine,vueIndentScriptAndStyle:{category:Fc,type:"boolean",default:!1,description:"Indent script and style tags in Vue files."}},z2=B2,Ic={},gc(Ic,{angular:c(()=>s5,"angular"),html:c(()=>l5,"html"),lwc:c(()=>c5,"lwc"),vue:c(()=>u5,"vue")}),function(e){e[e.Emulated=0]="Emulated",e[e.None=2]="None",e[e.ShadowDom=3]="ShadowDom"}($2||($2={})),function(e){e[e.OnPush=0]="OnPush",e[e.Default=1]="Default"}(O2||(O2={})),Tc={name:"custom-elements"},Rc={name:"no-errors-schema"},function(e){e[e.NONE=0]="NONE",e[e.HTML=1]="HTML",e[e.STYLE=2]="STYLE",e[e.SCRIPT=3]="SCRIPT",e[e.URL=4]="URL",e[e.RESOURCE_URL=5]="RESOURCE_URL"}(en||(en={})),function(e){e[e.Error=0]="Error",e[e.Warning=1]="Warning",e[e.Ignore=2]="Ignore"}(L2||(L2={})),function(e){e[e.RAW_TEXT=0]="RAW_TEXT",e[e.ESCAPABLE_RAW_TEXT=1]="ESCAPABLE_RAW_TEXT",e[e.PARSABLE_DATA=2]="PARSABLE_DATA"}(ht||(ht={})),c(Lo,"at"),c(lc,"yr"),c(sc,"wr"),c(vo,"Ue"),c(Ya,"We"),c(uc,"br"),c(yo,"Nt"),M2=(Bc=class{},c(Bc,"Rt"),Bc),P2="boolean",N2="number",H2="string",j2="object",V2=["[Element]|textContent,%ariaAtomic,%ariaAutoComplete,%ariaBusy,%ariaChecked,%ariaColCount,%ariaColIndex,%ariaColSpan,%ariaCurrent,%ariaDescription,%ariaDisabled,%ariaExpanded,%ariaHasPopup,%ariaHidden,%ariaKeyShortcuts,%ariaLabel,%ariaLevel,%ariaLive,%ariaModal,%ariaMultiLine,%ariaMultiSelectable,%ariaOrientation,%ariaPlaceholder,%ariaPosInSet,%ariaPressed,%ariaReadOnly,%ariaRelevant,%ariaRequired,%ariaRoleDescription,%ariaRowCount,%ariaRowIndex,%ariaRowSpan,%ariaSelected,%ariaSetSize,%ariaSort,%ariaValueMax,%ariaValueMin,%ariaValueNow,%ariaValueText,%classList,className,elementTiming,id,innerHTML,*beforecopy,*beforecut,*beforepaste,*fullscreenchange,*fullscreenerror,*search,*webkitfullscreenchange,*webkitfullscreenerror,outerHTML,%part,#scrollLeft,#scrollTop,slot,*message,*mozfullscreenchange,*mozfullscreenerror,*mozpointerlockchange,*mozpointerlockerror,*webglcontextcreationerror,*webglcontextlost,*webglcontextrestored","[HTMLElement]^[Element]|accessKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,enterKeyHint,!hidden,innerText,inputMode,lang,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate,virtualKeyboardPolicy","abbr,address,article,aside,b,bdi,bdo,cite,content,code,dd,dfn,dt,em,figcaption,figure,footer,header,hgroup,i,kbd,main,mark,nav,noscript,rb,rp,rt,rtc,ruby,s,samp,section,small,strong,sub,sup,u,var,wbr^[HTMLElement]|accessKey,autocapitalize,!autofocus,contentEditable,dir,!draggable,enterKeyHint,!hidden,innerText,inputMode,lang,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,outerText,!spellcheck,%style,#tabIndex,title,!translate,virtualKeyboardPolicy","media^[HTMLElement]|!autoplay,!controls,%controlsList,%crossOrigin,#currentTime,!defaultMuted,#defaultPlaybackRate,!disableRemotePlayback,!loop,!muted,*encrypted,*waitingforkey,#playbackRate,preload,!preservesPitch,src,%srcObject,#volume",":svg:^[HTMLElement]|!autofocus,nonce,*abort,*animationend,*animationiteration,*animationstart,*auxclick,*beforexrselect,*blur,*cancel,*canplay,*canplaythrough,*change,*click,*close,*contextmenu,*copy,*cuechange,*cut,*dblclick,*drag,*dragend,*dragenter,*dragleave,*dragover,*dragstart,*drop,*durationchange,*emptied,*ended,*error,*focus,*formdata,*gotpointercapture,*input,*invalid,*keydown,*keypress,*keyup,*load,*loadeddata,*loadedmetadata,*loadstart,*lostpointercapture,*mousedown,*mouseenter,*mouseleave,*mousemove,*mouseout,*mouseover,*mouseup,*mousewheel,*paste,*pause,*play,*playing,*pointercancel,*pointerdown,*pointerenter,*pointerleave,*pointermove,*pointerout,*pointerover,*pointerrawupdate,*pointerup,*progress,*ratechange,*reset,*resize,*scroll,*securitypolicyviolation,*seeked,*seeking,*select,*selectionchange,*selectstart,*slotchange,*stalled,*submit,*suspend,*timeupdate,*toggle,*transitioncancel,*transitionend,*transitionrun,*transitionstart,*volumechange,*waiting,*webkitanimationend,*webkitanimationiteration,*webkitanimationstart,*webkittransitionend,*wheel,%style,#tabIndex",":svg:graphics^:svg:|",":svg:animation^:svg:|*begin,*end,*repeat",":svg:geometry^:svg:|",":svg:componentTransferFunction^:svg:|",":svg:gradient^:svg:|",":svg:textContent^:svg:graphics|",":svg:textPositioning^:svg:textContent|","a^[HTMLElement]|charset,coords,download,hash,host,hostname,href,hreflang,name,password,pathname,ping,port,protocol,referrerPolicy,rel,%relList,rev,search,shape,target,text,type,username","area^[HTMLElement]|alt,coords,download,hash,host,hostname,href,!noHref,password,pathname,ping,port,protocol,referrerPolicy,rel,%relList,search,shape,target,username","audio^media|","br^[HTMLElement]|clear","base^[HTMLElement]|href,target","body^[HTMLElement]|aLink,background,bgColor,link,*afterprint,*beforeprint,*beforeunload,*blur,*error,*focus,*hashchange,*languagechange,*load,*message,*messageerror,*offline,*online,*pagehide,*pageshow,*popstate,*rejectionhandled,*resize,*scroll,*storage,*unhandledrejection,*unload,text,vLink","button^[HTMLElement]|!disabled,formAction,formEnctype,formMethod,!formNoValidate,formTarget,name,type,value","canvas^[HTMLElement]|#height,#width","content^[HTMLElement]|select","dl^[HTMLElement]|!compact","data^[HTMLElement]|value","datalist^[HTMLElement]|","details^[HTMLElement]|!open","dialog^[HTMLElement]|!open,returnValue","dir^[HTMLElement]|!compact","div^[HTMLElement]|align","embed^[HTMLElement]|align,height,name,src,type,width","fieldset^[HTMLElement]|!disabled,name","font^[HTMLElement]|color,face,size","form^[HTMLElement]|acceptCharset,action,autocomplete,encoding,enctype,method,name,!noValidate,target","frame^[HTMLElement]|frameBorder,longDesc,marginHeight,marginWidth,name,!noResize,scrolling,src","frameset^[HTMLElement]|cols,*afterprint,*beforeprint,*beforeunload,*blur,*error,*focus,*hashchange,*languagechange,*load,*message,*messageerror,*offline,*online,*pagehide,*pageshow,*popstate,*rejectionhandled,*resize,*scroll,*storage,*unhandledrejection,*unload,rows","hr^[HTMLElement]|align,color,!noShade,size,width","head^[HTMLElement]|","h1,h2,h3,h4,h5,h6^[HTMLElement]|align","html^[HTMLElement]|version","iframe^[HTMLElement]|align,allow,!allowFullscreen,!allowPaymentRequest,csp,frameBorder,height,loading,longDesc,marginHeight,marginWidth,name,referrerPolicy,%sandbox,scrolling,src,srcdoc,width","img^[HTMLElement]|align,alt,border,%crossOrigin,decoding,#height,#hspace,!isMap,loading,longDesc,lowsrc,name,referrerPolicy,sizes,src,srcset,useMap,#vspace,#width","input^[HTMLElement]|accept,align,alt,autocomplete,!checked,!defaultChecked,defaultValue,dirName,!disabled,%files,formAction,formEnctype,formMethod,!formNoValidate,formTarget,#height,!incremental,!indeterminate,max,#maxLength,min,#minLength,!multiple,name,pattern,placeholder,!readOnly,!required,selectionDirection,#selectionEnd,#selectionStart,#size,src,step,type,useMap,value,%valueAsDate,#valueAsNumber,#width","li^[HTMLElement]|type,#value","label^[HTMLElement]|htmlFor","legend^[HTMLElement]|align","link^[HTMLElement]|as,charset,%crossOrigin,!disabled,href,hreflang,imageSizes,imageSrcset,integrity,media,referrerPolicy,rel,%relList,rev,%sizes,target,type","map^[HTMLElement]|name","marquee^[HTMLElement]|behavior,bgColor,direction,height,#hspace,#loop,#scrollAmount,#scrollDelay,!trueSpeed,#vspace,width","menu^[HTMLElement]|!compact","meta^[HTMLElement]|content,httpEquiv,media,name,scheme","meter^[HTMLElement]|#high,#low,#max,#min,#optimum,#value","ins,del^[HTMLElement]|cite,dateTime","ol^[HTMLElement]|!compact,!reversed,#start,type","object^[HTMLElement]|align,archive,border,code,codeBase,codeType,data,!declare,height,#hspace,name,standby,type,useMap,#vspace,width","optgroup^[HTMLElement]|!disabled,label","option^[HTMLElement]|!defaultSelected,!disabled,label,!selected,text,value","output^[HTMLElement]|defaultValue,%htmlFor,name,value","p^[HTMLElement]|align","param^[HTMLElement]|name,type,value,valueType","picture^[HTMLElement]|","pre^[HTMLElement]|#width","progress^[HTMLElement]|#max,#value","q,blockquote,cite^[HTMLElement]|","script^[HTMLElement]|!async,charset,%crossOrigin,!defer,event,htmlFor,integrity,!noModule,%referrerPolicy,src,text,type","select^[HTMLElement]|autocomplete,!disabled,#length,!multiple,name,!required,#selectedIndex,#size,value","slot^[HTMLElement]|name","source^[HTMLElement]|#height,media,sizes,src,srcset,type,#width","span^[HTMLElement]|","style^[HTMLElement]|!disabled,media,type","caption^[HTMLElement]|align","th,td^[HTMLElement]|abbr,align,axis,bgColor,ch,chOff,#colSpan,headers,height,!noWrap,#rowSpan,scope,vAlign,width","col,colgroup^[HTMLElement]|align,ch,chOff,#span,vAlign,width","table^[HTMLElement]|align,bgColor,border,%caption,cellPadding,cellSpacing,frame,rules,summary,%tFoot,%tHead,width","tr^[HTMLElement]|align,bgColor,ch,chOff,vAlign","tfoot,thead,tbody^[HTMLElement]|align,ch,chOff,vAlign","template^[HTMLElement]|","textarea^[HTMLElement]|autocomplete,#cols,defaultValue,dirName,!disabled,#maxLength,#minLength,name,placeholder,!readOnly,!required,#rows,selectionDirection,#selectionEnd,#selectionStart,value,wrap","time^[HTMLElement]|dateTime","title^[HTMLElement]|text","track^[HTMLElement]|!default,kind,label,src,srclang","ul^[HTMLElement]|!compact,type","unknown^[HTMLElement]|","video^media|!disablePictureInPicture,#height,*enterpictureinpicture,*leavepictureinpicture,!playsInline,poster,#width",":svg:a^:svg:graphics|",":svg:animate^:svg:animation|",":svg:animateMotion^:svg:animation|",":svg:animateTransform^:svg:animation|",":svg:circle^:svg:geometry|",":svg:clipPath^:svg:graphics|",":svg:defs^:svg:graphics|",":svg:desc^:svg:|",":svg:discard^:svg:|",":svg:ellipse^:svg:geometry|",":svg:feBlend^:svg:|",":svg:feColorMatrix^:svg:|",":svg:feComponentTransfer^:svg:|",":svg:feComposite^:svg:|",":svg:feConvolveMatrix^:svg:|",":svg:feDiffuseLighting^:svg:|",":svg:feDisplacementMap^:svg:|",":svg:feDistantLight^:svg:|",":svg:feDropShadow^:svg:|",":svg:feFlood^:svg:|",":svg:feFuncA^:svg:componentTransferFunction|",":svg:feFuncB^:svg:componentTransferFunction|",":svg:feFuncG^:svg:componentTransferFunction|",":svg:feFuncR^:svg:componentTransferFunction|",":svg:feGaussianBlur^:svg:|",":svg:feImage^:svg:|",":svg:feMerge^:svg:|",":svg:feMergeNode^:svg:|",":svg:feMorphology^:svg:|",":svg:feOffset^:svg:|",":svg:fePointLight^:svg:|",":svg:feSpecularLighting^:svg:|",":svg:feSpotLight^:svg:|",":svg:feTile^:svg:|",":svg:feTurbulence^:svg:|",":svg:filter^:svg:|",":svg:foreignObject^:svg:graphics|",":svg:g^:svg:graphics|",":svg:image^:svg:graphics|decoding",":svg:line^:svg:geometry|",":svg:linearGradient^:svg:gradient|",":svg:mpath^:svg:|",":svg:marker^:svg:|",":svg:mask^:svg:|",":svg:metadata^:svg:|",":svg:path^:svg:geometry|",":svg:pattern^:svg:|",":svg:polygon^:svg:geometry|",":svg:polyline^:svg:geometry|",":svg:radialGradient^:svg:gradient|",":svg:rect^:svg:geometry|",":svg:svg^:svg:graphics|#currentScale,#zoomAndPan",":svg:script^:svg:|type",":svg:set^:svg:animation|",":svg:stop^:svg:|",":svg:style^:svg:|!disabled,media,title,type",":svg:switch^:svg:graphics|",":svg:symbol^:svg:|",":svg:tspan^:svg:textPositioning|",":svg:text^:svg:textPositioning|",":svg:textPath^:svg:textContent|",":svg:title^:svg:|",":svg:use^:svg:graphics|",":svg:view^:svg:|#zoomAndPan","data^[HTMLElement]|value","keygen^[HTMLElement]|!autofocus,challenge,!disabled,form,keytype,name","menuitem^[HTMLElement]|type,label,icon,!disabled,!checked,radiogroup,!default","summary^[HTMLElement]|","time^[HTMLElement]|dateTime",":svg:cursor^:svg:|"],zc=new Map(Object.entries({class:"className",for:"htmlFor",formaction:"formAction",innerHtml:"innerHTML",readonly:"readOnly",tabindex:"tabIndex"})),U2=Array.from(zc).reduce((e,[t,r])=>(e.set(t,r),e),new Map),s6=($c=class extends M2{constructor(){super(),this._schema=new Map,this._eventSchema=new Map,V2.forEach(e=>{let t=new Map,r=new Set,[n,a]=e.split("|"),o=a.split(","),[i,s]=n.split("^");i.split(",").forEach(d=>{this._schema.set(d.toLowerCase(),t),this._eventSchema.set(d.toLowerCase(),r)});let u=s&&this._schema.get(s.toLowerCase());if(u){for(let[d,p]of u)t.set(d,p);for(let d of this._eventSchema.get(s.toLowerCase()))r.add(d)}o.forEach(d=>{if(d.length>0)switch(d[0]){case"*":r.add(d.substring(1));break;case"!":t.set(d.substring(1),P2);break;case"#":t.set(d.substring(1),N2);break;case"%":t.set(d.substring(1),j2);break;default:t.set(d,H2)}})})}hasProperty(e,t,r){if(r.some(n=>n.name===Rc.name))return!0;if(e.indexOf("-")>-1){if(lc(e)||sc(e))return!1;if(r.some(n=>n.name===Tc.name))return!0}return(this._schema.get(e.toLowerCase())||this._schema.get("unknown")).has(t)}hasElement(e,t){return t.some(r=>r.name===Rc.name)||e.indexOf("-")>-1&&(lc(e)||sc(e)||t.some(r=>r.name===Tc.name))?!0:this._schema.has(e.toLowerCase())}securityContext(e,t,r){r&&(t=this.getMappedPropName(t)),e=e.toLowerCase(),t=t.toLowerCase();let n=uc()[e+"|"+t];return n||(n=uc()["*|"+t],n||en.NONE)}getMappedPropName(e){return zc.get(e)??e}getDefaultComponentElementName(){return"ng-component"}validateProperty(e){return e.toLowerCase().startsWith("on")?{error:!0,msg:`Binding to event property '${e}' is disallowed for security reasons, please use (${e.slice(2)})=... -If '${e}' is a directive input, make sure the directive is imported by the current module.`}:{error:!1}}validateAttribute(e){return e.toLowerCase().startsWith("on")?{error:!0,msg:`Binding to event attribute '${e}' is disallowed for security reasons, please use (${e.slice(2)})=...`}:{error:!1}}allKnownElementNames(){return Array.from(this._schema.keys())}allKnownAttributesOfElement(e){let t=this._schema.get(e.toLowerCase())||this._schema.get("unknown");return Array.from(t.keys()).map(r=>U2.get(r)??r)}allKnownEventsOfElement(e){return Array.from(this._eventSchema.get(e.toLowerCase())??[])}normalizeAnimationStyleProperty(e){return Rg(e)}normalizeAnimationStyleValue(e,t,r){let n="",a=r.toString().trim(),o=null;if(qg(e)&&r!==0&&r!=="0")if(typeof r=="number")n="px";else{let i=r.match(/^[+-]?[\d\.]+([a-z]*)$/);i&&i[1].length==0&&(o=`Please provide a CSS unit value for ${t}:${r}`)}return{error:o,value:a+n}}},c($c,"$t"),$c),c(qg,"Oa"),W=(Oc=class{constructor({closedByChildren:e,implicitNamespacePrefix:t,contentType:r=ht.PARSABLE_DATA,closedByParent:n=!1,isVoid:a=!1,ignoreFirstLf:o=!1,preventNamespaceInheritance:i=!1,canSelfClose:s=!1}={}){this.closedByChildren={},this.closedByParent=!1,e&&e.length>0&&e.forEach(u=>this.closedByChildren[u]=!0),this.isVoid=a,this.closedByParent=n||a,this.implicitNamespacePrefix=t||null,this.contentType=r,this.ignoreFirstLf=o,this.preventNamespaceInheritance=i,this.canSelfClose=s??a}isClosedByChild(e){return this.isVoid||e.toLowerCase()in this.closedByChildren}getContentType(e){return typeof this.contentType=="object"?(e===void 0?void 0:this.contentType[e])??this.contentType.default:this.contentType}},c(Oc,"h"),Oc),c(Ul,"ze"),Tn=(Lc=class{constructor(e,t){this.sourceSpan=e,this.i18n=t}},c(Lc,"be"),Lc),W2=(Mc=class extends Tn{constructor(e,t,r,n){super(t,n),this.value=e,this.tokens=r,this.type="text"}visit(e,t){return e.visitText(this,t)}},c(Mc,"Ot"),Mc),G2=(Pc=class extends Tn{constructor(e,t,r,n){super(t,n),this.value=e,this.tokens=r,this.type="cdata"}visit(e,t){return e.visitCdata(this,t)}},c(Pc,"Mt"),Pc),K2=(Nc=class extends Tn{constructor(e,t,r,n,a,o){super(n,o),this.switchValue=e,this.type=t,this.cases=r,this.switchValueSourceSpan=a}visit(e,t){return e.visitExpansion(this,t)}},c(Nc,"qt"),Nc),Y2=(Hc=class{constructor(e,t,r,n,a){this.value=e,this.expression=t,this.sourceSpan=r,this.valueSourceSpan=n,this.expSourceSpan=a,this.type="expansionCase"}visit(e,t){return e.visitExpansionCase(this,t)}},c(Hc,"Ht"),Hc),J2=(jc=class extends Tn{constructor(e,t,r,n,a,o,i){super(r,i),this.name=e,this.value=t,this.keySpan=n,this.valueSpan=a,this.valueTokens=o,this.type="attribute"}visit(e,t){return e.visitAttribute(this,t)}get nameSpan(){return this.keySpan}},c(jc,"Vt"),jc),rr=(Vc=class extends Tn{constructor(e,t,r,n,a,o=null,i=null,s){super(n,s),this.name=e,this.attrs=t,this.children=r,this.startSourceSpan=a,this.endSourceSpan=o,this.nameSpan=i,this.type="element"}visit(e,t){return e.visitElement(this,t)}},c(Vc,"G"),Vc),Z2=(Uc=class{constructor(e,t){this.value=e,this.sourceSpan=t,this.type="comment"}visit(e,t){return e.visitComment(this,t)}},c(Uc,"Ut"),Uc),X2=(qc=class{constructor(e,t){this.value=e,this.sourceSpan=t,this.type="docType"}visit(e,t){return e.visitDocType(this,t)}},c(qc,"Wt"),qc),Wr=(Wc=class{constructor(e,t,r,n,a,o=null){this.name=e,this.parameters=t,this.children=r,this.sourceSpan=n,this.startSourceSpan=a,this.endSourceSpan=o,this.type="block"}visit(e,t){return e.visitBlock(this,t)}},c(Wc,"Z"),Wc),Kc=(Gc=class{constructor(e,t){this.expression=e,this.sourceSpan=t,this.type="blockParameter",this.startSourceSpan=null,this.endSourceSpan=null}visit(e,t){return e.visitBlockParameter(this,t)}},c(Gc,"ut"),Gc),c(Cd,"zt"),u6=(Yc=class{constructor(){}visitElement(e,t){this.visitChildren(t,r=>{r(e.attrs),r(e.children)})}visitAttribute(e,t){}visitText(e,t){}visitCdata(e,t){}visitComment(e,t){}visitDocType(e,t){}visitExpansion(e,t){return this.visitChildren(t,r=>{r(e.cases)})}visitExpansionCase(e,t){}visitBlock(e,t){this.visitChildren(t,r=>{r(e.parameters),r(e.children)})}visitBlockParameter(e,t){}visitChildren(e,t){let r=[],n=this;function a(o){o&&r.push(Cd(n,o,e))}return c(a,"i"),t(a),Array.prototype.concat.apply([],r)}},c(Yc,"lt"),Yc),Io={AElig:"Æ",AMP:"&",amp:"&",Aacute:"Á",Abreve:"Ă",Acirc:"Â",Acy:"А",Afr:"𝔄",Agrave:"À",Alpha:"Α",Amacr:"Ā",And:"⩓",Aogon:"Ą",Aopf:"𝔸",ApplyFunction:"⁡",af:"⁡",Aring:"Å",angst:"Å",Ascr:"𝒜",Assign:"≔",colone:"≔",coloneq:"≔",Atilde:"Ã",Auml:"Ä",Backslash:"∖",setminus:"∖",setmn:"∖",smallsetminus:"∖",ssetmn:"∖",Barv:"⫧",Barwed:"⌆",doublebarwedge:"⌆",Bcy:"Б",Because:"∵",becaus:"∵",because:"∵",Bernoullis:"ℬ",Bscr:"ℬ",bernou:"ℬ",Beta:"Β",Bfr:"𝔅",Bopf:"𝔹",Breve:"˘",breve:"˘",Bumpeq:"≎",HumpDownHump:"≎",bump:"≎",CHcy:"Ч",COPY:"©",copy:"©",Cacute:"Ć",Cap:"⋒",CapitalDifferentialD:"ⅅ",DD:"ⅅ",Cayleys:"ℭ",Cfr:"ℭ",Ccaron:"Č",Ccedil:"Ç",Ccirc:"Ĉ",Cconint:"∰",Cdot:"Ċ",Cedilla:"¸",cedil:"¸",CenterDot:"·",centerdot:"·",middot:"·",Chi:"Χ",CircleDot:"⊙",odot:"⊙",CircleMinus:"⊖",ominus:"⊖",CirclePlus:"⊕",oplus:"⊕",CircleTimes:"⊗",otimes:"⊗",ClockwiseContourIntegral:"∲",cwconint:"∲",CloseCurlyDoubleQuote:"”",rdquo:"”",rdquor:"”",CloseCurlyQuote:"’",rsquo:"’",rsquor:"’",Colon:"∷",Proportion:"∷",Colone:"⩴",Congruent:"≡",equiv:"≡",Conint:"∯",DoubleContourIntegral:"∯",ContourIntegral:"∮",conint:"∮",oint:"∮",Copf:"ℂ",complexes:"ℂ",Coproduct:"∐",coprod:"∐",CounterClockwiseContourIntegral:"∳",awconint:"∳",Cross:"⨯",Cscr:"𝒞",Cup:"⋓",CupCap:"≍",asympeq:"≍",DDotrahd:"⤑",DJcy:"Ђ",DScy:"Ѕ",DZcy:"Џ",Dagger:"‡",ddagger:"‡",Darr:"↡",Dashv:"⫤",DoubleLeftTee:"⫤",Dcaron:"Ď",Dcy:"Д",Del:"∇",nabla:"∇",Delta:"Δ",Dfr:"𝔇",DiacriticalAcute:"´",acute:"´",DiacriticalDot:"˙",dot:"˙",DiacriticalDoubleAcute:"˝",dblac:"˝",DiacriticalGrave:"`",grave:"`",DiacriticalTilde:"˜",tilde:"˜",Diamond:"⋄",diam:"⋄",diamond:"⋄",DifferentialD:"ⅆ",dd:"ⅆ",Dopf:"𝔻",Dot:"¨",DoubleDot:"¨",die:"¨",uml:"¨",DotDot:"⃜",DotEqual:"≐",doteq:"≐",esdot:"≐",DoubleDownArrow:"⇓",Downarrow:"⇓",dArr:"⇓",DoubleLeftArrow:"⇐",Leftarrow:"⇐",lArr:"⇐",DoubleLeftRightArrow:"⇔",Leftrightarrow:"⇔",hArr:"⇔",iff:"⇔",DoubleLongLeftArrow:"⟸",Longleftarrow:"⟸",xlArr:"⟸",DoubleLongLeftRightArrow:"⟺",Longleftrightarrow:"⟺",xhArr:"⟺",DoubleLongRightArrow:"⟹",Longrightarrow:"⟹",xrArr:"⟹",DoubleRightArrow:"⇒",Implies:"⇒",Rightarrow:"⇒",rArr:"⇒",DoubleRightTee:"⊨",vDash:"⊨",DoubleUpArrow:"⇑",Uparrow:"⇑",uArr:"⇑",DoubleUpDownArrow:"⇕",Updownarrow:"⇕",vArr:"⇕",DoubleVerticalBar:"∥",par:"∥",parallel:"∥",shortparallel:"∥",spar:"∥",DownArrow:"↓",ShortDownArrow:"↓",darr:"↓",downarrow:"↓",DownArrowBar:"⤓",DownArrowUpArrow:"⇵",duarr:"⇵",DownBreve:"̑",DownLeftRightVector:"⥐",DownLeftTeeVector:"⥞",DownLeftVector:"↽",leftharpoondown:"↽",lhard:"↽",DownLeftVectorBar:"⥖",DownRightTeeVector:"⥟",DownRightVector:"⇁",rhard:"⇁",rightharpoondown:"⇁",DownRightVectorBar:"⥗",DownTee:"⊤",top:"⊤",DownTeeArrow:"↧",mapstodown:"↧",Dscr:"𝒟",Dstrok:"Đ",ENG:"Ŋ",ETH:"Ð",Eacute:"É",Ecaron:"Ě",Ecirc:"Ê",Ecy:"Э",Edot:"Ė",Efr:"𝔈",Egrave:"È",Element:"∈",in:"∈",isin:"∈",isinv:"∈",Emacr:"Ē",EmptySmallSquare:"◻",EmptyVerySmallSquare:"▫",Eogon:"Ę",Eopf:"𝔼",Epsilon:"Ε",Equal:"⩵",EqualTilde:"≂",eqsim:"≂",esim:"≂",Equilibrium:"⇌",rightleftharpoons:"⇌",rlhar:"⇌",Escr:"ℰ",expectation:"ℰ",Esim:"⩳",Eta:"Η",Euml:"Ë",Exists:"∃",exist:"∃",ExponentialE:"ⅇ",ee:"ⅇ",exponentiale:"ⅇ",Fcy:"Ф",Ffr:"𝔉",FilledSmallSquare:"◼",FilledVerySmallSquare:"▪",blacksquare:"▪",squarf:"▪",squf:"▪",Fopf:"𝔽",ForAll:"∀",forall:"∀",Fouriertrf:"ℱ",Fscr:"ℱ",GJcy:"Ѓ",GT:">",gt:">",Gamma:"Γ",Gammad:"Ϝ",Gbreve:"Ğ",Gcedil:"Ģ",Gcirc:"Ĝ",Gcy:"Г",Gdot:"Ġ",Gfr:"𝔊",Gg:"⋙",ggg:"⋙",Gopf:"𝔾",GreaterEqual:"≥",ge:"≥",geq:"≥",GreaterEqualLess:"⋛",gel:"⋛",gtreqless:"⋛",GreaterFullEqual:"≧",gE:"≧",geqq:"≧",GreaterGreater:"⪢",GreaterLess:"≷",gl:"≷",gtrless:"≷",GreaterSlantEqual:"⩾",geqslant:"⩾",ges:"⩾",GreaterTilde:"≳",gsim:"≳",gtrsim:"≳",Gscr:"𝒢",Gt:"≫",NestedGreaterGreater:"≫",gg:"≫",HARDcy:"Ъ",Hacek:"ˇ",caron:"ˇ",Hat:"^",Hcirc:"Ĥ",Hfr:"ℌ",Poincareplane:"ℌ",HilbertSpace:"ℋ",Hscr:"ℋ",hamilt:"ℋ",Hopf:"ℍ",quaternions:"ℍ",HorizontalLine:"─",boxh:"─",Hstrok:"Ħ",HumpEqual:"≏",bumpe:"≏",bumpeq:"≏",IEcy:"Е",IJlig:"IJ",IOcy:"Ё",Iacute:"Í",Icirc:"Î",Icy:"И",Idot:"İ",Ifr:"ℑ",Im:"ℑ",image:"ℑ",imagpart:"ℑ",Igrave:"Ì",Imacr:"Ī",ImaginaryI:"ⅈ",ii:"ⅈ",Int:"∬",Integral:"∫",int:"∫",Intersection:"⋂",bigcap:"⋂",xcap:"⋂",InvisibleComma:"⁣",ic:"⁣",InvisibleTimes:"⁢",it:"⁢",Iogon:"Į",Iopf:"𝕀",Iota:"Ι",Iscr:"ℐ",imagline:"ℐ",Itilde:"Ĩ",Iukcy:"І",Iuml:"Ï",Jcirc:"Ĵ",Jcy:"Й",Jfr:"𝔍",Jopf:"𝕁",Jscr:"𝒥",Jsercy:"Ј",Jukcy:"Є",KHcy:"Х",KJcy:"Ќ",Kappa:"Κ",Kcedil:"Ķ",Kcy:"К",Kfr:"𝔎",Kopf:"𝕂",Kscr:"𝒦",LJcy:"Љ",LT:"<",lt:"<",Lacute:"Ĺ",Lambda:"Λ",Lang:"⟪",Laplacetrf:"ℒ",Lscr:"ℒ",lagran:"ℒ",Larr:"↞",twoheadleftarrow:"↞",Lcaron:"Ľ",Lcedil:"Ļ",Lcy:"Л",LeftAngleBracket:"⟨",lang:"⟨",langle:"⟨",LeftArrow:"←",ShortLeftArrow:"←",larr:"←",leftarrow:"←",slarr:"←",LeftArrowBar:"⇤",larrb:"⇤",LeftArrowRightArrow:"⇆",leftrightarrows:"⇆",lrarr:"⇆",LeftCeiling:"⌈",lceil:"⌈",LeftDoubleBracket:"⟦",lobrk:"⟦",LeftDownTeeVector:"⥡",LeftDownVector:"⇃",dharl:"⇃",downharpoonleft:"⇃",LeftDownVectorBar:"⥙",LeftFloor:"⌊",lfloor:"⌊",LeftRightArrow:"↔",harr:"↔",leftrightarrow:"↔",LeftRightVector:"⥎",LeftTee:"⊣",dashv:"⊣",LeftTeeArrow:"↤",mapstoleft:"↤",LeftTeeVector:"⥚",LeftTriangle:"⊲",vartriangleleft:"⊲",vltri:"⊲",LeftTriangleBar:"⧏",LeftTriangleEqual:"⊴",ltrie:"⊴",trianglelefteq:"⊴",LeftUpDownVector:"⥑",LeftUpTeeVector:"⥠",LeftUpVector:"↿",uharl:"↿",upharpoonleft:"↿",LeftUpVectorBar:"⥘",LeftVector:"↼",leftharpoonup:"↼",lharu:"↼",LeftVectorBar:"⥒",LessEqualGreater:"⋚",leg:"⋚",lesseqgtr:"⋚",LessFullEqual:"≦",lE:"≦",leqq:"≦",LessGreater:"≶",lessgtr:"≶",lg:"≶",LessLess:"⪡",LessSlantEqual:"⩽",leqslant:"⩽",les:"⩽",LessTilde:"≲",lesssim:"≲",lsim:"≲",Lfr:"𝔏",Ll:"⋘",Lleftarrow:"⇚",lAarr:"⇚",Lmidot:"Ŀ",LongLeftArrow:"⟵",longleftarrow:"⟵",xlarr:"⟵",LongLeftRightArrow:"⟷",longleftrightarrow:"⟷",xharr:"⟷",LongRightArrow:"⟶",longrightarrow:"⟶",xrarr:"⟶",Lopf:"𝕃",LowerLeftArrow:"↙",swarr:"↙",swarrow:"↙",LowerRightArrow:"↘",searr:"↘",searrow:"↘",Lsh:"↰",lsh:"↰",Lstrok:"Ł",Lt:"≪",NestedLessLess:"≪",ll:"≪",Map:"⤅",Mcy:"М",MediumSpace:" ",Mellintrf:"ℳ",Mscr:"ℳ",phmmat:"ℳ",Mfr:"𝔐",MinusPlus:"∓",mnplus:"∓",mp:"∓",Mopf:"𝕄",Mu:"Μ",NJcy:"Њ",Nacute:"Ń",Ncaron:"Ň",Ncedil:"Ņ",Ncy:"Н",NegativeMediumSpace:"​",NegativeThickSpace:"​",NegativeThinSpace:"​",NegativeVeryThinSpace:"​",ZeroWidthSpace:"​",NewLine:` -`,Nfr:"𝔑",NoBreak:"⁠",NonBreakingSpace:" ",nbsp:" ",Nopf:"ℕ",naturals:"ℕ",Not:"⫬",NotCongruent:"≢",nequiv:"≢",NotCupCap:"≭",NotDoubleVerticalBar:"∦",npar:"∦",nparallel:"∦",nshortparallel:"∦",nspar:"∦",NotElement:"∉",notin:"∉",notinva:"∉",NotEqual:"≠",ne:"≠",NotEqualTilde:"≂̸",nesim:"≂̸",NotExists:"∄",nexist:"∄",nexists:"∄",NotGreater:"≯",ngt:"≯",ngtr:"≯",NotGreaterEqual:"≱",nge:"≱",ngeq:"≱",NotGreaterFullEqual:"≧̸",ngE:"≧̸",ngeqq:"≧̸",NotGreaterGreater:"≫̸",nGtv:"≫̸",NotGreaterLess:"≹",ntgl:"≹",NotGreaterSlantEqual:"⩾̸",ngeqslant:"⩾̸",nges:"⩾̸",NotGreaterTilde:"≵",ngsim:"≵",NotHumpDownHump:"≎̸",nbump:"≎̸",NotHumpEqual:"≏̸",nbumpe:"≏̸",NotLeftTriangle:"⋪",nltri:"⋪",ntriangleleft:"⋪",NotLeftTriangleBar:"⧏̸",NotLeftTriangleEqual:"⋬",nltrie:"⋬",ntrianglelefteq:"⋬",NotLess:"≮",nless:"≮",nlt:"≮",NotLessEqual:"≰",nle:"≰",nleq:"≰",NotLessGreater:"≸",ntlg:"≸",NotLessLess:"≪̸",nLtv:"≪̸",NotLessSlantEqual:"⩽̸",nleqslant:"⩽̸",nles:"⩽̸",NotLessTilde:"≴",nlsim:"≴",NotNestedGreaterGreater:"⪢̸",NotNestedLessLess:"⪡̸",NotPrecedes:"⊀",npr:"⊀",nprec:"⊀",NotPrecedesEqual:"⪯̸",npre:"⪯̸",npreceq:"⪯̸",NotPrecedesSlantEqual:"⋠",nprcue:"⋠",NotReverseElement:"∌",notni:"∌",notniva:"∌",NotRightTriangle:"⋫",nrtri:"⋫",ntriangleright:"⋫",NotRightTriangleBar:"⧐̸",NotRightTriangleEqual:"⋭",nrtrie:"⋭",ntrianglerighteq:"⋭",NotSquareSubset:"⊏̸",NotSquareSubsetEqual:"⋢",nsqsube:"⋢",NotSquareSuperset:"⊐̸",NotSquareSupersetEqual:"⋣",nsqsupe:"⋣",NotSubset:"⊂⃒",nsubset:"⊂⃒",vnsub:"⊂⃒",NotSubsetEqual:"⊈",nsube:"⊈",nsubseteq:"⊈",NotSucceeds:"⊁",nsc:"⊁",nsucc:"⊁",NotSucceedsEqual:"⪰̸",nsce:"⪰̸",nsucceq:"⪰̸",NotSucceedsSlantEqual:"⋡",nsccue:"⋡",NotSucceedsTilde:"≿̸",NotSuperset:"⊃⃒",nsupset:"⊃⃒",vnsup:"⊃⃒",NotSupersetEqual:"⊉",nsupe:"⊉",nsupseteq:"⊉",NotTilde:"≁",nsim:"≁",NotTildeEqual:"≄",nsime:"≄",nsimeq:"≄",NotTildeFullEqual:"≇",ncong:"≇",NotTildeTilde:"≉",nap:"≉",napprox:"≉",NotVerticalBar:"∤",nmid:"∤",nshortmid:"∤",nsmid:"∤",Nscr:"𝒩",Ntilde:"Ñ",Nu:"Ν",OElig:"Œ",Oacute:"Ó",Ocirc:"Ô",Ocy:"О",Odblac:"Ő",Ofr:"𝔒",Ograve:"Ò",Omacr:"Ō",Omega:"Ω",ohm:"Ω",Omicron:"Ο",Oopf:"𝕆",OpenCurlyDoubleQuote:"“",ldquo:"“",OpenCurlyQuote:"‘",lsquo:"‘",Or:"⩔",Oscr:"𝒪",Oslash:"Ø",Otilde:"Õ",Otimes:"⨷",Ouml:"Ö",OverBar:"‾",oline:"‾",OverBrace:"⏞",OverBracket:"⎴",tbrk:"⎴",OverParenthesis:"⏜",PartialD:"∂",part:"∂",Pcy:"П",Pfr:"𝔓",Phi:"Φ",Pi:"Π",PlusMinus:"±",plusmn:"±",pm:"±",Popf:"ℙ",primes:"ℙ",Pr:"⪻",Precedes:"≺",pr:"≺",prec:"≺",PrecedesEqual:"⪯",pre:"⪯",preceq:"⪯",PrecedesSlantEqual:"≼",prcue:"≼",preccurlyeq:"≼",PrecedesTilde:"≾",precsim:"≾",prsim:"≾",Prime:"″",Product:"∏",prod:"∏",Proportional:"∝",prop:"∝",propto:"∝",varpropto:"∝",vprop:"∝",Pscr:"𝒫",Psi:"Ψ",QUOT:'"',quot:'"',Qfr:"𝔔",Qopf:"ℚ",rationals:"ℚ",Qscr:"𝒬",RBarr:"⤐",drbkarow:"⤐",REG:"®",circledR:"®",reg:"®",Racute:"Ŕ",Rang:"⟫",Rarr:"↠",twoheadrightarrow:"↠",Rarrtl:"⤖",Rcaron:"Ř",Rcedil:"Ŗ",Rcy:"Р",Re:"ℜ",Rfr:"ℜ",real:"ℜ",realpart:"ℜ",ReverseElement:"∋",SuchThat:"∋",ni:"∋",niv:"∋",ReverseEquilibrium:"⇋",leftrightharpoons:"⇋",lrhar:"⇋",ReverseUpEquilibrium:"⥯",duhar:"⥯",Rho:"Ρ",RightAngleBracket:"⟩",rang:"⟩",rangle:"⟩",RightArrow:"→",ShortRightArrow:"→",rarr:"→",rightarrow:"→",srarr:"→",RightArrowBar:"⇥",rarrb:"⇥",RightArrowLeftArrow:"⇄",rightleftarrows:"⇄",rlarr:"⇄",RightCeiling:"⌉",rceil:"⌉",RightDoubleBracket:"⟧",robrk:"⟧",RightDownTeeVector:"⥝",RightDownVector:"⇂",dharr:"⇂",downharpoonright:"⇂",RightDownVectorBar:"⥕",RightFloor:"⌋",rfloor:"⌋",RightTee:"⊢",vdash:"⊢",RightTeeArrow:"↦",map:"↦",mapsto:"↦",RightTeeVector:"⥛",RightTriangle:"⊳",vartriangleright:"⊳",vrtri:"⊳",RightTriangleBar:"⧐",RightTriangleEqual:"⊵",rtrie:"⊵",trianglerighteq:"⊵",RightUpDownVector:"⥏",RightUpTeeVector:"⥜",RightUpVector:"↾",uharr:"↾",upharpoonright:"↾",RightUpVectorBar:"⥔",RightVector:"⇀",rharu:"⇀",rightharpoonup:"⇀",RightVectorBar:"⥓",Ropf:"ℝ",reals:"ℝ",RoundImplies:"⥰",Rrightarrow:"⇛",rAarr:"⇛",Rscr:"ℛ",realine:"ℛ",Rsh:"↱",rsh:"↱",RuleDelayed:"⧴",SHCHcy:"Щ",SHcy:"Ш",SOFTcy:"Ь",Sacute:"Ś",Sc:"⪼",Scaron:"Š",Scedil:"Ş",Scirc:"Ŝ",Scy:"С",Sfr:"𝔖",ShortUpArrow:"↑",UpArrow:"↑",uarr:"↑",uparrow:"↑",Sigma:"Σ",SmallCircle:"∘",compfn:"∘",Sopf:"𝕊",Sqrt:"√",radic:"√",Square:"□",squ:"□",square:"□",SquareIntersection:"⊓",sqcap:"⊓",SquareSubset:"⊏",sqsub:"⊏",sqsubset:"⊏",SquareSubsetEqual:"⊑",sqsube:"⊑",sqsubseteq:"⊑",SquareSuperset:"⊐",sqsup:"⊐",sqsupset:"⊐",SquareSupersetEqual:"⊒",sqsupe:"⊒",sqsupseteq:"⊒",SquareUnion:"⊔",sqcup:"⊔",Sscr:"𝒮",Star:"⋆",sstarf:"⋆",Sub:"⋐",Subset:"⋐",SubsetEqual:"⊆",sube:"⊆",subseteq:"⊆",Succeeds:"≻",sc:"≻",succ:"≻",SucceedsEqual:"⪰",sce:"⪰",succeq:"⪰",SucceedsSlantEqual:"≽",sccue:"≽",succcurlyeq:"≽",SucceedsTilde:"≿",scsim:"≿",succsim:"≿",Sum:"∑",sum:"∑",Sup:"⋑",Supset:"⋑",Superset:"⊃",sup:"⊃",supset:"⊃",SupersetEqual:"⊇",supe:"⊇",supseteq:"⊇",THORN:"Þ",TRADE:"™",trade:"™",TSHcy:"Ћ",TScy:"Ц",Tab:" ",Tau:"Τ",Tcaron:"Ť",Tcedil:"Ţ",Tcy:"Т",Tfr:"𝔗",Therefore:"∴",there4:"∴",therefore:"∴",Theta:"Θ",ThickSpace:"  ",ThinSpace:" ",thinsp:" ",Tilde:"∼",sim:"∼",thicksim:"∼",thksim:"∼",TildeEqual:"≃",sime:"≃",simeq:"≃",TildeFullEqual:"≅",cong:"≅",TildeTilde:"≈",ap:"≈",approx:"≈",asymp:"≈",thickapprox:"≈",thkap:"≈",Topf:"𝕋",TripleDot:"⃛",tdot:"⃛",Tscr:"𝒯",Tstrok:"Ŧ",Uacute:"Ú",Uarr:"↟",Uarrocir:"⥉",Ubrcy:"Ў",Ubreve:"Ŭ",Ucirc:"Û",Ucy:"У",Udblac:"Ű",Ufr:"𝔘",Ugrave:"Ù",Umacr:"Ū",UnderBar:"_",lowbar:"_",UnderBrace:"⏟",UnderBracket:"⎵",bbrk:"⎵",UnderParenthesis:"⏝",Union:"⋃",bigcup:"⋃",xcup:"⋃",UnionPlus:"⊎",uplus:"⊎",Uogon:"Ų",Uopf:"𝕌",UpArrowBar:"⤒",UpArrowDownArrow:"⇅",udarr:"⇅",UpDownArrow:"↕",updownarrow:"↕",varr:"↕",UpEquilibrium:"⥮",udhar:"⥮",UpTee:"⊥",bot:"⊥",bottom:"⊥",perp:"⊥",UpTeeArrow:"↥",mapstoup:"↥",UpperLeftArrow:"↖",nwarr:"↖",nwarrow:"↖",UpperRightArrow:"↗",nearr:"↗",nearrow:"↗",Upsi:"ϒ",upsih:"ϒ",Upsilon:"Υ",Uring:"Ů",Uscr:"𝒰",Utilde:"Ũ",Uuml:"Ü",VDash:"⊫",Vbar:"⫫",Vcy:"В",Vdash:"⊩",Vdashl:"⫦",Vee:"⋁",bigvee:"⋁",xvee:"⋁",Verbar:"‖",Vert:"‖",VerticalBar:"∣",mid:"∣",shortmid:"∣",smid:"∣",VerticalLine:"|",verbar:"|",vert:"|",VerticalSeparator:"❘",VerticalTilde:"≀",wr:"≀",wreath:"≀",VeryThinSpace:" ",hairsp:" ",Vfr:"𝔙",Vopf:"𝕍",Vscr:"𝒱",Vvdash:"⊪",Wcirc:"Ŵ",Wedge:"⋀",bigwedge:"⋀",xwedge:"⋀",Wfr:"𝔚",Wopf:"𝕎",Wscr:"𝒲",Xfr:"𝔛",Xi:"Ξ",Xopf:"𝕏",Xscr:"𝒳",YAcy:"Я",YIcy:"Ї",YUcy:"Ю",Yacute:"Ý",Ycirc:"Ŷ",Ycy:"Ы",Yfr:"𝔜",Yopf:"𝕐",Yscr:"𝒴",Yuml:"Ÿ",ZHcy:"Ж",Zacute:"Ź",Zcaron:"Ž",Zcy:"З",Zdot:"Ż",Zeta:"Ζ",Zfr:"ℨ",zeetrf:"ℨ",Zopf:"ℤ",integers:"ℤ",Zscr:"𝒵",aacute:"á",abreve:"ă",ac:"∾",mstpos:"∾",acE:"∾̳",acd:"∿",acirc:"â",acy:"а",aelig:"æ",afr:"𝔞",agrave:"à",alefsym:"ℵ",aleph:"ℵ",alpha:"α",amacr:"ā",amalg:"⨿",and:"∧",wedge:"∧",andand:"⩕",andd:"⩜",andslope:"⩘",andv:"⩚",ang:"∠",angle:"∠",ange:"⦤",angmsd:"∡",measuredangle:"∡",angmsdaa:"⦨",angmsdab:"⦩",angmsdac:"⦪",angmsdad:"⦫",angmsdae:"⦬",angmsdaf:"⦭",angmsdag:"⦮",angmsdah:"⦯",angrt:"∟",angrtvb:"⊾",angrtvbd:"⦝",angsph:"∢",angzarr:"⍼",aogon:"ą",aopf:"𝕒",apE:"⩰",apacir:"⩯",ape:"≊",approxeq:"≊",apid:"≋",apos:"'",aring:"å",ascr:"𝒶",ast:"*",midast:"*",atilde:"ã",auml:"ä",awint:"⨑",bNot:"⫭",backcong:"≌",bcong:"≌",backepsilon:"϶",bepsi:"϶",backprime:"‵",bprime:"‵",backsim:"∽",bsim:"∽",backsimeq:"⋍",bsime:"⋍",barvee:"⊽",barwed:"⌅",barwedge:"⌅",bbrktbrk:"⎶",bcy:"б",bdquo:"„",ldquor:"„",bemptyv:"⦰",beta:"β",beth:"ℶ",between:"≬",twixt:"≬",bfr:"𝔟",bigcirc:"◯",xcirc:"◯",bigodot:"⨀",xodot:"⨀",bigoplus:"⨁",xoplus:"⨁",bigotimes:"⨂",xotime:"⨂",bigsqcup:"⨆",xsqcup:"⨆",bigstar:"★",starf:"★",bigtriangledown:"▽",xdtri:"▽",bigtriangleup:"△",xutri:"△",biguplus:"⨄",xuplus:"⨄",bkarow:"⤍",rbarr:"⤍",blacklozenge:"⧫",lozf:"⧫",blacktriangle:"▴",utrif:"▴",blacktriangledown:"▾",dtrif:"▾",blacktriangleleft:"◂",ltrif:"◂",blacktriangleright:"▸",rtrif:"▸",blank:"␣",blk12:"▒",blk14:"░",blk34:"▓",block:"█",bne:"=⃥",bnequiv:"≡⃥",bnot:"⌐",bopf:"𝕓",bowtie:"⋈",boxDL:"╗",boxDR:"╔",boxDl:"╖",boxDr:"╓",boxH:"═",boxHD:"╦",boxHU:"╩",boxHd:"╤",boxHu:"╧",boxUL:"╝",boxUR:"╚",boxUl:"╜",boxUr:"╙",boxV:"║",boxVH:"╬",boxVL:"╣",boxVR:"╠",boxVh:"╫",boxVl:"╢",boxVr:"╟",boxbox:"⧉",boxdL:"╕",boxdR:"╒",boxdl:"┐",boxdr:"┌",boxhD:"╥",boxhU:"╨",boxhd:"┬",boxhu:"┴",boxminus:"⊟",minusb:"⊟",boxplus:"⊞",plusb:"⊞",boxtimes:"⊠",timesb:"⊠",boxuL:"╛",boxuR:"╘",boxul:"┘",boxur:"└",boxv:"│",boxvH:"╪",boxvL:"╡",boxvR:"╞",boxvh:"┼",boxvl:"┤",boxvr:"├",brvbar:"¦",bscr:"𝒷",bsemi:"⁏",bsol:"\\",bsolb:"⧅",bsolhsub:"⟈",bull:"•",bullet:"•",bumpE:"⪮",cacute:"ć",cap:"∩",capand:"⩄",capbrcup:"⩉",capcap:"⩋",capcup:"⩇",capdot:"⩀",caps:"∩︀",caret:"⁁",ccaps:"⩍",ccaron:"č",ccedil:"ç",ccirc:"ĉ",ccups:"⩌",ccupssm:"⩐",cdot:"ċ",cemptyv:"⦲",cent:"¢",cfr:"𝔠",chcy:"ч",check:"✓",checkmark:"✓",chi:"χ",cir:"○",cirE:"⧃",circ:"ˆ",circeq:"≗",cire:"≗",circlearrowleft:"↺",olarr:"↺",circlearrowright:"↻",orarr:"↻",circledS:"Ⓢ",oS:"Ⓢ",circledast:"⊛",oast:"⊛",circledcirc:"⊚",ocir:"⊚",circleddash:"⊝",odash:"⊝",cirfnint:"⨐",cirmid:"⫯",cirscir:"⧂",clubs:"♣",clubsuit:"♣",colon:":",comma:",",commat:"@",comp:"∁",complement:"∁",congdot:"⩭",copf:"𝕔",copysr:"℗",crarr:"↵",cross:"✗",cscr:"𝒸",csub:"⫏",csube:"⫑",csup:"⫐",csupe:"⫒",ctdot:"⋯",cudarrl:"⤸",cudarrr:"⤵",cuepr:"⋞",curlyeqprec:"⋞",cuesc:"⋟",curlyeqsucc:"⋟",cularr:"↶",curvearrowleft:"↶",cularrp:"⤽",cup:"∪",cupbrcap:"⩈",cupcap:"⩆",cupcup:"⩊",cupdot:"⊍",cupor:"⩅",cups:"∪︀",curarr:"↷",curvearrowright:"↷",curarrm:"⤼",curlyvee:"⋎",cuvee:"⋎",curlywedge:"⋏",cuwed:"⋏",curren:"¤",cwint:"∱",cylcty:"⌭",dHar:"⥥",dagger:"†",daleth:"ℸ",dash:"‐",hyphen:"‐",dbkarow:"⤏",rBarr:"⤏",dcaron:"ď",dcy:"д",ddarr:"⇊",downdownarrows:"⇊",ddotseq:"⩷",eDDot:"⩷",deg:"°",delta:"δ",demptyv:"⦱",dfisht:"⥿",dfr:"𝔡",diamondsuit:"♦",diams:"♦",digamma:"ϝ",gammad:"ϝ",disin:"⋲",div:"÷",divide:"÷",divideontimes:"⋇",divonx:"⋇",djcy:"ђ",dlcorn:"⌞",llcorner:"⌞",dlcrop:"⌍",dollar:"$",dopf:"𝕕",doteqdot:"≑",eDot:"≑",dotminus:"∸",minusd:"∸",dotplus:"∔",plusdo:"∔",dotsquare:"⊡",sdotb:"⊡",drcorn:"⌟",lrcorner:"⌟",drcrop:"⌌",dscr:"𝒹",dscy:"ѕ",dsol:"⧶",dstrok:"đ",dtdot:"⋱",dtri:"▿",triangledown:"▿",dwangle:"⦦",dzcy:"џ",dzigrarr:"⟿",eacute:"é",easter:"⩮",ecaron:"ě",ecir:"≖",eqcirc:"≖",ecirc:"ê",ecolon:"≕",eqcolon:"≕",ecy:"э",edot:"ė",efDot:"≒",fallingdotseq:"≒",efr:"𝔢",eg:"⪚",egrave:"è",egs:"⪖",eqslantgtr:"⪖",egsdot:"⪘",el:"⪙",elinters:"⏧",ell:"ℓ",els:"⪕",eqslantless:"⪕",elsdot:"⪗",emacr:"ē",empty:"∅",emptyset:"∅",emptyv:"∅",varnothing:"∅",emsp13:" ",emsp14:" ",emsp:" ",eng:"ŋ",ensp:" ",eogon:"ę",eopf:"𝕖",epar:"⋕",eparsl:"⧣",eplus:"⩱",epsi:"ε",epsilon:"ε",epsiv:"ϵ",straightepsilon:"ϵ",varepsilon:"ϵ",equals:"=",equest:"≟",questeq:"≟",equivDD:"⩸",eqvparsl:"⧥",erDot:"≓",risingdotseq:"≓",erarr:"⥱",escr:"ℯ",eta:"η",eth:"ð",euml:"ë",euro:"€",excl:"!",fcy:"ф",female:"♀",ffilig:"ffi",fflig:"ff",ffllig:"ffl",ffr:"𝔣",filig:"fi",fjlig:"fj",flat:"♭",fllig:"fl",fltns:"▱",fnof:"ƒ",fopf:"𝕗",fork:"⋔",pitchfork:"⋔",forkv:"⫙",fpartint:"⨍",frac12:"½",half:"½",frac13:"⅓",frac14:"¼",frac15:"⅕",frac16:"⅙",frac18:"⅛",frac23:"⅔",frac25:"⅖",frac34:"¾",frac35:"⅗",frac38:"⅜",frac45:"⅘",frac56:"⅚",frac58:"⅝",frac78:"⅞",frasl:"⁄",frown:"⌢",sfrown:"⌢",fscr:"𝒻",gEl:"⪌",gtreqqless:"⪌",gacute:"ǵ",gamma:"γ",gap:"⪆",gtrapprox:"⪆",gbreve:"ğ",gcirc:"ĝ",gcy:"г",gdot:"ġ",gescc:"⪩",gesdot:"⪀",gesdoto:"⪂",gesdotol:"⪄",gesl:"⋛︀",gesles:"⪔",gfr:"𝔤",gimel:"ℷ",gjcy:"ѓ",glE:"⪒",gla:"⪥",glj:"⪤",gnE:"≩",gneqq:"≩",gnap:"⪊",gnapprox:"⪊",gne:"⪈",gneq:"⪈",gnsim:"⋧",gopf:"𝕘",gscr:"ℊ",gsime:"⪎",gsiml:"⪐",gtcc:"⪧",gtcir:"⩺",gtdot:"⋗",gtrdot:"⋗",gtlPar:"⦕",gtquest:"⩼",gtrarr:"⥸",gvertneqq:"≩︀",gvnE:"≩︀",hardcy:"ъ",harrcir:"⥈",harrw:"↭",leftrightsquigarrow:"↭",hbar:"ℏ",hslash:"ℏ",planck:"ℏ",plankv:"ℏ",hcirc:"ĥ",hearts:"♥",heartsuit:"♥",hellip:"…",mldr:"…",hercon:"⊹",hfr:"𝔥",hksearow:"⤥",searhk:"⤥",hkswarow:"⤦",swarhk:"⤦",hoarr:"⇿",homtht:"∻",hookleftarrow:"↩",larrhk:"↩",hookrightarrow:"↪",rarrhk:"↪",hopf:"𝕙",horbar:"―",hscr:"𝒽",hstrok:"ħ",hybull:"⁃",iacute:"í",icirc:"î",icy:"и",iecy:"е",iexcl:"¡",ifr:"𝔦",igrave:"ì",iiiint:"⨌",qint:"⨌",iiint:"∭",tint:"∭",iinfin:"⧜",iiota:"℩",ijlig:"ij",imacr:"ī",imath:"ı",inodot:"ı",imof:"⊷",imped:"Ƶ",incare:"℅",infin:"∞",infintie:"⧝",intcal:"⊺",intercal:"⊺",intlarhk:"⨗",intprod:"⨼",iprod:"⨼",iocy:"ё",iogon:"į",iopf:"𝕚",iota:"ι",iquest:"¿",iscr:"𝒾",isinE:"⋹",isindot:"⋵",isins:"⋴",isinsv:"⋳",itilde:"ĩ",iukcy:"і",iuml:"ï",jcirc:"ĵ",jcy:"й",jfr:"𝔧",jmath:"ȷ",jopf:"𝕛",jscr:"𝒿",jsercy:"ј",jukcy:"є",kappa:"κ",kappav:"ϰ",varkappa:"ϰ",kcedil:"ķ",kcy:"к",kfr:"𝔨",kgreen:"ĸ",khcy:"х",kjcy:"ќ",kopf:"𝕜",kscr:"𝓀",lAtail:"⤛",lBarr:"⤎",lEg:"⪋",lesseqqgtr:"⪋",lHar:"⥢",lacute:"ĺ",laemptyv:"⦴",lambda:"λ",langd:"⦑",lap:"⪅",lessapprox:"⪅",laquo:"«",larrbfs:"⤟",larrfs:"⤝",larrlp:"↫",looparrowleft:"↫",larrpl:"⤹",larrsim:"⥳",larrtl:"↢",leftarrowtail:"↢",lat:"⪫",latail:"⤙",late:"⪭",lates:"⪭︀",lbarr:"⤌",lbbrk:"❲",lbrace:"{",lcub:"{",lbrack:"[",lsqb:"[",lbrke:"⦋",lbrksld:"⦏",lbrkslu:"⦍",lcaron:"ľ",lcedil:"ļ",lcy:"л",ldca:"⤶",ldrdhar:"⥧",ldrushar:"⥋",ldsh:"↲",le:"≤",leq:"≤",leftleftarrows:"⇇",llarr:"⇇",leftthreetimes:"⋋",lthree:"⋋",lescc:"⪨",lesdot:"⩿",lesdoto:"⪁",lesdotor:"⪃",lesg:"⋚︀",lesges:"⪓",lessdot:"⋖",ltdot:"⋖",lfisht:"⥼",lfr:"𝔩",lgE:"⪑",lharul:"⥪",lhblk:"▄",ljcy:"љ",llhard:"⥫",lltri:"◺",lmidot:"ŀ",lmoust:"⎰",lmoustache:"⎰",lnE:"≨",lneqq:"≨",lnap:"⪉",lnapprox:"⪉",lne:"⪇",lneq:"⪇",lnsim:"⋦",loang:"⟬",loarr:"⇽",longmapsto:"⟼",xmap:"⟼",looparrowright:"↬",rarrlp:"↬",lopar:"⦅",lopf:"𝕝",loplus:"⨭",lotimes:"⨴",lowast:"∗",loz:"◊",lozenge:"◊",lpar:"(",lparlt:"⦓",lrhard:"⥭",lrm:"‎",lrtri:"⊿",lsaquo:"‹",lscr:"𝓁",lsime:"⪍",lsimg:"⪏",lsquor:"‚",sbquo:"‚",lstrok:"ł",ltcc:"⪦",ltcir:"⩹",ltimes:"⋉",ltlarr:"⥶",ltquest:"⩻",ltrPar:"⦖",ltri:"◃",triangleleft:"◃",lurdshar:"⥊",luruhar:"⥦",lvertneqq:"≨︀",lvnE:"≨︀",mDDot:"∺",macr:"¯",strns:"¯",male:"♂",malt:"✠",maltese:"✠",marker:"▮",mcomma:"⨩",mcy:"м",mdash:"—",mfr:"𝔪",mho:"℧",micro:"µ",midcir:"⫰",minus:"−",minusdu:"⨪",mlcp:"⫛",models:"⊧",mopf:"𝕞",mscr:"𝓂",mu:"μ",multimap:"⊸",mumap:"⊸",nGg:"⋙̸",nGt:"≫⃒",nLeftarrow:"⇍",nlArr:"⇍",nLeftrightarrow:"⇎",nhArr:"⇎",nLl:"⋘̸",nLt:"≪⃒",nRightarrow:"⇏",nrArr:"⇏",nVDash:"⊯",nVdash:"⊮",nacute:"ń",nang:"∠⃒",napE:"⩰̸",napid:"≋̸",napos:"ʼn",natur:"♮",natural:"♮",ncap:"⩃",ncaron:"ň",ncedil:"ņ",ncongdot:"⩭̸",ncup:"⩂",ncy:"н",ndash:"–",neArr:"⇗",nearhk:"⤤",nedot:"≐̸",nesear:"⤨",toea:"⤨",nfr:"𝔫",nharr:"↮",nleftrightarrow:"↮",nhpar:"⫲",nis:"⋼",nisd:"⋺",njcy:"њ",nlE:"≦̸",nleqq:"≦̸",nlarr:"↚",nleftarrow:"↚",nldr:"‥",nopf:"𝕟",not:"¬",notinE:"⋹̸",notindot:"⋵̸",notinvb:"⋷",notinvc:"⋶",notnivb:"⋾",notnivc:"⋽",nparsl:"⫽⃥",npart:"∂̸",npolint:"⨔",nrarr:"↛",nrightarrow:"↛",nrarrc:"⤳̸",nrarrw:"↝̸",nscr:"𝓃",nsub:"⊄",nsubE:"⫅̸",nsubseteqq:"⫅̸",nsup:"⊅",nsupE:"⫆̸",nsupseteqq:"⫆̸",ntilde:"ñ",nu:"ν",num:"#",numero:"№",numsp:" ",nvDash:"⊭",nvHarr:"⤄",nvap:"≍⃒",nvdash:"⊬",nvge:"≥⃒",nvgt:">⃒",nvinfin:"⧞",nvlArr:"⤂",nvle:"≤⃒",nvlt:"<⃒",nvltrie:"⊴⃒",nvrArr:"⤃",nvrtrie:"⊵⃒",nvsim:"∼⃒",nwArr:"⇖",nwarhk:"⤣",nwnear:"⤧",oacute:"ó",ocirc:"ô",ocy:"о",odblac:"ő",odiv:"⨸",odsold:"⦼",oelig:"œ",ofcir:"⦿",ofr:"𝔬",ogon:"˛",ograve:"ò",ogt:"⧁",ohbar:"⦵",olcir:"⦾",olcross:"⦻",olt:"⧀",omacr:"ō",omega:"ω",omicron:"ο",omid:"⦶",oopf:"𝕠",opar:"⦷",operp:"⦹",or:"∨",vee:"∨",ord:"⩝",order:"ℴ",orderof:"ℴ",oscr:"ℴ",ordf:"ª",ordm:"º",origof:"⊶",oror:"⩖",orslope:"⩗",orv:"⩛",oslash:"ø",osol:"⊘",otilde:"õ",otimesas:"⨶",ouml:"ö",ovbar:"⌽",para:"¶",parsim:"⫳",parsl:"⫽",pcy:"п",percnt:"%",period:".",permil:"‰",pertenk:"‱",pfr:"𝔭",phi:"φ",phiv:"ϕ",straightphi:"ϕ",varphi:"ϕ",phone:"☎",pi:"π",piv:"ϖ",varpi:"ϖ",planckh:"ℎ",plus:"+",plusacir:"⨣",pluscir:"⨢",plusdu:"⨥",pluse:"⩲",plussim:"⨦",plustwo:"⨧",pointint:"⨕",popf:"𝕡",pound:"£",prE:"⪳",prap:"⪷",precapprox:"⪷",precnapprox:"⪹",prnap:"⪹",precneqq:"⪵",prnE:"⪵",precnsim:"⋨",prnsim:"⋨",prime:"′",profalar:"⌮",profline:"⌒",profsurf:"⌓",prurel:"⊰",pscr:"𝓅",psi:"ψ",puncsp:" ",qfr:"𝔮",qopf:"𝕢",qprime:"⁗",qscr:"𝓆",quatint:"⨖",quest:"?",rAtail:"⤜",rHar:"⥤",race:"∽̱",racute:"ŕ",raemptyv:"⦳",rangd:"⦒",range:"⦥",raquo:"»",rarrap:"⥵",rarrbfs:"⤠",rarrc:"⤳",rarrfs:"⤞",rarrpl:"⥅",rarrsim:"⥴",rarrtl:"↣",rightarrowtail:"↣",rarrw:"↝",rightsquigarrow:"↝",ratail:"⤚",ratio:"∶",rbbrk:"❳",rbrace:"}",rcub:"}",rbrack:"]",rsqb:"]",rbrke:"⦌",rbrksld:"⦎",rbrkslu:"⦐",rcaron:"ř",rcedil:"ŗ",rcy:"р",rdca:"⤷",rdldhar:"⥩",rdsh:"↳",rect:"▭",rfisht:"⥽",rfr:"𝔯",rharul:"⥬",rho:"ρ",rhov:"ϱ",varrho:"ϱ",rightrightarrows:"⇉",rrarr:"⇉",rightthreetimes:"⋌",rthree:"⋌",ring:"˚",rlm:"‏",rmoust:"⎱",rmoustache:"⎱",rnmid:"⫮",roang:"⟭",roarr:"⇾",ropar:"⦆",ropf:"𝕣",roplus:"⨮",rotimes:"⨵",rpar:")",rpargt:"⦔",rppolint:"⨒",rsaquo:"›",rscr:"𝓇",rtimes:"⋊",rtri:"▹",triangleright:"▹",rtriltri:"⧎",ruluhar:"⥨",rx:"℞",sacute:"ś",scE:"⪴",scap:"⪸",succapprox:"⪸",scaron:"š",scedil:"ş",scirc:"ŝ",scnE:"⪶",succneqq:"⪶",scnap:"⪺",succnapprox:"⪺",scnsim:"⋩",succnsim:"⋩",scpolint:"⨓",scy:"с",sdot:"⋅",sdote:"⩦",seArr:"⇘",sect:"§",semi:";",seswar:"⤩",tosa:"⤩",sext:"✶",sfr:"𝔰",sharp:"♯",shchcy:"щ",shcy:"ш",shy:"­",sigma:"σ",sigmaf:"ς",sigmav:"ς",varsigma:"ς",simdot:"⩪",simg:"⪞",simgE:"⪠",siml:"⪝",simlE:"⪟",simne:"≆",simplus:"⨤",simrarr:"⥲",smashp:"⨳",smeparsl:"⧤",smile:"⌣",ssmile:"⌣",smt:"⪪",smte:"⪬",smtes:"⪬︀",softcy:"ь",sol:"/",solb:"⧄",solbar:"⌿",sopf:"𝕤",spades:"♠",spadesuit:"♠",sqcaps:"⊓︀",sqcups:"⊔︀",sscr:"𝓈",star:"☆",sub:"⊂",subset:"⊂",subE:"⫅",subseteqq:"⫅",subdot:"⪽",subedot:"⫃",submult:"⫁",subnE:"⫋",subsetneqq:"⫋",subne:"⊊",subsetneq:"⊊",subplus:"⪿",subrarr:"⥹",subsim:"⫇",subsub:"⫕",subsup:"⫓",sung:"♪",sup1:"¹",sup2:"²",sup3:"³",supE:"⫆",supseteqq:"⫆",supdot:"⪾",supdsub:"⫘",supedot:"⫄",suphsol:"⟉",suphsub:"⫗",suplarr:"⥻",supmult:"⫂",supnE:"⫌",supsetneqq:"⫌",supne:"⊋",supsetneq:"⊋",supplus:"⫀",supsim:"⫈",supsub:"⫔",supsup:"⫖",swArr:"⇙",swnwar:"⤪",szlig:"ß",target:"⌖",tau:"τ",tcaron:"ť",tcedil:"ţ",tcy:"т",telrec:"⌕",tfr:"𝔱",theta:"θ",thetasym:"ϑ",thetav:"ϑ",vartheta:"ϑ",thorn:"þ",times:"×",timesbar:"⨱",timesd:"⨰",topbot:"⌶",topcir:"⫱",topf:"𝕥",topfork:"⫚",tprime:"‴",triangle:"▵",utri:"▵",triangleq:"≜",trie:"≜",tridot:"◬",triminus:"⨺",triplus:"⨹",trisb:"⧍",tritime:"⨻",trpezium:"⏢",tscr:"𝓉",tscy:"ц",tshcy:"ћ",tstrok:"ŧ",uHar:"⥣",uacute:"ú",ubrcy:"ў",ubreve:"ŭ",ucirc:"û",ucy:"у",udblac:"ű",ufisht:"⥾",ufr:"𝔲",ugrave:"ù",uhblk:"▀",ulcorn:"⌜",ulcorner:"⌜",ulcrop:"⌏",ultri:"◸",umacr:"ū",uogon:"ų",uopf:"𝕦",upsi:"υ",upsilon:"υ",upuparrows:"⇈",uuarr:"⇈",urcorn:"⌝",urcorner:"⌝",urcrop:"⌎",uring:"ů",urtri:"◹",uscr:"𝓊",utdot:"⋰",utilde:"ũ",uuml:"ü",uwangle:"⦧",vBar:"⫨",vBarv:"⫩",vangrt:"⦜",varsubsetneq:"⊊︀",vsubne:"⊊︀",varsubsetneqq:"⫋︀",vsubnE:"⫋︀",varsupsetneq:"⊋︀",vsupne:"⊋︀",varsupsetneqq:"⫌︀",vsupnE:"⫌︀",vcy:"в",veebar:"⊻",veeeq:"≚",vellip:"⋮",vfr:"𝔳",vopf:"𝕧",vscr:"𝓋",vzigzag:"⦚",wcirc:"ŵ",wedbar:"⩟",wedgeq:"≙",weierp:"℘",wp:"℘",wfr:"𝔴",wopf:"𝕨",wscr:"𝓌",xfr:"𝔵",xi:"ξ",xnis:"⋻",xopf:"𝕩",xscr:"𝓍",yacute:"ý",yacy:"я",ycirc:"ŷ",ycy:"ы",yen:"¥",yfr:"𝔶",yicy:"ї",yopf:"𝕪",yscr:"𝓎",yucy:"ю",yuml:"ÿ",zacute:"ź",zcaron:"ž",zcy:"з",zdot:"ż",zeta:"ζ",zfr:"𝔷",zhcy:"ж",zigrarr:"⇝",zopf:"𝕫",zscr:"𝓏",zwj:"‍",zwnj:"‌"},Q2="",Io.ngsp=Q2,c6=[/^\s*$/,/[<>]/,/^[{}]$/,/&(#|[a-z])/i,/^\/\//],c(Wg,"ws"),e5=(Pi=class{static fromArray(e){return e?(Wg("interpolation",e),new Pi(e[0],e[1])):Jc}constructor(e,t){this.start=e,this.end=t}},c(Pi,"t"),Pi),Jc=new e5("{{","}}"),Ni=(Zc=class extends kc{constructor(e,t,r){super(r,e),this.tokenType=t}},c(Zc,"pt"),Zc),d6=(Xc=class{constructor(e,t,r){this.tokens=e,this.errors=t,this.nonNormalizedIcuExpressions=r}},c(Xc,"Pr"),Xc),c(Gg,"Ms"),t5=/\r\n?/g,c(qr,"Ye"),c(cc,"Ls"),c(Kg,"oo"),function(e){e.HEX="hexadecimal",e.DEC="decimal"}(Hi||(Hi={})),ji=(Qc=class{constructor(e){this.error=e}},c(Qc,"ht"),Qc),p6=(e0=class{constructor(e,t,r){this._getTagContentType=t,this._currentTokenStart=null,this._currentTokenType=null,this._expansionCaseStack=[],this._inInterpolation=!1,this._fullNameStack=[],this.tokens=[],this.errors=[],this.nonNormalizedIcuExpressions=[],this._tokenizeIcu=r.tokenizeExpansionForms||!1,this._interpolationConfig=r.interpolationConfig||Jc,this._leadingTriviaCodePoints=r.leadingTriviaChars&&r.leadingTriviaChars.map(a=>a.codePointAt(0)||0),this._canSelfClose=r.canSelfClose||!1,this._allowHtmComponentClosingTags=r.allowHtmComponentClosingTags||!1;let n=r.range||{endPos:e.content.length,startPos:0,startLine:0,startCol:0};this._cursor=r.escapedString?new r5(e,n):new t0(e,n),this._preserveLineEndings=r.preserveLineEndings||!1,this._i18nNormalizeLineEndingsInICUs=r.i18nNormalizeLineEndingsInICUs||!1,this._tokenizeBlocks=r.tokenizeBlocks??!0;try{this._cursor.init()}catch(a){this.handleError(a)}}_processCarriageReturns(e){return this._preserveLineEndings?e:e.replace(t5,` -`)}tokenize(){for(;this._cursor.peek()!==0;){let e=this._cursor.clone();try{if(this._attemptCharCode(60))if(this._attemptCharCode(33))this._attemptStr("[CDATA[")?this._consumeCdata(e):this._attemptStr("--")?this._consumeComment(e):this._attemptStrCaseInsensitive("doctype")?this._consumeDocType(e):this._consumeBogusComment(e);else if(this._attemptCharCode(47))this._consumeTagClose(e);else{let t=this._cursor.clone();this._attemptCharCode(63)?(this._cursor=t,this._consumeBogusComment(e)):this._consumeTagOpen(e)}else this._tokenizeBlocks&&this._attemptCharCode(64)?this._consumeBlockStart(e):this._tokenizeBlocks&&!this._inInterpolation&&!this._isInExpansionCase()&&!this._isInExpansionForm()&&this._attemptCharCode(125)?this._consumeBlockEnd(e):this._tokenizeIcu&&this._tokenizeExpansionForm()||this._consumeWithInterpolation(5,8,()=>this._isTextEnd(),()=>this._isTagStart())}catch(t){this.handleError(t)}}this._beginToken(30),this._endToken([])}_getBlockName(){let e=!1,t=this._cursor.clone();return this._attemptCharCodeUntilFn(r=>jl(r)?!e:pc(r)?(e=!0,!1):!0),this._cursor.getChars(t).trim()}_consumeBlockStart(e){this._beginToken(25,e);let t=this._endToken([this._getBlockName()]);if(this._cursor.peek()===40)if(this._cursor.advance(),this._consumeBlockParameters(),this._attemptCharCodeUntilFn(ye),this._attemptCharCode(41))this._attemptCharCodeUntilFn(ye);else{t.type=29;return}this._attemptCharCode(123)?(this._beginToken(26),this._endToken([])):t.type=29}_consumeBlockEnd(e){this._beginToken(27,e),this._endToken([])}_consumeBlockParameters(){for(this._attemptCharCodeUntilFn(fc);this._cursor.peek()!==41&&this._cursor.peek()!==0;){this._beginToken(28);let e=this._cursor.clone(),t=null,r=0;for(;this._cursor.peek()!==59&&this._cursor.peek()!==0||t!==null;){let n=this._cursor.peek();if(n===92)this._cursor.advance();else if(n===t)t=null;else if(t===null&&ic(n))t=n;else if(n===40&&t===null)r++;else if(n===41&&t===null){if(r===0)break;r>0&&r--}this._cursor.advance()}this._endToken([this._cursor.getChars(e)]),this._attemptCharCodeUntilFn(fc)}}_tokenizeExpansionForm(){if(this.isExpansionFormStart())return this._consumeExpansionFormStart(),!0;if(Xg(this._cursor.peek())&&this._isInExpansionForm())return this._consumeExpansionCaseStart(),!0;if(this._cursor.peek()===125){if(this._isInExpansionCase())return this._consumeExpansionCaseEnd(),!0;if(this._isInExpansionForm())return this._consumeExpansionFormEnd(),!0}return!1}_beginToken(e,t=this._cursor.clone()){this._currentTokenStart=t,this._currentTokenType=e}_endToken(e,t){if(this._currentTokenStart===null)throw new Ni("Programming error - attempted to end a token when there was no start to the token",this._currentTokenType,this._cursor.getSpan(t));if(this._currentTokenType===null)throw new Ni("Programming error - attempted to end a token which has no token type",null,this._cursor.getSpan(this._currentTokenStart));let r={type:this._currentTokenType,parts:e,sourceSpan:(t??this._cursor).getSpan(this._currentTokenStart,this._leadingTriviaCodePoints)};return this.tokens.push(r),this._currentTokenStart=null,this._currentTokenType=null,r}_createError(e,t){this._isInExpansionForm()&&(e+=` (Do you have an unescaped "{" in your template? Use "{{ '{' }}") to escape it.)`);let r=new Ni(e,this._currentTokenType,t);return this._currentTokenStart=null,this._currentTokenType=null,new ji(r)}handleError(e){if(e instanceof Vi&&(e=this._createError(e.msg,this._cursor.getSpan(e.cursor))),e instanceof ji)this.errors.push(e.error);else throw e}_attemptCharCode(e){return this._cursor.peek()===e?(this._cursor.advance(),!0):!1}_attemptCharCodeCaseInsensitive(e){return Qg(this._cursor.peek(),e)?(this._cursor.advance(),!0):!1}_requireCharCode(e){let t=this._cursor.clone();if(!this._attemptCharCode(e))throw this._createError(qr(this._cursor.peek()),this._cursor.getSpan(t))}_attemptStr(e){let t=e.length;if(this._cursor.charsLeft()this._attemptStr("-->")),this._beginToken(11),this._requireStr("-->"),this._endToken([])}_consumeBogusComment(e){this._beginToken(10,e),this._endToken([]),this._consumeRawText(!1,()=>this._cursor.peek()===62),this._beginToken(11),this._cursor.advance(),this._endToken([])}_consumeCdata(e){this._beginToken(12,e),this._endToken([]),this._consumeRawText(!1,()=>this._attemptStr("]]>")),this._beginToken(13),this._requireStr("]]>"),this._endToken([])}_consumeDocType(e){this._beginToken(18,e),this._endToken([]),this._consumeRawText(!1,()=>this._cursor.peek()===62),this._beginToken(19),this._cursor.advance(),this._endToken([])}_consumePrefixAndName(){let e=this._cursor.clone(),t="";for(;this._cursor.peek()!==58&&!Yg(this._cursor.peek());)this._cursor.advance();let r;this._cursor.peek()===58?(t=this._cursor.getChars(e),this._cursor.advance(),r=this._cursor.clone()):r=e,this._requireCharCodeUntilFn(dc,t===""?0:1);let n=this._cursor.getChars(r);return[t,n]}_consumeTagOpen(e){let t,r,n,a=[];try{if(!Vl(this._cursor.peek()))throw this._createError(qr(this._cursor.peek()),this._cursor.getSpan(e));for(n=this._consumeTagOpenStart(e),r=n.parts[0],t=n.parts[1],this._attemptCharCodeUntilFn(ye);this._cursor.peek()!==47&&this._cursor.peek()!==62&&this._cursor.peek()!==60&&this._cursor.peek()!==0;){let[i,s]=this._consumeAttributeName();if(this._attemptCharCodeUntilFn(ye),this._attemptCharCode(61)){this._attemptCharCodeUntilFn(ye);let u=this._consumeAttributeValue();a.push({prefix:i,name:s,value:u})}else a.push({prefix:i,name:s});this._attemptCharCodeUntilFn(ye)}this._consumeTagOpenEnd()}catch(i){if(i instanceof ji){n?n.type=4:(this._beginToken(5,e),this._endToken(["<"]));return}throw i}if(this._canSelfClose&&this.tokens[this.tokens.length-1].type===2)return;let o=this._getTagContentType(t,r,this._fullNameStack.length>0,a);this._handleFullNameStackForTagOpen(r,t),o===ht.RAW_TEXT?this._consumeRawTextWithTagClose(r,t,!1):o===ht.ESCAPABLE_RAW_TEXT&&this._consumeRawTextWithTagClose(r,t,!0)}_consumeRawTextWithTagClose(e,t,r){this._consumeRawText(r,()=>!this._attemptCharCode(60)||!this._attemptCharCode(47)||(this._attemptCharCodeUntilFn(ye),!this._attemptStrCaseInsensitive(e?`${e}:${t}`:t))?!1:(this._attemptCharCodeUntilFn(ye),this._attemptCharCode(62))),this._beginToken(3),this._requireCharCodeUntilFn(n=>n===62,3),this._cursor.advance(),this._endToken([e,t]),this._handleFullNameStackForTagClose(e,t)}_consumeTagOpenStart(e){this._beginToken(0,e);let t=this._consumePrefixAndName();return this._endToken(t)}_consumeAttributeName(){let e=this._cursor.peek();if(e===39||e===34)throw this._createError(qr(e),this._cursor.getSpan());this._beginToken(14);let t=this._consumePrefixAndName();return this._endToken(t),t}_consumeAttributeValue(){let e;if(this._cursor.peek()===39||this._cursor.peek()===34){let t=this._cursor.peek();this._consumeQuote(t);let r=c(()=>this._cursor.peek()===t,"n");e=this._consumeWithInterpolation(16,17,r,r),this._consumeQuote(t)}else{let t=c(()=>dc(this._cursor.peek()),"r");e=this._consumeWithInterpolation(16,17,t,t)}return e}_consumeQuote(e){this._beginToken(15),this._requireCharCode(e),this._endToken([String.fromCodePoint(e)])}_consumeTagOpenEnd(){let e=this._attemptCharCode(47)?2:1;this._beginToken(e),this._requireCharCode(62),this._endToken([])}_consumeTagClose(e){if(this._beginToken(3,e),this._attemptCharCodeUntilFn(ye),this._allowHtmComponentClosingTags&&this._attemptCharCode(47))this._attemptCharCodeUntilFn(ye),this._requireCharCode(62),this._endToken([]);else{let[t,r]=this._consumePrefixAndName();this._attemptCharCodeUntilFn(ye),this._requireCharCode(62),this._endToken([t,r]),this._handleFullNameStackForTagClose(t,r)}}_consumeExpansionFormStart(){this._beginToken(20),this._requireCharCode(123),this._endToken([]),this._expansionCaseStack.push(20),this._beginToken(7);let e=this._readUntil(44),t=this._processCarriageReturns(e);if(this._i18nNormalizeLineEndingsInICUs)this._endToken([t]);else{let n=this._endToken([e]);t!==e&&this.nonNormalizedIcuExpressions.push(n)}this._requireCharCode(44),this._attemptCharCodeUntilFn(ye),this._beginToken(7);let r=this._readUntil(44);this._endToken([r]),this._requireCharCode(44),this._attemptCharCodeUntilFn(ye)}_consumeExpansionCaseStart(){this._beginToken(21);let e=this._readUntil(123).trim();this._endToken([e]),this._attemptCharCodeUntilFn(ye),this._beginToken(22),this._requireCharCode(123),this._endToken([]),this._attemptCharCodeUntilFn(ye),this._expansionCaseStack.push(22)}_consumeExpansionCaseEnd(){this._beginToken(23),this._requireCharCode(125),this._endToken([]),this._attemptCharCodeUntilFn(ye),this._expansionCaseStack.pop()}_consumeExpansionFormEnd(){this._beginToken(24),this._requireCharCode(125),this._endToken([]),this._expansionCaseStack.pop()}_consumeWithInterpolation(e,t,r,n){this._beginToken(e);let a=[];for(;!r();){let i=this._cursor.clone();this._interpolationConfig&&this._attemptStr(this._interpolationConfig.start)?(this._endToken([this._processCarriageReturns(a.join(""))],i),a.length=0,this._consumeInterpolation(t,i,n),this._beginToken(e)):this._cursor.peek()===38?(this._endToken([this._processCarriageReturns(a.join(""))]),a.length=0,this._consumeEntity(e),this._beginToken(e)):a.push(this._readChar())}this._inInterpolation=!1;let o=this._processCarriageReturns(a.join(""));return this._endToken([o]),o}_consumeInterpolation(e,t,r){let n=[];this._beginToken(e,t),n.push(this._interpolationConfig.start);let a=this._cursor.clone(),o=null,i=!1;for(;this._cursor.peek()!==0&&(r===null||!r());){let s=this._cursor.clone();if(this._isTagStart()){this._cursor=s,n.push(this._getProcessedChars(a,s)),this._endToken(n);return}if(o===null)if(this._attemptStr(this._interpolationConfig.end)){n.push(this._getProcessedChars(a,s)),n.push(this._interpolationConfig.end),this._endToken(n);return}else this._attemptStr("//")&&(i=!0);let u=this._cursor.peek();this._cursor.advance(),u===92?this._cursor.advance():u===o?o=null:!i&&o===null&&ic(u)&&(o=u)}n.push(this._getProcessedChars(a,this._cursor)),this._endToken(n)}_getProcessedChars(e,t){return this._processCarriageReturns(t.getChars(e))}_isTextEnd(){return!!(this._isTagStart()||this._cursor.peek()===0||this._tokenizeIcu&&!this._inInterpolation&&(this.isExpansionFormStart()||this._cursor.peek()===125&&this._isInExpansionCase())||this._tokenizeBlocks&&!this._inInterpolation&&!this._isInExpansion()&&(this._isBlockStart()||this._cursor.peek()===125))}_isTagStart(){if(this._cursor.peek()===60){let e=this._cursor.clone();e.advance();let t=e.peek();if(97<=t&&t<=122||65<=t&&t<=90||t===47||t===33)return!0}return!1}_isBlockStart(){if(this._tokenizeBlocks&&this._cursor.peek()===64){let e=this._cursor.clone();if(e.advance(),pc(e.peek()))return!0}return!1}_readUntil(e){let t=this._cursor.clone();return this._attemptUntilChar(e),this._cursor.getChars(t)}_isInExpansion(){return this._isInExpansionCase()||this._isInExpansionForm()}_isInExpansionCase(){return this._expansionCaseStack.length>0&&this._expansionCaseStack[this._expansionCaseStack.length-1]===22}_isInExpansionForm(){return this._expansionCaseStack.length>0&&this._expansionCaseStack[this._expansionCaseStack.length-1]===20}isExpansionFormStart(){if(this._cursor.peek()!==123)return!1;if(this._interpolationConfig){let e=this._cursor.clone(),t=this._attemptStr(this._interpolationConfig.start);return this._cursor=e,!t}return!0}_handleFullNameStackForTagOpen(e,t){let r=Ya(e,t);(this._fullNameStack.length===0||this._fullNameStack[this._fullNameStack.length-1]===r)&&this._fullNameStack.push(r)}_handleFullNameStackForTagClose(e,t){let r=Ya(e,t);this._fullNameStack.length!==0&&this._fullNameStack[this._fullNameStack.length-1]===r&&this._fullNameStack.pop()}},c(e0,"Nr"),e0),c(ye,"k"),c(dc,"Fs"),c(Yg,"uo"),c(Jg,"lo"),c(Zg,"co"),c(Xg,"po"),c(Qg,"ho"),c(Dd,"Ps"),c(pc,"Ns"),c(fc,"Is"),c(Dw,"fo"),t0=(Xa=class{constructor(e,t){if(e instanceof Xa){this.file=e.file,this.input=e.input,this.end=e.end;let r=e.state;this.state={peek:r.peek,offset:r.offset,line:r.line,column:r.column}}else{if(!t)throw new Error("Programming error: the range argument must be provided with a file argument.");this.file=e,this.input=e.content,this.end=t.endPos,this.state={peek:-1,offset:t.startPos,line:t.startLine,column:t.startCol}}}clone(){return new Xa(this)}peek(){return this.state.peek}charsLeft(){return this.end-this.state.offset}diff(e){return this.state.offset-e.state.offset}advance(){this.advanceState(this.state)}init(){this.updatePeek(this.state)}getSpan(e,t){e=e||this;let r=e;if(t)for(;this.diff(e)>0&&t.indexOf(e.peek())!==-1;)r===e&&(e=e.clone()),e.advance();let n=this.locationFromCursor(e),a=this.locationFromCursor(this),o=r!==e?this.locationFromCursor(r):n;return new Z(n,a,o)}getChars(e){return this.input.substring(e.state.offset,this.state.offset)}charAt(e){return this.input.charCodeAt(e)}advanceState(e){if(e.offset>=this.end)throw this.state=e,new Vi('Unexpected character "EOF"',this);let t=this.charAt(e.offset);t===10?(e.line++,e.column=0):ac(t)||e.column++,e.offset++,this.updatePeek(e)}updatePeek(e){e.peek=e.offset>=this.end?0:this.charAt(e.offset)}locationFromCursor(e){return new Jl(e.file,e.state.offset,e.state.line,e.state.column)}},c(Xa,"t"),Xa),r5=(Qa=class extends t0{constructor(e,t){e instanceof Qa?(super(e),this.internalState={...e.internalState}):(super(e,t),this.internalState=this.state)}advance(){this.state=this.internalState,super.advance(),this.processEscapeSequence()}init(){super.init(),this.processEscapeSequence()}clone(){return new Qa(this)}getChars(e){let t=e.clone(),r="";for(;t.internalState.offsetthis.internalState.peek,"e");if(e()===92)if(this.internalState={...this.state},this.advanceState(this.internalState),e()===110)this.state.peek=10;else if(e()===114)this.state.peek=13;else if(e()===118)this.state.peek=11;else if(e()===116)this.state.peek=9;else if(e()===98)this.state.peek=8;else if(e()===102)this.state.peek=12;else if(e()===117)if(this.advanceState(this.internalState),e()===123){this.advanceState(this.internalState);let t=this.clone(),r=0;for(;e()!==125;)this.advanceState(this.internalState),r++;this.state.peek=this.decodeHexDigits(t,r)}else{let t=this.clone();this.advanceState(this.internalState),this.advanceState(this.internalState),this.advanceState(this.internalState),this.state.peek=this.decodeHexDigits(t,4)}else if(e()===120){this.advanceState(this.internalState);let t=this.clone();this.advanceState(this.internalState),this.state.peek=this.decodeHexDigits(t,2)}else if(oc(e())){let t="",r=0,n=this.clone();for(;oc(e())&&r<3;)n=this.clone(),t+=String.fromCodePoint(e()),this.advanceState(this.internalState),r++;this.state.peek=parseInt(t,8),this.internalState=n.internalState}else ac(this.internalState.peek)?(this.advanceState(this.internalState),this.state=this.internalState):this.state.peek=this.internalState.peek}decodeHexDigits(e,t){let r=this.input.slice(e.internalState.offset,e.internalState.offset+t),n=parseInt(r,16);if(isNaN(n))throw e.state=e.internalState,new Vi("Invalid hexadecimal escape sequence",e);return n}},c(Qa,"t"),Qa),Vi=(r0=class{constructor(e,t){this.msg=e,this.cursor=t}},c(r0,"ft"),r0),We=(Ui=class extends kc{static create(e,t,r){return new Ui(e,t,r)}constructor(e,t,r){super(t,r),this.elementName=e}},c(Ui,"t"),Ui),n5=(n0=class{constructor(e,t){this.rootNodes=e,this.errors=t}},c(n0,"Or"),n0),a5=(a0=class{constructor(e){this.getTagDefinition=e}parse(e,t,r,n=!1,a){let o=c(f=>(v,...g)=>f(v.toLowerCase(),...g),"a"),i=n?this.getTagDefinition:o(this.getTagDefinition),s=c(f=>i(f).getContentType(),"u"),u=n?a:o(a),d=Gg(e,t,a?(f,v,g,b)=>{let C=u(f,v,g,b);return C!==void 0?C:s(f)}:s,r),p=r&&r.canSelfClose||!1,h=r&&r.allowHtmComponentClosingTags||!1,m=new o5(d.tokens,i,p,h,n);return m.build(),new n5(m.rootNodes,d.errors.concat(m.errors))}},c(a0,"Qt"),a0),o5=(qi=class{constructor(e,t,r,n,a){this.tokens=e,this.getTagDefinition=t,this.canSelfClose=r,this.allowHtmComponentClosingTags=n,this.isTagNameCaseSensitive=a,this._index=-1,this._containerStack=[],this.rootNodes=[],this.errors=[],this._advance()}build(){for(;this._peek.type!==30;)this._peek.type===0||this._peek.type===4?this._consumeStartTag(this._advance()):this._peek.type===3?(this._closeVoidElement(),this._consumeEndTag(this._advance())):this._peek.type===12?(this._closeVoidElement(),this._consumeCdata(this._advance())):this._peek.type===10?(this._closeVoidElement(),this._consumeComment(this._advance())):this._peek.type===5||this._peek.type===7||this._peek.type===6?(this._closeVoidElement(),this._consumeText(this._advance())):this._peek.type===20?this._consumeExpansion(this._advance()):this._peek.type===25?(this._closeVoidElement(),this._consumeBlockOpen(this._advance())):this._peek.type===27?(this._closeVoidElement(),this._consumeBlockClose(this._advance())):this._peek.type===29?(this._closeVoidElement(),this._consumeIncompleteBlock(this._advance())):this._peek.type===18?this._consumeDocType(this._advance()):this._advance();for(let e of this._containerStack)e instanceof Wr&&this.errors.push(We.create(e.name,e.sourceSpan,`Unclosed block "${e.name}"`))}_advance(){let e=this._peek;return this._index0)return this.errors=this.errors.concat(a.errors),null;let o=new Z(e.sourceSpan.start,n.sourceSpan.end,e.sourceSpan.fullStart),i=new Z(t.sourceSpan.start,n.sourceSpan.end,t.sourceSpan.fullStart);return new Y2(e.parts[0],a.rootNodes,o,e.sourceSpan,i)}_collectExpansionExpTokens(e){let t=[],r=[22];for(;;){if((this._peek.type===20||this._peek.type===22)&&r.push(this._peek.type),this._peek.type===23)if(hc(r,22)){if(r.pop(),r.length===0)return t}else return this.errors.push(We.create(null,e.sourceSpan,"Invalid ICU message. Missing '}'.")),null;if(this._peek.type===24)if(hc(r,20))r.pop();else return this.errors.push(We.create(null,e.sourceSpan,"Invalid ICU message. Missing '}'.")),null;if(this._peek.type===30)return this.errors.push(We.create(null,e.sourceSpan,"Invalid ICU message. Missing '}'.")),null;t.push(this._advance())}}_getText(e){let t=e.parts[0];if(t.length>0&&t[0]==` -`){let r=this._getClosestParentElement();r!=null&&r.children.length==0&&this.getTagDefinition(r.name).ignoreFirstLf&&(t=t.substring(1))}return t}_consumeText(e){let t=[e],r=e.sourceSpan,n=e.parts[0];if(n.length>0&&n[0]===` -`){let a=this._getContainer();a!=null&&a.children.length===0&&this.getTagDefinition(a.name).ignoreFirstLf&&(n=n.substring(1),t[0]={type:e.type,sourceSpan:e.sourceSpan,parts:[n]})}for(;this._peek.type===8||this._peek.type===5||this._peek.type===9;)e=this._advance(),t.push(e),e.type===8?n+=e.parts.join("").replace(/&([^;]+);/g,mc):e.type===9?n+=e.parts[0]:n+=e.parts.join("");if(n.length>0){let a=e.sourceSpan;this._addToParent(new W2(n,new Z(r.start,a.end,r.fullStart,r.details),t))}}_closeVoidElement(){let e=this._getContainer();e instanceof rr&&this.getTagDefinition(e.name).isVoid&&this._containerStack.pop()}_consumeStartTag(e){let[t,r]=e.parts,n=[];for(;this._peek.type===14;)n.push(this._consumeAttr(this._advance()));let a=this._getElementFullName(t,r,this._getClosestParentElement()),o=!1;if(this._peek.type===2){this._advance(),o=!0;let m=this.getTagDefinition(a);this.canSelfClose||m.canSelfClose||vo(a)!==null||m.isVoid||this.errors.push(We.create(a,e.sourceSpan,`Only void, custom and foreign elements can be self closed "${e.parts[1]}"`))}else this._peek.type===1&&(this._advance(),o=!1);let i=this._peek.sourceSpan.fullStart,s=new Z(e.sourceSpan.start,i,e.sourceSpan.fullStart),u=new Z(e.sourceSpan.start,i,e.sourceSpan.fullStart),d=new Z(e.sourceSpan.start.moveBy(1),e.sourceSpan.end),p=new rr(a,n,[],s,u,void 0,d),h=this._getContainer();this._pushContainer(p,h instanceof rr&&this.getTagDefinition(h.name).isClosedByChild(p.name)),o?this._popContainer(a,rr,s):e.type===4&&(this._popContainer(a,rr,null),this.errors.push(We.create(a,s,`Opening tag "${a}" not terminated.`)))}_pushContainer(e,t){t&&this._containerStack.pop(),this._addToParent(e),this._containerStack.push(e)}_consumeEndTag(e){let t=this.allowHtmComponentClosingTags&&e.parts.length===0?null:this._getElementFullName(e.parts[0],e.parts[1],this._getClosestParentElement());if(t&&this.getTagDefinition(t).isVoid)this.errors.push(We.create(t,e.sourceSpan,`Void elements do not have end tags "${e.parts[1]}"`));else if(!this._popContainer(t,rr,e.sourceSpan)){let r=`Unexpected closing tag "${t}". It may happen when the tag has already been closed by another tag. For more info see https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags`;this.errors.push(We.create(t,e.sourceSpan,r))}}_popContainer(e,t,r){let n=!1;for(let a=this._containerStack.length-1;a>=0;a--){let o=this._containerStack[a];if(vo(o.name)?o.name===e:(e==null||o.name.toLowerCase()===e.toLowerCase())&&o instanceof t)return o.endSourceSpan=r,o.sourceSpan.end=r!==null?r.end:o.sourceSpan.end,this._containerStack.splice(a,this._containerStack.length-a),!n;(o instanceof Wr||o instanceof rr&&!this.getTagDefinition(o.name).closedByParent)&&(n=!0)}return!1}_consumeAttr(e){let t=Ya(e.parts[0],e.parts[1]),r=e.sourceSpan.end,n;this._peek.type===15&&(n=this._advance());let a="",o=[],i,s;if(this._peek.type===16)for(i=this._peek.sourceSpan,s=this._peek.sourceSpan.end;this._peek.type===16||this._peek.type===17||this._peek.type===9;){let d=this._advance();o.push(d),d.type===17?a+=d.parts.join("").replace(/&([^;]+);/g,mc):d.type===9?a+=d.parts[0]:a+=d.parts.join(""),s=r=d.sourceSpan.end}this._peek.type===15&&(s=r=this._advance().sourceSpan.end);let u=i&&s&&new Z((n==null?void 0:n.sourceSpan.start)??i.start,s,(n==null?void 0:n.sourceSpan.fullStart)??i.fullStart);return new J2(t,a,new Z(e.sourceSpan.start,r,e.sourceSpan.fullStart),e.sourceSpan,u,o.length>0?o:void 0,void 0)}_consumeBlockOpen(e){let t=[];for(;this._peek.type===28;){let i=this._advance();t.push(new Kc(i.parts[0],i.sourceSpan))}this._peek.type===26&&this._advance();let r=this._peek.sourceSpan.fullStart,n=new Z(e.sourceSpan.start,r,e.sourceSpan.fullStart),a=new Z(e.sourceSpan.start,r,e.sourceSpan.fullStart),o=new Wr(e.parts[0],t,[],n,a);this._pushContainer(o,!1)}_consumeBlockClose(e){this._popContainer(null,Wr,e.sourceSpan)||this.errors.push(We.create(null,e.sourceSpan,'Unexpected closing block. The block may have been closed earlier. If you meant to write the } character, you should use the "}" HTML entity instead.'))}_consumeIncompleteBlock(e){let t=[];for(;this._peek.type===28;){let i=this._advance();t.push(new Kc(i.parts[0],i.sourceSpan))}let r=this._peek.sourceSpan.fullStart,n=new Z(e.sourceSpan.start,r,e.sourceSpan.fullStart),a=new Z(e.sourceSpan.start,r,e.sourceSpan.fullStart),o=new Wr(e.parts[0],t,[],n,a);this._pushContainer(o,!1),this._popContainer(null,Wr,null),this.errors.push(We.create(e.parts[0],n,`Incomplete block "${e.parts[0]}". If you meant to write the @ character, you should use the "@" HTML entity instead.`))}_getContainer(){return this._containerStack.length>0?this._containerStack[this._containerStack.length-1]:null}_getClosestParentElement(){for(let e=this._containerStack.length-1;e>-1;e--)if(this._containerStack[e]instanceof rr)return this._containerStack[e];return null}_addToParent(e){let t=this._getContainer();t===null?this.rootNodes.push(e):t.children.push(e)}_getElementFullName(e,t,r){if(e===""&&(e=this.getTagDefinition(t).implicitNamespacePrefix||"",e===""&&r!=null)){let n=Lo(r.name)[1];this.getTagDefinition(n).preventNamespaceInheritance||(e=vo(r.name))}return Ya(e,t)}},c(qi,"t"),qi),c(hc,"qs"),c(mc,"Hs"),i5=(o0=class extends a5{constructor(){super(Ul)}parse(e,t,r,n=!1,a){return super.parse(e,t,r,n,a)}},c(o0,"Xt"),o0),Wi=null,f6=c(()=>(Wi||(Wi=new i5),Wi),"mo"),c(Sd,"Hr"),c(e2,"go"),h6=e2,m6=new RegExp("^(?-{3}|\\+{3})(?[^\\n]*)\\n(?:|(?.*?)\\n)(?\\k|\\.{3})[^\\S\\n]*(?:\\n|$)","s"),c(t2,"So"),g6=t2,eo={attrs:!0,children:!0,cases:!0,expression:!0},i0=new Set(["parent"]),v6=(Gr=class{constructor(e={}){for(let t of new Set([...i0,...Object.keys(e)]))this.setProperty(t,e[t])}setProperty(e,t){if(this[e]!==t){if(e in eo&&(t=t.map(r=>this.createChild(r))),!i0.has(e)){this[e]=t;return}Object.defineProperty(this,e,{value:t,enumerable:!1,configurable:!0})}}map(e){let t;for(let r in eo){let n=this[r];if(n){let a=r2(n,o=>o.map(e));t!==n&&(t||(t=new Gr({parent:this.parent})),t.setProperty(r,a))}}if(t)for(let r in this)r in eo||(t[r]=this[r]);return e(t||this)}walk(e){for(let t in eo){let r=this[t];if(r)for(let n=0;n[e.fullName,e.value]))}},c(Gr,"t"),Gr),c(r2,"_o"),y6=[{regex:/^(\[if([^\]]*)]>)(.*?)a==="lang"&&o!=="html"&&o!==""&&o!==void 0))}}),c5=Ja({name:"lwc",canSelfClose:!1}),d5={html:T2},w6=yc});function E6(e){let t=e.indexOf("\r");return t>=0?e.charAt(t+1)===` -`?"crlf":"cr":"lf"}function Xs(e){switch(e){case"cr":return"\r";case"crlf":return`\r -`;default:return` -`}}function xf(e,t){let r;switch(t){case` -`:r=/\n/g;break;case"\r":r=/\r/g;break;case`\r -`:r=/\r\n/g;break;default:throw new Error(`Unexpected "eol" ${JSON.stringify(t)}.`)}let n=e.match(r);return n?n.length:0}function x6(e){return gi(!1,e,/\r\n?/g,` -`)}function p5(e){if(typeof e=="string")return Or;if(Array.isArray(e))return dr;if(!e)return;let{type:t}=e;if(zf.has(t))return t}function f5(e){let t=e===null?"null":typeof e;if(t!=="string"&&t!=="object")return`Unexpected doc '${t}', -Expected it to be 'string' or 'object'.`;if(Lr(e))throw new Error("doc is valid.");let r=Object.prototype.toString.call(e);if(r!=="[object Object]")return`Unexpected doc '${r}'.`;let n=c8([...zf].map(a=>`'${a}'`));return`Unexpected doc.type '${e.type}'. -Expected it to be ${n}.`}function h5(e,t,r,n){let a=[e];for(;a.length>0;){let o=a.pop();if(o===Xd){r(a.pop());continue}r&&a.push(o,Xd);let i=Lr(o);if(!i)throw new pn(o);if((t==null?void 0:t(o))!==!1)switch(i){case dr:case Je:{let s=i===dr?o:o.parts;for(let u=s.length,d=u-1;d>=0;--d)a.push(s[d]);break}case He:a.push(o.flatContents,o.breakContents);break;case Le:if(n&&o.expandedStates)for(let s=o.expandedStates.length,u=s-1;u>=0;--u)a.push(o.expandedStates[u]);else a.push(o.contents);break;case Gt:case Wt:case Kt:case bt:case Yt:a.push(o.contents);break;case Or:case kr:case jt:case Vt:case we:case Ze:break;default:throw new pn(o)}}}function Vo(e){return wt(e),{type:Wt,contents:e}}function dn(e,t){return wt(t),{type:Gt,contents:t,n:e}}function Td(e,t={}){return wt(e),tu(t.expandedStates,!0),{type:Le,id:t.id,contents:e,break:!!t.shouldBreak,expandedStates:t.expandedStates}}function m5(e){return dn(Number.NEGATIVE_INFINITY,e)}function g5(e){return dn({type:"root"},e)}function v5(e){return dn(-1,e)}function y5(e,t){return Td(e[0],{...t,expandedStates:e})}function Rd(e){return tu(e),{type:Je,parts:e}}function b5(e,t="",r={}){return wt(e),t!==""&&wt(t),{type:He,breakContents:e,flatContents:t,groupId:r.groupId}}function w5(e,t){return wt(e),{type:Kt,contents:e,groupId:t.groupId,negate:t.negate}}function Zl(e){return wt(e),{type:Yt,contents:e}}function Bd(e,t){wt(e),tu(t);let r=[];for(let n=0;n0){for(let a=0;a0?`, { ${p.join(", ")} }`:"";return`indentIfBreak(${n(o.contents)}${h})`}if(o.type===Le){let p=[];o.break&&o.break!=="propagated"&&p.push("shouldBreak: true"),o.id&&p.push(`id: ${a(o.id)}`);let h=p.length>0?`, { ${p.join(", ")} }`:"";return o.expandedStates?`conditionalGroup([${o.expandedStates.map(m=>n(m)).join(",")}]${h})`:`group(${n(o.contents)}${h})`}if(o.type===Je)return`fill([${o.parts.map(p=>n(p)).join(", ")}])`;if(o.type===Yt)return"lineSuffix("+n(o.contents)+")";if(o.type===Vt)return"lineSuffixBoundary";if(o.type===bt)return`label(${JSON.stringify(o.label)}, ${n(o.contents)})`;throw new Error("Unknown doc type "+o.type)}function a(o){if(typeof o!="symbol")return JSON.stringify(String(o));if(o in t)return t[o];let i=o.description||"symbol";for(let s=0;;s++){let u=i+(s>0?` #${s}`:"");if(!r.has(u))return r.add(u),t[o]=`Symbol.for(${JSON.stringify(u)})`}}}function x5(e){return e===12288||e>=65281&&e<=65376||e>=65504&&e<=65510}function C5(e){return e>=4352&&e<=4447||e===8986||e===8987||e===9001||e===9002||e>=9193&&e<=9196||e===9200||e===9203||e===9725||e===9726||e===9748||e===9749||e>=9800&&e<=9811||e===9855||e===9875||e===9889||e===9898||e===9899||e===9917||e===9918||e===9924||e===9925||e===9934||e===9940||e===9962||e===9970||e===9971||e===9973||e===9978||e===9981||e===9989||e===9994||e===9995||e===10024||e===10060||e===10062||e>=10067&&e<=10069||e===10071||e>=10133&&e<=10135||e===10160||e===10175||e===11035||e===11036||e===11088||e===11093||e>=11904&&e<=11929||e>=11931&&e<=12019||e>=12032&&e<=12245||e>=12272&&e<=12287||e>=12289&&e<=12350||e>=12353&&e<=12438||e>=12441&&e<=12543||e>=12549&&e<=12591||e>=12593&&e<=12686||e>=12688&&e<=12771||e>=12783&&e<=12830||e>=12832&&e<=12871||e>=12880&&e<=19903||e>=19968&&e<=42124||e>=42128&&e<=42182||e>=43360&&e<=43388||e>=44032&&e<=55203||e>=63744&&e<=64255||e>=65040&&e<=65049||e>=65072&&e<=65106||e>=65108&&e<=65126||e>=65128&&e<=65131||e>=94176&&e<=94180||e===94192||e===94193||e>=94208&&e<=100343||e>=100352&&e<=101589||e>=101632&&e<=101640||e>=110576&&e<=110579||e>=110581&&e<=110587||e===110589||e===110590||e>=110592&&e<=110882||e===110898||e>=110928&&e<=110930||e===110933||e>=110948&&e<=110951||e>=110960&&e<=111355||e===126980||e===127183||e===127374||e>=127377&&e<=127386||e>=127488&&e<=127490||e>=127504&&e<=127547||e>=127552&&e<=127560||e===127568||e===127569||e>=127584&&e<=127589||e>=127744&&e<=127776||e>=127789&&e<=127797||e>=127799&&e<=127868||e>=127870&&e<=127891||e>=127904&&e<=127946||e>=127951&&e<=127955||e>=127968&&e<=127984||e===127988||e>=127992&&e<=128062||e===128064||e>=128066&&e<=128252||e>=128255&&e<=128317||e>=128331&&e<=128334||e>=128336&&e<=128359||e===128378||e===128405||e===128406||e===128420||e>=128507&&e<=128591||e>=128640&&e<=128709||e===128716||e>=128720&&e<=128722||e>=128725&&e<=128727||e>=128732&&e<=128735||e===128747||e===128748||e>=128756&&e<=128764||e>=128992&&e<=129003||e===129008||e>=129292&&e<=129338||e>=129340&&e<=129349||e>=129351&&e<=129535||e>=129648&&e<=129660||e>=129664&&e<=129672||e>=129680&&e<=129725||e>=129727&&e<=129733||e>=129742&&e<=129755||e>=129760&&e<=129768||e>=129776&&e<=129784||e>=131072&&e<=196605||e>=196608&&e<=262141}function D5(e){if(!e)return 0;if(!f8.test(e))return e.length;e=e.replace(d8()," ");let t=0;for(let r of e){let n=r.codePointAt(0);n<=31||n>=127&&n<=159||n>=768&&n<=879||(t+=p8(n)?1:2)}return t}function Uo(e,t){if(typeof e=="string")return t(e);let r=new Map;return n(e);function n(o){if(r.has(o))return r.get(o);let i=a(o);return r.set(o,i),i}function a(o){switch(Lr(o)){case dr:return t(o.map(n));case Je:return t({...o,parts:o.parts.map(n)});case He:return t({...o,breakContents:n(o.breakContents),flatContents:n(o.flatContents)});case Le:{let{expandedStates:i,contents:s}=o;return i?(i=i.map(n),s=i[0]):s=n(s),t({...o,contents:s,expandedStates:i})}case Gt:case Wt:case Kt:case bt:case Yt:return t({...o,contents:n(o.contents)});case Or:case kr:case jt:case Vt:case we:case Ze:return t(o);default:throw new pn(o)}}}function Xl(e,t,r){let n=r,a=!1;function o(i){if(a)return!1;let s=t(i);s!==void 0&&(a=!0,n=s)}return c(o,"u"),rs(e,o),n}function D6(e){if(e.type===Le&&e.break||e.type===we&&e.hard||e.type===Ze)return!0}function S5(e){return Xl(e,D6,!1)}function $d(e){if(e.length>0){let t=me(!1,e,-1);!t.expandedStates&&!t.break&&(t.break="propagated")}return null}function S6(e){let t=new Set,r=[];function n(o){if(o.type===Ze&&$d(r),o.type===Le){if(r.push(o),t.has(o))return!1;t.add(o)}}c(n,"n");function a(o){o.type===Le&&r.pop().break&&$d(r)}c(a,"o"),rs(e,n,a,!0)}function A6(e){return e.type===we&&!e.hard?e.soft?"":" ":e.type===He?e.flatContents:e}function A5(e){return Uo(e,A6)}function Od(e){for(e=[...e];e.length>=2&&me(!1,e,-2).type===we&&me(!1,e,-1).type===Ze;)e.length-=2;if(e.length>0){let t=Jn(me(!1,e,-1));e[e.length-1]=t}return e}function Jn(e){switch(Lr(e)){case Gt:case Wt:case Kt:case Le:case Yt:case bt:{let t=Jn(e.contents);return{...e,contents:t}}case He:return{...e,breakContents:Jn(e.breakContents),flatContents:Jn(e.flatContents)};case Je:return{...e,parts:Od(e.parts)};case dr:return Od(e);case Or:return e.replace(/[\n\r]*$/,"");case kr:case jt:case Vt:case we:case Ze:break;default:throw new pn(e)}return e}function Ld(e){return Jn(_6(e))}function k6(e){switch(Lr(e)){case Je:if(e.parts.every(t=>t===""))return"";break;case Le:if(!e.contents&&!e.id&&!e.break&&!e.expandedStates)return"";if(e.contents.type===Le&&e.contents.id===e.id&&e.contents.break===e.break&&e.contents.expandedStates===e.expandedStates)return e.contents;break;case Gt:case Wt:case Kt:case Yt:if(!e.contents)return"";break;case He:if(!e.flatContents&&!e.breakContents)return"";break;case dr:{let t=[];for(let r of e){if(!r)continue;let[n,...a]=Array.isArray(r)?r:[r];typeof n=="string"&&typeof me(!1,t,-1)=="string"?t[t.length-1]+=n:t.push(n),t.push(...a)}return t.length===0?"":t.length===1?t[0]:t}case Or:case kr:case jt:case Vt:case we:case bt:case Ze:break;default:throw new pn(e)}return e}function _6(e){return Uo(e,t=>k6(t))}function k5(e,t=e1){return Uo(e,r=>typeof r=="string"?Bd(t,r.split(` -`)):r)}function F6(e){if(e.type===we)return!0}function _5(e){return Xl(e,F6,!1)}function Cf(e,t){return e.type===bt?{...e,contents:t(e.contents)}:t(e)}function Df(){return{value:"",length:0,queue:[]}}function I6(e,t){return Ql(e,{type:"indent"},t)}function T6(e,t,r){return t===Number.NEGATIVE_INFINITY?e.root||Df():t<0?Ql(e,{type:"dedent"},r):t?t.type==="root"?{...e,root:e}:Ql(e,{type:typeof t=="string"?"stringAlign":"numberAlign",n:t},r):e}function Ql(e,t,r){let n=t.type==="dedent"?e.queue.slice(0,-1):[...e.queue,t],a="",o=0,i=0,s=0;for(let v of n)switch(v.type){case"indent":p(),r.useTabs?u(1):d(r.tabWidth);break;case"stringAlign":p(),a+=v.n,o+=v.n.length;break;case"numberAlign":i+=1,s+=v.n;break;default:throw new Error(`Unexpected type '${v.type}'`)}return m(),{...e,value:a,length:o,queue:n};function u(v){a+=" ".repeat(v),o+=r.tabWidth*v}function d(v){a+=" ".repeat(v),o+=v}function p(){r.useTabs?h():m()}function h(){i>0&&u(i),f()}function m(){s>0&&d(s),f()}function f(){i=0,s=0}}function es(e){let t=0,r=0,n=e.length;e:for(;n--;){let a=e[n];if(a===Zn){r++;continue}for(let o=a.length-1;o>=0;o--){let i=a[o];if(i===" "||i===" ")t++;else{e[n]=a.slice(0,o+1);break e}}}if(t>0||r>0)for(e.length=n+1;r-- >0;)e.push(Zn);return t}function wo(e,t,r,n,a,o){if(r===Number.POSITIVE_INFINITY)return!0;let i=t.length,s=[e],u=[];for(;r>=0;){if(s.length===0){if(i===0)return!0;s.push(t[--i]);continue}let{mode:d,doc:p}=s.pop();switch(Lr(p)){case Or:u.push(p),r-=as(p);break;case dr:case Je:{let h=h8(p);for(let m=h.length-1;m>=0;m--)s.push({mode:d,doc:h[m]});break}case Wt:case Gt:case Kt:case bt:s.push({mode:d,doc:p.contents});break;case jt:r+=es(u);break;case Le:{if(o&&p.break)return!1;let h=p.break?Be:d,m=p.expandedStates&&h===Be?me(!1,p.expandedStates,-1):p.contents;s.push({mode:h,doc:m});break}case He:{let h=(p.groupId?a[p.groupId]||dt:d)===Be?p.breakContents:p.flatContents;h&&s.push({mode:d,doc:h});break}case we:if(d===Be||p.hard)return!0;p.soft||(u.push(" "),r--);break;case Yt:n=!0;break;case Vt:if(n)return!1;break}}return!1}function qo(e,t){let r={},n=t.printWidth,a=Xs(t.endOfLine),o=0,i=[{ind:Df(),mode:Be,doc:e}],s=[],u=!1,d=[],p=0;for(S6(e);i.length>0;){let{ind:m,mode:f,doc:v}=i.pop();switch(Lr(v)){case Or:{let g=a!==` -`?gi(!1,v,` -`,a):v;s.push(g),i.length>0&&(o+=as(g));break}case dr:for(let g=v.length-1;g>=0;g--)i.push({ind:m,mode:f,doc:v[g]});break;case kr:if(p>=2)throw new Error("There are too many 'cursor' in doc.");s.push(Zn),p++;break;case Wt:i.push({ind:I6(m,t),mode:f,doc:v.contents});break;case Gt:i.push({ind:T6(m,v.n,t),mode:f,doc:v.contents});break;case jt:o-=es(s);break;case Le:switch(f){case dt:if(!u){i.push({ind:m,mode:v.break?Be:dt,doc:v.contents});break}case Be:{u=!1;let g={ind:m,mode:dt,doc:v.contents},b=n-o,C=d.length>0;if(!v.break&&wo(g,i,b,C,r))i.push(g);else if(v.expandedStates){let w=me(!1,v.expandedStates,-1);if(v.break){i.push({ind:m,mode:Be,doc:w});break}else for(let x=1;x=v.expandedStates.length){i.push({ind:m,mode:Be,doc:w});break}else{let E=v.expandedStates[x],D={ind:m,mode:dt,doc:E};if(wo(D,i,b,C,r)){i.push(D);break}}}else i.push({ind:m,mode:Be,doc:v.contents});break}}v.id&&(r[v.id]=me(!1,i,-1).mode);break;case Je:{let g=n-o,{parts:b}=v;if(b.length===0)break;let[C,w]=b,x={ind:m,mode:dt,doc:C},E={ind:m,mode:Be,doc:C},D=wo(x,[],g,d.length>0,r,!0);if(b.length===1){D?i.push(x):i.push(E);break}let S={ind:m,mode:dt,doc:w},A={ind:m,mode:Be,doc:w};if(b.length===2){D?i.push(S,x):i.push(A,E);break}b.splice(0,2);let k={ind:m,mode:f,doc:Rd(b)},F=b[0];wo({ind:m,mode:dt,doc:[C,w,F]},[],g,d.length>0,r,!0)?i.push(k,S,x):D?i.push(k,A,x):i.push(k,A,E);break}case He:case Kt:{let g=v.groupId?r[v.groupId]:f;if(g===Be){let b=v.type===He?v.breakContents:v.negate?v.contents:Vo(v.contents);b&&i.push({ind:m,mode:f,doc:b})}if(g===dt){let b=v.type===He?v.flatContents:v.negate?Vo(v.contents):v.contents;b&&i.push({ind:m,mode:f,doc:b})}break}case Yt:d.push({ind:m,mode:f,doc:v.contents});break;case Vt:d.length>0&&i.push({ind:m,mode:f,doc:ml});break;case we:switch(f){case dt:if(v.hard)u=!0;else{v.soft||(s.push(" "),o+=1);break}case Be:if(d.length>0){i.push({ind:m,mode:f,doc:v},...d.reverse()),d.length=0;break}v.literal?m.root?(s.push(a,m.root.value),o=m.root.length):(s.push(a),o=0):(o-=es(s),s.push(a+m.value),o=m.length);break}break;case bt:i.push({ind:m,mode:f,doc:v.contents});break;case Ze:break;default:throw new pn(v)}i.length===0&&d.length>0&&(i.push(...d.reverse()),d.length=0)}let h=s.indexOf(Zn);if(h!==-1){let m=s.indexOf(Zn,h+1),f=s.slice(0,h).join(""),v=s.slice(h+1,m).join(""),g=s.slice(m+1).join("");return{formatted:f+v+g,cursorNodeStart:f.length,cursorNodeText:v}}return{formatted:s.join("")}}function F5(e,t,r=0){let n=0;for(let a=r;a!0,"n")}=t,a=c(o=>g8(o)&&n(o),"o");for(let o of r(e)){let i=e[o];if(Array.isArray(i))for(let s of i)a(s)&&(yield s);else a(i)&&(yield i)}}function*R6(e,t){let r=[e];for(let n=0;n{let a=!!(n!=null&&n.backwards);if(r===!1)return!1;let{length:o}=t,i=r;for(;i>=0&&i0}function z5(e){return e?t=>e(t,n1):y8}function B6(e){let t=e.type||e.kind||"(unknown type)",r=String(e.name||e.id&&(typeof e.id=="object"?e.id.name:e.id)||e.key&&(typeof e.key=="object"?e.key.name:e.key)||e.value&&(typeof e.value=="object"?"":String(e.value))||e.operator||"");return r.length>20&&(r=r.slice(0,19)+"…"),t+(r?" "+r:"")}function Qs(e,t){(e.comments??(e.comments=[])).push(t),t.printed=!1,t.nodeDescription=B6(e)}function tn(e,t){t.leading=!0,t.trailing=!1,Qs(e,t)}function To(e,t,r){t.leading=!1,t.trailing=!1,r&&(t.marker=r),Qs(e,t)}function rn(e,t){t.leading=!1,t.trailing=!0,Qs(e,t)}function eu(e,t){if(gl.has(e))return gl.get(e);let{printer:{getCommentChildNodes:r,canAttachComment:n,getVisitorKeys:a},locStart:o,locEnd:i}=t;if(!n)return[];let s=((r==null?void 0:r(e,t))??[...Sf(e,{getVisitorKeys:yi(a)})]).flatMap(u=>n(u)?[u]:eu(u,t));return s.sort((u,d)=>o(u)-o(d)||i(u)-i(d)),gl.set(e,s),s}function Af(e,t,r,n){let{locStart:a,locEnd:o}=r,i=a(t),s=o(t),u=eu(e,r),d,p,h=0,m=u.length;for(;h>1,v=u[f],g=a(v),b=o(v);if(g<=i&&s<=b)return Af(v,t,r,v);if(b<=i){d=v,h=f+1;continue}if(s<=g){p=v,m=f;continue}throw new Error("Comment location overlaps with node location")}if((n==null?void 0:n.type)==="TemplateLiteral"){let{quasis:f}=n,v=pl(f,t,r);d&&pl(f,d,r)!==v&&(d=null),p&&pl(f,p,r)!==v&&(p=null)}return{enclosingNode:n,precedingNode:d,followingNode:p}}function z6(e,t){let{comments:r}=e;if(delete e.comments,!v8(r)||!t.printer.canAttachComment)return;let n=[],{locStart:a,locEnd:o,printer:{experimentalFeatures:{avoidAstMutation:i=!1}={},handleComments:s={}},originalText:u}=t,{ownLine:d=vl,endOfLine:p=vl,remaining:h=vl}=s,m=r.map((f,v)=>({...Af(e,f,t),comment:f,text:u,options:t,ast:e,isLastComment:r.length-1===v}));for(let[f,v]of m.entries()){let{comment:g,precedingNode:b,enclosingNode:C,followingNode:w,text:x,options:E,ast:D,isLastComment:S}=v;if(E.parser==="json"||E.parser==="json5"||E.parser==="jsonc"||E.parser==="__js_expression"||E.parser==="__ts_expression"||E.parser==="__vue_expression"||E.parser==="__vue_ts_expression"){if(a(g)-a(D)<=0){tn(D,g);continue}if(o(g)-o(D)>=0){rn(D,g);continue}}let A;if(i?A=[v]:(g.enclosingNode=C,g.precedingNode=b,g.followingNode=w,A=[g,x,E,D,S]),$6(x,E,m,f))g.placement="ownLine",d(...A)||(w?tn(w,g):b?rn(b,g):To(C||D,g));else if(O6(x,E,m,f))g.placement="endOfLine",p(...A)||(b?rn(b,g):w?tn(w,g):To(C||D,g));else if(g.placement="remaining",!h(...A))if(b&&w){let k=n.length;k>0&&n[k-1].followingNode!==w&&Md(n,E),n.push(v)}else b?rn(b,g):w?tn(w,g):To(C||D,g)}if(Md(n,t),!i)for(let f of r)delete f.precedingNode,delete f.enclosingNode,delete f.followingNode}function $6(e,t,r,n){let{comment:a,precedingNode:o}=r[n],{locStart:i,locEnd:s}=t,u=i(a);if(o)for(let d=n-1;d>=0;d--){let{comment:p,precedingNode:h}=r[d];if(h!==o||!$f(e.slice(s(p),u)))break;u=i(p)}return ur(e,u,{backwards:!0})}function O6(e,t,r,n){let{comment:a,followingNode:o}=r[n],{locStart:i,locEnd:s}=t,u=s(a);if(o)for(let d=n+1;d0;--u){let{comment:d,precedingNode:p,followingNode:h}=e[u-1];is.strictEqual(p,o),is.strictEqual(h,i);let m=t.originalText.slice(t.locEnd(d),s);if(((n=(r=t.printer).isGap)==null?void 0:n.call(r,m,t))??/^[\s(]*$/.test(m))s=t.locStart(d);else break}for(let[d,{comment:p}]of e.entries())d1&&d.comments.sort((p,h)=>t.locStart(p)-t.locStart(h));e.length=0}function pl(e,t,r){let n=r.locStart(t)-1;for(let a=1;a!n.has(s)).length===0)return{leading:"",trailing:""};let a=[],o=[],i;return e.each(()=>{let s=e.node;if(n!=null&&n.has(s))return;let{leading:u,trailing:d}=s;u?a.push(L6(e,t)):d&&(i=M6(e,t,i),o.push(i.doc))},"comments"),{leading:a,trailing:o}}function N6(e,t,r){let{leading:n,trailing:a}=P6(e,r);return!n&&!a?t:Cf(t,o=>[n,o,a])}function H6(e){let{[Symbol.for("comments")]:t,[Symbol.for("printedComments")]:r}=e;for(let n of t){if(!n.printed&&!r.has(n))throw new Error('Comment "'+n.value.trim()+'" was not printed. Please report this error!');delete n.printed}}function O5(e){return()=>{}}function Pd({plugins:e=[],showDeprecated:t=!1}={}){let r=e.flatMap(a=>a.languages??[]),n=[];for(let a of V6(Object.assign({},...e.map(({options:o})=>o),w8)))!t&&a.deprecated||(Array.isArray(a.choices)&&(t||(a.choices=a.choices.filter(o=>!o.deprecated)),a.name==="parser"&&(a.choices=[...a.choices,...j6(a.choices,r,e)])),a.pluginDefaults=Object.fromEntries(e.filter(o=>{var i;return((i=o.defaultOptions)==null?void 0:i[a.name])!==void 0}).map(o=>[o.name,o.defaultOptions[a.name]])),n.push(a));return{languages:r,options:n}}function*j6(e,t,r){let n=new Set(e.map(a=>a.value));for(let a of t)if(a.parsers){for(let o of a.parsers)if(!n.has(o)){n.add(o);let i=r.find(u=>u.parsers&&Object.prototype.hasOwnProperty.call(u.parsers,o)),s=a.name;i!=null&&i.name&&(s+=` (plugin: ${i.name})`),yield{value:o,description:s}}}}function V6(e){let t=[];for(let[r,n]of Object.entries(e)){let a={name:r,...n};Array.isArray(a.default)&&(a.default=me(!1,a.default,-1).value),t.push(a)}return t}function Nd(e,t){if(!t)return;let r=E8(t).toLowerCase();return e.find(({filenames:n})=>n==null?void 0:n.some(a=>a.toLowerCase()===r))??e.find(({extensions:n})=>n==null?void 0:n.some(a=>r.endsWith(a)))}function U6(e,t){if(t)return e.find(({name:r})=>r.toLowerCase()===t)??e.find(({aliases:r})=>r==null?void 0:r.includes(t))??e.find(({extensions:r})=>r==null?void 0:r.includes(`.${t}`))}function L5(e,t){let r=e.plugins.flatMap(a=>a.languages??[]),n=U6(r,t.language)??Nd(r,t.physicalFile)??Nd(r,t.file)??(t.physicalFile,void 0);return n==null?void 0:n.parsers[0]}function l0(e,t,r,n){return[`Invalid ${nn.default.red(n.key(e))} value.`,`Expected ${nn.default.blue(r)},`,`but received ${t===o1?nn.default.gray("nothing"):nn.default.red(n.value(t))}.`].join(" ")}function Hd({text:e,list:t},r){let n=[];return e&&n.push(`- ${nn.default.blue(e)}`),t&&n.push([`- ${nn.default.blue(t.title)}:`].concat(t.values.map(a=>Hd(a,r-i1.length).replace(/^|\n/g,`$&${i1}`))).join(` -`)),jd(n,r)}function jd(e,t){if(e.length===1)return e[0];let[r,n]=e,[a,o]=e.map(i=>i.split(` -`,1)[0].length);return a>t&&a>o?n:r}function M5(e,t){if(e===t)return 0;let r=e;e.length>t.length&&(e=t,t=r);let n=e.length,a=t.length;for(;n>0&&e.charCodeAt(~-n)===t.charCodeAt(~-a);)n--,a--;let o=0;for(;os?d>s?s+1:d:d>u?u+1:d;return s}function P5(e,t){let r=new e(t),n=Object.create(r);for(let a of C8)a in t&&(n[a]=q6(t[a],r,or.prototype[a].length));return n}function q6(e,t,r){return typeof e=="function"?(...n)=>e(...n.slice(0,r-1),t,...n.slice(r-1)):()=>e}function s0({from:e,to:t}){return{from:[e],to:t}}function N5(e,t){let r=Object.create(null);for(let n of e){let a=n[t];if(r[a])throw new Error(`Duplicate ${t} ${JSON.stringify(a)}`);r[a]=n}return r}function H5(e,t){let r=new Map;for(let n of e){let a=n[t];if(r.has(a))throw new Error(`Duplicate ${t} ${JSON.stringify(a)}`);r.set(a,n)}return r}function j5(){let e=Object.create(null);return t=>{let r=JSON.stringify(t);return e[r]?!0:(e[r]=!0,!1)}}function V5(e,t){let r=[],n=[];for(let a of e)t(a)?r.push(a):n.push(a);return[r,n]}function U5(e){return e===Math.floor(e)}function q5(e,t){if(e===t)return 0;let r=typeof e,n=typeof t,a=["undefined","object","boolean","number","string"];return r!==n?a.indexOf(r)-a.indexOf(n):r!=="string"?Number(e)-Number(t):e.localeCompare(t)}function W5(e){return(...t)=>{let r=e(...t);return typeof r=="string"?new Error(r):r}}function u0(e){return e===void 0?{}:e}function Vd(e){if(typeof e=="string")return{text:e};let{text:t,list:r}=e;return W6((t||r)!==void 0,"Unexpected `expected` result, there should be at least one field."),r?{text:t,list:{title:r.title,values:r.values.map(Vd)}}:{text:t}}function c0(e,t){return e===!0?!0:e===!1?{value:t}:e}function d0(e,t,r=!1){return e===!1?!1:e===!0?r?!0:[{value:t}]:"value"in e?[e]:e.length===0?!1:e}function Ud(e,t){return typeof e=="string"||"key"in e?{from:t,to:e}:"from"in e?{from:e.from,to:e.to}:{from:t,to:e.to}}function fl(e,t){return e===void 0?[]:Array.isArray(e)?e.map(r=>Ud(r,t)):[Ud(e,t)]}function p0(e,t){let r=fl(typeof e=="object"&&"redirect"in e?e.redirect:e,t);return r.length===0?{remain:t,redirect:r}:typeof e=="object"&&"remain"in e?{remain:e.remain,redirect:r}:{redirect:r}}function W6(e,t){if(!e)throw new Error(t)}function G5(e,t,{logger:r=!1,isCLI:n=!1,passThrough:a=!1,FlagSchema:o,descriptor:i}={}){if(n){if(!o)throw new Error("'FlagSchema' option is required.");if(!i)throw new Error("'descriptor' option is required.")}else i=Kr;let s=a?Array.isArray(a)?(m,f)=>a.includes(m)?{[m]:f}:void 0:(m,f)=>({[m]:f}):(m,f,v)=>{let{_:g,...b}=v.schemas;return s1(m,f,{...v,schemas:b})},u=G6(t,{isCLI:n,FlagSchema:o}),d=new I8(u,{logger:r,unknown:s,descriptor:i}),p=r!==!1;p&&L0&&(d._hasDeprecationWarned=L0);let h=d.normalize(e);return p&&(L0=d._hasDeprecationWarned),h}function G6(e,{isCLI:t,FlagSchema:r}){let n=[];t&&n.push(S8.create({name:"_"}));for(let a of e)n.push(K6(a,{isCLI:t,optionInfos:e,FlagSchema:r})),a.alias&&t&&n.push(D8.create({name:a.alias,sourceName:a.name}));return n}function K6(e,{isCLI:t,optionInfos:r,FlagSchema:n}){let{name:a}=e,o={name:a},i,s={};switch(e.type){case"int":i=F8,t&&(o.preprocess=Number);break;case"string":i=u1;break;case"choice":i=_8,o.choices=e.choices.map(u=>u!=null&&u.redirect?{...u,redirect:{to:{key:e.name,value:u.redirect}}}:u);break;case"boolean":i=k8;break;case"flag":i=n,o.flags=r.flatMap(u=>[u.alias,u.description&&u.name,u.oppositeDescription&&`no-${u.name}`].filter(Boolean));break;case"path":i=u1;break;default:throw new Error(`Unexpected type ${e.type}`)}if(e.exception?o.validate=(u,d,p)=>e.exception(u)||d.validate(u,p):o.validate=(u,d,p)=>u===void 0||d.validate(u,p),e.redirect&&(s.redirect=u=>u?{to:{key:e.redirect.option,value:e.redirect.value}}:void 0),e.deprecated&&(s.deprecated=!0),t&&!e.array){let u=o.preprocess||(d=>d);o.preprocess=(d,p,h)=>p.preprocess(u(Array.isArray(d)?me(!1,d,-1):d),h)}return e.array?A8.create({...t?{preprocess:c(u=>Array.isArray(u)?u:[u],"preprocess")}:{},...s,valueSchema:i.create(o)}):i.create({...o,...s})}function _f(e,t){if(!t)throw new Error("parserName is required.");let r=Lf(!1,e,a=>a.parsers&&Object.prototype.hasOwnProperty.call(a.parsers,t));if(r)return r;let n=`Couldn't resolve parser "${t}".`;throw n+=" Plugins must be explicitly added to the standalone bundle.",new Of(n)}function Y6(e,t){if(!t)throw new Error("astFormat is required.");let r=Lf(!1,e,a=>a.printers&&Object.prototype.hasOwnProperty.call(a.printers,t));if(r)return r;let n=`Couldn't find plugin for AST format "${t}".`;throw n+=" Plugins must be explicitly added to the standalone bundle.",new Of(n)}function Ff({plugins:e,parser:t}){let r=_f(e,t);return If(r,t)}function If(e,t){let r=e.parsers[t];return typeof r=="function"?r():r}function J6(e,t){let r=e.printers[t];return typeof r=="function"?r():r}async function K5(e,t={}){var r;let n={...e};if(!n.parser)if(n.filepath){if(n.parser=x8(n,{physicalFile:n.filepath}),!n.parser)throw new a1(`No parser could be inferred for file "${n.filepath}".`)}else throw new a1("No parser and no file path given, couldn't infer a parser.");let a=Pd({plugins:e.plugins,showDeprecated:!0}).options,o={...c1,...Object.fromEntries(a.filter(m=>m.default!==void 0).map(m=>[m.name,m.default]))},i=_f(n.plugins,n.parser),s=await If(i,n.parser);n.astFormat=s.astFormat,n.locEnd=s.locEnd,n.locStart=s.locStart;let u=(r=i.printers)!=null&&r[s.astFormat]?i:Y6(n.plugins,s.astFormat),d=await J6(u,s.astFormat);n.printer=d;let p=u.defaultOptions?Object.fromEntries(Object.entries(u.defaultOptions).filter(([,m])=>m!==void 0)):{},h={...o,...p};for(let[m,f]of Object.entries(h))(n[m]===null||n[m]===void 0)&&(n[m]=f);return n.parser==="json"&&(n.trailingComma="none"),T8(n,a,{passThrough:Object.keys(c1),...t})}async function Y5(e,t){let r=await Ff(t),n=r.preprocess?r.preprocess(e,t):e;t.originalText=n;let a;try{a=await r.parse(n,t,t)}catch(o){Z6(o,e)}return{text:n,ast:a}}function Z6(e,t){let{loc:r}=e;if(r){let n=(0,R8.codeFrameColumns)(t,r,{highlightCode:!0});throw e.message+=` -`+n,e.codeFrame=n,e}throw e}async function X6(e,t,r,n,a){let{embeddedLanguageFormatting:o,printer:{embed:i,hasPrettierIgnore:s=c(()=>!1,"s"),getVisitorKeys:u}}=r;if(!i||o!=="auto")return;if(i.length>2)throw new Error("printer.embed has too many parameters. The API changed in Prettier v3. Please update your plugin. See https://prettier.io/docs/en/plugins.html#optional-embed");let d=yi(i.getVisitorKeys??u),p=[];f();let h=e.stack;for(let{print:v,node:g,pathStack:b}of p)try{e.stack=b;let C=await v(m,t,e,r);C&&a.set(g,C)}catch(C){if(globalThis.PRETTIER_DEBUG)throw C}e.stack=h;function m(v,g){return Q6(v,g,r,n)}c(m,"f");function f(){let{node:v}=e;if(v===null||typeof v!="object"||s(e))return;for(let b of d(v))Array.isArray(v[b])?e.each(f,b):e.call(f,b);let g=i(e,r);if(g){if(typeof g=="function"){p.push({print:g,node:v,pathStack:[...e.stack]});return}a.set(v,g)}}c(f,"p")}async function Q6(e,t,r,n){let a=await wn({...r,...t,parentParser:r.parser,originalText:e},{passThrough:!0}),{ast:o}=await Ra(e,a),i=await n(o,a);return Ld(i)}function J5(e,t){let{originalText:r,[Symbol.for("comments")]:n,locStart:a,locEnd:o,[Symbol.for("printedComments")]:i}=t,{node:s}=e,u=a(s),d=o(s);for(let p of n)a(p)>=u&&o(p)<=d&&i.add(p);return r.slice(u,d)}async function mi(e,t){({ast:e}=await Tf(e,t));let r=new Map,n=new m8(e),a=b8(t),o=new Map;await X6(n,s,t,mi,o);let i=await qd(n,t,s,void 0,o);return H6(t),i;function s(d,p){return d===void 0||d===n?u(p):Array.isArray(d)?n.call(()=>u(p),...d):n.call(()=>u(p),d)}function u(d){a(n);let p=n.node;if(p==null)return"";let h=p&&typeof p=="object"&&d===void 0;if(h&&r.has(p))return r.get(p);let m=qd(n,t,s,d,o);return h&&r.set(p,m),m}}function qd(e,t,r,n,a){var o;let{node:i}=e,{printer:s}=t,u;return(o=s.hasPrettierIgnore)!=null&&o.call(s,e)?u=B8(e,t):a.has(i)?u=a.get(i):u=s.print(e,t,r,n),i===t.cursorNode&&(u=Cf(u,d=>[ns,d,ns])),s.printComment&&(!s.willPrintOwnComments||!s.willPrintOwnComments(e,t))&&(u=N6(e,u,t)),u}async function Tf(e,t){let r=e.comments??[];t[Symbol.for("comments")]=r,t[Symbol.for("tokens")]=e.tokens??[],t[Symbol.for("printedComments")]=new Set,z6(e,t);let{printer:{preprocess:n}}=t;return e=n?await n(e,t):e,{ast:e,comments:r}}function Z5(e,t){let{cursorOffset:r,locStart:n,locEnd:a}=t,o=yi(t.printer.getVisitorKeys),i=c(u=>n(u)<=r&&a(u)>=r,"i"),s=e;for(let u of R6(e,{getVisitorKeys:o,filter:i}))s=u;return s}function X5(e,t){let{printer:{massageAstNode:r,getVisitorKeys:n}}=t;if(!r)return e;let a=yi(n),o=r.ignoredProperties??new Set;return i(e);function i(s,u){if(!(s!==null&&typeof s=="object"))return s;if(Array.isArray(s))return s.map(m=>i(m,u)).filter(Boolean);let d={},p=new Set(a(s));for(let m in s)!Object.prototype.hasOwnProperty.call(s,m)||o.has(m)||(p.has(m)?d[m]=i(s[m],s):d[m]=s[m]);let h=r(s,d,u);if(h!==null)return h??d}}function e8(e,t){let r=[e.node,...e.parentNodes],n=new Set([t.node,...t.parentNodes]);return r.find(a=>Mf.has(a.type)&&n.has(a))}function Wd(e){let t=e.length-1;for(;;){let r=e[t];if((r==null?void 0:r.type)==="Program"||(r==null?void 0:r.type)==="File")t--;else break}return e.slice(0,t+1)}function t8(e,t,{locStart:r,locEnd:n}){let a=e.node,o=t.node;if(a===o)return{startNode:a,endNode:o};let i=r(e.node);for(let u of Wd(t.parentNodes))if(r(u)>=i)o=u;else break;let s=n(t.node);for(let u of Wd(e.parentNodes)){if(n(u)<=s)a=u;else break;if(a===o)break}return{startNode:a,endNode:o}}function ts(e,t,r,n,a=[],o){let{locStart:i,locEnd:s}=r,u=i(e),d=s(e);if(!(t>d||tn);let s=e.slice(n,a).search(/\S/),u=s===-1;if(!u)for(n+=s;a>n&&!/\S/.test(e[a-1]);--a);let d=ts(r,n,t,(f,v)=>Gd(t,f,v),[],"rangeStart"),p=u?d:ts(r,a,t,f=>Gd(t,f),[],"rangeEnd");if(!d||!p)return{rangeStart:0,rangeEnd:0};let h,m;if(O8(t)){let f=e8(d,p);h=f,m=f}else({startNode:h,endNode:m}=t8(d,p,t));return{rangeStart:Math.min(o(h),o(m)),rangeEnd:Math.max(i(h),i(m))}}async function Rf(e,t,r=0){if(!e||e.trim().length===0)return{formatted:"",cursorOffset:-1,comments:[]};let{ast:n,text:a}=await Ra(e,t);t.cursorOffset>=0&&(t.cursorNode=z8(n,t));let o=await mi(n,t);r>0&&(o=zd([_r,o],r,t.tabWidth));let i=qo(o,t);if(r>0){let u=i.formatted.trim();i.cursorNodeStart!==void 0&&(i.cursorNodeStart-=i.formatted.indexOf(u)),i.formatted=u+Xs(t.endOfLine)}let s=t[Symbol.for("comments")];if(t.cursorOffset>=0){let u,d,p,h,m;if(t.cursorNode&&i.cursorNodeText?(u=t.locStart(t.cursorNode),d=a.slice(u,t.locEnd(t.cursorNode)),p=t.cursorOffset-u,h=i.cursorNodeStart,m=i.cursorNodeText):(u=0,d=a,p=t.cursorOffset,h=0,m=i.formatted),d===m)return{formatted:i.formatted,cursorOffset:h+p,comments:s};let f=d.split("");f.splice(p,0,d1);let v=m.split(""),g=(0,u8.diffArrays)(f,v),b=h;for(let C of g)if(C.removed){if(C.value.includes(d1))break}else b+=C.count;return{formatted:i.formatted,cursorOffset:b,comments:s}}return{formatted:i.formatted,cursorOffset:-1,comments:s}}async function a8(e,t){let{ast:r,text:n}=await Ra(e,t),{rangeStart:a,rangeEnd:o}=n8(n,t,r),i=n.slice(a,o),s=Math.min(a,n.lastIndexOf(` -`,a)+1),u=n.slice(s,a).match(/^\s*/)[0],d=os(u,t.tabWidth),p=await Rf(i,{...t,rangeStart:0,rangeEnd:Number.POSITIVE_INFINITY,cursorOffset:t.cursorOffset>a&&t.cursorOffset<=o?t.cursorOffset-a:-1,endOfLine:"lf"},d),h=p.formatted.trimEnd(),{cursorOffset:m}=t;m>o?m+=h.length-i.length:p.cursorOffset>=0&&(m=p.cursorOffset+a);let f=n.slice(0,a)+h+n.slice(o);if(t.endOfLine!=="lf"){let v=Xs(t.endOfLine);m>=0&&v===`\r -`&&(m+=xf(f.slice(0,m),` -`)),f=gi(!1,f,` -`,v)}return{formatted:f,cursorOffset:m,comments:p.comments}}function hl(e,t,r){return typeof t!="number"||Number.isNaN(t)||t<0||t>e.length?r:t}function Kd(e,t){let{cursorOffset:r,rangeStart:n,rangeEnd:a}=t;return r=hl(e,r,-1),n=hl(e,n,0),a=hl(e,a,e.length),{...t,cursorOffset:r,rangeStart:n,rangeEnd:a}}function Bf(e,t){let{cursorOffset:r,rangeStart:n,rangeEnd:a,endOfLine:o}=Kd(e,t),i=e.charAt(0)===Pf;if(i&&(e=e.slice(1),r--,n--,a--),o==="auto"&&(o=E6(e)),e.includes("\r")){let s=c(u=>xf(e.slice(0,Math.max(u,0)),`\r -`),"s");r-=s(r),n-=s(n),a-=s(a),e=x6(e)}return{hasBOM:i,text:e,options:Kd(e,{...t,cursorOffset:r,rangeStart:n,rangeEnd:a,endOfLine:o})}}async function Yd(e,t){let r=await Ff(t);return!r.hasPragma||r.hasPragma(e)}async function Jd(e,t){let{hasBOM:r,text:n,options:a}=Bf(e,await wn(t));if(a.rangeStart>=a.rangeEnd&&n!==""||a.requirePragma&&!await Yd(n,a))return{formatted:e,cursorOffset:t.cursorOffset,comments:[]};let o;return a.rangeStart>0||a.rangeEnd=0&&o.cursorOffset++),o}async function Q5(e,t,r){let{text:n,options:a}=Bf(e,await wn(t)),o=await Ra(n,a);return r&&(r.preprocessForPrint&&(o.ast=await Tf(o.ast,a)),r.massage&&(o.ast=$8(o.ast,a))),o}async function ev(e,t){t=await wn(t);let r=await mi(e,t);return qo(r,t)}async function tv(e,t){let r=C6(e),{formatted:n}=await Jd(r,{...t,parser:"__js_expression"});return n}async function rv(e,t){t=await wn(t);let{ast:r}=await Ra(e,t);return mi(r,t)}async function nv(e,t){return qo(e,await wn(t))}function av(e,t){if(t===!1)return!1;if(e.charAt(t)==="/"&&e.charAt(t+1)==="*"){for(let r=t+2;rMath.max(n,a.length/t.length),0)}function cv(e,t){let r=nu(e,t);return r===!1?"":e.charAt(r)}function dv(e,t,r){for(let n=t;ni===n?i:s===t?"\\"+s:s||(r&&/^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/.test(i)?i:"\\"+i));return t+a+t}function i8(e,t,r){return nu(e,r(t))}function hv(e,t){return arguments.length===2||typeof t=="number"?nu(e,t):i8(...arguments)}function l8(e,t,r){return ru(e,r(t))}function mv(e,t){return arguments.length===2||typeof t=="number"?ru(e,t):l8(...arguments)}function s8(e,t,r){return us(e,r(t))}function gv(e,t){return arguments.length===2||typeof t=="number"?us(e,t):s8(...arguments)}function br(e,t=1){return async(...r)=>{let n=r[t]??{},a=n.plugins??[];return r[t]={...n,plugins:Array.isArray(a)?a:Object.values(a)},e(...r)}}async function Zd(e,t){let{formatted:r}=await p1(e,{...t,cursorOffset:-1});return r}async function vv(e,t){return await Zd(e,t)===e}var yv,to,bv,wv,Ev,xv,Cv,ro,no,f0,Bn,Dv,Sv,h0,zn,Av,kv,ao,m0,_v,Fv,Iv,Tv,g0,Rv,gi,u8,Or,dr,kr,Wt,Gt,jt,Le,Je,He,Kt,Yt,Vt,we,bt,Ze,zf,Lr,c8,v0,Bv,pn,Xd,rs,y0,wt,tu,zv,Eo,$v,ml,b0,Qd,Ov,_r,e1,ns,Lv,me,d8,p8,f8,as,h8,Be,dt,Zn,os,Gi,w0,oo,Ki,E0,Mv,m8,x0,is,g8,Pv,pr,t1,r1,zr,ur,v8,n1,y8,yi,gl,vl,$f,ru,b8,C0,Of,D0,a1,w8,E8,x8,Kr,S0,Nv,nn,o1,io,i1,Hv,A0,yl,l1,s1,C8,k0,or,_0,D8,F0,S8,I0,A8,T0,k8,R0,_8,B0,jv,z0,F8,$0,u1,Vv,Uv,qv,Wv,O0,I8,L0,T8,Gv,Lf,c1,wn,R8,Ra,B8,z8,$8,O8,Mf,L8,Pf,d1,M0,Kv,Yv,Jv,Zv,P0,ls,ss,nu,us,Xv,Qv,e4,t4,r4,n4,p1,a4,o4,M8,Jk=B(()=>{yv=Object.create,to=Object.defineProperty,bv=Object.getOwnPropertyDescriptor,wv=Object.getOwnPropertyNames,Ev=Object.getPrototypeOf,xv=Object.prototype.hasOwnProperty,Cv=c((e,t)=>()=>(e&&(t=e(e=0)),t),"Eu"),ro=c((e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),"Me"),no=c((e,t)=>{for(var r in t)to(e,r,{get:t[r],enumerable:!0})},"We"),f0=c((e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of wv(t))!xv.call(e,a)&&a!==r&&to(e,a,{get:c(()=>t[a],"get"),enumerable:!(n=bv(t,a))||n.enumerable});return e},"ur"),Bn=c((e,t,r)=>(r=e!=null?yv(Ev(e)):{},f0(t||!e||!e.__esModule?to(r,"default",{value:e,enumerable:!0}):r,e)),"he"),Dv=c(e=>f0(to({},"__esModule",{value:!0}),e),"Cu"),Sv=c((e,t,r)=>{if(!t.has(e))throw TypeError("Cannot "+r)},"hu"),h0=c((e,t,r)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,r)},"ht"),zn=c((e,t,r)=>(Sv(e,t,"access private method"),r),"ce"),Av=ro(e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.default=t;function t(){}c(t,"or"),t.prototype={diff:c(function(a,o){var i=arguments.length>2&&arguments[2]!==void 0?arguments[2]:{},s=i.callback;typeof i=="function"&&(s=i,i={}),this.options=i;var u=this;function d(w){return s?(setTimeout(function(){s(void 0,w)},0),!0):w}c(d,"i"),a=this.castInput(a),o=this.castInput(o),a=this.removeEmpty(this.tokenize(a)),o=this.removeEmpty(this.tokenize(o));var p=o.length,h=a.length,m=1,f=p+h;i.maxEditLength&&(f=Math.min(f,i.maxEditLength));var v=[{newPos:-1,components:[]}],g=this.extractCommon(v[0],o,a,0);if(v[0].newPos+1>=p&&g+1>=h)return d([{value:this.join(o),count:o.length}]);function b(){for(var w=-1*m;w<=m;w+=2){var x=void 0,E=v[w-1],D=v[w+1],S=(D?D.newPos:0)-w;E&&(v[w-1]=void 0);var A=E&&E.newPos+1=p&&S+1>=h)return d(r(u,x.components,o,a,u.useLongestToken));v[w]=x}m++}if(c(b,"p"),s)c(function w(){setTimeout(function(){if(m>f)return s();b()||w()},0)},"F")();else for(;m<=f;){var C=b();if(C)return C}},"diff"),pushComponent:c(function(a,o,i){var s=a[a.length-1];s&&s.added===o&&s.removed===i?a[a.length-1]={count:s.count+1,added:o,removed:i}:a.push({count:1,added:o,removed:i})},"pushComponent"),extractCommon:c(function(a,o,i,s){for(var u=o.length,d=i.length,p=a.newPos,h=p-s,m=0;p+1C.length?x:C}),f.value=a.join(g)}else f.value=a.join(i.slice(h,h+f.count));h+=f.count,f.added||(m+=f.count)}}var b=o[p-1];return p>1&&typeof b.value=="string"&&(b.added||b.removed)&&a.equals("",b.value)&&(o[p-2].value+=b.value,o.pop()),o}c(r,"yu");function n(a){return{newPos:a.newPos,components:a.components.slice(0)}}c(n,"Au")}),kv=ro(e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.diffArrays=a,e.arrayDiff=void 0;var t=r(Av());function r(o){return o&&o.__esModule?o:{default:o}}c(r,"_u");var n=new t.default;e.arrayDiff=n,n.tokenize=function(o){return o.slice()},n.join=n.removeEmpty=function(o){return o};function a(o,i,s){return n.diff(o,i,s)}c(a,"ku")}),ao=ro((e,t)=>{var r=new Proxy(String,{get:c(()=>r,"get")});t.exports=r}),m0={},no(m0,{default:c(()=>Fv,"default"),shouldHighlight:c(()=>_v,"shouldHighlight")}),Iv=Cv(()=>{_v=c(()=>!1,"Eo"),Fv=String}),Tv=ro(e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.codeFrameColumns=h,e.default=m;var t=(Iv(),Dv(m0)),r=a(ao(),!0);function n(f){if(typeof WeakMap!="function")return null;var v=new WeakMap,g=new WeakMap;return(n=c(function(b){return b?g:v},"Tn"))(f)}c(n,"Tn");function a(f,v){if(!v&&f&&f.__esModule)return f;if(f===null||typeof f!="object"&&typeof f!="function")return{default:f};var g=n(v);if(g&&g.has(f))return g.get(f);var b={__proto__:null},C=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var w in f)if(w!=="default"&&Object.prototype.hasOwnProperty.call(f,w)){var x=C?Object.getOwnPropertyDescriptor(f,w):null;x&&(x.get||x.set)?Object.defineProperty(b,w,x):b[w]=f[w]}return b.default=f,g&&g.set(f,b),b}c(a,"ho");var o;function i(f){return f?(o!=null||(o=new r.default.constructor({enabled:!0,level:1})),o):r.default}c(i,"go");var s=!1;function u(f){return{gutter:f.grey,marker:f.red.bold,message:f.red.bold}}c(u,"yo");var d=/\r\n|[\n\r\u2028\u2029]/;function p(f,v,g){let b=Object.assign({column:0,line:-1},f.start),C=Object.assign({},b,f.end),{linesAbove:w=2,linesBelow:x=3}=g||{},E=b.line,D=b.column,S=C.line,A=C.column,k=Math.max(E-(w+1),0),F=Math.min(v.length,S+x);E===-1&&(k=0),S===-1&&(F=v.length);let T=S-E,R={};if(T)for(let $=0;$<=T;$++){let z=$+E;if(!D)R[z]=!0;else if($===0){let L=v[z-1].length;R[z]=[D,L-D+1]}else if($===T)R[z]=[0,A];else{let L=v[z-$].length;R[z]=[0,L]}}else D===A?D?R[E]=[D,0]:R[E]=!0:R[E]=[D,A-D];return{start:k,end:F,markerLines:R}}c(p,"Ao");function h(f,v,g={}){let b=(g.highlightCode||g.forceColor)&&(0,t.shouldHighlight)(g),C=i(g.forceColor),w=u(C),x=c((R,$)=>b?R($):$,"i"),E=f.split(d),{start:D,end:S,markerLines:A}=p(v,E,g),k=v.start&&typeof v.start.column=="number",F=String(S).length,T=(b?(0,t.default)(f,g):f).split(d,S).slice(D,S).map((R,$)=>{let z=D+1+$,L=` ${` ${z}`.slice(-F)} |`,O=A[z],M=!A[z+1];if(O){let j="";if(Array.isArray(O)){let G=R.slice(0,Math.max(O[0]-1,0)).replace(/[^\t]/g," "),H=O[1]||1;j=[` - `,x(w.gutter,L.replace(/\d/g," "))," ",G,x(w.marker,"^").repeat(H)].join(""),M&&g.message&&(j+=" "+x(w.message,g.message))}return[x(w.marker,">"),x(w.gutter,L),R.length>0?` ${R}`:"",j].join("")}else return` ${x(w.gutter,L)}${R.length>0?` ${R}`:""}`}).join(` -`);return g.message&&!k&&(T=`${" ".repeat(F+1)}${g.message} -${T}`),b?C.reset(T):T}c(h,"vn");function m(f,v,g,b={}){if(!s){s=!0;let C="Passing lineNumber and colNumber is deprecated to @babel/code-frame. Please use `codeFrameColumns`.";{let w=new Error(C);w.name="DeprecationWarning",console.warn(new Error(C))}}return g=Math.max(g,0),h(f,{start:{column:g,line:v}},b)}c(m,"Bo")}),g0={},no(g0,{__debug:c(()=>o4,"__debug"),check:c(()=>vv,"check"),doc:c(()=>M0,"doc"),format:c(()=>Zd,"format"),formatWithCursor:c(()=>p1,"formatWithCursor"),getSupportInfo:c(()=>a4,"getSupportInfo"),util:c(()=>P0,"util"),version:c(()=>Zv,"version")}),Rv=c((e,t,r,n)=>{if(!(e&&t==null))return t.replaceAll?t.replaceAll(r,n):r.global?t.replace(r,n):t.split(r).join(n)},"gu"),gi=Rv,u8=Bn(kv(),1),c(E6,"Dr"),c(Xs,"Ae"),c(xf,"yt"),c(x6,"ar"),Or="string",dr="array",kr="cursor",Wt="indent",Gt="align",jt="trim",Le="group",Je="fill",He="if-break",Kt="indent-if-break",Yt="line-suffix",Vt="line-suffix-boundary",we="line",bt="label",Ze="break-parent",zf=new Set([kr,Wt,Gt,jt,Le,Je,He,Kt,Yt,Vt,we,bt,Ze]),c(p5,"xu"),Lr=p5,c8=c(e=>new Intl.ListFormat("en-US",{type:"disjunction"}).format(e),"bu"),c(f5,"wu"),Bv=(v0=class extends Error{constructor(t){super(f5(t));yr(this,"name","InvalidDocError");this.doc=t}},c(v0,"At"),v0),pn=Bv,Xd={},c(h5,"Ou"),rs=h5,y0=c(()=>{},"lr"),wt=y0,tu=y0,c(Vo,"ie"),c(dn,"oe"),c(Td,"Bt"),c(m5,"fr"),c(g5,"Fr"),c(v5,"pr"),c(y5,"dr"),c(Rd,"Ge"),c(b5,"mr"),c(w5,"Er"),c(Zl,"_e"),zv={type:Vt},Eo={type:Ze},$v={type:jt},ml={type:we,hard:!0},b0={type:we,hard:!0,literal:!0},Qd={type:we},Ov={type:we,soft:!0},_r=[ml,Eo],e1=[b0,Eo],ns={type:kr},c(Bd,"be"),c(zd,"qe"),c(E5,"yr"),c(zt,"J"),c(C6,"Ar"),Lv=c((e,t,r)=>{if(!(e&&t==null))return Array.isArray(t)||typeof t=="string"?t[r<0?t.length+r:r]:t.at(r)},"Nu"),me=Lv,d8=c(()=>/[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uFE0F|\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE88\uDE90-\uDEBD\uDEBF-\uDEC2\uDECE-\uDEDB\uDEE0-\uDEE8]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g,"Br"),c(x5,"_r"),c(C5,"kr"),p8=c(e=>!(x5(e)||C5(e)),"xr"),f8=/[^\x20-\x7F]/,c(D5,"Tu"),as=D5,h8=c(e=>{if(Array.isArray(e))return e;if(e.type!==Je)throw new Error(`Expect doc to be 'array' or '${Je}'.`);return e.parts},"Or"),c(Uo,"Ne"),c(Xl,"Je"),c(D6,"vu"),c(S5,"Nr"),c($d,"br"),c(S6,"Sr"),c(A6,"Pu"),c(A5,"Tr"),c(Od,"wr"),c(Jn,"Oe"),c(Ld,"Xe"),c(k6,"Lu"),c(_6,"Iu"),c(k5,"vr"),c(F6,"Ru"),c(_5,"Pr"),c(Cf,"Ze"),Be=Symbol("MODE_BREAK"),dt=Symbol("MODE_FLAT"),Zn=Symbol("cursor"),c(Df,"Lr"),c(I6,"Yu"),c(T6,"ju"),c(Ql,"kt"),c(es,"xt"),c(wo,"Qe"),c(qo,"fe"),c(F5,"Vu"),os=F5,Mv=(E0=class{constructor(e){h0(this,Gi),h0(this,oo),this.stack=[e]}get key(){let{stack:e,siblings:t}=this;return me(!1,e,t===null?-2:-4)??null}get index(){return this.siblings===null?null:me(!1,this.stack,-2)}get node(){return me(!1,this.stack,-1)}get parent(){return this.getNode(1)}get grandparent(){return this.getNode(2)}get isInArray(){return this.siblings!==null}get siblings(){let{stack:e}=this,t=me(!1,e,-3);return Array.isArray(t)?t:null}get next(){let{siblings:e}=this;return e===null?null:e[this.index+1]}get previous(){let{siblings:e}=this;return e===null?null:e[this.index-1]}get isFirst(){return this.index===0}get isLast(){let{siblings:e,index:t}=this;return e!==null&&t===e.length-1}get isRoot(){return this.stack.length===1}get root(){return this.stack[0]}get ancestors(){return[...zn(this,oo,Ki).call(this)]}getName(){let{stack:e}=this,{length:t}=e;return t>1?me(!1,e,-2):null}getValue(){return me(!1,this.stack,-1)}getNode(e=0){let t=zn(this,Gi,w0).call(this,e);return t===-1?null:this.stack[t]}getParentNode(e=0){return this.getNode(e+1)}call(e,...t){let{stack:r}=this,{length:n}=r,a=me(!1,r,-1);for(let o of t)a=a[o],r.push(o,a);try{return e(this)}finally{r.length=n}}callParent(e,t=0){let r=zn(this,Gi,w0).call(this,t+1),n=this.stack.splice(r+1);try{return e(this)}finally{this.stack.push(...n)}}each(e,...t){let{stack:r}=this,{length:n}=r,a=me(!1,r,-1);for(let o of t)a=a[o],r.push(o,a);try{for(let o=0;o{r[a]=e(n,a,o)},...t),r}match(...e){let t=this.stack.length-1,r=null,n=this.stack[t--];for(let a of e){if(n===void 0)return!1;let o=null;if(typeof r=="number"&&(o=r,r=this.stack[t--],n=this.stack[t--]),a&&!a(n,r,o))return!1;r=this.stack[t--],n=this.stack[t--]}return!0}findAncestor(e){for(let t of zn(this,oo,Ki).call(this))if(e(t))return t}hasAncestor(e){for(let t of zn(this,oo,Ki).call(this))if(e(t))return!0;return!1}},c(E0,"bt"),E0),Gi=new WeakSet,w0=c(function(e){let{stack:t}=this;for(let r=t.length-1;r>=0;r-=2)if(!Array.isArray(t[r])&&--e<0)return r;return-1},"wt"),oo=new WeakSet,Ki=c(function*(){let{stack:e}=this;for(let t=e.length-3;t>=0;t-=2){let r=e[t];Array.isArray(r)||(yield r)}},"et"),m8=Mv,x0=new Proxy(()=>{},{get:c(()=>x0,"get")}),is=x0,c(I5,"$u"),g8=I5,c(Sf,"Ot"),c(R6,"jr"),c(Rn,"de"),Pv=Rn(/\s/),pr=Rn(" "),t1=Rn(",; "),r1=Rn(/[^\n\r]/),c(T5,"Mu"),zr=T5,c(R5,"Wu"),ur=R5,c(B5,"Uu"),v8=B5,n1=new Set(["tokens","comments","parent","enclosingNode","precedingNode","followingNode"]),y8=c(e=>Object.keys(e).filter(t=>!n1.has(t)),"zu"),c(z5,"Gu"),yi=z5,c(B6,"Ku"),c(Qs,"St"),c(tn,"te"),c(To,"X"),c(rn,"re"),gl=new WeakMap,c(eu,"nt"),c(Af,"Wr"),vl=c(()=>!1,"vt"),c(z6,"Ur"),$f=c(e=>!/[\S\n\u2028\u2029]/.test(e),"zr"),c($6,"Hu"),c(O6,"qu"),c(Md,"Mr"),c(pl,"Pt"),c($5,"Ju"),ru=$5,c(kf,"Gr"),c(L6,"Xu"),c(M6,"Zu"),c(P6,"Qu"),c(N6,"Kr"),c(H6,"Hr"),c(O5,"eo"),b8=O5,Of=(C0=class extends Error{constructor(){super(...arguments);yr(this,"name","ConfigError")}},c(C0,"Le"),C0),a1=(D0=class extends Error{constructor(){super(...arguments);yr(this,"name","UndefinedParserError")}},c(D0,"Ie"),D0),w8={cursorOffset:{category:"Special",type:"int",default:-1,range:{start:-1,end:1/0,step:1},description:"Print (to stderr) where a cursor at the given position would move to after formatting.",cliCategory:"Editor"},endOfLine:{category:"Global",type:"choice",default:"lf",description:"Which end of line characters to apply.",choices:[{value:"lf",description:"Line Feed only (\\n), common on Linux and macOS as well as inside git repos"},{value:"crlf",description:"Carriage Return + Line Feed characters (\\r\\n), common on Windows"},{value:"cr",description:"Carriage Return character only (\\r), used very rarely"},{value:"auto",description:`Maintain existing -(mixed values within one file are normalised by looking at what's used after the first line)`}]},filepath:{category:"Special",type:"path",description:"Specify the input filepath. This will be used to do parser inference.",cliName:"stdin-filepath",cliCategory:"Other",cliDescription:"Path to the file to pretend that stdin comes from."},insertPragma:{category:"Special",type:"boolean",default:!1,description:"Insert @format pragma into file's first docblock comment.",cliCategory:"Other"},parser:{category:"Global",type:"choice",default:void 0,description:"Which parser to use.",exception:c(e=>typeof e=="string"||typeof e=="function","exception"),choices:[{value:"flow",description:"Flow"},{value:"babel",description:"JavaScript"},{value:"babel-flow",description:"Flow"},{value:"babel-ts",description:"TypeScript"},{value:"typescript",description:"TypeScript"},{value:"acorn",description:"JavaScript"},{value:"espree",description:"JavaScript"},{value:"meriyah",description:"JavaScript"},{value:"css",description:"CSS"},{value:"less",description:"Less"},{value:"scss",description:"SCSS"},{value:"json",description:"JSON"},{value:"json5",description:"JSON5"},{value:"jsonc",description:"JSON with Comments"},{value:"json-stringify",description:"JSON.stringify"},{value:"graphql",description:"GraphQL"},{value:"markdown",description:"Markdown"},{value:"mdx",description:"MDX"},{value:"vue",description:"Vue"},{value:"yaml",description:"YAML"},{value:"glimmer",description:"Ember / Handlebars"},{value:"html",description:"HTML"},{value:"angular",description:"Angular"},{value:"lwc",description:"Lightning Web Components"}]},plugins:{type:"path",array:!0,default:[{value:[]}],category:"Global",description:"Add a plugin. Multiple plugins can be passed as separate `--plugin`s.",exception:c(e=>typeof e=="string"||typeof e=="object","exception"),cliName:"plugin",cliCategory:"Config"},printWidth:{category:"Global",type:"int",default:80,description:"The line length where Prettier will try wrap.",range:{start:0,end:1/0,step:1}},rangeEnd:{category:"Special",type:"int",default:1/0,range:{start:0,end:1/0,step:1},description:`Format code ending at a given character offset (exclusive). -The range will extend forwards to the end of the selected statement.`,cliCategory:"Editor"},rangeStart:{category:"Special",type:"int",default:0,range:{start:0,end:1/0,step:1},description:`Format code starting at a given character offset. -The range will extend backwards to the start of the first line containing the selected statement.`,cliCategory:"Editor"},requirePragma:{category:"Special",type:"boolean",default:!1,description:`Require either '@prettier' or '@format' to be present in the file's first docblock comment -in order for it to be formatted.`,cliCategory:"Other"},tabWidth:{type:"int",category:"Global",default:2,description:"Number of spaces per indentation level.",range:{start:0,end:1/0,step:1}},useTabs:{category:"Global",type:"boolean",default:!1,description:"Indent with tabs instead of spaces."},embeddedLanguageFormatting:{category:"Global",type:"choice",default:"auto",description:"Control how Prettier formats quoted code embedded in the file.",choices:[{value:"auto",description:"Format embedded code if Prettier can automatically identify it."},{value:"off",description:"Never automatically format embedded code."}]}},c(Pd,"ut"),c(j6,"to"),c(V6,"ro"),E8=c(e=>String(e).split(/[/\\]/).pop(),"no"),c(Nd,"Xr"),c(U6,"uo"),c(L5,"oo"),x8=L5,Kr={key:c(e=>/^[$_a-zA-Z][$_a-zA-Z0-9]*$/.test(e)?e:JSON.stringify(e),"key"),value(e){if(e===null||typeof e!="object")return JSON.stringify(e);if(Array.isArray(e))return`[${e.map(r=>Kr.value(r)).join(", ")}]`;let t=Object.keys(e);return t.length===0?"{}":`{ ${t.map(r=>`${Kr.key(r)}: ${Kr.value(e[r])}`).join(", ")} }`},pair:c(({key:e,value:t})=>Kr.value({[e]:t}),"pair")},S0=Bn(ao(),1),Nv=c((e,t,{descriptor:r})=>{let n=[`${S0.default.yellow(typeof e=="string"?r.key(e):r.pair(e))} is deprecated`];return t&&n.push(`we now treat it as ${S0.default.blue(typeof t=="string"?r.key(t):r.pair(t))}`),n.join("; ")+"."},"tn"),nn=Bn(ao(),1),o1=Symbol.for("vnopts.VALUE_NOT_EXIST"),io=Symbol.for("vnopts.VALUE_UNCHANGED"),i1=" ".repeat(2),Hv=c((e,t,r)=>{let{text:n,list:a}=r.normalizeExpectedResult(r.schemas[e].expected(r)),o=[];return n&&o.push(l0(e,t,n,r.descriptor)),a&&o.push([l0(e,t,a.title,r.descriptor)].concat(a.values.map(i=>Hd(i,r.loggerPrintWidth))).join(` -`)),jd(o,r.loggerPrintWidth)},"un"),c(l0,"nn"),c(Hd,"on"),c(jd,"sn"),A0=Bn(ao(),1),yl=[],l1=[],c(M5,"Rt"),s1=c((e,t,{descriptor:r,logger:n,schemas:a})=>{let o=[`Ignored unknown option ${A0.default.yellow(r.pair({key:e,value:t}))}.`],i=Object.keys(a).sort().find(s=>M5(e,s)<3);i&&o.push(`Did you mean ${A0.default.blue(r.key(i))}?`),n.warn(o.join(" "))},"it"),C8=["default","expected","validate","deprecated","forward","redirect","overlap","preprocess","postprocess"],c(P5,"so"),or=(k0=class{static create(e){return P5(this,e)}constructor(e){this.name=e.name}default(e){}expected(e){return"nothing"}validate(e,t){return!1}deprecated(e,t){return!1}forward(e,t){}redirect(e,t){}overlap(e,t,r){return e}preprocess(e,t){return e}postprocess(e,t){return io}},c(k0,"w"),k0),c(q6,"Do"),D8=(_0=class extends or{constructor(e){super(e),this._sourceName=e.sourceName}expected(e){return e.schemas[this._sourceName].expected(e)}validate(e,t){return t.schemas[this._sourceName].validate(e,t)}redirect(e,t){return this._sourceName}},c(_0,"st"),_0),S8=(F0=class extends or{expected(){return"anything"}validate(){return!0}},c(F0,"Dt"),F0),A8=(I0=class extends or{constructor({valueSchema:e,name:t=e.name,...r}){super({...r,name:t}),this._valueSchema=e}expected(e){let{text:t,list:r}=e.normalizeExpectedResult(this._valueSchema.expected(e));return{text:t&&`an array of ${t}`,list:r&&{title:"an array of the following values",values:[{list:r}]}}}validate(e,t){if(!Array.isArray(e))return!1;let r=[];for(let n of e){let a=t.normalizeValidateResult(this._valueSchema.validate(n,t),n);a!==!0&&r.push(a.value)}return r.length===0?!0:{value:r}}deprecated(e,t){let r=[];for(let n of e){let a=t.normalizeDeprecatedResult(this._valueSchema.deprecated(n,t),n);a!==!1&&r.push(...a.map(({value:o})=>({value:[o]})))}return r}forward(e,t){let r=[];for(let n of e){let a=t.normalizeForwardResult(this._valueSchema.forward(n,t),n);r.push(...a.map(s0))}return r}redirect(e,t){let r=[],n=[];for(let a of e){let o=t.normalizeRedirectResult(this._valueSchema.redirect(a,t),a);"remain"in o&&r.push(o.remain),n.push(...o.redirect.map(s0))}return r.length===0?{redirect:n}:{redirect:n,remain:r}}overlap(e,t){return e.concat(t)}},c(I0,"at"),I0),c(s0,"an"),k8=(T0=class extends or{expected(){return"true or false"}validate(e){return typeof e=="boolean"}},c(T0,"ct"),T0),c(N5,"ln"),c(H5,"fn"),c(j5,"Fn"),c(V5,"pn"),c(U5,"dn"),c(q5,"mn"),c(W5,"En"),c(u0,"jt"),c(Vd,"Vt"),c(c0,"$t"),c(d0,"Mt"),c(Ud,"cn"),c(fl,"lt"),c(p0,"Wt"),c(W6,"ao"),_8=(R0=class extends or{constructor(e){super(e),this._choices=H5(e.choices.map(t=>t&&typeof t=="object"?t:{value:t}),"value")}expected({descriptor:e}){let t=Array.from(this._choices.keys()).map(a=>this._choices.get(a)).filter(({hidden:a})=>!a).map(a=>a.value).sort(q5).map(e.value),r=t.slice(0,-2),n=t.slice(-2);return{text:r.concat(n.join(" or ")).join(", "),list:{title:"one of the following values",values:t}}}validate(e){return this._choices.has(e)}deprecated(e){let t=this._choices.get(e);return t&&t.deprecated?{value:e}:!1}forward(e){let t=this._choices.get(e);return t?t.forward:void 0}redirect(e){let t=this._choices.get(e);return t?t.redirect:void 0}},c(R0,"ft"),R0),jv=(B0=class extends or{expected(){return"a number"}validate(e,t){return typeof e=="number"}},c(B0,"Ft"),B0),F8=(z0=class extends jv{expected(){return"an integer"}validate(e,t){return t.normalizeValidateResult(super.validate(e,t),e)===!0&&U5(e)}},c(z0,"pt"),z0),u1=($0=class extends or{expected(){return"a string"}validate(e){return typeof e=="string"}},c($0,"Ye"),$0),Vv=Kr,Uv=s1,qv=Hv,Wv=Nv,I8=(O0=class{constructor(e,t){let{logger:r=console,loggerPrintWidth:n=80,descriptor:a=Vv,unknown:o=Uv,invalid:i=qv,deprecated:s=Wv,missing:u=c(()=>!1,"a"),required:d=c(()=>!1,"c"),preprocess:p=c(m=>m,"d"),postprocess:h=c(()=>io,"f")}=t||{};this._utils={descriptor:a,logger:r||{warn:c(()=>{},"warn")},loggerPrintWidth:n,schemas:N5(e,"name"),normalizeDefaultResult:u0,normalizeExpectedResult:Vd,normalizeDeprecatedResult:d0,normalizeForwardResult:fl,normalizeRedirectResult:p0,normalizeValidateResult:c0},this._unknownHandler=o,this._invalidHandler=W5(i),this._deprecatedHandler=s,this._identifyMissing=(m,f)=>!(m in f)||u(m,f),this._identifyRequired=d,this._preprocess=p,this._postprocess=h,this.cleanHistory()}cleanHistory(){this._hasDeprecationWarned=j5()}normalize(e){let t={},r=[this._preprocess(e,this._utils)],n=c(()=>{for(;r.length!==0;){let a=r.shift(),o=this._applyNormalization(a,t);r.push(...o)}},"u");n();for(let a of Object.keys(this._utils.schemas)){let o=this._utils.schemas[a];if(!(a in t)){let i=u0(o.default(this._utils));"value"in i&&r.push({[a]:i.value})}}n();for(let a of Object.keys(this._utils.schemas)){if(!(a in t))continue;let o=this._utils.schemas[a],i=t[a],s=o.postprocess(i,this._utils);s!==io&&(this._applyValidation(s,a,o),t[a]=s)}return this._applyPostprocess(t),this._applyRequiredCheck(t),t}_applyNormalization(e,t){let r=[],{knownKeys:n,unknownKeys:a}=this._partitionOptionKeys(e);for(let o of n){let i=this._utils.schemas[o],s=i.preprocess(e[o],this._utils);this._applyValidation(s,o,i);let u=c(({from:h,to:m})=>{r.push(typeof m=="string"?{[m]:h}:{[m.key]:m.value})},"a"),d=c(({value:h,redirectTo:m})=>{let f=d0(i.deprecated(h,this._utils),s,!0);if(f!==!1)if(f===!0)this._hasDeprecationWarned(o)||this._utils.logger.warn(this._deprecatedHandler(o,m,this._utils));else for(let{value:v}of f){let g={key:o,value:v};if(!this._hasDeprecationWarned(g)){let b=typeof m=="string"?{key:m,value:v}:m;this._utils.logger.warn(this._deprecatedHandler(g,b,this._utils))}}},"c");fl(i.forward(s,this._utils),s).forEach(u);let p=p0(i.redirect(s,this._utils),s);if(p.redirect.forEach(u),"remain"in p){let h=p.remain;t[o]=o in t?i.overlap(t[o],h,this._utils):h,d({value:h})}for(let{from:h,to:m}of p.redirect)d({value:h,redirectTo:m})}for(let o of a){let i=e[o];this._applyUnknownHandler(o,i,t,(s,u)=>{r.push({[s]:u})})}return r}_applyRequiredCheck(e){for(let t of Object.keys(this._utils.schemas))if(this._identifyMissing(t,e)&&this._identifyRequired(t))throw this._invalidHandler(t,o1,this._utils)}_partitionOptionKeys(e){let[t,r]=V5(Object.keys(e).filter(n=>!this._identifyMissing(n,e)),n=>n in this._utils.schemas);return{knownKeys:t,unknownKeys:r}}_applyValidation(e,t,r){let n=c0(r.validate(e,this._utils),e);if(n!==!0)throw this._invalidHandler(t,n.value,this._utils)}_applyUnknownHandler(e,t,r,n){let a=this._unknownHandler(e,t,this._utils);if(a)for(let o of Object.keys(a)){if(this._identifyMissing(o,a))continue;let i=a[o];o in this._utils.schemas?n(o,i):r[o]=i}}_applyPostprocess(e){let t=this._postprocess(e,this._utils);if(t!==io){if(t.delete)for(let r of t.delete)delete e[r];if(t.override){let{knownKeys:r,unknownKeys:n}=this._partitionOptionKeys(t.override);for(let a of r){let o=t.override[a];this._applyValidation(o,a,this._utils.schemas[a]),e[a]=o}for(let a of n){let o=t.override[a];this._applyUnknownHandler(a,o,e,(i,s)=>{let u=this._utils.schemas[i];this._applyValidation(s,i,u),e[i]=s})}}}}},c(O0,"dt"),O0),c(G5,"lo"),c(G6,"fo"),c(K6,"Fo"),T8=G5,Gv=c((e,t,r)=>{if(!(e&&t==null)){if(t.findLast)return t.findLast(r);for(let n=t.length-1;n>=0;n--){let a=t[n];if(r(a,n,t))return a}}},"po"),Lf=Gv,c(_f,"Gt"),c(Y6,"Bn"),c(Ff,"mt"),c(If,"Kt"),c(J6,"_n"),c1={astFormat:"estree",printer:{},originalText:void 0,locStart:null,locEnd:null},c(K5,"mo"),wn=K5,R8=Bn(Tv(),1),c(Y5,"_o"),c(Z6,"ko"),Ra=Y5,c(X6,"In"),c(Q6,"xo"),c(J5,"bo"),B8=J5,c(mi,"je"),c(qd,"Yn"),c(Tf,"qt"),c(Z5,"wo"),z8=Z5,c(X5,"Oo"),$8=X5,O8=c(({parser:e})=>e==="json"||e==="json5"||e==="jsonc"||e==="json-stringify","No"),c(e8,"So"),c(Wd,"$n"),c(t8,"To"),c(ts,"Jt"),c(r8,"vo"),Mf=new Set(["JsonRoot","ObjectExpression","ArrayExpression","StringLiteral","NumericLiteral","BooleanLiteral","NullLiteral","UnaryExpression","TemplateLiteral"]),L8=new Set(["OperationDefinition","FragmentDefinition","VariableDefinition","TypeExtensionDefinition","ObjectTypeDefinition","FieldDefinition","DirectiveDefinition","EnumTypeDefinition","EnumValueDefinition","InputValueDefinition","InputObjectTypeDefinition","SchemaDefinition","OperationTypeDefinition","InterfaceTypeDefinition","UnionTypeDefinition","ScalarTypeDefinition"]),c(Gd,"Mn"),c(n8,"Un"),Pf="\uFEFF",d1=Symbol("cursor"),c(Rf,"Jn"),c(a8,"Lo"),c(hl,"Xt"),c(Kd,"Gn"),c(Bf,"Xn"),c(Yd,"Kn"),c(Jd,"Zt"),c(Q5,"Zn"),c(ev,"Qn"),c(tv,"eu"),c(rv,"tu"),c(nv,"ru"),M0={},no(M0,{builders:c(()=>Kv,"builders"),printer:c(()=>Yv,"printer"),utils:c(()=>Jv,"utils")}),Kv={join:Bd,line:Qd,softline:Ov,hardline:_r,literalline:e1,group:Td,conditionalGroup:y5,fill:Rd,lineSuffix:Zl,lineSuffixBoundary:zv,cursor:ns,breakParent:Eo,ifBreak:b5,trim:$v,indent:Vo,indentIfBreak:w5,align:dn,addAlignmentToDoc:zd,markAsRoot:g5,dedentToRoot:m5,dedent:v5,hardlineWithoutBreakParent:ml,literallineWithoutBreakParent:b0,label:E5,concat:c(e=>e,"concat")},Yv={printDocToString:qo},Jv={willBreak:S5,traverseDoc:rs,findInDoc:Xl,mapDoc:Uo,removeLines:A5,stripTrailingHardline:Ld,replaceEndOfLine:k5,canBreak:_5},Zv="3.2.5",P0={},no(P0,{addDanglingComment:c(()=>To,"addDanglingComment"),addLeadingComment:c(()=>tn,"addLeadingComment"),addTrailingComment:c(()=>rn,"addTrailingComment"),getAlignmentSize:c(()=>os,"getAlignmentSize"),getIndentSize:c(()=>Xv,"getIndentSize"),getMaxContinuousCount:c(()=>Qv,"getMaxContinuousCount"),getNextNonSpaceNonCommentCharacter:c(()=>e4,"getNextNonSpaceNonCommentCharacter"),getNextNonSpaceNonCommentCharacterIndex:c(()=>hv,"getNextNonSpaceNonCommentCharacterIndex"),getStringWidth:c(()=>as,"getStringWidth"),hasNewline:c(()=>ur,"hasNewline"),hasNewlineInRange:c(()=>t4,"hasNewlineInRange"),hasSpaces:c(()=>r4,"hasSpaces"),isNextLineEmpty:c(()=>gv,"isNextLineEmpty"),isNextLineEmptyAfterIndex:c(()=>us,"isNextLineEmptyAfterIndex"),isPreviousLineEmpty:c(()=>mv,"isPreviousLineEmpty"),makeString:c(()=>n4,"makeString"),skip:c(()=>Rn,"skip"),skipEverythingButNewLine:c(()=>r1,"skipEverythingButNewLine"),skipInlineComment:c(()=>ls,"skipInlineComment"),skipNewline:c(()=>zr,"skipNewline"),skipSpaces:c(()=>pr,"skipSpaces"),skipToLineEnd:c(()=>t1,"skipToLineEnd"),skipTrailingComment:c(()=>ss,"skipTrailingComment"),skipWhitespace:c(()=>Pv,"skipWhitespace")}),c(av,"Vo"),ls=av,c(ov,"$o"),ss=ov,c(iv,"Mo"),nu=iv,c(lv,"Wo"),us=lv,c(sv,"Uo"),Xv=sv,c(o8,"er"),c(uv,"zo"),Qv=uv,c(cv,"Go"),e4=cv,c(dv,"Ko"),t4=dv,c(pv,"Ho"),r4=pv,c(fv,"qo"),n4=fv,c(i8,"Jo"),c(hv,"Xo"),c(l8,"Zo"),c(mv,"Qo"),c(s8,"ei"),c(gv,"ti"),c(br,"ae"),p1=br(Jd),c(Zd,"lu"),c(vv,"ri"),a4=br(Pd,0),o4={parse:br(Q5),formatAST:br(ev),formatDoc:br(tv),printToDoc:br(rv),printDocToString:br(nv)},M8=g0});function P8(e){for(var t=[],r=1;r{c(P8,"dedent")}),N8={};ka(N8,{formatter:()=>H8});var i4,H8,Xk=B(()=>{i4=De($s(),1),Yk(),Jk(),Zk(),H8=(0,i4.default)(2)(async(e,t)=>e===!1?t:e==="dedent"||e===!0?P8(t):(await M8.format(t,{parser:e,plugins:[w6],htmlWhitespaceSensitivity:"ignore"})).trim())}),f1,h1,Qk=B(()=>{f1=c(function(e){return e.reduce(function(t,r){var n=r[0],a=r[1];return t[n]=a,t},{})},"fromEntries"),h1=typeof window<"u"&&window.document&&window.document.createElement?l.useLayoutEffect:l.useEffect}),$e,Qe,et,Oe,cs,Xn,ln,Qn,j8,Nf,Un,V8,m1,Hf,l4,s4,u4,c4,d4,p4,f4,h4,m4,U8,at=B(()=>{$e="top",Qe="bottom",et="right",Oe="left",cs="auto",Xn=[$e,Qe,et,Oe],ln="start",Qn="end",j8="clippingParents",Nf="viewport",Un="popper",V8="reference",m1=Xn.reduce(function(e,t){return e.concat([t+"-"+ln,t+"-"+Qn])},[]),Hf=[].concat(Xn,[cs]).reduce(function(e,t){return e.concat([t,t+"-"+ln,t+"-"+Qn])},[]),l4="beforeRead",s4="read",u4="afterRead",c4="beforeMain",d4="main",p4="afterMain",f4="beforeWrite",h4="write",m4="afterWrite",U8=[l4,s4,u4,c4,d4,p4,f4,h4,m4]});function Et(e){return e?(e.nodeName||"").toLowerCase():null}var En=B(()=>{c(Et,"getNodeName")});function Ve(e){if(e==null)return window;if(e.toString()!=="[object Window]"){var t=e.ownerDocument;return t&&t.defaultView||window}return e}var Xt=B(()=>{c(Ve,"getWindow")});function $r(e){var t=Ve(e).Element;return e instanceof t||e instanceof Element}function Xe(e){var t=Ve(e).HTMLElement;return e instanceof t||e instanceof HTMLElement}function au(e){if(typeof ShadowRoot>"u")return!1;var t=Ve(e).ShadowRoot;return e instanceof t||e instanceof ShadowRoot}var ot=B(()=>{Xt(),c($r,"isElement"),c(Xe,"isHTMLElement"),c(au,"isShadowRoot")});function g4(e){var t=e.state;Object.keys(t.elements).forEach(function(r){var n=t.styles[r]||{},a=t.attributes[r]||{},o=t.elements[r];!Xe(o)||!Et(o)||(Object.assign(o.style,n),Object.keys(a).forEach(function(i){var s=a[i];s===!1?o.removeAttribute(i):o.setAttribute(i,s===!0?"":s)}))})}function v4(e){var t=e.state,r={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,r.popper),t.styles=r,t.elements.arrow&&Object.assign(t.elements.arrow.style,r.arrow),function(){Object.keys(t.elements).forEach(function(n){var a=t.elements[n],o=t.attributes[n]||{},i=Object.keys(t.styles.hasOwnProperty(n)?t.styles[n]:r[n]),s=i.reduce(function(u,d){return u[d]="",u},{});!Xe(a)||!Et(a)||(Object.assign(a.style,s),Object.keys(o).forEach(function(u){a.removeAttribute(u)}))})}}var q8,e_=B(()=>{En(),ot(),c(g4,"applyStyles"),c(v4,"effect"),q8={name:"applyStyles",enabled:!0,phase:"write",fn:g4,effect:v4,requires:["computeStyles"]}});function vt(e){return e.split("-")[0]}var xn=B(()=>{c(vt,"getBasePlacement")}),Fr,Wo,fn,Cn=B(()=>{Fr=Math.max,Wo=Math.min,fn=Math.round});function ds(){var e=navigator.userAgentData;return e!=null&&e.brands&&Array.isArray(e.brands)?e.brands.map(function(t){return t.brand+"/"+t.version}).join(" "):navigator.userAgent}var W8=B(()=>{c(ds,"getUAString")});function jf(){return!/^((?!chrome|android).)*safari/i.test(ds())}var G8=B(()=>{W8(),c(jf,"isLayoutViewport")});function hn(e,t,r){t===void 0&&(t=!1),r===void 0&&(r=!1);var n=e.getBoundingClientRect(),a=1,o=1;t&&Xe(e)&&(a=e.offsetWidth>0&&fn(n.width)/e.offsetWidth||1,o=e.offsetHeight>0&&fn(n.height)/e.offsetHeight||1);var i=$r(e)?Ve(e):window,s=i.visualViewport,u=!jf()&&r,d=(n.left+(u&&s?s.offsetLeft:0))/a,p=(n.top+(u&&s?s.offsetTop:0))/o,h=n.width/a,m=n.height/o;return{width:h,height:m,top:p,right:d+h,bottom:p+m,left:d,x:d,y:p}}var bi=B(()=>{ot(),Cn(),Xt(),G8(),c(hn,"getBoundingClientRect")});function ou(e){var t=hn(e),r=e.offsetWidth,n=e.offsetHeight;return Math.abs(t.width-r)<=1&&(r=t.width),Math.abs(t.height-n)<=1&&(n=t.height),{x:e.offsetLeft,y:e.offsetTop,width:r,height:n}}var Vf=B(()=>{bi(),c(ou,"getLayoutRect")});function Uf(e,t){var r=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(r&&au(r)){var n=t;do{if(n&&e.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}var K8=B(()=>{ot(),c(Uf,"contains")});function Jt(e){return Ve(e).getComputedStyle(e)}var wi=B(()=>{Xt(),c(Jt,"getComputedStyle")});function Y8(e){return["table","td","th"].indexOf(Et(e))>=0}var t_=B(()=>{En(),c(Y8,"isTableElement")});function vr(e){return(($r(e)?e.ownerDocument:e.document)||window.document).documentElement}var Mr=B(()=>{ot(),c(vr,"getDocumentElement")});function Ei(e){return Et(e)==="html"?e:e.assignedSlot||e.parentNode||(au(e)?e.host:null)||vr(e)}var iu=B(()=>{En(),Mr(),ot(),c(Ei,"getParentNode")});function g1(e){return!Xe(e)||Jt(e).position==="fixed"?null:e.offsetParent}function J8(e){var t=/firefox/i.test(ds()),r=/Trident/i.test(ds());if(r&&Xe(e)){var n=Jt(e);if(n.position==="fixed")return null}var a=Ei(e);for(au(a)&&(a=a.host);Xe(a)&&["html","body"].indexOf(Et(a))<0;){var o=Jt(a);if(o.transform!=="none"||o.perspective!=="none"||o.contain==="paint"||["transform","perspective"].indexOf(o.willChange)!==-1||t&&o.willChange==="filter"||t&&o.filter&&o.filter!=="none")return a;a=a.parentNode}return null}function Ba(e){for(var t=Ve(e),r=g1(e);r&&Y8(r)&&Jt(r).position==="static";)r=g1(r);return r&&(Et(r)==="html"||Et(r)==="body"&&Jt(r).position==="static")?t:r||J8(e)||t}var xi=B(()=>{Xt(),En(),wi(),ot(),t_(),iu(),W8(),c(g1,"getTrueOffsetParent"),c(J8,"getContainingBlock"),c(Ba,"getOffsetParent")});function lu(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}var qf=B(()=>{c(lu,"getMainAxisFromPlacement")});function ea(e,t,r){return Fr(e,Wo(t,r))}function Z8(e,t,r){var n=ea(e,t,r);return n>r?r:n}var X8=B(()=>{Cn(),c(ea,"within"),c(Z8,"withinMaxClamp")});function Wf(){return{top:0,right:0,bottom:0,left:0}}var Q8=B(()=>{c(Wf,"getFreshSideObject")});function Gf(e){return Object.assign({},Wf(),e)}var eE=B(()=>{Q8(),c(Gf,"mergePaddingObject")});function Kf(e,t){return t.reduce(function(r,n){return r[n]=e,r},{})}var tE=B(()=>{c(Kf,"expandToHashMap")});function y4(e){var t,r=e.state,n=e.name,a=e.options,o=r.elements.arrow,i=r.modifiersData.popperOffsets,s=vt(r.placement),u=lu(s),d=[Oe,et].indexOf(s)>=0,p=d?"height":"width";if(!(!o||!i)){var h=rE(a.padding,r),m=ou(o),f=u==="y"?$e:Oe,v=u==="y"?Qe:et,g=r.rects.reference[p]+r.rects.reference[u]-i[u]-r.rects.popper[p],b=i[u]-r.rects.reference[u],C=Ba(o),w=C?u==="y"?C.clientHeight||0:C.clientWidth||0:0,x=g/2-b/2,E=h[f],D=w-m[p]-h[v],S=w/2-m[p]/2+x,A=ea(E,S,D),k=u;r.modifiersData[n]=(t={},t[k]=A,t.centerOffset=A-S,t)}}function b4(e){var t=e.state,r=e.options,n=r.element,a=n===void 0?"[data-popper-arrow]":n;a!=null&&(typeof a=="string"&&(a=t.elements.popper.querySelector(a),!a)||Uf(t.elements.popper,a)&&(t.elements.arrow=a))}var rE,nE,r_=B(()=>{xn(),Vf(),K8(),xi(),qf(),X8(),eE(),tE(),at(),rE=c(function(e,t){return e=typeof e=="function"?e(Object.assign({},t.rects,{placement:t.placement})):e,Gf(typeof e!="number"?e:Kf(e,Xn))},"toPaddingObject"),c(y4,"arrow"),c(b4,"effect"),nE={name:"arrow",enabled:!0,phase:"main",fn:y4,effect:b4,requires:["popperOffsets"],requiresIfExists:["preventOverflow"]}});function mn(e){return e.split("-")[1]}var Ci=B(()=>{c(mn,"getVariation")});function aE(e,t){var r=e.x,n=e.y,a=t.devicePixelRatio||1;return{x:fn(r*a)/a||0,y:fn(n*a)/a||0}}function v1(e){var t,r=e.popper,n=e.popperRect,a=e.placement,o=e.variation,i=e.offsets,s=e.position,u=e.gpuAcceleration,d=e.adaptive,p=e.roundOffsets,h=e.isFixed,m=i.x,f=m===void 0?0:m,v=i.y,g=v===void 0?0:v,b=typeof p=="function"?p({x:f,y:g}):{x:f,y:g};f=b.x,g=b.y;var C=i.hasOwnProperty("x"),w=i.hasOwnProperty("y"),x=Oe,E=$e,D=window;if(d){var S=Ba(r),A="clientHeight",k="clientWidth";if(S===Ve(r)&&(S=vr(r),Jt(S).position!=="static"&&s==="absolute"&&(A="scrollHeight",k="scrollWidth")),S=S,a===$e||(a===Oe||a===et)&&o===Qn){E=Qe;var F=h&&S===D&&D.visualViewport?D.visualViewport.height:S[A];g-=F-n.height,g*=u?1:-1}if(a===Oe||(a===$e||a===Qe)&&o===Qn){x=et;var T=h&&S===D&&D.visualViewport?D.visualViewport.width:S[k];f-=T-n.width,f*=u?1:-1}}var R=Object.assign({position:s},d&&oE),$=p===!0?aE({x:f,y:g},Ve(r)):{x:f,y:g};if(f=$.x,g=$.y,u){var z;return Object.assign({},R,(z={},z[E]=w?"0":"",z[x]=C?"0":"",z.transform=(D.devicePixelRatio||1)<=1?"translate("+f+"px, "+g+"px)":"translate3d("+f+"px, "+g+"px, 0)",z))}return Object.assign({},R,(t={},t[E]=w?g+"px":"",t[x]=C?f+"px":"",t.transform="",t))}function w4(e){var t=e.state,r=e.options,n=r.gpuAcceleration,a=n===void 0?!0:n,o=r.adaptive,i=o===void 0?!0:o,s=r.roundOffsets,u=s===void 0?!0:s,d={placement:vt(t.placement),variation:mn(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:a,isFixed:t.options.strategy==="fixed"};t.modifiersData.popperOffsets!=null&&(t.styles.popper=Object.assign({},t.styles.popper,v1(Object.assign({},d,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:i,roundOffsets:u})))),t.modifiersData.arrow!=null&&(t.styles.arrow=Object.assign({},t.styles.arrow,v1(Object.assign({},d,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:u})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})}var oE,iE,n_=B(()=>{at(),xi(),Xt(),Mr(),wi(),xn(),Ci(),Cn(),oE={top:"auto",right:"auto",bottom:"auto",left:"auto"},c(aE,"roundOffsetsByDPR"),c(v1,"mapToStyles"),c(w4,"computeStyles"),iE={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:w4,data:{}}});function E4(e){var t=e.state,r=e.instance,n=e.options,a=n.scroll,o=a===void 0?!0:a,i=n.resize,s=i===void 0?!0:i,u=Ve(t.elements.popper),d=[].concat(t.scrollParents.reference,t.scrollParents.popper);return o&&d.forEach(function(p){p.addEventListener("scroll",r.update,xo)}),s&&u.addEventListener("resize",r.update,xo),function(){o&&d.forEach(function(p){p.removeEventListener("scroll",r.update,xo)}),s&&u.removeEventListener("resize",r.update,xo)}}var xo,lE,a_=B(()=>{Xt(),xo={passive:!0},c(E4,"effect"),lE={name:"eventListeners",enabled:!0,phase:"write",fn:c(function(){},"fn"),effect:E4,data:{}}});function Ro(e){return e.replace(/left|right|bottom|top/g,function(t){return sE[t]})}var sE,o_=B(()=>{sE={left:"right",right:"left",bottom:"top",top:"bottom"},c(Ro,"getOppositePlacement")});function y1(e){return e.replace(/start|end/g,function(t){return uE[t]})}var uE,i_=B(()=>{uE={start:"end",end:"start"},c(y1,"getOppositeVariationPlacement")});function su(e){var t=Ve(e),r=t.pageXOffset,n=t.pageYOffset;return{scrollLeft:r,scrollTop:n}}var Yf=B(()=>{Xt(),c(su,"getWindowScroll")});function uu(e){return hn(vr(e)).left+su(e).scrollLeft}var Jf=B(()=>{bi(),Mr(),Yf(),c(uu,"getWindowScrollBarX")});function cE(e,t){var r=Ve(e),n=vr(e),a=r.visualViewport,o=n.clientWidth,i=n.clientHeight,s=0,u=0;if(a){o=a.width,i=a.height;var d=jf();(d||!d&&t==="fixed")&&(s=a.offsetLeft,u=a.offsetTop)}return{width:o,height:i,x:s+uu(e),y:u}}var l_=B(()=>{Xt(),Mr(),Jf(),G8(),c(cE,"getViewportRect")});function dE(e){var t,r=vr(e),n=su(e),a=(t=e.ownerDocument)==null?void 0:t.body,o=Fr(r.scrollWidth,r.clientWidth,a?a.scrollWidth:0,a?a.clientWidth:0),i=Fr(r.scrollHeight,r.clientHeight,a?a.scrollHeight:0,a?a.clientHeight:0),s=-n.scrollLeft+uu(e),u=-n.scrollTop;return Jt(a||r).direction==="rtl"&&(s+=Fr(r.clientWidth,a?a.clientWidth:0)-o),{width:o,height:i,x:s,y:u}}var s_=B(()=>{Mr(),wi(),Jf(),Yf(),Cn(),c(dE,"getDocumentRect")});function cu(e){var t=Jt(e),r=t.overflow,n=t.overflowX,a=t.overflowY;return/auto|scroll|overlay|hidden/.test(r+a+n)}var Zf=B(()=>{wi(),c(cu,"isScrollParent")});function Xf(e){return["html","body","#document"].indexOf(Et(e))>=0?e.ownerDocument.body:Xe(e)&&cu(e)?e:Xf(Ei(e))}var u_=B(()=>{iu(),Zf(),En(),ot(),c(Xf,"getScrollParent")});function ta(e,t){var r;t===void 0&&(t=[]);var n=Xf(e),a=n===((r=e.ownerDocument)==null?void 0:r.body),o=Ve(n),i=a?[o].concat(o.visualViewport||[],cu(n)?n:[]):n,s=t.concat(i);return a?s:s.concat(ta(Ei(i)))}var pE=B(()=>{u_(),iu(),Xt(),Zf(),c(ta,"listScrollParents")});function ps(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}var fE=B(()=>{c(ps,"rectToClientRect")});function hE(e,t){var r=hn(e,!1,t==="fixed");return r.top=r.top+e.clientTop,r.left=r.left+e.clientLeft,r.bottom=r.top+e.clientHeight,r.right=r.left+e.clientWidth,r.width=e.clientWidth,r.height=e.clientHeight,r.x=r.left,r.y=r.top,r}function b1(e,t,r){return t===Nf?ps(cE(e,r)):$r(t)?hE(t,r):ps(dE(vr(e)))}function mE(e){var t=ta(Ei(e)),r=["absolute","fixed"].indexOf(Jt(e).position)>=0,n=r&&Xe(e)?Ba(e):e;return $r(n)?t.filter(function(a){return $r(a)&&Uf(a,n)&&Et(a)!=="body"}):[]}function gE(e,t,r,n){var a=t==="clippingParents"?mE(e):[].concat(t),o=[].concat(a,[r]),i=o[0],s=o.reduce(function(u,d){var p=b1(e,d,n);return u.top=Fr(p.top,u.top),u.right=Wo(p.right,u.right),u.bottom=Wo(p.bottom,u.bottom),u.left=Fr(p.left,u.left),u},b1(e,i,n));return s.width=s.right-s.left,s.height=s.bottom-s.top,s.x=s.left,s.y=s.top,s}var c_=B(()=>{at(),l_(),s_(),pE(),xi(),Mr(),wi(),ot(),bi(),iu(),K8(),En(),fE(),Cn(),c(hE,"getInnerBoundingClientRect"),c(b1,"getClientRectFromMixedType"),c(mE,"getClippingParents"),c(gE,"getClippingRect")});function Qf(e){var t=e.reference,r=e.element,n=e.placement,a=n?vt(n):null,o=n?mn(n):null,i=t.x+t.width/2-r.width/2,s=t.y+t.height/2-r.height/2,u;switch(a){case $e:u={x:i,y:t.y-r.height};break;case Qe:u={x:i,y:t.y+t.height};break;case et:u={x:t.x+t.width,y:s};break;case Oe:u={x:t.x-r.width,y:s};break;default:u={x:t.x,y:t.y}}var d=a?lu(a):null;if(d!=null){var p=d==="y"?"height":"width";switch(o){case ln:u[d]=u[d]-(t[p]/2-r[p]/2);break;case Qn:u[d]=u[d]+(t[p]/2-r[p]/2);break}}return u}var vE=B(()=>{xn(),Ci(),qf(),at(),c(Qf,"computeOffsets")});function va(e,t){t===void 0&&(t={});var r=t,n=r.placement,a=n===void 0?e.placement:n,o=r.strategy,i=o===void 0?e.strategy:o,s=r.boundary,u=s===void 0?j8:s,d=r.rootBoundary,p=d===void 0?Nf:d,h=r.elementContext,m=h===void 0?Un:h,f=r.altBoundary,v=f===void 0?!1:f,g=r.padding,b=g===void 0?0:g,C=Gf(typeof b!="number"?b:Kf(b,Xn)),w=m===Un?V8:Un,x=e.rects.popper,E=e.elements[v?w:m],D=gE($r(E)?E:E.contextElement||vr(e.elements.popper),u,p,i),S=hn(e.elements.reference),A=Qf({reference:S,element:x,strategy:"absolute",placement:a}),k=ps(Object.assign({},x,A)),F=m===Un?k:S,T={top:D.top-F.top+C.top,bottom:F.bottom-D.bottom+C.bottom,left:D.left-F.left+C.left,right:F.right-D.right+C.right},R=e.modifiersData.offset;if(m===Un&&R){var $=R[a];Object.keys(T).forEach(function(z){var L=[et,Qe].indexOf(z)>=0?1:-1,O=[$e,Qe].indexOf(z)>=0?"y":"x";T[z]+=$[O]*L})}return T}var du=B(()=>{c_(),Mr(),bi(),vE(),fE(),at(),ot(),eE(),tE(),c(va,"detectOverflow")});function yE(e,t){t===void 0&&(t={});var r=t,n=r.placement,a=r.boundary,o=r.rootBoundary,i=r.padding,s=r.flipVariations,u=r.allowedAutoPlacements,d=u===void 0?Hf:u,p=mn(n),h=p?s?m1:m1.filter(function(v){return mn(v)===p}):Xn,m=h.filter(function(v){return d.indexOf(v)>=0});m.length===0&&(m=h);var f=m.reduce(function(v,g){return v[g]=va(e,{placement:g,boundary:a,rootBoundary:o,padding:i})[vt(g)],v},{});return Object.keys(f).sort(function(v,g){return f[v]-f[g]})}var d_=B(()=>{Ci(),at(),du(),xn(),c(yE,"computeAutoPlacement")});function bE(e){if(vt(e)===cs)return[];var t=Ro(e);return[y1(e),t,y1(t)]}function x4(e){var t=e.state,r=e.options,n=e.name;if(!t.modifiersData[n]._skip){for(var a=r.mainAxis,o=a===void 0?!0:a,i=r.altAxis,s=i===void 0?!0:i,u=r.fallbackPlacements,d=r.padding,p=r.boundary,h=r.rootBoundary,m=r.altBoundary,f=r.flipVariations,v=f===void 0?!0:f,g=r.allowedAutoPlacements,b=t.options.placement,C=vt(b),w=C===b,x=u||(w||!v?[Ro(b)]:bE(b)),E=[b].concat(x).reduce(function(re,N){return re.concat(vt(N)===cs?yE(t,{placement:N,boundary:p,rootBoundary:h,padding:d,flipVariations:v,allowedAutoPlacements:g}):N)},[]),D=t.rects.reference,S=t.rects.popper,A=new Map,k=!0,F=E[0],T=0;T=0,O=L?"width":"height",M=va(t,{placement:R,boundary:p,rootBoundary:h,altBoundary:m,padding:d}),j=L?z?et:Oe:z?Qe:$e;D[O]>S[O]&&(j=Ro(j));var G=Ro(j),H=[];if(o&&H.push(M[$]<=0),s&&H.push(M[j]<=0,M[G]<=0),H.every(function(re){return re})){F=R,k=!1;break}A.set(R,H)}if(k)for(var K=v?3:1,te=c(function(re){var N=E.find(function(Y){var J=A.get(Y);if(J)return J.slice(0,re).every(function(pe){return pe})});if(N)return F=N,"break"},"_loop"),le=K;le>0;le--){var Q=te(le);if(Q==="break")break}t.placement!==F&&(t.modifiersData[n]._skip=!0,t.placement=F,t.reset=!0)}}var wE,p_=B(()=>{o_(),xn(),i_(),du(),d_(),at(),Ci(),c(bE,"getExpandedFallbackPlacements"),c(x4,"flip"),wE={name:"flip",enabled:!0,phase:"main",fn:x4,requiresIfExists:["offset"],data:{_skip:!1}}});function w1(e,t,r){return r===void 0&&(r={x:0,y:0}),{top:e.top-t.height-r.y,right:e.right-t.width+r.x,bottom:e.bottom-t.height+r.y,left:e.left-t.width-r.x}}function E1(e){return[$e,et,Qe,Oe].some(function(t){return e[t]>=0})}function C4(e){var t=e.state,r=e.name,n=t.rects.reference,a=t.rects.popper,o=t.modifiersData.preventOverflow,i=va(t,{elementContext:"reference"}),s=va(t,{altBoundary:!0}),u=w1(i,n),d=w1(s,a,o),p=E1(u),h=E1(d);t.modifiersData[r]={referenceClippingOffsets:u,popperEscapeOffsets:d,isReferenceHidden:p,hasPopperEscaped:h},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":p,"data-popper-escaped":h})}var EE,f_=B(()=>{at(),du(),c(w1,"getSideOffsets"),c(E1,"isAnySideFullyClipped"),c(C4,"hide"),EE={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:C4}});function xE(e,t,r){var n=vt(e),a=[Oe,$e].indexOf(n)>=0?-1:1,o=typeof r=="function"?r(Object.assign({},t,{placement:e})):r,i=o[0],s=o[1];return i=i||0,s=(s||0)*a,[Oe,et].indexOf(n)>=0?{x:s,y:i}:{x:i,y:s}}function D4(e){var t=e.state,r=e.options,n=e.name,a=r.offset,o=a===void 0?[0,0]:a,i=Hf.reduce(function(p,h){return p[h]=xE(h,t.rects,o),p},{}),s=i[t.placement],u=s.x,d=s.y;t.modifiersData.popperOffsets!=null&&(t.modifiersData.popperOffsets.x+=u,t.modifiersData.popperOffsets.y+=d),t.modifiersData[n]=i}var CE,h_=B(()=>{xn(),at(),c(xE,"distanceAndSkiddingToXY"),c(D4,"offset"),CE={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:D4}});function S4(e){var t=e.state,r=e.name;t.modifiersData[r]=Qf({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})}var DE,m_=B(()=>{vE(),c(S4,"popperOffsets"),DE={name:"popperOffsets",enabled:!0,phase:"read",fn:S4,data:{}}});function SE(e){return e==="x"?"y":"x"}var g_=B(()=>{c(SE,"getAltAxis")});function A4(e){var t=e.state,r=e.options,n=e.name,a=r.mainAxis,o=a===void 0?!0:a,i=r.altAxis,s=i===void 0?!1:i,u=r.boundary,d=r.rootBoundary,p=r.altBoundary,h=r.padding,m=r.tether,f=m===void 0?!0:m,v=r.tetherOffset,g=v===void 0?0:v,b=va(t,{boundary:u,rootBoundary:d,padding:h,altBoundary:p}),C=vt(t.placement),w=mn(t.placement),x=!w,E=lu(C),D=SE(E),S=t.modifiersData.popperOffsets,A=t.rects.reference,k=t.rects.popper,F=typeof g=="function"?g(Object.assign({},t.rects,{placement:t.placement})):g,T=typeof F=="number"?{mainAxis:F,altAxis:F}:Object.assign({mainAxis:0,altAxis:0},F),R=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,$={x:0,y:0};if(S){if(o){var z,L=E==="y"?$e:Oe,O=E==="y"?Qe:et,M=E==="y"?"height":"width",j=S[E],G=j+b[L],H=j-b[O],K=f?-k[M]/2:0,te=w===ln?A[M]:k[M],le=w===ln?-k[M]:-A[M],Q=t.elements.arrow,re=f&&Q?ou(Q):{width:0,height:0},N=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:Wf(),Y=N[L],J=N[O],pe=ea(0,A[M],re[M]),Se=x?A[M]/2-K-pe-Y-T.mainAxis:te-pe-Y-T.mainAxis,St=x?-A[M]/2+K+pe+J+T.mainAxis:le+pe+J+T.mainAxis,Ue=t.elements.arrow&&Ba(t.elements.arrow),lt=Ue?E==="y"?Ue.clientTop||0:Ue.clientLeft||0:0,P=(z=R==null?void 0:R[E])!=null?z:0,st=j+Se-P-lt,At=j+St-P,Nr=ea(f?Wo(G,st):G,j,f?Fr(H,At):H);S[E]=Nr,$[E]=Nr-j}if(s){var _n,kt=E==="x"?$e:Oe,Ai=E==="x"?Qe:et,Te=S[D],Hr=D==="y"?"height":"width",_t=Te+b[kt],Fn=Te-b[Ai],Ft=[$e,Oe].indexOf(C)!==-1,In=(_n=R==null?void 0:R[D])!=null?_n:0,It=Ft?_t:Te-A[Hr]-k[Hr]-In+T.altAxis,Ae=Ft?Te+A[Hr]+k[Hr]-In-T.altAxis:Fn,ut=f&&Ft?Z8(It,Te,Ae):ea(f?It:_t,Te,f?Ae:Fn);S[D]=ut,$[D]=ut-Te}t.modifiersData[n]=$}}var AE,v_=B(()=>{at(),xn(),qf(),g_(),X8(),Vf(),xi(),du(),Ci(),Q8(),Cn(),c(A4,"preventOverflow"),AE={name:"preventOverflow",enabled:!0,phase:"main",fn:A4,requiresIfExists:["offset"]}}),kE=B(()=>{});function _E(e){return{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}}var y_=B(()=>{c(_E,"getHTMLElementScroll")});function FE(e){return e===Ve(e)||!Xe(e)?su(e):_E(e)}var b_=B(()=>{Yf(),Xt(),ot(),y_(),c(FE,"getNodeScroll")});function IE(e){var t=e.getBoundingClientRect(),r=fn(t.width)/e.offsetWidth||1,n=fn(t.height)/e.offsetHeight||1;return r!==1||n!==1}function TE(e,t,r){r===void 0&&(r=!1);var n=Xe(t),a=Xe(t)&&IE(t),o=vr(t),i=hn(e,a,r),s={scrollLeft:0,scrollTop:0},u={x:0,y:0};return(n||!n&&!r)&&((Et(t)!=="body"||cu(o))&&(s=FE(t)),Xe(t)?(u=hn(t,!0),u.x+=t.clientLeft,u.y+=t.clientTop):o&&(u.x=uu(o))),{x:i.left+s.scrollLeft-u.x,y:i.top+s.scrollTop-u.y,width:i.width,height:i.height}}var w_=B(()=>{bi(),b_(),En(),ot(),Jf(),Mr(),Zf(),Cn(),c(IE,"isElementScaled"),c(TE,"getCompositeRect")});function RE(e){var t=new Map,r=new Set,n=[];e.forEach(function(o){t.set(o.name,o)});function a(o){r.add(o.name);var i=[].concat(o.requires||[],o.requiresIfExists||[]);i.forEach(function(s){if(!r.has(s)){var u=t.get(s);u&&a(u)}}),n.push(o)}return c(a,"sort"),e.forEach(function(o){r.has(o.name)||a(o)}),n}function BE(e){var t=RE(e);return U8.reduce(function(r,n){return r.concat(t.filter(function(a){return a.phase===n}))},[])}var E_=B(()=>{at(),c(RE,"order"),c(BE,"orderModifiers")});function zE(e){var t;return function(){return t||(t=new Promise(function(r){Promise.resolve().then(function(){t=void 0,r(e())})})),t}}var x_=B(()=>{c(zE,"debounce")});function $E(e){var t=e.reduce(function(r,n){var a=r[n.name];return r[n.name]=a?Object.assign({},a,n,{options:Object.assign({},a.options,n.options),data:Object.assign({},a.data,n.data)}):n,r},{});return Object.keys(t).map(function(r){return t[r]})}var C_=B(()=>{c($E,"mergeByName")});function x1(){for(var e=arguments.length,t=new Array(e),r=0;r{w_(),Vf(),pE(),xi(),E_(),x_(),C_(),ot(),C1={placement:"bottom",modifiers:[],strategy:"absolute"},c(x1,"areValidElements"),c(OE,"popperGenerator")}),k4,LE,S_=B(()=>{D_(),a_(),m_(),n_(),e_(),h_(),p_(),v_(),r_(),f_(),kE(),k4=[lE,DE,iE,q8,CE,wE,AE,nE,EE],LE=OE({defaultModifiers:k4})}),A_=B(()=>{at(),kE(),S_()}),k_=q((e,t)=>{var r=typeof Element<"u",n=typeof Map=="function",a=typeof Set=="function",o=typeof ArrayBuffer=="function"&&!!ArrayBuffer.isView;function i(s,u){if(s===u)return!0;if(s&&u&&typeof s=="object"&&typeof u=="object"){if(s.constructor!==u.constructor)return!1;var d,p,h;if(Array.isArray(s)){if(d=s.length,d!=u.length)return!1;for(p=d;p--!==0;)if(!i(s[p],u[p]))return!1;return!0}var m;if(n&&s instanceof Map&&u instanceof Map){if(s.size!==u.size)return!1;for(m=s.entries();!(p=m.next()).done;)if(!u.has(p.value[0]))return!1;for(m=s.entries();!(p=m.next()).done;)if(!i(p.value[1],u.get(p.value[0])))return!1;return!0}if(a&&s instanceof Set&&u instanceof Set){if(s.size!==u.size)return!1;for(m=s.entries();!(p=m.next()).done;)if(!u.has(p.value[0]))return!1;return!0}if(o&&ArrayBuffer.isView(s)&&ArrayBuffer.isView(u)){if(d=s.length,d!=u.length)return!1;for(p=d;p--!==0;)if(s[p]!==u[p])return!1;return!0}if(s.constructor===RegExp)return s.source===u.source&&s.flags===u.flags;if(s.valueOf!==Object.prototype.valueOf&&typeof s.valueOf=="function"&&typeof u.valueOf=="function")return s.valueOf()===u.valueOf();if(s.toString!==Object.prototype.toString&&typeof s.toString=="function"&&typeof u.toString=="function")return s.toString()===u.toString();if(h=Object.keys(s),d=h.length,d!==Object.keys(u).length)return!1;for(p=d;p--!==0;)if(!Object.prototype.hasOwnProperty.call(u,h[p]))return!1;if(r&&s instanceof Element)return!1;for(p=d;p--!==0;)if(!((h[p]==="_owner"||h[p]==="__v"||h[p]==="__o")&&s.$$typeof)&&!i(s[h[p]],u[h[p]]))return!1;return!0}return s!==s&&u!==u}c(i,"equal"),t.exports=c(function(s,u){try{return i(s,u)}catch(d){if((d.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw d}},"isEqual")}),_4,F4,ME,__=B(()=>{A_(),_4=De(k_()),Qk(),F4=[],ME=c(function(e,t,r){r===void 0&&(r={});var n=l.useRef(null),a={onFirstUpdate:r.onFirstUpdate,placement:r.placement||"bottom",strategy:r.strategy||"absolute",modifiers:r.modifiers||F4},o=l.useState({styles:{popper:{position:a.strategy,left:"0",top:"0"},arrow:{position:"absolute"}},attributes:{}}),i=o[0],s=o[1],u=l.useMemo(function(){return{name:"updateState",enabled:!0,phase:"write",fn:c(function(h){var m=h.state,f=Object.keys(m.elements);lp.flushSync(function(){s({styles:f1(f.map(function(v){return[v,m.styles[v]||{}]})),attributes:f1(f.map(function(v){return[v,m.attributes[v]]}))})})},"fn"),requires:["computeStyles"]}},[]),d=l.useMemo(function(){var h={onFirstUpdate:a.onFirstUpdate,placement:a.placement,strategy:a.strategy,modifiers:[].concat(a.modifiers,[u,{name:"applyStyles",enabled:!1}])};return(0,_4.default)(n.current,h)?n.current||h:(n.current=h,h)},[a.onFirstUpdate,a.placement,a.strategy,a.modifiers,u]),p=l.useRef();return h1(function(){p.current&&p.current.setOptions(d)},[d]),h1(function(){if(!(e==null||t==null)){var h=r.createPopper||LE,m=h(e,t,d);return p.current=m,function(){m.destroy(),p.current=null}}},[e,t,r.createPopper]),{state:p.current?p.current.state:null,styles:i.styles,attributes:i.attributes,update:p.current?p.current.update:null,forceUpdate:p.current?p.current.forceUpdate:null}},"usePopper")}),F_=B(()=>{__()});function eh(e){var t=l.useRef(e);return t.current=e,l.useCallback(function(){return t.current},[])}function PE(e){var t=e.initial,r=e.value,n=e.onChange,a=n===void 0?HE:n;if(t===void 0&&r===void 0)throw new TypeError('Either "value" or "initial" variable must be set. Now both are undefined');var o=l.useState(t),i=o[0],s=o[1],u=eh(i),d=l.useCallback(function(h){var m=u(),f=typeof h=="function"?h(m):h;typeof f.persist=="function"&&f.persist(),s(f),typeof a=="function"&&a(f)},[u,a]),p=r!==void 0;return[p?r:i,p?a:d]}function D1(e,t){return e===void 0&&(e=0),t===void 0&&(t=0),function(){return{width:0,height:0,top:t,right:e,bottom:t,left:e,x:0,y:0,toJSON:c(function(){return null},"toJSON")}}}function NE(e,t){var r,n,a;e===void 0&&(e={}),t===void 0&&(t={});var o=Object.keys(A1).reduce(function(O,M){var j;return U({},O,(j={},j[M]=O[M]!==void 0?O[M]:A1[M],j))},e),i=l.useMemo(function(){return[{name:"offset",options:{offset:o.offset}}]},Array.isArray(o.offset)?o.offset:[]),s=U({},t,{placement:t.placement||o.placement,modifiers:t.modifiers||i}),u=l.useState(null),d=u[0],p=u[1],h=l.useState(null),m=h[0],f=h[1],v=PE({initial:o.defaultVisible,value:o.visible,onChange:o.onVisibleChange}),g=v[0],b=v[1],C=l.useRef();l.useEffect(function(){return function(){return clearTimeout(C.current)}},[]);var w=ME(o.followCursor?S1:d,m,s),x=w.styles,E=w.attributes,D=Os(w,jE),S=D.update,A=eh({visible:g,triggerRef:d,tooltipRef:m,finalConfig:o}),k=l.useCallback(function(O){return Array.isArray(o.trigger)?o.trigger.includes(O):o.trigger===O},Array.isArray(o.trigger)?o.trigger:[o.trigger]),F=l.useCallback(function(){clearTimeout(C.current),C.current=window.setTimeout(function(){return b(!1)},o.delayHide)},[o.delayHide,b]),T=l.useCallback(function(){clearTimeout(C.current),C.current=window.setTimeout(function(){return b(!0)},o.delayShow)},[o.delayShow,b]),R=l.useCallback(function(){A().visible?F():T()},[A,F,T]);l.useEffect(function(){if(A().finalConfig.closeOnOutsideClick){var O=c(function(M){var j,G=A(),H=G.tooltipRef,K=G.triggerRef,te=(M.composedPath==null||(j=M.composedPath())==null?void 0:j[0])||M.target;te instanceof Node&&H!=null&&K!=null&&!H.contains(te)&&!K.contains(te)&&F()},"handleClickOutside");return document.addEventListener("mousedown",O),function(){return document.removeEventListener("mousedown",O)}}},[A,F]),l.useEffect(function(){if(!(d==null||!k("click")))return d.addEventListener("click",R),function(){return d.removeEventListener("click",R)}},[d,k,R]),l.useEffect(function(){if(!(d==null||!k("double-click")))return d.addEventListener("dblclick",R),function(){return d.removeEventListener("dblclick",R)}},[d,k,R]),l.useEffect(function(){if(!(d==null||!k("right-click"))){var O=c(function(M){M.preventDefault(),R()},"preventDefaultAndToggle");return d.addEventListener("contextmenu",O),function(){return d.removeEventListener("contextmenu",O)}}},[d,k,R]),l.useEffect(function(){if(!(d==null||!k("focus")))return d.addEventListener("focus",T),d.addEventListener("blur",F),function(){d.removeEventListener("focus",T),d.removeEventListener("blur",F)}},[d,k,T,F]),l.useEffect(function(){if(!(d==null||!k("hover")))return d.addEventListener("mouseenter",T),d.addEventListener("mouseleave",F),function(){d.removeEventListener("mouseenter",T),d.removeEventListener("mouseleave",F)}},[d,k,T,F]),l.useEffect(function(){if(!(m==null||!k("hover")||!A().finalConfig.interactive))return m.addEventListener("mouseenter",T),m.addEventListener("mouseleave",F),function(){m.removeEventListener("mouseenter",T),m.removeEventListener("mouseleave",F)}},[m,k,T,F,A]);var $=D==null||(r=D.state)==null||(n=r.modifiersData)==null||(a=n.hide)==null?void 0:a.isReferenceHidden;l.useEffect(function(){o.closeOnTriggerHidden&&$&&F()},[o.closeOnTriggerHidden,F,$]),l.useEffect(function(){if(!o.followCursor||d==null)return;function O(M){var j=M.clientX,G=M.clientY;S1.getBoundingClientRect=D1(j,G),S==null||S()}return c(O,"setMousePosition"),d.addEventListener("mousemove",O),function(){return d.removeEventListener("mousemove",O)}},[o.followCursor,d,S]),l.useEffect(function(){if(!(m==null||S==null||o.mutationObserverOptions==null)){var O=new MutationObserver(S);return O.observe(m,o.mutationObserverOptions),function(){return O.disconnect()}}},[o.mutationObserverOptions,m,S]);var z=c(function(O){return O===void 0&&(O={}),U({},O,{style:U({},O.style,x.popper)},E.popper,{"data-popper-interactive":o.interactive})},"getTooltipProps"),L=c(function(O){return O===void 0&&(O={}),U({},O,E.arrow,{style:U({},O.style,x.arrow),"data-popper-arrow":!0})},"getArrowProps");return U({getArrowProps:L,getTooltipProps:z,setTooltipRef:f,setTriggerRef:p,tooltipRef:m,triggerRef:d,visible:g},D)}var HE,jE,S1,A1,I_=B(()=>{Fp(),Ct(),F_(),c(eh,"useGetLatest"),HE=c(function(){},"noop"),c(PE,"useControlledState"),c(D1,"generateBoundingClientRect"),jE=["styles","attributes"],S1={getBoundingClientRect:D1()},A1={closeOnOutsideClick:!0,closeOnTriggerHidden:!1,defaultVisible:!1,delayHide:0,delayShow:0,followCursor:!1,interactive:!1,mutationObserverOptions:{attributes:!0,childList:!0,subtree:!0},offset:[0,6],trigger:"hover"},c(NE,"usePopperTooltip")}),I4,Ge,nr,T4,R4,k1,T_=B(()=>{I4=De($s(),1),Ge=(0,I4.default)(1e3)((e,t,r,n=0)=>t.split("-")[0]===e?r:n),nr=8,T4=_.div({position:"absolute",borderStyle:"solid"},({placement:e})=>{let t=0,r=0;switch(!0){case(e.startsWith("left")||e.startsWith("right")):{r=8;break}case(e.startsWith("top")||e.startsWith("bottom")):{t=8;break}}return{transform:`translate3d(${t}px, ${r}px, 0px)`}},({theme:e,color:t,placement:r})=>({bottom:`${Ge("top",r,`${nr*-1}px`,"auto")}`,top:`${Ge("bottom",r,`${nr*-1}px`,"auto")}`,right:`${Ge("left",r,`${nr*-1}px`,"auto")}`,left:`${Ge("right",r,`${nr*-1}px`,"auto")}`,borderBottomWidth:`${Ge("top",r,"0",nr)}px`,borderTopWidth:`${Ge("bottom",r,"0",nr)}px`,borderRightWidth:`${Ge("left",r,"0",nr)}px`,borderLeftWidth:`${Ge("right",r,"0",nr)}px`,borderTopColor:Ge("top",r,e.color[t]||t||e.base==="light"?Wa(e.background.app):e.background.app,"transparent"),borderBottomColor:Ge("bottom",r,e.color[t]||t||e.base==="light"?Wa(e.background.app):e.background.app,"transparent"),borderLeftColor:Ge("left",r,e.color[t]||t||e.base==="light"?Wa(e.background.app):e.background.app,"transparent"),borderRightColor:Ge("right",r,e.color[t]||t||e.base==="light"?Wa(e.background.app):e.background.app,"transparent")})),R4=_.div(({hidden:e})=>({display:e?"none":"inline-block",zIndex:2147483647}),({theme:e,color:t,hasChrome:r})=>r?{background:t&&e.color[t]||t||e.base==="light"?Wa(e.background.app):e.background.app,filter:` - drop-shadow(0px 5px 5px rgba(0,0,0,0.05)) - drop-shadow(0 1px 3px rgba(0,0,0,0.1)) - `,borderRadius:e.appBorderRadius,fontSize:e.typography.size.s1}:{}),k1=y.forwardRef(({placement:e="top",hasChrome:t=!0,children:r,arrowProps:n={},tooltipRef:a,color:o,withArrows:i,...s},u)=>y.createElement(R4,{"data-testid":"tooltip",hasChrome:t,ref:u,...s,color:o},t&&i&&y.createElement(T4,{placement:e,...n,color:o}),r)),k1.displayName="Tooltip"}),th={};ka(th,{WithToolTipState:()=>fs,WithTooltip:()=>fs,WithTooltipPure:()=>_1});var lo,B4,z4,_1,fs,rh=B(()=>{_p(),I_(),T_(),{document:lo}=zs,B4=_.div` - display: inline-block; - cursor: ${e=>e.trigger==="hover"||e.trigger.includes("hover")?"default":"pointer"}; -`,z4=_.g` - cursor: ${e=>e.trigger==="hover"||e.trigger.includes("hover")?"default":"pointer"}; -`,_1=c(({svg:e=!1,trigger:t="click",closeOnOutsideClick:r=!1,placement:n="top",modifiers:a=[{name:"preventOverflow",options:{padding:8}},{name:"offset",options:{offset:[8,8]}},{name:"arrow",options:{padding:8}}],hasChrome:o=!0,defaultVisible:i=!1,withArrows:s,offset:u,tooltip:d,children:p,closeOnTriggerHidden:h,mutationObserverOptions:m,delayHide:f,visible:v,interactive:g,delayShow:b,strategy:C,followCursor:w,onVisibleChange:x,...E})=>{let D=e?z4:B4,{getArrowProps:S,getTooltipProps:A,setTooltipRef:k,setTriggerRef:F,visible:T,state:R}=NE({trigger:t,placement:n,defaultVisible:i,delayHide:f,interactive:g,closeOnOutsideClick:r,closeOnTriggerHidden:h,onVisibleChange:x,delayShow:b,followCursor:w,mutationObserverOptions:m,visible:v,offset:u},{modifiers:a,strategy:C}),$=y.createElement(k1,{placement:R==null?void 0:R.placement,ref:k,hasChrome:o,arrowProps:S(),withArrows:s,...A()},typeof d=="function"?d({onHide:c(()=>x(!1),"onHide")}):d);return y.createElement(y.Fragment,null,y.createElement(D,{trigger:t,ref:F,...E},p),T&&dy.createPortal($,lo.body))},"WithTooltipPure"),fs=c(({startOpen:e=!1,onVisibleChange:t,...r})=>{let[n,a]=l.useState(e),o=l.useCallback(i=>{t&&t(i)===!1||a(i)},[t]);return l.useEffect(()=>{let i=c(()=>o(!1),"hide");lo.addEventListener("keydown",i,!1);let s=Array.from(lo.getElementsByTagName("iframe")),u=[];return s.forEach(d=>{let p=c(()=>{try{d.contentWindow.document&&(d.contentWindow.document.addEventListener("click",i),u.push(()=>{try{d.contentWindow.document.removeEventListener("click",i)}catch{}}))}catch{}},"bind");p(),d.addEventListener("load",p),u.push(()=>{d.removeEventListener("load",p)})}),()=>{lo.removeEventListener("keydown",i),u.forEach(d=>{d()})}}),y.createElement(_1,{...r,visible:n,onVisibleChange:o})},"WithToolTipState")}),se=c(({...e},t)=>{let r=[e.class,e.className];return delete e.class,e.className=["sbdocs",`sbdocs-${t}`,...r].filter(Boolean).join(" "),e},"nameSpaceClassNames");Ct();PA();kp();function VE(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,da(e,t)}c(VE,"_inheritsLoose");NA();kp();function UE(e){try{return Function.toString.call(e).indexOf("[native code]")!==-1}catch{return typeof e=="function"}}c(UE,"_isNativeFunction");function nh(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch{}return(nh=c(function(){return!!e},"_isNativeReflectConstruct"))()}c(nh,"_isNativeReflectConstruct");kp();function qE(e,t,r){if(nh())return Reflect.construct.apply(null,arguments);var n=[null];n.push.apply(n,t);var a=new(e.bind.apply(e,n));return r&&da(a,r.prototype),a}c(qE,"_construct");function hs(e){var t=typeof Map=="function"?new Map:void 0;return hs=c(function(r){if(r===null||!UE(r))return r;if(typeof r!="function")throw new TypeError("Super expression must either be null or a function");if(t!==void 0){if(t.has(r))return t.get(r);t.set(r,n)}function n(){return qE(r,arguments,Ll(this).constructor)}return c(n,"Wrapper"),n.prototype=Object.create(r.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),da(n,r)},"_wrapNativeSuper"),hs(e)}c(hs,"_wrapNativeSuper");var R_={1:`Passed invalid arguments to hsl, please pass multiple numbers e.g. hsl(360, 0.75, 0.4) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75 }). - -`,2:`Passed invalid arguments to hsla, please pass multiple numbers e.g. hsla(360, 0.75, 0.4, 0.7) or an object e.g. rgb({ hue: 255, saturation: 0.4, lightness: 0.75, alpha: 0.7 }). - -`,3:`Passed an incorrect argument to a color function, please pass a string representation of a color. - -`,4:`Couldn't generate valid rgb string from %s, it returned %s. - -`,5:`Couldn't parse the color string. Please provide the color as a string in hex, rgb, rgba, hsl or hsla notation. - -`,6:`Passed invalid arguments to rgb, please pass multiple numbers e.g. rgb(255, 205, 100) or an object e.g. rgb({ red: 255, green: 205, blue: 100 }). - -`,7:`Passed invalid arguments to rgba, please pass multiple numbers e.g. rgb(255, 205, 100, 0.75) or an object e.g. rgb({ red: 255, green: 205, blue: 100, alpha: 0.75 }). - -`,8:`Passed invalid argument to toColorString, please pass a RgbColor, RgbaColor, HslColor or HslaColor object. - -`,9:`Please provide a number of steps to the modularScale helper. - -`,10:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio. - -`,11:`Invalid value passed as base to modularScale, expected number or em string but got "%s" - -`,12:`Expected a string ending in "px" or a number passed as the first argument to %s(), got "%s" instead. - -`,13:`Expected a string ending in "px" or a number passed as the second argument to %s(), got "%s" instead. - -`,14:`Passed invalid pixel value ("%s") to %s(), please pass a value like "12px" or 12. - -`,15:`Passed invalid base value ("%s") to %s(), please pass a value like "12px" or 12. - -`,16:`You must provide a template to this method. - -`,17:`You passed an unsupported selector state to this method. - -`,18:`minScreen and maxScreen must be provided as stringified numbers with the same units. - -`,19:`fromSize and toSize must be provided as stringified numbers with the same units. - -`,20:`expects either an array of objects or a single object with the properties prop, fromSize, and toSize. - -`,21:"expects the objects in the first argument array to have the properties `prop`, `fromSize`, and `toSize`.\n\n",22:"expects the first argument object to have the properties `prop`, `fromSize`, and `toSize`.\n\n",23:`fontFace expects a name of a font-family. - -`,24:`fontFace expects either the path to the font file(s) or a name of a local copy. - -`,25:`fontFace expects localFonts to be an array. - -`,26:`fontFace expects fileFormats to be an array. - -`,27:`radialGradient requries at least 2 color-stops to properly render. - -`,28:`Please supply a filename to retinaImage() as the first argument. - -`,29:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'. - -`,30:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",31:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation - -`,32:`To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s']) -To pass a single animation please supply them in simple values, e.g. animation('rotate', '2s') - -`,33:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation - -`,34:`borderRadius expects a radius value as a string or number as the second argument. - -`,35:`borderRadius expects one of "top", "bottom", "left" or "right" as the first argument. - -`,36:`Property must be a string value. - -`,37:`Syntax Error at %s. - -`,38:`Formula contains a function that needs parentheses at %s. - -`,39:`Formula is missing closing parenthesis at %s. - -`,40:`Formula has too many closing parentheses at %s. - -`,41:`All values in a formula must have the same unit or be unitless. - -`,42:`Please provide a number of steps to the modularScale helper. - -`,43:`Please pass a number or one of the predefined scales to the modularScale helper as the ratio. - -`,44:`Invalid value passed as base to modularScale, expected number or em/rem string but got %s. - -`,45:`Passed invalid argument to hslToColorString, please pass a HslColor or HslaColor object. - -`,46:`Passed invalid argument to rgbToColorString, please pass a RgbColor or RgbaColor object. - -`,47:`minScreen and maxScreen must be provided as stringified numbers with the same units. - -`,48:`fromSize and toSize must be provided as stringified numbers with the same units. - -`,49:`Expects either an array of objects or a single object with the properties prop, fromSize, and toSize. - -`,50:`Expects the objects in the first argument array to have the properties prop, fromSize, and toSize. - -`,51:`Expects the first argument object to have the properties prop, fromSize, and toSize. - -`,52:`fontFace expects either the path to the font file(s) or a name of a local copy. - -`,53:`fontFace expects localFonts to be an array. - -`,54:`fontFace expects fileFormats to be an array. - -`,55:`fontFace expects a name of a font-family. - -`,56:`linearGradient requries at least 2 color-stops to properly render. - -`,57:`radialGradient requries at least 2 color-stops to properly render. - -`,58:`Please supply a filename to retinaImage() as the first argument. - -`,59:`Passed invalid argument to triangle, please pass correct pointingDirection e.g. 'right'. - -`,60:"Passed an invalid value to `height` or `width`. Please provide a pixel based unit.\n\n",61:`Property must be a string value. - -`,62:`borderRadius expects a radius value as a string or number as the second argument. - -`,63:`borderRadius expects one of "top", "bottom", "left" or "right" as the first argument. - -`,64:`The animation shorthand only takes 8 arguments. See the specification for more information: http://mdn.io/animation. - -`,65:`To pass multiple animations please supply them in arrays, e.g. animation(['rotate', '2s'], ['move', '1s'])\\nTo pass a single animation please supply them in simple values, e.g. animation('rotate', '2s'). - -`,66:`The animation shorthand arrays can only have 8 elements. See the specification for more information: http://mdn.io/animation. - -`,67:`You must provide a template to this method. - -`,68:`You passed an unsupported selector state to this method. - -`,69:`Expected a string ending in "px" or a number passed as the first argument to %s(), got %s instead. - -`,70:`Expected a string ending in "px" or a number passed as the second argument to %s(), got %s instead. - -`,71:`Passed invalid pixel value %s to %s(), please pass a value like "12px" or 12. - -`,72:`Passed invalid base value %s to %s(), please pass a value like "12px" or 12. - -`,73:`Please provide a valid CSS variable. - -`,74:`CSS variable not found and no default was provided. - -`,75:`important requires a valid style object, got a %s instead. - -`,76:`fromSize and toSize must be provided as stringified numbers with the same units as minScreen and maxScreen. - -`,77:`remToPx expects a value in "rem" but you provided it in "%s". - -`,78:`base must be set in "px" or "%" but you set it in "%s". -`};function WE(){for(var e=arguments.length,t=new Array(e),r=0;r1?a-1:0),i=1;i=0&&a<1?(s=o,u=i):a>=1&&a<2?(s=i,u=o):a>=2&&a<3?(u=o,d=i):a>=3&&a<4?(u=i,d=o):a>=4&&a<5?(s=i,d=o):a>=5&&a<6&&(s=o,d=i);var p=r-o/2,h=s+p,m=u+p,f=d+p;return n(h,m,f)}c(ya,"hslToRgb");var $4={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function KE(e){if(typeof e!="string")return e;var t=e.toLowerCase();return $4[t]?"#"+$4[t]:e}c(KE,"nameToHex");var B_=/^#[a-fA-F0-9]{6}$/,z_=/^#[a-fA-F0-9]{8}$/,$_=/^#[a-fA-F0-9]{3}$/,O_=/^#[a-fA-F0-9]{4}$/,N0=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,L_=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,M_=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,P_=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function pu(e){if(typeof e!="string")throw new Nt(3);var t=KE(e);if(t.match(B_))return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16)};if(t.match(z_)){var r=parseFloat((parseInt(""+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16),alpha:r}}if(t.match($_))return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16)};if(t.match(O_)){var n=parseFloat((parseInt(""+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16),alpha:n}}var a=N0.exec(t);if(a)return{red:parseInt(""+a[1],10),green:parseInt(""+a[2],10),blue:parseInt(""+a[3],10)};var o=L_.exec(t.substring(0,50));if(o)return{red:parseInt(""+o[1],10),green:parseInt(""+o[2],10),blue:parseInt(""+o[3],10),alpha:parseFloat(""+o[4])>1?parseFloat(""+o[4])/100:parseFloat(""+o[4])};var i=M_.exec(t);if(i){var s=parseInt(""+i[1],10),u=parseInt(""+i[2],10)/100,d=parseInt(""+i[3],10)/100,p="rgb("+ya(s,u,d)+")",h=N0.exec(p);if(!h)throw new Nt(4,t,p);return{red:parseInt(""+h[1],10),green:parseInt(""+h[2],10),blue:parseInt(""+h[3],10)}}var m=P_.exec(t.substring(0,50));if(m){var f=parseInt(""+m[1],10),v=parseInt(""+m[2],10)/100,g=parseInt(""+m[3],10)/100,b="rgb("+ya(f,v,g)+")",C=N0.exec(b);if(!C)throw new Nt(4,t,b);return{red:parseInt(""+C[1],10),green:parseInt(""+C[2],10),blue:parseInt(""+C[3],10),alpha:parseFloat(""+m[4])>1?parseFloat(""+m[4])/100:parseFloat(""+m[4])}}throw new Nt(5)}c(pu,"parseToRgb");function YE(e){var t=e.red/255,r=e.green/255,n=e.blue/255,a=Math.max(t,r,n),o=Math.min(t,r,n),i=(a+o)/2;if(a===o)return e.alpha!==void 0?{hue:0,saturation:0,lightness:i,alpha:e.alpha}:{hue:0,saturation:0,lightness:i};var s,u=a-o,d=i>.5?u/(2-a-o):u/(a+o);switch(a){case t:s=(r-n)/u+(r=1?Go(e,t,r):"rgba("+ya(e,t,r)+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?Go(e.hue,e.saturation,e.lightness):"rgba("+ya(e.hue,e.saturation,e.lightness)+","+e.alpha+")";throw new Nt(2)}c(XE,"hsla");function ms(e,t,r){if(typeof e=="number"&&typeof t=="number"&&typeof r=="number")return F1("#"+Ar(e)+Ar(t)+Ar(r));if(typeof e=="object"&&t===void 0&&r===void 0)return F1("#"+Ar(e.red)+Ar(e.green)+Ar(e.blue));throw new Nt(6)}c(ms,"rgb");function Ko(e,t,r,n){if(typeof e=="string"&&typeof t=="number"){var a=pu(e);return"rgba("+a.red+","+a.green+","+a.blue+","+t+")"}else{if(typeof e=="number"&&typeof t=="number"&&typeof r=="number"&&typeof n=="number")return n>=1?ms(e,t,r):"rgba("+e+","+t+","+r+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?ms(e.red,e.green,e.blue):"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")"}throw new Nt(7)}c(Ko,"rgba");var H_=c(function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},"isRgb"),j_=c(function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&typeof e.alpha=="number"},"isRgba"),V_=c(function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},"isHsl"),U_=c(function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&typeof e.alpha=="number"},"isHsla");function oh(e){if(typeof e!="object")throw new Nt(8);if(j_(e))return Ko(e);if(H_(e))return ms(e);if(U_(e))return XE(e);if(V_(e))return ZE(e);throw new Nt(8)}c(oh,"toColorString");function ih(e,t,r){return c(function(){var n=r.concat(Array.prototype.slice.call(arguments));return n.length>=t?e.apply(this,n):ih(e,t,n)},"fn")}c(ih,"curried");function fu(e){return ih(e,e.length,[])}c(fu,"curry");function hu(e,t,r){return Math.max(e,Math.min(t,r))}c(hu,"guard");function QE(e,t){if(t==="transparent")return t;var r=ah(t);return oh(U({},r,{lightness:hu(0,1,r.lightness-parseFloat(e))}))}c(QE,"darken");var q_=fu(QE),qn=q_;function e9(e,t){if(t==="transparent")return t;var r=ah(t);return oh(U({},r,{lightness:hu(0,1,r.lightness+parseFloat(e))}))}c(e9,"lighten");var W_=fu(e9),O4=W_;function t9(e,t){if(t==="transparent")return t;var r=pu(t),n=typeof r.alpha=="number"?r.alpha:1,a=U({},r,{alpha:hu(0,1,+(n*100-parseFloat(e)*100).toFixed(2)/100)});return Ko(a)}c(t9,"transparentize");var G_=fu(t9),rt=G_,za=c(({theme:e})=>({margin:"20px 0 8px",padding:0,cursor:"text",position:"relative",color:e.color.defaultText,"&:first-of-type":{marginTop:0,paddingTop:0},"&:hover a.anchor":{textDecoration:"none"},"& tt, & code":{fontSize:"inherit"}}),"headerCommon"),Pr=c(({theme:e})=>({lineHeight:1,margin:"0 2px",padding:"3px 5px",whiteSpace:"nowrap",borderRadius:3,fontSize:e.typography.size.s2-1,border:e.base==="light"?`1px solid ${e.color.mediumlight}`:`1px solid ${e.color.darker}`,color:e.base==="light"?rt(.1,e.color.defaultText):rt(.3,e.color.defaultText),backgroundColor:e.base==="light"?e.color.lighter:e.color.border}),"codeCommon"),ue=c(({theme:e})=>({fontFamily:e.typography.fonts.base,fontSize:e.typography.size.s3,margin:0,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",WebkitOverflowScrolling:"touch"}),"withReset"),Dn={margin:"16px 0"},K_=c(({href:e="",...t})=>{let r=/^\//.test(e)?`./?path=${e}`:e,n=/^#.*/.test(e)?"_self":"_top";return y.createElement("a",{href:r,target:n,...t})},"Link"),Y_=_(K_)(ue,({theme:e})=>({fontSize:"inherit",lineHeight:"24px",color:e.color.secondary,textDecoration:"none","&.absent":{color:"#cc0000"},"&.anchor":{display:"block",paddingLeft:30,marginLeft:-30,cursor:"pointer",position:"absolute",top:0,left:0,bottom:0}})),J_=_.blockquote(ue,Dn,({theme:e})=>({borderLeft:`4px solid ${e.color.medium}`,padding:"0 15px",color:e.color.dark,"& > :first-of-type":{marginTop:0},"& > :last-child":{marginBottom:0}}));Ms();var Z_=c(e=>typeof e=="string","isReactChildString"),X_=/[\n\r]/g,Q_=_.code(({theme:e})=>({fontFamily:e.typography.fonts.mono,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",display:"inline-block",paddingLeft:2,paddingRight:2,verticalAlign:"baseline",color:"inherit"}),Pr),eF=_(_o)(({theme:e})=>({fontFamily:e.typography.fonts.mono,fontSize:`${e.typography.size.s2-1}px`,lineHeight:"19px",margin:"25px 0 40px",borderRadius:e.appBorderRadius,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0","pre.prismjs":{padding:20,background:"inherit"}})),r9=c(({className:e,children:t,...r})=>{let n=(e||"").match(/lang-(\S+)/),a=l.Children.toArray(t);return a.filter(Z_).some(o=>o.match(X_))?y.createElement(eF,{bordered:!0,copyable:!0,language:(n==null?void 0:n[1])??"text",format:!1,...r},t):y.createElement(Q_,{...r,className:e},a)},"Code"),tF=_.div(ue),rF=_.dl(ue,Dn,{padding:0,"& dt":{fontSize:"14px",fontWeight:"bold",fontStyle:"italic",padding:0,margin:"16px 0 4px"},"& dt:first-of-type":{padding:0},"& dt > :first-of-type":{marginTop:0},"& dt > :last-child":{marginBottom:0},"& dd":{margin:"0 0 16px",padding:"0 15px"},"& dd > :first-of-type":{marginTop:0},"& dd > :last-child":{marginBottom:0}}),nF=_.h1(ue,za,({theme:e})=>({fontSize:`${e.typography.size.l1}px`,fontWeight:e.typography.weight.bold})),n9=_.h2(ue,za,({theme:e})=>({fontSize:`${e.typography.size.m2}px`,paddingBottom:4,borderBottom:`1px solid ${e.appBorderColor}`})),a9=_.h3(ue,za,({theme:e})=>({fontSize:`${e.typography.size.m1}px`})),aF=_.h4(ue,za,({theme:e})=>({fontSize:`${e.typography.size.s3}px`})),oF=_.h5(ue,za,({theme:e})=>({fontSize:`${e.typography.size.s2}px`})),iF=_.h6(ue,za,({theme:e})=>({fontSize:`${e.typography.size.s2}px`,color:e.color.dark})),lF=_.hr(({theme:e})=>({border:"0 none",borderTop:`1px solid ${e.appBorderColor}`,height:4,padding:0})),sF=_.img({maxWidth:"100%"}),uF=_.li(ue,({theme:e})=>({fontSize:e.typography.size.s2,color:e.color.defaultText,lineHeight:"24px","& + li":{marginTop:".25em"},"& ul, & ol":{marginTop:".25em",marginBottom:0},"& code":Pr({theme:e})})),cF={paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0}},dF=_.ol(ue,Dn,cF,{listStyle:"decimal"}),pF=_.p(ue,Dn,({theme:e})=>({fontSize:e.typography.size.s2,lineHeight:"24px",color:e.color.defaultText,"& code":Pr({theme:e})})),fF=_.pre(ue,Dn,({theme:e})=>({fontFamily:e.typography.fonts.mono,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",lineHeight:"18px",padding:"11px 1rem",whiteSpace:"pre-wrap",color:"inherit",borderRadius:3,margin:"1rem 0","&:not(.prismjs)":{background:"transparent",border:"none",borderRadius:0,padding:0,margin:0},"& pre, &.prismjs":{padding:15,margin:0,whiteSpace:"pre-wrap",color:"inherit",fontSize:"13px",lineHeight:"19px",code:{color:"inherit",fontSize:"inherit"}},"& code":{whiteSpace:"pre"},"& code, & tt":{border:"none"}})),hF=_.span(ue,({theme:e})=>({"&.frame":{display:"block",overflow:"hidden","& > span":{border:`1px solid ${e.color.medium}`,display:"block",float:"left",overflow:"hidden",margin:"13px 0 0",padding:7,width:"auto"},"& span img":{display:"block",float:"left"},"& span span":{clear:"both",color:e.color.darkest,display:"block",padding:"5px 0 0"}},"&.align-center":{display:"block",overflow:"hidden",clear:"both","& > span":{display:"block",overflow:"hidden",margin:"13px auto 0",textAlign:"center"},"& span img":{margin:"0 auto",textAlign:"center"}},"&.align-right":{display:"block",overflow:"hidden",clear:"both","& > span":{display:"block",overflow:"hidden",margin:"13px 0 0",textAlign:"right"},"& span img":{margin:0,textAlign:"right"}},"&.float-left":{display:"block",marginRight:13,overflow:"hidden",float:"left","& span":{margin:"13px 0 0"}},"&.float-right":{display:"block",marginLeft:13,overflow:"hidden",float:"right","& > span":{display:"block",overflow:"hidden",margin:"13px auto 0",textAlign:"right"}}})),mF=_.table(ue,Dn,({theme:e})=>({fontSize:e.typography.size.s2,lineHeight:"24px",padding:0,borderCollapse:"collapse","& tr":{borderTop:`1px solid ${e.appBorderColor}`,backgroundColor:e.appContentBg,margin:0,padding:0},"& tr:nth-of-type(2n)":{backgroundColor:e.base==="dark"?e.color.darker:e.color.lighter},"& tr th":{fontWeight:"bold",color:e.color.defaultText,border:`1px solid ${e.appBorderColor}`,margin:0,padding:"6px 13px"},"& tr td":{border:`1px solid ${e.appBorderColor}`,color:e.color.defaultText,margin:0,padding:"6px 13px"},"& tr th :first-of-type, & tr td :first-of-type":{marginTop:0},"& tr th :last-child, & tr td :last-child":{marginBottom:0}})),gF=_.title(Pr),vF={paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0}},yF=_.ul(ue,Dn,vF,{listStyle:"disc"}),o9=_.div(ue),i9={h1:c(e=>y.createElement(nF,{...se(e,"h1")}),"h1"),h2:c(e=>y.createElement(n9,{...se(e,"h2")}),"h2"),h3:c(e=>y.createElement(a9,{...se(e,"h3")}),"h3"),h4:c(e=>y.createElement(aF,{...se(e,"h4")}),"h4"),h5:c(e=>y.createElement(oF,{...se(e,"h5")}),"h5"),h6:c(e=>y.createElement(iF,{...se(e,"h6")}),"h6"),pre:c(e=>y.createElement(fF,{...se(e,"pre")}),"pre"),a:c(e=>y.createElement(Y_,{...se(e,"a")}),"a"),hr:c(e=>y.createElement(lF,{...se(e,"hr")}),"hr"),dl:c(e=>y.createElement(rF,{...se(e,"dl")}),"dl"),blockquote:c(e=>y.createElement(J_,{...se(e,"blockquote")}),"blockquote"),table:c(e=>y.createElement(mF,{...se(e,"table")}),"table"),img:c(e=>y.createElement(sF,{...se(e,"img")}),"img"),div:c(e=>y.createElement(tF,{...se(e,"div")}),"div"),span:c(e=>y.createElement(hF,{...se(e,"span")}),"span"),li:c(e=>y.createElement(uF,{...se(e,"li")}),"li"),ul:c(e=>y.createElement(yF,{...se(e,"ul")}),"ul"),ol:c(e=>y.createElement(dF,{...se(e,"ol")}),"ol"),p:c(e=>y.createElement(pF,{...se(e,"p")}),"p"),code:c(e=>y.createElement(r9,{...se(e,"code")}),"code"),tt:c(e=>y.createElement(gF,{...se(e,"tt")}),"tt"),resetwrapper:c(e=>y.createElement(o9,{...se(e,"resetwrapper")}),"resetwrapper")},bF=_.div(({theme:e})=>({display:"inline-block",fontSize:11,lineHeight:"12px",alignSelf:"center",padding:"4px 12px",borderRadius:"3em",fontWeight:e.typography.weight.bold}),{svg:{height:12,width:12,marginRight:4,marginTop:-2,path:{fill:"currentColor"}}},({theme:e,status:t})=>{switch(t){case"critical":return{color:e.color.critical,background:e.background.critical};case"negative":return{color:e.color.negativeText,background:e.background.negative,boxShadow:e.base==="light"?`inset 0 0 0 1px ${rt(.9,e.color.negativeText)}`:"none"};case"warning":return{color:e.color.warningText,background:e.background.warning,boxShadow:e.base==="light"?`inset 0 0 0 1px ${rt(.9,e.color.warningText)}`:"none"};case"neutral":return{color:e.color.dark,background:e.color.mediumlight,boxShadow:e.base==="light"?`inset 0 0 0 1px ${rt(.9,e.color.dark)}`:"none"};case"positive":return{color:e.color.positiveText,background:e.background.positive,boxShadow:e.base==="light"?`inset 0 0 0 1px ${rt(.9,e.color.positiveText)}`:"none"};default:return{}}}),ire=c(({...e})=>y.createElement(bF,{...e}),"Badge"),l9={};ka(l9,{AccessibilityAltIcon:()=>_B,AccessibilityIcon:()=>kB,AddIcon:()=>TT,AdminIcon:()=>vB,AlertAltIcon:()=>aR,AlertIcon:()=>nR,AlignLeftIcon:()=>uI,AlignRightIcon:()=>cI,AppleIcon:()=>FI,ArrowDownIcon:()=>jR,ArrowLeftIcon:()=>VR,ArrowRightIcon:()=>UR,ArrowSolidDownIcon:()=>WR,ArrowSolidLeftIcon:()=>GR,ArrowSolidRightIcon:()=>KR,ArrowSolidUpIcon:()=>qR,ArrowUpIcon:()=>HR,AzureDevOpsIcon:()=>$I,BackIcon:()=>iB,BasketIcon:()=>kR,BatchAcceptIcon:()=>DT,BatchDenyIcon:()=>CT,BeakerIcon:()=>_R,BellIcon:()=>uR,BitbucketIcon:()=>OI,BoldIcon:()=>vI,BookIcon:()=>eI,BookmarkHollowIcon:()=>gR,BookmarkIcon:()=>vR,BottomBarIcon:()=>lT,BottomBarToggleIcon:()=>sT,BoxIcon:()=>fT,BranchIcon:()=>AI,BrowserIcon:()=>QI,ButtonIcon:()=>YT,CPUIcon:()=>uT,CalendarIcon:()=>lI,CameraIcon:()=>HF,CategoryIcon:()=>nI,CertificateIcon:()=>CR,ChangedIcon:()=>OT,ChatIcon:()=>VT,CheckIcon:()=>ET,ChevronDownIcon:()=>$R,ChevronLeftIcon:()=>OR,ChevronRightIcon:()=>c9,ChevronSmallDownIcon:()=>MR,ChevronSmallLeftIcon:()=>PR,ChevronSmallRightIcon:()=>NR,ChevronSmallUpIcon:()=>LR,ChevronUpIcon:()=>zR,ChromaticIcon:()=>LI,ChromeIcon:()=>BI,CircleHollowIcon:()=>hR,CircleIcon:()=>mR,ClearIcon:()=>MT,CloseAltIcon:()=>kT,CloseIcon:()=>BT,CloudHollowIcon:()=>TR,CloudIcon:()=>RR,CogIcon:()=>gT,CollapseIcon:()=>JR,CommandIcon:()=>QT,CommentAddIcon:()=>NT,CommentIcon:()=>PT,CommentsIcon:()=>jT,CommitIcon:()=>SI,CompassIcon:()=>cB,ComponentDrivenIcon:()=>MI,ComponentIcon:()=>xF,ContrastIcon:()=>zF,ControlsIcon:()=>ST,CopyIcon:()=>rI,CreditIcon:()=>KT,CrossIcon:()=>u9,DashboardIcon:()=>hB,DatabaseIcon:()=>cT,DeleteIcon:()=>zT,DiamondIcon:()=>yR,DirectionIcon:()=>yB,DiscordIcon:()=>PI,DocChartIcon:()=>pI,DocListIcon:()=>fI,DocumentIcon:()=>tI,DownloadIcon:()=>oB,DragIcon:()=>hI,EditIcon:()=>mT,EllipsisIcon:()=>bT,EmailIcon:()=>oR,ExpandAltIcon:()=>YR,ExpandIcon:()=>ZR,EyeCloseIcon:()=>RF,EyeIcon:()=>TF,FaceHappyIcon:()=>DB,FaceNeutralIcon:()=>SB,FaceSadIcon:()=>AB,FacebookIcon:()=>NI,FailedIcon:()=>LT,FastForwardIcon:()=>KF,FigmaIcon:()=>HI,FilterIcon:()=>dI,FlagIcon:()=>IR,FolderIcon:()=>aI,FormIcon:()=>xT,GDriveIcon:()=>jI,GithubIcon:()=>VI,GitlabIcon:()=>UI,GlobeIcon:()=>uB,GoogleIcon:()=>qI,GraphBarIcon:()=>sI,GraphLineIcon:()=>iI,GraphqlIcon:()=>WI,GridAltIcon:()=>AF,GridIcon:()=>CF,GrowIcon:()=>LF,HeartHollowIcon:()=>bR,HeartIcon:()=>wR,HomeIcon:()=>gB,HourglassIcon:()=>FR,InfoIcon:()=>eR,ItalicIcon:()=>yI,JumpToIcon:()=>fR,KeyIcon:()=>WT,LightningIcon:()=>BF,LightningOffIcon:()=>s9,LinkBrokenIcon:()=>sR,LinkIcon:()=>lR,LinkedinIcon:()=>XI,LinuxIcon:()=>II,ListOrderedIcon:()=>wI,ListUnorderedIcon:()=>EI,LocationIcon:()=>dB,LockIcon:()=>UT,MarkdownIcon:()=>CI,MarkupIcon:()=>gI,MediumIcon:()=>GI,MemoryIcon:()=>dT,MenuIcon:()=>mI,MergeIcon:()=>_I,MirrorIcon:()=>OF,MobileIcon:()=>tT,MoonIcon:()=>QF,NutIcon:()=>vT,OutboxIcon:()=>GT,OutlineIcon:()=>DF,PaintBrushIcon:()=>MF,PaperClipIcon:()=>bI,ParagraphIcon:()=>xI,PassedIcon:()=>$T,PhoneIcon:()=>iR,PhotoDragIcon:()=>SF,PhotoIcon:()=>EF,PinAltIcon:()=>FT,PinIcon:()=>pB,PlayBackIcon:()=>qF,PlayIcon:()=>UF,PlayNextIcon:()=>WF,PlusIcon:()=>AT,PointerDefaultIcon:()=>ZT,PointerHandIcon:()=>XT,PowerIcon:()=>hT,PrintIcon:()=>oI,ProceedIcon:()=>lB,ProfileIcon:()=>CB,PullRequestIcon:()=>kI,QuestionIcon:()=>tR,RSSIcon:()=>cR,RedirectIcon:()=>eB,ReduxIcon:()=>KI,RefreshIcon:()=>sB,ReplyIcon:()=>rB,RepoIcon:()=>DI,RequestChangeIcon:()=>HT,RewindIcon:()=>GF,RulerIcon:()=>PF,SearchIcon:()=>kF,ShareAltIcon:()=>dR,ShareIcon:()=>pR,ShieldIcon:()=>AR,SideBySideIcon:()=>JF,SidebarAltIcon:()=>aT,SidebarAltToggleIcon:()=>oT,SidebarIcon:()=>nT,SidebarToggleIcon:()=>iT,SpeakerIcon:()=>VF,StackedIcon:()=>ZF,StarHollowIcon:()=>ER,StarIcon:()=>xR,StickerIcon:()=>BR,StopAltIcon:()=>YF,StopIcon:()=>NF,StorybookIcon:()=>zI,StructureIcon:()=>pT,SubtractIcon:()=>RT,SunIcon:()=>XF,SupportIcon:()=>rR,SwitchAltIcon:()=>$F,SyncIcon:()=>nB,TabletIcon:()=>eT,ThumbsUpIcon:()=>SR,TimeIcon:()=>fB,TimerIcon:()=>mB,TransferIcon:()=>QR,TrashIcon:()=>_T,TwitterIcon:()=>YI,TypeIcon:()=>JT,UbuntuIcon:()=>TI,UndoIcon:()=>tB,UnfoldIcon:()=>XR,UnlockIcon:()=>qT,UnpinIcon:()=>IT,UploadIcon:()=>aB,UserAddIcon:()=>EB,UserAltIcon:()=>wB,UserIcon:()=>bB,UsersIcon:()=>xB,VSCodeIcon:()=>ZI,VerifiedIcon:()=>DR,VideoIcon:()=>jF,WandIcon:()=>wT,WatchIcon:()=>rT,WindowsIcon:()=>RI,WrenchIcon:()=>yT,YoutubeIcon:()=>JI,ZoomIcon:()=>_F,ZoomOutIcon:()=>FF,ZoomResetIcon:()=>IF,iconList:()=>wF});var wF=[{name:"Images",icons:["PhotoIcon","ComponentIcon","GridIcon","OutlineIcon","PhotoDragIcon","GridAltIcon","SearchIcon","ZoomIcon","ZoomOutIcon","ZoomResetIcon","EyeIcon","EyeCloseIcon","LightningIcon","LightningOffIcon","ContrastIcon","SwitchAltIcon","MirrorIcon","GrowIcon","PaintBrushIcon","RulerIcon","StopIcon","CameraIcon","VideoIcon","SpeakerIcon","PlayIcon","PlayBackIcon","PlayNextIcon","RewindIcon","FastForwardIcon","StopAltIcon","SideBySideIcon","StackedIcon","SunIcon","MoonIcon"]},{name:"Documents",icons:["BookIcon","DocumentIcon","CopyIcon","CategoryIcon","FolderIcon","PrintIcon","GraphLineIcon","CalendarIcon","GraphBarIcon","AlignLeftIcon","AlignRightIcon","FilterIcon","DocChartIcon","DocListIcon","DragIcon","MenuIcon"]},{name:"Editing",icons:["MarkupIcon","BoldIcon","ItalicIcon","PaperClipIcon","ListOrderedIcon","ListUnorderedIcon","ParagraphIcon","MarkdownIcon"]},{name:"Git",icons:["RepoIcon","CommitIcon","BranchIcon","PullRequestIcon","MergeIcon"]},{name:"OS",icons:["AppleIcon","LinuxIcon","UbuntuIcon","WindowsIcon","ChromeIcon"]},{name:"Logos",icons:["StorybookIcon","AzureDevOpsIcon","BitbucketIcon","ChromaticIcon","ComponentDrivenIcon","DiscordIcon","FacebookIcon","FigmaIcon","GDriveIcon","GithubIcon","GitlabIcon","GoogleIcon","GraphqlIcon","MediumIcon","ReduxIcon","TwitterIcon","YoutubeIcon","VSCodeIcon","LinkedinIcon"]},{name:"Devices",icons:["BrowserIcon","TabletIcon","MobileIcon","WatchIcon","SidebarIcon","SidebarAltIcon","SidebarAltToggleIcon","SidebarToggleIcon","BottomBarIcon","BottomBarToggleIcon","CPUIcon","DatabaseIcon","MemoryIcon","StructureIcon","BoxIcon","PowerIcon"]},{name:"CRUD",icons:["EditIcon","CogIcon","NutIcon","WrenchIcon","EllipsisIcon","WandIcon","CheckIcon","FormIcon","BatchDenyIcon","BatchAcceptIcon","ControlsIcon","PlusIcon","CloseAltIcon","CrossIcon","TrashIcon","PinAltIcon","UnpinIcon","AddIcon","SubtractIcon","CloseIcon","DeleteIcon","PassedIcon","ChangedIcon","FailedIcon","ClearIcon","CommentIcon","CommentAddIcon","RequestChangeIcon","CommentsIcon","ChatIcon","LockIcon","UnlockIcon","KeyIcon","OutboxIcon","CreditIcon","ButtonIcon","TypeIcon","PointerDefaultIcon","PointerHandIcon","CommandIcon"]},{name:"Communicate",icons:["InfoIcon","QuestionIcon","SupportIcon","AlertIcon","AlertAltIcon","EmailIcon","PhoneIcon","LinkIcon","LinkBrokenIcon","BellIcon","RSSIcon","ShareAltIcon","ShareIcon","JumpToIcon","CircleHollowIcon","CircleIcon","BookmarkHollowIcon","BookmarkIcon","DiamondIcon","HeartHollowIcon","HeartIcon","StarHollowIcon","StarIcon","CertificateIcon","VerifiedIcon","ThumbsUpIcon","ShieldIcon","BasketIcon","BeakerIcon","HourglassIcon","FlagIcon","CloudHollowIcon","CloudIcon","StickerIcon"]},{name:"Wayfinding",icons:["ChevronUpIcon","ChevronDownIcon","ChevronLeftIcon","ChevronRightIcon","ChevronSmallUpIcon","ChevronSmallDownIcon","ChevronSmallLeftIcon","ChevronSmallRightIcon","ArrowUpIcon","ArrowDownIcon","ArrowLeftIcon","ArrowRightIcon","ArrowSolidUpIcon","ArrowSolidDownIcon","ArrowSolidLeftIcon","ArrowSolidRightIcon","ExpandAltIcon","CollapseIcon","ExpandIcon","UnfoldIcon","TransferIcon","RedirectIcon","UndoIcon","ReplyIcon","SyncIcon","UploadIcon","DownloadIcon","BackIcon","ProceedIcon","RefreshIcon","GlobeIcon","CompassIcon","LocationIcon","PinIcon","TimeIcon","DashboardIcon","TimerIcon","HomeIcon","AdminIcon","DirectionIcon"]},{name:"People",icons:["UserIcon","UserAltIcon","UserAddIcon","UsersIcon","ProfileIcon","FaceHappyIcon","FaceNeutralIcon","FaceSadIcon","AccessibilityIcon","AccessibilityAltIcon"]}],EF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.25 4.254a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 1.504v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5zM2 9.297V2.004h10v5.293L9.854 5.15a.5.5 0 00-.708 0L6.5 7.797 5.354 6.65a.5.5 0 00-.708 0L2 9.297zM9.5 6.21l2.5 2.5v3.293H2V10.71l3-3 3.146 3.146a.5.5 0 00.708-.707L7.207 8.504 9.5 6.21z",fill:e}))),xF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5 1.004a2.5 2.5 0 00-2.5 2.5v7a2.5 2.5 0 002.5 2.5h7a2.5 2.5 0 002.5-2.5v-7a2.5 2.5 0 00-2.5-2.5h-7zm8.5 5.5H7.5v-4.5h3a1.5 1.5 0 011.5 1.5v3zm0 1v3a1.5 1.5 0 01-1.5 1.5h-3v-4.5H12zm-5.5 4.5v-4.5H2v3a1.5 1.5 0 001.5 1.5h3zM2 6.504h4.5v-4.5h-3a1.5 1.5 0 00-1.5 1.5v3z",fill:e}))),CF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.504a.5.5 0 01.5-.5H6a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H1.5a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5h3.5v3.5H2zM7.5 1.504a.5.5 0 01.5-.5h4.5a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H8a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5H12v3.5H8.5zM1.5 7.504a.5.5 0 00-.5.5v4.5a.5.5 0 00.5.5H6a.5.5 0 00.5-.5v-4.5a.5.5 0 00-.5-.5H1.5zm.5 1v3.5h3.5v-3.5H2zM7.5 8.004a.5.5 0 01.5-.5h4.5a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H8a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5H12v3.5H8.5z",fill:e}))),DF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2 2.004v2H1v-2.5a.5.5 0 01.5-.5H4v1H2zM1 9.004v-4h1v4H1zM1 10.004v2.5a.5.5 0 00.5.5H4v-1H2v-2H1zM10 13.004h2.5a.5.5 0 00.5-.5v-2.5h-1v2h-2v1zM12 4.004h1v-2.5a.5.5 0 00-.5-.5H10v1h2v2zM9 12.004v1H5v-1h4zM9 1.004v1H5v-1h4zM13 9.004h-1v-4h1v4zM7 8.004a1 1 0 100-2 1 1 0 000 2z",fill:e}))),SF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.25 3.254a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7.003v-6.5a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5H.5a.5.5 0 00-.5.5v2.5h1v-2h2v6.5a.5.5 0 00.5.5H10v2H8v1h2.5a.5.5 0 00.5-.5v-2.5h2.5a.5.5 0 00.5-.5v-3.5zm-10-6v5.794L5.646 5.15a.5.5 0 01.708 0L7.5 6.297l2.646-2.647a.5.5 0 01.708 0L13 5.797V1.004H4zm9 6.208l-2.5-2.5-2.293 2.293L9.354 8.15a.5.5 0 11-.708.707L6 6.211l-2 2v1.793h9V7.21z",fill:e}),l.createElement("path",{d:"M0 10.004v-3h1v3H0zM0 13.504v-2.5h1v2h2v1H.5a.5.5 0 01-.5-.5zM7 14.004H4v-1h3v1z",fill:e}))),AF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4 3V1h1v2H4zM4 6v2h1V6H4zM4 11v2h1v-2H4zM9 11v2h1v-2H9zM9 8V6h1v2H9zM9 1v2h1V1H9zM13 5h-2V4h2v1zM11 10h2V9h-2v1zM3 10H1V9h2v1zM1 5h2V4H1v1zM8 5H6V4h2v1zM6 10h2V9H6v1zM4 4h1v1H4V4zM10 4H9v1h1V4zM9 9h1v1H9V9zM5 9H4v1h1V9z",fill:e}))),kF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.5 4.5 0 019 0z",fill:e}))),_F=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M6 3.5a.5.5 0 01.5.5v1.5H8a.5.5 0 010 1H6.5V8a.5.5 0 01-1 0V6.5H4a.5.5 0 010-1h1.5V4a.5.5 0 01.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.5 4.5 0 019 0z",fill:e}))),FF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4 5.5a.5.5 0 000 1h4a.5.5 0 000-1H4z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 11.5c1.35 0 2.587-.487 3.544-1.294a.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 106 11.5zm0-1a4.5 4.5 0 100-9 4.5 4.5 0 000 9z",fill:e}))),IF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.5 2.837V1.5a.5.5 0 00-1 0V4a.5.5 0 00.5.5h2.5a.5.5 0 000-1H2.258a4.5 4.5 0 11-.496 4.016.5.5 0 10-.942.337 5.502 5.502 0 008.724 2.353.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 101.5 2.837z",fill:e}))),TF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7 9.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7l-.21.293C13.669 7.465 10.739 11.5 7 11.5S.332 7.465.21 7.293L0 7l.21-.293C.331 6.536 3.261 2.5 7 2.5s6.668 4.036 6.79 4.207L14 7zM2.896 5.302A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5c1.518 0 2.958-.83 4.104-1.802A12.72 12.72 0 0012.755 7c-.297-.37-.875-1.04-1.65-1.698C9.957 4.33 8.517 3.5 7 3.5c-1.519 0-2.958.83-4.104 1.802z",fill:e}))),RF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11zM11.104 8.698c-.177.15-.362.298-.553.439l.714.714a13.25 13.25 0 002.526-2.558L14 7l-.21-.293C13.669 6.536 10.739 2.5 7 2.5c-.89 0-1.735.229-2.506.58l.764.763A4.859 4.859 0 017 3.5c1.518 0 2.958.83 4.104 1.802A12.724 12.724 0 0112.755 7a12.72 12.72 0 01-1.65 1.698zM.21 6.707c.069-.096 1.03-1.42 2.525-2.558l.714.714c-.191.141-.376.288-.553.439A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5a4.86 4.86 0 001.742-.344l.764.764c-.772.351-1.616.58-2.506.58C3.262 11.5.332 7.465.21 7.293L0 7l.21-.293z",fill:e}),l.createElement("path",{d:"M4.5 7c0-.322.061-.63.172-.914l3.242 3.242A2.5 2.5 0 014.5 7zM9.328 7.914L6.086 4.672a2.5 2.5 0 013.241 3.241z",fill:e}))),BF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.522 6.6a.566.566 0 00-.176.544.534.534 0 00.382.41l2.781.721-1.493 5.013a.563.563 0 00.216.627.496.496 0 00.63-.06l6.637-6.453a.568.568 0 00.151-.54.534.534 0 00-.377-.396l-2.705-.708 2.22-4.976a.568.568 0 00-.15-.666.497.497 0 00-.648.008L2.522 6.6zm7.72.63l-3.067-.804L9.02 2.29 3.814 6.803l2.95.764-1.277 4.285 4.754-4.622zM4.51 13.435l.037.011-.037-.011z",fill:e}))),s9=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M10.139 8.725l1.36-1.323a.568.568 0 00.151-.54.534.534 0 00-.377-.396l-2.705-.708 2.22-4.976a.568.568 0 00-.15-.666.497.497 0 00-.648.008L5.464 4.05l.708.71 2.848-2.47-1.64 3.677.697.697 2.164.567-.81.787.708.708zM2.523 6.6a.566.566 0 00-.177.544.534.534 0 00.382.41l2.782.721-1.494 5.013a.563.563 0 00.217.627.496.496 0 00.629-.06l3.843-3.736-.708-.707-2.51 2.44 1.137-3.814-.685-.685-2.125-.55.844-.731-.71-.71L2.524 6.6zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11z",fill:e}))),zF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3.004H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h10a.5.5 0 00.5-.5v-2.5h2.5a.5.5 0 00.5-.5v-10a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5zm1 1v2.293l2.293-2.293H4zm-1 0v6.5a.499.499 0 00.497.5H10v2H1v-9h2zm1-1h6.5a.499.499 0 01.5.5v6.5h2v-9H4v2zm6 7V7.71l-2.293 2.293H10zm0-3.707V4.71l-5.293 5.293h1.586L10 6.297zm-.707-2.293H7.707L4 7.71v1.586l5.293-5.293z",fill:e}))),$F=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3.004v-2.5a.5.5 0 01.5-.5h10a.5.5 0 01.5.5v10a.5.5 0 01-.5.5H11v2.5a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5v-10a.5.5 0 01.5-.5H3zm1 0v-2h9v9h-2v-6.5a.5.5 0 00-.5-.5H4zm6 8v2H1v-9h2v6.5a.5.5 0 00.5.5H10zm0-1H4v-6h6v6z",fill:e}))),OF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 10.5h10v-10l-10 10z",fill:e}))),LF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.5 1.004a.5.5 0 100 1H12v10.5a.5.5 0 001 0v-10.5a1 1 0 00-1-1H1.5z",fill:e}),l.createElement("path",{d:"M1 3.504a.5.5 0 01.5-.5H10a1 1 0 011 1v8.5a.5.5 0 01-1 0v-8.5H1.5a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 5.004a.5.5 0 00-.5.5v7a.5.5 0 00.5.5h7a.5.5 0 00.5-.5v-7a.5.5 0 00-.5-.5h-7zm.5 1v6h6v-6H2z",fill:e}))),MF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.854.146a.5.5 0 00-.708 0L2.983 8.31a2.24 2.24 0 00-1.074.6C.677 10.14.24 11.902.085 12.997 0 13.6 0 14 0 14s.4 0 1.002-.085c1.095-.155 2.857-.592 4.089-1.824a2.24 2.24 0 00.6-1.074l8.163-8.163a.5.5 0 000-.708l-2-2zM5.6 9.692l.942-.942L5.25 7.457l-.942.943A2.242 2.242 0 015.6 9.692zm1.649-1.65L12.793 2.5 11.5 1.207 5.957 6.75 7.25 8.043zM4.384 9.617a1.25 1.25 0 010 1.768c-.767.766-1.832 1.185-2.78 1.403-.17.04-.335.072-.49.098.027-.154.06-.318.099-.49.219-.947.637-2.012 1.403-2.779a1.25 1.25 0 011.768 0z",fill:e}))),PF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.5 1.004a.5.5 0 01.5.5v.5h10v-.5a.5.5 0 011 0v2a.5.5 0 01-1 0v-.5H2v.5a.5.5 0 01-1 0v-2a.5.5 0 01.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 6a.5.5 0 00-.5.5v6a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-6a.5.5 0 00-.5-.5h-11zM2 7v5h10V7h-1v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 01-1 0V7H7.5v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 01-1 0V7H4v2.5a.5.5 0 01-1 0V7H2z",fill:e}))),NF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4.5 4a.5.5 0 00-.5.5v5a.5.5 0 00.5.5h5a.5.5 0 00.5-.5v-5a.5.5 0 00-.5-.5h-5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),HF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 7a3 3 0 11-6 0 3 3 0 016 0zM9 7a2 2 0 11-4 0 2 2 0 014 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.5 1a.5.5 0 00-.5.5v.504H.5a.5.5 0 00-.5.5v9a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H6V1.5a.5.5 0 00-.5-.5h-3zM1 3.004v8h12v-8H1z",fill:e}))),jF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2.5 10a.5.5 0 100-1 .5.5 0 000 1z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4a2 2 0 012-2h6a2 2 0 012 2v.5l3.189-2.391A.5.5 0 0114 2.5v9a.5.5 0 01-.804.397L10 9.5v.5a2 2 0 01-2 2H2a2 2 0 01-2-2V4zm9 0v1.5a.5.5 0 00.8.4L13 3.5v7L9.8 8.1a.5.5 0 00-.8.4V10a1 1 0 01-1 1H2a1 1 0 01-1-1V4a1 1 0 011-1h6a1 1 0 011 1z",fill:e}))),VF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 4.5v5a.5.5 0 00.5.5H4l3.17 2.775a.5.5 0 00.83-.377V1.602a.5.5 0 00-.83-.376L4 4H1.5a.5.5 0 00-.5.5zM4 9V5H2v4h2zm.998.545A.504.504 0 005 9.5v-5c0-.015 0-.03-.002-.044L7 2.704v8.592L4.998 9.545z",fill:e}),l.createElement("path",{d:"M10.15 1.752a.5.5 0 00-.3.954 4.502 4.502 0 010 8.588.5.5 0 00.3.954 5.502 5.502 0 000-10.496z",fill:e}),l.createElement("path",{d:"M10.25 3.969a.5.5 0 00-.5.865 2.499 2.499 0 010 4.332.5.5 0 10.5.866 3.499 3.499 0 000-6.063z",fill:e}))),UF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M12.813 7.425l-9.05 5.603A.5.5 0 013 12.603V1.398a.5.5 0 01.763-.425l9.05 5.602a.5.5 0 010 .85z",fill:e}))),qF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.24 12.035L3.697 7.427A.494.494 0 013.5 7.2v4.05a.75.75 0 01-1.5 0v-8.5a.75.75 0 011.5 0V6.8a.494.494 0 01.198-.227l7.541-4.608A.5.5 0 0112 2.39v9.217a.5.5 0 01-.76.427z",fill:e}))),WF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2.76 12.035l7.542-4.608A.495.495 0 0010.5 7.2v4.05a.75.75 0 001.5 0v-8.5a.75.75 0 00-1.5 0V6.8a.495.495 0 00-.198-.227L2.76 1.965A.5.5 0 002 2.39v9.217a.5.5 0 00.76.427z",fill:e}))),GF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M9 2.42v2.315l4.228-2.736a.5.5 0 01.772.42v9.162a.5.5 0 01-.772.42L9 9.263v2.317a.5.5 0 01-.772.42L1.5 7.647v3.603a.75.75 0 01-1.5 0v-8.5a.75.75 0 011.5 0v3.603L8.228 2A.5.5 0 019 2.42z",fill:e}))),KF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5 2.42v2.315L.772 1.999a.5.5 0 00-.772.42v9.162a.5.5 0 00.772.42L5 9.263v2.317a.5.5 0 00.772.42L12.5 7.647v3.603a.75.75 0 001.5 0v-8.5a.75.75 0 00-1.5 0v3.603L5.772 2A.5.5 0 005 2.42z",fill:e}))),YF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11z",fill:e}))),JF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 10.5v-10h5v10H2z",fill:e}))),ZF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5 1.004a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11zm-10.5 1h10v5H2v-5z",fill:e}))),XF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3492)",fill:e},l.createElement("path",{d:"M7.5.5a.5.5 0 00-1 0V2a.5.5 0 001 0V.5z"}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 10a3 3 0 100-6 3 3 0 000 6zm0-1a2 2 0 100-4 2 2 0 000 4z"}),l.createElement("path",{d:"M7 11.5a.5.5 0 01.5.5v1.5a.5.5 0 01-1 0V12a.5.5 0 01.5-.5zM11.5 7a.5.5 0 01.5-.5h1.5a.5.5 0 010 1H12a.5.5 0 01-.5-.5zM.5 6.5a.5.5 0 000 1H2a.5.5 0 000-1H.5zM3.818 10.182a.5.5 0 010 .707l-1.06 1.06a.5.5 0 11-.708-.706l1.06-1.06a.5.5 0 01.708 0zM11.95 2.757a.5.5 0 10-.707-.707l-1.061 1.061a.5.5 0 10.707.707l1.06-1.06zM10.182 10.182a.5.5 0 01.707 0l1.06 1.06a.5.5 0 11-.706.708l-1.061-1.06a.5.5 0 010-.708zM2.757 2.05a.5.5 0 10-.707.707l1.06 1.061a.5.5 0 00.708-.707l-1.06-1.06z"})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3492"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),QF=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3493)"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.335.047l-.15-.015a7.499 7.499 0 106.14 10.577c.103-.229-.156-.447-.386-.346a5.393 5.393 0 01-.771.27A5.356 5.356 0 019.153.691C9.37.568 9.352.23 9.106.175a7.545 7.545 0 00-.77-.128zM6.977 1.092a6.427 6.427 0 005.336 10.671A6.427 6.427 0 116.977 1.092z",fill:e})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3493"},l.createElement("path",{fill:"#fff",transform:"scale(1.07124)",d:"M0 0h14.001v14.002H0z"}))))),eI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 2a2 2 0 00-2-2H1.5a.5.5 0 00-.5.5v13a.5.5 0 00.5.5H11a2 2 0 002-2V2zM3 13h8a1 1 0 001-1V2a1 1 0 00-1-1H7v6.004a.5.5 0 01-.856.352l-.002-.002L5.5 6.71l-.645.647A.5.5 0 014 7.009V1H3v12zM5 1v4.793l.146-.146a.5.5 0 01.743.039l.111.11V1H5z",fill:e}))),tI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4 5.5a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5zM4.5 7.5a.5.5 0 000 1h5a.5.5 0 000-1h-5zM4 10.5a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 0a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h11a.5.5 0 00.5-.5V3.207a.5.5 0 00-.146-.353L10.146.146A.5.5 0 009.793 0H1.5zM2 1h7.5v2a.5.5 0 00.5.5h2V13H2V1z",fill:e}))),rI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.746.07A.5.5 0 0011.5.003h-6a.5.5 0 00-.5.5v2.5H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h8a.5.5 0 00.5-.5v-2.5h4.5a.5.5 0 00.5-.5v-8a.498.498 0 00-.15-.357L11.857.154a.506.506 0 00-.11-.085zM9 10.003h4v-7h-1.5a.5.5 0 01-.5-.5v-1.5H6v2h.5a.5.5 0 01.357.15L8.85 5.147c.093.09.15.217.15.357v4.5zm-8-6v9h7v-7H6.5a.5.5 0 01-.5-.5v-1.5H1z",fill:e}))),nI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3 1.5a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7a.5.5 0 01-.5-.5zM2 3.504a.5.5 0 01.5-.5h9a.5.5 0 010 1h-9a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 5.5a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v7a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-7zM2 12V6h10v6H2z",fill:e}))),aI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.586 3.504l-1.5-1.5H1v9h12v-7.5H6.586zm.414-1L5.793 1.297a1 1 0 00-.707-.293H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-8.5a.5.5 0 00-.5-.5H7z",fill:e}))),oI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4.5 8.004a.5.5 0 100 1h5a.5.5 0 000-1h-5zM4.5 10.004a.5.5 0 000 1h5a.5.5 0 000-1h-5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 1.504a.5.5 0 01.5-.5h8a.498.498 0 01.357.15l.993.993c.093.09.15.217.15.357v1.5h1.5a.5.5 0 01.5.5v5a.5.5 0 01-.5.5H12v2.5a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-2.5H.5a.5.5 0 01-.5-.5v-5a.5.5 0 01.5-.5H2v-2.5zm11 7.5h-1v-2.5a.5.5 0 00-.5-.5h-9a.5.5 0 00-.5.5v2.5H1v-4h12v4zm-2-6v1H3v-2h7v.5a.5.5 0 00.5.5h.5zm-8 9h8v-5H3v5z",fill:e}))),iI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.146 6.15a.5.5 0 01.708 0L7 7.297 9.146 5.15a.5.5 0 01.708 0l1 1a.5.5 0 01-.708.707L9.5 6.211 7.354 8.357a.5.5 0 01-.708 0L5.5 7.211 3.854 8.857a.5.5 0 11-.708-.707l2-2z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 1.004a.5.5 0 00-.5.5v11a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-11a.5.5 0 00-.5-.5h-11zm.5 1v10h10v-10H2z",fill:e}))),lI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5 0a.5.5 0 01.5.5V1h6V.5a.5.5 0 011 0V1h1.5a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5H3V.5a.5.5 0 01.5-.5zM2 4v2.3h3V4H2zm0 5.2V6.8h3v2.4H2zm0 .5V12h3V9.7H2zm3.5 0V12h3V9.7h-3zm3.5 0V12h3V9.7H9zm3-.5H9V6.8h3v2.4zm-3.5 0h-3V6.8h3v2.4zM9 4v2.3h3V4H9zM5.5 6.3h3V4h-3v2.3z",fill:e}))),sI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M12 2.5a.5.5 0 00-1 0v10a.5.5 0 001 0v-10zM9 4.5a.5.5 0 00-1 0v8a.5.5 0 001 0v-8zM5.5 7a.5.5 0 01.5.5v5a.5.5 0 01-1 0v-5a.5.5 0 01.5-.5zM3 10.5a.5.5 0 00-1 0v2a.5.5 0 001 0v-2z",fill:e}))),uI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M13 2a.5.5 0 010 1H1a.5.5 0 010-1h12zM10 5a.5.5 0 010 1H1a.5.5 0 010-1h9zM11.5 8.5A.5.5 0 0011 8H1a.5.5 0 000 1h10a.5.5 0 00.5-.5zM7.5 11a.5.5 0 010 1H1a.5.5 0 010-1h6.5z",fill:e}))),cI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1 2a.5.5 0 000 1h12a.5.5 0 000-1H1zM4 5a.5.5 0 000 1h9a.5.5 0 000-1H4zM2.5 8.5A.5.5 0 013 8h10a.5.5 0 010 1H3a.5.5 0 01-.5-.5zM6.5 11a.5.5 0 000 1H13a.5.5 0 000-1H6.5z",fill:e}))),dI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1 2a.5.5 0 000 1h12a.5.5 0 000-1H1zM3 5a.5.5 0 000 1h8a.5.5 0 000-1H3zM4.5 8.5A.5.5 0 015 8h4a.5.5 0 010 1H5a.5.5 0 01-.5-.5zM6.5 11a.5.5 0 000 1h1a.5.5 0 000-1h-1z",fill:e}))),pI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.5a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zM2 4v2.3h3V4H2zm0 5.2V6.8h3v2.4H2zm0 .5V12h3V9.7H2zm3.5 0V12h3V9.7h-3zm3.5 0V12h3V9.7H9zm3-.5H9V6.8h3v2.4zm-3.5 0h-3V6.8h3v2.4zM9 6.3h3V4H9v2.3zm-3.5 0h3V4h-3v2.3z",fill:e}))),fI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.5 6.5A.5.5 0 014 6h6a.5.5 0 010 1H4a.5.5 0 01-.5-.5zM4 9a.5.5 0 000 1h6a.5.5 0 000-1H4z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.5a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zM2 4v8h10V4H2z",fill:e}))),hI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M13 4a.5.5 0 010 1H1a.5.5 0 010-1h12zM13.5 9.5A.5.5 0 0013 9H1a.5.5 0 000 1h12a.5.5 0 00.5-.5z",fill:e}))),mI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M13 3.5a.5.5 0 010 1H1a.5.5 0 010-1h12zM13.5 10a.5.5 0 00-.5-.5H1a.5.5 0 000 1h12a.5.5 0 00.5-.5zM13 6.5a.5.5 0 010 1H1a.5.5 0 010-1h12z",fill:e}))),gI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M8.982 1.632a.5.5 0 00-.964-.263l-3 11a.5.5 0 10.964.263l3-11zM3.32 3.616a.5.5 0 01.064.704L1.151 7l2.233 2.68a.5.5 0 11-.768.64l-2.5-3a.5.5 0 010-.64l2.5-3a.5.5 0 01.704-.064zM10.68 3.616a.5.5 0 00-.064.704L12.849 7l-2.233 2.68a.5.5 0 00.768.64l2.5-3a.5.5 0 000-.64l-2.5-3a.5.5 0 00-.704-.064z",fill:e}))),vI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2v1.5h1v7H3V12h5a3 3 0 001.791-5.407A2.75 2.75 0 008 2.011V2H3zm5 5.5H5.5v3H8a1.5 1.5 0 100-3zm-.25-4H5.5V6h2.25a1.25 1.25 0 100-2.5z",fill:e}))),yI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5 2h6v1H8.5l-2 8H9v1H3v-1h2.5l2-8H5V2z",fill:e}))),bI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M10.553 2.268a1.5 1.5 0 00-2.12 0L2.774 7.925a2.5 2.5 0 003.536 3.535l3.535-3.535a.5.5 0 11.707.707l-3.535 3.536-.002.002a3.5 3.5 0 01-4.959-4.941l.011-.011L7.725 1.56l.007-.008a2.5 2.5 0 013.53 3.541l-.002.002-5.656 5.657-.003.003a1.5 1.5 0 01-2.119-2.124l3.536-3.536a.5.5 0 11.707.707L4.189 9.34a.5.5 0 00.707.707l5.657-5.657a1.5 1.5 0 000-2.121z",fill:e}))),wI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5 2.5a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7a.5.5 0 01-.5-.5zM5 7a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7A.5.5 0 015 7zM5.5 11a.5.5 0 000 1h7a.5.5 0 000-1h-7zM2.5 2H1v1h1v3h1V2.5a.5.5 0 00-.5-.5zM3 8.5v1a.5.5 0 01-1 0V9h-.5a.5.5 0 010-1h1a.5.5 0 01.5.5zM2 10.5a.5.5 0 00-1 0V12h2v-1H2v-.5z",fill:e}))),EI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2.75 2.5a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM5.5 2a.5.5 0 000 1h7a.5.5 0 000-1h-7zM5.5 11a.5.5 0 000 1h7a.5.5 0 000-1h-7zM2 12.25a.75.75 0 100-1.5.75.75 0 000 1.5zM5 7a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7A.5.5 0 015 7zM2 7.75a.75.75 0 100-1.5.75.75 0 000 1.5z",fill:e}))),xI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M6 7a3 3 0 110-6h5.5a.5.5 0 010 1H10v10.5a.5.5 0 01-1 0V2H7v10.5a.5.5 0 01-1 0V7z",fill:e}))),CI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2 4.5h1.5L5 6.375 6.5 4.5H8v5H6.5V7L5 8.875 3.5 7v2.5H2v-5zM9.75 4.5h1.5V7h1.25l-2 2.5-2-2.5h1.25V4.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M.5 2a.5.5 0 00-.5.5v9a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H.5zM1 3v8h12V3H1z",fill:e}))),DI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5 2.5a.5.5 0 11-1 0 .5.5 0 011 0zM4.5 5a.5.5 0 100-1 .5.5 0 000 1zM5 6.5a.5.5 0 11-1 0 .5.5 0 011 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 0a2 2 0 012 2v10a2 2 0 01-2 2H1.5a.5.5 0 01-.5-.5V.5a.5.5 0 01.5-.5H11zm0 1H3v12h8a1 1 0 001-1V2a1 1 0 00-1-1z",fill:e}))),SI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.031 7.5a4 4 0 007.938 0H13.5a.5.5 0 000-1h-2.53a4 4 0 00-7.94 0H.501a.5.5 0 000 1h2.531zM7 10a3 3 0 100-6 3 3 0 000 6z",fill:e}))),AI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 2.5a1.5 1.5 0 01-1 1.415v4.053C5.554 7.4 6.367 7 7.5 7c.89 0 1.453-.252 1.812-.557.218-.184.374-.4.482-.62a1.5 1.5 0 111.026.143c-.155.423-.425.87-.86 1.24C9.394 7.685 8.59 8 7.5 8c-1.037 0-1.637.42-1.994.917a2.81 2.81 0 00-.472 1.18A1.5 1.5 0 114 10.086v-6.17A1.5 1.5 0 116 2.5zm-2 9a.5.5 0 111 0 .5.5 0 01-1 0zm1-9a.5.5 0 11-1 0 .5.5 0 011 0zm6 2a.5.5 0 11-1 0 .5.5 0 011 0z",fill:e}))),kI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.354 1.354L7.707 2H8.5A2.5 2.5 0 0111 4.5v5.585a1.5 1.5 0 11-1 0V4.5A1.5 1.5 0 008.5 3h-.793l.647.646a.5.5 0 11-.708.708l-1.5-1.5a.5.5 0 010-.708l1.5-1.5a.5.5 0 11.708.708zM11 11.5a.5.5 0 11-1 0 .5.5 0 011 0zM4 3.915a1.5 1.5 0 10-1 0v6.17a1.5 1.5 0 101 0v-6.17zM3.5 11a.5.5 0 100 1 .5.5 0 000-1zm0-8a.5.5 0 100-1 .5.5 0 000 1z",fill:e}))),_I=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.108 3.872A1.5 1.5 0 103 3.915v6.17a1.5 1.5 0 101 0V6.41c.263.41.573.77.926 1.083 1.108.98 2.579 1.433 4.156 1.5A1.5 1.5 0 109.09 7.99c-1.405-.065-2.62-.468-3.5-1.248-.723-.64-1.262-1.569-1.481-2.871zM3.5 11a.5.5 0 100 1 .5.5 0 000-1zM4 2.5a.5.5 0 11-1 0 .5.5 0 011 0zm7 6a.5.5 0 11-1 0 .5.5 0 011 0z",fill:e}))),FI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.03 8.103a3.044 3.044 0 01-.202-1.744 2.697 2.697 0 011.4-1.935c-.749-1.18-1.967-1.363-2.35-1.403-.835-.086-2.01.56-2.648.57h-.016c-.639-.01-1.814-.656-2.649-.57-.415.044-1.741.319-2.541 1.593-.281.447-.498 1.018-.586 1.744a6.361 6.361 0 00-.044.85c.005.305.028.604.07.895.09.62.259 1.207.477 1.744.242.595.543 1.13.865 1.585.712 1.008 1.517 1.59 1.971 1.6.934.021 1.746-.61 2.416-.594.006.002.014.003.02.002h.017c.007 0 .014 0 .021-.002.67-.017 1.481.615 2.416.595.453-.011 1.26-.593 1.971-1.6a7.95 7.95 0 00.97-1.856c-.697-.217-1.27-.762-1.578-1.474zm-2.168-5.97c.717-.848.69-2.07.624-2.125-.065-.055-1.25.163-1.985.984-.735.82-.69 2.071-.624 2.125.064.055 1.268-.135 1.985-.984z",fill:e}))),II=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 0a3 3 0 013 3v1.24c.129.132.25.27.362.415.113.111.283.247.515.433l.194.155c.325.261.711.582 1.095.966.765.765 1.545 1.806 1.823 3.186a.501.501 0 01-.338.581 3.395 3.395 0 01-1.338.134 2.886 2.886 0 01-1.049-.304 5.535 5.535 0 01-.17.519 2 2 0 11-2.892 2.55A5.507 5.507 0 017 13c-.439 0-.838-.044-1.201-.125a2 2 0 11-2.892-2.55 5.553 5.553 0 01-.171-.519c-.349.182-.714.27-1.05.304A3.395 3.395 0 01.35 9.977a.497.497 0 01-.338-.582c.278-1.38 1.058-2.42 1.823-3.186.384-.384.77-.705 1.095-.966l.194-.155c.232-.186.402-.322.515-.433.112-.145.233-.283.362-.414V3a3 3 0 013-3zm1.003 11.895a2 2 0 012.141-1.89c.246-.618.356-1.322.356-2.005 0-.514-.101-1.07-.301-1.599l-.027-.017a6.387 6.387 0 00-.857-.42 6.715 6.715 0 00-1.013-.315l-.852.638a.75.75 0 01-.9 0l-.852-.638a6.716 6.716 0 00-1.693.634 4.342 4.342 0 00-.177.101l-.027.017A4.6 4.6 0 003.501 8c0 .683.109 1.387.355 2.005a2 2 0 012.142 1.89c.295.067.627.105 1.002.105s.707-.038 1.003-.105zM5 12a1 1 0 11-2 0 1 1 0 012 0zm6 0a1 1 0 11-2 0 1 1 0 012 0zM6.1 4.3a1.5 1.5 0 011.8 0l.267.2L7 5.375 5.833 4.5l.267-.2zM8.5 2a.5.5 0 01.5.5V3a.5.5 0 01-1 0v-.5a.5.5 0 01.5-.5zM6 2.5a.5.5 0 00-1 0V3a.5.5 0 001 0v-.5z",fill:e}))),TI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3497)",fill:e},l.createElement("path",{d:"M12.261 2.067c0 1.142-.89 2.068-1.988 2.068-1.099 0-1.99-.926-1.99-2.068C8.283.926 9.174 0 10.273 0c1.098 0 1.989.926 1.989 2.067zM3.978 6.6c0 1.142-.89 2.068-1.989 2.068C.891 8.668 0 7.742 0 6.601c0-1.142.89-2.068 1.989-2.068 1.099 0 1.989.926 1.989 2.068zM6.475 11.921A4.761 4.761 0 014.539 11a4.993 4.993 0 01-1.367-1.696 2.765 2.765 0 01-1.701.217 6.725 6.725 0 001.844 2.635 6.379 6.379 0 004.23 1.577 3.033 3.033 0 01-.582-1.728 4.767 4.767 0 01-.488-.083zM11.813 11.933c0 1.141-.89 2.067-1.989 2.067-1.098 0-1.989-.926-1.989-2.067 0-1.142.891-2.068 1.99-2.068 1.098 0 1.989.926 1.989 2.068zM12.592 11.173a6.926 6.926 0 001.402-3.913 6.964 6.964 0 00-1.076-4.023A2.952 2.952 0 0111.8 4.6c.398.78.592 1.656.564 2.539a5.213 5.213 0 01-.724 2.495c.466.396.8.935.952 1.54zM1.987 3.631c-.05 0-.101.002-.151.004C3.073 1.365 5.504.024 8.005.23a3.07 3.07 0 00-.603 1.676 4.707 4.707 0 00-2.206.596 4.919 4.919 0 00-1.7 1.576 2.79 2.79 0 00-1.509-.447z"})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3497"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),RI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M6.5 1H1v5.5h5.5V1zM13 1H7.5v5.5H13V1zM7.5 7.5H13V13H7.5V7.5zM6.5 7.5H1V13h5.5V7.5z",fill:e}))),BI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3496)"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.023 3.431a.115.115 0 01-.099.174H7.296A3.408 3.408 0 003.7 6.148a.115.115 0 01-.21.028l-1.97-3.413a.115.115 0 01.01-.129A6.97 6.97 0 017 0a6.995 6.995 0 016.023 3.431zM7 9.615A2.619 2.619 0 014.384 7 2.62 2.62 0 017 4.383 2.619 2.619 0 019.616 7 2.619 2.619 0 017 9.615zm1.034.71a.115.115 0 00-.121-.041 3.4 3.4 0 01-.913.124 3.426 3.426 0 01-3.091-1.973L1.098 3.567a.115.115 0 00-.2.001 7.004 7.004 0 005.058 10.354l.017.001c.04 0 .078-.021.099-.057l1.971-3.414a.115.115 0 00-.009-.128zm1.43-5.954h3.947c.047 0 .09.028.107.072.32.815.481 1.675.481 2.557a6.957 6.957 0 01-2.024 4.923A6.957 6.957 0 017.08 14h-.001a.115.115 0 01-.1-.172L9.794 8.95A3.384 3.384 0 0010.408 7c0-.921-.364-1.785-1.024-2.433a.115.115 0 01.08-.196z",fill:e})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3496"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),zI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.042.616a.704.704 0 00-.66.729L1.816 12.9c.014.367.306.66.672.677l9.395.422h.032a.704.704 0 00.704-.703V.704c0-.015 0-.03-.002-.044a.704.704 0 00-.746-.659l-.773.049.057 1.615a.105.105 0 01-.17.086l-.52-.41-.617.468a.105.105 0 01-.168-.088L9.746.134 2.042.616zm8.003 4.747c-.247.192-2.092.324-2.092.05.04-1.045-.429-1.091-.689-1.091-.247 0-.662.075-.662.634 0 .57.607.893 1.32 1.27 1.014.538 2.24 1.188 2.24 2.823 0 1.568-1.273 2.433-2.898 2.433-1.676 0-3.141-.678-2.976-3.03.065-.275 2.197-.21 2.197 0-.026.971.195 1.256.753 1.256.43 0 .624-.236.624-.634 0-.602-.633-.958-1.361-1.367-.987-.554-2.148-1.205-2.148-2.7 0-1.494 1.027-2.489 2.86-2.489 1.832 0 2.832.98 2.832 2.845z",fill:e}))),$I=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3503)"},l.createElement("path",{d:"M0 5.176l1.31-1.73 4.902-1.994V.014l4.299 3.144-8.78 1.706v4.8L0 9.162V5.176zm14-2.595v8.548l-3.355 2.857-5.425-1.783v1.783L1.73 9.661l8.784 1.047v-7.55L14 2.581z",fill:e})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3503"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),OI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.522a.411.411 0 00-.412.476l1.746 10.597a.56.56 0 00.547.466h8.373a.411.411 0 00.412-.345l1.017-6.248h-3.87L8.35 9.18H5.677l-.724-3.781h7.904L13.412 2A.411.411 0 0013 1.524L1 1.522z",fill:e}))),LI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 7a7 7 0 1014 0A7 7 0 000 7zm5.215-3.869a1.967 1.967 0 013.747.834v1.283l-3.346-1.93a2.486 2.486 0 00-.401-.187zm3.484 2.58l-3.346-1.93a1.968 1.968 0 00-2.685.72 1.954 1.954 0 00.09 2.106 2.45 2.45 0 01.362-.254l1.514-.873a.27.27 0 01.268 0l2.1 1.21 1.697-.978zm-.323 4.972L6.86 9.81a.268.268 0 01-.134-.231V7.155l-1.698-.98v3.86a1.968 1.968 0 003.747.835 2.488 2.488 0 01-.4-.187zm.268-.464a1.967 1.967 0 002.685-.719 1.952 1.952 0 00-.09-2.106c-.112.094-.233.18-.361.253L7.53 9.577l1.113.642zm-4.106.257a1.974 1.974 0 01-1.87-.975A1.95 1.95 0 012.47 8.01c.136-.507.461-.93.916-1.193L4.5 6.175v3.86c0 .148.013.295.039.44zM11.329 4.5a1.973 1.973 0 00-1.87-.976c.025.145.039.292.039.44v1.747a.268.268 0 01-.135.232l-2.1 1.211v1.96l3.346-1.931a1.966 1.966 0 00.72-2.683z",fill:e}))),MI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M10.847 2.181L8.867.201a.685.685 0 00-.97 0l-4.81 4.81a.685.685 0 000 .969l2.466 2.465-2.405 2.404a.685.685 0 000 .97l1.98 1.98a.685.685 0 00.97 0l4.81-4.81a.685.685 0 000-.969L8.441 5.555l2.405-2.404a.685.685 0 000-.97z",fill:e}))),PI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.852 2.885c-.893-.41-1.85-.712-2.85-.884a.043.043 0 00-.046.021c-.123.22-.26.505-.355.73a10.658 10.658 0 00-3.2 0 7.377 7.377 0 00-.36-.73.045.045 0 00-.046-.021c-1 .172-1.957.474-2.85.884a.04.04 0 00-.019.016C.311 5.612-.186 8.257.058 10.869a.048.048 0 00.018.033 11.608 11.608 0 003.496 1.767.045.045 0 00.049-.016c.27-.368.51-.755.715-1.163a.044.044 0 00-.024-.062 7.661 7.661 0 01-1.092-.52.045.045 0 01-.005-.075c.074-.055.147-.112.217-.17a.043.043 0 01.046-.006c2.29 1.046 4.771 1.046 7.035 0a.043.043 0 01.046.006c.07.057.144.115.218.17a.045.045 0 01-.004.075 7.186 7.186 0 01-1.093.52.045.045 0 00-.024.062c.21.407.45.795.715 1.162.011.016.03.023.05.017a11.57 11.57 0 003.5-1.767.045.045 0 00.019-.032c.292-3.02-.49-5.643-2.07-7.969a.036.036 0 00-.018-.016zM4.678 9.279c-.69 0-1.258-.634-1.258-1.411 0-.778.558-1.411 1.258-1.411.707 0 1.27.639 1.259 1.41 0 .778-.558 1.412-1.259 1.412zm4.652 0c-.69 0-1.258-.634-1.258-1.411 0-.778.557-1.411 1.258-1.411.707 0 1.27.639 1.258 1.41 0 .778-.551 1.412-1.258 1.412z",fill:e}))),NI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.399 14H5.06V7H3.5V4.588l1.56-.001-.002-1.421C5.058 1.197 5.533 0 7.6 0h1.721v2.413H8.246c-.805 0-.844.337-.844.966l-.003 1.208h1.934l-.228 2.412L7.401 7l-.002 7z",fill:e}))),HI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.2 0H4.803A2.603 2.603 0 003.41 4.802a2.603 2.603 0 000 4.396 2.602 2.602 0 103.998 2.199v-2.51a2.603 2.603 0 103.187-4.085A2.604 2.604 0 009.2 0zM7.407 7a1.793 1.793 0 103.586 0 1.793 1.793 0 00-3.586 0zm-.81 2.603H4.803a1.793 1.793 0 101.794 1.794V9.603zM4.803 4.397h1.794V.81H4.803a1.793 1.793 0 000 3.587zm0 .81a1.793 1.793 0 000 3.586h1.794V5.207H4.803zm4.397-.81H7.407V.81H9.2a1.794 1.794 0 010 3.587z",fill:e}))),jI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M6.37 8.768l-2.042 3.537h6.755l2.042-3.537H6.37zm6.177-1.003l-3.505-6.07H4.96l3.504 6.07h4.084zM4.378 2.7L.875 8.77l2.042 3.536L6.42 6.236 4.378 2.7z",fill:e}))),VI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 0C3.132 0 0 3.132 0 7a6.996 6.996 0 004.786 6.641c.35.062.482-.149.482-.332 0-.166-.01-.718-.01-1.304-1.758.324-2.213-.429-2.353-.823-.079-.2-.42-.822-.717-.988-.246-.132-.596-.455-.01-.464.552-.009.946.508 1.077.717.63 1.06 1.636.762 2.039.578.061-.455.245-.761.446-.936-1.558-.175-3.185-.779-3.185-3.457 0-.76.271-1.39.717-1.88-.07-.176-.314-.893.07-1.856 0 0 .587-.183 1.925.718a6.495 6.495 0 011.75-.236c.595 0 1.19.078 1.75.236 1.34-.91 1.926-.718 1.926-.718.385.963.14 1.68.07 1.855.446.49.717 1.111.717 1.881 0 2.687-1.636 3.282-3.194 3.457.254.218.473.638.473 1.295 0 .936-.009 1.688-.009 1.925 0 .184.131.402.481.332A7.012 7.012 0 0014 7c0-3.868-3.133-7-7-7z",fill:e}))),UI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.068 5.583l1.487-4.557a.256.256 0 01.487 0L4.53 5.583H1.068L7 13.15 4.53 5.583h4.941l-2.47 7.565 5.931-7.565H9.471l1.488-4.557a.256.256 0 01.486 0l1.488 4.557.75 2.3a.508.508 0 01-.185.568L7 13.148v.001H7L.503 8.452a.508.508 0 01-.186-.57l.75-2.299z",fill:e}))),qI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M10.925 1.094H7.262c-1.643 0-3.189 1.244-3.189 2.685 0 1.473 1.12 2.661 2.791 2.661.116 0 .23-.002.34-.01a1.49 1.49 0 00-.186.684c0 .41.22.741.498 1.012-.21 0-.413.006-.635.006-2.034 0-3.6 1.296-3.6 2.64 0 1.323 1.717 2.15 3.75 2.15 2.32 0 3.6-1.315 3.6-2.639 0-1.06-.313-1.696-1.28-2.38-.331-.235-.965-.805-.965-1.14 0-.392.112-.586.703-1.047.606-.474 1.035-1.14 1.035-1.914 0-.92-.41-1.819-1.18-2.115h1.161l.82-.593zm-1.335 8.96c.03.124.045.25.045.378 0 1.07-.688 1.905-2.665 1.905-1.406 0-2.421-.89-2.421-1.96 0-1.047 1.259-1.92 2.665-1.904.328.004.634.057.911.146.764.531 1.311.832 1.465 1.436zM7.34 6.068c-.944-.028-1.841-1.055-2.005-2.295-.162-1.24.47-2.188 1.415-2.16.943.029 1.84 1.023 2.003 2.262.163 1.24-.47 2.222-1.414 2.193z",fill:e}))),WI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.873 11.608a1.167 1.167 0 00-1.707-.027L3.46 10.018l.01-.04h7.072l.022.076-2.69 1.554zM6.166 2.42l.031.03-3.535 6.124a1.265 1.265 0 00-.043-.012V5.438a1.166 1.166 0 00.84-1.456L6.167 2.42zm4.387 1.562a1.165 1.165 0 00.84 1.456v3.124l-.043.012-3.536-6.123a1.2 1.2 0 00.033-.032l2.706 1.563zM3.473 9.42a1.168 1.168 0 00-.327-.568L6.68 2.73a1.17 1.17 0 00.652 0l3.536 6.123a1.169 1.169 0 00-.327.567H3.473zm8.79-.736a1.169 1.169 0 00-.311-.124V5.44a1.17 1.17 0 10-1.122-1.942L8.13 1.938a1.168 1.168 0 00-1.122-1.5 1.17 1.17 0 00-1.121 1.5l-2.702 1.56a1.168 1.168 0 00-1.86.22 1.17 1.17 0 00.739 1.722v3.12a1.168 1.168 0 00-.74 1.721 1.17 1.17 0 001.861.221l2.701 1.56a1.169 1.169 0 102.233-.035l2.687-1.552a1.168 1.168 0 101.457-1.791z",fill:e}))),GI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M0 0v14h14V0H0zm11.63 3.317l-.75.72a.22.22 0 00-.083.212v-.001 5.289a.22.22 0 00.083.21l.733.72v.159H7.925v-.158l.76-.738c.074-.074.074-.096.074-.21V5.244l-2.112 5.364h-.285l-2.46-5.364V8.84a.494.494 0 00.136.413h.001l.988 1.198v.158H2.226v-.158l.988-1.198a.477.477 0 00.126-.416v.003-4.157a.363.363 0 00-.118-.307l-.878-1.058v-.158h2.727l2.107 4.622L9.031 3.16h2.6v.158z",fill:e}))),KI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.06 9.689c.016.49.423.88.912.88h.032a.911.911 0 00.88-.945.916.916 0 00-.912-.88h-.033c-.033 0-.08 0-.113.016-.669-1.108-.946-2.314-.848-3.618.065-.978.391-1.825.961-2.526.473-.603 1.386-.896 2.005-.913 1.728-.032 2.461 2.119 2.51 2.983.212.049.57.163.815.244C10.073 2.29 8.444.92 6.88.92c-1.467 0-2.82 1.06-3.357 2.625-.75 2.086-.261 4.09.651 5.671a.74.74 0 00-.114.473zm8.279-2.298c-1.239-1.45-3.064-2.249-5.15-2.249h-.261a.896.896 0 00-.798-.489h-.033A.912.912 0 006.13 6.48h.031a.919.919 0 00.8-.554h.293c1.239 0 2.412.358 3.472 1.059.814.538 1.401 1.238 1.727 2.086.277.684.261 1.353-.033 1.923-.456.864-1.222 1.337-2.232 1.337a4.16 4.16 0 01-1.597-.343 9.58 9.58 0 01-.734.587c.7.326 1.418.505 2.102.505 1.565 0 2.722-.863 3.162-1.727.473-.946.44-2.575-.782-3.961zm-7.433 5.51a4.005 4.005 0 01-.977.113c-1.206 0-2.298-.505-2.836-1.32C.376 10.603.13 8.289 2.494 6.577c.05.261.147.62.212.832-.31.228-.798.685-1.108 1.303-.44.864-.391 1.729.13 2.527.359.537.93.864 1.663.962.896.114 1.793-.05 2.657-.505 1.271-.669 2.119-1.467 2.672-2.56a.944.944 0 01-.26-.603.913.913 0 01.88-.945h.033a.915.915 0 01.098 1.825c-.897 1.842-2.478 3.08-4.565 3.488z",fill:e}))),YI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 2.547a5.632 5.632 0 01-1.65.464 2.946 2.946 0 001.263-1.63 5.67 5.67 0 01-1.823.715 2.837 2.837 0 00-2.097-.93c-1.586 0-2.872 1.319-2.872 2.946 0 .23.025.456.074.67C4.508 4.66 2.392 3.488.975 1.706c-.247.435-.389.941-.389 1.481 0 1.022.507 1.923 1.278 2.452a2.806 2.806 0 01-1.3-.368l-.001.037c0 1.427.99 2.617 2.303 2.888a2.82 2.82 0 01-1.297.05c.366 1.17 1.427 2.022 2.683 2.045A5.671 5.671 0 010 11.51a7.985 7.985 0 004.403 1.323c5.283 0 8.172-4.488 8.172-8.38 0-.128-.003-.255-.009-.38A5.926 5.926 0 0014 2.546z",fill:e}))),JI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.99 8.172c.005-.281.007-.672.007-1.172 0-.5-.002-.89-.007-1.172a14.952 14.952 0 00-.066-1.066 9.638 9.638 0 00-.169-1.153c-.083-.38-.264-.7-.542-.96a1.667 1.667 0 00-.972-.454C11.084 2.065 9.337 2 6.999 2s-4.085.065-5.241.195a1.65 1.65 0 00-.969.453c-.276.26-.455.58-.539.961a8.648 8.648 0 00-.176 1.153c-.039.43-.061.785-.066 1.066C.002 6.11 0 6.5 0 7c0 .5.002.89.008 1.172.005.281.027.637.066 1.067.04.43.095.813.168 1.152.084.38.265.7.543.96.279.261.603.412.973.453 1.156.13 2.902.196 5.24.196 2.34 0 4.087-.065 5.243-.196a1.65 1.65 0 00.967-.453c.276-.26.456-.58.54-.96.077-.339.136-.722.175-1.152.04-.43.062-.786.067-1.067zM9.762 6.578A.45.45 0 019.997 7a.45.45 0 01-.235.422l-3.998 2.5a.442.442 0 01-.266.078.538.538 0 01-.242-.063.465.465 0 01-.258-.437v-5c0-.197.086-.343.258-.437a.471.471 0 01.508.016l3.998 2.5z",fill:e}))),ZI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.243.04a.87.87 0 01.38.087l2.881 1.386a.874.874 0 01.496.79V11.713a.875.875 0 01-.496.775l-2.882 1.386a.872.872 0 01-.994-.17L4.11 8.674l-2.404 1.823a.583.583 0 01-.744-.034l-.771-.7a.583.583 0 010-.862L2.274 7 .19 5.1a.583.583 0 010-.862l.772-.701a.583.583 0 01.744-.033L4.11 5.327 9.628.296a.871.871 0 01.615-.255zm.259 3.784L6.315 7l4.187 3.176V3.824z",fill:e}))),XI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.667 13H2.333A1.333 1.333 0 011 11.667V2.333C1 1.597 1.597 1 2.333 1h9.334C12.403 1 13 1.597 13 2.333v9.334c0 .736-.597 1.333-1.333 1.333zm-2.114-1.667h1.78V7.675c0-1.548-.877-2.296-2.102-2.296-1.226 0-1.742.955-1.742.955v-.778H5.773v5.777h1.716V8.3c0-.812.374-1.296 1.09-1.296.658 0 .974.465.974 1.296v3.033zm-6.886-7.6c0 .589.474 1.066 1.058 1.066.585 0 1.058-.477 1.058-1.066 0-.589-.473-1.066-1.058-1.066-.584 0-1.058.477-1.058 1.066zm1.962 7.6h-1.79V5.556h1.79v5.777z",fill:e}))),QI=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h13a.5.5 0 01.5.5v11a.5.5 0 01-.5.5H.5zm.5-1v-8h12v8H1zm1-9.5a.5.5 0 11-1 0 .5.5 0 011 0zm2 0a.5.5 0 11-1 0 .5.5 0 011 0zm2 0a.5.5 0 11-1 0 .5.5 0 011 0z",fill:e}))),eT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5.004a1.5 1.5 0 00-1.5 1.5v11a1.5 1.5 0 001.5 1.5h7a1.5 1.5 0 001.5-1.5v-11a1.5 1.5 0 00-1.5-1.5h-7zm0 1h7a.5.5 0 01.5.5v9.5H3v-9.5a.5.5 0 01.5-.5zm2.5 11a.5.5 0 000 1h2a.5.5 0 000-1H6z",fill:e}))),tT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 1.504a1.5 1.5 0 011.5-1.5h5a1.5 1.5 0 011.5 1.5v11a1.5 1.5 0 01-1.5 1.5h-5a1.5 1.5 0 01-1.5-1.5v-11zm1 10.5v-10h6v10H4z",fill:e}))),rT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 .504a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5zm5.5 2.5h-5a.5.5 0 00-.5.5v7a.5.5 0 00.5.5h5a.5.5 0 00.5-.5v-7a.5.5 0 00-.5-.5zm-5-1a1.5 1.5 0 00-1.5 1.5v7a1.5 1.5 0 001.5 1.5h5a1.5 1.5 0 001.5-1.5v-7a1.5 1.5 0 00-1.5-1.5h-5zm2.5 2a.5.5 0 01.5.5v2h1a.5.5 0 110 1H7a.5.5 0 01-.5-.5v-2.5a.5.5 0 01.5-.5zm-2.5 9a.5.5 0 000 1h5a.5.5 0 000-1h-5z",fill:e}))),nT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2.5 4.504a.5.5 0 01.5-.5h1a.5.5 0 110 1H3a.5.5 0 01-.5-.5zM3 6.004a.5.5 0 100 1h1a.5.5 0 000-1H3zM2.5 8.504a.5.5 0 01.5-.5h1a.5.5 0 110 1H3a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11zm.5-1v-10h3v10H2zm4-10h6v10H6v-10z",fill:e}))),aT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M9.5 4.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5zM10 6.004a.5.5 0 100 1h1a.5.5 0 000-1h-1zM9.5 8.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11zm.5-1v-10h6v10H2zm7-10h3v10H9v-10z",fill:e}))),oT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.5 4.504a.5.5 0 00-.5-.5h-1a.5.5 0 100 1h1a.5.5 0 00.5-.5zM11 6.004a.5.5 0 010 1h-1a.5.5 0 010-1h1zM11.5 8.504a.5.5 0 00-.5-.5h-1a.5.5 0 100 1h1a.5.5 0 00.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11zm7.5-1h3v-10H9v10zm-1 0H2v-10h6v4.5H5.207l.65-.65a.5.5 0 10-.707-.708L3.646 6.65a.5.5 0 000 .707l1.497 1.497a.5.5 0 10.707-.708l-.643-.642H8v4.5z",fill:e}))),iT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.5 4.504a.5.5 0 01.5-.5h1a.5.5 0 110 1H2a.5.5 0 01-.5-.5zM2 6.004a.5.5 0 100 1h1a.5.5 0 000-1H2zM1.5 8.504a.5.5 0 01.5-.5h1a.5.5 0 110 1H2a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M.5 13.004a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5H.5zm.5-1v-10h3v10H1zm4 0v-4.5h2.793l-.643.642a.5.5 0 10.707.708l1.497-1.497a.5.5 0 000-.707L7.85 5.146a.5.5 0 10-.707.708l.65.65H5v-4.5h6v10H5z",fill:e}))),lT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3 10.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5zM6.5 10.004a.5.5 0 000 1h1a.5.5 0 000-1h-1zM9 10.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 6.5v-6h10v6H2zm10 1v3H2v-3h10z",fill:e}))),sT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.5 10.004a.5.5 0 000 1h1a.5.5 0 000-1h-1zM6 10.504a.5.5 0 01.5-.5h1a.5.5 0 010 1h-1a.5.5 0 01-.5-.5zM9.5 10.004a.5.5 0 000 1h1a.5.5 0 000-1h-1z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 12.504v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5zm1-.5v-3h10v3H2zm4.5-4H2v-6h10v6H7.5V5.21l.646.646a.5.5 0 10.708-.707l-1.5-1.5a.5.5 0 00-.708 0l-1.5 1.5a.5.5 0 10.708.707l.646-.646v2.793z",fill:e}))),uT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 5.504a.5.5 0 01.5-.5h3a.5.5 0 01.5.5v3a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5v-3zm1 2.5v-2h2v2H6z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5.004a.5.5 0 01.5.5v1.5h2v-1.5a.5.5 0 011 0v1.5h2.5a.5.5 0 01.5.5v2.5h1.5a.5.5 0 010 1H12v2h1.5a.5.5 0 010 1H12v2.5a.5.5 0 01-.5.5H9v1.5a.5.5 0 01-1 0v-1.5H6v1.5a.5.5 0 01-1 0v-1.5H2.5a.5.5 0 01-.5-.5v-2.5H.5a.5.5 0 010-1H2v-2H.5a.5.5 0 010-1H2v-2.5a.5.5 0 01.5-.5H5v-1.5a.5.5 0 01.5-.5zm5.5 3H3v8h8v-8z",fill:e}))),cT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3c0-1.105-2.239-2-5-2s-5 .895-5 2v8c0 .426.26.752.544.977.29.228.68.413 1.116.558.878.293 2.059.465 3.34.465 1.281 0 2.462-.172 3.34-.465.436-.145.825-.33 1.116-.558.285-.225.544-.551.544-.977V3zm-1.03 0a.787.787 0 00-.05-.052c-.13-.123-.373-.28-.756-.434C9.404 2.21 8.286 2 7 2c-1.286 0-2.404.21-3.164.514-.383.153-.625.31-.756.434A.756.756 0 003.03 3a.756.756 0 00.05.052c.13.123.373.28.756.434C4.596 3.79 5.714 4 7 4c1.286 0 2.404-.21 3.164-.514.383-.153.625-.31.756-.434A.787.787 0 0010.97 3zM11 5.75V4.2c-.912.486-2.364.8-4 .8-1.636 0-3.088-.314-4-.8v1.55l.002.008a.147.147 0 00.016.033.618.618 0 00.145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.62.62 0 00.146-.15.149.149 0 00.015-.033A.03.03 0 0011 5.75zM3 7.013c.2.103.423.193.66.272.878.293 2.059.465 3.34.465 1.281 0 2.462-.172 3.34-.465.237-.079.46-.17.66-.272V8.5l-.002.008a.149.149 0 01-.015.033.62.62 0 01-.146.15c-.165.13-.435.27-.813.395-.751.25-1.82.414-3.024.414s-2.273-.163-3.024-.414c-.378-.126-.648-.265-.813-.395a.618.618 0 01-.145-.15.147.147 0 01-.016-.033A.027.027 0 013 8.5V7.013zm0 2.75V11l.002.008a.147.147 0 00.016.033.617.617 0 00.145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.619.619 0 00.146-.15.148.148 0 00.015-.033L11 11V9.763c-.2.103-.423.193-.66.272-.878.293-2.059.465-3.34.465-1.281 0-2.462-.172-3.34-.465A4.767 4.767 0 013 9.763z",fill:e}))),dT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5 3a.5.5 0 00-1 0v3a.5.5 0 001 0V3zM7 2.5a.5.5 0 01.5.5v3a.5.5 0 01-1 0V3a.5.5 0 01.5-.5zM10 4.504a.5.5 0 10-1 0V6a.5.5 0 001 0V4.504z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 3.54l-.001-.002a.499.499 0 00-.145-.388l-3-3a.499.499 0 00-.388-.145L8.464.004H2.5a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h9a.5.5 0 00.5-.5V3.54zM3 1.004h5.293L11 3.71v5.293H3v-8zm0 9v3h8v-3H3z",fill:e}))),pT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.164 3.446a1.5 1.5 0 10-2.328 0L1.81 10.032A1.503 1.503 0 000 11.5a1.5 1.5 0 002.915.5h8.17a1.5 1.5 0 101.104-1.968L8.164 3.446zm-1.475.522a1.506 1.506 0 00.622 0l4.025 6.586a1.495 1.495 0 00-.25.446H2.914a1.497 1.497 0 00-.25-.446l4.024-6.586z",fill:e}))),fT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.21.046l6.485 2.994A.5.5 0 0114 3.51v6.977a.495.495 0 01-.23.432.481.481 0 01-.071.038L7.23 13.944a.499.499 0 01-.46 0L.3 10.958a.498.498 0 01-.3-.47V3.511a.497.497 0 01.308-.473L6.78.051a.499.499 0 01.43-.005zM1 4.282v5.898l5.5 2.538V6.82L1 4.282zm6.5 8.436L13 10.18V4.282L7.5 6.82v5.898zM12.307 3.5L7 5.95 1.693 3.5 7 1.05l5.307 2.45z",fill:e}))),hT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.5.5a.5.5 0 00-1 0v6a.5.5 0 001 0v-6z",fill:e}),l.createElement("path",{d:"M4.273 2.808a.5.5 0 00-.546-.837 6 6 0 106.546 0 .5.5 0 00-.546.837 5 5 0 11-5.454 0z",fill:e}))),mT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.854 2.146l-2-2a.5.5 0 00-.708 0l-1.5 1.5-8.995 8.995a.499.499 0 00-.143.268L.012 13.39a.495.495 0 00.135.463.5.5 0 00.462.134l2.482-.496a.495.495 0 00.267-.143l8.995-8.995 1.5-1.5a.5.5 0 000-.708zM12 3.293l.793-.793L11.5 1.207 10.707 2 12 3.293zm-2-.586L1.707 11 3 12.293 11.293 4 10 2.707zM1.137 12.863l.17-.849.679.679-.849.17z",fill:e}))),gT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.586 5.586A2 2 0 018.862 7.73a.5.5 0 10.931.365 3 3 0 10-1.697 1.697.5.5 0 10-.365-.93 2 2 0 01-2.145-3.277z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M.939 6.527c.127.128.19.297.185.464a.635.635 0 01-.185.465L0 8.395a7.099 7.099 0 001.067 2.572h1.32c.182 0 .345.076.46.197a.635.635 0 01.198.46v1.317A7.097 7.097 0 005.602 14l.94-.94a.634.634 0 01.45-.186H7.021c.163 0 .326.061.45.186l.939.938a7.098 7.098 0 002.547-1.057V11.61c0-.181.075-.344.197-.46a.634.634 0 01.46-.197h1.33c.507-.76.871-1.622 1.056-2.55l-.946-.946a.635.635 0 01-.186-.465.635.635 0 01.186-.464l.943-.944a7.099 7.099 0 00-1.044-2.522h-1.34a.635.635 0 01-.46-.197.635.635 0 01-.196-.46V1.057A7.096 7.096 0 008.413.002l-.942.942a.634.634 0 01-.45.186H6.992a.634.634 0 01-.45-.186L5.598 0a7.097 7.097 0 00-2.553 1.058v1.33c0 .182-.076.345-.197.46a.635.635 0 01-.46.198h-1.33A7.098 7.098 0 00.003 5.591l.936.936zm.707 1.636c.324-.324.482-.752.479-1.172a1.634 1.634 0 00-.48-1.171l-.538-.539c.126-.433.299-.847.513-1.235h.768c.459 0 .873-.19 1.167-.49.3-.295.49-.708.49-1.167v-.77c.39-.215.807-.388 1.243-.515l.547.547c.32.32.742.48 1.157.48l.015-.001h.014c.415 0 .836-.158 1.157-.479l.545-.544c.433.126.846.299 1.234.512v.784c0 .46.19.874.49 1.168.294.3.708.49 1.167.49h.776c.209.382.378.788.502 1.213l-.545.546a1.635 1.635 0 00-.48 1.17c-.003.421.155.849.48 1.173l.549.55c-.126.434-.3.85-.513 1.239h-.77c-.458 0-.872.19-1.166.49-.3.294-.49.708-.49 1.167v.77a6.09 6.09 0 01-1.238.514l-.54-.54a1.636 1.636 0 00-1.158-.48H6.992c-.415 0-.837.159-1.157.48l-.543.543a6.091 6.091 0 01-1.247-.516v-.756c0-.459-.19-.873-.49-1.167-.294-.3-.708-.49-1.167-.49h-.761a6.094 6.094 0 01-.523-1.262l.542-.542z",fill:e}))),vT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.585 8.414a2 2 0 113.277-.683.5.5 0 10.931.365 3 3 0 10-1.697 1.697.5.5 0 00-.365-.93 2 2 0 01-2.146-.449z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.5.289a1 1 0 011 0l5.062 2.922a1 1 0 01.5.866v5.846a1 1 0 01-.5.866L7.5 13.71a1 1 0 01-1 0L1.437 10.79a1 1 0 01-.5-.866V4.077a1 1 0 01.5-.866L6.5.29zm.5.866l5.062 2.922v5.846L7 12.845 1.937 9.923V4.077L7 1.155z",fill:e}))),yT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.5 1c.441 0 .564.521.252.833l-.806.807a.51.51 0 000 .72l.694.694a.51.51 0 00.72 0l.807-.806c.312-.312.833-.19.833.252a2.5 2.5 0 01-3.414 2.328l-6.879 6.88a1 1 0 01-1.414-1.415l6.88-6.88A2.5 2.5 0 0110.5 1zM2 12.5a.5.5 0 100-1 .5.5 0 000 1z",fill:e}))),bT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4 7a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM13 7a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zM7 8.5a1.5 1.5 0 100-3 1.5 1.5 0 000 3z",fill:e}))),wT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.903.112a.107.107 0 01.194 0l.233.505.552.066c.091.01.128.123.06.185l-.408.377.109.546a.107.107 0 01-.158.114L6 1.634l-.485.271a.107.107 0 01-.158-.114l.108-.546-.408-.377a.107.107 0 01.06-.185L5.67.617l.233-.505zM2.194.224a.214.214 0 00-.389 0l-.466 1.01-1.104.131a.214.214 0 00-.12.37l.816.755-.217 1.091a.214.214 0 00.315.23L2 3.266l.971.543c.16.09.35-.05.315-.229l-.216-1.09.816-.756a.214.214 0 00-.12-.37L2.66 1.234 2.194.224zM12.194 8.224a.214.214 0 00-.389 0l-.466 1.01-1.104.13a.214.214 0 00-.12.371l.816.755-.217 1.091a.214.214 0 00.315.23l.97-.544.971.543c.16.09.35-.05.315-.229l-.216-1.09.816-.756a.214.214 0 00-.12-.37l-1.105-.131-.466-1.01z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.5 12.797l-1.293-1.293 6.758-6.758L9.258 6.04 2.5 12.797zm7.465-7.465l2.828-2.828L11.5 1.211 8.672 4.04l1.293 1.293zM.147 11.857a.5.5 0 010-.707l11-11a.5.5 0 01.706 0l2 2a.5.5 0 010 .708l-11 11a.5.5 0 01-.706 0l-2-2z",fill:e}))),ET=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M13.854 3.354a.5.5 0 00-.708-.708L5 10.793.854 6.646a.5.5 0 10-.708.708l4.5 4.5a.5.5 0 00.708 0l8.5-8.5z",fill:e}))),xT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2 1.004a1 1 0 00-1 1v10a1 1 0 001 1h10a1 1 0 001-1V6.393a.5.5 0 00-1 0v5.61H2v-10h7.5a.5.5 0 000-1H2z",fill:e}),l.createElement("path",{d:"M6.354 9.857l7.5-7.5a.5.5 0 00-.708-.707L6 8.797 3.854 6.65a.5.5 0 10-.708.707l2.5 2.5a.5.5 0 00.708 0z",fill:e}))),CT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.5 2a.5.5 0 000 1h2a.5.5 0 000-1h-2zM8.854 2.646a.5.5 0 010 .708L5.207 7l3.647 3.646a.5.5 0 01-.708.708L4.5 7.707.854 11.354a.5.5 0 01-.708-.708L3.793 7 .146 3.354a.5.5 0 11.708-.708L4.5 6.293l3.646-3.647a.5.5 0 01.708 0zM11 7a.5.5 0 01.5-.5h2a.5.5 0 010 1h-2A.5.5 0 0111 7zM11.5 11a.5.5 0 000 1h2a.5.5 0 000-1h-2z",fill:e}))),DT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.5 2a.5.5 0 000 1h2a.5.5 0 000-1h-2zM9.3 2.6a.5.5 0 01.1.7l-5.995 7.993a.505.505 0 01-.37.206.5.5 0 01-.395-.152L.146 8.854a.5.5 0 11.708-.708l2.092 2.093L8.6 2.7a.5.5 0 01.7-.1zM11 7a.5.5 0 01.5-.5h2a.5.5 0 010 1h-2A.5.5 0 0111 7zM11.5 11a.5.5 0 000 1h2a.5.5 0 000-1h-2z",fill:e}))),ST=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M10.5 1a.5.5 0 01.5.5V2h1.5a.5.5 0 010 1H11v.5a.5.5 0 01-1 0V3H1.5a.5.5 0 010-1H10v-.5a.5.5 0 01.5-.5zM1.5 11a.5.5 0 000 1H10v.5a.5.5 0 001 0V12h1.5a.5.5 0 000-1H11v-.5a.5.5 0 00-1 0v.5H1.5zM1 7a.5.5 0 01.5-.5H3V6a.5.5 0 011 0v.5h8.5a.5.5 0 010 1H4V8a.5.5 0 01-1 0v-.5H1.5A.5.5 0 011 7z",fill:e}))),AT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.5.5a.5.5 0 00-1 0v6h-6a.5.5 0 000 1h6v6a.5.5 0 001 0v-6h6a.5.5 0 000-1h-6v-6z",fill:e}))),kT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2.03.97A.75.75 0 00.97 2.03L5.94 7 .97 11.97a.75.75 0 101.06 1.06L7 8.06l4.97 4.97a.75.75 0 101.06-1.06L8.06 7l4.97-4.97A.75.75 0 0011.97.97L7 5.94 2.03.97z",fill:e}))),u9=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.854 1.146a.5.5 0 10-.708.708L6.293 7l-5.147 5.146a.5.5 0 00.708.708L7 7.707l5.146 5.147a.5.5 0 00.708-.708L7.707 7l5.147-5.146a.5.5 0 00-.708-.708L7 6.293 1.854 1.146z",fill:e}))),_T=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.5 4.5A.5.5 0 016 5v5a.5.5 0 01-1 0V5a.5.5 0 01.5-.5zM9 5a.5.5 0 00-1 0v5a.5.5 0 001 0V5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5.5A.5.5 0 015 0h4a.5.5 0 01.5.5V2h3a.5.5 0 010 1H12v8a2 2 0 01-2 2H4a2 2 0 01-2-2V3h-.5a.5.5 0 010-1h3V.5zM3 3v8a1 1 0 001 1h6a1 1 0 001-1V3H3zm2.5-2h3v1h-3V1z",fill:e}))),FT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3502)"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13.44 4.44L9.56.56a1.5 1.5 0 00-2.12 0L7 1a1.415 1.415 0 000 2L5 5H3.657A4 4 0 00.828 6.17l-.474.475a.5.5 0 000 .707l2.793 2.793-3 3a.5.5 0 00.707.708l3-3 2.792 2.792a.5.5 0 00.708 0l.474-.475A4 4 0 009 10.343V9l2-2a1.414 1.414 0 002 0l.44-.44a1.5 1.5 0 000-2.12zM11 5.585l-3 3v1.757a3 3 0 01-.879 2.121L7 12.586 1.414 7l.122-.122A3 3 0 013.656 6h1.758l3-3-.707-.707a.414.414 0 010-.586l.44-.44a.5.5 0 01.707 0l3.878 3.88a.5.5 0 010 .706l-.44.44a.414.414 0 01-.585 0L11 5.586z",fill:e})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3502"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),IT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3501)",fill:e},l.createElement("path",{d:"M13.44 4.44L9.56.56a1.5 1.5 0 00-2.12 0L7 1a1.415 1.415 0 000 2L5.707 4.293 6.414 5l2-2-.707-.707a.414.414 0 010-.586l.44-.44a.5.5 0 01.707 0l3.878 3.88a.5.5 0 010 .706l-.44.44a.414.414 0 01-.585 0L11 5.586l-2 2 .707.707L11 7a1.414 1.414 0 002 0l.44-.44a1.5 1.5 0 000-2.12zM.828 6.171a4 4 0 012.758-1.17l1 .999h-.93a3 3 0 00-2.12.878L1.414 7 7 12.586l.121-.122A3 3 0 008 10.343v-.929l1 1a4 4 0 01-1.172 2.757l-.474.475a.5.5 0 01-.708 0l-2.792-2.792-3 3a.5.5 0 01-.708-.708l3-3L.355 7.353a.5.5 0 010-.707l.474-.475zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11z"})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3501"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),TT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7 3a.5.5 0 01.5.5v3h3a.5.5 0 010 1h-3v3a.5.5 0 01-1 0v-3h-3a.5.5 0 010-1h3v-3A.5.5 0 017 3z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z",fill:e}))),RT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.5 6.5a.5.5 0 000 1h7a.5.5 0 000-1h-7z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),BT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M9.854 4.146a.5.5 0 010 .708L7.707 7l2.147 2.146a.5.5 0 01-.708.708L7 7.707 4.854 9.854a.5.5 0 01-.708-.708L6.293 7 4.146 4.854a.5.5 0 11.708-.708L7 6.293l2.146-2.147a.5.5 0 01.708 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z",fill:e}))),zT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0a6 6 0 01-9.874 4.582l8.456-8.456A5.976 5.976 0 0113 7zM2.418 10.874l8.456-8.456a6 6 0 00-8.456 8.456z",fill:e}))),$T=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zm3.854-9.354a.5.5 0 010 .708l-4.5 4.5a.5.5 0 01-.708 0l-2.5-2.5a.5.5 0 11.708-.708L6 8.793l4.146-4.147a.5.5 0 01.708 0z",fill:e}))),OT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zM3.5 6.5a.5.5 0 000 1h7a.5.5 0 000-1h-7z",fill:e}))),LT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zm2.854-9.854a.5.5 0 010 .708L7.707 7l2.147 2.146a.5.5 0 01-.708.708L7 7.707 4.854 9.854a.5.5 0 01-.708-.708L6.293 7 4.146 4.854a.5.5 0 11.708-.708L7 6.293l2.146-2.147a.5.5 0 01.708 0z",fill:e}))),MT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 2h7a2 2 0 012 2v6a2 2 0 01-2 2H5a1.994 1.994 0 01-1.414-.586l-3-3a2 2 0 010-2.828l3-3A1.994 1.994 0 015 2zm1.146 3.146a.5.5 0 01.708 0L8 6.293l1.146-1.147a.5.5 0 11.708.708L8.707 7l1.147 1.146a.5.5 0 01-.708.708L8 7.707 6.854 8.854a.5.5 0 11-.708-.708L7.293 7 6.146 5.854a.5.5 0 010-.708z",fill:e}))),PT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.5 5.004a.5.5 0 100 1h7a.5.5 0 000-1h-7zM3 8.504a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5 12.004H5.707l-1.853 1.854a.5.5 0 01-.351.146h-.006a.499.499 0 01-.497-.5v-1.5H1.5a.5.5 0 01-.5-.5v-9a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v9a.5.5 0 01-.5.5zm-10.5-1v-8h10v8H2z",fill:e}))),NT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.5 5.004a.5.5 0 10-1 0v1.5H5a.5.5 0 100 1h1.5v1.5a.5.5 0 001 0v-1.5H9a.5.5 0 000-1H7.5v-1.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.691 13.966a.498.498 0 01-.188.038h-.006a.499.499 0 01-.497-.5v-1.5H1.5a.5.5 0 01-.5-.5v-9a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v9a.5.5 0 01-.5.5H5.707l-1.853 1.854a.5.5 0 01-.163.108zM2 3.004v8h10v-8H2z",fill:e}))),HT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M9.854 6.65a.5.5 0 010 .707l-2 2a.5.5 0 11-.708-.707l1.15-1.15-3.796.004a.5.5 0 010-1L8.29 6.5 7.145 5.357a.5.5 0 11.708-.707l2 2z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.691 13.966a.498.498 0 01-.188.038h-.006a.499.499 0 01-.497-.5v-1.5H1.5a.5.5 0 01-.5-.5v-9a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v9a.5.5 0 01-.5.5H5.707l-1.853 1.854a.5.5 0 01-.163.108zM2 3.004v8h10v-8H2z",fill:e}))),jT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M8.5 7.004a.5.5 0 000-1h-5a.5.5 0 100 1h5zM9 8.504a.5.5 0 01-.5.5h-5a.5.5 0 010-1h5a.5.5 0 01.5.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 11.504v-1.5h1.5a.5.5 0 00.5-.5v-8a.5.5 0 00-.5-.5h-11a.5.5 0 00-.5.5v1.5H.5a.5.5 0 00-.5.5v8a.5.5 0 00.5.5H2v1.5a.499.499 0 00.497.5h.006a.498.498 0 00.35-.146l1.854-1.854H11.5a.5.5 0 00.5-.5zm-9-8.5v-1h10v7h-1v-5.5a.5.5 0 00-.5-.5H3zm-2 8v-7h10v7H1z",fill:e}))),VT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 2a2 2 0 012-2h8a2 2 0 012 2v8a2 2 0 01-2 2H6.986a.444.444 0 01-.124.103l-3.219 1.84A.43.43 0 013 13.569V12a2 2 0 01-2-2V2zm3.42 4.78a.921.921 0 110-1.843.921.921 0 010 1.842zm1.658-.922a.921.921 0 101.843 0 .921.921 0 00-1.843 0zm2.58 0a.921.921 0 101.842 0 .921.921 0 00-1.843 0z",fill:e}))),UT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M8 8.004a1 1 0 01-.5.866v1.634a.5.5 0 01-1 0V8.87A1 1 0 118 8.004z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 4.004a4 4 0 118 0v1h1.5a.5.5 0 01.5.5v8a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-8a.5.5 0 01.5-.5H3v-1zm7 1v-1a3 3 0 10-6 0v1h6zm2 1H2v7h10v-7z",fill:e}))),qT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3614)",fill:e},l.createElement("path",{d:"M6.5 8.87a1 1 0 111 0v1.634a.5.5 0 01-1 0V8.87z"}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 1a3 3 0 00-3 3v1.004h8.5a.5.5 0 01.5.5v8a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-8a.5.5 0 01.5-.5H3V4a4 4 0 017.755-1.381.5.5 0 01-.939.345A3.001 3.001 0 007 1zM2 6.004h10v7H2v-7z"})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3614"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),WT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11 4a1 1 0 11-2 0 1 1 0 012 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.5 8.532V9.5a.5.5 0 01-.5.5H5.5v1.5a.5.5 0 01-.5.5H3.5v1.5a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5v-2a.5.5 0 01.155-.362l5.11-5.11A4.5 4.5 0 117.5 8.532zM6 4.5a3.5 3.5 0 111.5 2.873c-.29-.203-1-.373-1 .481V9H5a.5.5 0 00-.5.5V11H3a.5.5 0 00-.5.5V13H1v-1.293l5.193-5.193a.552.552 0 00.099-.613A3.473 3.473 0 016 4.5z",fill:e}))),GT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.354.15a.5.5 0 00-.708 0l-2 2a.5.5 0 10.708.707L6.5 1.711v6.793a.5.5 0 001 0V1.71l1.146 1.146a.5.5 0 10.708-.707l-2-2z",fill:e}),l.createElement("path",{d:"M2 7.504a.5.5 0 10-1 0v5a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-5a.5.5 0 00-1 0v4.5H2v-4.5z",fill:e}))),KT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2.5 8.004a.5.5 0 100 1h3a.5.5 0 000-1h-3z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 11.504a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H.5a.5.5 0 00-.5.5v9zm1-8.5v1h12v-1H1zm0 8h12v-5H1v5z",fill:e}))),YT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1 3.004a1 1 0 00-1 1v5a1 1 0 001 1h3.5a.5.5 0 100-1H1v-5h12v5h-1a.5.5 0 000 1h1a1 1 0 001-1v-5a1 1 0 00-1-1H1z",fill:e}),l.createElement("path",{d:"M6.45 7.006a.498.498 0 01.31.07L10.225 9.1a.5.5 0 01-.002.873l-1.074.621.75 1.3a.75.75 0 01-1.3.75l-.75-1.3-1.074.62a.497.497 0 01-.663-.135.498.498 0 01-.095-.3L6 7.515a.497.497 0 01.45-.509z",fill:e}))),JT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4 1.504a.5.5 0 01.5-.5h5a.5.5 0 110 1h-2v10h2a.5.5 0 010 1h-5a.5.5 0 010-1h2v-10h-2a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{d:"M0 4.504a.5.5 0 01.5-.5h4a.5.5 0 110 1H1v4h3.5a.5.5 0 110 1h-4a.5.5 0 01-.5-.5v-5zM9.5 4.004a.5.5 0 100 1H13v4H9.5a.5.5 0 100 1h4a.5.5 0 00.5-.5v-5a.5.5 0 00-.5-.5h-4z",fill:e}))),ZT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.943 12.457a.27.27 0 00.248-.149L7.77 9.151l2.54 2.54a.257.257 0 00.188.073c.082 0 .158-.03.21-.077l.788-.79a.27.27 0 000-.392L8.891 7.9l3.416-1.708a.29.29 0 00.117-.106.222.222 0 00.033-.134.332.332 0 00-.053-.161.174.174 0 00-.092-.072l-.02-.007-10.377-4.15a.274.274 0 00-.355.354l4.15 10.372a.275.275 0 00.233.169zm-.036 1l-.02-.002c-.462-.03-.912-.31-1.106-.796L.632 2.287A1.274 1.274 0 012.286.633l10.358 4.143c.516.182.782.657.81 1.114a1.25 1.25 0 01-.7 1.197L10.58 8.174l1.624 1.624a1.27 1.27 0 010 1.807l-.8.801-.008.007c-.491.46-1.298.48-1.792-.014l-1.56-1.56-.957 1.916a1.27 1.27 0 01-1.142.702h-.037z",fill:e}))),XT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.87 6.008a.505.505 0 00-.003-.028v-.002c-.026-.27-.225-.48-.467-.498a.5.5 0 00-.53.5v1.41c0 .25-.22.47-.47.47a.48.48 0 01-.47-.47V5.17a.6.6 0 00-.002-.05c-.023-.268-.223-.49-.468-.5a.5.5 0 00-.52.5v1.65a.486.486 0 01-.47.47.48.48 0 01-.47-.47V4.62a.602.602 0 00-.002-.05v-.002c-.023-.266-.224-.48-.468-.498a.5.5 0 00-.53.5v2.2c0 .25-.22.47-.47.47a.49.49 0 01-.47-.47V1.8c0-.017 0-.034-.002-.05-.022-.268-.214-.49-.468-.5a.5.5 0 00-.52.5v6.78c0 .25-.22.47-.47.47a.48.48 0 01-.47-.47l.001-.1c.001-.053.002-.104 0-.155a.775.775 0 00-.06-.315.65.65 0 00-.16-.22 29.67 29.67 0 01-.21-.189c-.2-.182-.4-.365-.617-.532l-.003-.003A6.366 6.366 0 003.06 7l-.01-.007c-.433-.331-.621-.243-.69-.193-.26.14-.29.5-.13.74l1.73 2.6v.01h-.016l-.035.023.05-.023s1.21 2.6 3.57 2.6c3.54 0 4.2-1.9 4.31-4.42.039-.591.036-1.189.032-1.783l-.002-.507v-.032zm.969 2.376c-.057 1.285-.254 2.667-1.082 3.72-.88 1.118-2.283 1.646-4.227 1.646-1.574 0-2.714-.87-3.406-1.623a6.958 6.958 0 01-1.046-1.504l-.006-.012-1.674-2.516a1.593 1.593 0 01-.25-1.107 1.44 1.44 0 01.69-1.041c.195-.124.485-.232.856-.186.357.044.681.219.976.446.137.106.272.22.4.331V1.75A1.5 1.5 0 015.63.25c.93.036 1.431.856 1.431 1.55v1.335a1.5 1.5 0 01.53-.063h.017c.512.04.915.326 1.153.71a1.5 1.5 0 01.74-.161c.659.025 1.115.458 1.316.964a1.493 1.493 0 01.644-.103h.017c.856.067 1.393.814 1.393 1.558l.002.48c.004.596.007 1.237-.033 1.864z",fill:e}))),QT=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5 6A2.5 2.5 0 116 3.5V5h2V3.5A2.5 2.5 0 1110.5 6H9v2h1.5A2.5 2.5 0 118 10.5V9H6v1.5A2.5 2.5 0 113.5 8H5V6H3.5zM2 3.5a1.5 1.5 0 113 0V5H3.5A1.5 1.5 0 012 3.5zM6 6v2h2V6H6zm3-1h1.5A1.5 1.5 0 109 3.5V5zM3.5 9H5v1.5A1.5 1.5 0 113.5 9zM9 9v1.5A1.5 1.5 0 1010.5 9H9z",fill:e}))),eR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7 5.5a.5.5 0 01.5.5v4a.5.5 0 01-1 0V6a.5.5 0 01.5-.5zM7 4.5A.75.75 0 107 3a.75.75 0 000 1.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z",fill:e}))),tR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.25 5.25A1.75 1.75 0 117 7a.5.5 0 00-.5.5V9a.5.5 0 001 0V7.955A2.75 2.75 0 104.25 5.25a.5.5 0 001 0zM7 11.5A.75.75 0 107 10a.75.75 0 000 1.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),rR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-3.524 4.89A5.972 5.972 0 017 13a5.972 5.972 0 01-3.477-1.11l1.445-1.444C5.564 10.798 6.258 11 7 11s1.436-.202 2.032-.554l1.444 1.445zm-.03-2.858l1.445 1.444A5.972 5.972 0 0013 7c0-1.296-.41-2.496-1.11-3.477l-1.444 1.445C10.798 5.564 11 6.258 11 7s-.202 1.436-.554 2.032zM9.032 3.554l1.444-1.445A5.972 5.972 0 007 1c-1.296 0-2.496.41-3.477 1.11l1.445 1.444A3.981 3.981 0 017 3c.742 0 1.436.202 2.032.554zM3.554 4.968L2.109 3.523A5.973 5.973 0 001 7c0 1.296.41 2.496 1.11 3.476l1.444-1.444A3.981 3.981 0 013 7c0-.742.202-1.436.554-2.032zM10 7a3 3 0 11-6 0 3 3 0 016 0z",fill:e}))),nR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7 4.5a.5.5 0 01.5.5v3.5a.5.5 0 11-1 0V5a.5.5 0 01.5-.5zM7.75 10.5a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.206 1.045a.498.498 0 01.23.209l6.494 10.992a.5.5 0 01-.438.754H.508a.497.497 0 01-.506-.452.498.498 0 01.072-.31l6.49-10.984a.497.497 0 01.642-.21zM7 2.483L1.376 12h11.248L7 2.483z",fill:e}))),aR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zM6.5 8a.5.5 0 001 0V4a.5.5 0 00-1 0v4zm-.25 2.25a.75.75 0 111.5 0 .75.75 0 01-1.5 0z",fill:e}))),oR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 2.504a.5.5 0 01.5-.5h13a.5.5 0 01.5.5v9a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5v-9zm1 1.012v7.488h12V3.519L7.313 7.894a.496.496 0 01-.526.062.497.497 0 01-.1-.062L1 3.516zm11.03-.512H1.974L7 6.874l5.03-3.87z",fill:e}))),iR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.76 8.134l-.05.05a.2.2 0 01-.28.03 6.76 6.76 0 01-1.63-1.65.21.21 0 01.04-.27l.05-.05c.23-.2.54-.47.71-.96.17-.47-.02-1.04-.66-1.94-.26-.38-.72-.96-1.22-1.46-.68-.69-1.2-1-1.65-1a.98.98 0 00-.51.13A3.23 3.23 0 00.9 3.424c-.13 1.1.26 2.37 1.17 3.78a16.679 16.679 0 004.55 4.6 6.57 6.57 0 003.53 1.32 3.2 3.2 0 002.85-1.66c.14-.24.24-.64-.07-1.18a7.803 7.803 0 00-1.73-1.81c-.64-.5-1.52-1.11-2.13-1.11a.97.97 0 00-.34.06c-.472.164-.74.458-.947.685l-.023.025zm4.32 2.678a6.801 6.801 0 00-1.482-1.54l-.007-.005-.006-.005a8.418 8.418 0 00-.957-.662 2.7 2.7 0 00-.4-.193.683.683 0 00-.157-.043l-.004.002-.009.003c-.224.078-.343.202-.56.44l-.014.016-.046.045a1.2 1.2 0 01-1.602.149A7.76 7.76 0 014.98 7.134l-.013-.019-.013-.02a1.21 1.21 0 01.195-1.522l.06-.06.026-.024c.219-.19.345-.312.422-.533l.003-.01v-.008a.518.518 0 00-.032-.142c-.06-.178-.203-.453-.502-.872l-.005-.008-.005-.007A10.18 10.18 0 004.013 2.59l-.005-.005c-.31-.314-.543-.5-.716-.605-.147-.088-.214-.096-.222-.097h-.016l-.006.003-.01.006a2.23 2.23 0 00-1.145 1.656c-.09.776.175 1.806 1.014 3.108a15.68 15.68 0 004.274 4.32l.022.014.022.016a5.57 5.57 0 002.964 1.117 2.2 2.2 0 001.935-1.141l.006-.012.004-.007a.182.182 0 00-.007-.038.574.574 0 00-.047-.114z",fill:e}))),lR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.841 2.159a2.25 2.25 0 00-3.182 0l-2.5 2.5a2.25 2.25 0 000 3.182.5.5 0 01-.707.707 3.25 3.25 0 010-4.596l2.5-2.5a3.25 3.25 0 014.596 4.596l-2.063 2.063a4.27 4.27 0 00-.094-1.32l1.45-1.45a2.25 2.25 0 000-3.182z",fill:e}),l.createElement("path",{d:"M3.61 7.21c-.1-.434-.132-.88-.095-1.321L1.452 7.952a3.25 3.25 0 104.596 4.596l2.5-2.5a3.25 3.25 0 000-4.596.5.5 0 00-.707.707 2.25 2.25 0 010 3.182l-2.5 2.5A2.25 2.25 0 112.159 8.66l1.45-1.45z",fill:e}))),sR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.452 7.952l1.305-1.305.708.707-1.306 1.305a2.25 2.25 0 103.182 3.182l1.306-1.305.707.707-1.306 1.305a3.25 3.25 0 01-4.596-4.596zM12.548 6.048l-1.305 1.306-.707-.708 1.305-1.305a2.25 2.25 0 10-3.182-3.182L7.354 3.464l-.708-.707 1.306-1.305a3.25 3.25 0 014.596 4.596zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.707-.707l-11-11z",fill:e}))),uR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.994 1.11a1 1 0 10-1.988 0A4.502 4.502 0 002.5 5.5v3.882l-.943 1.885a.497.497 0 00-.053.295.5.5 0 00.506.438h3.575a1.5 1.5 0 102.83 0h3.575a.5.5 0 00.453-.733L11.5 9.382V5.5a4.502 4.502 0 00-3.506-4.39zM2.81 11h8.382l-.5-1H3.31l-.5 1zM10.5 9V5.5a3.5 3.5 0 10-7 0V9h7zm-4 3.5a.5.5 0 111 0 .5.5 0 01-1 0z",fill:e}))),cR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.5.5A.5.5 0 012 0c6.627 0 12 5.373 12 12a.5.5 0 01-1 0C13 5.925 8.075 1 2 1a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{d:"M1.5 4.5A.5.5 0 012 4a8 8 0 018 8 .5.5 0 01-1 0 7 7 0 00-7-7 .5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 11a2 2 0 11-4 0 2 2 0 014 0zm-1 0a1 1 0 11-2 0 1 1 0 012 0z",fill:e}))),dR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2 1.004a1 1 0 00-1 1v10a1 1 0 001 1h10a1 1 0 001-1v-4.5a.5.5 0 00-1 0v4.5H2v-10h4.5a.5.5 0 000-1H2z",fill:e}),l.createElement("path",{d:"M7.354 7.357L12 2.711v1.793a.5.5 0 001 0v-3a.5.5 0 00-.5-.5h-3a.5.5 0 100 1h1.793L6.646 6.65a.5.5 0 10.708.707z",fill:e}))),pR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M6.646.15a.5.5 0 01.708 0l2 2a.5.5 0 11-.708.707L7.5 1.711v6.793a.5.5 0 01-1 0V1.71L5.354 2.857a.5.5 0 11-.708-.707l2-2z",fill:e}),l.createElement("path",{d:"M2 4.004a1 1 0 00-1 1v7a1 1 0 001 1h10a1 1 0 001-1v-7a1 1 0 00-1-1H9.5a.5.5 0 100 1H12v7H2v-7h2.5a.5.5 0 000-1H2z",fill:e}))),fR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M13.854 6.646a.5.5 0 010 .708l-2 2a.5.5 0 01-.708-.708L12.293 7.5H5.5a.5.5 0 010-1h6.793l-1.147-1.146a.5.5 0 01.708-.708l2 2z",fill:e}),l.createElement("path",{d:"M10 2a1 1 0 00-1-1H2a1 1 0 00-1 1v10a1 1 0 001 1h7a1 1 0 001-1V9.5a.5.5 0 00-1 0V12H2V2h7v2.5a.5.5 0 001 0V2z",fill:e}))),hR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 13A6 6 0 107 1a6 6 0 000 12zm0 1A7 7 0 107 0a7 7 0 000 14z",fill:e}))),mR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M14 7A7 7 0 110 7a7 7 0 0114 0z",fill:e}))),gR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5 0h7a.5.5 0 01.5.5v13a.5.5 0 01-.454.498.462.462 0 01-.371-.118L7 11.159l-3.175 2.72a.46.46 0 01-.379.118A.5.5 0 013 13.5V.5a.5.5 0 01.5-.5zM4 12.413l2.664-2.284a.454.454 0 01.377-.128.498.498 0 01.284.12L10 12.412V1H4v11.413z",fill:e}))),vR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5 0h7a.5.5 0 01.5.5v13a.5.5 0 01-.454.498.462.462 0 01-.371-.118L7 11.159l-3.175 2.72a.46.46 0 01-.379.118A.5.5 0 013 13.5V.5a.5.5 0 01.5-.5z",fill:e}))),yR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1449_588)"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.414 1.586a2 2 0 00-2.828 0l-4 4a2 2 0 000 2.828l4 4a2 2 0 002.828 0l4-4a2 2 0 000-2.828l-4-4zm.707-.707a3 3 0 00-4.242 0l-4 4a3 3 0 000 4.242l4 4a3 3 0 004.242 0l4-4a3 3 0 000-4.242l-4-4z",fill:e})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1449_588"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),bR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.814 1.846c.06.05.116.101.171.154l.001.002a3.254 3.254 0 01.755 1.168c.171.461.259.974.259 1.538 0 .332-.046.656-.143.976a4.546 4.546 0 01-.397.937c-.169.302-.36.589-.58.864a7.627 7.627 0 01-.674.746l-4.78 4.596a.585.585 0 01-.427.173.669.669 0 01-.44-.173L1.78 8.217a7.838 7.838 0 01-.677-.748 6.124 6.124 0 01-.572-.855 4.975 4.975 0 01-.388-.931A3.432 3.432 0 010 4.708C0 4.144.09 3.63.265 3.17c.176-.459.429-.85.757-1.168a3.432 3.432 0 011.193-.74c.467-.176.99-.262 1.57-.262.304 0 .608.044.907.137.301.092.586.215.855.367.27.148.526.321.771.512.244.193.471.386.682.584.202-.198.427-.391.678-.584.248-.19.507-.364.78-.512a4.65 4.65 0 01.845-.367c.294-.093.594-.137.9-.137.585 0 1.115.086 1.585.262.392.146.734.34 1.026.584zM1.2 3.526c.128-.333.304-.598.52-.806.218-.212.497-.389.849-.522m-1.37 1.328A3.324 3.324 0 001 4.708c0 .225.032.452.101.686.082.265.183.513.307.737.135.246.294.484.479.716.188.237.386.454.59.652l.001.002 4.514 4.355 4.519-4.344c.2-.193.398-.41.585-.648l.003-.003c.184-.23.345-.472.486-.726l.004-.007c.131-.23.232-.474.31-.732v-.002c.068-.224.101-.45.101-.686 0-.457-.07-.849-.195-1.185a2.177 2.177 0 00-.515-.802l.007-.012-.008.009a2.383 2.383 0 00-.85-.518l-.003-.001C11.1 2.072 10.692 2 10.203 2c-.21 0-.406.03-.597.09h-.001c-.22.07-.443.167-.663.289l-.007.003c-.22.12-.434.262-.647.426-.226.174-.42.341-.588.505l-.684.672-.7-.656a9.967 9.967 0 00-.615-.527 4.82 4.82 0 00-.635-.422l-.01-.005a3.289 3.289 0 00-.656-.281l-.008-.003A2.014 2.014 0 003.785 2c-.481 0-.881.071-1.217.198",fill:e}))),wR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M12.814 1.846c.06.05.116.101.171.154l.001.002a3.254 3.254 0 01.755 1.168c.171.461.259.974.259 1.538 0 .332-.046.656-.143.976a4.546 4.546 0 01-.397.937c-.169.302-.36.589-.58.864a7.627 7.627 0 01-.674.746l-4.78 4.596a.585.585 0 01-.427.173.669.669 0 01-.44-.173L1.78 8.217a7.838 7.838 0 01-.677-.748 6.124 6.124 0 01-.572-.855 4.975 4.975 0 01-.388-.931A3.432 3.432 0 010 4.708C0 4.144.09 3.63.265 3.17c.176-.459.429-.85.757-1.168a3.432 3.432 0 011.193-.74c.467-.176.99-.262 1.57-.262.304 0 .608.044.907.137.301.092.586.215.855.367.27.148.526.321.771.512.244.193.471.386.682.584.202-.198.427-.391.678-.584.248-.19.507-.364.78-.512a4.65 4.65 0 01.845-.367c.294-.093.594-.137.9-.137.585 0 1.115.086 1.585.262.392.146.734.34 1.026.584z",fill:e}))),ER=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.319.783a.75.75 0 011.362 0l1.63 3.535 3.867.458a.75.75 0 01.42 1.296L10.74 8.715l.76 3.819a.75.75 0 01-1.103.8L7 11.434l-3.398 1.902a.75.75 0 01-1.101-.801l.758-3.819L.401 6.072a.75.75 0 01.42-1.296l3.867-.458L6.318.783zm.68.91l-1.461 3.17a.75.75 0 01-.593.431l-3.467.412 2.563 2.37a.75.75 0 01.226.697l-.68 3.424 3.046-1.705a.75.75 0 01.733 0l3.047 1.705-.68-3.424a.75.75 0 01.226-.697l2.563-2.37-3.467-.412a.75.75 0 01-.593-.43L7 1.694z",fill:e}))),xR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.68.783a.75.75 0 00-1.361 0l-1.63 3.535-3.867.458A.75.75 0 00.4 6.072l2.858 2.643-.758 3.819a.75.75 0 001.101.8L7 11.434l3.397 1.902a.75.75 0 001.102-.801l-.759-3.819L13.6 6.072a.75.75 0 00-.421-1.296l-3.866-.458L7.68.783z",fill:e}))),CR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 7.854a4.5 4.5 0 10-6 0V13a.5.5 0 00.497.5h.006c.127 0 .254-.05.35-.146L7 11.207l2.146 2.147A.5.5 0 0010 13V7.854zM7 8a3.5 3.5 0 100-7 3.5 3.5 0 000 7zm-.354 2.146a.5.5 0 01.708 0L9 11.793v-3.26C8.398 8.831 7.718 9 7 9a4.481 4.481 0 01-2-.468v3.26l1.646-1.646z",fill:e}))),DR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.565 13.123a.991.991 0 01.87 0l.987.482a.991.991 0 001.31-.426l.515-.97a.991.991 0 01.704-.511l1.082-.19a.99.99 0 00.81-1.115l-.154-1.087a.991.991 0 01.269-.828l.763-.789a.991.991 0 000-1.378l-.763-.79a.991.991 0 01-.27-.827l.155-1.087a.99.99 0 00-.81-1.115l-1.082-.19a.991.991 0 01-.704-.511L9.732.82a.99.99 0 00-1.31-.426l-.987.482a.991.991 0 01-.87 0L5.578.395a.99.99 0 00-1.31.426l-.515.97a.99.99 0 01-.704.511l-1.082.19a.99.99 0 00-.81 1.115l.154 1.087a.99.99 0 01-.269.828L.28 6.31a.99.99 0 000 1.378l.763.79a.99.99 0 01.27.827l-.155 1.087a.99.99 0 00.81 1.115l1.082.19a.99.99 0 01.704.511l.515.97c.25.473.83.661 1.31.426l.987-.482zm4.289-8.477a.5.5 0 010 .708l-4.5 4.5a.5.5 0 01-.708 0l-2.5-2.5a.5.5 0 11.708-.708L6 8.793l4.146-4.147a.5.5 0 01.708 0z",fill:e}))),SR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 12.02c-.4.37-.91.56-1.56.56h-.88a5.493 5.493 0 01-1.3-.16c-.42-.1-.91-.25-1.47-.45a5.056 5.056 0 00-.95-.27H2.88a.84.84 0 01-.62-.26.84.84 0 01-.26-.61V6.45c0-.24.09-.45.26-.62a.84.84 0 01.62-.25h1.87c.16-.11.47-.47.93-1.06.27-.35.51-.64.74-.88.1-.11.19-.3.24-.58.05-.28.12-.57.2-.87.1-.3.24-.55.43-.74a.87.87 0 01.62-.25c.38 0 .72.07 1.03.22.3.15.54.38.7.7.15.31.23.73.23 1.27a3 3 0 01-.32 1.31h1.2c.47 0 .88.17 1.23.52s.52.8.52 1.22c0 .29-.04.66-.34 1.12.05.15.07.3.07.47 0 .35-.09.68-.26.98a2.05 2.05 0 01-.4 1.51 1.9 1.9 0 01-.57 1.5zm.473-5.33a.965.965 0 00.027-.25.742.742 0 00-.227-.513.683.683 0 00-.523-.227H7.927l.73-1.45a2 2 0 00.213-.867c0-.444-.068-.695-.127-.822a.53.53 0 00-.245-.244 1.296 1.296 0 00-.539-.116.989.989 0 00-.141.28 9.544 9.544 0 00-.174.755c-.069.387-.213.779-.484 1.077l-.009.01-.009.01c-.195.202-.41.46-.67.798l-.003.004c-.235.3-.44.555-.613.753-.151.173-.343.381-.54.516l-.255.176H5v4.133l.018.003c.384.07.76.176 1.122.318.532.189.98.325 1.352.413l.007.002a4.5 4.5 0 001.063.131h.878c.429 0 .683-.115.871-.285a.9.9 0 00.262-.702l-.028-.377.229-.3a1.05 1.05 0 00.205-.774l-.044-.333.165-.292a.969.969 0 00.13-.487.457.457 0 00-.019-.154l-.152-.458.263-.404a1.08 1.08 0 00.152-.325zM3.5 10.8a.5.5 0 100-1 .5.5 0 000 1z",fill:e}))),AR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.765 2.076A.5.5 0 0112 2.5v6.009a.497.497 0 01-.17.366L7.337 12.87a.497.497 0 01-.674 0L2.17 8.875l-.009-.007a.498.498 0 01-.16-.358L2 8.5v-6a.5.5 0 01.235-.424l.018-.011c.016-.01.037-.024.065-.04.056-.032.136-.077.24-.128a6.97 6.97 0 01.909-.371C4.265 1.26 5.443 1 7 1s2.735.26 3.533.526c.399.133.702.267.91.37a4.263 4.263 0 01.304.169l.018.01zM3 2.793v5.482l1.068.95 6.588-6.588a6.752 6.752 0 00-.44-.163C9.517 2.24 8.444 2 7 2c-1.443 0-2.515.24-3.217.474-.351.117-.61.233-.778.317L3 2.793zm4 9.038l-2.183-1.94L11 3.706v4.568l-4 3.556z",fill:e}))),kR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M10.354 2.854a.5.5 0 10-.708-.708l-3 3a.5.5 0 10.708.708l3-3z",fill:e}),l.createElement("path",{d:"M2.09 6H4.5a.5.5 0 000-1H1.795a.75.75 0 00-.74.873l.813 4.874A1.5 1.5 0 003.348 12h7.305a1.5 1.5 0 001.48-1.253l.812-4.874a.75.75 0 00-.74-.873H10a.5.5 0 000 1h1.91l-.764 4.582a.5.5 0 01-.493.418H3.347a.5.5 0 01-.493-.418L2.09 6z",fill:e}),l.createElement("path",{d:"M4.5 7a.5.5 0 01.5.5v2a.5.5 0 01-1 0v-2a.5.5 0 01.5-.5zM10 7.5a.5.5 0 00-1 0v2a.5.5 0 001 0v-2zM6.5 9.5v-2a.5.5 0 011 0v2a.5.5 0 01-1 0z",fill:e}))),_R=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.5 2h.75v3.866l-3.034 5.26A1.25 1.25 0 003.299 13H10.7a1.25 1.25 0 001.083-1.875L8.75 5.866V2h.75a.5.5 0 100-1h-5a.5.5 0 000 1zm1.75 4V2h1.5v4.134l.067.116L8.827 8H5.173l1.01-1.75.067-.116V6zM4.597 9l-1.515 2.625A.25.25 0 003.3 12H10.7a.25.25 0 00.217-.375L9.404 9H4.597z",fill:e}))),FR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.5 10.5a.5.5 0 11-1 0 .5.5 0 011 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5 1a.5.5 0 00-.5.5c0 1.063.137 1.892.678 2.974.346.692.858 1.489 1.598 2.526-.89 1.247-1.455 2.152-1.798 2.956-.377.886-.477 1.631-.478 2.537v.007a.5.5 0 00.5.5h7c.017 0 .034 0 .051-.003A.5.5 0 0011 12.5v-.007c0-.906-.1-1.65-.478-2.537-.343-.804-.909-1.709-1.798-2.956.74-1.037 1.252-1.834 1.598-2.526C10.863 3.392 11 2.563 11 1.5a.5.5 0 00-.5-.5h-7zm6.487 11a4.675 4.675 0 00-.385-1.652c-.277-.648-.735-1.407-1.499-2.494-.216.294-.448.606-.696.937a.497.497 0 01-.195.162.5.5 0 01-.619-.162c-.248-.331-.48-.643-.696-.937-.764 1.087-1.222 1.846-1.499 2.494A4.675 4.675 0 004.013 12h5.974zM6.304 6.716c.212.293.443.609.696.948a90.058 90.058 0 00.709-.965c.48-.664.86-1.218 1.163-1.699H5.128a32.672 32.672 0 001.176 1.716zM4.559 4h4.882c.364-.735.505-1.312.546-2H4.013c.04.688.182 1.265.546 2z",fill:e}))),IR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.5 1h-9a.5.5 0 00-.5.5v11a.5.5 0 001 0V8h8.5a.5.5 0 00.354-.854L9.207 4.5l2.647-2.646A.499.499 0 0011.5 1zM8.146 4.146L10.293 2H3v5h7.293L8.146 4.854a.5.5 0 010-.708z",fill:e}))),TR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 7V6a3 3 0 00-5.91-.736l-.17.676-.692.075A2.5 2.5 0 003.5 11h3c.063 0 .125-.002.187-.007l.076-.005.076.006c.053.004.106.006.161.006h4a2 2 0 100-4h-1zM3.12 5.02A3.5 3.5 0 003.5 12h3c.087 0 .174-.003.26-.01.079.007.16.01.24.01h4a3 3 0 100-6 4 4 0 00-7.88-.98z",fill:e}))),RR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7 2a4 4 0 014 4 3 3 0 110 6H7c-.08 0-.161-.003-.24-.01-.086.007-.173.01-.26.01h-3a3.5 3.5 0 01-.38-6.98A4.002 4.002 0 017 2z",fill:e}))),BR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11 7a4 4 0 11-8 0 4 4 0 018 0zm-1 0a3 3 0 11-6 0 3 3 0 016 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.268 13.18c.25.472.83.66 1.31.425l.987-.482a.991.991 0 01.87 0l.987.482a.991.991 0 001.31-.426l.515-.97a.991.991 0 01.704-.511l1.082-.19a.99.99 0 00.81-1.115l-.154-1.087a.991.991 0 01.269-.828l.763-.789a.991.991 0 000-1.378l-.763-.79a.991.991 0 01-.27-.827l.155-1.087a.99.99 0 00-.81-1.115l-1.082-.19a.991.991 0 01-.704-.511L9.732.82a.99.99 0 00-1.31-.426l-.987.482a.991.991 0 01-.87 0L5.578.395a.99.99 0 00-1.31.426l-.515.97a.99.99 0 01-.704.511l-1.082.19a.99.99 0 00-.81 1.115l.154 1.087a.99.99 0 01-.269.828L.28 6.31a.99.99 0 000 1.378l.763.79a.99.99 0 01.27.827l-.155 1.087a.99.99 0 00.81 1.115l1.082.19a.99.99 0 01.704.511l.515.97zm5.096-1.44l-.511.963-.979-.478a1.99 1.99 0 00-1.748 0l-.979.478-.51-.962a1.991 1.991 0 00-1.415-1.028l-1.073-.188.152-1.079a1.991 1.991 0 00-.54-1.663L1.004 7l.757-.783a1.991 1.991 0 00.54-1.663L2.15 3.475l1.073-.188A1.991 1.991 0 004.636 2.26l.511-.962.979.478a1.99 1.99 0 001.748 0l.979-.478.51.962c.288.543.81.922 1.415 1.028l1.073.188-.152 1.079a1.99 1.99 0 00.54 1.663l.757.783-.757.783a1.99 1.99 0 00-.54 1.663l.152 1.079-1.073.188a1.991 1.991 0 00-1.414 1.028z",fill:e}))),zR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.354 3.896l5.5 5.5a.5.5 0 01-.708.708L7 4.957l-5.146 5.147a.5.5 0 01-.708-.708l5.5-5.5a.5.5 0 01.708 0z",fill:e}))),$R=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.146 4.604l5.5 5.5a.5.5 0 00.708 0l5.5-5.5a.5.5 0 00-.708-.708L7 9.043 1.854 3.896a.5.5 0 10-.708.708z",fill:e}))),OR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2.76 7.096a.498.498 0 00.136.258l5.5 5.5a.5.5 0 00.707-.708L3.958 7l5.147-5.146a.5.5 0 10-.708-.708l-5.5 5.5a.5.5 0 00-.137.45z",fill:e}))),c9=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.104 7.354l-5.5 5.5a.5.5 0 01-.708-.708L10.043 7 4.896 1.854a.5.5 0 11.708-.708l5.5 5.5a.5.5 0 010 .708z",fill:e}))),LR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.854 9.104a.5.5 0 11-.708-.708l3.5-3.5a.5.5 0 01.708 0l3.5 3.5a.5.5 0 01-.708.708L7 5.957 3.854 9.104z",fill:e}))),MR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.854 4.896a.5.5 0 10-.708.708l3.5 3.5a.5.5 0 00.708 0l3.5-3.5a.5.5 0 00-.708-.708L7 8.043 3.854 4.896z",fill:e}))),PR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.104 10.146a.5.5 0 01-.708.708l-3.5-3.5a.5.5 0 010-.708l3.5-3.5a.5.5 0 11.708.708L5.957 7l3.147 3.146z",fill:e}))),NR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4.896 10.146a.5.5 0 00.708.708l3.5-3.5a.5.5 0 000-.708l-3.5-3.5a.5.5 0 10-.708.708L8.043 7l-3.147 3.146z",fill:e}))),HR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.854 4.646l-4.5-4.5a.5.5 0 00-.708 0l-4.5 4.5a.5.5 0 10.708.708L6.5 1.707V13.5a.5.5 0 001 0V1.707l3.646 3.647a.5.5 0 00.708-.708z",fill:e}))),jR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.5.5a.5.5 0 00-1 0v11.793L2.854 8.646a.5.5 0 10-.708.708l4.5 4.5a.5.5 0 00.351.146h.006c.127 0 .254-.05.35-.146l4.5-4.5a.5.5 0 00-.707-.708L7.5 12.293V.5z",fill:e}))),VR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.354 2.146a.5.5 0 010 .708L1.707 6.5H13.5a.5.5 0 010 1H1.707l3.647 3.646a.5.5 0 01-.708.708l-4.5-4.5a.5.5 0 010-.708l4.5-4.5a.5.5 0 01.708 0z",fill:e}))),UR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M8.646 2.146a.5.5 0 01.708 0l4.5 4.5a.5.5 0 010 .708l-4.5 4.5a.5.5 0 01-.708-.708L12.293 7.5H.5a.5.5 0 010-1h11.793L8.646 2.854a.5.5 0 010-.708z",fill:e}))),qR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.772 3.59c.126-.12.33-.12.456 0l5.677 5.387c.203.193.06.523-.228.523H1.323c-.287 0-.431-.33-.228-.523L6.772 3.59z",fill:e}))),WR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.228 10.41a.335.335 0 01-.456 0L1.095 5.023c-.203-.193-.06-.523.228-.523h11.354c.287 0 .431.33.228.523L7.228 10.41z",fill:e}))),GR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.712 7.212a.3.3 0 010-.424l5.276-5.276a.3.3 0 01.512.212v10.552a.3.3 0 01-.512.212L3.712 7.212z",fill:e}))),KR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.288 7.212a.3.3 0 000-.424L5.012 1.512a.3.3 0 00-.512.212v10.552a.3.3 0 00.512.212l5.276-5.276z",fill:e}))),YR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.354.146l4 4a.5.5 0 01-.708.708L7 1.207 3.354 4.854a.5.5 0 11-.708-.708l4-4a.5.5 0 01.708 0zM11.354 9.146a.5.5 0 010 .708l-4 4a.5.5 0 01-.708 0l-4-4a.5.5 0 11.708-.708L7 12.793l3.646-3.647a.5.5 0 01.708 0z",fill:e}))),JR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.354.146a.5.5 0 10-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 00-.708-.708L7 3.793 3.354.146zM6.646 9.146a.5.5 0 01.708 0l4 4a.5.5 0 01-.708.708L7 10.207l-3.646 3.647a.5.5 0 01-.708-.708l4-4z",fill:e}))),ZR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.5 1h2a.5.5 0 010 1h-.793l3.147 3.146a.5.5 0 11-.708.708L2 2.707V3.5a.5.5 0 01-1 0v-2a.5.5 0 01.5-.5zM10 1.5a.5.5 0 01.5-.5h2a.5.5 0 01.5.5v2a.5.5 0 01-1 0v-.793L8.854 5.854a.5.5 0 11-.708-.708L11.293 2H10.5a.5.5 0 01-.5-.5zM12.5 10a.5.5 0 01.5.5v2a.5.5 0 01-.5.5h-2a.5.5 0 010-1h.793L8.146 8.854a.5.5 0 11.708-.708L12 11.293V10.5a.5.5 0 01.5-.5zM2 11.293V10.5a.5.5 0 00-1 0v2a.5.5 0 00.5.5h2a.5.5 0 000-1h-.793l3.147-3.146a.5.5 0 10-.708-.708L2 11.293z",fill:e}))),XR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M6.646.147l-1.5 1.5a.5.5 0 10.708.707l.646-.647V5a.5.5 0 001 0V1.707l.646.647a.5.5 0 10.708-.707l-1.5-1.5a.5.5 0 00-.708 0z",fill:e}),l.createElement("path",{d:"M1.309 4.038a.498.498 0 00-.16.106l-.005.005a.498.498 0 00.002.705L3.293 7 1.146 9.146A.498.498 0 001.5 10h3a.5.5 0 000-1H2.707l1.5-1.5h5.586l2.353 2.354a.5.5 0 00.708-.708L10.707 7l2.146-2.146.11-.545-.107.542A.499.499 0 0013 4.503v-.006a.5.5 0 00-.144-.348l-.005-.005A.498.498 0 0012.5 4h-3a.5.5 0 000 1h1.793l-1.5 1.5H4.207L2.707 5H4.5a.5.5 0 000-1h-3a.498.498 0 00-.191.038z",fill:e}),l.createElement("path",{d:"M7 8.5a.5.5 0 01.5.5v3.293l.646-.647a.5.5 0 01.708.708l-1.5 1.5a.5.5 0 01-.708 0l-1.5-1.5a.5.5 0 01.708-.708l.646.647V9a.5.5 0 01.5-.5zM9 9.5a.5.5 0 01.5-.5h3a.5.5 0 010 1h-3a.5.5 0 01-.5-.5z",fill:e}))),QR=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M10.646 2.646a.5.5 0 01.708 0l1.5 1.5a.5.5 0 010 .708l-1.5 1.5a.5.5 0 01-.708-.708L11.293 5H1.5a.5.5 0 010-1h9.793l-.647-.646a.5.5 0 010-.708zM3.354 8.354L2.707 9H12.5a.5.5 0 010 1H2.707l.647.646a.5.5 0 01-.708.708l-1.5-1.5a.5.5 0 010-.708l1.5-1.5a.5.5 0 11.708.708z",fill:e}))),eB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.5 1a.5.5 0 01.5.5V10a2 2 0 004 0V4a3 3 0 016 0v7.793l1.146-1.147a.5.5 0 01.708.708l-2 2a.5.5 0 01-.708 0l-2-2a.5.5 0 01.708-.708L11 11.793V4a2 2 0 10-4 0v6.002a3 3 0 01-6 0V1.5a.5.5 0 01.5-.5z",fill:e}))),tB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.146 3.854a.5.5 0 010-.708l2-2a.5.5 0 11.708.708L2.707 3h6.295A4 4 0 019 11H3a.5.5 0 010-1h6a3 3 0 100-6H2.707l1.147 1.146a.5.5 0 11-.708.708l-2-2z",fill:e}))),rB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4.354 2.146a.5.5 0 010 .708L1.707 5.5H9.5A4.5 4.5 0 0114 10v1.5a.5.5 0 01-1 0V10a3.5 3.5 0 00-3.5-3.5H1.707l2.647 2.646a.5.5 0 11-.708.708l-3.5-3.5a.5.5 0 010-.708l3.5-3.5a.5.5 0 01.708 0z",fill:e}))),nB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.5 1A.5.5 0 005 .5H2a.5.5 0 000 1h1.535a6.502 6.502 0 002.383 11.91.5.5 0 10.165-.986A5.502 5.502 0 014.5 2.1V4a.5.5 0 001 0V1.353a.5.5 0 000-.023V1zM7.507 1a.5.5 0 01.576-.41 6.502 6.502 0 012.383 11.91H12a.5.5 0 010 1H9a.5.5 0 01-.5-.5v-3a.5.5 0 011 0v1.9A5.5 5.5 0 007.917 1.576.5.5 0 017.507 1z",fill:e}))),aB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M8.646 5.854L7.5 4.707V10.5a.5.5 0 01-1 0V4.707L5.354 5.854a.5.5 0 11-.708-.708l2-2a.5.5 0 01.708 0l2 2a.5.5 0 11-.708.708z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),oB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.354 8.146L6.5 9.293V3.5a.5.5 0 011 0v5.793l1.146-1.147a.5.5 0 11.708.708l-2 2a.5.5 0 01-.708 0l-2-2a.5.5 0 11.708-.708z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 7a7 7 0 1114 0A7 7 0 010 7zm1 0a6 6 0 1112 0A6 6 0 011 7z",fill:e}))),iB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M5.854 5.354L4.707 6.5H10.5a.5.5 0 010 1H4.707l1.147 1.146a.5.5 0 11-.708.708l-2-2a.5.5 0 010-.708l2-2a.5.5 0 11.708.708z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 0a7 7 0 110 14A7 7 0 017 0zm0 1a6 6 0 110 12A6 6 0 017 1z",fill:e}))),lB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.5 6.5h5.793L8.146 5.354a.5.5 0 11.708-.708l2 2a.5.5 0 010 .708l-2 2a.5.5 0 11-.708-.708L9.293 7.5H3.5a.5.5 0 010-1z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 117 0a7 7 0 010 14zm0-1A6 6 0 117 1a6 6 0 010 12z",fill:e}))),sB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.092.5H7a6.5 6.5 0 106.41 7.583.5.5 0 10-.986-.166A5.495 5.495 0 017 12.5a5.5 5.5 0 010-11h.006a5.5 5.5 0 014.894 3H10a.5.5 0 000 1h3a.5.5 0 00.5-.5V2a.5.5 0 00-1 0v1.535A6.495 6.495 0 007.092.5z",fill:e}))),uB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 100 7a7 7 0 0014 0zm-6.535 5.738c-.233.23-.389.262-.465.262-.076 0-.232-.032-.465-.262-.238-.234-.497-.623-.737-1.182-.434-1.012-.738-2.433-.79-4.056h3.984c-.052 1.623-.356 3.043-.79 4.056-.24.56-.5.948-.737 1.182zM8.992 6.5H5.008c.052-1.623.356-3.044.79-4.056.24-.56.5-.948.737-1.182C6.768 1.032 6.924 1 7 1c.076 0 .232.032.465.262.238.234.497.623.737 1.182.434 1.012.738 2.433.79 4.056zm1 1c-.065 2.176-.558 4.078-1.282 5.253A6.005 6.005 0 0012.98 7.5H9.992zm2.987-1H9.992c-.065-2.176-.558-4.078-1.282-5.253A6.005 6.005 0 0112.98 6.5zm-8.971 0c.065-2.176.558-4.078 1.282-5.253A6.005 6.005 0 001.02 6.5h2.988zm-2.987 1a6.005 6.005 0 004.27 5.253C4.565 11.578 4.072 9.676 4.007 7.5H1.02z",fill:e}))),cB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.087 3.397L5.95 5.793a.374.374 0 00-.109.095.377.377 0 00-.036.052l-2.407 4.147a.374.374 0 00-.004.384c.104.179.334.24.513.136l4.142-2.404a.373.373 0 00.148-.143l2.406-4.146a.373.373 0 00-.037-.443.373.373 0 00-.478-.074zM4.75 9.25l2.847-1.652-1.195-1.195L4.75 9.25z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),dB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 7a7 7 0 1114 0A7 7 0 010 7zm6.5 3.5v2.48A6.001 6.001 0 011.02 7.5H3.5a.5.5 0 000-1H1.02A6.001 6.001 0 016.5 1.02V3.5a.5.5 0 001 0V1.02a6.001 6.001 0 015.48 5.48H10.5a.5.5 0 000 1h2.48a6.002 6.002 0 01-5.48 5.48V10.5a.5.5 0 00-1 0z",fill:e}))),pB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9 5a2 2 0 11-4 0 2 2 0 014 0zM8 5a1 1 0 11-2 0 1 1 0 012 0z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 5A5 5 0 002 5c0 2.633 2.273 6.154 4.65 8.643.192.2.508.2.7 0C9.726 11.153 12 7.633 12 5zM7 1a4 4 0 014 4c0 1.062-.471 2.42-1.303 3.88-.729 1.282-1.69 2.562-2.697 3.67-1.008-1.108-1.968-2.388-2.697-3.67C3.47 7.42 3 6.063 3 5a4 4 0 014-4z",fill:e}))),fB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7 2a.5.5 0 01.5.5v4H10a.5.5 0 010 1H7a.5.5 0 01-.5-.5V2.5A.5.5 0 017 2z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z",fill:e}))),hB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M9.79 4.093a.5.5 0 01.117.698L7.91 7.586a1 1 0 11-.814-.581l1.997-2.796a.5.5 0 01.698-.116z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.069 12.968a7 7 0 119.863 0A12.962 12.962 0 007 12c-1.746 0-3.41.344-4.931.968zm9.582-1.177a6 6 0 10-9.301 0A13.98 13.98 0 017 11c1.629 0 3.194.279 4.65.791z",fill:e}))),mB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.5 4.5a.5.5 0 00-1 0v2.634a1 1 0 101 0V4.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5.5.5A.5.5 0 016 0h2a.5.5 0 010 1h-.5v1.02a5.973 5.973 0 013.374 1.398l.772-.772a.5.5 0 01.708.708l-.772.772A6 6 0 116.5 2.02V1H6a.5.5 0 01-.5-.5zM7 3a5 5 0 100 10A5 5 0 007 3z",fill:e}))),gB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.354 1.146l5.5 5.5a.5.5 0 01-.708.708L12 7.207V12.5a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5V9H6v3.5a.5.5 0 01-.5.5h-3a.5.5 0 01-.5-.5V7.207l-.146.147a.5.5 0 11-.708-.708l1-1 4.5-4.5a.5.5 0 01.708 0zM3 6.207V12h2V8.5a.5.5 0 01.5-.5h3a.5.5 0 01.5.5V12h2V6.207l-4-4-4 4z",fill:e}))),vB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.213 4.094a.5.5 0 01.056-.034l5.484-2.995a.498.498 0 01.494 0L12.73 4.06a.507.507 0 01.266.389.498.498 0 01-.507.555H1.51a.5.5 0 01-.297-.91zm2.246-.09h7.082L7 2.07 3.459 4.004z",fill:e}),l.createElement("path",{d:"M4 6a.5.5 0 00-1 0v5a.5.5 0 001 0V6zM11 6a.5.5 0 00-1 0v5a.5.5 0 001 0V6zM5.75 5.5a.5.5 0 01.5.5v5a.5.5 0 01-1 0V6a.5.5 0 01.5-.5zM8.75 6a.5.5 0 00-1 0v5a.5.5 0 001 0V6zM1.5 12.504a.5.5 0 01.5-.5h10a.5.5 0 010 1H2a.5.5 0 01-.5-.5z",fill:e}))),yB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("g",{clipPath:"url(#prefix__clip0_1107_3594)"},l.createElement("path",{d:"M11.451.537l.01 12.922h0L7.61 8.946a1.077 1.077 0 00-.73-.374L.964 8.087 11.45.537h0z",stroke:e,strokeWidth:1.077})),l.createElement("defs",null,l.createElement("clipPath",{id:"prefix__clip0_1107_3594"},l.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"}))))),bB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zM2.671 11.155c.696-1.006 2.602-1.816 3.194-1.91.226-.036.232-.658.232-.658s-.665-.658-.81-1.544c-.39 0-.63-.94-.241-1.272a2.578 2.578 0 00-.012-.13c-.066-.607-.28-2.606 1.965-2.606 2.246 0 2.031 2 1.966 2.606l-.012.13c.39.331.149 1.272-.24 1.272-.146.886-.81 1.544-.81 1.544s.004.622.23.658c.593.094 2.5.904 3.195 1.91a6 6 0 10-8.657 0z",fill:e}))),wB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7.275 13.16a11.388 11.388 0 005.175-1.232v-.25c0-1.566-3.237-2.994-4.104-3.132-.27-.043-.276-.783-.276-.783s.791-.783.964-1.836c.463 0 .75-1.119.286-1.513C9.34 4 9.916 1.16 6.997 1.16c-2.92 0-2.343 2.84-2.324 3.254-.463.394-.177 1.513.287 1.513.172 1.053.963 1.836.963 1.836s-.006.74-.275.783c-.858.136-4.036 1.536-4.103 3.082a11.388 11.388 0 005.73 1.532z",fill:e}))),EB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.183 11.906a10.645 10.645 0 01-1.181-.589c.062-1.439 3.02-2.74 3.818-2.868.25-.04.256-.728.256-.728s-.736-.729-.896-1.709c-.432 0-.698-1.041-.267-1.408A2.853 2.853 0 002.9 4.46c-.072-.672-.31-2.884 2.175-2.884 2.486 0 2.248 2.212 2.176 2.884-.007.062-.012.112-.014.144.432.367.165 1.408-.266 1.408-.16.98-.896 1.709-.896 1.709s.005.688.256.728c.807.129 3.82 1.457 3.82 2.915v.233a10.598 10.598 0 01-4.816 1.146c-1.441 0-2.838-.282-4.152-.837zM11.5 2.16a.5.5 0 01.5.5v1.5h1.5a.5.5 0 010 1H12v1.5a.5.5 0 01-1 0v-1.5H9.5a.5.5 0 110-1H11v-1.5a.5.5 0 01.5-.5z",fill:e}))),xB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M9.21 11.623a10.586 10.586 0 01-4.031.787A10.585 10.585 0 010 11.07c.06-1.354 2.933-2.578 3.708-2.697.243-.038.249-.685.249-.685s-.715-.685-.87-1.607c-.42 0-.679-.979-.26-1.323a2.589 2.589 0 00-.013-.136c-.07-.632-.3-2.712 2.113-2.712 2.414 0 2.183 2.08 2.113 2.712-.007.059-.012.105-.013.136.419.344.16 1.323-.259 1.323-.156.922-.87 1.607-.87 1.607s.005.647.248.685c.784.12 3.71 1.37 3.71 2.74v.22c-.212.103-.427.2-.646.29z",fill:e}),l.createElement("path",{d:"M8.81 8.417a9.643 9.643 0 00-.736-.398c.61-.42 1.396-.71 1.7-.757.167-.026.171-.471.171-.471s-.491-.471-.598-1.104c-.288 0-.466-.674-.178-.91-.001-.022-.005-.053-.01-.094-.048-.434-.206-1.864 1.453-1.864 1.66 0 1.5 1.43 1.453 1.864l-.01.094c.289.236.11.91-.178.91-.107.633-.598 1.104-.598 1.104s.004.445.171.47c.539.084 2.55.942 2.55 1.884v.628a10.604 10.604 0 01-3.302.553 2.974 2.974 0 00-.576-.879c-.375-.408-.853-.754-1.312-1.03z",fill:e}))),CB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M9.106 7.354c-.627.265-1.295.4-1.983.4a5.062 5.062 0 01-2.547-.681c.03-.688 1.443-1.31 1.824-1.37.12-.02.122-.348.122-.348s-.351-.348-.428-.816c-.206 0-.333-.498-.127-.673 0-.016-.003-.04-.007-.07C5.926 3.477 5.812 2.42 7 2.42c1.187 0 1.073 1.057 1.039 1.378l-.007.069c.207.175.08.673-.127.673-.076.468-.428.816-.428.816s.003.329.122.348c.386.06 1.825.696 1.825 1.392v.111c-.104.053-.21.102-.318.148zM3.75 11.25A.25.25 0 014 11h6a.25.25 0 110 .5H4a.25.25 0 01-.25-.25zM4 9a.25.25 0 000 .5h6a.25.25 0 100-.5H4z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 .5a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v13a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5V.5zM2 13V1h10v12H2z",fill:e}))),DB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.968 8.75a.5.5 0 00-.866.5A4.498 4.498 0 007 11.5c1.666 0 3.12-.906 3.898-2.25a.5.5 0 10-.866-.5A3.498 3.498 0 017 10.5a3.498 3.498 0 01-3.032-1.75zM5.5 5a1 1 0 11-2 0 1 1 0 012 0zM9.5 6a1 1 0 100-2 1 1 0 000 2z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),SB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4.5 9a.5.5 0 000 1h5a.5.5 0 000-1h-5zM5.5 5a1 1 0 11-2 0 1 1 0 012 0zM9.5 6a1 1 0 100-2 1 1 0 000 2z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),AB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.968 10.25a.5.5 0 01-.866-.5A4.498 4.498 0 017 7.5c1.666 0 3.12.906 3.898 2.25a.5.5 0 11-.866.5A3.498 3.498 0 007 8.5a3.498 3.498 0 00-3.032 1.75zM5.5 5a1 1 0 11-2 0 1 1 0 012 0zM9.5 6a1 1 0 100-2 1 1 0 000 2z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),kB=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.526 4.842a.5.5 0 01.632-.316l2.051.684a2.5 2.5 0 001.582 0l2.05-.684a.5.5 0 01.317.948l-2.453.818a.3.3 0 00-.205.285v.243a4.5 4.5 0 00.475 2.012l.972 1.944a.5.5 0 11-.894.448L7 9.118l-1.053 2.106a.5.5 0 11-.894-.447l.972-1.945A4.5 4.5 0 006.5 6.82v-.243a.3.3 0 00-.205-.285l-2.453-.818a.5.5 0 01-.316-.632z",fill:e}),l.createElement("path",{d:"M7 4.5a1 1 0 100-2 1 1 0 000 2z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z",fill:e}))),_B=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 15 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zM8 3.5a1 1 0 11-2 0 1 1 0 012 0zM3.526 4.842a.5.5 0 01.632-.316l2.051.684a2.5 2.5 0 001.582 0l2.05-.684a.5.5 0 01.317.948l-2.453.818a.3.3 0 00-.205.285v.243a4.5 4.5 0 00.475 2.012l.972 1.944a.5.5 0 11-.894.448L7 9.118l-1.053 2.106a.5.5 0 11-.894-.447l.972-1.945A4.5 4.5 0 006.5 6.82v-.243a.3.3 0 00-.205-.285l-2.453-.818a.5.5 0 01-.316-.632z",fill:e}))),FB=0,IB=c(e=>e.button===FB&&!e.altKey&&!e.ctrlKey&&!e.metaKey&&!e.shiftKey,"isPlainLeftClick"),TB=c((e,t)=>{IB(e)&&(e.preventDefault(),t(e))},"cancelled"),RB=_.span(({withArrow:e})=>e?{"> svg:last-of-type":{height:"0.7em",width:"0.7em",marginRight:0,marginLeft:"0.25em",bottom:"auto",verticalAlign:"inherit"}}:{},({containsIcon:e})=>e?{svg:{height:"1em",width:"1em",verticalAlign:"middle",position:"relative",bottom:0,marginRight:0}}:{}),BB=_.a(({theme:e})=>({display:"inline-block",transition:"all 150ms ease-out",textDecoration:"none",color:e.color.secondary,"&:hover, &:focus":{cursor:"pointer",color:qn(.07,e.color.secondary),"svg path:not([fill])":{fill:qn(.07,e.color.secondary)}},"&:active":{color:qn(.1,e.color.secondary),"svg path:not([fill])":{fill:qn(.1,e.color.secondary)}},svg:{display:"inline-block",height:"1em",width:"1em",verticalAlign:"text-top",position:"relative",bottom:"-0.125em",marginRight:"0.4em","& path":{fill:e.color.secondary}}}),({theme:e,secondary:t,tertiary:r})=>{let n;return t&&(n=[e.textMutedColor,e.color.dark,e.color.darker]),r&&(n=[e.color.dark,e.color.darkest,e.textMutedColor]),n?{color:n[0],"svg path:not([fill])":{fill:n[0]},"&:hover":{color:n[1],"svg path:not([fill])":{fill:n[1]}},"&:active":{color:n[2],"svg path:not([fill])":{fill:n[2]}}}:{}},({nochrome:e})=>e?{color:"inherit","&:hover, &:active":{color:"inherit",textDecoration:"underline"}}:{},({theme:e,inverse:t})=>t?{color:e.color.lightest,":not([fill])":{fill:e.color.lightest},"&:hover":{color:e.color.lighter,"svg path:not([fill])":{fill:e.color.lighter}},"&:active":{color:e.color.light,"svg path:not([fill])":{fill:e.color.light}}}:{},({isButton:e})=>e?{border:0,borderRadius:0,background:"none",padding:0,fontSize:"inherit"}:{}),ra=c(({cancel:e=!0,children:t,onClick:r=void 0,withArrow:n=!1,containsIcon:a=!1,className:o=void 0,style:i=void 0,...s})=>y.createElement(BB,{...s,onClick:r&&e?u=>TB(u,r):r,className:o},y.createElement(RB,{withArrow:n,containsIcon:a},t,n&&y.createElement(c9,null))),"Link"),lre=_.div(({theme:e})=>({fontSize:`${e.typography.size.s2}px`,lineHeight:"1.6",h1:{fontSize:`${e.typography.size.l1}px`,fontWeight:e.typography.weight.bold},h2:{fontSize:`${e.typography.size.m2}px`,borderBottom:`1px solid ${e.appBorderColor}`},h3:{fontSize:`${e.typography.size.m1}px`},h4:{fontSize:`${e.typography.size.s3}px`},h5:{fontSize:`${e.typography.size.s2}px`},h6:{fontSize:`${e.typography.size.s2}px`,color:e.color.dark},"pre:not(.prismjs)":{background:"transparent",border:"none",borderRadius:0,padding:0,margin:0},"pre pre, pre.prismjs":{padding:15,margin:0,whiteSpace:"pre-wrap",color:"inherit",fontSize:"13px",lineHeight:"19px"},"pre pre code, pre.prismjs code":{color:"inherit",fontSize:"inherit"},"pre code":{margin:0,padding:0,whiteSpace:"pre",border:"none",background:"transparent"},"pre code, pre tt":{backgroundColor:"transparent",border:"none"},"body > *:first-of-type":{marginTop:"0 !important"},"body > *:last-child":{marginBottom:"0 !important"},a:{color:e.color.secondary,textDecoration:"none"},"a.absent":{color:"#cc0000"},"a.anchor":{display:"block",paddingLeft:30,marginLeft:-30,cursor:"pointer",position:"absolute",top:0,left:0,bottom:0},"h1, h2, h3, h4, h5, h6":{margin:"20px 0 10px",padding:0,cursor:"text",position:"relative","&:first-of-type":{marginTop:0,paddingTop:0},"&:hover a.anchor":{textDecoration:"none"},"& tt, & code":{fontSize:"inherit"}},"h1:first-of-type + h2":{marginTop:0,paddingTop:0},"p, blockquote, ul, ol, dl, li, table, pre":{margin:"15px 0"},hr:{border:"0 none",borderTop:`1px solid ${e.appBorderColor}`,height:4,padding:0},"body > h1:first-of-type, body > h2:first-of-type, body > h3:first-of-type, body > h4:first-of-type, body > h5:first-of-type, body > h6:first-of-type":{marginTop:0,paddingTop:0},"body > h1:first-of-type + h2":{marginTop:0,paddingTop:0},"a:first-of-type h1, a:first-of-type h2, a:first-of-type h3, a:first-of-type h4, a:first-of-type h5, a:first-of-type h6":{marginTop:0,paddingTop:0},"h1 p, h2 p, h3 p, h4 p, h5 p, h6 p":{marginTop:0},"li p.first":{display:"inline-block"},"ul, ol":{paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0}},dl:{padding:0},"dl dt":{fontSize:"14px",fontWeight:"bold",fontStyle:"italic",margin:"0 0 15px",padding:"0 15px","&:first-of-type":{padding:0},"& > :first-of-type":{marginTop:0},"& > :last-child":{marginBottom:0}},blockquote:{borderLeft:`4px solid ${e.color.medium}`,padding:"0 15px",color:e.color.dark,"& > :first-of-type":{marginTop:0},"& > :last-child":{marginBottom:0}},table:{padding:0,borderCollapse:"collapse","& tr":{borderTop:`1px solid ${e.appBorderColor}`,backgroundColor:"white",margin:0,padding:0,"& th":{fontWeight:"bold",border:`1px solid ${e.appBorderColor}`,textAlign:"left",margin:0,padding:"6px 13px"},"& td":{border:`1px solid ${e.appBorderColor}`,textAlign:"left",margin:0,padding:"6px 13px"},"&:nth-of-type(2n)":{backgroundColor:e.color.lighter},"& th :first-of-type, & td :first-of-type":{marginTop:0},"& th :last-child, & td :last-child":{marginBottom:0}}},img:{maxWidth:"100%"},"span.frame":{display:"block",overflow:"hidden","& > span":{border:`1px solid ${e.color.medium}`,display:"block",float:"left",overflow:"hidden",margin:"13px 0 0",padding:7,width:"auto"},"& span img":{display:"block",float:"left"},"& span span":{clear:"both",color:e.color.darkest,display:"block",padding:"5px 0 0"}},"span.align-center":{display:"block",overflow:"hidden",clear:"both","& > span":{display:"block",overflow:"hidden",margin:"13px auto 0",textAlign:"center"},"& span img":{margin:"0 auto",textAlign:"center"}},"span.align-right":{display:"block",overflow:"hidden",clear:"both","& > span":{display:"block",overflow:"hidden",margin:"13px 0 0",textAlign:"right"},"& span img":{margin:0,textAlign:"right"}},"span.float-left":{display:"block",marginRight:13,overflow:"hidden",float:"left","& span":{margin:"13px 0 0"}},"span.float-right":{display:"block",marginLeft:13,overflow:"hidden",float:"right","& > span":{display:"block",overflow:"hidden",margin:"13px auto 0",textAlign:"right"}},"code, tt":{margin:"0 2px",padding:"0 5px",whiteSpace:"nowrap",border:`1px solid ${e.color.mediumlight}`,backgroundColor:e.color.lighter,borderRadius:3,color:e.base==="dark"?e.color.darkest:e.color.dark}})),sn=[],ba=null,zB=l.lazy(async()=>{let{SyntaxHighlighter:e}=await Promise.resolve().then(()=>(Ms(),qp));return sn.length>0&&(sn.forEach(t=>{e.registerLanguage(...t)}),sn=[]),ba===null&&(ba=e),{default:c(t=>y.createElement(e,{...t}),"default")}}),$B=l.lazy(async()=>{let[{SyntaxHighlighter:e},{formatter:t}]=await Promise.all([Promise.resolve().then(()=>(Ms(),qp)),Promise.resolve().then(()=>(Xk(),N8))]);return sn.length>0&&(sn.forEach(r=>{e.registerLanguage(...r)}),sn=[]),ba===null&&(ba=e),{default:c(r=>y.createElement(e,{...r,formatter:t}),"default")}}),lh=c(e=>y.createElement(l.Suspense,{fallback:y.createElement("div",null)},e.format!==!1?y.createElement($B,{...e}):y.createElement(zB,{...e})),"SyntaxHighlighter");lh.registerLanguage=(...e)=>{if(ba!==null){ba.registerLanguage(...e);return}sn.push(e)};Ms();i7();var d9={};ka(d9,{Close:()=>ux,Content:()=>ix,Description:()=>sx,Dialog:()=>q9,DialogClose:()=>rx,DialogContent:()=>Z9,DialogDescription:()=>tx,DialogOverlay:()=>J9,DialogPortal:()=>Y9,DialogTitle:()=>ex,DialogTrigger:()=>W9,Overlay:()=>ox,Portal:()=>ax,Root:()=>nx,Title:()=>lx,Trigger:()=>_z,WarningProvider:()=>kz,createDialogScope:()=>vz});Ct();jp();_a();h7();Np();var OB=l.useId||(()=>{}),LB=0;function El(e){let[t,r]=l.useState(OB());return $o(()=>{e||r(n=>n??String(LB++))},[e]),e||(t?`radix-${t}`:"")}c(El,"$1746a345f3d73bb7$export$f680877a34711e37");oi();function p9({prop:e,defaultProp:t,onChange:r=c(()=>{},"onChange")}){let[n,a]=f9({defaultProp:t,onChange:r}),o=e!==void 0,i=o?e:n,s=ze(r),u=l.useCallback(d=>{if(o){let p=typeof d=="function"?d(e):d;p!==e&&s(p)}else a(d)},[o,e,a,s]);return[i,u]}c(p9,"$71cd76cc60e0454e$export$6f32135080cb4c3");function f9({defaultProp:e,onChange:t}){let r=l.useState(e),[n]=r,a=l.useRef(n),o=ze(t);return l.useEffect(()=>{a.current!==n&&(o(n),a.current=n)},[n,a,o]),r}c(f9,"$71cd76cc60e0454e$var$useUncontrolledState");Ct();jp();ai();_a();oi();oi();function h9(e,t=globalThis==null?void 0:globalThis.document){let r=ze(e);l.useEffect(()=>{let n=c(a=>{a.key==="Escape"&&r(a)},"handleKeyDown");return t.addEventListener("keydown",n),()=>t.removeEventListener("keydown",n)},[r,t])}c(h9,"$addc16e1bbe58fd0$export$3a72a57244d6e765");var I1="dismissableLayer.update",MB="dismissableLayer.pointerDownOutside",PB="dismissableLayer.focusOutside",L4,NB=l.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),HB=l.forwardRef((e,t)=>{var r;let{disableOutsidePointerEvents:n=!1,onEscapeKeyDown:a,onPointerDownOutside:o,onFocusOutside:i,onInteractOutside:s,onDismiss:u,...d}=e,p=l.useContext(NB),[h,m]=l.useState(null),f=(r=h==null?void 0:h.ownerDocument)!==null&&r!==void 0?r:globalThis==null?void 0:globalThis.document,[,v]=l.useState({}),g=Ke(t,k=>m(k)),b=Array.from(p.layers),[C]=[...p.layersWithOutsidePointerEventsDisabled].slice(-1),w=b.indexOf(C),x=h?b.indexOf(h):-1,E=p.layersWithOutsidePointerEventsDisabled.size>0,D=x>=w,S=m9(k=>{let F=k.target,T=[...p.branches].some(R=>R.contains(F));!D||T||(o==null||o(k),s==null||s(k),k.defaultPrevented||(u==null||u()))},f),A=g9(k=>{let F=k.target;[...p.branches].some(T=>T.contains(F))||(i==null||i(k),s==null||s(k),k.defaultPrevented||(u==null||u()))},f);return h9(k=>{x===p.layers.size-1&&(a==null||a(k),!k.defaultPrevented&&u&&(k.preventDefault(),u()))},f),l.useEffect(()=>{if(h)return n&&(p.layersWithOutsidePointerEventsDisabled.size===0&&(L4=f.body.style.pointerEvents,f.body.style.pointerEvents="none"),p.layersWithOutsidePointerEventsDisabled.add(h)),p.layers.add(h),T1(),()=>{n&&p.layersWithOutsidePointerEventsDisabled.size===1&&(f.body.style.pointerEvents=L4)}},[h,f,n,p]),l.useEffect(()=>()=>{h&&(p.layers.delete(h),p.layersWithOutsidePointerEventsDisabled.delete(h),T1())},[h,p]),l.useEffect(()=>{let k=c(()=>v({}),"handleUpdate");return document.addEventListener(I1,k),()=>document.removeEventListener(I1,k)},[]),l.createElement(Me.div,U({},d,{ref:g,style:{pointerEvents:E?D?"auto":"none":void 0,...e.style},onFocusCapture:Ie(e.onFocusCapture,A.onFocusCapture),onBlurCapture:Ie(e.onBlurCapture,A.onBlurCapture),onPointerDownCapture:Ie(e.onPointerDownCapture,S.onPointerDownCapture)}))});function m9(e,t=globalThis==null?void 0:globalThis.document){let r=ze(e),n=l.useRef(!1),a=l.useRef(()=>{});return l.useEffect(()=>{let o=c(s=>{if(s.target&&!n.current){let u=function(){sh(MB,r,d,{discrete:!0})};c(u,"handleAndDispatchPointerDownOutsideEvent");let d={originalEvent:s};s.pointerType==="touch"?(t.removeEventListener("click",a.current),a.current=u,t.addEventListener("click",a.current,{once:!0})):u()}else t.removeEventListener("click",a.current);n.current=!1},"handlePointerDown"),i=window.setTimeout(()=>{t.addEventListener("pointerdown",o)},0);return()=>{window.clearTimeout(i),t.removeEventListener("pointerdown",o),t.removeEventListener("click",a.current)}},[t,r]),{onPointerDownCapture:c(()=>n.current=!0,"onPointerDownCapture")}}c(m9,"$5cb92bef7577960e$var$usePointerDownOutside");function g9(e,t=globalThis==null?void 0:globalThis.document){let r=ze(e),n=l.useRef(!1);return l.useEffect(()=>{let a=c(o=>{o.target&&!n.current&&sh(PB,r,{originalEvent:o},{discrete:!1})},"handleFocus");return t.addEventListener("focusin",a),()=>t.removeEventListener("focusin",a)},[t,r]),{onFocusCapture:c(()=>n.current=!0,"onFocusCapture"),onBlurCapture:c(()=>n.current=!1,"onBlurCapture")}}c(g9,"$5cb92bef7577960e$var$useFocusOutside");function T1(){let e=new CustomEvent(I1);document.dispatchEvent(e)}c(T1,"$5cb92bef7577960e$var$dispatchUpdate");function sh(e,t,r,{discrete:n}){let a=r.originalEvent.target,o=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:r});t&&a.addEventListener(e,t,{once:!0}),n?u7(a,o):a.dispatchEvent(o)}c(sh,"$5cb92bef7577960e$var$handleAndDispatchCustomEvent");Ct();_a();ai();oi();var H0="focusScope.autoFocusOnMount",j0="focusScope.autoFocusOnUnmount",M4={bubbles:!1,cancelable:!0},jB=l.forwardRef((e,t)=>{let{loop:r=!1,trapped:n=!1,onMountAutoFocus:a,onUnmountAutoFocus:o,...i}=e,[s,u]=l.useState(null),d=ze(a),p=ze(o),h=l.useRef(null),m=Ke(t,g=>u(g)),f=l.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;l.useEffect(()=>{if(n){let g=function(x){if(f.paused||!s)return;let E=x.target;s.contains(E)?h.current=E:ir(h.current,{select:!0})},b=function(x){if(f.paused||!s)return;let E=x.relatedTarget;E!==null&&(s.contains(E)||ir(h.current,{select:!0}))},C=function(x){if(document.activeElement===document.body)for(let E of x)E.removedNodes.length>0&&ir(s)};c(g,"handleFocusIn"),c(b,"handleFocusOut"),c(C,"handleMutations"),document.addEventListener("focusin",g),document.addEventListener("focusout",b);let w=new MutationObserver(C);return s&&w.observe(s,{childList:!0,subtree:!0}),()=>{document.removeEventListener("focusin",g),document.removeEventListener("focusout",b),w.disconnect()}}},[n,s,f.paused]),l.useEffect(()=>{if(s){P4.add(f);let g=document.activeElement;if(!s.contains(g)){let b=new CustomEvent(H0,M4);s.addEventListener(H0,d),s.dispatchEvent(b),b.defaultPrevented||(v9(x9(uh(s)),{select:!0}),document.activeElement===g&&ir(s))}return()=>{s.removeEventListener(H0,d),setTimeout(()=>{let b=new CustomEvent(j0,M4);s.addEventListener(j0,p),s.dispatchEvent(b),b.defaultPrevented||ir(g??document.body,{select:!0}),s.removeEventListener(j0,p),P4.remove(f)},0)}}},[s,d,p,f]);let v=l.useCallback(g=>{if(!r&&!n||f.paused)return;let b=g.key==="Tab"&&!g.altKey&&!g.ctrlKey&&!g.metaKey,C=document.activeElement;if(b&&C){let w=g.currentTarget,[x,E]=y9(w);x&&E?!g.shiftKey&&C===E?(g.preventDefault(),r&&ir(x,{select:!0})):g.shiftKey&&C===x&&(g.preventDefault(),r&&ir(E,{select:!0})):C===w&&g.preventDefault()}},[r,n,f.paused]);return l.createElement(Me.div,U({tabIndex:-1},i,{ref:m,onKeyDown:v}))});function v9(e,{select:t=!1}={}){let r=document.activeElement;for(let n of e)if(ir(n,{select:t}),document.activeElement!==r)return}c(v9,"$d3863c46a17e8a28$var$focusFirst");function y9(e){let t=uh(e),r=R1(t,e),n=R1(t.reverse(),e);return[r,n]}c(y9,"$d3863c46a17e8a28$var$getTabbableEdges");function uh(e){let t=[],r=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:c(n=>{let a=n.tagName==="INPUT"&&n.type==="hidden";return n.disabled||n.hidden||a?NodeFilter.FILTER_SKIP:n.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP},"acceptNode")});for(;r.nextNode();)t.push(r.currentNode);return t}c(uh,"$d3863c46a17e8a28$var$getTabbableCandidates");function R1(e,t){for(let r of e)if(!b9(r,{upTo:t}))return r}c(R1,"$d3863c46a17e8a28$var$findVisible");function b9(e,{upTo:t}){if(getComputedStyle(e).visibility==="hidden")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display==="none")return!0;e=e.parentElement}return!1}c(b9,"$d3863c46a17e8a28$var$isHidden");function w9(e){return e instanceof HTMLInputElement&&"select"in e}c(w9,"$d3863c46a17e8a28$var$isSelectableInput");function ir(e,{select:t=!1}={}){if(e&&e.focus){let r=document.activeElement;e.focus({preventScroll:!0}),e!==r&&w9(e)&&t&&e.select()}}c(ir,"$d3863c46a17e8a28$var$focus");var P4=E9();function E9(){let e=[];return{add(t){let r=e[0];t!==r&&(r==null||r.pause()),e=B1(e,t),e.unshift(t)},remove(t){var r;e=B1(e,t),(r=e[0])===null||r===void 0||r.resume()}}}c(E9,"$d3863c46a17e8a28$var$createFocusScopesStack");function B1(e,t){let r=[...e],n=r.indexOf(t);return n!==-1&&r.splice(n,1),r}c(B1,"$d3863c46a17e8a28$var$arrayRemove");function x9(e){return e.filter(t=>t.tagName!=="A")}c(x9,"$d3863c46a17e8a28$var$removeLinks");Ct();ai();var VB=l.forwardRef((e,t)=>{var r;let{container:n=globalThis==null||(r=globalThis.document)===null||r===void 0?void 0:r.body,...a}=e;return n?dy.createPortal(l.createElement(Me.div,U({},a,{ref:t})),n):null});d7();ai();var V0=0;function C9(){l.useEffect(()=>{var e,t;let r=document.querySelectorAll("[data-radix-focus-guard]");return document.body.insertAdjacentElement("afterbegin",(e=r[0])!==null&&e!==void 0?e:z1()),document.body.insertAdjacentElement("beforeend",(t=r[1])!==null&&t!==void 0?t:z1()),V0++,()=>{V0===1&&document.querySelectorAll("[data-radix-focus-guard]").forEach(n=>n.remove()),V0--}},[])}c(C9,"$3db38b7d1fb3fe6a$export$b7ece24a22aeda8c");function z1(){let e=document.createElement("span");return e.setAttribute("data-radix-focus-guard",""),e.tabIndex=0,e.style.cssText="outline: none; opacity: 0; position: fixed; pointer-events: none",e}c(z1,"$3db38b7d1fb3fe6a$var$createFocusGuard");var Lt=c(function(){return Lt=Object.assign||c(function(e){for(var t,r=1,n=arguments.length;r"u")return YB;var t=JB(e),r=document.documentElement.clientWidth,n=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,n-r+t[2]-t[0])}},"getGapWidth"),XB=O9(),gs="data-scroll-locked",QB=c(function(e,t,r,n){var a=e.left,o=e.top,i=e.right,s=e.gap;return r===void 0&&(r="margin"),` - .`.concat(UB,` { - overflow: hidden `).concat(n,`; - padding-right: `).concat(s,"px ").concat(n,`; - } - body[`).concat(gs,`] { - overflow: hidden `).concat(n,`; - overscroll-behavior: contain; - `).concat([t&&"position: relative ".concat(n,";"),r==="margin"&&` - padding-left: `.concat(a,`px; - padding-top: `).concat(o,`px; - padding-right: `).concat(i,`px; - margin-left:0; - margin-top:0; - margin-right: `).concat(s,"px ").concat(n,`; - `),r==="padding"&&"padding-right: ".concat(s,"px ").concat(n,";")].filter(Boolean).join(""),` - } - - .`).concat(xl,` { - right: `).concat(s,"px ").concat(n,`; - } - - .`).concat(Cl,` { - margin-right: `).concat(s,"px ").concat(n,`; - } - - .`).concat(xl," .").concat(xl,` { - right: 0 `).concat(n,`; - } - - .`).concat(Cl," .").concat(Cl,` { - margin-right: 0 `).concat(n,`; - } - - body[`).concat(gs,`] { - `).concat(qB,": ").concat(s,`px; - } -`)},"getStyles"),ez=c(function(e){var t=e.noRelative,r=e.noImportant,n=e.gapMode,a=n===void 0?"margin":n,o=l.useMemo(function(){return ZB(a)},[a]);return l.useEffect(function(){return document.body.setAttribute(gs,""),function(){document.body.removeAttribute(gs)}},[]),l.createElement(XB,{styles:QB(o,!t,a,r?"":"!important")})},"RemoveScrollBar"),$1=!1;if(typeof window<"u")try{so=Object.defineProperty({},"passive",{get:c(function(){return $1=!0,!0},"get")}),window.addEventListener("test",so,so),window.removeEventListener("test",so,so)}catch{$1=!1}var so,$n=$1?{passive:!1}:!1,tz=c(function(e){return e.tagName==="TEXTAREA"},"alwaysContainsScroll"),L9=c(function(e,t){var r=window.getComputedStyle(e);return r[t]!=="hidden"&&!(r.overflowY===r.overflowX&&!tz(e)&&r[t]==="visible")},"elementCanBeScrolled"),rz=c(function(e){return L9(e,"overflowY")},"elementCouldBeVScrolled"),nz=c(function(e){return L9(e,"overflowX")},"elementCouldBeHScrolled"),H4=c(function(e,t){var r=t;do{typeof ShadowRoot<"u"&&r instanceof ShadowRoot&&(r=r.host);var n=M9(e,r);if(n){var a=P9(e,r),o=a[1],i=a[2];if(o>i)return!0}r=r.parentNode}while(r&&r!==document.body);return!1},"locationCouldBeScrolled"),az=c(function(e){var t=e.scrollTop,r=e.scrollHeight,n=e.clientHeight;return[t,r,n]},"getVScrollVariables"),oz=c(function(e){var t=e.scrollLeft,r=e.scrollWidth,n=e.clientWidth;return[t,r,n]},"getHScrollVariables"),M9=c(function(e,t){return e==="v"?rz(t):nz(t)},"elementCouldBeScrolled"),P9=c(function(e,t){return e==="v"?az(t):oz(t)},"getScrollVariables"),iz=c(function(e,t){return e==="h"&&t==="rtl"?-1:1},"getDirectionFactor"),lz=c(function(e,t,r,n,a){var o=iz(e,window.getComputedStyle(t).direction),i=o*n,s=r.target,u=t.contains(s),d=!1,p=i>0,h=0,m=0;do{var f=P9(e,s),v=f[0],g=f[1],b=f[2],C=g-b-o*v;(v||C)&&M9(e,s)&&(h+=C,m+=v),s=s.parentNode}while(!u&&s!==document.body||u&&(t.contains(s)||t===s));return(p&&(a&&h===0||!a&&i>h)||!p&&(a&&m===0||!a&&-i>m))&&(d=!0),d},"handleScroll"),Yi=c(function(e){return"changedTouches"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},"getTouchXY"),j4=c(function(e){return[e.deltaX,e.deltaY]},"getDeltaXY"),V4=c(function(e){return e&&"current"in e?e.current:e},"extractRef"),sz=c(function(e,t){return e[0]===t[0]&&e[1]===t[1]},"deltaCompare"),uz=c(function(e){return` - .block-interactivity-`.concat(e,` {pointer-events: none;} - .allow-interactivity-`).concat(e,` {pointer-events: all;} -`)},"generateStyle"),cz=0,On=[];function N9(e){var t=l.useRef([]),r=l.useRef([0,0]),n=l.useRef(),a=l.useState(cz++)[0],o=l.useState(function(){return O9()})[0],i=l.useRef(e);l.useEffect(function(){i.current=e},[e]),l.useEffect(function(){if(e.inert){document.body.classList.add("block-interactivity-".concat(a));var g=D9([e.lockRef.current],(e.shards||[]).map(V4),!0).filter(Boolean);return g.forEach(function(b){return b.classList.add("allow-interactivity-".concat(a))}),function(){document.body.classList.remove("block-interactivity-".concat(a)),g.forEach(function(b){return b.classList.remove("allow-interactivity-".concat(a))})}}},[e.inert,e.lockRef.current,e.shards]);var s=l.useCallback(function(g,b){if("touches"in g&&g.touches.length===2)return!i.current.allowPinchZoom;var C=Yi(g),w=r.current,x="deltaX"in g?g.deltaX:w[0]-C[0],E="deltaY"in g?g.deltaY:w[1]-C[1],D,S=g.target,A=Math.abs(x)>Math.abs(E)?"h":"v";if("touches"in g&&A==="h"&&S.type==="range")return!1;var k=H4(A,S);if(!k)return!0;if(k?D=A:(D=A==="v"?"h":"v",k=H4(A,S)),!k)return!1;if(!n.current&&"changedTouches"in g&&(x||E)&&(n.current=D),!D)return!0;var F=n.current||D;return lz(F,b,g,F==="h"?x:E,!0)},[]),u=l.useCallback(function(g){var b=g;if(!(!On.length||On[On.length-1]!==o)){var C="deltaY"in b?j4(b):Yi(b),w=t.current.filter(function(D){return D.name===b.type&&D.target===b.target&&sz(D.delta,C)})[0];if(w&&w.should){b.cancelable&&b.preventDefault();return}if(!w){var x=(i.current.shards||[]).map(V4).filter(Boolean).filter(function(D){return D.contains(b.target)}),E=x.length>0?s(b,x[0]):!i.current.noIsolation;E&&b.cancelable&&b.preventDefault()}}},[]),d=l.useCallback(function(g,b,C,w){var x={name:g,delta:b,target:C,should:w};t.current.push(x),setTimeout(function(){t.current=t.current.filter(function(E){return E!==x})},1)},[]),p=l.useCallback(function(g){r.current=Yi(g),n.current=void 0},[]),h=l.useCallback(function(g){d(g.type,j4(g),g.target,s(g,e.lockRef.current))},[]),m=l.useCallback(function(g){d(g.type,Yi(g),g.target,s(g,e.lockRef.current))},[]);l.useEffect(function(){return On.push(o),e.setCallbacks({onScrollCapture:h,onWheelCapture:h,onTouchMoveCapture:m}),document.addEventListener("wheel",u,$n),document.addEventListener("touchmove",u,$n),document.addEventListener("touchstart",p,$n),function(){On=On.filter(function(g){return g!==o}),document.removeEventListener("wheel",u,$n),document.removeEventListener("touchmove",u,$n),document.removeEventListener("touchstart",p,$n)}},[]);var f=e.removeScrollBar,v=e.inert;return l.createElement(l.Fragment,null,v?l.createElement(o,{styles:uz(a)}):null,f?l.createElement(ez,{gapMode:"margin"}):null)}c(N9,"RemoveScrollSideCar");var dz=T9(R9,N9),H9=l.forwardRef(function(e,t){return l.createElement(mu,Lt({},e,{ref:t,sideCar:dz}))});H9.classNames=mu.classNames;var pz=H9,fz=c(function(e){if(typeof document>"u")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},"getDefaultParent"),Ln=new WeakMap,Ji=new WeakMap,Zi={},W0=0,j9=c(function(e){return e&&(e.host||j9(e.parentNode))},"unwrapHost"),hz=c(function(e,t){return t.map(function(r){if(e.contains(r))return r;var n=j9(r);return n&&e.contains(n)?n:(console.error("aria-hidden",r,"in not contained inside",e,". Doing nothing"),null)}).filter(function(r){return!!r})},"correctTargets"),mz=c(function(e,t,r,n){var a=hz(t,Array.isArray(e)?e:[e]);Zi[r]||(Zi[r]=new WeakMap);var o=Zi[r],i=[],s=new Set,u=new Set(a),d=c(function(h){!h||s.has(h)||(s.add(h),d(h.parentNode))},"keep");a.forEach(d);var p=c(function(h){!h||u.has(h)||Array.prototype.forEach.call(h.children,function(m){if(s.has(m))p(m);else{var f=m.getAttribute(n),v=f!==null&&f!=="false",g=(Ln.get(m)||0)+1,b=(o.get(m)||0)+1;Ln.set(m,g),o.set(m,b),i.push(m),g===1&&v&&Ji.set(m,!0),b===1&&m.setAttribute(r,"true"),v||m.setAttribute(n,"true")}})},"deep");return p(t),s.clear(),W0++,function(){i.forEach(function(h){var m=Ln.get(h)-1,f=o.get(h)-1;Ln.set(h,m),o.set(h,f),m||(Ji.has(h)||h.removeAttribute(n),Ji.delete(h)),f||h.removeAttribute(r)}),W0--,W0||(Ln=new WeakMap,Ln=new WeakMap,Ji=new WeakMap,Zi={})}},"applyAttributeToOthers"),gz=c(function(e,t,r){r===void 0&&(r="data-aria-hidden");var n=Array.from(Array.isArray(e)?e:[e]),a=t||fz(e);return a?(n.push.apply(n,Array.from(a.querySelectorAll("[aria-live]"))),mz(n,a,r,"aria-hidden")):function(){return null}},"hideOthers");Pp();var V9="Dialog",[U9,vz]=Hp(V9),[yz,Dt]=U9(V9),q9=c(e=>{let{__scopeDialog:t,children:r,open:n,defaultOpen:a,onOpenChange:o,modal:i=!0}=e,s=l.useRef(null),u=l.useRef(null),[d=!1,p]=p9({prop:n,defaultProp:a,onChange:o});return l.createElement(yz,{scope:t,triggerRef:s,contentRef:u,contentId:El(),titleId:El(),descriptionId:El(),open:d,onOpenChange:p,onOpenToggle:l.useCallback(()=>p(h=>!h),[p]),modal:i},r)},"$5d3850c4d0b4e6c7$export$3ddf2d174ce01153"),bz="DialogTrigger",W9=l.forwardRef((e,t)=>{let{__scopeDialog:r,...n}=e,a=Dt(bz,r),o=Ke(t,a.triggerRef);return l.createElement(Me.button,U({type:"button","aria-haspopup":"dialog","aria-expanded":a.open,"aria-controls":a.contentId,"data-state":gu(a.open)},n,{ref:o,onClick:Ie(e.onClick,a.onOpenToggle)}))}),G9="DialogPortal",[wz,K9]=U9(G9,{forceMount:void 0}),Y9=c(e=>{let{__scopeDialog:t,forceMount:r,children:n,container:a}=e,o=Dt(G9,t);return l.createElement(wz,{scope:t,forceMount:r},l.Children.map(n,i=>l.createElement(sr,{present:r||o.open},l.createElement(VB,{asChild:!0,container:a},i))))},"$5d3850c4d0b4e6c7$export$dad7c95542bacce0"),O1="DialogOverlay",J9=l.forwardRef((e,t)=>{let r=K9(O1,e.__scopeDialog),{forceMount:n=r.forceMount,...a}=e,o=Dt(O1,e.__scopeDialog);return o.modal?l.createElement(sr,{present:n||o.open},l.createElement(Ez,U({},a,{ref:t}))):null}),Ez=l.forwardRef((e,t)=>{let{__scopeDialog:r,...n}=e,a=Dt(O1,r);return l.createElement(pz,{as:zo,allowPinchZoom:!0,shards:[a.contentRef]},l.createElement(Me.div,U({"data-state":gu(a.open)},n,{ref:t,style:{pointerEvents:"auto",...n.style}})))}),wa="DialogContent",Z9=l.forwardRef((e,t)=>{let r=K9(wa,e.__scopeDialog),{forceMount:n=r.forceMount,...a}=e,o=Dt(wa,e.__scopeDialog);return l.createElement(sr,{present:n||o.open},o.modal?l.createElement(xz,U({},a,{ref:t})):l.createElement(Cz,U({},a,{ref:t})))}),xz=l.forwardRef((e,t)=>{let r=Dt(wa,e.__scopeDialog),n=l.useRef(null),a=Ke(t,r.contentRef,n);return l.useEffect(()=>{let o=n.current;if(o)return gz(o)},[]),l.createElement(X9,U({},e,{ref:a,trapFocus:r.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:Ie(e.onCloseAutoFocus,o=>{var i;o.preventDefault(),(i=r.triggerRef.current)===null||i===void 0||i.focus()}),onPointerDownOutside:Ie(e.onPointerDownOutside,o=>{let i=o.detail.originalEvent,s=i.button===0&&i.ctrlKey===!0;(i.button===2||s)&&o.preventDefault()}),onFocusOutside:Ie(e.onFocusOutside,o=>o.preventDefault())}))}),Cz=l.forwardRef((e,t)=>{let r=Dt(wa,e.__scopeDialog),n=l.useRef(!1),a=l.useRef(!1);return l.createElement(X9,U({},e,{ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:c(o=>{var i;if((i=e.onCloseAutoFocus)===null||i===void 0||i.call(e,o),!o.defaultPrevented){var s;n.current||(s=r.triggerRef.current)===null||s===void 0||s.focus(),o.preventDefault()}n.current=!1,a.current=!1},"onCloseAutoFocus"),onInteractOutside:c(o=>{var i,s;(i=e.onInteractOutside)===null||i===void 0||i.call(e,o),o.defaultPrevented||(n.current=!0,o.detail.originalEvent.type==="pointerdown"&&(a.current=!0));let u=o.target;!((s=r.triggerRef.current)===null||s===void 0)&&s.contains(u)&&o.preventDefault(),o.detail.originalEvent.type==="focusin"&&a.current&&o.preventDefault()},"onInteractOutside")}))}),X9=l.forwardRef((e,t)=>{let{__scopeDialog:r,trapFocus:n,onOpenAutoFocus:a,onCloseAutoFocus:o,...i}=e,s=Dt(wa,r),u=l.useRef(null),d=Ke(t,u);return C9(),l.createElement(l.Fragment,null,l.createElement(jB,{asChild:!0,loop:!0,trapped:n,onMountAutoFocus:a,onUnmountAutoFocus:o},l.createElement(HB,U({role:"dialog",id:s.contentId,"aria-describedby":s.descriptionId,"aria-labelledby":s.titleId,"data-state":gu(s.open)},i,{ref:d,onDismiss:c(()=>s.onOpenChange(!1),"onDismiss")}))),!1)}),Q9="DialogTitle",ex=l.forwardRef((e,t)=>{let{__scopeDialog:r,...n}=e,a=Dt(Q9,r);return l.createElement(Me.h2,U({id:a.titleId},n,{ref:t}))}),Dz="DialogDescription",tx=l.forwardRef((e,t)=>{let{__scopeDialog:r,...n}=e,a=Dt(Dz,r);return l.createElement(Me.p,U({id:a.descriptionId},n,{ref:t}))}),Sz="DialogClose",rx=l.forwardRef((e,t)=>{let{__scopeDialog:r,...n}=e,a=Dt(Sz,r);return l.createElement(Me.button,U({type:"button"},n,{ref:t,onClick:Ie(e.onClick,()=>a.onOpenChange(!1))}))});function gu(e){return e?"open":"closed"}c(gu,"$5d3850c4d0b4e6c7$var$getState");var Az="DialogTitleWarning",[kz,sre]=p7(Az,{contentName:wa,titleName:Q9,docsSlug:"dialog"}),nx=q9,_z=W9,ax=Y9,ox=J9,ix=Z9,lx=ex,sx=tx,ux=rx,cx={};ka(cx,{Actions:()=>Lz,CloseButton:()=>hx,Col:()=>gx,Container:()=>fx,Content:()=>Bz,Description:()=>Oz,Error:()=>Mz,ErrorWrapper:()=>vx,Header:()=>zz,Overlay:()=>px,Row:()=>mx,Title:()=>$z});Pp();const{deprecate:Fz}=__STORYBOOK_MODULE_CLIENT_LOGGER__;var Sn=l.forwardRef(({asChild:e=!1,animation:t="none",size:r="small",variant:n="outline",padding:a="medium",disabled:o=!1,active:i=!1,onClick:s,...u},d)=>{let p="button";u.isLink&&(p="a"),e&&(p=zo);let h=n,m=r,[f,v]=l.useState(!1),g=c(b=>{s&&s(b),t!=="none"&&v(!0)},"handleClick");if(l.useEffect(()=>{let b=setTimeout(()=>{f&&v(!1)},1e3);return()=>clearTimeout(b)},[f]),u.primary&&(h="solid",m="medium"),(u.secondary||u.tertiary||u.gray||u.outline||u.inForm)&&(h="outline",m="medium"),u.small||u.isLink||u.primary||u.secondary||u.tertiary||u.gray||u.outline||u.inForm||u.containsIcon){let b=y.Children.toArray(u.children).filter(C=>typeof C=="string"&&C!=="");Fz(`Use of deprecated props in the button ${b.length>0?`"${b.join(" ")}"`:"component"} detected, see the migration notes at https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#new-ui-and-props-for-button-and-iconbutton-components`)}return y.createElement(Iz,{as:p,ref:d,variant:h,size:m,padding:a,disabled:o,active:i,animating:f,animation:t,onClick:g,...u})});Sn.displayName="Button";var Iz=_("button",{shouldForwardProp:c(e=>pp(e),"shouldForwardProp")})(({theme:e,variant:t,size:r,disabled:n,active:a,animating:o,animation:i="none",padding:s})=>({border:0,cursor:n?"not-allowed":"pointer",display:"inline-flex",gap:"6px",alignItems:"center",justifyContent:"center",overflow:"hidden",padding:s==="small"&&r==="small"?"0 7px":s==="small"&&r==="medium"?"0 9px":r==="small"?"0 10px":r==="medium"?"0 12px":0,height:r==="small"?"28px":"32px",position:"relative",textAlign:"center",textDecoration:"none",transitionProperty:"background, box-shadow",transitionDuration:"150ms",transitionTimingFunction:"ease-out",verticalAlign:"top",whiteSpace:"nowrap",userSelect:"none",opacity:n?.5:1,margin:0,fontSize:`${e.typography.size.s1}px`,fontWeight:e.typography.weight.bold,lineHeight:"1",background:t==="solid"?e.color.secondary:t==="outline"?e.button.background:t==="ghost"&&a?e.background.hoverable:"transparent",...t==="ghost"?{".sb-bar &":{background:a?rt(.9,e.barTextColor):"transparent",color:a?e.barSelectedColor:e.barTextColor,"&:hover":{color:e.barHoverColor,background:rt(.86,e.barHoverColor)},"&:active":{color:e.barSelectedColor,background:rt(.9,e.barSelectedColor)},"&:focus":{boxShadow:`${Ko(e.barHoverColor,1)} 0 0 0 1px inset`,outline:"none"}}}:{},color:t==="solid"?e.color.lightest:t==="outline"?e.input.color:t==="ghost"&&a?e.color.secondary:t==="ghost"?e.color.mediumdark:e.input.color,boxShadow:t==="outline"?`${e.button.border} 0 0 0 1px inset`:"none",borderRadius:e.input.borderRadius,flexShrink:0,"&:hover":{color:t==="ghost"?e.color.secondary:void 0,background:(()=>{let u=e.color.secondary;return t==="solid"&&(u=e.color.secondary),t==="outline"&&(u=e.button.background),t==="ghost"?rt(.86,e.color.secondary):e.base==="light"?qn(.02,u):O4(.03,u)})()},"&:active":{color:t==="ghost"?e.color.secondary:void 0,background:(()=>{let u=e.color.secondary;return t==="solid"&&(u=e.color.secondary),t==="outline"&&(u=e.button.background),t==="ghost"?e.background.hoverable:e.base==="light"?qn(.02,u):O4(.03,u)})()},"&:focus":{boxShadow:`${Ko(e.color.secondary,1)} 0 0 0 1px inset`,outline:"none"},"> svg":{animation:o&&i!=="none"?`${e.animation[i]} 1000ms ease-out`:""}})),un=l.forwardRef(({padding:e="small",variant:t="ghost",...r},n)=>y.createElement(Sn,{padding:e,variant:t,ref:n,...r}));un.displayName="IconButton";var dx=mr({from:{opacity:0},to:{opacity:1}}),Tz=mr({from:{maxHeight:0},to:{}}),Rz=mr({from:{opacity:0,transform:"translate(-50%, -50%) scale(0.9)"},to:{opacity:1,transform:"translate(-50%, -50%) scale(1)"}}),px=_.div({backgroundColor:"rgba(27, 28, 29, 0.2)",position:"fixed",inset:0,width:"100%",height:"100%",zIndex:10,animation:`${dx} 200ms`}),fx=_.div(({theme:e,width:t,height:r})=>({backgroundColor:e.background.bar,borderRadius:6,boxShadow:"rgba(255, 255, 255, 0.05) 0 0 0 1px inset, rgba(14, 18, 22, 0.35) 0px 10px 38px -10px",position:"fixed",top:"50%",left:"50%",transform:"translate(-50%, -50%)",width:t??740,height:r??"auto",maxWidth:"calc(100% - 40px)",maxHeight:"85vh",overflow:"hidden",zIndex:11,animation:`${Rz} 200ms`,"&:focus-visible":{outline:"none"}})),hx=c(e=>y.createElement(ux,{asChild:!0},y.createElement(un,{...e},y.createElement(u9,null))),"CloseButton"),Bz=_.div({display:"flex",flexDirection:"column",margin:16,gap:16}),mx=_.div({display:"flex",justifyContent:"space-between",gap:16}),gx=_.div({display:"flex",flexDirection:"column",gap:4}),zz=c(e=>y.createElement(mx,null,y.createElement(gx,{...e}),y.createElement(hx,null)),"Header"),$z=_(lx)(({theme:e})=>({margin:0,fontSize:e.typography.size.s3,fontWeight:e.typography.weight.bold})),Oz=_(sx)(({theme:e})=>({position:"relative",zIndex:1,margin:0,fontSize:e.typography.size.s2})),Lz=_.div({display:"flex",flexDirection:"row-reverse",gap:8}),vx=_.div(({theme:e})=>({maxHeight:100,overflow:"auto",animation:`${Tz} 300ms, ${dx} 300ms`,backgroundColor:e.background.critical,color:e.color.lightest,fontSize:e.typography.size.s2,"& > div":{position:"relative",padding:"8px 16px"}})),Mz=c(({children:e,...t})=>y.createElement(vx,{...t},y.createElement("div",null,e)),"Error");function yx({children:e,width:t,height:r,onEscapeKeyDown:n,onInteractOutside:a=c(u=>u.preventDefault(),"onInteractOutside"),className:o,container:i,...s}){return y.createElement(nx,{...s},y.createElement(ax,{container:i},y.createElement(ox,{asChild:!0},y.createElement(px,null)),y.createElement(ix,{asChild:!0,onInteractOutside:a,onEscapeKeyDown:n},y.createElement(fx,{className:o,width:t,height:r},e))))}c(yx,"BaseModal");var ure=Object.assign(yx,cx,{Dialog:d9}),Pz=c(e=>typeof e=="number"?e:Number(e),"toNumber"),Nz=_.div(({theme:e,col:t,row:r=1})=>t?{display:"inline-block",verticalAlign:"inherit","& > *":{marginLeft:t*e.layoutMargin,verticalAlign:"inherit"},[`& > *:first-child${fd}`]:{marginLeft:0}}:{"& > *":{marginTop:r*e.layoutMargin},[`& > *:first-child${fd}`]:{marginTop:0}},({theme:e,outer:t,col:r,row:n})=>{switch(!0){case!!(t&&r):return{marginLeft:t*e.layoutMargin,marginRight:t*e.layoutMargin};case!!(t&&n):return{marginTop:t*e.layoutMargin,marginBottom:t*e.layoutMargin};default:return{}}}),cre=c(({col:e,row:t,outer:r,children:n,...a})=>{let o=Pz(typeof r=="number"||!r?r:e||t);return y.createElement(Nz,{col:e,row:t,outer:o,...a},n)},"Spaced"),Hz=_.div(({theme:e})=>({fontWeight:e.typography.weight.bold})),jz=_.div(),Vz=_.div(({theme:e})=>({padding:30,textAlign:"center",color:e.color.defaultText,fontSize:e.typography.size.s2-1})),dre=c(({children:e,...t})=>{let[r,n]=l.Children.toArray(e);return y.createElement(Vz,{...t},y.createElement(Hz,null,r),n&&y.createElement(jz,null,n))},"Placeholder");Up();function bx(e,t){var r=l.useRef(null),n=l.useRef(null);n.current=t;var a=l.useRef(null);l.useEffect(function(){o()});var o=l.useCallback(function(){var i=a.current,s=n.current,u=i||(s?s instanceof Element?s:s.current:null);r.current&&r.current.element===u&&r.current.subscriber===e||(r.current&&r.current.cleanup&&r.current.cleanup(),r.current={element:u,subscriber:e,cleanup:u?e(u):void 0})},[e]);return l.useEffect(function(){return function(){r.current&&r.current.cleanup&&(r.current.cleanup(),r.current=null)}},[]),l.useCallback(function(i){a.current=i,o()},[o])}c(bx,"useResolvedElement");function L1(e,t,r){return e[t]?e[t][0]?e[t][0][r]:e[t][r]:t==="contentBoxSize"?e.contentRect[r==="inlineSize"?"width":"height"]:void 0}c(L1,"extractSize");function dh(e){e===void 0&&(e={});var t=e.onResize,r=l.useRef(void 0);r.current=t;var n=e.round||Math.round,a=l.useRef(),o=l.useState({width:void 0,height:void 0}),i=o[0],s=o[1],u=l.useRef(!1);l.useEffect(function(){return u.current=!1,function(){u.current=!0}},[]);var d=l.useRef({width:void 0,height:void 0}),p=bx(l.useCallback(function(h){return(!a.current||a.current.box!==e.box||a.current.round!==n)&&(a.current={box:e.box,round:n,instance:new ResizeObserver(function(m){var f=m[0],v=e.box==="border-box"?"borderBoxSize":e.box==="device-pixel-content-box"?"devicePixelContentBoxSize":"contentBoxSize",g=L1(f,v,"inlineSize"),b=L1(f,v,"blockSize"),C=g?n(g):void 0,w=b?n(b):void 0;if(d.current.width!==C||d.current.height!==w){var x={width:C,height:w};d.current.width=C,d.current.height=w,r.current?r.current(x):u.current||s(x)}})}),a.current.instance.observe(h,{box:e.box}),function(){a.current&&a.current.instance.unobserve(h)}},[e.box,n]),e.ref);return l.useMemo(function(){return{ref:p,width:i.width,height:i.height}},[p,i.width,i.height])}c(dh,"useResizeObserver");var Uz=_.div(({scale:e=1,elementHeight:t})=>({height:t||"auto",transformOrigin:"top left",transform:`scale(${1/e})`}));function wx({scale:e,children:t}){let r=l.useRef(null),[n,a]=l.useState(0),o=l.useCallback(({height:i})=>{i&&a(i/e)},[e]);return l.useEffect(()=>{r.current&&a(r.current.getBoundingClientRect().height)},[e]),dh({ref:r,onResize:o}),y.createElement(Uz,{scale:e,elementHeight:n},y.createElement("div",{ref:r,className:"innerZoomElementWrapper"},t))}c(wx,"ZoomElement");var Ex=class extends l.Component{constructor(){super(...arguments);yr(this,"iframe",null)}componentDidMount(){let{iFrameRef:r}=this.props;this.iframe=r.current}shouldComponentUpdate(r){let{scale:n,active:a}=this.props;return n!==r.scale&&this.setIframeInnerZoom(r.scale),a!==r.active&&this.iframe.setAttribute("data-is-storybook",r.active?"true":"false"),r.children.props.src!==this.props.children.props.src}setIframeInnerZoom(r){try{Object.assign(this.iframe.contentDocument.body.style,{width:`${r*100}%`,height:`${r*100}%`,transform:`scale(${1/r})`,transformOrigin:"top left"})}catch{this.setIframeZoom(r)}}setIframeZoom(r){Object.assign(this.iframe.style,{width:`${r*100}%`,height:`${r*100}%`,transform:`scale(${1/r})`,transformOrigin:"top left"})}render(){let{children:r}=this.props;return y.createElement(y.Fragment,null,r)}};c(Ex,"ZoomIFrame");var qz=Ex,Wz={Element:wx,IFrame:qz};_p();var{document:Gz}=zs,Kz=_.strong(({theme:e})=>({color:e.color.orange})),Yz=_.strong(({theme:e})=>({color:e.color.ancillary,textDecoration:"underline"})),U4=_.em(({theme:e})=>({color:e.textMutedColor})),Jz=/(Error): (.*)\n/,Zz=/at (?:(.*) )?\(?(.+)\)?/,Xz=/([^@]+)?(?:\/<)?@(.+)?/,Qz=/([^@]+)?@(.+)?/,e$=c(({error:e})=>{if(!e)return y.createElement(l.Fragment,null,"This error has no stack or message");if(!e.stack)return y.createElement(l.Fragment,null,e.message||"This error has no stack or message");let t=e.stack.toString();t&&e.message&&!t.includes(e.message)&&(t=`Error: ${e.message} - -${t}`);let r=t.match(Jz);if(!r)return y.createElement(l.Fragment,null,t);let[,n,a]=r,o=t.split(/\n/).slice(1),[,...i]=o.map(s=>{let u=s.match(Zz)||s.match(Xz)||s.match(Qz);return u?{name:(u[1]||"").replace("/<",""),location:u[2].replace(Gz.location.origin,"")}:null}).filter(Boolean);return y.createElement(l.Fragment,null,y.createElement("span",null,n),": ",y.createElement(Kz,null,a),y.createElement("br",null),i.map((s,u)=>s!=null&&s.name?y.createElement(l.Fragment,{key:u}," ","at ",y.createElement(Yz,null,s.name)," (",y.createElement(U4,null,s.location),")",y.createElement("br",null)):y.createElement(l.Fragment,{key:u}," ","at ",y.createElement(U4,null,s==null?void 0:s.location),y.createElement("br",null))))},"ErrorFormatter"),t$=_.label(({theme:e})=>({display:"flex",borderBottom:`1px solid ${e.appBorderColor}`,margin:"0 15px",padding:"8px 0","&:last-child":{marginBottom:"3rem"}})),r$=_.span(({theme:e})=>({minWidth:100,fontWeight:e.typography.weight.bold,marginRight:15,display:"flex",justifyContent:"flex-start",alignItems:"center",lineHeight:"16px"})),n$=c(({label:e,children:t,...r})=>y.createElement(t$,{...r},e?y.createElement(r$,null,y.createElement("span",null,e)):null,t),"Field");Ct();Fp();var a$=l.useLayoutEffect,o$=a$,i$=c(function(e){var t=l.useRef(e);return o$(function(){t.current=e}),t},"useLatest"),q4=c(function(e,t){if(typeof e=="function"){e(t);return}e.current=t},"updateRef"),l$=c(function(e,t){var r=l.useRef();return l.useCallback(function(n){e.current=n,r.current&&q4(r.current,null),r.current=t,t&&q4(t,n)},[t])},"useComposedRef"),s$=l$,W4={"min-height":"0","max-height":"none",height:"0",visibility:"hidden",overflow:"hidden",position:"absolute","z-index":"-1000",top:"0",right:"0"},u$=c(function(e){Object.keys(W4).forEach(function(t){e.style.setProperty(t,W4[t],"important")})},"forceHiddenStyles"),G4=u$,Re=null,K4=c(function(e,t){var r=e.scrollHeight;return t.sizingStyle.boxSizing==="border-box"?r+t.borderSize:r-t.paddingSize},"getHeight");function xx(e,t,r,n){r===void 0&&(r=1),n===void 0&&(n=1/0),Re||(Re=document.createElement("textarea"),Re.setAttribute("tabindex","-1"),Re.setAttribute("aria-hidden","true"),G4(Re)),Re.parentNode===null&&document.body.appendChild(Re);var a=e.paddingSize,o=e.borderSize,i=e.sizingStyle,s=i.boxSizing;Object.keys(i).forEach(function(m){var f=m;Re.style[f]=i[f]}),G4(Re),Re.value=t;var u=K4(Re,e);Re.value=t,u=K4(Re,e),Re.value="x";var d=Re.scrollHeight-a,p=d*r;s==="border-box"&&(p=p+a+o),u=Math.max(p,u);var h=d*n;return s==="border-box"&&(h=h+a+o),u=Math.min(h,u),[u,d]}c(xx,"calculateNodeHeight");var Y4=c(function(){},"noop"),c$=c(function(e,t){return e.reduce(function(r,n){return r[n]=t[n],r},{})},"pick"),d$=["borderBottomWidth","borderLeftWidth","borderRightWidth","borderTopWidth","boxSizing","fontFamily","fontSize","fontStyle","fontWeight","letterSpacing","lineHeight","paddingBottom","paddingLeft","paddingRight","paddingTop","tabSize","textIndent","textRendering","textTransform","width","wordBreak"],p$=!!document.documentElement.currentStyle,f$=c(function(e){var t=window.getComputedStyle(e);if(t===null)return null;var r=c$(d$,t),n=r.boxSizing;if(n==="")return null;p$&&n==="border-box"&&(r.width=parseFloat(r.width)+parseFloat(r.borderRightWidth)+parseFloat(r.borderLeftWidth)+parseFloat(r.paddingRight)+parseFloat(r.paddingLeft)+"px");var a=parseFloat(r.paddingBottom)+parseFloat(r.paddingTop),o=parseFloat(r.borderBottomWidth)+parseFloat(r.borderTopWidth);return{sizingStyle:r,paddingSize:a,borderSize:o}},"getSizingData"),h$=f$;function ph(e,t,r){var n=i$(r);l.useLayoutEffect(function(){var a=c(function(o){return n.current(o)},"handler");if(e)return e.addEventListener(t,a),function(){return e.removeEventListener(t,a)}},[])}c(ph,"useListener");var m$=c(function(e){ph(window,"resize",e)},"useWindowResizeListener"),g$=c(function(e){ph(document.fonts,"loadingdone",e)},"useFontsLoadedListener"),v$=["cacheMeasurements","maxRows","minRows","onChange","onHeightChange"],y$=c(function(e,t){var r=e.cacheMeasurements,n=e.maxRows,a=e.minRows,o=e.onChange,i=o===void 0?Y4:o,s=e.onHeightChange,u=s===void 0?Y4:s,d=Os(e,v$),p=d.value!==void 0,h=l.useRef(null),m=s$(h,t),f=l.useRef(0),v=l.useRef(),g=c(function(){var C=h.current,w=r&&v.current?v.current:h$(C);if(w){v.current=w;var x=xx(w,C.value||C.placeholder||"x",a,n),E=x[0],D=x[1];f.current!==E&&(f.current=E,C.style.setProperty("height",E+"px","important"),u(E,{rowHeight:D}))}},"resizeTextarea"),b=c(function(C){p||g(),i(C)},"handleChange");return l.useLayoutEffect(g),m$(g),g$(g),l.createElement("textarea",U({},d,{onChange:b,ref:m}))},"TextareaAutosize"),b$=l.forwardRef(y$),w$={appearance:"none",border:"0 none",boxSizing:"inherit",display:" block",margin:" 0",background:"transparent",padding:0,fontSize:"inherit",position:"relative"},fh=c(({theme:e})=>({...w$,transition:"box-shadow 200ms ease-out, opacity 200ms ease-out",color:e.input.color||"inherit",background:e.input.background,boxShadow:`${e.input.border} 0 0 0 1px inset`,borderRadius:e.input.borderRadius,fontSize:e.typography.size.s2-1,lineHeight:"20px",padding:"6px 10px",boxSizing:"border-box",height:32,'&[type="file"]':{height:"auto"},"&:focus":{boxShadow:`${e.color.secondary} 0 0 0 1px inset`,outline:"none"},"&[disabled]":{cursor:"not-allowed",opacity:.5},"&:-webkit-autofill":{WebkitBoxShadow:`0 0 0 3em ${e.color.lightest} inset`},"&::placeholder":{color:e.textMutedColor,opacity:1}}),"styles"),hh=c(({size:e})=>{switch(e){case"100%":return{width:"100%"};case"flex":return{flex:1};case"auto":default:return{display:"inline"}}},"sizes"),Cx=c(({align:e})=>{switch(e){case"end":return{textAlign:"right"};case"center":return{textAlign:"center"};case"start":default:return{textAlign:"left"}}},"alignment"),mh=c(({valid:e,theme:t})=>{switch(e){case"valid":return{boxShadow:`${t.color.positive} 0 0 0 1px inset !important`};case"error":return{boxShadow:`${t.color.negative} 0 0 0 1px inset !important`};case"warn":return{boxShadow:`${t.color.warning} 0 0 0 1px inset`};case void 0:case null:default:return{}}},"validation"),E$=Object.assign(_(l.forwardRef(c(function({size:e,valid:t,align:r,...n},a){return y.createElement("input",{...n,ref:a})},"Input")))(fh,hh,Cx,mh,{minHeight:32}),{displayName:"Input"}),x$=Object.assign(_(l.forwardRef(c(function({size:e,valid:t,align:r,...n},a){return y.createElement("select",{...n,ref:a})},"Select")))(fh,hh,mh,{height:32,userSelect:"none",paddingRight:20,appearance:"menulist"}),{displayName:"Select"}),C$=Object.assign(_(l.forwardRef(c(function({size:e,valid:t,align:r,...n},a){return y.createElement(b$,{...n,ref:a})},"Textarea")))(fh,hh,Cx,mh,({height:e=400})=>({overflow:"visible",maxHeight:e})),{displayName:"Textarea"}),Di=Object.assign(_.form({boxSizing:"border-box",width:"100%"}),{Field:n$,Input:E$,Select:x$,Textarea:C$,Button:Sn}),D$=l.lazy(()=>Promise.resolve().then(()=>(rh(),th)).then(e=>({default:e.WithTooltip}))),fre=c(e=>y.createElement(l.Suspense,{fallback:y.createElement("div",null)},y.createElement(D$,{...e})),"WithTooltip"),S$=l.lazy(()=>Promise.resolve().then(()=>(rh(),th)).then(e=>({default:e.WithTooltipPure}))),A$=c(e=>y.createElement(l.Suspense,{fallback:y.createElement("div",null)},y.createElement(S$,{...e})),"WithTooltipPure"),k$=_.div(({theme:e})=>({fontWeight:e.typography.weight.bold})),_$=_.span(),F$=_.div(({theme:e})=>({marginTop:8,textAlign:"center","> *":{margin:"0 8px",fontWeight:e.typography.weight.bold}})),I$=_.div(({theme:e})=>({color:e.color.defaultText,lineHeight:"18px"})),T$=_.div({padding:15,width:280,boxSizing:"border-box"}),hre=c(({title:e,desc:t,links:r})=>y.createElement(T$,null,y.createElement(I$,null,e&&y.createElement(k$,null,e),t&&y.createElement(_$,null,t)),r&&y.createElement(F$,null,r.map(({title:n,...a})=>y.createElement(ra,{...a,key:n},n)))),"TooltipMessage"),R$=_.div(({theme:e})=>({padding:"2px 6px",lineHeight:"16px",fontSize:10,fontWeight:e.typography.weight.bold,color:e.color.lightest,boxShadow:"0 0 5px 0 rgba(0, 0, 0, 0.3)",borderRadius:4,whiteSpace:"nowrap",pointerEvents:"none",zIndex:-1,background:e.base==="light"?"rgba(60, 60, 60, 0.9)":"rgba(0, 0, 0, 0.95)",margin:6})),mre=c(({note:e,...t})=>y.createElement(R$,{...t},e),"TooltipNote"),B$=De($s(),1),z$=_(({active:e,loading:t,disabled:r,...n})=>y.createElement("span",{...n}))(({theme:e})=>({color:e.color.defaultText,fontWeight:e.typography.weight.regular}),({active:e,theme:t})=>e?{color:t.color.secondary,fontWeight:t.typography.weight.bold}:{},({loading:e,theme:t})=>e?{display:"inline-block",flex:"none",...t.animation.inlineGlow}:{},({disabled:e,theme:t})=>e?{color:rt(.7,t.color.defaultText)}:{}),$$=_.span({display:"flex","& svg":{height:12,width:12,margin:"3px 0",verticalAlign:"top"},"& path":{fill:"inherit"}}),O$=_.span({flex:1,textAlign:"left",display:"flex",flexDirection:"column"},({isIndented:e})=>e?{marginLeft:24}:{}),L$=_.span(({theme:e})=>({fontSize:"11px",lineHeight:"14px"}),({active:e,theme:t})=>e?{color:t.color.secondary}:{},({theme:e,disabled:t})=>t?{color:e.textMutedColor}:{}),M$=_.span(({active:e,theme:t})=>e?{color:t.color.secondary}:{},()=>({display:"flex",maxWidth:14})),P$=_.a(({theme:e})=>({fontSize:e.typography.size.s1,transition:"all 150ms ease-out",color:e.color.dark,textDecoration:"none",cursor:"pointer",justifyContent:"space-between",lineHeight:"18px",padding:"7px 10px",display:"flex",alignItems:"center","& > * + *":{paddingLeft:10},"&:hover":{background:e.background.hoverable},"&:hover svg":{opacity:1}}),({disabled:e})=>e?{cursor:"not-allowed"}:{}),N$=(0,B$.default)(100)((e,t,r)=>{let n={};return e&&Object.assign(n,{onClick:e}),t&&Object.assign(n,{href:t}),r&&t&&Object.assign(n,{to:t,as:r}),n}),H$=c(({loading:e=!1,title:t=y.createElement("span",null,"Loading state"),center:r=null,right:n=null,active:a=!1,disabled:o=!1,isIndented:i,href:s=void 0,onClick:u=void 0,icon:d,LinkWrapper:p=void 0,...h})=>{let m=N$(u,s,p),f={active:a,disabled:o};return y.createElement(P$,{...f,...h,...m},d&&y.createElement(M$,{...f},d),t||r?y.createElement(O$,{isIndented:!!(!d&&i)},t&&y.createElement(z$,{...f,loading:e},t),r&&y.createElement(L$,{...f},r)):null,n&&y.createElement($$,{...f},n))},"ListItem"),j$=H$,V$=_.div({minWidth:180,overflow:"hidden",overflowY:"auto",maxHeight:15.5*32},({theme:e})=>({borderRadius:e.appBorderRadius})),U$=c(e=>{let{LinkWrapper:t,onClick:r,id:n,isIndented:a,...o}=e,{title:i,href:s,active:u}=o,d=l.useCallback(h=>{r(h,o)},[r]),p=!!r;return y.createElement(j$,{title:i,active:u,href:s,id:`list-item-${n}`,LinkWrapper:t,isIndented:a,...o,...p?{onClick:d}:{}})},"Item"),q$=c(({links:e,LinkWrapper:t=null})=>{let r=e.some(n=>n.icon);return y.createElement(V$,null,e.map(({isGatsby:n,...a})=>y.createElement(U$,{key:a.id,LinkWrapper:n?t:null,isIndented:r,...a})))},"TooltipLinkList"),W$=c(e=>typeof e.props.href=="string","isLink"),G$=c(e=>typeof e.props.href!="string","isButton");function Dx({children:e,...t},r){let n={props:t,ref:r};if(W$(n))return y.createElement("a",{ref:n.ref,...n.props},e);if(G$(n))return y.createElement("button",{ref:n.ref,type:"button",...n.props},e);throw new Error("invalid props")}c(Dx,"ForwardRefFunction");var Sx=l.forwardRef(Dx);Sx.displayName="ButtonOrLink";var vu=_(Sx,{shouldForwardProp:pp})({whiteSpace:"normal",display:"inline-flex",overflow:"hidden",verticalAlign:"top",justifyContent:"center",alignItems:"center",textAlign:"center",textDecoration:"none","&:empty":{display:"none"},"&[hidden]":{display:"none"}},({theme:e})=>({padding:"0 15px",transition:"color 0.2s linear, border-bottom-color 0.2s linear",height:40,lineHeight:"12px",cursor:"pointer",background:"transparent",border:"0 solid transparent",borderTop:"3px solid transparent",borderBottom:"3px solid transparent",fontWeight:"bold",fontSize:13,"&:focus":{outline:"0 none",borderBottomColor:e.barSelectedColor}}),({active:e,textColor:t,theme:r})=>e?{color:t||r.barSelectedColor,borderBottomColor:r.barSelectedColor}:{color:t||r.barTextColor,borderBottomColor:"transparent","&:hover":{color:r.barHoverColor}});vu.displayName="TabButton";var K$=_.div(({theme:e})=>({width:14,height:14,backgroundColor:e.appBorderColor,animation:`${e.animation.glow} 1.5s ease-in-out infinite`})),Y$=_.div(()=>({marginTop:6,padding:7,height:28})),gre=c(()=>y.createElement(Y$,null,y.createElement(K$,null)),"IconButtonSkeleton");Up();var M1=_.div({display:"flex",whiteSpace:"nowrap",flexBasis:"auto",marginLeft:3,marginRight:3},({scrollable:e})=>e?{flexShrink:0}:{},({left:e})=>e?{"& > *":{marginLeft:4}}:{},({right:e})=>e?{marginLeft:30,"& > *":{marginRight:4}}:{});M1.displayName="Side";var J$=c(({children:e,className:t,scrollable:r})=>r?y.createElement(Pl,{vertical:!1,className:t},e):y.createElement("div",{className:t},e),"UnstyledBar"),Ax=_(J$)(({theme:e,scrollable:t=!0})=>({color:e.barTextColor,width:"100%",height:40,flexShrink:0,overflow:t?"auto":"hidden",overflowY:"hidden"}),({theme:e,border:t=!1})=>t?{boxShadow:`${e.appBorderColor} 0 -1px 0 0 inset`,background:e.barBg}:{});Ax.displayName="Bar";var Z$=_.div(({bgColor:e})=>({display:"flex",justifyContent:"space-between",position:"relative",flexWrap:"nowrap",flexShrink:0,height:40,backgroundColor:e||""})),gh=c(({children:e,backgroundColor:t,className:r,...n})=>{let[a,o]=l.Children.toArray(e);return y.createElement(Ax,{className:`sb-bar ${r}`,...n},y.createElement(Z$,{bgColor:t},y.createElement(M1,{scrollable:n.scrollable,left:!0},a),o?y.createElement(M1,{right:!0},o):null))},"FlexBar");gh.displayName="FlexBar";var kx=_.div(({active:e})=>e?{display:"block"}:{display:"none"}),X$=c(e=>l.Children.toArray(e).map(({props:{title:t,id:r,color:n,children:a}})=>{let o=Array.isArray(a)?a[0]:a;return{title:t,id:r,...n?{color:n}:{},render:typeof o=="function"?o:({active:i})=>y.createElement(kx,{active:i,role:"tabpanel"},o)}}),"childrenToList");rh();var Q$=_.span(({theme:e,isActive:t})=>({display:"inline-block",width:0,height:0,marginLeft:8,color:t?e.color.secondary:e.color.mediumdark,borderRight:"3px solid transparent",borderLeft:"3px solid transparent",borderTop:"3px solid",transition:"transform .1s ease-out"})),eO=_(vu)(({active:e,theme:t,preActive:r})=>` - color: ${r||e?t.barSelectedColor:t.barTextColor}; - .addon-collapsible-icon { - color: ${r||e?t.barSelectedColor:t.barTextColor}; - } - &:hover { - color: ${t.barHoverColor}; - .addon-collapsible-icon { - color: ${t.barHoverColor}; - } - } - `);function _x(e){let t=l.useRef(),r=l.useRef(),n=l.useRef(new Map),{width:a=1}=dh({ref:t}),[o,i]=l.useState(e),[s,u]=l.useState([]),d=l.useRef(e),p=l.useCallback(({menuName:m,actions:f})=>{let v=s.some(({active:C})=>C),[g,b]=l.useState(!1);return y.createElement(y.Fragment,null,y.createElement(fs,{interactive:!0,visible:g,onVisibleChange:b,placement:"bottom",delayHide:100,tooltip:y.createElement(q$,{links:s.map(({title:C,id:w,color:x,active:E})=>({id:w,title:C,color:x,active:E,onClick:c(D=>{D.preventDefault(),f.onSelect(w)},"onClick")}))})},y.createElement(eO,{ref:r,active:v,preActive:g,style:{visibility:s.length?"visible":"hidden"},"aria-hidden":!s.length,className:"tabbutton",type:"button",role:"tab"},m,y.createElement(Q$,{className:"addon-collapsible-icon",isActive:v||g}))),s.map(({title:C,id:w,color:x},E)=>{let D=`index-${E}`;return y.createElement(vu,{id:`tabbutton-${py(w)??D}`,style:{visibility:"hidden"},"aria-hidden":!0,tabIndex:-1,ref:S=>{n.current.set(w,S)},className:"tabbutton",type:"button",key:w,textColor:x,role:"tab"},C)}))},[s]),h=l.useCallback(()=>{if(!t.current||!r.current)return;let{x:m,width:f}=t.current.getBoundingClientRect(),{width:v}=r.current.getBoundingClientRect(),g=s.length?m+f-v:m+f,b=[],C=0,w=e.filter(x=>{let{id:E}=x,D=n.current.get(E),{width:S=0}=(D==null?void 0:D.getBoundingClientRect())||{},A=m+C+S>g;return(!A||!D)&&b.push(x),C+=S,A});(b.length!==o.length||d.current!==e)&&(i(b),u(w),d.current=e)},[s.length,e,o]);return l.useLayoutEffect(h,[h,a]),{tabRefs:n,addonsRef:r,tabBarRef:t,visibleList:o,invisibleList:s,AddonTab:p}}c(_x,"useList");var tO=_.div(({theme:e})=>({height:"100%",display:"flex",padding:30,alignItems:"center",justifyContent:"center",flexDirection:"column",gap:15,background:e.background.content})),rO=_.div({display:"flex",flexDirection:"column",gap:4,maxWidth:415}),nO=_.div(({theme:e})=>({fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,textAlign:"center",color:e.textColor})),aO=_.div(({theme:e})=>({fontWeight:e.typography.weight.regular,fontSize:e.typography.size.s2-1,textAlign:"center",color:e.textMutedColor})),Fx=c(({title:e,description:t,footer:r})=>y.createElement(tO,null,y.createElement(rO,null,y.createElement(nO,null,e),t&&y.createElement(aO,null,t)),r),"EmptyTabContent"),oO="/* emotion-disable-server-rendering-unsafe-selector-warning-please-do-not-use-this-the-warning-exists-for-a-reason */",iO=_.div(({theme:e,bordered:t})=>t?{backgroundClip:"padding-box",border:`1px solid ${e.appBorderColor}`,borderRadius:e.appBorderRadius,overflow:"hidden",boxSizing:"border-box"}:{},({absolute:e})=>e?{width:"100%",height:"100%",boxSizing:"border-box",display:"flex",flexDirection:"column"}:{display:"block"}),Ix=_.div({overflow:"hidden","&:first-of-type":{marginLeft:-3},whiteSpace:"nowrap",flexGrow:1});Ix.displayName="TabBar";var lO=_.div({display:"block",position:"relative"},({theme:e})=>({fontSize:e.typography.size.s2-1,background:e.background.content}),({bordered:e,theme:t})=>e?{borderRadius:`0 0 ${t.appBorderRadius-1}px ${t.appBorderRadius-1}px`}:{},({absolute:e,bordered:t})=>e?{height:`calc(100% - ${t?42:40}px)`,position:"absolute",left:0+(t?1:0),right:0+(t?1:0),bottom:0+(t?1:0),top:40+(t?1:0),overflow:"auto",[`& > *:first-child${oO}`]:{position:"absolute",left:0+(t?1:0),right:0+(t?1:0),bottom:0+(t?1:0),top:0+(t?1:0),height:`calc(100% - ${t?2:0}px)`,overflow:"auto"}}:{}),vre=c(({active:e,render:t,children:r})=>y.createElement(kx,{active:e},t?t():r),"TabWrapper"),Tx=l.memo(({children:e,selected:t=null,actions:r,absolute:n=!1,bordered:a=!1,tools:o=null,backgroundColor:i,id:s=null,menuName:u="Tabs",emptyState:d,showToolsWhenEmpty:p})=>{let h=l.useMemo(()=>X$(e).map((C,w)=>({...C,active:t?C.id===t:w===0})),[e,t]),{visibleList:m,tabBarRef:f,tabRefs:v,AddonTab:g}=_x(h),b=d??y.createElement(Fx,{title:"Nothing found"});return!p&&h.length===0?b:y.createElement(iO,{absolute:n,bordered:a,id:s},y.createElement(gh,{scrollable:!1,border:!0,backgroundColor:i},y.createElement(Ix,{style:{whiteSpace:"normal"},ref:f,role:"tablist"},m.map(({title:C,id:w,active:x,color:E},D)=>{let S=`index-${D}`;return y.createElement(vu,{id:`tabbutton-${py(w)??S}`,ref:A=>{v.current.set(w,A)},className:`tabbutton ${x?"tabbutton-active":""}`,type:"button",key:w,active:x,textColor:E,onClick:A=>{A.preventDefault(),r.onSelect(w)},role:"tab"},typeof C=="function"?y.createElement("title",null):C)}),y.createElement(g,{menuName:u,actions:r})),o),y.createElement(lO,{id:"panel-tab-content",bordered:a,absolute:n},h.length?h.map(({id:C,active:w,render:x})=>y.createElement(x,{key:C,active:w},null)):b))});Tx.displayName="Tabs";var P1=class extends l.Component{constructor(r){super(r);yr(this,"handlers",{onSelect:c(r=>this.setState({selected:r}),"onSelect")});this.state={selected:r.initial}}render(){let{bordered:r=!1,absolute:n=!1,children:a,backgroundColor:o,menuName:i}=this.props,{selected:s}=this.state;return y.createElement(Tx,{bordered:r,absolute:n,selected:s,backgroundColor:o,menuName:i,actions:this.handlers},a)}};c(P1,"TabsState"),MA(P1,"defaultProps",{children:[],initial:null,absolute:!1,bordered:!1,backgroundColor:"",menuName:void 0});var sO=P1,Rx=_.span(({theme:e})=>({width:1,height:20,background:e.appBorderColor,marginLeft:2,marginRight:2}),({force:e})=>e?{}:{"& + &":{display:"none"}});Rx.displayName="Separator";var bre=c(e=>e.reduce((t,r,n)=>r?y.createElement(l.Fragment,{key:r.id||r.key||`f-${n}`},t,n>0?y.createElement(Rx,{key:`s-${n}`}):null,r.render()||r):t,null),"interleaveSeparators"),uO=c(e=>{let t=l.useRef();return l.useEffect(()=>{t.current=e},[e]),t.current},"usePrevious"),cO=c((e,t)=>{let r=uO(t);return e?t:r},"useUpdate"),wre=c(({active:e,children:t})=>y.createElement("div",{hidden:!e},cO(e,t)),"AddonPanel");const{deprecate:dO,logger:pO}=__STORYBOOK_MODULE_CLIENT_LOGGER__;var fO=l9,hO=_.svg` - display: inline-block; - shape-rendering: inherit; - vertical-align: middle; - fill: currentColor; - path { - fill: currentColor; - } -`,Ere=c(({icon:e,useSymbol:t,__suppressDeprecationWarning:r=!1,...n})=>{r||dO(`Use of the deprecated Icons ${`(${e})`||""} component detected. Please use the @storybook/icons component directly. For more informations, see the migration notes at https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#icons-is-deprecated`);let a=N1[e]||null;if(!a)return pO.warn(`Use of an unknown prop ${`(${e})`||""} in the Icons component. The Icons component is deprecated. Please use the @storybook/icons component directly. For more informations, see the migration notes at https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#icons-is-deprecated`),null;let o=fO[a];return y.createElement(o,{...n})},"Icons"),xre=l.memo(c(function({icons:e=Object.keys(N1)}){return y.createElement(hO,{viewBox:"0 0 14 14",style:{position:"absolute",width:0,height:0},"data-chromatic":"ignore"},e.map(t=>y.createElement("symbol",{id:`icon--${t}`,key:t},N1[t])))},"Symbols")),N1={user:"UserIcon",useralt:"UserAltIcon",useradd:"UserAddIcon",users:"UsersIcon",profile:"ProfileIcon",facehappy:"FaceHappyIcon",faceneutral:"FaceNeutralIcon",facesad:"FaceSadIcon",accessibility:"AccessibilityIcon",accessibilityalt:"AccessibilityAltIcon",arrowup:"ChevronUpIcon",arrowdown:"ChevronDownIcon",arrowleft:"ChevronLeftIcon",arrowright:"ChevronRightIcon",arrowupalt:"ArrowUpIcon",arrowdownalt:"ArrowDownIcon",arrowleftalt:"ArrowLeftIcon",arrowrightalt:"ArrowRightIcon",expandalt:"ExpandAltIcon",collapse:"CollapseIcon",expand:"ExpandIcon",unfold:"UnfoldIcon",transfer:"TransferIcon",redirect:"RedirectIcon",undo:"UndoIcon",reply:"ReplyIcon",sync:"SyncIcon",upload:"UploadIcon",download:"DownloadIcon",back:"BackIcon",proceed:"ProceedIcon",refresh:"RefreshIcon",globe:"GlobeIcon",compass:"CompassIcon",location:"LocationIcon",pin:"PinIcon",time:"TimeIcon",dashboard:"DashboardIcon",timer:"TimerIcon",home:"HomeIcon",admin:"AdminIcon",info:"InfoIcon",question:"QuestionIcon",support:"SupportIcon",alert:"AlertIcon",email:"EmailIcon",phone:"PhoneIcon",link:"LinkIcon",unlink:"LinkBrokenIcon",bell:"BellIcon",rss:"RSSIcon",sharealt:"ShareAltIcon",share:"ShareIcon",circle:"CircleIcon",circlehollow:"CircleHollowIcon",bookmarkhollow:"BookmarkHollowIcon",bookmark:"BookmarkIcon",hearthollow:"HeartHollowIcon",heart:"HeartIcon",starhollow:"StarHollowIcon",star:"StarIcon",certificate:"CertificateIcon",verified:"VerifiedIcon",thumbsup:"ThumbsUpIcon",shield:"ShieldIcon",basket:"BasketIcon",beaker:"BeakerIcon",hourglass:"HourglassIcon",flag:"FlagIcon",cloudhollow:"CloudHollowIcon",edit:"EditIcon",cog:"CogIcon",nut:"NutIcon",wrench:"WrenchIcon",ellipsis:"EllipsisIcon",check:"CheckIcon",form:"FormIcon",batchdeny:"BatchDenyIcon",batchaccept:"BatchAcceptIcon",controls:"ControlsIcon",plus:"PlusIcon",closeAlt:"CloseAltIcon",cross:"CrossIcon",trash:"TrashIcon",pinalt:"PinAltIcon",unpin:"UnpinIcon",add:"AddIcon",subtract:"SubtractIcon",close:"CloseIcon",delete:"DeleteIcon",passed:"PassedIcon",changed:"ChangedIcon",failed:"FailedIcon",clear:"ClearIcon",comment:"CommentIcon",commentadd:"CommentAddIcon",requestchange:"RequestChangeIcon",comments:"CommentsIcon",lock:"LockIcon",unlock:"UnlockIcon",key:"KeyIcon",outbox:"OutboxIcon",credit:"CreditIcon",button:"ButtonIcon",type:"TypeIcon",pointerdefault:"PointerDefaultIcon",pointerhand:"PointerHandIcon",browser:"BrowserIcon",tablet:"TabletIcon",mobile:"MobileIcon",watch:"WatchIcon",sidebar:"SidebarIcon",sidebaralt:"SidebarAltIcon",sidebaralttoggle:"SidebarAltToggleIcon",sidebartoggle:"SidebarToggleIcon",bottombar:"BottomBarIcon",bottombartoggle:"BottomBarToggleIcon",cpu:"CPUIcon",database:"DatabaseIcon",memory:"MemoryIcon",structure:"StructureIcon",box:"BoxIcon",power:"PowerIcon",photo:"PhotoIcon",component:"ComponentIcon",grid:"GridIcon",outline:"OutlineIcon",photodrag:"PhotoDragIcon",search:"SearchIcon",zoom:"ZoomIcon",zoomout:"ZoomOutIcon",zoomreset:"ZoomResetIcon",eye:"EyeIcon",eyeclose:"EyeCloseIcon",lightning:"LightningIcon",lightningoff:"LightningOffIcon",contrast:"ContrastIcon",switchalt:"SwitchAltIcon",mirror:"MirrorIcon",grow:"GrowIcon",paintbrush:"PaintBrushIcon",ruler:"RulerIcon",stop:"StopIcon",camera:"CameraIcon",video:"VideoIcon",speaker:"SpeakerIcon",play:"PlayIcon",playback:"PlayBackIcon",playnext:"PlayNextIcon",rewind:"RewindIcon",fastforward:"FastForwardIcon",stopalt:"StopAltIcon",sidebyside:"SideBySideIcon",stacked:"StackedIcon",sun:"SunIcon",moon:"MoonIcon",book:"BookIcon",document:"DocumentIcon",copy:"CopyIcon",category:"CategoryIcon",folder:"FolderIcon",print:"PrintIcon",graphline:"GraphLineIcon",calendar:"CalendarIcon",graphbar:"GraphBarIcon",menu:"MenuIcon",menualt:"MenuIcon",filter:"FilterIcon",docchart:"DocChartIcon",doclist:"DocListIcon",markup:"MarkupIcon",bold:"BoldIcon",paperclip:"PaperClipIcon",listordered:"ListOrderedIcon",listunordered:"ListUnorderedIcon",paragraph:"ParagraphIcon",markdown:"MarkdownIcon",repository:"RepoIcon",commit:"CommitIcon",branch:"BranchIcon",pullrequest:"PullRequestIcon",merge:"MergeIcon",apple:"AppleIcon",linux:"LinuxIcon",ubuntu:"UbuntuIcon",windows:"WindowsIcon",storybook:"StorybookIcon",azuredevops:"AzureDevOpsIcon",bitbucket:"BitbucketIcon",chrome:"ChromeIcon",chromatic:"ChromaticIcon",componentdriven:"ComponentDrivenIcon",discord:"DiscordIcon",facebook:"FacebookIcon",figma:"FigmaIcon",gdrive:"GDriveIcon",github:"GithubIcon",gitlab:"GitlabIcon",google:"GoogleIcon",graphql:"GraphqlIcon",medium:"MediumIcon",redux:"ReduxIcon",twitter:"TwitterIcon",youtube:"YoutubeIcon",vscode:"VSCodeIcon"},Cre=c(({alt:e,...t})=>y.createElement("svg",{width:"200px",height:"40px",viewBox:"0 0 200 40",...t,role:"img"},e?y.createElement("title",null,e):null,y.createElement("defs",null,y.createElement("path",{d:"M1.2 36.9L0 3.9c0-1.1.8-2 1.9-2.1l28-1.8a2 2 0 0 1 2.2 1.9 2 2 0 0 1 0 .1v36a2 2 0 0 1-2 2 2 2 0 0 1-.1 0L3.2 38.8a2 2 0 0 1-2-2z",id:"a"})),y.createElement("g",{fill:"none",fillRule:"evenodd"},y.createElement("path",{d:"M53.3 31.7c-1.7 0-3.4-.3-5-.7-1.5-.5-2.8-1.1-3.9-2l1.6-3.5c2.2 1.5 4.6 2.3 7.3 2.3 1.5 0 2.5-.2 3.3-.7.7-.5 1.1-1 1.1-1.9 0-.7-.3-1.3-1-1.7s-2-.8-3.7-1.2c-2-.4-3.6-.9-4.8-1.5-1.1-.5-2-1.2-2.6-2-.5-1-.8-2-.8-3.2 0-1.4.4-2.6 1.2-3.6.7-1.1 1.8-2 3.2-2.6 1.3-.6 2.9-.9 4.7-.9 1.6 0 3.1.3 4.6.7 1.5.5 2.7 1.1 3.5 2l-1.6 3.5c-2-1.5-4.2-2.3-6.5-2.3-1.3 0-2.3.2-3 .8-.8.5-1.2 1.1-1.2 2 0 .5.2 1 .5 1.3.2.3.7.6 1.4.9l2.9.8c2.9.6 5 1.4 6.2 2.4a5 5 0 0 1 2 4.2 6 6 0 0 1-2.5 5c-1.7 1.2-4 1.9-7 1.9zm21-3.6l1.4-.1-.2 3.5-1.9.1c-2.4 0-4.1-.5-5.2-1.5-1.1-1-1.6-2.7-1.6-4.8v-6h-3v-3.6h3V11h4.8v4.6h4v3.6h-4v6c0 1.8.9 2.8 2.6 2.8zm11.1 3.5c-1.6 0-3-.3-4.3-1a7 7 0 0 1-3-2.8c-.6-1.3-1-2.7-1-4.4 0-1.6.4-3 1-4.3a7 7 0 0 1 3-2.8c1.2-.7 2.7-1 4.3-1 1.7 0 3.2.3 4.4 1a7 7 0 0 1 3 2.8c.6 1.2 1 2.7 1 4.3 0 1.7-.4 3.1-1 4.4a7 7 0 0 1-3 2.8c-1.2.7-2.7 1-4.4 1zm0-3.6c2.4 0 3.6-1.6 3.6-4.6 0-1.5-.3-2.6-1-3.4a3.2 3.2 0 0 0-2.6-1c-2.3 0-3.5 1.4-3.5 4.4 0 3 1.2 4.6 3.5 4.6zm21.7-8.8l-2.7.3c-1.3.2-2.3.5-2.8 1.2-.6.6-.9 1.4-.9 2.5v8.2H96V15.7h4.6v2.6c.8-1.8 2.5-2.8 5-3h1.3l.3 4zm14-3.5h4.8L116.4 37h-4.9l3-6.6-6.4-14.8h5l4 10 4-10zm16-.4c1.4 0 2.6.3 3.6 1 1 .6 1.9 1.6 2.5 2.8.6 1.2.9 2.7.9 4.3 0 1.6-.3 3-1 4.3a6.9 6.9 0 0 1-2.4 2.9c-1 .7-2.2 1-3.6 1-1 0-2-.2-3-.7-.8-.4-1.5-1-2-1.9v2.4h-4.7V8.8h4.8v9c.5-.8 1.2-1.4 2-1.9.9-.4 1.8-.6 3-.6zM135.7 28c1.1 0 2-.4 2.6-1.2.6-.8 1-2 1-3.4 0-1.5-.4-2.5-1-3.3s-1.5-1.1-2.6-1.1-2 .3-2.6 1.1c-.6.8-1 2-1 3.3 0 1.5.4 2.6 1 3.4.6.8 1.5 1.2 2.6 1.2zm18.9 3.6c-1.7 0-3.2-.3-4.4-1a7 7 0 0 1-3-2.8c-.6-1.3-1-2.7-1-4.4 0-1.6.4-3 1-4.3a7 7 0 0 1 3-2.8c1.2-.7 2.7-1 4.4-1 1.6 0 3 .3 4.3 1a7 7 0 0 1 3 2.8c.6 1.2 1 2.7 1 4.3 0 1.7-.4 3.1-1 4.4a7 7 0 0 1-3 2.8c-1.2.7-2.7 1-4.3 1zm0-3.6c2.3 0 3.5-1.6 3.5-4.6 0-1.5-.3-2.6-1-3.4a3.2 3.2 0 0 0-2.5-1c-2.4 0-3.6 1.4-3.6 4.4 0 3 1.2 4.6 3.6 4.6zm18 3.6c-1.7 0-3.2-.3-4.4-1a7 7 0 0 1-3-2.8c-.6-1.3-1-2.7-1-4.4 0-1.6.4-3 1-4.3a7 7 0 0 1 3-2.8c1.2-.7 2.7-1 4.4-1 1.6 0 3 .3 4.4 1a7 7 0 0 1 2.9 2.8c.6 1.2 1 2.7 1 4.3 0 1.7-.4 3.1-1 4.4a7 7 0 0 1-3 2.8c-1.2.7-2.7 1-4.3 1zm0-3.6c2.3 0 3.5-1.6 3.5-4.6 0-1.5-.3-2.6-1-3.4a3.2 3.2 0 0 0-2.5-1c-2.4 0-3.6 1.4-3.6 4.4 0 3 1.2 4.6 3.6 4.6zm27.4 3.4h-6l-6-7v7h-4.8V8.8h4.9v13.6l5.8-6.7h5.7l-6.6 7.5 7 8.2z",fill:"currentColor"}),y.createElement("mask",{id:"b",fill:"#fff"},y.createElement("use",{xlinkHref:"#a"})),y.createElement("use",{fill:"#FF4785",fillRule:"nonzero",xlinkHref:"#a"}),y.createElement("path",{d:"M23.7 5L24 .2l3.9-.3.1 4.8a.3.3 0 0 1-.5.2L26 3.8l-1.7 1.4a.3.3 0 0 1-.5-.3zm-5 10c0 .9 5.3.5 6 0 0-5.4-2.8-8.2-8-8.2-5.3 0-8.2 2.8-8.2 7.1 0 7.4 10 7.6 10 11.6 0 1.2-.5 1.9-1.8 1.9-1.6 0-2.2-.9-2.1-3.6 0-.6-6.1-.8-6.3 0-.5 6.7 3.7 8.6 8.5 8.6 4.6 0 8.3-2.5 8.3-7 0-7.9-10.2-7.7-10.2-11.6 0-1.6 1.2-1.8 2-1.8.6 0 2 0 1.9 3z",fill:"#FFF",fillRule:"nonzero",mask:"url(#b)"}))),"StorybookLogo"),Dre=c(e=>y.createElement("svg",{viewBox:"0 0 64 64",...e},y.createElement("title",null,"Storybook icon"),y.createElement("g",{id:"Artboard",stroke:"none",strokeWidth:"1",fill:"none",fillRule:"evenodd"},y.createElement("path",{d:"M8.04798541,58.7875918 L6.07908839,6.32540407 C6.01406344,4.5927838 7.34257463,3.12440831 9.07303814,3.01625434 L53.6958037,0.227331489 C55.457209,0.117243658 56.974354,1.45590096 57.0844418,3.21730626 C57.0885895,3.28366922 57.0906648,3.35014546 57.0906648,3.41663791 L57.0906648,60.5834697 C57.0906648,62.3483119 55.6599776,63.7789992 53.8951354,63.7789992 C53.847325,63.7789992 53.7995207,63.7779262 53.7517585,63.775781 L11.0978899,61.8600599 C9.43669044,61.7854501 8.11034889,60.4492961 8.04798541,58.7875918 Z",id:"path-1",fill:"#FF4785",fillRule:"nonzero"}),y.createElement("path",{d:"M35.9095005,24.1768792 C35.9095005,25.420127 44.2838488,24.8242707 45.4080313,23.9509748 C45.4080313,15.4847538 40.8652557,11.0358878 32.5466666,11.0358878 C24.2280775,11.0358878 19.5673077,15.553972 19.5673077,22.3311017 C19.5673077,34.1346028 35.4965208,34.3605071 35.4965208,40.7987804 C35.4965208,42.606015 34.6115646,43.6790606 32.6646607,43.6790606 C30.127786,43.6790606 29.1248356,42.3834613 29.2428298,37.9783269 C29.2428298,37.0226907 19.5673077,36.7247626 19.2723223,37.9783269 C18.5211693,48.6535354 25.1720308,51.7326752 32.7826549,51.7326752 C40.1572906,51.7326752 45.939005,47.8018145 45.939005,40.6858282 C45.939005,28.035186 29.7738035,28.3740425 29.7738035,22.1051974 C29.7738035,19.5637737 31.6617103,19.2249173 32.7826549,19.2249173 C33.9625966,19.2249173 36.0864917,19.4328883 35.9095005,24.1768792 Z",id:"path9_fill-path",fill:"#FFFFFF",fillRule:"nonzero"}),y.createElement("path",{d:"M44.0461638,0.830433986 L50.1874092,0.446606143 L50.443532,7.7810017 C50.4527198,8.04410717 50.2468789,8.26484453 49.9837734,8.27403237 C49.871115,8.27796649 49.7607078,8.24184808 49.6721567,8.17209069 L47.3089847,6.3104681 L44.5110468,8.43287463 C44.3012992,8.591981 44.0022839,8.55092814 43.8431776,8.34118051 C43.7762017,8.25288717 43.742082,8.14401677 43.7466857,8.03329059 L44.0461638,0.830433986 Z",id:"Path",fill:"#FFFFFF"}))),"StorybookIcon"),mO=mr` - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } -`,gO=_.div(({size:e=32})=>({borderRadius:"50%",cursor:"progress",display:"inline-block",overflow:"hidden",position:"absolute",transition:"all 200ms ease-out",verticalAlign:"top",top:"50%",left:"50%",marginTop:-(e/2),marginLeft:-(e/2),height:e,width:e,zIndex:4,borderWidth:2,borderStyle:"solid",borderColor:"rgba(97, 97, 97, 0.29)",borderTopColor:"rgb(100,100,100)",animation:`${mO} 0.7s linear infinite`,mixBlendMode:"difference"})),J4=_.div({position:"absolute",display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",width:"100%",height:"100%"}),vO=_.div(({theme:e})=>({position:"relative",width:"80%",marginBottom:"0.75rem",maxWidth:300,height:5,borderRadius:5,background:rt(.8,e.color.secondary),overflow:"hidden",cursor:"progress"})),yO=_.div(({theme:e})=>({position:"absolute",top:0,left:0,height:"100%",background:e.color.secondary})),Z4=_.div(({theme:e})=>({minHeight:"2em",fontSize:`${e.typography.size.s1}px`,color:e.barTextColor})),bO=_(s9)(({theme:e})=>({width:20,height:20,marginBottom:"0.5rem",color:e.textMutedColor})),wO=mr` - from { content: "..." } - 33% { content: "." } - 66% { content: ".." } - to { content: "..." } -`,EO=_.span({"&::after":{content:"'...'",animation:`${wO} 1s linear infinite`,animationDelay:"1s",display:"inline-block",width:"1em",height:"auto"}}),xO=c(({progress:e,error:t,size:r,...n})=>{if(t)return y.createElement(J4,{"aria-label":t.toString(),"aria-live":"polite",role:"status",...n},y.createElement(bO,null),y.createElement(Z4,null,t.message));if(e){let{value:a,modules:o}=e,{message:i}=e;return o&&(i+=` ${o.complete} / ${o.total} modules`),y.createElement(J4,{"aria-label":"Content is loading...","aria-live":"polite","aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":a*100,"aria-valuetext":i,role:"progressbar",...n},y.createElement(vO,null,y.createElement(yO,{style:{width:`${a*100}%`}})),y.createElement(Z4,null,i,a<1&&y.createElement(EO,{key:i})))}return y.createElement(gO,{"aria-label":"Content is loading...","aria-live":"polite",role:"status",size:r,...n})},"Loader");function Bx(e){let t={},r=e.split("&");for(let n=0;n{let[n,a]=e.split("?"),o=a?{...Bx(a),...r,id:t}:{...r,id:t};return`${n}?${Object.entries(o).map(i=>`${i[0]}=${i[1]}`).join("&")}`},"getStoryHref"),DO=_.pre` - line-height: 18px; - padding: 11px 1rem; - white-space: pre-wrap; - background: rgba(0, 0, 0, 0.05); - color: ${V.darkest}; - border-radius: 3px; - margin: 1rem 0; - width: 100%; - display: block; - overflow: hidden; - font-family: ${Pt.fonts.mono}; - font-size: ${Pt.size.s2-1}px; -`,Sre=c(({code:e,...t})=>y.createElement(DO,{id:"clipboard-code",...t},e),"ClipboardCode"),SO=i9,AO={};Object.keys(i9).forEach(e=>{AO[e]=l.forwardRef((t,r)=>l.createElement(e,{...t,ref:r}))});function Ea(){return Ea=Object.assign?Object.assign.bind():function(e){for(var t=1;t"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function Sl(e,t,r){return IO()?Sl=Reflect.construct.bind():Sl=function(a,o,i){var s=[null];s.push.apply(s,o);var u=Function.bind.apply(a,s),d=new u;return i&&Yo(d,i.prototype),d},Sl.apply(null,arguments)}function j1(e){var t=typeof Map=="function"?new Map:void 0;return j1=function(n){if(n===null||!FO(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t<"u"){if(t.has(n))return t.get(n);t.set(n,a)}function a(){return Sl(n,arguments,H1(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),Yo(a,n)},j1(e)}var Ht=function(e){_O(t,e);function t(r){var n;return n=e.call(this,"An error occurred. See https://github.com/styled-components/polished/blob/main/src/internalHelpers/errors.md#"+r+" for more information.")||this,kO(n)}return t}(j1(Error));function G0(e){return Math.round(e*255)}function TO(e,t,r){return G0(e)+","+G0(t)+","+G0(r)}function Jo(e,t,r,n){if(n===void 0&&(n=TO),t===0)return n(r,r,r);var a=(e%360+360)%360/60,o=(1-Math.abs(2*r-1))*t,i=o*(1-Math.abs(a%2-1)),s=0,u=0,d=0;a>=0&&a<1?(s=o,u=i):a>=1&&a<2?(s=i,u=o):a>=2&&a<3?(u=o,d=i):a>=3&&a<4?(u=i,d=o):a>=4&&a<5?(s=i,d=o):a>=5&&a<6&&(s=o,d=i);var p=r-o/2,h=s+p,m=u+p,f=d+p;return n(h,m,f)}var X4={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function RO(e){if(typeof e!="string")return e;var t=e.toLowerCase();return X4[t]?"#"+X4[t]:e}var BO=/^#[a-fA-F0-9]{6}$/,zO=/^#[a-fA-F0-9]{8}$/,$O=/^#[a-fA-F0-9]{3}$/,OO=/^#[a-fA-F0-9]{4}$/,K0=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,LO=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,MO=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,PO=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function yu(e){if(typeof e!="string")throw new Ht(3);var t=RO(e);if(t.match(BO))return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16)};if(t.match(zO)){var r=parseFloat((parseInt(""+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16),alpha:r}}if(t.match($O))return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16)};if(t.match(OO)){var n=parseFloat((parseInt(""+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16),alpha:n}}var a=K0.exec(t);if(a)return{red:parseInt(""+a[1],10),green:parseInt(""+a[2],10),blue:parseInt(""+a[3],10)};var o=LO.exec(t.substring(0,50));if(o)return{red:parseInt(""+o[1],10),green:parseInt(""+o[2],10),blue:parseInt(""+o[3],10),alpha:parseFloat(""+o[4])>1?parseFloat(""+o[4])/100:parseFloat(""+o[4])};var i=MO.exec(t);if(i){var s=parseInt(""+i[1],10),u=parseInt(""+i[2],10)/100,d=parseInt(""+i[3],10)/100,p="rgb("+Jo(s,u,d)+")",h=K0.exec(p);if(!h)throw new Ht(4,t,p);return{red:parseInt(""+h[1],10),green:parseInt(""+h[2],10),blue:parseInt(""+h[3],10)}}var m=PO.exec(t.substring(0,50));if(m){var f=parseInt(""+m[1],10),v=parseInt(""+m[2],10)/100,g=parseInt(""+m[3],10)/100,b="rgb("+Jo(f,v,g)+")",C=K0.exec(b);if(!C)throw new Ht(4,t,b);return{red:parseInt(""+C[1],10),green:parseInt(""+C[2],10),blue:parseInt(""+C[3],10),alpha:parseFloat(""+m[4])>1?parseFloat(""+m[4])/100:parseFloat(""+m[4])}}throw new Ht(5)}function NO(e){var t=e.red/255,r=e.green/255,n=e.blue/255,a=Math.max(t,r,n),o=Math.min(t,r,n),i=(a+o)/2;if(a===o)return e.alpha!==void 0?{hue:0,saturation:0,lightness:i,alpha:e.alpha}:{hue:0,saturation:0,lightness:i};var s,u=a-o,d=i>.5?u/(2-a-o):u/(a+o);switch(a){case t:s=(r-n)/u+(r=1?vs(e,t,r):"rgba("+Jo(e,t,r)+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?vs(e.hue,e.saturation,e.lightness):"rgba("+Jo(e.hue,e.saturation,e.lightness)+","+e.alpha+")";throw new Ht(2)}function U1(e,t,r){if(typeof e=="number"&&typeof t=="number"&&typeof r=="number")return V1("#"+Yr(e)+Yr(t)+Yr(r));if(typeof e=="object"&&t===void 0&&r===void 0)return V1("#"+Yr(e.red)+Yr(e.green)+Yr(e.blue));throw new Ht(6)}function lr(e,t,r,n){if(typeof e=="string"&&typeof t=="number"){var a=yu(e);return"rgba("+a.red+","+a.green+","+a.blue+","+t+")"}else{if(typeof e=="number"&&typeof t=="number"&&typeof r=="number"&&typeof n=="number")return n>=1?U1(e,t,r):"rgba("+e+","+t+","+r+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?U1(e.red,e.green,e.blue):"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")"}throw new Ht(7)}var qO=function(t){return typeof t.red=="number"&&typeof t.green=="number"&&typeof t.blue=="number"&&(typeof t.alpha!="number"||typeof t.alpha>"u")},WO=function(t){return typeof t.red=="number"&&typeof t.green=="number"&&typeof t.blue=="number"&&typeof t.alpha=="number"},GO=function(t){return typeof t.hue=="number"&&typeof t.saturation=="number"&&typeof t.lightness=="number"&&(typeof t.alpha!="number"||typeof t.alpha>"u")},KO=function(t){return typeof t.hue=="number"&&typeof t.saturation=="number"&&typeof t.lightness=="number"&&typeof t.alpha=="number"};function $x(e){if(typeof e!="object")throw new Ht(8);if(WO(e))return lr(e);if(qO(e))return U1(e);if(KO(e))return UO(e);if(GO(e))return VO(e);throw new Ht(8)}function Ox(e,t,r){return function(){var a=r.concat(Array.prototype.slice.call(arguments));return a.length>=t?e.apply(this,a):Ox(e,t,a)}}function bu(e){return Ox(e,e.length,[])}function wu(e,t,r){return Math.max(e,Math.min(t,r))}function YO(e,t){if(t==="transparent")return t;var r=zx(t);return $x(Ea({},r,{lightness:wu(0,1,r.lightness-parseFloat(e))}))}var JO=bu(YO),$t=JO;function ZO(e,t){if(t==="transparent")return t;var r=zx(t);return $x(Ea({},r,{lightness:wu(0,1,r.lightness+parseFloat(e))}))}var XO=bu(ZO),Jr=XO;function QO(e,t){if(t==="transparent")return t;var r=yu(t),n=typeof r.alpha=="number"?r.alpha:1,a=Ea({},r,{alpha:wu(0,1,(n*100+parseFloat(e)*100)/100)});return lr(a)}var eL=bu(QO),Xi=eL;function tL(e,t){if(t==="transparent")return t;var r=yu(t),n=typeof r.alpha=="number"?r.alpha:1,a=Ea({},r,{alpha:wu(0,1,+(n*100-parseFloat(e)*100).toFixed(2)/100)});return lr(a)}var rL=bu(tL),ie=rL,nL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M6 3.5a.5.5 0 01.5.5v1.5H8a.5.5 0 010 1H6.5V8a.5.5 0 01-1 0V6.5H4a.5.5 0 010-1h1.5V4a.5.5 0 01.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.5 4.5 0 019 0z",fill:e}))),aL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4 5.5a.5.5 0 000 1h4a.5.5 0 000-1H4z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 11.5c1.35 0 2.587-.487 3.544-1.294a.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 106 11.5zm0-1a4.5 4.5 0 100-9 4.5 4.5 0 000 9z",fill:e}))),oL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.5 2.837V1.5a.5.5 0 00-1 0V4a.5.5 0 00.5.5h2.5a.5.5 0 000-1H2.258a4.5 4.5 0 11-.496 4.016.5.5 0 10-.942.337 5.502 5.502 0 008.724 2.353.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 101.5 2.837z",fill:e}))),iL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7 9.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7l-.21.293C13.669 7.465 10.739 11.5 7 11.5S.332 7.465.21 7.293L0 7l.21-.293C.331 6.536 3.261 2.5 7 2.5s6.668 4.036 6.79 4.207L14 7zM2.896 5.302A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5c1.518 0 2.958-.83 4.104-1.802A12.72 12.72 0 0012.755 7c-.297-.37-.875-1.04-1.65-1.698C9.957 4.33 8.517 3.5 7 3.5c-1.519 0-2.958.83-4.104 1.802z",fill:e}))),lL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11zM11.104 8.698c-.177.15-.362.298-.553.439l.714.714a13.25 13.25 0 002.526-2.558L14 7l-.21-.293C13.669 6.536 10.739 2.5 7 2.5c-.89 0-1.735.229-2.506.58l.764.763A4.859 4.859 0 017 3.5c1.518 0 2.958.83 4.104 1.802A12.724 12.724 0 0112.755 7a12.72 12.72 0 01-1.65 1.698zM.21 6.707c.069-.096 1.03-1.42 2.525-2.558l.714.714c-.191.141-.376.288-.553.439A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5a4.86 4.86 0 001.742-.344l.764.764c-.772.351-1.616.58-2.506.58C3.262 11.5.332 7.465.21 7.293L0 7l.21-.293z",fill:e}),l.createElement("path",{d:"M4.5 7c0-.322.061-.63.172-.914l3.242 3.242A2.5 2.5 0 014.5 7zM9.328 7.914L6.086 4.672a2.5 2.5 0 013.241 3.241z",fill:e}))),sL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M2.5 10a.5.5 0 100-1 .5.5 0 000 1z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4a2 2 0 012-2h6a2 2 0 012 2v.5l3.189-2.391A.5.5 0 0114 2.5v9a.5.5 0 01-.804.397L10 9.5v.5a2 2 0 01-2 2H2a2 2 0 01-2-2V4zm9 0v1.5a.5.5 0 00.8.4L13 3.5v7L9.8 8.1a.5.5 0 00-.8.4V10a1 1 0 01-1 1H2a1 1 0 01-1-1V4a1 1 0 011-1h6a1 1 0 011 1z",fill:e}))),q1=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M4 5.5a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5zM4.5 7.5a.5.5 0 000 1h5a.5.5 0 000-1h-5zM4 10.5a.5.5 0 01.5-.5h5a.5.5 0 010 1h-5a.5.5 0 01-.5-.5z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 0a.5.5 0 00-.5.5v13a.5.5 0 00.5.5h11a.5.5 0 00.5-.5V3.207a.5.5 0 00-.146-.353L10.146.146A.5.5 0 009.793 0H1.5zM2 1h7.5v2a.5.5 0 00.5.5h2V13H2V1z",fill:e}))),Are=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M8.982 1.632a.5.5 0 00-.964-.263l-3 11a.5.5 0 10.964.263l3-11zM3.32 3.616a.5.5 0 01.064.704L1.151 7l2.233 2.68a.5.5 0 11-.768.64l-2.5-3a.5.5 0 010-.64l2.5-3a.5.5 0 01.704-.064zM10.68 3.616a.5.5 0 00-.064.704L12.849 7l-2.233 2.68a.5.5 0 00.768.64l2.5-3a.5.5 0 000-.64l-2.5-3a.5.5 0 00-.704-.064z",fill:e}))),uL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M7 3a.5.5 0 01.5.5v3h3a.5.5 0 010 1h-3v3a.5.5 0 01-1 0v-3h-3a.5.5 0 010-1h3v-3A.5.5 0 017 3z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 14A7 7 0 107 0a7 7 0 000 14zm0-1A6 6 0 107 1a6 6 0 000 12z",fill:e}))),cL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.5 6.5a.5.5 0 000 1h7a.5.5 0 000-1h-7z",fill:e}),l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:e}))),dL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.841 2.159a2.25 2.25 0 00-3.182 0l-2.5 2.5a2.25 2.25 0 000 3.182.5.5 0 01-.707.707 3.25 3.25 0 010-4.596l2.5-2.5a3.25 3.25 0 014.596 4.596l-2.063 2.063a4.27 4.27 0 00-.094-1.32l1.45-1.45a2.25 2.25 0 000-3.182z",fill:e}),l.createElement("path",{d:"M3.61 7.21c-.1-.434-.132-.88-.095-1.321L1.452 7.952a3.25 3.25 0 104.596 4.596l2.5-2.5a3.25 3.25 0 000-4.596.5.5 0 00-.707.707 2.25 2.25 0 010 3.182l-2.5 2.5A2.25 2.25 0 112.159 8.66l1.45-1.45z",fill:e}))),pL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.146 4.604l5.5 5.5a.5.5 0 00.708 0l5.5-5.5a.5.5 0 00-.708-.708L7 9.043 1.854 3.896a.5.5 0 10-.708.708z",fill:e}))),fL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M11.104 7.354l-5.5 5.5a.5.5 0 01-.708-.708L10.043 7 4.896 1.854a.5.5 0 11.708-.708l5.5 5.5a.5.5 0 010 .708z",fill:e}))),hL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.854 9.104a.5.5 0 11-.708-.708l3.5-3.5a.5.5 0 01.708 0l3.5 3.5a.5.5 0 01-.708.708L7 5.957 3.854 9.104z",fill:e}))),Lx=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M3.854 4.896a.5.5 0 10-.708.708l3.5 3.5a.5.5 0 00.708 0l3.5-3.5a.5.5 0 00-.708-.708L7 8.043 3.854 4.896z",fill:e}))),mL=l.forwardRef(({color:e="currentColor",size:t=14,...r},n)=>l.createElement("svg",{width:t,height:t,viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",ref:n,...r},l.createElement("path",{d:"M1.146 3.854a.5.5 0 010-.708l2-2a.5.5 0 11.708.708L2.707 3h6.295A4 4 0 019 11H3a.5.5 0 010-1h6a3 3 0 100-6H2.707l1.147 1.146a.5.5 0 11-.708.708l-2-2z",fill:e})));function gL(e,t){for(var r=-1,n=e==null?0:e.length,a=Array(n);++r-1}var RL=TL,BL=Eu;function zL(e,t){var r=this.__data__,n=BL(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this}var $L=zL,OL=yL,LL=AL,ML=FL,PL=RL,NL=$L;function $a(e){var t=-1,r=e==null?0:e.length;for(this.clear();++ts))return!1;var d=o.get(e),p=o.get(t);if(d&&p)return d==t&&p==e;var h=-1,m=!0,f=r&JP?new WP:void 0;for(o.set(e,t),o.set(t,e);++h-1&&e%1==0&&e-1&&e%1==0&&e<=JN}var Sh=ZN,XN=Cs,QN=Sh,eH=gn,tH="[object Arguments]",rH="[object Array]",nH="[object Boolean]",aH="[object Date]",oH="[object Error]",iH="[object Function]",lH="[object Map]",sH="[object Number]",uH="[object Object]",cH="[object RegExp]",dH="[object Set]",pH="[object String]",fH="[object WeakMap]",hH="[object ArrayBuffer]",mH="[object DataView]",gH="[object Float32Array]",vH="[object Float64Array]",yH="[object Int8Array]",bH="[object Int16Array]",wH="[object Int32Array]",EH="[object Uint8Array]",xH="[object Uint8ClampedArray]",CH="[object Uint16Array]",DH="[object Uint32Array]",ae={};ae[gH]=ae[vH]=ae[yH]=ae[bH]=ae[wH]=ae[EH]=ae[xH]=ae[CH]=ae[DH]=!0;ae[tH]=ae[rH]=ae[hH]=ae[nH]=ae[mH]=ae[aH]=ae[oH]=ae[iH]=ae[lH]=ae[sH]=ae[uH]=ae[cH]=ae[dH]=ae[pH]=ae[fH]=!1;function SH(e){return eH(e)&&QN(e.length)&&!!ae[XN(e)]}var AH=SH;function kH(e){return function(t){return e(t)}}var Ah=kH,ws={exports:{}};ws.exports;(function(e,t){var r=DD,n=t&&!t.nodeType&&t,a=n&&!0&&e&&!e.nodeType&&e,o=a&&a.exports===n,i=o&&r.process,s=function(){try{var u=a&&a.require&&a.require("util").types;return u||i&&i.binding&&i.binding("util")}catch{}}();e.exports=s})(ws,ws.exports);var kh=ws.exports,_H=AH,FH=Ah,l3=kh,s3=l3&&l3.isTypedArray,IH=s3?FH(s3):_H,Yx=IH,TH=$N,RH=Kx,BH=hr,zH=Ch,$H=Dh,OH=Yx,LH=Object.prototype,MH=LH.hasOwnProperty;function PH(e,t){var r=BH(e),n=!r&&RH(e),a=!r&&!n&&zH(e),o=!r&&!n&&!a&&OH(e),i=r||n||a||o,s=i?TH(e.length,String):[],u=s.length;for(var d in e)(t||MH.call(e,d))&&!(i&&(d=="length"||a&&(d=="offset"||d=="parent")||o&&(d=="buffer"||d=="byteLength"||d=="byteOffset")||$H(d,u)))&&s.push(d);return s}var Jx=PH,NH=Object.prototype;function HH(e){var t=e&&e.constructor,r=typeof t=="function"&&t.prototype||NH;return e===r}var _h=HH,jH=SD,VH=jH(Object.keys,Object),UH=VH,qH=_h,WH=UH,GH=Object.prototype,KH=GH.hasOwnProperty;function YH(e){if(!qH(e))return WH(e);var t=[];for(var r in Object(e))KH.call(e,r)&&r!="constructor"&&t.push(r);return t}var JH=YH,ZH=fy,XH=Sh;function QH(e){return e!=null&&XH(e.length)&&!ZH(e)}var Zx=QH,ej=Jx,tj=JH,rj=Zx;function nj(e){return rj(e)?ej(e):tj(e)}var Su=nj,aj=qx,oj=xh,ij=Su;function lj(e){return aj(e,ij,oj)}var Xx=lj,u3=Xx,sj=1,uj=Object.prototype,cj=uj.hasOwnProperty;function dj(e,t,r,n,a,o){var i=r&sj,s=u3(e),u=s.length,d=u3(t),p=d.length;if(u!=p&&!i)return!1;for(var h=u;h--;){var m=s[h];if(!(i?m in t:cj.call(t,m)))return!1}var f=o.get(e),v=o.get(t);if(f&&v)return f==t&&v==e;var g=!0;o.set(e,t),o.set(t,e);for(var b=i;++h(e[t.toLowerCase()]=t,e),{for:"htmlFor"}),I3={amp:"&",apos:"'",gt:">",lt:"<",nbsp:" ",quot:"“"},Lq=["style","script"],Mq=/([-A-Z0-9_:]+)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|(?:\{((?:\\.|{[^}]*?}|[^}])*)\})))?/gi,Pq=/mailto:/i,Nq=/\n{2,}$/,cC=/^(\s*>[\s\S]*?)(?=\n{2,})/,Hq=/^ *> ?/gm,jq=/^ {2,}\n/,Vq=/^(?:( *[-*_])){3,} *(?:\n *)+\n/,dC=/^\s*(`{3,}|~{3,}) *(\S+)?([^\n]*?)?\n([\s\S]+?)\s*\1 *(?:\n *)*\n?/,pC=/^(?: {4}[^\n]+\n*)+(?:\n *)+\n?/,Uq=/^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,qq=/^(?:\n *)*\n/,Wq=/\r\n?/g,Gq=/^\[\^([^\]]+)](:(.*)((\n+ {4,}.*)|(\n(?!\[\^).+))*)/,Kq=/^\[\^([^\]]+)]/,Yq=/\f/g,Jq=/^---[ \t]*\n(.|\n)*\n---[ \t]*\n/,Zq=/^\s*?\[(x|\s)\]/,fC=/^ *(#{1,6}) *([^\n]+?)(?: +#*)?(?:\n *)*(?:\n|$)/,hC=/^ *(#{1,6}) +([^\n]+?)(?: +#*)?(?:\n *)*(?:\n|$)/,mC=/^([^\n]+)\n *(=|-){3,} *(?:\n *)+\n/,Z1=/^ *(?!<[a-z][^ >/]* ?\/>)<([a-z][^ >/]*) ?((?:[^>]*[^/])?)>\n?(\s*(?:<\1[^>]*?>[\s\S]*?<\/\1>|(?!<\1\b)[\s\S])*?)<\/\1>(?!<\/\1>)\n*/i,Xq=/&([a-z0-9]+|#[0-9]{1,6}|#x[0-9a-fA-F]{1,6});/gi,gC=/^)/,Qq=/^(data|aria|x)-[a-z_][a-z\d_.-]*$/,X1=/^ *<([a-z][a-z0-9:]*)(?:\s+((?:<.*?>|[^>])*))?\/?>(?!<\/\1>)(\s*\n)?/i,eW=/^\{.*\}$/,tW=/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,rW=/^<([^ >]+@[^ >]+)>/,nW=/^<([^ >]+:\/[^ >]+)>/,aW=/-([a-z])?/gi,vC=/^(.*\|.*)\n(?: *(\|? *[-:]+ *\|[-| :]*)\n((?:.*\|.*\n)*))?\n?/,oW=/^\[([^\]]*)\]:\s+]+)>?\s*("([^"]*)")?/,iW=/^!\[([^\]]*)\] ?\[([^\]]*)\]/,lW=/^\[([^\]]*)\] ?\[([^\]]*)\]/,sW=/(\[|\])/g,uW=/(\n|^[-*]\s|^#|^ {2,}|^-{2,}|^>\s)/,cW=/\t/g,dW=/(^ *\||\| *$)/g,pW=/^ *:-+: *$/,fW=/^ *:-+ *$/,hW=/^ *-+: *$/,_u="((?:\\[.*?\\][([].*?[)\\]]|<.*?>(?:.*?<.*?>)?|`.*?`|~~.*?~~|==.*?==|.|\\n)*?)",mW=new RegExp(`^([*_])\\1${_u}\\1\\1(?!\\1)`),gW=new RegExp(`^([*_])${_u}\\1(?!\\1|\\w)`),vW=new RegExp(`^==${_u}==`),yW=new RegExp(`^~~${_u}~~`),bW=/^\\([^0-9A-Za-z\s])/,wW=/^[\s\S]+?(?=[^0-9A-Z\s\u00c0-\uffff&#;.()'"]|\d+\.|\n\n| {2,}\n|\w+:\S|$)/i,EW=/^\n+/,xW=/^([ \t]*)/,CW=/\\([^\\])/g,T3=/ *\n+$/,DW=/(?:^|\n)( *)$/,$h="(?:\\d+\\.)",Oh="(?:[*+-])";function yC(e){return"( *)("+(e===1?$h:Oh)+") +"}const bC=yC(1),wC=yC(2);function EC(e){return new RegExp("^"+(e===1?bC:wC))}const SW=EC(1),AW=EC(2);function xC(e){return new RegExp("^"+(e===1?bC:wC)+"[^\\n]*(?:\\n(?!\\1"+(e===1?$h:Oh)+" )[^\\n]*)*(\\n|$)","gm")}const CC=xC(1),DC=xC(2);function SC(e){const t=e===1?$h:Oh;return new RegExp("^( *)("+t+") [\\s\\S]+?(?:\\n{2,}(?! )(?!\\1"+t+" (?!"+t+" ))\\n*|\\s*\\n*$)")}const AC=SC(1),kC=SC(2);function R3(e,t){const r=t===1,n=r?AC:kC,a=r?CC:DC,o=r?SW:AW;return{match(i,s,u){const d=DW.exec(u);return d&&(s.list||!s.inline&&!s.simple)?n.exec(i=d[1]+i):null},order:1,parse(i,s,u){const d=r?+i[2]:void 0,p=i[0].replace(Nq,` -`).match(a);let h=!1;return{items:p.map(function(m,f){const v=o.exec(m)[0].length,g=new RegExp("^ {1,"+v+"}","gm"),b=m.replace(g,"").replace(o,""),C=f===p.length-1,w=b.indexOf(` - -`)!==-1||C&&h;h=w;const x=u.inline,E=u.list;let D;u.list=!0,w?(u.inline=!1,D=b.replace(T3,` - -`)):(u.inline=!0,D=b.replace(T3,""));const S=s(D,u);return u.inline=x,u.list=E,S}),ordered:r,start:d}},render:(i,s,u)=>e(i.ordered?"ol":"ul",{key:u.key,start:i.type==="20"?i.start:void 0},i.items.map(function(d,p){return e("li",{key:p},s(d,u))}))}}const kW=new RegExp(`^\\[((?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*)\\]\\(\\s*?(?:\\s+['"]([\\s\\S]*?)['"])?\\s*\\)`),_W=/^!\[(.*?)\]\( *((?:\([^)]*\)|[^() ])*) *"?([^)"]*)?"?\)/,_C=[cC,dC,pC,fC,mC,hC,gC,vC,CC,AC,DC,kC],FW=[..._C,/^[^\n]+(?: \n|\n{2,})/,Z1,X1];function IW(e){return e.replace(/[ÀÁÂÃÄÅàáâãäåæÆ]/g,"a").replace(/[çÇ]/g,"c").replace(/[ðÐ]/g,"d").replace(/[ÈÉÊËéèêë]/g,"e").replace(/[ÏïÎîÍíÌì]/g,"i").replace(/[Ññ]/g,"n").replace(/[øØœŒÕõÔôÓóÒò]/g,"o").replace(/[ÜüÛûÚúÙù]/g,"u").replace(/[ŸÿÝý]/g,"y").replace(/[^a-z0-9- ]/gi,"").replace(/ /gi,"-").toLowerCase()}function TW(e){return hW.test(e)?"right":pW.test(e)?"center":fW.test(e)?"left":null}function B3(e,t,r,n){const a=r.inTable;r.inTable=!0;let o=e.trim().split(/( *(?:`[^`]*`|<.*?>.*?<\/.*?>(?!<\/.*?>)|\\\||\|) *)/).reduce((s,u)=>(u.trim()==="|"?s.push(n?{type:"26"}:{type:"27",text:u}):u!==""&&s.push.apply(s,t(u,r)),s),[]);r.inTable=a;let i=[[]];return o.forEach(function(s,u){s.type==="26"?u!==0&&u!==o.length-1&&i.push([]):(s.type!=="27"||o[u+1]!=null&&o[u+1].type!=="26"||(s.text=s.text.trimEnd()),i[i.length-1].push(s))}),i}function RW(e,t,r){r.inline=!0;const n=e[2]?e[2].replace(dW,"").split("|").map(TW):[],a=e[3]?function(i,s,u){return i.trim().split(` -`).map(function(d){return B3(d,s,u,!0)})}(e[3],t,r):[],o=B3(e[1],t,r,!!a.length);return r.inline=!1,a.length?{align:n,cells:a,header:o,type:"25"}:{children:o,type:"21"}}function z3(e,t){return e.align[t]==null?{}:{textAlign:e.align[t]}}function wr(e){return function(t,r){return r.inline?e.exec(t):null}}function Er(e){return function(t,r){return r.inline||r.simple?e.exec(t):null}}function ar(e){return function(t,r){return r.inline||r.simple?null:e.exec(t)}}function uo(e){return function(t){return e.exec(t)}}function BW(e,t,r){if(t.inline||t.simple||r&&!r.endsWith(` -`))return null;let n="";e.split(` -`).every(o=>!_C.some(i=>i.test(o))&&(n+=o+` -`,o.trim()));const a=n.trimEnd();return a==""?null:[n,a]}function Mn(e){try{if(decodeURIComponent(e).replace(/[^A-Za-z0-9/:]/g,"").match(/^\s*(javascript|vbscript|data(?!:image)):/i))return}catch{return null}return e}function $3(e){return e.replace(CW,"$1")}function Al(e,t,r){const n=r.inline||!1,a=r.simple||!1;r.inline=!0,r.simple=!0;const o=e(t,r);return r.inline=n,r.simple=a,o}function zW(e,t,r){const n=r.inline||!1,a=r.simple||!1;r.inline=!1,r.simple=!0;const o=e(t,r);return r.inline=n,r.simple=a,o}function $W(e,t,r){const n=r.inline||!1;r.inline=!1;const a=e(t,r);return r.inline=n,a}const Q0=(e,t,r)=>({children:Al(t,e[1],r)});function ed(){return{}}function td(){return null}function OW(...e){return e.filter(Boolean).join(" ")}function rd(e,t,r){let n=e;const a=t.split(".");for(;a.length&&(n=n[a[0]],n!==void 0);)a.shift();return n||r}function LW(e="",t={}){t.overrides=t.overrides||{},t.slugify=t.slugify||IW,t.namedCodesToUnicode=t.namedCodesToUnicode?Xr({},I3,t.namedCodesToUnicode):I3;const r=t.createElement||l.createElement;function n(f,v,...g){const b=rd(t.overrides,`${f}.props`,{});return r(function(C,w){const x=rd(w,C);return x?typeof x=="function"||typeof x=="object"&&"render"in x?x:rd(w,`${C}.component`,C):C}(f,t.overrides),Xr({},v,b,{className:OW(v==null?void 0:v.className,b.className)||void 0}),...g)}function a(f){f=f.replace(Jq,"");let v=!1;t.forceInline?v=!0:t.forceBlock||(v=uW.test(f)===!1);const g=p(d(v?f:`${f.trimEnd().replace(EW,"")} - -`,{inline:v}));for(;typeof g[g.length-1]=="string"&&!g[g.length-1].trim();)g.pop();if(t.wrapper===null)return g;const b=t.wrapper||(v?"span":"div");let C;if(g.length>1||t.forceWrapper)C=g;else{if(g.length===1)return C=g[0],typeof C=="string"?n("span",{key:"outer"},C):C;C=null}return l.createElement(b,{key:"outer"},C)}function o(f){const v=f.match(Mq);return v?v.reduce(function(g,b,C){const w=b.indexOf("=");if(w!==-1){const x=function(A){return A.indexOf("-")!==-1&&A.match(Qq)===null&&(A=A.replace(aW,function(k,F){return F.toUpperCase()})),A}(b.slice(0,w)).trim(),E=function(A){const k=A[0];return(k==='"'||k==="'")&&A.length>=2&&A[A.length-1]===k?A.slice(1,-1):A}(b.slice(w+1).trim()),D=F3[x]||x,S=g[D]=function(A,k){return A==="style"?k.split(/;\s?/).reduce(function(F,T){const R=T.slice(0,T.indexOf(":"));return F[R.trim().replace(/(-[a-z])/g,$=>$[1].toUpperCase())]=T.slice(R.length+1).trim(),F},{}):A==="href"||A==="src"?Mn(k):(k.match(eW)&&(k=k.slice(1,k.length-1)),k==="true"||k!=="false"&&k)}(x,E);typeof S=="string"&&(Z1.test(S)||X1.test(S))&&(g[D]=l.cloneElement(a(S.trim()),{key:C}))}else b!=="style"&&(g[F3[b]||b]=!0);return g},{}):null}const i=[],s={},u={0:{match:ar(cC),order:1,parse:(f,v,g)=>({children:v(f[0].replace(Hq,""),g)}),render:(f,v,g)=>n("blockquote",{key:g.key},v(f.children,g))},1:{match:uo(jq),order:1,parse:ed,render:(f,v,g)=>n("br",{key:g.key})},2:{match:ar(Vq),order:1,parse:ed,render:(f,v,g)=>n("hr",{key:g.key})},3:{match:ar(pC),order:0,parse:f=>({lang:void 0,text:f[0].replace(/^ {4}/gm,"").replace(/\n+$/,"")}),render:(f,v,g)=>n("pre",{key:g.key},n("code",Xr({},f.attrs,{className:f.lang?`lang-${f.lang}`:""}),f.text))},4:{match:ar(dC),order:0,parse:f=>({attrs:o(f[3]||""),lang:f[2]||void 0,text:f[4],type:"3"})},5:{match:Er(Uq),order:3,parse:f=>({text:f[2]}),render:(f,v,g)=>n("code",{key:g.key},f.text)},6:{match:ar(Gq),order:0,parse:f=>(i.push({footnote:f[2],identifier:f[1]}),{}),render:td},7:{match:wr(Kq),order:1,parse:f=>({target:`#${t.slugify(f[1])}`,text:f[1]}),render:(f,v,g)=>n("a",{key:g.key,href:Mn(f.target)},n("sup",{key:g.key},f.text))},8:{match:wr(Zq),order:1,parse:f=>({completed:f[1].toLowerCase()==="x"}),render:(f,v,g)=>n("input",{checked:f.completed,key:g.key,readOnly:!0,type:"checkbox"})},9:{match:ar(t.enforceAtxHeadings?hC:fC),order:1,parse:(f,v,g)=>({children:Al(v,f[2],g),id:t.slugify(f[2]),level:f[1].length}),render:(f,v,g)=>n(`h${f.level}`,{id:f.id,key:g.key},v(f.children,g))},10:{match:ar(mC),order:0,parse:(f,v,g)=>({children:Al(v,f[1],g),level:f[2]==="="?1:2,type:"9"})},11:{match:uo(Z1),order:1,parse(f,v,g){const[,b]=f[3].match(xW),C=new RegExp(`^${b}`,"gm"),w=f[3].replace(C,""),x=(E=w,FW.some(k=>k.test(E))?$W:Al);var E;const D=f[1].toLowerCase(),S=Lq.indexOf(D)!==-1,A={attrs:o(f[2]),noInnerParse:S,tag:(S?D:f[1]).trim()};return g.inAnchor=g.inAnchor||D==="a",S?A.text=f[3]:A.children=x(v,w,g),g.inAnchor=!1,A},render:(f,v,g)=>n(f.tag,Xr({key:g.key},f.attrs),f.text||v(f.children,g))},13:{match:uo(X1),order:1,parse:f=>({attrs:o(f[2]||""),tag:f[1].trim()}),render:(f,v,g)=>n(f.tag,Xr({},f.attrs,{key:g.key}))},12:{match:uo(gC),order:1,parse:()=>({}),render:td},14:{match:Er(_W),order:1,parse:f=>({alt:f[1],target:$3(f[2]),title:f[3]}),render:(f,v,g)=>n("img",{key:g.key,alt:f.alt||void 0,title:f.title||void 0,src:Mn(f.target)})},15:{match:wr(kW),order:3,parse:(f,v,g)=>({children:zW(v,f[1],g),target:$3(f[2]),title:f[3]}),render:(f,v,g)=>n("a",{key:g.key,href:Mn(f.target),title:f.title},v(f.children,g))},16:{match:wr(nW),order:0,parse:f=>({children:[{text:f[1],type:"27"}],target:f[1],type:"15"})},17:{match:(f,v)=>v.inAnchor?null:wr(tW)(f,v),order:0,parse:f=>({children:[{text:f[1],type:"27"}],target:f[1],title:void 0,type:"15"})},18:{match:wr(rW),order:0,parse(f){let v=f[1],g=f[1];return Pq.test(g)||(g="mailto:"+g),{children:[{text:v.replace("mailto:",""),type:"27"}],target:g,type:"15"}}},20:R3(n,1),33:R3(n,2),19:{match:ar(qq),order:3,parse:ed,render:()=>` -`},21:{match:BW,order:3,parse:Q0,render:(f,v,g)=>n("p",{key:g.key},v(f.children,g))},22:{match:wr(oW),order:0,parse:f=>(s[f[1]]={target:f[2],title:f[4]},{}),render:td},23:{match:Er(iW),order:0,parse:f=>({alt:f[1]||void 0,ref:f[2]}),render:(f,v,g)=>s[f.ref]?n("img",{key:g.key,alt:f.alt,src:Mn(s[f.ref].target),title:s[f.ref].title}):null},24:{match:wr(lW),order:0,parse:(f,v,g)=>({children:v(f[1],g),fallbackChildren:v(f[0].replace(sW,"\\$1"),g),ref:f[2]}),render:(f,v,g)=>s[f.ref]?n("a",{key:g.key,href:Mn(s[f.ref].target),title:s[f.ref].title},v(f.children,g)):n("span",{key:g.key},v(f.fallbackChildren,g))},25:{match:ar(vC),order:1,parse:RW,render(f,v,g){const b=f;return n("table",{key:g.key},n("thead",null,n("tr",null,b.header.map(function(C,w){return n("th",{key:w,style:z3(b,w)},v(C,g))}))),n("tbody",null,b.cells.map(function(C,w){return n("tr",{key:w},C.map(function(x,E){return n("td",{key:E,style:z3(b,E)},v(x,g))}))})))}},27:{match:uo(wW),order:4,parse:f=>({text:f[0].replace(Xq,(v,g)=>t.namedCodesToUnicode[g]?t.namedCodesToUnicode[g]:v)}),render:f=>f.text},28:{match:Er(mW),order:2,parse:(f,v,g)=>({children:v(f[2],g)}),render:(f,v,g)=>n("strong",{key:g.key},v(f.children,g))},29:{match:Er(gW),order:3,parse:(f,v,g)=>({children:v(f[2],g)}),render:(f,v,g)=>n("em",{key:g.key},v(f.children,g))},30:{match:Er(bW),order:1,parse:f=>({text:f[1],type:"27"})},31:{match:Er(vW),order:3,parse:Q0,render:(f,v,g)=>n("mark",{key:g.key},v(f.children,g))},32:{match:Er(yW),order:3,parse:Q0,render:(f,v,g)=>n("del",{key:g.key},v(f.children,g))}};t.disableParsingRawHTML===!0&&(delete u[11],delete u[13]);const d=function(f){let v=Object.keys(f);function g(b,C){let w=[],x="";for(;b;){let E=0;for(;Ew(g,b,C),g,b,C):w(g,b,C)}}(u,t.renderRule),function f(v,g={}){if(Array.isArray(v)){const b=g.key,C=[];let w=!1;for(let x=0;x{let{children:t="",options:r}=e,n=function(a,o){if(a==null)return{};var i,s,u={},d=Object.keys(a);for(s=0;s=0||(u[i]=a[i]);return u}(e,Oq);return l.cloneElement(LW(t,r),n)};function el(e){throw new Error('Could not dynamically require "'+e+'". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.')}var IC={exports:{}};(function(e,t){(function(r){e.exports=r()})(function(){return function r(n,a,o){function i(d,p){if(!a[d]){if(!n[d]){var h=typeof el=="function"&⪙if(!p&&h)return h(d,!0);if(s)return s(d,!0);var m=new Error("Cannot find module '"+d+"'");throw m.code="MODULE_NOT_FOUND",m}var f=a[d]={exports:{}};n[d][0].call(f.exports,function(v){var g=n[d][1][v];return i(g||v)},f,f.exports,r,n,a,o)}return a[d].exports}for(var s=typeof el=="function"&&el,u=0;u=0)return this.lastItem=this.list[s],this.list[s].val},o.prototype.set=function(i,s){var u;return this.lastItem&&this.isEqual(this.lastItem.key,i)?(this.lastItem.val=s,this):(u=this.indexOf(i),u>=0?(this.lastItem=this.list[u],this.list[u].val=s,this):(this.lastItem={key:i,val:s},this.list.push(this.lastItem),this.size++,this))},o.prototype.delete=function(i){var s;if(this.lastItem&&this.isEqual(this.lastItem.key,i)&&(this.lastItem=void 0),s=this.indexOf(i),s>=0)return this.size--,this.list.splice(s,1)[0]},o.prototype.has=function(i){var s;return this.lastItem&&this.isEqual(this.lastItem.key,i)?!0:(s=this.indexOf(i),s>=0?(this.lastItem=this.list[s],!0):!1)},o.prototype.forEach=function(i,s){var u;for(u=0;u0&&(w[C]={cacheItem:v,arg:arguments[C]},x?i(h,w):h.push(w),h.length>d&&s(h.shift())),f.wasMemoized=x,f.numArgs=C+1,b};return f.limit=d,f.wasMemoized=!1,f.cache=p,f.lru=h,f}};function i(d,p){var h=d.length,m=p.length,f,v,g;for(v=0;v=0&&(h=d[f],m=h.cacheItem.get(h.arg),!m||!m.size);f--)h.cacheItem.delete(h.arg)}function u(d,p){return d===p||d!==d&&p!==p}},{"map-or-similar":1}]},{},[3])(3)})})(IC);var MW=IC.exports;const TC=xs(MW);function PW(e,t,r,n){for(var a=e.length,o=r+(n?1:-1);n?o--:++o-1}var XW=ZW;function QW(e,t,r){for(var n=-1,a=e==null?0:e.length;++n=hG){var d=t?null:pG(e);if(d)return fG(d);i=!1,a=dG,u=new sG}else u=t?[]:s;e:for(;++nfunction(){return t||(0,e[OC(e)[0]])((t={exports:{}}).exports,t),t.exports},cJ=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of OC(t))!uJ.call(e,a)&&a!==r&&$C(e,a,{get:()=>t[a],enumerable:!(n=lJ(t,a))||n.enumerable});return e},Mh=(e,t,r)=>(r=e!=null?iJ(sJ(e)):{},cJ(t||!e||!e.__esModule?$C(r,"default",{value:e,enumerable:!0}):r,e)),dJ=["bubbles","cancelBubble","cancelable","composed","currentTarget","defaultPrevented","eventPhase","isTrusted","returnValue","srcElement","target","timeStamp","type"],pJ=["detail"];function fJ(e){const t=dJ.filter(r=>e[r]!==void 0).reduce((r,n)=>({...r,[n]:e[n]}),{});return e instanceof CustomEvent&&pJ.filter(r=>e[r]!==void 0).forEach(r=>{t[r]=e[r]}),t}var LC=it({"node_modules/has-symbols/shams.js"(e,t){t.exports=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var n={},a=Symbol("test"),o=Object(a);if(typeof a=="string"||Object.prototype.toString.call(a)!=="[object Symbol]"||Object.prototype.toString.call(o)!=="[object Symbol]")return!1;var i=42;n[a]=i;for(a in n)return!1;if(typeof Object.keys=="function"&&Object.keys(n).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(n).length!==0)return!1;var s=Object.getOwnPropertySymbols(n);if(s.length!==1||s[0]!==a||!Object.prototype.propertyIsEnumerable.call(n,a))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var u=Object.getOwnPropertyDescriptor(n,a);if(u.value!==i||u.enumerable!==!0)return!1}return!0}}}),MC=it({"node_modules/has-symbols/index.js"(e,t){var r=typeof Symbol<"u"&&Symbol,n=LC();t.exports=function(){return typeof r!="function"||typeof Symbol!="function"||typeof r("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:n()}}}),hJ=it({"node_modules/function-bind/implementation.js"(e,t){var r="Function.prototype.bind called on incompatible ",n=Array.prototype.slice,a=Object.prototype.toString,o="[object Function]";t.exports=function(s){var u=this;if(typeof u!="function"||a.call(u)!==o)throw new TypeError(r+u);for(var d=n.call(arguments,1),p,h=function(){if(this instanceof p){var b=u.apply(this,d.concat(n.call(arguments)));return Object(b)===b?b:this}else return u.apply(s,d.concat(n.call(arguments)))},m=Math.max(0,u.length-d.length),f=[],v=0;v"u"?r:h(Uint8Array),v={"%AggregateError%":typeof AggregateError>"u"?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?r:ArrayBuffer,"%ArrayIteratorPrototype%":p?h([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":m,"%AsyncGenerator%":m,"%AsyncGeneratorFunction%":m,"%AsyncIteratorPrototype%":m,"%Atomics%":typeof Atomics>"u"?r:Atomics,"%BigInt%":typeof BigInt>"u"?r:BigInt,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":typeof Float32Array>"u"?r:Float32Array,"%Float64Array%":typeof Float64Array>"u"?r:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?r:FinalizationRegistry,"%Function%":a,"%GeneratorFunction%":m,"%Int8Array%":typeof Int8Array>"u"?r:Int8Array,"%Int16Array%":typeof Int16Array>"u"?r:Int16Array,"%Int32Array%":typeof Int32Array>"u"?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":p?h(h([][Symbol.iterator]())):r,"%JSON%":typeof JSON=="object"?JSON:r,"%Map%":typeof Map>"u"?r:Map,"%MapIteratorPrototype%":typeof Map>"u"||!p?r:h(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?r:Promise,"%Proxy%":typeof Proxy>"u"?r:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":typeof Reflect>"u"?r:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?r:Set,"%SetIteratorPrototype%":typeof Set>"u"||!p?r:h(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":p?h(""[Symbol.iterator]()):r,"%Symbol%":p?Symbol:r,"%SyntaxError%":n,"%ThrowTypeError%":d,"%TypedArray%":f,"%TypeError%":o,"%Uint8Array%":typeof Uint8Array>"u"?r:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?r:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?r:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?r:Uint32Array,"%URIError%":URIError,"%WeakMap%":typeof WeakMap>"u"?r:WeakMap,"%WeakRef%":typeof WeakRef>"u"?r:WeakRef,"%WeakSet%":typeof WeakSet>"u"?r:WeakSet},g=function $(z){var L;if(z==="%AsyncFunction%")L=i("async function () {}");else if(z==="%GeneratorFunction%")L=i("function* () {}");else if(z==="%AsyncGeneratorFunction%")L=i("async function* () {}");else if(z==="%AsyncGenerator%"){var O=$("%AsyncGeneratorFunction%");O&&(L=O.prototype)}else if(z==="%AsyncIteratorPrototype%"){var M=$("%AsyncGenerator%");M&&(L=h(M.prototype))}return v[z]=L,L},b={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},C=Ph(),w=mJ(),x=C.call(Function.call,Array.prototype.concat),E=C.call(Function.apply,Array.prototype.splice),D=C.call(Function.call,String.prototype.replace),S=C.call(Function.call,String.prototype.slice),A=C.call(Function.call,RegExp.prototype.exec),k=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,F=/\\(\\)?/g,T=function(z){var L=S(z,0,1),O=S(z,-1);if(L==="%"&&O!=="%")throw new n("invalid intrinsic syntax, expected closing `%`");if(O==="%"&&L!=="%")throw new n("invalid intrinsic syntax, expected opening `%`");var M=[];return D(z,k,function(j,G,H,K){M[M.length]=H?D(K,F,"$1"):G||j}),M},R=function(z,L){var O=z,M;if(w(b,O)&&(M=b[O],O="%"+M[0]+"%"),w(v,O)){var j=v[O];if(j===m&&(j=g(O)),typeof j>"u"&&!L)throw new o("intrinsic "+z+" exists, but is not available. Please file an issue!");return{alias:M,name:O,value:j}}throw new n("intrinsic "+z+" does not exist!")};t.exports=function(z,L){if(typeof z!="string"||z.length===0)throw new o("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof L!="boolean")throw new o('"allowMissing" argument must be a boolean');if(A(/^%?[^%]*%?$/,z)===null)throw new n("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var O=T(z),M=O.length>0?O[0]:"",j=R("%"+M+"%",L),G=j.name,H=j.value,K=!1,te=j.alias;te&&(M=te[0],E(O,x([0,1],te)));for(var le=1,Q=!0;le=O.length){var J=s(H,re);Q=!!J,Q&&"get"in J&&!("originalValue"in J.get)?H=J.get:H=H[re]}else Q=w(H,re),H=H[re];Q&&!K&&(v[G]=H)}}return H}}}),gJ=it({"node_modules/call-bind/index.js"(e,t){var r=Ph(),n=PC(),a=n("%Function.prototype.apply%"),o=n("%Function.prototype.call%"),i=n("%Reflect.apply%",!0)||r.call(o,a),s=n("%Object.getOwnPropertyDescriptor%",!0),u=n("%Object.defineProperty%",!0),d=n("%Math.max%");if(u)try{u({},"a",{value:1})}catch{u=null}t.exports=function(m){var f=i(r,o,arguments);if(s&&u){var v=s(f,"length");v.configurable&&u(f,"length",{value:1+d(0,m.length-(arguments.length-1))})}return f};var p=function(){return i(r,a,arguments)};u?u(t.exports,"apply",{value:p}):t.exports.apply=p}}),vJ=it({"node_modules/call-bind/callBound.js"(e,t){var r=PC(),n=gJ(),a=n(r("String.prototype.indexOf"));t.exports=function(i,s){var u=r(i,!!s);return typeof u=="function"&&a(i,".prototype.")>-1?n(u):u}}}),yJ=it({"node_modules/has-tostringtag/shams.js"(e,t){var r=LC();t.exports=function(){return r()&&!!Symbol.toStringTag}}}),bJ=it({"node_modules/is-regex/index.js"(e,t){var r=vJ(),n=yJ()(),a,o,i,s;n&&(a=r("Object.prototype.hasOwnProperty"),o=r("RegExp.prototype.exec"),i={},u=function(){throw i},s={toString:u,valueOf:u},typeof Symbol.toPrimitive=="symbol"&&(s[Symbol.toPrimitive]=u));var u,d=r("Object.prototype.toString"),p=Object.getOwnPropertyDescriptor,h="[object RegExp]";t.exports=n?function(f){if(!f||typeof f!="object")return!1;var v=p(f,"lastIndex"),g=v&&a(v,"value");if(!g)return!1;try{o(f,s)}catch(b){return b===i}}:function(f){return!f||typeof f!="object"&&typeof f!="function"?!1:d(f)===h}}}),wJ=it({"node_modules/is-function/index.js"(e,t){t.exports=n;var r=Object.prototype.toString;function n(a){if(!a)return!1;var o=r.call(a);return o==="[object Function]"||typeof a=="function"&&o!=="[object RegExp]"||typeof window<"u"&&(a===window.setTimeout||a===window.alert||a===window.confirm||a===window.prompt)}}}),EJ=it({"node_modules/is-symbol/index.js"(e,t){var r=Object.prototype.toString,n=MC()();n?(a=Symbol.prototype.toString,o=/^Symbol\(.*\)$/,i=function(u){return typeof u.valueOf()!="symbol"?!1:o.test(a.call(u))},t.exports=function(u){if(typeof u=="symbol")return!0;if(r.call(u)!=="[object Symbol]")return!1;try{return i(u)}catch{return!1}}):t.exports=function(u){return!1};var a,o,i}}),xJ=Mh(bJ()),CJ=Mh(wJ()),DJ=Mh(EJ());function SJ(e){return e!=null&&typeof e=="object"&&Array.isArray(e)===!1}var AJ=typeof global=="object"&&global&&global.Object===Object&&global,kJ=AJ,_J=typeof self=="object"&&self&&self.Object===Object&&self,FJ=kJ||_J||Function("return this")(),Nh=FJ,IJ=Nh.Symbol,xa=IJ,NC=Object.prototype,TJ=NC.hasOwnProperty,RJ=NC.toString,co=xa?xa.toStringTag:void 0;function BJ(e){var t=TJ.call(e,co),r=e[co];try{e[co]=void 0;var n=!0}catch{}var a=RJ.call(e);return n&&(t?e[co]=r:delete e[co]),a}var zJ=BJ,$J=Object.prototype,OJ=$J.toString;function LJ(e){return OJ.call(e)}var MJ=LJ,PJ="[object Null]",NJ="[object Undefined]",q3=xa?xa.toStringTag:void 0;function HJ(e){return e==null?e===void 0?NJ:PJ:q3&&q3 in Object(e)?zJ(e):MJ(e)}var jJ=HJ,W3=xa?xa.prototype:void 0;W3&&W3.toString;function VJ(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}var HC=VJ,UJ="[object AsyncFunction]",qJ="[object Function]",WJ="[object GeneratorFunction]",GJ="[object Proxy]";function KJ(e){if(!HC(e))return!1;var t=jJ(e);return t==qJ||t==WJ||t==UJ||t==GJ}var YJ=KJ,JJ=Nh["__core-js_shared__"],ad=JJ,G3=function(){var e=/[^.]+$/.exec(ad&&ad.keys&&ad.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();function ZJ(e){return!!G3&&G3 in e}var XJ=ZJ,QJ=Function.prototype,eZ=QJ.toString;function tZ(e){if(e!=null){try{return eZ.call(e)}catch{}try{return e+""}catch{}}return""}var rZ=tZ,nZ=/[\\^$.*+?()[\]{}|]/g,aZ=/^\[object .+?Constructor\]$/,oZ=Function.prototype,iZ=Object.prototype,lZ=oZ.toString,sZ=iZ.hasOwnProperty,uZ=RegExp("^"+lZ.call(sZ).replace(nZ,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function cZ(e){if(!HC(e)||XJ(e))return!1;var t=YJ(e)?uZ:aZ;return t.test(rZ(e))}var dZ=cZ;function pZ(e,t){return e==null?void 0:e[t]}var fZ=pZ;function hZ(e,t){var r=fZ(e,t);return dZ(r)?r:void 0}var jC=hZ;function mZ(e,t){return e===t||e!==e&&t!==t}var gZ=mZ,vZ=jC(Object,"create"),Zo=vZ;function yZ(){this.__data__=Zo?Zo(null):{},this.size=0}var bZ=yZ;function wZ(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}var EZ=wZ,xZ="__lodash_hash_undefined__",CZ=Object.prototype,DZ=CZ.hasOwnProperty;function SZ(e){var t=this.__data__;if(Zo){var r=t[e];return r===xZ?void 0:r}return DZ.call(t,e)?t[e]:void 0}var AZ=SZ,kZ=Object.prototype,_Z=kZ.hasOwnProperty;function FZ(e){var t=this.__data__;return Zo?t[e]!==void 0:_Z.call(t,e)}var IZ=FZ,TZ="__lodash_hash_undefined__";function RZ(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=Zo&&t===void 0?TZ:t,this}var BZ=RZ;function Na(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t-1}var UZ=VZ;function qZ(e,t){var r=this.__data__,n=Iu(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this}var WZ=qZ;function Ha(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t{let t=null,r=!1,n=!1,a=!1,o="";if(e.indexOf("//")>=0||e.indexOf("/*")>=0)for(let i=0;ivX(e).replace(/\n\s*/g,"").trim()),bX=function(t,r){const n=r.slice(0,r.indexOf("{")),a=r.slice(r.indexOf("{"));if(n.includes("=>")||n.includes("function"))return r;let o=n;return o=o.replace(t,"function"),o+a},wX=/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{3})?Z$/;function UC(e){if(!gX(e))return e;let t=e,r=!1;return typeof Event<"u"&&e instanceof Event&&(t=fJ(t),r=!0),t=Object.keys(t).reduce((n,a)=>{try{t[a]&&t[a].toJSON,n[a]=t[a]}catch{r=!0}return n},{}),r?t:e}var EX=function(t){let r,n,a,o;return function(s,u){try{if(s==="")return o=[],r=new Map([[u,"[]"]]),n=new Map,a=[],u;const d=n.get(this)||this;for(;a.length&&d!==a[0];)a.shift(),o.pop();if(typeof u=="boolean")return u;if(u===void 0)return t.allowUndefined?"_undefined_":void 0;if(u===null)return null;if(typeof u=="number")return u===-1/0?"_-Infinity_":u===1/0?"_Infinity_":Number.isNaN(u)?"_NaN_":u;if(typeof u=="bigint")return`_bigint_${u.toString()}`;if(typeof u=="string")return wX.test(u)?t.allowDate?`_date_${u}`:void 0:u;if((0,xJ.default)(u))return t.allowRegExp?`_regexp_${u.flags}|${u.source}`:void 0;if((0,CJ.default)(u)){if(!t.allowFunction)return;const{name:h}=u,m=u.toString();return m.match(/(\[native code\]|WEBPACK_IMPORTED_MODULE|__webpack_exports__|__webpack_require__)/)?`_function_${h}|${(()=>{}).toString()}`:`_function_${h}|${yX(bX(s,m))}`}if((0,DJ.default)(u)){if(!t.allowSymbol)return;const h=Symbol.keyFor(u);return h!==void 0?`_gsymbol_${h}`:`_symbol_${u.toString().slice(7,-1)}`}if(a.length>=t.maxDepth)return Array.isArray(u)?`[Array(${u.length})]`:"[Object]";if(u===this)return`_duplicate_${JSON.stringify(o)}`;if(u instanceof Error&&t.allowError)return{__isConvertedError__:!0,errorProperties:{...u.cause?{cause:u.cause}:{},...u,name:u.name,message:u.message,stack:u.stack,"_constructor-name_":u.constructor.name}};if(u.constructor&&u.constructor.name&&u.constructor.name!=="Object"&&!Array.isArray(u)&&!t.allowClass)return;const p=r.get(u);if(!p){const h=Array.isArray(u)?u:UC(u);if(u.constructor&&u.constructor.name&&u.constructor.name!=="Object"&&!Array.isArray(u)&&t.allowClass)try{Object.assign(h,{"_constructor-name_":u.constructor.name})}catch{}return o.push(s),a.unshift(h),r.set(u,JSON.stringify(o)),u!==h&&n.set(u,h),h}return`_duplicate_${p}`}catch{return}}},xX={maxDepth:10,space:void 0,allowFunction:!0,allowRegExp:!0,allowDate:!0,allowClass:!0,allowError:!0,allowUndefined:!0,allowSymbol:!0,lazyEval:!0},CX=(e,t={})=>{const r={...xX,...t};return JSON.stringify(UC(e),EX(r),t.space)};/*! - * isobject - * - * Copyright (c) 2014-2017, Jon Schlinkert. - * Released under the MIT License. - *//** - * @license - * Lodash (Custom Build) - * Build: `lodash modularize exports="es" -o ./` - * Copyright OpenJS Foundation and other contributors - * Released under MIT license - * Based on Underscore.js 1.8.3 - * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */const{global:nt}=__STORYBOOK_MODULE_GLOBAL__,{deprecate:DX,once:SX,logger:jh}=__STORYBOOK_MODULE_CLIENT_LOGGER__,{filterArgTypes:Y3,composeConfigs:kre,Preview:_re,DocsContext:Fre}=__STORYBOOK_MODULE_PREVIEW_API__,{GLOBALS_UPDATED:J3,STORY_ARGS_UPDATED:Z3,UPDATE_STORY_ARGS:AX,RESET_STORY_ARGS:kX,NAVIGATE_URL:_X}=__STORYBOOK_MODULE_CORE_EVENTS__;__STORYBOOK_MODULE_CHANNELS__;var FX=Da({"../../node_modules/tocbot/src/js/default-options.js"(e,t){t.exports={tocSelector:".js-toc",contentSelector:".js-toc-content",headingSelector:"h1, h2, h3",ignoreSelector:".js-toc-ignore",hasInnerContainers:!1,linkClass:"toc-link",extraLinkClasses:"",activeLinkClass:"is-active-link",listClass:"toc-list",extraListClasses:"",isCollapsedClass:"is-collapsed",collapsibleClass:"is-collapsible",listItemClass:"toc-list-item",activeListItemClass:"is-active-li",collapseDepth:0,scrollSmooth:!0,scrollSmoothDuration:420,scrollSmoothOffset:0,scrollEndCallback:function(r){},headingsOffset:1,throttleTimeout:50,positionFixedSelector:null,positionFixedClass:"is-position-fixed",fixedSidebarOffset:"auto",includeHtml:!1,includeTitleTags:!1,onClick:function(r){},orderedList:!0,scrollContainer:null,skipRendering:!1,headingLabelCallback:!1,ignoreHiddenElements:!1,headingObjectCallback:null,basePath:"",disableTocScrollSync:!1,tocScrollOffset:0}}}),IX=Da({"../../node_modules/tocbot/src/js/build-html.js"(e,t){t.exports=function(r){var n=[].forEach,a=[].some,o=document.body,i,s=!0,u=" ";function d(E,D){var S=D.appendChild(h(E));if(E.children.length){var A=m(E.isCollapsed);E.children.forEach(function(k){d(k,A)}),S.appendChild(A)}}function p(E,D){var S=!1,A=m(S);if(D.forEach(function(k){d(k,A)}),i=E||i,i!==null)return i.firstChild&&i.removeChild(i.firstChild),D.length===0?i:i.appendChild(A)}function h(E){var D=document.createElement("li"),S=document.createElement("a");return r.listItemClass&&D.setAttribute("class",r.listItemClass),r.onClick&&(S.onclick=r.onClick),r.includeTitleTags&&S.setAttribute("title",E.textContent),r.includeHtml&&E.childNodes.length?n.call(E.childNodes,function(A){S.appendChild(A.cloneNode(!0))}):S.textContent=E.textContent,S.setAttribute("href",r.basePath+"#"+E.id),S.setAttribute("class",r.linkClass+u+"node-name--"+E.nodeName+u+r.extraLinkClasses),D.appendChild(S),D}function m(E){var D=r.orderedList?"ol":"ul",S=document.createElement(D),A=r.listClass+u+r.extraListClasses;return E&&(A=A+u+r.collapsibleClass,A=A+u+r.isCollapsedClass),S.setAttribute("class",A),S}function f(){if(r.scrollContainer&&document.querySelector(r.scrollContainer)){var E;E=document.querySelector(r.scrollContainer).scrollTop}else E=document.documentElement.scrollTop||o.scrollTop;var D=document.querySelector(r.positionFixedSelector);r.fixedSidebarOffset==="auto"&&(r.fixedSidebarOffset=i.offsetTop),E>r.fixedSidebarOffset?D.className.indexOf(r.positionFixedClass)===-1&&(D.className+=u+r.positionFixedClass):D.className=D.className.replace(u+r.positionFixedClass,"")}function v(E){var D=0;return E!==null&&(D=E.offsetTop,r.hasInnerContainers&&(D+=v(E.offsetParent))),D}function g(E,D){return E&&E.className!==D&&(E.className=D),E}function b(E){if(r.scrollContainer&&document.querySelector(r.scrollContainer)){var D;D=document.querySelector(r.scrollContainer).scrollTop}else D=document.documentElement.scrollTop||o.scrollTop;r.positionFixedSelector&&f();var S=E,A;if(s&&i!==null&&S.length>0){a.call(S,function(L,O){if(v(L)>D+r.headingsOffset+10){var M=O===0?O:O-1;return A=S[M],!0}else if(O===S.length-1)return A=S[S.length-1],!0});var k=i.querySelector("."+r.activeLinkClass),F=i.querySelector("."+r.linkClass+".node-name--"+A.nodeName+'[href="'+r.basePath+"#"+A.id.replace(/([ #;&,.+*~':"!^$[\]()=>|/\\@])/g,"\\$1")+'"]');if(k===F)return;var T=i.querySelectorAll("."+r.linkClass);n.call(T,function(L){g(L,L.className.replace(u+r.activeLinkClass,""))});var R=i.querySelectorAll("."+r.listItemClass);n.call(R,function(L){g(L,L.className.replace(u+r.activeListItemClass,""))}),F&&F.className.indexOf(r.activeLinkClass)===-1&&(F.className+=u+r.activeLinkClass);var $=F&&F.parentNode;$&&$.className.indexOf(r.activeListItemClass)===-1&&($.className+=u+r.activeListItemClass);var z=i.querySelectorAll("."+r.listClass+"."+r.collapsibleClass);n.call(z,function(L){L.className.indexOf(r.isCollapsedClass)===-1&&(L.className+=u+r.isCollapsedClass)}),F&&F.nextSibling&&F.nextSibling.className.indexOf(r.isCollapsedClass)!==-1&&g(F.nextSibling,F.nextSibling.className.replace(u+r.isCollapsedClass,"")),C(F&&F.parentNode.parentNode)}}function C(E){return E&&E.className.indexOf(r.collapsibleClass)!==-1&&E.className.indexOf(r.isCollapsedClass)!==-1?(g(E,E.className.replace(u+r.isCollapsedClass,"")),C(E.parentNode.parentNode)):E}function w(E){var D=E.target||E.srcElement;typeof D.className!="string"||D.className.indexOf(r.linkClass)===-1||(s=!1)}function x(){s=!0}return{enableTocAnimation:x,disableTocAnimation:w,render:p,updateToc:b}}}}),TX=Da({"../../node_modules/tocbot/src/js/parse-content.js"(e,t){t.exports=function(r){var n=[].reduce;function a(h){return h[h.length-1]}function o(h){return+h.nodeName.toUpperCase().replace("H","")}function i(h){try{return h instanceof window.HTMLElement||h instanceof window.parent.HTMLElement}catch{return h instanceof window.HTMLElement}}function s(h){if(!i(h))return h;if(r.ignoreHiddenElements&&(!h.offsetHeight||!h.offsetParent))return null;let m=h.getAttribute("data-heading-label")||(r.headingLabelCallback?String(r.headingLabelCallback(h.innerText)):(h.innerText||h.textContent).trim());var f={id:h.id,children:[],nodeName:h.nodeName,headingLevel:o(h),textContent:m};return r.includeHtml&&(f.childNodes=h.childNodes),r.headingObjectCallback?r.headingObjectCallback(f,h):f}function u(h,m){for(var f=s(h),v=f.headingLevel,g=m,b=a(g),C=b?b.headingLevel:0,w=v-C;w>0&&(b=a(g),!(b&&v===b.headingLevel));)b&&b.children!==void 0&&(g=b.children),w--;return v>=r.collapseDepth&&(f.isCollapsed=!0),g.push(f),g}function d(h,m){var f=m;r.ignoreSelector&&(f=m.split(",").map(function(v){return v.trim()+":not("+r.ignoreSelector+")"}));try{return h.querySelectorAll(f)}catch{return console.warn("Headers not found with selector: "+f),null}}function p(h){return n.call(h,function(m,f){var v=s(f);return v&&u(v,m.nest),m},{nest:[]})}return{nestHeadingsArray:p,selectHeadings:d}}}}),RX=Da({"../../node_modules/tocbot/src/js/update-toc-scroll.js"(e,t){t.exports=function(r){var n=r.tocElement||document.querySelector(r.tocSelector);if(n&&n.scrollHeight>n.clientHeight){var a=n.querySelector("."+r.activeListItemClass);a&&(n.scrollTop=a.offsetTop-r.tocScrollOffset)}}}}),BX=Da({"../../node_modules/tocbot/src/js/scroll-smooth/index.js"(e){e.initSmoothScrolling=t;function t(n){var a=n.duration,o=n.offset,i=location.hash?d(location.href):location.href;s();function s(){document.body.addEventListener("click",h,!1);function h(m){!u(m.target)||m.target.className.indexOf("no-smooth-scroll")>-1||m.target.href.charAt(m.target.href.length-2)==="#"&&m.target.href.charAt(m.target.href.length-1)==="!"||m.target.className.indexOf(n.linkClass)===-1||r(m.target.hash,{duration:a,offset:o,callback:function(){p(m.target.hash)}})}}function u(h){return h.tagName.toLowerCase()==="a"&&(h.hash.length>0||h.href.charAt(h.href.length-1)==="#")&&(d(h.href)===i||d(h.href)+"#"===i)}function d(h){return h.slice(0,h.lastIndexOf("#"))}function p(h){var m=document.getElementById(h.substring(1));m&&(/^(?:a|select|input|button|textarea)$/i.test(m.tagName)||(m.tabIndex=-1),m.focus())}}function r(n,a){var o=window.pageYOffset,i={duration:a.duration,offset:a.offset||0,callback:a.callback,easing:a.easing||v},s=document.querySelector('[id="'+decodeURI(n).split("#").join("")+'"]')||document.querySelector('[id="'+n.split("#").join("")+'"]'),u=typeof n=="string"?i.offset+(n?s&&s.getBoundingClientRect().top||0:-(document.documentElement.scrollTop||document.body.scrollTop)):n,d=typeof i.duration=="function"?i.duration(u):i.duration,p,h;requestAnimationFrame(function(g){p=g,m(g)});function m(g){h=g-p,window.scrollTo(0,i.easing(h,o,u,d)),h"u"&&!h)return;var m,f=Object.prototype.hasOwnProperty;function v(){for(var w={},x=0;x({backgroundColor:e.base==="light"?"rgba(0,0,0,.01)":"rgba(255,255,255,.01)",borderRadius:e.appBorderRadius,border:`1px dashed ${e.appBorderColor}`,display:"flex",alignItems:"center",justifyContent:"center",padding:20,margin:"25px 0 40px",color:ie(.3,e.color.defaultText),fontSize:e.typography.size.s2})),qC=e=>y.createElement($X,{...e,className:"docblock-emptyblock sb-unstyled"}),OX=_(lh)(({theme:e})=>({fontSize:`${e.typography.size.s2-1}px`,lineHeight:"19px",margin:"25px 0 40px",borderRadius:e.appBorderRadius,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0","pre.prismjs":{padding:20,background:"inherit"}})),LX=_.div(({theme:e})=>({background:e.background.content,borderRadius:e.appBorderRadius,border:`1px solid ${e.appBorderColor}`,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0",margin:"25px 0 40px",padding:"20px 20px 20px 22px"})),tl=_.div(({theme:e})=>({animation:`${e.animation.glow} 1.5s ease-in-out infinite`,background:e.appBorderColor,height:17,marginTop:1,width:"60%",[`&:first-child${fd}`]:{margin:0}})),MX=()=>y.createElement(LX,null,y.createElement(tl,null),y.createElement(tl,{style:{width:"80%"}}),y.createElement(tl,{style:{width:"30%"}}),y.createElement(tl,{style:{width:"80%"}})),WC=({isLoading:e,error:t,language:r,code:n,dark:a,format:o=!1,...i})=>{let{typography:s}=jy();if(e)return y.createElement(MX,null);if(t)return y.createElement(qC,null,t);let u=y.createElement(OX,{bordered:!0,copyable:!0,format:o,language:r,className:"docblock-source sb-unstyled",...i},n);if(typeof a>"u")return u;let d=a?dd.dark:dd.light;return y.createElement(Vy,{theme:pd({...d,fontCode:s.fonts.mono,fontBase:s.fonts.base})},u)},fe=e=>`& :where(${e}:not(.sb-anchor, .sb-unstyled, .sb-unstyled ${e}))`,Vh=600,PX=_.h1(ue,({theme:e})=>({color:e.color.defaultText,fontSize:e.typography.size.m3,fontWeight:e.typography.weight.bold,lineHeight:"32px",[`@media (min-width: ${Vh}px)`]:{fontSize:e.typography.size.l1,lineHeight:"36px",marginBottom:"16px"}})),NX=_.h2(ue,({theme:e})=>({fontWeight:e.typography.weight.regular,fontSize:e.typography.size.s3,lineHeight:"20px",borderBottom:"none",marginBottom:15,[`@media (min-width: ${Vh}px)`]:{fontSize:e.typography.size.m1,lineHeight:"28px",marginBottom:24},color:ie(.25,e.color.defaultText)})),HX=_.div(({theme:e})=>{let t={fontFamily:e.typography.fonts.base,fontSize:e.typography.size.s3,margin:0,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",WebkitOverflowScrolling:"touch"},r={margin:"20px 0 8px",padding:0,cursor:"text",position:"relative",color:e.color.defaultText,"&:first-of-type":{marginTop:0,paddingTop:0},"&:hover a.anchor":{textDecoration:"none"},"& code":{fontSize:"inherit"}},n={lineHeight:1,margin:"0 2px",padding:"3px 5px",whiteSpace:"nowrap",borderRadius:3,fontSize:e.typography.size.s2-1,border:e.base==="light"?`1px solid ${e.color.mediumlight}`:`1px solid ${e.color.darker}`,color:e.base==="light"?ie(.1,e.color.defaultText):ie(.3,e.color.defaultText),backgroundColor:e.base==="light"?e.color.lighter:e.color.border};return{maxWidth:1e3,width:"100%",[fe("a")]:{...t,fontSize:"inherit",lineHeight:"24px",color:e.color.secondary,textDecoration:"none","&.absent":{color:"#cc0000"},"&.anchor":{display:"block",paddingLeft:30,marginLeft:-30,cursor:"pointer",position:"absolute",top:0,left:0,bottom:0}},[fe("blockquote")]:{...t,margin:"16px 0",borderLeft:`4px solid ${e.color.medium}`,padding:"0 15px",color:e.color.dark,"& > :first-of-type":{marginTop:0},"& > :last-child":{marginBottom:0}},[fe("div")]:t,[fe("dl")]:{...t,margin:"16px 0",padding:0,"& dt":{fontSize:"14px",fontWeight:"bold",fontStyle:"italic",padding:0,margin:"16px 0 4px"},"& dt:first-of-type":{padding:0},"& dt > :first-of-type":{marginTop:0},"& dt > :last-child":{marginBottom:0},"& dd":{margin:"0 0 16px",padding:"0 15px"},"& dd > :first-of-type":{marginTop:0},"& dd > :last-child":{marginBottom:0}},[fe("h1")]:{...t,...r,fontSize:`${e.typography.size.l1}px`,fontWeight:e.typography.weight.bold},[fe("h2")]:{...t,...r,fontSize:`${e.typography.size.m2}px`,paddingBottom:4,borderBottom:`1px solid ${e.appBorderColor}`},[fe("h3")]:{...t,...r,fontSize:`${e.typography.size.m1}px`,fontWeight:e.typography.weight.bold},[fe("h4")]:{...t,...r,fontSize:`${e.typography.size.s3}px`},[fe("h5")]:{...t,...r,fontSize:`${e.typography.size.s2}px`},[fe("h6")]:{...t,...r,fontSize:`${e.typography.size.s2}px`,color:e.color.dark},[fe("hr")]:{border:"0 none",borderTop:`1px solid ${e.appBorderColor}`,height:4,padding:0},[fe("img")]:{maxWidth:"100%"},[fe("li")]:{...t,fontSize:e.typography.size.s2,color:e.color.defaultText,lineHeight:"24px","& + li":{marginTop:".25em"},"& ul, & ol":{marginTop:".25em",marginBottom:0},"& code":n},[fe("ol")]:{...t,margin:"16px 0",paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0}},[fe("p")]:{...t,margin:"16px 0",fontSize:e.typography.size.s2,lineHeight:"24px",color:e.color.defaultText,"& code":n},[fe("pre")]:{...t,fontFamily:e.typography.fonts.mono,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",lineHeight:"18px",padding:"11px 1rem",whiteSpace:"pre-wrap",color:"inherit",borderRadius:3,margin:"1rem 0","&:not(.prismjs)":{background:"transparent",border:"none",borderRadius:0,padding:0,margin:0},"& pre, &.prismjs":{padding:15,margin:0,whiteSpace:"pre-wrap",color:"inherit",fontSize:"13px",lineHeight:"19px",code:{color:"inherit",fontSize:"inherit"}},"& code":{whiteSpace:"pre"},"& code, & tt":{border:"none"}},[fe("span")]:{...t,"&.frame":{display:"block",overflow:"hidden","& > span":{border:`1px solid ${e.color.medium}`,display:"block",float:"left",overflow:"hidden",margin:"13px 0 0",padding:7,width:"auto"},"& span img":{display:"block",float:"left"},"& span span":{clear:"both",color:e.color.darkest,display:"block",padding:"5px 0 0"}},"&.align-center":{display:"block",overflow:"hidden",clear:"both","& > span":{display:"block",overflow:"hidden",margin:"13px auto 0",textAlign:"center"},"& span img":{margin:"0 auto",textAlign:"center"}},"&.align-right":{display:"block",overflow:"hidden",clear:"both","& > span":{display:"block",overflow:"hidden",margin:"13px 0 0",textAlign:"right"},"& span img":{margin:0,textAlign:"right"}},"&.float-left":{display:"block",marginRight:13,overflow:"hidden",float:"left","& span":{margin:"13px 0 0"}},"&.float-right":{display:"block",marginLeft:13,overflow:"hidden",float:"right","& > span":{display:"block",overflow:"hidden",margin:"13px auto 0",textAlign:"right"}}},[fe("table")]:{...t,margin:"16px 0",fontSize:e.typography.size.s2,lineHeight:"24px",padding:0,borderCollapse:"collapse","& tr":{borderTop:`1px solid ${e.appBorderColor}`,backgroundColor:e.appContentBg,margin:0,padding:0},"& tr:nth-of-type(2n)":{backgroundColor:e.base==="dark"?e.color.darker:e.color.lighter},"& tr th":{fontWeight:"bold",color:e.color.defaultText,border:`1px solid ${e.appBorderColor}`,margin:0,padding:"6px 13px"},"& tr td":{border:`1px solid ${e.appBorderColor}`,color:e.color.defaultText,margin:0,padding:"6px 13px"},"& tr th :first-of-type, & tr td :first-of-type":{marginTop:0},"& tr th :last-child, & tr td :last-child":{marginBottom:0}},[fe("ul")]:{...t,margin:"16px 0",paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0},listStyle:"disc"}}}),jX=_.div(({theme:e})=>({background:e.background.content,display:"flex",justifyContent:"center",padding:"4rem 20px",minHeight:"100vh",boxSizing:"border-box",gap:"3rem",[`@media (min-width: ${Vh}px)`]:{}})),VX=({children:e,toc:t})=>y.createElement(jX,{className:"sbdocs sbdocs-wrapper"},y.createElement(HX,{className:"sbdocs sbdocs-content"},e),t),Ru=e=>({borderRadius:e.appBorderRadius,background:e.background.content,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0",border:`1px solid ${e.appBorderColor}`}),UX=_(gh)({position:"absolute",left:0,right:0,top:0,transition:"transform .2s linear"}),qX=_.div({display:"flex",alignItems:"center",gap:4}),WX=_.div(({theme:e})=>({width:14,height:14,borderRadius:2,margin:"0 7px",backgroundColor:e.appBorderColor,animation:`${e.animation.glow} 1.5s ease-in-out infinite`})),GX=({isLoading:e,storyId:t,baseUrl:r,zoom:n,resetZoom:a,...o})=>y.createElement(UX,{...o},y.createElement(qX,{key:"left"},e?[1,2,3].map(i=>y.createElement(WX,{key:i})):y.createElement(y.Fragment,null,y.createElement(un,{key:"zoomin",onClick:i=>{i.preventDefault(),n(.8)},title:"Zoom in"},y.createElement(nL,null)),y.createElement(un,{key:"zoomout",onClick:i=>{i.preventDefault(),n(1.25)},title:"Zoom out"},y.createElement(aL,null)),y.createElement(un,{key:"zoomreset",onClick:i=>{i.preventDefault(),a()},title:"Reset zoom"},y.createElement(oL,null))))),GC=l.createContext({scale:1}),{window:KX}=nt,YX=class extends l.Component{constructor(){super(...arguments),this.iframe=null}componentDidMount(){let{id:e}=this.props;this.iframe=KX.document.getElementById(e)}shouldComponentUpdate(e){let{scale:t}=e;return t!==this.props.scale&&this.setIframeBodyStyle({width:`${t*100}%`,height:`${t*100}%`,transform:`scale(${1/t})`,transformOrigin:"top left"}),!1}setIframeBodyStyle(e){return Object.assign(this.iframe.contentDocument.body.style,e)}render(){let{id:e,title:t,src:r,allowFullScreen:n,scale:a,...o}=this.props;return y.createElement("iframe",{id:e,title:t,src:r,...n?{allow:"fullscreen"}:{},loading:"lazy",...o})}},{PREVIEW_URL:JX}=nt,ZX=JX||"iframe.html",Q1=({story:e,primary:t})=>`story--${e.id}${t?"--primary":""}`,XX=e=>{let t=l.useRef(),[r,n]=l.useState(!0),[a,o]=l.useState(),{story:i,height:s,autoplay:u,forceInitialArgs:d,renderStoryToElement:p}=e;return l.useEffect(()=>{if(!(i&&t.current))return()=>{};let h=t.current,m=p(i,h,{showMain:()=>{},showError:({title:f,description:v})=>o(new Error(`${f} - ${v}`)),showException:f=>o(f)},{autoplay:u,forceInitialArgs:d});return n(!1),()=>{Promise.resolve().then(()=>m())}},[u,p,i]),a?y.createElement("pre",null,y.createElement(e$,{error:a})):y.createElement(y.Fragment,null,s?y.createElement("style",null,`#${Q1(e)} { min-height: ${s}; transform: translateZ(0); overflow: auto }`):null,r&&y.createElement(KC,null),y.createElement("div",{ref:t,id:`${Q1(e)}-inner`,"data-name":i.name}))},QX=({story:e,height:t="500px"})=>y.createElement("div",{style:{width:"100%",height:t}},y.createElement(GC.Consumer,null,({scale:r})=>y.createElement(YX,{key:"iframe",id:`iframe--${e.id}`,title:e.name,src:CO(ZX,e.id,{viewMode:"story"}),allowFullScreen:!0,scale:r,style:{width:"100%",height:"100%",border:"0 none"}}))),eQ=_.strong(({theme:e})=>({color:e.color.orange})),tQ=e=>{let{inline:t,story:r}=e;return t&&!e.autoplay&&r.usesMount?y.createElement(eQ,null,"This story mounts inside of play. Set"," ",y.createElement("a",{href:"https://storybook.js.org/docs/api/doc-blocks/doc-block-story#autoplay"},"autoplay")," ","to true to view this story."):y.createElement("div",{id:Q1(e),className:"sb-story sb-unstyled","data-story-block":"true"},t?y.createElement(XX,{...e}):y.createElement(QX,{...e}))},KC=()=>y.createElement(xO,null),rQ=_.div(({isColumn:e,columns:t,layout:r})=>({display:e||!t?"block":"flex",position:"relative",flexWrap:"wrap",overflow:"auto",flexDirection:e?"column":"row","& .innerZoomElementWrapper > *":e?{width:r!=="fullscreen"?"calc(100% - 20px)":"100%",display:"block"}:{maxWidth:r!=="fullscreen"?"calc(100% - 20px)":"100%",display:"inline-block"}}),({layout:e="padded"})=>e==="centered"||e==="padded"?{padding:"30px 20px","& .innerZoomElementWrapper > *":{width:"auto",border:"10px solid transparent!important"}}:{},({layout:e="padded"})=>e==="centered"?{display:"flex",justifyContent:"center",justifyItems:"center",alignContent:"center",alignItems:"center"}:{},({columns:e})=>e&&e>1?{".innerZoomElementWrapper > *":{minWidth:`calc(100% / ${e} - 20px)`}}:{}),X3=_(WC)(({theme:e})=>({margin:0,borderTopLeftRadius:0,borderTopRightRadius:0,borderBottomLeftRadius:e.appBorderRadius,borderBottomRightRadius:e.appBorderRadius,border:"none",background:e.base==="light"?"rgba(0, 0, 0, 0.85)":$t(.05,e.background.content),color:e.color.lightest,button:{background:e.base==="light"?"rgba(0, 0, 0, 0.85)":$t(.05,e.background.content)}})),nQ=_.div(({theme:e,withSource:t,isExpanded:r})=>({position:"relative",overflow:"hidden",margin:"25px 0 40px",...Ru(e),borderBottomLeftRadius:t&&r&&0,borderBottomRightRadius:t&&r&&0,borderBottomWidth:r&&0,"h3 + &":{marginTop:"16px"}}),({withToolbar:e})=>e&&{paddingTop:40}),aQ=(e,t,r)=>{switch(!0){case!!(e&&e.error):return{source:null,actionItem:{title:"No code available",className:"docblock-code-toggle docblock-code-toggle--disabled",disabled:!0,onClick:()=>r(!1)}};case t:return{source:y.createElement(X3,{...e,dark:!0}),actionItem:{title:"Hide code",className:"docblock-code-toggle docblock-code-toggle--expanded",onClick:()=>r(!1)}};default:return{source:y.createElement(X3,{...e,dark:!0}),actionItem:{title:"Show code",className:"docblock-code-toggle",onClick:()=>r(!0)}}}};function oQ(e){if(l.Children.count(e)===1){let t=e;if(t.props)return t.props.id}return null}var iQ=_(GX)({position:"absolute",top:0,left:0,right:0,height:40}),lQ=_.div({overflow:"hidden",position:"relative"}),YC=({isLoading:e,isColumn:t,columns:r,children:n,withSource:a,withToolbar:o=!1,isExpanded:i=!1,additionalActions:s,className:u,layout:d="padded",...p})=>{let[h,m]=l.useState(i),{source:f,actionItem:v}=aQ(a,h,m),[g,b]=l.useState(1),C=[u].concat(["sbdocs","sbdocs-preview","sb-unstyled"]),w=a?[v]:[],[x,E]=l.useState(s?[...s]:[]),D=[...w,...x],{window:S}=nt,A=l.useCallback(async F=>{let{createCopyToClipboardFunction:T}=await ip(()=>import("./index-bcb7655a.js"),["./index-bcb7655a.js","./iframe-33901838.js","./index-f1f2c4b1.js","./client-e941fabf.js","./index-5f347087.js","./index-1b441bc2.js","./isArray-03ed71c9.js","./index-356e4a49.js"],import.meta.url);T()},[]),k=F=>{let T=S.getSelection();T&&T.type==="Range"||(F.preventDefault(),x.filter(R=>R.title==="Copied").length===0&&A(f.props.code).then(()=>{E([...x,{title:"Copied",onClick:()=>{}}]),S.setTimeout(()=>E(x.filter(R=>R.title!=="Copied")),1500)}))};return y.createElement(nQ,{withSource:a,withToolbar:o,...p,className:C.join(" ")},o&&y.createElement(iQ,{isLoading:e,border:!0,zoom:F=>b(g*F),resetZoom:()=>b(1),storyId:oQ(n),baseUrl:"./iframe.html"}),y.createElement(GC.Provider,{value:{scale:g}},y.createElement(lQ,{className:"docs-story",onCopyCapture:a&&k},y.createElement(rQ,{isColumn:t||!Array.isArray(n),columns:r,layout:d},y.createElement(Wz.Element,{scale:g},Array.isArray(n)?n.map((F,T)=>y.createElement("div",{key:T},F)):y.createElement("div",null,n))),y.createElement(Lp,{actionItems:D}))),a&&h&&f)};_(YC)(()=>({".docs-story":{paddingTop:32,paddingBottom:40}}));var sQ=_.table(({theme:e})=>({"&&":{borderCollapse:"collapse",borderSpacing:0,border:"none",tr:{border:"none !important",background:"none"},"td, th":{padding:0,border:"none",width:"auto!important"},marginTop:0,marginBottom:0,"th:first-of-type, td:first-of-type":{paddingLeft:0},"th:last-of-type, td:last-of-type":{paddingRight:0},td:{paddingTop:0,paddingBottom:4,"&:not(:first-of-type)":{paddingLeft:10,paddingRight:0}},tbody:{boxShadow:"none",border:"none"},code:Pr({theme:e}),div:{span:{fontWeight:"bold"}},"& code":{margin:0,display:"inline-block",fontSize:e.typography.size.s1}}})),uQ=({tags:e})=>{let t=(e.params||[]).filter(o=>o.description),r=t.length!==0,n=e.deprecated!=null,a=e.returns!=null&&e.returns.description!=null;return!r&&!a&&!n?null:y.createElement(y.Fragment,null,y.createElement(sQ,null,y.createElement("tbody",null,n&&y.createElement("tr",{key:"deprecated"},y.createElement("td",{colSpan:2},y.createElement("strong",null,"Deprecated"),": ",e.deprecated.toString())),r&&t.map(o=>y.createElement("tr",{key:o.name},y.createElement("td",null,y.createElement("code",null,o.name)),y.createElement("td",null,o.description))),a&&y.createElement("tr",{key:"returns"},y.createElement("td",null,y.createElement("code",null,"Returns")),y.createElement("td",null,e.returns.description)))))},ep=8,Q3=_.div(({isExpanded:e})=>({display:"flex",flexDirection:e?"column":"row",flexWrap:"wrap",alignItems:"flex-start",marginBottom:"-4px",minWidth:100})),cQ=_.span(Pr,({theme:e,simple:t=!1})=>({flex:"0 0 auto",fontFamily:e.typography.fonts.mono,fontSize:e.typography.size.s1,wordBreak:"break-word",whiteSpace:"normal",maxWidth:"100%",margin:0,marginRight:"4px",marginBottom:"4px",paddingTop:"2px",paddingBottom:"2px",lineHeight:"13px",...t&&{background:"transparent",border:"0 none",paddingLeft:0}})),dQ=_.button(({theme:e})=>({fontFamily:e.typography.fonts.mono,color:e.color.secondary,marginBottom:"4px",background:"none",border:"none"})),pQ=_.div(Pr,({theme:e})=>({fontFamily:e.typography.fonts.mono,color:e.color.secondary,fontSize:e.typography.size.s1,margin:0,whiteSpace:"nowrap",display:"flex",alignItems:"center"})),fQ=_.div(({theme:e,width:t})=>({width:t,minWidth:200,maxWidth:800,padding:15,fontFamily:e.typography.fonts.mono,fontSize:e.typography.size.s1,boxSizing:"content-box","& code":{padding:"0 !important"}})),hQ=_(hL)({marginLeft:4}),mQ=_(Lx)({marginLeft:4}),gQ=()=>y.createElement("span",null,"-"),JC=({text:e,simple:t})=>y.createElement(cQ,{simple:t},e),vQ=TC(1e3)(e=>{let t=e.split(/\r?\n/);return`${Math.max(...t.map(r=>r.length))}ch`}),yQ=e=>{if(!e)return[e];let t=e.split("|").map(r=>r.trim());return wG(t)},ey=(e,t=!0)=>{let r=e;return t||(r=e.slice(0,ep)),r.map(n=>y.createElement(JC,{key:n,text:n===""?'""':n}))},bQ=({value:e,initialExpandedArgs:t})=>{let{summary:r,detail:n}=e,[a,o]=l.useState(!1),[i,s]=l.useState(t||!1);if(r==null)return null;let u=typeof r.toString=="function"?r.toString():r;if(n==null){if(/[(){}[\]<>]/.test(u))return y.createElement(JC,{text:u});let d=yQ(u),p=d.length;return p>ep?y.createElement(Q3,{isExpanded:i},ey(d,i),y.createElement(dQ,{onClick:()=>s(!i)},i?"Show less...":`Show ${p-ep} more...`)):y.createElement(Q3,null,ey(d))}return y.createElement(A$,{closeOnOutsideClick:!0,placement:"bottom",visible:a,onVisibleChange:d=>{o(d)},tooltip:y.createElement(fQ,{width:vQ(n)},y.createElement(lh,{language:"jsx",format:!1},n))},y.createElement(pQ,{className:"sbdocs-expandable"},y.createElement("span",null,u),a?y.createElement(hQ,null):y.createElement(mQ,null)))},od=({value:e,initialExpandedArgs:t})=>e==null?y.createElement(gQ,null):y.createElement(bQ,{value:e,initialExpandedArgs:t}),wQ=_.label(({theme:e})=>({lineHeight:"18px",alignItems:"center",marginBottom:8,display:"inline-block",position:"relative",whiteSpace:"nowrap",background:e.boolean.background,borderRadius:"3em",padding:1,'&[aria-disabled="true"]':{opacity:.5,input:{cursor:"not-allowed"}},input:{appearance:"none",width:"100%",height:"100%",position:"absolute",left:0,top:0,margin:0,padding:0,border:"none",background:"transparent",cursor:"pointer",borderRadius:"3em","&:focus":{outline:"none",boxShadow:`${e.color.secondary} 0 0 0 1px inset !important`}},span:{textAlign:"center",fontSize:e.typography.size.s1,fontWeight:e.typography.weight.bold,lineHeight:"1",cursor:"pointer",display:"inline-block",padding:"7px 15px",transition:"all 100ms ease-out",userSelect:"none",borderRadius:"3em",color:ie(.5,e.color.defaultText),background:"transparent","&:hover":{boxShadow:`${Xi(.3,e.appBorderColor)} 0 0 0 1px inset`},"&:active":{boxShadow:`${Xi(.05,e.appBorderColor)} 0 0 0 2px inset`,color:Xi(1,e.appBorderColor)},"&:first-of-type":{paddingRight:8},"&:last-of-type":{paddingLeft:8}},"input:checked ~ span:last-of-type, input:not(:checked) ~ span:first-of-type":{background:e.boolean.selectedBackground,boxShadow:e.base==="light"?`${Xi(.1,e.appBorderColor)} 0 0 2px`:`${e.appBorderColor} 0 0 0 1px`,color:e.color.defaultText,padding:"7px 15px"}})),EQ=e=>e==="true",xQ=({name:e,value:t,onChange:r,onBlur:n,onFocus:a,argType:o})=>{var p;let i=l.useCallback(()=>r(!1),[r]),s=!!((p=o==null?void 0:o.table)!=null&&p.readonly);if(t===void 0)return y.createElement(Sn,{variant:"outline",size:"medium",id:Ds(e),onClick:i,disabled:s},"Set boolean");let u=xt(e),d=typeof t=="string"?EQ(t):t;return y.createElement(wQ,{"aria-disabled":s,htmlFor:u,"aria-label":e},y.createElement("input",{id:u,type:"checkbox",onChange:h=>r(h.target.checked),checked:d,role:"switch",disabled:s,name:e,onBlur:n,onFocus:a}),y.createElement("span",{"aria-hidden":"true"},"False"),y.createElement("span",{"aria-hidden":"true"},"True"))},CQ=e=>{let[t,r,n]=e.split("-"),a=new Date;return a.setFullYear(parseInt(t,10),parseInt(r,10)-1,parseInt(n,10)),a},DQ=e=>{let[t,r]=e.split(":"),n=new Date;return n.setHours(parseInt(t,10)),n.setMinutes(parseInt(r,10)),n},SQ=e=>{let t=new Date(e),r=`000${t.getFullYear()}`.slice(-4),n=`0${t.getMonth()+1}`.slice(-2),a=`0${t.getDate()}`.slice(-2);return`${r}-${n}-${a}`},AQ=e=>{let t=new Date(e),r=`0${t.getHours()}`.slice(-2),n=`0${t.getMinutes()}`.slice(-2);return`${r}:${n}`},ty=_(Di.Input)(({readOnly:e})=>({opacity:e?.5:1})),kQ=_.div(({theme:e})=>({flex:1,display:"flex",input:{marginLeft:10,flex:1,height:32,"&::-webkit-calendar-picker-indicator":{opacity:.5,height:12,filter:e.base==="light"?void 0:"invert(1)"}},"input:first-of-type":{marginLeft:0,flexGrow:4},"input:last-of-type":{flexGrow:3}})),_Q=({name:e,value:t,onChange:r,onFocus:n,onBlur:a,argType:o})=>{var v;let[i,s]=l.useState(!0),u=l.useRef(),d=l.useRef(),p=!!((v=o==null?void 0:o.table)!=null&&v.readonly);l.useEffect(()=>{i!==!1&&(u&&u.current&&(u.current.value=t?SQ(t):""),d&&d.current&&(d.current.value=t?AQ(t):""))},[t]);let h=g=>{if(!g.target.value)return r();let b=CQ(g.target.value),C=new Date(t);C.setFullYear(b.getFullYear(),b.getMonth(),b.getDate());let w=C.getTime();w&&r(w),s(!!w)},m=g=>{if(!g.target.value)return r();let b=DQ(g.target.value),C=new Date(t);C.setHours(b.getHours()),C.setMinutes(b.getMinutes());let w=C.getTime();w&&r(w),s(!!w)},f=xt(e);return y.createElement(kQ,null,y.createElement(ty,{type:"date",max:"9999-12-31",ref:u,id:`${f}-date`,name:`${f}-date`,readOnly:p,onChange:h,onFocus:n,onBlur:a}),y.createElement(ty,{type:"time",id:`${f}-time`,name:`${f}-time`,ref:d,onChange:m,readOnly:p,onFocus:n,onBlur:a}),i?null:y.createElement("div",null,"invalid"))},FQ=_.label({display:"flex"}),IQ=e=>{let t=parseFloat(e);return Number.isNaN(t)?void 0:t},TQ=_(Di.Input)(({readOnly:e})=>({opacity:e?.5:1})),RQ=({name:e,value:t,onChange:r,min:n,max:a,step:o,onBlur:i,onFocus:s,argType:u})=>{var x;let[d,p]=l.useState(typeof t=="number"?t:""),[h,m]=l.useState(!1),[f,v]=l.useState(null),g=!!((x=u==null?void 0:u.table)!=null&&x.readonly),b=l.useCallback(E=>{p(E.target.value);let D=parseFloat(E.target.value);Number.isNaN(D)?v(new Error(`'${E.target.value}' is not a number`)):(r(D),v(null))},[r,v]),C=l.useCallback(()=>{p("0"),r(0),m(!0)},[m]),w=l.useRef(null);return l.useEffect(()=>{h&&w.current&&w.current.select()},[h]),l.useEffect(()=>{d!==(typeof t=="number"?t:"")&&p(t)},[t]),t===void 0?y.createElement(Sn,{variant:"outline",size:"medium",id:Ds(e),onClick:C,disabled:g},"Set number"):y.createElement(FQ,null,y.createElement(TQ,{ref:w,id:xt(e),type:"number",onChange:b,size:"flex",placeholder:"Edit number...",value:d,valid:f?"error":null,autoFocus:h,readOnly:g,name:e,min:n,max:a,step:o,onFocus:s,onBlur:i}))},ZC=(e,t)=>{let r=t&&Object.entries(t).find(([n,a])=>a===e);return r?r[0]:void 0},tp=(e,t)=>e&&t?Object.entries(t).filter(r=>e.includes(r[1])).map(r=>r[0]):[],XC=(e,t)=>e&&t&&e.map(r=>t[r]),BQ=_.div(({isInline:e})=>e?{display:"flex",flexWrap:"wrap",alignItems:"flex-start",label:{display:"inline-flex",marginRight:15}}:{label:{display:"flex"}},e=>{if(e["aria-readonly"]==="true")return{input:{cursor:"not-allowed"}}}),zQ=_.span({"[aria-readonly=true] &":{opacity:.5}}),$Q=_.label({lineHeight:"20px",alignItems:"center",marginBottom:8,"&:last-child":{marginBottom:0},input:{margin:0,marginRight:6}}),ry=({name:e,options:t,value:r,onChange:n,isInline:a,argType:o})=>{var m;if(!t)return jh.warn(`Checkbox with no options: ${e}`),y.createElement(y.Fragment,null,"-");let i=tp(r,t),[s,u]=l.useState(i),d=!!((m=o==null?void 0:o.table)!=null&&m.readonly),p=f=>{let v=f.target.value,g=[...s];g.includes(v)?g.splice(g.indexOf(v),1):g.push(v),n(XC(g,t)),u(g)};l.useEffect(()=>{u(tp(r,t))},[r]);let h=xt(e);return y.createElement(BQ,{"aria-readonly":d,isInline:a},Object.keys(t).map((f,v)=>{let g=`${h}-${v}`;return y.createElement($Q,{key:g,htmlFor:g},y.createElement("input",{type:"checkbox",disabled:d,id:g,name:g,value:f,onChange:p,checked:s==null?void 0:s.includes(f)}),y.createElement(zQ,null,f))}))},OQ=_.div(({isInline:e})=>e?{display:"flex",flexWrap:"wrap",alignItems:"flex-start",label:{display:"inline-flex",marginRight:15}}:{label:{display:"flex"}},e=>{if(e["aria-readonly"]==="true")return{input:{cursor:"not-allowed"}}}),LQ=_.span({"[aria-readonly=true] &":{opacity:.5}}),MQ=_.label({lineHeight:"20px",alignItems:"center",marginBottom:8,"&:last-child":{marginBottom:0},input:{margin:0,marginRight:6}}),ny=({name:e,options:t,value:r,onChange:n,isInline:a,argType:o})=>{var d;if(!t)return jh.warn(`Radio with no options: ${e}`),y.createElement(y.Fragment,null,"-");let i=ZC(r,t),s=xt(e),u=!!((d=o==null?void 0:o.table)!=null&&d.readonly);return y.createElement(OQ,{"aria-readonly":u,isInline:a},Object.keys(t).map((p,h)=>{let m=`${s}-${h}`;return y.createElement(MQ,{key:m,htmlFor:m},y.createElement("input",{type:"radio",id:m,name:s,disabled:u,value:p,onChange:f=>n(t[f.currentTarget.value]),checked:p===i}),y.createElement(LQ,null,p))}))},PQ={appearance:"none",border:"0 none",boxSizing:"inherit",display:" block",margin:" 0",background:"transparent",padding:0,fontSize:"inherit",position:"relative"},QC=_.select(PQ,({theme:e})=>({boxSizing:"border-box",position:"relative",padding:"6px 10px",width:"100%",color:e.input.color||"inherit",background:e.input.background,borderRadius:e.input.borderRadius,boxShadow:`${e.input.border} 0 0 0 1px inset`,fontSize:e.typography.size.s2-1,lineHeight:"20px","&:focus":{boxShadow:`${e.color.secondary} 0 0 0 1px inset`,outline:"none"},"&[disabled]":{cursor:"not-allowed",opacity:.5},"::placeholder":{color:e.textMutedColor},"&[multiple]":{overflow:"auto",padding:0,option:{display:"block",padding:"6px 10px",marginLeft:1,marginRight:1}}})),eD=_.span(({theme:e})=>({display:"inline-block",lineHeight:"normal",overflow:"hidden",position:"relative",verticalAlign:"top",width:"100%",svg:{position:"absolute",zIndex:1,pointerEvents:"none",height:"12px",marginTop:"-6px",right:"12px",top:"50%",fill:e.textMutedColor,path:{fill:e.textMutedColor}}})),ay="Choose option...",NQ=({name:e,value:t,options:r,onChange:n,argType:a})=>{var d;let o=p=>{n(r[p.currentTarget.value])},i=ZC(t,r)||ay,s=xt(e),u=!!((d=a==null?void 0:a.table)!=null&&d.readonly);return y.createElement(eD,null,y.createElement(Lx,null),y.createElement(QC,{disabled:u,id:s,value:i,onChange:o},y.createElement("option",{key:"no-selection",disabled:!0},ay),Object.keys(r).map(p=>y.createElement("option",{key:p,value:p},p))))},HQ=({name:e,value:t,options:r,onChange:n,argType:a})=>{var d;let o=p=>{let h=Array.from(p.currentTarget.options).filter(m=>m.selected).map(m=>m.value);n(XC(h,r))},i=tp(t,r),s=xt(e),u=!!((d=a==null?void 0:a.table)!=null&&d.readonly);return y.createElement(eD,null,y.createElement(QC,{disabled:u,id:s,multiple:!0,value:i,onChange:o},Object.keys(r).map(p=>y.createElement("option",{key:p,value:p},p))))},oy=e=>{let{name:t,options:r}=e;return r?e.isMulti?y.createElement(HQ,{...e}):y.createElement(NQ,{...e}):(jh.warn(`Select with no options: ${t}`),y.createElement(y.Fragment,null,"-"))},jQ=(e,t)=>Array.isArray(e)?e.reduce((r,n)=>(r[(t==null?void 0:t[n])||String(n)]=n,r),{}):e,VQ={check:ry,"inline-check":ry,radio:ny,"inline-radio":ny,select:oy,"multi-select":oy},Pn=e=>{let{type:t="select",labels:r,argType:n}=e,a={...e,argType:n,options:n?jQ(n.options,r):{},isInline:t.includes("inline"),isMulti:t.includes("multi")},o=VQ[t];if(o)return y.createElement(o,{...a});throw new Error(`Unknown options type: ${t}`)},Uh="value",UQ="key",qQ="Error",WQ="Object",GQ="Array",KQ="String",YQ="Number",JQ="Boolean",ZQ="Date",XQ="Null",QQ="Undefined",eee="Function",tee="Symbol",tD="ADD_DELTA_TYPE",rD="REMOVE_DELTA_TYPE",nD="UPDATE_DELTA_TYPE";function an(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)&&typeof e[Symbol.iterator]=="function"?"Iterable":Object.prototype.toString.call(e).slice(8,-1)}function aD(e,t){let r=an(e),n=an(t);return(r==="Function"||n==="Function")&&n!==r}var qh=class extends l.Component{constructor(e){super(e),this.state={inputRefKey:null,inputRefValue:null},this.refInputValue=this.refInputValue.bind(this),this.refInputKey=this.refInputKey.bind(this),this.onKeydown=this.onKeydown.bind(this),this.onSubmit=this.onSubmit.bind(this)}componentDidMount(){let{inputRefKey:e,inputRefValue:t}=this.state,{onlyValue:r}=this.props;e&&typeof e.focus=="function"&&e.focus(),r&&t&&typeof t.focus=="function"&&t.focus(),document.addEventListener("keydown",this.onKeydown)}componentWillUnmount(){document.removeEventListener("keydown",this.onKeydown)}onKeydown(e){e.altKey||e.ctrlKey||e.metaKey||e.shiftKey||e.repeat||((e.code==="Enter"||e.key==="Enter")&&(e.preventDefault(),this.onSubmit()),(e.code==="Escape"||e.key==="Escape")&&(e.preventDefault(),this.props.handleCancel()))}onSubmit(){let{handleAdd:e,onlyValue:t,onSubmitValueParser:r,keyPath:n,deep:a}=this.props,{inputRefKey:o,inputRefValue:i}=this.state,s={};if(!t){if(!o.value)return;s.key=o.value}s.newValue=r(!1,n,a,s.key,i.value),e(s)}refInputKey(e){this.state.inputRefKey=e}refInputValue(e){this.state.inputRefValue=e}render(){let{handleCancel:e,onlyValue:t,addButtonElement:r,cancelButtonElement:n,inputElementGenerator:a,keyPath:o,deep:i}=this.props,s=l.cloneElement(r,{onClick:this.onSubmit}),u=l.cloneElement(n,{onClick:e}),d=a(Uh,o,i),p=l.cloneElement(d,{placeholder:"Value",ref:this.refInputValue}),h=null;if(!t){let m=a(UQ,o,i);h=l.cloneElement(m,{placeholder:"Key",ref:this.refInputKey})}return y.createElement("span",{className:"rejt-add-value-node"},h,p,u,s)}};qh.defaultProps={onlyValue:!1,addButtonElement:y.createElement("button",null,"+"),cancelButtonElement:y.createElement("button",null,"c")};var oD=class extends l.Component{constructor(e){super(e);let t=[...e.keyPath,e.name];this.state={data:e.data,name:e.name,keyPath:t,deep:e.deep,nextDeep:e.deep+1,collapsed:e.isCollapsed(t,e.deep,e.data),addFormVisible:!1},this.handleCollapseMode=this.handleCollapseMode.bind(this),this.handleRemoveItem=this.handleRemoveItem.bind(this),this.handleAddMode=this.handleAddMode.bind(this),this.handleAddValueAdd=this.handleAddValueAdd.bind(this),this.handleAddValueCancel=this.handleAddValueCancel.bind(this),this.handleEditValue=this.handleEditValue.bind(this),this.onChildUpdate=this.onChildUpdate.bind(this),this.renderCollapsed=this.renderCollapsed.bind(this),this.renderNotCollapsed=this.renderNotCollapsed.bind(this)}static getDerivedStateFromProps(e,t){return e.data!==t.data?{data:e.data}:null}onChildUpdate(e,t){let{data:r,keyPath:n}=this.state;r[e]=t,this.setState({data:r});let{onUpdate:a}=this.props,o=n.length;a(n[o-1],r)}handleAddMode(){this.setState({addFormVisible:!0})}handleCollapseMode(){this.setState(e=>({collapsed:!e.collapsed}))}handleRemoveItem(e){return()=>{let{beforeRemoveAction:t,logger:r}=this.props,{data:n,keyPath:a,nextDeep:o}=this.state,i=n[e];t(e,a,o,i).then(()=>{let s={keyPath:a,deep:o,key:e,oldValue:i,type:rD};n.splice(e,1),this.setState({data:n});let{onUpdate:u,onDeltaUpdate:d}=this.props;u(a[a.length-1],n),d(s)}).catch(r.error)}}handleAddValueAdd({newValue:e}){let{data:t,keyPath:r,nextDeep:n}=this.state,{beforeAddAction:a,logger:o}=this.props;a(t.length,r,n,e).then(()=>{let i=[...t,e];this.setState({data:i}),this.handleAddValueCancel();let{onUpdate:s,onDeltaUpdate:u}=this.props;s(r[r.length-1],i),u({type:tD,keyPath:r,deep:n,key:i.length-1,newValue:e})}).catch(o.error)}handleAddValueCancel(){this.setState({addFormVisible:!1})}handleEditValue({key:e,value:t}){return new Promise((r,n)=>{let{beforeUpdateAction:a}=this.props,{data:o,keyPath:i,nextDeep:s}=this.state,u=o[e];a(e,i,s,u,t).then(()=>{o[e]=t,this.setState({data:o});let{onUpdate:d,onDeltaUpdate:p}=this.props;d(i[i.length-1],o),p({type:nD,keyPath:i,deep:s,key:e,newValue:t,oldValue:u}),r(void 0)}).catch(n)})}renderCollapsed(){let{name:e,data:t,keyPath:r,deep:n}=this.state,{handleRemove:a,readOnly:o,getStyle:i,dataType:s,minusMenuElement:u}=this.props,{minus:d,collapsed:p}=i(e,t,r,n,s),h=o(e,t,r,n,s),m=l.cloneElement(u,{onClick:a,className:"rejt-minus-menu",style:d});return y.createElement("span",{className:"rejt-collapsed"},y.createElement("span",{className:"rejt-collapsed-text",style:p,onClick:this.handleCollapseMode},"[...] ",t.length," ",t.length===1?"item":"items"),!h&&m)}renderNotCollapsed(){let{name:e,data:t,keyPath:r,deep:n,addFormVisible:a,nextDeep:o}=this.state,{isCollapsed:i,handleRemove:s,onDeltaUpdate:u,readOnly:d,getStyle:p,dataType:h,addButtonElement:m,cancelButtonElement:f,editButtonElement:v,inputElementGenerator:g,textareaElementGenerator:b,minusMenuElement:C,plusMenuElement:w,beforeRemoveAction:x,beforeAddAction:E,beforeUpdateAction:D,logger:S,onSubmitValueParser:A}=this.props,{minus:k,plus:F,delimiter:T,ul:R,addForm:$}=p(e,t,r,n,h),z=d(e,t,r,n,h),L=l.cloneElement(w,{onClick:this.handleAddMode,className:"rejt-plus-menu",style:F}),O=l.cloneElement(C,{onClick:s,className:"rejt-minus-menu",style:k});return y.createElement("span",{className:"rejt-not-collapsed"},y.createElement("span",{className:"rejt-not-collapsed-delimiter",style:T},"["),!a&&L,y.createElement("ul",{className:"rejt-not-collapsed-list",style:R},t.map((M,j)=>y.createElement(Bu,{key:j,name:j.toString(),data:M,keyPath:r,deep:o,isCollapsed:i,handleRemove:this.handleRemoveItem(j),handleUpdateValue:this.handleEditValue,onUpdate:this.onChildUpdate,onDeltaUpdate:u,readOnly:d,getStyle:p,addButtonElement:m,cancelButtonElement:f,editButtonElement:v,inputElementGenerator:g,textareaElementGenerator:b,minusMenuElement:C,plusMenuElement:w,beforeRemoveAction:x,beforeAddAction:E,beforeUpdateAction:D,logger:S,onSubmitValueParser:A}))),!z&&a&&y.createElement("div",{className:"rejt-add-form",style:$},y.createElement(qh,{handleAdd:this.handleAddValueAdd,handleCancel:this.handleAddValueCancel,onlyValue:!0,addButtonElement:m,cancelButtonElement:f,inputElementGenerator:g,keyPath:r,deep:n,onSubmitValueParser:A})),y.createElement("span",{className:"rejt-not-collapsed-delimiter",style:T},"]"),!z&&O)}render(){let{name:e,collapsed:t,data:r,keyPath:n,deep:a}=this.state,{dataType:o,getStyle:i}=this.props,s=t?this.renderCollapsed():this.renderNotCollapsed(),u=i(e,r,n,a,o);return y.createElement("div",{className:"rejt-array-node"},y.createElement("span",{onClick:this.handleCollapseMode},y.createElement("span",{className:"rejt-name",style:u.name},e," :"," ")),s)}};oD.defaultProps={keyPath:[],deep:0,minusMenuElement:y.createElement("span",null," - "),plusMenuElement:y.createElement("span",null," + ")};var iD=class extends l.Component{constructor(e){super(e);let t=[...e.keyPath,e.name];this.state={value:e.value,name:e.name,keyPath:t,deep:e.deep,editEnabled:!1,inputRef:null},this.handleEditMode=this.handleEditMode.bind(this),this.refInput=this.refInput.bind(this),this.handleCancelEdit=this.handleCancelEdit.bind(this),this.handleEdit=this.handleEdit.bind(this),this.onKeydown=this.onKeydown.bind(this)}static getDerivedStateFromProps(e,t){return e.value!==t.value?{value:e.value}:null}componentDidUpdate(){let{editEnabled:e,inputRef:t,name:r,value:n,keyPath:a,deep:o}=this.state,{readOnly:i,dataType:s}=this.props,u=i(r,n,a,o,s);e&&!u&&typeof t.focus=="function"&&t.focus()}componentDidMount(){document.addEventListener("keydown",this.onKeydown)}componentWillUnmount(){document.removeEventListener("keydown",this.onKeydown)}onKeydown(e){e.altKey||e.ctrlKey||e.metaKey||e.shiftKey||e.repeat||((e.code==="Enter"||e.key==="Enter")&&(e.preventDefault(),this.handleEdit()),(e.code==="Escape"||e.key==="Escape")&&(e.preventDefault(),this.handleCancelEdit()))}handleEdit(){let{handleUpdateValue:e,originalValue:t,logger:r,onSubmitValueParser:n,keyPath:a}=this.props,{inputRef:o,name:i,deep:s}=this.state;if(!o)return;let u=n(!0,a,s,i,o.value);e({value:u,key:i}).then(()=>{aD(t,u)||this.handleCancelEdit()}).catch(r.error)}handleEditMode(){this.setState({editEnabled:!0})}refInput(e){this.state.inputRef=e}handleCancelEdit(){this.setState({editEnabled:!1})}render(){let{name:e,value:t,editEnabled:r,keyPath:n,deep:a}=this.state,{handleRemove:o,originalValue:i,readOnly:s,dataType:u,getStyle:d,editButtonElement:p,cancelButtonElement:h,textareaElementGenerator:m,minusMenuElement:f,keyPath:v}=this.props,g=d(e,i,n,a,u),b=null,C=null,w=s(e,i,n,a,u);if(r&&!w){let x=m(Uh,v,a,e,i,u),E=l.cloneElement(p,{onClick:this.handleEdit}),D=l.cloneElement(h,{onClick:this.handleCancelEdit}),S=l.cloneElement(x,{ref:this.refInput,defaultValue:i});b=y.createElement("span",{className:"rejt-edit-form",style:g.editForm},S," ",D,E),C=null}else{b=y.createElement("span",{className:"rejt-value",style:g.value,onClick:w?null:this.handleEditMode},t);let x=l.cloneElement(f,{onClick:o,className:"rejt-minus-menu",style:g.minus});C=w?null:x}return y.createElement("li",{className:"rejt-function-value-node",style:g.li},y.createElement("span",{className:"rejt-name",style:g.name},e," :"," "),b,C)}};iD.defaultProps={keyPath:[],deep:0,handleUpdateValue:()=>{},editButtonElement:y.createElement("button",null,"e"),cancelButtonElement:y.createElement("button",null,"c"),minusMenuElement:y.createElement("span",null," - ")};var Bu=class extends l.Component{constructor(e){super(e),this.state={data:e.data,name:e.name,keyPath:e.keyPath,deep:e.deep}}static getDerivedStateFromProps(e,t){return e.data!==t.data?{data:e.data}:null}render(){let{data:e,name:t,keyPath:r,deep:n}=this.state,{isCollapsed:a,handleRemove:o,handleUpdateValue:i,onUpdate:s,onDeltaUpdate:u,readOnly:d,getStyle:p,addButtonElement:h,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,textareaElementGenerator:g,minusMenuElement:b,plusMenuElement:C,beforeRemoveAction:w,beforeAddAction:x,beforeUpdateAction:E,logger:D,onSubmitValueParser:S}=this.props,A=()=>!0,k=an(e);switch(k){case qQ:return y.createElement(rp,{data:e,name:t,isCollapsed:a,keyPath:r,deep:n,handleRemove:o,onUpdate:s,onDeltaUpdate:u,readOnly:A,dataType:k,getStyle:p,addButtonElement:h,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,textareaElementGenerator:g,minusMenuElement:b,plusMenuElement:C,beforeRemoveAction:w,beforeAddAction:x,beforeUpdateAction:E,logger:D,onSubmitValueParser:S});case WQ:return y.createElement(rp,{data:e,name:t,isCollapsed:a,keyPath:r,deep:n,handleRemove:o,onUpdate:s,onDeltaUpdate:u,readOnly:d,dataType:k,getStyle:p,addButtonElement:h,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,textareaElementGenerator:g,minusMenuElement:b,plusMenuElement:C,beforeRemoveAction:w,beforeAddAction:x,beforeUpdateAction:E,logger:D,onSubmitValueParser:S});case GQ:return y.createElement(oD,{data:e,name:t,isCollapsed:a,keyPath:r,deep:n,handleRemove:o,onUpdate:s,onDeltaUpdate:u,readOnly:d,dataType:k,getStyle:p,addButtonElement:h,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,textareaElementGenerator:g,minusMenuElement:b,plusMenuElement:C,beforeRemoveAction:w,beforeAddAction:x,beforeUpdateAction:E,logger:D,onSubmitValueParser:S});case KQ:return y.createElement(xr,{name:t,value:`"${e}"`,originalValue:e,keyPath:r,deep:n,handleRemove:o,handleUpdateValue:i,readOnly:d,dataType:k,getStyle:p,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,minusMenuElement:b,logger:D,onSubmitValueParser:S});case YQ:return y.createElement(xr,{name:t,value:e,originalValue:e,keyPath:r,deep:n,handleRemove:o,handleUpdateValue:i,readOnly:d,dataType:k,getStyle:p,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,minusMenuElement:b,logger:D,onSubmitValueParser:S});case JQ:return y.createElement(xr,{name:t,value:e?"true":"false",originalValue:e,keyPath:r,deep:n,handleRemove:o,handleUpdateValue:i,readOnly:d,dataType:k,getStyle:p,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,minusMenuElement:b,logger:D,onSubmitValueParser:S});case ZQ:return y.createElement(xr,{name:t,value:e.toISOString(),originalValue:e,keyPath:r,deep:n,handleRemove:o,handleUpdateValue:i,readOnly:A,dataType:k,getStyle:p,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,minusMenuElement:b,logger:D,onSubmitValueParser:S});case XQ:return y.createElement(xr,{name:t,value:"null",originalValue:"null",keyPath:r,deep:n,handleRemove:o,handleUpdateValue:i,readOnly:d,dataType:k,getStyle:p,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,minusMenuElement:b,logger:D,onSubmitValueParser:S});case QQ:return y.createElement(xr,{name:t,value:"undefined",originalValue:"undefined",keyPath:r,deep:n,handleRemove:o,handleUpdateValue:i,readOnly:d,dataType:k,getStyle:p,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,minusMenuElement:b,logger:D,onSubmitValueParser:S});case eee:return y.createElement(iD,{name:t,value:e.toString(),originalValue:e,keyPath:r,deep:n,handleRemove:o,handleUpdateValue:i,readOnly:d,dataType:k,getStyle:p,cancelButtonElement:m,editButtonElement:f,textareaElementGenerator:g,minusMenuElement:b,logger:D,onSubmitValueParser:S});case tee:return y.createElement(xr,{name:t,value:e.toString(),originalValue:e,keyPath:r,deep:n,handleRemove:o,handleUpdateValue:i,readOnly:A,dataType:k,getStyle:p,cancelButtonElement:m,editButtonElement:f,inputElementGenerator:v,minusMenuElement:b,logger:D,onSubmitValueParser:S});default:return null}}};Bu.defaultProps={keyPath:[],deep:0};var rp=class extends l.Component{constructor(e){super(e);let t=e.deep===-1?[]:[...e.keyPath,e.name];this.state={name:e.name,data:e.data,keyPath:t,deep:e.deep,nextDeep:e.deep+1,collapsed:e.isCollapsed(t,e.deep,e.data),addFormVisible:!1},this.handleCollapseMode=this.handleCollapseMode.bind(this),this.handleRemoveValue=this.handleRemoveValue.bind(this),this.handleAddMode=this.handleAddMode.bind(this),this.handleAddValueAdd=this.handleAddValueAdd.bind(this),this.handleAddValueCancel=this.handleAddValueCancel.bind(this),this.handleEditValue=this.handleEditValue.bind(this),this.onChildUpdate=this.onChildUpdate.bind(this),this.renderCollapsed=this.renderCollapsed.bind(this),this.renderNotCollapsed=this.renderNotCollapsed.bind(this)}static getDerivedStateFromProps(e,t){return e.data!==t.data?{data:e.data}:null}onChildUpdate(e,t){let{data:r,keyPath:n}=this.state;r[e]=t,this.setState({data:r});let{onUpdate:a}=this.props,o=n.length;a(n[o-1],r)}handleAddMode(){this.setState({addFormVisible:!0})}handleAddValueCancel(){this.setState({addFormVisible:!1})}handleAddValueAdd({key:e,newValue:t}){let{data:r,keyPath:n,nextDeep:a}=this.state,{beforeAddAction:o,logger:i}=this.props;o(e,n,a,t).then(()=>{r[e]=t,this.setState({data:r}),this.handleAddValueCancel();let{onUpdate:s,onDeltaUpdate:u}=this.props;s(n[n.length-1],r),u({type:tD,keyPath:n,deep:a,key:e,newValue:t})}).catch(i.error)}handleRemoveValue(e){return()=>{let{beforeRemoveAction:t,logger:r}=this.props,{data:n,keyPath:a,nextDeep:o}=this.state,i=n[e];t(e,a,o,i).then(()=>{let s={keyPath:a,deep:o,key:e,oldValue:i,type:rD};delete n[e],this.setState({data:n});let{onUpdate:u,onDeltaUpdate:d}=this.props;u(a[a.length-1],n),d(s)}).catch(r.error)}}handleCollapseMode(){this.setState(e=>({collapsed:!e.collapsed}))}handleEditValue({key:e,value:t}){return new Promise((r,n)=>{let{beforeUpdateAction:a}=this.props,{data:o,keyPath:i,nextDeep:s}=this.state,u=o[e];a(e,i,s,u,t).then(()=>{o[e]=t,this.setState({data:o});let{onUpdate:d,onDeltaUpdate:p}=this.props;d(i[i.length-1],o),p({type:nD,keyPath:i,deep:s,key:e,newValue:t,oldValue:u}),r()}).catch(n)})}renderCollapsed(){let{name:e,keyPath:t,deep:r,data:n}=this.state,{handleRemove:a,readOnly:o,dataType:i,getStyle:s,minusMenuElement:u}=this.props,{minus:d,collapsed:p}=s(e,n,t,r,i),h=Object.getOwnPropertyNames(n),m=o(e,n,t,r,i),f=l.cloneElement(u,{onClick:a,className:"rejt-minus-menu",style:d});return y.createElement("span",{className:"rejt-collapsed"},y.createElement("span",{className:"rejt-collapsed-text",style:p,onClick:this.handleCollapseMode},"{...}"," ",h.length," ",h.length===1?"key":"keys"),!m&&f)}renderNotCollapsed(){let{name:e,data:t,keyPath:r,deep:n,nextDeep:a,addFormVisible:o}=this.state,{isCollapsed:i,handleRemove:s,onDeltaUpdate:u,readOnly:d,getStyle:p,dataType:h,addButtonElement:m,cancelButtonElement:f,editButtonElement:v,inputElementGenerator:g,textareaElementGenerator:b,minusMenuElement:C,plusMenuElement:w,beforeRemoveAction:x,beforeAddAction:E,beforeUpdateAction:D,logger:S,onSubmitValueParser:A}=this.props,{minus:k,plus:F,addForm:T,ul:R,delimiter:$}=p(e,t,r,n,h),z=Object.getOwnPropertyNames(t),L=d(e,t,r,n,h),O=l.cloneElement(w,{onClick:this.handleAddMode,className:"rejt-plus-menu",style:F}),M=l.cloneElement(C,{onClick:s,className:"rejt-minus-menu",style:k}),j=z.map(G=>y.createElement(Bu,{key:G,name:G,data:t[G],keyPath:r,deep:a,isCollapsed:i,handleRemove:this.handleRemoveValue(G),handleUpdateValue:this.handleEditValue,onUpdate:this.onChildUpdate,onDeltaUpdate:u,readOnly:d,getStyle:p,addButtonElement:m,cancelButtonElement:f,editButtonElement:v,inputElementGenerator:g,textareaElementGenerator:b,minusMenuElement:C,plusMenuElement:w,beforeRemoveAction:x,beforeAddAction:E,beforeUpdateAction:D,logger:S,onSubmitValueParser:A}));return y.createElement("span",{className:"rejt-not-collapsed"},y.createElement("span",{className:"rejt-not-collapsed-delimiter",style:$},"{"),!L&&O,y.createElement("ul",{className:"rejt-not-collapsed-list",style:R},j),!L&&o&&y.createElement("div",{className:"rejt-add-form",style:T},y.createElement(qh,{handleAdd:this.handleAddValueAdd,handleCancel:this.handleAddValueCancel,addButtonElement:m,cancelButtonElement:f,inputElementGenerator:g,keyPath:r,deep:n,onSubmitValueParser:A})),y.createElement("span",{className:"rejt-not-collapsed-delimiter",style:$},"}"),!L&&M)}render(){let{name:e,collapsed:t,data:r,keyPath:n,deep:a}=this.state,{getStyle:o,dataType:i}=this.props,s=t?this.renderCollapsed():this.renderNotCollapsed(),u=o(e,r,n,a,i);return y.createElement("div",{className:"rejt-object-node"},y.createElement("span",{onClick:this.handleCollapseMode},y.createElement("span",{className:"rejt-name",style:u.name},e," :"," ")),s)}};rp.defaultProps={keyPath:[],deep:0,minusMenuElement:y.createElement("span",null," - "),plusMenuElement:y.createElement("span",null," + ")};var xr=class extends l.Component{constructor(e){super(e);let t=[...e.keyPath,e.name];this.state={value:e.value,name:e.name,keyPath:t,deep:e.deep,editEnabled:!1,inputRef:null},this.handleEditMode=this.handleEditMode.bind(this),this.refInput=this.refInput.bind(this),this.handleCancelEdit=this.handleCancelEdit.bind(this),this.handleEdit=this.handleEdit.bind(this),this.onKeydown=this.onKeydown.bind(this)}static getDerivedStateFromProps(e,t){return e.value!==t.value?{value:e.value}:null}componentDidUpdate(){let{editEnabled:e,inputRef:t,name:r,value:n,keyPath:a,deep:o}=this.state,{readOnly:i,dataType:s}=this.props,u=i(r,n,a,o,s);e&&!u&&typeof t.focus=="function"&&t.focus()}componentDidMount(){document.addEventListener("keydown",this.onKeydown)}componentWillUnmount(){document.removeEventListener("keydown",this.onKeydown)}onKeydown(e){e.altKey||e.ctrlKey||e.metaKey||e.shiftKey||e.repeat||((e.code==="Enter"||e.key==="Enter")&&(e.preventDefault(),this.handleEdit()),(e.code==="Escape"||e.key==="Escape")&&(e.preventDefault(),this.handleCancelEdit()))}handleEdit(){let{handleUpdateValue:e,originalValue:t,logger:r,onSubmitValueParser:n,keyPath:a}=this.props,{inputRef:o,name:i,deep:s}=this.state;if(!o)return;let u=n(!0,a,s,i,o.value);e({value:u,key:i}).then(()=>{aD(t,u)||this.handleCancelEdit()}).catch(r.error)}handleEditMode(){this.setState({editEnabled:!0})}refInput(e){this.state.inputRef=e}handleCancelEdit(){this.setState({editEnabled:!1})}render(){let{name:e,value:t,editEnabled:r,keyPath:n,deep:a}=this.state,{handleRemove:o,originalValue:i,readOnly:s,dataType:u,getStyle:d,editButtonElement:p,cancelButtonElement:h,inputElementGenerator:m,minusMenuElement:f,keyPath:v}=this.props,g=d(e,i,n,a,u),b=s(e,i,n,a,u),C=r&&!b,w=m(Uh,v,a,e,i,u),x=l.cloneElement(p,{onClick:this.handleEdit}),E=l.cloneElement(h,{onClick:this.handleCancelEdit}),D=l.cloneElement(w,{ref:this.refInput,defaultValue:JSON.stringify(i)}),S=l.cloneElement(f,{onClick:o,className:"rejt-minus-menu",style:g.minus});return y.createElement("li",{className:"rejt-value-node",style:g.li},y.createElement("span",{className:"rejt-name",style:g.name},e," : "),C?y.createElement("span",{className:"rejt-edit-form",style:g.editForm},D," ",E,x):y.createElement("span",{className:"rejt-value",style:g.value,onClick:b?null:this.handleEditMode},String(t)),!b&&!C&&S)}};xr.defaultProps={keyPath:[],deep:0,handleUpdateValue:()=>Promise.resolve(),editButtonElement:y.createElement("button",null,"e"),cancelButtonElement:y.createElement("button",null,"c"),minusMenuElement:y.createElement("span",null," - ")};var ree={minus:{color:"red"},plus:{color:"green"},collapsed:{color:"grey"},delimiter:{},ul:{padding:"0px",margin:"0 0 0 25px",listStyle:"none"},name:{color:"#2287CD"},addForm:{}},nee={minus:{color:"red"},plus:{color:"green"},collapsed:{color:"grey"},delimiter:{},ul:{padding:"0px",margin:"0 0 0 25px",listStyle:"none"},name:{color:"#2287CD"},addForm:{}},aee={minus:{color:"red"},editForm:{},value:{color:"#7bba3d"},li:{minHeight:"22px",lineHeight:"22px",outline:"0px"},name:{color:"#2287CD"}};function oee(e){let t=e;if(t.indexOf("function")===0)return(0,eval)(`(${t})`);try{t=JSON.parse(e)}catch{}return t}var lD=class extends l.Component{constructor(e){super(e),this.state={data:e.data,rootName:e.rootName},this.onUpdate=this.onUpdate.bind(this),this.removeRoot=this.removeRoot.bind(this)}static getDerivedStateFromProps(e,t){return e.data!==t.data||e.rootName!==t.rootName?{data:e.data,rootName:e.rootName}:null}onUpdate(e,t){this.setState({data:t}),this.props.onFullyUpdate(t)}removeRoot(){this.onUpdate(null,null)}render(){let{data:e,rootName:t}=this.state,{isCollapsed:r,onDeltaUpdate:n,readOnly:a,getStyle:o,addButtonElement:i,cancelButtonElement:s,editButtonElement:u,inputElement:d,textareaElement:p,minusMenuElement:h,plusMenuElement:m,beforeRemoveAction:f,beforeAddAction:v,beforeUpdateAction:g,logger:b,onSubmitValueParser:C,fallback:w=null}=this.props,x=an(e),E=a;an(a)==="Boolean"&&(E=()=>a);let D=d;d&&an(d)!=="Function"&&(D=()=>d);let S=p;return p&&an(p)!=="Function"&&(S=()=>p),x==="Object"||x==="Array"?y.createElement("div",{className:"rejt-tree"},y.createElement(Bu,{data:e,name:t,deep:-1,isCollapsed:r,onUpdate:this.onUpdate,onDeltaUpdate:n,readOnly:E,getStyle:o,addButtonElement:i,cancelButtonElement:s,editButtonElement:u,inputElementGenerator:D,textareaElementGenerator:S,minusMenuElement:h,plusMenuElement:m,handleRemove:this.removeRoot,beforeRemoveAction:f,beforeAddAction:v,beforeUpdateAction:g,logger:b,onSubmitValueParser:C})):w}};lD.defaultProps={rootName:"root",isCollapsed:(e,t)=>t!==-1,getStyle:(e,t,r,n,a)=>{switch(a){case"Object":case"Error":return ree;case"Array":return nee;default:return aee}},readOnly:()=>!1,onFullyUpdate:()=>{},onDeltaUpdate:()=>{},beforeRemoveAction:()=>Promise.resolve(),beforeAddAction:()=>Promise.resolve(),beforeUpdateAction:()=>Promise.resolve(),logger:{error:()=>{}},onSubmitValueParser:(e,t,r,n,a)=>oee(a),inputElement:()=>y.createElement("input",null),textareaElement:()=>y.createElement("textarea",null),fallback:null};var{window:iee}=nt,lee=_.div(({theme:e})=>({position:"relative",display:"flex",'&[aria-readonly="true"]':{opacity:.5},".rejt-tree":{marginLeft:"1rem",fontSize:"13px"},".rejt-value-node, .rejt-object-node > .rejt-collapsed, .rejt-array-node > .rejt-collapsed, .rejt-object-node > .rejt-not-collapsed, .rejt-array-node > .rejt-not-collapsed":{"& > svg":{opacity:0,transition:"opacity 0.2s"}},".rejt-value-node:hover, .rejt-object-node:hover > .rejt-collapsed, .rejt-array-node:hover > .rejt-collapsed, .rejt-object-node:hover > .rejt-not-collapsed, .rejt-array-node:hover > .rejt-not-collapsed":{"& > svg":{opacity:1}},".rejt-edit-form button":{display:"none"},".rejt-add-form":{marginLeft:10},".rejt-add-value-node":{display:"inline-flex",alignItems:"center"},".rejt-name":{lineHeight:"22px"},".rejt-not-collapsed-delimiter":{lineHeight:"22px"},".rejt-plus-menu":{marginLeft:5},".rejt-object-node > span > *, .rejt-array-node > span > *":{position:"relative",zIndex:2},".rejt-object-node, .rejt-array-node":{position:"relative"},".rejt-object-node > span:first-of-type::after, .rejt-array-node > span:first-of-type::after, .rejt-collapsed::before, .rejt-not-collapsed::before":{content:'""',position:"absolute",top:0,display:"block",width:"100%",marginLeft:"-1rem",padding:"0 4px 0 1rem",height:22},".rejt-collapsed::before, .rejt-not-collapsed::before":{zIndex:1,background:"transparent",borderRadius:4,transition:"background 0.2s",pointerEvents:"none",opacity:.1},".rejt-object-node:hover, .rejt-array-node:hover":{"& > .rejt-collapsed::before, & > .rejt-not-collapsed::before":{background:e.color.secondary}},".rejt-collapsed::after, .rejt-not-collapsed::after":{content:'""',position:"absolute",display:"inline-block",pointerEvents:"none",width:0,height:0},".rejt-collapsed::after":{left:-8,top:8,borderTop:"3px solid transparent",borderBottom:"3px solid transparent",borderLeft:"3px solid rgba(153,153,153,0.6)"},".rejt-not-collapsed::after":{left:-10,top:10,borderTop:"3px solid rgba(153,153,153,0.6)",borderLeft:"3px solid transparent",borderRight:"3px solid transparent"},".rejt-value":{display:"inline-block",border:"1px solid transparent",borderRadius:4,margin:"1px 0",padding:"0 4px",cursor:"text",color:e.color.defaultText},".rejt-value-node:hover > .rejt-value":{background:e.color.lighter,borderColor:e.appBorderColor}})),id=_.button(({theme:e,primary:t})=>({border:0,height:20,margin:1,borderRadius:4,background:t?e.color.secondary:"transparent",color:t?e.color.lightest:e.color.dark,fontWeight:t?"bold":"normal",cursor:"pointer",order:t?"initial":9})),see=_(uL)(({theme:e,disabled:t})=>({display:"inline-block",verticalAlign:"middle",width:15,height:15,padding:3,marginLeft:5,cursor:t?"not-allowed":"pointer",color:e.textMutedColor,"&:hover":t?{}:{color:e.color.ancillary},"svg + &":{marginLeft:0}})),uee=_(cL)(({theme:e,disabled:t})=>({display:"inline-block",verticalAlign:"middle",width:15,height:15,padding:3,marginLeft:5,cursor:t?"not-allowed":"pointer",color:e.textMutedColor,"&:hover":t?{}:{color:e.color.negative},"svg + &":{marginLeft:0}})),iy=_.input(({theme:e,placeholder:t})=>({outline:0,margin:t?1:"1px 0",padding:"3px 4px",color:e.color.defaultText,background:e.background.app,border:`1px solid ${e.appBorderColor}`,borderRadius:4,lineHeight:"14px",width:t==="Key"?80:120,"&:focus":{border:`1px solid ${e.color.secondary}`}})),cee=_(un)(({theme:e})=>({position:"absolute",zIndex:2,top:2,right:2,height:21,padding:"0 3px",background:e.background.bar,border:`1px solid ${e.appBorderColor}`,borderRadius:3,color:e.textMutedColor,fontSize:"9px",fontWeight:"bold",textDecoration:"none",span:{marginLeft:3,marginTop:1}})),dee=_(Di.Textarea)(({theme:e})=>({flex:1,padding:"7px 6px",fontFamily:e.typography.fonts.mono,fontSize:"12px",lineHeight:"18px","&::placeholder":{fontFamily:e.typography.fonts.base,fontSize:"13px"},"&:placeholder-shown":{padding:"7px 10px"}})),pee={bubbles:!0,cancelable:!0,key:"Enter",code:"Enter",keyCode:13},fee=e=>{e.currentTarget.dispatchEvent(new iee.KeyboardEvent("keydown",pee))},hee=e=>{e.currentTarget.select()},mee=e=>()=>({name:{color:e.color.secondary},collapsed:{color:e.color.dark},ul:{listStyle:"none",margin:"0 0 0 1rem",padding:0},li:{outline:0}}),ly=({name:e,value:t,onChange:r,argType:n})=>{var x;let a=jy(),o=l.useMemo(()=>t&&oJ(t),[t]),i=o!=null,[s,u]=l.useState(!i),[d,p]=l.useState(null),h=!!((x=n==null?void 0:n.table)!=null&&x.readonly),m=l.useCallback(E=>{try{E&&r(JSON.parse(E)),p(void 0)}catch(D){p(D)}},[r]),[f,v]=l.useState(!1),g=l.useCallback(()=>{r({}),v(!0)},[v]),b=l.useRef(null);if(l.useEffect(()=>{f&&b.current&&b.current.select()},[f]),!i)return y.createElement(Sn,{disabled:h,id:Ds(e),onClick:g},"Set object");let C=y.createElement(dee,{ref:b,id:xt(e),name:e,defaultValue:t===null?"":JSON.stringify(t,null,2),onBlur:E=>m(E.target.value),placeholder:"Edit JSON string...",autoFocus:f,valid:d?"error":null,readOnly:h}),w=Array.isArray(t)||typeof t=="object"&&(t==null?void 0:t.constructor)===Object;return y.createElement(lee,{"aria-readonly":h},w&&y.createElement(cee,{onClick:E=>{E.preventDefault(),u(D=>!D)}},s?y.createElement(lL,null):y.createElement(iL,null),y.createElement("span",null,"RAW")),s?C:y.createElement(lD,{readOnly:h||!w,isCollapsed:w?void 0:()=>!0,data:o,rootName:e,onFullyUpdate:r,getStyle:mee(a),cancelButtonElement:y.createElement(id,{type:"button"},"Cancel"),editButtonElement:y.createElement(id,{type:"submit"},"Save"),addButtonElement:y.createElement(id,{type:"submit",primary:!0},"Save"),plusMenuElement:y.createElement(see,null),minusMenuElement:y.createElement(uee,null),inputElement:(E,D,S,A)=>A?y.createElement(iy,{onFocus:hee,onBlur:fee}):y.createElement(iy,null),fallback:C}))},gee=_.input(({theme:e,min:t,max:r,value:n,disabled:a})=>({"&":{width:"100%",backgroundColor:"transparent",appearance:"none"},"&::-webkit-slider-runnable-track":{background:e.base==="light"?`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${$t(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${$t(.02,e.input.background)} 100%)`:`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${Jr(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${Jr(.02,e.input.background)} 100%)`,boxShadow:`${e.appBorderColor} 0 0 0 1px inset`,borderRadius:6,width:"100%",height:6,cursor:a?"not-allowed":"pointer"},"&::-webkit-slider-thumb":{marginTop:"-6px",width:16,height:16,border:`1px solid ${lr(e.appBorderColor,.2)}`,borderRadius:"50px",boxShadow:`0 1px 3px 0px ${lr(e.appBorderColor,.2)}`,cursor:a?"not-allowed":"grab",appearance:"none",background:`${e.input.background}`,transition:"all 150ms ease-out","&:hover":{background:`${$t(.05,e.input.background)}`,transform:"scale3d(1.1, 1.1, 1.1) translateY(-1px)",transition:"all 50ms ease-out"},"&:active":{background:`${e.input.background}`,transform:"scale3d(1, 1, 1) translateY(0px)",cursor:a?"not-allowed":"grab"}},"&:focus":{outline:"none","&::-webkit-slider-runnable-track":{borderColor:lr(e.color.secondary,.4)},"&::-webkit-slider-thumb":{borderColor:e.color.secondary,boxShadow:`0 0px 5px 0px ${e.color.secondary}`}},"&::-moz-range-track":{background:e.base==="light"?`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${$t(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${$t(.02,e.input.background)} 100%)`:`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${Jr(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${Jr(.02,e.input.background)} 100%)`,boxShadow:`${e.appBorderColor} 0 0 0 1px inset`,borderRadius:6,width:"100%",height:6,cursor:a?"not-allowed":"pointer",outline:"none"},"&::-moz-range-thumb":{width:16,height:16,border:`1px solid ${lr(e.appBorderColor,.2)}`,borderRadius:"50px",boxShadow:`0 1px 3px 0px ${lr(e.appBorderColor,.2)}`,cursor:a?"not-allowed":"grap",background:`${e.input.background}`,transition:"all 150ms ease-out","&:hover":{background:`${$t(.05,e.input.background)}`,transform:"scale3d(1.1, 1.1, 1.1) translateY(-1px)",transition:"all 50ms ease-out"},"&:active":{background:`${e.input.background}`,transform:"scale3d(1, 1, 1) translateY(0px)",cursor:"grabbing"}},"&::-ms-track":{background:e.base==="light"?`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${$t(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${$t(.02,e.input.background)} 100%)`:`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${Jr(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${Jr(.02,e.input.background)} 100%)`,boxShadow:`${e.appBorderColor} 0 0 0 1px inset`,color:"transparent",width:"100%",height:"6px",cursor:"pointer"},"&::-ms-fill-lower":{borderRadius:6},"&::-ms-fill-upper":{borderRadius:6},"&::-ms-thumb":{width:16,height:16,background:`${e.input.background}`,border:`1px solid ${lr(e.appBorderColor,.2)}`,borderRadius:50,cursor:"grab",marginTop:0},"@supports (-ms-ime-align:auto)":{"input[type=range]":{margin:"0"}}})),sD=_.span({paddingLeft:5,paddingRight:5,fontSize:12,whiteSpace:"nowrap",fontFeatureSettings:"tnum",fontVariantNumeric:"tabular-nums","[aria-readonly=true] &":{opacity:.5}}),vee=_(sD)(({numberOFDecimalsPlaces:e,max:t})=>({width:`${e+t.toString().length*2+3}ch`,textAlign:"right",flexShrink:0})),yee=_.div({display:"flex",alignItems:"center",width:"100%"});function bee(e){let t=e.toString().match(/(?:\.(\d+))?(?:[eE]([+-]?\d+))?$/);return t?Math.max(0,(t[1]?t[1].length:0)-(t[2]?+t[2]:0)):0}var wee=({name:e,value:t,onChange:r,min:n=0,max:a=100,step:o=1,onBlur:i,onFocus:s,argType:u})=>{var f;let d=v=>{r(IQ(v.target.value))},p=t!==void 0,h=l.useMemo(()=>bee(o),[o]),m=!!((f=u==null?void 0:u.table)!=null&&f.readonly);return y.createElement(yee,{"aria-readonly":m},y.createElement(sD,null,n),y.createElement(gee,{id:xt(e),type:"range",disabled:m,onChange:d,name:e,value:t,min:n,max:a,step:o,onFocus:s,onBlur:i}),y.createElement(vee,{numberOFDecimalsPlaces:h,max:a},p?t.toFixed(h):"--"," / ",a))},Eee=_.label({display:"flex"}),xee=_.div(({isMaxed:e})=>({marginLeft:"0.75rem",paddingTop:"0.35rem",color:e?"red":void 0})),Cee=({name:e,value:t,onChange:r,onFocus:n,onBlur:a,maxLength:o,argType:i})=>{var f;let s=v=>{r(v.target.value)},u=!!((f=i==null?void 0:i.table)!=null&&f.readonly),[d,p]=l.useState(!1),h=l.useCallback(()=>{r(""),p(!0)},[p]);if(t===void 0)return y.createElement(Sn,{variant:"outline",size:"medium",disabled:u,id:Ds(e),onClick:h},"Set string");let m=typeof t=="string";return y.createElement(Eee,null,y.createElement(Di.Textarea,{id:xt(e),maxLength:o,onChange:s,disabled:u,size:"flex",placeholder:"Edit string...",autoFocus:d,valid:m?null:"error",name:e,value:m?t:"",onFocus:n,onBlur:a}),o&&y.createElement(xee,{isMaxed:(t==null?void 0:t.length)===o},(t==null?void 0:t.length)??0," / ",o))},Dee=_(Di.Input)({padding:10});function See(e){e.forEach(t=>{t.startsWith("blob:")&&URL.revokeObjectURL(t)})}var Aee=({onChange:e,name:t,accept:r="image/*",value:n,argType:a})=>{var u;let o=l.useRef(null),i=(u=a==null?void 0:a.control)==null?void 0:u.readOnly;function s(d){if(!d.target.files)return;let p=Array.from(d.target.files).map(h=>URL.createObjectURL(h));e(p),See(n)}return l.useEffect(()=>{n==null&&o.current&&(o.current.value=null)},[n,t]),y.createElement(Dee,{ref:o,id:xt(t),type:"file",name:t,multiple:!0,disabled:i,onChange:s,accept:r,size:"flex"})},kee=l.lazy(()=>ip(()=>import("./Color-KGDBMAHA-468b81d8.js"),["./Color-KGDBMAHA-468b81d8.js","./index-f1f2c4b1.js","./isArray-03ed71c9.js","./iframe-33901838.js","./client-e941fabf.js","./index-5f347087.js","./index-1b441bc2.js","./index-356e4a49.js"],import.meta.url)),_ee=e=>y.createElement(l.Suspense,{fallback:y.createElement("div",null)},y.createElement(kee,{...e})),Fee={array:ly,object:ly,boolean:xQ,color:_ee,date:_Q,number:RQ,check:Pn,"inline-check":Pn,radio:Pn,"inline-radio":Pn,select:Pn,"multi-select":Pn,range:wee,text:Cee,file:Aee},sy=()=>y.createElement(y.Fragment,null,"-"),Iee=({row:e,arg:t,updateArgs:r,isHovered:n})=>{var g;let{key:a,control:o}=e,[i,s]=l.useState(!1),[u,d]=l.useState({value:t});l.useEffect(()=>{i||d({value:t})},[i,t]);let p=l.useCallback(b=>(d({value:b}),r({[a]:b}),b),[r,a]),h=l.useCallback(()=>s(!1),[]),m=l.useCallback(()=>s(!0),[]);if(!o||o.disable){let b=(o==null?void 0:o.disable)!==!0&&((g=e==null?void 0:e.type)==null?void 0:g.name)!=="function";return n&&b?y.createElement(ra,{href:"https://storybook.js.org/docs/react/essentials/controls",target:"_blank",withArrow:!0},"Setup controls"):y.createElement(sy,null)}let f={name:a,argType:e,value:u.value,onChange:p,onBlur:h,onFocus:m},v=Fee[o.type]||sy;return y.createElement(v,{...f,...o,controlType:o.type})},Tee=_.span({fontWeight:"bold"}),Ree=_.span(({theme:e})=>({color:e.color.negative,fontFamily:e.typography.fonts.mono,cursor:"help"})),Bee=_.div(({theme:e})=>({"&&":{p:{margin:"0 0 10px 0"},a:{color:e.color.secondary}},code:{...Pr({theme:e}),fontSize:12,fontFamily:e.typography.fonts.mono},"& code":{margin:0,display:"inline-block"},"& pre > code":{whiteSpace:"pre-wrap"}})),zee=_.div(({theme:e,hasDescription:t})=>({color:e.base==="light"?ie(.1,e.color.defaultText):ie(.2,e.color.defaultText),marginTop:t?4:0})),$ee=_.div(({theme:e,hasDescription:t})=>({color:e.base==="light"?ie(.1,e.color.defaultText):ie(.2,e.color.defaultText),marginTop:t?12:0,marginBottom:12})),Oee=_.td(({theme:e,expandable:t})=>({paddingLeft:t?"40px !important":"20px !important"})),Lee=e=>e&&{summary:typeof e=="string"?e:e.name},rl=e=>{var g;let[t,r]=l.useState(!1),{row:n,updateArgs:a,compact:o,expandable:i,initialExpandedArgs:s}=e,{name:u,description:d}=n,p=n.table||{},h=p.type||Lee(n.type),m=p.defaultValue||n.defaultValue,f=(g=n.type)==null?void 0:g.required,v=d!=null&&d!=="";return y.createElement("tr",{onMouseEnter:()=>r(!0),onMouseLeave:()=>r(!1)},y.createElement(Oee,{expandable:i},y.createElement(Tee,null,u),f?y.createElement(Ree,{title:"Required"},"*"):null),o?null:y.createElement("td",null,v&&y.createElement(Bee,null,y.createElement(FC,null,d)),p.jsDocTags!=null?y.createElement(y.Fragment,null,y.createElement($ee,{hasDescription:v},y.createElement(od,{value:h,initialExpandedArgs:s})),y.createElement(uQ,{tags:p.jsDocTags})):y.createElement(zee,{hasDescription:v},y.createElement(od,{value:h,initialExpandedArgs:s}))),o?null:y.createElement("td",null,y.createElement(od,{value:m,initialExpandedArgs:s})),a?y.createElement("td",null,y.createElement(Iee,{...e,isHovered:t})):null)},Mee=_(pL)(({theme:e})=>({marginRight:8,marginLeft:-10,marginTop:-2,height:12,width:12,color:e.base==="light"?ie(.25,e.color.defaultText):ie(.3,e.color.defaultText),border:"none",display:"inline-block"})),Pee=_(fL)(({theme:e})=>({marginRight:8,marginLeft:-10,marginTop:-2,height:12,width:12,color:e.base==="light"?ie(.25,e.color.defaultText):ie(.3,e.color.defaultText),border:"none",display:"inline-block"})),Nee=_.span(({theme:e})=>({display:"flex",lineHeight:"20px",alignItems:"center"})),Hee=_.td(({theme:e})=>({position:"relative",letterSpacing:"0.35em",textTransform:"uppercase",fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s1-1,color:e.base==="light"?ie(.4,e.color.defaultText):ie(.6,e.color.defaultText),background:`${e.background.app} !important`,"& ~ td":{background:`${e.background.app} !important`}})),jee=_.td(({theme:e})=>({position:"relative",fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,background:e.background.app})),Vee=_.td(()=>({position:"relative"})),Uee=_.tr(({theme:e})=>({"&:hover > td":{backgroundColor:`${Jr(.005,e.background.app)} !important`,boxShadow:`${e.color.mediumlight} 0 - 1px 0 0 inset`,cursor:"row-resize"}})),uy=_.button(()=>({background:"none",border:"none",padding:"0",font:"inherit",position:"absolute",top:0,bottom:0,left:0,right:0,height:"100%",width:"100%",color:"transparent",cursor:"row-resize !important"})),ld=({level:e="section",label:t,children:r,initialExpanded:n=!0,colSpan:a=3})=>{let[o,i]=l.useState(n),s=e==="subsection"?jee:Hee,u=(r==null?void 0:r.length)||0,d=e==="subsection"?`${u} item${u!==1?"s":""}`:"",p=`${o?"Hide":"Show"} ${e==="subsection"?u:t} item${u!==1?"s":""}`;return y.createElement(y.Fragment,null,y.createElement(Uee,{title:p},y.createElement(s,{colSpan:1},y.createElement(uy,{onClick:h=>i(!o),tabIndex:0},p),y.createElement(Nee,null,o?y.createElement(Mee,null):y.createElement(Pee,null),t)),y.createElement(Vee,{colSpan:a-1},y.createElement(uy,{onClick:h=>i(!o),tabIndex:-1,style:{outline:"none"}},p),o?null:d)),o?r:null)},nl=_.div(({theme:e})=>({display:"flex",gap:16,borderBottom:`1px solid ${e.appBorderColor}`,"&:last-child":{borderBottom:0}})),ke=_.div(({numColumn:e})=>({display:"flex",flexDirection:"column",flex:e||1,gap:5,padding:"12px 20px"})),he=_.div(({theme:e,width:t,height:r})=>({animation:`${e.animation.glow} 1.5s ease-in-out infinite`,background:e.appBorderColor,width:t||"100%",height:r||16,borderRadius:3})),_e=[2,4,2,2],qee=()=>y.createElement(y.Fragment,null,y.createElement(nl,null,y.createElement(ke,{numColumn:_e[0]},y.createElement(he,{width:"60%"})),y.createElement(ke,{numColumn:_e[1]},y.createElement(he,{width:"30%"})),y.createElement(ke,{numColumn:_e[2]},y.createElement(he,{width:"60%"})),y.createElement(ke,{numColumn:_e[3]},y.createElement(he,{width:"60%"}))),y.createElement(nl,null,y.createElement(ke,{numColumn:_e[0]},y.createElement(he,{width:"60%"})),y.createElement(ke,{numColumn:_e[1]},y.createElement(he,{width:"80%"}),y.createElement(he,{width:"30%"})),y.createElement(ke,{numColumn:_e[2]},y.createElement(he,{width:"60%"})),y.createElement(ke,{numColumn:_e[3]},y.createElement(he,{width:"60%"}))),y.createElement(nl,null,y.createElement(ke,{numColumn:_e[0]},y.createElement(he,{width:"60%"})),y.createElement(ke,{numColumn:_e[1]},y.createElement(he,{width:"80%"}),y.createElement(he,{width:"30%"})),y.createElement(ke,{numColumn:_e[2]},y.createElement(he,{width:"60%"})),y.createElement(ke,{numColumn:_e[3]},y.createElement(he,{width:"60%"}))),y.createElement(nl,null,y.createElement(ke,{numColumn:_e[0]},y.createElement(he,{width:"60%"})),y.createElement(ke,{numColumn:_e[1]},y.createElement(he,{width:"80%"}),y.createElement(he,{width:"30%"})),y.createElement(ke,{numColumn:_e[2]},y.createElement(he,{width:"60%"})),y.createElement(ke,{numColumn:_e[3]},y.createElement(he,{width:"60%"})))),Wee=_.div(({inAddonPanel:e,theme:t})=>({height:e?"100%":"auto",display:"flex",border:e?"none":`1px solid ${t.appBorderColor}`,borderRadius:e?0:t.appBorderRadius,padding:e?0:40,alignItems:"center",justifyContent:"center",flexDirection:"column",gap:15,background:t.background.content,boxShadow:"rgba(0, 0, 0, 0.10) 0 1px 3px 0"})),Gee=_.div(({theme:e})=>({display:"flex",fontSize:e.typography.size.s2-1,gap:25})),Kee=_.div(({theme:e})=>({width:1,height:16,backgroundColor:e.appBorderColor})),Yee=({inAddonPanel:e})=>{let[t,r]=l.useState(!0);return l.useEffect(()=>{let n=setTimeout(()=>{r(!1)},100);return()=>clearTimeout(n)},[]),t?null:y.createElement(Wee,{inAddonPanel:e},y.createElement(Fx,{title:e?"Interactive story playground":"Args table with interactive controls couldn't be auto-generated",description:y.createElement(y.Fragment,null,"Controls give you an easy to use interface to test your components. Set your story args and you'll see controls appearing here automatically."),footer:y.createElement(Gee,null,e&&y.createElement(y.Fragment,null,y.createElement(ra,{href:"https://youtu.be/0gOfS6K0x0E",target:"_blank",withArrow:!0},y.createElement(sL,null)," Watch 5m video"),y.createElement(Kee,null),y.createElement(ra,{href:"https://storybook.js.org/docs/essentials/controls",target:"_blank",withArrow:!0},y.createElement(q1,null)," Read docs")),!e&&y.createElement(ra,{href:"https://storybook.js.org/docs/essentials/controls",target:"_blank",withArrow:!0},y.createElement(q1,null)," Learn how to set that up"))}))},Jee=_.table(({theme:e,compact:t,inAddonPanel:r})=>({"&&":{borderSpacing:0,color:e.color.defaultText,"td, th":{padding:0,border:"none",verticalAlign:"top",textOverflow:"ellipsis"},fontSize:e.typography.size.s2-1,lineHeight:"20px",textAlign:"left",width:"100%",marginTop:r?0:25,marginBottom:r?0:40,"thead th:first-of-type, td:first-of-type":{width:"25%"},"th:first-of-type, td:first-of-type":{paddingLeft:20},"th:nth-of-type(2), td:nth-of-type(2)":{...t?null:{width:"35%"}},"td:nth-of-type(3)":{...t?null:{width:"15%"}},"th:last-of-type, td:last-of-type":{paddingRight:20,...t?null:{width:"25%"}},th:{color:e.base==="light"?ie(.25,e.color.defaultText):ie(.45,e.color.defaultText),paddingTop:10,paddingBottom:10,paddingLeft:15,paddingRight:15},td:{paddingTop:"10px",paddingBottom:"10px","&:not(:first-of-type)":{paddingLeft:15,paddingRight:15},"&:last-of-type":{paddingRight:20}},marginLeft:r?0:1,marginRight:r?0:1,tbody:{...r?null:{filter:e.base==="light"?"drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.10))":"drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.20))"},"> tr > *":{background:e.background.content,borderTop:`1px solid ${e.appBorderColor}`},...r?null:{"> tr:first-of-type > *":{borderBlockStart:`1px solid ${e.appBorderColor}`},"> tr:last-of-type > *":{borderBlockEnd:`1px solid ${e.appBorderColor}`},"> tr > *:first-of-type":{borderInlineStart:`1px solid ${e.appBorderColor}`},"> tr > *:last-of-type":{borderInlineEnd:`1px solid ${e.appBorderColor}`},"> tr:first-of-type > td:first-of-type":{borderTopLeftRadius:e.appBorderRadius},"> tr:first-of-type > td:last-of-type":{borderTopRightRadius:e.appBorderRadius},"> tr:last-of-type > td:first-of-type":{borderBottomLeftRadius:e.appBorderRadius},"> tr:last-of-type > td:last-of-type":{borderBottomRightRadius:e.appBorderRadius}}}}})),Zee=_(un)(({theme:e})=>({margin:"-4px -12px -4px 0"})),Xee=_.span({display:"flex",justifyContent:"space-between"}),Qee={alpha:(e,t)=>e.name.localeCompare(t.name),requiredFirst:(e,t)=>{var r,n;return+!!((r=t.type)!=null&&r.required)-+!!((n=e.type)!=null&&n.required)||e.name.localeCompare(t.name)},none:void 0},ete=(e,t)=>{let r={ungrouped:[],ungroupedSubsections:{},sections:{}};if(!e)return r;Object.entries(e).forEach(([o,i])=>{let{category:s,subcategory:u}=(i==null?void 0:i.table)||{};if(s){let d=r.sections[s]||{ungrouped:[],subsections:{}};if(!u)d.ungrouped.push({key:o,...i});else{let p=d.subsections[u]||[];p.push({key:o,...i}),d.subsections[u]=p}r.sections[s]=d}else if(u){let d=r.ungroupedSubsections[u]||[];d.push({key:o,...i}),r.ungroupedSubsections[u]=d}else r.ungrouped.push({key:o,...i})});let n=Qee[t],a=o=>n?Object.keys(o).reduce((i,s)=>({...i,[s]:o[s].sort(n)}),{}):o;return{ungrouped:r.ungrouped.sort(n),ungroupedSubsections:a(r.ungroupedSubsections),sections:Object.keys(r.sections).reduce((o,i)=>({...o,[i]:{ungrouped:r.sections[i].ungrouped.sort(n),subsections:a(r.sections[i].subsections)}}),{})}},tte=(e,t,r)=>{try{return CD(e,t,r)}catch(n){return SX.warn(n.message),!1}},np=e=>{let{updateArgs:t,resetArgs:r,compact:n,inAddonPanel:a,initialExpandedArgs:o,sort:i="none",isLoading:s}=e;if("error"in e){let{error:w}=e;return y.createElement(qC,null,w," ",y.createElement(ra,{href:"http://storybook.js.org/docs/",target:"_blank",withArrow:!0},y.createElement(q1,null)," Read the docs"))}if(s)return y.createElement(qee,null);let{rows:u,args:d,globals:p}="rows"in e&&e,h=ete($q(u,w=>{var x;return!((x=w==null?void 0:w.table)!=null&&x.disable)&&tte(w,d||{},p||{})}),i),m=h.ungrouped.length===0,f=Object.entries(h.sections).length===0,v=Object.entries(h.ungroupedSubsections).length===0;if(m&&f&&v)return y.createElement(Yee,{inAddonPanel:a});let g=1;t&&(g+=1),n||(g+=2);let b=Object.keys(h.sections).length>0,C={updateArgs:t,compact:n,inAddonPanel:a,initialExpandedArgs:o};return y.createElement(o9,null,y.createElement(Jee,{compact:n,inAddonPanel:a,className:"docblock-argstable sb-unstyled"},y.createElement("thead",{className:"docblock-argstable-head"},y.createElement("tr",null,y.createElement("th",null,y.createElement("span",null,"Name")),n?null:y.createElement("th",null,y.createElement("span",null,"Description")),n?null:y.createElement("th",null,y.createElement("span",null,"Default")),t?y.createElement("th",null,y.createElement(Xee,null,"Control"," ",!s&&r&&y.createElement(Zee,{onClick:()=>r(),title:"Reset controls"},y.createElement(mL,{"aria-hidden":!0})))):null)),y.createElement("tbody",{className:"docblock-argstable-body"},h.ungrouped.map(w=>y.createElement(rl,{key:w.key,row:w,arg:d&&d[w.key],...C})),Object.entries(h.ungroupedSubsections).map(([w,x])=>y.createElement(ld,{key:w,label:w,level:"subsection",colSpan:g},x.map(E=>y.createElement(rl,{key:E.key,row:E,arg:d&&d[E.key],expandable:b,...C})))),Object.entries(h.sections).map(([w,x])=>y.createElement(ld,{key:w,label:w,level:"section",colSpan:g},x.ungrouped.map(E=>y.createElement(rl,{key:E.key,row:E,arg:d&&d[E.key],...C})),Object.entries(x.subsections).map(([E,D])=>y.createElement(ld,{key:E,label:E,level:"subsection",colSpan:g},D.map(S=>y.createElement(rl,{key:S.key,row:S,arg:d&&d[S.key],expandable:b,...C})))))))))},rte=({tabs:e,...t})=>{let r=Object.entries(e);return r.length===1?y.createElement(np,{...r[0][1],...t}):y.createElement(sO,null,r.map((n,a)=>{let[o,i]=n,s=`prop_table_div_${o}`,u="div",d=a===0?t:{sort:t.sort};return y.createElement(u,{key:s,id:s,title:o},({active:p})=>p?y.createElement(np,{key:`prop_table_${o}`,...i,...d}):null)}))};_.div(({theme:e})=>({marginRight:30,fontSize:`${e.typography.size.s1}px`,color:e.base==="light"?ie(.4,e.color.defaultText):ie(.6,e.color.defaultText)}));_.div({overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"});_.div({display:"flex",flexDirection:"row",alignItems:"baseline","&:not(:last-child)":{marginBottom:"1rem"}});_.div(ue,({theme:e})=>({...Ru(e),margin:"25px 0 40px",padding:"30px 20px"}));_.div(({theme:e})=>({fontWeight:e.typography.weight.bold,color:e.color.defaultText}));_.div(({theme:e})=>({color:e.base==="light"?ie(.2,e.color.defaultText):ie(.6,e.color.defaultText)}));_.div({flex:"0 0 30%",lineHeight:"20px",marginTop:5});_.div(({theme:e})=>({flex:1,textAlign:"center",fontFamily:e.typography.fonts.mono,fontSize:e.typography.size.s1,lineHeight:1,overflow:"hidden",color:e.base==="light"?ie(.4,e.color.defaultText):ie(.6,e.color.defaultText),"> div":{display:"inline-block",overflow:"hidden",maxWidth:"100%",textOverflow:"ellipsis"},span:{display:"block",marginTop:2}}));_.div({display:"flex",flexDirection:"row"});_.div(({background:e})=>({position:"relative",flex:1,"&::before":{position:"absolute",top:0,left:0,width:"100%",height:"100%",background:e,content:'""'}}));_.div(({theme:e})=>({...Ru(e),display:"flex",flexDirection:"row",height:50,marginBottom:5,overflow:"hidden",backgroundColor:"white",backgroundImage:"repeating-linear-gradient(-45deg, #ccc, #ccc 1px, #fff 1px, #fff 16px)",backgroundClip:"padding-box"}));_.div({display:"flex",flexDirection:"column",flex:1,position:"relative",marginBottom:30});_.div({flex:1,display:"flex",flexDirection:"row"});_.div({display:"flex",alignItems:"flex-start"});_.div({flex:"0 0 30%"});_.div({flex:1});_.div(({theme:e})=>({display:"flex",flexDirection:"row",alignItems:"center",paddingBottom:20,fontWeight:e.typography.weight.bold,color:e.base==="light"?ie(.4,e.color.defaultText):ie(.6,e.color.defaultText)}));_.div(({theme:e})=>({fontSize:e.typography.size.s2,lineHeight:"20px",display:"flex",flexDirection:"column"}));_.div(({theme:e})=>({fontFamily:e.typography.fonts.base,fontSize:e.typography.size.s2,color:e.color.defaultText,marginLeft:10,lineHeight:1.2}));_.div(({theme:e})=>({...Ru(e),overflow:"hidden",height:40,width:40,display:"flex",alignItems:"center",justifyContent:"center",flex:"none","> img, > svg":{width:20,height:20}}));_.div({display:"inline-flex",flexDirection:"row",alignItems:"center",flex:"0 1 calc(20% - 10px)",minWidth:120,margin:"0px 10px 30px 0"});_.div({display:"flex",flexFlow:"row wrap"});var nte=e=>`anchor--${e}`,ate=({storyId:e,children:t})=>y.createElement("div",{id:nte(e),className:"sb-anchor"},t);nt&&nt.__DOCS_CONTEXT__===void 0&&(nt.__DOCS_CONTEXT__=l.createContext(null),nt.__DOCS_CONTEXT__.displayName="DocsContext");var Qt=nt?nt.__DOCS_CONTEXT__:l.createContext(null),kn=(e,t)=>l.useContext(Qt).resolveOf(e,t),ote=e=>e.split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1)).join(""),ite=e=>{if(e)return typeof e=="string"?e.includes("-")?ote(e):e:e.__docgenInfo&&e.__docgenInfo.displayName?e.__docgenInfo.displayName:e.name};function lte(e,t="start"){e.scrollIntoView({behavior:"smooth",block:t,inline:"nearest"})}function uD(e){return CX(e,{allowFunction:!1})}var cD=l.createContext({sources:{}}),dD="--unknown--",ste=({children:e,channel:t})=>{let[r,n]=l.useState({});return l.useEffect(()=>{let a=(o,i=null,s=!1)=>{let{id:u,args:d=void 0,source:p,format:h}=typeof o=="string"?{id:o,source:i,format:s}:o,m=d?uD(d):dD;n(f=>({...f,[u]:{...f[u],[m]:{code:p,format:h}}}))};return t.on(Xh,a),()=>t.off(Xh,a)},[]),y.createElement(cD.Provider,{value:{sources:r}},e)},ute=(e,t,r)=>{let{sources:n}=r,a=n==null?void 0:n[e];return(a==null?void 0:a[uD(t)])||(a==null?void 0:a[dD])||{code:""}},cte=({snippet:e,storyContext:t,typeFromProps:r,transformFromProps:n})=>{var u,d;let{__isArgsStory:a}=t.parameters,o=((u=t.parameters.docs)==null?void 0:u.source)||{},i=r||o.type||Ou.AUTO;if(o.code!==void 0)return o.code;let s=i===Ou.DYNAMIC||i===Ou.AUTO&&e&&a?e:o.originalSource||"";return((d=n??o.transform)==null?void 0:d(s,t))||s},dte=(e,t,r)=>{var f,v,g,b;let n,{of:a}=e;if("of"in e&&a===void 0)throw new Error("Unexpected `of={undefined}`, did you mistype a CSF file reference?");if(a)n=t.resolveOf(a,["story"]).story;else try{n=t.storyById()}catch{}let o=((v=(f=n==null?void 0:n.parameters)==null?void 0:f.docs)==null?void 0:v.source)||{},{code:i}=e,s=e.format??o.format,u=e.language??o.language??"jsx",d=e.dark??o.dark??!1;if(!i&&!n)return{error:"Oh no! The source is not available."};if(i)return{code:i,format:s,language:u,dark:d};let p=t.getStoryContext(n),h=e.__forceInitialArgs?p.initialArgs:p.unmappedArgs,m=ute(n.id,h,r);return s=m.format??((b=(g=n.parameters.docs)==null?void 0:g.source)==null?void 0:b.format)??!1,{code:cte({snippet:m.code,storyContext:{...p,args:h},typeFromProps:e.type,transformFromProps:e.transform}),format:s,language:u,dark:d}};function pte(e,t){let r=fte([e],t);return r&&r[0]}function fte(e,t){let[r,n]=l.useState({});return l.useEffect(()=>{Promise.all(e.map(async a=>{let o=await t.loadStory(a);n(i=>i[a]===o?i:{...i,[a]:o})}))}),e.map(a=>{if(r[a])return r[a];try{return t.storyById(a)}catch{return null}})}var hte=(e,t)=>{let{of:r,meta:n}=e;if("of"in e&&r===void 0)throw new Error("Unexpected `of={undefined}`, did you mistype a CSF file reference?");return n&&t.referenceMeta(n,!1),t.resolveOf(r||"story",["story"]).story.id},mte=(e,t,r)=>{let{parameters:n={}}=t||{},{docs:a={}}=n,o=a.story||{};if(a.disable)return null;if(e.inline??o.inline??!1){let s=e.height??o.height,u=e.autoplay??o.autoplay??!1;return{story:t,inline:!0,height:s,autoplay:u,forceInitialArgs:!!e.__forceInitialArgs,primary:!!e.__primary,renderStoryToElement:r.renderStoryToElement}}let i=e.height??o.height??o.iframeHeight??"100px";return{story:t,inline:!1,height:i,primary:!!e.__primary}},gte=(e={__forceInitialArgs:!1,__primary:!1})=>{let t=l.useContext(Qt),r=hte(e,t),n=pte(r,t);if(!n)return y.createElement(KC,null);let a=mte(e,n,t);return a?y.createElement(tQ,{...a}):null},vte=e=>{var m,f,v,g,b,C,w,x,E,D;let t=l.useContext(Qt),r=l.useContext(cD),{of:n,source:a}=e;if("of"in e&&n===void 0)throw new Error("Unexpected `of={undefined}`, did you mistype a CSF file reference?");let{story:o}=kn(n||"story",["story"]),i=dte({...a,...n&&{of:n}},t,r),s=e.layout??o.parameters.layout??((f=(m=o.parameters.docs)==null?void 0:m.canvas)==null?void 0:f.layout)??"padded",u=e.withToolbar??((g=(v=o.parameters.docs)==null?void 0:v.canvas)==null?void 0:g.withToolbar)??!1,d=e.additionalActions??((C=(b=o.parameters.docs)==null?void 0:b.canvas)==null?void 0:C.additionalActions),p=e.sourceState??((x=(w=o.parameters.docs)==null?void 0:w.canvas)==null?void 0:x.sourceState)??"hidden",h=e.className??((D=(E=o.parameters.docs)==null?void 0:E.canvas)==null?void 0:D.className);return y.createElement(YC,{withSource:p==="none"?void 0:i,isExpanded:p==="shown",withToolbar:u,additionalActions:d,className:h,layout:s},y.createElement(gte,{of:n||o.moduleExport,meta:e.meta,...e.story}))},yte=(e,t)=>{let r=t.getStoryContext(e),[n,a]=l.useState(r.globals);return l.useEffect(()=>{let o=i=>{a(i.globals)};return t.channel.on(J3,o),()=>t.channel.off(J3,o)},[t.channel]),[n]},bte=(e,t)=>{let r=wte(e,t);if(!r)throw new Error("No result when story was defined");return r},wte=(e,t)=>{let r=e?t.getStoryContext(e):{args:{}},{id:n}=e||{id:"none"},[a,o]=l.useState(r.args);l.useEffect(()=>{let u=d=>{d.storyId===n&&o(d.args)};return t.channel.on(Z3,u),()=>t.channel.off(Z3,u)},[n,t.channel]);let i=l.useCallback(u=>t.channel.emit(AX,{storyId:n,updatedArgs:u}),[n,t.channel]),s=l.useCallback(u=>t.channel.emit(kX,{storyId:n,argNames:u}),[n,t.channel]);return e&&[a,i,s]};function Ete(e,t){let{extractArgTypes:r}=t.docs||{};if(!r)throw new Error("Args unsupported. See Args documentation for your framework.");return r(e)}var xte=e=>{var E;let{of:t}=e;if("of"in e&&t===void 0)throw new Error("Unexpected `of={undefined}`, did you mistype a CSF file reference?");let r=l.useContext(Qt),{story:n}=r.resolveOf(t||"story",["story"]),{parameters:a,argTypes:o,component:i,subcomponents:s}=n,u=((E=a.docs)==null?void 0:E.controls)||{},d=e.include??u.include,p=e.exclude??u.exclude,h=e.sort??u.sort,[m,f,v]=bte(n,r),[g]=yte(n,r),b=Y3(o,d,p);if(!(s&&Object.keys(s).length>0))return Object.keys(b).length>0||Object.keys(m).length>0?y.createElement(np,{rows:b,sort:h,args:m,globals:g,updateArgs:f,resetArgs:v}):null;let C=ite(i),w=Object.fromEntries(Object.entries(s).map(([D,S])=>[D,{rows:Y3(Ete(S,a),d,p),sort:h}])),x={[C]:{rows:b,sort:h},...w};return y.createElement(rte,{tabs:x,sort:h,args:m,globals:g,updateArgs:f,resetArgs:v})},{document:pD}=nt,fD=({className:e,children:t,...r})=>{if(typeof e!="string"&&(typeof t!="string"||!t.match(/[\n\r]/g)))return y.createElement(r9,null,t);let n=e&&e.split("-");return y.createElement(WC,{language:n&&n[1]||"text",format:!1,code:t,...r})};function Wh(e,t){e.channel.emit(_X,t)}var ap=SO.a,Cte=({hash:e,children:t})=>{let r=l.useContext(Qt);return y.createElement(ap,{href:e,target:"_self",onClick:n=>{let a=e.substring(1);pD.getElementById(a)&&Wh(r,e)}},t)},hD=e=>{let{href:t,target:r,children:n,...a}=e,o=l.useContext(Qt);return!t||r==="_blank"||/^https?:\/\//.test(t)?y.createElement(ap,{...e}):t.startsWith("#")?y.createElement(Cte,{hash:t},n):y.createElement(ap,{href:t,onClick:i=>{i.button===0&&!i.altKey&&!i.ctrlKey&&!i.metaKey&&!i.shiftKey&&(i.preventDefault(),Wh(o,i.currentTarget.getAttribute("href")))},target:r,...a},n)},mD=["h1","h2","h3","h4","h5","h6"],Dte=mD.reduce((e,t)=>({...e,[t]:_(t)({"& svg":{position:"relative",top:"-0.1em",visibility:"hidden"},"&:hover svg":{visibility:"visible"}})}),{}),Ste=_.a(()=>({float:"left",lineHeight:"inherit",paddingRight:"10px",marginLeft:"-24px",color:"inherit"})),Ate=({as:e,id:t,children:r,...n})=>{let a=l.useContext(Qt),o=Dte[e],i=`#${t}`;return y.createElement(o,{id:t,...n},y.createElement(Ste,{"aria-hidden":"true",href:i,tabIndex:-1,target:"_self",onClick:s=>{pD.getElementById(t)&&Wh(a,i)}},y.createElement(dL,null)),r)},Gh=e=>{let{as:t,id:r,children:n,...a}=e;if(r)return y.createElement(Ate,{as:t,id:r,...a},n);let o=t,{as:i,...s}=e;return y.createElement(o,{...se(s,t)})},gD=mD.reduce((e,t)=>({...e,[t]:r=>y.createElement(Gh,{as:t,...r})}),{}),kte=e=>{var t;if(!e.children)return null;if(typeof e.children!="string")throw new Error(AD`The Markdown block only accepts children as a single string, but children were of type: '${typeof e.children}' - This is often caused by not wrapping the child in a template string. - - This is invalid: - - # Some heading - A paragraph - - - Instead do: - - {\` - # Some heading - A paragraph - \`} - - `);return y.createElement(FC,{...e,options:{forceBlock:!0,overrides:{code:fD,a:hD,...gD,...(t=e==null?void 0:e.options)==null?void 0:t.overrides},...e==null?void 0:e.options}})},_te=(e=>(e.INFO="info",e.NOTES="notes",e.DOCGEN="docgen",e.AUTO="auto",e))(_te||{}),Fte=e=>{var t,r,n,a,o,i,s,u;switch(e.type){case"story":return((r=(t=e.story.parameters.docs)==null?void 0:t.description)==null?void 0:r.story)||null;case"meta":{let{parameters:d,component:p}=e.preparedMeta;return((a=(n=d.docs)==null?void 0:n.description)==null?void 0:a.component)||((i=(o=d.docs)==null?void 0:o.extractComponentDescription)==null?void 0:i.call(o,p,{component:p,parameters:d}))||null}case"component":{let{component:d,projectAnnotations:{parameters:p}}=e;return((u=(s=p.docs)==null?void 0:s.extractComponentDescription)==null?void 0:u.call(s,d,{component:d,parameters:p}))||null}default:throw new Error(`Unrecognized module type resolved from 'useOf', got: ${e.type}`)}},op=e=>{let{of:t}=e;if("of"in e&&t===void 0)throw new Error("Unexpected `of={undefined}`, did you mistype a CSF file reference?");let r=kn(t||"meta"),n=Fte(r);return n?y.createElement(kte,null,n):null},cy=OD(zX()),Ite=_.div(({theme:e})=>({width:"10rem","@media (max-width: 768px)":{display:"none"}})),Tte=_.div(({theme:e})=>({position:"fixed",bottom:0,top:0,width:"10rem",paddingTop:"4rem",paddingBottom:"2rem",overflowY:"auto",fontFamily:e.typography.fonts.base,fontSize:e.typography.size.s2,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",WebkitOverflowScrolling:"touch","& *":{boxSizing:"border-box"},"& > .toc-wrapper > .toc-list":{paddingLeft:0,borderLeft:`solid 2px ${e.color.mediumlight}`,".toc-list":{paddingLeft:0,borderLeft:`solid 2px ${e.color.mediumlight}`,".toc-list":{paddingLeft:0,borderLeft:`solid 2px ${e.color.mediumlight}`}}},"& .toc-list-item":{position:"relative",listStyleType:"none",marginLeft:20,paddingTop:3,paddingBottom:3},"& .toc-list-item::before":{content:'""',position:"absolute",height:"100%",top:0,left:0,transform:"translateX(calc(-2px - 20px))",borderLeft:`solid 2px ${e.color.mediumdark}`,opacity:0,transition:"opacity 0.2s"},"& .toc-list-item.is-active-li::before":{opacity:1},"& .toc-list-item > a":{color:e.color.defaultText,textDecoration:"none"},"& .toc-list-item.is-active-li > a":{fontWeight:600,color:e.color.secondary,textDecoration:"none"}})),Rte=_.p(({theme:e})=>({fontWeight:600,fontSize:"0.875em",color:e.textColor,textTransform:"uppercase",marginBottom:10})),Bte=({title:e})=>e===null?null:typeof e=="string"?y.createElement(Rte,null,e):e,zte=({title:e,disable:t,headingSelector:r,contentsSelector:n,ignoreSelector:a,unsafeTocbotOptions:o})=>(l.useEffect(()=>{let i={tocSelector:".toc-wrapper",contentSelector:n??".sbdocs-content",headingSelector:r??"h3",ignoreSelector:a??".docs-story *, .skip-toc",headingsOffset:40,scrollSmoothOffset:-40,orderedList:!1,onClick:()=>!1,...o},s=setTimeout(()=>cy.init(i),100);return()=>{clearTimeout(s),cy.destroy()}},[t]),y.createElement(y.Fragment,null,y.createElement(Ite,null,t?null:y.createElement(Tte,null,y.createElement(Bte,{title:e||null}),y.createElement("div",{className:"toc-wrapper"}))))),{document:$te,window:Ote}=nt,Lte=({context:e,theme:t,children:r})=>{var a,o,i,s,u;let n;try{n=(o=(a=e.resolveOf("meta",["meta"]).preparedMeta.parameters)==null?void 0:a.docs)==null?void 0:o.toc}catch{n=(u=(s=(i=e==null?void 0:e.projectAnnotations)==null?void 0:i.parameters)==null?void 0:s.docs)==null?void 0:u.toc}return l.useEffect(()=>{let d;try{if(d=new URL(Ote.parent.location.toString()),d.hash){let p=$te.getElementById(d.hash.substring(1));p&&setTimeout(()=>{lte(p)},200)}}catch{}}),y.createElement(Qt.Provider,{value:e},y.createElement(ste,{channel:e.channel},y.createElement(Vy,{theme:IA(t)},y.createElement(VX,{toc:n?y.createElement(zte,{className:"sbdocs sbdocs-toc--custom",...n}):null},r))))},Mte=/\s*\/\s*/,Pte=e=>{let t=e.trim().split(Mte);return(t==null?void 0:t[(t==null?void 0:t.length)-1])||e},Nte=e=>{let{children:t,of:r}=e;if("of"in e&&r===void 0)throw new Error("Unexpected `of={undefined}`, did you mistype a CSF file reference?");let n;try{n=kn(r||"meta",["meta"]).preparedMeta}catch(o){if(t&&!o.message.includes("did you forget to use ?"))throw o}let a=t||Pte(n==null?void 0:n.title);return a?y.createElement(PX,{className:"sbdocs-title sb-unstyled"},a):null},Hte="https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#subtitle-block-and-parameterscomponentsubtitle",jte=e=>{let{of:t,children:r}=e;if("of"in e&&t===void 0)throw new Error("Unexpected `of={undefined}`, did you mistype a CSF file reference?");let n;try{n=kn(t||"meta",["meta"]).preparedMeta}catch(s){if(r&&!s.message.includes("did you forget to use ?"))throw s}let{componentSubtitle:a,docs:o}=(n==null?void 0:n.parameters)||{};a&&DX(`Using 'parameters.componentSubtitle' property to subtitle stories is deprecated. See ${Hte}`);let i=r||(o==null?void 0:o.subtitle)||a;return i?y.createElement(NX,{className:"sbdocs-subtitle sb-unstyled"},i):null},Vte=({children:e,disableAnchor:t})=>{if(t||typeof e!="string")return y.createElement(a9,null,e);let r=globalThis.encodeURIComponent(e.toLowerCase());return y.createElement(Gh,{as:"h3",id:r},e)},vD=({of:e,expanded:t=!0,withToolbar:r=!1,__forceInitialArgs:n=!1,__primary:a=!1})=>{var s,u;let{story:o}=kn(e||"story",["story"]),i=((u=(s=o.parameters.docs)==null?void 0:s.canvas)==null?void 0:u.withToolbar)??r;return y.createElement(ate,{storyId:o.id},t&&y.createElement(y.Fragment,null,y.createElement(Vte,null,o.name),y.createElement(op,{of:e})),y.createElement(vte,{of:e,withToolbar:i,story:{__forceInitialArgs:n,__primary:a},source:{__forceInitialArgs:n}}))},Ute=e=>{let{of:t}=e;if("of"in e&&t===void 0)throw new Error("Unexpected `of={undefined}`, did you mistype a CSF file reference?");let{csfFile:r}=kn(t||"meta",["meta"]),n=l.useContext(Qt).componentStoriesFromCSFFile(r)[0];return n?y.createElement(vD,{of:n.moduleExport,expanded:!1,__primary:!0,withToolbar:!0}):null},qte=({children:e,disableAnchor:t,...r})=>{if(t||typeof e!="string")return y.createElement(n9,null,e);let n=e.toLowerCase().replace(/[^a-z0-9]/gi,"-");return y.createElement(Gh,{as:"h2",id:n,...r},e)},Wte=_(qte)(({theme:e})=>({fontSize:`${e.typography.size.s2-1}px`,fontWeight:e.typography.weight.bold,lineHeight:"16px",letterSpacing:"0.35em",textTransform:"uppercase",color:e.textMutedColor,border:0,marginBottom:"12px","&:first-of-type":{marginTop:"56px"}})),Gte=({title:e="Stories",includePrimary:t=!0})=>{var s;let{componentStories:r,projectAnnotations:n,getStoryContext:a}=l.useContext(Qt),o=r(),{stories:{filter:i}={filter:void 0}}=((s=n.parameters)==null?void 0:s.docs)||{};return i&&(o=o.filter(u=>i(u,a(u)))),o.some(u=>{var d;return(d=u.tags)==null?void 0:d.includes("autodocs")})&&(o=o.filter(u=>{var d;return((d=u.tags)==null?void 0:d.includes("autodocs"))&&!u.usesMount})),t||(o=o.slice(1)),!o||o.length===0?null:y.createElement(y.Fragment,null,y.createElement(Wte,null,e),o.map(u=>u&&y.createElement(vD,{key:u.id,of:u.moduleExport,expanded:!0,__forceInitialArgs:!0})))},Kte=()=>{let e=kn("meta",["meta"]),{stories:t}=e.csfFile,r=Object.keys(t).length===1;return y.createElement(y.Fragment,null,y.createElement(Nte,null),y.createElement(jte,null),y.createElement(op,{of:"meta"}),r?y.createElement(op,{of:"story"}):null,y.createElement(Ute,null),y.createElement(xte,null),r?null:y.createElement(Gte,null))};function Yte({context:e,docsParameter:t}){let r=t.container||Lte,n=t.page||Kte;return y.createElement(r,{context:e,theme:t.theme},y.createElement(n,null))}var yD={code:fD,a:hD,...gD},Jte=class extends l.Component{constructor(){super(...arguments),this.state={hasError:!1}}static getDerivedStateFromError(){return{hasError:!0}}componentDidCatch(e){let{showException:t}=this.props;t(e)}render(){let{hasError:e}=this.state,{children:t}=this.props;return e?null:y.createElement(y.Fragment,null,t)}},Zte=class{constructor(){this.render=async(e,t,r)=>{let n={...yD,...t==null?void 0:t.components},a=Yte;return new Promise((o,i)=>{ip(()=>import("./index-e5833c58.js"),["./index-e5833c58.js","./index-f1f2c4b1.js"],import.meta.url).then(({MDXProvider:s})=>_D(y.createElement(Jte,{showException:i,key:Math.random()},y.createElement(s,{components:n},y.createElement(a,{context:e,docsParameter:t}))),r)).then(()=>o())})},this.unmount=e=>{FD(e)}}};const Ire=Object.freeze(Object.defineProperty({__proto__:null,DocsRenderer:Zte,defaultComponents:yD},Symbol.toStringTag,{value:"Module"}));export{hre as $,Sn as A,Ere as B,ure as C,ire as D,Pl as E,Rx as F,cre as G,lre as H,dre as I,e$ as J,hF as K,xre as L,Cre as M,lh as N,gh as O,gF as P,Ix as Q,vu as R,wre as S,vre as T,mF as U,Tx as V,sO as W,Lp as X,q$ as Y,Sre as Z,Dre as _,J_ as a,mre as a0,yF as a1,fre as a2,A$ as a3,Wz as a4,Pr as a5,SO as a6,yd as a7,CO as a8,N1 as a9,bre as aa,se as ab,AO as ac,ue as ad,Fh as ae,_ as af,Are as ag,xt as ah,Ire as ai,Fx as b,nF as c,a9 as d,iF as e,aF as f,lF as g,oF as h,un as i,gre as j,uF as k,r9 as l,Ax as m,ra as n,Y_ as o,n9 as p,j$ as q,xO as r,tF as s,dF as t,rF as u,sF as v,Di as w,fF as x,pF as y,o9 as z}; diff --git a/storybook-static/assets/about.stories-c130897c.js b/storybook-static/assets/about.stories-c130897c.js deleted file mode 100644 index 300f7da..0000000 --- a/storybook-static/assets/about.stories-c130897c.js +++ /dev/null @@ -1 +0,0 @@ -import{H as p}from"./home-75e16b3f.js";import"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";import"./section-925c1887.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./css-7708fb60.js";import"./index-9b15b185.js";/* empty css */import"./stats-06bdd3b3.js";import"./person-d27c7fee.js";import"./timeline_item-de0bfc23.js";import"./index-a8bd1a45.js";import"./index-5f347087.js";const O={title:"Home/About",component:p.About},o={};var t,r,m;o.parameters={...o.parameters,docs:{...(t=o.parameters)==null?void 0:t.docs,source:{originalSource:"{}",...(m=(r=o.parameters)==null?void 0:r.docs)==null?void 0:m.source}}};const S=["About"];export{o as About,S as __namedExportsOrder,O as default}; diff --git a/storybook-static/assets/accenture-b310694f.webp b/storybook-static/assets/accenture-b310694f.webp deleted file mode 100644 index e427436..0000000 Binary files a/storybook-static/assets/accenture-b310694f.webp and /dev/null differ diff --git a/storybook-static/assets/backstrokes-1-69aee90c.webp b/storybook-static/assets/backstrokes-1-69aee90c.webp deleted file mode 100644 index 9ba6e20..0000000 Binary files a/storybook-static/assets/backstrokes-1-69aee90c.webp and /dev/null differ diff --git a/storybook-static/assets/backstrokes-1-8c86196f.webp b/storybook-static/assets/backstrokes-1-8c86196f.webp deleted file mode 100644 index 9504d50..0000000 Binary files a/storybook-static/assets/backstrokes-1-8c86196f.webp and /dev/null differ diff --git a/storybook-static/assets/backstrokes-2-2ca3fdfb.webp b/storybook-static/assets/backstrokes-2-2ca3fdfb.webp deleted file mode 100644 index e92b847..0000000 Binary files a/storybook-static/assets/backstrokes-2-2ca3fdfb.webp and /dev/null differ diff --git a/storybook-static/assets/backstrokes-2-7690920e.webp b/storybook-static/assets/backstrokes-2-7690920e.webp deleted file mode 100644 index e9ecbcb..0000000 Binary files a/storybook-static/assets/backstrokes-2-7690920e.webp and /dev/null differ diff --git a/storybook-static/assets/backstrokes-3-59cfc769.webp b/storybook-static/assets/backstrokes-3-59cfc769.webp deleted file mode 100644 index 2f1a570..0000000 Binary files a/storybook-static/assets/backstrokes-3-59cfc769.webp and /dev/null differ diff --git a/storybook-static/assets/backstrokes-3-5af379c4.webp b/storybook-static/assets/backstrokes-3-5af379c4.webp deleted file mode 100644 index 3f87b40..0000000 Binary files a/storybook-static/assets/backstrokes-3-5af379c4.webp and /dev/null differ diff --git a/storybook-static/assets/bo-60ec4679.webp b/storybook-static/assets/bo-60ec4679.webp deleted file mode 100644 index 29c7505..0000000 Binary files a/storybook-static/assets/bo-60ec4679.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-1-c983a82a.webp b/storybook-static/assets/bootstrapper-1-c983a82a.webp deleted file mode 100644 index 0dac33a..0000000 Binary files a/storybook-static/assets/bootstrapper-1-c983a82a.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-1-e15883a1.webp b/storybook-static/assets/bootstrapper-1-e15883a1.webp deleted file mode 100644 index 9888782..0000000 Binary files a/storybook-static/assets/bootstrapper-1-e15883a1.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-2-92c872bc.webp b/storybook-static/assets/bootstrapper-2-92c872bc.webp deleted file mode 100644 index 06a432f..0000000 Binary files a/storybook-static/assets/bootstrapper-2-92c872bc.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-2-a24d07e6.webp b/storybook-static/assets/bootstrapper-2-a24d07e6.webp deleted file mode 100644 index c6ecd3a..0000000 Binary files a/storybook-static/assets/bootstrapper-2-a24d07e6.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-3-b038474e.webp b/storybook-static/assets/bootstrapper-3-b038474e.webp deleted file mode 100644 index 7b64b6f..0000000 Binary files a/storybook-static/assets/bootstrapper-3-b038474e.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-3-e270e994.webp b/storybook-static/assets/bootstrapper-3-e270e994.webp deleted file mode 100644 index a6d179f..0000000 Binary files a/storybook-static/assets/bootstrapper-3-e270e994.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-4-20cf9d3b.webp b/storybook-static/assets/bootstrapper-4-20cf9d3b.webp deleted file mode 100644 index 8d4e2f3..0000000 Binary files a/storybook-static/assets/bootstrapper-4-20cf9d3b.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-4-3164f0af.webp b/storybook-static/assets/bootstrapper-4-3164f0af.webp deleted file mode 100644 index 7715ef2..0000000 Binary files a/storybook-static/assets/bootstrapper-4-3164f0af.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-5-920c0472.webp b/storybook-static/assets/bootstrapper-5-920c0472.webp deleted file mode 100644 index c3b542c..0000000 Binary files a/storybook-static/assets/bootstrapper-5-920c0472.webp and /dev/null differ diff --git a/storybook-static/assets/bootstrapper-5-d95d00ae.webp b/storybook-static/assets/bootstrapper-5-d95d00ae.webp deleted file mode 100644 index b2d7880..0000000 Binary files a/storybook-static/assets/bootstrapper-5-d95d00ae.webp and /dev/null differ diff --git a/storybook-static/assets/career.stories-1630b46c.js b/storybook-static/assets/career.stories-1630b46c.js deleted file mode 100644 index c8f5f6e..0000000 --- a/storybook-static/assets/career.stories-1630b46c.js +++ /dev/null @@ -1 +0,0 @@ -import{H as m}from"./home-75e16b3f.js";import"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";import"./section-925c1887.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./css-7708fb60.js";import"./index-9b15b185.js";/* empty css */import"./stats-06bdd3b3.js";import"./person-d27c7fee.js";import"./timeline_item-de0bfc23.js";import"./index-a8bd1a45.js";import"./index-5f347087.js";const S={title:"Home/Career",component:m.Career},r={};var o,t,e;r.parameters={...r.parameters,docs:{...(o=r.parameters)==null?void 0:o.docs,source:{originalSource:"{}",...(e=(t=r.parameters)==null?void 0:t.docs)==null?void 0:e.source}}};const b=["Career"];export{r as Career,b as __namedExportsOrder,S as default}; diff --git a/storybook-static/assets/cerner-ca613330.webp b/storybook-static/assets/cerner-ca613330.webp deleted file mode 100644 index 963567b..0000000 Binary files a/storybook-static/assets/cerner-ca613330.webp and /dev/null differ diff --git a/storybook-static/assets/client-e941fabf.js b/storybook-static/assets/client-e941fabf.js deleted file mode 100644 index 20d3e1e..0000000 --- a/storybook-static/assets/client-e941fabf.js +++ /dev/null @@ -1 +0,0 @@ -import{r}from"./index-5f347087.js";var o={},t=r;o.createRoot=t.createRoot,o.hydrateRoot=t.hydrateRoot;export{o as c}; diff --git a/storybook-static/assets/corner.stories-83af811b.js b/storybook-static/assets/corner.stories-83af811b.js deleted file mode 100644 index 8032ace..0000000 --- a/storybook-static/assets/corner.stories-83af811b.js +++ /dev/null @@ -1 +0,0 @@ -import{G as s}from"./stats-06bdd3b3.js";import"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";import"./css-7708fb60.js";const c={title:"Components/Github/Corner",component:s},r={};var o,e,t;r.parameters={...r.parameters,docs:{...(o=r.parameters)==null?void 0:o.docs,source:{originalSource:"{}",...(t=(e=r.parameters)==null?void 0:e.docs)==null?void 0:t.source}}};const i=["Corner"];export{r as Corner,i as __namedExportsOrder,c as default}; diff --git a/storybook-static/assets/css-7708fb60.js b/storybook-static/assets/css-7708fb60.js deleted file mode 100644 index d20812e..0000000 --- a/storybook-static/assets/css-7708fb60.js +++ /dev/null @@ -1 +0,0 @@ -var f=function(){const t=Array.prototype.slice.call(arguments).filter(Boolean),n={},c=[];t.forEach(e=>{(e?e.split(" "):[]).forEach(o=>{if(o.startsWith("atm_")){const[,a]=o.split("_");n[a]=o}else c.push(o)})});const r=[];for(const e in n)Object.prototype.hasOwnProperty.call(n,e)&&r.push(n[e]);return r.push(...c),r.join(" ")},u=f;const y=(s="",t,n)=>({className:s,style:t,"data-component":n});function l(s){return s&&typeof s=="object"&&"className"in s}function d(s,t){return t?l(s)?{...s,className:d(t,s.className)}:typeof s=="string"?u(t,s):s:s}const p=({themeValues:s,varPrefix:t})=>Object.keys(s).reduce((c,r)=>(c[`${t}-${r}`]=s[r]+"",c),{});function h(s,t,n){const c=p({varPrefix:t,themeValues:s}),r=Object.keys(s),e=r.reduce((i,o)=>(i[o]=`${t}-${o}`,i),{});if(typeof n=="string"){const i=r.reduce((o,a)=>(o[a]=`${n}: var(${e[a]});`,o),{});return{vars:e,css:i,definitions:c}}return{vars:e,definitions:c}}export{h as b,d as c,y as t}; diff --git a/storybook-static/assets/david-45b17e5c.webp b/storybook-static/assets/david-45b17e5c.webp deleted file mode 100644 index b19ab5b..0000000 Binary files a/storybook-static/assets/david-45b17e5c.webp and /dev/null differ diff --git a/storybook-static/assets/elastic-7c2cd453.webp b/storybook-static/assets/elastic-7c2cd453.webp deleted file mode 100644 index 44bd2f8..0000000 Binary files a/storybook-static/assets/elastic-7c2cd453.webp and /dev/null differ diff --git a/storybook-static/assets/entry-preview-b0e5fce0.js b/storybook-static/assets/entry-preview-b0e5fce0.js deleted file mode 100644 index 5daee94..0000000 --- a/storybook-static/assets/entry-preview-b0e5fce0.js +++ /dev/null @@ -1 +0,0 @@ -import{R as o,r as a}from"./index-f1f2c4b1.js";import{c as v}from"./client-e941fabf.js";import"./index-5f347087.js";var f=Object.defineProperty,w=(e,r)=>{for(var t in r)f(e,t,{get:r[t],enumerable:!0})},s=new Map,_=({callback:e,children:r})=>{let t=a.useRef();return a.useLayoutEffect(()=>{t.current!==e&&(t.current=e,e())},[e]),r},g=async(e,r,t)=>{let n=await R(r,t);return new Promise(i=>{n.render(o.createElement(_,{callback:()=>i(null)},e))})},d=(e,r)=>{let t=s.get(e);t&&(t.unmount(),s.delete(e))},R=async(e,r)=>{let t=s.get(e);return t||(t=v.createRoot(e,r),s.set(e,t)),t};const{global:y}=__STORYBOOK_MODULE_GLOBAL__;var M={};w(M,{mount:()=>b,parameters:()=>B,render:()=>D,renderToCanvas:()=>O});var D=(e,r)=>{let{id:t,component:n}=r;if(!n)throw new Error(`Unable to render story ${t} as the component annotation is missing from the default export`);return o.createElement(n,{...e})},{FRAMEWORK_OPTIONS:c}=y,L=class extends a.Component{constructor(){super(...arguments),this.state={hasError:!1}}static getDerivedStateFromError(){return{hasError:!0}}componentDidMount(){let{hasError:e}=this.state,{showMain:r}=this.props;e||r()}componentDidCatch(e){let{showException:r}=this.props;r(e)}render(){let{hasError:e}=this.state,{children:r}=this.props;return e?null:r}},h=c!=null&&c.strictMode?a.StrictMode:a.Fragment;async function O({storyContext:e,unboundStoryFn:r,showMain:t,showException:n,forceRemount:i},p){var u,l;let m=o.createElement(L,{showMain:t,showException:n},o.createElement(r,{...e})),E=h?o.createElement(h,null,m):m;return i&&d(p),await g(E,p,(l=(u=e==null?void 0:e.parameters)==null?void 0:u.react)==null?void 0:l.rootOptions),()=>d(p)}var b=e=>async r=>(r!=null&&(e.originalStoryFn=()=>r),await e.renderToCanvas(),e.canvas),B={renderer:"react"};export{b as mount,B as parameters,D as render,O as renderToCanvas}; diff --git a/storybook-static/assets/entry-preview-docs-27249d0f.js b/storybook-static/assets/entry-preview-docs-27249d0f.js deleted file mode 100644 index 10cd204..0000000 --- a/storybook-static/assets/entry-preview-docs-27249d0f.js +++ /dev/null @@ -1,54 +0,0 @@ -import{a as xi,b as Yn,c as Fi,d as Zn,$ as eu,z as tu,e as ru,O as te,f as Wr,s as Gr,g as zr,K as iu,B as nu,P as $r,o as ft,H as uu}from"./isArray-03ed71c9.js";import{g as pt,c as lt,b as su,R as st,r as Ge}from"./index-f1f2c4b1.js";import{d as au}from"./index-356e4a49.js";var vi={exports:{}},ou="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED",lu=ou,cu=lu;function bi(){}function Si(){}Si.resetWarningCache=bi;var hu=function(){function e(i,u,s,a,f,p){if(p!==cu){var D=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw D.name="Invariant Violation",D}}e.isRequired=e;function t(){return e}var r={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:Si,resetWarningCache:bi};return r.PropTypes=r,r};vi.exports=hu();var fu=vi.exports;const Jr=pt(fu),pu=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","math","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","search","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"];var du=pu;const mu=pt(du);var _i={},Bi={};(function(e){(function t(r){var i,u,s,a,f,p;function D(g){var x={},F,B;for(F in g)g.hasOwnProperty(F)&&(B=g[F],typeof B=="object"&&B!==null?x[F]=D(B):x[F]=B);return x}function m(g,x){var F,B,R,N;for(B=g.length,R=0;B;)F=B>>>1,N=R+F,x(g[N])?B=F:(R=N+1,B-=F+1);return R}i={AssignmentExpression:"AssignmentExpression",AssignmentPattern:"AssignmentPattern",ArrayExpression:"ArrayExpression",ArrayPattern:"ArrayPattern",ArrowFunctionExpression:"ArrowFunctionExpression",AwaitExpression:"AwaitExpression",BlockStatement:"BlockStatement",BinaryExpression:"BinaryExpression",BreakStatement:"BreakStatement",CallExpression:"CallExpression",CatchClause:"CatchClause",ChainExpression:"ChainExpression",ClassBody:"ClassBody",ClassDeclaration:"ClassDeclaration",ClassExpression:"ClassExpression",ComprehensionBlock:"ComprehensionBlock",ComprehensionExpression:"ComprehensionExpression",ConditionalExpression:"ConditionalExpression",ContinueStatement:"ContinueStatement",DebuggerStatement:"DebuggerStatement",DirectiveStatement:"DirectiveStatement",DoWhileStatement:"DoWhileStatement",EmptyStatement:"EmptyStatement",ExportAllDeclaration:"ExportAllDeclaration",ExportDefaultDeclaration:"ExportDefaultDeclaration",ExportNamedDeclaration:"ExportNamedDeclaration",ExportSpecifier:"ExportSpecifier",ExpressionStatement:"ExpressionStatement",ForStatement:"ForStatement",ForInStatement:"ForInStatement",ForOfStatement:"ForOfStatement",FunctionDeclaration:"FunctionDeclaration",FunctionExpression:"FunctionExpression",GeneratorExpression:"GeneratorExpression",Identifier:"Identifier",IfStatement:"IfStatement",ImportExpression:"ImportExpression",ImportDeclaration:"ImportDeclaration",ImportDefaultSpecifier:"ImportDefaultSpecifier",ImportNamespaceSpecifier:"ImportNamespaceSpecifier",ImportSpecifier:"ImportSpecifier",Literal:"Literal",LabeledStatement:"LabeledStatement",LogicalExpression:"LogicalExpression",MemberExpression:"MemberExpression",MetaProperty:"MetaProperty",MethodDefinition:"MethodDefinition",ModuleSpecifier:"ModuleSpecifier",NewExpression:"NewExpression",ObjectExpression:"ObjectExpression",ObjectPattern:"ObjectPattern",PrivateIdentifier:"PrivateIdentifier",Program:"Program",Property:"Property",PropertyDefinition:"PropertyDefinition",RestElement:"RestElement",ReturnStatement:"ReturnStatement",SequenceExpression:"SequenceExpression",SpreadElement:"SpreadElement",Super:"Super",SwitchStatement:"SwitchStatement",SwitchCase:"SwitchCase",TaggedTemplateExpression:"TaggedTemplateExpression",TemplateElement:"TemplateElement",TemplateLiteral:"TemplateLiteral",ThisExpression:"ThisExpression",ThrowStatement:"ThrowStatement",TryStatement:"TryStatement",UnaryExpression:"UnaryExpression",UpdateExpression:"UpdateExpression",VariableDeclaration:"VariableDeclaration",VariableDeclarator:"VariableDeclarator",WhileStatement:"WhileStatement",WithStatement:"WithStatement",YieldExpression:"YieldExpression"},s={AssignmentExpression:["left","right"],AssignmentPattern:["left","right"],ArrayExpression:["elements"],ArrayPattern:["elements"],ArrowFunctionExpression:["params","body"],AwaitExpression:["argument"],BlockStatement:["body"],BinaryExpression:["left","right"],BreakStatement:["label"],CallExpression:["callee","arguments"],CatchClause:["param","body"],ChainExpression:["expression"],ClassBody:["body"],ClassDeclaration:["id","superClass","body"],ClassExpression:["id","superClass","body"],ComprehensionBlock:["left","right"],ComprehensionExpression:["blocks","filter","body"],ConditionalExpression:["test","consequent","alternate"],ContinueStatement:["label"],DebuggerStatement:[],DirectiveStatement:[],DoWhileStatement:["body","test"],EmptyStatement:[],ExportAllDeclaration:["source"],ExportDefaultDeclaration:["declaration"],ExportNamedDeclaration:["declaration","specifiers","source"],ExportSpecifier:["exported","local"],ExpressionStatement:["expression"],ForStatement:["init","test","update","body"],ForInStatement:["left","right","body"],ForOfStatement:["left","right","body"],FunctionDeclaration:["id","params","body"],FunctionExpression:["id","params","body"],GeneratorExpression:["blocks","filter","body"],Identifier:[],IfStatement:["test","consequent","alternate"],ImportExpression:["source"],ImportDeclaration:["specifiers","source"],ImportDefaultSpecifier:["local"],ImportNamespaceSpecifier:["local"],ImportSpecifier:["imported","local"],Literal:[],LabeledStatement:["label","body"],LogicalExpression:["left","right"],MemberExpression:["object","property"],MetaProperty:["meta","property"],MethodDefinition:["key","value"],ModuleSpecifier:[],NewExpression:["callee","arguments"],ObjectExpression:["properties"],ObjectPattern:["properties"],PrivateIdentifier:[],Program:["body"],Property:["key","value"],PropertyDefinition:["key","value"],RestElement:["argument"],ReturnStatement:["argument"],SequenceExpression:["expressions"],SpreadElement:["argument"],Super:[],SwitchStatement:["discriminant","cases"],SwitchCase:["test","consequent"],TaggedTemplateExpression:["tag","quasi"],TemplateElement:[],TemplateLiteral:["quasis","expressions"],ThisExpression:[],ThrowStatement:["argument"],TryStatement:["block","handler","finalizer"],UnaryExpression:["argument"],UpdateExpression:["argument"],VariableDeclaration:["declarations"],VariableDeclarator:["id","init"],WhileStatement:["test","body"],WithStatement:["object","body"],YieldExpression:["argument"]},a={},f={},p={},u={Break:a,Skip:f,Remove:p};function y(g,x){this.parent=g,this.key=x}y.prototype.replace=function(x){this.parent[this.key]=x},y.prototype.remove=function(){return Array.isArray(this.parent)?(this.parent.splice(this.key,1),!0):(this.replace(null),!1)};function A(g,x,F,B){this.node=g,this.path=x,this.wrap=F,this.ref=B}function C(){}C.prototype.path=function(){var x,F,B,R,N,W;function q(M,X){if(Array.isArray(X))for(B=0,R=X.length;B=0;--F)if(g[F].node===x)return!0;return!1}C.prototype.traverse=function(x,F){var B,R,N,W,q,M,X,ne,oe,ie,Q,Ce;for(this.__initialize(x,F),Ce={},B=this.__worklist,R=this.__leavelist,B.push(new A(x,null,null,null)),R.push(new A(null,null,null,null));B.length;){if(N=B.pop(),N===Ce){if(N=R.pop(),M=this.__execute(F.leave,N),this.__state===a||M===a)return;continue}if(N.node){if(M=this.__execute(F.enter,N),this.__state===a||M===a)return;if(B.push(Ce),R.push(N),this.__state===f||M===f)continue;if(W=N.node,q=W.type||N.wrap,ie=this.__keys[q],!ie)if(this.__fallback)ie=this.__fallback(W);else throw new Error("Unknown node type "+q+".");for(ne=ie.length;(ne-=1)>=0;)if(X=ie[ne],Q=W[X],!!Q){if(Array.isArray(Q)){for(oe=Q.length;(oe-=1)>=0;)if(Q[oe]&&!b(R,Q[oe])){if(E(q,ie[ne]))N=new A(Q[oe],[X,oe],"Property",null);else if(v(Q[oe]))N=new A(Q[oe],[X,oe],null,null);else continue;B.push(N)}}else if(v(Q)){if(b(R,Q))continue;B.push(new A(Q,X,null,null))}}}}},C.prototype.replace=function(x,F){var B,R,N,W,q,M,X,ne,oe,ie,Q,Ce,Be;function Je(O){var Ve,Ct,Le,ee;if(O.ref.remove()){for(Ct=O.ref.key,ee=O.ref.parent,Ve=B.length;Ve--;)if(Le=B[Ve],Le.ref&&Le.ref.parent===ee){if(Le.ref.key=0;)if(Be=oe[X],ie=N[Be],!!ie)if(Array.isArray(ie)){for(ne=ie.length;(ne-=1)>=0;)if(ie[ne]){if(E(W,oe[X]))M=new A(ie[ne],[Be,ne],"Property",new y(ie,ne));else if(v(ie[ne]))M=new A(ie[ne],[Be,ne],null,new y(ie,ne));else continue;B.push(M)}}else v(ie)&&B.push(new A(ie,Be,null,new y(N,Be)))}}return Ce.root};function T(g,x){var F=new C;return F.traverse(g,x)}function I(g,x){var F=new C;return F.replace(g,x)}function V(g,x){var F;return F=m(x,function(R){return R.range[0]>g.range[0]}),g.extendedRange=[g.range[0],g.range[1]],F!==x.length&&(g.extendedRange[1]=x[F].range[0]),F-=1,F>=0&&(g.extendedRange[0]=x[F].range[1]),g}function S(g,x,F){var B=[],R,N,W,q;if(!g.range)throw new Error("attachComments needs range information");if(!F.length){if(x.length){for(W=0,N=x.length;WM.range[0]));)X.extendedRange[1]===M.range[0]?(M.leadingComments||(M.leadingComments=[]),M.leadingComments.push(X),B.splice(q,1)):q+=1;if(q===B.length)return u.Break;if(B[q].extendedRange[0]>M.range[1])return u.Skip}}),q=0,T(g,{leave:function(M){for(var X;qM.range[1])return u.Skip}}),g}return r.Syntax=i,r.traverse=T,r.replace=I,r.attachComments=S,r.VisitorKeys=s,r.VisitorOption=u,r.Controller=C,r.cloneEnvironment=function(){return t({})},r})(e)})(Bi);var St={},wi={exports:{}};(function(){function e(a){if(a==null)return!1;switch(a.type){case"ArrayExpression":case"AssignmentExpression":case"BinaryExpression":case"CallExpression":case"ConditionalExpression":case"FunctionExpression":case"Identifier":case"Literal":case"LogicalExpression":case"MemberExpression":case"NewExpression":case"ObjectExpression":case"SequenceExpression":case"ThisExpression":case"UnaryExpression":case"UpdateExpression":return!0}return!1}function t(a){if(a==null)return!1;switch(a.type){case"DoWhileStatement":case"ForInStatement":case"ForStatement":case"WhileStatement":return!0}return!1}function r(a){if(a==null)return!1;switch(a.type){case"BlockStatement":case"BreakStatement":case"ContinueStatement":case"DebuggerStatement":case"DoWhileStatement":case"EmptyStatement":case"ExpressionStatement":case"ForInStatement":case"ForStatement":case"IfStatement":case"LabeledStatement":case"ReturnStatement":case"SwitchStatement":case"ThrowStatement":case"TryStatement":case"VariableDeclaration":case"WhileStatement":case"WithStatement":return!0}return!1}function i(a){return r(a)||a!=null&&a.type==="FunctionDeclaration"}function u(a){switch(a.type){case"IfStatement":return a.alternate!=null?a.alternate:a.consequent;case"LabeledStatement":case"ForStatement":case"ForInStatement":case"WhileStatement":case"WithStatement":return a.body}return null}function s(a){var f;if(a.type!=="IfStatement"||a.alternate==null)return!1;f=a.consequent;do{if(f.type==="IfStatement"&&f.alternate==null)return!0;f=u(f)}while(f);return!1}wi.exports={isExpression:e,isStatement:r,isIterationStatement:t,isSourceElement:i,isProblematicIfStatement:s,trailingStatement:u}})();var gu=wi.exports,ki={exports:{}};(function(){var e,t,r,i,u,s;t={NonAsciiIdentifierStart:/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/,NonAsciiIdentifierPart:/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D01-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19D9\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF6\u1CF8\u1CF9\u1D00-\u1DF5\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u2E2F\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099\u309A\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]/},e={NonAsciiIdentifierStart:/[\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0-\u08B4\u08B6-\u08BD\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C60\u0C61\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D5F-\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1C80-\u1C88\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309B-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA8FD\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF30-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE80-\uDEAA\uDF00-\uDF19]|\uD806[\uDCA0-\uDCDF\uDCFF\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC72-\uDC8F]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F\uDFE0]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00\uDC01]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4\uDD00-\uDD43]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1]|\uD87E[\uDC00-\uDE1D]/,NonAsciiIdentifierPart:/[\xAA\xB5\xB7\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0300-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u0483-\u0487\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u0591-\u05BD\u05BF\u05C1\u05C2\u05C4\u05C5\u05C7\u05D0-\u05EA\u05F0-\u05F2\u0610-\u061A\u0620-\u0669\u066E-\u06D3\u06D5-\u06DC\u06DF-\u06E8\u06EA-\u06FC\u06FF\u0710-\u074A\u074D-\u07B1\u07C0-\u07F5\u07FA\u0800-\u082D\u0840-\u085B\u08A0-\u08B4\u08B6-\u08BD\u08D4-\u08E1\u08E3-\u0963\u0966-\u096F\u0971-\u0983\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BC-\u09C4\u09C7\u09C8\u09CB-\u09CE\u09D7\u09DC\u09DD\u09DF-\u09E3\u09E6-\u09F1\u0A01-\u0A03\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A3C\u0A3E-\u0A42\u0A47\u0A48\u0A4B-\u0A4D\u0A51\u0A59-\u0A5C\u0A5E\u0A66-\u0A75\u0A81-\u0A83\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABC-\u0AC5\u0AC7-\u0AC9\u0ACB-\u0ACD\u0AD0\u0AE0-\u0AE3\u0AE6-\u0AEF\u0AF9\u0B01-\u0B03\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3C-\u0B44\u0B47\u0B48\u0B4B-\u0B4D\u0B56\u0B57\u0B5C\u0B5D\u0B5F-\u0B63\u0B66-\u0B6F\u0B71\u0B82\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BBE-\u0BC2\u0BC6-\u0BC8\u0BCA-\u0BCD\u0BD0\u0BD7\u0BE6-\u0BEF\u0C00-\u0C03\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D-\u0C44\u0C46-\u0C48\u0C4A-\u0C4D\u0C55\u0C56\u0C58-\u0C5A\u0C60-\u0C63\u0C66-\u0C6F\u0C80-\u0C83\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBC-\u0CC4\u0CC6-\u0CC8\u0CCA-\u0CCD\u0CD5\u0CD6\u0CDE\u0CE0-\u0CE3\u0CE6-\u0CEF\u0CF1\u0CF2\u0D01-\u0D03\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D-\u0D44\u0D46-\u0D48\u0D4A-\u0D4E\u0D54-\u0D57\u0D5F-\u0D63\u0D66-\u0D6F\u0D7A-\u0D7F\u0D82\u0D83\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DCA\u0DCF-\u0DD4\u0DD6\u0DD8-\u0DDF\u0DE6-\u0DEF\u0DF2\u0DF3\u0E01-\u0E3A\u0E40-\u0E4E\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB9\u0EBB-\u0EBD\u0EC0-\u0EC4\u0EC6\u0EC8-\u0ECD\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F18\u0F19\u0F20-\u0F29\u0F35\u0F37\u0F39\u0F3E-\u0F47\u0F49-\u0F6C\u0F71-\u0F84\u0F86-\u0F97\u0F99-\u0FBC\u0FC6\u1000-\u1049\u1050-\u109D\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u135D-\u135F\u1369-\u1371\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u170C\u170E-\u1714\u1720-\u1734\u1740-\u1753\u1760-\u176C\u176E-\u1770\u1772\u1773\u1780-\u17D3\u17D7\u17DC\u17DD\u17E0-\u17E9\u180B-\u180D\u1810-\u1819\u1820-\u1877\u1880-\u18AA\u18B0-\u18F5\u1900-\u191E\u1920-\u192B\u1930-\u193B\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A1B\u1A20-\u1A5E\u1A60-\u1A7C\u1A7F-\u1A89\u1A90-\u1A99\u1AA7\u1AB0-\u1ABD\u1B00-\u1B4B\u1B50-\u1B59\u1B6B-\u1B73\u1B80-\u1BF3\u1C00-\u1C37\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1CD0-\u1CD2\u1CD4-\u1CF6\u1CF8\u1CF9\u1D00-\u1DF5\u1DFB-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u200C\u200D\u203F\u2040\u2054\u2071\u207F\u2090-\u209C\u20D0-\u20DC\u20E1\u20E5-\u20F0\u2102\u2107\u210A-\u2113\u2115\u2118-\u211D\u2124\u2126\u2128\u212A-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2160-\u2188\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D7F-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2DE0-\u2DFF\u3005-\u3007\u3021-\u302F\u3031-\u3035\u3038-\u303C\u3041-\u3096\u3099-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FD5\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66F\uA674-\uA67D\uA67F-\uA6F1\uA717-\uA71F\uA722-\uA788\uA78B-\uA7AE\uA7B0-\uA7B7\uA7F7-\uA827\uA840-\uA873\uA880-\uA8C5\uA8D0-\uA8D9\uA8E0-\uA8F7\uA8FB\uA8FD\uA900-\uA92D\uA930-\uA953\uA960-\uA97C\uA980-\uA9C0\uA9CF-\uA9D9\uA9E0-\uA9FE\uAA00-\uAA36\uAA40-\uAA4D\uAA50-\uAA59\uAA60-\uAA76\uAA7A-\uAAC2\uAADB-\uAADD\uAAE0-\uAAEF\uAAF2-\uAAF6\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB65\uAB70-\uABEA\uABEC\uABED\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE00-\uFE0F\uFE20-\uFE2F\uFE33\uFE34\uFE4D-\uFE4F\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF3F\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD40-\uDD74\uDDFD\uDE80-\uDE9C\uDEA0-\uDED0\uDEE0\uDF00-\uDF1F\uDF30-\uDF4A\uDF50-\uDF7A\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDCE0-\uDCF2\uDCF4\uDCF5\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00-\uDE03\uDE05\uDE06\uDE0C-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE38-\uDE3A\uDE3F\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE6\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2]|\uD804[\uDC00-\uDC46\uDC66-\uDC6F\uDC7F-\uDCBA\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD00-\uDD34\uDD36-\uDD3F\uDD50-\uDD73\uDD76\uDD80-\uDDC4\uDDCA-\uDDCC\uDDD0-\uDDDA\uDDDC\uDE00-\uDE11\uDE13-\uDE37\uDE3E\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEEA\uDEF0-\uDEF9\uDF00-\uDF03\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3C-\uDF44\uDF47\uDF48\uDF4B-\uDF4D\uDF50\uDF57\uDF5D-\uDF63\uDF66-\uDF6C\uDF70-\uDF74]|\uD805[\uDC00-\uDC4A\uDC50-\uDC59\uDC80-\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDB5\uDDB8-\uDDC0\uDDD8-\uDDDD\uDE00-\uDE40\uDE44\uDE50-\uDE59\uDE80-\uDEB7\uDEC0-\uDEC9\uDF00-\uDF19\uDF1D-\uDF2B\uDF30-\uDF39]|\uD806[\uDCA0-\uDCE9\uDCFF\uDEC0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC36\uDC38-\uDC40\uDC50-\uDC59\uDC72-\uDC8F\uDC92-\uDCA7\uDCA9-\uDCB6]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|[\uD80C\uD81C-\uD820\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDED0-\uDEED\uDEF0-\uDEF4\uDF00-\uDF36\uDF40-\uDF43\uDF50-\uDF59\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50-\uDF7E\uDF8F-\uDF9F\uDFE0]|\uD821[\uDC00-\uDFEC]|\uD822[\uDC00-\uDEF2]|\uD82C[\uDC00\uDC01]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99\uDC9D\uDC9E]|\uD834[\uDD65-\uDD69\uDD6D-\uDD72\uDD7B-\uDD82\uDD85-\uDD8B\uDDAA-\uDDAD\uDE42-\uDE44]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD836[\uDE00-\uDE36\uDE3B-\uDE6C\uDE75\uDE84\uDE9B-\uDE9F\uDEA1-\uDEAF]|\uD838[\uDC00-\uDC06\uDC08-\uDC18\uDC1B-\uDC21\uDC23\uDC24\uDC26-\uDC2A]|\uD83A[\uDC00-\uDCC4\uDCD0-\uDCD6\uDD00-\uDD4A\uDD50-\uDD59]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1]|\uD87E[\uDC00-\uDE1D]|\uDB40[\uDD00-\uDDEF]/};function a(b){return 48<=b&&b<=57}function f(b){return 48<=b&&b<=57||97<=b&&b<=102||65<=b&&b<=70}function p(b){return b>=48&&b<=55}r=[5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8239,8287,12288,65279];function D(b){return b===32||b===9||b===11||b===12||b===160||b>=5760&&r.indexOf(b)>=0}function m(b){return b===10||b===13||b===8232||b===8233}function y(b){if(b<=65535)return String.fromCharCode(b);var T=String.fromCharCode(Math.floor((b-65536)/1024)+55296),I=String.fromCharCode((b-65536)%1024+56320);return T+I}for(i=new Array(128),s=0;s<128;++s)i[s]=s>=97&&s<=122||s>=65&&s<=90||s===36||s===95;for(u=new Array(128),s=0;s<128;++s)u[s]=s>=97&&s<=122||s>=65&&s<=90||s>=48&&s<=57||s===36||s===95;function A(b){return b<128?i[b]:t.NonAsciiIdentifierStart.test(y(b))}function C(b){return b<128?u[b]:t.NonAsciiIdentifierPart.test(y(b))}function v(b){return b<128?i[b]:e.NonAsciiIdentifierStart.test(y(b))}function E(b){return b<128?u[b]:e.NonAsciiIdentifierPart.test(y(b))}ki.exports={isDecimalDigit:a,isHexDigit:f,isOctalDigit:p,isWhiteSpace:D,isLineTerminator:m,isIdentifierStartES5:A,isIdentifierPartES5:C,isIdentifierStartES6:v,isIdentifierPartES6:E}})();var Ii=ki.exports,Ti={exports:{}};(function(){var e=Ii;function t(A){switch(A){case"implements":case"interface":case"package":case"private":case"protected":case"public":case"static":case"let":return!0;default:return!1}}function r(A,C){return!C&&A==="yield"?!1:i(A,C)}function i(A,C){if(C&&t(A))return!0;switch(A.length){case 2:return A==="if"||A==="in"||A==="do";case 3:return A==="var"||A==="for"||A==="new"||A==="try";case 4:return A==="this"||A==="else"||A==="case"||A==="void"||A==="with"||A==="enum";case 5:return A==="while"||A==="break"||A==="catch"||A==="throw"||A==="const"||A==="yield"||A==="class"||A==="super";case 6:return A==="return"||A==="typeof"||A==="delete"||A==="switch"||A==="export"||A==="import";case 7:return A==="default"||A==="finally"||A==="extends";case 8:return A==="function"||A==="continue"||A==="debugger";case 10:return A==="instanceof";default:return!1}}function u(A,C){return A==="null"||A==="true"||A==="false"||r(A,C)}function s(A,C){return A==="null"||A==="true"||A==="false"||i(A,C)}function a(A){return A==="eval"||A==="arguments"}function f(A){var C,v,E;if(A.length===0||(E=A.charCodeAt(0),!e.isIdentifierStartES5(E)))return!1;for(C=1,v=A.length;C=v||(b=A.charCodeAt(C),!(56320<=b&&b<=57343)))return!1;E=p(E,b)}if(!T(E))return!1;T=e.isIdentifierPartES6}return!0}function m(A,C){return f(A)&&!u(A,C)}function y(A,C){return D(A)&&!s(A,C)}Ti.exports={isKeywordES5:r,isKeywordES6:i,isReservedWordES5:u,isReservedWordES6:s,isRestrictedWord:a,isIdentifierNameES5:f,isIdentifierNameES6:D,isIdentifierES5:m,isIdentifierES6:y}})();var Du=Ti.exports;(function(){St.ast=gu,St.code=Ii,St.keyword=Du})();var it={},Zt={},Ft={},vt={},Hr;function Au(){if(Hr)return vt;Hr=1;var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split("");return vt.encode=function(t){if(0<=t&&t>1;return p?-D:D}return Ft.encode=function(p){var D="",m,y=s(p);do m=y&i,y>>>=t,y>0&&(m|=u),D+=e.encode(m);while(y>0);return D},Ft.decode=function(p,D,m){var y=p.length,A=0,C=0,v,E;do{if(D>=y)throw new Error("Expected more digits in base 64 VLQ value.");if(E=e.decode(p.charCodeAt(D++)),E===-1)throw new Error("Invalid base64 digit: "+p.charAt(D-1));v=!!(E&u),E&=i,A=A+(E<=0;W--)R=B[W],R==="."?B.splice(W,1):R===".."?N++:N>0&&(R===""?(B.splice(W+1,N),N=0):(B.splice(W,2),N--));return g=B.join("/"),g===""&&(g=F?"/":"."),x?(x.path=g,s(x)):g}e.normalize=a;function f(S,g){S===""&&(S="."),g===""&&(g=".");var x=u(g),F=u(S);if(F&&(S=F.path||"/"),x&&!x.scheme)return F&&(x.scheme=F.scheme),s(x);if(x||g.match(i))return g;if(F&&!F.host&&!F.path)return F.host=g,s(F);var B=g.charAt(0)==="/"?g:a(S.replace(/\/+$/,"")+"/"+g);return F?(F.path=B,s(F)):B}e.join=f,e.isAbsolute=function(S){return S.charAt(0)==="/"||r.test(S)};function p(S,g){S===""&&(S="."),S=S.replace(/\/$/,"");for(var x=0;g.indexOf(S+"/")!==0;){var F=S.lastIndexOf("/");if(F<0||(S=S.slice(0,F),S.match(/^([^\/]+:\/)?\/*$/)))return g;++x}return Array(x+1).join("../")+g.substr(S.length+1)}e.relative=p;var D=function(){var S=Object.create(null);return!("__proto__"in S)}();function m(S){return S}function y(S){return C(S)?"$"+S:S}e.toSetString=D?m:y;function A(S){return C(S)?S.slice(1):S}e.fromSetString=D?m:A;function C(S){if(!S)return!1;var g=S.length;if(g<9||S.charCodeAt(g-1)!==95||S.charCodeAt(g-2)!==95||S.charCodeAt(g-3)!==111||S.charCodeAt(g-4)!==116||S.charCodeAt(g-5)!==111||S.charCodeAt(g-6)!==114||S.charCodeAt(g-7)!==112||S.charCodeAt(g-8)!==95||S.charCodeAt(g-9)!==95)return!1;for(var x=g-10;x>=0;x--)if(S.charCodeAt(x)!==36)return!1;return!0}function v(S,g,x){var F=b(S.source,g.source);return F!==0||(F=S.originalLine-g.originalLine,F!==0)||(F=S.originalColumn-g.originalColumn,F!==0||x)||(F=S.generatedColumn-g.generatedColumn,F!==0)||(F=S.generatedLine-g.generatedLine,F!==0)?F:b(S.name,g.name)}e.compareByOriginalPositions=v;function E(S,g,x){var F=S.generatedLine-g.generatedLine;return F!==0||(F=S.generatedColumn-g.generatedColumn,F!==0||x)||(F=b(S.source,g.source),F!==0)||(F=S.originalLine-g.originalLine,F!==0)||(F=S.originalColumn-g.originalColumn,F!==0)?F:b(S.name,g.name)}e.compareByGeneratedPositionsDeflated=E;function b(S,g){return S===g?0:S===null?1:g===null?-1:S>g?1:-1}function T(S,g){var x=S.generatedLine-g.generatedLine;return x!==0||(x=S.generatedColumn-g.generatedColumn,x!==0)||(x=b(S.source,g.source),x!==0)||(x=S.originalLine-g.originalLine,x!==0)||(x=S.originalColumn-g.originalColumn,x!==0)?x:b(S.name,g.name)}e.compareByGeneratedPositionsInflated=T;function I(S){return JSON.parse(S.replace(/^\)]}'[^\n]*\n/,""))}e.parseSourceMapInput=I;function V(S,g,x){if(g=g||"",S&&(S[S.length-1]!=="/"&&g[0]!=="/"&&(S+="/"),g=S+g),x){var F=u(x);if(!F)throw new Error("sourceMapURL could not be parsed");if(F.path){var B=F.path.lastIndexOf("/");B>=0&&(F.path=F.path.substring(0,B+1))}g=f(s(F),g)}return a(g)}e.computeSourceURL=V}(er)),er}var tr={},Kr;function Ni(){if(Kr)return tr;Kr=1;var e=dt(),t=Object.prototype.hasOwnProperty,r=typeof Map<"u";function i(){this._array=[],this._set=r?new Map:Object.create(null)}return i.fromArray=function(s,a){for(var f=new i,p=0,D=s.length;p=0)return a}else{var f=e.toSetString(s);if(t.call(this._set,f))return this._set[f]}throw new Error('"'+s+'" is not in the set.')},i.prototype.at=function(s){if(s>=0&&ss||a==s&&p>=f||e.compareByGeneratedPositionsInflated(i,u)<=0}function r(){this._array=[],this._sorted=!0,this._last={generatedLine:-1,generatedColumn:0}}return r.prototype.unsortedForEach=function(u,s){this._array.forEach(u,s)},r.prototype.add=function(u){t(this._last,u)?(this._last=u,this._array.push(u)):(this._sorted=!1,this._array.push(u))},r.prototype.toArray=function(){return this._sorted||(this._array.sort(e.compareByGeneratedPositionsInflated),this._sorted=!0),this._array},rr.MappingList=r,rr}var Zr;function Li(){if(Zr)return Zt;Zr=1;var e=Pi(),t=dt(),r=Ni().ArraySet,i=Cu().MappingList;function u(s){s||(s={}),this._file=t.getArg(s,"file",null),this._sourceRoot=t.getArg(s,"sourceRoot",null),this._skipValidation=t.getArg(s,"skipValidation",!1),this._sources=new r,this._names=new r,this._mappings=new i,this._sourcesContents=null}return u.prototype._version=3,u.fromSourceMap=function(a){var f=a.sourceRoot,p=new u({file:a.file,sourceRoot:f});return a.eachMapping(function(D){var m={generated:{line:D.generatedLine,column:D.generatedColumn}};D.source!=null&&(m.source=D.source,f!=null&&(m.source=t.relative(f,m.source)),m.original={line:D.originalLine,column:D.originalColumn},D.name!=null&&(m.name=D.name)),p.addMapping(m)}),a.sources.forEach(function(D){var m=D;f!==null&&(m=t.relative(f,D)),p._sources.has(m)||p._sources.add(m);var y=a.sourceContentFor(D);y!=null&&p.setSourceContent(D,y)}),p},u.prototype.addMapping=function(a){var f=t.getArg(a,"generated"),p=t.getArg(a,"original",null),D=t.getArg(a,"source",null),m=t.getArg(a,"name",null);this._skipValidation||this._validateMapping(f,p,D,m),D!=null&&(D=String(D),this._sources.has(D)||this._sources.add(D)),m!=null&&(m=String(m),this._names.has(m)||this._names.add(m)),this._mappings.add({generatedLine:f.line,generatedColumn:f.column,originalLine:p!=null&&p.line,originalColumn:p!=null&&p.column,source:D,name:m})},u.prototype.setSourceContent=function(a,f){var p=a;this._sourceRoot!=null&&(p=t.relative(this._sourceRoot,p)),f!=null?(this._sourcesContents||(this._sourcesContents=Object.create(null)),this._sourcesContents[t.toSetString(p)]=f):this._sourcesContents&&(delete this._sourcesContents[t.toSetString(p)],Object.keys(this._sourcesContents).length===0&&(this._sourcesContents=null))},u.prototype.applySourceMap=function(a,f,p){var D=f;if(f==null){if(a.file==null)throw new Error(`SourceMapGenerator.prototype.applySourceMap requires either an explicit source file, or the source map's "file" property. Both were omitted.`);D=a.file}var m=this._sourceRoot;m!=null&&(D=t.relative(m,D));var y=new r,A=new r;this._mappings.unsortedForEach(function(C){if(C.source===D&&C.originalLine!=null){var v=a.originalPositionFor({line:C.originalLine,column:C.originalColumn});v.source!=null&&(C.source=v.source,p!=null&&(C.source=t.join(p,C.source)),m!=null&&(C.source=t.relative(m,C.source)),C.originalLine=v.line,C.originalColumn=v.column,v.name!=null&&(C.name=v.name))}var E=C.source;E!=null&&!y.has(E)&&y.add(E);var b=C.name;b!=null&&!A.has(b)&&A.add(b)},this),this._sources=y,this._names=A,a.sources.forEach(function(C){var v=a.sourceContentFor(C);v!=null&&(p!=null&&(C=t.join(p,C)),m!=null&&(C=t.relative(m,C)),this.setSourceContent(C,v))},this)},u.prototype._validateMapping=function(a,f,p,D){if(f&&typeof f.line!="number"&&typeof f.column!="number")throw new Error("original.line and original.column are not numbers -- you probably meant to omit the original mapping entirely and only map the generated position. If so, pass null for the original mapping instead of an object with empty or null values.");if(!(a&&"line"in a&&"column"in a&&a.line>0&&a.column>=0&&!f&&!p&&!D)){if(a&&"line"in a&&"column"in a&&f&&"line"in f&&"column"in f&&a.line>0&&a.column>=0&&f.line>0&&f.column>=0&&p)return;throw new Error("Invalid mapping: "+JSON.stringify({generated:a,source:p,original:f,name:D}))}},u.prototype._serializeMappings=function(){for(var a=0,f=1,p=0,D=0,m=0,y=0,A="",C,v,E,b,T=this._mappings.toArray(),I=0,V=T.length;I0){if(!t.compareByGeneratedPositionsInflated(v,T[I-1]))continue;C+=","}C+=e.encode(v.generatedColumn-a),a=v.generatedColumn,v.source!=null&&(b=this._sources.indexOf(v.source),C+=e.encode(b-y),y=b,C+=e.encode(v.originalLine-1-D),D=v.originalLine-1,C+=e.encode(v.originalColumn-p),p=v.originalColumn,v.name!=null&&(E=this._names.indexOf(v.name),C+=e.encode(E-m),m=E)),A+=C}return A},u.prototype._generateSourcesContent=function(a,f){return a.map(function(p){if(!this._sourcesContents)return null;f!=null&&(p=t.relative(f,p));var D=t.toSetString(p);return Object.prototype.hasOwnProperty.call(this._sourcesContents,D)?this._sourcesContents[D]:null},this)},u.prototype.toJSON=function(){var a={version:this._version,sources:this._sources.toArray(),names:this._names.toArray(),mappings:this._serializeMappings()};return this._file!=null&&(a.file=this._file),this._sourceRoot!=null&&(a.sourceRoot=this._sourceRoot),this._sourcesContents&&(a.sourcesContent=this._generateSourcesContent(a.sources,a.sourceRoot)),a},u.prototype.toString=function(){return JSON.stringify(this.toJSON())},Zt.SourceMapGenerator=u,Zt}var nt={},ir={},ei;function Eu(){return ei||(ei=1,function(e){e.GREATEST_LOWER_BOUND=1,e.LEAST_UPPER_BOUND=2;function t(r,i,u,s,a,f){var p=Math.floor((i-r)/2)+r,D=a(u,s[p],!0);return D===0?p:D>0?i-p>1?t(p,i,u,s,a,f):f==e.LEAST_UPPER_BOUND?i1?t(r,p,u,s,a,f):f==e.LEAST_UPPER_BOUND?p:r<0?-1:r}e.search=function(i,u,s,a){if(u.length===0)return-1;var f=t(-1,u.length,i,u,s,a||e.GREATEST_LOWER_BOUND);if(f<0)return-1;for(;f-1>=0&&s(u[f],u[f-1],!0)===0;)--f;return f}}(ir)),ir}var nr={},ti;function yu(){if(ti)return nr;ti=1;function e(i,u,s){var a=i[u];i[u]=i[s],i[s]=a}function t(i,u){return Math.round(i+Math.random()*(u-i))}function r(i,u,s,a){if(s=0){var E=this._originalMappings[v];if(m.column===void 0)for(var b=E.originalLine;E&&E.originalLine===b;)C.push({line:e.getArg(E,"generatedLine",null),column:e.getArg(E,"generatedColumn",null),lastColumn:e.getArg(E,"lastGeneratedColumn",null)}),E=this._originalMappings[++v];else for(var T=E.originalColumn;E&&E.originalLine===y&&E.originalColumn==T;)C.push({line:e.getArg(E,"generatedLine",null),column:e.getArg(E,"generatedColumn",null),lastColumn:e.getArg(E,"lastGeneratedColumn",null)}),E=this._originalMappings[++v]}return C},nt.SourceMapConsumer=s;function a(D,m){var y=D;typeof D=="string"&&(y=e.parseSourceMapInput(D));var A=e.getArg(y,"version"),C=e.getArg(y,"sources"),v=e.getArg(y,"names",[]),E=e.getArg(y,"sourceRoot",null),b=e.getArg(y,"sourcesContent",null),T=e.getArg(y,"mappings"),I=e.getArg(y,"file",null);if(A!=this._version)throw new Error("Unsupported version: "+A);E&&(E=e.normalize(E)),C=C.map(String).map(e.normalize).map(function(V){return E&&e.isAbsolute(E)&&e.isAbsolute(V)?e.relative(E,V):V}),this._names=r.fromArray(v.map(String),!0),this._sources=r.fromArray(C,!0),this._absoluteSources=this._sources.toArray().map(function(V){return e.computeSourceURL(E,V,m)}),this.sourceRoot=E,this.sourcesContent=b,this._mappings=T,this._sourceMapURL=m,this.file=I}a.prototype=Object.create(s.prototype),a.prototype.consumer=s,a.prototype._findSourceIndex=function(D){var m=D;if(this.sourceRoot!=null&&(m=e.relative(this.sourceRoot,m)),this._sources.has(m))return this._sources.indexOf(m);var y;for(y=0;y1&&(B.source=b+N[1],b+=N[1],B.originalLine=v+N[2],v=B.originalLine,B.originalLine+=1,B.originalColumn=E+N[3],E=B.originalColumn,N.length>4&&(B.name=T+N[4],T+=N[4])),F.push(B),typeof B.originalLine=="number"&&x.push(B)}u(F,e.compareByGeneratedPositionsDeflated),this.__generatedMappings=F,u(x,e.compareByOriginalPositions),this.__originalMappings=x},a.prototype._findMapping=function(m,y,A,C,v,E){if(m[A]<=0)throw new TypeError("Line must be greater than or equal to 1, got "+m[A]);if(m[C]<0)throw new TypeError("Column must be greater than or equal to 0, got "+m[C]);return t.search(m,y,v,E)},a.prototype.computeColumnSpans=function(){for(var m=0;m=0){var C=this._generatedMappings[A];if(C.generatedLine===y.generatedLine){var v=e.getArg(C,"source",null);v!==null&&(v=this._sources.at(v),v=e.computeSourceURL(this.sourceRoot,v,this._sourceMapURL));var E=e.getArg(C,"name",null);return E!==null&&(E=this._names.at(E)),{source:v,line:e.getArg(C,"originalLine",null),column:e.getArg(C,"originalColumn",null),name:E}}}return{source:null,line:null,column:null,name:null}},a.prototype.hasContentsOfAllSources=function(){return this.sourcesContent?this.sourcesContent.length>=this._sources.size()&&!this.sourcesContent.some(function(m){return m==null}):!1},a.prototype.sourceContentFor=function(m,y){if(!this.sourcesContent)return null;var A=this._findSourceIndex(m);if(A>=0)return this.sourcesContent[A];var C=m;this.sourceRoot!=null&&(C=e.relative(this.sourceRoot,C));var v;if(this.sourceRoot!=null&&(v=e.urlParse(this.sourceRoot))){var E=C.replace(/^file:\/\//,"");if(v.scheme=="file"&&this._sources.has(E))return this.sourcesContent[this._sources.indexOf(E)];if((!v.path||v.path=="/")&&this._sources.has("/"+C))return this.sourcesContent[this._sources.indexOf("/"+C)]}if(y)return null;throw new Error('"'+C+'" is not in the SourceMap.')},a.prototype.generatedPositionFor=function(m){var y=e.getArg(m,"source");if(y=this._findSourceIndex(y),y<0)return{line:null,column:null,lastColumn:null};var A={source:y,originalLine:e.getArg(m,"line"),originalColumn:e.getArg(m,"column")},C=this._findMapping(A,this._originalMappings,"originalLine","originalColumn",e.compareByOriginalPositions,e.getArg(m,"bias",s.GREATEST_LOWER_BOUND));if(C>=0){var v=this._originalMappings[C];if(v.source===A.source)return{line:e.getArg(v,"generatedLine",null),column:e.getArg(v,"generatedColumn",null),lastColumn:e.getArg(v,"lastGeneratedColumn",null)}}return{line:null,column:null,lastColumn:null}},nt.BasicSourceMapConsumer=a;function p(D,m){var y=D;typeof D=="string"&&(y=e.parseSourceMapInput(D));var A=e.getArg(y,"version"),C=e.getArg(y,"sections");if(A!=this._version)throw new Error("Unsupported version: "+A);this._sources=new r,this._names=new r;var v={line:-1,column:0};this._sections=C.map(function(E){if(E.url)throw new Error("Support for url field in sections not implemented.");var b=e.getArg(E,"offset"),T=e.getArg(b,"line"),I=e.getArg(b,"column");if(T=0;p--)this.prepend(f[p]);else if(f[u]||typeof f=="string")this.children.unshift(f);else throw new TypeError("Expected a SourceNode, string, or an array of SourceNodes and strings. Got "+f);return this},s.prototype.walk=function(f){for(var p,D=0,m=this.children.length;D0){for(p=[],D=0;D=6.0"},Pu=[{name:"Yusuke Suzuki",email:"utatane.tea@gmail.com",web:"http://github.com/Constellation"}],Nu={type:"git",url:"http://github.com/estools/escodegen.git"},Lu={estraverse:"^5.2.0",esutils:"^2.0.2",esprima:"^4.0.1"},Ou={"source-map":"~0.6.1"},Ru={acorn:"^8.0.4",bluebird:"^3.4.7","bower-registry-client":"^1.0.0",chai:"^4.2.0","chai-exclude":"^2.0.2","commonjs-everywhere":"^0.9.7",gulp:"^4.0.2","gulp-eslint":"^6.0.0","gulp-mocha":"^7.0.2",minimist:"^1.2.5",optionator:"^0.9.1",semver:"^7.3.4"},Mu="BSD-2-Clause",Vu={test:"gulp travis","unit-test":"gulp test",lint:"gulp lint",release:"node tools/release.js","build-min":"./node_modules/.bin/cjsify -ma path: tools/entry-point.js > escodegen.browser.min.js",build:"./node_modules/.bin/cjsify -a path: tools/entry-point.js > escodegen.browser.js"},ju={name:bu,description:Su,homepage:_u,main:Bu,bin:wu,files:ku,version:Iu,engines:Tu,maintainers:Pu,repository:Nu,dependencies:Lu,optionalDependencies:Ou,devDependencies:Ru,license:Mu,scripts:Vu};(function(e){(function(){var t,r,i,u,s,a,f,p,D,m,y,A,C,v,E,b,T,I,V,S,g,x,F,B,R,N;s=Bi,a=St,t=s.Syntax;function W(n){return ae.Expression.hasOwnProperty(n.type)}function q(n){return ae.Statement.hasOwnProperty(n.type)}r={Sequence:0,Yield:1,Assignment:1,Conditional:2,ArrowFunction:2,Coalesce:3,LogicalOR:4,LogicalAND:5,BitwiseOR:6,BitwiseXOR:7,BitwiseAND:8,Equality:9,Relational:10,BitwiseSHIFT:11,Additive:12,Multiplicative:13,Exponentiation:14,Await:15,Unary:15,Postfix:16,OptionalChaining:17,Call:18,New:19,TaggedTemplate:20,Member:21,Primary:22},i={"??":r.Coalesce,"||":r.LogicalOR,"&&":r.LogicalAND,"|":r.BitwiseOR,"^":r.BitwiseXOR,"&":r.BitwiseAND,"==":r.Equality,"!=":r.Equality,"===":r.Equality,"!==":r.Equality,is:r.Equality,isnt:r.Equality,"<":r.Relational,">":r.Relational,"<=":r.Relational,">=":r.Relational,in:r.Relational,instanceof:r.Relational,"<<":r.BitwiseSHIFT,">>":r.BitwiseSHIFT,">>>":r.BitwiseSHIFT,"+":r.Additive,"-":r.Additive,"*":r.Multiplicative,"%":r.Multiplicative,"/":r.Multiplicative,"**":r.Exponentiation};var M=1,X=2,ne=4,oe=8,ie=16,Q=32,Ce=64,Be=X|ne,Je=M|X,O=M|X|ne,Ve=M,Ct=ne,Le=M|ne,ee=M,be=M|Q,Et=0,Mn=M|ie,Vn=M|oe;function Nr(){return{indent:null,base:null,parse:null,comment:!1,format:{indent:{style:" ",base:0,adjustMultilineComment:!1},newline:` -`,space:" ",json:!1,renumber:!1,hexadecimal:!1,quotes:"single",escapeless:!1,compact:!1,parentheses:!0,semicolons:!0,safeConcatenation:!1,preserveBlankLines:!1},moz:{comprehensionExpressionStartsWithAssignment:!1,starlessGenerator:!1},sourceMap:null,sourceMapRoot:null,sourceMapWithCode:!1,directive:!1,raw:!0,verbatim:null,sourceCode:null}}function je(n,l){var o="";for(l|=0;l>0;l>>>=1,n+=n)l&1&&(o+=n);return o}function jn(n){return/[\r\n]/g.test(n)}function he(n){var l=n.length;return l&&a.code.isLineTerminator(n.charCodeAt(l-1))}function Lr(n,l){var o;for(o in l)l.hasOwnProperty(o)&&(n[o]=l[o]);return n}function yt(n,l){var o,c;function d(_){return typeof _=="object"&&_ instanceof Object&&!(_ instanceof RegExp)}for(o in l)l.hasOwnProperty(o)&&(c=l[o],d(c)?d(n[o])?yt(n[o],c):n[o]=yt({},c):n[o]=c);return n}function qn(n){var l,o,c,d,_;if(n!==n)throw new Error("Numeric literal whose value is NaN");if(n<0||n===0&&1/n<0)throw new Error("Numeric literal whose value is negative");if(n===1/0)return D?"null":m?"1e400":"1e+400";if(l=""+n,!m||l.length<3)return l;for(o=l.indexOf("."),!D&&l.charCodeAt(0)===48&&o===1&&(o=0,l=l.slice(1)),c=l,l=l.replace("e+","e"),d=0,(_=c.indexOf("e"))>0&&(d=+c.slice(_+1),c=c.slice(0,_)),o>=0&&(d-=c.length-o-1,c=+(c.slice(0,o)+c.slice(o+1))+""),_=0;c.charCodeAt(c.length+_-1)===48;)--_;return _!==0&&(d-=_,c=c.slice(0,_)),d!==0&&(c+="e"+d),(c.length1e12&&Math.floor(n)===n&&(c="0x"+n.toString(16)).length255?"\\u"+"0000".slice(o.length)+o:n===0&&!a.code.isDecimalDigit(l)?"\\0":n===11?"\\x0B":"\\x"+"00".slice(o.length)+o)}function Gn(n){if(n===92)return"\\\\";if(n===10)return"\\n";if(n===13)return"\\r";if(n===8232)return"\\u2028";if(n===8233)return"\\u2029";throw new Error("Incorrectly classified character")}function zn(n){var l,o,c,d;for(d=A==="double"?'"':"'",l=0,o=n.length;l126))){l+=Wn(d,n.charCodeAt(o+1));continue}l+=String.fromCharCode(d)}if(k=!(A==="double"||A==="auto"&&w<_),L=k?"'":'"',!(k?_:w))return L+l+L;for(n=l,l=L,o=0,c=n.length;o=0&&!a.code.isLineTerminator(n.charCodeAt(l));--l);return n.length-1-l}function Hn(n,l){var o,c,d,_,w,k,L,J;for(o=n.split(/\r\n|[\r\n]/),k=Number.MAX_VALUE,c=1,d=o.length;cw&&(k=w)}for(typeof l<"u"?(L=f,o[1][k]==="*"&&(l+=" "),f=l):(k&1&&--k,L=f),c=1,d=o.length;c0){if(_=l,B){for(d=n.leadingComments[0],l=[],J=d.extendedRange,ce=d.range,Xe=F.substring(J[0],ce[0]),Se=(Xe.match(/\n/g)||[]).length,Se>0?(l.push(je(` -`,Se)),l.push(pe(we(d)))):(l.push(Xe),l.push(we(d))),qe=ce,o=1,c=n.leadingComments.length;o0?(l.push(je(` -`,Se)),l.push(pe(we(d)))):(l.push(Xe),l.push(we(d)));else for(w=!he(Y(l).toString()),k=je(" ",Jn(Y([f,l,p]).toString())),o=0,c=n.trailingComments.length;o")),n.expression?(l.push(E),o=this.generateExpression(n.body,r.Assignment,O),o.toString().charAt(0)==="{"&&(o=["(",o,")"]),l.push(o)):l.push(this.maybeBlock(n.body,Vn)),l},ae.prototype.generateIterationForStatement=function(n,l,o){var c=["for"+(l.await?fe()+"await":"")+E+"("],d=this;return se(function(){l.left.type===t.VariableDeclaration?se(function(){c.push(l.left.kind+fe()),c.push(d.generateStatement(l.left.declarations[0],Et))}):c.push(d.generateExpression(l.left,r.Call,O)),c=U(c,n),c=[U(c,d.generateExpression(l.right,r.Assignment,O)),")"]}),c.push(this.maybeBlock(l.body,o)),c},ae.prototype.generatePropertyKey=function(n,l){var o=[];return l&&o.push("["),o.push(this.generateExpression(n,r.Assignment,O)),l&&o.push("]"),o},ae.prototype.generateAssignment=function(n,l,o,c,d){return r.Assignment2&&(c=F.substring(o[0]+1,o[1]-1),c[0]===` -`&&(d=["{"]),d.push(c)));var w,k,L,J;for(J=ee,l&oe&&(J|=ie),w=0,k=n.body.length;w0&&!n.body[w-1].trailingComments&&!n.body[w].leadingComments&&He(n.body[w-1].range[1],n.body[w].range[0],d)),w===k-1&&(J|=Q),n.body[w].leadingComments&&B?L=_.generateStatement(n.body[w],J):L=pe(_.generateStatement(n.body[w],J)),d.push(L),he(Y(L).toString())||B&&w1?se(L):L(),o.push(this.semicolon(l)),o},ThrowStatement:function(n,l){return[U("throw",this.generateExpression(n.argument,r.Sequence,O)),this.semicolon(l)]},TryStatement:function(n,l){var o,c,d,_;if(o=["try",this.maybeBlock(n.block,ee)],o=this.maybeBlockSuffix(n.block,o),n.handlers)for(c=0,d=n.handlers.length;c0?` -`:""],w=Mn,d=0;d<_;++d)!I&&d===_-1&&(w|=Q),B&&(d===0&&(n.body[0].leadingComments||He(n.range[0],n.body[d].range[0],o)),d>0&&!n.body[d-1].trailingComments&&!n.body[d].leadingComments&&He(n.body[d-1].range[1],n.body[d].range[0],o)),c=pe(this.generateStatement(n.body[d],w)),o.push(c),d+1<_&&!he(Y(c).toString())&&(B&&n.body[d+1].leadingComments||o.push(v)),B&&d===_-1&&(n.body[d].trailingComments||He(n.body[d].range[1],n.range[1],o));return o},FunctionDeclaration:function(n,l){return[rt(n,!0),"function",xt(n)||fe(),n.id?ge(n.id):"",this.generateFunctionBody(n)]},ReturnStatement:function(n,l){return n.argument?[U("return",this.generateExpression(n.argument,r.Sequence,O)),this.semicolon(l)]:["return"+this.semicolon(l)]},WhileStatement:function(n,l){var o,c=this;return se(function(){o=["while"+E+"(",c.generateExpression(n.test,r.Sequence,O),")"]}),o.push(this.maybeBlock(n.body,l&Q?be:ee)),o},WithStatement:function(n,l){var o,c=this;return se(function(){o=["with"+E+"(",c.generateExpression(n.object,r.Sequence,O),")"]}),o.push(this.maybeBlock(n.body,l&Q?be:ee)),o}},Lr(ae.prototype,ae.Statement),ae.Expression={SequenceExpression:function(n,l,o){var c,d,_;for(r.Sequence0){for(c.push("("),_=0,w=d;_=2&&d.charCodeAt(0)===48)&&c.push(" ")),c.push(n.optional?"?.":"."),c.push(ge(n.property))),le(c,r.Member,l)},MetaProperty:function(n,l,o){var c;return c=[],c.push(typeof n.meta=="string"?n.meta:ge(n.meta)),c.push("."),c.push(typeof n.property=="string"?n.property:ge(n.property)),le(c,r.Member,l)},UnaryExpression:function(n,l,o){var c,d,_,w,k;return d=this.generateExpression(n.argument,r.Unary,O),E===""?c=U(n.operator,d):(c=[n.operator],n.operator.length>2?c=U(c,d):(w=Y(c).toString(),k=w.charCodeAt(w.length-1),_=d.toString().charCodeAt(0),((k===43||k===45)&&k===_||a.code.isIdentifierPartES5(k)&&a.code.isIdentifierPartES5(_))&&c.push(fe()),c.push(d))),le(c,r.Unary,l)},YieldExpression:function(n,l,o){var c;return n.delegate?c="yield*":c="yield",n.argument&&(c=U(c,this.generateExpression(n.argument,r.Yield,O))),le(c,r.Yield,l)},AwaitExpression:function(n,l,o){var c=U(n.all?"await*":"await",this.generateExpression(n.argument,r.Await,O));return le(c,r.Await,l)},UpdateExpression:function(n,l,o){return n.prefix?le([n.operator,this.generateExpression(n.argument,r.Unary,O)],r.Unary,l):le([this.generateExpression(n.argument,r.Postfix,O),n.operator],r.Postfix,l)},FunctionExpression:function(n,l,o){var c=[rt(n,!0),"function"];return n.id?(c.push(xt(n)||fe()),c.push(ge(n.id))):c.push(xt(n)||E),c.push(this.generateFunctionBody(n)),c},ArrayPattern:function(n,l,o){return this.ArrayExpression(n,l,o,!0)},ArrayExpression:function(n,l,o,c){var d,_,w=this;return n.elements.length?(_=c?!1:n.elements.length>1,d=["[",_?v:""],se(function(k){var L,J;for(L=0,J=n.elements.length;L1,se(function(){_=w.generateExpression(n.properties[0],r.Sequence,O)}),!c&&!jn(Y(_).toString())?["{",E,_,E,"}"]:(se(function(k){var L,J;if(d=["{",v,k,_],c)for(d.push(","+v),L=1,J=n.properties.length;L0||S.moz.comprehensionExpressionStartsWithAssignment?c=U(c,w):c.push(w)}),n.filter&&(c=U(c,"if"+E),w=this.generateExpression(n.filter,r.Sequence,O),c=U(c,["(",w,")"])),S.moz.comprehensionExpressionStartsWithAssignment||(w=this.generateExpression(n.body,r.Assignment,O),c=U(c,w)),c.push(n.type===t.GeneratorExpression?")":"]"),c},ComprehensionBlock:function(n,l,o){var c;return n.left.type===t.VariableDeclaration?c=[n.left.kind,fe(),this.generateStatement(n.left.declarations[0],Et)]:c=this.generateExpression(n.left,r.Call,O),c=U(c,n.of?"of":"in"),c=U(c,this.generateExpression(n.right,r.Sequence,O)),["for"+E+"(",c,")"]},SpreadElement:function(n,l,o){return["...",this.generateExpression(n.argument,r.Assignment,O)]},TaggedTemplateExpression:function(n,l,o){var c=Je;o&X||(c=Ve);var d=[this.generateExpression(n.tag,r.Call,c),this.generateExpression(n.quasi,r.Primary,Ct)];return le(d,r.TaggedTemplate,l)},TemplateElement:function(n,l,o){return n.value.raw},TemplateLiteral:function(n,l,o){var c,d,_;for(c=["`"],d=0,_=n.quasis.length;d<_;++d)c.push(this.generateExpression(n.quasis[d],r.Primary,O)),d+1<_&&(c.push("${"+E),c.push(this.generateExpression(n.expressions[d],r.Sequence,O)),c.push(E+"}"));return c.push("`"),c},ModuleSpecifier:function(n,l,o){return this.Literal(n,l,o)},ImportExpression:function(n,l,o){return le(["import(",this.generateExpression(n.source,r.Assignment,O),")"],r.Call,l)}},Lr(ae.prototype,ae.Expression),ae.prototype.generateExpression=function(n,l,o){var c,d;return d=n.type||t.Property,S.verbatim&&n.hasOwnProperty(S.verbatim)?Xn(n,l):(c=this[d](n,l,o),S.comment&&(c=Mr(n,c)),Y(c,n))},ae.prototype.generateStatement=function(n,l){var o,c;return o=this[n.type](n,l),S.comment&&(o=Mr(n,o)),c=Y(o).toString(),n.type===t.Program&&!I&&v===""&&c.charAt(c.length-1)===` -`&&(o=x?Y(o).replaceRight(/\s+$/,""):c.replace(/\s+$/,"")),Y(o,n)};function Qn(n){var l;if(l=new ae,q(n))return l.generateStatement(n,ee);if(W(n))return l.generateExpression(n,r.Sequence,O);throw new Error("Unknown node type: "+n.type)}function Kn(n,l){var o=Nr(),c,d;return l!=null?(typeof l.indent=="string"&&(o.format.indent.style=l.indent),typeof l.base=="number"&&(o.format.indent.base=l.base),l=yt(o,l),p=l.format.indent.style,typeof l.base=="string"?f=l.base:f=je(p,l.format.indent.base)):(l=o,p=l.format.indent.style,f=je(p,l.format.indent.base)),D=l.format.json,m=l.format.renumber,y=D?!1:l.format.hexadecimal,A=D?"double":l.format.quotes,C=l.format.escapeless,v=l.format.newline,E=l.format.space,l.format.compact&&(v=E=p=f=""),b=l.format.parentheses,T=l.format.semicolons,I=l.format.safeConcatenation,V=l.directive,g=D?null:l.parse,x=l.sourceMap,F=l.sourceCode,B=l.format.preserveBlankLines&&F!==null,S=l,x&&(e.browser?u=lt.sourceMap.SourceNode:u=vu().SourceNode),c=Qn(n),x?(d=c.toStringWithSourceMap({file:l.file,sourceRoot:l.sourceMapRoot}),l.sourceContent&&d.map.setSourceContent(l.sourceMap,l.sourceContent),l.sourceMapWithCode?d:d.map.toString()):(d={code:c.toString(),map:null},l.sourceMapWithCode?d:d.code)}R={indent:{style:"",base:0},renumber:!0,hexadecimal:!0,quotes:"auto",escapeless:!0,compact:!0,parentheses:!1,semicolons:!1},N=Nr().format,e.version=ju.version,e.generate=Kn,e.attachComments=s.attachComments,e.Precedence=yt({},r),e.browser=!1,e.FORMAT_MINIFY=R,e.FORMAT_DEFAULTS=N})()})(_i);var sr={3:"abstract boolean byte char class double enum export extends final float goto implements import int interface long native package private protected public short static super synchronized throws transient volatile",5:"class enum extends super const export import",6:"enum",strict:"implements interface let package private protected public static yield",strictBind:"eval arguments"},ar="break case catch continue debugger default do else finally for function if return switch throw try var while with null true false instanceof typeof void delete new in this",qu={5:ar,"5module":ar+" export import",6:ar+" const class extends export import super"},Uu=/^in(stanceof)?$/,Dr="ªµºÀ-ÖØ-öø-ˁˆ-ˑˠ-ˤˬˮͰ-ʹͶͷͺ-ͽͿΆΈ-ΊΌΎ-ΡΣ-ϵϷ-ҁҊ-ԯԱ-Ֆՙՠ-ֈא-תׯ-ײؠ-يٮٯٱ-ۓەۥۦۮۯۺ-ۼۿܐܒ-ܯݍ-ޥޱߊ-ߪߴߵߺࠀ-ࠕࠚࠤࠨࡀ-ࡘࡠ-ࡪࢠ-ࢴࢶ-ࣇऄ-हऽॐक़-ॡॱ-ঀঅ-ঌএঐও-নপ-রলশ-হঽৎড়ঢ়য়-ৡৰৱৼਅ-ਊਏਐਓ-ਨਪ-ਰਲਲ਼ਵਸ਼ਸਹਖ਼-ੜਫ਼ੲ-ੴઅ-ઍએ-ઑઓ-નપ-રલળવ-હઽૐૠૡૹଅ-ଌଏଐଓ-ନପ-ରଲଳଵ-ହଽଡ଼ଢ଼ୟ-ୡୱஃஅ-ஊஎ-ஐஒ-கஙசஜஞடணதந-பம-ஹௐఅ-ఌఎ-ఐఒ-నప-హఽౘ-ౚౠౡಀಅ-ಌಎ-ಐಒ-ನಪ-ಳವ-ಹಽೞೠೡೱೲഄ-ഌഎ-ഐഒ-ഺഽൎൔ-ൖൟ-ൡൺ-ൿඅ-ඖක-නඳ-රලව-ෆก-ะาำเ-ๆກຂຄຆ-ຊຌ-ຣລວ-ະາຳຽເ-ໄໆໜ-ໟༀཀ-ཇཉ-ཬྈ-ྌက-ဪဿၐ-ၕၚ-ၝၡၥၦၮ-ၰၵ-ႁႎႠ-ჅჇჍა-ჺჼ-ቈቊ-ቍቐ-ቖቘቚ-ቝበ-ኈኊ-ኍነ-ኰኲ-ኵኸ-ኾዀዂ-ዅወ-ዖዘ-ጐጒ-ጕጘ-ፚᎀ-ᎏᎠ-Ᏽᏸ-ᏽᐁ-ᙬᙯ-ᙿᚁ-ᚚᚠ-ᛪᛮ-ᛸᜀ-ᜌᜎ-ᜑᜠ-ᜱᝀ-ᝑᝠ-ᝬᝮ-ᝰក-ឳៗៜᠠ-ᡸᢀ-ᢨᢪᢰ-ᣵᤀ-ᤞᥐ-ᥭᥰ-ᥴᦀ-ᦫᦰ-ᧉᨀ-ᨖᨠ-ᩔᪧᬅ-ᬳᭅ-ᭋᮃ-ᮠᮮᮯᮺ-ᯥᰀ-ᰣᱍ-ᱏᱚ-ᱽᲀ-ᲈᲐ-ᲺᲽ-Ჿᳩ-ᳬᳮ-ᳳᳵᳶᳺᴀ-ᶿḀ-ἕἘ-Ἕἠ-ὅὈ-Ὅὐ-ὗὙὛὝὟ-ώᾀ-ᾴᾶ-ᾼιῂ-ῄῆ-ῌῐ-ΐῖ-Ίῠ-Ῥῲ-ῴῶ-ῼⁱⁿₐ-ₜℂℇℊ-ℓℕ℘-ℝℤΩℨK-ℹℼ-ℿⅅ-ⅉⅎⅠ-ↈⰀ-Ⱞⰰ-ⱞⱠ-ⳤⳫ-ⳮⳲⳳⴀ-ⴥⴧⴭⴰ-ⵧⵯⶀ-ⶖⶠ-ⶦⶨ-ⶮⶰ-ⶶⶸ-ⶾⷀ-ⷆⷈ-ⷎⷐ-ⷖⷘ-ⷞ々-〇〡-〩〱-〵〸-〼ぁ-ゖ゛-ゟァ-ヺー-ヿㄅ-ㄯㄱ-ㆎㆠ-ㆿㇰ-ㇿ㐀-䶿一-鿼ꀀ-ꒌꓐ-ꓽꔀ-ꘌꘐ-ꘟꘪꘫꙀ-ꙮꙿ-ꚝꚠ-ꛯꜗ-ꜟꜢ-ꞈꞋ-ꞿꟂ-ꟊꟵ-ꠁꠃ-ꠅꠇ-ꠊꠌ-ꠢꡀ-ꡳꢂ-ꢳꣲ-ꣷꣻꣽꣾꤊ-ꤥꤰ-ꥆꥠ-ꥼꦄ-ꦲꧏꧠ-ꧤꧦ-ꧯꧺ-ꧾꨀ-ꨨꩀ-ꩂꩄ-ꩋꩠ-ꩶꩺꩾ-ꪯꪱꪵꪶꪹ-ꪽꫀꫂꫛ-ꫝꫠ-ꫪꫲ-ꫴꬁ-ꬆꬉ-ꬎꬑ-ꬖꬠ-ꬦꬨ-ꬮꬰ-ꭚꭜ-ꭩꭰ-ꯢ가-힣ힰ-ퟆퟋ-ퟻ豈-舘並-龎ff-stﬓ-ﬗיִײַ-ﬨשׁ-זּטּ-לּמּנּסּףּפּצּ-ﮱﯓ-ﴽﵐ-ﶏﶒ-ﷇﷰ-ﷻﹰ-ﹴﹶ-ﻼA-Za-zヲ-하-ᅦᅧ-ᅬᅭ-ᅲᅳ-ᅵ",Oi="‌‍·̀-ͯ·҃-֑҇-ׇֽֿׁׂׅׄؐ-ًؚ-٩ٰۖ-ۜ۟-۪ۤۧۨ-ۭ۰-۹ܑܰ-݊ަ-ް߀-߉߫-߽߳ࠖ-࠙ࠛ-ࠣࠥ-ࠧࠩ-࡙࠭-࡛࣓-ࣣ࣡-ःऺ-़ा-ॏ॑-ॗॢॣ०-९ঁ-ঃ়া-ৄেৈো-্ৗৢৣ০-৯৾ਁ-ਃ਼ਾ-ੂੇੈੋ-੍ੑ੦-ੱੵઁ-ઃ઼ા-ૅે-ૉો-્ૢૣ૦-૯ૺ-૿ଁ-ଃ଼ା-ୄେୈୋ-୍୕-ୗୢୣ୦-୯ஂா-ூெ-ைொ-்ௗ௦-௯ఀ-ఄా-ౄె-ైొ-్ౕౖౢౣ౦-౯ಁ-ಃ಼ಾ-ೄೆ-ೈೊ-್ೕೖೢೣ೦-೯ഀ-ഃ഻഼ാ-ൄെ-ൈൊ-്ൗൢൣ൦-൯ඁ-ඃ්ා-ුූෘ-ෟ෦-෯ෲෳัิ-ฺ็-๎๐-๙ັິ-ຼ່-ໍ໐-໙༘༙༠-༩༹༵༷༾༿ཱ-྄྆྇ྍ-ྗྙ-ྼ࿆ါ-ှ၀-၉ၖ-ၙၞ-ၠၢ-ၤၧ-ၭၱ-ၴႂ-ႍႏ-ႝ፝-፟፩-፱ᜒ-᜔ᜲ-᜴ᝒᝓᝲᝳ឴-៓៝០-៩᠋-᠍᠐-᠙ᢩᤠ-ᤫᤰ-᤻᥆-᥏᧐-᧚ᨗ-ᨛᩕ-ᩞ᩠-᩿᩼-᪉᪐-᪙᪰-᪽ᪿᫀᬀ-ᬄ᬴-᭄᭐-᭙᭫-᭳ᮀ-ᮂᮡ-ᮭ᮰-᮹᯦-᯳ᰤ-᰷᱀-᱉᱐-᱙᳐-᳔᳒-᳨᳭᳴᳷-᳹᷀-᷹᷻-᷿‿⁀⁔⃐-⃥⃜⃡-⃰⳯-⵿⳱ⷠ-〪ⷿ-゙゚〯꘠-꘩꙯ꙴ-꙽ꚞꚟ꛰꛱ꠂ꠆ꠋꠣ-ꠧ꠬ꢀꢁꢴ-ꣅ꣐-꣙꣠-꣱ꣿ-꤉ꤦ-꤭ꥇ-꥓ꦀ-ꦃ꦳-꧀꧐-꧙ꧥ꧰-꧹ꨩ-ꨶꩃꩌꩍ꩐-꩙ꩻ-ꩽꪰꪲ-ꪴꪷꪸꪾ꪿꫁ꫫ-ꫯꫵ꫶ꯣ-ꯪ꯬꯭꯰-꯹ﬞ︀-️︠-︯︳︴﹍-﹏0-9_",Wu=new RegExp("["+Dr+"]"),Gu=new RegExp("["+Dr+Oi+"]");Dr=Oi=null;var Ri=[0,11,2,25,2,18,2,1,2,14,3,13,35,122,70,52,268,28,4,48,48,31,14,29,6,37,11,29,3,35,5,7,2,4,43,157,19,35,5,35,5,39,9,51,157,310,10,21,11,7,153,5,3,0,2,43,2,1,4,0,3,22,11,22,10,30,66,18,2,1,11,21,11,25,71,55,7,1,65,0,16,3,2,2,2,28,43,28,4,28,36,7,2,27,28,53,11,21,11,18,14,17,111,72,56,50,14,50,14,35,349,41,7,1,79,28,11,0,9,21,107,20,28,22,13,52,76,44,33,24,27,35,30,0,3,0,9,34,4,0,13,47,15,3,22,0,2,0,36,17,2,24,85,6,2,0,2,3,2,14,2,9,8,46,39,7,3,1,3,21,2,6,2,1,2,4,4,0,19,0,13,4,159,52,19,3,21,2,31,47,21,1,2,0,185,46,42,3,37,47,21,0,60,42,14,0,72,26,230,43,117,63,32,7,3,0,3,7,2,1,2,23,16,0,2,0,95,7,3,38,17,0,2,0,29,0,11,39,8,0,22,0,12,45,20,0,35,56,264,8,2,36,18,0,50,29,113,6,2,1,2,37,22,0,26,5,2,1,2,31,15,0,328,18,190,0,80,921,103,110,18,195,2749,1070,4050,582,8634,568,8,30,114,29,19,47,17,3,32,20,6,18,689,63,129,74,6,0,67,12,65,1,2,0,29,6135,9,1237,43,8,8952,286,50,2,18,3,9,395,2309,106,6,12,4,8,8,9,5991,84,2,70,2,1,3,0,3,1,3,3,2,11,2,0,2,6,2,64,2,3,3,7,2,6,2,27,2,3,2,4,2,0,4,6,2,339,3,24,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,30,2,24,2,7,2357,44,11,6,17,0,370,43,1301,196,60,67,8,0,1205,3,2,26,2,1,2,0,3,0,2,9,2,3,2,0,2,0,7,0,5,0,2,0,2,0,2,2,2,1,2,0,3,0,2,0,2,0,2,0,2,0,2,1,2,0,3,3,2,6,2,3,2,3,2,0,2,9,2,16,6,2,2,4,2,16,4421,42717,35,4148,12,221,3,5761,15,7472,3104,541,1507,4938],zu=[509,0,227,0,150,4,294,9,1368,2,2,1,6,3,41,2,5,0,166,1,574,3,9,9,370,1,154,10,176,2,54,14,32,9,16,3,46,10,54,9,7,2,37,13,2,9,6,1,45,0,13,2,49,13,9,3,2,11,83,11,7,0,161,11,6,9,7,3,56,1,2,6,3,1,3,2,10,0,11,1,3,6,4,4,193,17,10,9,5,0,82,19,13,9,214,6,3,8,28,1,83,16,16,9,82,12,9,9,84,14,5,9,243,14,166,9,71,5,2,1,3,3,2,0,2,1,13,9,120,6,3,6,4,0,29,9,41,6,2,3,9,0,10,10,47,15,406,7,2,7,17,9,57,21,2,13,123,5,4,0,2,1,2,6,2,0,9,9,49,4,2,1,2,4,9,9,330,3,19306,9,135,4,60,6,26,9,1014,0,2,54,8,3,82,0,12,1,19628,1,5319,4,4,5,9,7,3,6,31,3,149,2,1418,49,513,54,5,49,9,0,15,0,23,4,2,14,1361,6,2,16,3,6,2,1,2,4,262,6,10,9,419,13,1495,6,110,6,6,9,4759,9,787719,239];function lr(e,t){for(var r=65536,i=0;ie)return!1;if(r+=t[i+1],r>=e)return!0}}function Te(e,t){return e<65?e===36:e<91?!0:e<97?e===95:e<123?!0:e<=65535?e>=170&&Wu.test(String.fromCharCode(e)):t===!1?!1:lr(e,Ri)}function We(e,t){return e<48?e===36:e<58?!0:e<65?!1:e<91?!0:e<97?e===95:e<123?!0:e<=65535?e>=170&&Gu.test(String.fromCharCode(e)):t===!1?!1:lr(e,Ri)||lr(e,zu)}var K=function(t,r){r===void 0&&(r={}),this.label=t,this.keyword=r.keyword,this.beforeExpr=!!r.beforeExpr,this.startsExpr=!!r.startsExpr,this.isLoop=!!r.isLoop,this.isAssign=!!r.isAssign,this.prefix=!!r.prefix,this.postfix=!!r.postfix,this.binop=r.binop||null,this.updateContext=null};function Ee(e,t){return new K(e,{beforeExpr:!0,binop:t})}var ye={beforeExpr:!0},De={startsExpr:!0},Pt={};function H(e,t){return t===void 0&&(t={}),t.keyword=e,Pt[e]=new K(e,t)}var h={num:new K("num",De),regexp:new K("regexp",De),string:new K("string",De),name:new K("name",De),eof:new K("eof"),bracketL:new K("[",{beforeExpr:!0,startsExpr:!0}),bracketR:new K("]"),braceL:new K("{",{beforeExpr:!0,startsExpr:!0}),braceR:new K("}"),parenL:new K("(",{beforeExpr:!0,startsExpr:!0}),parenR:new K(")"),comma:new K(",",ye),semi:new K(";",ye),colon:new K(":",ye),dot:new K("."),question:new K("?",ye),questionDot:new K("?."),arrow:new K("=>",ye),template:new K("template"),invalidTemplate:new K("invalidTemplate"),ellipsis:new K("...",ye),backQuote:new K("`",De),dollarBraceL:new K("${",{beforeExpr:!0,startsExpr:!0}),eq:new K("=",{beforeExpr:!0,isAssign:!0}),assign:new K("_=",{beforeExpr:!0,isAssign:!0}),incDec:new K("++/--",{prefix:!0,postfix:!0,startsExpr:!0}),prefix:new K("!/~",{beforeExpr:!0,prefix:!0,startsExpr:!0}),logicalOR:Ee("||",1),logicalAND:Ee("&&",2),bitwiseOR:Ee("|",3),bitwiseXOR:Ee("^",4),bitwiseAND:Ee("&",5),equality:Ee("==/!=/===/!==",6),relational:Ee("/<=/>=",7),bitShift:Ee("<>/>>>",8),plusMin:new K("+/-",{beforeExpr:!0,binop:9,prefix:!0,startsExpr:!0}),modulo:Ee("%",10),star:Ee("*",10),slash:Ee("/",10),starstar:new K("**",{beforeExpr:!0}),coalesce:Ee("??",1),_break:H("break"),_case:H("case",ye),_catch:H("catch"),_continue:H("continue"),_debugger:H("debugger"),_default:H("default",ye),_do:H("do",{isLoop:!0,beforeExpr:!0}),_else:H("else",ye),_finally:H("finally"),_for:H("for",{isLoop:!0}),_function:H("function",De),_if:H("if"),_return:H("return",ye),_switch:H("switch"),_throw:H("throw",ye),_try:H("try"),_var:H("var"),_const:H("const"),_while:H("while",{isLoop:!0}),_with:H("with"),_new:H("new",{beforeExpr:!0,startsExpr:!0}),_this:H("this",De),_super:H("super",De),_class:H("class",De),_extends:H("extends",ye),_export:H("export"),_import:H("import",De),_null:H("null",De),_true:H("true",De),_false:H("false",De),_in:H("in",{beforeExpr:!0,binop:7}),_instanceof:H("instanceof",{beforeExpr:!0,binop:7}),_typeof:H("typeof",{beforeExpr:!0,prefix:!0,startsExpr:!0}),_void:H("void",{beforeExpr:!0,prefix:!0,startsExpr:!0}),_delete:H("delete",{beforeExpr:!0,prefix:!0,startsExpr:!0})},Ae=/\r\n?|\n|\u2028|\u2029/,Qe=new RegExp(Ae.source,"g");function et(e,t){return e===10||e===13||!t&&(e===8232||e===8233)}var Ar=/[\u1680\u2000-\u200a\u202f\u205f\u3000\ufeff]/,Fe=/(?:\s|\/\/.*|\/\*[^]*?\*\/)*/g,Mi=Object.prototype,$u=Mi.hasOwnProperty,Ju=Mi.toString;function Nt(e,t){return $u.call(e,t)}var ui=Array.isArray||function(e){return Ju.call(e)==="[object Array]"};function Ue(e){return new RegExp("^(?:"+e.replace(/ /g,"|")+")$")}var Ke=function(t,r){this.line=t,this.column=r};Ke.prototype.offset=function(t){return new Ke(this.line,this.column+t)};var mt=function(t,r,i){this.start=r,this.end=i,t.sourceFile!==null&&(this.source=t.sourceFile)};function Cr(e,t){for(var r=1,i=0;;){Qe.lastIndex=i;var u=Qe.exec(e);if(u&&u.index=2015&&(t.ecmaVersion-=2009),t.allowReserved==null&&(t.allowReserved=t.ecmaVersion<5),ui(t.onToken)){var i=t.onToken;t.onToken=function(u){return i.push(u)}}return ui(t.onComment)&&(t.onComment=Xu(t,t.onComment)),t}function Xu(e,t){return function(r,i,u,s,a,f){var p={type:r?"Block":"Line",value:i,start:u,end:s};e.locations&&(p.loc=new mt(this,a,f)),e.ranges&&(p.range=[u,s]),t.push(p)}}var ct=1,gt=2,Er=ct|gt,Vi=4,ji=8,qi=16,Ui=32,Wi=64,Gi=128;function yr(e,t){return gt|(e?Vi:0)|(t?ji:0)}var si=0,xr=1,Ie=2,zi=3,$i=4,Ji=5,re=function(t,r,i){this.options=t=Hu(t),this.sourceFile=t.sourceFile,this.keywords=Ue(qu[t.ecmaVersion>=6?6:t.sourceType==="module"?"5module":5]);var u="";if(t.allowReserved!==!0){for(var s=t.ecmaVersion;!(u=sr[s]);s--);t.sourceType==="module"&&(u+=" await")}this.reservedWords=Ue(u);var a=(u?u+" ":"")+sr.strict;this.reservedWordsStrict=Ue(a),this.reservedWordsStrictBind=Ue(a+" "+sr.strictBind),this.input=String(r),this.containsEsc=!1,i?(this.pos=i,this.lineStart=this.input.lastIndexOf(` -`,i-1)+1,this.curLine=this.input.slice(0,this.lineStart).split(Ae).length):(this.pos=this.lineStart=0,this.curLine=1),this.type=h.eof,this.value=null,this.start=this.end=this.pos,this.startLoc=this.endLoc=this.curPosition(),this.lastTokEndLoc=this.lastTokStartLoc=null,this.lastTokStart=this.lastTokEnd=this.pos,this.context=this.initialContext(),this.exprAllowed=!0,this.inModule=t.sourceType==="module",this.strict=this.inModule||this.strictDirective(this.pos),this.potentialArrowAt=-1,this.yieldPos=this.awaitPos=this.awaitIdentPos=0,this.labels=[],this.undefinedExports={},this.pos===0&&t.allowHashBang&&this.input.slice(0,2)==="#!"&&this.skipLineComment(2),this.scopeStack=[],this.enterScope(ct),this.regexpState=null},ze={inFunction:{configurable:!0},inGenerator:{configurable:!0},inAsync:{configurable:!0},allowSuper:{configurable:!0},allowDirectSuper:{configurable:!0},treatFunctionsAsVar:{configurable:!0}};re.prototype.parse=function(){var t=this.options.program||this.startNode();return this.nextToken(),this.parseTopLevel(t)};ze.inFunction.get=function(){return(this.currentVarScope().flags>)>0};ze.inGenerator.get=function(){return(this.currentVarScope().flags&ji)>0};ze.inAsync.get=function(){return(this.currentVarScope().flags&Vi)>0};ze.allowSuper.get=function(){return(this.currentThisScope().flags&Wi)>0};ze.allowDirectSuper.get=function(){return(this.currentThisScope().flags&Gi)>0};ze.treatFunctionsAsVar.get=function(){return this.treatFunctionsAsVarInScope(this.currentScope())};re.prototype.inNonArrowFunction=function(){return(this.currentThisScope().flags>)>0};re.extend=function(){for(var t=[],r=arguments.length;r--;)t[r]=arguments[r];for(var i=this,u=0;u=,?^&]/.test(u)||u==="!"&&this.input.charAt(i+1)==="=")}e+=t[0].length,Fe.lastIndex=e,e+=Fe.exec(this.input)[0].length,this.input[e]===";"&&e++}};me.eat=function(e){return this.type===e?(this.next(),!0):!1};me.isContextual=function(e){return this.type===h.name&&this.value===e&&!this.containsEsc};me.eatContextual=function(e){return this.isContextual(e)?(this.next(),!0):!1};me.expectContextual=function(e){this.eatContextual(e)||this.unexpected()};me.canInsertSemicolon=function(){return this.type===h.eof||this.type===h.braceR||Ae.test(this.input.slice(this.lastTokEnd,this.start))};me.insertSemicolon=function(){if(this.canInsertSemicolon())return this.options.onInsertedSemicolon&&this.options.onInsertedSemicolon(this.lastTokEnd,this.lastTokEndLoc),!0};me.semicolon=function(){!this.eat(h.semi)&&!this.insertSemicolon()&&this.unexpected()};me.afterTrailingComma=function(e,t){if(this.type===e)return this.options.onTrailingComma&&this.options.onTrailingComma(this.lastTokStart,this.lastTokStartLoc),t||this.next(),!0};me.expect=function(e){this.eat(e)||this.unexpected()};me.unexpected=function(e){this.raise(e??this.start,"Unexpected token")};function Lt(){this.shorthandAssign=this.trailingComma=this.parenthesizedAssign=this.parenthesizedBind=this.doubleProto=-1}me.checkPatternErrors=function(e,t){if(e){e.trailingComma>-1&&this.raiseRecoverable(e.trailingComma,"Comma is not permitted after the rest element");var r=t?e.parenthesizedAssign:e.parenthesizedBind;r>-1&&this.raiseRecoverable(r,"Parenthesized pattern")}};me.checkExpressionErrors=function(e,t){if(!e)return!1;var r=e.shorthandAssign,i=e.doubleProto;if(!t)return r>=0||i>=0;r>=0&&this.raise(r,"Shorthand property assignments are valid only in destructuring patterns"),i>=0&&this.raiseRecoverable(i,"Redefinition of __proto__ property")};me.checkYieldAwaitInDefaultParams=function(){this.yieldPos&&(!this.awaitPos||this.yieldPos=6&&this.unexpected(),this.parseFunctionStatement(u,!1,!e);case h._class:return e&&this.unexpected(),this.parseClass(u,!0);case h._if:return this.parseIfStatement(u);case h._return:return this.parseReturnStatement(u);case h._switch:return this.parseSwitchStatement(u);case h._throw:return this.parseThrowStatement(u);case h._try:return this.parseTryStatement(u);case h._const:case h._var:return s=s||this.value,e&&s!=="var"&&this.unexpected(),this.parseVarStatement(u,s);case h._while:return this.parseWhileStatement(u);case h._with:return this.parseWithStatement(u);case h.braceL:return this.parseBlock(!0,u);case h.semi:return this.parseEmptyStatement(u);case h._export:case h._import:if(this.options.ecmaVersion>10&&i===h._import){Fe.lastIndex=this.pos;var a=Fe.exec(this.input),f=this.pos+a[0].length,p=this.input.charCodeAt(f);if(p===40||p===46)return this.parseExpressionStatement(u,this.parseExpression())}return this.options.allowImportExportEverywhere||(t||this.raise(this.start,"'import' and 'export' may only appear at the top level"),this.inModule||this.raise(this.start,"'import' and 'export' may appear only with 'sourceType: module'")),i===h._import?this.parseImport(u):this.parseExport(u,r);default:if(this.isAsyncFunction())return e&&this.unexpected(),this.next(),this.parseFunctionStatement(u,!0,!e);var D=this.value,m=this.parseExpression();return i===h.name&&m.type==="Identifier"&&this.eat(h.colon)?this.parseLabeledStatement(u,D,m,e):this.parseExpressionStatement(u,m)}};G.parseBreakContinueStatement=function(e,t){var r=t==="break";this.next(),this.eat(h.semi)||this.insertSemicolon()?e.label=null:this.type!==h.name?this.unexpected():(e.label=this.parseIdent(),this.semicolon());for(var i=0;i=6?this.eat(h.semi):this.semicolon(),this.finishNode(e,"DoWhileStatement")};G.parseForStatement=function(e){this.next();var t=this.options.ecmaVersion>=9&&(this.inAsync||!this.inFunction&&this.options.allowAwaitOutsideFunction)&&this.eatContextual("await")?this.lastTokStart:-1;if(this.labels.push(Fr),this.enterScope(0),this.expect(h.parenL),this.type===h.semi)return t>-1&&this.unexpected(t),this.parseFor(e,null);var r=this.isLet();if(this.type===h._var||this.type===h._const||r){var i=this.startNode(),u=r?"let":this.value;return this.next(),this.parseVar(i,!0,u),this.finishNode(i,"VariableDeclaration"),(this.type===h._in||this.options.ecmaVersion>=6&&this.isContextual("of"))&&i.declarations.length===1?(this.options.ecmaVersion>=9&&(this.type===h._in?t>-1&&this.unexpected(t):e.await=t>-1),this.parseForIn(e,i)):(t>-1&&this.unexpected(t),this.parseFor(e,i))}var s=new Lt,a=this.parseExpression(!0,s);return this.type===h._in||this.options.ecmaVersion>=6&&this.isContextual("of")?(this.options.ecmaVersion>=9&&(this.type===h._in?t>-1&&this.unexpected(t):e.await=t>-1),this.toAssignable(a,!1,s),this.checkLVal(a),this.parseForIn(e,a)):(this.checkExpressionErrors(s,!0),t>-1&&this.unexpected(t),this.parseFor(e,a))};G.parseFunctionStatement=function(e,t,r){return this.next(),this.parseFunction(e,at|(r?0:cr),!1,t)};G.parseIfStatement=function(e){return this.next(),e.test=this.parseParenExpression(),e.consequent=this.parseStatement("if"),e.alternate=this.eat(h._else)?this.parseStatement("if"):null,this.finishNode(e,"IfStatement")};G.parseReturnStatement=function(e){return!this.inFunction&&!this.options.allowReturnOutsideFunction&&this.raise(this.start,"'return' outside of function"),this.next(),this.eat(h.semi)||this.insertSemicolon()?e.argument=null:(e.argument=this.parseExpression(),this.semicolon()),this.finishNode(e,"ReturnStatement")};G.parseSwitchStatement=function(e){this.next(),e.discriminant=this.parseParenExpression(),e.cases=[],this.expect(h.braceL),this.labels.push(Ku),this.enterScope(0);for(var t,r=!1;this.type!==h.braceR;)if(this.type===h._case||this.type===h._default){var i=this.type===h._case;t&&this.finishNode(t,"SwitchCase"),e.cases.push(t=this.startNode()),t.consequent=[],this.next(),i?t.test=this.parseExpression():(r&&this.raiseRecoverable(this.lastTokStart,"Multiple default clauses"),r=!0,t.test=null),this.expect(h.colon)}else t||this.unexpected(),t.consequent.push(this.parseStatement(null));return this.exitScope(),t&&this.finishNode(t,"SwitchCase"),this.next(),this.labels.pop(),this.finishNode(e,"SwitchStatement")};G.parseThrowStatement=function(e){return this.next(),Ae.test(this.input.slice(this.lastTokEnd,this.start))&&this.raise(this.lastTokEnd,"Illegal newline after throw"),e.argument=this.parseExpression(),this.semicolon(),this.finishNode(e,"ThrowStatement")};var Yu=[];G.parseTryStatement=function(e){if(this.next(),e.block=this.parseBlock(),e.handler=null,this.type===h._catch){var t=this.startNode();if(this.next(),this.eat(h.parenL)){t.param=this.parseBindingAtom();var r=t.param.type==="Identifier";this.enterScope(r?Ui:0),this.checkLVal(t.param,r?$i:Ie),this.expect(h.parenR)}else this.options.ecmaVersion<10&&this.unexpected(),t.param=null,this.enterScope(0);t.body=this.parseBlock(!1),this.exitScope(),e.handler=this.finishNode(t,"CatchClause")}return e.finalizer=this.eat(h._finally)?this.parseBlock():null,!e.handler&&!e.finalizer&&this.raise(e.start,"Missing catch or finally clause"),this.finishNode(e,"TryStatement")};G.parseVarStatement=function(e,t){return this.next(),this.parseVar(e,!1,t),this.semicolon(),this.finishNode(e,"VariableDeclaration")};G.parseWhileStatement=function(e){return this.next(),e.test=this.parseParenExpression(),this.labels.push(Fr),e.body=this.parseStatement("while"),this.labels.pop(),this.finishNode(e,"WhileStatement")};G.parseWithStatement=function(e){return this.strict&&this.raise(this.start,"'with' in strict mode"),this.next(),e.object=this.parseParenExpression(),e.body=this.parseStatement("with"),this.finishNode(e,"WithStatement")};G.parseEmptyStatement=function(e){return this.next(),this.finishNode(e,"EmptyStatement")};G.parseLabeledStatement=function(e,t,r,i){for(var u=0,s=this.labels;u=0;p--){var D=this.labels[p];if(D.statementStart===e.start)D.statementStart=this.start,D.kind=f;else break}return this.labels.push({name:t,kind:f,statementStart:this.start}),e.body=this.parseStatement(i?i.indexOf("label")===-1?i+"label":i:"label"),this.labels.pop(),e.label=r,this.finishNode(e,"LabeledStatement")};G.parseExpressionStatement=function(e,t){return e.expression=t,this.semicolon(),this.finishNode(e,"ExpressionStatement")};G.parseBlock=function(e,t,r){for(e===void 0&&(e=!0),t===void 0&&(t=this.startNode()),t.body=[],this.expect(h.braceL),e&&this.enterScope(0);this.type!==h.braceR;){var i=this.parseStatement(null);t.body.push(i)}return r&&(this.strict=!1),this.next(),e&&this.exitScope(),this.finishNode(t,"BlockStatement")};G.parseFor=function(e,t){return e.init=t,this.expect(h.semi),e.test=this.type===h.semi?null:this.parseExpression(),this.expect(h.semi),e.update=this.type===h.parenR?null:this.parseExpression(),this.expect(h.parenR),e.body=this.parseStatement("for"),this.exitScope(),this.labels.pop(),this.finishNode(e,"ForStatement")};G.parseForIn=function(e,t){var r=this.type===h._in;return this.next(),t.type==="VariableDeclaration"&&t.declarations[0].init!=null&&(!r||this.options.ecmaVersion<8||this.strict||t.kind!=="var"||t.declarations[0].id.type!=="Identifier")?this.raise(t.start,(r?"for-in":"for-of")+" loop variable declaration may not have an initializer"):t.type==="AssignmentPattern"&&this.raise(t.start,"Invalid left-hand side in for-loop"),e.left=t,e.right=r?this.parseExpression():this.parseMaybeAssign(),this.expect(h.parenR),e.body=this.parseStatement("for"),this.exitScope(),this.labels.pop(),this.finishNode(e,r?"ForInStatement":"ForOfStatement")};G.parseVar=function(e,t,r){for(e.declarations=[],e.kind=r;;){var i=this.startNode();if(this.parseVarId(i,r),this.eat(h.eq)?i.init=this.parseMaybeAssign(t):r==="const"&&!(this.type===h._in||this.options.ecmaVersion>=6&&this.isContextual("of"))?this.unexpected():i.id.type!=="Identifier"&&!(t&&(this.type===h._in||this.isContextual("of")))?this.raise(this.lastTokEnd,"Complex binding patterns require an initialization value"):i.init=null,e.declarations.push(this.finishNode(i,"VariableDeclarator")),!this.eat(h.comma))break}return e};G.parseVarId=function(e,t){e.id=this.parseBindingAtom(),this.checkLVal(e.id,t==="var"?xr:Ie,!1)};var at=1,cr=2,Hi=4;G.parseFunction=function(e,t,r,i){this.initFunction(e),(this.options.ecmaVersion>=9||this.options.ecmaVersion>=6&&!i)&&(this.type===h.star&&t&cr&&this.unexpected(),e.generator=this.eat(h.star)),this.options.ecmaVersion>=8&&(e.async=!!i),t&at&&(e.id=t&Hi&&this.type!==h.name?null:this.parseIdent(),e.id&&!(t&cr)&&this.checkLVal(e.id,this.strict||e.generator||e.async?this.treatFunctionsAsVar?xr:Ie:zi));var u=this.yieldPos,s=this.awaitPos,a=this.awaitIdentPos;return this.yieldPos=0,this.awaitPos=0,this.awaitIdentPos=0,this.enterScope(yr(e.async,e.generator)),t&at||(e.id=this.type===h.name?this.parseIdent():null),this.parseFunctionParams(e),this.parseFunctionBody(e,r,!1),this.yieldPos=u,this.awaitPos=s,this.awaitIdentPos=a,this.finishNode(e,t&at?"FunctionDeclaration":"FunctionExpression")};G.parseFunctionParams=function(e){this.expect(h.parenL),e.params=this.parseBindingList(h.parenR,!1,this.options.ecmaVersion>=8),this.checkYieldAwaitInDefaultParams()};G.parseClass=function(e,t){this.next();var r=this.strict;this.strict=!0,this.parseClassId(e,t),this.parseClassSuper(e);var i=this.startNode(),u=!1;for(i.body=[],this.expect(h.braceL);this.type!==h.braceR;){var s=this.parseClassElement(e.superClass!==null);s&&(i.body.push(s),s.type==="MethodDefinition"&&s.kind==="constructor"&&(u&&this.raise(s.start,"Duplicate constructor in the same class"),u=!0))}return this.strict=r,this.next(),e.body=this.finishNode(i,"ClassBody"),this.finishNode(e,t?"ClassDeclaration":"ClassExpression")};G.parseClassElement=function(e){var t=this;if(this.eat(h.semi))return null;var r=this.startNode(),i=function(p,D){D===void 0&&(D=!1);var m=t.start,y=t.startLoc;return t.eatContextual(p)?t.type!==h.parenL&&(!D||!t.canInsertSemicolon())?!0:(r.key&&t.unexpected(),r.computed=!1,r.key=t.startNodeAt(m,y),r.key.name=p,t.finishNode(r.key,"Identifier"),!1):!1};r.kind="method",r.static=i("static");var u=this.eat(h.star),s=!1;u||(this.options.ecmaVersion>=8&&i("async",!0)?(s=!0,u=this.options.ecmaVersion>=9&&this.eat(h.star)):i("get")?r.kind="get":i("set")&&(r.kind="set")),r.key||this.parsePropertyName(r);var a=r.key,f=!1;return!r.computed&&!r.static&&(a.type==="Identifier"&&a.name==="constructor"||a.type==="Literal"&&a.value==="constructor")?(r.kind!=="method"&&this.raise(a.start,"Constructor can't have get/set modifier"),u&&this.raise(a.start,"Constructor can't be a generator"),s&&this.raise(a.start,"Constructor can't be an async method"),r.kind="constructor",f=e):r.static&&a.type==="Identifier"&&a.name==="prototype"&&this.raise(a.start,"Classes may not have a static property named prototype"),this.parseClassMethod(r,u,s,f),r.kind==="get"&&r.value.params.length!==0&&this.raiseRecoverable(r.value.start,"getter should have no params"),r.kind==="set"&&r.value.params.length!==1&&this.raiseRecoverable(r.value.start,"setter should have exactly one param"),r.kind==="set"&&r.value.params[0].type==="RestElement"&&this.raiseRecoverable(r.value.params[0].start,"Setter cannot use rest params"),r};G.parseClassMethod=function(e,t,r,i){return e.value=this.parseMethod(t,r,i),this.finishNode(e,"MethodDefinition")};G.parseClassId=function(e,t){this.type===h.name?(e.id=this.parseIdent(),t&&this.checkLVal(e.id,Ie,!1)):(t===!0&&this.unexpected(),e.id=null)};G.parseClassSuper=function(e){e.superClass=this.eat(h._extends)?this.parseExprSubscripts():null};G.parseExport=function(e,t){if(this.next(),this.eat(h.star))return this.options.ecmaVersion>=11&&(this.eatContextual("as")?(e.exported=this.parseIdent(!0),this.checkExport(t,e.exported.name,this.lastTokStart)):e.exported=null),this.expectContextual("from"),this.type!==h.string&&this.unexpected(),e.source=this.parseExprAtom(),this.semicolon(),this.finishNode(e,"ExportAllDeclaration");if(this.eat(h._default)){this.checkExport(t,"default",this.lastTokStart);var r;if(this.type===h._function||(r=this.isAsyncFunction())){var i=this.startNode();this.next(),r&&this.next(),e.declaration=this.parseFunction(i,at|Hi,!1,r)}else if(this.type===h._class){var u=this.startNode();e.declaration=this.parseClass(u,"nullableID")}else e.declaration=this.parseMaybeAssign(),this.semicolon();return this.finishNode(e,"ExportDefaultDeclaration")}if(this.shouldParseExportStatement())e.declaration=this.parseStatement(null),e.declaration.type==="VariableDeclaration"?this.checkVariableExport(t,e.declaration.declarations):this.checkExport(t,e.declaration.id.name,e.declaration.id.start),e.specifiers=[],e.source=null;else{if(e.declaration=null,e.specifiers=this.parseExportSpecifiers(t),this.eatContextual("from"))this.type!==h.string&&this.unexpected(),e.source=this.parseExprAtom();else{for(var s=0,a=e.specifiers;s=6&&e)switch(e.type){case"Identifier":this.inAsync&&e.name==="await"&&this.raise(e.start,"Cannot use 'await' as identifier inside an async function");break;case"ObjectPattern":case"ArrayPattern":case"RestElement":break;case"ObjectExpression":e.type="ObjectPattern",r&&this.checkPatternErrors(r,!0);for(var i=0,u=e.properties;i=8&&!s&&a.name==="async"&&!this.canInsertSemicolon()&&this.eat(h._function))return this.parseFunction(this.startNodeAt(i,u),0,!1,!0);if(r&&!this.canInsertSemicolon()){if(this.eat(h.arrow))return this.parseArrowExpression(this.startNodeAt(i,u),[a],!1);if(this.options.ecmaVersion>=8&&a.name==="async"&&this.type===h.name&&!s)return a=this.parseIdent(!1),(this.canInsertSemicolon()||!this.eat(h.arrow))&&this.unexpected(),this.parseArrowExpression(this.startNodeAt(i,u),[a],!0)}return a;case h.regexp:var f=this.value;return t=this.parseLiteral(f.value),t.regex={pattern:f.pattern,flags:f.flags},t;case h.num:case h.string:return this.parseLiteral(this.value);case h._null:case h._true:case h._false:return t=this.startNode(),t.value=this.type===h._null?null:this.type===h._true,t.raw=this.type.keyword,this.next(),this.finishNode(t,"Literal");case h.parenL:var p=this.start,D=this.parseParenAndDistinguishExpression(r);return e&&(e.parenthesizedAssign<0&&!this.isSimpleAssignTarget(D)&&(e.parenthesizedAssign=p),e.parenthesizedBind<0&&(e.parenthesizedBind=p)),D;case h.bracketL:return t=this.startNode(),this.next(),t.elements=this.parseExprList(h.bracketR,!0,!0,e),this.finishNode(t,"ArrayExpression");case h.braceL:return this.parseObj(!1,e);case h._function:return t=this.startNode(),this.next(),this.parseFunction(t,0);case h._class:return this.parseClass(this.startNode(),!1);case h._new:return this.parseNew();case h.backQuote:return this.parseTemplate();case h._import:return this.options.ecmaVersion>=11?this.parseExprImport():this.unexpected();default:this.unexpected()}};z.parseExprImport=function(){var e=this.startNode();this.containsEsc&&this.raiseRecoverable(this.start,"Escape sequence in keyword import");var t=this.parseIdent(!0);switch(this.type){case h.parenL:return this.parseDynamicImport(e);case h.dot:return e.meta=t,this.parseImportMeta(e);default:this.unexpected()}};z.parseDynamicImport=function(e){if(this.next(),e.source=this.parseMaybeAssign(),!this.eat(h.parenR)){var t=this.start;this.eat(h.comma)&&this.eat(h.parenR)?this.raiseRecoverable(t,"Trailing comma is not allowed in import()"):this.unexpected(t)}return this.finishNode(e,"ImportExpression")};z.parseImportMeta=function(e){this.next();var t=this.containsEsc;return e.property=this.parseIdent(!0),e.property.name!=="meta"&&this.raiseRecoverable(e.property.start,"The only valid meta property for import is 'import.meta'"),t&&this.raiseRecoverable(e.start,"'import.meta' must not contain escaped characters"),this.options.sourceType!=="module"&&this.raiseRecoverable(e.start,"Cannot use 'import.meta' outside a module"),this.finishNode(e,"MetaProperty")};z.parseLiteral=function(e){var t=this.startNode();return t.value=e,t.raw=this.input.slice(this.start,this.end),t.raw.charCodeAt(t.raw.length-1)===110&&(t.bigint=t.raw.slice(0,-1).replace(/_/g,"")),this.next(),this.finishNode(t,"Literal")};z.parseParenExpression=function(){this.expect(h.parenL);var e=this.parseExpression();return this.expect(h.parenR),e};z.parseParenAndDistinguishExpression=function(e){var t=this.start,r=this.startLoc,i,u=this.options.ecmaVersion>=8;if(this.options.ecmaVersion>=6){this.next();var s=this.start,a=this.startLoc,f=[],p=!0,D=!1,m=new Lt,y=this.yieldPos,A=this.awaitPos,C;for(this.yieldPos=0,this.awaitPos=0;this.type!==h.parenR;)if(p?p=!1:this.expect(h.comma),u&&this.afterTrailingComma(h.parenR,!0)){D=!0;break}else if(this.type===h.ellipsis){C=this.start,f.push(this.parseParenItem(this.parseRestBinding())),this.type===h.comma&&this.raise(this.start,"Comma is not permitted after the rest element");break}else f.push(this.parseMaybeAssign(!1,m,this.parseParenItem));var v=this.start,E=this.startLoc;if(this.expect(h.parenR),e&&!this.canInsertSemicolon()&&this.eat(h.arrow))return this.checkPatternErrors(m,!1),this.checkYieldAwaitInDefaultParams(),this.yieldPos=y,this.awaitPos=A,this.parseParenArrowList(t,r,f);(!f.length||D)&&this.unexpected(this.lastTokStart),C&&this.unexpected(C),this.checkExpressionErrors(m,!0),this.yieldPos=y||this.yieldPos,this.awaitPos=A||this.awaitPos,f.length>1?(i=this.startNodeAt(s,a),i.expressions=f,this.finishNodeAt(i,"SequenceExpression",v,E)):i=f[0]}else i=this.parseParenExpression();if(this.options.preserveParens){var b=this.startNodeAt(t,r);return b.expression=i,this.finishNode(b,"ParenthesizedExpression")}else return i};z.parseParenItem=function(e){return e};z.parseParenArrowList=function(e,t,r){return this.parseArrowExpression(this.startNodeAt(e,t),r)};var Zu=[];z.parseNew=function(){this.containsEsc&&this.raiseRecoverable(this.start,"Escape sequence in keyword new");var e=this.startNode(),t=this.parseIdent(!0);if(this.options.ecmaVersion>=6&&this.eat(h.dot)){e.meta=t;var r=this.containsEsc;return e.property=this.parseIdent(!0),e.property.name!=="target"&&this.raiseRecoverable(e.property.start,"The only valid meta property for new is 'new.target'"),r&&this.raiseRecoverable(e.start,"'new.target' must not contain escaped characters"),this.inNonArrowFunction()||this.raiseRecoverable(e.start,"'new.target' can only be used in functions"),this.finishNode(e,"MetaProperty")}var i=this.start,u=this.startLoc,s=this.type===h._import;return e.callee=this.parseSubscripts(this.parseExprAtom(),i,u,!0),s&&e.callee.type==="ImportExpression"&&this.raise(i,"Cannot use new with import()"),this.eat(h.parenL)?e.arguments=this.parseExprList(h.parenR,this.options.ecmaVersion>=8,!1):e.arguments=Zu,this.finishNode(e,"NewExpression")};z.parseTemplateElement=function(e){var t=e.isTagged,r=this.startNode();return this.type===h.invalidTemplate?(t||this.raiseRecoverable(this.start,"Bad escape sequence in untagged template literal"),r.value={raw:this.value,cooked:null}):r.value={raw:this.input.slice(this.start,this.end).replace(/\r\n?/g,` -`),cooked:this.value},this.next(),r.tail=this.type===h.backQuote,this.finishNode(r,"TemplateElement")};z.parseTemplate=function(e){e===void 0&&(e={});var t=e.isTagged;t===void 0&&(t=!1);var r=this.startNode();this.next(),r.expressions=[];var i=this.parseTemplateElement({isTagged:t});for(r.quasis=[i];!i.tail;)this.type===h.eof&&this.raise(this.pos,"Unterminated template literal"),this.expect(h.dollarBraceL),r.expressions.push(this.parseExpression()),this.expect(h.braceR),r.quasis.push(i=this.parseTemplateElement({isTagged:t}));return this.next(),this.finishNode(r,"TemplateLiteral")};z.isAsyncProp=function(e){return!e.computed&&e.key.type==="Identifier"&&e.key.name==="async"&&(this.type===h.name||this.type===h.num||this.type===h.string||this.type===h.bracketL||this.type.keyword||this.options.ecmaVersion>=9&&this.type===h.star)&&!Ae.test(this.input.slice(this.lastTokEnd,this.start))};z.parseObj=function(e,t){var r=this.startNode(),i=!0,u={};for(r.properties=[],this.next();!this.eat(h.braceR);){if(i)i=!1;else if(this.expect(h.comma),this.options.ecmaVersion>=5&&this.afterTrailingComma(h.braceR))break;var s=this.parseProperty(e,t);e||this.checkPropClash(s,u,t),r.properties.push(s)}return this.finishNode(r,e?"ObjectPattern":"ObjectExpression")};z.parseProperty=function(e,t){var r=this.startNode(),i,u,s,a;if(this.options.ecmaVersion>=9&&this.eat(h.ellipsis))return e?(r.argument=this.parseIdent(!1),this.type===h.comma&&this.raise(this.start,"Comma is not permitted after the rest element"),this.finishNode(r,"RestElement")):(this.type===h.parenL&&t&&(t.parenthesizedAssign<0&&(t.parenthesizedAssign=this.start),t.parenthesizedBind<0&&(t.parenthesizedBind=this.start)),r.argument=this.parseMaybeAssign(!1,t),this.type===h.comma&&t&&t.trailingComma<0&&(t.trailingComma=this.start),this.finishNode(r,"SpreadElement"));this.options.ecmaVersion>=6&&(r.method=!1,r.shorthand=!1,(e||t)&&(s=this.start,a=this.startLoc),e||(i=this.eat(h.star)));var f=this.containsEsc;return this.parsePropertyName(r),!e&&!f&&this.options.ecmaVersion>=8&&!i&&this.isAsyncProp(r)?(u=!0,i=this.options.ecmaVersion>=9&&this.eat(h.star),this.parsePropertyName(r,t)):u=!1,this.parsePropertyValue(r,e,i,u,s,a,t,f),this.finishNode(r,"Property")};z.parsePropertyValue=function(e,t,r,i,u,s,a,f){if((r||i)&&this.type===h.colon&&this.unexpected(),this.eat(h.colon))e.value=t?this.parseMaybeDefault(this.start,this.startLoc):this.parseMaybeAssign(!1,a),e.kind="init";else if(this.options.ecmaVersion>=6&&this.type===h.parenL)t&&this.unexpected(),e.kind="init",e.method=!0,e.value=this.parseMethod(r,i);else if(!t&&!f&&this.options.ecmaVersion>=5&&!e.computed&&e.key.type==="Identifier"&&(e.key.name==="get"||e.key.name==="set")&&this.type!==h.comma&&this.type!==h.braceR&&this.type!==h.eq){(r||i)&&this.unexpected(),e.kind=e.key.name,this.parsePropertyName(e),e.value=this.parseMethod(!1);var p=e.kind==="get"?0:1;if(e.value.params.length!==p){var D=e.value.start;e.kind==="get"?this.raiseRecoverable(D,"getter should have no params"):this.raiseRecoverable(D,"setter should have exactly one param")}else e.kind==="set"&&e.value.params[0].type==="RestElement"&&this.raiseRecoverable(e.value.params[0].start,"Setter cannot use rest params")}else this.options.ecmaVersion>=6&&!e.computed&&e.key.type==="Identifier"?((r||i)&&this.unexpected(),this.checkUnreserved(e.key),e.key.name==="await"&&!this.awaitIdentPos&&(this.awaitIdentPos=u),e.kind="init",t?e.value=this.parseMaybeDefault(u,s,e.key):this.type===h.eq&&a?(a.shorthandAssign<0&&(a.shorthandAssign=this.start),e.value=this.parseMaybeDefault(u,s,e.key)):e.value=e.key,e.shorthand=!0):this.unexpected()};z.parsePropertyName=function(e){if(this.options.ecmaVersion>=6){if(this.eat(h.bracketL))return e.computed=!0,e.key=this.parseMaybeAssign(),this.expect(h.bracketR),e.key;e.computed=!1}return e.key=this.type===h.num||this.type===h.string?this.parseExprAtom():this.parseIdent(this.options.allowReserved!=="never")};z.initFunction=function(e){e.id=null,this.options.ecmaVersion>=6&&(e.generator=e.expression=!1),this.options.ecmaVersion>=8&&(e.async=!1)};z.parseMethod=function(e,t,r){var i=this.startNode(),u=this.yieldPos,s=this.awaitPos,a=this.awaitIdentPos;return this.initFunction(i),this.options.ecmaVersion>=6&&(i.generator=e),this.options.ecmaVersion>=8&&(i.async=!!t),this.yieldPos=0,this.awaitPos=0,this.awaitIdentPos=0,this.enterScope(yr(t,i.generator)|Wi|(r?Gi:0)),this.expect(h.parenL),i.params=this.parseBindingList(h.parenR,!1,this.options.ecmaVersion>=8),this.checkYieldAwaitInDefaultParams(),this.parseFunctionBody(i,!1,!0),this.yieldPos=u,this.awaitPos=s,this.awaitIdentPos=a,this.finishNode(i,"FunctionExpression")};z.parseArrowExpression=function(e,t,r){var i=this.yieldPos,u=this.awaitPos,s=this.awaitIdentPos;return this.enterScope(yr(r,!1)|qi),this.initFunction(e),this.options.ecmaVersion>=8&&(e.async=!!r),this.yieldPos=0,this.awaitPos=0,this.awaitIdentPos=0,e.params=this.toAssignableList(t,!0),this.parseFunctionBody(e,!0,!1),this.yieldPos=i,this.awaitPos=u,this.awaitIdentPos=s,this.finishNode(e,"ArrowFunctionExpression")};z.parseFunctionBody=function(e,t,r){var i=t&&this.type!==h.braceL,u=this.strict,s=!1;if(i)e.body=this.parseMaybeAssign(),e.expression=!0,this.checkParams(e,!1);else{var a=this.options.ecmaVersion>=7&&!this.isSimpleParamList(e.params);(!u||a)&&(s=this.strictDirective(this.end),s&&a&&this.raiseRecoverable(e.start,"Illegal 'use strict' directive in function with non-simple parameter list"));var f=this.labels;this.labels=[],s&&(this.strict=!0),this.checkParams(e,!u&&!s&&!t&&!r&&this.isSimpleParamList(e.params)),this.strict&&e.id&&this.checkLVal(e.id,Ji),e.body=this.parseBlock(!1,void 0,s&&!u),e.expression=!1,this.adaptDirectivePrologue(e.body.body),this.labels=f}this.exitScope()};z.isSimpleParamList=function(e){for(var t=0,r=e;t-1||u.functions.indexOf(e)>-1||u.var.indexOf(e)>-1,u.lexical.push(e),this.inModule&&u.flags&ct&&delete this.undefinedExports[e]}else if(t===$i){var s=this.currentScope();s.lexical.push(e)}else if(t===zi){var a=this.currentScope();this.treatFunctionsAsVar?i=a.lexical.indexOf(e)>-1:i=a.lexical.indexOf(e)>-1||a.var.indexOf(e)>-1,a.functions.push(e)}else for(var f=this.scopeStack.length-1;f>=0;--f){var p=this.scopeStack[f];if(p.lexical.indexOf(e)>-1&&!(p.flags&Ui&&p.lexical[0]===e)||!this.treatFunctionsAsVarInScope(p)&&p.functions.indexOf(e)>-1){i=!0;break}if(p.var.push(e),this.inModule&&p.flags&ct&&delete this.undefinedExports[e],p.flags&Er)break}i&&this.raiseRecoverable(r,"Identifier '"+e+"' has already been declared")};Me.checkLocalExport=function(e){this.scopeStack[0].lexical.indexOf(e.name)===-1&&this.scopeStack[0].var.indexOf(e.name)===-1&&(this.undefinedExports[e.name]=e)};Me.currentScope=function(){return this.scopeStack[this.scopeStack.length-1]};Me.currentVarScope=function(){for(var e=this.scopeStack.length-1;;e--){var t=this.scopeStack[e];if(t.flags&Er)return t}};Me.currentThisScope=function(){for(var e=this.scopeStack.length-1;;e--){var t=this.scopeStack[e];if(t.flags&Er&&!(t.flags&qi))return t}};var Ot=function(t,r,i){this.type="",this.start=r,this.end=0,t.options.locations&&(this.loc=new mt(t,i)),t.options.directSourceFile&&(this.sourceFile=t.options.directSourceFile),t.options.ranges&&(this.range=[r,0])},Rt=re.prototype;Rt.startNode=function(){return new Ot(this,this.start,this.startLoc)};Rt.startNodeAt=function(e,t){return new Ot(this,e,t)};function Xi(e,t,r,i){return e.type=t,e.end=r,this.options.locations&&(e.loc.end=i),this.options.ranges&&(e.range[1]=r),e}Rt.finishNode=function(e,t){return Xi.call(this,e,t,this.lastTokEnd,this.lastTokEndLoc)};Rt.finishNodeAt=function(e,t,r,i){return Xi.call(this,e,t,r,i)};var xe=function(t,r,i,u,s){this.token=t,this.isExpr=!!r,this.preserveSpace=!!i,this.override=u,this.generator=!!s},ue={b_stat:new xe("{",!1),b_expr:new xe("{",!0),b_tmpl:new xe("${",!1),p_stat:new xe("(",!1),p_expr:new xe("(",!0),q_tmpl:new xe("`",!0,!0,function(e){return e.tryReadTemplateToken()}),f_stat:new xe("function",!1),f_expr:new xe("function",!0),f_expr_gen:new xe("function",!0,!1,null,!0),f_gen:new xe("function",!1,!1,null,!0)},Mt=re.prototype;Mt.initialContext=function(){return[ue.b_stat]};Mt.braceIsBlock=function(e){var t=this.curContext();return t===ue.f_expr||t===ue.f_stat?!0:e===h.colon&&(t===ue.b_stat||t===ue.b_expr)?!t.isExpr:e===h._return||e===h.name&&this.exprAllowed?Ae.test(this.input.slice(this.lastTokEnd,this.start)):e===h._else||e===h.semi||e===h.eof||e===h.parenR||e===h.arrow?!0:e===h.braceL?t===ue.b_stat:e===h._var||e===h._const||e===h.name?!1:!this.exprAllowed};Mt.inGeneratorContext=function(){for(var e=this.context.length-1;e>=1;e--){var t=this.context[e];if(t.token==="function")return t.generator}return!1};Mt.updateContext=function(e){var t,r=this.type;r.keyword&&e===h.dot?this.exprAllowed=!1:(t=r.updateContext)?t.call(this,e):this.exprAllowed=r.beforeExpr};h.parenR.updateContext=h.braceR.updateContext=function(){if(this.context.length===1){this.exprAllowed=!0;return}var e=this.context.pop();e===ue.b_stat&&this.curContext().token==="function"&&(e=this.context.pop()),this.exprAllowed=!e.isExpr};h.braceL.updateContext=function(e){this.context.push(this.braceIsBlock(e)?ue.b_stat:ue.b_expr),this.exprAllowed=!0};h.dollarBraceL.updateContext=function(){this.context.push(ue.b_tmpl),this.exprAllowed=!0};h.parenL.updateContext=function(e){var t=e===h._if||e===h._for||e===h._with||e===h._while;this.context.push(t?ue.p_stat:ue.p_expr),this.exprAllowed=!0};h.incDec.updateContext=function(){};h._function.updateContext=h._class.updateContext=function(e){e.beforeExpr&&e!==h.semi&&e!==h._else&&!(e===h._return&&Ae.test(this.input.slice(this.lastTokEnd,this.start)))&&!((e===h.colon||e===h.braceL)&&this.curContext()===ue.b_stat)?this.context.push(ue.f_expr):this.context.push(ue.f_stat),this.exprAllowed=!1};h.backQuote.updateContext=function(){this.curContext()===ue.q_tmpl?this.context.pop():this.context.push(ue.q_tmpl),this.exprAllowed=!1};h.star.updateContext=function(e){if(e===h._function){var t=this.context.length-1;this.context[t]===ue.f_expr?this.context[t]=ue.f_expr_gen:this.context[t]=ue.f_gen}this.exprAllowed=!0};h.name.updateContext=function(e){var t=!1;this.options.ecmaVersion>=6&&e!==h.dot&&(this.value==="of"&&!this.exprAllowed||this.value==="yield"&&this.inGeneratorContext())&&(t=!0),this.exprAllowed=t};var Qi="ASCII ASCII_Hex_Digit AHex Alphabetic Alpha Any Assigned Bidi_Control Bidi_C Bidi_Mirrored Bidi_M Case_Ignorable CI Cased Changes_When_Casefolded CWCF Changes_When_Casemapped CWCM Changes_When_Lowercased CWL Changes_When_NFKC_Casefolded CWKCF Changes_When_Titlecased CWT Changes_When_Uppercased CWU Dash Default_Ignorable_Code_Point DI Deprecated Dep Diacritic Dia Emoji Emoji_Component Emoji_Modifier Emoji_Modifier_Base Emoji_Presentation Extender Ext Grapheme_Base Gr_Base Grapheme_Extend Gr_Ext Hex_Digit Hex IDS_Binary_Operator IDSB IDS_Trinary_Operator IDST ID_Continue IDC ID_Start IDS Ideographic Ideo Join_Control Join_C Logical_Order_Exception LOE Lowercase Lower Math Noncharacter_Code_Point NChar Pattern_Syntax Pat_Syn Pattern_White_Space Pat_WS Quotation_Mark QMark Radical Regional_Indicator RI Sentence_Terminal STerm Soft_Dotted SD Terminal_Punctuation Term Unified_Ideograph UIdeo Uppercase Upper Variation_Selector VS White_Space space XID_Continue XIDC XID_Start XIDS",Ki=Qi+" Extended_Pictographic",ts=Ki,rs={9:Qi,10:Ki,11:ts},ai="Cased_Letter LC Close_Punctuation Pe Connector_Punctuation Pc Control Cc cntrl Currency_Symbol Sc Dash_Punctuation Pd Decimal_Number Nd digit Enclosing_Mark Me Final_Punctuation Pf Format Cf Initial_Punctuation Pi Letter L Letter_Number Nl Line_Separator Zl Lowercase_Letter Ll Mark M Combining_Mark Math_Symbol Sm Modifier_Letter Lm Modifier_Symbol Sk Nonspacing_Mark Mn Number N Open_Punctuation Ps Other C Other_Letter Lo Other_Number No Other_Punctuation Po Other_Symbol So Paragraph_Separator Zp Private_Use Co Punctuation P punct Separator Z Space_Separator Zs Spacing_Mark Mc Surrogate Cs Symbol S Titlecase_Letter Lt Unassigned Cn Uppercase_Letter Lu",Yi="Adlam Adlm Ahom Ahom Anatolian_Hieroglyphs Hluw Arabic Arab Armenian Armn Avestan Avst Balinese Bali Bamum Bamu Bassa_Vah Bass Batak Batk Bengali Beng Bhaiksuki Bhks Bopomofo Bopo Brahmi Brah Braille Brai Buginese Bugi Buhid Buhd Canadian_Aboriginal Cans Carian Cari Caucasian_Albanian Aghb Chakma Cakm Cham Cham Cherokee Cher Common Zyyy Coptic Copt Qaac Cuneiform Xsux Cypriot Cprt Cyrillic Cyrl Deseret Dsrt Devanagari Deva Duployan Dupl Egyptian_Hieroglyphs Egyp Elbasan Elba Ethiopic Ethi Georgian Geor Glagolitic Glag Gothic Goth Grantha Gran Greek Grek Gujarati Gujr Gurmukhi Guru Han Hani Hangul Hang Hanunoo Hano Hatran Hatr Hebrew Hebr Hiragana Hira Imperial_Aramaic Armi Inherited Zinh Qaai Inscriptional_Pahlavi Phli Inscriptional_Parthian Prti Javanese Java Kaithi Kthi Kannada Knda Katakana Kana Kayah_Li Kali Kharoshthi Khar Khmer Khmr Khojki Khoj Khudawadi Sind Lao Laoo Latin Latn Lepcha Lepc Limbu Limb Linear_A Lina Linear_B Linb Lisu Lisu Lycian Lyci Lydian Lydi Mahajani Mahj Malayalam Mlym Mandaic Mand Manichaean Mani Marchen Marc Masaram_Gondi Gonm Meetei_Mayek Mtei Mende_Kikakui Mend Meroitic_Cursive Merc Meroitic_Hieroglyphs Mero Miao Plrd Modi Modi Mongolian Mong Mro Mroo Multani Mult Myanmar Mymr Nabataean Nbat New_Tai_Lue Talu Newa Newa Nko Nkoo Nushu Nshu Ogham Ogam Ol_Chiki Olck Old_Hungarian Hung Old_Italic Ital Old_North_Arabian Narb Old_Permic Perm Old_Persian Xpeo Old_South_Arabian Sarb Old_Turkic Orkh Oriya Orya Osage Osge Osmanya Osma Pahawh_Hmong Hmng Palmyrene Palm Pau_Cin_Hau Pauc Phags_Pa Phag Phoenician Phnx Psalter_Pahlavi Phlp Rejang Rjng Runic Runr Samaritan Samr Saurashtra Saur Sharada Shrd Shavian Shaw Siddham Sidd SignWriting Sgnw Sinhala Sinh Sora_Sompeng Sora Soyombo Soyo Sundanese Sund Syloti_Nagri Sylo Syriac Syrc Tagalog Tglg Tagbanwa Tagb Tai_Le Tale Tai_Tham Lana Tai_Viet Tavt Takri Takr Tamil Taml Tangut Tang Telugu Telu Thaana Thaa Thai Thai Tibetan Tibt Tifinagh Tfng Tirhuta Tirh Ugaritic Ugar Vai Vaii Warang_Citi Wara Yi Yiii Zanabazar_Square Zanb",Zi=Yi+" Dogra Dogr Gunjala_Gondi Gong Hanifi_Rohingya Rohg Makasar Maka Medefaidrin Medf Old_Sogdian Sogo Sogdian Sogd",is=Zi+" Elymaic Elym Nandinagari Nand Nyiakeng_Puachue_Hmong Hmnp Wancho Wcho",ns={9:Yi,10:Zi,11:is},en={};function vr(e){var t=en[e]={binary:Ue(rs[e]+" "+ai),nonBinary:{General_Category:Ue(ai),Script:Ue(ns[e])}};t.nonBinary.Script_Extensions=t.nonBinary.Script,t.nonBinary.gc=t.nonBinary.General_Category,t.nonBinary.sc=t.nonBinary.Script,t.nonBinary.scx=t.nonBinary.Script_Extensions}vr(9);vr(10);vr(11);var j=re.prototype,Ne=function(t){this.parser=t,this.validFlags="gim"+(t.options.ecmaVersion>=6?"uy":"")+(t.options.ecmaVersion>=9?"s":""),this.unicodeProperties=en[t.options.ecmaVersion>=11?11:t.options.ecmaVersion],this.source="",this.flags="",this.start=0,this.switchU=!1,this.switchN=!1,this.pos=0,this.lastIntValue=0,this.lastStringValue="",this.lastAssertionIsQuantifiable=!1,this.numCapturingParens=0,this.maxBackReference=0,this.groupNames=[],this.backReferenceNames=[]};Ne.prototype.reset=function(t,r,i){var u=i.indexOf("u")!==-1;this.start=t|0,this.source=r+"",this.flags=i,this.switchU=u&&this.parser.options.ecmaVersion>=6,this.switchN=u&&this.parser.options.ecmaVersion>=9};Ne.prototype.raise=function(t){this.parser.raiseRecoverable(this.start,"Invalid regular expression: /"+this.source+"/: "+t)};Ne.prototype.at=function(t,r){r===void 0&&(r=!1);var i=this.source,u=i.length;if(t>=u)return-1;var s=i.charCodeAt(t);if(!(r||this.switchU)||s<=55295||s>=57344||t+1>=u)return s;var a=i.charCodeAt(t+1);return a>=56320&&a<=57343?(s<<10)+a-56613888:s};Ne.prototype.nextIndex=function(t,r){r===void 0&&(r=!1);var i=this.source,u=i.length;if(t>=u)return u;var s=i.charCodeAt(t),a;return!(r||this.switchU)||s<=55295||s>=57344||t+1>=u||(a=i.charCodeAt(t+1))<56320||a>57343?t+1:t+2};Ne.prototype.current=function(t){return t===void 0&&(t=!1),this.at(this.pos,t)};Ne.prototype.lookahead=function(t){return t===void 0&&(t=!1),this.at(this.nextIndex(this.pos,t),t)};Ne.prototype.advance=function(t){t===void 0&&(t=!1),this.pos=this.nextIndex(this.pos,t)};Ne.prototype.eat=function(t,r){return r===void 0&&(r=!1),this.current(r)===t?(this.advance(r),!0):!1};function kt(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode((e>>10)+55296,(e&1023)+56320))}j.validateRegExpFlags=function(e){for(var t=e.validFlags,r=e.flags,i=0;i-1&&this.raise(e.start,"Duplicate regular expression flag")}};j.validateRegExpPattern=function(e){this.regexp_pattern(e),!e.switchN&&this.options.ecmaVersion>=9&&e.groupNames.length>0&&(e.switchN=!0,this.regexp_pattern(e))};j.regexp_pattern=function(e){e.pos=0,e.lastIntValue=0,e.lastStringValue="",e.lastAssertionIsQuantifiable=!1,e.numCapturingParens=0,e.maxBackReference=0,e.groupNames.length=0,e.backReferenceNames.length=0,this.regexp_disjunction(e),e.pos!==e.source.length&&(e.eat(41)&&e.raise("Unmatched ')'"),(e.eat(93)||e.eat(125))&&e.raise("Lone quantifier brackets")),e.maxBackReference>e.numCapturingParens&&e.raise("Invalid escape");for(var t=0,r=e.backReferenceNames;t=9&&(r=e.eat(60)),e.eat(61)||e.eat(33))return this.regexp_disjunction(e),e.eat(41)||e.raise("Unterminated group"),e.lastAssertionIsQuantifiable=!r,!0}return e.pos=t,!1};j.regexp_eatQuantifier=function(e,t){return t===void 0&&(t=!1),this.regexp_eatQuantifierPrefix(e,t)?(e.eat(63),!0):!1};j.regexp_eatQuantifierPrefix=function(e,t){return e.eat(42)||e.eat(43)||e.eat(63)||this.regexp_eatBracedQuantifier(e,t)};j.regexp_eatBracedQuantifier=function(e,t){var r=e.pos;if(e.eat(123)){var i=0,u=-1;if(this.regexp_eatDecimalDigits(e)&&(i=e.lastIntValue,e.eat(44)&&this.regexp_eatDecimalDigits(e)&&(u=e.lastIntValue),e.eat(125)))return u!==-1&&u=9?this.regexp_groupSpecifier(e):e.current()===63&&e.raise("Invalid group"),this.regexp_disjunction(e),e.eat(41))return e.numCapturingParens+=1,!0;e.raise("Unterminated group")}return!1};j.regexp_eatExtendedAtom=function(e){return e.eat(46)||this.regexp_eatReverseSolidusAtomEscape(e)||this.regexp_eatCharacterClass(e)||this.regexp_eatUncapturingGroup(e)||this.regexp_eatCapturingGroup(e)||this.regexp_eatInvalidBracedQuantifier(e)||this.regexp_eatExtendedPatternCharacter(e)};j.regexp_eatInvalidBracedQuantifier=function(e){return this.regexp_eatBracedQuantifier(e,!0)&&e.raise("Nothing to repeat"),!1};j.regexp_eatSyntaxCharacter=function(e){var t=e.current();return tn(t)?(e.lastIntValue=t,e.advance(),!0):!1};function tn(e){return e===36||e>=40&&e<=43||e===46||e===63||e>=91&&e<=94||e>=123&&e<=125}j.regexp_eatPatternCharacters=function(e){for(var t=e.pos,r=0;(r=e.current())!==-1&&!tn(r);)e.advance();return e.pos!==t};j.regexp_eatExtendedPatternCharacter=function(e){var t=e.current();return t!==-1&&t!==36&&!(t>=40&&t<=43)&&t!==46&&t!==63&&t!==91&&t!==94&&t!==124?(e.advance(),!0):!1};j.regexp_groupSpecifier=function(e){if(e.eat(63)){if(this.regexp_eatGroupName(e)){e.groupNames.indexOf(e.lastStringValue)!==-1&&e.raise("Duplicate capture group name"),e.groupNames.push(e.lastStringValue);return}e.raise("Invalid group")}};j.regexp_eatGroupName=function(e){if(e.lastStringValue="",e.eat(60)){if(this.regexp_eatRegExpIdentifierName(e)&&e.eat(62))return!0;e.raise("Invalid capture group name")}return!1};j.regexp_eatRegExpIdentifierName=function(e){if(e.lastStringValue="",this.regexp_eatRegExpIdentifierStart(e)){for(e.lastStringValue+=kt(e.lastIntValue);this.regexp_eatRegExpIdentifierPart(e);)e.lastStringValue+=kt(e.lastIntValue);return!0}return!1};j.regexp_eatRegExpIdentifierStart=function(e){var t=e.pos,r=this.options.ecmaVersion>=11,i=e.current(r);return e.advance(r),i===92&&this.regexp_eatRegExpUnicodeEscapeSequence(e,r)&&(i=e.lastIntValue),us(i)?(e.lastIntValue=i,!0):(e.pos=t,!1)};function us(e){return Te(e,!0)||e===36||e===95}j.regexp_eatRegExpIdentifierPart=function(e){var t=e.pos,r=this.options.ecmaVersion>=11,i=e.current(r);return e.advance(r),i===92&&this.regexp_eatRegExpUnicodeEscapeSequence(e,r)&&(i=e.lastIntValue),ss(i)?(e.lastIntValue=i,!0):(e.pos=t,!1)};function ss(e){return We(e,!0)||e===36||e===95||e===8204||e===8205}j.regexp_eatAtomEscape=function(e){return this.regexp_eatBackReference(e)||this.regexp_eatCharacterClassEscape(e)||this.regexp_eatCharacterEscape(e)||e.switchN&&this.regexp_eatKGroupName(e)?!0:(e.switchU&&(e.current()===99&&e.raise("Invalid unicode escape"),e.raise("Invalid escape")),!1)};j.regexp_eatBackReference=function(e){var t=e.pos;if(this.regexp_eatDecimalEscape(e)){var r=e.lastIntValue;if(e.switchU)return r>e.maxBackReference&&(e.maxBackReference=r),!0;if(r<=e.numCapturingParens)return!0;e.pos=t}return!1};j.regexp_eatKGroupName=function(e){if(e.eat(107)){if(this.regexp_eatGroupName(e))return e.backReferenceNames.push(e.lastStringValue),!0;e.raise("Invalid named reference")}return!1};j.regexp_eatCharacterEscape=function(e){return this.regexp_eatControlEscape(e)||this.regexp_eatCControlLetter(e)||this.regexp_eatZero(e)||this.regexp_eatHexEscapeSequence(e)||this.regexp_eatRegExpUnicodeEscapeSequence(e,!1)||!e.switchU&&this.regexp_eatLegacyOctalEscapeSequence(e)||this.regexp_eatIdentityEscape(e)};j.regexp_eatCControlLetter=function(e){var t=e.pos;if(e.eat(99)){if(this.regexp_eatControlLetter(e))return!0;e.pos=t}return!1};j.regexp_eatZero=function(e){return e.current()===48&&!Vt(e.lookahead())?(e.lastIntValue=0,e.advance(),!0):!1};j.regexp_eatControlEscape=function(e){var t=e.current();return t===116?(e.lastIntValue=9,e.advance(),!0):t===110?(e.lastIntValue=10,e.advance(),!0):t===118?(e.lastIntValue=11,e.advance(),!0):t===102?(e.lastIntValue=12,e.advance(),!0):t===114?(e.lastIntValue=13,e.advance(),!0):!1};j.regexp_eatControlLetter=function(e){var t=e.current();return rn(t)?(e.lastIntValue=t%32,e.advance(),!0):!1};function rn(e){return e>=65&&e<=90||e>=97&&e<=122}j.regexp_eatRegExpUnicodeEscapeSequence=function(e,t){t===void 0&&(t=!1);var r=e.pos,i=t||e.switchU;if(e.eat(117)){if(this.regexp_eatFixedHexDigits(e,4)){var u=e.lastIntValue;if(i&&u>=55296&&u<=56319){var s=e.pos;if(e.eat(92)&&e.eat(117)&&this.regexp_eatFixedHexDigits(e,4)){var a=e.lastIntValue;if(a>=56320&&a<=57343)return e.lastIntValue=(u-55296)*1024+(a-56320)+65536,!0}e.pos=s,e.lastIntValue=u}return!0}if(i&&e.eat(123)&&this.regexp_eatHexDigits(e)&&e.eat(125)&&as(e.lastIntValue))return!0;i&&e.raise("Invalid unicode escape"),e.pos=r}return!1};function as(e){return e>=0&&e<=1114111}j.regexp_eatIdentityEscape=function(e){if(e.switchU)return this.regexp_eatSyntaxCharacter(e)?!0:e.eat(47)?(e.lastIntValue=47,!0):!1;var t=e.current();return t!==99&&(!e.switchN||t!==107)?(e.lastIntValue=t,e.advance(),!0):!1};j.regexp_eatDecimalEscape=function(e){e.lastIntValue=0;var t=e.current();if(t>=49&&t<=57){do e.lastIntValue=10*e.lastIntValue+(t-48),e.advance();while((t=e.current())>=48&&t<=57);return!0}return!1};j.regexp_eatCharacterClassEscape=function(e){var t=e.current();if(os(t))return e.lastIntValue=-1,e.advance(),!0;if(e.switchU&&this.options.ecmaVersion>=9&&(t===80||t===112)){if(e.lastIntValue=-1,e.advance(),e.eat(123)&&this.regexp_eatUnicodePropertyValueExpression(e)&&e.eat(125))return!0;e.raise("Invalid property name")}return!1};function os(e){return e===100||e===68||e===115||e===83||e===119||e===87}j.regexp_eatUnicodePropertyValueExpression=function(e){var t=e.pos;if(this.regexp_eatUnicodePropertyName(e)&&e.eat(61)){var r=e.lastStringValue;if(this.regexp_eatUnicodePropertyValue(e)){var i=e.lastStringValue;return this.regexp_validateUnicodePropertyNameAndValue(e,r,i),!0}}if(e.pos=t,this.regexp_eatLoneUnicodePropertyNameOrValue(e)){var u=e.lastStringValue;return this.regexp_validateUnicodePropertyNameOrValue(e,u),!0}return!1};j.regexp_validateUnicodePropertyNameAndValue=function(e,t,r){Nt(e.unicodeProperties.nonBinary,t)||e.raise("Invalid property name"),e.unicodeProperties.nonBinary[t].test(r)||e.raise("Invalid property value")};j.regexp_validateUnicodePropertyNameOrValue=function(e,t){e.unicodeProperties.binary.test(t)||e.raise("Invalid property name")};j.regexp_eatUnicodePropertyName=function(e){var t=0;for(e.lastStringValue="";nn(t=e.current());)e.lastStringValue+=kt(t),e.advance();return e.lastStringValue!==""};function nn(e){return rn(e)||e===95}j.regexp_eatUnicodePropertyValue=function(e){var t=0;for(e.lastStringValue="";ls(t=e.current());)e.lastStringValue+=kt(t),e.advance();return e.lastStringValue!==""};function ls(e){return nn(e)||Vt(e)}j.regexp_eatLoneUnicodePropertyNameOrValue=function(e){return this.regexp_eatUnicodePropertyValue(e)};j.regexp_eatCharacterClass=function(e){if(e.eat(91)){if(e.eat(94),this.regexp_classRanges(e),e.eat(93))return!0;e.raise("Unterminated character class")}return!1};j.regexp_classRanges=function(e){for(;this.regexp_eatClassAtom(e);){var t=e.lastIntValue;if(e.eat(45)&&this.regexp_eatClassAtom(e)){var r=e.lastIntValue;e.switchU&&(t===-1||r===-1)&&e.raise("Invalid character class"),t!==-1&&r!==-1&&t>r&&e.raise("Range out of order in character class")}}};j.regexp_eatClassAtom=function(e){var t=e.pos;if(e.eat(92)){if(this.regexp_eatClassEscape(e))return!0;if(e.switchU){var r=e.current();(r===99||an(r))&&e.raise("Invalid class escape"),e.raise("Invalid escape")}e.pos=t}var i=e.current();return i!==93?(e.lastIntValue=i,e.advance(),!0):!1};j.regexp_eatClassEscape=function(e){var t=e.pos;if(e.eat(98))return e.lastIntValue=8,!0;if(e.switchU&&e.eat(45))return e.lastIntValue=45,!0;if(!e.switchU&&e.eat(99)){if(this.regexp_eatClassControlLetter(e))return!0;e.pos=t}return this.regexp_eatCharacterClassEscape(e)||this.regexp_eatCharacterEscape(e)};j.regexp_eatClassControlLetter=function(e){var t=e.current();return Vt(t)||t===95?(e.lastIntValue=t%32,e.advance(),!0):!1};j.regexp_eatHexEscapeSequence=function(e){var t=e.pos;if(e.eat(120)){if(this.regexp_eatFixedHexDigits(e,2))return!0;e.switchU&&e.raise("Invalid escape"),e.pos=t}return!1};j.regexp_eatDecimalDigits=function(e){var t=e.pos,r=0;for(e.lastIntValue=0;Vt(r=e.current());)e.lastIntValue=10*e.lastIntValue+(r-48),e.advance();return e.pos!==t};function Vt(e){return e>=48&&e<=57}j.regexp_eatHexDigits=function(e){var t=e.pos,r=0;for(e.lastIntValue=0;un(r=e.current());)e.lastIntValue=16*e.lastIntValue+sn(r),e.advance();return e.pos!==t};function un(e){return e>=48&&e<=57||e>=65&&e<=70||e>=97&&e<=102}function sn(e){return e>=65&&e<=70?10+(e-65):e>=97&&e<=102?10+(e-97):e-48}j.regexp_eatLegacyOctalEscapeSequence=function(e){if(this.regexp_eatOctalDigit(e)){var t=e.lastIntValue;if(this.regexp_eatOctalDigit(e)){var r=e.lastIntValue;t<=3&&this.regexp_eatOctalDigit(e)?e.lastIntValue=t*64+r*8+e.lastIntValue:e.lastIntValue=t*8+r}else e.lastIntValue=t;return!0}return!1};j.regexp_eatOctalDigit=function(e){var t=e.current();return an(t)?(e.lastIntValue=t-48,e.advance(),!0):(e.lastIntValue=0,!1)};function an(e){return e>=48&&e<=55}j.regexp_eatFixedHexDigits=function(e,t){var r=e.pos;e.lastIntValue=0;for(var i=0;i=this.input.length)return this.finishToken(h.eof);if(e.override)return e.override(this);this.readToken(this.fullCharCodeAtPos())};$.readToken=function(e){return Te(e,this.options.ecmaVersion>=6)||e===92?this.readWord():this.getTokenFromCode(e)};$.fullCharCodeAtPos=function(){var e=this.input.charCodeAt(this.pos);if(e<=55295||e>=57344)return e;var t=this.input.charCodeAt(this.pos+1);return(e<<10)+t-56613888};$.skipBlockComment=function(){var e=this.options.onComment&&this.curPosition(),t=this.pos,r=this.input.indexOf("*/",this.pos+=2);if(r===-1&&this.raise(this.pos-2,"Unterminated comment"),this.pos=r+2,this.options.locations){Qe.lastIndex=t;for(var i;(i=Qe.exec(this.input))&&i.index8&&e<14||e>=5760&&Ar.test(String.fromCharCode(e)))++this.pos;else break e}}};$.finishToken=function(e,t){this.end=this.pos,this.options.locations&&(this.endLoc=this.curPosition());var r=this.type;this.type=e,this.value=t,this.updateContext(r)};$.readToken_dot=function(){var e=this.input.charCodeAt(this.pos+1);if(e>=48&&e<=57)return this.readNumber(!0);var t=this.input.charCodeAt(this.pos+2);return this.options.ecmaVersion>=6&&e===46&&t===46?(this.pos+=3,this.finishToken(h.ellipsis)):(++this.pos,this.finishToken(h.dot))};$.readToken_slash=function(){var e=this.input.charCodeAt(this.pos+1);return this.exprAllowed?(++this.pos,this.readRegexp()):e===61?this.finishOp(h.assign,2):this.finishOp(h.slash,1)};$.readToken_mult_modulo_exp=function(e){var t=this.input.charCodeAt(this.pos+1),r=1,i=e===42?h.star:h.modulo;return this.options.ecmaVersion>=7&&e===42&&t===42&&(++r,i=h.starstar,t=this.input.charCodeAt(this.pos+2)),t===61?this.finishOp(h.assign,r+1):this.finishOp(i,r)};$.readToken_pipe_amp=function(e){var t=this.input.charCodeAt(this.pos+1);if(t===e){if(this.options.ecmaVersion>=12){var r=this.input.charCodeAt(this.pos+2);if(r===61)return this.finishOp(h.assign,3)}return this.finishOp(e===124?h.logicalOR:h.logicalAND,2)}return t===61?this.finishOp(h.assign,2):this.finishOp(e===124?h.bitwiseOR:h.bitwiseAND,1)};$.readToken_caret=function(){var e=this.input.charCodeAt(this.pos+1);return e===61?this.finishOp(h.assign,2):this.finishOp(h.bitwiseXOR,1)};$.readToken_plus_min=function(e){var t=this.input.charCodeAt(this.pos+1);return t===e?t===45&&!this.inModule&&this.input.charCodeAt(this.pos+2)===62&&(this.lastTokEnd===0||Ae.test(this.input.slice(this.lastTokEnd,this.pos)))?(this.skipLineComment(3),this.skipSpace(),this.nextToken()):this.finishOp(h.incDec,2):t===61?this.finishOp(h.assign,2):this.finishOp(h.plusMin,1)};$.readToken_lt_gt=function(e){var t=this.input.charCodeAt(this.pos+1),r=1;return t===e?(r=e===62&&this.input.charCodeAt(this.pos+2)===62?3:2,this.input.charCodeAt(this.pos+r)===61?this.finishOp(h.assign,r+1):this.finishOp(h.bitShift,r)):t===33&&e===60&&!this.inModule&&this.input.charCodeAt(this.pos+2)===45&&this.input.charCodeAt(this.pos+3)===45?(this.skipLineComment(4),this.skipSpace(),this.nextToken()):(t===61&&(r=2),this.finishOp(h.relational,r))};$.readToken_eq_excl=function(e){var t=this.input.charCodeAt(this.pos+1);return t===61?this.finishOp(h.equality,this.input.charCodeAt(this.pos+2)===61?3:2):e===61&&t===62&&this.options.ecmaVersion>=6?(this.pos+=2,this.finishToken(h.arrow)):this.finishOp(e===61?h.eq:h.prefix,1)};$.readToken_question=function(){var e=this.options.ecmaVersion;if(e>=11){var t=this.input.charCodeAt(this.pos+1);if(t===46){var r=this.input.charCodeAt(this.pos+2);if(r<48||r>57)return this.finishOp(h.questionDot,2)}if(t===63){if(e>=12){var i=this.input.charCodeAt(this.pos+2);if(i===61)return this.finishOp(h.assign,3)}return this.finishOp(h.coalesce,2)}}return this.finishOp(h.question,1)};$.getTokenFromCode=function(e){switch(e){case 46:return this.readToken_dot();case 40:return++this.pos,this.finishToken(h.parenL);case 41:return++this.pos,this.finishToken(h.parenR);case 59:return++this.pos,this.finishToken(h.semi);case 44:return++this.pos,this.finishToken(h.comma);case 91:return++this.pos,this.finishToken(h.bracketL);case 93:return++this.pos,this.finishToken(h.bracketR);case 123:return++this.pos,this.finishToken(h.braceL);case 125:return++this.pos,this.finishToken(h.braceR);case 58:return++this.pos,this.finishToken(h.colon);case 96:if(this.options.ecmaVersion<6)break;return++this.pos,this.finishToken(h.backQuote);case 48:var t=this.input.charCodeAt(this.pos+1);if(t===120||t===88)return this.readRadixNumber(16);if(this.options.ecmaVersion>=6){if(t===111||t===79)return this.readRadixNumber(8);if(t===98||t===66)return this.readRadixNumber(2)}case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:return this.readNumber(!1);case 34:case 39:return this.readString(e);case 47:return this.readToken_slash();case 37:case 42:return this.readToken_mult_modulo_exp(e);case 124:case 38:return this.readToken_pipe_amp(e);case 94:return this.readToken_caret();case 43:case 45:return this.readToken_plus_min(e);case 60:case 62:return this.readToken_lt_gt(e);case 61:case 33:return this.readToken_eq_excl(e);case 63:return this.readToken_question();case 126:return this.finishOp(h.prefix,1)}this.raise(this.pos,"Unexpected character '"+br(e)+"'")};$.finishOp=function(e,t){var r=this.input.slice(this.pos,this.pos+t);return this.pos+=t,this.finishToken(e,r)};$.readRegexp=function(){for(var e,t,r=this.pos;;){this.pos>=this.input.length&&this.raise(r,"Unterminated regular expression");var i=this.input.charAt(this.pos);if(Ae.test(i)&&this.raise(r,"Unterminated regular expression"),e)e=!1;else{if(i==="[")t=!0;else if(i==="]"&&t)t=!1;else if(i==="/"&&!t)break;e=i==="\\"}++this.pos}var u=this.input.slice(r,this.pos);++this.pos;var s=this.pos,a=this.readWord1();this.containsEsc&&this.unexpected(s);var f=this.regexpState||(this.regexpState=new Ne(this));f.reset(r,u,a),this.validateRegExpFlags(f),this.validateRegExpPattern(f);var p=null;try{p=new RegExp(u,a)}catch{}return this.finishToken(h.regexp,{pattern:u,flags:a,value:p})};$.readInt=function(e,t,r){for(var i=this.options.ecmaVersion>=12&&t===void 0,u=r&&this.input.charCodeAt(this.pos)===48,s=this.pos,a=0,f=0,p=0,D=t??1/0;p=97?y=m-97+10:m>=65?y=m-65+10:m>=48&&m<=57?y=m-48:y=1/0,y>=e)break;f=m,a=a*e+y}return i&&f===95&&this.raiseRecoverable(this.pos-1,"Numeric separator is not allowed at the last of digits"),this.pos===s||t!=null&&this.pos-s!==t?null:a};function cs(e,t){return t?parseInt(e,8):parseFloat(e.replace(/_/g,""))}function on(e){return typeof BigInt!="function"?null:BigInt(e.replace(/_/g,""))}$.readRadixNumber=function(e){var t=this.pos;this.pos+=2;var r=this.readInt(e);return r==null&&this.raise(this.start+2,"Expected number in radix "+e),this.options.ecmaVersion>=11&&this.input.charCodeAt(this.pos)===110?(r=on(this.input.slice(t,this.pos)),++this.pos):Te(this.fullCharCodeAtPos())&&this.raise(this.pos,"Identifier directly after number"),this.finishToken(h.num,r)};$.readNumber=function(e){var t=this.pos;!e&&this.readInt(10,void 0,!0)===null&&this.raise(t,"Invalid number");var r=this.pos-t>=2&&this.input.charCodeAt(t)===48;r&&this.strict&&this.raise(t,"Invalid number");var i=this.input.charCodeAt(this.pos);if(!r&&!e&&this.options.ecmaVersion>=11&&i===110){var u=on(this.input.slice(t,this.pos));return++this.pos,Te(this.fullCharCodeAtPos())&&this.raise(this.pos,"Identifier directly after number"),this.finishToken(h.num,u)}r&&/[89]/.test(this.input.slice(t,this.pos))&&(r=!1),i===46&&!r&&(++this.pos,this.readInt(10),i=this.input.charCodeAt(this.pos)),(i===69||i===101)&&!r&&(i=this.input.charCodeAt(++this.pos),(i===43||i===45)&&++this.pos,this.readInt(10)===null&&this.raise(t,"Invalid number")),Te(this.fullCharCodeAtPos())&&this.raise(this.pos,"Identifier directly after number");var s=cs(this.input.slice(t,this.pos),r);return this.finishToken(h.num,s)};$.readCodePoint=function(){var e=this.input.charCodeAt(this.pos),t;if(e===123){this.options.ecmaVersion<6&&this.unexpected();var r=++this.pos;t=this.readHexChar(this.input.indexOf("}",this.pos)-this.pos),++this.pos,t>1114111&&this.invalidStringToken(r,"Code point out of bounds")}else t=this.readHexChar(4);return t};function br(e){return e<=65535?String.fromCharCode(e):(e-=65536,String.fromCharCode((e>>10)+55296,(e&1023)+56320))}$.readString=function(e){for(var t="",r=++this.pos;;){this.pos>=this.input.length&&this.raise(this.start,"Unterminated string constant");var i=this.input.charCodeAt(this.pos);if(i===e)break;i===92?(t+=this.input.slice(r,this.pos),t+=this.readEscapedChar(!1),r=this.pos):(et(i,this.options.ecmaVersion>=10)&&this.raise(this.start,"Unterminated string constant"),++this.pos)}return t+=this.input.slice(r,this.pos++),this.finishToken(h.string,t)};var ln={};$.tryReadTemplateToken=function(){this.inTemplateElement=!0;try{this.readTmplToken()}catch(e){if(e===ln)this.readInvalidTemplateToken();else throw e}this.inTemplateElement=!1};$.invalidStringToken=function(e,t){if(this.inTemplateElement&&this.options.ecmaVersion>=9)throw ln;this.raise(e,t)};$.readTmplToken=function(){for(var e="",t=this.pos;;){this.pos>=this.input.length&&this.raise(this.start,"Unterminated template");var r=this.input.charCodeAt(this.pos);if(r===96||r===36&&this.input.charCodeAt(this.pos+1)===123)return this.pos===this.start&&(this.type===h.template||this.type===h.invalidTemplate)?r===36?(this.pos+=2,this.finishToken(h.dollarBraceL)):(++this.pos,this.finishToken(h.backQuote)):(e+=this.input.slice(t,this.pos),this.finishToken(h.template,e));if(r===92)e+=this.input.slice(t,this.pos),e+=this.readEscapedChar(!0),t=this.pos;else if(et(r)){switch(e+=this.input.slice(t,this.pos),++this.pos,r){case 13:this.input.charCodeAt(this.pos)===10&&++this.pos;case 10:e+=` -`;break;default:e+=String.fromCharCode(r);break}this.options.locations&&(++this.curLine,this.lineStart=this.pos),t=this.pos}else++this.pos}};$.readInvalidTemplateToken=function(){for(;this.pos=48&&t<=55){var i=this.input.substr(this.pos-1,3).match(/^[0-7]+/)[0],u=parseInt(i,8);return u>255&&(i=i.slice(0,-1),u=parseInt(i,8)),this.pos+=i.length-1,t=this.input.charCodeAt(this.pos),(i!=="0"||t===56||t===57)&&(this.strict||e)&&this.invalidStringToken(this.pos-1-i.length,e?"Octal literal in template string":"Octal literal in strict mode"),String.fromCharCode(u)}return et(t)?"":String.fromCharCode(t)}};$.readHexChar=function(e){var t=this.pos,r=this.readInt(16,e);return r===null&&this.invalidStringToken(t,"Bad character escape sequence"),r};$.readWord1=function(){this.containsEsc=!1;for(var e="",t=!0,r=this.pos,i=this.options.ecmaVersion>=6;this.pos",nbsp:" ",iexcl:"¡",cent:"¢",pound:"£",curren:"¤",yen:"¥",brvbar:"¦",sect:"§",uml:"¨",copy:"©",ordf:"ª",laquo:"«",not:"¬",shy:"­",reg:"®",macr:"¯",deg:"°",plusmn:"±",sup2:"²",sup3:"³",acute:"´",micro:"µ",para:"¶",middot:"·",cedil:"¸",sup1:"¹",ordm:"º",raquo:"»",frac14:"¼",frac12:"½",frac34:"¾",iquest:"¿",Agrave:"À",Aacute:"Á",Acirc:"Â",Atilde:"Ã",Auml:"Ä",Aring:"Å",AElig:"Æ",Ccedil:"Ç",Egrave:"È",Eacute:"É",Ecirc:"Ê",Euml:"Ë",Igrave:"Ì",Iacute:"Í",Icirc:"Î",Iuml:"Ï",ETH:"Ð",Ntilde:"Ñ",Ograve:"Ò",Oacute:"Ó",Ocirc:"Ô",Otilde:"Õ",Ouml:"Ö",times:"×",Oslash:"Ø",Ugrave:"Ù",Uacute:"Ú",Ucirc:"Û",Uuml:"Ü",Yacute:"Ý",THORN:"Þ",szlig:"ß",agrave:"à",aacute:"á",acirc:"â",atilde:"ã",auml:"ä",aring:"å",aelig:"æ",ccedil:"ç",egrave:"è",eacute:"é",ecirc:"ê",euml:"ë",igrave:"ì",iacute:"í",icirc:"î",iuml:"ï",eth:"ð",ntilde:"ñ",ograve:"ò",oacute:"ó",ocirc:"ô",otilde:"õ",ouml:"ö",divide:"÷",oslash:"ø",ugrave:"ù",uacute:"ú",ucirc:"û",uuml:"ü",yacute:"ý",thorn:"þ",yuml:"ÿ",OElig:"Œ",oelig:"œ",Scaron:"Š",scaron:"š",Yuml:"Ÿ",fnof:"ƒ",circ:"ˆ",tilde:"˜",Alpha:"Α",Beta:"Β",Gamma:"Γ",Delta:"Δ",Epsilon:"Ε",Zeta:"Ζ",Eta:"Η",Theta:"Θ",Iota:"Ι",Kappa:"Κ",Lambda:"Λ",Mu:"Μ",Nu:"Ν",Xi:"Ξ",Omicron:"Ο",Pi:"Π",Rho:"Ρ",Sigma:"Σ",Tau:"Τ",Upsilon:"Υ",Phi:"Φ",Chi:"Χ",Psi:"Ψ",Omega:"Ω",alpha:"α",beta:"β",gamma:"γ",delta:"δ",epsilon:"ε",zeta:"ζ",eta:"η",theta:"θ",iota:"ι",kappa:"κ",lambda:"λ",mu:"μ",nu:"ν",xi:"ξ",omicron:"ο",pi:"π",rho:"ρ",sigmaf:"ς",sigma:"σ",tau:"τ",upsilon:"υ",phi:"φ",chi:"χ",psi:"ψ",omega:"ω",thetasym:"ϑ",upsih:"ϒ",piv:"ϖ",ensp:" ",emsp:" ",thinsp:" ",zwnj:"‌",zwj:"‍",lrm:"‎",rlm:"‏",ndash:"–",mdash:"—",lsquo:"‘",rsquo:"’",sbquo:"‚",ldquo:"“",rdquo:"”",bdquo:"„",dagger:"†",Dagger:"‡",bull:"•",hellip:"…",permil:"‰",prime:"′",Prime:"″",lsaquo:"‹",rsaquo:"›",oline:"‾",frasl:"⁄",euro:"€",image:"ℑ",weierp:"℘",real:"ℜ",trade:"™",alefsym:"ℵ",larr:"←",uarr:"↑",rarr:"→",darr:"↓",harr:"↔",crarr:"↵",lArr:"⇐",uArr:"⇑",rArr:"⇒",dArr:"⇓",hArr:"⇔",forall:"∀",part:"∂",exist:"∃",empty:"∅",nabla:"∇",isin:"∈",notin:"∉",ni:"∋",prod:"∏",sum:"∑",minus:"−",lowast:"∗",radic:"√",prop:"∝",infin:"∞",ang:"∠",and:"∧",or:"∨",cap:"∩",cup:"∪",int:"∫",there4:"∴",sim:"∼",cong:"≅",asymp:"≈",ne:"≠",equiv:"≡",le:"≤",ge:"≥",sub:"⊂",sup:"⊃",nsub:"⊄",sube:"⊆",supe:"⊇",oplus:"⊕",otimes:"⊗",perp:"⊥",sdot:"⋅",lceil:"⌈",rceil:"⌉",lfloor:"⌊",rfloor:"⌋",lang:"〈",rang:"〉",loz:"◊",spades:"♠",clubs:"♣",hearts:"♥",diams:"♦"};const oi=su(ds);(function(e){const t=ms,r=/^[\da-fA-F]+$/,i=/^\d+$/,u=new WeakMap;function s(p){p=p.Parser.acorn||p;let D=u.get(p);if(!D){const m=p.tokTypes,y=p.TokContext,A=p.TokenType,C=new y("...",!0,!0),b={tc_oTag:C,tc_cTag:v,tc_expr:E},T={jsxName:new A("jsxName"),jsxText:new A("jsxText",{beforeExpr:!0}),jsxTagStart:new A("jsxTagStart",{startsExpr:!0}),jsxTagEnd:new A("jsxTagEnd")};T.jsxTagStart.updateContext=function(){this.context.push(E),this.context.push(C),this.exprAllowed=!1},T.jsxTagEnd.updateContext=function(I){let V=this.context.pop();V===C&&I===m.slash||V===v?(this.context.pop(),this.exprAllowed=this.curContext()===E):this.exprAllowed=!0},D={tokContexts:b,tokTypes:T},u.set(p,D)}return D}function a(p){if(!p)return p;if(p.type==="JSXIdentifier")return p.name;if(p.type==="JSXNamespacedName")return p.namespace.name+":"+p.name.name;if(p.type==="JSXMemberExpression")return a(p.object)+"."+a(p.property)}e.exports=function(p){return p=p||{},function(D){return f({allowNamespaces:p.allowNamespaces!==!1,allowNamespacedObjects:!!p.allowNamespacedObjects},D)}},Object.defineProperty(e.exports,"tokTypes",{get:function(){return s(oi).tokTypes},configurable:!0,enumerable:!0});function f(p,D){const m=D.acorn||oi,y=s(m),A=m.tokTypes,C=y.tokTypes,v=m.tokContexts,E=y.tokContexts.tc_oTag,b=y.tokContexts.tc_cTag,T=y.tokContexts.tc_expr,I=m.isNewLine,V=m.isIdentifierStart,S=m.isIdentifierChar;return class extends D{static get acornJsx(){return y}jsx_readToken(){let g="",x=this.pos;for(;;){this.pos>=this.input.length&&this.raise(this.start,"Unterminated JSX contents");let F=this.input.charCodeAt(this.pos);switch(F){case 60:case 123:return this.pos===this.start?F===60&&this.exprAllowed?(++this.pos,this.finishToken(C.jsxTagStart)):this.getTokenFromCode(F):(g+=this.input.slice(x,this.pos),this.finishToken(C.jsxText,g));case 38:g+=this.input.slice(x,this.pos),g+=this.jsx_readEntity(),x=this.pos;break;case 62:case 125:this.raise(this.pos,"Unexpected token `"+this.input[this.pos]+"`. Did you mean `"+(F===62?">":"}")+'` or `{"'+this.input[this.pos]+'"}`?');default:I(F)?(g+=this.input.slice(x,this.pos),g+=this.jsx_readNewLine(!0),x=this.pos):++this.pos}}}jsx_readNewLine(g){let x=this.input.charCodeAt(this.pos),F;return++this.pos,x===13&&this.input.charCodeAt(this.pos)===10?(++this.pos,F=g?` -`:`\r -`):F=String.fromCharCode(x),this.options.locations&&(++this.curLine,this.lineStart=this.pos),F}jsx_readString(g){let x="",F=++this.pos;for(;;){this.pos>=this.input.length&&this.raise(this.start,"Unterminated string constant");let B=this.input.charCodeAt(this.pos);if(B===g)break;B===38?(x+=this.input.slice(F,this.pos),x+=this.jsx_readEntity(),F=this.pos):I(B)?(x+=this.input.slice(F,this.pos),x+=this.jsx_readNewLine(!1),F=this.pos):++this.pos}return x+=this.input.slice(F,this.pos++),this.finishToken(A.string,x)}jsx_readEntity(){let g="",x=0,F,B=this.input[this.pos];B!=="&"&&this.raise(this.pos,"Entity must start with an ampersand");let R=++this.pos;for(;this.pos")}let W=R.name?"Element":"Fragment";return F["opening"+W]=R,F["closing"+W]=N,F.children=B,this.type===A.relational&&this.value==="<"&&this.raise(this.start,"Adjacent JSX elements must be wrapped in an enclosing tag"),this.finishNode(F,"JSX"+W)}jsx_parseText(){let g=this.parseLiteral(this.value);return g.type="JSXText",g}jsx_parseElement(){let g=this.start,x=this.startLoc;return this.next(),this.jsx_parseElementAt(g,x)}parseExprAtom(g){return this.type===C.jsxText?this.jsx_parseText():this.type===C.jsxTagStart?this.jsx_parseElement():super.parseExprAtom(g)}readToken(g){let x=this.curContext();if(x===T)return this.jsx_readToken();if(x===E||x===b){if(V(g))return this.jsx_readWord();if(g==62)return++this.pos,this.finishToken(C.jsxTagEnd);if((g===34||g===39)&&x==E)return this.jsx_readString(g)}return g===60&&this.exprAllowed&&this.input.charCodeAt(this.pos+1)!==33?(++this.pos,this.finishToken(C.jsxTagStart)):super.readToken(g)}updateContext(g){if(this.type==A.braceL){var x=this.curContext();x==E?this.context.push(v.b_expr):x==T?this.context.push(v.b_tmpl):super.updateContext(g),this.exprAllowed=!0}else if(this.type===A.slash&&g===C.jsxTagStart)this.context.length-=2,this.context.push(b),this.exprAllowed=!1;else return super.updateContext(g)}}}})(hn);var gs=hn.exports;const Ds=pt(gs);function fn(e,t,r,i,u){r||(r=P),function s(a,f,p){var D=p||a.type,m=t[D];r[D](a,f,s),m&&m(a,f)}(e,i,u)}function As(e,t,r,i,u){var s=[];r||(r=P),function a(f,p,D){var m=D||f.type,y=t[m],A=f!==s[s.length-1];A&&s.push(f),r[m](f,p,a),y&&y(f,p||s,s),A&&s.pop()}(e,i,u)}function Sr(e,t,r){r(e,t)}function $e(e,t,r){}var P={};P.Program=P.BlockStatement=function(e,t,r){for(var i=0,u=e.body;i - * - * Copyright (c) 2014-2017, Jon Schlinkert. - * Released under the MIT License. - */function li(e){return Object.prototype.toString.call(e)==="[object Object]"}function Rs(e){var t,r;return li(e)===!1?!1:(t=e.constructor,t===void 0?!0:(r=t.prototype,!(li(r)===!1||r.hasOwnProperty("isPrototypeOf")===!1)))}var dn={},It=lt&<.__assign||function(){return It=Object.assign||function(e){for(var t,r=1,i=arguments.length;re.length)&&(t=e.length);for(var r=0,i=new Array(t);r0?e.length-1:0),i=e[e.length-1];return i&&(t.type==="string"||t.type==="number")&&(i.type==="string"||i.type==="number")?r.push(Dn(String(i.value)+String(t.value))):(i&&r.push(i),r.push(t)),r},ca=function(t){return["key","ref"].includes(t)},ha=function(e){return function(t){var r=t.includes("key"),i=t.includes("ref"),u=t.filter(function(a){return!ca(a)}),s=ci(e?u.sort():u);return i&&s.unshift("ref"),r&&s.unshift("key"),s}};function fa(e,t){return Array.isArray(t)?function(r){return t.indexOf(r)===-1}:function(r){return t(e[r],r)}}var pa=function(t,r,i,u,s){var a=s.tabStop;return t.type==="string"?r.split(` -`).map(function(f,p){return p===0?f:"".concat(ke(u,a)).concat(f)}).join(` -`):r},da=function(t,r,i){return function(u){return pa(u,Kt(u,t,r,i),t,r,i)}},ma=function(t,r){return function(i){var u=Object.keys(t).includes(i);return!u||u&&t[i]!==r[i]}},En=function(t,r,i,u,s){return s?ke(i,u).length+r.length>s:t.length>1},ga=function(t,r,i,u,s,a,f){return(En(t,r,s,a,f)||i)&&!u},yn=function(e,t,r,i){var u=e.type,s=e.displayName,a=s===void 0?"":s,f=e.childrens,p=e.props,D=p===void 0?{}:p,m=e.defaultProps,y=m===void 0?{}:m;if(u!=="ReactElement")throw new Error('The "formatReactElementNode" function could only format node of type "ReactElement". Given: '.concat(u));var A=i.filterProps,C=i.maxInlineAttributesLineLength,v=i.showDefaultProps,E=i.sortProps,b=i.tabStop,T="<".concat(a),I=T,V=T,S=!1,g=[],x=fa(D,A);Object.keys(D).filter(x).filter(ma(y,D)).forEach(function(R){return g.push(R)}),Object.keys(y).filter(x).filter(function(){return v}).filter(function(R){return!g.includes(R)}).forEach(function(R){return g.push(R)});var F=ha(E)(g);if(F.forEach(function(R){var N=oa(R,Object.keys(D).includes(R),D[R],Object.keys(y).includes(R),y[R],t,r,i),W=N.attributeFormattedInline,q=N.attributeFormattedMultiline,M=N.isMultilineAttribute;M&&(S=!0),I+=W,V+=q}),V+=` -`.concat(ke(r,b)),ga(F,I,S,t,r,b,C)?T=V:T=I,f&&f.length>0){var B=r+1;T+=">",t||(T+=` -`,T+=ke(B,b)),T+=f.reduce(la,[]).map(da(t,B,i)).join(t?"":` -`.concat(ke(B,b))),t||(T+=` -`,T+=ke(B-1,b)),T+="")}else En(F,I,r,b,C)||(T+=" "),T+="/>";return T},Da="",di="React.Fragment",Aa=function(t,r,i){var u={};return r&&(u={key:r}),{type:"ReactElement",displayName:t,props:u,defaultProps:{},childrens:i}},Ca=function(t){var r=t.key;return!!r},Ea=function(t){var r=t.childrens;return r.length===0},ya=function(e,t,r,i){var u=e.type,s=e.key,a=e.childrens;if(u!=="ReactFragment")throw new Error('The "formatReactFragmentNode" function could only format node of type "ReactFragment". Given: '.concat(u));var f=i.useFragmentShortSyntax,p;return f?Ea(e)||Ca(e)?p=di:p=Da:p=di,yn(Aa(p,s,a),t,r,i)},xa=["<",">","{","}"],Fa=function(t){return xa.some(function(r){return t.includes(r)})},va=function(t){return Fa(t)?"{`".concat(t,"`}"):t},ba=function(t){var r=t;return r.endsWith(" ")&&(r=r.replace(/^(.*?)(\s+)$/,"$1{'$2'}")),r.startsWith(" ")&&(r=r.replace(/^(\s+)(.*)$/,"{'$1'}$2")),r},Kt=function(e,t,r,i){if(e.type==="number")return String(e.value);if(e.type==="string")return e.value?"".concat(ba(va(String(e.value)))):"";if(e.type==="ReactElement")return yn(e,t,r,i);if(e.type==="ReactFragment")return ya(e,t,r,i);throw new TypeError('Unknow format type "'.concat(e.type,'"'))},Sa=function(e,t){return Kt(e,!1,0,t)},ot=function(t){var r=arguments.length>1&&arguments[1]!==void 0?arguments[1]:{},i=r.filterProps,u=i===void 0?[]:i,s=r.showDefaultProps,a=s===void 0?!0:s,f=r.showFunctions,p=f===void 0?!1:f,D=r.functionValue,m=r.tabStop,y=m===void 0?2:m,A=r.useBooleanShorthandSyntax,C=A===void 0?!0:A,v=r.useFragmentShortSyntax,E=v===void 0?!0:v,b=r.sortProps,T=b===void 0?!0:b,I=r.maxInlineAttributesLineLength,V=r.displayName;if(!t)throw new Error("react-element-to-jsx-string: Expected a ReactElement");var S={filterProps:u,showDefaultProps:a,showFunctions:p,functionValue:D,tabStop:y,useBooleanShorthandSyntax:C,useFragmentShortSyntax:E,sortProps:T,maxInlineAttributesLineLength:I,displayName:V};return Sa(wr(t,S),S)};const{defaultDecorateStory:_a,addons:Ba,useEffect:wa}=__STORYBOOK_MODULE_PREVIEW_API__,{logger:bt}=__STORYBOOK_MODULE_CLIENT_LOGGER__;function ka(e,t){let r=e!=null,i=t!=null;if(!r&&!i)return"";let u=[];if(r){let s=e.map(a=>{let f=a.getPrettyName(),p=a.getTypeName();return p!=null?`${f}: ${p}`:f});u.push(`(${s.join(", ")})`)}else u.push("()");return i&&u.push(`=> ${t.getTypeName()}`),u.join(" ")}function Ia(e,t){let r=e!=null,i=t!=null;if(!r&&!i)return"";let u=[];return r?u.push("( ... )"):u.push("()"),i&&u.push(`=> ${t.getTypeName()}`),u.join(" ")}function Ta(e){return e.replace(/,/g,`,\r -`)}var pr="custom",Dt="object",kr="array",Pa="class",Ye="func",tt="element";function Ir(e){return mu.includes(e.toLowerCase())}var xn={format:{indent:{style:" "},semicolons:!1}},Na={...xn,format:{newline:""}},La={...xn};function Oe(e,t=!1){return _i.generate(e,t?Na:La)}function dr(e,t=!1){return t?Oa(e):Oe(e)}function Oa(e){let t=Oe(e,!0);return t.endsWith(" }")||(t=`${t.slice(0,-1)} }`),t}function mi(e,t=!1){return t?Ma(e):Ra(e)}function Ra(e){let t=Oe(e);return t.endsWith(" }]")&&(t=au(t)),t}function Ma(e){let t=Oe(e,!0);return t.startsWith("[ ")&&(t=t.replace("[ ","[")),t}var Fn=e=>e.$$typeof===Symbol.for("react.memo"),Va=e=>e.$$typeof===Symbol.for("react.forward_ref"),Tr={...P,JSXElement:()=>{}},ja=re.extend(Ds());function At(e){return e!=null?e.name:null}function gi(e){return e.filter(t=>t.type==="ObjectExpression"||t.type==="ArrayExpression")}function vn(e){let t=[];return As(e,{ObjectExpression(r,i){t.push(gi(i).length)},ArrayExpression(r,i){t.push(gi(i).length)}},Tr),Math.max(...t)}function qa(e){return{inferredType:{type:"Identifier",identifier:At(e)},ast:e}}function Ua(e){return{inferredType:{type:"Literal"},ast:e}}function Wa(e){let t;fn(e.body,{JSXElement(u){t=u}},Tr);let r={type:t!=null?"Element":"Function",params:e.params,hasParams:e.params.length!==0},i=At(e.id);return i!=null&&(r.identifier=i),{inferredType:r,ast:e}}function Ga(e){let t;return fn(e.body,{JSXElement(r){t=r}},Tr),{inferredType:{type:t!=null?"Element":"Class",identifier:At(e.id)},ast:e}}function za(e){let t={type:"Element"},r=At(e.openingElement.name);return r!=null&&(t.identifier=r),{inferredType:t,ast:e}}function $a(e){let t=e.callee.type==="MemberExpression"?e.callee.property:e.callee;return At(t)==="shape"?bn(e.arguments[0]):null}function bn(e){return{inferredType:{type:"Object",depth:vn(e)},ast:e}}function Ja(e){return{inferredType:{type:"Array",depth:vn(e)},ast:e}}function Ha(e){switch(e.type){case"Identifier":return qa(e);case"Literal":return Ua(e);case"FunctionExpression":case"ArrowFunctionExpression":return Wa(e);case"ClassExpression":return Ga(e);case"JSXElement":return za(e);case"CallExpression":return $a(e);case"ObjectExpression":return bn(e);case"ArrayExpression":return Ja(e);default:return null}}function Xa(e){let t=ja.parse(`(${e})`,{ecmaVersion:2020}),r={inferredType:{type:"Unknown"},ast:t};if(t.body[0]!=null){let i=t.body[0];switch(i.type){case"ExpressionStatement":{let u=Ha(i.expression);u!=null&&(r=u);break}}}return r}function Re(e){try{return{...Xa(e)}}catch{}return{inferredType:{type:"Unknown"}}}var Qa=150;function de({name:e,short:t,compact:r,full:i,inferredType:u}){return{name:e,short:t,compact:r,full:i??t,inferredType:u}}function Sn(e){return e.replace(/PropTypes./g,"").replace(/.isRequired/g,"")}function Di(e){return e.split(/\r?\n/)}function Tt(e,t=!1){return Sn(dr(e,t))}function Ai(e,t=!1){return Sn(Oe(e,t))}function Ka(e){switch(e){case"Object":return Dt;case"Array":return kr;case"Class":return Pa;case"Function":return Ye;case"Element":return tt;default:return pr}}function _n(e,t){let{inferredType:r,ast:i}=Re(e),{type:u}=r,s,a,f;switch(u){case"Identifier":case"Literal":s=e,a=e;break;case"Object":{let{depth:p}=r;s=Dt,a=p===1?Tt(i,!0):null,f=Tt(i);break}case"Element":{let{identifier:p}=r;s=p!=null&&!Ir(p)?p:tt,a=Di(e).length===1?e:null,f=e;break}case"Array":{let{depth:p}=r;s=kr,a=p<=2?Ai(i,!0):null,f=Ai(i);break}default:s=Ka(u),a=Di(e).length===1?e:null,f=e;break}return de({name:t,short:s,compact:a,full:f,inferredType:u})}function Ya({raw:e}){return e!=null?_n(e,"custom"):de({name:"custom",short:pr,compact:pr})}function Za(e){let{jsDocTags:t}=e;return t!=null&&(t.params!=null||t.returns!=null)?de({name:"func",short:Ia(t.params,t.returns),compact:null,full:ka(t.params,t.returns)}):de({name:"func",short:Ye,compact:Ye})}function eo(e,t){let r=Object.keys(e.value).map(a=>`${a}: ${Ze(e.value[a],t).full}`).join(", "),{inferredType:i,ast:u}=Re(`{ ${r} }`),{depth:s}=i;return de({name:"shape",short:Dt,compact:s===1&&u?Tt(u,!0):null,full:u?Tt(u):null})}function or(e){return`objectOf(${e})`}function to(e,t){let{short:r,compact:i,full:u}=Ze(e.value,t);return de({name:"objectOf",short:or(r),compact:i!=null?or(i):null,full:u&&or(u)})}function ro(e,t){if(Array.isArray(e.value)){let r=e.value.reduce((i,u)=>{let{short:s,compact:a,full:f}=Ze(u,t);return i.short.push(s),i.compact.push(a),i.full.push(f),i},{short:[],compact:[],full:[]});return de({name:"union",short:r.short.join(" | "),compact:r.compact.every(i=>i!=null)?r.compact.join(" | "):null,full:r.full.join(" | ")})}return de({name:"union",short:e.value,compact:null})}function io({value:e,computed:t}){return t?_n(e,"enumvalue"):de({name:"enumvalue",short:e,compact:e})}function no(e){if(Array.isArray(e.value)){let t=e.value.reduce((r,i)=>{let{short:u,compact:s,full:a}=io(i);return r.short.push(u),r.compact.push(s),r.full.push(a),r},{short:[],compact:[],full:[]});return de({name:"enum",short:t.short.join(" | "),compact:t.compact.every(r=>r!=null)?t.compact.join(" | "):null,full:t.full.join(" | ")})}return de({name:"enum",short:e.value,compact:e.value})}function mr(e){return`${e}[]`}function Ci(e){return`[${e}]`}function Ei(e,t,r){return de({name:"arrayOf",short:mr(e),compact:t!=null?Ci(t):null,full:r&&Ci(r)})}function uo(e,t){let{name:r,short:i,compact:u,full:s,inferredType:a}=Ze(e.value,t);if(r==="custom"){if(a==="Object")return Ei(i,u,s)}else if(r==="shape")return Ei(i,u,s);return de({name:"arrayOf",short:mr(i),compact:mr(i)})}function Ze(e,t){try{switch(e.name){case"custom":return Ya(e);case"func":return Za(t);case"shape":return eo(e,t);case"instanceOf":return de({name:"instanceOf",short:e.value,compact:e.value});case"objectOf":return to(e,t);case"union":return ro(e,t);case"enum":return no(e);case"arrayOf":return uo(e,t);default:return de({name:e.name,short:e.name,compact:e.name})}}catch(r){console.error(r)}return de({name:"unknown",short:"unknown",compact:"unknown"})}function so(e){let{type:t}=e.docgenInfo;if(t==null)return null;try{switch(t.name){case"custom":case"shape":case"instanceOf":case"objectOf":case"union":case"enum":case"arrayOf":{let{short:r,compact:i,full:u}=Ze(t,e);return i!=null&&!uu(i)?te(i):u?te(r,u):te(r)}case"func":{let{short:r,full:i}=Ze(t,e),u=r,s;return i&&i.length`}function kn(e){let{type:t,identifier:r}=e;switch(t){case"Function":return Pr(r,e.hasParams);case"Element":return Yt(r);default:return r}}function ao({inferredType:e,ast:t}){let{identifier:r}=e;if(r!=null)return te(kn(e),Oe(t));let i=Oe(t,!0);return ft(i)?te(Ye,Oe(t)):te(i)}function oo(e,t){let{inferredType:r}=t,{identifier:i}=r;if(i!=null&&!Ir(i)){let u=kn(r);return te(u,e)}return ft(e)?te(tt,e):te(e)}function In(e){try{let t=Re(e);switch(t.inferredType.type){case"Object":return Bn(t);case"Function":return ao(t);case"Element":return oo(e,t);case"Array":return wn(t);default:return null}}catch(t){console.error(t)}return null}function Tn(e){return e.$$typeof!=null}function Pn(e,t){let{name:r}=e;return r!==""&&r!=="anonymous"&&r!==t?r:null}var lo=e=>te(JSON.stringify(e));function co(e){let{type:t}=e,{displayName:r}=t,i=ot(e,{});if(r!=null){let u=Yt(r);return te(u,i)}if(Os(t)&&Ir(t)){let u=ot(e,{tabStop:0}).replace(/\r?\n|\r/g,"");if(!ft(u))return te(u)}return te(tt,i)}var ho=e=>{if(Tn(e)&&e.type!=null)return co(e);if(ws(e)){let t=Re(JSON.stringify(e));return Bn(t)}if(Array.isArray(e)){let t=Re(JSON.stringify(e));return wn(t)}return te(Dt)},fo=(e,t)=>{let r=!1,i;if(zr(e.render))r=!0;else if(e.prototype!=null&&zr(e.prototype.render))r=!0;else{let s;try{i=Re(e.toString());let{hasParams:a,params:f}=i.inferredType;a?f.length===1&&f[0].type==="ObjectPattern"&&(s=e({})):s=e(),s!=null&&Tn(s)&&(r=!0)}catch{}}let u=Pn(e,t.name);if(u!=null){if(r)return te(Yt(u));i!=null&&(i=Re(e.toString()));let{hasParams:s}=i.inferredType;return te(Pr(u,s))}return te(r?tt:Ye)},po=e=>te(e.toString()),Nn={string:lo,object:ho,function:fo,default:po};function mo(e={}){return{...Nn,...e}}function Ln(e,t,r=Nn){try{switch(typeof e){case"string":return r.string(e,t);case"object":return r.object(e,t);case"function":return r.function(e,t);default:return r.default(e,t)}}catch(i){console.error(i)}return null}function go(e,t){let{propTypes:r}=t;return r!=null?Object.keys(r).map(i=>e.find(u=>u.name===i)).filter(Boolean):e}var Do=(e,{name:t,type:r})=>{let i=(r==null?void 0:r.summary)==="element"||(r==null?void 0:r.summary)==="elementType",u=Pn(e,t);if(u!=null){if(i)return te(Yt(u));let{hasParams:s}=Re(e.toString()).inferredType;return te(Pr(u,s))}return te(i?tt:Ye)},Ao=mo({function:Do});function Co(e,t){let{propDef:r}=e,i=so(e);i!=null&&(r.type=i);let{defaultValue:u}=e.docgenInfo;if(u!=null&&u.value!=null){let s=In(u.value);s!=null&&(r.defaultValue=s)}else if(t!=null){let s=Ln(t,r,Ao);s!=null&&(r.defaultValue=s)}return r}function Eo(e,t){let r=t.defaultProps!=null?t.defaultProps:{},i=e.map(u=>Co(u,r[u.propDef.name]));return go(i,t)}function yo(e,t){let{propDef:r}=e,{defaultValue:i}=e.docgenInfo;if(i!=null&&i.value!=null){let u=In(i.value);u!=null&&(r.defaultValue=u)}else if(t!=null){let u=Ln(t,r);u!=null&&(r.defaultValue=u)}return r}function xo(e){return e.map(t=>yo(t))}var yi=new Map;Object.keys(Jr).forEach(e=>{let t=Jr[e];yi.set(t,e),yi.set(t.isRequired,e)});function Fo(e,t){let r=e;!iu(e)&&!e.propTypes&&Fn(e)&&(r=e.type);let i=nu(r,t);if(i.length===0)return[];switch(i[0].typeSystem){case $r.JAVASCRIPT:return Eo(i,e);case $r.TYPESCRIPT:return xo(i);default:return i.map(u=>u.propDef)}}var vo=e=>({rows:Fo(e,"props")}),bo=e=>{if(e){let{rows:t}=vo(e);if(t)return t.reduce((r,i)=>{let{name:u,description:s,type:a,sbType:f,defaultValue:p,jsDocTags:D,required:m}=i;return r[u]={name:u,description:s,type:{required:m,...f},table:{type:a??void 0,jsDocTags:D,defaultValue:p??void 0}},r},{})}return null},So=e=>e.charAt(0).toUpperCase()+e.slice(1),_o=e=>(e.$$typeof||e).toString().replace(/^Symbol\((.*)\)$/,"$1").split(".").map(t=>t.split("_").map(So).join("")).join(".");function gr(e){if(Ge.isValidElement(e)){let t=Object.keys(e.props).reduce((r,i)=>(r[i]=gr(e.props[i]),r),{});return{...e,props:t,_owner:null}}return Array.isArray(e)?e.map(gr):e}var Bo=(e,t)=>{if(typeof e>"u")return bt.warn("Too many skip or undefined component"),null;let r=e,i=r.type;for(let a=0;a<(t==null?void 0:t.skip);a+=1){if(typeof r>"u")return bt.warn("Cannot skip undefined element"),null;if(st.Children.count(r)>1)return bt.warn("Trying to skip an array of elements"),null;typeof r.props.children>"u"?(bt.warn("Not enough children to skip elements."),typeof r.type=="function"&&r.type.name===""&&(r=st.createElement(i,{...r.props}))):typeof r.props.children=="function"?r=r.props.children():r=r.props.children}let u;typeof(t==null?void 0:t.displayName)=="string"?u={showFunctions:!0,displayName:()=>t.displayName}:u={displayName:a=>{var f;return a.type.displayName?a.type.displayName:Wr(a.type,"displayName")?Wr(a.type,"displayName"):(f=a.type.render)!=null&&f.displayName?a.type.render.displayName:typeof a.type=="symbol"||a.type.$$typeof&&typeof a.type.$$typeof=="symbol"?_o(a.type):a.type.name&&a.type.name!=="_default"?a.type.name:typeof a.type=="function"?"No Display Name":Va(a.type)?a.type.render.name:Fn(a.type)?a.type.type.name:a.type}};let s={...u,filterProps:(a,f)=>a!==void 0,...t};return st.Children.map(e,a=>{let f=typeof a=="number"?a.toString():a,p=(typeof ot=="function"?ot:ot.default)(gr(f),s);if(p.indexOf(""")>-1){let D=p.match(/\S+=\\"([^"]*)\\"/g);D&&D.forEach(m=>{p=p.replace(m,m.replace(/"/g,"'"))})}return p}).join(` -`).replace(/function\s+noRefCheck\(\)\s*\{\}/g,"() => {}")},wo={skip:0,showFunctions:!1,enableBeautify:!0,showDefaultProps:!1},ko=e=>{var i;let t=(i=e==null?void 0:e.parameters.docs)==null?void 0:i.source,r=e==null?void 0:e.parameters.__isArgsStory;return(t==null?void 0:t.type)===Gr.DYNAMIC?!1:!r||(t==null?void 0:t.code)||(t==null?void 0:t.type)===Gr.CODE},Io=e=>{var t,r;return((t=e.type)==null?void 0:t.displayName)==="MDXCreateElement"&&!!((r=e.props)!=null&&r.mdxType)},On=e=>{if(!Io(e))return e;let{mdxType:t,originalType:r,children:i,...u}=e.props,s=[];return i&&(s=(Array.isArray(i)?i:[i]).map(On)),Ge.createElement(r,u,...s)},Rn=(e,t)=>{var m,y;let r=Ba.getChannel(),i=ko(t),u="";wa(()=>{if(!i){let{id:A,unmappedArgs:C}=t;r.emit(ru,{id:A,source:u,args:C})}});let s=e();if(i)return s;let a={...wo,...(t==null?void 0:t.parameters.jsx)||{}},f=(y=(m=t==null?void 0:t.parameters.docs)==null?void 0:m.source)!=null&&y.excludeDecorators?t.originalStoryFn(t.args,t):s,p=On(f),D=Bo(p,a);return D&&(u=D),s},Lo=(e,t)=>{let r=t.findIndex(u=>u.originalFn===Rn),i=r===-1?t:[...t.splice(r,1),...t];return _a(e,i)},Oo={docs:{story:{inline:!0},extractArgTypes:bo,extractComponentDescription:eu}},Ro=[Rn],Mo=[tu];export{Lo as applyDecorators,Mo as argTypesEnhancers,Ro as decorators,Oo as parameters}; diff --git a/storybook-static/assets/erik-0903b8e6.webp b/storybook-static/assets/erik-0903b8e6.webp deleted file mode 100644 index dc89104..0000000 Binary files a/storybook-static/assets/erik-0903b8e6.webp and /dev/null differ diff --git a/storybook-static/assets/event-wall-1-7073feae.webp b/storybook-static/assets/event-wall-1-7073feae.webp deleted file mode 100644 index f19acc0..0000000 Binary files a/storybook-static/assets/event-wall-1-7073feae.webp and /dev/null differ diff --git a/storybook-static/assets/event-wall-1-d77a21c0.webp b/storybook-static/assets/event-wall-1-d77a21c0.webp deleted file mode 100644 index 9a7aaf2..0000000 Binary files a/storybook-static/assets/event-wall-1-d77a21c0.webp and /dev/null differ diff --git a/storybook-static/assets/event-wall-2-3244c80a.webp b/storybook-static/assets/event-wall-2-3244c80a.webp deleted file mode 100644 index 622365d..0000000 Binary files a/storybook-static/assets/event-wall-2-3244c80a.webp and /dev/null differ diff --git a/storybook-static/assets/event-wall-2-dfebf4bf.webp b/storybook-static/assets/event-wall-2-dfebf4bf.webp deleted file mode 100644 index 9536bac..0000000 Binary files a/storybook-static/assets/event-wall-2-dfebf4bf.webp and /dev/null differ diff --git a/storybook-static/assets/event-wall-3-aa1184c4.webp b/storybook-static/assets/event-wall-3-aa1184c4.webp deleted file mode 100644 index 49720d2..0000000 Binary files a/storybook-static/assets/event-wall-3-aa1184c4.webp and /dev/null differ diff --git a/storybook-static/assets/event-wall-3-bfbf4d4f.webp b/storybook-static/assets/event-wall-3-bfbf4d4f.webp deleted file mode 100644 index 6e4a769..0000000 Binary files a/storybook-static/assets/event-wall-3-bfbf4d4f.webp and /dev/null differ diff --git a/storybook-static/assets/event-wall-4-1879960d.webp b/storybook-static/assets/event-wall-4-1879960d.webp deleted file mode 100644 index d5b5e78..0000000 Binary files a/storybook-static/assets/event-wall-4-1879960d.webp and /dev/null differ diff --git a/storybook-static/assets/event-wall-4-5045388e.webp b/storybook-static/assets/event-wall-4-5045388e.webp deleted file mode 100644 index 4cf2cb1..0000000 Binary files a/storybook-static/assets/event-wall-4-5045388e.webp and /dev/null differ diff --git a/storybook-static/assets/facebook-6e866917.webp b/storybook-static/assets/facebook-6e866917.webp deleted file mode 100644 index 45cde08..0000000 Binary files a/storybook-static/assets/facebook-6e866917.webp and /dev/null differ diff --git a/storybook-static/assets/font.stories-b075a0a6.css b/storybook-static/assets/font.stories-b075a0a6.css deleted file mode 100644 index 63f7ec8..0000000 --- a/storybook-static/assets/font.stories-b075a0a6.css +++ /dev/null @@ -1 +0,0 @@ -.atm_bx_3wtidt.atm_bx_3wtidt{font-family:var(--font-family-sans-regular)}.atm_c8_jmbdy6.atm_c8_jmbdy6{font-size:var(--font-size-step5)}.atm_c8_115vrgw.atm_c8_115vrgw{font-size:var(--font-size-step4)}.atm_c8_1ic6ef2.atm_c8_1ic6ef2{font-size:var(--font-size-step3)}.atm_c8_1088tx0.atm_c8_1088tx0{font-size:var(--font-size-step2)}.atm_c8_wwia0z.atm_c8_wwia0z{font-size:var(--font-size-step1)}.atm_c8_xoeuol.atm_c8_xoeuol{font-size:var(--font-size-step0)}.atm_c8_ihbmcz.atm_c8_ihbmcz{font-size:var(--font-size-stepN1)}.atm_bx_18cx291.atm_bx_18cx291{font-family:var(--font-family-serif-regular)}.atm_cs_d016ey.atm_cs_d016ey{font-weight:var(--font-weight-extraBold)}.atm_cs_m3gbs4.atm_cs_m3gbs4{font-weight:var(--font-weight-bold)}.atm_cs_zddnl.atm_cs_zddnl{font-weight:var(--font-weight-semiBold)}.atm_cs_p0owkv.atm_cs_p0owkv{font-weight:var(--font-weight-normal)}.atm_cs_1nt554y.atm_cs_1nt554y{font-weight:var(--font-weight-light)} diff --git a/storybook-static/assets/font.stories-d780e3c6.js b/storybook-static/assets/font.stories-d780e3c6.js deleted file mode 100644 index b6d4b3c..0000000 --- a/storybook-static/assets/font.stories-d780e3c6.js +++ /dev/null @@ -1,112 +0,0 @@ -import{j as s}from"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";const N={title:"Theme/Font"},e={render:()=>s.jsxs("div",{className:"atm_bx_3wtidt",children:[s.jsx("h1",{className:"atm_c8_jmbdy6",children:"Header 1"}),s.jsx("h2",{className:"atm_c8_115vrgw",children:"Header 2"}),s.jsx("h3",{className:"atm_c8_1ic6ef2",children:"Header 3"}),s.jsx("h4",{className:"atm_c8_1088tx0",children:"Header 4"}),s.jsx("h5",{className:"atm_c8_wwia0z",children:"Header 5"}),s.jsx("p",{className:"atm_c8_jmbdy6",children:"Step 5"}),s.jsx("p",{className:"atm_c8_115vrgw",children:"Step 4"}),s.jsx("p",{className:"atm_c8_1ic6ef2",children:"Step 3"}),s.jsx("p",{className:"atm_c8_1088tx0",children:"Step 2"}),s.jsx("p",{className:"atm_c8_wwia0z",children:"Step 1"}),s.jsx("p",{className:"atm_c8_xoeuol",children:"Step 0"}),s.jsx("p",{className:"atm_c8_ihbmcz",children:"Step -1"})]})},a={render:()=>s.jsxs("div",{children:[s.jsx("p",{className:"atm_c8_xoeuol atm_bx_18cx291",children:"'Libre Baskerville', serif"}),s.jsx("p",{className:"atm_c8_xoeuol atm_bx_3wtidt",children:"'Montserrat', sans-serif"})]})},n={render:()=>s.jsxs("div",{className:"atm_c8_wwia0z atm_bx_3wtidt",children:[s.jsx("p",{className:"atm_cs_d016ey",children:"Extra bold"}),s.jsx("p",{className:"atm_cs_m3gbs4",children:"Bold"}),s.jsx("p",{className:"atm_cs_zddnl",children:"Semi-bold"}),s.jsx("p",{className:"atm_cs_p0owkv",children:"Normal"}),s.jsx("p",{className:"atm_cs_1nt554y",children:"Light"})]})};var c,t,r;e.parameters={...e.parameters,docs:{...(c=e.parameters)==null?void 0:c.docs,source:{originalSource:`{ - render: () =>
-

- Header 1 -

-

- Header 2 -

-

- Header 3 -

-

- Header 4 -

-
- Header 5 -
-

- Step 5 -

-

- Step 4 -

-

- Step 3 -

-

- Step 2 -

-

- Step 1 -

-

- Step 0 -

-

- Step -1 -

-
-}`,...(r=(t=e.parameters)==null?void 0:t.docs)==null?void 0:r.source}}};var i,l,m;a.parameters={...a.parameters,docs:{...(i=a.parameters)==null?void 0:i.docs,source:{originalSource:`{ - render: () =>
-

- 'Libre Baskerville', serif -

-

- 'Montserrat', sans-serif -

-
-}`,...(m=(l=a.parameters)==null?void 0:l.docs)==null?void 0:m.source}}};var o,p,d;n.parameters={...n.parameters,docs:{...(o=n.parameters)==null?void 0:o.docs,source:{originalSource:`{ - render: () =>
-

- Extra bold -

-

- Bold -

-

- Semi-bold -

-

- Normal -

-

- Light -

-
-}`,...(d=(p=n.parameters)==null?void 0:p.docs)==null?void 0:d.source}}};const f=["FontSize","FontFamliy","FontWeight"];export{a as FontFamliy,e as FontSize,n as FontWeight,f as __namedExportsOrder,N as default}; diff --git a/storybook-static/assets/footer.stories-ac175e20.js b/storybook-static/assets/footer.stories-ac175e20.js deleted file mode 100644 index 5c15cfd..0000000 --- a/storybook-static/assets/footer.stories-ac175e20.js +++ /dev/null @@ -1 +0,0 @@ -import{F as m}from"./section-925c1887.js";import"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./css-7708fb60.js";import"./index-9b15b185.js";/* empty css */const x={title:"Components/Layout/Footer",component:m},o={};var r,t,e;o.parameters={...o.parameters,docs:{...(r=o.parameters)==null?void 0:r.docs,source:{originalSource:"{}",...(e=(t=o.parameters)==null?void 0:t.docs)==null?void 0:e.source}}};const _=["Footer"];export{o as Footer,_ as __namedExportsOrder,x as default}; diff --git a/storybook-static/assets/freddy-64821517.webp b/storybook-static/assets/freddy-64821517.webp deleted file mode 100644 index 1c1f977..0000000 Binary files a/storybook-static/assets/freddy-64821517.webp and /dev/null differ diff --git a/storybook-static/assets/grid.stories-4b882fa3.js b/storybook-static/assets/grid.stories-4b882fa3.js deleted file mode 100644 index ce9ce4d..0000000 --- a/storybook-static/assets/grid.stories-4b882fa3.js +++ /dev/null @@ -1,42 +0,0 @@ -import{j as a}from"./jsx-runtime-d079401a.js";import{L as i}from"./section-925c1887.js";import{c as l}from"./css-7708fb60.js";import{u as _}from"./use_dimensions-681fd32d.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./index-f1f2c4b1.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./index-9b15b185.js";/* empty css */const v={title:"Components/Layout/Layout"},s=({className:c,children:t})=>{const{dimensions:r,ref:d}=_();return a.jsx("div",{className:l("atm_26_u67f1s atm_r3_1h6ojuz atm_j6_zlmbyt",c),ref:d,children:t||(r==null?void 0:r.width)})},m={render:()=>a.jsxs(i,{className:"atm_2d_19j4os",children:[a.jsx(s,{className:"atm_d2_ctpl9x"}),a.jsx(s,{className:"atm_d2_6lb6ft"}),a.jsx(s,{className:"atm_d2_1v7jmf9"}),a.jsx(s,{className:"atm_d2_1oz3dy5"}),a.jsx(s,{className:"atm_d2_fffvw2"}),a.jsx(s,{className:"atm_d2_6flufj"}),a.jsx(s,{className:"atm_d2_i1bhiv"}),a.jsx(s,{className:"atm_d2_1v0fi1h"}),a.jsx(s,{className:"atm_d2_xd9a1q"}),a.jsx(s,{className:"atm_d2_19nc8ip"}),a.jsx(s,{className:"atm_d2_1xe96uj"}),a.jsx(s,{className:"atm_d2_1kd7663"})]})};var e,n,o;m.parameters={...m.parameters,docs:{...(e=m.parameters)==null?void 0:e.docs,source:{originalSource:`{ - render: () => - - - - - - - - - - - - - -}`,...(o=(n=m.parameters)==null?void 0:n.docs)==null?void 0:o.source}}};const z=["Layout"];export{m as Layout,z as __namedExportsOrder,v as default}; diff --git a/storybook-static/assets/grid.stories-c27b89fd.css b/storybook-static/assets/grid.stories-c27b89fd.css deleted file mode 100644 index 2167841..0000000 --- a/storybook-static/assets/grid.stories-c27b89fd.css +++ /dev/null @@ -1 +0,0 @@ -.atm_26_u67f1s{background:#fff}.atm_r3_1h6ojuz{text-align:center}.atm_j6_zlmbyt{min-height:var(--grid-gutter)}.atm_2d_19j4os.atm_2d_19j4os{background-color:#a9439a80}.atm_d2_ctpl9x{grid-area:1/1/1}.atm_d2_6lb6ft{grid-area:1/2/1}.atm_d2_1v7jmf9{grid-area:1/3/1}.atm_d2_1oz3dy5{grid-area:1/4/1}.atm_d2_fffvw2{grid-area:1/5/1}.atm_d2_6flufj{grid-area:1/6/1}.atm_d2_i1bhiv{grid-area:1/7/1}.atm_d2_1v0fi1h{grid-area:1/8/1}.atm_d2_xd9a1q{grid-area:1/9/1}.atm_d2_19nc8ip{grid-area:1/10/1}.atm_d2_1xe96uj{grid-area:1/11/1}.atm_d2_1kd7663{grid-area:1/12/1} diff --git a/storybook-static/assets/guess-friends-1-2a72182d.webp b/storybook-static/assets/guess-friends-1-2a72182d.webp deleted file mode 100644 index 0af67b9..0000000 Binary files a/storybook-static/assets/guess-friends-1-2a72182d.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-1-c565ab25.webp b/storybook-static/assets/guess-friends-1-c565ab25.webp deleted file mode 100644 index e4828b8..0000000 Binary files a/storybook-static/assets/guess-friends-1-c565ab25.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-2-3a9c92ab.webp b/storybook-static/assets/guess-friends-2-3a9c92ab.webp deleted file mode 100644 index c6eb9a9..0000000 Binary files a/storybook-static/assets/guess-friends-2-3a9c92ab.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-2-df835393.webp b/storybook-static/assets/guess-friends-2-df835393.webp deleted file mode 100644 index 09c9bca..0000000 Binary files a/storybook-static/assets/guess-friends-2-df835393.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-3-69a9a75d.webp b/storybook-static/assets/guess-friends-3-69a9a75d.webp deleted file mode 100644 index 0230d55..0000000 Binary files a/storybook-static/assets/guess-friends-3-69a9a75d.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-3-d39b60c6.webp b/storybook-static/assets/guess-friends-3-d39b60c6.webp deleted file mode 100644 index cb60ce3..0000000 Binary files a/storybook-static/assets/guess-friends-3-d39b60c6.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-4-5ad5c62b.webp b/storybook-static/assets/guess-friends-4-5ad5c62b.webp deleted file mode 100644 index 258fb3e..0000000 Binary files a/storybook-static/assets/guess-friends-4-5ad5c62b.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-4-77dd807c.webp b/storybook-static/assets/guess-friends-4-77dd807c.webp deleted file mode 100644 index d0f46d7..0000000 Binary files a/storybook-static/assets/guess-friends-4-77dd807c.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-5-6cfa1855.webp b/storybook-static/assets/guess-friends-5-6cfa1855.webp deleted file mode 100644 index e720fef..0000000 Binary files a/storybook-static/assets/guess-friends-5-6cfa1855.webp and /dev/null differ diff --git a/storybook-static/assets/guess-friends-5-e5554dfd.webp b/storybook-static/assets/guess-friends-5-e5554dfd.webp deleted file mode 100644 index 8056ddf..0000000 Binary files a/storybook-static/assets/guess-friends-5-e5554dfd.webp and /dev/null differ diff --git a/storybook-static/assets/home-75e16b3f.js b/storybook-static/assets/home-75e16b3f.js deleted file mode 100644 index c8407b2..0000000 --- a/storybook-static/assets/home-75e16b3f.js +++ /dev/null @@ -1,14 +0,0 @@ -import{j as S}from"./jsx-runtime-d079401a.js";import{u as Tn,S as X,F as ni}from"./section-925c1887.js";import{R as Y,c as Kn,g as ti,r as bn}from"./index-f1f2c4b1.js";import{a as ri}from"./stats-06bdd3b3.js";import{t as F}from"./css-7708fb60.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import{u as ii,a as li,b as oi}from"./index-1c937141.js";import{P as ai,a as si}from"./person-d27c7fee.js";import{T as ui,h as ci}from"./timeline_item-de0bfc23.js";import{_ as pi}from"./iframe-33901838.js";import{L as Jn}from"./index-a8bd1a45.js";import{t as fi}from"./index-9b15b185.js";const Zn={id:"about",name:"About Me",title:"I Live for Experiences"},hi=function(e){return Object.keys(e).forEach(function(t){e[t]}),Y.createElement("div",null,Y.createElement("p",null,"I craft them for desktop and mobile browsers, professionally and in my spare time. I'm incredibly fortunate that my passion became my career."),Y.createElement("p",null,"I pursue them, too. I enjoy conferences like ",Y.createElement("a",{href:"http://sxsw.com/"},"SxSW"),", gatherings like ",Y.createElement("a",{href:"https://www.ted.com/"},"TED")," and ",Y.createElement("a",{href:"https://www.ted.com/tedx/events/7658"},"TEDx"),", and hackathons like ",Y.createElement("a",{href:"https://www.techstars.com/communities/startup-weekend"},"Startup Weekend"),". I love to ",Y.createElement("a",{href:"https://www.instagram.com/p/Bggec_FA6m0/"},"build")," with Lego. I made my own ",Y.createElement("a",{href:"https://www.instagram.com/p/qOJJTcFmOr/"},"desk"),". I tinker with ",Y.createElement("a",{href:"https://www.instagram.com/p/uMRGZVlmDx/"},"hardware")," and ",Y.createElement("a",{href:"https://www.instagram.com/p/BMhqanBBoGD/"},"VR"),". If I'm not ",Y.createElement("a",{href:"https://www.instagram.com/p/BGLyaiZFmFg"},"traveling the world")," with my wife, ",Y.createElement("a",{href:"https://www.instagram.com/p/3pb4fslmN-/"},"Olivia"),", you might find me ",Y.createElement("a",{href:"https://www.instagram.com/p/Rl_ij5lmOc/"},"onstage")," in community theatre, or ",Y.createElement("a",{href:"https://www.instagram.com/p/BX80pE0BmcO/"},"telling a story")," at ",Y.createElement("a",{href:"http://themoth.org"},"The Moth"),". I'm also the father of two beautiful children."),Y.createElement("p",null,"I'm currently the Technical Lead for the Global Experience team within ",Y.createElement("a",{href:"https://www.elastic.co/products/kibana"},"Kibana")," at ",Y.createElement("a",{href:"https://elastic.co"},"Elastic"),", working from my home in Hamilton, ON."),Y.createElement("p",null,"In the past, I've worked for Facebook, Cerner, Sprint and Accenture, and lived in New York, Vancouver and San Francisco. My hometown is Kansas City, MO. So far we've visited 44 countries, (and counting)."))};const mi=F("atm_d2_19dr3t5"),di=F("atm_bx_18cx291 atm_c8_wwia0z atm_d2_19dr3t5 atm_r3_1h6ojuz atm_g3_gsn3wn atm_hmh8cj_p4gng6"),gi=F("atm_bx_mszoox atm_cs_p0owkv atm_c8_1088tx0 atm_gq_p4gng6"),yi=F("atm_bx_18cx291 atm_7l_ubcz1x atm_g3_2bn2nk atm_hmh8cj_2bn2nk"),xi=F("atm_jmxia6_1cz9tj2 atm_d2_wjgj61"),ki=F("atm_jmxia6_1cz9tj2 atm_d2_1orviuz"),we={content:yi,header:mi,title:gi,work:xi,code:ki,summary:di},Qt=()=>S.jsxs("section",{...we.code,children:[S.jsx("h3",{...we.title,children:"About My Code"}),S.jsxs("div",{...we.content,children:[S.jsxs("p",{children:["These lines-of-code counts and repository information are gathered directly from my"," ",S.jsx("a",{href:"https://www.github.com/clintandrewhall",children:"Github account"}),"."]}),S.jsx(ri,{})]})]});Qt.__docgenInfo={description:"",methods:[],displayName:"Code"};const Xt=()=>S.jsx("div",{...we.summary,children:S.jsx(hi,{})});Xt.__docgenInfo={description:"",methods:[],displayName:"Summary"};function bi(e,n){const t=n||{};return(e[e.length-1]===""?[...e,""]:e).join((t.padRight?" ":"")+","+(t.padLeft===!1?"":" ")).trim()}const wi=/^[$_\p{ID_Start}][$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,_i=/^[$_\p{ID_Start}][-$_\u{200C}\u{200D}\p{ID_Continue}]*$/u,Si={};function et(e,n){return((n||Si).jsx?_i:wi).test(e)}const Ei=/[ \t\n\f\r]/g;function Ci(e){return typeof e=="object"?e.type==="text"?nt(e.value):!1:nt(e)}function nt(e){return e.replace(Ei,"")===""}class $e{constructor(n,t,r){this.property=n,this.normal=t,r&&(this.space=r)}}$e.prototype.property={};$e.prototype.normal={};$e.prototype.space=null;function Gt(e,n){const t={},r={};let i=-1;for(;++i4&&t.slice(0,4)==="data"&&Ai.test(n)){if(n.charAt(4)==="-"){const l=n.slice(5).replace(rt,Oi);r="data"+l.charAt(0).toUpperCase()+l.slice(1)}else{const l=n.slice(4);if(!rt.test(l)){let o=l.replace(Ti,Li);o.charAt(0)!=="-"&&(o="-"+o),n="data"+o}}i=vn}return new i(r,n)}function Li(e){return"-"+e.toLowerCase()}function Oi(e){return e.charAt(1).toUpperCase()}const Di={classId:"classID",dataType:"datatype",itemId:"itemID",strokeDashArray:"strokeDasharray",strokeDashOffset:"strokeDashoffset",strokeLineCap:"strokeLinecap",strokeLineJoin:"strokeLinejoin",strokeMiterLimit:"strokeMiterlimit",typeOf:"typeof",xLinkActuate:"xlinkActuate",xLinkArcRole:"xlinkArcrole",xLinkHref:"xlinkHref",xLinkRole:"xlinkRole",xLinkShow:"xlinkShow",xLinkTitle:"xlinkTitle",xLinkType:"xlinkType",xmlnsXLink:"xmlnsXlink"},Fi=Gt([Zt,Jt,tr,rr,ji],"html"),Ln=Gt([Zt,Jt,tr,rr,Pi],"svg");function Mi(e){return e.join(" ").trim()}var ir={},it=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,Ni=/\n/g,Ri=/^\s*/,Bi=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,qi=/^:\s*/,Hi=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,Ui=/^[;\s]*/,$i=/^\s+|\s+$/g,Vi=` -`,lt="/",ot="*",Ie="",Wi="comment",Yi="declaration",Qi=function(e,n){if(typeof e!="string")throw new TypeError("First argument must be a string");if(!e)return[];n=n||{};var t=1,r=1;function i(y){var b=y.match(Ni);b&&(t+=b.length);var I=y.lastIndexOf(Vi);r=~I?y.length-I:r+y.length}function l(){var y={line:t,column:r};return function(b){return b.position=new o(y),u(),b}}function o(y){this.start=y,this.end={line:t,column:r},this.source=n.source}o.prototype.content=e;function a(y){var b=new Error(n.source+":"+t+":"+r+": "+y);if(b.reason=y,b.filename=n.source,b.line=t,b.column=r,b.source=e,!n.silent)throw b}function s(y){var b=y.exec(e);if(b){var I=b[0];return i(I),e=e.slice(I.length),b}}function u(){s(Ri)}function c(y){var b;for(y=y||[];b=f();)b!==!1&&y.push(b);return y}function f(){var y=l();if(!(lt!=e.charAt(0)||ot!=e.charAt(1))){for(var b=2;Ie!=e.charAt(b)&&(ot!=e.charAt(b)||lt!=e.charAt(b+1));)++b;if(b+=2,Ie===e.charAt(b-1))return a("End of comment missing");var I=e.slice(2,b-2);return r+=2,i(I),e=e.slice(b),r+=2,y({type:Wi,comment:I})}}function d(){var y=l(),b=s(Bi);if(b){if(f(),!s(qi))return a("property missing ':'");var I=s(Hi),w=y({type:Yi,property:at(b[0].replace(it,Ie)),value:I?at(I[0].replace(it,Ie)):Ie});return s(Ui),w}}function p(){var y=[];c(y);for(var b;b=d();)b!==!1&&(y.push(b),c(y));return y}return u(),p()};function at(e){return e?e.replace($i,Ie):Ie}var Xi=Kn&&Kn.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(ir,"__esModule",{value:!0});var Gi=Xi(Qi);function Ki(e,n){var t=null;if(!e||typeof e!="string")return t;var r=(0,Gi.default)(e),i=typeof n=="function";return r.forEach(function(l){if(l.type==="declaration"){var o=l.property,a=l.value;i?n(o,a,l):a&&(t=t||{},t[o]=a)}}),t}var st=ir.default=Ki;const Ji=st.default||st,lr=or("end"),On=or("start");function or(e){return n;function n(t){const r=t&&t.position&&t.position[e]||{};if(typeof r.line=="number"&&r.line>0&&typeof r.column=="number"&&r.column>0)return{line:r.line,column:r.column,offset:typeof r.offset=="number"&&r.offset>-1?r.offset:void 0}}}function Zi(e){const n=On(e),t=lr(e);if(n&&t)return{start:n,end:t}}function qe(e){return!e||typeof e!="object"?"":"position"in e||"type"in e?ut(e.position):"start"in e||"end"in e?ut(e):"line"in e||"column"in e?Sn(e):""}function Sn(e){return ct(e&&e.line)+":"+ct(e&&e.column)}function ut(e){return Sn(e&&e.start)+"-"+Sn(e&&e.end)}function ct(e){return e&&typeof e=="number"?e:1}class Z extends Error{constructor(n,t,r){super(),typeof t=="string"&&(r=t,t=void 0);let i="",l={},o=!1;if(t&&("line"in t&&"column"in t?l={place:t}:"start"in t&&"end"in t?l={place:t}:"type"in t?l={ancestors:[t],place:t.position}:l={...t}),typeof n=="string"?i=n:!l.cause&&n&&(o=!0,i=n.message,l.cause=n),!l.ruleId&&!l.source&&typeof r=="string"){const s=r.indexOf(":");s===-1?l.ruleId=r:(l.source=r.slice(0,s),l.ruleId=r.slice(s+1))}if(!l.place&&l.ancestors&&l.ancestors){const s=l.ancestors[l.ancestors.length-1];s&&(l.place=s.position)}const a=l.place&&"start"in l.place?l.place.start:l.place;this.ancestors=l.ancestors||void 0,this.cause=l.cause||void 0,this.column=a?a.column:void 0,this.fatal=void 0,this.file,this.message=i,this.line=a?a.line:void 0,this.name=qe(l.place)||"1:1",this.place=l.place||void 0,this.reason=this.message,this.ruleId=l.ruleId||void 0,this.source=l.source||void 0,this.stack=o&&l.cause&&typeof l.cause.stack=="string"?l.cause.stack:"",this.actual,this.expected,this.note,this.url}}Z.prototype.file="";Z.prototype.name="";Z.prototype.reason="";Z.prototype.message="";Z.prototype.stack="";Z.prototype.column=void 0;Z.prototype.line=void 0;Z.prototype.ancestors=void 0;Z.prototype.cause=void 0;Z.prototype.fatal=void 0;Z.prototype.place=void 0;Z.prototype.ruleId=void 0;Z.prototype.source=void 0;const Dn={}.hasOwnProperty,el=new Map,nl=/[A-Z]/g,tl=/-([a-z])/g,rl=new Set(["table","tbody","thead","tfoot","tr"]),il=new Set(["td","th"]),ar="https://github.com/syntax-tree/hast-util-to-jsx-runtime";function ll(e,n){if(!n||n.Fragment===void 0)throw new TypeError("Expected `Fragment` in options");const t=n.filePath||void 0;let r;if(n.development){if(typeof n.jsxDEV!="function")throw new TypeError("Expected `jsxDEV` in options when `development: true`");r=hl(t,n.jsxDEV)}else{if(typeof n.jsx!="function")throw new TypeError("Expected `jsx` in production options");if(typeof n.jsxs!="function")throw new TypeError("Expected `jsxs` in production options");r=fl(t,n.jsx,n.jsxs)}const i={Fragment:n.Fragment,ancestors:[],components:n.components||{},create:r,elementAttributeNameCase:n.elementAttributeNameCase||"react",evaluater:n.createEvaluater?n.createEvaluater():void 0,filePath:t,ignoreInvalidStyle:n.ignoreInvalidStyle||!1,passKeys:n.passKeys!==!1,passNode:n.passNode||!1,schema:n.space==="svg"?Ln:Fi,stylePropertyNameCase:n.stylePropertyNameCase||"dom",tableCellAlignToStyle:n.tableCellAlignToStyle!==!1},l=sr(i,e,void 0);return l&&typeof l!="string"?l:i.create(e,i.Fragment,{children:l||void 0},void 0)}function sr(e,n,t){if(n.type==="element")return ol(e,n,t);if(n.type==="mdxFlowExpression"||n.type==="mdxTextExpression")return al(e,n);if(n.type==="mdxJsxFlowElement"||n.type==="mdxJsxTextElement")return ul(e,n,t);if(n.type==="mdxjsEsm")return sl(e,n);if(n.type==="root")return cl(e,n,t);if(n.type==="text")return pl(e,n)}function ol(e,n,t){const r=e.schema;let i=r;n.tagName.toLowerCase()==="svg"&&r.space==="html"&&(i=Ln,e.schema=i),e.ancestors.push(n);const l=cr(e,n.tagName,!1),o=ml(e,n);let a=Mn(e,n);return rl.has(n.tagName)&&(a=a.filter(function(s){return typeof s=="string"?!Ci(s):!0})),ur(e,o,l,n),Fn(o,a),e.ancestors.pop(),e.schema=r,e.create(n,l,o,t)}function al(e,n){if(n.data&&n.data.estree&&e.evaluater){const r=n.data.estree.body[0];return r.type,e.evaluater.evaluateExpression(r.expression)}Ue(e,n.position)}function sl(e,n){if(n.data&&n.data.estree&&e.evaluater)return e.evaluater.evaluateProgram(n.data.estree);Ue(e,n.position)}function ul(e,n,t){const r=e.schema;let i=r;n.name==="svg"&&r.space==="html"&&(i=Ln,e.schema=i),e.ancestors.push(n);const l=n.name===null?e.Fragment:cr(e,n.name,!0),o=dl(e,n),a=Mn(e,n);return ur(e,o,l,n),Fn(o,a),e.ancestors.pop(),e.schema=r,e.create(n,l,o,t)}function cl(e,n,t){const r={};return Fn(r,Mn(e,n)),e.create(n,e.Fragment,r,t)}function pl(e,n){return n.value}function ur(e,n,t,r){typeof t!="string"&&t!==e.Fragment&&e.passNode&&(n.node=r)}function Fn(e,n){if(n.length>0){const t=n.length>1?n:n[0];t&&(e.children=t)}}function fl(e,n,t){return r;function r(i,l,o,a){const u=Array.isArray(o.children)?t:n;return a?u(l,o,a):u(l,o)}}function hl(e,n){return t;function t(r,i,l,o){const a=Array.isArray(l.children),s=On(r);return n(i,l,o,a,{columnNumber:s?s.column-1:void 0,fileName:e,lineNumber:s?s.line:void 0},void 0)}}function ml(e,n){const t={};let r,i;for(i in n.properties)if(i!=="children"&&Dn.call(n.properties,i)){const l=gl(e,i,n.properties[i]);if(l){const[o,a]=l;e.tableCellAlignToStyle&&o==="align"&&typeof a=="string"&&il.has(n.tagName)?r=a:t[o]=a}}if(r){const l=t.style||(t.style={});l[e.stylePropertyNameCase==="css"?"text-align":"textAlign"]=r}return t}function dl(e,n){const t={};for(const r of n.attributes)if(r.type==="mdxJsxExpressionAttribute")if(r.data&&r.data.estree&&e.evaluater){const l=r.data.estree.body[0];l.type;const o=l.expression;o.type;const a=o.properties[0];a.type,Object.assign(t,e.evaluater.evaluateExpression(a.argument))}else Ue(e,n.position);else{const i=r.name;let l;if(r.value&&typeof r.value=="object")if(r.value.data&&r.value.data.estree&&e.evaluater){const a=r.value.data.estree.body[0];a.type,l=e.evaluater.evaluateExpression(a.expression)}else Ue(e,n.position);else l=r.value===null?!0:r.value;t[i]=l}return t}function Mn(e,n){const t=[];let r=-1;const i=e.passKeys?new Map:el;for(;++ri?0:i+n:n=n>i?i:n,t=t>0?t:0,r.length<1e4)o=Array.from(r),o.unshift(n,t),e.splice(...o);else for(t&&e.splice(n,t);l0?(me(e,e.length,0,n),e):n}const ht={}.hasOwnProperty;function Cl(e){const n={};let t=-1;for(;++t13&&t<32||t>126&&t<160||t>55295&&t<57344||t>64975&&t<65008||(t&65535)===65535||(t&65535)===65534||t>1114111?"�":String.fromCodePoint(t)}function Le(e){return e.replace(/[\t\n\r ]+/g," ").replace(/^ | $/g,"").toLowerCase().toUpperCase()}const he=_e(/[A-Za-z]/),ie=_e(/[\dA-Za-z]/),jl=_e(/[#-'*+\--9=?A-Z^-~]/);function En(e){return e!==null&&(e<32||e===127)}const Cn=_e(/\d/),Pl=_e(/[\dA-Fa-f]/),Al=_e(/[!-/:-@[-`{-~]/);function P(e){return e!==null&&e<-2}function ne(e){return e!==null&&(e<0||e===32)}function N(e){return e===-2||e===-1||e===32}const Tl=_e(/\p{P}|\p{S}/u),vl=_e(/\s/);function _e(e){return n;function n(t){return t!==null&&t>-1&&e.test(String.fromCharCode(t))}}function De(e){const n=[];let t=-1,r=0,i=0;for(;++t55295&&l<57344){const a=e.charCodeAt(t+1);l<56320&&a>56319&&a<57344?(o=String.fromCharCode(l,a),i=1):o="�"}else o=String.fromCharCode(l);o&&(n.push(e.slice(r,t),encodeURIComponent(o)),r=t+i+1,o=""),i&&(t+=i,i=0)}return n.join("")+e.slice(r)}function H(e,n,t,r){const i=r?r-1:Number.POSITIVE_INFINITY;let l=0;return o;function o(s){return N(s)?(e.enter(t),a(s)):n(s)}function a(s){return N(s)&&l++o))return;const M=n.events.length;let V=M,B,U;for(;V--;)if(n.events[V][0]==="exit"&&n.events[V][1].type==="chunkFlow"){if(B){U=n.events[V][1].end;break}B=!0}for(w(r),x=M;xE;){const v=t[D];n.containerState=v[1],v[0].exit.call(n,e)}t.length=E}function C(){i.write([null]),l=void 0,i=void 0,n.containerState._closeFlow=void 0}}function Ml(e,n,t){return H(e,e.attempt(this.parser.constructs.document,n,t),"linePrefix",this.parser.constructs.disable.null.includes("codeIndented")?void 0:4)}function dt(e){if(e===null||ne(e)||vl(e))return 1;if(Tl(e))return 2}function Rn(e,n,t){const r=[];let i=-1;for(;++i1&&e[t][1].end.offset-e[t][1].start.offset>1?2:1;const f=Object.assign({},e[r][1].end),d=Object.assign({},e[t][1].start);gt(f,-s),gt(d,s),o={type:s>1?"strongSequence":"emphasisSequence",start:f,end:Object.assign({},e[r][1].end)},a={type:s>1?"strongSequence":"emphasisSequence",start:Object.assign({},e[t][1].start),end:d},l={type:s>1?"strongText":"emphasisText",start:Object.assign({},e[r][1].end),end:Object.assign({},e[t][1].start)},i={type:s>1?"strong":"emphasis",start:Object.assign({},o.start),end:Object.assign({},a.end)},e[r][1].end=Object.assign({},o.start),e[t][1].start=Object.assign({},a.end),u=[],e[r][1].end.offset-e[r][1].start.offset&&(u=le(u,[["enter",e[r][1],n],["exit",e[r][1],n]])),u=le(u,[["enter",i,n],["enter",o,n],["exit",o,n],["enter",l,n]]),u=le(u,Rn(n.parser.constructs.insideSpan.null,e.slice(r+1,t),n)),u=le(u,[["exit",l,n],["enter",a,n],["exit",a,n],["exit",i,n]]),e[t][1].end.offset-e[t][1].start.offset?(c=2,u=le(u,[["enter",e[t][1],n],["exit",e[t][1],n]])):c=0,me(e,r-1,t-r+3,u),t=r+u.length-c-2;break}}for(t=-1;++t0&&N(x)?H(e,C,"linePrefix",l+1)(x):C(x)}function C(x){return x===null||P(x)?e.check(yt,b,D)(x):(e.enter("codeFlowValue"),E(x))}function E(x){return x===null||P(x)?(e.exit("codeFlowValue"),C(x)):(e.consume(x),E)}function D(x){return e.exit("codeFenced"),n(x)}function v(x,M,V){let B=0;return U;function U(O){return x.enter("lineEnding"),x.consume(O),x.exit("lineEnding"),j}function j(O){return x.enter("codeFencedFence"),N(O)?H(x,z,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(O):z(O)}function z(O){return O===a?(x.enter("codeFencedFenceSequence"),$(O)):V(O)}function $(O){return O===a?(B++,x.consume(O),$):B>=o?(x.exit("codeFencedFenceSequence"),N(O)?H(x,W,"whitespace")(O):W(O)):V(O)}function W(O){return O===null||P(O)?(x.exit("codeFencedFence"),M(O)):V(O)}}}function Xl(e,n,t){const r=this;return i;function i(o){return o===null?t(o):(e.enter("lineEnding"),e.consume(o),e.exit("lineEnding"),l)}function l(o){return r.parser.lazy[r.now().line]?t(o):n(o)}}const sn={name:"codeIndented",tokenize:Kl},Gl={tokenize:Jl,partial:!0};function Kl(e,n,t){const r=this;return i;function i(u){return e.enter("codeIndented"),H(e,l,"linePrefix",4+1)(u)}function l(u){const c=r.events[r.events.length-1];return c&&c[1].type==="linePrefix"&&c[2].sliceSerialize(c[1],!0).length>=4?o(u):t(u)}function o(u){return u===null?s(u):P(u)?e.attempt(Gl,o,s)(u):(e.enter("codeFlowValue"),a(u))}function a(u){return u===null||P(u)?(e.exit("codeFlowValue"),o(u)):(e.consume(u),a)}function s(u){return e.exit("codeIndented"),n(u)}}function Jl(e,n,t){const r=this;return i;function i(o){return r.parser.lazy[r.now().line]?t(o):P(o)?(e.enter("lineEnding"),e.consume(o),e.exit("lineEnding"),i):H(e,l,"linePrefix",4+1)(o)}function l(o){const a=r.events[r.events.length-1];return a&&a[1].type==="linePrefix"&&a[2].sliceSerialize(a[1],!0).length>=4?n(o):P(o)?i(o):t(o)}}const Zl={name:"codeText",tokenize:to,resolve:eo,previous:no};function eo(e){let n=e.length-4,t=3,r,i;if((e[t][1].type==="lineEnding"||e[t][1].type==="space")&&(e[n][1].type==="lineEnding"||e[n][1].type==="space")){for(r=t;++r=4?n(o):e.interrupt(r.parser.constructs.flow,t,n)(o)}}function yr(e,n,t,r,i,l,o,a,s){const u=s||Number.POSITIVE_INFINITY;let c=0;return f;function f(w){return w===60?(e.enter(r),e.enter(i),e.enter(l),e.consume(w),e.exit(l),d):w===null||w===32||w===41||En(w)?t(w):(e.enter(r),e.enter(o),e.enter(a),e.enter("chunkString",{contentType:"string"}),b(w))}function d(w){return w===62?(e.enter(l),e.consume(w),e.exit(l),e.exit(i),e.exit(r),n):(e.enter(a),e.enter("chunkString",{contentType:"string"}),p(w))}function p(w){return w===62?(e.exit("chunkString"),e.exit(a),d(w)):w===null||w===60||P(w)?t(w):(e.consume(w),w===92?y:p)}function y(w){return w===60||w===62||w===92?(e.consume(w),p):p(w)}function b(w){return!c&&(w===null||w===41||ne(w))?(e.exit("chunkString"),e.exit(a),e.exit(o),e.exit(r),n(w)):c999||p===null||p===91||p===93&&!s||p===94&&!a&&"_hiddenFootnoteSupport"in o.parser.constructs?t(p):p===93?(e.exit(l),e.enter(i),e.consume(p),e.exit(i),e.exit(r),n):P(p)?(e.enter("lineEnding"),e.consume(p),e.exit("lineEnding"),c):(e.enter("chunkString",{contentType:"string"}),f(p))}function f(p){return p===null||p===91||p===93||P(p)||a++>999?(e.exit("chunkString"),c(p)):(e.consume(p),s||(s=!N(p)),p===92?d:f)}function d(p){return p===91||p===92||p===93?(e.consume(p),a++,f):f(p)}}function kr(e,n,t,r,i,l){let o;return a;function a(d){return d===34||d===39||d===40?(e.enter(r),e.enter(i),e.consume(d),e.exit(i),o=d===40?41:d,s):t(d)}function s(d){return d===o?(e.enter(i),e.consume(d),e.exit(i),e.exit(r),n):(e.enter(l),u(d))}function u(d){return d===o?(e.exit(l),s(o)):d===null?t(d):P(d)?(e.enter("lineEnding"),e.consume(d),e.exit("lineEnding"),H(e,u,"linePrefix")):(e.enter("chunkString",{contentType:"string"}),c(d))}function c(d){return d===o||d===null||P(d)?(e.exit("chunkString"),u(d)):(e.consume(d),d===92?f:c)}function f(d){return d===o||d===92?(e.consume(d),c):c(d)}}function He(e,n){let t;return r;function r(i){return P(i)?(e.enter("lineEnding"),e.consume(i),e.exit("lineEnding"),t=!0,r):N(i)?H(e,r,t?"linePrefix":"lineSuffix")(i):n(i)}}const uo={name:"definition",tokenize:po},co={tokenize:fo,partial:!0};function po(e,n,t){const r=this;let i;return l;function l(p){return e.enter("definition"),o(p)}function o(p){return xr.call(r,e,a,t,"definitionLabel","definitionLabelMarker","definitionLabelString")(p)}function a(p){return i=Le(r.sliceSerialize(r.events[r.events.length-1][1]).slice(1,-1)),p===58?(e.enter("definitionMarker"),e.consume(p),e.exit("definitionMarker"),s):t(p)}function s(p){return ne(p)?He(e,u)(p):u(p)}function u(p){return yr(e,c,t,"definitionDestination","definitionDestinationLiteral","definitionDestinationLiteralMarker","definitionDestinationRaw","definitionDestinationString")(p)}function c(p){return e.attempt(co,f,f)(p)}function f(p){return N(p)?H(e,d,"whitespace")(p):d(p)}function d(p){return p===null||P(p)?(e.exit("definition"),r.parser.defined.push(i),n(p)):t(p)}}function fo(e,n,t){return r;function r(a){return ne(a)?He(e,i)(a):t(a)}function i(a){return kr(e,l,t,"definitionTitle","definitionTitleMarker","definitionTitleString")(a)}function l(a){return N(a)?H(e,o,"whitespace")(a):o(a)}function o(a){return a===null||P(a)?n(a):t(a)}}const ho={name:"hardBreakEscape",tokenize:mo};function mo(e,n,t){return r;function r(l){return e.enter("hardBreakEscape"),e.consume(l),i}function i(l){return P(l)?(e.exit("hardBreakEscape"),n(l)):t(l)}}const go={name:"headingAtx",tokenize:xo,resolve:yo};function yo(e,n){let t=e.length-2,r=3,i,l;return e[r][1].type==="whitespace"&&(r+=2),t-2>r&&e[t][1].type==="whitespace"&&(t-=2),e[t][1].type==="atxHeadingSequence"&&(r===t-1||t-4>r&&e[t-2][1].type==="whitespace")&&(t-=r+1===t?2:4),t>r&&(i={type:"atxHeadingText",start:e[r][1].start,end:e[t][1].end},l={type:"chunkText",start:e[r][1].start,end:e[t][1].end,contentType:"text"},me(e,r,t-r+1,[["enter",i,n],["enter",l,n],["exit",l,n],["exit",i,n]])),e}function xo(e,n,t){let r=0;return i;function i(c){return e.enter("atxHeading"),l(c)}function l(c){return e.enter("atxHeadingSequence"),o(c)}function o(c){return c===35&&r++<6?(e.consume(c),o):c===null||ne(c)?(e.exit("atxHeadingSequence"),a(c)):t(c)}function a(c){return c===35?(e.enter("atxHeadingSequence"),s(c)):c===null||P(c)?(e.exit("atxHeading"),n(c)):N(c)?H(e,a,"whitespace")(c):(e.enter("atxHeadingText"),u(c))}function s(c){return c===35?(e.consume(c),s):(e.exit("atxHeadingSequence"),a(c))}function u(c){return c===null||c===35||ne(c)?(e.exit("atxHeadingText"),a(c)):(e.consume(c),u)}}const ko=["address","article","aside","base","basefont","blockquote","body","caption","center","col","colgroup","dd","details","dialog","dir","div","dl","dt","fieldset","figcaption","figure","footer","form","frame","frameset","h1","h2","h3","h4","h5","h6","head","header","hr","html","iframe","legend","li","link","main","menu","menuitem","nav","noframes","ol","optgroup","option","p","param","search","section","summary","table","tbody","td","tfoot","th","thead","title","tr","track","ul"],kt=["pre","script","style","textarea"],bo={name:"htmlFlow",tokenize:Eo,resolveTo:So,concrete:!0},wo={tokenize:Io,partial:!0},_o={tokenize:Co,partial:!0};function So(e){let n=e.length;for(;n--&&!(e[n][0]==="enter"&&e[n][1].type==="htmlFlow"););return n>1&&e[n-2][1].type==="linePrefix"&&(e[n][1].start=e[n-2][1].start,e[n+1][1].start=e[n-2][1].start,e.splice(n-2,2)),e}function Eo(e,n,t){const r=this;let i,l,o,a,s;return u;function u(m){return c(m)}function c(m){return e.enter("htmlFlow"),e.enter("htmlFlowData"),e.consume(m),f}function f(m){return m===33?(e.consume(m),d):m===47?(e.consume(m),l=!0,b):m===63?(e.consume(m),i=3,r.interrupt?n:h):he(m)?(e.consume(m),o=String.fromCharCode(m),I):t(m)}function d(m){return m===45?(e.consume(m),i=2,p):m===91?(e.consume(m),i=5,a=0,y):he(m)?(e.consume(m),i=4,r.interrupt?n:h):t(m)}function p(m){return m===45?(e.consume(m),r.interrupt?n:h):t(m)}function y(m){const ue="CDATA[";return m===ue.charCodeAt(a++)?(e.consume(m),a===ue.length?r.interrupt?n:z:y):t(m)}function b(m){return he(m)?(e.consume(m),o=String.fromCharCode(m),I):t(m)}function I(m){if(m===null||m===47||m===62||ne(m)){const ue=m===47,Se=o.toLowerCase();return!ue&&!l&&kt.includes(Se)?(i=1,r.interrupt?n(m):z(m)):ko.includes(o.toLowerCase())?(i=6,ue?(e.consume(m),w):r.interrupt?n(m):z(m)):(i=7,r.interrupt&&!r.parser.lazy[r.now().line]?t(m):l?C(m):E(m))}return m===45||ie(m)?(e.consume(m),o+=String.fromCharCode(m),I):t(m)}function w(m){return m===62?(e.consume(m),r.interrupt?n:z):t(m)}function C(m){return N(m)?(e.consume(m),C):U(m)}function E(m){return m===47?(e.consume(m),U):m===58||m===95||he(m)?(e.consume(m),D):N(m)?(e.consume(m),E):U(m)}function D(m){return m===45||m===46||m===58||m===95||ie(m)?(e.consume(m),D):v(m)}function v(m){return m===61?(e.consume(m),x):N(m)?(e.consume(m),v):E(m)}function x(m){return m===null||m===60||m===61||m===62||m===96?t(m):m===34||m===39?(e.consume(m),s=m,M):N(m)?(e.consume(m),x):V(m)}function M(m){return m===s?(e.consume(m),s=null,B):m===null||P(m)?t(m):(e.consume(m),M)}function V(m){return m===null||m===34||m===39||m===47||m===60||m===61||m===62||m===96||ne(m)?v(m):(e.consume(m),V)}function B(m){return m===47||m===62||N(m)?E(m):t(m)}function U(m){return m===62?(e.consume(m),j):t(m)}function j(m){return m===null||P(m)?z(m):N(m)?(e.consume(m),j):t(m)}function z(m){return m===45&&i===2?(e.consume(m),J):m===60&&i===1?(e.consume(m),G):m===62&&i===4?(e.consume(m),se):m===63&&i===3?(e.consume(m),h):m===93&&i===5?(e.consume(m),de):P(m)&&(i===6||i===7)?(e.exit("htmlFlowData"),e.check(wo,ge,$)(m)):m===null||P(m)?(e.exit("htmlFlowData"),$(m)):(e.consume(m),z)}function $(m){return e.check(_o,W,ge)(m)}function W(m){return e.enter("lineEnding"),e.consume(m),e.exit("lineEnding"),O}function O(m){return m===null||P(m)?$(m):(e.enter("htmlFlowData"),z(m))}function J(m){return m===45?(e.consume(m),h):z(m)}function G(m){return m===47?(e.consume(m),o="",ae):z(m)}function ae(m){if(m===62){const ue=o.toLowerCase();return kt.includes(ue)?(e.consume(m),se):z(m)}return he(m)&&o.length<8?(e.consume(m),o+=String.fromCharCode(m),ae):z(m)}function de(m){return m===93?(e.consume(m),h):z(m)}function h(m){return m===62?(e.consume(m),se):m===45&&i===2?(e.consume(m),h):z(m)}function se(m){return m===null||P(m)?(e.exit("htmlFlowData"),ge(m)):(e.consume(m),se)}function ge(m){return e.exit("htmlFlow"),n(m)}}function Co(e,n,t){const r=this;return i;function i(o){return P(o)?(e.enter("lineEnding"),e.consume(o),e.exit("lineEnding"),l):t(o)}function l(o){return r.parser.lazy[r.now().line]?t(o):n(o)}}function Io(e,n,t){return r;function r(i){return e.enter("lineEnding"),e.consume(i),e.exit("lineEnding"),e.attempt(nn,n,t)}}const zo={name:"htmlText",tokenize:jo};function jo(e,n,t){const r=this;let i,l,o;return a;function a(h){return e.enter("htmlText"),e.enter("htmlTextData"),e.consume(h),s}function s(h){return h===33?(e.consume(h),u):h===47?(e.consume(h),v):h===63?(e.consume(h),E):he(h)?(e.consume(h),V):t(h)}function u(h){return h===45?(e.consume(h),c):h===91?(e.consume(h),l=0,y):he(h)?(e.consume(h),C):t(h)}function c(h){return h===45?(e.consume(h),p):t(h)}function f(h){return h===null?t(h):h===45?(e.consume(h),d):P(h)?(o=f,G(h)):(e.consume(h),f)}function d(h){return h===45?(e.consume(h),p):f(h)}function p(h){return h===62?J(h):h===45?d(h):f(h)}function y(h){const se="CDATA[";return h===se.charCodeAt(l++)?(e.consume(h),l===se.length?b:y):t(h)}function b(h){return h===null?t(h):h===93?(e.consume(h),I):P(h)?(o=b,G(h)):(e.consume(h),b)}function I(h){return h===93?(e.consume(h),w):b(h)}function w(h){return h===62?J(h):h===93?(e.consume(h),w):b(h)}function C(h){return h===null||h===62?J(h):P(h)?(o=C,G(h)):(e.consume(h),C)}function E(h){return h===null?t(h):h===63?(e.consume(h),D):P(h)?(o=E,G(h)):(e.consume(h),E)}function D(h){return h===62?J(h):E(h)}function v(h){return he(h)?(e.consume(h),x):t(h)}function x(h){return h===45||ie(h)?(e.consume(h),x):M(h)}function M(h){return P(h)?(o=M,G(h)):N(h)?(e.consume(h),M):J(h)}function V(h){return h===45||ie(h)?(e.consume(h),V):h===47||h===62||ne(h)?B(h):t(h)}function B(h){return h===47?(e.consume(h),J):h===58||h===95||he(h)?(e.consume(h),U):P(h)?(o=B,G(h)):N(h)?(e.consume(h),B):J(h)}function U(h){return h===45||h===46||h===58||h===95||ie(h)?(e.consume(h),U):j(h)}function j(h){return h===61?(e.consume(h),z):P(h)?(o=j,G(h)):N(h)?(e.consume(h),j):B(h)}function z(h){return h===null||h===60||h===61||h===62||h===96?t(h):h===34||h===39?(e.consume(h),i=h,$):P(h)?(o=z,G(h)):N(h)?(e.consume(h),z):(e.consume(h),W)}function $(h){return h===i?(e.consume(h),i=void 0,O):h===null?t(h):P(h)?(o=$,G(h)):(e.consume(h),$)}function W(h){return h===null||h===34||h===39||h===60||h===61||h===96?t(h):h===47||h===62||ne(h)?B(h):(e.consume(h),W)}function O(h){return h===47||h===62||ne(h)?B(h):t(h)}function J(h){return h===62?(e.consume(h),e.exit("htmlTextData"),e.exit("htmlText"),n):t(h)}function G(h){return e.exit("htmlTextData"),e.enter("lineEnding"),e.consume(h),e.exit("lineEnding"),ae}function ae(h){return N(h)?H(e,de,"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(h):de(h)}function de(h){return e.enter("htmlTextData"),o(h)}}const Bn={name:"labelEnd",tokenize:Oo,resolveTo:Lo,resolveAll:vo},Po={tokenize:Do},Ao={tokenize:Fo},To={tokenize:Mo};function vo(e){let n=-1;for(;++n=3&&(u===null||P(u))?(e.exit("thematicBreak"),n(u)):t(u)}function s(u){return u===i?(e.consume(u),r++,s):(e.exit("thematicBreakSequence"),N(u)?H(e,a,"whitespace")(u):a(u))}}const ee={name:"list",tokenize:Wo,continuation:{tokenize:Yo},exit:Xo},$o={tokenize:Go,partial:!0},Vo={tokenize:Qo,partial:!0};function Wo(e,n,t){const r=this,i=r.events[r.events.length-1];let l=i&&i[1].type==="linePrefix"?i[2].sliceSerialize(i[1],!0).length:0,o=0;return a;function a(p){const y=r.containerState.type||(p===42||p===43||p===45?"listUnordered":"listOrdered");if(y==="listUnordered"?!r.containerState.marker||p===r.containerState.marker:Cn(p)){if(r.containerState.type||(r.containerState.type=y,e.enter(y,{_container:!0})),y==="listUnordered")return e.enter("listItemPrefix"),p===42||p===45?e.check(Xe,t,u)(p):u(p);if(!r.interrupt||p===49)return e.enter("listItemPrefix"),e.enter("listItemValue"),s(p)}return t(p)}function s(p){return Cn(p)&&++o<10?(e.consume(p),s):(!r.interrupt||o<2)&&(r.containerState.marker?p===r.containerState.marker:p===41||p===46)?(e.exit("listItemValue"),u(p)):t(p)}function u(p){return e.enter("listItemMarker"),e.consume(p),e.exit("listItemMarker"),r.containerState.marker=r.containerState.marker||p,e.check(nn,r.interrupt?t:c,e.attempt($o,d,f))}function c(p){return r.containerState.initialBlankLine=!0,l++,d(p)}function f(p){return N(p)?(e.enter("listItemPrefixWhitespace"),e.consume(p),e.exit("listItemPrefixWhitespace"),d):t(p)}function d(p){return r.containerState.size=l+r.sliceSerialize(e.exit("listItemPrefix"),!0).length,n(p)}}function Yo(e,n,t){const r=this;return r.containerState._closeFlow=void 0,e.check(nn,i,l);function i(a){return r.containerState.furtherBlankLines=r.containerState.furtherBlankLines||r.containerState.initialBlankLine,H(e,n,"listItemIndent",r.containerState.size+1)(a)}function l(a){return r.containerState.furtherBlankLines||!N(a)?(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,o(a)):(r.containerState.furtherBlankLines=void 0,r.containerState.initialBlankLine=void 0,e.attempt(Vo,n,o)(a))}function o(a){return r.containerState._closeFlow=!0,r.interrupt=void 0,H(e,e.attempt(ee,n,t),"linePrefix",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4)(a)}}function Qo(e,n,t){const r=this;return H(e,i,"listItemIndent",r.containerState.size+1);function i(l){const o=r.events[r.events.length-1];return o&&o[1].type==="listItemIndent"&&o[2].sliceSerialize(o[1],!0).length===r.containerState.size?n(l):t(l)}}function Xo(e){e.exit(this.containerState.type)}function Go(e,n,t){const r=this;return H(e,i,"listItemPrefixWhitespace",r.parser.constructs.disable.null.includes("codeIndented")?void 0:4+1);function i(l){const o=r.events[r.events.length-1];return!N(l)&&o&&o[1].type==="listItemPrefixWhitespace"?n(l):t(l)}}const bt={name:"setextUnderline",tokenize:Jo,resolveTo:Ko};function Ko(e,n){let t=e.length,r,i,l;for(;t--;)if(e[t][0]==="enter"){if(e[t][1].type==="content"){r=t;break}e[t][1].type==="paragraph"&&(i=t)}else e[t][1].type==="content"&&e.splice(t,1),!l&&e[t][1].type==="definition"&&(l=t);const o={type:"setextHeading",start:Object.assign({},e[i][1].start),end:Object.assign({},e[e.length-1][1].end)};return e[i][1].type="setextHeadingText",l?(e.splice(i,0,["enter",o,n]),e.splice(l+1,0,["exit",e[r][1],n]),e[r][1].end=Object.assign({},e[l][1].end)):e[r][1]=o,e.push(["exit",o,n]),e}function Jo(e,n,t){const r=this;let i;return l;function l(u){let c=r.events.length,f;for(;c--;)if(r.events[c][1].type!=="lineEnding"&&r.events[c][1].type!=="linePrefix"&&r.events[c][1].type!=="content"){f=r.events[c][1].type==="paragraph";break}return!r.parser.lazy[r.now().line]&&(r.interrupt||f)?(e.enter("setextHeadingLine"),i=u,o(u)):t(u)}function o(u){return e.enter("setextHeadingLineSequence"),a(u)}function a(u){return u===i?(e.consume(u),a):(e.exit("setextHeadingLineSequence"),N(u)?H(e,s,"lineSuffix")(u):s(u))}function s(u){return u===null||P(u)?(e.exit("setextHeadingLine"),n(u)):t(u)}}const Zo={tokenize:ea};function ea(e){const n=this,t=e.attempt(nn,r,e.attempt(this.parser.constructs.flowInitial,i,H(e,e.attempt(this.parser.constructs.flow,i,e.attempt(io,i)),"linePrefix")));return t;function r(l){if(l===null){e.consume(l);return}return e.enter("lineEndingBlank"),e.consume(l),e.exit("lineEndingBlank"),n.currentConstruct=void 0,t}function i(l){if(l===null){e.consume(l);return}return e.enter("lineEnding"),e.consume(l),e.exit("lineEnding"),n.currentConstruct=void 0,t}}const na={resolveAll:wr()},ta=br("string"),ra=br("text");function br(e){return{tokenize:n,resolveAll:wr(e==="text"?ia:void 0)};function n(t){const r=this,i=this.parser.constructs[e],l=t.attempt(i,o,a);return o;function o(c){return u(c)?l(c):a(c)}function a(c){if(c===null){t.consume(c);return}return t.enter("data"),t.consume(c),s}function s(c){return u(c)?(t.exit("data"),l(c)):(t.consume(c),s)}function u(c){if(c===null)return!0;const f=i[c];let d=-1;if(f)for(;++d-1){const a=o[0];typeof a=="string"?o[0]=a.slice(r):o.shift()}l>0&&o.push(e[i].slice(0,l))}return o}function aa(e,n){let t=-1;const r=[];let i;for(;++t0){const ce=A.tokenStack[A.tokenStack.length-1];(ce[1]||_t).call(A,void 0,ce[0])}for(_.position={start:be(g.length>0?g[0][1].start:{line:1,column:1,offset:0}),end:be(g.length>0?g[g.length-2][1].end:{line:1,column:1,offset:0})},R=-1;++R1?"-"+a:""),dataFootnoteRef:!0,ariaDescribedBy:["footnote-label"]},children:[{type:"text",value:String(o)}]};e.patch(n,s);const u={type:"element",tagName:"sup",properties:{},children:[s]};return e.patch(n,u),e.applyData(n,u)}function Oa(e,n){const t={type:"element",tagName:"h"+n.depth,properties:{},children:e.all(n)};return e.patch(n,t),e.applyData(n,t)}function Da(e,n){if(e.options.allowDangerousHtml){const t={type:"raw",value:n.value};return e.patch(n,t),e.applyData(n,t)}}function Er(e,n){const t=n.referenceType;let r="]";if(t==="collapsed"?r+="[]":t==="full"&&(r+="["+(n.label||n.identifier)+"]"),n.type==="imageReference")return[{type:"text",value:"!["+n.alt+r}];const i=e.all(n),l=i[0];l&&l.type==="text"?l.value="["+l.value:i.unshift({type:"text",value:"["});const o=i[i.length-1];return o&&o.type==="text"?o.value+=r:i.push({type:"text",value:r}),i}function Fa(e,n){const t=String(n.identifier).toUpperCase(),r=e.definitionById.get(t);if(!r)return Er(e,n);const i={src:De(r.url||""),alt:n.alt};r.title!==null&&r.title!==void 0&&(i.title=r.title);const l={type:"element",tagName:"img",properties:i,children:[]};return e.patch(n,l),e.applyData(n,l)}function Ma(e,n){const t={src:De(n.url)};n.alt!==null&&n.alt!==void 0&&(t.alt=n.alt),n.title!==null&&n.title!==void 0&&(t.title=n.title);const r={type:"element",tagName:"img",properties:t,children:[]};return e.patch(n,r),e.applyData(n,r)}function Na(e,n){const t={type:"text",value:n.value.replace(/\r?\n|\r/g," ")};e.patch(n,t);const r={type:"element",tagName:"code",properties:{},children:[t]};return e.patch(n,r),e.applyData(n,r)}function Ra(e,n){const t=String(n.identifier).toUpperCase(),r=e.definitionById.get(t);if(!r)return Er(e,n);const i={href:De(r.url||"")};r.title!==null&&r.title!==void 0&&(i.title=r.title);const l={type:"element",tagName:"a",properties:i,children:e.all(n)};return e.patch(n,l),e.applyData(n,l)}function Ba(e,n){const t={href:De(n.url)};n.title!==null&&n.title!==void 0&&(t.title=n.title);const r={type:"element",tagName:"a",properties:t,children:e.all(n)};return e.patch(n,r),e.applyData(n,r)}function qa(e,n,t){const r=e.all(n),i=t?Ha(t):Cr(n),l={},o=[];if(typeof n.checked=="boolean"){const c=r[0];let f;c&&c.type==="element"&&c.tagName==="p"?f=c:(f={type:"element",tagName:"p",properties:{},children:[]},r.unshift(f)),f.children.length>0&&f.children.unshift({type:"text",value:" "}),f.children.unshift({type:"element",tagName:"input",properties:{type:"checkbox",checked:n.checked,disabled:!0},children:[]}),l.className=["task-list-item"]}let a=-1;for(;++a1}function Ua(e,n){const t={},r=e.all(n);let i=-1;for(typeof n.start=="number"&&n.start!==1&&(t.start=n.start);++i0){const o={type:"element",tagName:"tbody",properties:{},children:e.wrap(t,!0)},a=On(n.children[1]),s=lr(n.children[n.children.length-1]);a&&s&&(o.position={start:a,end:s}),i.push(o)}const l={type:"element",tagName:"table",properties:{},children:e.wrap(i,!0)};return e.patch(n,l),e.applyData(n,l)}function Qa(e,n,t){const r=t?t.children:void 0,l=(r?r.indexOf(n):1)===0?"th":"td",o=t&&t.type==="table"?t.align:void 0,a=o?o.length:n.children.length;let s=-1;const u=[];for(;++s0,!0),r[0]),i=r.index+r[0].length,r=t.exec(n);return l.push(Ct(n.slice(i),i>0,!1)),l.join("")}function Ct(e,n,t){let r=0,i=e.length;if(n){let l=e.codePointAt(r);for(;l===St||l===Et;)r++,l=e.codePointAt(r)}if(t){let l=e.codePointAt(i-1);for(;l===St||l===Et;)i--,l=e.codePointAt(i-1)}return i>r?e.slice(r,i):""}function Ka(e,n){const t={type:"text",value:Ga(String(n.value))};return e.patch(n,t),e.applyData(n,t)}function Ja(e,n){const t={type:"element",tagName:"hr",properties:{},children:[]};return e.patch(n,t),e.applyData(n,t)}const Za={blockquote:ja,break:Pa,code:Aa,delete:Ta,emphasis:va,footnoteReference:La,heading:Oa,html:Da,imageReference:Fa,image:Ma,inlineCode:Na,linkReference:Ra,link:Ba,listItem:qa,list:Ua,paragraph:$a,root:Va,strong:Wa,table:Ya,tableCell:Xa,tableRow:Qa,text:Ka,thematicBreak:Ja,toml:We,yaml:We,definition:We,footnoteDefinition:We};function We(){}const Ir=-1,tn=0,Je=1,Ze=2,qn=3,Hn=4,Un=5,$n=6,zr=7,jr=8,It=typeof self=="object"?self:globalThis,es=(e,n)=>{const t=(i,l)=>(e.set(l,i),i),r=i=>{if(e.has(i))return e.get(i);const[l,o]=n[i];switch(l){case tn:case Ir:return t(o,i);case Je:{const a=t([],i);for(const s of o)a.push(r(s));return a}case Ze:{const a=t({},i);for(const[s,u]of o)a[r(s)]=r(u);return a}case qn:return t(new Date(o),i);case Hn:{const{source:a,flags:s}=o;return t(new RegExp(a,s),i)}case Un:{const a=t(new Map,i);for(const[s,u]of o)a.set(r(s),r(u));return a}case $n:{const a=t(new Set,i);for(const s of o)a.add(r(s));return a}case zr:{const{name:a,message:s}=o;return t(new It[a](s),i)}case jr:return t(BigInt(o),i);case"BigInt":return t(Object(BigInt(o)),i)}return t(new It[l](o),i)};return r},zt=e=>es(new Map,e)(0),Ae="",{toString:ns}={},{keys:ts}=Object,Re=e=>{const n=typeof e;if(n!=="object"||!e)return[tn,n];const t=ns.call(e).slice(8,-1);switch(t){case"Array":return[Je,Ae];case"Object":return[Ze,Ae];case"Date":return[qn,Ae];case"RegExp":return[Hn,Ae];case"Map":return[Un,Ae];case"Set":return[$n,Ae]}return t.includes("Array")?[Je,t]:t.includes("Error")?[zr,t]:[Ze,t]},Ye=([e,n])=>e===tn&&(n==="function"||n==="symbol"),rs=(e,n,t,r)=>{const i=(o,a)=>{const s=r.push(o)-1;return t.set(a,s),s},l=o=>{if(t.has(o))return t.get(o);let[a,s]=Re(o);switch(a){case tn:{let c=o;switch(s){case"bigint":a=jr,c=o.toString();break;case"function":case"symbol":if(e)throw new TypeError("unable to serialize "+s);c=null;break;case"undefined":return i([Ir],o)}return i([a,c],o)}case Je:{if(s)return i([s,[...o]],o);const c=[],f=i([a,c],o);for(const d of o)c.push(l(d));return f}case Ze:{if(s)switch(s){case"BigInt":return i([s,o.toString()],o);case"Boolean":case"Number":case"String":return i([s,o.valueOf()],o)}if(n&&"toJSON"in o)return l(o.toJSON());const c=[],f=i([a,c],o);for(const d of ts(o))(e||!Ye(Re(o[d])))&&c.push([l(d),l(o[d])]);return f}case qn:return i([a,o.toISOString()],o);case Hn:{const{source:c,flags:f}=o;return i([a,{source:c,flags:f}],o)}case Un:{const c=[],f=i([a,c],o);for(const[d,p]of o)(e||!(Ye(Re(d))||Ye(Re(p))))&&c.push([l(d),l(p)]);return f}case $n:{const c=[],f=i([a,c],o);for(const d of o)(e||!Ye(Re(d)))&&c.push(l(d));return f}}const{message:u}=o;return i([a,{name:s,message:u}],o)};return l},jt=(e,{json:n,lossy:t}={})=>{const r=[];return rs(!(n||t),!!n,new Map,r)(e),r},en=typeof structuredClone=="function"?(e,n)=>n&&("json"in n||"lossy"in n)?zt(jt(e,n)):structuredClone(e):(e,n)=>zt(jt(e,n));function is(e,n){const t=[{type:"text",value:"↩"}];return n>1&&t.push({type:"element",tagName:"sup",properties:{},children:[{type:"text",value:String(n)}]}),t}function ls(e,n){return"Back to reference "+(e+1)+(n>1?"-"+n:"")}function os(e){const n=typeof e.options.clobberPrefix=="string"?e.options.clobberPrefix:"user-content-",t=e.options.footnoteBackContent||is,r=e.options.footnoteBackLabel||ls,i=e.options.footnoteLabel||"Footnotes",l=e.options.footnoteLabelTagName||"h2",o=e.options.footnoteLabelProperties||{className:["sr-only"]},a=[];let s=-1;for(;++s0&&y.push({type:"text",value:" "});let C=typeof t=="string"?t:t(s,p);typeof C=="string"&&(C={type:"text",value:C}),y.push({type:"element",tagName:"a",properties:{href:"#"+n+"fnref-"+d+(p>1?"-"+p:""),dataFootnoteBackref:"",ariaLabel:typeof r=="string"?r:r(s,p),className:["data-footnote-backref"]},children:Array.isArray(C)?C:[C]})}const I=c[c.length-1];if(I&&I.type==="element"&&I.tagName==="p"){const C=I.children[I.children.length-1];C&&C.type==="text"?C.value+=" ":I.children.push({type:"text",value:" "}),I.children.push(...y)}else c.push(...y);const w={type:"element",tagName:"li",properties:{id:n+"fn-"+d},children:e.wrap(c,!0)};e.patch(u,w),a.push(w)}if(a.length!==0)return{type:"element",tagName:"section",properties:{dataFootnotes:!0,className:["footnotes"]},children:[{type:"element",tagName:l,properties:{...en(o),id:"footnote-label"},children:[{type:"text",value:i}]},{type:"text",value:` -`},{type:"element",tagName:"ol",properties:{},children:e.wrap(a,!0)},{type:"text",value:` -`}]}}const Pr=function(e){if(e==null)return cs;if(typeof e=="function")return rn(e);if(typeof e=="object")return Array.isArray(e)?as(e):ss(e);if(typeof e=="string")return us(e);throw new Error("Expected function, string, or object as test")};function as(e){const n=[];let t=-1;for(;++t":""))+")"})}return d;function d(){let p=Ar,y,b,I;if((!n||l(s,u,c[c.length-1]||void 0))&&(p=ds(t(s,c)),p[0]===Pt))return p;if("children"in s&&s.children){const w=s;if(w.children&&p[0]!==hs)for(b=(r?w.children.length:-1)+o,I=c.concat(w);b>-1&&b0&&t.push({type:"text",value:` -`}),t}function At(e){let n=0,t=e.charCodeAt(n);for(;t===9||t===32;)n++,t=e.charCodeAt(n);return e.slice(n)}function Tt(e,n){const t=ys(e,n),r=t.one(e,void 0),i=os(t),l=Array.isArray(r)?{type:"root",children:r}:r||{type:"root",children:[]};return i&&l.children.push({type:"text",value:` -`},i),l}function _s(e,n){return e&&"run"in e?async function(t,r){const i=Tt(t,{file:r,...n});await e.run(i,r)}:function(t,r){return Tt(t,{file:r,...n||e})}}function vt(e){if(e)throw e}var Ge=Object.prototype.hasOwnProperty,vr=Object.prototype.toString,Lt=Object.defineProperty,Ot=Object.getOwnPropertyDescriptor,Dt=function(n){return typeof Array.isArray=="function"?Array.isArray(n):vr.call(n)==="[object Array]"},Ft=function(n){if(!n||vr.call(n)!=="[object Object]")return!1;var t=Ge.call(n,"constructor"),r=n.constructor&&n.constructor.prototype&&Ge.call(n.constructor.prototype,"isPrototypeOf");if(n.constructor&&!t&&!r)return!1;var i;for(i in n);return typeof i>"u"||Ge.call(n,i)},Mt=function(n,t){Lt&&t.name==="__proto__"?Lt(n,t.name,{enumerable:!0,configurable:!0,value:t.newValue,writable:!0}):n[t.name]=t.newValue},Nt=function(n,t){if(t==="__proto__")if(Ge.call(n,t)){if(Ot)return Ot(n,t).value}else return;return n[t]},Ss=function e(){var n,t,r,i,l,o,a=arguments[0],s=1,u=arguments.length,c=!1;for(typeof a=="boolean"&&(c=a,a=arguments[1]||{},s=2),(a==null||typeof a!="object"&&typeof a!="function")&&(a={});so.length;let s;a&&o.push(i);try{s=e.apply(this,o)}catch(u){const c=u;if(a&&t)throw c;return i(c)}a||(s&&s.then&&typeof s.then=="function"?s.then(l,i):s instanceof Error?i(s):l(s))}function i(o,...a){t||(t=!0,n(o,...a))}function l(o){i(null,o)}}const fe={basename:Is,dirname:zs,extname:js,join:Ps,sep:"/"};function Is(e,n){if(n!==void 0&&typeof n!="string")throw new TypeError('"ext" argument must be a string');Ve(e);let t=0,r=-1,i=e.length,l;if(n===void 0||n.length===0||n.length>e.length){for(;i--;)if(e.codePointAt(i)===47){if(l){t=i+1;break}}else r<0&&(l=!0,r=i+1);return r<0?"":e.slice(t,r)}if(n===e)return"";let o=-1,a=n.length-1;for(;i--;)if(e.codePointAt(i)===47){if(l){t=i+1;break}}else o<0&&(l=!0,o=i+1),a>-1&&(e.codePointAt(i)===n.codePointAt(a--)?a<0&&(r=i):(a=-1,r=o));return t===r?r=o:r<0&&(r=e.length),e.slice(t,r)}function zs(e){if(Ve(e),e.length===0)return".";let n=-1,t=e.length,r;for(;--t;)if(e.codePointAt(t)===47){if(r){n=t;break}}else r||(r=!0);return n<0?e.codePointAt(0)===47?"/":".":n===1&&e.codePointAt(0)===47?"//":e.slice(0,n)}function js(e){Ve(e);let n=e.length,t=-1,r=0,i=-1,l=0,o;for(;n--;){const a=e.codePointAt(n);if(a===47){if(o){r=n+1;break}continue}t<0&&(o=!0,t=n+1),a===46?i<0?i=n:l!==1&&(l=1):i>-1&&(l=-1)}return i<0||t<0||l===0||l===1&&i===t-1&&i===r+1?"":e.slice(i,t)}function Ps(...e){let n=-1,t;for(;++n0&&e.codePointAt(e.length-1)===47&&(t+="/"),n?"/"+t:t}function Ts(e,n){let t="",r=0,i=-1,l=0,o=-1,a,s;for(;++o<=e.length;){if(o2){if(s=t.lastIndexOf("/"),s!==t.length-1){s<0?(t="",r=0):(t=t.slice(0,s),r=t.length-1-t.lastIndexOf("/")),i=o,l=0;continue}}else if(t.length>0){t="",r=0,i=o,l=0;continue}}n&&(t=t.length>0?t+"/..":"..",r=2)}else t.length>0?t+="/"+e.slice(i+1,o):t=e.slice(i+1,o),r=o-i-1;i=o,l=0}else a===46&&l>-1?l++:l=-1}return t}function Ve(e){if(typeof e!="string")throw new TypeError("Path must be a string. Received "+JSON.stringify(e))}const vs={cwd:Ls};function Ls(){return"/"}function Pn(e){return!!(e!==null&&typeof e=="object"&&"href"in e&&e.href&&"protocol"in e&&e.protocol&&e.auth===void 0)}function Os(e){if(typeof e=="string")e=new URL(e);else if(!Pn(e)){const n=new TypeError('The "path" argument must be of type string or an instance of URL. Received `'+e+"`");throw n.code="ERR_INVALID_ARG_TYPE",n}if(e.protocol!=="file:"){const n=new TypeError("The URL must be of scheme file");throw n.code="ERR_INVALID_URL_SCHEME",n}return Ds(e)}function Ds(e){if(e.hostname!==""){const r=new TypeError('File URL host must be "localhost" or empty on darwin');throw r.code="ERR_INVALID_FILE_URL_HOST",r}const n=e.pathname;let t=-1;for(;++t0){let[p,...y]=c;const b=r[d][1];jn(b)&&jn(p)&&(p=cn(!0,b,p)),r[d]=[u,p,...y]}}}}const Rs=new Vn().freeze();function mn(e,n){if(typeof n!="function")throw new TypeError("Cannot `"+e+"` without `parser`")}function dn(e,n){if(typeof n!="function")throw new TypeError("Cannot `"+e+"` without `compiler`")}function gn(e,n){if(n)throw new Error("Cannot call `"+e+"` on a frozen processor.\nCreate a new processor first, by calling it: use `processor()` instead of `processor`.")}function Bt(e){if(!jn(e)||typeof e.type!="string")throw new TypeError("Expected node, got `"+e+"`")}function qt(e,n,t){if(!t)throw new Error("`"+e+"` finished async. Use `"+n+"` instead")}function Qe(e){return Bs(e)?e:new Lr(e)}function Bs(e){return!!(e&&typeof e=="object"&&"message"in e&&"messages"in e)}function qs(e){return typeof e=="string"||Hs(e)}function Hs(e){return!!(e&&typeof e=="object"&&"byteLength"in e&&"byteOffset"in e)}const Us="https://github.com/remarkjs/react-markdown/blob/main/changelog.md",Ht=[],Ut={allowDangerousHtml:!0},$s=/^(https?|ircs?|mailto|xmpp)$/i,Vs=[{from:"astPlugins",id:"remove-buggy-html-in-markdown-parser"},{from:"allowDangerousHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"allowNode",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowElement"},{from:"allowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"allowedElements"},{from:"disallowedTypes",id:"replace-allownode-allowedtypes-and-disallowedtypes",to:"disallowedElements"},{from:"escapeHtml",id:"remove-buggy-html-in-markdown-parser"},{from:"includeElementIndex",id:"#remove-includeelementindex"},{from:"includeNodeIndex",id:"change-includenodeindex-to-includeelementindex"},{from:"linkTarget",id:"remove-linktarget"},{from:"plugins",id:"change-plugins-to-remarkplugins",to:"remarkPlugins"},{from:"rawSourcePos",id:"#remove-rawsourcepos"},{from:"renderers",id:"change-renderers-to-components",to:"components"},{from:"source",id:"change-source-to-children",to:"children"},{from:"sourcePos",id:"#remove-sourcepos"},{from:"transformImageUri",id:"#add-urltransform",to:"urlTransform"},{from:"transformLinkUri",id:"#add-urltransform",to:"urlTransform"}];function Or(e){const n=e.allowedElements,t=e.allowElement,r=e.children||"",i=e.className,l=e.components,o=e.disallowedElements,a=e.rehypePlugins||Ht,s=e.remarkPlugins||Ht,u=e.remarkRehypeOptions?{...e.remarkRehypeOptions,...Ut}:Ut,c=e.skipHtml,f=e.unwrapDisallowed,d=e.urlTransform||Ws,p=Rs().use(za).use(s).use(_s,u).use(a),y=new Lr;typeof r=="string"&&(y.value=r);for(const C of Vs)Object.hasOwn(e,C.from)&&(""+C.from+(C.to?"use `"+C.to+"` instead":"remove it")+Us+C.id,void 0);const b=p.parse(y);let I=p.runSync(b,y);return i&&(I={type:"element",tagName:"div",properties:{className:i},children:I.type==="root"?I.children:[I]}),Tr(I,w),ll(I,{Fragment:S.Fragment,components:l,ignoreInvalidStyle:!0,jsx:S.jsx,jsxs:S.jsxs,passKeys:!0,passNode:!0});function w(C,E,D){if(C.type==="raw"&&D&&typeof E=="number")return c?D.children.splice(E,1):D.children[E]={type:"text",value:C.value},E;if(C.type==="element"){let v;for(v in an)if(Object.hasOwn(an,v)&&Object.hasOwn(C.properties,v)){const x=C.properties[v],M=an[v];(M===null||M.includes(C.tagName))&&(C.properties[v]=d(String(x||""),v,C))}}if(C.type==="element"){let v=n?!n.includes(C.tagName):o?o.includes(C.tagName):!1;if(!v&&t&&typeof E=="number"&&(v=!t(C,E,D)),v&&D&&typeof E=="number")return f&&C.children?D.children.splice(E,1,...C.children):D.children.splice(E,1),E}}}function Ws(e){const n=e.indexOf(":"),t=e.indexOf("?"),r=e.indexOf("#"),i=e.indexOf("/");return n<0||i>-1&&n>i||t>-1&&n>t||r>-1&&n>r||$s.test(e.slice(0,n))?e:""}const Dr=()=>{var n;const e=Tn();return(n=e==null?void 0:e.basics)!=null&&n.summary?S.jsxs("section",{...we.work,children:[S.jsx("h3",{...we.title,children:"About My Work"}),S.jsx(Or,{...we.content,children:e.basics.summary})]}):null};Dr.__docgenInfo={description:"",methods:[],displayName:"Work"};const Fr=()=>S.jsxs(X,{...Zn,children:[S.jsx(X.Header,{...Zn,...we.header}),S.jsx(Ke.Summary,{}),S.jsx(Ke.Work,{}),S.jsx(Ke.Code,{})]}),Ke=Object.assign(Fr,{Code:Qt,Summary:Xt,Work:Dr});Fr.__docgenInfo={description:"",methods:[],displayName:"Component"};const Ys=F("atm_cds50g_4cq6dl atm_9olwfu_1dbut50 atm_2d_1h2jir2"),Qs=F("atm_7l_75py1q atm_d2_19dr3t5"),Xs=F("atm_3f_lo0ptf atm_1xja3yw_1e3zypq atm_1daktdr_1kdmad9"),yn={root:Ys,header:Qs,link:Xs},$t={id:"people",title:"What People Say",subtitle:"I've worked with some remarkable people."},Mr=()=>{const e=Tn();if(!e)return null;const{references:n,basics:{profiles:t}}=e,r=t.find(l=>l.network==="LinkedIn"),i={};return n.forEach(({connection:l,image:o,name:a,reference:s,title:u},c)=>{l&&o&&a&&s&&u&&(i[c]=S.jsx(si,{quote:s,imageKey:o,name:a,title:u,subtitle:l},c))}),i.length===0?null:S.jsxs(X,{...$t,...yn.root,children:[S.jsx(X.Header,{...$t,...yn.header}),S.jsx(X.Divider,{}),S.jsx("div",{children:S.jsx(ai,{people:i})}),r?S.jsx(X.Link,{href:r.url,title:"View my LinkedIn Profile",...yn.link}):null]})};Mr.__docgenInfo={description:"",methods:[],displayName:"References"};const Gs=F("atm_d2_19dr3t5"),Ks={header:Gs},Vt={id:"career",name:"Career",title:"A Journey, Never a Destination",subtitle:"My most recent stops along the way."},Nr=()=>{const e=Tn();if(!e)return null;const{work:n}=e;return S.jsxs(X,{...Vt,children:[S.jsx(X.Header,{...Vt,...Ks.header}),S.jsx(X.Divider,{}),S.jsx(ui,{items:n.slice(0,6).map(t=>({id:t.key,title:t.name,subtitle:t.position,start:t.startDate,end:t.endDate,children:S.jsx(Or,{children:t.summary})}))}),S.jsx(X.Link,{href:"/resume",title:"View my resume"})]})};Nr.__docgenInfo={description:"",methods:[],displayName:"Timeline"};const Rr=()=>S.jsxs(S.Fragment,{children:[S.jsx(An.Timeline,{}),S.jsx(An.References,{})]}),An=Object.assign(Rr,{Timeline:Nr,References:Mr});Rr.__docgenInfo={description:"",methods:[],displayName:"Component"};const Js=e=>F("atm_bx_mszoox atm_cs_p0owkv atm_gq_1kwt7j8 atm_9r_jvygea atm_2m_1qred53 atm_2s_mgnkw2 atm_2w_1dfr4pj",{backgroundImage:e?`url(${e})`:"none"}),Zs=F("atm_c8_xoeuol atm_gq_vlbsmd atm_9s_1txwivl atm_ar_1sxnojn atm_mk_h2mmj6 atm_1vkvogr_p0owkv atm_16pkgaz_1e3zypq"),eu=F("atm_7l_11cnbga atm_g3_1088tx0"),nu=F("atm_c8_1ic6ef2 atm_cs_p0owkv atm_1vkvogr_p0owkv atm_16pkgaz_1e3zypq atm_g3_115vrgw atm_j6_tzyjqh"),tu=F("atm_gb_glywfm atm_9s_1ulexfb atm_67_1oqy291 atm_lo_vlbsmd"),ru=F("atm_c8_ihbmcz atm_9s_1o8liyq atm_h0_14mxdql atm_fr_mp7551 atm_1vkvogr_p0owkv atm_16pkgaz_qjldeo atm_1tu2z8c_1jy2km1 atm_1n00fxy_qjldeo atm_1938jqx_hytmuc atm_su35jk_glywfm atm_t9_angws6"),Te={header:Zs,root:Js,title:nu,list:tu,category:ru,date:eu},Br=({post:e})=>{const{link:n,timestamp:t,title:r,categories:i}=e,l=ci(t).format("MMMM Do, YYYY");return S.jsxs("article",{...Te.root(),children:[S.jsxs("header",{...Te.header,children:[S.jsx("h4",{...Te.title,children:S.jsx("a",{href:n,target:"_blank",rel:"noopener noreferrer",children:r})}),S.jsx("p",{...Te.date,children:l})]}),S.jsx("ul",{...Te.list,children:i.map(o=>S.jsx("li",{...Te.category,children:S.jsx("a",{href:`https://medium.com/tags/${o}`,target:"_blank",rel:"noopener noreferrer",children:o})},o))})]})};Br.__docgenInfo={description:"",methods:[],displayName:"Item",props:{post:{required:!0,tsType:{name:"MediumPost"},description:""}}};const iu=F("atm_d2_19dr3t5 atm_2d_17qlcpk"),lu=F("atm_9s_11p5wf0 atm_cx_1u6qs5w atm_dz_fsjm52 atm_d2_19dr3t5 atm_15tbgyc_1uykx69"),ou=F("atm_gq_6x4hiq"),xn={root:iu,content:lu,link:ou},Wt={id:"medium",name:"Medium",title:"My Drips to The Firehose.",subtitle:"Sometimes I like to post notes or thoughts. Opinions are always my own."},qr=()=>{const[e,n]=bn.useState(null);if(bn.useEffect(()=>{(async function(){const i=await pi(()=>import("./medium-9783450c.js"),[],import.meta.url);n(i)})()},[n,e]),!e)return null;const t=e.posts.slice(0,4).sort((r,i)=>i.timestamp-r.timestamp).map(r=>S.jsx(Hr.Item,{post:r},`${r.timestamp}`));return S.jsxs(X,{...Wt,...xn.root,children:[S.jsx(X.Header,{...Wt}),S.jsx(X.Divider,{}),S.jsx("div",{...xn.content,children:t}),S.jsx(X.Link,{href:"https://clintandrewhall.medium.com/",title:"My Medium Profile",...xn.link})]})},Hr=Object.assign(qr,{Item:Br});qr.__docgenInfo={description:"",methods:[],displayName:"Component"};const{icons:au}=fi,su=e=>F("atm_4b_e7rx8z atm_c8_xoeuol atm_1d1tj41_wwia0z atm_1qvy1jy_wwia0z atm_2m_1qred53 atm_2s_mgnkw2 atm_2w_1dfr4pj atm_66_nqa18y atm_6h_9pn27m atm_e2_idpfg4 atm_le_12itjgx atm_mk_h2mmj6 atm_rpxhym_tlke0l atm_1d086b6_idpfg4 atm_1pgouse_1mk1q13 atm_x889i_71gwbv atm_10se26a_1u6qs5w atm_1vdgmni_1yyfdc7 atm_ykquyf_stnw88 atm_1r2ou53_idpfg4 atm_r2k9ju_idpfg4 atm_18l3bzv_1osqo2v atm_1si07ny_1osqo2v atm_1y1f7d6_idpfg4 atm_1kn0ehe_r3uz5 atm_14l9q84_cs5v99 atm_ndsff1_yu0wz0 atm_xfztrr_6xdddb atm_nzdbrg_5h771z atm_137q18x_kb7nvz atm_sv5d0a_6xdddb atm_3ivw0w_kb7nvz atm_11oc8sf_1hws8f atm_13qtmmn_1kwt7j8",{backgroundImage:`url(${e})`}),uu=F("atm_6i_1hws8f atm_fq_1kwt7j8 atm_mk_stnw88 atm_wq_11wpgbn"),cu=F("atm_c8_ihbmcz atm_fr_1cae2rq atm_1d1tj41_xoeuol atm_bga720_ksd9it atm_1qvy1jy_wwia0z atm_19rbcd_1ec0omr atm_7l_75py1q atm_gq_14mxdql atm_t9_angws6"),pu=F("atm_fq_1kwt7j8 atm_g3_1kwt7j8 atm_n3_1kwt7j8 atm_tk_1kwt7j8 atm_1aurz3x_2bn2nk atm_1j8tcma_2bn2nk atm_d54vja_2bn2nk atm_s9tzh_2bn2nk atm_153utt0_1u6qs5w atm_ed30eo_1u6qs5w atm_bbe781_1u6qs5w atm_14acji8_1u6qs5w atm_7l_75py1q atm_bx_3wtidt atm_mk_stnw88 atm_wq_11wpgbn atm_16pkgaz_75py1q atm_1wb5007_lo0ptf atm_33iw2a_1h2jir2 atm_1gbh0st_1e3zypq atm_qhu8vb_1kdmad9"),fu=F("atm_c8_ihbmcz atm_fr_qgg85a atm_1d1tj41_xoeuol atm_bga720_1l3n1sn atm_1qvy1jy_wwia0z atm_19rbcd_9if4cy atm_58apsw_1ihcz36 atm_lkzyvl_lc3h atm_2ot00p_75py1q"),hu=F("atm_c8_ihbmcz atm_fr_qgg85a atm_1d1tj41_xoeuol atm_bga720_1l3n1sn atm_1qvy1jy_wwia0z atm_19rbcd_1kxotyt atm_bx_3wtidt atm_9s_1ulexfb atm_h3_1hws8f atm_l8_vlbsmd atm_r3_1h6ojuz atm_t9_angws6"),mu=F("atm_6i_1hws8f atm_mk_stnw88 atm_n3_1kwt7j8 atm_wq_11wpgbn"),du=F(au.link("atm_1d1tj41_wwia0z atm_1qvy1jy_1088tx0")),gu=F("atm_7l_75py1q atm_c8_xoeuol atm_e2_1u6qs5w atm_g3_1p60dq3 atm_vy_1u6qs5w atm_1d1tj41_xoeuol atm_1x7ix45_1p60dq3 atm_1j8tcma_6ymo8 atm_1x9u2s8_1p60dq3 atm_1qvy1jy_xoeuol atm_rgcu65_17t6ga4 atm_ed30eo_7u2p93 atm_1l114g_17t6ga4 atm_5j_1ssbidh atm_70_1vdnvzw atm_9s_1ulexfb atm_r3_1h6ojuz atm_15gk6f9_1h2jir2 atm_2pao7w_75py1q atm_101fxug_1kdmad9 atm_1mbeoba_1e3zypq"),pe={root:su,caption:pu,footer:mu,header:uu,title:cu,tags:fu,details:hu,projectLink:gu,linkIcon:du},Ur=({id:e})=>{const n=ii(e),t=li(n==null?void 0:n.cover,480);if(!n||!t)return null;const{caption:r,name:i,tags:l,website:o}=n;let a=null;o&&(a=S.jsx("a",{href:o,...pe.projectLink,title:"Link to external website",target:"_blank",children:S.jsx("i",{...pe.linkIcon})}));const s=(l||[]).map((u,c)=>bn.createElement(Jn,{...pe.tags,to:`/portfolio/${u.slug}`,key:u.slug},u.name+(c{const e=oi();return S.jsx("div",{...xu.root,children:e.map(n=>S.jsx(Ur,{id:n},n))})};$r.__docgenInfo={description:"",methods:[],displayName:"PortfolioGrid"};const ku=F("atm_2d_17qlcpk"),bu=F("atm_d2_19dr3t5"),wu=F("atm_d2_1cz9tj2"),kn={header:bu,content:wu,root:ku},Yt={id:"portfolio",name:"Portfolio",title:"Explore My Projects",subtitle:"Here are a few things I've worked on in my spare time."},Vr=()=>S.jsxs(X,{...Yt,...kn.root,children:[S.jsx(X.Header,{...Yt,...kn.header}),S.jsx(X.Divider,{}),S.jsx("div",{...kn.content,children:S.jsx($r,{})}),S.jsx(X.Link,{href:"/portfolio",title:"View my portfolio"})]});Vr.__docgenInfo={description:"",methods:[],displayName:"Portfolio"};const Wr=()=>S.jsxs(S.Fragment,{children:[S.jsx(Be.About,{}),S.jsx(Be.Portfolio,{}),S.jsx(Be.Career,{}),S.jsx(Be.Medium,{}),S.jsx(Be.Footer,{})]}),Be=Object.assign(Wr,{About:Ke,Career:An,Portfolio:Vr,Medium:Hr,Footer:ni});Wr.__docgenInfo={description:"",methods:[],displayName:"Component"};export{Be as H}; diff --git a/storybook-static/assets/home-99331cfb.css b/storybook-static/assets/home-99331cfb.css deleted file mode 100644 index c4346bd..0000000 --- a/storybook-static/assets/home-99331cfb.css +++ /dev/null @@ -1 +0,0 @@ -.atm_bx_18cx291.atm_bx_18cx291{font-family:var(--font-family-serif-regular)}.atm_c8_wwia0z.atm_c8_wwia0z{font-size:var(--font-size-step1)}.atm_g3_gsn3wn.atm_g3_gsn3wn{line-height:var(--spacing-step8)}.atm_hmh8cj_p4gng6.atm_hmh8cj_p4gng6 p{margin-bottom:var(--spacing-step4)}.atm_c8_1088tx0.atm_c8_1088tx0{font-size:var(--font-size-step2)}.atm_gq_p4gng6.atm_gq_p4gng6{margin-bottom:var(--spacing-step4)}.atm_7l_ubcz1x{color:var(--font-color-text)}.atm_g3_2bn2nk.atm_g3_2bn2nk{line-height:var(--spacing-step6)}.atm_hmh8cj_2bn2nk.atm_hmh8cj_2bn2nk p{margin-bottom:var(--spacing-step6)}@media (max-width: 600px){.atm_jmxia6_1cz9tj2.atm_jmxia6_1cz9tj2{grid-area:auto/1/auto/span 12}}.atm_d2_wjgj61{grid-area:auto/1/auto/span 6}.atm_d2_1orviuz{grid-area:auto/7/auto/span 6}.atm_cds50g_4cq6dl{--spacing-sectionTop:calc(var(--spacing-step8) * 2)}.atm_9olwfu_1dbut50{--spacing-sectionDivider:var(--spacing-step1)}.atm_2d_1h2jir2.atm_2d_1h2jir2{background-color:var(--color-dark)}.atm_3f_lo0ptf{border:2px solid var(--color-light)}.atm_1xja3yw_1e3zypq>a:hover,.atm_1xja3yw_1e3zypq>a:focus,.atm_1xja3yw_1e3zypq>a:active{color:var(--font-color-dark)}.atm_1daktdr_1kdmad9.atm_1daktdr_1kdmad9>a:hover,.atm_1daktdr_1kdmad9.atm_1daktdr_1kdmad9>a:focus,.atm_1daktdr_1kdmad9.atm_1daktdr_1kdmad9>a:active{background-color:var(--color-light)}.atm_bx_mszoox.atm_bx_mszoox{font-family:var(--font-family-sans-medium)}.atm_cs_p0owkv.atm_cs_p0owkv{font-weight:var(--font-weight-normal)}.atm_gq_1kwt7j8.atm_gq_1kwt7j8{margin-bottom:var(--spacing-step5)}.atm_9r_jvygea{direction:ltr}.atm_gq_vlbsmd.atm_gq_vlbsmd{margin-bottom:var(--spacing-step2)}.atm_9s_1txwivl{display:flex}.atm_ar_1sxnojn.atm_ar_1sxnojn{flex-direction:column-reverse}.atm_1vkvogr_p0owkv.atm_1vkvogr_p0owkv a{font-weight:var(--font-weight-normal)}.atm_16pkgaz_1e3zypq a{color:var(--font-color-dark)}.atm_7l_11cnbga{color:var(--font-color-accent)}.atm_g3_1088tx0.atm_g3_1088tx0{line-height:var(--font-size-step2)}.atm_c8_1ic6ef2.atm_c8_1ic6ef2{font-size:var(--font-size-step3)}.atm_g3_115vrgw.atm_g3_115vrgw{line-height:var(--font-size-step4)}.atm_j6_tzyjqh{min-height:calc(var(--font-size-step4) * 2)}.atm_gb_glywfm{list-style:none}.atm_67_1oqy291{border-top:1px solid var(--color-separator)}.atm_lo_vlbsmd.atm_lo_vlbsmd{padding-top:var(--spacing-step2)}.atm_9s_1o8liyq{display:inline-block}.atm_h0_14mxdql.atm_h0_14mxdql{margin-right:var(--spacing-step0)}.atm_fr_mp7551{letter-spacing:calc(var(--font-size-step0) * .14)}.atm_16pkgaz_qjldeo a{color:var(--font-color-medium)}.atm_1tu2z8c_1jy2km1 a:hover,.atm_1tu2z8c_1jy2km1 a:focus,.atm_1tu2z8c_1jy2km1 a:active{color:var(--font-color-link)}.atm_1n00fxy_qjldeo:after{color:var(--font-color-medium)}.atm_1938jqx_hytmuc:after{content:", "}.atm_su35jk_glywfm:last-child:after{display:none}.atm_cx_1u6qs5w{gap:var(--spacing-step9)}.atm_dz_fsjm52.atm_dz_fsjm52{grid-template-columns:repeat(2,1fr)}.atm_gq_6x4hiq.atm_gq_6x4hiq{margin-bottom:var(--spacing-sectionBottom)}.atm_c8_xoeuol.atm_c8_xoeuol{font-size:var(--font-size-step0)}@media (max-width: 975px) and (min-width: 600px){.atm_1d1tj41_wwia0z.atm_1d1tj41_wwia0z.atm_1d1tj41_wwia0z{font-size:var(--font-size-step1)}}@media (max-width: 600px){.atm_1qvy1jy_wwia0z.atm_1qvy1jy_wwia0z.atm_1qvy1jy_wwia0z{font-size:var(--font-size-step1)}}.atm_2m_1qred53.atm_2m_1qred53{background-position:50% 50%}.atm_2s_mgnkw2.atm_2s_mgnkw2{background-repeat:no-repeat}.atm_2w_1dfr4pj.atm_2w_1dfr4pj{background-size:cover}.atm_6h_9pn27m.atm_6h_9pn27m{border-width:0 1px 1px 0}.atm_e2_idpfg4{height:0}.atm_le_12itjgx.atm_le_12itjgx{padding-bottom:75%}.atm_mk_h2mmj6{position:relative}.atm_rpxhym_tlke0l a{cursor:pointer}.atm_1d086b6_idpfg4>p,.atm_1d086b6_idpfg4>footer{opacity:0}.atm_1pgouse_1mk1q13>p,.atm_1pgouse_1mk1q13>footer{transition:all .3s}.atm_x889i_71gwbv>p{top:var(--spacing-step7)}.atm_10se26a_1u6qs5w>footer{right:var(--spacing-step9)}.atm_1vdgmni_1yyfdc7:before,.atm_1vdgmni_1yyfdc7:after{content:""}.atm_ykquyf_stnw88:before,.atm_ykquyf_stnw88:after{position:absolute}.atm_1r2ou53_idpfg4:before,.atm_1r2ou53_idpfg4:after{top:0}.atm_r2k9ju_idpfg4:before,.atm_r2k9ju_idpfg4:after{left:0}.atm_18l3bzv_1osqo2v:before,.atm_18l3bzv_1osqo2v:after{width:100%}.atm_1si07ny_1osqo2v:before,.atm_1si07ny_1osqo2v:after{height:100%}.atm_1y1f7d6_idpfg4:before{opacity:0}.atm_1kn0ehe_r3uz5:before{background:#000}.atm_14l9q84_cs5v99:before{z-index:2}.atm_ndsff1_yu0wz0:before{transition:opacity .3s}.atm_xfztrr_6xdddb:after{opacity:.8}.atm_nzdbrg_5h771z:after{background:linear-gradient(to bottom,transparent 0%,#000 100%)}.atm_137q18x_kb7nvz:after{z-index:1}.atm_sv5d0a_6xdddb:hover:before{opacity:.8}.atm_3ivw0w_kb7nvz:hover>p,.atm_3ivw0w_kb7nvz:hover>footer{opacity:1}.atm_11oc8sf_1hws8f:hover>p{top:var(--spacing-step3)}.atm_13qtmmn_1kwt7j8:hover>footer{right:var(--spacing-step5)}.atm_6i_1hws8f{bottom:var(--spacing-step3)}.atm_fq_1kwt7j8{left:var(--spacing-step5)}.atm_mk_stnw88{position:absolute}.atm_wq_11wpgbn{z-index:3}.atm_c8_ihbmcz.atm_c8_ihbmcz{font-size:var(--font-size-stepN1)}.atm_fr_1cae2rq{letter-spacing:calc(var(--font-size-step1) * .1)}@media (max-width: 975px) and (min-width: 600px){.atm_1d1tj41_xoeuol.atm_1d1tj41_xoeuol.atm_1d1tj41_xoeuol{font-size:var(--font-size-step0)}}@media (max-width: 975px) and (min-width: 600px){.atm_bga720_ksd9it.atm_bga720_ksd9it{letter-spacing:calc(var(--font-size-step2) * .1)}}@media (max-width: 600px){.atm_19rbcd_1ec0omr.atm_19rbcd_1ec0omr{letter-spacing:calc(var(--font-size-step3) * .1)}}.atm_7l_75py1q{color:var(--font-color-light)}.atm_gq_14mxdql.atm_gq_14mxdql{margin-bottom:var(--spacing-step0)}.atm_t9_angws6{text-transform:uppercase}.atm_g3_1kwt7j8.atm_g3_1kwt7j8{line-height:var(--spacing-step5)}.atm_n3_1kwt7j8{right:var(--spacing-step5)}.atm_tk_1kwt7j8{top:var(--spacing-step5)}@media (max-width: 975px) and (min-width: 600px){.atm_1aurz3x_2bn2nk.atm_1aurz3x_2bn2nk{left:var(--spacing-step6)}}@media (max-width: 975px) and (min-width: 600px){.atm_1j8tcma_2bn2nk.atm_1j8tcma_2bn2nk.atm_1j8tcma_2bn2nk{line-height:var(--spacing-step6)}}@media (max-width: 975px) and (min-width: 600px){.atm_d54vja_2bn2nk.atm_d54vja_2bn2nk{right:var(--spacing-step6)}}@media (max-width: 975px) and (min-width: 600px){.atm_s9tzh_2bn2nk.atm_s9tzh_2bn2nk{top:var(--spacing-step6)}}@media (max-width: 600px){.atm_153utt0_1u6qs5w.atm_153utt0_1u6qs5w{left:var(--spacing-step9)}}@media (max-width: 600px){.atm_ed30eo_1u6qs5w.atm_ed30eo_1u6qs5w.atm_ed30eo_1u6qs5w{line-height:var(--spacing-step9)}}@media (max-width: 600px){.atm_bbe781_1u6qs5w.atm_bbe781_1u6qs5w{right:var(--spacing-step9)}}@media (max-width: 600px){.atm_14acji8_1u6qs5w.atm_14acji8_1u6qs5w{top:var(--spacing-step9)}}.atm_bx_3wtidt.atm_bx_3wtidt{font-family:var(--font-family-sans-regular)}.atm_16pkgaz_75py1q a{color:var(--font-color-light)}.atm_1wb5007_lo0ptf a{border:2px solid var(--color-light)}.atm_33iw2a_1h2jir2 a{background:var(--color-dark)}.atm_1gbh0st_1e3zypq a:hover{color:var(--font-color-dark)}.atm_qhu8vb_1kdmad9 a:hover{background:var(--color-light)}.atm_fr_qgg85a{letter-spacing:calc(var(--font-size-step1) * .08)}@media (max-width: 975px) and (min-width: 600px){.atm_bga720_1l3n1sn.atm_bga720_1l3n1sn{letter-spacing:calc(var(--font-size-step2) * .08)}}@media (max-width: 600px){.atm_19rbcd_9if4cy.atm_19rbcd_9if4cy{letter-spacing:calc(var(--font-size-step3) * .08)}}.atm_58apsw_1ihcz36>a{color:var(--font-color-dim)}.atm_lkzyvl_lc3h.atm_lkzyvl_lc3h>a{font-family:var(--font-family-sans-light)}.atm_2ot00p_75py1q>a:hover{color:var(--font-color-light)}@media (max-width: 600px){.atm_19rbcd_1kxotyt.atm_19rbcd_1kxotyt{letter-spacing:calc(var(--font-size-step4) * .08)}}.atm_9s_1ulexfb{display:block}.atm_h3_1hws8f.atm_h3_1hws8f{margin-top:var(--spacing-step3)}.atm_l8_vlbsmd{padding:var(--spacing-step2)}.atm_r3_1h6ojuz{text-align:center}@media (max-width: 600px){.atm_1qvy1jy_1088tx0.atm_1qvy1jy_1088tx0.atm_1qvy1jy_1088tx0{font-size:var(--font-size-step2)}}.atm_e2_1u6qs5w{height:var(--spacing-step9)}.atm_g3_1p60dq3.atm_g3_1p60dq3{line-height:calc(var(--spacing-step9) + var(--spacing-step0))}.atm_vy_1u6qs5w{width:var(--spacing-step9)}@media (max-width: 975px) and (min-width: 600px){.atm_1x7ix45_1p60dq3.atm_1x7ix45_1p60dq3{height:calc(var(--spacing-step9) + var(--spacing-step0))}}@media (max-width: 975px) and (min-width: 600px){.atm_1j8tcma_6ymo8.atm_1j8tcma_6ymo8.atm_1j8tcma_6ymo8{line-height:calc(calc(var(--spacing-step9) + var(--spacing-step0)) + var(--spacing-step0))}}@media (max-width: 975px) and (min-width: 600px){.atm_1x9u2s8_1p60dq3.atm_1x9u2s8_1p60dq3{width:calc(var(--spacing-step9) + var(--spacing-step0))}}@media (max-width: 600px){.atm_1qvy1jy_xoeuol.atm_1qvy1jy_xoeuol.atm_1qvy1jy_xoeuol{font-size:var(--font-size-step0)}}@media (max-width: 600px){.atm_rgcu65_17t6ga4.atm_rgcu65_17t6ga4{height:calc(var(--spacing-step9) + var(--spacing-step2))}}@media (max-width: 600px){.atm_ed30eo_7u2p93.atm_ed30eo_7u2p93.atm_ed30eo_7u2p93{line-height:calc(calc(var(--spacing-step9) + var(--spacing-step2)) + var(--spacing-step0))}}@media (max-width: 600px){.atm_1l114g_17t6ga4.atm_1l114g_17t6ga4{width:calc(var(--spacing-step9) + var(--spacing-step2))}}.atm_5j_1ssbidh{border-radius:50%}.atm_70_1vdnvzw{box-shadow:0 0 0 1px var(--color-light)}a.atm_15gk6f9_1h2jir2{background:var(--color-dark)}a.atm_2pao7w_75py1q{color:var(--font-color-light)}.atm_101fxug_1kdmad9.atm_101fxug_1kdmad9:hover,.atm_101fxug_1kdmad9.atm_101fxug_1kdmad9:active,.atm_101fxug_1kdmad9.atm_101fxug_1kdmad9:focus{background-color:var(--color-light)}.atm_1mbeoba_1e3zypq:hover,.atm_1mbeoba_1e3zypq:active,.atm_1mbeoba_1e3zypq:focus{color:var(--font-color-dark)}.atm_9s_11p5wf0{display:grid}.atm_4b_e7rx8z.atm_4b_e7rx8z{border-color:var(--color-grid)}.atm_66_nqa18y.atm_66_nqa18y{border-style:solid}.atm_6h_i0wpsi.atm_6h_i0wpsi{border-width:1px 0 0 1px}@media (max-width: 975px) and (min-width: 600px){.atm_wrp0xb_im575k.atm_wrp0xb_im575k.atm_wrp0xb_im575k{grid-template-columns:repeat(2,auto)}}@media (max-width: 600px){.atm_15tbgyc_1uykx69.atm_15tbgyc_1uykx69.atm_15tbgyc_1uykx69{grid-template-columns:repeat(1,auto)}}.atm_dz_7xtvoy.atm_dz_7xtvoy{grid-template-columns:repeat(3,auto)}.atm_1lzxfph_1txwivl>*{display:flex}.atm_1jfuaz_1bp4okc.atm_1jfuaz_1bp4okc>*{flex-direction:column}.atm_11qnwx8_1h6ojuz.atm_11qnwx8_1h6ojuz>*{align-items:center}.atm_121ikie_1h6ojuz.atm_121ikie_1h6ojuz>*{justify-content:center}.atm_gmbstt_kb7nvz.atm_gmbstt_kb7nvz>*{flex-grow:1}.atm_2d_17qlcpk.atm_2d_17qlcpk{background-color:var(--color-subtlest)}.atm_d2_19dr3t5{grid-area:auto/2/auto/span 10}.atm_d2_1cz9tj2{grid-area:auto/1/auto/span 12} diff --git a/storybook-static/assets/home.stories-76a60db0.js b/storybook-static/assets/home.stories-76a60db0.js deleted file mode 100644 index ece52f3..0000000 --- a/storybook-static/assets/home.stories-76a60db0.js +++ /dev/null @@ -1 +0,0 @@ -import{H as p}from"./home-75e16b3f.js";import"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";import"./section-925c1887.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./css-7708fb60.js";import"./index-9b15b185.js";/* empty css */import"./stats-06bdd3b3.js";import"./person-d27c7fee.js";import"./timeline_item-de0bfc23.js";import"./index-a8bd1a45.js";import"./index-5f347087.js";const S={title:"Pages/Home",component:p},o={};var r,t,m;o.parameters={...o.parameters,docs:{...(r=o.parameters)==null?void 0:r.docs,source:{originalSource:"{}",...(m=(t=o.parameters)==null?void 0:t.docs)==null?void 0:m.source}}};const $=["Home"];export{o as Home,$ as __namedExportsOrder,S as default}; diff --git a/storybook-static/assets/iconic-font-5bf9df03.woff b/storybook-static/assets/iconic-font-5bf9df03.woff deleted file mode 100644 index 0253e00..0000000 Binary files a/storybook-static/assets/iconic-font-5bf9df03.woff and /dev/null differ diff --git a/storybook-static/assets/icons.stories-499543be.js b/storybook-static/assets/icons.stories-499543be.js deleted file mode 100644 index 466c86f..0000000 --- a/storybook-static/assets/icons.stories-499543be.js +++ /dev/null @@ -1,7 +0,0 @@ -import{j as o}from"./jsx-runtime-d079401a.js";import{t as n}from"./css-7708fb60.js";import{t as i}from"./index-9b15b185.js";import"./index-f1f2c4b1.js";/* empty css */const u={title:"Theme/Icons"},{icons:c}=i,r={render:()=>o.jsx("ul",{children:o.jsx("li",{children:o.jsx("i",{...n(c.link())})})})};var s,e,t;r.parameters={...r.parameters,docs:{...(s=r.parameters)==null?void 0:s.docs,source:{originalSource:`{ - render: () =>
    -
  • - -
  • -
-}`,...(t=(e=r.parameters)==null?void 0:e.docs)==null?void 0:t.source}}};const x=["Icons"];export{r as Icons,x as __namedExportsOrder,u as default}; diff --git a/storybook-static/assets/iframe-33901838.js b/storybook-static/assets/iframe-33901838.js deleted file mode 100644 index ca1aa66..0000000 --- a/storybook-static/assets/iframe-33901838.js +++ /dev/null @@ -1 +0,0 @@ -import"../sb-preview/runtime.js";(function(){const _=document.createElement("link").relList;if(_&&_.supports&&_.supports("modulepreload"))return;for(const o of document.querySelectorAll('link[rel="modulepreload"]'))c(o);new MutationObserver(o=>{for(const e of o)if(e.type==="childList")for(const s of e.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&c(s)}).observe(document,{childList:!0,subtree:!0});function n(o){const e={};return o.integrity&&(e.integrity=o.integrity),o.referrerPolicy&&(e.referrerPolicy=o.referrerPolicy),o.crossOrigin==="use-credentials"?e.credentials="include":o.crossOrigin==="anonymous"?e.credentials="omit":e.credentials="same-origin",e}function c(o){if(o.ep)return;o.ep=!0;const e=n(o);fetch(o.href,e)}})();const E="modulepreload",O=function(r,_){return new URL(r,_).href},p={},t=function(_,n,c){if(!n||n.length===0)return _();const o=document.getElementsByTagName("link");return Promise.all(n.map(e=>{if(e=O(e,c),e in p)return;p[e]=!0;const s=e.endsWith(".css"),l=s?'[rel="stylesheet"]':"";if(!!c)for(let m=o.length-1;m>=0;m--){const a=o[m];if(a.href===e&&(!s||a.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${e}"]${l}`))return;const i=document.createElement("link");if(i.rel=s?"stylesheet":E,s||(i.as="script",i.crossOrigin=""),i.href=e,document.head.appendChild(i),s)return new Promise((m,a)=>{i.addEventListener("load",m),i.addEventListener("error",()=>a(new Error(`Unable to preload CSS for ${e}`)))})})).then(()=>_()).catch(e=>{const s=new Event("vite:preloadError",{cancelable:!0});if(s.payload=e,window.dispatchEvent(s),!s.defaultPrevented)throw e})},{createBrowserChannel:d}=__STORYBOOK_MODULE_CHANNELS__,{addons:R}=__STORYBOOK_MODULE_PREVIEW_API__,u=d({page:"preview"});R.setChannel(u);window.__STORYBOOK_ADDONS_CHANNEL__=u;window.CONFIG_TYPE==="DEVELOPMENT"&&(window.__STORYBOOK_SERVER_CHANNEL__=u);const f={"./src/.stories/components/corner.stories.tsx":async()=>t(()=>import("./corner.stories-83af811b.js"),["./corner.stories-83af811b.js","./stats-06bdd3b3.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./css-7708fb60.js","./stats-fb7fdfd6.css"],import.meta.url),"./src/.stories/components/footer.stories.tsx":async()=>t(()=>import("./footer.stories-ac175e20.js"),["./footer.stories-ac175e20.js","./section-925c1887.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./section-917efcef.css"],import.meta.url),"./src/.stories/components/grid.stories.tsx":async()=>t(()=>import("./grid.stories-4b882fa3.js"),["./grid.stories-4b882fa3.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./section-925c1887.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./section-917efcef.css","./use_dimensions-681fd32d.js","./grid.stories-c27b89fd.css"],import.meta.url),"./src/.stories/components/people_line.stories.tsx":async()=>t(()=>import("./people_line.stories-fa98c291.js"),["./people_line.stories-fa98c291.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./person-d27c7fee.js","./css-7708fb60.js","./use_people-750f5048.js","./person-a366bf46.css"],import.meta.url),"./src/.stories/components/section.stories.tsx":async()=>t(()=>import("./section.stories-28196df5.js"),["./section.stories-28196df5.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./section-925c1887.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./section-917efcef.css","./section.stories-45d5dfd2.css"],import.meta.url),"./src/.stories/components/stats.stories.tsx":async()=>t(()=>import("./stats.stories-d192274a.js"),["./stats.stories-d192274a.js","./stats-06bdd3b3.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./css-7708fb60.js","./stats-fb7fdfd6.css"],import.meta.url),"./src/.stories/components/timeline.stories.tsx":async()=>t(()=>import("./timeline.stories-5cade05a.js"),["./timeline.stories-5cade05a.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./timeline_item-de0bfc23.js","./use_logos-a2e54b12.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./timeline_item-71381e11.css"],import.meta.url),"./src/.stories/home/about.stories.tsx":async()=>t(()=>import("./about.stories-c130897c.js"),["./about.stories-c130897c.js","./home-75e16b3f.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./section-925c1887.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./section-917efcef.css","./stats-06bdd3b3.js","./stats-fb7fdfd6.css","./person-d27c7fee.js","./person-a366bf46.css","./timeline_item-de0bfc23.js","./timeline_item-71381e11.css","./index-a8bd1a45.js","./index-5f347087.js","./home-99331cfb.css"],import.meta.url),"./src/.stories/home/career.stories.tsx":async()=>t(()=>import("./career.stories-1630b46c.js"),["./career.stories-1630b46c.js","./home-75e16b3f.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./section-925c1887.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./section-917efcef.css","./stats-06bdd3b3.js","./stats-fb7fdfd6.css","./person-d27c7fee.js","./person-a366bf46.css","./timeline_item-de0bfc23.js","./timeline_item-71381e11.css","./index-a8bd1a45.js","./index-5f347087.js","./home-99331cfb.css"],import.meta.url),"./src/.stories/home/home.stories.tsx":async()=>t(()=>import("./home.stories-76a60db0.js"),["./home.stories-76a60db0.js","./home-75e16b3f.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./section-925c1887.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./section-917efcef.css","./stats-06bdd3b3.js","./stats-fb7fdfd6.css","./person-d27c7fee.js","./person-a366bf46.css","./timeline_item-de0bfc23.js","./timeline_item-71381e11.css","./index-a8bd1a45.js","./index-5f347087.js","./home-99331cfb.css"],import.meta.url),"./src/.stories/home/medium.stories.tsx":async()=>t(()=>import("./medium.stories-655994f6.js"),["./medium.stories-655994f6.js","./home-75e16b3f.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./section-925c1887.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./section-917efcef.css","./stats-06bdd3b3.js","./stats-fb7fdfd6.css","./person-d27c7fee.js","./person-a366bf46.css","./timeline_item-de0bfc23.js","./timeline_item-71381e11.css","./index-a8bd1a45.js","./index-5f347087.js","./home-99331cfb.css"],import.meta.url),"./src/.stories/home/portfolio.stories.tsx":async()=>t(()=>import("./portfolio.stories-1d1f2013.js"),["./portfolio.stories-1d1f2013.js","./home-75e16b3f.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./section-925c1887.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css","./section-917efcef.css","./stats-06bdd3b3.js","./stats-fb7fdfd6.css","./person-d27c7fee.js","./person-a366bf46.css","./timeline_item-de0bfc23.js","./timeline_item-71381e11.css","./index-a8bd1a45.js","./index-5f347087.js","./home-99331cfb.css"],import.meta.url),"./src/.stories/theme/font.stories.tsx":async()=>t(()=>import("./font.stories-d780e3c6.js"),["./font.stories-d780e3c6.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./font.stories-b075a0a6.css"],import.meta.url),"./src/.stories/theme/icons.stories.tsx":async()=>t(()=>import("./icons.stories-499543be.js"),["./icons.stories-499543be.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./css-7708fb60.js","./index-9b15b185.js","./index-fbed83c2.css","./ress-c6782271.css"],import.meta.url),"./src/.stories/theme/spacing.stories.tsx":async()=>t(()=>import("./spacing.stories-a4a71642.js"),["./spacing.stories-a4a71642.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./css-7708fb60.js","./use_dimensions-681fd32d.js","./use_logos-a2e54b12.js","./use_people-750f5048.js","./index-1c937141.js","./spacing.stories-b537dcc4.css"],import.meta.url)};async function T(r){return f[r]()}const{composeConfigs:L,PreviewWeb:I,ClientApi:D}=__STORYBOOK_MODULE_PREVIEW_API__,P=async(r=[])=>{const _=await Promise.all([r.at(0)??t(()=>import("./entry-preview-b0e5fce0.js"),["./entry-preview-b0e5fce0.js","./index-f1f2c4b1.js","./client-e941fabf.js","./index-5f347087.js"],import.meta.url),r.at(1)??t(()=>import("./entry-preview-docs-27249d0f.js"),["./entry-preview-docs-27249d0f.js","./isArray-03ed71c9.js","./index-f1f2c4b1.js","./index-356e4a49.js"],import.meta.url),r.at(2)??t(()=>import("./preview-2ff2accb.js"),["./preview-2ff2accb.js","./index-1b441bc2.js"],import.meta.url),r.at(3)??t(()=>import("./preview-344011ce.js"),[],import.meta.url),r.at(4)??t(()=>import("./preview-e085edad.js"),[],import.meta.url),r.at(5)??t(()=>import("./preview-9cbeee46.js"),["./preview-9cbeee46.js","./index-356e4a49.js"],import.meta.url),r.at(6)??t(()=>import("./preview-5435dc72.js"),[],import.meta.url),r.at(7)??t(()=>import("./preview-198e8472.js"),[],import.meta.url),r.at(8)??t(()=>import("./preview-a967b5ae.js"),["./preview-a967b5ae.js","./index-356e4a49.js"],import.meta.url),r.at(9)??t(()=>import("./preview-dfa23190.js"),[],import.meta.url),r.at(10)??t(()=>import("./preview-17d082ae.js"),[],import.meta.url),r.at(11)??t(()=>import("./preview-c9496878.js"),["./preview-c9496878.js","./jsx-runtime-d079401a.js","./index-f1f2c4b1.js","./css-7708fb60.js","./index-a8bd1a45.js","./index-5f347087.js","./preview-b7838eec.css","./ress-c6782271.css"],import.meta.url)]);return L(_)};window.__STORYBOOK_PREVIEW__=window.__STORYBOOK_PREVIEW__||new I(T,P);window.__STORYBOOK_STORY_STORE__=window.__STORYBOOK_STORY_STORE__||window.__STORYBOOK_PREVIEW__.storyStore;export{t as _}; diff --git a/storybook-static/assets/index-1b441bc2.js b/storybook-static/assets/index-1b441bc2.js deleted file mode 100644 index 5661e66..0000000 --- a/storybook-static/assets/index-1b441bc2.js +++ /dev/null @@ -1 +0,0 @@ -var d=Object.create,g=Object.defineProperty,j=Object.getOwnPropertyDescriptor,A=Object.getOwnPropertyNames,h=Object.getPrototypeOf,m=Object.prototype.hasOwnProperty,x=(r,e)=>()=>(e||r((e={exports:{}}).exports,e),e.exports),P=(r,e,i,u)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of A(e))!m.call(r,a)&&a!==i&&g(r,a,{get:()=>e[a],enumerable:!(u=j(e,a))||u.enumerable});return r},S=(r,e,i)=>(i=r!=null?d(h(r)):{},P(e||!r||!r.__esModule?g(i,"default",{value:r,enumerable:!0}):i,r)),U=x(r=>{Object.defineProperty(r,"__esModule",{value:!0}),r.isEqual=function(){var e=Object.prototype.toString,i=Object.getPrototypeOf,u=Object.getOwnPropertySymbols?function(a){return Object.keys(a).concat(Object.getOwnPropertySymbols(a))}:Object.keys;return function(a,c){return function f(t,n,o){var y,s,l,p=e.call(t),w=e.call(n);if(t===n)return!0;if(t==null||n==null)return!1;if(o.indexOf(t)>-1&&o.indexOf(n)>-1)return!0;if(o.push(t,n),p!=w||(y=u(t),s=u(n),y.length!=s.length||y.some(function(O){return!f(t[O],n[O],o)})))return!1;switch(p.slice(8,-1)){case"Symbol":return t.valueOf()==n.valueOf();case"Date":case"Number":return+t==+n||+t!=+t&&+n!=+n;case"RegExp":case"Function":case"String":case"Boolean":return""+t==""+n;case"Set":case"Map":y=t.entries(),s=n.entries();do if(!f((l=y.next()).value,s.next().value,o))return!1;while(!l.done);return!0;case"ArrayBuffer":t=new Uint8Array(t),n=new Uint8Array(n);case"DataView":t=new Uint8Array(t.buffer),n=new Uint8Array(n.buffer);case"Float32Array":case"Float64Array":case"Int8Array":case"Int16Array":case"Int32Array":case"Uint8Array":case"Uint16Array":case"Uint32Array":case"Uint8ClampedArray":case"Arguments":case"Array":if(t.length!=n.length)return!1;for(l=0;lr.map(e=>typeof e<"u").filter(Boolean).length,q=(r,e)=>{let{exists:i,eq:u,neq:a,truthy:c}=r;if(v([i,u,a,c])>1)throw new Error(`Invalid conditional test ${JSON.stringify({exists:i,eq:u,neq:a})}`);if(typeof u<"u")return(0,b.isEqual)(e,u);if(typeof a<"u")return!(0,b.isEqual)(e,a);if(typeof i<"u"){let f=typeof e<"u";return i?f:!f}return typeof c>"u"||c?!!e:!e},E=(r,e,i)=>{if(!r.if)return!0;let{arg:u,global:a}=r.if;if(v([u,a])!==1)throw new Error(`Invalid conditional value ${JSON.stringify({arg:u,global:a})}`);let c=u?e[u]:i[a];return q(r.if,c)},I=r=>r.toLowerCase().replace(/[ ’–—―′¿'`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi,"-").replace(/-+/g,"-").replace(/^-+/,"").replace(/-+$/,"");export{I as O,E as P}; diff --git a/storybook-static/assets/index-1c937141.js b/storybook-static/assets/index-1c937141.js deleted file mode 100644 index 12af0e3..0000000 --- a/storybook-static/assets/index-1c937141.js +++ /dev/null @@ -1,236 +0,0 @@ -import{R as e}from"./index-f1f2c4b1.js";const _=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("backstrokes-1-69aee90c.webp",import.meta.url).href},{format:"webp",width:1206,height:905,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("backstrokes-1-8c86196f.webp",import.meta.url).href}],E=Object.freeze(Object.defineProperty({__proto__:null,default:_},Symbol.toStringTag,{value:"Module"})),P=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("backstrokes-2-7690920e.webp",import.meta.url).href},{format:"webp",width:988,height:741,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("backstrokes-2-2ca3fdfb.webp",import.meta.url).href}],I=Object.freeze(Object.defineProperty({__proto__:null,default:P},Symbol.toStringTag,{value:"Module"})),j=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("backstrokes-3-5af379c4.webp",import.meta.url).href},{format:"webp",width:1280,height:960,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("backstrokes-3-59cfc769.webp",import.meta.url).href}],A=Object.freeze(Object.defineProperty({__proto__:null,default:j},Symbol.toStringTag,{value:"Module"})),S=[{format:"webp",width:480,height:371,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("bootstrapper-2-92c872bc.webp",import.meta.url).href},{format:"webp",width:1280,height:989,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("bootstrapper-2-a24d07e6.webp",import.meta.url).href}],x=Object.freeze(Object.defineProperty({__proto__:null,default:S},Symbol.toStringTag,{value:"Module"})),q=[{format:"webp",width:480,height:371,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("bootstrapper-3-e270e994.webp",import.meta.url).href},{format:"webp",width:1280,height:989,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("bootstrapper-3-b038474e.webp",import.meta.url).href}],M=Object.freeze(Object.defineProperty({__proto__:null,default:q},Symbol.toStringTag,{value:"Module"})),R=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("event-wall-1-d77a21c0.webp",import.meta.url).href},{format:"webp",width:1022,height:767,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("event-wall-1-7073feae.webp",import.meta.url).href}],T=Object.freeze(Object.defineProperty({__proto__:null,default:R},Symbol.toStringTag,{value:"Module"})),O=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("event-wall-2-3244c80a.webp",import.meta.url).href},{format:"webp",width:1023,height:767,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("event-wall-2-dfebf4bf.webp",import.meta.url).href}],L=Object.freeze(Object.defineProperty({__proto__:null,default:O},Symbol.toStringTag,{value:"Module"})),C=[{format:"webp",width:480,height:257,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("event-wall-3-bfbf4d4f.webp",import.meta.url).href},{format:"webp",width:1024,height:549,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("event-wall-3-aa1184c4.webp",import.meta.url).href}],W=Object.freeze(Object.defineProperty({__proto__:null,default:C},Symbol.toStringTag,{value:"Module"})),F=[{format:"webp",width:480,height:320,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("event-wall-4-1879960d.webp",import.meta.url).href},{format:"webp",width:1024,height:683,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("event-wall-4-5045388e.webp",import.meta.url).href}],U=Object.freeze(Object.defineProperty({__proto__:null,default:F},Symbol.toStringTag,{value:"Module"})),B=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-1-2a72182d.webp",import.meta.url).href},{format:"webp",width:667,height:500,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-1-c565ab25.webp",import.meta.url).href}],z=Object.freeze(Object.defineProperty({__proto__:null,default:B},Symbol.toStringTag,{value:"Module"})),D=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-2-df835393.webp",import.meta.url).href},{format:"webp",width:667,height:500,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-2-3a9c92ab.webp",import.meta.url).href}],$=Object.freeze(Object.defineProperty({__proto__:null,default:D},Symbol.toStringTag,{value:"Module"})),N=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-3-d39b60c6.webp",import.meta.url).href},{format:"webp",width:667,height:500,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-3-69a9a75d.webp",import.meta.url).href}],H=Object.freeze(Object.defineProperty({__proto__:null,default:N},Symbol.toStringTag,{value:"Module"})),V=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-4-5ad5c62b.webp",import.meta.url).href},{format:"webp",width:700,height:525,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-4-77dd807c.webp",import.meta.url).href}],G=Object.freeze(Object.defineProperty({__proto__:null,default:V},Symbol.toStringTag,{value:"Module"})),J=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-5-e5554dfd.webp",import.meta.url).href},{format:"webp",width:700,height:525,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("guess-friends-5-6cfa1855.webp",import.meta.url).href}],K=Object.freeze(Object.defineProperty({__proto__:null,default:J},Symbol.toStringTag,{value:"Module"})),Q=[{format:"webp",width:480,height:349,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-1-01e96e38.webp",import.meta.url).href},{format:"webp",width:1280,height:930,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-1-a41b25b6.webp",import.meta.url).href}],X=Object.freeze(Object.defineProperty({__proto__:null,default:Q},Symbol.toStringTag,{value:"Module"})),Y=[{format:"webp",width:480,height:342,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-2-a3c8f16c.webp",import.meta.url).href},{format:"webp",width:1280,height:912,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-2-920c6a11.webp",import.meta.url).href}],Z=Object.freeze(Object.defineProperty({__proto__:null,default:Y},Symbol.toStringTag,{value:"Module"})),ee=[{format:"webp",width:480,height:504,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-3-ae7b40d1.webp",import.meta.url).href},{format:"webp",width:1197,height:1256,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-3-6228e833.webp",import.meta.url).href}],te=Object.freeze(Object.defineProperty({__proto__:null,default:ee},Symbol.toStringTag,{value:"Module"})),oe=[{format:"webp",width:480,height:270,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-4-bd21b56a.webp",import.meta.url).href},{format:"webp",width:854,height:480,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-4-b7156763.webp",import.meta.url).href}],ae=Object.freeze(Object.defineProperty({__proto__:null,default:oe},Symbol.toStringTag,{value:"Module"})),re=[{format:"webp",width:480,height:270,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-5-41b7d4ff.webp",import.meta.url).href},{format:"webp",width:1278,height:718,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("metaphorically-5-c03c529f.webp",import.meta.url).href}],ne=Object.freeze(Object.defineProperty({__proto__:null,default:re},Symbol.toStringTag,{value:"Module"})),se=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("node-foursquare-1-479cb91a.webp",import.meta.url).href},{format:"webp",width:1222,height:917,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("node-foursquare-1-e5594ec6.webp",import.meta.url).href}],le=Object.freeze(Object.defineProperty({__proto__:null,default:se},Symbol.toStringTag,{value:"Module"})),ie=[{format:"webp",width:480,height:360,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("node-foursquare-2-b0aaf582.webp",import.meta.url).href},{format:"webp",width:1280,height:960,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("node-foursquare-2-5286ca29.webp",import.meta.url).href}],ce=Object.freeze(Object.defineProperty({__proto__:null,default:ie},Symbol.toStringTag,{value:"Module"})),he=[{format:"webp",width:480,height:256,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("node-foursquare-3-bd304798.webp",import.meta.url).href},{format:"webp",width:750,height:400,space:"srgb",channels:3,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:""+new URL("node-foursquare-3-2d7d719f.webp",import.meta.url).href}],pe=Object.freeze(Object.defineProperty({__proto__:null,default:he},Symbol.toStringTag,{value:"Module"})),de=[{format:"webp",width:480,height:366,space:"srgb",channels:4,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!0,src:""+new URL("bootstrapper-1-c983a82a.webp",import.meta.url).href},{format:"webp",width:1280,height:975,space:"srgb",channels:4,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!0,src:""+new URL("bootstrapper-1-e15883a1.webp",import.meta.url).href}],ue=Object.freeze(Object.defineProperty({__proto__:null,default:de},Symbol.toStringTag,{value:"Module"})),me=[{format:"webp",width:480,height:394,space:"srgb",channels:4,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!0,src:""+new URL("bootstrapper-4-20cf9d3b.webp",import.meta.url).href},{format:"webp",width:1170,height:961,space:"srgb",channels:4,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!0,src:""+new URL("bootstrapper-4-3164f0af.webp",import.meta.url).href}],fe=Object.freeze(Object.defineProperty({__proto__:null,default:me},Symbol.toStringTag,{value:"Module"})),ge=[{format:"webp",width:480,height:394,space:"srgb",channels:4,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!0,src:""+new URL("bootstrapper-5-d95d00ae.webp",import.meta.url).href},{format:"webp",width:1170,height:961,space:"srgb",channels:4,depth:"uchar",isProgressive:!1,hasProfile:!1,hasAlpha:!0,src:""+new URL("bootstrapper-5-920c0472.webp",import.meta.url).href}],we=Object.freeze(Object.defineProperty({__proto__:null,default:ge},Symbol.toStringTag,{value:"Module"})),be={id:"backstrokes",name:"Backstrok.es",caption:"Backstrok.es is a website for discovering where you've been on Foursquare and Swarm.",cover:"backstrokes-1",tags:[{name:"NodeJS",slug:"node"},{name:"Swarm",slug:"swarm"}],timestamp:1450224e3,website:"http://www.backstrok.es"},ye=`

Background

-

I attended SxSW in 2010, for the third time. As always, -there were a ton of things to see and do... but I found myself remembering -places from past trips to Austin. Things like:

-
    -
  • "where was that one place we went on Friday last year, with the ____
  • -
  • and the ____? Did we go to the ____-sponsored talk last time?
  • -
  • Where was that awesome restaurant where we met ____?"
  • -
-

With FOMO on my mind, those questions inevitably got answered, usually after a -lot of painful searching through memory, anecdote, blog and social media.

-

One night of the conference, I was wandering through Austin (keeping a weather -eye open for my next awesome experience), when I saw a very large group -gathering in the lobby of the Hilton.

-

I checked my Twitter feed, and I saw Dennis Crowley -of Foursquare had been tweeting -cryptic -messages hinting toward -some kind of "swimming" event.

-

I discovered that, every year at SxSW, the Foursquare guys would lie on their -backs and race across the lobby floor pushing with their feet and a making a -backstroking motion with their arms. It was hilarious.

-

Inspired by the shenanigans, I decided I would build a "memory" tool for social -media, and I would call it "Backstrokes"... allowing people to "swim back" -through their history.

-

The Project

-

Backstrok.es currently has one facet, the one that was -the most interesting to me at the time: trips to other cities. Using a home zip -code, Backstrok.es will organize checkins within a certain range of each other -into "trips", making it easy to list and recall the places you’ve been.

-

The code is now open-source -on my Github.  I update it as I have time.

-

Backstrokes Results View -Custom Parameters -Backstrokes Home

-

Colophon

-

Backstrok.es is built on Node.JS. It uses my -node-foursquare -library for working with the Swarm and Foursquare APIs. As a point of pride (and -to keep the hosting free), it uses no database: all data is retrieved and -organized on each page load.

-

Perhaps in the future I’ll use a database for "sharing" trips with your friends. -But for now, it's a useful tool when friends of mine are looking for -recommendations in cities I've visited.

-`,ve=[{level:"1",content:"Background"},{level:"1",content:"The Project"},{level:"1",content:"Colophon"}],ke=function(t){return Object.keys(t).forEach(function(r){t[r]}),e.createElement("div",null,e.createElement("h1",null,"Background"),e.createElement("p",null,"I attended ",e.createElement("a",{href:"http://www.sxsw.com/"},"SxSW")," in 2010, for the third time. As always, there were a ton of things to see and do... but I found myself remembering places from past trips to Austin. Things like:"),e.createElement("ul",null,e.createElement("li",null,'"where was that one place we went on Friday last year, with the ',e.createElement("strong",null,"____")),e.createElement("li",null,"and the ",e.createElement("strong",null,"____"),"? Did we go to the ",e.createElement("strong",null,"____"),"-sponsored talk last time?"),e.createElement("li",null,"Where was that awesome restaurant where we met ",e.createElement("strong",null,"____"),'?"')),e.createElement("p",null,"With FOMO on my mind, those questions inevitably got answered, usually after a lot of painful searching through memory, anecdote, blog and social media."),e.createElement("p",null,"One night of the conference, I was wandering through Austin (keeping a weather eye open for my next awesome experience), when I saw a ",e.createElement("em",null,"very")," large group gathering in the lobby of the Hilton."),e.createElement("p",null,"I checked my Twitter feed, and I saw ",e.createElement("a",{href:"http://denniscrowley.com/"},"Dennis Crowley"),"of Foursquare had been tweeting",e.createElement("a",{href:"http://www.twitter.com/dens/status/47559270732009472"},"cryptic"),e.createElement("a",{href:"http://www.twitter.com/dens/status/47539944884932609"},"messages"),' hinting toward some kind of "swimming" event.'),e.createElement("p",null,"I discovered that, every year at SxSW, the Foursquare guys would lie on their backs and race across the lobby floor pushing with their feet and a making a backstroking motion with their arms. It was hilarious."),e.createElement("p",null,'Inspired by the shenanigans, I decided I would build a "memory" tool for social media, and I would call it "Backstrokes"... allowing people to "swim back" through their history.'),e.createElement("h1",null,"The Project"),e.createElement("p",null,e.createElement("a",{href:"http://backstrok.es/"},"Backstrok.es"),' currently has one facet, the one that was the most interesting to me at the time: trips to other cities. Using a home zip code, Backstrok.es will organize checkins within a certain range of each other into "trips", making it easy to list and recall the places you’ve been.'),e.createElement("p",null,"The code is now ",e.createElement("a",{href:"https://github.com/clintandrewhall/backstrok.es"},"open-source"),"on ",e.createElement("a",{href:"https://github.com/clintandrewhall"},"my Github"),".  I update it as I have time."),e.createElement("p",null,e.createElement("img",{src:"/images/portfolio/backstrokes-1.jpg",alt:"Backstrokes Results View"}),e.createElement("img",{src:"/images/portfolio/backstrokes-2.jpg",alt:"Custom Parameters"}),e.createElement("img",{src:"/images/portfolio/backstrokes-3.jpg",alt:"Backstrokes Home"})),e.createElement("h1",null,"Colophon"),e.createElement("p",null,"Backstrok.es is built on Node.JS. It uses my",e.createElement("a",{href:"http://www.clintandrewhall.com/portfolio/node-foursquare"},"node-foursquare"),"library for working with the Swarm and Foursquare APIs. As a point of pride (and to keep the hosting free), it uses no database: all data is retrieved and organized on each page load."),e.createElement("p",null,`Perhaps in the future I’ll use a database for "sharing" trips with your friends. But for now, it's a useful tool when friends of mine are looking for recommendations in cities I've visited.`))},_e=Object.freeze(Object.defineProperty({__proto__:null,ReactComponent:ke,attributes:be,html:ye,toc:ve},Symbol.toStringTag,{value:"Module"})),Ee={id:"event-wall",name:"Event Photo Wall",caption:"My Event Wall is an open-source art installation used to project photos uploaded to a Facebook Event in real time.",cover:"event-wall-1",tags:[{name:"NodeJS",slug:"node"},{name:"Facebook",slug:"facebook"}],timestamp:1471203e3,website:"https://www.github.com/clintandrewhall/photo-wall"},Pe=`

Background

-

In 2010 I volunteered to help organize Party Arty, the annual fundraising event -for the Young Friends of Art for the Nelson-Atkins Museum in Kansas City. During -the planning, it occurred to me that there was an opportunity to experiment with -some art of my own: displaying live pictures taken that evening.

-

My feature list was extensive (and a bit challenging): since we would have -several photographers on site taking photos, I decided to use Eye-Fi cards to -upload those photos to a server as they were taken. Once stored and processed, -we could use a web interface on an iPad/iPhone to approve photos and send them -to the photo wall.

-

2010 Version

-

Watch a Video Demo

-

As it turned out, the Eye-Fi cards on the museum’s wireless network were slow -getting photos to the server. With a bit of behind-the-scenes live-hacking, I -was able to use the photographers' memory cards directly to get new photos up on -the wall. Event organizers and attendees absolutely loved it!

-

2015 Version

-

My Photo Wall kept evolving for various friends' events until, in 2015, I had an -event of my own: my wedding to my wife, Olivia.

-

By then, I had been working for Facebook for three years. It occurred to me that -I could source the photos from a Facebook Event or Group far easier than -coordinate downloading images from a card or phone... plus, I could make it -refresh the moment it was posted!

-

I refactored and open-sourced the code to it's current iteration: a -live-updating display of photos posted to a Facebook wall. It doesn't even -require a server: the page is static and can be run from a hard drive or -Dropbox.

-

Masonry View -Polaroid View -A photo from our reception -A photo from our reception

-

Colophon

-

The first version was a full-screen instance of Chrome using CSS3 transitions -and animations to display the normalized photos. Using Node’s async nature, I -was able to process photos very quickly, (I even experimented with facial -recognition to properly “center” faces!). I used Socket.io to create real-time -posts to the wall– essentially, the admins approvals on the iPad or iPhone would -“fly up” into the “Recent Photos” queue beneath the display.

-

The second version removed all of those dependencies, opting instead for a -polling call to a Facebook GraphQL URL. The creator need only issue themselves -a long-access token and specify the Facebook ID of the Event they want to -display.

-`,Ie=[{level:"1",content:"Background"},{level:"1",content:"2010 Version"},{level:"1",content:"2015 Version"},{level:"1",content:"Colophon"}],je=function(t){return Object.keys(t).forEach(function(r){t[r]}),e.createElement("div",null,e.createElement("h1",null,"Background"),e.createElement("p",null,"In 2010 I volunteered to help organize Party Arty, the annual fundraising event for the Young Friends of Art for the Nelson-Atkins Museum in Kansas City. During the planning, it occurred to me that there was an opportunity to experiment with some art of my own: displaying live pictures taken that evening."),e.createElement("p",null,"My feature list was extensive (and a bit challenging): since we would have several photographers on site taking photos, I decided to use Eye-Fi cards to upload those photos to a server as they were taken. Once stored and processed, we could use a web interface on an iPad/iPhone to approve photos and send them to the photo wall."),e.createElement("h1",null,"2010 Version"),e.createElement("p",null,e.createElement("a",{href:"http://www.youtube.com/watch?v=VZLN7TtUVx4"},"Watch a Video Demo")),e.createElement("p",null,"As it turned out, the Eye-Fi cards on the museum’s wireless network were slow getting photos to the server. With a bit of behind-the-scenes live-hacking, I was able to use the photographers' memory cards directly to get new photos up on the wall. Event organizers and attendees absolutely loved it!"),e.createElement("h1",null,"2015 Version"),e.createElement("p",null,"My Photo Wall kept evolving for various friends' events until, in 2015, I had an event of my own: my wedding to my wife, Olivia."),e.createElement("p",null,"By then, I had been working for Facebook for three years. It occurred to me that I could source the photos from a Facebook Event or Group far easier than coordinate downloading images from a card or phone... plus, I could make it refresh the moment it was posted!"),e.createElement("p",null,"I refactored and open-sourced the code to it's current iteration: a live-updating display of photos posted to a Facebook wall. It doesn't even require a server: the page is static and can be run from a hard drive or Dropbox."),e.createElement("p",null,e.createElement("img",{src:"/images/portfolio/event-wall-1.jpg",alt:"Masonry View"}),e.createElement("img",{src:"/images/portfolio/event-wall-2.jpg",alt:"Polaroid View"}),e.createElement("img",{src:"/images/portfolio/event-wall-3.jpg",alt:"A photo from our reception"}),e.createElement("img",{src:"/images/portfolio/event-wall-4.jpg",alt:"A photo from our reception"})),e.createElement("h1",null,"Colophon"),e.createElement("p",null,"The first version was a full-screen instance of Chrome using CSS3 transitions and animations to display the normalized photos. Using Node’s async nature, I was able to process photos very quickly, (I even experimented with facial recognition to properly “center” faces!). I used Socket.io to create real-time posts to the wall– essentially, the admins approvals on the iPad or iPhone would “fly up” into the “Recent Photos” queue beneath the display."),e.createElement("p",null,"The second version removed all of those dependencies, opting instead for a polling call to a Facebook GraphQL URL. The creator need only issue themselves a long-access token and specify the Facebook ID of the Event they want to display."))},Ae=Object.freeze(Object.defineProperty({__proto__:null,ReactComponent:je,attributes:Ee,html:Pe,toc:Ie},Symbol.toStringTag,{value:"Module"})),Se={id:"guess-friends",name:"Guess Friends",caption:"Guess Friends was a website a few friends and I wrote for the first Node Knockout.",cover:"guess-friends-2",tags:[{name:"NodeJS",slug:"node"},{name:"Node Knockout",slug:"node-knockout"}],timestamp:1313020800},xe=`

Background

-

In 2010, I signed up for the first annual Node -Knockout, a 48-hour coding competition where -teams of up to 4 people could create any app they wanted on the Node.JS server. -It was a lot of fun, and I learned a lot about Node… but we definitely bit off -more than we could chew. With lessons learned and more time in the Node world, I -was raring to go for Node Knockout 2011.

-

I recruited what my friends called a "Dream -Team" of -geeks: designer Jacob McDaniel and -developers Steven Chau and Mike -Hemesath. After many Monday Geek Night -hashing out what we would build, we decided on a classic childhood game that had -yet to be recreated in the social media space: Guess -Who.

-

Welcome Screen -Game Board -Lobby -Node Knockout Project Page

-

Implementation

-

We knew from talking to our friends and fellow geeks that using mutual Facebook -friends as the “tiles” would give us the greatest traction, (and the most fun -gaming experience). We also decided to use Pusher to -give it some async love. Jacob tackled the user experience and I took on most of -the core experience code. Mike and Steven took on the new Pusher API and some of -the custom Connect middleware. Mike also served as our deployment ninja, keeping -our Heroku instance healthy and happy. Steven even got a custom cache out on -Amazon for the Facebook images.

-

Results

-

In the end, our entry -ended up in the top 10% of entries in all -categories. Judges and users alike loved the -design and concept, and our friends were delighted to play. Had we had more -time, we could have gotten a lot more done: notifications, mobile, invites, etc. -We’re still planning some enhancements, (as soon as we have some time, that is!)

-`,qe=[{level:"1",content:"Background"},{level:"1",content:"Implementation"},{level:"1",content:"Results"}],Me=function(t){return Object.keys(t).forEach(function(r){t[r]}),e.createElement("div",null,e.createElement("h1",null,"Background"),e.createElement("p",null,"In 2010, I signed up for the first annual ",e.createElement("a",{href:"http://www.nodeknockout.com/"},"Node Knockout"),", a 48-hour coding competition where teams of up to 4 people could create any app they wanted on the Node.JS server. It was a lot of fun, and I learned ",e.createElement("em",null,"a lot")," about Node… but we definitely bit off more than we could chew. With lessons learned and more time in the Node world, I was raring to go for Node Knockout 2011."),e.createElement("p",null,'I recruited what my friends called a "',e.createElement("a",{href:"http://www.twitter.com/clintandrewhall/status/107130172192473088"},"Dream Team"),'" of geeks: designer ',e.createElement("a",{href:"http://www.twitter.com/designbyjm"},"Jacob McDaniel")," and developers ",e.createElement("a",{href:"http://www.twitter.com/whereisciao"},"Steven Chau")," and ",e.createElement("a",{href:"http://www.twitter.com/codegrappler"},"Mike Hemesath"),". After many Monday Geek Night hashing out what we would build, we decided on a classic childhood game that had yet to be recreated in the social media space: ",e.createElement("a",{href:"http://www.hasbro.com/games/en_US/guess-who/"},"Guess Who"),"."),e.createElement("p",null,e.createElement("img",{src:"/images/portfolio/guess-friends-1.jpg",alt:"Welcome Screen"}),e.createElement("img",{src:"/images/portfolio/guess-friends-2.jpg",alt:"Game Board"}),e.createElement("img",{src:"/images/portfolio/guess-friends-3.jpg",alt:"Lobby"}),e.createElement("img",{src:"/images/portfolio/guess-friends-4.jpg",alt:"Node Knockout Project Page"})),e.createElement("h1",null,"Implementation"),e.createElement("p",null,"We knew from talking to our friends and fellow geeks that using mutual Facebook friends as the “tiles” would give us the greatest traction, (and the most fun gaming experience). We also decided to use ",e.createElement("a",{href:"http://www.pusher.com/"},"Pusher")," to give it some async love. Jacob tackled the user experience and I took on most of the core experience code. Mike and Steven took on the new Pusher API and some of the custom Connect middleware. Mike also served as our deployment ninja, keeping our Heroku instance healthy and happy. Steven even got a custom cache out on Amazon for the Facebook images."),e.createElement("h1",null,"Results"),e.createElement("p",null,"In the end, ",e.createElement("a",{href:"http://nodeknockout.com/teams/kansas-city-geek-nig"},"our entry"),"ended up in the top 10% of entries in ",e.createElement("a",{href:"http://nodeknockout.com/entries"},"all categories"),". Judges and users alike loved the design and concept, and our friends were delighted to play. Had we had more time, we could have gotten a lot more done: notifications, mobile, invites, etc. We’re still planning some enhancements, (as soon as we have some time, that is!)"))},Re=Object.freeze(Object.defineProperty({__proto__:null,ReactComponent:Me,attributes:Se,html:xe,toc:qe},Symbol.toStringTag,{value:"Module"})),Te={id:"metaphorically",name:"Metaphorical.ly",caption:"My TEDx talk detailing an attempt to redefine how people perceive technology.",cover:"metaphorically-1",tags:[{name:"TEDX",slug:"tedx"},{name:"Web",slug:"web"}],timestamp:1414195200},Oe=`

Background

-

While I was living in Vancouver, BC, TEDxRenfrewCollingwood announced a call for -presentations. I've always been interested in how people perceive technology, -particularly tech people usually don't understand. I've written -before -about it, so I decided to -audition with a few -notes -from my previous writings.

-

My TEDx Audition

-

I argued that because software engineers, (and, moreso, salespeople), offer -their wares in "magical" terms, it's becoming more and more impossible for -people to remain safe and productive. We often use new gadgets and systems -without really understanding how they work, what they're storing about us, how -to stay private and safe, etc.

-

In short, technology understanding people has trumped people understanding -technology. And what is art and science has become sorcery and alchemy.

-

I was accepted to -speak and quickly -set to work honing a talk that would speak to this concept, but also try to -solve the problem in some way.

-

Results

-

I created an open-source -project called -"metaphorical.ly", which gathers metaphors from geeks -all over the world to explain obtuse technological concepts to anyone interested -in knowing how they work. I then prepared and gave my talk at -TEDxRenfrewCollingwood.

-

My TEDx Talk: Metaphorically

-

A screenshot from the site -A screenshot from the site -Metaphorically on Facebook

-`,Le=[{level:"1",content:"Background"},{level:"1",content:"Results"}],Ce=function(t){return Object.keys(t).forEach(function(r){t[r]}),e.createElement("div",null,e.createElement("h1",null,"Background"),e.createElement("p",null,"While I was living in Vancouver, BC, TEDxRenfrewCollingwood announced a call for presentations. I've always been interested in how people perceive technology, particularly tech people usually don't understand. I've ",e.createElement("a",{href:"https://medium.com/@clintandrewhall/neither-sorcery-nor-alchemy-304691d1fb7c"},"written before"),"about it, so I decided to",e.createElement("a",{href:"https://www.youtube.com/watch?v=27t9pvCVef4"},"audition")," with ",e.createElement("a",{href:"https://medium.com/@clintandrewhall/neither-sorcerers-nor-alchemists-80b7cd66ce15"},"a few notes"),"from my previous writings."),e.createElement("p",null,e.createElement("a",{href:"https://youtu.be/27t9pvCVef4?t=29s",title:"My TEDx Audition"},e.createElement("img",{src:"/images/portfolio/metaphorically-4.jpg",alt:"My TEDx Audition"}))),e.createElement("p",null,`I argued that because software engineers, (and, moreso, salespeople), offer their wares in "magical" terms, it's becoming more and more impossible for people to remain safe and productive. We often use new gadgets and systems without really understanding how they work, what they're storing about us, how to stay private and safe, etc.`),e.createElement("p",null,"In short, technology understanding people has trumped people understanding technology. And what is art and science has become sorcery and alchemy."),e.createElement("p",null,"I was ",e.createElement("a",{href:"http://tedxrenfrewcollingwood.com/speaker-2014/clint-hall"},"accepted to speak")," and quickly set to work honing a talk that would speak to this concept, but also try to solve the problem in some way."),e.createElement("h1",null,"Results"),e.createElement("p",null,"I created an ",e.createElement("a",{href:"https://github.com/clintandrewhall/metaphorically"},"open-source project"),' called "',e.createElement("a",{href:"http://metaphorical.ly/"},"metaphorical.ly"),'", which gathers metaphors from geeks all over the world to explain obtuse technological concepts to anyone interested in knowing how they work. I then prepared and gave my talk at TEDxRenfrewCollingwood.'),e.createElement("p",null,e.createElement("a",{href:"https://youtu.be/IwjLylj6GpI?t=29s",title:"My TEDx Talk: Metaphorically"},e.createElement("img",{src:"/images/portfolio/metaphorically-5.jpg",alt:"My TEDx Talk: Metaphorically"}))),e.createElement("p",null,e.createElement("img",{src:"/images/portfolio/metaphorically-1.jpg",alt:"A screenshot from the site"}),e.createElement("img",{src:"/images/portfolio/metaphorically-2.jpg",alt:"A screenshot from the site"}),e.createElement("img",{src:"/images/portfolio/metaphorically-3.jpg",alt:"Metaphorically on Facebook"})))},We=Object.freeze(Object.defineProperty({__proto__:null,ReactComponent:Ce,attributes:Te,html:Oe,toc:Le},Symbol.toStringTag,{value:"Module"})),Fe={id:"node-foursquare",name:"node-foursquare",caption:"I maintain the Foursquare/Swarm library for Node.js.",cover:"node-foursquare-1",tags:[{name:"NodeJS",slug:"node"},{name:"Swarm",slug:"swarm"}],timestamp:1513728e3,website:"http://www.github.com/clintandrewhall/node-foursquare"},Ue=`

Background

-

I was getting ready to build -Backstrok.es, but I -realized I needed a solid Foursquare library. Looking around, I noticed there -were few implementations, and most either were abandoned or lacked access to the -endpoints I needed. So I decided to fork an existing library, -Foursquare-on-node, and add -functionality.

-

Inevitably, I refactored the fork well beyond a simple pull request. After -contacting the author, I applied an MIT license -and released my node-foursquare library in the npmjs -repository for Node. It is currently -listed on the -Foursquare Developer site as the only -library for using Foursquare within Node.

-

Two -Three

-

Implementation

-

Since the Foursquare API is -well-documented, I was -able to quickly add all “getter” endpoints to the library. There seems to be -little demand for the “setter” endpoints at the moment, in the Node context.

-

Colophon

-

This library conforms to Foursquare API -v2 and uses -winston as a logging strategy. It has -great configuration -options, such as warnings -vs. errors on deprecated endpoints and targeting specific API changelog numbers. -I currently use it in my -Backstrok.es project.

-`,Be=[{level:"1",content:"Background"},{level:"1",content:"Implementation"},{level:"1",content:"Colophon"}],ze=function(t){return Object.keys(t).forEach(function(r){t[r]}),e.createElement("div",null,e.createElement("h1",null,"Background"),e.createElement("p",null,"I was getting ready to build",e.createElement("a",{href:"http://www.clintandrewhall.com/portfolio/backstrokes"},"Backstrok.es"),", but I realized I needed a solid Foursquare library. Looking around, I noticed there were few implementations, and most either were abandoned or lacked access to the endpoints I needed. So I decided to fork an existing library,",e.createElement("a",{href:"https://github.com/yikulju/Foursquare-on-node"},"Foursquare-on-node"),", and add functionality."),e.createElement("p",null,"Inevitably, I refactored the fork well beyond a simple pull request. After contacting ",e.createElement("a",{href:"https://github.com/yikulju"},"the author"),", I applied an MIT license and released my node-foursquare library in the ",e.createElement("a",{href:"http://www.npmjs.org/"},"npmjs"),"repository for Node. It is currently",e.createElement("a",{href:"https://developer.foursquare.com/docs/libraries.html"},"listed")," on the",e.createElement("a",{href:"http://developer.foursquare.com/"},"Foursquare Developer site")," as the only library for using Foursquare within Node."),e.createElement("p",null,e.createElement("img",{src:"/images/portfolio/node-foursquare-2.jpg",alt:"Two"}),e.createElement("img",{src:"/images/portfolio/node-foursquare-3.jpg",alt:"Three"})),e.createElement("h1",null,"Implementation"),e.createElement("p",null,"Since the Foursquare API is",e.createElement("a",{href:"https://developer.foursquare.com/docs/index_docs.html"},"well-documented"),", I was able to quickly add all “getter” endpoints to the library. There seems to be little demand for the “setter” endpoints at the moment, in the Node context."),e.createElement("h1",null,"Colophon"),e.createElement("p",null,"This library conforms to ",e.createElement("a",{href:"https://developer.foursquare.com/docs/overview.html"},"Foursquare API v2")," and uses",e.createElement("a",{href:"https://github.com/winstonjs/winston"},"winston")," as a logging strategy. It has great ",e.createElement("a",{href:"https://github.com/clintandrewhall/node-foursquare"},"configuration options"),", such as warnings vs. errors on deprecated endpoints and targeting specific API changelog numbers. I currently use it in my",e.createElement("a",{href:"http://www.clintandrewhall.com/portfolio/backstrokes"},"Backstrok.es")," project."))},De=Object.freeze(Object.defineProperty({__proto__:null,ReactComponent:ze,attributes:Fe,html:Ue,toc:Be},Symbol.toStringTag,{value:"Module"})),$e={id:"web-bootstrapper",name:"Web Bookstrapper",caption:"A method of flexing semantic HTML based on the immutable properties of the device before code is even downloaded.",cover:"bootstrapper-1",tags:[{name:"Cerner",slug:"cerner"},{name:"Web",slug:"web"}],timestamp:1242432e3},Ne=`

Background

-

In 2009, I was asked to serve as Presentation Architect for a very ambitious -project at Cerner known as “Healthe”. I was tasked with bringing the forthcoming -web solutions level with the rest of the industry: semantic markup, high levels -of accessibility, mobile, low bandwidth, etc.

-

I set straight to work, rapidly iterating on static HTML prototypes of visual -designs and putting them in front of stakeholders. I wrote a great deal of code -in that time, and I began to think of ways we could better leverage this highly -semantic, viewable-in-Lynx web code. My thought was, if we adhered to this -strict Progressive Enhancement model, could we simply “re-skin” our HTML code -passively for any device?

-

What followed was the implementation of what I called a “Web Bootstrapper”, -where immutable properties of the web client are provided to a server-side -process (e.g. rules engine) in order to determine the best collection of static -resources for that client. While some presentation flexing tools download all -front-end code and flex based on client attributes, the Bootstrapper returned -only those items that are necessary. In addition, it allowed for runtime -configuration, where skins can be “shut off” or added at will.

-

Results

-

As a side project within Cerner, my Web Bootstrapper didn’t get much attention -until it hit production on our Personal Health Record (PHR) and Activity -Tracking prototype. I was able to demonstrate I could take the oldest mobile -device in the room, (some scarily obsolete!) and load my PHR quickly and, most -importantly, consistently. Shortly thereafter, teams began using it to flex -their PE muscle in all kinds of ways.

-

World Wide Web Conference 2009

-

In 2009, I submitted a paper to the World -Wide Web and -Web4All conferences in Madrid, where I was accepted -and invited to speak on the impact of -Progressive Enhancement on accessibility and code reuse. A few months prior to -the conference, Cerner filed a -patent. Later that year, I also -presented the -approach -at the Ajax -Experience in -Boston.

-

Bootstrap the Web -How the Bootstrapper Works -Such a Broad Landscape -Ajax Experience 2009 -Demo of 12 skins on one site

-`,He=[{level:"1",content:"Background"},{level:"1",content:"Results"},{level:"1",content:"World Wide Web Conference 2009"}],Ve=function(t){return Object.keys(t).forEach(function(r){t[r]}),e.createElement("div",null,e.createElement("h1",null,"Background"),e.createElement("p",null,"In 2009, I was asked to serve as Presentation Architect for a very ambitious project at Cerner known as “Healthe”. I was tasked with bringing the forthcoming web solutions level with the rest of the industry: semantic markup, high levels of accessibility, mobile, low bandwidth, etc."),e.createElement("p",null,"I set straight to work, rapidly iterating on static HTML prototypes of visual designs and putting them in front of stakeholders. I wrote a great deal of code in that time, and I began to think of ways we could better leverage this highly semantic, viewable-in-Lynx web code. My thought was, if we adhered to this strict Progressive Enhancement model, could we simply “re-skin” our HTML code passively for any device?"),e.createElement("p",null,"What followed was the implementation of what I called a “Web Bootstrapper”, where immutable properties of the web client are provided to a server-side process (e.g. rules engine) in order to determine the best collection of static resources for that client. While some presentation flexing tools download all front-end code and flex based on client attributes, the Bootstrapper returned only those items that are necessary. In addition, it allowed for runtime configuration, where skins can be “shut off” or added at will."),e.createElement("h1",null,"Results"),e.createElement("p",null,"As a side project within Cerner, my Web Bootstrapper didn’t get much attention until it hit production on our Personal Health Record (PHR) and Activity Tracking prototype. I was able to demonstrate I could take the oldest mobile device in the room, (some scarily obsolete!) and load my PHR quickly and, most importantly, consistently. Shortly thereafter, teams began using it to flex their PE muscle in all kinds of ways."),e.createElement("h1",null,"World Wide Web Conference 2009"),e.createElement("p",null,"In 2009, I submitted ",e.createElement("a",{href:"/pdf/web-bootstrapper-paper.pdf"},"a paper")," to the ",e.createElement("a",{href:"http://www2009.wwwconference.org/"},"World Wide Web")," and",e.createElement("a",{href:"http://www.w4a.info/2018/"},"Web4All")," conferences in Madrid, where I was accepted and ",e.createElement("a",{href:"/pdf/web-bootstrapper-deck.pdf"},"invited to speak")," on the impact of Progressive Enhancement on accessibility and code reuse. A few months prior to the conference, Cerner ",e.createElement("a",{href:"http://www.faqs.org/patents/app/20100180192"},"filed a patent"),". Later that year, I also",e.createElement("a",{href:"http://ajaxexperience.techtarget.com/conference/html/speakers.html#CHall"},"presented the approach"),"at the ",e.createElement("a",{href:"http://ajaxexperience.techtarget.com/conference/index.html"},"Ajax Experience")," in Boston."),e.createElement("p",null,e.createElement("img",{src:"/images/portfolio/bootstrapper-1.png",alt:"Bootstrap the Web"}),e.createElement("img",{src:"/images/portfolio/bootstrapper-2.jpg",alt:"How the Bootstrapper Works"}),e.createElement("img",{src:"/images/portfolio/bootstrapper-3.jpg",alt:"Such a Broad Landscape"}),e.createElement("img",{src:"/images/portfolio/bootstrapper-4.png",alt:"Ajax Experience 2009"}),e.createElement("img",{src:"/images/portfolio/bootstrapper-5.png",alt:"Demo of 12 skins on one site"})))},Ge=Object.freeze(Object.defineProperty({__proto__:null,ReactComponent:Ve,attributes:$e,html:Ne,toc:He},Symbol.toStringTag,{value:"Module"})),Je="/src/content/portfolio/images/",Ke=Object.assign({"/src/content/portfolio/images/backstrokes-1.jpg":E,"/src/content/portfolio/images/backstrokes-2.jpg":I,"/src/content/portfolio/images/backstrokes-3.jpg":A,"/src/content/portfolio/images/bootstrapper-2.jpg":x,"/src/content/portfolio/images/bootstrapper-3.jpg":M,"/src/content/portfolio/images/event-wall-1.jpg":T,"/src/content/portfolio/images/event-wall-2.jpg":L,"/src/content/portfolio/images/event-wall-3.jpg":W,"/src/content/portfolio/images/event-wall-4.jpg":U,"/src/content/portfolio/images/guess-friends-1.jpg":z,"/src/content/portfolio/images/guess-friends-2.jpg":$,"/src/content/portfolio/images/guess-friends-3.jpg":H,"/src/content/portfolio/images/guess-friends-4.jpg":G,"/src/content/portfolio/images/guess-friends-5.jpg":K,"/src/content/portfolio/images/metaphorically-1.jpg":X,"/src/content/portfolio/images/metaphorically-2.jpg":Z,"/src/content/portfolio/images/metaphorically-3.jpg":te,"/src/content/portfolio/images/metaphorically-4.jpg":ae,"/src/content/portfolio/images/metaphorically-5.jpg":ne,"/src/content/portfolio/images/node-foursquare-1.jpg":le,"/src/content/portfolio/images/node-foursquare-2.jpg":ce,"/src/content/portfolio/images/node-foursquare-3.jpg":pe}),Qe=Object.assign({"/src/content/portfolio/images/bootstrapper-1.png":ue,"/src/content/portfolio/images/bootstrapper-4.png":fe,"/src/content/portfolio/images/bootstrapper-5.png":we}),Xe={...Ke,...Qe},b=Object.fromEntries(Object.entries(Xe).map(([t,a])=>[t.replace(Je,"").replace(".jpg","").replace(".png",""),Object.fromEntries(a.default.map(r=>[r.width,r]))])),st=(t,a)=>{if(t&&b[t]){const r=b[t][a];if(r)return r}return null},Ye=6,Ze=Object.assign({"/src/content/portfolio/backstrokes.md":_e,"/src/content/portfolio/event-wall.md":Ae,"/src/content/portfolio/guess-friends.md":Re,"/src/content/portfolio/metaphorically.md":We,"/src/content/portfolio/node-foursquare.md":De,"/src/content/portfolio/web-bootstrapper.md":Ge}),y=Object.values(Ze).sort((t,a)=>a.attributes.timestamp-t.attributes.timestamp),et=()=>y,tt=()=>et().map(t=>t.attributes.id),lt=(t=Ye)=>tt().slice(0,t),ot=()=>y.map(t=>t.attributes),it=t=>ot().find(a=>a.id===t);var v={exports:{}},o={};/** - * @license React - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var g=Symbol.for("react.element"),w=Symbol.for("react.portal"),s=Symbol.for("react.fragment"),l=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),c=Symbol.for("react.provider"),h=Symbol.for("react.context"),at=Symbol.for("react.server_context"),p=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),u=Symbol.for("react.suspense_list"),m=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),rt=Symbol.for("react.offscreen"),k;k=Symbol.for("react.module.reference");function n(t){if(typeof t=="object"&&t!==null){var a=t.$$typeof;switch(a){case g:switch(t=t.type,t){case s:case i:case l:case d:case u:return t;default:switch(t=t&&t.$$typeof,t){case at:case h:case p:case f:case m:case c:return t;default:return a}}case w:return a}}}o.ContextConsumer=h;o.ContextProvider=c;o.Element=g;o.ForwardRef=p;o.Fragment=s;o.Lazy=f;o.Memo=m;o.Portal=w;o.Profiler=i;o.StrictMode=l;o.Suspense=d;o.SuspenseList=u;o.isAsyncMode=function(){return!1};o.isConcurrentMode=function(){return!1};o.isContextConsumer=function(t){return n(t)===h};o.isContextProvider=function(t){return n(t)===c};o.isElement=function(t){return typeof t=="object"&&t!==null&&t.$$typeof===g};o.isForwardRef=function(t){return n(t)===p};o.isFragment=function(t){return n(t)===s};o.isLazy=function(t){return n(t)===f};o.isMemo=function(t){return n(t)===m};o.isPortal=function(t){return n(t)===w};o.isProfiler=function(t){return n(t)===i};o.isStrictMode=function(t){return n(t)===l};o.isSuspense=function(t){return n(t)===d};o.isSuspenseList=function(t){return n(t)===u};o.isValidElementType=function(t){return typeof t=="string"||typeof t=="function"||t===s||t===i||t===l||t===d||t===u||t===rt||typeof t=="object"&&t!==null&&(t.$$typeof===f||t.$$typeof===m||t.$$typeof===c||t.$$typeof===h||t.$$typeof===p||t.$$typeof===k||t.getModuleId!==void 0)};o.typeOf=n;v.exports=o;var ct=v.exports;export{st as a,lt as b,ct as r,it as u}; diff --git a/storybook-static/assets/index-356e4a49.js b/storybook-static/assets/index-356e4a49.js deleted file mode 100644 index 37c96b4..0000000 --- a/storybook-static/assets/index-356e4a49.js +++ /dev/null @@ -1,6 +0,0 @@ -function l(o){for(var f=[],i=1;ir[l]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var Co={exports:{}},ve={},xo={exports:{}},_o={};/** - * @license React - * scheduler.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */(function(e){function n(C,P){var z=C.length;C.push(P);e:for(;0>>1,Y=C[H];if(0>>1;Hl(sl,z))mnl(Xt,sl)?(C[H]=Xt,C[mn]=z,H=mn):(C[H]=sl,C[pn]=z,H=pn);else if(mnl(Xt,z))C[H]=Xt,C[mn]=z,H=mn;else break e}}return P}function l(C,P){var z=C.sortIndex-P.sortIndex;return z!==0?z:C.id-P.id}if(typeof performance=="object"&&typeof performance.now=="function"){var i=performance;e.unstable_now=function(){return i.now()}}else{var u=Date,o=u.now();e.unstable_now=function(){return u.now()-o}}var s=[],d=[],v=1,m=null,p=3,y=!1,w=!1,k=!1,F=typeof setTimeout=="function"?setTimeout:null,c=typeof clearTimeout=="function"?clearTimeout:null,a=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function f(C){for(var P=t(d);P!==null;){if(P.callback===null)r(d);else if(P.startTime<=C)r(d),P.sortIndex=P.expirationTime,n(s,P);else break;P=t(d)}}function h(C){if(k=!1,f(C),!w)if(t(s)!==null)w=!0,ul(E);else{var P=t(d);P!==null&&ol(h,P.startTime-C)}}function E(C,P){w=!1,k&&(k=!1,c(N),N=-1),y=!0;var z=p;try{for(f(P),m=t(s);m!==null&&(!(m.expirationTime>P)||C&&!Ce());){var H=m.callback;if(typeof H=="function"){m.callback=null,p=m.priorityLevel;var Y=H(m.expirationTime<=P);P=e.unstable_now(),typeof Y=="function"?m.callback=Y:m===t(s)&&r(s),f(P)}else r(s);m=t(s)}if(m!==null)var Yt=!0;else{var pn=t(d);pn!==null&&ol(h,pn.startTime-P),Yt=!1}return Yt}finally{m=null,p=z,y=!1}}var x=!1,_=null,N=-1,B=5,T=-1;function Ce(){return!(e.unstable_now()-TC||125H?(C.sortIndex=z,n(d,C),t(s)===null&&C===t(d)&&(k?(c(N),N=-1):k=!0,ol(h,z-H))):(C.sortIndex=Y,n(s,C),w||y||(w=!0,ul(E))),C},e.unstable_shouldYield=Ce,e.unstable_wrapCallback=function(C){var P=p;return function(){var z=p;p=P;try{return C.apply(this,arguments)}finally{p=z}}}})(_o);xo.exports=_o;var Ma=xo.exports;/** - * @license React - * react-dom.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var No=za,me=Ma;function g(e){for(var n="https://reactjs.org/docs/error-decoder.html?invariant="+e,t=1;t"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Rl=Object.prototype.hasOwnProperty,Da=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,gu={},yu={};function Oa(e){return Rl.call(yu,e)?!0:Rl.call(gu,e)?!1:Da.test(e)?yu[e]=!0:(gu[e]=!0,!1)}function Ra(e,n,t,r){if(t!==null&&t.type===0)return!1;switch(typeof n){case"function":case"symbol":return!0;case"boolean":return r?!1:t!==null?!t.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!=="data-"&&e!=="aria-");default:return!1}}function Fa(e,n,t,r){if(n===null||typeof n>"u"||Ra(e,n,t,r))return!0;if(r)return!1;if(t!==null)switch(t.type){case 3:return!n;case 4:return n===!1;case 5:return isNaN(n);case 6:return isNaN(n)||1>n}return!1}function ie(e,n,t,r,l,i,u){this.acceptsBooleans=n===2||n===3||n===4,this.attributeName=r,this.attributeNamespace=l,this.mustUseProperty=t,this.propertyName=e,this.type=n,this.sanitizeURL=i,this.removeEmptyString=u}var q={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){q[e]=new ie(e,0,!1,e,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var n=e[0];q[n]=new ie(n,1,!1,e[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(e){q[e]=new ie(e,2,!1,e.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){q[e]=new ie(e,2,!1,e,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){q[e]=new ie(e,3,!1,e.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(e){q[e]=new ie(e,3,!0,e,null,!1,!1)});["capture","download"].forEach(function(e){q[e]=new ie(e,4,!1,e,null,!1,!1)});["cols","rows","size","span"].forEach(function(e){q[e]=new ie(e,6,!1,e,null,!1,!1)});["rowSpan","start"].forEach(function(e){q[e]=new ie(e,5,!1,e.toLowerCase(),null,!1,!1)});var Ni=/[\-:]([a-z])/g;function Pi(e){return e[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var n=e.replace(Ni,Pi);q[n]=new ie(n,1,!1,e,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var n=e.replace(Ni,Pi);q[n]=new ie(n,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(e){var n=e.replace(Ni,Pi);q[n]=new ie(n,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(e){q[e]=new ie(e,1,!1,e.toLowerCase(),null,!1,!1)});q.xlinkHref=new ie("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(e){q[e]=new ie(e,1,!1,e.toLowerCase(),null,!0,!0)});function zi(e,n,t,r){var l=q.hasOwnProperty(n)?q[n]:null;(l!==null?l.type!==0:r||!(2o||l[u]!==i[o]){var s=` -`+l[u].replace(" at new "," at ");return e.displayName&&s.includes("")&&(s=s.replace("",e.displayName)),s}while(1<=u&&0<=o);break}}}finally{cl=!1,Error.prepareStackTrace=t}return(e=e?e.displayName||e.name:"")?pt(e):""}function Ia(e){switch(e.tag){case 5:return pt(e.type);case 16:return pt("Lazy");case 13:return pt("Suspense");case 19:return pt("SuspenseList");case 0:case 2:case 15:return e=fl(e.type,!1),e;case 11:return e=fl(e.type.render,!1),e;case 1:return e=fl(e.type,!0),e;default:return""}}function Ul(e){if(e==null)return null;if(typeof e=="function")return e.displayName||e.name||null;if(typeof e=="string")return e;switch(e){case Mn:return"Fragment";case Ln:return"Portal";case Fl:return"Profiler";case Ti:return"StrictMode";case Il:return"Suspense";case jl:return"SuspenseList"}if(typeof e=="object")switch(e.$$typeof){case To:return(e.displayName||"Context")+".Consumer";case zo:return(e._context.displayName||"Context")+".Provider";case Li:var n=e.render;return e=e.displayName,e||(e=n.displayName||n.name||"",e=e!==""?"ForwardRef("+e+")":"ForwardRef"),e;case Mi:return n=e.displayName||null,n!==null?n:Ul(e.type)||"Memo";case Ye:n=e._payload,e=e._init;try{return Ul(e(n))}catch{}}return null}function ja(e){var n=e.type;switch(e.tag){case 24:return"Cache";case 9:return(n.displayName||"Context")+".Consumer";case 10:return(n._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=n.render,e=e.displayName||e.name||"",n.displayName||(e!==""?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return n;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return Ul(n);case 8:return n===Ti?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof n=="function")return n.displayName||n.name||null;if(typeof n=="string")return n}return null}function sn(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":return e;case"object":return e;default:return""}}function Mo(e){var n=e.type;return(e=e.nodeName)&&e.toLowerCase()==="input"&&(n==="checkbox"||n==="radio")}function Ua(e){var n=Mo(e)?"checked":"value",t=Object.getOwnPropertyDescriptor(e.constructor.prototype,n),r=""+e[n];if(!e.hasOwnProperty(n)&&typeof t<"u"&&typeof t.get=="function"&&typeof t.set=="function"){var l=t.get,i=t.set;return Object.defineProperty(e,n,{configurable:!0,get:function(){return l.call(this)},set:function(u){r=""+u,i.call(this,u)}}),Object.defineProperty(e,n,{enumerable:t.enumerable}),{getValue:function(){return r},setValue:function(u){r=""+u},stopTracking:function(){e._valueTracker=null,delete e[n]}}}}function Zt(e){e._valueTracker||(e._valueTracker=Ua(e))}function Do(e){if(!e)return!1;var n=e._valueTracker;if(!n)return!0;var t=n.getValue(),r="";return e&&(r=Mo(e)?e.checked?"true":"false":e.value),e=r,e!==t?(n.setValue(e),!0):!1}function Sr(e){if(e=e||(typeof document<"u"?document:void 0),typeof e>"u")return null;try{return e.activeElement||e.body}catch{return e.body}}function Al(e,n){var t=n.checked;return A({},n,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:t??e._wrapperState.initialChecked})}function ku(e,n){var t=n.defaultValue==null?"":n.defaultValue,r=n.checked!=null?n.checked:n.defaultChecked;t=sn(n.value!=null?n.value:t),e._wrapperState={initialChecked:r,initialValue:t,controlled:n.type==="checkbox"||n.type==="radio"?n.checked!=null:n.value!=null}}function Oo(e,n){n=n.checked,n!=null&&zi(e,"checked",n,!1)}function Vl(e,n){Oo(e,n);var t=sn(n.value),r=n.type;if(t!=null)r==="number"?(t===0&&e.value===""||e.value!=t)&&(e.value=""+t):e.value!==""+t&&(e.value=""+t);else if(r==="submit"||r==="reset"){e.removeAttribute("value");return}n.hasOwnProperty("value")?Bl(e,n.type,t):n.hasOwnProperty("defaultValue")&&Bl(e,n.type,sn(n.defaultValue)),n.checked==null&&n.defaultChecked!=null&&(e.defaultChecked=!!n.defaultChecked)}function Su(e,n,t){if(n.hasOwnProperty("value")||n.hasOwnProperty("defaultValue")){var r=n.type;if(!(r!=="submit"&&r!=="reset"||n.value!==void 0&&n.value!==null))return;n=""+e._wrapperState.initialValue,t||n===e.value||(e.value=n),e.defaultValue=n}t=e.name,t!==""&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,t!==""&&(e.name=t)}function Bl(e,n,t){(n!=="number"||Sr(e.ownerDocument)!==e)&&(t==null?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+t&&(e.defaultValue=""+t))}var mt=Array.isArray;function Hn(e,n,t,r){if(e=e.options,n){n={};for(var l=0;l"+n.valueOf().toString()+"",n=Jt.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;n.firstChild;)e.appendChild(n.firstChild)}});function Pt(e,n){if(n){var t=e.firstChild;if(t&&t===e.lastChild&&t.nodeType===3){t.nodeValue=n;return}}e.textContent=n}var gt={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Aa=["Webkit","ms","Moz","O"];Object.keys(gt).forEach(function(e){Aa.forEach(function(n){n=n+e.charAt(0).toUpperCase()+e.substring(1),gt[n]=gt[e]})});function jo(e,n,t){return n==null||typeof n=="boolean"||n===""?"":t||typeof n!="number"||n===0||gt.hasOwnProperty(e)&>[e]?(""+n).trim():n+"px"}function Uo(e,n){e=e.style;for(var t in n)if(n.hasOwnProperty(t)){var r=t.indexOf("--")===0,l=jo(t,n[t],r);t==="float"&&(t="cssFloat"),r?e.setProperty(t,l):e[t]=l}}var Va=A({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Wl(e,n){if(n){if(Va[e]&&(n.children!=null||n.dangerouslySetInnerHTML!=null))throw Error(g(137,e));if(n.dangerouslySetInnerHTML!=null){if(n.children!=null)throw Error(g(60));if(typeof n.dangerouslySetInnerHTML!="object"||!("__html"in n.dangerouslySetInnerHTML))throw Error(g(61))}if(n.style!=null&&typeof n.style!="object")throw Error(g(62))}}function $l(e,n){if(e.indexOf("-")===-1)return typeof n.is=="string";switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Kl=null;function Di(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var Yl=null,Qn=null,Wn=null;function xu(e){if(e=$t(e)){if(typeof Yl!="function")throw Error(g(280));var n=e.stateNode;n&&(n=Gr(n),Yl(e.stateNode,e.type,n))}}function Ao(e){Qn?Wn?Wn.push(e):Wn=[e]:Qn=e}function Vo(){if(Qn){var e=Qn,n=Wn;if(Wn=Qn=null,xu(e),n)for(e=0;e>>=0,e===0?32:31-(Ja(e)/qa|0)|0}var qt=64,bt=4194304;function vt(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function _r(e,n){var t=e.pendingLanes;if(t===0)return 0;var r=0,l=e.suspendedLanes,i=e.pingedLanes,u=t&268435455;if(u!==0){var o=u&~l;o!==0?r=vt(o):(i&=u,i!==0&&(r=vt(i)))}else u=t&~l,u!==0?r=vt(u):i!==0&&(r=vt(i));if(r===0)return 0;if(n!==0&&n!==r&&!(n&l)&&(l=r&-r,i=n&-n,l>=i||l===16&&(i&4194240)!==0))return n;if(r&4&&(r|=t&16),n=e.entangledLanes,n!==0)for(e=e.entanglements,n&=r;0t;t++)n.push(e);return n}function Qt(e,n,t){e.pendingLanes|=n,n!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,n=31-ze(n),e[n]=t}function tc(e,n){var t=e.pendingLanes&~n;e.pendingLanes=n,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=n,e.mutableReadLanes&=n,e.entangledLanes&=n,n=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0=wt),Ou=String.fromCharCode(32),Ru=!1;function us(e,n){switch(e){case"keyup":return Lc.indexOf(n.keyCode)!==-1;case"keydown":return n.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function os(e){return e=e.detail,typeof e=="object"&&"data"in e?e.data:null}var Dn=!1;function Dc(e,n){switch(e){case"compositionend":return os(n);case"keypress":return n.which!==32?null:(Ru=!0,Ou);case"textInput":return e=n.data,e===Ou&&Ru?null:e;default:return null}}function Oc(e,n){if(Dn)return e==="compositionend"||!Vi&&us(e,n)?(e=ls(),dr=ji=Je=null,Dn=!1,e):null;switch(e){case"paste":return null;case"keypress":if(!(n.ctrlKey||n.altKey||n.metaKey)||n.ctrlKey&&n.altKey){if(n.char&&1=n)return{node:t,offset:n-e};e=r}e:{for(;t;){if(t.nextSibling){t=t.nextSibling;break e}t=t.parentNode}t=void 0}t=Uu(t)}}function fs(e,n){return e&&n?e===n?!0:e&&e.nodeType===3?!1:n&&n.nodeType===3?fs(e,n.parentNode):"contains"in e?e.contains(n):e.compareDocumentPosition?!!(e.compareDocumentPosition(n)&16):!1:!1}function ds(){for(var e=window,n=Sr();n instanceof e.HTMLIFrameElement;){try{var t=typeof n.contentWindow.location.href=="string"}catch{t=!1}if(t)e=n.contentWindow;else break;n=Sr(e.document)}return n}function Bi(e){var n=e&&e.nodeName&&e.nodeName.toLowerCase();return n&&(n==="input"&&(e.type==="text"||e.type==="search"||e.type==="tel"||e.type==="url"||e.type==="password")||n==="textarea"||e.contentEditable==="true")}function Hc(e){var n=ds(),t=e.focusedElem,r=e.selectionRange;if(n!==t&&t&&t.ownerDocument&&fs(t.ownerDocument.documentElement,t)){if(r!==null&&Bi(t)){if(n=r.start,e=r.end,e===void 0&&(e=n),"selectionStart"in t)t.selectionStart=n,t.selectionEnd=Math.min(e,t.value.length);else if(e=(n=t.ownerDocument||document)&&n.defaultView||window,e.getSelection){e=e.getSelection();var l=t.textContent.length,i=Math.min(r.start,l);r=r.end===void 0?i:Math.min(r.end,l),!e.extend&&i>r&&(l=r,r=i,i=l),l=Au(t,i);var u=Au(t,r);l&&u&&(e.rangeCount!==1||e.anchorNode!==l.node||e.anchorOffset!==l.offset||e.focusNode!==u.node||e.focusOffset!==u.offset)&&(n=n.createRange(),n.setStart(l.node,l.offset),e.removeAllRanges(),i>r?(e.addRange(n),e.extend(u.node,u.offset)):(n.setEnd(u.node,u.offset),e.addRange(n)))}}for(n=[],e=t;e=e.parentNode;)e.nodeType===1&&n.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof t.focus=="function"&&t.focus(),t=0;t=document.documentMode,On=null,bl=null,St=null,ei=!1;function Vu(e,n,t){var r=t.window===t?t.document:t.nodeType===9?t:t.ownerDocument;ei||On==null||On!==Sr(r)||(r=On,"selectionStart"in r&&Bi(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),St&&Ot(St,r)||(St=r,r=zr(bl,"onSelect"),0In||(e.current=ui[In],ui[In]=null,In--)}function D(e,n){In++,ui[In]=e.current,e.current=n}var an={},te=fn(an),se=fn(!1),En=an;function Gn(e,n){var t=e.type.contextTypes;if(!t)return an;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===n)return r.__reactInternalMemoizedMaskedChildContext;var l={},i;for(i in t)l[i]=n[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=n,e.__reactInternalMemoizedMaskedChildContext=l),l}function ae(e){return e=e.childContextTypes,e!=null}function Lr(){R(se),R(te)}function Yu(e,n,t){if(te.current!==an)throw Error(g(168));D(te,n),D(se,t)}function Ss(e,n,t){var r=e.stateNode;if(n=n.childContextTypes,typeof r.getChildContext!="function")return t;r=r.getChildContext();for(var l in r)if(!(l in n))throw Error(g(108,ja(e)||"Unknown",l));return A({},t,r)}function Mr(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||an,En=te.current,D(te,e),D(se,se.current),!0}function Xu(e,n,t){var r=e.stateNode;if(!r)throw Error(g(169));t?(e=Ss(e,n,En),r.__reactInternalMemoizedMergedChildContext=e,R(se),R(te),D(te,e)):R(se),D(se,t)}var je=null,Zr=!1,_l=!1;function Es(e){je===null?je=[e]:je.push(e)}function ef(e){Zr=!0,Es(e)}function dn(){if(!_l&&je!==null){_l=!0;var e=0,n=M;try{var t=je;for(M=1;e>=u,l-=u,Ue=1<<32-ze(n)+l|t<N?(B=_,_=null):B=_.sibling;var T=p(c,_,f[N],h);if(T===null){_===null&&(_=B);break}e&&_&&T.alternate===null&&n(c,_),a=i(T,a,N),x===null?E=T:x.sibling=T,x=T,_=B}if(N===f.length)return t(c,_),I&&vn(c,N),E;if(_===null){for(;NN?(B=_,_=null):B=_.sibling;var Ce=p(c,_,T.value,h);if(Ce===null){_===null&&(_=B);break}e&&_&&Ce.alternate===null&&n(c,_),a=i(Ce,a,N),x===null?E=Ce:x.sibling=Ce,x=Ce,_=B}if(T.done)return t(c,_),I&&vn(c,N),E;if(_===null){for(;!T.done;N++,T=f.next())T=m(c,T.value,h),T!==null&&(a=i(T,a,N),x===null?E=T:x.sibling=T,x=T);return I&&vn(c,N),E}for(_=r(c,_);!T.done;N++,T=f.next())T=y(_,c,N,T.value,h),T!==null&&(e&&T.alternate!==null&&_.delete(T.key===null?N:T.key),a=i(T,a,N),x===null?E=T:x.sibling=T,x=T);return e&&_.forEach(function(rt){return n(c,rt)}),I&&vn(c,N),E}function F(c,a,f,h){if(typeof f=="object"&&f!==null&&f.type===Mn&&f.key===null&&(f=f.props.children),typeof f=="object"&&f!==null){switch(f.$$typeof){case Gt:e:{for(var E=f.key,x=a;x!==null;){if(x.key===E){if(E=f.type,E===Mn){if(x.tag===7){t(c,x.sibling),a=l(x,f.props.children),a.return=c,c=a;break e}}else if(x.elementType===E||typeof E=="object"&&E!==null&&E.$$typeof===Ye&&no(E)===x.type){t(c,x.sibling),a=l(x,f.props),a.ref=ct(c,x,f),a.return=c,c=a;break e}t(c,x);break}else n(c,x);x=x.sibling}f.type===Mn?(a=Sn(f.props.children,c.mode,h,f.key),a.return=c,c=a):(h=kr(f.type,f.key,f.props,null,c.mode,h),h.ref=ct(c,a,f),h.return=c,c=h)}return u(c);case Ln:e:{for(x=f.key;a!==null;){if(a.key===x)if(a.tag===4&&a.stateNode.containerInfo===f.containerInfo&&a.stateNode.implementation===f.implementation){t(c,a.sibling),a=l(a,f.children||[]),a.return=c,c=a;break e}else{t(c,a);break}else n(c,a);a=a.sibling}a=Ol(f,c.mode,h),a.return=c,c=a}return u(c);case Ye:return x=f._init,F(c,a,x(f._payload),h)}if(mt(f))return w(c,a,f,h);if(it(f))return k(c,a,f,h);ur(c,f)}return typeof f=="string"&&f!==""||typeof f=="number"?(f=""+f,a!==null&&a.tag===6?(t(c,a.sibling),a=l(a,f),a.return=c,c=a):(t(c,a),a=Dl(f,c.mode,h),a.return=c,c=a),u(c)):t(c,a)}return F}var Jn=Ls(!0),Ms=Ls(!1),Kt={},Fe=fn(Kt),jt=fn(Kt),Ut=fn(Kt);function wn(e){if(e===Kt)throw Error(g(174));return e}function Zi(e,n){switch(D(Ut,n),D(jt,e),D(Fe,Kt),e=n.nodeType,e){case 9:case 11:n=(n=n.documentElement)?n.namespaceURI:Ql(null,"");break;default:e=e===8?n.parentNode:n,n=e.namespaceURI||null,e=e.tagName,n=Ql(n,e)}R(Fe),D(Fe,n)}function qn(){R(Fe),R(jt),R(Ut)}function Ds(e){wn(Ut.current);var n=wn(Fe.current),t=Ql(n,e.type);n!==t&&(D(jt,e),D(Fe,t))}function Ji(e){jt.current===e&&(R(Fe),R(jt))}var j=fn(0);function jr(e){for(var n=e;n!==null;){if(n.tag===13){var t=n.memoizedState;if(t!==null&&(t=t.dehydrated,t===null||t.data==="$?"||t.data==="$!"))return n}else if(n.tag===19&&n.memoizedProps.revealOrder!==void 0){if(n.flags&128)return n}else if(n.child!==null){n.child.return=n,n=n.child;continue}if(n===e)break;for(;n.sibling===null;){if(n.return===null||n.return===e)return null;n=n.return}n.sibling.return=n.return,n=n.sibling}return null}var Nl=[];function qi(){for(var e=0;et?t:4,e(!0);var r=Pl.transition;Pl.transition={};try{e(!1),n()}finally{M=t,Pl.transition=r}}function Xs(){return Ee().memoizedState}function lf(e,n,t){var r=un(e);if(t={lane:r,action:t,hasEagerState:!1,eagerState:null,next:null},Gs(e))Zs(n,t);else if(t=Ns(e,n,t,r),t!==null){var l=le();Te(t,e,r,l),Js(t,n,r)}}function uf(e,n,t){var r=un(e),l={lane:r,action:t,hasEagerState:!1,eagerState:null,next:null};if(Gs(e))Zs(n,l);else{var i=e.alternate;if(e.lanes===0&&(i===null||i.lanes===0)&&(i=n.lastRenderedReducer,i!==null))try{var u=n.lastRenderedState,o=i(u,t);if(l.hasEagerState=!0,l.eagerState=o,Le(o,u)){var s=n.interleaved;s===null?(l.next=l,Xi(n)):(l.next=s.next,s.next=l),n.interleaved=l;return}}catch{}finally{}t=Ns(e,n,l,r),t!==null&&(l=le(),Te(t,e,r,l),Js(t,n,r))}}function Gs(e){var n=e.alternate;return e===U||n!==null&&n===U}function Zs(e,n){Et=Ur=!0;var t=e.pending;t===null?n.next=n:(n.next=t.next,t.next=n),e.pending=n}function Js(e,n,t){if(t&4194240){var r=n.lanes;r&=e.pendingLanes,t|=r,n.lanes=t,Ri(e,t)}}var Ar={readContext:Se,useCallback:b,useContext:b,useEffect:b,useImperativeHandle:b,useInsertionEffect:b,useLayoutEffect:b,useMemo:b,useReducer:b,useRef:b,useState:b,useDebugValue:b,useDeferredValue:b,useTransition:b,useMutableSource:b,useSyncExternalStore:b,useId:b,unstable_isNewReconciler:!1},of={readContext:Se,useCallback:function(e,n){return De().memoizedState=[e,n===void 0?null:n],e},useContext:Se,useEffect:ro,useImperativeHandle:function(e,n,t){return t=t!=null?t.concat([e]):null,hr(4194308,4,Qs.bind(null,n,e),t)},useLayoutEffect:function(e,n){return hr(4194308,4,e,n)},useInsertionEffect:function(e,n){return hr(4,2,e,n)},useMemo:function(e,n){var t=De();return n=n===void 0?null:n,e=e(),t.memoizedState=[e,n],e},useReducer:function(e,n,t){var r=De();return n=t!==void 0?t(n):n,r.memoizedState=r.baseState=n,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:n},r.queue=e,e=e.dispatch=lf.bind(null,U,e),[r.memoizedState,e]},useRef:function(e){var n=De();return e={current:e},n.memoizedState=e},useState:to,useDebugValue:ru,useDeferredValue:function(e){return De().memoizedState=e},useTransition:function(){var e=to(!1),n=e[0];return e=rf.bind(null,e[1]),De().memoizedState=e,[n,e]},useMutableSource:function(){},useSyncExternalStore:function(e,n,t){var r=U,l=De();if(I){if(t===void 0)throw Error(g(407));t=t()}else{if(t=n(),G===null)throw Error(g(349));xn&30||Fs(r,n,t)}l.memoizedState=t;var i={value:t,getSnapshot:n};return l.queue=i,ro(js.bind(null,r,i,e),[e]),r.flags|=2048,Bt(9,Is.bind(null,r,i,t,n),void 0,null),t},useId:function(){var e=De(),n=G.identifierPrefix;if(I){var t=Ae,r=Ue;t=(r&~(1<<32-ze(r)-1)).toString(32)+t,n=":"+n+"R"+t,t=At++,0<\/script>",e=e.removeChild(e.firstChild)):typeof r.is=="string"?e=u.createElement(t,{is:r.is}):(e=u.createElement(t),t==="select"&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,t),e[Oe]=n,e[It]=r,ua(e,n,!1,!1),n.stateNode=e;e:{switch(u=$l(t,r),t){case"dialog":O("cancel",e),O("close",e),l=r;break;case"iframe":case"object":case"embed":O("load",e),l=r;break;case"video":case"audio":for(l=0;let&&(n.flags|=128,r=!0,ft(i,!1),n.lanes=4194304)}else{if(!r)if(e=jr(u),e!==null){if(n.flags|=128,r=!0,t=e.updateQueue,t!==null&&(n.updateQueue=t,n.flags|=4),ft(i,!0),i.tail===null&&i.tailMode==="hidden"&&!u.alternate&&!I)return ee(n),null}else 2*Q()-i.renderingStartTime>et&&t!==1073741824&&(n.flags|=128,r=!0,ft(i,!1),n.lanes=4194304);i.isBackwards?(u.sibling=n.child,n.child=u):(t=i.last,t!==null?t.sibling=u:n.child=u,i.last=u)}return i.tail!==null?(n=i.tail,i.rendering=n,i.tail=n.sibling,i.renderingStartTime=Q(),n.sibling=null,t=j.current,D(j,r?t&1|2:t&1),n):(ee(n),null);case 22:case 23:return au(),r=n.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(n.flags|=8192),r&&n.mode&1?fe&1073741824&&(ee(n),n.subtreeFlags&6&&(n.flags|=8192)):ee(n),null;case 24:return null;case 25:return null}throw Error(g(156,n.tag))}function vf(e,n){switch(Qi(n),n.tag){case 1:return ae(n.type)&&Lr(),e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 3:return qn(),R(se),R(te),qi(),e=n.flags,e&65536&&!(e&128)?(n.flags=e&-65537|128,n):null;case 5:return Ji(n),null;case 13:if(R(j),e=n.memoizedState,e!==null&&e.dehydrated!==null){if(n.alternate===null)throw Error(g(340));Zn()}return e=n.flags,e&65536?(n.flags=e&-65537|128,n):null;case 19:return R(j),null;case 4:return qn(),null;case 10:return Yi(n.type._context),null;case 22:case 23:return au(),null;case 24:return null;default:return null}}var sr=!1,ne=!1,hf=typeof WeakSet=="function"?WeakSet:Set,S=null;function Vn(e,n){var t=e.ref;if(t!==null)if(typeof t=="function")try{t(null)}catch(r){V(e,n,r)}else t.current=null}function yi(e,n,t){try{t()}catch(r){V(e,n,r)}}var po=!1;function gf(e,n){if(ni=Nr,e=ds(),Bi(e)){if("selectionStart"in e)var t={start:e.selectionStart,end:e.selectionEnd};else e:{t=(t=e.ownerDocument)&&t.defaultView||window;var r=t.getSelection&&t.getSelection();if(r&&r.rangeCount!==0){t=r.anchorNode;var l=r.anchorOffset,i=r.focusNode;r=r.focusOffset;try{t.nodeType,i.nodeType}catch{t=null;break e}var u=0,o=-1,s=-1,d=0,v=0,m=e,p=null;n:for(;;){for(var y;m!==t||l!==0&&m.nodeType!==3||(o=u+l),m!==i||r!==0&&m.nodeType!==3||(s=u+r),m.nodeType===3&&(u+=m.nodeValue.length),(y=m.firstChild)!==null;)p=m,m=y;for(;;){if(m===e)break n;if(p===t&&++d===l&&(o=u),p===i&&++v===r&&(s=u),(y=m.nextSibling)!==null)break;m=p,p=m.parentNode}m=y}t=o===-1||s===-1?null:{start:o,end:s}}else t=null}t=t||{start:0,end:0}}else t=null;for(ti={focusedElem:e,selectionRange:t},Nr=!1,S=n;S!==null;)if(n=S,e=n.child,(n.subtreeFlags&1028)!==0&&e!==null)e.return=n,S=e;else for(;S!==null;){n=S;try{var w=n.alternate;if(n.flags&1024)switch(n.tag){case 0:case 11:case 15:break;case 1:if(w!==null){var k=w.memoizedProps,F=w.memoizedState,c=n.stateNode,a=c.getSnapshotBeforeUpdate(n.elementType===n.type?k:_e(n.type,k),F);c.__reactInternalSnapshotBeforeUpdate=a}break;case 3:var f=n.stateNode.containerInfo;f.nodeType===1?f.textContent="":f.nodeType===9&&f.documentElement&&f.removeChild(f.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(g(163))}}catch(h){V(n,n.return,h)}if(e=n.sibling,e!==null){e.return=n.return,S=e;break}S=n.return}return w=po,po=!1,w}function Ct(e,n,t){var r=n.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var l=r=r.next;do{if((l.tag&e)===e){var i=l.destroy;l.destroy=void 0,i!==void 0&&yi(n,t,i)}l=l.next}while(l!==r)}}function br(e,n){if(n=n.updateQueue,n=n!==null?n.lastEffect:null,n!==null){var t=n=n.next;do{if((t.tag&e)===e){var r=t.create;t.destroy=r()}t=t.next}while(t!==n)}}function wi(e){var n=e.ref;if(n!==null){var t=e.stateNode;switch(e.tag){case 5:e=t;break;default:e=t}typeof n=="function"?n(e):n.current=e}}function aa(e){var n=e.alternate;n!==null&&(e.alternate=null,aa(n)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(n=e.stateNode,n!==null&&(delete n[Oe],delete n[It],delete n[ii],delete n[qc],delete n[bc])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function ca(e){return e.tag===5||e.tag===3||e.tag===4}function mo(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||ca(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function ki(e,n,t){var r=e.tag;if(r===5||r===6)e=e.stateNode,n?t.nodeType===8?t.parentNode.insertBefore(e,n):t.insertBefore(e,n):(t.nodeType===8?(n=t.parentNode,n.insertBefore(e,t)):(n=t,n.appendChild(e)),t=t._reactRootContainer,t!=null||n.onclick!==null||(n.onclick=Tr));else if(r!==4&&(e=e.child,e!==null))for(ki(e,n,t),e=e.sibling;e!==null;)ki(e,n,t),e=e.sibling}function Si(e,n,t){var r=e.tag;if(r===5||r===6)e=e.stateNode,n?t.insertBefore(e,n):t.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for(Si(e,n,t),e=e.sibling;e!==null;)Si(e,n,t),e=e.sibling}var Z=null,Ne=!1;function Ke(e,n,t){for(t=t.child;t!==null;)fa(e,n,t),t=t.sibling}function fa(e,n,t){if(Re&&typeof Re.onCommitFiberUnmount=="function")try{Re.onCommitFiberUnmount($r,t)}catch{}switch(t.tag){case 5:ne||Vn(t,n);case 6:var r=Z,l=Ne;Z=null,Ke(e,n,t),Z=r,Ne=l,Z!==null&&(Ne?(e=Z,t=t.stateNode,e.nodeType===8?e.parentNode.removeChild(t):e.removeChild(t)):Z.removeChild(t.stateNode));break;case 18:Z!==null&&(Ne?(e=Z,t=t.stateNode,e.nodeType===8?xl(e.parentNode,t):e.nodeType===1&&xl(e,t),Mt(e)):xl(Z,t.stateNode));break;case 4:r=Z,l=Ne,Z=t.stateNode.containerInfo,Ne=!0,Ke(e,n,t),Z=r,Ne=l;break;case 0:case 11:case 14:case 15:if(!ne&&(r=t.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){l=r=r.next;do{var i=l,u=i.destroy;i=i.tag,u!==void 0&&(i&2||i&4)&&yi(t,n,u),l=l.next}while(l!==r)}Ke(e,n,t);break;case 1:if(!ne&&(Vn(t,n),r=t.stateNode,typeof r.componentWillUnmount=="function"))try{r.props=t.memoizedProps,r.state=t.memoizedState,r.componentWillUnmount()}catch(o){V(t,n,o)}Ke(e,n,t);break;case 21:Ke(e,n,t);break;case 22:t.mode&1?(ne=(r=ne)||t.memoizedState!==null,Ke(e,n,t),ne=r):Ke(e,n,t);break;default:Ke(e,n,t)}}function vo(e){var n=e.updateQueue;if(n!==null){e.updateQueue=null;var t=e.stateNode;t===null&&(t=e.stateNode=new hf),n.forEach(function(r){var l=Nf.bind(null,e,r);t.has(r)||(t.add(r),r.then(l,l))})}}function xe(e,n){var t=n.deletions;if(t!==null)for(var r=0;rl&&(l=u),r&=~i}if(r=l,r=Q()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*wf(r/1960))-r,10e?16:e,qe===null)var r=!1;else{if(e=qe,qe=null,Hr=0,L&6)throw Error(g(331));var l=L;for(L|=4,S=e.current;S!==null;){var i=S,u=i.child;if(S.flags&16){var o=i.deletions;if(o!==null){for(var s=0;sQ()-ou?kn(e,0):uu|=t),ce(e,n)}function wa(e,n){n===0&&(e.mode&1?(n=bt,bt<<=1,!(bt&130023424)&&(bt=4194304)):n=1);var t=le();e=Qe(e,n),e!==null&&(Qt(e,n,t),ce(e,t))}function _f(e){var n=e.memoizedState,t=0;n!==null&&(t=n.retryLane),wa(e,t)}function Nf(e,n){var t=0;switch(e.tag){case 13:var r=e.stateNode,l=e.memoizedState;l!==null&&(t=l.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(g(314))}r!==null&&r.delete(n),wa(e,t)}var ka;ka=function(e,n,t){if(e!==null)if(e.memoizedProps!==n.pendingProps||se.current)oe=!0;else{if(!(e.lanes&t)&&!(n.flags&128))return oe=!1,pf(e,n,t);oe=!!(e.flags&131072)}else oe=!1,I&&n.flags&1048576&&Cs(n,Or,n.index);switch(n.lanes=0,n.tag){case 2:var r=n.type;gr(e,n),e=n.pendingProps;var l=Gn(n,te.current);Kn(n,t),l=eu(null,n,r,e,l,t);var i=nu();return n.flags|=1,typeof l=="object"&&l!==null&&typeof l.render=="function"&&l.$$typeof===void 0?(n.tag=1,n.memoizedState=null,n.updateQueue=null,ae(r)?(i=!0,Mr(n)):i=!1,n.memoizedState=l.state!==null&&l.state!==void 0?l.state:null,Gi(n),l.updater=Jr,n.stateNode=l,l._reactInternals=n,fi(n,r,e,t),n=mi(null,n,r,!0,i,t)):(n.tag=0,I&&i&&Hi(n),re(null,n,l,t),n=n.child),n;case 16:r=n.elementType;e:{switch(gr(e,n),e=n.pendingProps,l=r._init,r=l(r._payload),n.type=r,l=n.tag=zf(r),e=_e(r,e),l){case 0:n=pi(null,n,r,e,t);break e;case 1:n=ao(null,n,r,e,t);break e;case 11:n=oo(null,n,r,e,t);break e;case 14:n=so(null,n,r,_e(r.type,e),t);break e}throw Error(g(306,r,""))}return n;case 0:return r=n.type,l=n.pendingProps,l=n.elementType===r?l:_e(r,l),pi(e,n,r,l,t);case 1:return r=n.type,l=n.pendingProps,l=n.elementType===r?l:_e(r,l),ao(e,n,r,l,t);case 3:e:{if(ra(n),e===null)throw Error(g(387));r=n.pendingProps,i=n.memoizedState,l=i.element,Ps(e,n),Ir(n,r,null,t);var u=n.memoizedState;if(r=u.element,i.isDehydrated)if(i={element:r,isDehydrated:!1,cache:u.cache,pendingSuspenseBoundaries:u.pendingSuspenseBoundaries,transitions:u.transitions},n.updateQueue.baseState=i,n.memoizedState=i,n.flags&256){l=bn(Error(g(423)),n),n=co(e,n,r,t,l);break e}else if(r!==l){l=bn(Error(g(424)),n),n=co(e,n,r,t,l);break e}else for(de=tn(n.stateNode.containerInfo.firstChild),pe=n,I=!0,Pe=null,t=Ms(n,null,r,t),n.child=t;t;)t.flags=t.flags&-3|4096,t=t.sibling;else{if(Zn(),r===l){n=We(e,n,t);break e}re(e,n,r,t)}n=n.child}return n;case 5:return Ds(n),e===null&&si(n),r=n.type,l=n.pendingProps,i=e!==null?e.memoizedProps:null,u=l.children,ri(r,l)?u=null:i!==null&&ri(r,i)&&(n.flags|=32),ta(e,n),re(e,n,u,t),n.child;case 6:return e===null&&si(n),null;case 13:return la(e,n,t);case 4:return Zi(n,n.stateNode.containerInfo),r=n.pendingProps,e===null?n.child=Jn(n,null,r,t):re(e,n,r,t),n.child;case 11:return r=n.type,l=n.pendingProps,l=n.elementType===r?l:_e(r,l),oo(e,n,r,l,t);case 7:return re(e,n,n.pendingProps,t),n.child;case 8:return re(e,n,n.pendingProps.children,t),n.child;case 12:return re(e,n,n.pendingProps.children,t),n.child;case 10:e:{if(r=n.type._context,l=n.pendingProps,i=n.memoizedProps,u=l.value,D(Rr,r._currentValue),r._currentValue=u,i!==null)if(Le(i.value,u)){if(i.children===l.children&&!se.current){n=We(e,n,t);break e}}else for(i=n.child,i!==null&&(i.return=n);i!==null;){var o=i.dependencies;if(o!==null){u=i.child;for(var s=o.firstContext;s!==null;){if(s.context===r){if(i.tag===1){s=Ve(-1,t&-t),s.tag=2;var d=i.updateQueue;if(d!==null){d=d.shared;var v=d.pending;v===null?s.next=s:(s.next=v.next,v.next=s),d.pending=s}}i.lanes|=t,s=i.alternate,s!==null&&(s.lanes|=t),ai(i.return,t,n),o.lanes|=t;break}s=s.next}}else if(i.tag===10)u=i.type===n.type?null:i.child;else if(i.tag===18){if(u=i.return,u===null)throw Error(g(341));u.lanes|=t,o=u.alternate,o!==null&&(o.lanes|=t),ai(u,t,n),u=i.sibling}else u=i.child;if(u!==null)u.return=i;else for(u=i;u!==null;){if(u===n){u=null;break}if(i=u.sibling,i!==null){i.return=u.return,u=i;break}u=u.return}i=u}re(e,n,l.children,t),n=n.child}return n;case 9:return l=n.type,r=n.pendingProps.children,Kn(n,t),l=Se(l),r=r(l),n.flags|=1,re(e,n,r,t),n.child;case 14:return r=n.type,l=_e(r,n.pendingProps),l=_e(r.type,l),so(e,n,r,l,t);case 15:return ea(e,n,n.type,n.pendingProps,t);case 17:return r=n.type,l=n.pendingProps,l=n.elementType===r?l:_e(r,l),gr(e,n),n.tag=1,ae(r)?(e=!0,Mr(n)):e=!1,Kn(n,t),Ts(n,r,l),fi(n,r,l,t),mi(null,n,r,!0,e,t);case 19:return ia(e,n,t);case 22:return na(e,n,t)}throw Error(g(156,n.tag))};function Sa(e,n){return Yo(e,n)}function Pf(e,n,t,r){this.tag=e,this.key=t,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=n,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function we(e,n,t,r){return new Pf(e,n,t,r)}function fu(e){return e=e.prototype,!(!e||!e.isReactComponent)}function zf(e){if(typeof e=="function")return fu(e)?1:0;if(e!=null){if(e=e.$$typeof,e===Li)return 11;if(e===Mi)return 14}return 2}function on(e,n){var t=e.alternate;return t===null?(t=we(e.tag,n,e.key,e.mode),t.elementType=e.elementType,t.type=e.type,t.stateNode=e.stateNode,t.alternate=e,e.alternate=t):(t.pendingProps=n,t.type=e.type,t.flags=0,t.subtreeFlags=0,t.deletions=null),t.flags=e.flags&14680064,t.childLanes=e.childLanes,t.lanes=e.lanes,t.child=e.child,t.memoizedProps=e.memoizedProps,t.memoizedState=e.memoizedState,t.updateQueue=e.updateQueue,n=e.dependencies,t.dependencies=n===null?null:{lanes:n.lanes,firstContext:n.firstContext},t.sibling=e.sibling,t.index=e.index,t.ref=e.ref,t}function kr(e,n,t,r,l,i){var u=2;if(r=e,typeof e=="function")fu(e)&&(u=1);else if(typeof e=="string")u=5;else e:switch(e){case Mn:return Sn(t.children,l,i,n);case Ti:u=8,l|=8;break;case Fl:return e=we(12,t,n,l|2),e.elementType=Fl,e.lanes=i,e;case Il:return e=we(13,t,n,l),e.elementType=Il,e.lanes=i,e;case jl:return e=we(19,t,n,l),e.elementType=jl,e.lanes=i,e;case Lo:return nl(t,l,i,n);default:if(typeof e=="object"&&e!==null)switch(e.$$typeof){case zo:u=10;break e;case To:u=9;break e;case Li:u=11;break e;case Mi:u=14;break e;case Ye:u=16,r=null;break e}throw Error(g(130,e==null?e:typeof e,""))}return n=we(u,t,n,l),n.elementType=e,n.type=r,n.lanes=i,n}function Sn(e,n,t,r){return e=we(7,e,r,n),e.lanes=t,e}function nl(e,n,t,r){return e=we(22,e,r,n),e.elementType=Lo,e.lanes=t,e.stateNode={isHidden:!1},e}function Dl(e,n,t){return e=we(6,e,null,n),e.lanes=t,e}function Ol(e,n,t){return n=we(4,e.children!==null?e.children:[],e.key,n),n.lanes=t,n.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},n}function Tf(e,n,t,r,l){this.tag=n,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=pl(0),this.expirationTimes=pl(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=pl(0),this.identifierPrefix=r,this.onRecoverableError=l,this.mutableSourceEagerHydrationData=null}function du(e,n,t,r,l,i,u,o,s){return e=new Tf(e,n,t,o,s),n===1?(n=1,i===!0&&(n|=8)):n=0,i=we(3,null,null,n),e.current=i,i.stateNode=e,i.memoizedState={element:r,isDehydrated:t,cache:null,transitions:null,pendingSuspenseBoundaries:null},Gi(i),e}function Lf(e,n,t){var r=3"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(_a)}catch(e){console.error(e)}}_a(),Co.exports=ve;var Na=Co.exports;const Ff=Ta(Na),jf=La({__proto__:null,default:Ff},[Na]);export{jf as R,Na as r,Ff as w}; diff --git a/storybook-static/assets/index-9b15b185.js b/storybook-static/assets/index-9b15b185.js deleted file mode 100644 index 11fcb29..0000000 --- a/storybook-static/assets/index-9b15b185.js +++ /dev/null @@ -1,35 +0,0 @@ -import{b as d,c as L}from"./css-7708fb60.js";import{c as B}from"./index-f1f2c4b1.js";/* empty css */const D=320,U=10,me=1.2,j=1240,Z=16,ue=1.25,q="--color",Y="--font-size",J="--font-family",de=`${J}-serif`,ve=`${J}-sans`,he="--font-color",pe="--font-weight",Se="--spacing",fe="--grid",K={dark:"#000",subtlest:"#F1F1F1",subtler:"#E9E9E9",subtle:"rgba(255, 255, 255, 0.25)",shade:"#C9C9C9",light:"#FFF",separator:"rgba(0,0,0,.1)",outline:"rgba(0,0,0,.25)",grid:"#333",accent:"#862121"},g=d(K,q,"background-color"),T=d(K,q,"border-color"),F={vars:{background:g.vars,border:T.vars},css:{background:g.css,border:T.css},definitions:{...g.definitions,...T.definitions}},ze={dark:"#0D0A0B",shaded:"rgba(0, 0, 0, .5)",medium:"rgba(0, 0, 0, .4)",text:"#5f5f5f",dim:"rgba(255, 255, 255, 0.5)",light:"#FFF",lightAccent:"#CCC",accent:"#862121",link:"#862121"},C=d(ze,he,"color"),xe={regular:"'Montserrat Regular', sans-serif",bold:"'Montserrat Bold', sans-serif",extraBold:"'Montserrat Extra Bold', sans-serif",medium:"'Montserrat Medium', sans-serif",semiBold:"'Montserrat Semibold', sans-serif",light:"'Montserrat Light', sans-serif"},A=d(xe,ve,"font-family"),We={regular:"'Libre Baskerville', serif",bold:"'Libre Baskerville Bold', serif",italic:"'Libre Baskerville Italic', serif"},M=d(We,de,"font-family");var R={};(function(s){var o=B&&B.__spreadArray||function(e,i,t){if(t||arguments.length===2)for(var a=0,n=i.length,r;ai,p=v?i:t,z=v?t:i,l=m?1:16,b=m?"px":"rem",O={viewport:"vi","viewport-width":"vw",container:"cqi"},ce=O[u]||O.viewport,X=(i/l-t/l)/(n/l-a/l),oe=-1*(a/l)*X+t/l;return"clamp(".concat(h(p/l)).concat(b,", ").concat(h(oe)).concat(b," + ").concat(h(X*100)).concat(ce,", ").concat(h(z/l)).concat(b,")")};s.calculateClamp=ae;function $(e){var i=e.min,t=e.max,a=e.minWidth,n=e.maxWidth;if(a>n){var r=a;a=n,n=r;var m=i;i=t,t=m}var c=(t-i)/(n-a),u=i-a*c,v=(5*i-2*u)/(2*c),p=(5*u-2*t)/(-1*c),z=3*u/c,l=[];return n<5*a?(a3?r="".concat(t-2,"XL"):t===-1?r="XS":t<0&&(r="".concat(Math.abs(t),"XS")),{label:r.toLowerCase(),minSize:h(a),maxSize:h(n),multiplier:i,clamp:(0,s.calculateClamp)({minSize:a,maxSize:n,minWidth:e.minWidth,maxWidth:e.maxWidth,relativeTo:e.relativeTo}),clampPx:(0,s.calculateClamp)({minSize:a,maxSize:n,minWidth:e.minWidth,maxWidth:e.maxWidth,relativeTo:e.relativeTo,usePx:!0})}},re=function(e,i){return o([],i.reverse(),!0).map(function(t,a,n){if(!a)return null;var r=n[a-1];return{label:"".concat(r.label,"-").concat(t.label),minSize:r.minSize,maxSize:t.maxSize,clamp:(0,s.calculateClamp)({minSize:r.minSize,maxSize:t.maxSize,minWidth:e.minWidth,maxWidth:e.maxWidth,relativeTo:e.relativeTo}),clampPx:(0,s.calculateClamp)({minSize:r.minSize,maxSize:t.maxSize,minWidth:e.minWidth,maxWidth:e.maxWidth,relativeTo:e.relativeTo,usePx:!0})}}).filter(function(t){return!!t})},se=function(e,i){return(e.customSizes||[]).map(function(t){var a=t.split("-"),n=a[0],r=a[1];if(!n||!r)return null;var m=i.find(function(u){return u.label===n}),c=i.find(function(u){return u.label===r});return!m||!c?null:{label:"".concat(n,"-").concat(r),minSize:m.minSize,maxSize:c.maxSize,clamp:(0,s.calculateClamp)({minWidth:e.minWidth,maxWidth:e.maxWidth,minSize:m.minSize,maxSize:c.maxSize,relativeTo:e.relativeTo}),clampPx:(0,s.calculateClamp)({minWidth:e.minWidth,maxWidth:e.maxWidth,minSize:m.minSize,maxSize:c.maxSize,relativeTo:e.relativeTo,usePx:!0})}}).filter(function(t){return!!t})},le=function(e){var i=o([],e.positiveSteps||[],!0).sort(N).map(function(m,c){return _(e,m,c+1)}).reverse(),t=o([],e.negativeSteps||[],!0).sort(N).reverse().map(function(m,c){return _(e,m,-1*(c+1))}),a=o(o(o([],i,!0),[_(e,1,0)],!1),t,!0),n=re(e,a),r=se(e,a);return{sizes:a,oneUpPairs:n,customPairs:r}};s.calculateSpaceScale=le})(R);const _e=["step5","step4","step3","step2","step1","step0","stepN1"],be=R.calculateTypeScale({maxFontSize:Z,maxTypeScale:ue,maxWidth:j,minFontSize:U,minTypeScale:me,minWidth:D,negativeSteps:1,positiveSteps:5}),Q=_e.reduce((s,o,S)=>(s[o]=`${be[S].clamp}`,s),{}),P=d(Q,Y,"font-size"),y=d(Q,Y,"line-height"),ge={extraBold:800,bold:600,semiBold:500,normal:400,light:300},I=d(ge,pe,"font-weight"),x={vars:{size:P.vars,lineHeight:y.vars,color:C.vars,weight:I.vars,serif:M.vars,sansSerif:A.vars},css:{size:P.css,lineHeight:y.css,color:C.css,weight:I.css,serif:M.css,sansSerif:A.css},definitions:{...y.definitions,...P.definitions,...C.definitions,...I.definitions,...M.definitions,...A.definitions}},Te=["step0","step1","step2","step3","step4","step5","step6","step7","step8","step9","avatar","sectionBottom","sectionTop","portfolioItemHeight","portfolioItemWidth"],Fe=R.calculateSpaceScale({minWidth:D,minSize:U,maxWidth:j,maxSize:Z,negativeSteps:[.25,.5,.75],positiveSteps:[1.25,1.5,1.75,2,2.25,2.5,4,5.75,9.75,18.75,25]}),{sizes:Ce}=Fe,G=Te.reduce((s,o,S)=>(s[o]=Ce[S].clamp,s),{}),Ae={...G,sectionDivider:G.step8},E=d(Ae,Se),Me=74,Pe=12,{vars:f,definitions:ye}=d({maxWidth:`${Me}rem`,gutter:`var(${E.vars.step7})`,columns:Pe},fe),Ie=` - padding-inline: var(${f.gutter}); - margin-inline: auto; - - & & { - padding-inline: 0; - } -`,ke=` - max-width: var(${f.maxWidth}); - margin: auto; - display: grid; - grid-gap: var(${f.gutter}); - grid-template-columns: repeat(var(${f.columns}), 1fr); - - & > * { - grid-area: auto / auto / auto / span var(${f.columns}); - } -`,k={vars:f,definitions:ye,css:{container:Ie,root:ke}};const Ee="atm_9s_1o8liyq atm_bx_htakmz atm_cs_4jg895 atm_cd_4jg895 atm_ci_4jg895 atm_sw_1wugsn5 atm_cb_bys6i1 atm_kc_vehm7",H={link:"atm_1gkhzp4_156g077",github:"atm_1gkhzp4_4i5x4a",instagram:"atm_1gkhzp4_9nmy84",linkedin:"atm_1gkhzp4_ewlun5",twitter:"atm_1gkhzp4_4z9x9d",facebook:"atm_1gkhzp4_1h109o6"},Re={},we=Object.keys(H).reduce((s,o)=>(s[o]=S=>L(H[o],L(Ee,S)),s),Re),Oe={vars:{font:x.vars,spacing:E.vars,color:F.vars,grid:k.vars},css:{font:x.css,color:F.css,grid:k.css},definitions:{...x.definitions,...E.definitions,...F.definitions,...k.definitions},icons:we,page:{body:` - -webkit-font-smoothing: antialiased; - font-feature-settings: 'liga', 'clig'; - font-variant-ligatures: common-ligatures; - text-rendering: optimizeLegibility; - a { - ${x.css.color.link} - font-weight: 600; - text-decoration: none; - transition: all .3s ease-in-out; - - &:hover, - &:active, - &:focus { - ${x.css.color.dark} - } - } - `}};export{Oe as t}; diff --git a/storybook-static/assets/index-a8bd1a45.js b/storybook-static/assets/index-a8bd1a45.js deleted file mode 100644 index 3726a22..0000000 --- a/storybook-static/assets/index-a8bd1a45.js +++ /dev/null @@ -1,30 +0,0 @@ -import{r as y,a as Vr}from"./index-f1f2c4b1.js";import{R as Kr}from"./index-5f347087.js";/** - * @remix-run/router v1.19.0 - * - * Copyright (c) Remix Software Inc. - * - * This source code is licensed under the MIT license found in the - * LICENSE.md file in the root directory of this source tree. - * - * @license MIT - */function K(){return K=Object.assign?Object.assign.bind():function(e){for(var t=1;tp(w,typeof w=="string"?null:w.state,R===0?"default":void 0));let s=u(r??a.length-1),o=$.Pop,c=null;function u(w){return Math.min(Math.max(w,0),a.length-1)}function g(){return a[s]}function p(w,R,x){R===void 0&&(R=null);let L=Rt(a?g().pathname:"/",w,R,x);return Me(L.pathname.charAt(0)==="/","relative pathnames are not supported in memory history: "+JSON.stringify(w)),L}function f(w){return typeof w=="string"?w:Ne(w)}return{get index(){return s},get action(){return o},get location(){return g()},createHref:f,createURL(w){return new URL(f(w),"http://localhost")},encodeLocation(w){let R=typeof w=="string"?ue(w):w;return{pathname:R.pathname||"",search:R.search||"",hash:R.hash||""}},push(w,R){o=$.Push;let x=p(w,R);s+=1,a.splice(s,a.length,x),n&&c&&c({action:o,location:x,delta:1})},replace(w,R){o=$.Replace;let x=p(w,R);a[s]=x,n&&c&&c({action:o,location:x,delta:0})},go(w){o=$.Pop;let R=u(s+w),x=a[R];s=R,c&&c({action:o,location:x,delta:w})},listen(w){return c=w,()=>{c=null}}}}function F(e,t){if(e===!1||e===null||typeof e>"u")throw new Error(t)}function Me(e,t){if(!e){typeof console<"u"&&console.warn(t);try{throw new Error(t)}catch{}}}function Jr(){return Math.random().toString(36).substr(2,8)}function Rt(e,t,r,n){return r===void 0&&(r=null),K({pathname:typeof e=="string"?e:e.pathname,search:"",hash:""},typeof t=="string"?ue(t):t,{state:r,key:t&&t.key||n||Jr()})}function Ne(e){let{pathname:t="/",search:r="",hash:n=""}=e;return r&&r!=="?"&&(t+=r.charAt(0)==="?"?r:"?"+r),n&&n!=="#"&&(t+=n.charAt(0)==="#"?n:"#"+n),t}function ue(e){let t={};if(e){let r=e.indexOf("#");r>=0&&(t.hash=e.substr(r),e=e.substr(0,r));let n=e.indexOf("?");n>=0&&(t.search=e.substr(n),e=e.substr(0,n)),e&&(t.pathname=e)}return t}var A;(function(e){e.data="data",e.deferred="deferred",e.redirect="redirect",e.error="error"})(A||(A={}));const Yr=new Set(["lazy","caseSensitive","path","id","index","children"]);function Gr(e){return e.index===!0}function Ge(e,t,r,n){return r===void 0&&(r=[]),n===void 0&&(n={}),e.map((a,s)=>{let o=[...r,String(s)],c=typeof a.id=="string"?a.id:o.join("-");if(F(a.index!==!0||!a.children,"Cannot specify children on an index route"),F(!n[c],'Found a route id collision on id "'+c+`". Route id's must be globally unique within Data Router usages`),Gr(a)){let u=K({},a,t(a),{id:c});return n[c]=u,u}else{let u=K({},a,t(a),{id:c,children:void 0});return n[c]=u,a.children&&(u.children=Ge(a.children,t,o,n)),u}})}function Se(e,t,r){return r===void 0&&(r="/"),ut(e,t,r,!1)}function ut(e,t,r,n){let a=typeof t=="string"?ue(t):t,s=Be(a.pathname||"/",r);if(s==null)return null;let o=ur(e);Qr(o);let c=null;for(let u=0;c==null&&u{let u={relativePath:c===void 0?s.path||"":c,caseSensitive:s.caseSensitive===!0,childrenIndex:o,route:s};u.relativePath.startsWith("/")&&(F(u.relativePath.startsWith(n),'Absolute route path "'+u.relativePath+'" nested under path '+('"'+n+'" is not valid. An absolute child route path ')+"must start with the combined path of all its parent routes."),u.relativePath=u.relativePath.slice(n.length));let g=me([n,u.relativePath]),p=r.concat(u);s.children&&s.children.length>0&&(F(s.index!==!0,"Index routes must not have child routes. Please remove "+('all child routes from route path "'+g+'".')),ur(s.children,t,p,g)),!(s.path==null&&!s.index)&&t.push({path:g,score:an(g,s.index),routesMeta:p})};return e.forEach((s,o)=>{var c;if(s.path===""||!((c=s.path)!=null&&c.includes("?")))a(s,o);else for(let u of dr(s.path))a(s,o,u)}),t}function dr(e){let t=e.split("/");if(t.length===0)return[];let[r,...n]=t,a=r.endsWith("?"),s=r.replace(/\?$/,"");if(n.length===0)return a?[s,""]:[s];let o=dr(n.join("/")),c=[];return c.push(...o.map(u=>u===""?s:[s,u].join("/"))),a&&c.push(...o),c.map(u=>e.startsWith("/")&&u===""?"/":u)}function Qr(e){e.sort((t,r)=>t.score!==r.score?r.score-t.score:on(t.routesMeta.map(n=>n.childrenIndex),r.routesMeta.map(n=>n.childrenIndex)))}const Zr=/^:[\w-]+$/,qr=3,en=2,tn=1,rn=10,nn=-2,Ht=e=>e==="*";function an(e,t){let r=e.split("/"),n=r.length;return r.some(Ht)&&(n+=nn),t&&(n+=en),r.filter(a=>!Ht(a)).reduce((a,s)=>a+(Zr.test(s)?qr:s===""?tn:rn),n)}function on(e,t){return e.length===t.length&&e.slice(0,-1).every((n,a)=>n===t[a])?e[e.length-1]-t[t.length-1]:0}function ln(e,t,r){r===void 0&&(r=!1);let{routesMeta:n}=e,a={},s="/",o=[];for(let c=0;c{let{paramName:v,isOptional:w}=p;if(v==="*"){let x=c[f]||"";o=s.slice(0,s.length-x.length).replace(/(.)\/+$/,"$1")}const R=c[f];return w&&!R?g[v]=void 0:g[v]=(R||"").replace(/%2F/g,"/"),g},{}),pathname:s,pathnameBase:o,pattern:e}}function sn(e,t,r){t===void 0&&(t=!1),r===void 0&&(r=!0),Me(e==="*"||!e.endsWith("*")||e.endsWith("/*"),'Route path "'+e+'" will be treated as if it were '+('"'+e.replace(/\*$/,"/*")+'" because the `*` character must ')+"always follow a `/` in the pattern. To get rid of this warning, "+('please change the route path to "'+e.replace(/\*$/,"/*")+'".'));let n=[],a="^"+e.replace(/\/*\*?$/,"").replace(/^\/*/,"/").replace(/[\\.*+^${}|()[\]]/g,"\\$&").replace(/\/:([\w-]+)(\?)?/g,(o,c,u)=>(n.push({paramName:c,isOptional:u!=null}),u?"/?([^\\/]+)?":"/([^\\/]+)"));return e.endsWith("*")?(n.push({paramName:"*"}),a+=e==="*"||e==="/*"?"(.*)$":"(?:\\/(.+)|\\/*)$"):r?a+="\\/*$":e!==""&&e!=="/"&&(a+="(?:(?=\\/|$))"),[new RegExp(a,t?void 0:"i"),n]}function un(e){try{return e.split("/").map(t=>decodeURIComponent(t).replace(/\//g,"%2F")).join("/")}catch(t){return Me(!1,'The URL path "'+e+'" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent '+("encoding ("+t+").")),e}}function Be(e,t){if(t==="/")return e;if(!e.toLowerCase().startsWith(t.toLowerCase()))return null;let r=t.endsWith("/")?t.length-1:t.length,n=e.charAt(r);return n&&n!=="/"?null:e.slice(r)||"/"}function dn(e,t){t===void 0&&(t="/");let{pathname:r,search:n="",hash:a=""}=typeof e=="string"?ue(e):e;return{pathname:r?r.startsWith("/")?r:cn(r,t):t,search:hn(n),hash:mn(a)}}function cn(e,t){let r=t.replace(/\/+$/,"").split("/");return e.split("/").forEach(a=>{a===".."?r.length>1&&r.pop():a!=="."&&r.push(a)}),r.length>1?r.join("/"):"/"}function vt(e,t,r,n){return"Cannot include a '"+e+"' character in a manually specified "+("`to."+t+"` field ["+JSON.stringify(n)+"]. Please separate it out to the ")+("`to."+r+"` field. Alternatively you may provide the full path as ")+'a string in and the router will parse it for you.'}function cr(e){return e.filter((t,r)=>r===0||t.route.path&&t.route.path.length>0)}function Dt(e,t){let r=cr(e);return t?r.map((n,a)=>a===r.length-1?n.pathname:n.pathnameBase):r.map(n=>n.pathnameBase)}function Mt(e,t,r,n){n===void 0&&(n=!1);let a;typeof e=="string"?a=ue(e):(a=K({},e),F(!a.pathname||!a.pathname.includes("?"),vt("?","pathname","search",a)),F(!a.pathname||!a.pathname.includes("#"),vt("#","pathname","hash",a)),F(!a.search||!a.search.includes("#"),vt("#","search","hash",a)));let s=e===""||a.pathname==="",o=s?"/":a.pathname,c;if(o==null)c=r;else{let f=t.length-1;if(!n&&o.startsWith("..")){let v=o.split("/");for(;v[0]==="..";)v.shift(),f-=1;a.pathname=v.join("/")}c=f>=0?t[f]:"/"}let u=dn(a,c),g=o&&o!=="/"&&o.endsWith("/"),p=(s||o===".")&&r.endsWith("/");return!u.pathname.endsWith("/")&&(g||p)&&(u.pathname+="/"),u}const me=e=>e.join("/").replace(/\/\/+/g,"/"),fn=e=>e.replace(/\/+$/,"").replace(/^\/*/,"/"),hn=e=>!e||e==="?"?"":e.startsWith("?")?e:"?"+e,mn=e=>!e||e==="#"?"":e.startsWith("#")?e:"#"+e;class wt{constructor(t,r,n,a){a===void 0&&(a=!1),this.status=t,this.statusText=r||"",this.internal=a,n instanceof Error?(this.data=n.toString(),this.error=n):this.data=n}}function ct(e){return e!=null&&typeof e.status=="number"&&typeof e.statusText=="string"&&typeof e.internal=="boolean"&&"data"in e}const fr=["post","put","patch","delete"],pn=new Set(fr),gn=["get",...fr],vn=new Set(gn),yn=new Set([301,302,303,307,308]),bn=new Set([307,308]),yt={state:"idle",location:void 0,formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0},Rn={state:"idle",data:void 0,formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0},Ke={state:"unblocked",proceed:void 0,reset:void 0,location:void 0},Lt=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,wn=e=>({hasErrorBoundary:!!e.hasErrorBoundary}),hr="remix-router-transitions";function En(e){const t=e.window?e.window:typeof window<"u"?window:void 0,r=typeof t<"u"&&typeof t.document<"u"&&typeof t.document.createElement<"u",n=!r;F(e.routes.length>0,"You must provide a non-empty routes array to createRouter");let a;if(e.mapRouteProperties)a=e.mapRouteProperties;else if(e.detectErrorBoundary){let i=e.detectErrorBoundary;a=l=>({hasErrorBoundary:i(l)})}else a=wn;let s={},o=Ge(e.routes,a,void 0,s),c,u=e.basename||"/",g=e.unstable_dataStrategy||Mn,p=e.unstable_patchRoutesOnMiss,f=K({v7_fetcherPersist:!1,v7_normalizeFormMethod:!1,v7_partialHydration:!1,v7_prependBasename:!1,v7_relativeSplatPath:!1,v7_skipActionErrorRevalidation:!1},e.future),v=null,w=new Set,R=null,x=null,L=null,Z=e.hydrationData!=null,_=Se(o,e.history.location,u),H=null;if(_==null&&!p){let i=re(404,{pathname:e.history.location.pathname}),{matches:l,route:d}=qt(o);_=l,H={[d.id]:i}}_&&!e.hydrationData&&at(_,o,e.history.location.pathname).active&&(_=null);let X;if(_)if(_.some(i=>i.route.lazy))X=!1;else if(!_.some(i=>i.route.loader))X=!0;else if(f.v7_partialHydration){let i=e.hydrationData?e.hydrationData.loaderData:null,l=e.hydrationData?e.hydrationData.errors:null,d=m=>m.route.loader?typeof m.route.loader=="function"&&m.route.loader.hydrate===!0?!1:i&&i[m.route.id]!==void 0||l&&l[m.route.id]!==void 0:!0;if(l){let m=_.findIndex(E=>l[E.route.id]!==void 0);X=_.slice(0,m+1).every(d)}else X=_.every(d)}else X=e.hydrationData!=null;else if(X=!1,_=[],f.v7_partialHydration){let i=at(null,o,e.history.location.pathname);i.active&&i.matches&&(_=i.matches)}let ee,h={historyAction:e.history.action,location:e.history.location,matches:_,initialized:X,navigation:yt,restoreScrollPosition:e.hydrationData!=null?!1:null,preventScrollReset:!1,revalidation:"idle",loaderData:e.hydrationData&&e.hydrationData.loaderData||{},actionData:e.hydrationData&&e.hydrationData.actionData||null,errors:e.hydrationData&&e.hydrationData.errors||H,fetchers:new Map,blockers:new Map},ne=$.Pop,I=!1,U,z=!1,J=new Map,Q=null,oe=!1,W=!1,pe=[],qe=new Set,Y=new Map,et=0,ze=-1,Ce=new Map,de=new Set,Te=new Map,ke=new Map,ce=new Set,we=new Map,Ee=new Map,Dr=new Map,ht=!1;function Mr(){if(v=e.history.listen(i=>{let{action:l,location:d,delta:m}=i;if(ht){ht=!1;return}Me(Ee.size===0||m!=null,"You are trying to use a blocker on a POP navigation to a location that was not created by @remix-run/router. This will fail silently in production. This can happen if you are navigating outside the router via `window.history.pushState`/`window.location.hash` instead of using router navigation APIs. This can also happen if you are using createHashRouter and the user manually changes the URL.");let E=At({currentLocation:h.location,nextLocation:d,historyAction:l});if(E&&m!=null){ht=!0,e.history.go(m*-1),rt(E,{state:"blocked",location:d,proceed(){rt(E,{state:"proceeding",proceed:void 0,reset:void 0,location:d}),e.history.go(m)},reset(){let S=new Map(h.blockers);S.set(E,Ke),te({blockers:S})}});return}return xe(l,d)}),r){zn(t,J);let i=()=>kn(t,J);t.addEventListener("pagehide",i),Q=()=>t.removeEventListener("pagehide",i)}return h.initialized||xe($.Pop,h.location,{initialHydration:!0}),ee}function Lr(){v&&v(),Q&&Q(),w.clear(),U&&U.abort(),h.fetchers.forEach((i,l)=>tt(l)),h.blockers.forEach((i,l)=>Nt(l))}function Cr(i){return w.add(i),()=>w.delete(i)}function te(i,l){l===void 0&&(l={}),h=K({},h,i);let d=[],m=[];f.v7_fetcherPersist&&h.fetchers.forEach((E,S)=>{E.state==="idle"&&(ce.has(S)?m.push(S):d.push(S))}),[...w].forEach(E=>E(h,{deletedFetchers:m,unstable_viewTransitionOpts:l.viewTransitionOpts,unstable_flushSync:l.flushSync===!0})),f.v7_fetcherPersist&&(d.forEach(E=>h.fetchers.delete(E)),m.forEach(E=>tt(E)))}function Ue(i,l,d){var m,E;let{flushSync:S}=d===void 0?{}:d,M=h.actionData!=null&&h.navigation.formMethod!=null&&le(h.navigation.formMethod)&&h.navigation.state==="loading"&&((m=i.state)==null?void 0:m._isRedirect)!==!0,b;l.actionData?Object.keys(l.actionData).length>0?b=l.actionData:b=null:M?b=h.actionData:b=null;let C=l.loaderData?Qt(h.loaderData,l.loaderData,l.matches||[],l.errors):h.loaderData,P=h.blockers;P.size>0&&(P=new Map(P),P.forEach((j,B)=>P.set(B,Ke)));let D=I===!0||h.navigation.formMethod!=null&&le(h.navigation.formMethod)&&((E=i.state)==null?void 0:E._isRedirect)!==!0;c&&(o=c,c=void 0),oe||ne===$.Pop||(ne===$.Push?e.history.push(i,i.state):ne===$.Replace&&e.history.replace(i,i.state));let N;if(ne===$.Pop){let j=J.get(h.location.pathname);j&&j.has(i.pathname)?N={currentLocation:h.location,nextLocation:i}:J.has(i.pathname)&&(N={currentLocation:i,nextLocation:h.location})}else if(z){let j=J.get(h.location.pathname);j?j.add(i.pathname):(j=new Set([i.pathname]),J.set(h.location.pathname,j)),N={currentLocation:h.location,nextLocation:i}}te(K({},l,{actionData:b,loaderData:C,historyAction:ne,location:i,initialized:!0,navigation:yt,revalidation:"idle",restoreScrollPosition:zt(i,l.matches||h.matches),preventScrollReset:D,blockers:P}),{viewTransitionOpts:N,flushSync:S===!0}),ne=$.Pop,I=!1,z=!1,oe=!1,W=!1,pe=[]}async function Tt(i,l){if(typeof i=="number"){e.history.go(i);return}let d=Et(h.location,h.matches,u,f.v7_prependBasename,i,f.v7_relativeSplatPath,l==null?void 0:l.fromRouteId,l==null?void 0:l.relative),{path:m,submission:E,error:S}=Vt(f.v7_normalizeFormMethod,!1,d,l),M=h.location,b=Rt(h.location,m,l&&l.state);b=K({},b,e.history.encodeLocation(b));let C=l&&l.replace!=null?l.replace:void 0,P=$.Push;C===!0?P=$.Replace:C===!1||E!=null&&le(E.formMethod)&&E.formAction===h.location.pathname+h.location.search&&(P=$.Replace);let D=l&&"preventScrollReset"in l?l.preventScrollReset===!0:void 0,N=(l&&l.unstable_flushSync)===!0,j=At({currentLocation:M,nextLocation:b,historyAction:P});if(j){rt(j,{state:"blocked",location:b,proceed(){rt(j,{state:"proceeding",proceed:void 0,reset:void 0,location:b}),Tt(i,l)},reset(){let B=new Map(h.blockers);B.set(j,Ke),te({blockers:B})}});return}return await xe(P,b,{submission:E,pendingError:S,preventScrollReset:D,replace:l&&l.replace,enableViewTransition:l&&l.unstable_viewTransition,flushSync:N})}function Tr(){if(mt(),te({revalidation:"loading"}),h.navigation.state!=="submitting"){if(h.navigation.state==="idle"){xe(h.historyAction,h.location,{startUninterruptedRevalidation:!0});return}xe(ne||h.historyAction,h.navigation.location,{overrideNavigation:h.navigation})}}async function xe(i,l,d){U&&U.abort(),U=null,ne=i,oe=(d&&d.startUninterruptedRevalidation)===!0,zr(h.location,h.matches),I=(d&&d.preventScrollReset)===!0,z=(d&&d.enableViewTransition)===!0;let m=c||o,E=d&&d.overrideNavigation,S=Se(m,l,u),M=(d&&d.flushSync)===!0,b=at(S,m,l.pathname);if(b.active&&b.matches&&(S=b.matches),!S){let{error:O,notFoundMatches:q,route:G}=pt(l.pathname);Ue(l,{matches:q,loaderData:{},errors:{[G.id]:O}},{flushSync:M});return}if(h.initialized&&!W&&_n(h.location,l)&&!(d&&d.submission&&le(d.submission.formMethod))){Ue(l,{matches:S},{flushSync:M});return}U=new AbortController;let C=je(e.history,l,U.signal,d&&d.submission),P;if(d&&d.pendingError)P=[Ie(S).route.id,{type:A.error,error:d.pendingError}];else if(d&&d.submission&&le(d.submission.formMethod)){let O=await Ur(C,l,d.submission,S,b.active,{replace:d.replace,flushSync:M});if(O.shortCircuited)return;if(O.pendingActionResult){let[q,G]=O.pendingActionResult;if(ie(G)&&ct(G.error)&&G.error.status===404){U=null,Ue(l,{matches:O.matches,loaderData:{},errors:{[q]:G.error}});return}}S=O.matches||S,P=O.pendingActionResult,E=bt(l,d.submission),M=!1,b.active=!1,C=je(e.history,C.url,C.signal)}let{shortCircuited:D,matches:N,loaderData:j,errors:B}=await Fr(C,l,S,b.active,E,d&&d.submission,d&&d.fetcherSubmission,d&&d.replace,d&&d.initialHydration===!0,M,P);D||(U=null,Ue(l,K({matches:N||S},Zt(P),{loaderData:j,errors:B})))}async function Ur(i,l,d,m,E,S){S===void 0&&(S={}),mt();let M=An(l,d);if(te({navigation:M},{flushSync:S.flushSync===!0}),E){let P=await it(m,l.pathname,i.signal);if(P.type==="aborted")return{shortCircuited:!0};if(P.type==="error"){let{boundaryId:D,error:N}=nt(l.pathname,P);return{matches:P.partialMatches,pendingActionResult:[D,{type:A.error,error:N}]}}else if(P.matches)m=P.matches;else{let{notFoundMatches:D,error:N,route:j}=pt(l.pathname);return{matches:D,pendingActionResult:[j.id,{type:A.error,error:N}]}}}let b,C=Ye(m,l);if(!C.route.action&&!C.route.lazy)b={type:A.error,error:re(405,{method:i.method,pathname:l.pathname,routeId:C.route.id})};else if(b=(await We("action",i,[C],m))[0],i.signal.aborted)return{shortCircuited:!0};if(De(b)){let P;return S&&S.replace!=null?P=S.replace:P=Yt(b.response.headers.get("Location"),new URL(i.url),u)===h.location.pathname+h.location.search,await He(i,b,{submission:d,replace:P}),{shortCircuited:!0}}if(Pe(b))throw re(400,{type:"defer-action"});if(ie(b)){let P=Ie(m,C.route.id);return(S&&S.replace)!==!0&&(ne=$.Push),{matches:m,pendingActionResult:[P.route.id,b]}}return{matches:m,pendingActionResult:[C.route.id,b]}}async function Fr(i,l,d,m,E,S,M,b,C,P,D){let N=E||bt(l,S),j=S||M||nr(N),B=!oe&&(!f.v7_partialHydration||!C);if(m){if(B){let V=Ut(D);te(K({navigation:N},V!==void 0?{actionData:V}:{}),{flushSync:P})}let T=await it(d,l.pathname,i.signal);if(T.type==="aborted")return{shortCircuited:!0};if(T.type==="error"){let{boundaryId:V,error:ae}=nt(l.pathname,T);return{matches:T.partialMatches,loaderData:{},errors:{[V]:ae}}}else if(T.matches)d=T.matches;else{let{error:V,notFoundMatches:ae,route:k}=pt(l.pathname);return{matches:ae,loaderData:{},errors:{[k.id]:V}}}}let O=c||o,[q,G]=Kt(e.history,h,d,j,l,f.v7_partialHydration&&C===!0,f.v7_skipActionErrorRevalidation,W,pe,qe,ce,Te,de,O,u,D);if(gt(T=>!(d&&d.some(V=>V.route.id===T))||q&&q.some(V=>V.route.id===T)),ze=++et,q.length===0&&G.length===0){let T=jt();return Ue(l,K({matches:d,loaderData:{},errors:D&&ie(D[1])?{[D[0]]:D[1].error}:null},Zt(D),T?{fetchers:new Map(h.fetchers)}:{}),{flushSync:P}),{shortCircuited:!0}}if(B){let T={};if(!m){T.navigation=N;let V=Ut(D);V!==void 0&&(T.actionData=V)}G.length>0&&(T.fetchers=_r(G)),te(T,{flushSync:P})}G.forEach(T=>{Y.has(T.key)&&ve(T.key),T.controller&&Y.set(T.key,T.controller)});let Ve=()=>G.forEach(T=>ve(T.key));U&&U.signal.addEventListener("abort",Ve);let{loaderResults:ye,fetcherResults:Fe}=await Ft(h.matches,d,q,G,i);if(i.signal.aborted)return{shortCircuited:!0};U&&U.signal.removeEventListener("abort",Ve),G.forEach(T=>Y.delete(T.key));let _e=er([...ye,...Fe]);if(_e){if(_e.idx>=q.length){let T=G[_e.idx-q.length].key;de.add(T)}return await He(i,_e.result,{replace:b}),{shortCircuited:!0}}let{loaderData:Oe,errors:se}=Xt(h,d,q,ye,D,G,Fe,we);we.forEach((T,V)=>{T.subscribe(ae=>{(ae||T.done)&&we.delete(V)})}),f.v7_partialHydration&&C&&h.errors&&Object.entries(h.errors).filter(T=>{let[V]=T;return!q.some(ae=>ae.route.id===V)}).forEach(T=>{let[V,ae]=T;se=Object.assign(se||{},{[V]:ae})});let ot=jt(),lt=It(ze),st=ot||lt||G.length>0;return K({matches:d,loaderData:Oe,errors:se},st?{fetchers:new Map(h.fetchers)}:{})}function Ut(i){if(i&&!ie(i[1]))return{[i[0]]:i[1].data};if(h.actionData)return Object.keys(h.actionData).length===0?null:h.actionData}function _r(i){return i.forEach(l=>{let d=h.fetchers.get(l.key),m=$e(void 0,d?d.data:void 0);h.fetchers.set(l.key,m)}),new Map(h.fetchers)}function Or(i,l,d,m){if(n)throw new Error("router.fetch() was called during the server render, but it shouldn't be. You are likely calling a useFetcher() method in the body of your component. Try moving it to a useEffect or a callback.");Y.has(i)&&ve(i);let E=(m&&m.unstable_flushSync)===!0,S=c||o,M=Et(h.location,h.matches,u,f.v7_prependBasename,d,f.v7_relativeSplatPath,l,m==null?void 0:m.relative),b=Se(S,M,u),C=at(b,S,M);if(C.active&&C.matches&&(b=C.matches),!b){fe(i,l,re(404,{pathname:M}),{flushSync:E});return}let{path:P,submission:D,error:N}=Vt(f.v7_normalizeFormMethod,!0,M,m);if(N){fe(i,l,N,{flushSync:E});return}let j=Ye(b,P);if(I=(m&&m.preventScrollReset)===!0,D&&le(D.formMethod)){jr(i,l,P,j,b,C.active,E,D);return}Te.set(i,{routeId:l,path:P}),Ir(i,l,P,j,b,C.active,E,D)}async function jr(i,l,d,m,E,S,M,b){mt(),Te.delete(i);function C(k){if(!k.route.action&&!k.route.lazy){let he=re(405,{method:b.formMethod,pathname:d,routeId:l});return fe(i,l,he,{flushSync:M}),!0}return!1}if(!S&&C(m))return;let P=h.fetchers.get(i);ge(i,Bn(b,P),{flushSync:M});let D=new AbortController,N=je(e.history,d,D.signal,b);if(S){let k=await it(E,d,N.signal);if(k.type==="aborted")return;if(k.type==="error"){let{error:he}=nt(d,k);fe(i,l,he,{flushSync:M});return}else if(k.matches){if(E=k.matches,m=Ye(E,d),C(m))return}else{fe(i,l,re(404,{pathname:d}),{flushSync:M});return}}Y.set(i,D);let j=et,O=(await We("action",N,[m],E))[0];if(N.signal.aborted){Y.get(i)===D&&Y.delete(i);return}if(f.v7_fetcherPersist&&ce.has(i)){if(De(O)||ie(O)){ge(i,be(void 0));return}}else{if(De(O))if(Y.delete(i),ze>j){ge(i,be(void 0));return}else return de.add(i),ge(i,$e(b)),He(N,O,{fetcherSubmission:b});if(ie(O)){fe(i,l,O.error);return}}if(Pe(O))throw re(400,{type:"defer-action"});let q=h.navigation.location||h.location,G=je(e.history,q,D.signal),Ve=c||o,ye=h.navigation.state!=="idle"?Se(Ve,h.navigation.location,u):h.matches;F(ye,"Didn't find any matches after fetcher action");let Fe=++et;Ce.set(i,Fe);let _e=$e(b,O.data);h.fetchers.set(i,_e);let[Oe,se]=Kt(e.history,h,ye,b,q,!1,f.v7_skipActionErrorRevalidation,W,pe,qe,ce,Te,de,Ve,u,[m.route.id,O]);se.filter(k=>k.key!==i).forEach(k=>{let he=k.key,kt=h.fetchers.get(he),Wr=$e(void 0,kt?kt.data:void 0);h.fetchers.set(he,Wr),Y.has(he)&&ve(he),k.controller&&Y.set(he,k.controller)}),te({fetchers:new Map(h.fetchers)});let ot=()=>se.forEach(k=>ve(k.key));D.signal.addEventListener("abort",ot);let{loaderResults:lt,fetcherResults:st}=await Ft(h.matches,ye,Oe,se,G);if(D.signal.aborted)return;D.signal.removeEventListener("abort",ot),Ce.delete(i),Y.delete(i),se.forEach(k=>Y.delete(k.key));let T=er([...lt,...st]);if(T){if(T.idx>=Oe.length){let k=se[T.idx-Oe.length].key;de.add(k)}return He(G,T.result)}let{loaderData:V,errors:ae}=Xt(h,h.matches,Oe,lt,void 0,se,st,we);if(h.fetchers.has(i)){let k=be(O.data);h.fetchers.set(i,k)}It(Fe),h.navigation.state==="loading"&&Fe>ze?(F(ne,"Expected pending action"),U&&U.abort(),Ue(h.navigation.location,{matches:ye,loaderData:V,errors:ae,fetchers:new Map(h.fetchers)})):(te({errors:ae,loaderData:Qt(h.loaderData,V,ye,ae),fetchers:new Map(h.fetchers)}),W=!1)}async function Ir(i,l,d,m,E,S,M,b){let C=h.fetchers.get(i);ge(i,$e(b,C?C.data:void 0),{flushSync:M});let P=new AbortController,D=je(e.history,d,P.signal);if(S){let O=await it(E,d,D.signal);if(O.type==="aborted")return;if(O.type==="error"){let{error:q}=nt(d,O);fe(i,l,q,{flushSync:M});return}else if(O.matches)E=O.matches,m=Ye(E,d);else{fe(i,l,re(404,{pathname:d}),{flushSync:M});return}}Y.set(i,P);let N=et,B=(await We("loader",D,[m],E))[0];if(Pe(B)&&(B=await yr(B,D.signal,!0)||B),Y.get(i)===P&&Y.delete(i),!D.signal.aborted){if(ce.has(i)){ge(i,be(void 0));return}if(De(B))if(ze>N){ge(i,be(void 0));return}else{de.add(i),await He(D,B);return}if(ie(B)){fe(i,l,B.error);return}F(!Pe(B),"Unhandled fetcher deferred data"),ge(i,be(B.data))}}async function He(i,l,d){let{submission:m,fetcherSubmission:E,replace:S}=d===void 0?{}:d;l.response.headers.has("X-Remix-Revalidate")&&(W=!0);let M=l.response.headers.get("Location");F(M,"Expected a Location header on the redirect Response"),M=Yt(M,new URL(i.url),u);let b=Rt(h.location,M,{_isRedirect:!0});if(r){let B=!1;if(l.response.headers.has("X-Remix-Reload-Document"))B=!0;else if(Lt.test(M)){const O=e.history.createURL(M);B=O.origin!==t.location.origin||Be(O.pathname,u)==null}if(B){S?t.location.replace(M):t.location.assign(M);return}}U=null;let C=S===!0||l.response.headers.has("X-Remix-Replace")?$.Replace:$.Push,{formMethod:P,formAction:D,formEncType:N}=h.navigation;!m&&!E&&P&&D&&N&&(m=nr(h.navigation));let j=m||E;if(bn.has(l.response.status)&&j&&le(j.formMethod))await xe(C,b,{submission:K({},j,{formAction:M}),preventScrollReset:I});else{let B=bt(b,m);await xe(C,b,{overrideNavigation:B,fetcherSubmission:E,preventScrollReset:I})}}async function We(i,l,d,m){try{let E=await Ln(g,i,l,d,m,s,a);return await Promise.all(E.map((S,M)=>{if(jn(S)){let b=S.result;return{type:A.redirect,response:Un(b,l,d[M].route.id,m,u,f.v7_relativeSplatPath)}}return Tn(S)}))}catch(E){return d.map(()=>({type:A.error,error:E}))}}async function Ft(i,l,d,m,E){let[S,...M]=await Promise.all([d.length?We("loader",E,d,l):[],...m.map(b=>{if(b.matches&&b.match&&b.controller){let C=je(e.history,b.path,b.controller.signal);return We("loader",C,[b.match],b.matches).then(P=>P[0])}else return Promise.resolve({type:A.error,error:re(404,{pathname:b.path})})})]);return await Promise.all([rr(i,d,S,S.map(()=>E.signal),!1,h.loaderData),rr(i,m.map(b=>b.match),M,m.map(b=>b.controller?b.controller.signal:null),!0)]),{loaderResults:S,fetcherResults:M}}function mt(){W=!0,pe.push(...gt()),Te.forEach((i,l)=>{Y.has(l)&&(qe.add(l),ve(l))})}function ge(i,l,d){d===void 0&&(d={}),h.fetchers.set(i,l),te({fetchers:new Map(h.fetchers)},{flushSync:(d&&d.flushSync)===!0})}function fe(i,l,d,m){m===void 0&&(m={});let E=Ie(h.matches,l);tt(i),te({errors:{[E.route.id]:d},fetchers:new Map(h.fetchers)},{flushSync:(m&&m.flushSync)===!0})}function _t(i){return f.v7_fetcherPersist&&(ke.set(i,(ke.get(i)||0)+1),ce.has(i)&&ce.delete(i)),h.fetchers.get(i)||Rn}function tt(i){let l=h.fetchers.get(i);Y.has(i)&&!(l&&l.state==="loading"&&Ce.has(i))&&ve(i),Te.delete(i),Ce.delete(i),de.delete(i),ce.delete(i),qe.delete(i),h.fetchers.delete(i)}function Nr(i){if(f.v7_fetcherPersist){let l=(ke.get(i)||0)-1;l<=0?(ke.delete(i),ce.add(i)):ke.set(i,l)}else tt(i);te({fetchers:new Map(h.fetchers)})}function ve(i){let l=Y.get(i);F(l,"Expected fetch controller: "+i),l.abort(),Y.delete(i)}function Ot(i){for(let l of i){let d=_t(l),m=be(d.data);h.fetchers.set(l,m)}}function jt(){let i=[],l=!1;for(let d of de){let m=h.fetchers.get(d);F(m,"Expected fetcher: "+d),m.state==="loading"&&(de.delete(d),i.push(d),l=!0)}return Ot(i),l}function It(i){let l=[];for(let[d,m]of Ce)if(m0}function Ar(i,l){let d=h.blockers.get(i)||Ke;return Ee.get(i)!==l&&Ee.set(i,l),d}function Nt(i){h.blockers.delete(i),Ee.delete(i)}function rt(i,l){let d=h.blockers.get(i)||Ke;F(d.state==="unblocked"&&l.state==="blocked"||d.state==="blocked"&&l.state==="blocked"||d.state==="blocked"&&l.state==="proceeding"||d.state==="blocked"&&l.state==="unblocked"||d.state==="proceeding"&&l.state==="unblocked","Invalid blocker state transition: "+d.state+" -> "+l.state);let m=new Map(h.blockers);m.set(i,l),te({blockers:m})}function At(i){let{currentLocation:l,nextLocation:d,historyAction:m}=i;if(Ee.size===0)return;Ee.size>1&&Me(!1,"A router only supports one blocker at a time");let E=Array.from(Ee.entries()),[S,M]=E[E.length-1],b=h.blockers.get(S);if(!(b&&b.state==="proceeding")&&M({currentLocation:l,nextLocation:d,historyAction:m}))return S}function pt(i){let l=re(404,{pathname:i}),d=c||o,{matches:m,route:E}=qt(d);return gt(),{notFoundMatches:m,route:E,error:l}}function nt(i,l){return{boundaryId:Ie(l.partialMatches).route.id,error:re(400,{type:"route-discovery",pathname:i,message:l.error!=null&&"message"in l.error?l.error:String(l.error)})}}function gt(i){let l=[];return we.forEach((d,m)=>{(!i||i(m))&&(d.cancel(),l.push(m),we.delete(m))}),l}function Br(i,l,d){if(R=i,L=l,x=d||null,!Z&&h.navigation===yt){Z=!0;let m=zt(h.location,h.matches);m!=null&&te({restoreScrollPosition:m})}return()=>{R=null,L=null,x=null}}function Bt(i,l){return x&&x(i,l.map(m=>Xr(m,h.loaderData)))||i.key}function zr(i,l){if(R&&L){let d=Bt(i,l);R[d]=L()}}function zt(i,l){if(R){let d=Bt(i,l),m=R[d];if(typeof m=="number")return m}return null}function at(i,l,d){if(p)if(i){let m=i[i.length-1].route;if(m.path&&(m.path==="*"||m.path.endsWith("/*")))return{active:!0,matches:ut(l,d,u,!0)}}else return{active:!0,matches:ut(l,d,u,!0)||[]};return{active:!1,matches:null}}async function it(i,l,d){let m=i,E=m.length>0?m[m.length-1].route:null;for(;;){let S=c==null,M=c||o;try{await Dn(p,l,m,M,s,a,Dr,d)}catch(D){return{type:"error",error:D,partialMatches:m}}finally{S&&(o=[...o])}if(d.aborted)return{type:"aborted"};let b=Se(M,l,u),C=!1;if(b){let D=b[b.length-1].route;if(D.index)return{type:"success",matches:b};if(D.path&&D.path.length>0)if(D.path==="*")C=!0;else return{type:"success",matches:b}}let P=ut(M,l,u,!0);if(!P||m.map(D=>D.route.id).join("-")===P.map(D=>D.route.id).join("-"))return{type:"success",matches:C?b:null};if(m=P,E=m[m.length-1].route,E.path==="*")return{type:"success",matches:m}}}function kr(i){s={},c=Ge(i,a,void 0,s)}function Hr(i,l){let d=c==null;pr(i,l,c||o,s,a),d&&(o=[...o],te({}))}return ee={get basename(){return u},get future(){return f},get state(){return h},get routes(){return o},get window(){return t},initialize:Mr,subscribe:Cr,enableScrollRestoration:Br,navigate:Tt,fetch:Or,revalidate:Tr,createHref:i=>e.history.createHref(i),encodeLocation:i=>e.history.encodeLocation(i),getFetcher:_t,deleteFetcher:Nr,dispose:Lr,getBlocker:Ar,deleteBlocker:Nt,patchRoutes:Hr,_internalFetchControllers:Y,_internalActiveDeferreds:we,_internalSetRoutes:kr},ee}function xn(e){return e!=null&&("formData"in e&&e.formData!=null||"body"in e&&e.body!==void 0)}function Et(e,t,r,n,a,s,o,c){let u,g;if(o){u=[];for(let f of t)if(u.push(f),f.route.id===o){g=f;break}}else u=t,g=t[t.length-1];let p=Mt(a||".",Dt(u,s),Be(e.pathname,r)||e.pathname,c==="path");return a==null&&(p.search=e.search,p.hash=e.hash),(a==null||a===""||a===".")&&g&&g.route.index&&!Ct(p.search)&&(p.search=p.search?p.search.replace(/^\?/,"?index&"):"?index"),n&&r!=="/"&&(p.pathname=p.pathname==="/"?r:me([r,p.pathname])),Ne(p)}function Vt(e,t,r,n){if(!n||!xn(n))return{path:r};if(n.formMethod&&!Nn(n.formMethod))return{path:r,error:re(405,{method:n.formMethod})};let a=()=>({path:r,error:re(400,{type:"invalid-body"})}),s=n.formMethod||"get",o=e?s.toUpperCase():s.toLowerCase(),c=gr(r);if(n.body!==void 0){if(n.formEncType==="text/plain"){if(!le(o))return a();let v=typeof n.body=="string"?n.body:n.body instanceof FormData||n.body instanceof URLSearchParams?Array.from(n.body.entries()).reduce((w,R)=>{let[x,L]=R;return""+w+x+"="+L+` -`},""):String(n.body);return{path:r,submission:{formMethod:o,formAction:c,formEncType:n.formEncType,formData:void 0,json:void 0,text:v}}}else if(n.formEncType==="application/json"){if(!le(o))return a();try{let v=typeof n.body=="string"?JSON.parse(n.body):n.body;return{path:r,submission:{formMethod:o,formAction:c,formEncType:n.formEncType,formData:void 0,json:v,text:void 0}}}catch{return a()}}}F(typeof FormData=="function","FormData is not available in this environment");let u,g;if(n.formData)u=xt(n.formData),g=n.formData;else if(n.body instanceof FormData)u=xt(n.body),g=n.body;else if(n.body instanceof URLSearchParams)u=n.body,g=Gt(u);else if(n.body==null)u=new URLSearchParams,g=new FormData;else try{u=new URLSearchParams(n.body),g=Gt(u)}catch{return a()}let p={formMethod:o,formAction:c,formEncType:n&&n.formEncType||"application/x-www-form-urlencoded",formData:g,json:void 0,text:void 0};if(le(p.formMethod))return{path:r,submission:p};let f=ue(r);return t&&f.search&&Ct(f.search)&&u.append("index",""),f.search="?"+u,{path:Ne(f),submission:p}}function Sn(e,t){let r=e;if(t){let n=e.findIndex(a=>a.route.id===t);n>=0&&(r=e.slice(0,n))}return r}function Kt(e,t,r,n,a,s,o,c,u,g,p,f,v,w,R,x){let L=x?ie(x[1])?x[1].error:x[1].data:void 0,Z=e.createURL(t.location),_=e.createURL(a),H=x&&ie(x[1])?x[0]:void 0,X=H?Sn(r,H):r,ee=x?x[1].statusCode:void 0,h=o&&ee&&ee>=400,ne=X.filter((U,z)=>{let{route:J}=U;if(J.lazy)return!0;if(J.loader==null)return!1;if(s)return typeof J.loader!="function"||J.loader.hydrate?!0:t.loaderData[J.id]===void 0&&(!t.errors||t.errors[J.id]===void 0);if(Pn(t.loaderData,t.matches[z],U)||u.some(W=>W===U.route.id))return!0;let Q=t.matches[z],oe=U;return $t(U,K({currentUrl:Z,currentParams:Q.params,nextUrl:_,nextParams:oe.params},n,{actionResult:L,actionStatus:ee,defaultShouldRevalidate:h?!1:c||Z.pathname+Z.search===_.pathname+_.search||Z.search!==_.search||mr(Q,oe)}))}),I=[];return f.forEach((U,z)=>{if(s||!r.some(pe=>pe.route.id===U.routeId)||p.has(z))return;let J=Se(w,U.path,R);if(!J){I.push({key:z,routeId:U.routeId,path:U.path,matches:null,match:null,controller:null});return}let Q=t.fetchers.get(z),oe=Ye(J,U.path),W=!1;v.has(z)?W=!1:g.has(z)?(g.delete(z),W=!0):Q&&Q.state!=="idle"&&Q.data===void 0?W=c:W=$t(oe,K({currentUrl:Z,currentParams:t.matches[t.matches.length-1].params,nextUrl:_,nextParams:r[r.length-1].params},n,{actionResult:L,actionStatus:ee,defaultShouldRevalidate:h?!1:c})),W&&I.push({key:z,routeId:U.routeId,path:U.path,matches:J,match:oe,controller:new AbortController})}),[ne,I]}function Pn(e,t,r){let n=!t||r.route.id!==t.route.id,a=e[r.route.id]===void 0;return n||a}function mr(e,t){let r=e.route.path;return e.pathname!==t.pathname||r!=null&&r.endsWith("*")&&e.params["*"]!==t.params["*"]}function $t(e,t){if(e.route.shouldRevalidate){let r=e.route.shouldRevalidate(t);if(typeof r=="boolean")return r}return t.defaultShouldRevalidate}async function Dn(e,t,r,n,a,s,o,c){let u=[t,...r.map(g=>g.route.id)].join("-");try{let g=o.get(u);g||(g=e({path:t,matches:r,patch:(p,f)=>{c.aborted||pr(p,f,n,a,s)}}),o.set(u,g)),g&&On(g)&&await g}finally{o.delete(u)}}function pr(e,t,r,n,a){if(e){var s;let o=n[e];F(o,"No route found to patch children into: routeId = "+e);let c=Ge(t,a,[e,"patch",String(((s=o.children)==null?void 0:s.length)||"0")],n);o.children?o.children.push(...c):o.children=c}else{let o=Ge(t,a,["patch",String(r.length||"0")],n);r.push(...o)}}async function Jt(e,t,r){if(!e.lazy)return;let n=await e.lazy();if(!e.lazy)return;let a=r[e.id];F(a,"No route found in manifest");let s={};for(let o in n){let u=a[o]!==void 0&&o!=="hasErrorBoundary";Me(!u,'Route "'+a.id+'" has a static property "'+o+'" defined but its lazy function is also returning a value for this property. '+('The lazy route property "'+o+'" will be ignored.')),!u&&!Yr.has(o)&&(s[o]=n[o])}Object.assign(a,s),Object.assign(a,K({},t(a),{lazy:void 0}))}function Mn(e){return Promise.all(e.matches.map(t=>t.resolve()))}async function Ln(e,t,r,n,a,s,o,c){let u=n.reduce((f,v)=>f.add(v.route.id),new Set),g=new Set,p=await e({matches:a.map(f=>{let v=u.has(f.route.id);return K({},f,{shouldLoad:v,resolve:R=>(g.add(f.route.id),v?Cn(t,r,f,s,o,R,c):Promise.resolve({type:A.data,result:void 0}))})}),request:r,params:a[0].params,context:c});return a.forEach(f=>F(g.has(f.route.id),'`match.resolve()` was not called for route id "'+f.route.id+'". You must call `match.resolve()` on every match passed to `dataStrategy` to ensure all routes are properly loaded.')),p.filter((f,v)=>u.has(a[v].route.id))}async function Cn(e,t,r,n,a,s,o){let c,u,g=p=>{let f,v=new Promise((x,L)=>f=L);u=()=>f(),t.signal.addEventListener("abort",u);let w=x=>typeof p!="function"?Promise.reject(new Error("You cannot call the handler for a route which defines a boolean "+('"'+e+'" [routeId: '+r.route.id+"]"))):p({request:t,params:r.params,context:o},...x!==void 0?[x]:[]),R;return s?R=s(x=>w(x)):R=(async()=>{try{return{type:"data",result:await w()}}catch(x){return{type:"error",result:x}}})(),Promise.race([R,v])};try{let p=r.route[e];if(r.route.lazy)if(p){let f,[v]=await Promise.all([g(p).catch(w=>{f=w}),Jt(r.route,a,n)]);if(f!==void 0)throw f;c=v}else if(await Jt(r.route,a,n),p=r.route[e],p)c=await g(p);else if(e==="action"){let f=new URL(t.url),v=f.pathname+f.search;throw re(405,{method:t.method,pathname:v,routeId:r.route.id})}else return{type:A.data,result:void 0};else if(p)c=await g(p);else{let f=new URL(t.url),v=f.pathname+f.search;throw re(404,{pathname:v})}F(c.result!==void 0,"You defined "+(e==="action"?"an action":"a loader")+" for route "+('"'+r.route.id+"\" but didn't return anything from your `"+e+"` ")+"function. Please return a value or `null`.")}catch(p){return{type:A.error,result:p}}finally{u&&t.signal.removeEventListener("abort",u)}return c}async function Tn(e){let{result:t,type:r}=e;if(vr(t)){let g;try{let p=t.headers.get("Content-Type");p&&/\bapplication\/json\b/.test(p)?t.body==null?g=null:g=await t.json():g=await t.text()}catch(p){return{type:A.error,error:p}}return r===A.error?{type:A.error,error:new wt(t.status,t.statusText,g),statusCode:t.status,headers:t.headers}:{type:A.data,data:g,statusCode:t.status,headers:t.headers}}if(r===A.error){if(tr(t)){var n;if(t.data instanceof Error){var a;return{type:A.error,error:t.data,statusCode:(a=t.init)==null?void 0:a.status}}t=new wt(((n=t.init)==null?void 0:n.status)||500,void 0,t.data)}return{type:A.error,error:t,statusCode:ct(t)?t.status:void 0}}if(In(t)){var s,o;return{type:A.deferred,deferredData:t,statusCode:(s=t.init)==null?void 0:s.status,headers:((o=t.init)==null?void 0:o.headers)&&new Headers(t.init.headers)}}if(tr(t)){var c,u;return{type:A.data,data:t.data,statusCode:(c=t.init)==null?void 0:c.status,headers:(u=t.init)!=null&&u.headers?new Headers(t.init.headers):void 0}}return{type:A.data,data:t}}function Un(e,t,r,n,a,s){let o=e.headers.get("Location");if(F(o,"Redirects returned/thrown from loaders/actions must have a Location header"),!Lt.test(o)){let c=n.slice(0,n.findIndex(u=>u.route.id===r)+1);o=Et(new URL(t.url),c,a,!0,o,s),e.headers.set("Location",o)}return e}function Yt(e,t,r){if(Lt.test(e)){let n=e,a=n.startsWith("//")?new URL(t.protocol+n):new URL(n),s=Be(a.pathname,r)!=null;if(a.origin===t.origin&&s)return a.pathname+a.search+a.hash}return e}function je(e,t,r,n){let a=e.createURL(gr(t)).toString(),s={signal:r};if(n&&le(n.formMethod)){let{formMethod:o,formEncType:c}=n;s.method=o.toUpperCase(),c==="application/json"?(s.headers=new Headers({"Content-Type":c}),s.body=JSON.stringify(n.json)):c==="text/plain"?s.body=n.text:c==="application/x-www-form-urlencoded"&&n.formData?s.body=xt(n.formData):s.body=n.formData}return new Request(a,s)}function xt(e){let t=new URLSearchParams;for(let[r,n]of e.entries())t.append(r,typeof n=="string"?n:n.name);return t}function Gt(e){let t=new FormData;for(let[r,n]of e.entries())t.append(r,n);return t}function Fn(e,t,r,n,a,s){let o={},c=null,u,g=!1,p={},f=n&&ie(n[1])?n[1].error:void 0;return r.forEach((v,w)=>{let R=t[w].route.id;if(F(!De(v),"Cannot handle redirect results in processLoaderData"),ie(v)){let x=v.error;if(f!==void 0&&(x=f,f=void 0),c=c||{},s)c[R]=x;else{let L=Ie(e,R);c[L.route.id]==null&&(c[L.route.id]=x)}o[R]=void 0,g||(g=!0,u=ct(v.error)?v.error.status:500),v.headers&&(p[R]=v.headers)}else Pe(v)?(a.set(R,v.deferredData),o[R]=v.deferredData.data,v.statusCode!=null&&v.statusCode!==200&&!g&&(u=v.statusCode),v.headers&&(p[R]=v.headers)):(o[R]=v.data,v.statusCode&&v.statusCode!==200&&!g&&(u=v.statusCode),v.headers&&(p[R]=v.headers))}),f!==void 0&&n&&(c={[n[0]]:f},o[n[0]]=void 0),{loaderData:o,errors:c,statusCode:u||200,loaderHeaders:p}}function Xt(e,t,r,n,a,s,o,c){let{loaderData:u,errors:g}=Fn(t,r,n,a,c,!1);for(let p=0;pn.route.id===t)+1):[...e]).reverse().find(n=>n.route.hasErrorBoundary===!0)||e[0]}function qt(e){let t=e.length===1?e[0]:e.find(r=>r.index||!r.path||r.path==="/")||{id:"__shim-error-route__"};return{matches:[{params:{},pathname:"",pathnameBase:"",route:t}],route:t}}function re(e,t){let{pathname:r,routeId:n,method:a,type:s,message:o}=t===void 0?{}:t,c="Unknown Server Error",u="Unknown @remix-run/router error";return e===400?(c="Bad Request",s==="route-discovery"?u='Unable to match URL "'+r+'" - the `unstable_patchRoutesOnMiss()` '+(`function threw the following error: -`+o):a&&r&&n?u="You made a "+a+' request to "'+r+'" but '+('did not provide a `loader` for route "'+n+'", ')+"so there is no way to handle the request.":s==="defer-action"?u="defer() is not supported in actions":s==="invalid-body"&&(u="Unable to encode submission body")):e===403?(c="Forbidden",u='Route "'+n+'" does not match URL "'+r+'"'):e===404?(c="Not Found",u='No route matches URL "'+r+'"'):e===405&&(c="Method Not Allowed",a&&r&&n?u="You made a "+a.toUpperCase()+' request to "'+r+'" but '+('did not provide an `action` for route "'+n+'", ')+"so there is no way to handle the request.":a&&(u='Invalid request method "'+a.toUpperCase()+'"')),new wt(e||500,c,new Error(u),!0)}function er(e){for(let t=e.length-1;t>=0;t--){let r=e[t];if(De(r))return{result:r,idx:t}}}function gr(e){let t=typeof e=="string"?ue(e):e;return Ne(K({},t,{hash:""}))}function _n(e,t){return e.pathname!==t.pathname||e.search!==t.search?!1:e.hash===""?t.hash!=="":e.hash===t.hash?!0:t.hash!==""}function On(e){return typeof e=="object"&&e!=null&&"then"in e}function jn(e){return vr(e.result)&&yn.has(e.result.status)}function Pe(e){return e.type===A.deferred}function ie(e){return e.type===A.error}function De(e){return(e&&e.type)===A.redirect}function tr(e){return typeof e=="object"&&e!=null&&"type"in e&&"data"in e&&"init"in e&&e.type==="DataWithResponseInit"}function In(e){let t=e;return t&&typeof t=="object"&&typeof t.data=="object"&&typeof t.subscribe=="function"&&typeof t.cancel=="function"&&typeof t.resolveData=="function"}function vr(e){return e!=null&&typeof e.status=="number"&&typeof e.statusText=="string"&&typeof e.headers=="object"&&typeof e.body<"u"}function Nn(e){return vn.has(e.toLowerCase())}function le(e){return pn.has(e.toLowerCase())}async function rr(e,t,r,n,a,s){for(let o=0;of.route.id===u.route.id),p=g!=null&&!mr(g,u)&&(s&&s[u.route.id])!==void 0;if(Pe(c)&&(a||p)){let f=n[o];F(f,"Expected an AbortSignal for revalidating fetcher deferred result"),await yr(c,f,a).then(v=>{v&&(r[o]=v||r[o])})}}}async function yr(e,t,r){if(r===void 0&&(r=!1),!await e.deferredData.resolveData(t)){if(r)try{return{type:A.data,data:e.deferredData.unwrappedData}}catch(a){return{type:A.error,error:a}}return{type:A.data,data:e.deferredData.data}}}function Ct(e){return new URLSearchParams(e).getAll("index").some(t=>t==="")}function Ye(e,t){let r=typeof t=="string"?ue(t).search:t.search;if(e[e.length-1].route.index&&Ct(r||""))return e[e.length-1];let n=cr(e);return n[n.length-1]}function nr(e){let{formMethod:t,formAction:r,formEncType:n,text:a,formData:s,json:o}=e;if(!(!t||!r||!n)){if(a!=null)return{formMethod:t,formAction:r,formEncType:n,formData:void 0,json:void 0,text:a};if(s!=null)return{formMethod:t,formAction:r,formEncType:n,formData:s,json:void 0,text:void 0};if(o!==void 0)return{formMethod:t,formAction:r,formEncType:n,formData:void 0,json:o,text:void 0}}}function bt(e,t){return t?{state:"loading",location:e,formMethod:t.formMethod,formAction:t.formAction,formEncType:t.formEncType,formData:t.formData,json:t.json,text:t.text}:{state:"loading",location:e,formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0}}function An(e,t){return{state:"submitting",location:e,formMethod:t.formMethod,formAction:t.formAction,formEncType:t.formEncType,formData:t.formData,json:t.json,text:t.text}}function $e(e,t){return e?{state:"loading",formMethod:e.formMethod,formAction:e.formAction,formEncType:e.formEncType,formData:e.formData,json:e.json,text:e.text,data:t}:{state:"loading",formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0,data:t}}function Bn(e,t){return{state:"submitting",formMethod:e.formMethod,formAction:e.formAction,formEncType:e.formEncType,formData:e.formData,json:e.json,text:e.text,data:t?t.data:void 0}}function be(e){return{state:"idle",formMethod:void 0,formAction:void 0,formEncType:void 0,formData:void 0,json:void 0,text:void 0,data:e}}function zn(e,t){try{let r=e.sessionStorage.getItem(hr);if(r){let n=JSON.parse(r);for(let[a,s]of Object.entries(n||{}))s&&Array.isArray(s)&&t.set(a,new Set(s||[]))}}catch{}}function kn(e,t){if(t.size>0){let r={};for(let[n,a]of t)r[n]=[...a];try{e.sessionStorage.setItem(hr,JSON.stringify(r))}catch(n){Me(!1,"Failed to save applied view transitions in sessionStorage ("+n+").")}}}/** - * React Router v6.26.0 - * - * Copyright (c) Remix Software Inc. - * - * This source code is licensed under the MIT license found in the - * LICENSE.md file in the root directory of this source tree. - * - * @license MIT - */function Ae(){return Ae=Object.assign?Object.assign.bind():function(e){for(var t=1;t{c.current=!0}),y.useCallback(function(g,p){if(p===void 0&&(p={}),!c.current)return;if(typeof g=="number"){n.go(g);return}let f=Mt(g,JSON.parse(o),s,p.relative==="path");e==null&&t!=="/"&&(f.pathname=f.pathname==="/"?t:me([t,f.pathname])),(p.replace?n.replace:n.push)(f,p.state,p)},[t,n,o,s,e])}function Sa(){let{matches:e}=y.useContext(Re),t=e[e.length-1];return t?t.params:{}}function xr(e,t){let{relative:r}=t===void 0?{}:t,{future:n}=y.useContext(Le),{matches:a}=y.useContext(Re),{pathname:s}=Ze(),o=JSON.stringify(Dt(a,n.v7_relativeSplatPath));return y.useMemo(()=>Mt(e,JSON.parse(o),s,r==="path"),[e,o,s,r])}function Vn(e,t,r,n){Qe()||F(!1);let{navigator:a}=y.useContext(Le),{matches:s}=y.useContext(Re),o=s[s.length-1],c=o?o.params:{};o&&o.pathname;let u=o?o.pathnameBase:"/";o&&o.route;let g=Ze(),p;if(t){var f;let L=typeof t=="string"?ue(t):t;u==="/"||(f=L.pathname)!=null&&f.startsWith(u)||F(!1),p=L}else p=g;let v=p.pathname||"/",w=v;if(u!=="/"){let L=u.replace(/^\//,"").split("/");w="/"+v.replace(/^\//,"").split("/").slice(L.length).join("/")}let R=Se(e,{pathname:w}),x=Gn(R&&R.map(L=>Object.assign({},L,{params:Object.assign({},c,L.params),pathname:me([u,a.encodeLocation?a.encodeLocation(L.pathname).pathname:L.pathname]),pathnameBase:L.pathnameBase==="/"?u:me([u,a.encodeLocation?a.encodeLocation(L.pathnameBase).pathname:L.pathnameBase])})),s,r,n);return t&&x?y.createElement(Xe.Provider,{value:{location:Ae({pathname:"/",search:"",hash:"",state:null,key:"default"},p),navigationType:$.Pop}},x):x}function Kn(){let e=qn(),t=ct(e)?e.status+" "+e.statusText:e instanceof Error?e.message:JSON.stringify(e),r=e instanceof Error?e.stack:null,a={padding:"0.5rem",backgroundColor:"rgba(200,200,200, 0.5)"},s=null;return y.createElement(y.Fragment,null,y.createElement("h2",null,"Unexpected Application Error!"),y.createElement("h3",{style:{fontStyle:"italic"}},t),r?y.createElement("pre",{style:a},r):null,s)}const $n=y.createElement(Kn,null);class Jn extends y.Component{constructor(t){super(t),this.state={location:t.location,revalidation:t.revalidation,error:t.error}}static getDerivedStateFromError(t){return{error:t}}static getDerivedStateFromProps(t,r){return r.location!==t.location||r.revalidation!=="idle"&&t.revalidation==="idle"?{error:t.error,location:t.location,revalidation:t.revalidation}:{error:t.error!==void 0?t.error:r.error,location:r.location,revalidation:t.revalidation||r.revalidation}}componentDidCatch(t,r){console.error("React Router caught the following error during render",t,r)}render(){return this.state.error!==void 0?y.createElement(Re.Provider,{value:this.props.routeContext},y.createElement(Rr.Provider,{value:this.state.error,children:this.props.component})):this.props.children}}function Yn(e){let{routeContext:t,match:r,children:n}=e,a=y.useContext(ft);return a&&a.static&&a.staticContext&&(r.route.errorElement||r.route.ErrorBoundary)&&(a.staticContext._deepestRenderedBoundaryId=r.route.id),y.createElement(Re.Provider,{value:t},n)}function Gn(e,t,r,n){var a;if(t===void 0&&(t=[]),r===void 0&&(r=null),n===void 0&&(n=null),e==null){var s;if(!r)return null;if(r.errors)e=r.matches;else if((s=n)!=null&&s.v7_partialHydration&&t.length===0&&!r.initialized&&r.matches.length>0)e=r.matches;else return null}let o=e,c=(a=r)==null?void 0:a.errors;if(c!=null){let p=o.findIndex(f=>f.route.id&&(c==null?void 0:c[f.route.id])!==void 0);p>=0||F(!1),o=o.slice(0,Math.min(o.length,p+1))}let u=!1,g=-1;if(r&&n&&n.v7_partialHydration)for(let p=0;p=0?o=o.slice(0,g+1):o=[o[0]];break}}}return o.reduceRight((p,f,v)=>{let w,R=!1,x=null,L=null;r&&(w=c&&f.route.id?c[f.route.id]:void 0,x=f.route.errorElement||$n,u&&(g<0&&v===0?(ta("route-fallback",!1),R=!0,L=null):g===v&&(R=!0,L=f.route.hydrateFallbackElement||null)));let Z=t.concat(o.slice(0,v+1)),_=()=>{let H;return w?H=x:R?H=L:f.route.Component?H=y.createElement(f.route.Component,null):f.route.element?H=f.route.element:H=p,y.createElement(Yn,{match:f,routeContext:{outlet:p,matches:Z,isDataRoute:r!=null},children:H})};return r&&(f.route.ErrorBoundary||f.route.errorElement||v===0)?y.createElement(Jn,{location:r.location,revalidation:r.revalidation,component:x,error:w,children:_(),routeContext:{outlet:null,matches:Z,isDataRoute:!0}}):_()},null)}var Sr=function(e){return e.UseBlocker="useBlocker",e.UseRevalidator="useRevalidator",e.UseNavigateStable="useNavigate",e}(Sr||{}),dt=function(e){return e.UseBlocker="useBlocker",e.UseLoaderData="useLoaderData",e.UseActionData="useActionData",e.UseRouteError="useRouteError",e.UseNavigation="useNavigation",e.UseRouteLoaderData="useRouteLoaderData",e.UseMatches="useMatches",e.UseRevalidator="useRevalidator",e.UseNavigateStable="useNavigate",e.UseRouteId="useRouteId",e}(dt||{});function Xn(e){let t=y.useContext(ft);return t||F(!1),t}function Qn(e){let t=y.useContext(br);return t||F(!1),t}function Zn(e){let t=y.useContext(Re);return t||F(!1),t}function Pr(e){let t=Zn(),r=t.matches[t.matches.length-1];return r.route.id||F(!1),r.route.id}function qn(){var e;let t=y.useContext(Rr),r=Qn(dt.UseRouteError),n=Pr(dt.UseRouteError);return t!==void 0?t:(e=r.errors)==null?void 0:e[n]}function ea(){let{router:e}=Xn(Sr.UseNavigateStable),t=Pr(dt.UseNavigateStable),r=y.useRef(!1);return wr(()=>{r.current=!0}),y.useCallback(function(a,s){s===void 0&&(s={}),r.current&&(typeof a=="number"?e.navigate(a):e.navigate(a,Ae({fromRouteId:t},s)))},[e,t])}const ar={};function ta(e,t,r){!t&&!ar[e]&&(ar[e]=!0)}function ra(e){let{basename:t="/",children:r=null,location:n,navigationType:a=$.Pop,navigator:s,static:o=!1,future:c}=e;Qe()&&F(!1);let u=t.replace(/^\/*/,"/"),g=y.useMemo(()=>({basename:u,navigator:s,static:o,future:Ae({v7_relativeSplatPath:!1},c)}),[u,c,s,o]);typeof n=="string"&&(n=ue(n));let{pathname:p="/",search:f="",hash:v="",state:w=null,key:R="default"}=n,x=y.useMemo(()=>{let L=Be(p,u);return L==null?null:{location:{pathname:L,search:f,hash:v,state:w,key:R},navigationType:a}},[u,p,f,v,w,R,a]);return x==null?null:y.createElement(Le.Provider,{value:g},y.createElement(Xe.Provider,{children:r,value:x}))}new Promise(()=>{});function na(e){let t={hasErrorBoundary:e.ErrorBoundary!=null||e.errorElement!=null};return e.Component&&Object.assign(t,{element:y.createElement(e.Component),Component:void 0}),e.HydrateFallback&&Object.assign(t,{hydrateFallbackElement:y.createElement(e.HydrateFallback),HydrateFallback:void 0}),e.ErrorBoundary&&Object.assign(t,{errorElement:y.createElement(e.ErrorBoundary),ErrorBoundary:void 0}),t}function Pa(e,t){return En({basename:t==null?void 0:t.basename,future:Ae({},t==null?void 0:t.future,{v7_prependBasename:!0}),history:$r({initialEntries:t==null?void 0:t.initialEntries,initialIndex:t==null?void 0:t.initialIndex}),hydrationData:t==null?void 0:t.hydrationData,routes:e,mapRouteProperties:na,unstable_dataStrategy:t==null?void 0:t.unstable_dataStrategy,unstable_patchRoutesOnMiss:t==null?void 0:t.unstable_patchRoutesOnMiss}).initialize()}/** - * React Router DOM v6.26.0 - * - * Copyright (c) Remix Software Inc. - * - * This source code is licensed under the MIT license found in the - * LICENSE.md file in the root directory of this source tree. - * - * @license MIT - */function St(){return St=Object.assign?Object.assign.bind():function(e){for(var t=1;t=0)&&(r[a]=e[a]);return r}function ia(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}function oa(e,t){return e.button===0&&(!t||t==="_self")&&!ia(e)}function Pt(e){return e===void 0&&(e=""),new URLSearchParams(typeof e=="string"||Array.isArray(e)||e instanceof URLSearchParams?e:Object.keys(e).reduce((t,r)=>{let n=e[r];return t.concat(Array.isArray(n)?n.map(a=>[r,a]):[[r,n]])},[]))}function la(e,t){let r=Pt(e);return t&&t.forEach((n,a)=>{r.has(a)||t.getAll(a).forEach(s=>{r.append(a,s)})}),r}const sa=["onClick","relative","reloadDocument","replace","state","target","to","preventScrollReset","unstable_viewTransition"],ua="6";try{window.__reactRouterVersion=ua}catch{}const da=y.createContext({isTransitioning:!1}),ca=y.createContext(new Map),fa="startTransition",ir=Vr[fa],ha="flushSync",or=Kr[ha];function ma(e){ir?ir(e):e()}function Je(e){or?or(e):e()}class pa{constructor(){this.status="pending",this.promise=new Promise((t,r)=>{this.resolve=n=>{this.status==="pending"&&(this.status="resolved",t(n))},this.reject=n=>{this.status==="pending"&&(this.status="rejected",r(n))}})}}function Da(e){let{fallbackElement:t,router:r,future:n}=e,[a,s]=y.useState(r.state),[o,c]=y.useState(),[u,g]=y.useState({isTransitioning:!1}),[p,f]=y.useState(),[v,w]=y.useState(),[R,x]=y.useState(),L=y.useRef(new Map),{v7_startTransition:Z}=n||{},_=y.useCallback(I=>{Z?ma(I):I()},[Z]),H=y.useCallback((I,U)=>{let{deletedFetchers:z,unstable_flushSync:J,unstable_viewTransitionOpts:Q}=U;z.forEach(W=>L.current.delete(W)),I.fetchers.forEach((W,pe)=>{W.data!==void 0&&L.current.set(pe,W.data)});let oe=r.window==null||r.window.document==null||typeof r.window.document.startViewTransition!="function";if(!Q||oe){J?Je(()=>s(I)):_(()=>s(I));return}if(J){Je(()=>{v&&(p&&p.resolve(),v.skipTransition()),g({isTransitioning:!0,flushSync:!0,currentLocation:Q.currentLocation,nextLocation:Q.nextLocation})});let W=r.window.document.startViewTransition(()=>{Je(()=>s(I))});W.finished.finally(()=>{Je(()=>{f(void 0),w(void 0),c(void 0),g({isTransitioning:!1})})}),Je(()=>w(W));return}v?(p&&p.resolve(),v.skipTransition(),x({state:I,currentLocation:Q.currentLocation,nextLocation:Q.nextLocation})):(c(I),g({isTransitioning:!0,flushSync:!1,currentLocation:Q.currentLocation,nextLocation:Q.nextLocation}))},[r.window,v,p,L,_]);y.useLayoutEffect(()=>r.subscribe(H),[r,H]),y.useEffect(()=>{u.isTransitioning&&!u.flushSync&&f(new pa)},[u]),y.useEffect(()=>{if(p&&o&&r.window){let I=o,U=p.promise,z=r.window.document.startViewTransition(async()=>{_(()=>s(I)),await U});z.finished.finally(()=>{f(void 0),w(void 0),c(void 0),g({isTransitioning:!1})}),w(z)}},[_,o,p,r.window]),y.useEffect(()=>{p&&o&&a.location.key===o.location.key&&p.resolve()},[p,v,a.location,o]),y.useEffect(()=>{!u.isTransitioning&&R&&(c(R.state),g({isTransitioning:!0,flushSync:!1,currentLocation:R.currentLocation,nextLocation:R.nextLocation}),x(void 0))},[u.isTransitioning,R]),y.useEffect(()=>{},[]);let X=y.useMemo(()=>({createHref:r.createHref,encodeLocation:r.encodeLocation,go:I=>r.navigate(I),push:(I,U,z)=>r.navigate(I,{state:U,preventScrollReset:z==null?void 0:z.preventScrollReset}),replace:(I,U,z)=>r.navigate(I,{replace:!0,state:U,preventScrollReset:z==null?void 0:z.preventScrollReset})}),[r]),ee=r.basename||"/",h=y.useMemo(()=>({router:r,navigator:X,static:!1,basename:ee}),[r,X,ee]),ne=y.useMemo(()=>({v7_relativeSplatPath:r.future.v7_relativeSplatPath}),[r.future.v7_relativeSplatPath]);return y.createElement(y.Fragment,null,y.createElement(ft.Provider,{value:h},y.createElement(br.Provider,{value:a},y.createElement(ca.Provider,{value:L.current},y.createElement(da.Provider,{value:u},y.createElement(ra,{basename:ee,location:a.location,navigationType:a.historyAction,navigator:X,future:ne},a.initialized||r.future.v7_partialHydration?y.createElement(ga,{routes:r.routes,future:r.future,state:a}):t))))),null)}const ga=y.memo(va);function va(e){let{routes:t,future:r,state:n}=e;return Vn(t,void 0,n,r)}const ya=typeof window<"u"&&typeof window.document<"u"&&typeof window.document.createElement<"u",ba=/^(?:[a-z][a-z0-9+.-]*:|\/\/)/i,Ma=y.forwardRef(function(t,r){let{onClick:n,relative:a,reloadDocument:s,replace:o,state:c,target:u,to:g,preventScrollReset:p,unstable_viewTransition:f}=t,v=aa(t,sa),{basename:w}=y.useContext(Le),R,x=!1;if(typeof g=="string"&&ba.test(g)&&(R=g,ya))try{let H=new URL(window.location.href),X=g.startsWith("//")?new URL(H.protocol+g):new URL(g),ee=Be(X.pathname,w);X.origin===H.origin&&ee!=null?g=ee+X.search+X.hash:x=!0}catch{}let L=Hn(g,{relative:a}),Z=Ra(g,{replace:o,state:c,target:u,preventScrollReset:p,relative:a,unstable_viewTransition:f});function _(H){n&&n(H),H.defaultPrevented||Z(H)}return y.createElement("a",St({},v,{href:R||L,onClick:x||s?n:_,ref:r,target:u}))});var lr;(function(e){e.UseScrollRestoration="useScrollRestoration",e.UseSubmit="useSubmit",e.UseSubmitFetcher="useSubmitFetcher",e.UseFetcher="useFetcher",e.useViewTransitionState="useViewTransitionState"})(lr||(lr={}));var sr;(function(e){e.UseFetcher="useFetcher",e.UseFetchers="useFetchers",e.UseScrollRestoration="useScrollRestoration"})(sr||(sr={}));function Ra(e,t){let{target:r,replace:n,state:a,preventScrollReset:s,relative:o,unstable_viewTransition:c}=t===void 0?{}:t,u=Er(),g=Ze(),p=xr(e,{relative:o});return y.useCallback(f=>{if(oa(f,r)){f.preventDefault();let v=n!==void 0?n:Ne(g)===Ne(p);u(e,{replace:v,state:a,preventScrollReset:s,relative:o,unstable_viewTransition:c})}},[g,u,p,n,a,r,e,s,o,c])}function La(e){let t=y.useRef(Pt(e)),r=y.useRef(!1),n=Ze(),a=y.useMemo(()=>la(n.search,r.current?null:t.current),[n.search]),s=Er(),o=y.useCallback((c,u)=>{const g=Pt(typeof c=="function"?c(a):c);r.current=!0,s("?"+g,u)},[s,a]);return[a,o]}export{Ma as L,Da as R,Re as a,Sa as b,Pa as c,La as d,xa as e,Ze as u}; diff --git a/storybook-static/assets/index-bcb7655a.js b/storybook-static/assets/index-bcb7655a.js deleted file mode 100644 index 7b0f4f0..0000000 --- a/storybook-static/assets/index-bcb7655a.js +++ /dev/null @@ -1 +0,0 @@ -import{o as l,X as c,S as T,D as b,m as d,a as S,A as B,Z as L,l as C,u as H,s as u,H as g,b as y,J as I,O as h,w as k,c as P,p as W,d as A,f as F,h as x,e as D,g as R,i as f,j as v,B as E,v as M,k as N,n as q,q as w,r as O,C as U,t as Z,y as j,I as z,x as G,z as J,E as K,F as Q,G as V,K as X,_ as Y,M as _,L as $,N as aa,P as sa,Q as oa,R as ta,T as ea,U as ra,V as pa,W as ia,Y as na,$ as ma,a0 as la,a1 as ca,a2 as Ta,a3 as ba,a4 as da,a5 as Sa,a6 as Ba,a7 as La,a8 as Ca,a9 as Ha,aa as ua,ab as ga,ac as ya,ad as Ia}from"./DocsRenderer-PKQXORMH-b0610b88.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./index-f1f2c4b1.js";import"./client-e941fabf.js";import"./index-5f347087.js";import"./index-1b441bc2.js";import"./isArray-03ed71c9.js";import"./index-356e4a49.js";export{l as A,c as ActionBar,T as AddonPanel,b as Badge,d as Bar,S as Blockquote,B as Button,L as ClipboardCode,C as Code,H as DL,u as Div,g as DocumentWrapper,y as EmptyTabContent,I as ErrorFormatter,h as FlexBar,k as Form,P as H1,W as H2,A as H3,F as H4,x as H5,D as H6,R as HR,f as IconButton,v as IconButtonSkeleton,E as Icons,M as Img,N as LI,q as Link,w as ListItem,O as Loader,U as Modal,Z as OL,j as P,z as Placeholder,G as Pre,J as ResetWrapper,K as ScrollArea,Q as Separator,V as Spaced,X as Span,Y as StorybookIcon,_ as StorybookLogo,$ as Symbols,aa as SyntaxHighlighter,sa as TT,oa as TabBar,ta as TabButton,ea as TabWrapper,ra as Table,pa as Tabs,ia as TabsState,na as TooltipLinkList,ma as TooltipMessage,la as TooltipNote,ca as UL,Ta as WithTooltip,ba as WithTooltipPure,da as Zoom,Sa as codeCommon,Ba as components,La as createCopyToClipboardFunction,Ca as getStoryHref,Ha as icons,ua as interleaveSeparators,ga as nameSpaceClassNames,ya as resetComponents,Ia as withReset}; diff --git a/storybook-static/assets/index-e5833c58.js b/storybook-static/assets/index-e5833c58.js deleted file mode 100644 index af48c13..0000000 --- a/storybook-static/assets/index-e5833c58.js +++ /dev/null @@ -1 +0,0 @@ -import{R as e}from"./index-f1f2c4b1.js";const o={},c=e.createContext(o);function u(n){const t=e.useContext(c);return e.useMemo(function(){return typeof n=="function"?n(t):{...t,...n}},[t,n])}function m(n){let t;return n.disableParentContext?t=typeof n.components=="function"?n.components(o):n.components||o:t=u(n.components),e.createElement(c.Provider,{value:t},n.children)}export{m as MDXProvider,u as useMDXComponents}; diff --git a/storybook-static/assets/index-f1f2c4b1.js b/storybook-static/assets/index-f1f2c4b1.js deleted file mode 100644 index 09fbc48..0000000 --- a/storybook-static/assets/index-f1f2c4b1.js +++ /dev/null @@ -1,9 +0,0 @@ -function A(e,t){for(var r=0;rn[u]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}))}var X=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{};function D(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function Z(e){if(e.__esModule)return e;var t=e.default;if(typeof t=="function"){var r=function n(){return this instanceof n?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};r.prototype=t.prototype}else r={};return Object.defineProperty(r,"__esModule",{value:!0}),Object.keys(e).forEach(function(n){var u=Object.getOwnPropertyDescriptor(e,n);Object.defineProperty(r,n,u.get?u:{enumerable:!0,get:function(){return e[n]}})}),r}var R={exports:{}},o={};/** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var y=Symbol.for("react.element"),M=Symbol.for("react.portal"),V=Symbol.for("react.fragment"),F=Symbol.for("react.strict_mode"),N=Symbol.for("react.profiler"),U=Symbol.for("react.provider"),q=Symbol.for("react.context"),L=Symbol.for("react.forward_ref"),z=Symbol.for("react.suspense"),B=Symbol.for("react.memo"),H=Symbol.for("react.lazy"),w=Symbol.iterator;function G(e){return e===null||typeof e!="object"?null:(e=w&&e[w]||e["@@iterator"],typeof e=="function"?e:null)}var O={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},k=Object.assign,$={};function p(e,t,r){this.props=e,this.context=t,this.refs=$,this.updater=r||O}p.prototype.isReactComponent={};p.prototype.setState=function(e,t){if(typeof e!="object"&&typeof e!="function"&&e!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")};p.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")};function C(){}C.prototype=p.prototype;function v(e,t,r){this.props=e,this.context=t,this.refs=$,this.updater=r||O}var b=v.prototype=new C;b.constructor=v;k(b,p.prototype);b.isPureReactComponent=!0;var E=Array.isArray,P=Object.prototype.hasOwnProperty,S={current:null},x={key:!0,ref:!0,__self:!0,__source:!0};function I(e,t,r){var n,u={},c=null,s=null;if(t!=null)for(n in t.ref!==void 0&&(s=t.ref),t.key!==void 0&&(c=""+t.key),t)P.call(t,n)&&!x.hasOwnProperty(n)&&(u[n]=t[n]);var f=arguments.length-2;if(f===1)u.children=r;else if(1Ye(r,"name",{value:t,configurable:!0}),f=(r,t)=>()=>(t||r((t={exports:{}}).exports,t),t.exports),Jn=(r,t,n,o)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of hn(t))!bn.call(r,i)&&i!==n&&Ye(r,i,{get:()=>t[i],enumerable:!(o=vn(t,i))||o.enumerable});return r},It=(r,t,n)=>(n=r!=null?Tn(gn(r)):{},Jn(t||!r||!r.__esModule?Ye(n,"default",{value:r,enumerable:!0}):n,r)),Rt=f((r,t)=>{var n=typeof global=="object"&&global&&global.Object===Object&&global;t.exports=n}),Z=f((r,t)=>{var n=Rt(),o=typeof self=="object"&&self&&self.Object===Object&&self,i=n||o||Function("return this")();t.exports=i}),Re=f((r,t)=>{var n=Z(),o=n.Symbol;t.exports=o}),xn=f((r,t)=>{var n=Re(),o=Object.prototype,i=o.hasOwnProperty,p=o.toString,l=n?n.toStringTag:void 0;function u(y){var m=i.call(y,l),T=y[l];try{y[l]=void 0;var h=!0}catch{}var x=p.call(y);return h&&(m?y[l]=T:delete y[l]),x}a(u,"getRawTag"),t.exports=u}),wn=f((r,t)=>{var n=Object.prototype,o=n.toString;function i(p){return o.call(p)}a(i,"objectToString"),t.exports=i}),ge=f((r,t)=>{var n=Re(),o=xn(),i=wn(),p="[object Null]",l="[object Undefined]",u=n?n.toStringTag:void 0;function y(m){return m==null?m===void 0?l:p:u&&u in Object(m)?o(m):i(m)}a(y,"baseGetTag"),t.exports=y}),ze=f((r,t)=>{function n(o){var i=typeof o;return o!=null&&(i=="object"||i=="function")}a(n,"isObject"),t.exports=n}),Ft=f((r,t)=>{var n=ge(),o=ze(),i="[object AsyncFunction]",p="[object Function]",l="[object GeneratorFunction]",u="[object Proxy]";function y(m){if(!o(m))return!1;var T=n(m);return T==p||T==l||T==i||T==u}a(y,"isFunction"),t.exports=y}),Pn=f((r,t)=>{var n=Z(),o=n["__core-js_shared__"];t.exports=o}),On=f((r,t)=>{var n=Pn(),o=function(){var p=/[^.]+$/.exec(n&&n.keys&&n.keys.IE_PROTO||"");return p?"Symbol(src)_1."+p:""}();function i(p){return!!o&&o in p}a(i,"isMasked"),t.exports=i}),Lt=f((r,t)=>{var n=Function.prototype,o=n.toString;function i(p){if(p!=null){try{return o.call(p)}catch{}try{return p+""}catch{}}return""}a(i,"toSource"),t.exports=i}),Nn=f((r,t)=>{var n=Ft(),o=On(),i=ze(),p=Lt(),l=/[\\^$.*+?()[\]{}|]/g,u=/^\[object .+?Constructor\]$/,y=Function.prototype,m=Object.prototype,T=y.toString,h=m.hasOwnProperty,x=RegExp("^"+T.call(h).replace(l,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function g(w){if(!i(w)||o(w))return!1;var _=n(w)?x:u;return _.test(p(w))}a(g,"baseIsNative"),t.exports=g}),_n=f((r,t)=>{function n(o,i){return o==null?void 0:o[i]}a(n,"getValue"),t.exports=n}),ie=f((r,t)=>{var n=Nn(),o=_n();function i(p,l){var u=o(p,l);return n(u)?u:void 0}a(i,"getNative"),t.exports=i}),Sn=f((r,t)=>{var n=ie(),o=function(){try{var i=n(Object,"defineProperty");return i({},"",{}),i}catch{}}();t.exports=o}),jn=f((r,t)=>{var n=Sn();function o(i,p,l){p=="__proto__"&&n?n(i,p,{configurable:!0,enumerable:!0,value:l,writable:!0}):i[p]=l}a(o,"baseAssignValue"),t.exports=o}),En=f((r,t)=>{function n(o){return function(i,p,l){for(var u=-1,y=Object(i),m=l(i),T=m.length;T--;){var h=m[o?T:++u];if(p(y[h],h,y)===!1)break}return i}}a(n,"createBaseFor"),t.exports=n}),kn=f((r,t)=>{var n=En(),o=n();t.exports=o}),An=f((r,t)=>{function n(o,i){for(var p=-1,l=Array(o);++p{function n(o){return o!=null&&typeof o=="object"}a(n,"isObjectLike"),t.exports=n}),In=f((r,t)=>{var n=ge(),o=be(),i="[object Arguments]";function p(l){return o(l)&&n(l)==i}a(p,"baseIsArguments"),t.exports=p}),Ut=f((r,t)=>{var n=In(),o=be(),i=Object.prototype,p=i.hasOwnProperty,l=i.propertyIsEnumerable,u=n(function(){return arguments}())?n:function(y){return o(y)&&p.call(y,"callee")&&!l.call(y,"callee")};t.exports=u}),ne=f((r,t)=>{var n=Array.isArray;t.exports=n}),Rn=f((r,t)=>{function n(){return!1}a(n,"stubFalse"),t.exports=n}),Vt=f((r,t)=>{var n=Z(),o=Rn(),i=typeof r=="object"&&r&&!r.nodeType&&r,p=i&&typeof t=="object"&&t&&!t.nodeType&&t,l=p&&p.exports===i,u=l?n.Buffer:void 0,y=u?u.isBuffer:void 0,m=y||o;t.exports=m}),$t=f((r,t)=>{var n=9007199254740991,o=/^(?:0|[1-9]\d*)$/;function i(p,l){var u=typeof p;return l=l??n,!!l&&(u=="number"||u!="symbol"&&o.test(p))&&p>-1&&p%1==0&&p{var n=9007199254740991;function o(i){return typeof i=="number"&&i>-1&&i%1==0&&i<=n}a(o,"isLength"),t.exports=o}),Fn=f((r,t)=>{var n=ge(),o=We(),i=be(),p="[object Arguments]",l="[object Array]",u="[object Boolean]",y="[object Date]",m="[object Error]",T="[object Function]",h="[object Map]",x="[object Number]",g="[object Object]",w="[object RegExp]",_="[object Set]",L="[object String]",R="[object WeakMap]",P="[object ArrayBuffer]",A="[object DataView]",j="[object Float32Array]",D="[object Float64Array]",I="[object Int8Array]",V="[object Int16Array]",E="[object Int32Array]",k="[object Uint8Array]",N="[object Uint8ClampedArray]",K="[object Uint16Array]",G="[object Uint32Array]",S={};S[j]=S[D]=S[I]=S[V]=S[E]=S[k]=S[N]=S[K]=S[G]=!0,S[p]=S[l]=S[P]=S[u]=S[A]=S[y]=S[m]=S[T]=S[h]=S[x]=S[g]=S[w]=S[_]=S[L]=S[R]=!1;function Y(C){return i(C)&&o(C.length)&&!!S[n(C)]}a(Y,"baseIsTypedArray"),t.exports=Y}),Ln=f((r,t)=>{function n(o){return function(i){return o(i)}}a(n,"baseUnary"),t.exports=n}),Un=f((r,t)=>{var n=Rt(),o=typeof r=="object"&&r&&!r.nodeType&&r,i=o&&typeof t=="object"&&t&&!t.nodeType&&t,p=i&&i.exports===o,l=p&&n.process,u=function(){try{var y=i&&i.require&&i.require("util").types;return y||l&&l.binding&&l.binding("util")}catch{}}();t.exports=u}),Dt=f((r,t)=>{var n=Fn(),o=Ln(),i=Un(),p=i&&i.isTypedArray,l=p?o(p):n;t.exports=l}),Vn=f((r,t)=>{var n=An(),o=Ut(),i=ne(),p=Vt(),l=$t(),u=Dt(),y=Object.prototype,m=y.hasOwnProperty;function T(h,x){var g=i(h),w=!g&&o(h),_=!g&&!w&&p(h),L=!g&&!w&&!_&&u(h),R=g||w||_||L,P=R?n(h.length,String):[],A=P.length;for(var j in h)(x||m.call(h,j))&&!(R&&(j=="length"||_&&(j=="offset"||j=="parent")||L&&(j=="buffer"||j=="byteLength"||j=="byteOffset")||l(j,A)))&&P.push(j);return P}a(T,"arrayLikeKeys"),t.exports=T}),$n=f((r,t)=>{var n=Object.prototype;function o(i){var p=i&&i.constructor,l=typeof p=="function"&&p.prototype||n;return i===l}a(o,"isPrototype"),t.exports=o}),Dn=f((r,t)=>{function n(o,i){return function(p){return o(i(p))}}a(n,"overArg"),t.exports=n}),Kn=f((r,t)=>{var n=Dn(),o=n(Object.keys,Object);t.exports=o}),Mn=f((r,t)=>{var n=$n(),o=Kn(),i=Object.prototype,p=i.hasOwnProperty;function l(u){if(!n(u))return o(u);var y=[];for(var m in Object(u))p.call(u,m)&&m!="constructor"&&y.push(m);return y}a(l,"baseKeys"),t.exports=l}),Cn=f((r,t)=>{var n=Ft(),o=We();function i(p){return p!=null&&o(p.length)&&!n(p)}a(i,"isArrayLike"),t.exports=i}),He=f((r,t)=>{var n=Vn(),o=Mn(),i=Cn();function p(l){return i(l)?n(l):o(l)}a(p,"keys"),t.exports=p}),qn=f((r,t)=>{var n=kn(),o=He();function i(p,l){return p&&n(p,l,o)}a(i,"baseForOwn"),t.exports=i}),Bn=f((r,t)=>{function n(){this.__data__=[],this.size=0}a(n,"listCacheClear"),t.exports=n}),Kt=f((r,t)=>{function n(o,i){return o===i||o!==o&&i!==i}a(n,"eq"),t.exports=n}),Fe=f((r,t)=>{var n=Kt();function o(i,p){for(var l=i.length;l--;)if(n(i[l][0],p))return l;return-1}a(o,"assocIndexOf"),t.exports=o}),Gn=f((r,t)=>{var n=Fe(),o=Array.prototype,i=o.splice;function p(l){var u=this.__data__,y=n(u,l);if(y<0)return!1;var m=u.length-1;return y==m?u.pop():i.call(u,y,1),--this.size,!0}a(p,"listCacheDelete"),t.exports=p}),Yn=f((r,t)=>{var n=Fe();function o(i){var p=this.__data__,l=n(p,i);return l<0?void 0:p[l][1]}a(o,"listCacheGet"),t.exports=o}),zn=f((r,t)=>{var n=Fe();function o(i){return n(this.__data__,i)>-1}a(o,"listCacheHas"),t.exports=o}),Wn=f((r,t)=>{var n=Fe();function o(i,p){var l=this.__data__,u=n(l,i);return u<0?(++this.size,l.push([i,p])):l[u][1]=p,this}a(o,"listCacheSet"),t.exports=o}),Le=f((r,t)=>{var n=Bn(),o=Gn(),i=Yn(),p=zn(),l=Wn();function u(y){var m=-1,T=y==null?0:y.length;for(this.clear();++m{var n=Le();function o(){this.__data__=new n,this.size=0}a(o,"stackClear"),t.exports=o}),Xn=f((r,t)=>{function n(o){var i=this.__data__,p=i.delete(o);return this.size=i.size,p}a(n,"stackDelete"),t.exports=n}),Qn=f((r,t)=>{function n(o){return this.__data__.get(o)}a(n,"stackGet"),t.exports=n}),Zn=f((r,t)=>{function n(o){return this.__data__.has(o)}a(n,"stackHas"),t.exports=n}),Xe=f((r,t)=>{var n=ie(),o=Z(),i=n(o,"Map");t.exports=i}),Ue=f((r,t)=>{var n=ie(),o=n(Object,"create");t.exports=o}),ea=f((r,t)=>{var n=Ue();function o(){this.__data__=n?n(null):{},this.size=0}a(o,"hashClear"),t.exports=o}),ta=f((r,t)=>{function n(o){var i=this.has(o)&&delete this.__data__[o];return this.size-=i?1:0,i}a(n,"hashDelete"),t.exports=n}),ra=f((r,t)=>{var n=Ue(),o="__lodash_hash_undefined__",i=Object.prototype,p=i.hasOwnProperty;function l(u){var y=this.__data__;if(n){var m=y[u];return m===o?void 0:m}return p.call(y,u)?y[u]:void 0}a(l,"hashGet"),t.exports=l}),na=f((r,t)=>{var n=Ue(),o=Object.prototype,i=o.hasOwnProperty;function p(l){var u=this.__data__;return n?u[l]!==void 0:i.call(u,l)}a(p,"hashHas"),t.exports=p}),aa=f((r,t)=>{var n=Ue(),o="__lodash_hash_undefined__";function i(p,l){var u=this.__data__;return this.size+=this.has(p)?0:1,u[p]=n&&l===void 0?o:l,this}a(i,"hashSet"),t.exports=i}),oa=f((r,t)=>{var n=ea(),o=ta(),i=ra(),p=na(),l=aa();function u(y){var m=-1,T=y==null?0:y.length;for(this.clear();++m{var n=oa(),o=Le(),i=Xe();function p(){this.size=0,this.__data__={hash:new n,map:new(i||o),string:new n}}a(p,"mapCacheClear"),t.exports=p}),ia=f((r,t)=>{function n(o){var i=typeof o;return i=="string"||i=="number"||i=="symbol"||i=="boolean"?o!=="__proto__":o===null}a(n,"isKeyable"),t.exports=n}),Ve=f((r,t)=>{var n=ia();function o(i,p){var l=i.__data__;return n(p)?l[typeof p=="string"?"string":"hash"]:l.map}a(o,"getMapData"),t.exports=o}),pa=f((r,t)=>{var n=Ve();function o(i){var p=n(this,i).delete(i);return this.size-=p?1:0,p}a(o,"mapCacheDelete"),t.exports=o}),ca=f((r,t)=>{var n=Ve();function o(i){return n(this,i).get(i)}a(o,"mapCacheGet"),t.exports=o}),la=f((r,t)=>{var n=Ve();function o(i){return n(this,i).has(i)}a(o,"mapCacheHas"),t.exports=o}),ua=f((r,t)=>{var n=Ve();function o(i,p){var l=n(this,i),u=l.size;return l.set(i,p),this.size+=l.size==u?0:1,this}a(o,"mapCacheSet"),t.exports=o}),Qe=f((r,t)=>{var n=sa(),o=pa(),i=ca(),p=la(),l=ua();function u(y){var m=-1,T=y==null?0:y.length;for(this.clear();++m{var n=Le(),o=Xe(),i=Qe(),p=200;function l(u,y){var m=this.__data__;if(m instanceof n){var T=m.__data__;if(!o||T.length{var n=Le(),o=Hn(),i=Xn(),p=Qn(),l=Zn(),u=ya();function y(m){var T=this.__data__=new n(m);this.size=T.size}a(y,"Stack"),y.prototype.clear=o,y.prototype.delete=i,y.prototype.get=p,y.prototype.has=l,y.prototype.set=u,t.exports=y}),da=f((r,t)=>{var n="__lodash_hash_undefined__";function o(i){return this.__data__.set(i,n),this}a(o,"setCacheAdd"),t.exports=o}),ma=f((r,t)=>{function n(o){return this.__data__.has(o)}a(n,"setCacheHas"),t.exports=n}),fa=f((r,t)=>{var n=Qe(),o=da(),i=ma();function p(l){var u=-1,y=l==null?0:l.length;for(this.__data__=new n;++u{function n(o,i){for(var p=-1,l=o==null?0:o.length;++p{function n(o,i){return o.has(i)}a(n,"cacheHas"),t.exports=n}),Ct=f((r,t)=>{var n=fa(),o=Ta(),i=va(),p=1,l=2;function u(y,m,T,h,x,g){var w=T&p,_=y.length,L=m.length;if(_!=L&&!(w&&L>_))return!1;var R=g.get(y),P=g.get(m);if(R&&P)return R==m&&P==y;var A=-1,j=!0,D=T&l?new n:void 0;for(g.set(y,m),g.set(m,y);++A<_;){var I=y[A],V=m[A];if(h)var E=w?h(V,I,A,m,y,g):h(I,V,A,y,m,g);if(E!==void 0){if(E)continue;j=!1;break}if(D){if(!o(m,function(k,N){if(!i(D,N)&&(I===k||x(I,k,T,h,g)))return D.push(N)})){j=!1;break}}else if(!(I===V||x(I,V,T,h,g))){j=!1;break}}return g.delete(y),g.delete(m),j}a(u,"equalArrays"),t.exports=u}),ha=f((r,t)=>{var n=Z(),o=n.Uint8Array;t.exports=o}),ga=f((r,t)=>{function n(o){var i=-1,p=Array(o.size);return o.forEach(function(l,u){p[++i]=[u,l]}),p}a(n,"mapToArray"),t.exports=n}),ba=f((r,t)=>{function n(o){var i=-1,p=Array(o.size);return o.forEach(function(l){p[++i]=l}),p}a(n,"setToArray"),t.exports=n}),Ja=f((r,t)=>{var n=Re(),o=ha(),i=Kt(),p=Ct(),l=ga(),u=ba(),y=1,m=2,T="[object Boolean]",h="[object Date]",x="[object Error]",g="[object Map]",w="[object Number]",_="[object RegExp]",L="[object Set]",R="[object String]",P="[object Symbol]",A="[object ArrayBuffer]",j="[object DataView]",D=n?n.prototype:void 0,I=D?D.valueOf:void 0;function V(E,k,N,K,G,S,Y){switch(N){case j:if(E.byteLength!=k.byteLength||E.byteOffset!=k.byteOffset)return!1;E=E.buffer,k=k.buffer;case A:return!(E.byteLength!=k.byteLength||!S(new o(E),new o(k)));case T:case h:case w:return i(+E,+k);case x:return E.name==k.name&&E.message==k.message;case _:case R:return E==k+"";case g:var C=l;case L:var J=K&y;if(C||(C=u),E.size!=k.size&&!J)return!1;var oe=Y.get(E);if(oe)return oe==k;K|=m,Y.set(E,k);var ee=p(C(E),C(k),K,G,S,Y);return Y.delete(E),ee;case P:if(I)return I.call(E)==I.call(k)}return!1}a(V,"equalByTag"),t.exports=V}),xa=f((r,t)=>{function n(o,i){for(var p=-1,l=i.length,u=o.length;++p{var n=xa(),o=ne();function i(p,l,u){var y=l(p);return o(p)?y:n(y,u(p))}a(i,"baseGetAllKeys"),t.exports=i}),Pa=f((r,t)=>{function n(o,i){for(var p=-1,l=o==null?0:o.length,u=0,y=[];++p{function n(){return[]}a(n,"stubArray"),t.exports=n}),Na=f((r,t)=>{var n=Pa(),o=Oa(),i=Object.prototype,p=i.propertyIsEnumerable,l=Object.getOwnPropertySymbols,u=l?function(y){return y==null?[]:(y=Object(y),n(l(y),function(m){return p.call(y,m)}))}:o;t.exports=u}),_a=f((r,t)=>{var n=wa(),o=Na(),i=He();function p(l){return n(l,i,o)}a(p,"getAllKeys"),t.exports=p}),Sa=f((r,t)=>{var n=_a(),o=1,i=Object.prototype,p=i.hasOwnProperty;function l(u,y,m,T,h,x){var g=m&o,w=n(u),_=w.length,L=n(y),R=L.length;if(_!=R&&!g)return!1;for(var P=_;P--;){var A=w[P];if(!(g?A in y:p.call(y,A)))return!1}var j=x.get(u),D=x.get(y);if(j&&D)return j==y&&D==u;var I=!0;x.set(u,y),x.set(y,u);for(var V=g;++P<_;){A=w[P];var E=u[A],k=y[A];if(T)var N=g?T(k,E,A,y,u,x):T(E,k,A,u,y,x);if(!(N===void 0?E===k||h(E,k,m,T,x):N)){I=!1;break}V||(V=A=="constructor")}if(I&&!V){var K=u.constructor,G=y.constructor;K!=G&&"constructor"in u&&"constructor"in y&&!(typeof K=="function"&&K instanceof K&&typeof G=="function"&&G instanceof G)&&(I=!1)}return x.delete(u),x.delete(y),I}a(l,"equalObjects"),t.exports=l}),ja=f((r,t)=>{var n=ie(),o=Z(),i=n(o,"DataView");t.exports=i}),Ea=f((r,t)=>{var n=ie(),o=Z(),i=n(o,"Promise");t.exports=i}),ka=f((r,t)=>{var n=ie(),o=Z(),i=n(o,"Set");t.exports=i}),Aa=f((r,t)=>{var n=ie(),o=Z(),i=n(o,"WeakMap");t.exports=i}),Ia=f((r,t)=>{var n=ja(),o=Xe(),i=Ea(),p=ka(),l=Aa(),u=ge(),y=Lt(),m="[object Map]",T="[object Object]",h="[object Promise]",x="[object Set]",g="[object WeakMap]",w="[object DataView]",_=y(n),L=y(o),R=y(i),P=y(p),A=y(l),j=u;(n&&j(new n(new ArrayBuffer(1)))!=w||o&&j(new o)!=m||i&&j(i.resolve())!=h||p&&j(new p)!=x||l&&j(new l)!=g)&&(j=a(function(D){var I=u(D),V=I==T?D.constructor:void 0,E=V?y(V):"";if(E)switch(E){case _:return w;case L:return m;case R:return h;case P:return x;case A:return g}return I},"getTag")),t.exports=j}),Ra=f((r,t)=>{var n=Mt(),o=Ct(),i=Ja(),p=Sa(),l=Ia(),u=ne(),y=Vt(),m=Dt(),T=1,h="[object Arguments]",x="[object Array]",g="[object Object]",w=Object.prototype,_=w.hasOwnProperty;function L(R,P,A,j,D,I){var V=u(R),E=u(P),k=V?x:l(R),N=E?x:l(P);k=k==h?g:k,N=N==h?g:N;var K=k==g,G=N==g,S=k==N;if(S&&y(R)){if(!y(P))return!1;V=!0,K=!1}if(S&&!K)return I||(I=new n),V||m(R)?o(R,P,A,j,D,I):i(R,P,k,A,j,D,I);if(!(A&T)){var Y=K&&_.call(R,"__wrapped__"),C=G&&_.call(P,"__wrapped__");if(Y||C){var J=Y?R.value():R,oe=C?P.value():P;return I||(I=new n),D(J,oe,A,j,I)}}return S?(I||(I=new n),p(R,P,A,j,D,I)):!1}a(L,"baseIsEqualDeep"),t.exports=L}),qt=f((r,t)=>{var n=Ra(),o=be();function i(p,l,u,y,m){return p===l?!0:p==null||l==null||!o(p)&&!o(l)?p!==p&&l!==l:n(p,l,u,y,i,m)}a(i,"baseIsEqual"),t.exports=i}),Fa=f((r,t)=>{var n=Mt(),o=qt(),i=1,p=2;function l(u,y,m,T){var h=m.length,x=h,g=!T;if(u==null)return!x;for(u=Object(u);h--;){var w=m[h];if(g&&w[2]?w[1]!==u[w[0]]:!(w[0]in u))return!1}for(;++h{var n=ze();function o(i){return i===i&&!n(i)}a(o,"isStrictComparable"),t.exports=o}),La=f((r,t)=>{var n=Bt(),o=He();function i(p){for(var l=o(p),u=l.length;u--;){var y=l[u],m=p[y];l[u]=[y,m,n(m)]}return l}a(i,"getMatchData"),t.exports=i}),Gt=f((r,t)=>{function n(o,i){return function(p){return p==null?!1:p[o]===i&&(i!==void 0||o in Object(p))}}a(n,"matchesStrictComparable"),t.exports=n}),Ua=f((r,t)=>{var n=Fa(),o=La(),i=Gt();function p(l){var u=o(l);return u.length==1&&u[0][2]?i(u[0][0],u[0][1]):function(y){return y===l||n(y,l,u)}}a(p,"baseMatches"),t.exports=p}),Ze=f((r,t)=>{var n=ge(),o=be(),i="[object Symbol]";function p(l){return typeof l=="symbol"||o(l)&&n(l)==i}a(p,"isSymbol"),t.exports=p}),et=f((r,t)=>{var n=ne(),o=Ze(),i=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,p=/^\w*$/;function l(u,y){if(n(u))return!1;var m=typeof u;return m=="number"||m=="symbol"||m=="boolean"||u==null||o(u)?!0:p.test(u)||!i.test(u)||y!=null&&u in Object(y)}a(l,"isKey"),t.exports=l}),Va=f((r,t)=>{var n=Qe(),o="Expected a function";function i(p,l){if(typeof p!="function"||l!=null&&typeof l!="function")throw new TypeError(o);var u=a(function(){var y=arguments,m=l?l.apply(this,y):y[0],T=u.cache;if(T.has(m))return T.get(m);var h=p.apply(this,y);return u.cache=T.set(m,h)||T,h},"memoized");return u.cache=new(i.Cache||n),u}a(i,"memoize"),i.Cache=n,t.exports=i}),$a=f((r,t)=>{var n=Va(),o=500;function i(p){var l=n(p,function(y){return u.size===o&&u.clear(),y}),u=l.cache;return l}a(i,"memoizeCapped"),t.exports=i}),Da=f((r,t)=>{var n=$a(),o=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,i=/\\(\\)?/g,p=n(function(l){var u=[];return l.charCodeAt(0)===46&&u.push(""),l.replace(o,function(y,m,T,h){u.push(T?h.replace(i,"$1"):m||y)}),u});t.exports=p}),Ka=f((r,t)=>{function n(o,i){for(var p=-1,l=o==null?0:o.length,u=Array(l);++p{var n=Re(),o=Ka(),i=ne(),p=Ze(),l=1/0,u=n?n.prototype:void 0,y=u?u.toString:void 0;function m(T){if(typeof T=="string")return T;if(i(T))return o(T,m)+"";if(p(T))return y?y.call(T):"";var h=T+"";return h=="0"&&1/T==-l?"-0":h}a(m,"baseToString"),t.exports=m}),Ca=f((r,t)=>{var n=Ma();function o(i){return i==null?"":n(i)}a(o,"toString"),t.exports=o}),Yt=f((r,t)=>{var n=ne(),o=et(),i=Da(),p=Ca();function l(u,y){return n(u)?u:o(u,y)?[u]:i(p(u))}a(l,"castPath"),t.exports=l}),$e=f((r,t)=>{var n=Ze(),o=1/0;function i(p){if(typeof p=="string"||n(p))return p;var l=p+"";return l=="0"&&1/p==-o?"-0":l}a(i,"toKey"),t.exports=i}),zt=f((r,t)=>{var n=Yt(),o=$e();function i(p,l){l=n(l,p);for(var u=0,y=l.length;p!=null&&u{var n=zt();function o(i,p,l){var u=i==null?void 0:n(i,p);return u===void 0?l:u}a(o,"get"),t.exports=o}),Ba=f((r,t)=>{function n(o,i){return o!=null&&i in Object(o)}a(n,"baseHasIn"),t.exports=n}),Ga=f((r,t)=>{var n=Yt(),o=Ut(),i=ne(),p=$t(),l=We(),u=$e();function y(m,T,h){T=n(T,m);for(var x=-1,g=T.length,w=!1;++x{var n=Ba(),o=Ga();function i(p,l){return p!=null&&o(p,l,n)}a(i,"hasIn"),t.exports=i}),za=f((r,t)=>{var n=qt(),o=qa(),i=Ya(),p=et(),l=Bt(),u=Gt(),y=$e(),m=1,T=2;function h(x,g){return p(x)&&l(g)?u(y(x),g):function(w){var _=o(w,x);return _===void 0&&_===g?i(w,x):n(g,_,m|T)}}a(h,"baseMatchesProperty"),t.exports=h}),Wa=f((r,t)=>{function n(o){return o}a(n,"identity"),t.exports=n}),Ha=f((r,t)=>{function n(o){return function(i){return i==null?void 0:i[o]}}a(n,"baseProperty"),t.exports=n}),Xa=f((r,t)=>{var n=zt();function o(i){return function(p){return n(p,i)}}a(o,"basePropertyDeep"),t.exports=o}),Qa=f((r,t)=>{var n=Ha(),o=Xa(),i=et(),p=$e();function l(u){return i(u)?n(p(u)):o(u)}a(l,"property"),t.exports=l}),Za=f((r,t)=>{var n=Ua(),o=za(),i=Wa(),p=ne(),l=Qa();function u(y){return typeof y=="function"?y:y==null?i:typeof y=="object"?p(y)?o(y[0],y[1]):n(y):l(y)}a(u,"baseIteratee"),t.exports=u}),eo=f((r,t)=>{var n=jn(),o=qn(),i=Za();function p(l,u){var y={};return u=i(u,3),o(l,function(m,T,h){n(y,T,u(m,T,h))}),y}a(p,"mapValues"),t.exports=p}),to=f((r,t)=>{(function(n,o){typeof r=="object"&&typeof t<"u"?o(r):typeof define=="function"&&define.amd?define(["exports"],o):(n=typeof globalThis<"u"?globalThis:n||self,o(n.jtpp={}))})(r,function(n){function o(e){return e.text!==void 0&&e.text!==""?`'${e.type}' with value '${e.text}'`:`'${e.type}'`}a(o,"tokenToString");let i=class Wt extends Error{constructor(s){super(`No parslet found for token: ${o(s)}`),this.token=s,Object.setPrototypeOf(this,Wt.prototype)}getToken(){return this.token}};a(i,"NoParsletFoundError");let p=i,l=class Ht extends Error{constructor(s){super(`The parsing ended early. The next token was: ${o(s)}`),this.token=s,Object.setPrototypeOf(this,Ht.prototype)}getToken(){return this.token}};a(l,"EarlyEndOfParseError");let u=l,y=class Xt extends Error{constructor(s,c){let d=`Unexpected type: '${s.type}'.`;c!==void 0&&(d+=` Message: ${c}`),super(d),Object.setPrototypeOf(this,Xt.prototype)}};a(y,"UnexpectedTypeError");let m=y;function T(e){return s=>s.startsWith(e)?{type:e,text:e}:null}a(T,"makePunctuationRule");function h(e){let s=0,c,d=e[0],v=!1;if(d!=="'"&&d!=='"')return null;for(;s{let s=w(e);return s==null?null:{type:"Identifier",text:s}},"identifierRule");function P(e){return s=>{if(!s.startsWith(e))return null;let c=s[e.length];return c!==void 0&&g.test(c)?null:{type:e,text:e}}}a(P,"makeKeyWordRule");let A=a(e=>{let s=h(e);return s==null?null:{type:"StringValue",text:s}},"stringValueRule"),j=a(e=>e.length>0?null:{type:"EOF",text:""},"eofRule"),D=a(e=>{let s=L(e);return s===null?null:{type:"Number",text:s}},"numberRule"),I=[j,T("=>"),T("("),T(")"),T("{"),T("}"),T("["),T("]"),T("|"),T("&"),T("<"),T(">"),T(","),T(";"),T("*"),T("?"),T("!"),T("="),T(":"),T("..."),T("."),T("#"),T("~"),T("/"),T("@"),P("undefined"),P("null"),P("function"),P("this"),P("new"),P("module"),P("event"),P("external"),P("typeof"),P("keyof"),P("readonly"),P("import"),P("is"),P("in"),D,R,A],V=/^\s*\n\s*/,E=class Ie{static create(s){let c=this.read(s);s=c.text;let d=this.read(s);return s=d.text,new Ie(s,void 0,c.token,d.token)}constructor(s,c,d,v){this.text="",this.text=s,this.previous=c,this.current=d,this.next=v}static read(s,c=!1){c=c||V.test(s),s=s.trim();for(let d of I){let v=d(s);if(v!==null){let b=Object.assign(Object.assign({},v),{startOfLine:c});return s=s.slice(b.text.length),{text:s,token:b}}}throw new Error("Unexpected Token "+s)}advance(){let s=Ie.read(this.text);return new Ie(s.text,this.current,this.next,s.token)}};a(E,"Lexer");let k=E;function N(e){if(e===void 0)throw new Error("Unexpected undefined");if(e.type==="JsdocTypeKeyValue"||e.type==="JsdocTypeParameterList"||e.type==="JsdocTypeProperty"||e.type==="JsdocTypeReadonlyProperty"||e.type==="JsdocTypeObjectField"||e.type==="JsdocTypeJsdocObjectField"||e.type==="JsdocTypeIndexSignature"||e.type==="JsdocTypeMappedType")throw new m(e);return e}a(N,"assertRootResult");function K(e){return e.type==="JsdocTypeKeyValue"?S(e):N(e)}a(K,"assertPlainKeyValueOrRootResult");function G(e){return e.type==="JsdocTypeName"?e:S(e)}a(G,"assertPlainKeyValueOrNameResult");function S(e){if(e.type!=="JsdocTypeKeyValue")throw new m(e);return e}a(S,"assertPlainKeyValueResult");function Y(e){var s;if(e.type==="JsdocTypeVariadic"){if(((s=e.element)===null||s===void 0?void 0:s.type)==="JsdocTypeName")return e;throw new m(e)}if(e.type!=="JsdocTypeNumber"&&e.type!=="JsdocTypeName")throw new m(e);return e}a(Y,"assertNumberOrVariadicNameResult");function C(e){return e.type==="JsdocTypeIndexSignature"||e.type==="JsdocTypeMappedType"}a(C,"isSquaredProperty");var J;(function(e){e[e.ALL=0]="ALL",e[e.PARAMETER_LIST=1]="PARAMETER_LIST",e[e.OBJECT=2]="OBJECT",e[e.KEY_VALUE=3]="KEY_VALUE",e[e.UNION=4]="UNION",e[e.INTERSECTION=5]="INTERSECTION",e[e.PREFIX=6]="PREFIX",e[e.INFIX=7]="INFIX",e[e.TUPLE=8]="TUPLE",e[e.SYMBOL=9]="SYMBOL",e[e.OPTIONAL=10]="OPTIONAL",e[e.NULLABLE=11]="NULLABLE",e[e.KEY_OF_TYPE_OF=12]="KEY_OF_TYPE_OF",e[e.FUNCTION=13]="FUNCTION",e[e.ARROW=14]="ARROW",e[e.ARRAY_BRACKETS=15]="ARRAY_BRACKETS",e[e.GENERIC=16]="GENERIC",e[e.NAME_PATH=17]="NAME_PATH",e[e.PARENTHESIS=18]="PARENTHESIS",e[e.SPECIAL_TYPES=19]="SPECIAL_TYPES"})(J||(J={}));let oe=class{constructor(s,c,d){this.grammar=s,typeof c=="string"?this._lexer=k.create(c):this._lexer=c,this.baseParser=d}get lexer(){return this._lexer}parse(){let s=this.parseType(J.ALL);if(this.lexer.current.type!=="EOF")throw new u(this.lexer.current);return s}parseType(s){return N(this.parseIntermediateType(s))}parseIntermediateType(s){let c=this.tryParslets(null,s);if(c===null)throw new p(this.lexer.current);return this.parseInfixIntermediateType(c,s)}parseInfixIntermediateType(s,c){let d=this.tryParslets(s,c);for(;d!==null;)s=d,d=this.tryParslets(s,c);return s}tryParslets(s,c){for(let d of this.grammar){let v=d(this,c,s);if(v!==null)return v}return null}consume(s){return Array.isArray(s)||(s=[s]),s.includes(this.lexer.current.type)?(this._lexer=this.lexer.advance(),!0):!1}acceptLexerState(s){this._lexer=s.lexer}};a(oe,"Parser");let ee=oe;function Ke(e){return e==="EOF"||e==="|"||e===","||e===")"||e===">"}a(Ke,"isQuestionMarkUnknownType");let Me=a((e,s,c)=>{let d=e.lexer.current.type,v=e.lexer.next.type;return c==null&&d==="?"&&!Ke(v)||c!=null&&d==="?"?(e.consume("?"),c==null?{type:"JsdocTypeNullable",element:e.parseType(J.NULLABLE),meta:{position:"prefix"}}:{type:"JsdocTypeNullable",element:N(c),meta:{position:"suffix"}}):null},"nullableParslet");function F(e){let s=a((c,d,v)=>{let b=c.lexer.current.type,O=c.lexer.next.type;if(v===null){if("parsePrefix"in e&&e.accept(b,O))return e.parsePrefix(c)}else if("parseInfix"in e&&e.precedence>d&&e.accept(b,O))return e.parseInfix(c,v);return null},"parslet");return Object.defineProperty(s,"name",{value:e.name}),s}a(F,"composeParslet");let xe=F({name:"optionalParslet",accept:a(e=>e==="=","accept"),precedence:J.OPTIONAL,parsePrefix:a(e=>(e.consume("="),{type:"JsdocTypeOptional",element:e.parseType(J.OPTIONAL),meta:{position:"prefix"}}),"parsePrefix"),parseInfix:a((e,s)=>(e.consume("="),{type:"JsdocTypeOptional",element:N(s),meta:{position:"suffix"}}),"parseInfix")}),we=F({name:"numberParslet",accept:a(e=>e==="Number","accept"),parsePrefix:a(e=>{let s=parseFloat(e.lexer.current.text);return e.consume("Number"),{type:"JsdocTypeNumber",value:s}},"parsePrefix")}),Yr=F({name:"parenthesisParslet",accept:a(e=>e==="(","accept"),parsePrefix:a(e=>{if(e.consume("("),e.consume(")"))return{type:"JsdocTypeParameterList",elements:[]};let s=e.parseIntermediateType(J.ALL);if(!e.consume(")"))throw new Error("Unterminated parenthesis");return s.type==="JsdocTypeParameterList"?s:s.type==="JsdocTypeKeyValue"?{type:"JsdocTypeParameterList",elements:[s]}:{type:"JsdocTypeParenthesis",element:N(s)}},"parsePrefix")}),zr=F({name:"specialTypesParslet",accept:a((e,s)=>e==="?"&&Ke(s)||e==="null"||e==="undefined"||e==="*","accept"),parsePrefix:a(e=>{if(e.consume("null"))return{type:"JsdocTypeNull"};if(e.consume("undefined"))return{type:"JsdocTypeUndefined"};if(e.consume("*"))return{type:"JsdocTypeAny"};if(e.consume("?"))return{type:"JsdocTypeUnknown"};throw new Error("Unacceptable token: "+e.lexer.current.text)},"parsePrefix")}),Wr=F({name:"notNullableParslet",accept:a(e=>e==="!","accept"),precedence:J.NULLABLE,parsePrefix:a(e=>(e.consume("!"),{type:"JsdocTypeNotNullable",element:e.parseType(J.NULLABLE),meta:{position:"prefix"}}),"parsePrefix"),parseInfix:a((e,s)=>(e.consume("!"),{type:"JsdocTypeNotNullable",element:N(s),meta:{position:"suffix"}}),"parseInfix")});function dt({allowTrailingComma:e}){return F({name:"parameterListParslet",accept:a(s=>s===",","accept"),precedence:J.PARAMETER_LIST,parseInfix:a((s,c)=>{let d=[K(c)];s.consume(",");do try{let v=s.parseIntermediateType(J.PARAMETER_LIST);d.push(K(v))}catch(v){if(e&&v instanceof p)break;throw v}while(s.consume(","));if(d.length>0&&d.slice(0,-1).some(v=>v.type==="JsdocTypeVariadic"))throw new Error("Only the last parameter may be a rest parameter");return{type:"JsdocTypeParameterList",elements:d}},"parseInfix")})}a(dt,"createParameterListParslet");let Hr=F({name:"genericParslet",accept:a((e,s)=>e==="<"||e==="."&&s==="<","accept"),precedence:J.GENERIC,parseInfix:a((e,s)=>{let c=e.consume(".");e.consume("<");let d=[];do d.push(e.parseType(J.PARAMETER_LIST));while(e.consume(","));if(!e.consume(">"))throw new Error("Unterminated generic parameter list");return{type:"JsdocTypeGeneric",left:N(s),elements:d,meta:{brackets:"angle",dot:c}}},"parseInfix")}),Xr=F({name:"unionParslet",accept:a(e=>e==="|","accept"),precedence:J.UNION,parseInfix:a((e,s)=>{e.consume("|");let c=[];do c.push(e.parseType(J.UNION));while(e.consume("|"));return{type:"JsdocTypeUnion",elements:[N(s),...c]}},"parseInfix")}),Ce=[Me,xe,we,Yr,zr,Wr,dt({allowTrailingComma:!0}),Hr,Xr,xe];function le({allowSquareBracketsOnAnyType:e,allowJsdocNamePaths:s,pathGrammar:c}){return a(function(d,v,b){if(b==null||v>=J.NAME_PATH)return null;let O=d.lexer.current.type,U=d.lexer.next.type;if(!(O==="."&&U!=="<"||O==="["&&(e||b.type==="JsdocTypeName")||s&&(O==="~"||O==="#")))return null;let $,q=!1;d.consume(".")?$="property":d.consume("[")?($="property-brackets",q=!0):d.consume("~")?$="inner":(d.consume("#"),$="instance");let Q=c!==null?new ee(c,d.lexer,d):d,z=Q.parseIntermediateType(J.NAME_PATH);d.acceptLexerState(Q);let me;switch(z.type){case"JsdocTypeName":me={type:"JsdocTypeProperty",value:z.value,meta:{quote:void 0}};break;case"JsdocTypeNumber":me={type:"JsdocTypeProperty",value:z.value.toString(10),meta:{quote:void 0}};break;case"JsdocTypeStringValue":me={type:"JsdocTypeProperty",value:z.value,meta:{quote:z.meta.quote}};break;case"JsdocTypeSpecialNamePath":if(z.specialType==="event")me=z;else throw new m(z,"Type 'JsdocTypeSpecialNamePath' is only allowed with specialType 'event'");break;default:throw new m(z,"Expecting 'JsdocTypeName', 'JsdocTypeNumber', 'JsdocStringValue' or 'JsdocTypeSpecialNamePath'")}if(q&&!d.consume("]")){let jt=d.lexer.current;throw new Error(`Unterminated square brackets. Next token is '${jt.type}' with text '${jt.text}'`)}return{type:"JsdocTypeNamePath",left:N(b),right:me,pathType:$}},"namePathParslet")}a(le,"createNamePathParslet");function W({allowedAdditionalTokens:e}){return F({name:"nameParslet",accept:a(s=>s==="Identifier"||s==="this"||s==="new"||e.includes(s),"accept"),parsePrefix:a(s=>{let{type:c,text:d}=s.lexer.current;return s.consume(c),{type:"JsdocTypeName",value:d}},"parsePrefix")})}a(W,"createNameParslet");let ue=F({name:"stringValueParslet",accept:a(e=>e==="StringValue","accept"),parsePrefix:a(e=>{let s=e.lexer.current.text;return e.consume("StringValue"),{type:"JsdocTypeStringValue",value:s.slice(1,-1),meta:{quote:s[0]==="'"?"single":"double"}}},"parsePrefix")});function ye({pathGrammar:e,allowedTypes:s}){return F({name:"specialNamePathParslet",accept:a(c=>s.includes(c),"accept"),parsePrefix:a(c=>{let d=c.lexer.current.type;if(c.consume(d),!c.consume(":"))return{type:"JsdocTypeName",value:d};let v,b=c.lexer.current;if(c.consume("StringValue"))v={type:"JsdocTypeSpecialNamePath",value:b.text.slice(1,-1),specialType:d,meta:{quote:b.text[0]==="'"?"single":"double"}};else{let $="",q=["Identifier","@","/"];for(;q.some(Q=>c.consume(Q));)$+=b.text,b=c.lexer.current;v={type:"JsdocTypeSpecialNamePath",value:$,specialType:d,meta:{quote:void 0}}}let O=new ee(e,c.lexer,c),U=O.parseInfixIntermediateType(v,J.ALL);return c.acceptLexerState(O),N(U)},"parsePrefix")})}a(ye,"createSpecialNamePathParslet");let mt=[W({allowedAdditionalTokens:["external","module"]}),ue,we,le({allowSquareBracketsOnAnyType:!1,allowJsdocNamePaths:!0,pathGrammar:null})],pe=[...mt,ye({allowedTypes:["event"],pathGrammar:mt})];function Pe(e){let s;if(e.type==="JsdocTypeParameterList")s=e.elements;else if(e.type==="JsdocTypeParenthesis")s=[e.element];else throw new m(e);return s.map(c=>K(c))}a(Pe,"getParameters");function ft(e){let s=Pe(e);if(s.some(c=>c.type==="JsdocTypeKeyValue"))throw new Error("No parameter should be named");return s}a(ft,"getUnnamedParameters");function Oe({allowNamedParameters:e,allowNoReturnType:s,allowWithoutParenthesis:c,allowNewAsFunctionKeyword:d}){return F({name:"functionParslet",accept:a((v,b)=>v==="function"||d&&v==="new"&&b==="(","accept"),parsePrefix:a(v=>{let b=v.consume("new");v.consume("function");let O=v.lexer.current.type==="(";if(!O){if(!c)throw new Error("function is missing parameter list");return{type:"JsdocTypeName",value:"function"}}let U={type:"JsdocTypeFunction",parameters:[],arrow:!1,constructor:b,parenthesis:O},$=v.parseIntermediateType(J.FUNCTION);if(e===void 0)U.parameters=ft($);else{if(b&&$.type==="JsdocTypeFunction"&&$.arrow)return U=$,U.constructor=!0,U;U.parameters=Pe($);for(let q of U.parameters)if(q.type==="JsdocTypeKeyValue"&&!e.includes(q.key))throw new Error(`only allowed named parameters are ${e.join(", ")} but got ${q.type}`)}if(v.consume(":"))U.returnType=v.parseType(J.PREFIX);else if(!s)throw new Error("function is missing return type");return U},"parsePrefix")})}a(Oe,"createFunctionParslet");function Ne({allowPostfix:e,allowEnclosingBrackets:s}){return F({name:"variadicParslet",accept:a(c=>c==="...","accept"),precedence:J.PREFIX,parsePrefix:a(c=>{c.consume("...");let d=s&&c.consume("[");try{let v=c.parseType(J.PREFIX);if(d&&!c.consume("]"))throw new Error("Unterminated variadic type. Missing ']'");return{type:"JsdocTypeVariadic",element:N(v),meta:{position:"prefix",squareBrackets:d}}}catch(v){if(v instanceof p){if(d)throw new Error("Empty square brackets for variadic are not allowed.");return{type:"JsdocTypeVariadic",meta:{position:void 0,squareBrackets:!1}}}else throw v}},"parsePrefix"),parseInfix:e?(c,d)=>(c.consume("..."),{type:"JsdocTypeVariadic",element:N(d),meta:{position:"suffix",squareBrackets:!1}}):void 0})}a(Ne,"createVariadicParslet");let Tt=F({name:"symbolParslet",accept:a(e=>e==="(","accept"),precedence:J.SYMBOL,parseInfix:a((e,s)=>{if(s.type!=="JsdocTypeName")throw new Error("Symbol expects a name on the left side. (Reacting on '(')");e.consume("(");let c={type:"JsdocTypeSymbol",value:s.value};if(!e.consume(")")){let d=e.parseIntermediateType(J.SYMBOL);if(c.element=Y(d),!e.consume(")"))throw new Error("Symbol does not end after value")}return c},"parseInfix")}),vt=F({name:"arrayBracketsParslet",precedence:J.ARRAY_BRACKETS,accept:a((e,s)=>e==="["&&s==="]","accept"),parseInfix:a((e,s)=>(e.consume("["),e.consume("]"),{type:"JsdocTypeGeneric",left:{type:"JsdocTypeName",value:"Array"},elements:[N(s)],meta:{brackets:"square",dot:!1}}),"parseInfix")});function _e({objectFieldGrammar:e,allowKeyTypes:s}){return F({name:"objectParslet",accept:a(c=>c==="{","accept"),parsePrefix:a(c=>{c.consume("{");let d={type:"JsdocTypeObject",meta:{separator:"comma"},elements:[]};if(!c.consume("}")){let v,b=new ee(e,c.lexer,c);for(;;){b.acceptLexerState(c);let O=b.parseIntermediateType(J.OBJECT);c.acceptLexerState(b),O===void 0&&s&&(O=c.parseIntermediateType(J.OBJECT));let U=!1;if(O.type==="JsdocTypeNullable"&&(U=!0,O=O.element),O.type==="JsdocTypeNumber"||O.type==="JsdocTypeName"||O.type==="JsdocTypeStringValue"){let $;O.type==="JsdocTypeStringValue"&&($=O.meta.quote),d.elements.push({type:"JsdocTypeObjectField",key:O.value.toString(),right:void 0,optional:U,readonly:!1,meta:{quote:$}})}else if(O.type==="JsdocTypeObjectField"||O.type==="JsdocTypeJsdocObjectField")d.elements.push(O);else throw new m(O);if(c.lexer.current.startOfLine)v="linebreak";else if(c.consume(","))v="comma";else if(c.consume(";"))v="semicolon";else break;if(c.lexer.current.type==="}")break}if(d.meta.separator=v??"comma",!c.consume("}"))throw new Error("Unterminated record type. Missing '}'")}return d},"parsePrefix")})}a(_e,"createObjectParslet");function Se({allowSquaredProperties:e,allowKeyTypes:s,allowReadonly:c,allowOptional:d}){return F({name:"objectFieldParslet",precedence:J.KEY_VALUE,accept:a(v=>v===":","accept"),parseInfix:a((v,b)=>{var O;let U=!1,$=!1;d&&b.type==="JsdocTypeNullable"&&(U=!0,b=b.element),c&&b.type==="JsdocTypeReadonlyProperty"&&($=!0,b=b.element);let q=(O=v.baseParser)!==null&&O!==void 0?O:v;if(q.acceptLexerState(v),b.type==="JsdocTypeNumber"||b.type==="JsdocTypeName"||b.type==="JsdocTypeStringValue"||C(b)){if(C(b)&&!e)throw new m(b);q.consume(":");let Q;b.type==="JsdocTypeStringValue"&&(Q=b.meta.quote);let z=q.parseType(J.KEY_VALUE);return v.acceptLexerState(q),{type:"JsdocTypeObjectField",key:C(b)?b:b.value.toString(),right:z,optional:U,readonly:$,meta:{quote:Q}}}else{if(!s)throw new m(b);q.consume(":");let Q=q.parseType(J.KEY_VALUE);return v.acceptLexerState(q),{type:"JsdocTypeJsdocObjectField",left:N(b),right:Q}}},"parseInfix")})}a(Se,"createObjectFieldParslet");function je({allowOptional:e,allowVariadic:s}){return F({name:"keyValueParslet",precedence:J.KEY_VALUE,accept:a(c=>c===":","accept"),parseInfix:a((c,d)=>{let v=!1,b=!1;if(e&&d.type==="JsdocTypeNullable"&&(v=!0,d=d.element),s&&d.type==="JsdocTypeVariadic"&&d.element!==void 0&&(b=!0,d=d.element),d.type!=="JsdocTypeName")throw new m(d);c.consume(":");let O=c.parseType(J.KEY_VALUE);return{type:"JsdocTypeKeyValue",key:d.value,right:O,optional:v,variadic:b}},"parseInfix")})}a(je,"createKeyValueParslet");let ht=[...Ce,Oe({allowWithoutParenthesis:!0,allowNamedParameters:["this","new"],allowNoReturnType:!0,allowNewAsFunctionKeyword:!1}),ue,ye({allowedTypes:["module","external","event"],pathGrammar:pe}),Ne({allowEnclosingBrackets:!0,allowPostfix:!0}),W({allowedAdditionalTokens:["keyof"]}),Tt,vt,le({allowSquareBracketsOnAnyType:!1,allowJsdocNamePaths:!0,pathGrammar:pe})],Qr=[...ht,_e({objectFieldGrammar:[W({allowedAdditionalTokens:["module","in"]}),Se({allowSquaredProperties:!1,allowKeyTypes:!0,allowOptional:!1,allowReadonly:!1}),...ht],allowKeyTypes:!0}),je({allowOptional:!0,allowVariadic:!0})],gt=F({name:"typeOfParslet",accept:a(e=>e==="typeof","accept"),parsePrefix:a(e=>(e.consume("typeof"),{type:"JsdocTypeTypeof",element:N(e.parseType(J.KEY_OF_TYPE_OF))}),"parsePrefix")}),Zr=[W({allowedAdditionalTokens:["module","keyof","event","external","in"]}),Me,xe,ue,we,Se({allowSquaredProperties:!1,allowKeyTypes:!1,allowOptional:!1,allowReadonly:!1})],en=[...Ce,_e({allowKeyTypes:!1,objectFieldGrammar:Zr}),W({allowedAdditionalTokens:["event","external","in"]}),gt,Oe({allowWithoutParenthesis:!1,allowNamedParameters:["this","new"],allowNoReturnType:!0,allowNewAsFunctionKeyword:!1}),Ne({allowEnclosingBrackets:!1,allowPostfix:!1}),W({allowedAdditionalTokens:["keyof"]}),ye({allowedTypes:["module"],pathGrammar:pe}),le({allowSquareBracketsOnAnyType:!1,allowJsdocNamePaths:!0,pathGrammar:pe}),je({allowOptional:!1,allowVariadic:!1}),Tt];function bt({allowQuestionMark:e}){return F({name:"tupleParslet",accept:a(s=>s==="[","accept"),parsePrefix:a(s=>{s.consume("[");let c={type:"JsdocTypeTuple",elements:[]};if(s.consume("]"))return c;let d=s.parseIntermediateType(J.ALL);if(d.type==="JsdocTypeParameterList"?d.elements[0].type==="JsdocTypeKeyValue"?c.elements=d.elements.map(S):c.elements=d.elements.map(N):d.type==="JsdocTypeKeyValue"?c.elements=[S(d)]:c.elements=[N(d)],!s.consume("]"))throw new Error("Unterminated '['");if(!e&&c.elements.some(v=>v.type==="JsdocTypeUnknown"))throw new Error("Question mark in tuple not allowed");return c},"parsePrefix")})}a(bt,"createTupleParslet");let tn=F({name:"keyOfParslet",accept:a(e=>e==="keyof","accept"),parsePrefix:a(e=>(e.consume("keyof"),{type:"JsdocTypeKeyof",element:N(e.parseType(J.KEY_OF_TYPE_OF))}),"parsePrefix")}),rn=F({name:"importParslet",accept:a(e=>e==="import","accept"),parsePrefix:a(e=>{if(e.consume("import"),!e.consume("("))throw new Error("Missing parenthesis after import keyword");let s=e.parseType(J.PREFIX);if(s.type!=="JsdocTypeStringValue")throw new Error("Only string values are allowed as paths for imports");if(!e.consume(")"))throw new Error("Missing closing parenthesis after import keyword");return{type:"JsdocTypeImport",element:s}},"parsePrefix")}),nn=F({name:"readonlyPropertyParslet",accept:a(e=>e==="readonly","accept"),parsePrefix:a(e=>(e.consume("readonly"),{type:"JsdocTypeReadonlyProperty",element:e.parseType(J.KEY_VALUE)}),"parsePrefix")}),an=F({name:"arrowFunctionParslet",precedence:J.ARROW,accept:a(e=>e==="=>","accept"),parseInfix:a((e,s)=>(e.consume("=>"),{type:"JsdocTypeFunction",parameters:Pe(s).map(G),arrow:!0,constructor:!1,parenthesis:!0,returnType:e.parseType(J.OBJECT)}),"parseInfix")}),on=F({name:"intersectionParslet",accept:a(e=>e==="&","accept"),precedence:J.INTERSECTION,parseInfix:a((e,s)=>{e.consume("&");let c=[];do c.push(e.parseType(J.INTERSECTION));while(e.consume("&"));return{type:"JsdocTypeIntersection",elements:[N(s),...c]}},"parseInfix")}),sn=F({name:"predicateParslet",precedence:J.INFIX,accept:a(e=>e==="is","accept"),parseInfix:a((e,s)=>{if(s.type!=="JsdocTypeName")throw new m(s,"A typescript predicate always has to have a name on the left side.");return e.consume("is"),{type:"JsdocTypePredicate",left:s,right:N(e.parseIntermediateType(J.INFIX))}},"parseInfix")}),pn=F({name:"objectSquareBracketPropertyParslet",accept:a(e=>e==="[","accept"),parsePrefix:a(e=>{if(e.baseParser===void 0)throw new Error("Only allowed inside object grammar");e.consume("[");let s=e.lexer.current.text;e.consume("Identifier");let c;if(e.consume(":")){let d=e.baseParser;d.acceptLexerState(e),c={type:"JsdocTypeIndexSignature",key:s,right:d.parseType(J.ARRAY_BRACKETS)},e.acceptLexerState(d)}else if(e.consume("in")){let d=e.baseParser;d.acceptLexerState(e),c={type:"JsdocTypeMappedType",key:s,right:d.parseType(J.ARRAY_BRACKETS)},e.acceptLexerState(d)}else throw new Error("Missing ':' or 'in' inside square bracketed property.");if(!e.consume("]"))throw new Error("Unterminated square brackets");return c},"parsePrefix")}),cn=[nn,W({allowedAdditionalTokens:["module","event","keyof","event","external","in"]}),Me,xe,ue,we,Se({allowSquaredProperties:!0,allowKeyTypes:!1,allowOptional:!0,allowReadonly:!0}),pn],ln=[...Ce,_e({allowKeyTypes:!1,objectFieldGrammar:cn}),gt,tn,rn,ue,Oe({allowWithoutParenthesis:!0,allowNoReturnType:!1,allowNamedParameters:["this","new","args"],allowNewAsFunctionKeyword:!0}),bt({allowQuestionMark:!1}),Ne({allowEnclosingBrackets:!1,allowPostfix:!1}),W({allowedAdditionalTokens:["event","external","in"]}),ye({allowedTypes:["module"],pathGrammar:pe}),vt,an,le({allowSquareBracketsOnAnyType:!0,allowJsdocNamePaths:!1,pathGrammar:pe}),on,sn,je({allowVariadic:!0,allowOptional:!0})];function qe(e,s){switch(s){case"closure":return new ee(en,e).parse();case"jsdoc":return new ee(Qr,e).parse();case"typescript":return new ee(ln,e).parse()}}a(qe,"parse");function Jt(e,s=["typescript","closure","jsdoc"]){let c;for(let d of s)try{return qe(e,d)}catch(v){c=v}throw c}a(Jt,"tryParse");function ce(e,s){let c=e[s.type];if(c===void 0)throw new Error(`In this set of transform rules exists no rule for type ${s.type}.`);return c(s,d=>ce(e,d))}a(ce,"transform");function B(e){throw new Error("This transform is not available. Are you trying the correct parsing mode?")}a(B,"notAvailableTransform");function Be(e){let s={params:[]};for(let c of e.parameters)c.type==="JsdocTypeKeyValue"?c.key==="this"?s.this=c.right:c.key==="new"?s.new=c.right:s.params.push(c):s.params.push(c);return s}a(Be,"extractSpecialParams");function de(e,s,c){return e==="prefix"?c+s:s+c}a(de,"applyPosition");function H(e,s){switch(s){case"double":return`"${e}"`;case"single":return`'${e}'`;case void 0:return e}}a(H,"quote");function Ge(){return{JsdocTypeParenthesis:a((e,s)=>`(${e.element!==void 0?s(e.element):""})`,"JsdocTypeParenthesis"),JsdocTypeKeyof:a((e,s)=>`keyof ${s(e.element)}`,"JsdocTypeKeyof"),JsdocTypeFunction:a((e,s)=>{if(e.arrow){if(e.returnType===void 0)throw new Error("Arrow function needs a return type.");let c=`(${e.parameters.map(s).join(", ")}) => ${s(e.returnType)}`;return e.constructor&&(c="new "+c),c}else{let c=e.constructor?"new":"function";return e.parenthesis&&(c+=`(${e.parameters.map(s).join(", ")})`,e.returnType!==void 0&&(c+=`: ${s(e.returnType)}`)),c}},"JsdocTypeFunction"),JsdocTypeName:a(e=>e.value,"JsdocTypeName"),JsdocTypeTuple:a((e,s)=>`[${e.elements.map(s).join(", ")}]`,"JsdocTypeTuple"),JsdocTypeVariadic:a((e,s)=>e.meta.position===void 0?"...":de(e.meta.position,s(e.element),"..."),"JsdocTypeVariadic"),JsdocTypeNamePath:a((e,s)=>{let c=s(e.left),d=s(e.right);switch(e.pathType){case"inner":return`${c}~${d}`;case"instance":return`${c}#${d}`;case"property":return`${c}.${d}`;case"property-brackets":return`${c}[${d}]`}},"JsdocTypeNamePath"),JsdocTypeStringValue:a(e=>H(e.value,e.meta.quote),"JsdocTypeStringValue"),JsdocTypeAny:a(()=>"*","JsdocTypeAny"),JsdocTypeGeneric:a((e,s)=>{if(e.meta.brackets==="square"){let c=e.elements[0],d=s(c);return c.type==="JsdocTypeUnion"||c.type==="JsdocTypeIntersection"?`(${d})[]`:`${d}[]`}else return`${s(e.left)}${e.meta.dot?".":""}<${e.elements.map(s).join(", ")}>`},"JsdocTypeGeneric"),JsdocTypeImport:a((e,s)=>`import(${s(e.element)})`,"JsdocTypeImport"),JsdocTypeObjectField:a((e,s)=>{let c="";return e.readonly&&(c+="readonly "),typeof e.key=="string"?c+=H(e.key,e.meta.quote):c+=s(e.key),e.optional&&(c+="?"),e.right===void 0?c:c+`: ${s(e.right)}`},"JsdocTypeObjectField"),JsdocTypeJsdocObjectField:a((e,s)=>`${s(e.left)}: ${s(e.right)}`,"JsdocTypeJsdocObjectField"),JsdocTypeKeyValue:a((e,s)=>{let c=e.key;return e.optional&&(c+="?"),e.variadic&&(c="..."+c),e.right===void 0?c:c+`: ${s(e.right)}`},"JsdocTypeKeyValue"),JsdocTypeSpecialNamePath:a(e=>`${e.specialType}:${H(e.value,e.meta.quote)}`,"JsdocTypeSpecialNamePath"),JsdocTypeNotNullable:a((e,s)=>de(e.meta.position,s(e.element),"!"),"JsdocTypeNotNullable"),JsdocTypeNull:a(()=>"null","JsdocTypeNull"),JsdocTypeNullable:a((e,s)=>de(e.meta.position,s(e.element),"?"),"JsdocTypeNullable"),JsdocTypeNumber:a(e=>e.value.toString(),"JsdocTypeNumber"),JsdocTypeObject:a((e,s)=>`{${e.elements.map(s).join((e.meta.separator==="comma"?",":";")+" ")}}`,"JsdocTypeObject"),JsdocTypeOptional:a((e,s)=>de(e.meta.position,s(e.element),"="),"JsdocTypeOptional"),JsdocTypeSymbol:a((e,s)=>`${e.value}(${e.element!==void 0?s(e.element):""})`,"JsdocTypeSymbol"),JsdocTypeTypeof:a((e,s)=>`typeof ${s(e.element)}`,"JsdocTypeTypeof"),JsdocTypeUndefined:a(()=>"undefined","JsdocTypeUndefined"),JsdocTypeUnion:a((e,s)=>e.elements.map(s).join(" | "),"JsdocTypeUnion"),JsdocTypeUnknown:a(()=>"?","JsdocTypeUnknown"),JsdocTypeIntersection:a((e,s)=>e.elements.map(s).join(" & "),"JsdocTypeIntersection"),JsdocTypeProperty:a(e=>H(e.value,e.meta.quote),"JsdocTypeProperty"),JsdocTypePredicate:a((e,s)=>`${s(e.left)} is ${s(e.right)}`,"JsdocTypePredicate"),JsdocTypeIndexSignature:a((e,s)=>`[${e.key}: ${s(e.right)}]`,"JsdocTypeIndexSignature"),JsdocTypeMappedType:a((e,s)=>`[${e.key} in ${s(e.right)}]`,"JsdocTypeMappedType")}}a(Ge,"stringifyRules");let un=Ge();function xt(e){return ce(un,e)}a(xt,"stringify");let yn=["null","true","false","break","case","catch","class","const","continue","debugger","default","delete","do","else","export","extends","finally","for","function","if","import","in","instanceof","new","return","super","switch","this","throw","try","typeof","var","void","while","with","yield"];function X(e){let s={type:"NameExpression",name:e};return yn.includes(e)&&(s.reservedWord=!0),s}a(X,"makeName");let dn={JsdocTypeOptional:a((e,s)=>{let c=s(e.element);return c.optional=!0,c},"JsdocTypeOptional"),JsdocTypeNullable:a((e,s)=>{let c=s(e.element);return c.nullable=!0,c},"JsdocTypeNullable"),JsdocTypeNotNullable:a((e,s)=>{let c=s(e.element);return c.nullable=!1,c},"JsdocTypeNotNullable"),JsdocTypeVariadic:a((e,s)=>{if(e.element===void 0)throw new Error("dots without value are not allowed in catharsis mode");let c=s(e.element);return c.repeatable=!0,c},"JsdocTypeVariadic"),JsdocTypeAny:a(()=>({type:"AllLiteral"}),"JsdocTypeAny"),JsdocTypeNull:a(()=>({type:"NullLiteral"}),"JsdocTypeNull"),JsdocTypeStringValue:a(e=>X(H(e.value,e.meta.quote)),"JsdocTypeStringValue"),JsdocTypeUndefined:a(()=>({type:"UndefinedLiteral"}),"JsdocTypeUndefined"),JsdocTypeUnknown:a(()=>({type:"UnknownLiteral"}),"JsdocTypeUnknown"),JsdocTypeFunction:a((e,s)=>{let c=Be(e),d={type:"FunctionType",params:c.params.map(s)};return c.this!==void 0&&(d.this=s(c.this)),c.new!==void 0&&(d.new=s(c.new)),e.returnType!==void 0&&(d.result=s(e.returnType)),d},"JsdocTypeFunction"),JsdocTypeGeneric:a((e,s)=>({type:"TypeApplication",applications:e.elements.map(c=>s(c)),expression:s(e.left)}),"JsdocTypeGeneric"),JsdocTypeSpecialNamePath:a(e=>X(e.specialType+":"+H(e.value,e.meta.quote)),"JsdocTypeSpecialNamePath"),JsdocTypeName:a(e=>e.value!=="function"?X(e.value):{type:"FunctionType",params:[]},"JsdocTypeName"),JsdocTypeNumber:a(e=>X(e.value.toString()),"JsdocTypeNumber"),JsdocTypeObject:a((e,s)=>{let c={type:"RecordType",fields:[]};for(let d of e.elements)d.type!=="JsdocTypeObjectField"&&d.type!=="JsdocTypeJsdocObjectField"?c.fields.push({type:"FieldType",key:s(d),value:void 0}):c.fields.push(s(d));return c},"JsdocTypeObject"),JsdocTypeObjectField:a((e,s)=>{if(typeof e.key!="string")throw new Error("Index signatures and mapped types are not supported");return{type:"FieldType",key:X(H(e.key,e.meta.quote)),value:e.right===void 0?void 0:s(e.right)}},"JsdocTypeObjectField"),JsdocTypeJsdocObjectField:a((e,s)=>({type:"FieldType",key:s(e.left),value:s(e.right)}),"JsdocTypeJsdocObjectField"),JsdocTypeUnion:a((e,s)=>({type:"TypeUnion",elements:e.elements.map(c=>s(c))}),"JsdocTypeUnion"),JsdocTypeKeyValue:a((e,s)=>({type:"FieldType",key:X(e.key),value:e.right===void 0?void 0:s(e.right)}),"JsdocTypeKeyValue"),JsdocTypeNamePath:a((e,s)=>{let c=s(e.left),d;e.right.type==="JsdocTypeSpecialNamePath"?d=s(e.right).name:d=H(e.right.value,e.right.meta.quote);let v=e.pathType==="inner"?"~":e.pathType==="instance"?"#":".";return X(`${c.name}${v}${d}`)},"JsdocTypeNamePath"),JsdocTypeSymbol:a(e=>{let s="",c=e.element,d=!1;return(c==null?void 0:c.type)==="JsdocTypeVariadic"&&(c.meta.position==="prefix"?s="...":d=!0,c=c.element),(c==null?void 0:c.type)==="JsdocTypeName"?s+=c.value:(c==null?void 0:c.type)==="JsdocTypeNumber"&&(s+=c.value.toString()),d&&(s+="..."),X(`${e.value}(${s})`)},"JsdocTypeSymbol"),JsdocTypeParenthesis:a((e,s)=>s(N(e.element)),"JsdocTypeParenthesis"),JsdocTypeMappedType:B,JsdocTypeIndexSignature:B,JsdocTypeImport:B,JsdocTypeKeyof:B,JsdocTypeTuple:B,JsdocTypeTypeof:B,JsdocTypeIntersection:B,JsdocTypeProperty:B,JsdocTypePredicate:B};function wt(e){return ce(dn,e)}a(wt,"catharsisTransform");function te(e){switch(e){case void 0:return"none";case"single":return"single";case"double":return"double"}}a(te,"getQuoteStyle");function Pt(e){switch(e){case"inner":return"INNER_MEMBER";case"instance":return"INSTANCE_MEMBER";case"property":return"MEMBER";case"property-brackets":return"MEMBER"}}a(Pt,"getMemberType");function Ee(e,s){return s.length===2?{type:e,left:s[0],right:s[1]}:{type:e,left:s[0],right:Ee(e,s.slice(1))}}a(Ee,"nestResults");let mn={JsdocTypeOptional:a((e,s)=>({type:"OPTIONAL",value:s(e.element),meta:{syntax:e.meta.position==="prefix"?"PREFIX_EQUAL_SIGN":"SUFFIX_EQUALS_SIGN"}}),"JsdocTypeOptional"),JsdocTypeNullable:a((e,s)=>({type:"NULLABLE",value:s(e.element),meta:{syntax:e.meta.position==="prefix"?"PREFIX_QUESTION_MARK":"SUFFIX_QUESTION_MARK"}}),"JsdocTypeNullable"),JsdocTypeNotNullable:a((e,s)=>({type:"NOT_NULLABLE",value:s(e.element),meta:{syntax:e.meta.position==="prefix"?"PREFIX_BANG":"SUFFIX_BANG"}}),"JsdocTypeNotNullable"),JsdocTypeVariadic:a((e,s)=>{let c={type:"VARIADIC",meta:{syntax:e.meta.position==="prefix"?"PREFIX_DOTS":e.meta.position==="suffix"?"SUFFIX_DOTS":"ONLY_DOTS"}};return e.element!==void 0&&(c.value=s(e.element)),c},"JsdocTypeVariadic"),JsdocTypeName:a(e=>({type:"NAME",name:e.value}),"JsdocTypeName"),JsdocTypeTypeof:a((e,s)=>({type:"TYPE_QUERY",name:s(e.element)}),"JsdocTypeTypeof"),JsdocTypeTuple:a((e,s)=>({type:"TUPLE",entries:e.elements.map(s)}),"JsdocTypeTuple"),JsdocTypeKeyof:a((e,s)=>({type:"KEY_QUERY",value:s(e.element)}),"JsdocTypeKeyof"),JsdocTypeImport:a(e=>({type:"IMPORT",path:{type:"STRING_VALUE",quoteStyle:te(e.element.meta.quote),string:e.element.value}}),"JsdocTypeImport"),JsdocTypeUndefined:a(()=>({type:"NAME",name:"undefined"}),"JsdocTypeUndefined"),JsdocTypeAny:a(()=>({type:"ANY"}),"JsdocTypeAny"),JsdocTypeFunction:a((e,s)=>{let c=Be(e),d={type:e.arrow?"ARROW":"FUNCTION",params:c.params.map(v=>{if(v.type==="JsdocTypeKeyValue"){if(v.right===void 0)throw new Error("Function parameter without ':' is not expected to be 'KEY_VALUE'");return{type:"NAMED_PARAMETER",name:v.key,typeName:s(v.right)}}else return s(v)}),new:null,returns:null};return c.this!==void 0?d.this=s(c.this):e.arrow||(d.this=null),c.new!==void 0&&(d.new=s(c.new)),e.returnType!==void 0&&(d.returns=s(e.returnType)),d},"JsdocTypeFunction"),JsdocTypeGeneric:a((e,s)=>{let c={type:"GENERIC",subject:s(e.left),objects:e.elements.map(s),meta:{syntax:e.meta.brackets==="square"?"SQUARE_BRACKET":e.meta.dot?"ANGLE_BRACKET_WITH_DOT":"ANGLE_BRACKET"}};return e.meta.brackets==="square"&&e.elements[0].type==="JsdocTypeFunction"&&!e.elements[0].parenthesis&&(c.objects[0]={type:"NAME",name:"function"}),c},"JsdocTypeGeneric"),JsdocTypeObjectField:a((e,s)=>{if(typeof e.key!="string")throw new Error("Index signatures and mapped types are not supported");if(e.right===void 0)return{type:"RECORD_ENTRY",key:e.key,quoteStyle:te(e.meta.quote),value:null,readonly:!1};let c=s(e.right);return e.optional&&(c={type:"OPTIONAL",value:c,meta:{syntax:"SUFFIX_KEY_QUESTION_MARK"}}),{type:"RECORD_ENTRY",key:e.key.toString(),quoteStyle:te(e.meta.quote),value:c,readonly:!1}},"JsdocTypeObjectField"),JsdocTypeJsdocObjectField:a(()=>{throw new Error("Keys may not be typed in jsdoctypeparser.")},"JsdocTypeJsdocObjectField"),JsdocTypeKeyValue:a((e,s)=>{if(e.right===void 0)return{type:"RECORD_ENTRY",key:e.key,quoteStyle:"none",value:null,readonly:!1};let c=s(e.right);return e.optional&&(c={type:"OPTIONAL",value:c,meta:{syntax:"SUFFIX_KEY_QUESTION_MARK"}}),{type:"RECORD_ENTRY",key:e.key,quoteStyle:"none",value:c,readonly:!1}},"JsdocTypeKeyValue"),JsdocTypeObject:a((e,s)=>{let c=[];for(let d of e.elements)(d.type==="JsdocTypeObjectField"||d.type==="JsdocTypeJsdocObjectField")&&c.push(s(d));return{type:"RECORD",entries:c}},"JsdocTypeObject"),JsdocTypeSpecialNamePath:a(e=>{if(e.specialType!=="module")throw new Error(`jsdoctypeparser does not support type ${e.specialType} at this point.`);return{type:"MODULE",value:{type:"FILE_PATH",quoteStyle:te(e.meta.quote),path:e.value}}},"JsdocTypeSpecialNamePath"),JsdocTypeNamePath:a((e,s)=>{let c=!1,d,v;e.right.type==="JsdocTypeSpecialNamePath"&&e.right.specialType==="event"?(c=!0,d=e.right.value,v=te(e.right.meta.quote)):(d=e.right.value,v=te(e.right.meta.quote));let b={type:Pt(e.pathType),owner:s(e.left),name:d,quoteStyle:v,hasEventPrefix:c};if(b.owner.type==="MODULE"){let O=b.owner;return b.owner=b.owner.value,O.value=b,O}else return b},"JsdocTypeNamePath"),JsdocTypeUnion:a((e,s)=>Ee("UNION",e.elements.map(s)),"JsdocTypeUnion"),JsdocTypeParenthesis:a((e,s)=>({type:"PARENTHESIS",value:s(N(e.element))}),"JsdocTypeParenthesis"),JsdocTypeNull:a(()=>({type:"NAME",name:"null"}),"JsdocTypeNull"),JsdocTypeUnknown:a(()=>({type:"UNKNOWN"}),"JsdocTypeUnknown"),JsdocTypeStringValue:a(e=>({type:"STRING_VALUE",quoteStyle:te(e.meta.quote),string:e.value}),"JsdocTypeStringValue"),JsdocTypeIntersection:a((e,s)=>Ee("INTERSECTION",e.elements.map(s)),"JsdocTypeIntersection"),JsdocTypeNumber:a(e=>({type:"NUMBER_VALUE",number:e.value.toString()}),"JsdocTypeNumber"),JsdocTypeSymbol:B,JsdocTypeProperty:B,JsdocTypePredicate:B,JsdocTypeMappedType:B,JsdocTypeIndexSignature:B};function Ot(e){return ce(mn,e)}a(Ot,"jtpTransform");function Nt(){return{JsdocTypeIntersection:a((e,s)=>({type:"JsdocTypeIntersection",elements:e.elements.map(s)}),"JsdocTypeIntersection"),JsdocTypeGeneric:a((e,s)=>({type:"JsdocTypeGeneric",left:s(e.left),elements:e.elements.map(s),meta:{dot:e.meta.dot,brackets:e.meta.brackets}}),"JsdocTypeGeneric"),JsdocTypeNullable:a(e=>e,"JsdocTypeNullable"),JsdocTypeUnion:a((e,s)=>({type:"JsdocTypeUnion",elements:e.elements.map(s)}),"JsdocTypeUnion"),JsdocTypeUnknown:a(e=>e,"JsdocTypeUnknown"),JsdocTypeUndefined:a(e=>e,"JsdocTypeUndefined"),JsdocTypeTypeof:a((e,s)=>({type:"JsdocTypeTypeof",element:s(e.element)}),"JsdocTypeTypeof"),JsdocTypeSymbol:a((e,s)=>{let c={type:"JsdocTypeSymbol",value:e.value};return e.element!==void 0&&(c.element=s(e.element)),c},"JsdocTypeSymbol"),JsdocTypeOptional:a((e,s)=>({type:"JsdocTypeOptional",element:s(e.element),meta:{position:e.meta.position}}),"JsdocTypeOptional"),JsdocTypeObject:a((e,s)=>({type:"JsdocTypeObject",meta:{separator:"comma"},elements:e.elements.map(s)}),"JsdocTypeObject"),JsdocTypeNumber:a(e=>e,"JsdocTypeNumber"),JsdocTypeNull:a(e=>e,"JsdocTypeNull"),JsdocTypeNotNullable:a((e,s)=>({type:"JsdocTypeNotNullable",element:s(e.element),meta:{position:e.meta.position}}),"JsdocTypeNotNullable"),JsdocTypeSpecialNamePath:a(e=>e,"JsdocTypeSpecialNamePath"),JsdocTypeObjectField:a((e,s)=>({type:"JsdocTypeObjectField",key:e.key,right:e.right===void 0?void 0:s(e.right),optional:e.optional,readonly:e.readonly,meta:e.meta}),"JsdocTypeObjectField"),JsdocTypeJsdocObjectField:a((e,s)=>({type:"JsdocTypeJsdocObjectField",left:s(e.left),right:s(e.right)}),"JsdocTypeJsdocObjectField"),JsdocTypeKeyValue:a((e,s)=>({type:"JsdocTypeKeyValue",key:e.key,right:e.right===void 0?void 0:s(e.right),optional:e.optional,variadic:e.variadic}),"JsdocTypeKeyValue"),JsdocTypeImport:a((e,s)=>({type:"JsdocTypeImport",element:s(e.element)}),"JsdocTypeImport"),JsdocTypeAny:a(e=>e,"JsdocTypeAny"),JsdocTypeStringValue:a(e=>e,"JsdocTypeStringValue"),JsdocTypeNamePath:a(e=>e,"JsdocTypeNamePath"),JsdocTypeVariadic:a((e,s)=>{let c={type:"JsdocTypeVariadic",meta:{position:e.meta.position,squareBrackets:e.meta.squareBrackets}};return e.element!==void 0&&(c.element=s(e.element)),c},"JsdocTypeVariadic"),JsdocTypeTuple:a((e,s)=>({type:"JsdocTypeTuple",elements:e.elements.map(s)}),"JsdocTypeTuple"),JsdocTypeName:a(e=>e,"JsdocTypeName"),JsdocTypeFunction:a((e,s)=>{let c={type:"JsdocTypeFunction",arrow:e.arrow,parameters:e.parameters.map(s),constructor:e.constructor,parenthesis:e.parenthesis};return e.returnType!==void 0&&(c.returnType=s(e.returnType)),c},"JsdocTypeFunction"),JsdocTypeKeyof:a((e,s)=>({type:"JsdocTypeKeyof",element:s(e.element)}),"JsdocTypeKeyof"),JsdocTypeParenthesis:a((e,s)=>({type:"JsdocTypeParenthesis",element:s(e.element)}),"JsdocTypeParenthesis"),JsdocTypeProperty:a(e=>e,"JsdocTypeProperty"),JsdocTypePredicate:a((e,s)=>({type:"JsdocTypePredicate",left:s(e.left),right:s(e.right)}),"JsdocTypePredicate"),JsdocTypeIndexSignature:a((e,s)=>({type:"JsdocTypeIndexSignature",key:e.key,right:s(e.right)}),"JsdocTypeIndexSignature"),JsdocTypeMappedType:a((e,s)=>({type:"JsdocTypeMappedType",key:e.key,right:s(e.right)}),"JsdocTypeMappedType")}}a(Nt,"identityTransformRules");let _t={JsdocTypeAny:[],JsdocTypeFunction:["parameters","returnType"],JsdocTypeGeneric:["left","elements"],JsdocTypeImport:[],JsdocTypeIndexSignature:["right"],JsdocTypeIntersection:["elements"],JsdocTypeKeyof:["element"],JsdocTypeKeyValue:["right"],JsdocTypeMappedType:["right"],JsdocTypeName:[],JsdocTypeNamePath:["left","right"],JsdocTypeNotNullable:["element"],JsdocTypeNull:[],JsdocTypeNullable:["element"],JsdocTypeNumber:[],JsdocTypeObject:["elements"],JsdocTypeObjectField:["right"],JsdocTypeJsdocObjectField:["left","right"],JsdocTypeOptional:["element"],JsdocTypeParenthesis:["element"],JsdocTypeSpecialNamePath:[],JsdocTypeStringValue:[],JsdocTypeSymbol:["element"],JsdocTypeTuple:["elements"],JsdocTypeTypeof:["element"],JsdocTypeUndefined:[],JsdocTypeUnion:["elements"],JsdocTypeUnknown:[],JsdocTypeVariadic:["element"],JsdocTypeProperty:[],JsdocTypePredicate:["left","right"]};function ke(e,s,c,d,v){d==null||d(e,s,c);let b=_t[e.type];for(let O of b){let U=e[O];if(U!==void 0)if(Array.isArray(U))for(let $ of U)ke($,e,O,d,v);else ke(U,e,O,d,v)}v==null||v(e,s,c)}a(ke,"_traverse");function St(e,s,c){ke(e,void 0,void 0,s,c)}a(St,"traverse"),n.catharsisTransform=wt,n.identityTransformRules=Nt,n.jtpTransform=Ot,n.parse=qe,n.stringify=xt,n.stringifyRules=Ge,n.transform=ce,n.traverse=St,n.tryParse=Jt,n.visitorKeys=_t})});const{UnknownArgTypesError:ro}=__STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS__;var Qt=/^['"]|['"]$/g,no=a(r=>r.replace(Qt,""),"trimQuotes"),ao=a(r=>Qt.test(r),"includesQuotes"),Zt=a(r=>{let t=no(r);return ao(r)||Number.isNaN(Number(t))?t:Number(t)},"parseLiteral"),oo=a(r=>{switch(r.type){case"function":return{name:"function"};case"object":let t={};return r.signature.properties.forEach(n=>{t[n.key]=ve(n.value)}),{name:"object",value:t};default:throw new ro({type:r,language:"Typescript"})}},"convertSig"),ve=a(r=>{var i,p,l,u;let{name:t,raw:n}=r,o={};switch(typeof n<"u"&&(o.raw=n),r.name){case"string":case"number":case"symbol":case"boolean":return{...o,name:t};case"Array":return{...o,name:"array",value:r.elements.map(ve)};case"signature":return{...o,...oo(r)};case"union":let y;return(i=r.elements)!=null&&i.every(m=>m.name==="literal")?y={...o,name:"enum",value:(p=r.elements)==null?void 0:p.map(m=>Zt(m.value))}:y={...o,name:t,value:(l=r.elements)==null?void 0:l.map(ve)},y;case"intersection":return{...o,name:t,value:(u=r.elements)==null?void 0:u.map(ve)};default:return{...o,name:"other",value:t}}},"convert");const{UnknownArgTypesError:so}=__STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS__;var io=a(r=>r.name==="literal","isLiteral"),po=a(r=>r.value.replace(/['|"]/g,""),"toEnumOption"),co=a(r=>{switch(r.type){case"function":return{name:"function"};case"object":let t={};return r.signature.properties.forEach(n=>{t[n.key]=he(n.value)}),{name:"object",value:t};default:throw new so({type:r,language:"Flow"})}},"convertSig"),he=a(r=>{var i,p,l,u;let{name:t,raw:n}=r,o={};switch(typeof n<"u"&&(o.raw=n),r.name){case"literal":return{...o,name:"other",value:r.value};case"string":case"number":case"symbol":case"boolean":return{...o,name:t};case"Array":return{...o,name:"array",value:r.elements.map(he)};case"signature":return{...o,...co(r)};case"union":return(i=r.elements)!=null&&i.every(io)?{...o,name:"enum",value:(p=r.elements)==null?void 0:p.map(po)}:{...o,name:t,value:(l=r.elements)==null?void 0:l.map(he)};case"intersection":return{...o,name:t,value:(u=r.elements)==null?void 0:u.map(he)};default:return{...o,name:"other",value:t}}},"convert"),lo=It(eo(),1),uo=/^\(.*\) => /,Te=a(r=>{let{name:t,raw:n,computed:o,value:i}=r,p={};switch(typeof n<"u"&&(p.raw=n),t){case"enum":{let u=o?i:i.map(y=>Zt(y.value));return{...p,name:t,value:u}}case"string":case"number":case"symbol":return{...p,name:t};case"func":return{...p,name:"function"};case"bool":case"boolean":return{...p,name:"boolean"};case"arrayOf":case"array":return{...p,name:"array",value:i&&Te(i)};case"object":return{...p,name:t};case"objectOf":return{...p,name:t,value:Te(i)};case"shape":case"exact":let l=(0,lo.default)(i,u=>Te(u));return{...p,name:"object",value:l};case"union":return{...p,name:"union",value:i.map(u=>Te(u))};case"instanceOf":case"element":case"elementType":default:{if((t==null?void 0:t.indexOf("|"))>0)try{let m=t.split("|").map(T=>JSON.parse(T));return{...p,name:"enum",value:m}}catch{}let u=i?`${t}(${i})`:t,y=uo.test(t)?"function":"other";return{...p,name:y,value:u}}}},"convert"),tt=a(r=>{let{type:t,tsType:n,flowType:o}=r;try{if(t!=null)return Te(t);if(n!=null)return ve(n);if(o!=null)return he(o)}catch(i){console.error(i)}return null},"convert"),yo=(r=>(r.JAVASCRIPT="JavaScript",r.FLOW="Flow",r.TYPESCRIPT="TypeScript",r.UNKNOWN="Unknown",r))(yo||{}),mo=["null","undefined"];function De(r){return mo.some(t=>t===r)}a(De,"isDefaultValueBlacklisted");var fo=a(r=>{if(!r)return"";if(typeof r=="string")return r;throw new Error(`Description: expected string, got: ${JSON.stringify(r)}`)},"str");function rt(r){return!!r.__docgenInfo}a(rt,"hasDocgen");function er(r){return r!=null&&Object.keys(r).length>0}a(er,"isValidDocgenSection");function tr(r,t){return rt(r)?r.__docgenInfo[t]:null}a(tr,"getDocgenSection");function rr(r){return rt(r)?fo(r.__docgenInfo.description):""}a(rr,"getDocgenDescription");var re;(function(r){r.start="/**",r.nostart="/***",r.delim="*",r.end="*/"})(re=re||(re={}));function nr(r){return/^\s+$/.test(r)}a(nr,"isSpace");function ar(r){let t=r.match(/\r+$/);return t==null?["",r]:[r.slice(-t[0].length),r.slice(0,-t[0].length)]}a(ar,"splitCR");function se(r){let t=r.match(/^\s+/);return t==null?["",r]:[r.slice(0,t[0].length),r.slice(t[0].length)]}a(se,"splitSpace");function or(r){return r.split(/\n/)}a(or,"splitLines");function sr(r={}){return Object.assign({tag:"",name:"",type:"",optional:!1,description:"",problems:[],source:[]},r)}a(sr,"seedSpec");function ir(r={}){return Object.assign({start:"",delimiter:"",postDelimiter:"",tag:"",postTag:"",name:"",postName:"",type:"",postType:"",description:"",end:"",lineEnd:""},r)}a(ir,"seedTokens");var To=/^@\S+/;function pr({fence:r="```"}={}){let t=cr(r),n=a((o,i)=>t(o)?!i:i,"toggleFence");return a(function(o){let i=[[]],p=!1;for(let l of o)To.test(l.tokens.description)&&!p?i.push([l]):i[i.length-1].push(l),p=n(l.tokens.description,p);return i},"parseBlock")}a(pr,"getParser");function cr(r){return typeof r=="string"?t=>t.split(r).length%2===0:r}a(cr,"getFencer");function lr({startLine:r=0,markers:t=re}={}){let n=null,o=r;return a(function(i){let p=i,l=ir();if([l.lineEnd,p]=ar(p),[l.start,p]=se(p),n===null&&p.startsWith(t.start)&&!p.startsWith(t.nostart)&&(n=[],l.delimiter=p.slice(0,t.start.length),p=p.slice(t.start.length),[l.postDelimiter,p]=se(p)),n===null)return o++,null;let u=p.trimRight().endsWith(t.end);if(l.delimiter===""&&p.startsWith(t.delim)&&!p.startsWith(t.end)&&(l.delimiter=t.delim,p=p.slice(t.delim.length),[l.postDelimiter,p]=se(p)),u){let y=p.trimRight();l.end=p.slice(y.length-t.end.length),p=y.slice(0,-t.end.length)}if(l.description=p,n.push({number:o,source:i,tokens:l}),o++,u){let y=n.slice();return n=null,y}return null},"parseSource")}a(lr,"getParser");function ur({tokenizers:r}){return a(function(t){var n;let o=sr({source:t});for(let i of r)if(o=i(o),!((n=o.problems[o.problems.length-1])===null||n===void 0)&&n.critical)break;return o},"parseSpec")}a(ur,"getParser");function yr(){return r=>{let{tokens:t}=r.source[0],n=t.description.match(/\s*(@(\S+))(\s*)/);return n===null?(r.problems.push({code:"spec:tag:prefix",message:'tag should start with "@" symbol',line:r.source[0].number,critical:!0}),r):(t.tag=n[1],t.postTag=n[3],t.description=t.description.slice(n[0].length),r.tag=n[2],r)}}a(yr,"tagTokenizer");function dr(r="compact"){let t=mr(r);return n=>{let o=0,i=[];for(let[u,{tokens:y}]of n.source.entries()){let m="";if(u===0&&y.description[0]!=="{")return n;for(let T of y.description)if(T==="{"&&o++,T==="}"&&o--,m+=T,o===0)break;if(i.push([y,m]),o===0)break}if(o!==0)return n.problems.push({code:"spec:type:unpaired-curlies",message:"unpaired curlies",line:n.source[0].number,critical:!0}),n;let p=[],l=i[0][0].postDelimiter.length;for(let[u,[y,m]]of i.entries())y.type=m,u>0&&(y.type=y.postDelimiter.slice(l)+m,y.postDelimiter=y.postDelimiter.slice(0,l)),[y.postType,y.description]=se(y.description.slice(m.length)),p.push(y.type);return p[0]=p[0].slice(1),p[p.length-1]=p[p.length-1].slice(0,-1),n.type=t(p),n}}a(dr,"typeTokenizer");var vo=a(r=>r.trim(),"trim");function mr(r){return r==="compact"?t=>t.map(vo).join(""):r==="preserve"?t=>t.join(` -`):r}a(mr,"getJoiner");var ho=a(r=>r&&r.startsWith('"')&&r.endsWith('"'),"isQuoted");function fr(){let r=a((t,{tokens:n},o)=>n.type===""?t:o,"typeEnd");return t=>{let{tokens:n}=t.source[t.source.reduce(r,0)],o=n.description.trimLeft(),i=o.split('"');if(i.length>1&&i[0]===""&&i.length%2===1)return t.name=i[1],n.name=`"${i[1]}"`,[n.postName,n.description]=se(o.slice(n.name.length)),t;let p=0,l="",u=!1,y;for(let T of o){if(p===0&&nr(T))break;T==="["&&p++,T==="]"&&p--,l+=T}if(p!==0)return t.problems.push({code:"spec:name:unpaired-brackets",message:"unpaired brackets",line:t.source[0].number,critical:!0}),t;let m=l;if(l[0]==="["&&l[l.length-1]==="]"){u=!0,l=l.slice(1,-1);let T=l.split("=");if(l=T[0].trim(),T[1]!==void 0&&(y=T.slice(1).join("=").trim()),l==="")return t.problems.push({code:"spec:name:empty-name",message:"empty name",line:t.source[0].number,critical:!0}),t;if(y==="")return t.problems.push({code:"spec:name:empty-default",message:"empty default value",line:t.source[0].number,critical:!0}),t;if(!ho(y)&&/=(?!>)/.test(y))return t.problems.push({code:"spec:name:invalid-default",message:"invalid default value syntax",line:t.source[0].number,critical:!0}),t}return t.optional=u,t.name=l,n.name=m,y!==void 0&&(t.default=y),[n.postName,n.description]=se(o.slice(n.name.length)),t}}a(fr,"nameTokenizer");function Tr(r="compact",t=re){let n=nt(r);return o=>(o.description=n(o.source,t),o)}a(Tr,"descriptionTokenizer");function nt(r){return r==="compact"?vr:r==="preserve"?hr:r}a(nt,"getJoiner");function vr(r,t=re){return r.map(({tokens:{description:n}})=>n.trim()).filter(n=>n!=="").join(" ")}a(vr,"compactJoiner");var go=a((r,{tokens:t},n)=>t.type===""?r:n,"lineNo"),bo=a(({tokens:r})=>(r.delimiter===""?r.start:r.postDelimiter.slice(1))+r.description,"getDescription");function hr(r,t=re){if(r.length===0)return"";r[0].tokens.description===""&&r[0].tokens.delimiter===t.start&&(r=r.slice(1));let n=r[r.length-1];return n!==void 0&&n.tokens.description===""&&n.tokens.end.endsWith(t.end)&&(r=r.slice(0,-1)),r=r.slice(r.reduce(go,0)),r.map(bo).join(` -`)}a(hr,"preserveJoiner");function gr({startLine:r=0,fence:t="```",spacing:n="compact",markers:o=re,tokenizers:i=[yr(),dr(n),fr(),Tr(n)]}={}){if(r<0||r%1>0)throw new Error("Invalid startLine");let p=lr({startLine:r,markers:o}),l=pr({fence:t}),u=ur({tokenizers:i}),y=nt(n);return function(m){let T=[];for(let h of or(m)){let x=p(h);if(x===null)continue;let g=l(x),w=g.slice(1).map(u);T.push({description:y(g[0],o),tags:w,source:x,problems:w.reduce((_,L)=>_.concat(L.problems),[])})}return T}}a(gr,"getParser");function br(r){return r.start+r.delimiter+r.postDelimiter+r.tag+r.postTag+r.type+r.postType+r.name+r.postName+r.description+r.end+r.lineEnd}a(br,"join");function Jo(){return r=>r.source.map(({tokens:t})=>br(t)).join(` -`)}a(Jo,"getStringifier");function Jr(r,t={}){return gr(t)(r)}a(Jr,"parse");var at=It(to(),1);function xr(r){return r!=null&&r.includes("@")}a(xr,"containsJsDoc");function wr(r){let t=`/** -`+(r??"").split(` -`).map(o=>` * ${o}`).join(` -`)+` -*/`,n=Jr(t,{spacing:"preserve"});if(!n||n.length===0)throw new Error("Cannot parse JSDoc tags.");return n[0]}a(wr,"parse");var xo={tags:["param","arg","argument","returns","ignore","deprecated"]},wo=a((r,t=xo)=>{if(!xr(r))return{includesJsDoc:!1,ignore:!1};let n=wr(r),o=Pr(n,t.tags);return o.ignore?{includesJsDoc:!0,ignore:!0}:{includesJsDoc:!0,ignore:!1,description:n.description.trim(),extractedTags:o}},"parseJsDoc");function Pr(r,t){let n={params:null,deprecated:null,returns:null,ignore:!1};for(let o of r.tags)if(!(t!==void 0&&!t.includes(o.tag)))if(o.tag==="ignore"){n.ignore=!0;break}else switch(o.tag){case"param":case"arg":case"argument":{let i=Nr(o);i!=null&&(n.params==null&&(n.params=[]),n.params.push(i));break}case"deprecated":{let i=_r(o);i!=null&&(n.deprecated=i);break}case"returns":{let i=Sr(o);i!=null&&(n.returns=i);break}}return n}a(Pr,"extractJsDocTags");function Or(r){return r.replace(/[\.-]$/,"")}a(Or,"normaliseParamName");function Nr(r){if(!r.name||r.name==="-")return null;let t=it(r.type);return{name:r.name,type:t,description:st(r.description),getPrettyName:a(()=>Or(r.name),"getPrettyName"),getTypeName:a(()=>t?pt(t):null,"getTypeName")}}a(Nr,"extractParam");function _r(r){return r.name?ot(r.name,r.description):null}a(_r,"extractDeprecated");function ot(r,t){let n=r===""?t:`${r} ${t}`;return st(n)}a(ot,"joinNameAndDescription");function st(r){let t=r.replace(/^- /g,"").trim();return t===""?null:t}a(st,"normaliseDescription");function Sr(r){let t=it(r.type);return t?{type:t,description:ot(r.name,r.description),getTypeName:a(()=>pt(t),"getTypeName")}:null}a(Sr,"extractReturns");var ae=(0,at.stringifyRules)(),Po=ae.JsdocTypeObject;ae.JsdocTypeAny=()=>"any";ae.JsdocTypeObject=(r,t)=>`(${Po(r,t)})`;ae.JsdocTypeOptional=(r,t)=>t(r.element);ae.JsdocTypeNullable=(r,t)=>t(r.element);ae.JsdocTypeNotNullable=(r,t)=>t(r.element);ae.JsdocTypeUnion=(r,t)=>r.elements.map(t).join("|");function it(r){try{return(0,at.parse)(r,"typescript")}catch{return null}}a(it,"extractType");function pt(r){return(0,at.transform)(ae,r)}a(pt,"extractTypeName");function ct(r){return r.length>90}a(ct,"isTooLongForTypeSummary");function jr(r){return r.length>50}a(jr,"isTooLongForDefaultValueSummary");function M(r,t){return r===t?{summary:r}:{summary:r,detail:t}}a(M,"createSummaryValue");function lt({name:r,value:t,elements:n,raw:o}){return t??(n!=null?n.map(lt).join(" | "):o??r)}a(lt,"generateUnionElement");function Er({name:r,raw:t,elements:n}){return n!=null?M(n.map(lt).join(" | ")):t!=null?M(t.replace(/^\|\s*/,"")):M(r)}a(Er,"generateUnion");function kr({type:r,raw:t}){return t!=null?M(t):M(r)}a(kr,"generateFuncSignature");function Ar({type:r,raw:t}){return t!=null?ct(t)?M(r,t):M(t):M(r)}a(Ar,"generateObjectSignature");function Ir(r){let{type:t}=r;return t==="object"?Ar(r):kr(r)}a(Ir,"generateSignature");function Rr({name:r,raw:t}){return t!=null?ct(t)?M(r,t):M(t):M(r)}a(Rr,"generateDefault");function Fr(r){if(r==null)return null;switch(r.name){case"union":return Er(r);case"signature":return Ir(r);default:return Rr(r)}}a(Fr,"createType");function Lr(r,t){if(r!=null){let{value:n}=r;if(!De(n))return jr(n)?M(t==null?void 0:t.name,n):M(n)}return null}a(Lr,"createDefaultValue");var Oo=a((r,t)=>{let{flowType:n,description:o,required:i,defaultValue:p}=t;return{name:r,type:Fr(n),required:i,description:o,defaultValue:Lr(p??null,n??null)}},"createFlowPropDef");function Ur({tsType:r,required:t}){if(r==null)return null;let n=r.name;return t||(n=n.replace(" | undefined","")),M(["Array","Record","signature"].includes(r.name)?r.raw:n)}a(Ur,"createType");function Vr({defaultValue:r}){if(r!=null){let{value:t}=r;if(!De(t))return M(t)}return null}a(Vr,"createDefaultValue");var No=a((r,t)=>{let{description:n,required:o}=t;return{name:r,type:Ur(t),required:o,description:n,defaultValue:Vr(t)}},"createTsPropDef");function $r(r){return r!=null?M(r.name):null}a($r,"createType");function Dr(r){let{computed:t,func:n}=r;return typeof t>"u"&&typeof n>"u"}a(Dr,"isReactDocgenTypescript");function Kr(r){return r?r.name==="string"?!0:r.name==="enum"?Array.isArray(r.value)&&r.value.every(({value:t})=>typeof t=="string"&&t[0]==='"'&&t[t.length-1]==='"'):!1:!1}a(Kr,"isStringValued");function Mr(r,t){if(r!=null){let{value:n}=r;if(!De(n))return Dr(r)&&Kr(t)?M(JSON.stringify(n)):M(n)}return null}a(Mr,"createDefaultValue");function ut(r,t,n){let{description:o,required:i,defaultValue:p}=n;return{name:r,type:$r(t),required:i,description:o,defaultValue:Mr(p,t)}}a(ut,"createBasicPropDef");function Je(r,t){var n;if(t!=null&&t.includesJsDoc){let{description:o,extractedTags:i}=t;o!=null&&(r.description=t.description);let p={...i,params:(n=i==null?void 0:i.params)==null?void 0:n.map(l=>({name:l.getPrettyName(),description:l.description}))};Object.values(p).filter(Boolean).length>0&&(r.jsDocTags=p)}return r}a(Je,"applyJsDocResult");var _o=a((r,t,n)=>{let o=ut(r,t.type,t);return o.sbType=tt(t),Je(o,n)},"javaScriptFactory"),So=a((r,t,n)=>{let o=No(r,t);return o.sbType=tt(t),Je(o,n)},"tsFactory"),jo=a((r,t,n)=>{let o=Oo(r,t);return o.sbType=tt(t),Je(o,n)},"flowFactory"),Eo=a((r,t,n)=>{let o=ut(r,{name:"unknown"},t);return Je(o,n)},"unknownFactory"),Cr=a(r=>{switch(r){case"JavaScript":return _o;case"TypeScript":return So;case"Flow":return jo;default:return Eo}},"getPropDefFactory"),qr=a(r=>r.type!=null?"JavaScript":r.flowType!=null?"Flow":r.tsType!=null?"TypeScript":"Unknown","getTypeSystem"),ko=a(r=>{let t=qr(r[0]),n=Cr(t);return r.map(o=>{var p;let i=o;return(p=o.type)!=null&&p.elements&&(i={...o,type:{...o.type,value:o.type.elements}}),yt(i.name,i,t,n)})},"extractComponentSectionArray"),Ao=a(r=>{let t=Object.keys(r),n=qr(r[t[0]]),o=Cr(n);return t.map(i=>{let p=r[i];return p!=null?yt(i,p,n,o):null}).filter(Boolean)},"extractComponentSectionObject"),ws=a((r,t)=>{let n=tr(r,t);return er(n)?Array.isArray(n)?ko(n):Ao(n):[]},"extractComponentProps");function yt(r,t,n,o){let i=wo(t.description);return i.includesJsDoc&&i.ignore?null:{propDef:o(r,t,i),jsDocTags:i.extractedTags,docgenInfo:t,typeSystem:n}}a(yt,"extractProp");function Io(r){return r!=null?rr(r):""}a(Io,"extractComponentDescription");const{combineParameters:Ro}=__STORYBOOK_MODULE_PREVIEW_API__;var Ps=a(r=>{let{component:t,argTypes:n,parameters:{docs:o={}}}=r,{extractArgTypes:i}=o,p=i&&t?i(t):{};return p?Ro(p,n):n},"enhanceArgTypes"),Fo="storybook/docs",Os=`${Fo}/snippet-rendered`,Lo=(r=>(r.AUTO="auto",r.CODE="code",r.DYNAMIC="dynamic",r))(Lo||{}),Uo=typeof Ae=="object"&&Ae&&Ae.Object===Object&&Ae,Vo=Uo,$o=Vo,Do=typeof self=="object"&&self&&self.Object===Object&&self,Ko=$o||Do||Function("return this")(),Mo=Ko,Co=Mo,qo=Co.Symbol,Br=qo,Et=Br,Gr=Object.prototype,Bo=Gr.hasOwnProperty,Go=Gr.toString,fe=Et?Et.toStringTag:void 0;function Yo(r){var t=Bo.call(r,fe),n=r[fe];try{r[fe]=void 0;var o=!0}catch{}var i=Go.call(r);return o&&(t?r[fe]=n:delete r[fe]),i}var zo=Yo,Wo=Object.prototype,Ho=Wo.toString;function Xo(r){return Ho.call(r)}var Qo=Xo,kt=Br,Zo=zo,es=Qo,ts="[object Null]",rs="[object Undefined]",At=kt?kt.toStringTag:void 0;function ns(r){return r==null?r===void 0?rs:ts:At&&At in Object(r)?Zo(r):es(r)}var as=ns;function os(r,t){return function(n){return r(t(n))}}var ss=os,is=ss,ps=is(Object.getPrototypeOf,Object),Ns=ps;function cs(r){return r!=null&&typeof r=="object"}var _s=cs;function ls(r){var t=typeof r;return r!=null&&(t=="object"||t=="function")}var us=ls,ys=as,ds=us,ms="[object AsyncFunction]",fs="[object Function]",Ts="[object GeneratorFunction]",vs="[object Proxy]";function hs(r){if(!ds(r))return!1;var t=ys(r);return t==fs||t==Ts||t==ms||t==vs}var gs=hs;const Ss=fn(gs);var bs=Array.isArray,js=bs;export{Io as $,ws as B,ct as H,rt as K,M as O,yo as P,Mo as _,as as a,Ns as b,_s as c,js as d,Os as e,tr as f,Ss as g,gs as h,us as i,Br as j,Vo as k,ss as l,jr as o,Lo as s,Ps as z}; diff --git a/storybook-static/assets/jacob-0e020577.webp b/storybook-static/assets/jacob-0e020577.webp deleted file mode 100644 index 7533110..0000000 Binary files a/storybook-static/assets/jacob-0e020577.webp and /dev/null differ diff --git a/storybook-static/assets/jim-79686c42.webp b/storybook-static/assets/jim-79686c42.webp deleted file mode 100644 index b5af9e9..0000000 Binary files a/storybook-static/assets/jim-79686c42.webp and /dev/null differ diff --git a/storybook-static/assets/jsx-runtime-d079401a.js b/storybook-static/assets/jsx-runtime-d079401a.js deleted file mode 100644 index 5b594c1..0000000 --- a/storybook-static/assets/jsx-runtime-d079401a.js +++ /dev/null @@ -1,9 +0,0 @@ -import{r as l}from"./index-f1f2c4b1.js";var f={exports:{}},n={};/** - * @license React - * react-jsx-runtime.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */var u=l,m=Symbol.for("react.element"),x=Symbol.for("react.fragment"),y=Object.prototype.hasOwnProperty,a=u.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,v={key:!0,ref:!0,__self:!0,__source:!0};function i(t,r,p){var e,o={},s=null,_=null;p!==void 0&&(s=""+p),r.key!==void 0&&(s=""+r.key),r.ref!==void 0&&(_=r.ref);for(e in r)y.call(r,e)&&!v.hasOwnProperty(e)&&(o[e]=r[e]);if(t&&t.defaultProps)for(e in r=t.defaultProps,r)o[e]===void 0&&(o[e]=r[e]);return{$$typeof:m,type:t,key:s,ref:_,props:o,_owner:a.current}}n.Fragment=x;n.jsx=i;n.jsxs=i;f.exports=n;var d=f.exports;export{d as j}; diff --git a/storybook-static/assets/librebaskerville-bold-webfont-7fd04a14.woff b/storybook-static/assets/librebaskerville-bold-webfont-7fd04a14.woff deleted file mode 100644 index d7d43e5..0000000 Binary files a/storybook-static/assets/librebaskerville-bold-webfont-7fd04a14.woff and /dev/null differ diff --git a/storybook-static/assets/librebaskerville-italic-webfont-1ee486a9.woff b/storybook-static/assets/librebaskerville-italic-webfont-1ee486a9.woff deleted file mode 100644 index b56fa5c..0000000 Binary files a/storybook-static/assets/librebaskerville-italic-webfont-1ee486a9.woff and /dev/null differ diff --git a/storybook-static/assets/logo-85d7e314.webp b/storybook-static/assets/logo-85d7e314.webp deleted file mode 100644 index 6f47be0..0000000 Binary files a/storybook-static/assets/logo-85d7e314.webp and /dev/null differ diff --git a/storybook-static/assets/medium-9783450c.js b/storybook-static/assets/medium-9783450c.js deleted file mode 100644 index 69e0c01..0000000 --- a/storybook-static/assets/medium-9783450c.js +++ /dev/null @@ -1 +0,0 @@ -const e=[{categories:["liechtenstein","vaduz","travel"],link:"https://clintandrewhall.medium.com/40-by-30-vaduz-lichtenstein-5d66b2a1d78",timestamp:1611639971e3,title:"40 by 30: Vaduz, Lichtenstein",imgSrc:"https://cdn-images-1.medium.com/max/1024/0*UyX-GlaDv9cecMRx"},{categories:["travel","rigi","interlaken","switzerland"],link:"https://clintandrewhall.medium.com/interlaken-rigi-switzerland-d47e5a11c2a",timestamp:1611639676e3,title:"Interlaken & Rigi, Switzerland",imgSrc:"https://cdn-images-1.medium.com/max/1024/0*7tE35lSBt6ZK9a8I"},{categories:["portugal","travel","lisbon","layover"],link:"https://clintandrewhall.medium.com/lisbon-portugal-a1e483dd66a3",timestamp:1611639123e3,title:"Lisbon, Portugal",imgSrc:"https://cdn-images-1.medium.com/max/1024/1*WQOVJpYXpH_8IW8BFxGQ4Q.jpeg"},{categories:["madagascar","travel","work"],link:"https://clintandrewhall.medium.com/visiting-madagascar-tradespeople-2b4cfe972567",timestamp:1549709921e3,title:"Visiting Madagascar: Tradespeople",imgSrc:"https://cdn-images-1.medium.com/max/1024/1*cJcSfAksRdIEs6w6fJ_I3Q.jpeg"},{categories:["business","culture","startup","technology"],link:"https://clintandrewhall.medium.com/culture-of-business-vs-builders-bfa35857b31b",timestamp:1529437241e3,title:"Culture of Business, or a Culture of Builders?",imgSrc:"https://cdn-images-1.medium.com/max/1024/1*CDvXHmPGPv_UTkxZD1TjSQ.jpeg"},{categories:["tedx","software-development"],link:"https://clintandrewhall.medium.com/neither-sorcerers-nor-alchemists-80b7cd66ce15",timestamp:1406065491e3,title:"Neither Sorcerers nor Alchemists",imgSrc:"https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=80b7cd66ce15"},{categories:["software","technology"],link:"https://clintandrewhall.medium.com/neither-sorcery-nor-alchemy-304691d1fb7c",timestamp:1396235599e3,title:"Neither Sorcery nor Alchemy",imgSrc:"https://cdn-images-1.medium.com/max/575/1*Z65MydhYTApV8-gwwo3xJg.jpeg"}],t={posts:e};export{t as default,e as posts}; diff --git a/storybook-static/assets/medium.stories-655994f6.js b/storybook-static/assets/medium.stories-655994f6.js deleted file mode 100644 index 186b47d..0000000 --- a/storybook-static/assets/medium.stories-655994f6.js +++ /dev/null @@ -1 +0,0 @@ -import{H as e}from"./home-75e16b3f.js";import"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";import"./section-925c1887.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./css-7708fb60.js";import"./index-9b15b185.js";/* empty css */import"./stats-06bdd3b3.js";import"./person-d27c7fee.js";import"./timeline_item-de0bfc23.js";import"./index-a8bd1a45.js";import"./index-5f347087.js";const S={title:"Home/Medium",component:e.Medium},o={};var r,m,t;o.parameters={...o.parameters,docs:{...(r=o.parameters)==null?void 0:r.docs,source:{originalSource:"{}",...(t=(m=o.parameters)==null?void 0:m.docs)==null?void 0:t.source}}};const b=["Medium"];export{o as Medium,b as __namedExportsOrder,S as default}; diff --git a/storybook-static/assets/metaphorically-1-01e96e38.webp b/storybook-static/assets/metaphorically-1-01e96e38.webp deleted file mode 100644 index 853b73d..0000000 Binary files a/storybook-static/assets/metaphorically-1-01e96e38.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-1-a41b25b6.webp b/storybook-static/assets/metaphorically-1-a41b25b6.webp deleted file mode 100644 index b9c5217..0000000 Binary files a/storybook-static/assets/metaphorically-1-a41b25b6.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-2-920c6a11.webp b/storybook-static/assets/metaphorically-2-920c6a11.webp deleted file mode 100644 index 37e8260..0000000 Binary files a/storybook-static/assets/metaphorically-2-920c6a11.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-2-a3c8f16c.webp b/storybook-static/assets/metaphorically-2-a3c8f16c.webp deleted file mode 100644 index 01f798e..0000000 Binary files a/storybook-static/assets/metaphorically-2-a3c8f16c.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-3-6228e833.webp b/storybook-static/assets/metaphorically-3-6228e833.webp deleted file mode 100644 index ab221bf..0000000 Binary files a/storybook-static/assets/metaphorically-3-6228e833.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-3-ae7b40d1.webp b/storybook-static/assets/metaphorically-3-ae7b40d1.webp deleted file mode 100644 index b5f72f0..0000000 Binary files a/storybook-static/assets/metaphorically-3-ae7b40d1.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-4-b7156763.webp b/storybook-static/assets/metaphorically-4-b7156763.webp deleted file mode 100644 index 3223446..0000000 Binary files a/storybook-static/assets/metaphorically-4-b7156763.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-4-bd21b56a.webp b/storybook-static/assets/metaphorically-4-bd21b56a.webp deleted file mode 100644 index d10abaf..0000000 Binary files a/storybook-static/assets/metaphorically-4-bd21b56a.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-5-41b7d4ff.webp b/storybook-static/assets/metaphorically-5-41b7d4ff.webp deleted file mode 100644 index 44ddd95..0000000 Binary files a/storybook-static/assets/metaphorically-5-41b7d4ff.webp and /dev/null differ diff --git a/storybook-static/assets/metaphorically-5-c03c529f.webp b/storybook-static/assets/metaphorically-5-c03c529f.webp deleted file mode 100644 index b8af267..0000000 Binary files a/storybook-static/assets/metaphorically-5-c03c529f.webp and /dev/null differ diff --git a/storybook-static/assets/montserrat-bold-webfont-29219575.woff b/storybook-static/assets/montserrat-bold-webfont-29219575.woff deleted file mode 100644 index c425645..0000000 Binary files a/storybook-static/assets/montserrat-bold-webfont-29219575.woff and /dev/null differ diff --git a/storybook-static/assets/montserrat-extrabold-webfont-8844372c.woff b/storybook-static/assets/montserrat-extrabold-webfont-8844372c.woff deleted file mode 100644 index e0596c0..0000000 Binary files a/storybook-static/assets/montserrat-extrabold-webfont-8844372c.woff and /dev/null differ diff --git a/storybook-static/assets/montserrat-light-webfont-053c8bdd.woff b/storybook-static/assets/montserrat-light-webfont-053c8bdd.woff deleted file mode 100644 index c067266..0000000 Binary files a/storybook-static/assets/montserrat-light-webfont-053c8bdd.woff and /dev/null differ diff --git a/storybook-static/assets/montserrat-medium-webfont-c90d910d.woff b/storybook-static/assets/montserrat-medium-webfont-c90d910d.woff deleted file mode 100644 index ef33bae..0000000 Binary files a/storybook-static/assets/montserrat-medium-webfont-c90d910d.woff and /dev/null differ diff --git a/storybook-static/assets/montserrat-regular-webfont-afefae26.woff b/storybook-static/assets/montserrat-regular-webfont-afefae26.woff deleted file mode 100644 index a6d4887..0000000 Binary files a/storybook-static/assets/montserrat-regular-webfont-afefae26.woff and /dev/null differ diff --git a/storybook-static/assets/montserrat-semibold-webfont-0e32d132.woff b/storybook-static/assets/montserrat-semibold-webfont-0e32d132.woff deleted file mode 100644 index 2cc339b..0000000 Binary files a/storybook-static/assets/montserrat-semibold-webfont-0e32d132.woff and /dev/null differ diff --git a/storybook-static/assets/naithan-f6fead7e.webp b/storybook-static/assets/naithan-f6fead7e.webp deleted file mode 100644 index 8705159..0000000 Binary files a/storybook-static/assets/naithan-f6fead7e.webp and /dev/null differ diff --git a/storybook-static/assets/node-foursquare-1-479cb91a.webp b/storybook-static/assets/node-foursquare-1-479cb91a.webp deleted file mode 100644 index 691a9cc..0000000 Binary files a/storybook-static/assets/node-foursquare-1-479cb91a.webp and /dev/null differ diff --git a/storybook-static/assets/node-foursquare-1-e5594ec6.webp b/storybook-static/assets/node-foursquare-1-e5594ec6.webp deleted file mode 100644 index 70009ea..0000000 Binary files a/storybook-static/assets/node-foursquare-1-e5594ec6.webp and /dev/null differ diff --git a/storybook-static/assets/node-foursquare-2-5286ca29.webp b/storybook-static/assets/node-foursquare-2-5286ca29.webp deleted file mode 100644 index 1801986..0000000 Binary files a/storybook-static/assets/node-foursquare-2-5286ca29.webp and /dev/null differ diff --git a/storybook-static/assets/node-foursquare-2-b0aaf582.webp b/storybook-static/assets/node-foursquare-2-b0aaf582.webp deleted file mode 100644 index 8fda496..0000000 Binary files a/storybook-static/assets/node-foursquare-2-b0aaf582.webp and /dev/null differ diff --git a/storybook-static/assets/node-foursquare-3-2d7d719f.webp b/storybook-static/assets/node-foursquare-3-2d7d719f.webp deleted file mode 100644 index 2212f27..0000000 Binary files a/storybook-static/assets/node-foursquare-3-2d7d719f.webp and /dev/null differ diff --git a/storybook-static/assets/node-foursquare-3-bd304798.webp b/storybook-static/assets/node-foursquare-3-bd304798.webp deleted file mode 100644 index 42a55bb..0000000 Binary files a/storybook-static/assets/node-foursquare-3-bd304798.webp and /dev/null differ diff --git a/storybook-static/assets/patrick-31af79b5.webp b/storybook-static/assets/patrick-31af79b5.webp deleted file mode 100644 index 54b772b..0000000 Binary files a/storybook-static/assets/patrick-31af79b5.webp and /dev/null differ diff --git a/storybook-static/assets/people_line.stories-fa98c291.js b/storybook-static/assets/people_line.stories-fa98c291.js deleted file mode 100644 index d649a9a..0000000 --- a/storybook-static/assets/people_line.stories-fa98c291.js +++ /dev/null @@ -1,10 +0,0 @@ -import{j as e}from"./jsx-runtime-d079401a.js";import{P as o,a as r}from"./person-d27c7fee.js";import"./index-f1f2c4b1.js";import"./css-7708fb60.js";import"./use_people-750f5048.js";const P={title:"Components/People Line",component:o,render:({people:p})=>e.jsx("div",{style:{background:"#000",padding:"15px"},children:e.jsx(o,{people:p})})},n={imageKey:"raya",name:"First Last",quote:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eu euismod felis. Fusce laoreet tincidunt dui accumsan imperdiet. Quisque non nisi sed est tristique eleifend. Vestibulum in ullamcorper felis, convallis elementum lorem. Integer arcu justo, lacinia non ultrices vitae, viverra in arcu. Sed ac ex rhoncus, porttitor quam non, placerat erat. ",subtitle:"We worked together at XYZ.",title:"Title at XYZ"},s={args:{people:{person_1:e.jsx(r,{...n,children:"Person 1"}),person_2:e.jsx(r,{...n,children:"Person 2"}),person_3:e.jsx(r,{...n,children:"Person 3"}),person_4:e.jsx(r,{...n,children:"Person 4"})}}};var t,i,a;s.parameters={...s.parameters,docs:{...(t=s.parameters)==null?void 0:t.docs,source:{originalSource:`{ - args: { - people: { - person_1: Person 1, - person_2: Person 2, - person_3: Person 3, - person_4: Person 4 - } - } -}`,...(a=(i=s.parameters)==null?void 0:i.docs)==null?void 0:a.source}}};const x=["PeopleLine"];export{s as PeopleLine,x as __namedExportsOrder,P as default}; diff --git a/storybook-static/assets/person-a366bf46.css b/storybook-static/assets/person-a366bf46.css deleted file mode 100644 index 51679ed..0000000 --- a/storybook-static/assets/person-a366bf46.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:swiper-icons;src:url(data:application/font-woff;charset=utf-8;base64,\ d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA);font-weight:400;font-style:normal}:root{--swiper-theme-color: #007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function, initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-slide,.swiper-3d .swiper-cube-shadow{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper:before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-slide-shadow-bottom{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color, var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color: #fff}.swiper-lazy-preloader-black{--swiper-preloader-color: #000}@keyframes swiper-preloader-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:root{--swiper-navigation-size: 44px}.swiper-button-prev,.swiper-button-next{position:absolute;top:var(--swiper-navigation-top-offset, 50%);width:calc(var(--swiper-navigation-size) / 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size) / 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color, var(--swiper-theme-color))}.swiper-button-prev.swiper-button-disabled,.swiper-button-next.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev.swiper-button-hidden,.swiper-button-next.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-prev,.swiper-navigation-disabled .swiper-button-next{display:none!important}.swiper-button-prev svg,.swiper-button-next svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-prev svg,.swiper-rtl .swiper-button-next svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset, 10px);right:auto}.swiper-button-lock{display:none}.swiper-button-prev:after,.swiper-button-next:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:"prev"}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset, 10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:"next"}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translateZ(0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal{bottom:var(--swiper-pagination-bottom, 8px);top:var(--swiper-pagination-top, auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));height:var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius, 50%);background:var(--swiper-pagination-bullet-inactive-color, #000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color, var(--swiper-theme-color))}.swiper-vertical>.swiper-pagination-bullets,.swiper-pagination-vertical.swiper-pagination-bullets{right:var(--swiper-pagination-right, 8px);left:var(--swiper-pagination-left, auto);top:50%;transform:translate3d(0,-50%,0)}.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap, 6px) 0;display:block}.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap, 4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translate(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color, inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color, var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size, 4px);left:0;top:0}.swiper-vertical>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite{width:var(--swiper-pagination-progressbar-size, 4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper .swiper-pagination-bullets.swiper-pagination-horizontal{background-color:var(--color-subtle);display:inline-block;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translate(-50%);width:auto;height:22px;padding:2px 0;line-height:17px}.swiper-pagination-bullets:before,.swiper-pagination-bullets:after{content:"";background-color:var(--color-subtle);top:0;bottom:0;height:22px;width:22px;position:absolute}.swiper-pagination-bullets:before{left:-22px;border-radius:50% 0 0 50%}.swiper-pagination-bullets:after{right:-22px;border-radius:0 50% 50% 0}.atm_1d4ly2u_1kdmad9{--swiper-theme-color:var(--color-light)}.atm_7iexyv_2bn2nk{--swiper-navigation-size:var(--spacing-step6)}.atm_1ulk59d_1ssbidh{--swiper-navigation-top-offset:50%}.atm_cinzl4_idpfg4{--swiper-navigation-sides-offset:0}.atm_1osztpj_13uz5tb{--swiper-navigation-color:var(--swiper-theme-color)}.atm_5lyi1p_13uz5tb{--swiper-pagination-color:var(--swiper-theme-color)}.atm_1vv8kpw_1wugsn5{--swiper-pagination-left:auto}.atm_14umid8_1wugsn5{--swiper-pagination-right:auto}.atm_wx1exw_idpfg4{--swiper-pagination-bottom:0}.atm_w3u4dh_1wugsn5{--swiper-pagination-top:auto}.atm_1325or8_1kw7nm4{--swiper-pagination-fraction-color:inherit}.atm_1vueq8c_e7rx8z{--swiper-pagination-progressbar-bg-color:var(--color-grid)}.atm_t9w0vl_1y44olf{--swiper-pagination-progressbar-size:4px}.atm_apmu1a_ftgil2{--swiper-pagination-bullet-size:8px}.atm_efj7jp_ftgil2{--swiper-pagination-bullet-width:8px}.atm_ghfgur_ftgil2{--swiper-pagination-bullet-height:8px}.atm_1czt7df_17qlcpk{--swiper-pagination-bullet-inactive-color:var(--color-subtlest)}.atm_13qnn4o_1q4968j{--swiper-pagination-bullet-inactive-opacity:.2}.atm_azftdl_kb7nvz{--swiper-pagination-bullet-opacity:1}.atm_1thx9ev_1y44olf{--swiper-pagination-bullet-horizontal-gap:4px}.atm_1q4ocj8_i2wt44{--swiper-pagination-bullet-vertical-gap:6px}.atm_67_pzx0vz{border-top:1px solid var(--color-subtle)}.atm_l8_x3k446{padding:0 var(--spacing-step9)}.atm_1852l5k_stnw88:before,.atm_1852l5k_stnw88:after{position:absolute}.atm_1s8gqnc_1yyfdc7:before,.atm_1s8gqnc_1yyfdc7:after{content:""}.atm_u88c57_1ulexfb:before,.atm_u88c57_1ulexfb:after{display:block}.atm_42nhi7_1n1ank9:before,.atm_42nhi7_1n1ank9:after{top:-1px}.atm_1ba8udz_gsn3wn:before,.atm_1ba8udz_gsn3wn:after{width:var(--spacing-step8)}.atm_7rea6d_t94yts:before,.atm_7rea6d_t94yts:after{height:1px}.atm_1xce73l_hyy783:before{left:calc(var(--spacing-step8) * -1)}.atm_1kn0ehe_10akg1s:before{background:linear-gradient(to left,var(--color-subtle),var(--color-dark))}.atm_ca7pqr_hyy783:after{right:calc(var(--spacing-step8) * -1)}.atm_nzdbrg_1wzi0s6:after{background:linear-gradient(to right,var(--color-subtle),var(--color-dark))}.atm_j3_1kvayuk{max-width:var(--grid-maxWidth)}.atm_v6a8l5_wsin2o{--person-avatar-size:var(--spacing-avatar)}.atm_1jtg5o3_1dbut50{--person-avatar-shadow:var(--spacing-step1)}.atm_17276py_1uvqp05{--person-padding-left:calc(var(--person-avatar-size) + var(--person-avatar-shadow) + var(--spacing-step6))}.atm_1h0e3ue_1u6qs5w{--person-padding-top:var(--spacing-step9)}.atm_mk_h2mmj6{position:relative}.atm_lk_1lqwz86.atm_lk_1lqwz86{padding-left:var(--person-padding-left)}.atm_lo_1csv80r.atm_lo_1csv80r{padding-top:var(--person-padding-top)}.atm_ll_2bn2nk.atm_ll_2bn2nk{padding-right:var(--spacing-step6)}.atm_gi_12n302m{margin:0 0 var(--spacing-step9)}.atm_1gkhzp4_1yyfdc7:before{content:""}.atm_1wn0hfv_1ulexfb:before{display:block}.atm_12jvgb5_t94yts:before{width:1px}.atm_a5qyg8_1csv80r:before{height:var(--person-padding-top)}.atm_x4yteh_stnw88:before{position:absolute}.atm_1xce73l_b8v915:before{left:calc((var(--person-avatar-size) + (var(--person-avatar-shadow)*2)) / 2)}.atm_tb79i2_idpfg4:before{top:0}.atm_lv2p12_e7rx8z.atm_lv2p12_e7rx8z:before{background-color:var(--color-grid)}.atm_bx_3wtidt.atm_bx_3wtidt{font-family:var(--font-family-sans-regular)}.atm_7l_1ihcz36{color:var(--font-color-dim)}.atm_14jzbib_15vqwwr>dt{visibility:hidden}.atm_1ys8rdy_stnw88>dt{position:absolute}.atm_70_1tc6zj0{box-shadow:0 0 0 var(--person-avatar-shadow) var(--color-grid)}.atm_5j_1osqo2v{border-radius:100%}.atm_mk_stnw88{position:absolute}.atm_fq_1hwtcji{left:var(--person-avatar-shadow)}.atm_tk_1csv80r{top:var(--person-padding-top)}.atm_kd_glywfm{outline:none}.atm_e2_1jdfhta{height:var(--person-avatar-size)}.atm_vy_1jdfhta{width:var(--person-avatar-size)}.atm_bx_18cx291.atm_bx_18cx291{font-family:var(--font-family-serif-regular)}.atm_c8_xoeuol.atm_c8_xoeuol{font-size:var(--font-size-step0)}.atm_g3_1ic6ef2.atm_g3_1ic6ef2{line-height:var(--font-size-step3)}.atm_gq_1kwt7j8.atm_gq_1kwt7j8{margin-bottom:var(--spacing-step5)}.atm_bx_1dn7dki.atm_bx_1dn7dki{font-family:var(--font-family-sans-semiBold)}.atm_c8_ihbmcz.atm_c8_ihbmcz{font-size:var(--font-size-stepN1)}.atm_fr_1cae2rq{letter-spacing:calc(var(--font-size-step1) * .1)}.atm_gq_1dbut50.atm_gq_1dbut50{margin-bottom:var(--spacing-step1)}.atm_7l_75py1q{color:var(--font-color-light)}.atm_t9_angws6{text-transform:uppercase}.atm_7l_1ysj30n{color:var(--font-color-lightAccent)}.atm_gq_1hws8f.atm_gq_1hws8f{margin-bottom:var(--spacing-step3)} diff --git a/storybook-static/assets/person-d27c7fee.js b/storybook-static/assets/person-d27c7fee.js deleted file mode 100644 index 377fa46..0000000 --- a/storybook-static/assets/person-d27c7fee.js +++ /dev/null @@ -1 +0,0 @@ -import{j as B}from"./jsx-runtime-d079401a.js";import{r as z,R as A}from"./index-f1f2c4b1.js";import{t as j}from"./css-7708fb60.js";import{u as We}from"./use_people-750f5048.js";function be(t){return t!==null&&typeof t=="object"&&"constructor"in t&&t.constructor===Object}function we(t,e){t===void 0&&(t={}),e===void 0&&(e={}),Object.keys(e).forEach(i=>{typeof t[i]>"u"?t[i]=e[i]:be(e[i])&&be(t[i])&&Object.keys(e[i]).length>0&&we(t[i],e[i])})}const Pe={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector(){return null},querySelectorAll(){return[]},getElementById(){return null},createEvent(){return{initEvent(){}}},createElement(){return{children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName(){return[]}}},createElementNS(){return{}},importNode(){return null},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function X(){const t=typeof document<"u"?document:{};return we(t,Pe),t}const Ye={document:Pe,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle(){return{getPropertyValue(){return""}}},Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia(){return{}},requestAnimationFrame(t){return typeof setTimeout>"u"?(t(),null):setTimeout(t,0)},cancelAnimationFrame(t){typeof setTimeout>"u"||clearTimeout(t)}};function k(){const t=typeof window<"u"?window:{};return we(t,Ye),t}function Xe(t){return t===void 0&&(t=""),t.trim().split(" ").filter(e=>!!e.trim())}function Ue(t){const e=t;Object.keys(e).forEach(i=>{try{e[i]=null}catch{}try{delete e[i]}catch{}})}function me(t,e){return e===void 0&&(e=0),setTimeout(t,e)}function te(){return Date.now()}function Ke(t){const e=k();let i;return e.getComputedStyle&&(i=e.getComputedStyle(t,null)),!i&&t.currentStyle&&(i=t.currentStyle),i||(i=t.style),i}function Ze(t,e){e===void 0&&(e="x");const i=k();let s,n,r;const o=Ke(t);return i.WebKitCSSMatrix?(n=o.transform||o.webkitTransform,n.split(",").length>6&&(n=n.split(", ").map(l=>l.replace(",",".")).join(", ")),r=new i.WebKitCSSMatrix(n==="none"?"":n)):(r=o.MozTransform||o.OTransform||o.MsTransform||o.msTransform||o.transform||o.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),s=r.toString().split(",")),e==="x"&&(i.WebKitCSSMatrix?n=r.m41:s.length===16?n=parseFloat(s[12]):n=parseFloat(s[4])),e==="y"&&(i.WebKitCSSMatrix?n=r.m42:s.length===16?n=parseFloat(s[13]):n=parseFloat(s[5])),n||0}function J(t){return typeof t=="object"&&t!==null&&t.constructor&&Object.prototype.toString.call(t).slice(8,-1)==="Object"}function Je(t){return typeof window<"u"&&typeof window.HTMLElement<"u"?t instanceof HTMLElement:t&&(t.nodeType===1||t.nodeType===11)}function $(){const t=Object(arguments.length<=0?void 0:arguments[0]),e=["__proto__","constructor","prototype"];for(let i=1;ie.indexOf(r)<0);for(let r=0,o=n.length;rr?"next":"prev",c=(v,h)=>u==="next"&&v>=h||u==="prev"&&v<=h,f=()=>{l=new Date().getTime(),o===null&&(o=l);const v=Math.max(Math.min((l-o)/a,1),0),h=.5-Math.cos(v*Math.PI)/2;let m=r+h*(i-r);if(c(m,i)&&(m=i),e.wrapperEl.scrollTo({[s]:m}),c(m,i)){e.wrapperEl.style.overflow="hidden",e.wrapperEl.style.scrollSnapType="",setTimeout(()=>{e.wrapperEl.style.overflow="",e.wrapperEl.scrollTo({[s]:m})}),n.cancelAnimationFrame(e.cssModeFrameID);return}e.cssModeFrameID=n.requestAnimationFrame(f)};f()}function R(t,e){e===void 0&&(e="");const i=[...t.children];return t instanceof HTMLSlotElement&&i.push(...t.assignedElements()),e?i.filter(s=>s.matches(e)):i}function Qe(t,e){const i=e.contains(t);return!i&&e instanceof HTMLSlotElement?[...e.assignedElements()].includes(t):i}function ie(t){try{console.warn(t);return}catch{}}function se(t,e){e===void 0&&(e=[]);const i=document.createElement(t);return i.classList.add(...Array.isArray(e)?e:Xe(e)),i}function et(t,e){const i=[];for(;t.previousElementSibling;){const s=t.previousElementSibling;e?s.matches(e)&&i.push(s):i.push(s),t=s}return i}function tt(t,e){const i=[];for(;t.nextElementSibling;){const s=t.nextElementSibling;e?s.matches(e)&&i.push(s):i.push(s),t=s}return i}function H(t,e){return k().getComputedStyle(t,null).getPropertyValue(e)}function re(t){let e=t,i;if(e){for(i=0;(e=e.previousSibling)!==null;)e.nodeType===1&&(i+=1);return i}}function Le(t,e){const i=[];let s=t.parentElement;for(;s;)e?s.matches(e)&&i.push(s):i.push(s),s=s.parentElement;return i}function he(t,e,i){const s=k();return i?t[e==="width"?"offsetWidth":"offsetHeight"]+parseFloat(s.getComputedStyle(t,null).getPropertyValue(e==="width"?"margin-right":"margin-top"))+parseFloat(s.getComputedStyle(t,null).getPropertyValue(e==="width"?"margin-left":"margin-bottom")):t.offsetWidth}function G(t){return(Array.isArray(t)?t:[t]).filter(e=>!!e)}function Ie(t,e,i,s){return t.params.createElements&&Object.keys(s).forEach(n=>{if(!i[n]&&i.auto===!0){let r=R(t.el,`.${s[n]}`)[0];r||(r=se("div",s[n]),r.className=s[n],t.el.append(r)),i[n]=r,e[n]=r}}),i}function it(t){let{swiper:e,extendParams:i,on:s,emit:n}=t;i({navigation:{nextEl:null,prevEl:null,hideOnClick:!1,disabledClass:"swiper-button-disabled",hiddenClass:"swiper-button-hidden",lockClass:"swiper-button-lock",navigationDisabledClass:"swiper-navigation-disabled"}}),e.navigation={nextEl:null,prevEl:null};function r(m){let w;return m&&typeof m=="string"&&e.isElement&&(w=e.el.querySelector(m),w)?w:(m&&(typeof m=="string"&&(w=[...document.querySelectorAll(m)]),e.params.uniqueNavElements&&typeof m=="string"&&w&&w.length>1&&e.el.querySelectorAll(m).length===1?w=e.el.querySelector(m):w&&w.length===1&&(w=w[0])),m&&!w?m:w)}function o(m,w){const b=e.params.navigation;m=G(m),m.forEach(d=>{d&&(d.classList[w?"add":"remove"](...b.disabledClass.split(" ")),d.tagName==="BUTTON"&&(d.disabled=w),e.params.watchOverflow&&e.enabled&&d.classList[e.isLocked?"add":"remove"](b.lockClass))})}function l(){const{nextEl:m,prevEl:w}=e.navigation;if(e.params.loop){o(w,!1),o(m,!1);return}o(w,e.isBeginning&&!e.params.rewind),o(m,e.isEnd&&!e.params.rewind)}function a(m){m.preventDefault(),!(e.isBeginning&&!e.params.loop&&!e.params.rewind)&&(e.slidePrev(),n("navigationPrev"))}function u(m){m.preventDefault(),!(e.isEnd&&!e.params.loop&&!e.params.rewind)&&(e.slideNext(),n("navigationNext"))}function c(){const m=e.params.navigation;if(e.params.navigation=Ie(e,e.originalParams.navigation,e.params.navigation,{nextEl:"swiper-button-next",prevEl:"swiper-button-prev"}),!(m.nextEl||m.prevEl))return;let w=r(m.nextEl),b=r(m.prevEl);Object.assign(e.navigation,{nextEl:w,prevEl:b}),w=G(w),b=G(b);const d=(p,g)=>{p&&p.addEventListener("click",g==="next"?u:a),!e.enabled&&p&&p.classList.add(...m.lockClass.split(" "))};w.forEach(p=>d(p,"next")),b.forEach(p=>d(p,"prev"))}function f(){let{nextEl:m,prevEl:w}=e.navigation;m=G(m),w=G(w);const b=(d,p)=>{d.removeEventListener("click",p==="next"?u:a),d.classList.remove(...e.params.navigation.disabledClass.split(" "))};m.forEach(d=>b(d,"next")),w.forEach(d=>b(d,"prev"))}s("init",()=>{e.params.navigation.enabled===!1?h():(c(),l())}),s("toEdge fromEdge lock unlock",()=>{l()}),s("destroy",()=>{f()}),s("enable disable",()=>{let{nextEl:m,prevEl:w}=e.navigation;if(m=G(m),w=G(w),e.enabled){l();return}[...m,...w].filter(b=>!!b).forEach(b=>b.classList.add(e.params.navigation.lockClass))}),s("click",(m,w)=>{let{nextEl:b,prevEl:d}=e.navigation;b=G(b),d=G(d);const p=w.target;let g=d.includes(p)||b.includes(p);if(e.isElement&&!g){const S=w.path||w.composedPath&&w.composedPath();S&&(g=S.find(x=>b.includes(x)||d.includes(x)))}if(e.params.navigation.hideOnClick&&!g){if(e.pagination&&e.params.pagination&&e.params.pagination.clickable&&(e.pagination.el===p||e.pagination.el.contains(p)))return;let S;b.length?S=b[0].classList.contains(e.params.navigation.hiddenClass):d.length&&(S=d[0].classList.contains(e.params.navigation.hiddenClass)),n(S===!0?"navigationShow":"navigationHide"),[...b,...d].filter(x=>!!x).forEach(x=>x.classList.toggle(e.params.navigation.hiddenClass))}});const v=()=>{e.el.classList.remove(...e.params.navigation.navigationDisabledClass.split(" ")),c(),l()},h=()=>{e.el.classList.add(...e.params.navigation.navigationDisabledClass.split(" ")),f()};Object.assign(e.navigation,{enable:v,disable:h,update:l,init:c,destroy:f})}function U(t){return t===void 0&&(t=""),`.${t.trim().replace(/([\.:!+\/])/g,"\\$1").replace(/ /g,".")}`}function st(t){let{swiper:e,extendParams:i,on:s,emit:n}=t;const r="swiper-pagination";i({pagination:{el:null,bulletElement:"span",clickable:!1,hideOnClick:!1,renderBullet:null,renderProgressbar:null,renderFraction:null,renderCustom:null,progressbarOpposite:!1,type:"bullets",dynamicBullets:!1,dynamicMainBullets:1,formatFractionCurrent:d=>d,formatFractionTotal:d=>d,bulletClass:`${r}-bullet`,bulletActiveClass:`${r}-bullet-active`,modifierClass:`${r}-`,currentClass:`${r}-current`,totalClass:`${r}-total`,hiddenClass:`${r}-hidden`,progressbarFillClass:`${r}-progressbar-fill`,progressbarOppositeClass:`${r}-progressbar-opposite`,clickableClass:`${r}-clickable`,lockClass:`${r}-lock`,horizontalClass:`${r}-horizontal`,verticalClass:`${r}-vertical`,paginationDisabledClass:`${r}-disabled`}}),e.pagination={el:null,bullets:[]};let o,l=0;function a(){return!e.params.pagination.el||!e.pagination.el||Array.isArray(e.pagination.el)&&e.pagination.el.length===0}function u(d,p){const{bulletActiveClass:g}=e.params.pagination;d&&(d=d[`${p==="prev"?"previous":"next"}ElementSibling`],d&&(d.classList.add(`${g}-${p}`),d=d[`${p==="prev"?"previous":"next"}ElementSibling`],d&&d.classList.add(`${g}-${p}-${p}`)))}function c(d){const p=d.target.closest(U(e.params.pagination.bulletClass));if(!p)return;d.preventDefault();const g=re(p)*e.params.slidesPerGroup;if(e.params.loop){if(e.realIndex===g)return;e.slideToLoop(g)}else e.slideTo(g)}function f(){const d=e.rtl,p=e.params.pagination;if(a())return;let g=e.pagination.el;g=G(g);let S,x;const M=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,O=e.params.loop?Math.ceil(M/e.params.slidesPerGroup):e.snapGrid.length;if(e.params.loop?(x=e.previousRealIndex||0,S=e.params.slidesPerGroup>1?Math.floor(e.realIndex/e.params.slidesPerGroup):e.realIndex):typeof e.snapIndex<"u"?(S=e.snapIndex,x=e.previousSnapIndex):(x=e.previousIndex||0,S=e.activeIndex||0),p.type==="bullets"&&e.pagination.bullets&&e.pagination.bullets.length>0){const _=e.pagination.bullets;let C,T,P;if(p.dynamicBullets&&(o=he(_[0],e.isHorizontal()?"width":"height",!0),g.forEach(E=>{E.style[e.isHorizontal()?"width":"height"]=`${o*(p.dynamicMainBullets+4)}px`}),p.dynamicMainBullets>1&&x!==void 0&&(l+=S-(x||0),l>p.dynamicMainBullets-1?l=p.dynamicMainBullets-1:l<0&&(l=0)),C=Math.max(S-l,0),T=C+(Math.min(_.length,p.dynamicMainBullets)-1),P=(T+C)/2),_.forEach(E=>{const y=[...["","-next","-next-next","-prev","-prev-prev","-main"].map(L=>`${p.bulletActiveClass}${L}`)].map(L=>typeof L=="string"&&L.includes(" ")?L.split(" "):L).flat();E.classList.remove(...y)}),g.length>1)_.forEach(E=>{const y=re(E);y===S?E.classList.add(...p.bulletActiveClass.split(" ")):e.isElement&&E.setAttribute("part","bullet"),p.dynamicBullets&&(y>=C&&y<=T&&E.classList.add(...`${p.bulletActiveClass}-main`.split(" ")),y===C&&u(E,"prev"),y===T&&u(E,"next"))});else{const E=_[S];if(E&&E.classList.add(...p.bulletActiveClass.split(" ")),e.isElement&&_.forEach((y,L)=>{y.setAttribute("part",L===S?"bullet-active":"bullet")}),p.dynamicBullets){const y=_[C],L=_[T];for(let I=C;I<=T;I+=1)_[I]&&_[I].classList.add(...`${p.bulletActiveClass}-main`.split(" "));u(y,"prev"),u(L,"next")}}if(p.dynamicBullets){const E=Math.min(_.length,p.dynamicMainBullets+4),y=(o*E-o)/2-P*o,L=d?"right":"left";_.forEach(I=>{I.style[e.isHorizontal()?L:"top"]=`${y}px`})}}g.forEach((_,C)=>{if(p.type==="fraction"&&(_.querySelectorAll(U(p.currentClass)).forEach(T=>{T.textContent=p.formatFractionCurrent(S+1)}),_.querySelectorAll(U(p.totalClass)).forEach(T=>{T.textContent=p.formatFractionTotal(O)})),p.type==="progressbar"){let T;p.progressbarOpposite?T=e.isHorizontal()?"vertical":"horizontal":T=e.isHorizontal()?"horizontal":"vertical";const P=(S+1)/O;let E=1,y=1;T==="horizontal"?E=P:y=P,_.querySelectorAll(U(p.progressbarFillClass)).forEach(L=>{L.style.transform=`translate3d(0,0,0) scaleX(${E}) scaleY(${y})`,L.style.transitionDuration=`${e.params.speed}ms`})}p.type==="custom"&&p.renderCustom?(_.innerHTML=p.renderCustom(e,S+1,O),C===0&&n("paginationRender",_)):(C===0&&n("paginationRender",_),n("paginationUpdate",_)),e.params.watchOverflow&&e.enabled&&_.classList[e.isLocked?"add":"remove"](p.lockClass)})}function v(){const d=e.params.pagination;if(a())return;const p=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.grid&&e.params.grid.rows>1?e.slides.length/Math.ceil(e.params.grid.rows):e.slides.length;let g=e.pagination.el;g=G(g);let S="";if(d.type==="bullets"){let x=e.params.loop?Math.ceil(p/e.params.slidesPerGroup):e.snapGrid.length;e.params.freeMode&&e.params.freeMode.enabled&&x>p&&(x=p);for(let M=0;M`}d.type==="fraction"&&(d.renderFraction?S=d.renderFraction.call(e,d.currentClass,d.totalClass):S=` / `),d.type==="progressbar"&&(d.renderProgressbar?S=d.renderProgressbar.call(e,d.progressbarFillClass):S=``),e.pagination.bullets=[],g.forEach(x=>{d.type!=="custom"&&(x.innerHTML=S||""),d.type==="bullets"&&e.pagination.bullets.push(...x.querySelectorAll(U(d.bulletClass)))}),d.type!=="custom"&&n("paginationRender",g[0])}function h(){e.params.pagination=Ie(e,e.originalParams.pagination,e.params.pagination,{el:"swiper-pagination"});const d=e.params.pagination;if(!d.el)return;let p;typeof d.el=="string"&&e.isElement&&(p=e.el.querySelector(d.el)),!p&&typeof d.el=="string"&&(p=[...document.querySelectorAll(d.el)]),p||(p=d.el),!(!p||p.length===0)&&(e.params.uniqueNavElements&&typeof d.el=="string"&&Array.isArray(p)&&p.length>1&&(p=[...e.el.querySelectorAll(d.el)],p.length>1&&(p=p.filter(g=>Le(g,".swiper")[0]===e.el)[0])),Array.isArray(p)&&p.length===1&&(p=p[0]),Object.assign(e.pagination,{el:p}),p=G(p),p.forEach(g=>{d.type==="bullets"&&d.clickable&&g.classList.add(...(d.clickableClass||"").split(" ")),g.classList.add(d.modifierClass+d.type),g.classList.add(e.isHorizontal()?d.horizontalClass:d.verticalClass),d.type==="bullets"&&d.dynamicBullets&&(g.classList.add(`${d.modifierClass}${d.type}-dynamic`),l=0,d.dynamicMainBullets<1&&(d.dynamicMainBullets=1)),d.type==="progressbar"&&d.progressbarOpposite&&g.classList.add(d.progressbarOppositeClass),d.clickable&&g.addEventListener("click",c),e.enabled||g.classList.add(d.lockClass)}))}function m(){const d=e.params.pagination;if(a())return;let p=e.pagination.el;p&&(p=G(p),p.forEach(g=>{g.classList.remove(d.hiddenClass),g.classList.remove(d.modifierClass+d.type),g.classList.remove(e.isHorizontal()?d.horizontalClass:d.verticalClass),d.clickable&&(g.classList.remove(...(d.clickableClass||"").split(" ")),g.removeEventListener("click",c))})),e.pagination.bullets&&e.pagination.bullets.forEach(g=>g.classList.remove(...d.bulletActiveClass.split(" ")))}s("changeDirection",()=>{if(!e.pagination||!e.pagination.el)return;const d=e.params.pagination;let{el:p}=e.pagination;p=G(p),p.forEach(g=>{g.classList.remove(d.horizontalClass,d.verticalClass),g.classList.add(e.isHorizontal()?d.horizontalClass:d.verticalClass)})}),s("init",()=>{e.params.pagination.enabled===!1?b():(h(),v(),f())}),s("activeIndexChange",()=>{typeof e.snapIndex>"u"&&f()}),s("snapIndexChange",()=>{f()}),s("snapGridLengthChange",()=>{v(),f()}),s("destroy",()=>{m()}),s("enable disable",()=>{let{el:d}=e.pagination;d&&(d=G(d),d.forEach(p=>p.classList[e.enabled?"remove":"add"](e.params.pagination.lockClass)))}),s("lock unlock",()=>{f()}),s("click",(d,p)=>{const g=p.target,S=G(e.pagination.el);if(e.params.pagination.el&&e.params.pagination.hideOnClick&&S&&S.length>0&&!g.classList.contains(e.params.pagination.bulletClass)){if(e.navigation&&(e.navigation.nextEl&&g===e.navigation.nextEl||e.navigation.prevEl&&g===e.navigation.prevEl))return;const x=S[0].classList.contains(e.params.pagination.hiddenClass);n(x===!0?"paginationShow":"paginationHide"),S.forEach(M=>M.classList.toggle(e.params.pagination.hiddenClass))}});const w=()=>{e.el.classList.remove(e.params.pagination.paginationDisabledClass);let{el:d}=e.pagination;d&&(d=G(d),d.forEach(p=>p.classList.remove(e.params.pagination.paginationDisabledClass))),h(),v(),f()},b=()=>{e.el.classList.add(e.params.pagination.paginationDisabledClass);let{el:d}=e.pagination;d&&(d=G(d),d.forEach(p=>p.classList.add(e.params.pagination.paginationDisabledClass))),m()};Object.assign(e.pagination,{enable:w,disable:b,render:v,update:f,init:h,destroy:m})}let le;function rt(){const t=k(),e=X();return{smoothScroll:e.documentElement&&e.documentElement.style&&"scrollBehavior"in e.documentElement.style,touch:!!("ontouchstart"in t||t.DocumentTouch&&e instanceof t.DocumentTouch)}}function ze(){return le||(le=rt()),le}let oe;function nt(t){let{userAgent:e}=t===void 0?{}:t;const i=ze(),s=k(),n=s.navigator.platform,r=e||s.navigator.userAgent,o={ios:!1,android:!1},l=s.screen.width,a=s.screen.height,u=r.match(/(Android);?[\s\/]+([\d.]+)?/);let c=r.match(/(iPad).*OS\s([\d_]+)/);const f=r.match(/(iPod)(.*OS\s([\d_]+))?/),v=!c&&r.match(/(iPhone\sOS|iOS)\s([\d_]+)/),h=n==="Win32";let m=n==="MacIntel";const w=["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"];return!c&&m&&i.touch&&w.indexOf(`${l}x${a}`)>=0&&(c=r.match(/(Version)\/([\d.]+)/),c||(c=[0,1,"13_0_0"]),m=!1),u&&!h&&(o.os="android",o.android=!0),(c||v||f)&&(o.os="ios",o.ios=!0),o}function Oe(t){return t===void 0&&(t={}),oe||(oe=nt(t)),oe}let de;function at(){const t=k(),e=Oe();let i=!1;function s(){const l=t.navigator.userAgent.toLowerCase();return l.indexOf("safari")>=0&&l.indexOf("chrome")<0&&l.indexOf("android")<0}if(s()){const l=String(t.navigator.userAgent);if(l.includes("Version/")){const[a,u]=l.split("Version/")[1].split(" ")[0].split(".").map(c=>Number(c));i=a<16||a===16&&u<2}}const n=/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(t.navigator.userAgent),r=s(),o=r||n&&e.ios;return{isSafari:i||r,needPerspectiveFix:i,need3dFix:o,isWebView:n}}function lt(){return de||(de=at()),de}function ot(t){let{swiper:e,on:i,emit:s}=t;const n=k();let r=null,o=null;const l=()=>{!e||e.destroyed||!e.initialized||(s("beforeResize"),s("resize"))},a=()=>{!e||e.destroyed||!e.initialized||(r=new ResizeObserver(f=>{o=n.requestAnimationFrame(()=>{const{width:v,height:h}=e;let m=v,w=h;f.forEach(b=>{let{contentBoxSize:d,contentRect:p,target:g}=b;g&&g!==e.el||(m=p?p.width:(d[0]||d).inlineSize,w=p?p.height:(d[0]||d).blockSize)}),(m!==v||w!==h)&&l()})}),r.observe(e.el))},u=()=>{o&&n.cancelAnimationFrame(o),r&&r.unobserve&&e.el&&(r.unobserve(e.el),r=null)},c=()=>{!e||e.destroyed||!e.initialized||s("orientationchange")};i("init",()=>{if(e.params.resizeObserver&&typeof n.ResizeObserver<"u"){a();return}n.addEventListener("resize",l),n.addEventListener("orientationchange",c)}),i("destroy",()=>{u(),n.removeEventListener("resize",l),n.removeEventListener("orientationchange",c)})}function dt(t){let{swiper:e,extendParams:i,on:s,emit:n}=t;const r=[],o=k(),l=function(c,f){f===void 0&&(f={});const v=o.MutationObserver||o.WebkitMutationObserver,h=new v(m=>{if(e.__preventObserver__)return;if(m.length===1){n("observerUpdate",m[0]);return}const w=function(){n("observerUpdate",m[0])};o.requestAnimationFrame?o.requestAnimationFrame(w):o.setTimeout(w,0)});h.observe(c,{attributes:typeof f.attributes>"u"?!0:f.attributes,childList:e.isElement||(typeof f.childList>"u"?!0:f).childList,characterData:typeof f.characterData>"u"?!0:f.characterData}),r.push(h)},a=()=>{if(e.params.observer){if(e.params.observeParents){const c=Le(e.hostEl);for(let f=0;f{r.forEach(c=>{c.disconnect()}),r.splice(0,r.length)};i({observer:!1,observeParents:!1,observeSlideChildren:!1}),s("init",a),s("destroy",u)}var ct={on(t,e,i){const s=this;if(!s.eventsListeners||s.destroyed||typeof e!="function")return s;const n=i?"unshift":"push";return t.split(" ").forEach(r=>{s.eventsListeners[r]||(s.eventsListeners[r]=[]),s.eventsListeners[r][n](e)}),s},once(t,e,i){const s=this;if(!s.eventsListeners||s.destroyed||typeof e!="function")return s;function n(){s.off(t,n),n.__emitterProxy&&delete n.__emitterProxy;for(var r=arguments.length,o=new Array(r),l=0;l=0&&e.eventsAnyListeners.splice(i,1),e},off(t,e){const i=this;return!i.eventsListeners||i.destroyed||!i.eventsListeners||t.split(" ").forEach(s=>{typeof e>"u"?i.eventsListeners[s]=[]:i.eventsListeners[s]&&i.eventsListeners[s].forEach((n,r)=>{(n===e||n.__emitterProxy&&n.__emitterProxy===e)&&i.eventsListeners[s].splice(r,1)})}),i},emit(){const t=this;if(!t.eventsListeners||t.destroyed||!t.eventsListeners)return t;let e,i,s;for(var n=arguments.length,r=new Array(n),o=0;o{t.eventsAnyListeners&&t.eventsAnyListeners.length&&t.eventsAnyListeners.forEach(u=>{u.apply(s,[a,...i])}),t.eventsListeners&&t.eventsListeners[a]&&t.eventsListeners[a].forEach(u=>{u.apply(s,i)})}),t}};function ft(){const t=this;let e,i;const s=t.el;typeof t.params.width<"u"&&t.params.width!==null?e=t.params.width:e=s.clientWidth,typeof t.params.height<"u"&&t.params.height!==null?i=t.params.height:i=s.clientHeight,!(e===0&&t.isHorizontal()||i===0&&t.isVertical())&&(e=e-parseInt(H(s,"padding-left")||0,10)-parseInt(H(s,"padding-right")||0,10),i=i-parseInt(H(s,"padding-top")||0,10)-parseInt(H(s,"padding-bottom")||0,10),Number.isNaN(e)&&(e=0),Number.isNaN(i)&&(i=0),Object.assign(t,{width:e,height:i,size:t.isHorizontal()?e:i}))}function ut(){const t=this;function e(T,P){return parseFloat(T.getPropertyValue(t.getDirectionLabel(P))||0)}const i=t.params,{wrapperEl:s,slidesEl:n,size:r,rtlTranslate:o,wrongRTL:l}=t,a=t.virtual&&i.virtual.enabled,u=a?t.virtual.slides.length:t.slides.length,c=R(n,`.${t.params.slideClass}, swiper-slide`),f=a?t.virtual.slides.length:c.length;let v=[];const h=[],m=[];let w=i.slidesOffsetBefore;typeof w=="function"&&(w=i.slidesOffsetBefore.call(t));let b=i.slidesOffsetAfter;typeof b=="function"&&(b=i.slidesOffsetAfter.call(t));const d=t.snapGrid.length,p=t.slidesGrid.length;let g=i.spaceBetween,S=-w,x=0,M=0;if(typeof r>"u")return;typeof g=="string"&&g.indexOf("%")>=0?g=parseFloat(g.replace("%",""))/100*r:typeof g=="string"&&(g=parseFloat(g)),t.virtualSize=-g,c.forEach(T=>{o?T.style.marginLeft="":T.style.marginRight="",T.style.marginBottom="",T.style.marginTop=""}),i.centeredSlides&&i.cssMode&&(Q(s,"--swiper-centered-offset-before",""),Q(s,"--swiper-centered-offset-after",""));const O=i.grid&&i.grid.rows>1&&t.grid;O?t.grid.initSlides(c):t.grid&&t.grid.unsetSlides();let _;const C=i.slidesPerView==="auto"&&i.breakpoints&&Object.keys(i.breakpoints).filter(T=>typeof i.breakpoints[T].slidesPerView<"u").length>0;for(let T=0;T1&&v.push(t.virtualSize-r)}if(a&&i.loop){const T=m[0]+g;if(i.slidesPerGroup>1){const P=Math.ceil((t.virtual.slidesBefore+t.virtual.slidesAfter)/i.slidesPerGroup),E=T*i.slidesPerGroup;for(let y=0;y!i.cssMode||i.loop?!0:E!==c.length-1).forEach(P=>{P.style[T]=`${g}px`})}if(i.centeredSlides&&i.centeredSlidesBounds){let T=0;m.forEach(E=>{T+=E+(g||0)}),T-=g;const P=T-r;v=v.map(E=>E<=0?-w:E>P?P+b:E)}if(i.centerInsufficientSlides){let T=0;m.forEach(E=>{T+=E+(g||0)}),T-=g;const P=(i.slidesOffsetBefore||0)+(i.slidesOffsetAfter||0);if(T+P{v[L]=y-E}),h.forEach((y,L)=>{h[L]=y+E})}}if(Object.assign(t,{slides:c,snapGrid:v,slidesGrid:h,slidesSizesGrid:m}),i.centeredSlides&&i.cssMode&&!i.centeredSlidesBounds){Q(s,"--swiper-centered-offset-before",`${-v[0]}px`),Q(s,"--swiper-centered-offset-after",`${t.size/2-m[m.length-1]/2}px`);const T=-t.snapGrid[0],P=-t.slidesGrid[0];t.snapGrid=t.snapGrid.map(E=>E+T),t.slidesGrid=t.slidesGrid.map(E=>E+P)}if(f!==u&&t.emit("slidesLengthChange"),v.length!==d&&(t.params.watchOverflow&&t.checkOverflow(),t.emit("snapGridLengthChange")),h.length!==p&&t.emit("slidesGridLengthChange"),i.watchSlidesProgress&&t.updateSlidesOffset(),t.emit("slidesUpdated"),!a&&!i.cssMode&&(i.effect==="slide"||i.effect==="fade")){const T=`${i.containerModifierClass}backface-hidden`,P=t.el.classList.contains(T);f<=i.maxBackfaceHiddenSlides?P||t.el.classList.add(T):P&&t.el.classList.remove(T)}}function pt(t){const e=this,i=[],s=e.virtual&&e.params.virtual.enabled;let n=0,r;typeof t=="number"?e.setTransition(t):t===!0&&e.setTransition(e.params.speed);const o=l=>s?e.slides[e.getSlideIndexByData(l)]:e.slides[l];if(e.params.slidesPerView!=="auto"&&e.params.slidesPerView>1)if(e.params.centeredSlides)(e.visibleSlides||[]).forEach(l=>{i.push(l)});else for(r=0;re.slides.length&&!s)break;i.push(o(l))}else i.push(o(e.activeIndex));for(r=0;rn?l:n}(n||n===0)&&(e.wrapperEl.style.height=`${n}px`)}function mt(){const t=this,e=t.slides,i=t.isElement?t.isHorizontal()?t.wrapperEl.offsetLeft:t.wrapperEl.offsetTop:0;for(let s=0;s{e&&!t.classList.contains(i)?t.classList.add(i):!e&&t.classList.contains(i)&&t.classList.remove(i)};function ht(t){t===void 0&&(t=this&&this.translate||0);const e=this,i=e.params,{slides:s,rtlTranslate:n,snapGrid:r}=e;if(s.length===0)return;typeof s[0].swiperSlideOffset>"u"&&e.updateSlidesOffset();let o=-t;n&&(o=t),e.visibleSlidesIndexes=[],e.visibleSlides=[];let l=i.spaceBetween;typeof l=="string"&&l.indexOf("%")>=0?l=parseFloat(l.replace("%",""))/100*e.size:typeof l=="string"&&(l=parseFloat(l));for(let a=0;a=0&&h<=e.size-e.slidesSizesGrid[a],b=h>=0&&h1&&m<=e.size||h<=0&&m>=e.size;b&&(e.visibleSlides.push(u),e.visibleSlidesIndexes.push(a)),xe(u,b,i.slideVisibleClass),xe(u,w,i.slideFullyVisibleClass),u.progress=n?-f:f,u.originalProgress=n?-v:v}}function gt(t){const e=this;if(typeof t>"u"){const c=e.rtlTranslate?-1:1;t=e&&e.translate&&e.translate*c||0}const i=e.params,s=e.maxTranslate()-e.minTranslate();let{progress:n,isBeginning:r,isEnd:o,progressLoop:l}=e;const a=r,u=o;if(s===0)n=0,r=!0,o=!0;else{n=(t-e.minTranslate())/s;const c=Math.abs(t-e.minTranslate())<1,f=Math.abs(t-e.maxTranslate())<1;r=c||n<=0,o=f||n>=1,c&&(n=0),f&&(n=1)}if(i.loop){const c=e.getSlideIndexByData(0),f=e.getSlideIndexByData(e.slides.length-1),v=e.slidesGrid[c],h=e.slidesGrid[f],m=e.slidesGrid[e.slidesGrid.length-1],w=Math.abs(t);w>=v?l=(w-v)/m:l=(w+m-h)/m,l>1&&(l-=1)}Object.assign(e,{progress:n,progressLoop:l,isBeginning:r,isEnd:o}),(i.watchSlidesProgress||i.centeredSlides&&i.autoHeight)&&e.updateSlidesProgress(t),r&&!a&&e.emit("reachBeginning toEdge"),o&&!u&&e.emit("reachEnd toEdge"),(a&&!r||u&&!o)&&e.emit("fromEdge"),e.emit("progress",n)}const ce=(t,e,i)=>{e&&!t.classList.contains(i)?t.classList.add(i):!e&&t.classList.contains(i)&&t.classList.remove(i)};function vt(){const t=this,{slides:e,params:i,slidesEl:s,activeIndex:n}=t,r=t.virtual&&i.virtual.enabled,o=t.grid&&i.grid&&i.grid.rows>1,l=f=>R(s,`.${i.slideClass}${f}, swiper-slide${f}`)[0];let a,u,c;if(r)if(i.loop){let f=n-t.virtual.slidesBefore;f<0&&(f=t.virtual.slides.length+f),f>=t.virtual.slides.length&&(f-=t.virtual.slides.length),a=l(`[data-swiper-slide-index="${f}"]`)}else a=l(`[data-swiper-slide-index="${n}"]`);else o?(a=e.filter(f=>f.column===n)[0],c=e.filter(f=>f.column===n+1)[0],u=e.filter(f=>f.column===n-1)[0]):a=e[n];a&&(o||(c=tt(a,`.${i.slideClass}, swiper-slide`)[0],i.loop&&!c&&(c=e[0]),u=et(a,`.${i.slideClass}, swiper-slide`)[0],i.loop&&!u===0&&(u=e[e.length-1]))),e.forEach(f=>{ce(f,f===a,i.slideActiveClass),ce(f,f===c,i.slideNextClass),ce(f,f===u,i.slidePrevClass)}),t.emitSlidesClasses()}const ee=(t,e)=>{if(!t||t.destroyed||!t.params)return;const i=()=>t.isElement?"swiper-slide":`.${t.params.slideClass}`,s=e.closest(i());if(s){let n=s.querySelector(`.${t.params.lazyPreloaderClass}`);!n&&t.isElement&&(s.shadowRoot?n=s.shadowRoot.querySelector(`.${t.params.lazyPreloaderClass}`):requestAnimationFrame(()=>{s.shadowRoot&&(n=s.shadowRoot.querySelector(`.${t.params.lazyPreloaderClass}`),n&&n.remove())})),n&&n.remove()}},fe=(t,e)=>{if(!t.slides[e])return;const i=t.slides[e].querySelector('[loading="lazy"]');i&&i.removeAttribute("loading")},ge=t=>{if(!t||t.destroyed||!t.params)return;let e=t.params.lazyPreloadPrevNext;const i=t.slides.length;if(!i||!e||e<0)return;e=Math.min(e,i);const s=t.params.slidesPerView==="auto"?t.slidesPerViewDynamic():Math.ceil(t.params.slidesPerView),n=t.activeIndex;if(t.params.grid&&t.params.grid.rows>1){const o=n,l=[o-e];l.push(...Array.from({length:e}).map((a,u)=>o+s+u)),t.slides.forEach((a,u)=>{l.includes(a.column)&&fe(t,u)});return}const r=n+s-1;if(t.params.rewind||t.params.loop)for(let o=n-e;o<=r+e;o+=1){const l=(o%i+i)%i;(lr)&&fe(t,l)}else for(let o=Math.max(n-e,0);o<=Math.min(r+e,i-1);o+=1)o!==n&&(o>r||o=e[r]&&s=e[r]&&s=e[r]&&(n=r);return i.normalizeSlideIndex&&(n<0||typeof n>"u")&&(n=0),n}function St(t){const e=this,i=e.rtlTranslate?e.translate:-e.translate,{snapGrid:s,params:n,activeIndex:r,realIndex:o,snapIndex:l}=e;let a=t,u;const c=h=>{let m=h-e.virtual.slidesBefore;return m<0&&(m=e.virtual.slides.length+m),m>=e.virtual.slides.length&&(m-=e.virtual.slides.length),m};if(typeof a>"u"&&(a=wt(e)),s.indexOf(i)>=0)u=s.indexOf(i);else{const h=Math.min(n.slidesPerGroupSkip,a);u=h+Math.floor((a-h)/n.slidesPerGroup)}if(u>=s.length&&(u=s.length-1),a===r&&!e.params.loop){u!==l&&(e.snapIndex=u,e.emit("snapIndexChange"));return}if(a===r&&e.params.loop&&e.virtual&&e.params.virtual.enabled){e.realIndex=c(a);return}const f=e.grid&&n.grid&&n.grid.rows>1;let v;if(e.virtual&&n.virtual.enabled&&n.loop)v=c(a);else if(f){const h=e.slides.filter(w=>w.column===a)[0];let m=parseInt(h.getAttribute("data-swiper-slide-index"),10);Number.isNaN(m)&&(m=Math.max(e.slides.indexOf(h),0)),v=Math.floor(m/n.grid.rows)}else if(e.slides[a]){const h=e.slides[a].getAttribute("data-swiper-slide-index");h?v=parseInt(h,10):v=a}else v=a;Object.assign(e,{previousSnapIndex:l,snapIndex:u,previousRealIndex:o,realIndex:v,previousIndex:r,activeIndex:a}),e.initialized&&ge(e),e.emit("activeIndexChange"),e.emit("snapIndexChange"),(e.initialized||e.params.runCallbacksOnInit)&&(o!==v&&e.emit("realIndexChange"),e.emit("slideChange"))}function bt(t,e){const i=this,s=i.params;let n=t.closest(`.${s.slideClass}, swiper-slide`);!n&&i.isElement&&e&&e.length>1&&e.includes(t)&&[...e.slice(e.indexOf(t)+1,e.length)].forEach(l=>{!n&&l.matches&&l.matches(`.${s.slideClass}, swiper-slide`)&&(n=l)});let r=!1,o;if(n){for(let l=0;la?c=a:s&&to?l="next":r"u"&&(e=r.params.speed);const w=Math.min(r.params.slidesPerGroupSkip,o);let b=w+Math.floor((o-w)/r.params.slidesPerGroup);b>=a.length&&(b=a.length-1);const d=-a[b];if(l.normalizeSlideIndex)for(let g=0;g=x&&S=x&&S=x&&(o=g)}if(r.initialized&&o!==f&&(!r.allowSlideNext&&(v?d>r.translate&&d>r.minTranslate():dr.translate&&d>r.maxTranslate()&&(f||0)!==o))return!1;o!==(c||0)&&i&&r.emit("beforeSlideChangeStart"),r.updateProgress(d);let p;if(o>f?p="next":o0?(r._cssModeVirtualInitialSet=!0,requestAnimationFrame(()=>{h[g?"scrollLeft":"scrollTop"]=S})):h[g?"scrollLeft":"scrollTop"]=S,x&&requestAnimationFrame(()=>{r.wrapperEl.style.scrollSnapType="",r._immediateVirtual=!1})}else{if(!r.support.smoothScroll)return Me({swiper:r,targetPosition:S,side:g?"left":"top"}),!0;h.scrollTo({[g?"left":"top"]:S,behavior:"smooth"})}return!0}return r.setTransition(e),r.setTranslate(d),r.updateActiveIndex(o),r.updateSlidesClasses(),r.emit("beforeTransitionStart",e,s),r.transitionStart(i,p),e===0?r.transitionEnd(i,p):r.animating||(r.animating=!0,r.onSlideToWrapperTransitionEnd||(r.onSlideToWrapperTransitionEnd=function(S){!r||r.destroyed||S.target===this&&(r.wrapperEl.removeEventListener("transitionend",r.onSlideToWrapperTransitionEnd),r.onSlideToWrapperTransitionEnd=null,delete r.onSlideToWrapperTransitionEnd,r.transitionEnd(i,p))}),r.wrapperEl.addEventListener("transitionend",r.onSlideToWrapperTransitionEnd)),!0}function At(t,e,i,s){t===void 0&&(t=0),i===void 0&&(i=!0),typeof t=="string"&&(t=parseInt(t,10));const n=this;if(n.destroyed)return;typeof e>"u"&&(e=n.params.speed);const r=n.grid&&n.params.grid&&n.params.grid.rows>1;let o=t;if(n.params.loop)if(n.virtual&&n.params.virtual.enabled)o=o+n.virtual.slidesBefore;else{let l;if(r){const v=o*n.params.grid.rows;l=n.slides.filter(h=>h.getAttribute("data-swiper-slide-index")*1===v)[0].column}else l=n.getSlideIndexByData(o);const a=r?Math.ceil(n.slides.length/n.params.grid.rows):n.slides.length,{centeredSlides:u}=n.params;let c=n.params.slidesPerView;c==="auto"?c=n.slidesPerViewDynamic():(c=Math.ceil(parseFloat(n.params.slidesPerView,10)),u&&c%2===0&&(c=c+1));let f=a-lh.getAttribute("data-swiper-slide-index")*1===v)[0].column}else o=n.getSlideIndexByData(o)}return requestAnimationFrame(()=>{n.slideTo(o,e,i,s)}),n}function Gt(t,e,i){e===void 0&&(e=!0);const s=this,{enabled:n,params:r,animating:o}=s;if(!n||s.destroyed)return s;typeof t>"u"&&(t=s.params.speed);let l=r.slidesPerGroup;r.slidesPerView==="auto"&&r.slidesPerGroup===1&&r.slidesPerGroupAuto&&(l=Math.max(s.slidesPerViewDynamic("current",!0),1));const a=s.activeIndex{s.slideTo(s.activeIndex+a,t,e,i)}),!0}return r.rewind&&s.isEnd?s.slideTo(0,t,e,i):s.slideTo(s.activeIndex+a,t,e,i)}function Dt(t,e,i){e===void 0&&(e=!0);const s=this,{params:n,snapGrid:r,slidesGrid:o,rtlTranslate:l,enabled:a,animating:u}=s;if(!a||s.destroyed)return s;typeof t>"u"&&(t=s.params.speed);const c=s.virtual&&n.virtual.enabled;if(n.loop){if(u&&!c&&n.loopPreventsSliding)return!1;s.loopFix({direction:"prev"}),s._clientLeft=s.wrapperEl.clientLeft}const f=l?s.translate:-s.translate;function v(d){return d<0?-Math.floor(Math.abs(d)):Math.floor(d)}const h=v(f),m=r.map(d=>v(d));let w=r[m.indexOf(h)-1];if(typeof w>"u"&&n.cssMode){let d;r.forEach((p,g)=>{h>=p&&(d=g)}),typeof d<"u"&&(w=r[d>0?d-1:d])}let b=0;if(typeof w<"u"&&(b=o.indexOf(w),b<0&&(b=s.activeIndex-1),n.slidesPerView==="auto"&&n.slidesPerGroup===1&&n.slidesPerGroupAuto&&(b=b-s.slidesPerViewDynamic("previous",!0)+1,b=Math.max(b,0))),n.rewind&&s.isBeginning){const d=s.params.virtual&&s.params.virtual.enabled&&s.virtual?s.virtual.slides.length-1:s.slides.length-1;return s.slideTo(d,t,e,i)}else if(n.loop&&s.activeIndex===0&&n.cssMode)return requestAnimationFrame(()=>{s.slideTo(b,t,e,i)}),!0;return s.slideTo(b,t,e,i)}function Bt(t,e,i){e===void 0&&(e=!0);const s=this;if(!s.destroyed)return typeof t>"u"&&(t=s.params.speed),s.slideTo(s.activeIndex,t,e,i)}function $t(t,e,i,s){e===void 0&&(e=!0),s===void 0&&(s=.5);const n=this;if(n.destroyed)return;typeof t>"u"&&(t=n.params.speed);let r=n.activeIndex;const o=Math.min(n.params.slidesPerGroupSkip,r),l=o+Math.floor((r-o)/n.params.slidesPerGroup),a=n.rtlTranslate?n.translate:-n.translate;if(a>=n.snapGrid[l]){const u=n.snapGrid[l],c=n.snapGrid[l+1];a-u>(c-u)*s&&(r+=n.params.slidesPerGroup)}else{const u=n.snapGrid[l-1],c=n.snapGrid[l];a-u<=(c-u)*s&&(r-=n.params.slidesPerGroup)}return r=Math.max(r,0),r=Math.min(r,n.slidesGrid.length-1),n.slideTo(r,t,e,i)}function kt(){const t=this;if(t.destroyed)return;const{params:e,slidesEl:i}=t,s=e.slidesPerView==="auto"?t.slidesPerViewDynamic():e.slidesPerView;let n=t.clickedIndex,r;const o=t.isElement?"swiper-slide":`.${e.slideClass}`;if(e.loop){if(t.animating)return;r=parseInt(t.clickedSlide.getAttribute("data-swiper-slide-index"),10),e.centeredSlides?nt.slides.length-t.loopedSlides+s/2?(t.loopFix(),n=t.getSlideIndex(R(i,`${o}[data-swiper-slide-index="${r}"]`)[0]),me(()=>{t.slideTo(n)})):t.slideTo(n):n>t.slides.length-s?(t.loopFix(),n=t.getSlideIndex(R(i,`${o}[data-swiper-slide-index="${r}"]`)[0]),me(()=>{t.slideTo(n)})):t.slideTo(n)}else t.slideTo(n)}var Vt={slideTo:Ot,slideToLoop:At,slideNext:Gt,slidePrev:Dt,slideReset:Bt,slideToClosest:$t,slideToClickedSlide:kt};function Nt(t){const e=this,{params:i,slidesEl:s}=e;if(!i.loop||e.virtual&&e.params.virtual.enabled)return;const n=()=>{R(s,`.${i.slideClass}, swiper-slide`).forEach((f,v)=>{f.setAttribute("data-swiper-slide-index",v)})},r=e.grid&&i.grid&&i.grid.rows>1,o=i.slidesPerGroup*(r?i.grid.rows:1),l=e.slides.length%o!==0,a=r&&e.slides.length%i.grid.rows!==0,u=c=>{for(let f=0;f1;u.length"u"?r=a.getSlideIndex(u.filter(y=>y.classList.contains(h.slideActiveClass))[0]):x=r;const M=s==="next"||!s,O=s==="prev"||!s;let _=0,C=0;const T=p?Math.ceil(u.length/h.grid.rows):u.length,E=(p?u[r].column:r)+(m&&typeof n>"u"?-w/2+.5:0);if(E=0;N-=1)u[N].column===I&&g.push(N)}else g.push(T-L-1)}}else if(E+w>T-d){C=Math.max(E-(T-d*2),b);for(let y=0;y{I.column===L&&S.push(N)}):S.push(L)}}if(a.__preventObserver__=!0,requestAnimationFrame(()=>{a.__preventObserver__=!1}),O&&g.forEach(y=>{u[y].swiperLoopMoveDOM=!0,v.prepend(u[y]),u[y].swiperLoopMoveDOM=!1}),M&&S.forEach(y=>{u[y].swiperLoopMoveDOM=!0,v.append(u[y]),u[y].swiperLoopMoveDOM=!1}),a.recalcSlides(),h.slidesPerView==="auto"?a.updateSlides():p&&(g.length>0&&O||S.length>0&&M)&&a.slides.forEach((y,L)=>{a.grid.updateSlide(L,y,a.slides)}),h.watchSlidesProgress&&a.updateSlidesOffset(),i){if(g.length>0&&O){if(typeof e>"u"){const y=a.slidesGrid[x],I=a.slidesGrid[x+_]-y;l?a.setTranslate(a.translate-I):(a.slideTo(x+Math.ceil(_),0,!1,!0),n&&(a.touchEventsData.startTranslate=a.touchEventsData.startTranslate-I,a.touchEventsData.currentTranslate=a.touchEventsData.currentTranslate-I))}else if(n){const y=p?g.length/h.grid.rows:g.length;a.slideTo(a.activeIndex+y,0,!1,!0),a.touchEventsData.currentTranslate=a.translate}}else if(S.length>0&&M)if(typeof e>"u"){const y=a.slidesGrid[x],I=a.slidesGrid[x-C]-y;l?a.setTranslate(a.translate-I):(a.slideTo(x-C,0,!1,!0),n&&(a.touchEventsData.startTranslate=a.touchEventsData.startTranslate-I,a.touchEventsData.currentTranslate=a.touchEventsData.currentTranslate-I))}else{const y=p?S.length/h.grid.rows:S.length;a.slideTo(a.activeIndex-y,0,!1,!0)}}if(a.allowSlidePrev=c,a.allowSlideNext=f,a.controller&&a.controller.control&&!o){const y={slideRealIndex:e,direction:s,setTranslate:n,activeSlideIndex:r,byController:!0};Array.isArray(a.controller.control)?a.controller.control.forEach(L=>{!L.destroyed&&L.params.loop&&L.loopFix({...y,slideTo:L.params.slidesPerView===h.slidesPerView?i:!1})}):a.controller.control instanceof a.constructor&&a.controller.control.params.loop&&a.controller.control.loopFix({...y,slideTo:a.controller.control.params.slidesPerView===h.slidesPerView?i:!1})}a.emit("loopFix")}function Ft(){const t=this,{params:e,slidesEl:i}=t;if(!e.loop||t.virtual&&t.params.virtual.enabled)return;t.recalcSlides();const s=[];t.slides.forEach(n=>{const r=typeof n.swiperSlideIndex>"u"?n.getAttribute("data-swiper-slide-index")*1:n.swiperSlideIndex;s[r]=n}),t.slides.forEach(n=>{n.removeAttribute("data-swiper-slide-index")}),s.forEach(n=>{i.append(n)}),t.recalcSlides(),t.slideTo(t.realIndex,0)}var jt={loopCreate:Nt,loopFix:Rt,loopDestroy:Ft};function Ht(t){const e=this;if(!e.params.simulateTouch||e.params.watchOverflow&&e.isLocked||e.params.cssMode)return;const i=e.params.touchEventsTarget==="container"?e.el:e.wrapperEl;e.isElement&&(e.__preventObserver__=!0),i.style.cursor="move",i.style.cursor=t?"grabbing":"grab",e.isElement&&requestAnimationFrame(()=>{e.__preventObserver__=!1})}function qt(){const t=this;t.params.watchOverflow&&t.isLocked||t.params.cssMode||(t.isElement&&(t.__preventObserver__=!0),t[t.params.touchEventsTarget==="container"?"el":"wrapperEl"].style.cursor="",t.isElement&&requestAnimationFrame(()=>{t.__preventObserver__=!1}))}var Wt={setGrabCursor:Ht,unsetGrabCursor:qt};function Yt(t,e){e===void 0&&(e=this);function i(s){if(!s||s===X()||s===k())return null;s.assignedSlot&&(s=s.assignedSlot);const n=s.closest(t);return!n&&!s.getRootNode?null:n||i(s.getRootNode().host)}return i(e)}function Te(t,e,i){const s=k(),{params:n}=t,r=n.edgeSwipeDetection,o=n.edgeSwipeThreshold;return r&&(i<=o||i>=s.innerWidth-o)?r==="prevent"?(e.preventDefault(),!0):!1:!0}function Xt(t){const e=this,i=X();let s=t;s.originalEvent&&(s=s.originalEvent);const n=e.touchEventsData;if(s.type==="pointerdown"){if(n.pointerId!==null&&n.pointerId!==s.pointerId)return;n.pointerId=s.pointerId}else s.type==="touchstart"&&s.targetTouches.length===1&&(n.touchId=s.targetTouches[0].identifier);if(s.type==="touchstart"){Te(e,s,s.targetTouches[0].pageX);return}const{params:r,touches:o,enabled:l}=e;if(!l||!r.simulateTouch&&s.pointerType==="mouse"||e.animating&&r.preventInteractionOnTransition)return;!e.animating&&r.cssMode&&r.loop&&e.loopFix();let a=s.target;if(r.touchEventsTarget==="wrapper"&&!Qe(a,e.wrapperEl)||"which"in s&&s.which===3||"button"in s&&s.button>0||n.isTouched&&n.isMoved)return;const u=!!r.noSwipingClass&&r.noSwipingClass!=="",c=s.composedPath?s.composedPath():s.path;u&&s.target&&s.target.shadowRoot&&c&&(a=c[0]);const f=r.noSwipingSelector?r.noSwipingSelector:`.${r.noSwipingClass}`,v=!!(s.target&&s.target.shadowRoot);if(r.noSwiping&&(v?Yt(f,a):a.closest(f))){e.allowClick=!0;return}if(r.swipeHandler&&!a.closest(r.swipeHandler))return;o.currentX=s.pageX,o.currentY=s.pageY;const h=o.currentX,m=o.currentY;if(!Te(e,s,h))return;Object.assign(n,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),o.startX=h,o.startY=m,n.touchStartTime=te(),e.allowClick=!0,e.updateSize(),e.swipeDirection=void 0,r.threshold>0&&(n.allowThresholdMove=!1);let w=!0;a.matches(n.focusableElements)&&(w=!1,a.nodeName==="SELECT"&&(n.isTouched=!1)),i.activeElement&&i.activeElement.matches(n.focusableElements)&&i.activeElement!==a&&i.activeElement.blur();const b=w&&e.allowTouchMove&&r.touchStartPreventDefault;(r.touchStartForcePreventDefault||b)&&!a.isContentEditable&&s.preventDefault(),r.freeMode&&r.freeMode.enabled&&e.freeMode&&e.animating&&!r.cssMode&&e.freeMode.onTouchStart(),e.emit("touchStart",s)}function Ut(t){const e=X(),i=this,s=i.touchEventsData,{params:n,touches:r,rtlTranslate:o,enabled:l}=i;if(!l||!n.simulateTouch&&t.pointerType==="mouse")return;let a=t;if(a.originalEvent&&(a=a.originalEvent),a.type==="pointermove"&&(s.touchId!==null||a.pointerId!==s.pointerId))return;let u;if(a.type==="touchmove"){if(u=[...a.changedTouches].filter(M=>M.identifier===s.touchId)[0],!u||u.identifier!==s.touchId)return}else u=a;if(!s.isTouched){s.startMoving&&s.isScrolling&&i.emit("touchMoveOpposite",a);return}const c=u.pageX,f=u.pageY;if(a.preventedByNestedSwiper){r.startX=c,r.startY=f;return}if(!i.allowTouchMove){a.target.matches(s.focusableElements)||(i.allowClick=!1),s.isTouched&&(Object.assign(r,{startX:c,startY:f,currentX:c,currentY:f}),s.touchStartTime=te());return}if(n.touchReleaseOnEdges&&!n.loop){if(i.isVertical()){if(fr.startY&&i.translate>=i.minTranslate()){s.isTouched=!1,s.isMoved=!1;return}}else if(cr.startX&&i.translate>=i.minTranslate())return}if(e.activeElement&&a.target===e.activeElement&&a.target.matches(s.focusableElements)){s.isMoved=!0,i.allowClick=!1;return}s.allowTouchCallbacks&&i.emit("touchMove",a),r.previousX=r.currentX,r.previousY=r.currentY,r.currentX=c,r.currentY=f;const v=r.currentX-r.startX,h=r.currentY-r.startY;if(i.params.threshold&&Math.sqrt(v**2+h**2)"u"){let M;i.isHorizontal()&&r.currentY===r.startY||i.isVertical()&&r.currentX===r.startX?s.isScrolling=!1:v*v+h*h>=25&&(M=Math.atan2(Math.abs(h),Math.abs(v))*180/Math.PI,s.isScrolling=i.isHorizontal()?M>n.touchAngle:90-M>n.touchAngle)}if(s.isScrolling&&i.emit("touchMoveOpposite",a),typeof s.startMoving>"u"&&(r.currentX!==r.startX||r.currentY!==r.startY)&&(s.startMoving=!0),s.isScrolling||a.type==="touchmove"&&s.preventTouchMoveFromPointerMove){s.isTouched=!1;return}if(!s.startMoving)return;i.allowClick=!1,!n.cssMode&&a.cancelable&&a.preventDefault(),n.touchMoveStopPropagation&&!n.nested&&a.stopPropagation();let m=i.isHorizontal()?v:h,w=i.isHorizontal()?r.currentX-r.previousX:r.currentY-r.previousY;n.oneWayMovement&&(m=Math.abs(m)*(o?1:-1),w=Math.abs(w)*(o?1:-1)),r.diff=m,m*=n.touchRatio,o&&(m=-m,w=-w);const b=i.touchesDirection;i.swipeDirection=m>0?"prev":"next",i.touchesDirection=w>0?"prev":"next";const d=i.params.loop&&!n.cssMode,p=i.touchesDirection==="next"&&i.allowSlideNext||i.touchesDirection==="prev"&&i.allowSlidePrev;if(!s.isMoved){if(d&&p&&i.loopFix({direction:i.swipeDirection}),s.startTranslate=i.getTranslate(),i.setTransition(0),i.animating){const M=new window.CustomEvent("transitionend",{bubbles:!0,cancelable:!0,detail:{bySwiperTouchMove:!0}});i.wrapperEl.dispatchEvent(M)}s.allowMomentumBounce=!1,n.grabCursor&&(i.allowSlideNext===!0||i.allowSlidePrev===!0)&&i.setGrabCursor(!0),i.emit("sliderFirstMove",a)}let g;if(new Date().getTime(),s.isMoved&&s.allowThresholdMove&&b!==i.touchesDirection&&d&&p&&Math.abs(m)>=1){Object.assign(r,{startX:c,startY:f,currentX:c,currentY:f,startTranslate:s.currentTranslate}),s.loopSwapReset=!0,s.startTranslate=s.currentTranslate;return}i.emit("sliderMove",a),s.isMoved=!0,s.currentTranslate=m+s.startTranslate;let S=!0,x=n.resistanceRatio;if(n.touchReleaseOnEdges&&(x=0),m>0?(d&&p&&!g&&s.allowThresholdMove&&s.currentTranslate>(n.centeredSlides?i.minTranslate()-i.slidesSizesGrid[i.activeIndex+1]-(n.slidesPerView!=="auto"&&i.slides.length-n.slidesPerView>=2?i.slidesSizesGrid[i.activeIndex+1]+i.params.spaceBetween:0)-i.params.spaceBetween:i.minTranslate())&&i.loopFix({direction:"prev",setTranslate:!0,activeSlideIndex:0}),s.currentTranslate>i.minTranslate()&&(S=!1,n.resistance&&(s.currentTranslate=i.minTranslate()-1+(-i.minTranslate()+s.startTranslate+m)**x))):m<0&&(d&&p&&!g&&s.allowThresholdMove&&s.currentTranslate<(n.centeredSlides?i.maxTranslate()+i.slidesSizesGrid[i.slidesSizesGrid.length-1]+i.params.spaceBetween+(n.slidesPerView!=="auto"&&i.slides.length-n.slidesPerView>=2?i.slidesSizesGrid[i.slidesSizesGrid.length-1]+i.params.spaceBetween:0):i.maxTranslate())&&i.loopFix({direction:"next",setTranslate:!0,activeSlideIndex:i.slides.length-(n.slidesPerView==="auto"?i.slidesPerViewDynamic():Math.ceil(parseFloat(n.slidesPerView,10)))}),s.currentTranslates.startTranslate&&(s.currentTranslate=s.startTranslate),!i.allowSlidePrev&&!i.allowSlideNext&&(s.currentTranslate=s.startTranslate),n.threshold>0)if(Math.abs(m)>n.threshold||s.allowThresholdMove){if(!s.allowThresholdMove){s.allowThresholdMove=!0,r.startX=r.currentX,r.startY=r.currentY,s.currentTranslate=s.startTranslate,r.diff=i.isHorizontal()?r.currentX-r.startX:r.currentY-r.startY;return}}else{s.currentTranslate=s.startTranslate;return}!n.followFinger||n.cssMode||((n.freeMode&&n.freeMode.enabled&&i.freeMode||n.watchSlidesProgress)&&(i.updateActiveIndex(),i.updateSlidesClasses()),n.freeMode&&n.freeMode.enabled&&i.freeMode&&i.freeMode.onTouchMove(),i.updateProgress(s.currentTranslate),i.setTranslate(s.currentTranslate))}function Kt(t){const e=this,i=e.touchEventsData;let s=t;s.originalEvent&&(s=s.originalEvent);let n;if(s.type==="touchend"||s.type==="touchcancel"){if(n=[...s.changedTouches].filter(x=>x.identifier===i.touchId)[0],!n||n.identifier!==i.touchId)return}else{if(i.touchId!==null||s.pointerId!==i.pointerId)return;n=s}if(["pointercancel","pointerout","pointerleave","contextmenu"].includes(s.type)&&!(["pointercancel","contextmenu"].includes(s.type)&&(e.browser.isSafari||e.browser.isWebView)))return;i.pointerId=null,i.touchId=null;const{params:o,touches:l,rtlTranslate:a,slidesGrid:u,enabled:c}=e;if(!c||!o.simulateTouch&&s.pointerType==="mouse")return;if(i.allowTouchCallbacks&&e.emit("touchEnd",s),i.allowTouchCallbacks=!1,!i.isTouched){i.isMoved&&o.grabCursor&&e.setGrabCursor(!1),i.isMoved=!1,i.startMoving=!1;return}o.grabCursor&&i.isMoved&&i.isTouched&&(e.allowSlideNext===!0||e.allowSlidePrev===!0)&&e.setGrabCursor(!1);const f=te(),v=f-i.touchStartTime;if(e.allowClick){const x=s.path||s.composedPath&&s.composedPath();e.updateClickedSlide(x&&x[0]||s.target,x),e.emit("tap click",s),v<300&&f-i.lastClickTime<300&&e.emit("doubleTap doubleClick",s)}if(i.lastClickTime=te(),me(()=>{e.destroyed||(e.allowClick=!0)}),!i.isTouched||!i.isMoved||!e.swipeDirection||l.diff===0&&!i.loopSwapReset||i.currentTranslate===i.startTranslate&&!i.loopSwapReset){i.isTouched=!1,i.isMoved=!1,i.startMoving=!1;return}i.isTouched=!1,i.isMoved=!1,i.startMoving=!1;let h;if(o.followFinger?h=a?e.translate:-e.translate:h=-i.currentTranslate,o.cssMode)return;if(o.freeMode&&o.freeMode.enabled){e.freeMode.onTouchEnd({currentPos:h});return}const m=h>=-e.maxTranslate()&&!e.params.loop;let w=0,b=e.slidesSizesGrid[0];for(let x=0;x=u[x]&&h=u[x])&&(w=x,b=u[u.length-1]-u[u.length-2])}let d=null,p=null;o.rewind&&(e.isBeginning?p=o.virtual&&o.virtual.enabled&&e.virtual?e.virtual.slides.length-1:e.slides.length-1:e.isEnd&&(d=0));const g=(h-u[w])/b,S=wo.longSwipesMs){if(!o.longSwipes){e.slideTo(e.activeIndex);return}e.swipeDirection==="next"&&(g>=o.longSwipesRatio?e.slideTo(o.rewind&&e.isEnd?d:w+S):e.slideTo(w)),e.swipeDirection==="prev"&&(g>1-o.longSwipesRatio?e.slideTo(w+S):p!==null&&g<0&&Math.abs(g)>o.longSwipesRatio?e.slideTo(p):e.slideTo(w))}else{if(!o.shortSwipes){e.slideTo(e.activeIndex);return}e.navigation&&(s.target===e.navigation.nextEl||s.target===e.navigation.prevEl)?s.target===e.navigation.nextEl?e.slideTo(w+S):e.slideTo(w):(e.swipeDirection==="next"&&e.slideTo(d!==null?d:w+S),e.swipeDirection==="prev"&&e.slideTo(p!==null?p:w))}}function ye(){const t=this,{params:e,el:i}=t;if(i&&i.offsetWidth===0)return;e.breakpoints&&t.setBreakpoint();const{allowSlideNext:s,allowSlidePrev:n,snapGrid:r}=t,o=t.virtual&&t.params.virtual.enabled;t.allowSlideNext=!0,t.allowSlidePrev=!0,t.updateSize(),t.updateSlides(),t.updateSlidesClasses();const l=o&&e.loop;(e.slidesPerView==="auto"||e.slidesPerView>1)&&t.isEnd&&!t.isBeginning&&!t.params.centeredSlides&&!l?t.slideTo(t.slides.length-1,0,!1,!0):t.params.loop&&!o?t.slideToLoop(t.realIndex,0,!1,!0):t.slideTo(t.activeIndex,0,!1,!0),t.autoplay&&t.autoplay.running&&t.autoplay.paused&&(clearTimeout(t.autoplay.resizeTimeout),t.autoplay.resizeTimeout=setTimeout(()=>{t.autoplay&&t.autoplay.running&&t.autoplay.paused&&t.autoplay.resume()},500)),t.allowSlidePrev=n,t.allowSlideNext=s,t.params.watchOverflow&&r!==t.snapGrid&&t.checkOverflow()}function Zt(t){const e=this;e.enabled&&(e.allowClick||(e.params.preventClicks&&t.preventDefault(),e.params.preventClicksPropagation&&e.animating&&(t.stopPropagation(),t.stopImmediatePropagation())))}function Jt(){const t=this,{wrapperEl:e,rtlTranslate:i,enabled:s}=t;if(!s)return;t.previousTranslate=t.translate,t.isHorizontal()?t.translate=-e.scrollLeft:t.translate=-e.scrollTop,t.translate===0&&(t.translate=0),t.updateActiveIndex(),t.updateSlidesClasses();let n;const r=t.maxTranslate()-t.minTranslate();r===0?n=0:n=(t.translate-t.minTranslate())/r,n!==t.progress&&t.updateProgress(i?-t.translate:t.translate),t.emit("setTranslate",t.translate,!1)}function Qt(t){const e=this;ee(e,t.target),!(e.params.cssMode||e.params.slidesPerView!=="auto"&&!e.params.autoHeight)&&e.update()}function ei(){const t=this;t.documentTouchHandlerProceeded||(t.documentTouchHandlerProceeded=!0,t.params.touchReleaseOnEdges&&(t.el.style.touchAction="auto"))}const Ge=(t,e)=>{const i=X(),{params:s,el:n,wrapperEl:r,device:o}=t,l=!!s.nested,a=e==="on"?"addEventListener":"removeEventListener",u=e;!n||typeof n=="string"||(i[a]("touchstart",t.onDocumentTouchStart,{passive:!1,capture:l}),n[a]("touchstart",t.onTouchStart,{passive:!1}),n[a]("pointerdown",t.onTouchStart,{passive:!1}),i[a]("touchmove",t.onTouchMove,{passive:!1,capture:l}),i[a]("pointermove",t.onTouchMove,{passive:!1,capture:l}),i[a]("touchend",t.onTouchEnd,{passive:!0}),i[a]("pointerup",t.onTouchEnd,{passive:!0}),i[a]("pointercancel",t.onTouchEnd,{passive:!0}),i[a]("touchcancel",t.onTouchEnd,{passive:!0}),i[a]("pointerout",t.onTouchEnd,{passive:!0}),i[a]("pointerleave",t.onTouchEnd,{passive:!0}),i[a]("contextmenu",t.onTouchEnd,{passive:!0}),(s.preventClicks||s.preventClicksPropagation)&&n[a]("click",t.onClick,!0),s.cssMode&&r[a]("scroll",t.onScroll),s.updateOnWindowResize?t[u](o.ios||o.android?"resize orientationchange observerUpdate":"resize observerUpdate",ye,!0):t[u]("observerUpdate",ye,!0),n[a]("load",t.onLoad,{capture:!0}))};function ti(){const t=this,{params:e}=t;t.onTouchStart=Xt.bind(t),t.onTouchMove=Ut.bind(t),t.onTouchEnd=Kt.bind(t),t.onDocumentTouchStart=ei.bind(t),e.cssMode&&(t.onScroll=Jt.bind(t)),t.onClick=Zt.bind(t),t.onLoad=Qt.bind(t),Ge(t,"on")}function ii(){Ge(this,"off")}var si={attachEvents:ti,detachEvents:ii};const Ee=(t,e)=>t.grid&&e.grid&&e.grid.rows>1;function ri(){const t=this,{realIndex:e,initialized:i,params:s,el:n}=t,r=s.breakpoints;if(!r||r&&Object.keys(r).length===0)return;const o=t.getBreakpoint(r,t.params.breakpointsBase,t.el);if(!o||t.currentBreakpoint===o)return;const a=(o in r?r[o]:void 0)||t.originalParams,u=Ee(t,s),c=Ee(t,a),f=t.params.grabCursor,v=a.grabCursor,h=s.enabled;u&&!c?(n.classList.remove(`${s.containerModifierClass}grid`,`${s.containerModifierClass}grid-column`),t.emitContainerClasses()):!u&&c&&(n.classList.add(`${s.containerModifierClass}grid`),(a.grid.fill&&a.grid.fill==="column"||!a.grid.fill&&s.grid.fill==="column")&&n.classList.add(`${s.containerModifierClass}grid-column`),t.emitContainerClasses()),f&&!v?t.unsetGrabCursor():!f&&v&&t.setGrabCursor(),["navigation","pagination","scrollbar"].forEach(g=>{if(typeof a[g]>"u")return;const S=s[g]&&s[g].enabled,x=a[g]&&a[g].enabled;S&&!x&&t[g].disable(),!S&&x&&t[g].enable()});const m=a.direction&&a.direction!==s.direction,w=s.loop&&(a.slidesPerView!==s.slidesPerView||m),b=s.loop;m&&i&&t.changeDirection(),$(t.params,a);const d=t.params.enabled,p=t.params.loop;Object.assign(t,{allowTouchMove:t.params.allowTouchMove,allowSlideNext:t.params.allowSlideNext,allowSlidePrev:t.params.allowSlidePrev}),h&&!d?t.disable():!h&&d&&t.enable(),t.currentBreakpoint=o,t.emit("_beforeBreakpoint",a),i&&(w?(t.loopDestroy(),t.loopCreate(e),t.updateSlides()):!b&&p?(t.loopCreate(e),t.updateSlides()):b&&!p&&t.loopDestroy()),t.emit("breakpoint",a)}function ni(t,e,i){if(e===void 0&&(e="window"),!t||e==="container"&&!i)return;let s=!1;const n=k(),r=e==="window"?n.innerHeight:i.clientHeight,o=Object.keys(t).map(l=>{if(typeof l=="string"&&l.indexOf("@")===0){const a=parseFloat(l.substr(1));return{value:r*a,point:l}}return{value:l,point:l}});o.sort((l,a)=>parseInt(l.value,10)-parseInt(a.value,10));for(let l=0;l{typeof s=="object"?Object.keys(s).forEach(n=>{s[n]&&i.push(e+n)}):typeof s=="string"&&i.push(e+s)}),i}function oi(){const t=this,{classNames:e,params:i,rtl:s,el:n,device:r}=t,o=li(["initialized",i.direction,{"free-mode":t.params.freeMode&&i.freeMode.enabled},{autoheight:i.autoHeight},{rtl:s},{grid:i.grid&&i.grid.rows>1},{"grid-column":i.grid&&i.grid.rows>1&&i.grid.fill==="column"},{android:r.android},{ios:r.ios},{"css-mode":i.cssMode},{centered:i.cssMode&&i.centeredSlides},{"watch-progress":i.watchSlidesProgress}],i.containerModifierClass);e.push(...o),n.classList.add(...e),t.emitContainerClasses()}function di(){const t=this,{el:e,classNames:i}=t;!e||typeof e=="string"||(e.classList.remove(...i),t.emitContainerClasses())}var ci={addClasses:oi,removeClasses:di};function fi(){const t=this,{isLocked:e,params:i}=t,{slidesOffsetBefore:s}=i;if(s){const n=t.slides.length-1,r=t.slidesGrid[n]+t.slidesSizesGrid[n]+s*2;t.isLocked=t.size>r}else t.isLocked=t.snapGrid.length===1;i.allowSlideNext===!0&&(t.allowSlideNext=!t.isLocked),i.allowSlidePrev===!0&&(t.allowSlidePrev=!t.isLocked),e&&e!==t.isLocked&&(t.isEnd=!1),e!==t.isLocked&&t.emit(t.isLocked?"lock":"unlock")}var ui={checkOverflow:fi},ve={init:!0,direction:"horizontal",oneWayMovement:!1,swiperElementNodeName:"SWIPER-CONTAINER",touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,eventsPrefix:"swiper",enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:5,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,loop:!1,loopAddBlankSlides:!0,loopAdditionalSlides:0,loopPreventsSliding:!0,rewind:!1,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,maxBackfaceHiddenSlides:10,containerModifierClass:"swiper-",slideClass:"swiper-slide",slideBlankClass:"swiper-slide-blank",slideActiveClass:"swiper-slide-active",slideVisibleClass:"swiper-slide-visible",slideFullyVisibleClass:"swiper-slide-fully-visible",slideNextClass:"swiper-slide-next",slidePrevClass:"swiper-slide-prev",wrapperClass:"swiper-wrapper",lazyPreloaderClass:"swiper-lazy-preloader",lazyPreloadPrevNext:0,runCallbacksOnInit:!0,_emitClasses:!1};function pi(t,e){return function(s){s===void 0&&(s={});const n=Object.keys(s)[0],r=s[n];if(typeof r!="object"||r===null){$(e,s);return}if(t[n]===!0&&(t[n]={enabled:!0}),n==="navigation"&&t[n]&&t[n].enabled&&!t[n].prevEl&&!t[n].nextEl&&(t[n].auto=!0),["pagination","scrollbar"].indexOf(n)>=0&&t[n]&&t[n].enabled&&!t[n].el&&(t[n].auto=!0),!(n in t&&"enabled"in r)){$(e,s);return}typeof t[n]=="object"&&!("enabled"in t[n])&&(t[n].enabled=!0),t[n]||(t[n]={enabled:!1}),$(e,s)}}const ue={eventsEmitter:ct,update:xt,translate:Pt,transition:zt,slide:Vt,loop:jt,grabCursor:Wt,events:si,breakpoints:ai,checkOverflow:ui,classes:ci},pe={};let Se=class F{constructor(){let e,i;for(var s=arguments.length,n=new Array(s),r=0;r1){const c=[];return o.querySelectorAll(i.el).forEach(f=>{const v=$({},i,{el:f});c.push(new F(v))}),c}const l=this;l.__swiper__=!0,l.support=ze(),l.device=Oe({userAgent:i.userAgent}),l.browser=lt(),l.eventsListeners={},l.eventsAnyListeners=[],l.modules=[...l.__modules__],i.modules&&Array.isArray(i.modules)&&l.modules.push(...i.modules);const a={};l.modules.forEach(c=>{c({params:i,swiper:l,extendParams:pi(i,a),on:l.on.bind(l),once:l.once.bind(l),off:l.off.bind(l),emit:l.emit.bind(l)})});const u=$({},ve,a);return l.params=$({},u,pe,i),l.originalParams=$({},l.params),l.passedParams=$({},i),l.params&&l.params.on&&Object.keys(l.params.on).forEach(c=>{l.on(c,l.params.on[c])}),l.params&&l.params.onAny&&l.onAny(l.params.onAny),Object.assign(l,{enabled:l.params.enabled,el:e,classNames:[],slides:[],slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal(){return l.params.direction==="horizontal"},isVertical(){return l.params.direction==="vertical"},activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,cssOverflowAdjustment(){return Math.trunc(this.translate/2**23)*2**23},allowSlideNext:l.params.allowSlideNext,allowSlidePrev:l.params.allowSlidePrev,touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:l.params.focusableElements,lastClickTime:0,clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,startMoving:void 0,pointerId:null,touchId:null},allowClick:!0,allowTouchMove:l.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),l.emit("_swiper"),l.params.init&&l.init(),l}getDirectionLabel(e){return this.isHorizontal()?e:{width:"height","margin-top":"margin-left","margin-bottom ":"margin-right","margin-left":"margin-top","margin-right":"margin-bottom","padding-left":"padding-top","padding-right":"padding-bottom",marginRight:"marginBottom"}[e]}getSlideIndex(e){const{slidesEl:i,params:s}=this,n=R(i,`.${s.slideClass}, swiper-slide`),r=re(n[0]);return re(e)-r}getSlideIndexByData(e){return this.getSlideIndex(this.slides.filter(i=>i.getAttribute("data-swiper-slide-index")*1===e)[0])}recalcSlides(){const e=this,{slidesEl:i,params:s}=e;e.slides=R(i,`.${s.slideClass}, swiper-slide`)}enable(){const e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))}disable(){const e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))}setProgress(e,i){const s=this;e=Math.min(Math.max(e,0),1);const n=s.minTranslate(),o=(s.maxTranslate()-n)*e+n;s.translateTo(o,typeof i>"u"?0:i),s.updateActiveIndex(),s.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const i=e.el.className.split(" ").filter(s=>s.indexOf("swiper")===0||s.indexOf(e.params.containerModifierClass)===0);e.emit("_containerClasses",i.join(" "))}getSlideClasses(e){const i=this;return i.destroyed?"":e.className.split(" ").filter(s=>s.indexOf("swiper-slide")===0||s.indexOf(i.params.slideClass)===0).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const i=[];e.slides.forEach(s=>{const n=e.getSlideClasses(s);i.push({slideEl:s,classNames:n}),e.emit("_slideClass",s,n)}),e.emit("_slideClasses",i)}slidesPerViewDynamic(e,i){e===void 0&&(e="current"),i===void 0&&(i=!1);const s=this,{params:n,slides:r,slidesGrid:o,slidesSizesGrid:l,size:a,activeIndex:u}=s;let c=1;if(typeof n.slidesPerView=="number")return n.slidesPerView;if(n.centeredSlides){let f=r[u]?Math.ceil(r[u].swiperSlideSize):0,v;for(let h=u+1;ha&&(v=!0));for(let h=u-1;h>=0;h-=1)r[h]&&!v&&(f+=r[h].swiperSlideSize,c+=1,f>a&&(v=!0))}else if(e==="current")for(let f=u+1;f=0;f-=1)o[u]-o[f]{o.complete&&ee(e,o)}),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses();function n(){const o=e.rtlTranslate?e.translate*-1:e.translate,l=Math.min(Math.max(o,e.maxTranslate()),e.minTranslate());e.setTranslate(l),e.updateActiveIndex(),e.updateSlidesClasses()}let r;if(s.freeMode&&s.freeMode.enabled&&!s.cssMode)n(),s.autoHeight&&e.updateAutoHeight();else{if((s.slidesPerView==="auto"||s.slidesPerView>1)&&e.isEnd&&!s.centeredSlides){const o=e.virtual&&s.virtual.enabled?e.virtual.slides:e.slides;r=e.slideTo(o.length-1,0,!1,!0)}else r=e.slideTo(e.activeIndex,0,!1,!0);r||n()}s.watchOverflow&&i!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,i){i===void 0&&(i=!0);const s=this,n=s.params.direction;return e||(e=n==="horizontal"?"vertical":"horizontal"),e===n||e!=="horizontal"&&e!=="vertical"||(s.el.classList.remove(`${s.params.containerModifierClass}${n}`),s.el.classList.add(`${s.params.containerModifierClass}${e}`),s.emitContainerClasses(),s.params.direction=e,s.slides.forEach(r=>{e==="vertical"?r.style.width="":r.style.height=""}),s.emit("changeDirection"),i&&s.update()),s}changeLanguageDirection(e){const i=this;i.rtl&&e==="rtl"||!i.rtl&&e==="ltr"||(i.rtl=e==="rtl",i.rtlTranslate=i.params.direction==="horizontal"&&i.rtl,i.rtl?(i.el.classList.add(`${i.params.containerModifierClass}rtl`),i.el.dir="rtl"):(i.el.classList.remove(`${i.params.containerModifierClass}rtl`),i.el.dir="ltr"),i.update())}mount(e){const i=this;if(i.mounted)return!0;let s=e||i.params.el;if(typeof s=="string"&&(s=document.querySelector(s)),!s)return!1;s.swiper=i,s.parentNode&&s.parentNode.host&&s.parentNode.host.nodeName===i.params.swiperElementNodeName.toUpperCase()&&(i.isElement=!0);const n=()=>`.${(i.params.wrapperClass||"").trim().split(" ").join(".")}`;let o=(()=>s&&s.shadowRoot&&s.shadowRoot.querySelector?s.shadowRoot.querySelector(n()):R(s,n())[0])();return!o&&i.params.createElements&&(o=se("div",i.params.wrapperClass),s.append(o),R(s,`.${i.params.slideClass}`).forEach(l=>{o.append(l)})),Object.assign(i,{el:s,wrapperEl:o,slidesEl:i.isElement&&!s.parentNode.host.slideSlots?s.parentNode.host:o,hostEl:i.isElement?s.parentNode.host:s,mounted:!0,rtl:s.dir.toLowerCase()==="rtl"||H(s,"direction")==="rtl",rtlTranslate:i.params.direction==="horizontal"&&(s.dir.toLowerCase()==="rtl"||H(s,"direction")==="rtl"),wrongRTL:H(o,"display")==="-webkit-box"}),!0}init(e){const i=this;if(i.initialized||i.mount(e)===!1)return i;i.emit("beforeInit"),i.params.breakpoints&&i.setBreakpoint(),i.addClasses(),i.updateSize(),i.updateSlides(),i.params.watchOverflow&&i.checkOverflow(),i.params.grabCursor&&i.enabled&&i.setGrabCursor(),i.params.loop&&i.virtual&&i.params.virtual.enabled?i.slideTo(i.params.initialSlide+i.virtual.slidesBefore,0,i.params.runCallbacksOnInit,!1,!0):i.slideTo(i.params.initialSlide,0,i.params.runCallbacksOnInit,!1,!0),i.params.loop&&i.loopCreate(),i.attachEvents();const n=[...i.el.querySelectorAll('[loading="lazy"]')];return i.isElement&&n.push(...i.hostEl.querySelectorAll('[loading="lazy"]')),n.forEach(r=>{r.complete?ee(i,r):r.addEventListener("load",o=>{ee(i,o.target)})}),ge(i),i.initialized=!0,ge(i),i.emit("init"),i.emit("afterInit"),i}destroy(e,i){e===void 0&&(e=!0),i===void 0&&(i=!0);const s=this,{params:n,el:r,wrapperEl:o,slides:l}=s;return typeof s.params>"u"||s.destroyed||(s.emit("beforeDestroy"),s.initialized=!1,s.detachEvents(),n.loop&&s.loopDestroy(),i&&(s.removeClasses(),r&&typeof r!="string"&&r.removeAttribute("style"),o&&o.removeAttribute("style"),l&&l.length&&l.forEach(a=>{a.classList.remove(n.slideVisibleClass,n.slideFullyVisibleClass,n.slideActiveClass,n.slideNextClass,n.slidePrevClass),a.removeAttribute("style"),a.removeAttribute("data-swiper-slide-index")})),s.emit("destroy"),Object.keys(s.eventsListeners).forEach(a=>{s.off(a)}),e!==!1&&(s.el&&typeof s.el!="string"&&(s.el.swiper=null),Ue(s)),s.destroyed=!0),null}static extendDefaults(e){$(pe,e)}static get extendedDefaults(){return pe}static get defaults(){return ve}static installModule(e){F.prototype.__modules__||(F.prototype.__modules__=[]);const i=F.prototype.__modules__;typeof e=="function"&&i.indexOf(e)<0&&i.push(e)}static use(e){return Array.isArray(e)?(e.forEach(i=>F.installModule(i)),F):(F.installModule(e),F)}};Object.keys(ue).forEach(t=>{Object.keys(ue[t]).forEach(e=>{Se.prototype[e]=ue[t][e]})});Se.use([ot,dt]);const De=["eventsPrefix","injectStyles","injectStylesUrls","modules","init","_direction","oneWayMovement","swiperElementNodeName","touchEventsTarget","initialSlide","_speed","cssMode","updateOnWindowResize","resizeObserver","nested","focusableElements","_enabled","_width","_height","preventInteractionOnTransition","userAgent","url","_edgeSwipeDetection","_edgeSwipeThreshold","_freeMode","_autoHeight","setWrapperSize","virtualTranslate","_effect","breakpoints","breakpointsBase","_spaceBetween","_slidesPerView","maxBackfaceHiddenSlides","_grid","_slidesPerGroup","_slidesPerGroupSkip","_slidesPerGroupAuto","_centeredSlides","_centeredSlidesBounds","_slidesOffsetBefore","_slidesOffsetAfter","normalizeSlideIndex","_centerInsufficientSlides","_watchOverflow","roundLengths","touchRatio","touchAngle","simulateTouch","_shortSwipes","_longSwipes","longSwipesRatio","longSwipesMs","_followFinger","allowTouchMove","_threshold","touchMoveStopPropagation","touchStartPreventDefault","touchStartForcePreventDefault","touchReleaseOnEdges","uniqueNavElements","_resistance","_resistanceRatio","_watchSlidesProgress","_grabCursor","preventClicks","preventClicksPropagation","_slideToClickedSlide","_loop","loopAdditionalSlides","loopAddBlankSlides","loopPreventsSliding","_rewind","_allowSlidePrev","_allowSlideNext","_swipeHandler","_noSwiping","noSwipingClass","noSwipingSelector","passiveListeners","containerModifierClass","slideClass","slideActiveClass","slideVisibleClass","slideFullyVisibleClass","slideNextClass","slidePrevClass","slideBlankClass","wrapperClass","lazyPreloaderClass","lazyPreloadPrevNext","runCallbacksOnInit","observer","observeParents","observeSlideChildren","a11y","_autoplay","_controller","coverflowEffect","cubeEffect","fadeEffect","flipEffect","creativeEffect","cardsEffect","hashNavigation","history","keyboard","mousewheel","_navigation","_pagination","parallax","_scrollbar","_thumbs","virtual","zoom","control"];function W(t){return typeof t=="object"&&t!==null&&t.constructor&&Object.prototype.toString.call(t).slice(8,-1)==="Object"&&!t.__swiper__}function Y(t,e){const i=["__proto__","constructor","prototype"];Object.keys(e).filter(s=>i.indexOf(s)<0).forEach(s=>{typeof t[s]>"u"?t[s]=e[s]:W(e[s])&&W(t[s])&&Object.keys(e[s]).length>0?e[s].__swiper__?t[s]=e[s]:Y(t[s],e[s]):t[s]=e[s]})}function Be(t){return t===void 0&&(t={}),t.navigation&&typeof t.navigation.nextEl>"u"&&typeof t.navigation.prevEl>"u"}function $e(t){return t===void 0&&(t={}),t.pagination&&typeof t.pagination.el>"u"}function ke(t){return t===void 0&&(t={}),t.scrollbar&&typeof t.scrollbar.el>"u"}function Ve(t){t===void 0&&(t="");const e=t.split(" ").map(s=>s.trim()).filter(s=>!!s),i=[];return e.forEach(s=>{i.indexOf(s)<0&&i.push(s)}),i.join(" ")}function mi(t){return t===void 0&&(t=""),t?t.includes("swiper-wrapper")?t:`swiper-wrapper ${t}`:"swiper-wrapper"}function hi(t){let{swiper:e,slides:i,passedParams:s,changedParams:n,nextEl:r,prevEl:o,scrollbarEl:l,paginationEl:a}=t;const u=n.filter(C=>C!=="children"&&C!=="direction"&&C!=="wrapperClass"),{params:c,pagination:f,navigation:v,scrollbar:h,virtual:m,thumbs:w}=e;let b,d,p,g,S,x,M,O;n.includes("thumbs")&&s.thumbs&&s.thumbs.swiper&&c.thumbs&&!c.thumbs.swiper&&(b=!0),n.includes("controller")&&s.controller&&s.controller.control&&c.controller&&!c.controller.control&&(d=!0),n.includes("pagination")&&s.pagination&&(s.pagination.el||a)&&(c.pagination||c.pagination===!1)&&f&&!f.el&&(p=!0),n.includes("scrollbar")&&s.scrollbar&&(s.scrollbar.el||l)&&(c.scrollbar||c.scrollbar===!1)&&h&&!h.el&&(g=!0),n.includes("navigation")&&s.navigation&&(s.navigation.prevEl||o)&&(s.navigation.nextEl||r)&&(c.navigation||c.navigation===!1)&&v&&!v.prevEl&&!v.nextEl&&(S=!0);const _=C=>{e[C]&&(e[C].destroy(),C==="navigation"?(e.isElement&&(e[C].prevEl.remove(),e[C].nextEl.remove()),c[C].prevEl=void 0,c[C].nextEl=void 0,e[C].prevEl=void 0,e[C].nextEl=void 0):(e.isElement&&e[C].el.remove(),c[C].el=void 0,e[C].el=void 0))};n.includes("loop")&&e.isElement&&(c.loop&&!s.loop?x=!0:!c.loop&&s.loop?M=!0:O=!0),u.forEach(C=>{if(W(c[C])&&W(s[C]))Object.assign(c[C],s[C]),(C==="navigation"||C==="pagination"||C==="scrollbar")&&"enabled"in s[C]&&!s[C].enabled&&_(C);else{const T=s[C];(T===!0||T===!1)&&(C==="navigation"||C==="pagination"||C==="scrollbar")?T===!1&&_(C):c[C]=s[C]}}),u.includes("controller")&&!d&&e.controller&&e.controller.control&&c.controller&&c.controller.control&&(e.controller.control=c.controller.control),n.includes("children")&&i&&m&&c.virtual.enabled?(m.slides=i,m.update(!0)):n.includes("virtual")&&m&&c.virtual.enabled&&(i&&(m.slides=i),m.update(!0)),n.includes("children")&&i&&c.loop&&(O=!0),b&&w.init()&&w.update(!0),d&&(e.controller.control=c.controller.control),p&&(e.isElement&&(!a||typeof a=="string")&&(a=document.createElement("div"),a.classList.add("swiper-pagination"),a.part.add("pagination"),e.el.appendChild(a)),a&&(c.pagination.el=a),f.init(),f.render(),f.update()),g&&(e.isElement&&(!l||typeof l=="string")&&(l=document.createElement("div"),l.classList.add("swiper-scrollbar"),l.part.add("scrollbar"),e.el.appendChild(l)),l&&(c.scrollbar.el=l),h.init(),h.updateSize(),h.setTranslate()),S&&(e.isElement&&((!r||typeof r=="string")&&(r=document.createElement("div"),r.classList.add("swiper-button-next"),r.innerHTML=e.hostEl.constructor.nextButtonSvg,r.part.add("button-next"),e.el.appendChild(r)),(!o||typeof o=="string")&&(o=document.createElement("div"),o.classList.add("swiper-button-prev"),o.innerHTML=e.hostEl.constructor.prevButtonSvg,o.part.add("button-prev"),e.el.appendChild(o))),r&&(c.navigation.nextEl=r),o&&(c.navigation.prevEl=o),v.init(),v.update()),n.includes("allowSlideNext")&&(e.allowSlideNext=s.allowSlideNext),n.includes("allowSlidePrev")&&(e.allowSlidePrev=s.allowSlidePrev),n.includes("direction")&&e.changeDirection(s.direction,!1),(x||O)&&e.loopDestroy(),(M||O)&&e.loopCreate(),e.update()}function gi(t,e){t===void 0&&(t={}),e===void 0&&(e=!0);const i={on:{}},s={},n={};Y(i,ve),i._emitClasses=!0,i.init=!1;const r={},o=De.map(a=>a.replace(/_/,"")),l=Object.assign({},t);return Object.keys(l).forEach(a=>{typeof t[a]>"u"||(o.indexOf(a)>=0?W(t[a])?(i[a]={},n[a]={},Y(i[a],t[a]),Y(n[a],t[a])):(i[a]=t[a],n[a]=t[a]):a.search(/on[A-Z]/)===0&&typeof t[a]=="function"?e?s[`${a[2].toLowerCase()}${a.substr(3)}`]=t[a]:i.on[`${a[2].toLowerCase()}${a.substr(3)}`]=t[a]:r[a]=t[a])}),["navigation","pagination","scrollbar"].forEach(a=>{i[a]===!0&&(i[a]={}),i[a]===!1&&delete i[a]}),{params:i,passedParams:n,rest:r,events:s}}function vi(t,e){let{el:i,nextEl:s,prevEl:n,paginationEl:r,scrollbarEl:o,swiper:l}=t;Be(e)&&s&&n&&(l.params.navigation.nextEl=s,l.originalParams.navigation.nextEl=s,l.params.navigation.prevEl=n,l.originalParams.navigation.prevEl=n),$e(e)&&r&&(l.params.pagination.el=r,l.originalParams.pagination.el=r),ke(e)&&o&&(l.params.scrollbar.el=o,l.originalParams.scrollbar.el=o),l.init(i)}function wi(t,e,i,s,n){const r=[];if(!e)return r;const o=a=>{r.indexOf(a)<0&&r.push(a)};if(i&&s){const a=s.map(n),u=i.map(n);a.join("")!==u.join("")&&o("children"),s.length!==i.length&&o("children")}return De.filter(a=>a[0]==="_").map(a=>a.replace(/_/,"")).forEach(a=>{if(a in t&&a in e)if(W(t[a])&&W(e[a])){const u=Object.keys(t[a]),c=Object.keys(e[a]);u.length!==c.length?o(a):(u.forEach(f=>{t[a][f]!==e[a][f]&&o(a)}),c.forEach(f=>{t[a][f]!==e[a][f]&&o(a)}))}else t[a]!==e[a]&&o(a)}),r}const Si=t=>{!t||t.destroyed||!t.params.virtual||t.params.virtual&&!t.params.virtual.enabled||(t.updateSlides(),t.updateProgress(),t.updateSlidesClasses(),t.parallax&&t.params.parallax&&t.params.parallax.enabled&&t.parallax.setTranslate())};function ne(){return ne=Object.assign?Object.assign.bind():function(t){for(var e=1;e{Ne(i)?e.push(i):i.props&&i.props.children&&Re(i.props.children).forEach(s=>e.push(s))}),e}function bi(t){const e=[],i={"container-start":[],"container-end":[],"wrapper-start":[],"wrapper-end":[]};return A.Children.toArray(t).forEach(s=>{if(Ne(s))e.push(s);else if(s.props&&s.props.slot&&i[s.props.slot])i[s.props.slot].push(s);else if(s.props&&s.props.children){const n=Re(s.props.children);n.length>0?n.forEach(r=>e.push(r)):i["container-end"].push(s)}else i["container-end"].push(s)}),{slides:e,slots:i}}function xi(t,e,i){if(!i)return null;const s=c=>{let f=c;return c<0?f=e.length+c:f>=e.length&&(f=f-e.length),f},n=t.isHorizontal()?{[t.rtlTranslate?"right":"left"]:`${i.offset}px`}:{top:`${i.offset}px`},{from:r,to:o}=i,l=t.params.loop?-e.length:0,a=t.params.loop?e.length*2:e.length,u=[];for(let c=l;c=r&&c<=o&&u.push(e[s(c)]);return u.map((c,f)=>A.cloneElement(c,{swiper:t,style:n,key:c.props.virtualIndex||c.key||`slide-${f}`}))}function K(t,e){return typeof window>"u"?z.useEffect(t,e):z.useLayoutEffect(t,e)}const Ce=z.createContext(null),Ti=z.createContext(null),Fe=z.forwardRef(function(t,e){let{className:i,tag:s="div",wrapperTag:n="div",children:r,onSwiper:o,...l}=t===void 0?{}:t,a=!1;const[u,c]=z.useState("swiper"),[f,v]=z.useState(null),[h,m]=z.useState(!1),w=z.useRef(!1),b=z.useRef(null),d=z.useRef(null),p=z.useRef(null),g=z.useRef(null),S=z.useRef(null),x=z.useRef(null),M=z.useRef(null),O=z.useRef(null),{params:_,passedParams:C,rest:T,events:P}=gi(l),{slides:E,slots:y}=bi(r),L=()=>{m(!h)};Object.assign(_.on,{_containerClasses(D,V){c(V)}});const I=()=>{Object.assign(_.on,P),a=!0;const D={..._};if(delete D.wrapperClass,d.current=new Se(D),d.current.virtual&&d.current.params.virtual.enabled){d.current.virtual.slides=E;const V={cache:!1,slides:E,renderExternal:v,renderExternalUpdate:!1};Y(d.current.params.virtual,V),Y(d.current.originalParams.virtual,V)}};b.current||I(),d.current&&d.current.on("_beforeBreakpoint",L);const N=()=>{a||!P||!d.current||Object.keys(P).forEach(D=>{d.current.on(D,P[D])})},ae=()=>{!P||!d.current||Object.keys(P).forEach(D=>{d.current.off(D,P[D])})};z.useEffect(()=>()=>{d.current&&d.current.off("_beforeBreakpoint",L)}),z.useEffect(()=>{!w.current&&d.current&&(d.current.emitSlidesClasses(),w.current=!0)}),K(()=>{if(e&&(e.current=b.current),!!b.current)return d.current.destroyed&&I(),vi({el:b.current,nextEl:S.current,prevEl:x.current,paginationEl:M.current,scrollbarEl:O.current,swiper:d.current},_),o&&!d.current.destroyed&&o(d.current),()=>{d.current&&!d.current.destroyed&&d.current.destroy(!0,!1)}},[]),K(()=>{N();const D=wi(C,p.current,E,g.current,V=>V.key);return p.current=C,g.current=E,D.length&&d.current&&!d.current.destroyed&&hi({swiper:d.current,slides:E,passedParams:C,changedParams:D,nextEl:S.current,prevEl:x.current,scrollbarEl:O.current,paginationEl:M.current}),()=>{ae()}}),K(()=>{Si(d.current)},[f]);function Z(){return _.virtual?xi(d.current,E,f):E.map((D,V)=>A.cloneElement(D,{swiper:d.current,swiperSlideIndex:V}))}return A.createElement(s,ne({ref:b,className:Ve(`${u}${i?` ${i}`:""}`)},T),A.createElement(Ti.Provider,{value:d.current},y["container-start"],A.createElement(n,{className:mi(_.wrapperClass)},y["wrapper-start"],Z(),y["wrapper-end"]),Be(_)&&A.createElement(A.Fragment,null,A.createElement("div",{ref:x,className:"swiper-button-prev"}),A.createElement("div",{ref:S,className:"swiper-button-next"})),ke(_)&&A.createElement("div",{ref:O,className:"swiper-scrollbar"}),$e(_)&&A.createElement("div",{ref:M,className:"swiper-pagination"}),y["container-end"]))});Fe.displayName="Swiper";const je=z.forwardRef(function(t,e){let{tag:i="div",children:s,className:n="",swiper:r,zoom:o,lazy:l,virtualIndex:a,swiperSlideIndex:u,...c}=t===void 0?{}:t;const f=z.useRef(null),[v,h]=z.useState("swiper-slide"),[m,w]=z.useState(!1);function b(S,x,M){x===f.current&&h(M)}K(()=>{if(typeof u<"u"&&(f.current.swiperSlideIndex=u),e&&(e.current=f.current),!(!f.current||!r)){if(r.destroyed){v!=="swiper-slide"&&h("swiper-slide");return}return r.on("_slideClass",b),()=>{r&&r.off("_slideClass",b)}}}),K(()=>{r&&f.current&&!r.destroyed&&h(r.getSlideClasses(f.current))},[r]);const d={isActive:v.indexOf("swiper-slide-active")>=0,isVisible:v.indexOf("swiper-slide-visible")>=0,isPrev:v.indexOf("swiper-slide-prev")>=0,isNext:v.indexOf("swiper-slide-next")>=0},p=()=>typeof s=="function"?s(d):s,g=()=>{w(!0)};return A.createElement(i,ne({ref:f,className:Ve(`${v}${n?` ${n}`:""}`),"data-swiper-slide-index":a,onLoad:g},c),o&&A.createElement(Ce.Provider,{value:d},A.createElement("div",{className:"swiper-zoom-container","data-swiper-zoom":typeof o=="number"?o:void 0},p(),l&&!m&&A.createElement("div",{className:"swiper-lazy-preloader"}))),!o&&A.createElement(Ce.Provider,{value:d},p(),l&&!m&&A.createElement("div",{className:"swiper-lazy-preloader"})))});je.displayName="SwiperSlide";const yi=j("atm_1d4ly2u_1kdmad9 atm_7iexyv_2bn2nk atm_1ulk59d_1ssbidh atm_cinzl4_idpfg4 atm_1osztpj_13uz5tb atm_5lyi1p_13uz5tb atm_1vv8kpw_1wugsn5 atm_14umid8_1wugsn5 atm_wx1exw_idpfg4 atm_w3u4dh_1wugsn5 atm_1325or8_1kw7nm4 atm_1vueq8c_e7rx8z atm_t9w0vl_1y44olf atm_apmu1a_ftgil2 atm_efj7jp_ftgil2 atm_ghfgur_ftgil2 atm_1czt7df_17qlcpk atm_13qnn4o_1q4968j atm_azftdl_kb7nvz atm_1thx9ev_1y44olf atm_1q4ocj8_i2wt44 atm_67_pzx0vz atm_l8_x3k446 atm_mk_h2mmj6 atm_1852l5k_stnw88 atm_1s8gqnc_1yyfdc7 atm_u88c57_1ulexfb atm_42nhi7_1n1ank9 atm_1ba8udz_gsn3wn atm_7rea6d_t94yts atm_1xce73l_hyy783 atm_1kn0ehe_10akg1s atm_ca7pqr_hyy783 atm_nzdbrg_1wzi0s6"),Ei=j("atm_j3_1kvayuk"),_e={root:yi,swiper:Ei},Ci=({people:t})=>{const e=Object.entries(t).map((i,s)=>B.jsx(je,{key:s,children:i[1]}));return B.jsx("div",{..._e.root,children:B.jsx(Fe,{slidesPerView:1,spaceBetween:10,modules:[it,st],navigation:{enabled:!0},pagination:{enabled:!0},breakpoints:{975:{slidesPerView:2}},..._e.swiper,children:e})})};Ci.__docgenInfo={description:"",methods:[],displayName:"PeopleLine",props:{people:{required:!0,tsType:{name:"Record",elements:[{name:"string"},{name:"ReactReactNode",raw:"React.ReactNode"}],raw:"Record"},description:""}}};const _i=j("atm_v6a8l5_wsin2o atm_1jtg5o3_1dbut50 atm_17276py_1uvqp05 atm_1h0e3ue_1u6qs5w atm_mk_h2mmj6 atm_lk_1lqwz86 atm_lo_1csv80r atm_ll_2bn2nk atm_gi_12n302m atm_1gkhzp4_1yyfdc7 atm_1wn0hfv_1ulexfb atm_12jvgb5_t94yts atm_a5qyg8_1csv80r atm_x4yteh_stnw88 atm_1xce73l_b8v915 atm_tb79i2_idpfg4 atm_lv2p12_e7rx8z"),Pi=j("atm_bx_3wtidt atm_7l_1ihcz36 atm_14jzbib_15vqwwr atm_1ys8rdy_stnw88"),Mi=j("atm_70_1tc6zj0 atm_5j_1osqo2v atm_mk_stnw88 atm_fq_1hwtcji atm_tk_1csv80r atm_kd_glywfm atm_e2_1jdfhta atm_vy_1jdfhta"),Li=j("atm_bx_18cx291 atm_7l_1ihcz36 atm_c8_xoeuol atm_g3_1ic6ef2 atm_gq_1kwt7j8"),Ii=j("atm_bx_1dn7dki atm_c8_ihbmcz atm_fr_1cae2rq atm_gq_1dbut50 atm_7l_75py1q atm_t9_angws6"),zi=j("atm_7l_1ysj30n atm_c8_ihbmcz atm_gq_1hws8f"),Oi=j("atm_c8_ihbmcz atm_gq_1hws8f"),q={root:_i,details:Pi,avatar:Mi,quote:Li,name:Ii,title:zi,subtitle:Oi},Ai=({name:t,quote:e,subtitle:i,title:s,imageKey:n})=>{const r=We(n),o=r?B.jsx("img",{src:r.src,alt:t,...q.avatar}):null;return B.jsxs("div",{...q.root,children:[o,B.jsx("blockquote",{...q.quote,"data-swiper-parallax":"-100","data-swiper-parallax-duration":"300",children:e}),B.jsxs("dl",{...q.details,"data-swiper-parallax":"-100","data-swiper-parallax-duration":"300",children:[B.jsx("dt",{children:"Name"},"title_name"),B.jsx("dd",{...q.name,"data-swiper-parallax":"-100","data-swiper-parallax-duration":"100",children:t},"value_name"),B.jsx("dt",{children:"Title"},"title_title"),B.jsx("dd",{...q.title,"data-swiper-parallax":"-100","data-swiper-parallax-duration":"200",children:s},"value_title"),B.jsx("dt",{children:"Subtitle"},"title_subtitle"),B.jsx("dd",{...q.subtitle,"data-swiper-parallax":"-100","data-swiper-parallax-duration":"300",children:i},"value_subtitle")]})]})};Ai.__docgenInfo={description:"",methods:[],displayName:"Person",props:{quote:{required:!0,tsType:{name:"string"},description:""},name:{required:!0,tsType:{name:"string"},description:""},title:{required:!0,tsType:{name:"string"},description:""},subtitle:{required:!0,tsType:{name:"string"},description:""},imageKey:{required:!0,tsType:{name:"string"},description:""}}};export{Ci as P,Ai as a}; diff --git a/storybook-static/assets/portfolio.stories-1d1f2013.js b/storybook-static/assets/portfolio.stories-1d1f2013.js deleted file mode 100644 index cfc9614..0000000 --- a/storybook-static/assets/portfolio.stories-1d1f2013.js +++ /dev/null @@ -1 +0,0 @@ -import{H as i}from"./home-75e16b3f.js";import"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";import"./section-925c1887.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./css-7708fb60.js";import"./index-9b15b185.js";/* empty css */import"./stats-06bdd3b3.js";import"./person-d27c7fee.js";import"./timeline_item-de0bfc23.js";import"./index-a8bd1a45.js";import"./index-5f347087.js";const S={title:"Home/Portfolio",component:i.Portfolio},o={};var r,t,m;o.parameters={...o.parameters,docs:{...(r=o.parameters)==null?void 0:r.docs,source:{originalSource:"{}",...(m=(t=o.parameters)==null?void 0:t.docs)==null?void 0:m.source}}};const b=["Portfolio"];export{o as Portfolio,b as __namedExportsOrder,S as default}; diff --git a/storybook-static/assets/preview-17d082ae.js b/storybook-static/assets/preview-17d082ae.js deleted file mode 100644 index ca6485d..0000000 --- a/storybook-static/assets/preview-17d082ae.js +++ /dev/null @@ -1,28 +0,0 @@ -var Jt=Object.defineProperty;var Xt=(e,r,t)=>r in e?Jt(e,r,{enumerable:!0,configurable:!0,writable:!0,value:t}):e[r]=t;var xe=(e,r,t)=>(Xt(e,typeof r!="symbol"?r+"":r,t),t);const{addons:Zt}=__STORYBOOK_MODULE_PREVIEW_API__,{once:Qt}=__STORYBOOK_MODULE_CLIENT_LOGGER__,{FORCE_REMOUNT:ot,STORY_RENDER_PHASE_CHANGED:er,SET_CURRENT_STORY:tr}=__STORYBOOK_MODULE_CORE_EVENTS__,{global:ce}=__STORYBOOK_MODULE_GLOBAL__;var rr=Object.create,Et=Object.defineProperty,nr=Object.getOwnPropertyDescriptor,Tt=Object.getOwnPropertyNames,ir=Object.getPrototypeOf,ar=Object.prototype.hasOwnProperty,or=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(r,t)=>(typeof require<"u"?require:r)[t]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')}),ue=(e,r)=>function(){return r||(0,e[Tt(e)[0]])((r={exports:{}}).exports,r),r.exports},cr=(e,r,t,l)=>{if(r&&typeof r=="object"||typeof r=="function")for(let s of Tt(r))!ar.call(e,s)&&s!==t&&Et(e,s,{get:()=>r[s],enumerable:!(l=nr(r,s))||l.enumerable});return e},de=(e,r,t)=>(t=e!=null?rr(ir(e)):{},cr(r||!e||!e.__esModule?Et(t,"default",{value:e,enumerable:!0}):t,e)),ur=ue({"../../node_modules/pretty-format/node_modules/ansi-styles/index.js"(e,r){var t=(_=0)=>o=>`\x1B[${38+_};5;${o}m`,l=(_=0)=>(o,u,y)=>`\x1B[${38+_};2;${o};${u};${y}m`;function s(){let _=new Map,o={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};o.color.gray=o.color.blackBright,o.bgColor.bgGray=o.bgColor.bgBlackBright,o.color.grey=o.color.blackBright,o.bgColor.bgGrey=o.bgColor.bgBlackBright;for(let[u,y]of Object.entries(o)){for(let[g,i]of Object.entries(y))o[g]={open:`\x1B[${i[0]}m`,close:`\x1B[${i[1]}m`},y[g]=o[g],_.set(i[0],i[1]);Object.defineProperty(o,u,{value:y,enumerable:!1})}return Object.defineProperty(o,"codes",{value:_,enumerable:!1}),o.color.close="\x1B[39m",o.bgColor.close="\x1B[49m",o.color.ansi256=t(),o.color.ansi16m=l(),o.bgColor.ansi256=t(10),o.bgColor.ansi16m=l(10),Object.defineProperties(o,{rgbToAnsi256:{value:(u,y,g)=>u===y&&y===g?u<8?16:u>248?231:Math.round((u-8)/247*24)+232:16+36*Math.round(u/255*5)+6*Math.round(y/255*5)+Math.round(g/255*5),enumerable:!1},hexToRgb:{value:u=>{let y=/(?[a-f\d]{6}|[a-f\d]{3})/i.exec(u.toString(16));if(!y)return[0,0,0];let{colorString:g}=y.groups;g.length===3&&(g=g.split("").map(p=>p+p).join(""));let i=Number.parseInt(g,16);return[i>>16&255,i>>8&255,i&255]},enumerable:!1},hexToAnsi256:{value:u=>o.rgbToAnsi256(...o.hexToRgb(u)),enumerable:!1}}),o}Object.defineProperty(r,"exports",{enumerable:!0,get:s})}}),Be=ue({"../../node_modules/pretty-format/build/collections.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.printIteratorEntries=t,e.printIteratorValues=l,e.printListItems=s,e.printObjectProperties=_;var r=(o,u)=>{let y=Object.keys(o),g=u!==null?y.sort(u):y;return Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(o).forEach(i=>{Object.getOwnPropertyDescriptor(o,i).enumerable&&g.push(i)}),g};function t(o,u,y,g,i,p,f=": "){let b="",m=0,h=o.next();if(!h.done){b+=u.spacingOuter;let d=y+u.indent;for(;!h.done;){if(b+=d,m++===u.maxWidth){b+="…";break}let S=p(h.value[0],u,d,g,i),E=p(h.value[1],u,d,g,i);b+=S+f+E,h=o.next(),h.done?u.min||(b+=","):b+=`,${u.spacingInner}`}b+=u.spacingOuter+y}return b}function l(o,u,y,g,i,p){let f="",b=0,m=o.next();if(!m.done){f+=u.spacingOuter;let h=y+u.indent;for(;!m.done;){if(f+=h,b++===u.maxWidth){f+="…";break}f+=p(m.value,u,h,g,i),m=o.next(),m.done?u.min||(f+=","):f+=`,${u.spacingInner}`}f+=u.spacingOuter+y}return f}function s(o,u,y,g,i,p){let f="";if(o.length){f+=u.spacingOuter;let b=y+u.indent;for(let m=0;m{let h=g.toString();if(h==="ArrayContaining"||h==="ArrayNotContaining")return++f>i.maxDepth?`[${h}]`:`${h+s}[${(0,r.printListItems)(g.sample,i,p,f,b,m)}]`;if(h==="ObjectContaining"||h==="ObjectNotContaining")return++f>i.maxDepth?`[${h}]`:`${h+s}{${(0,r.printObjectProperties)(g.sample,i,p,f,b,m)}}`;if(h==="StringMatching"||h==="StringNotMatching"||h==="StringContaining"||h==="StringNotContaining")return h+s+m(g.sample,i,p,f,b);if(typeof g.toAsymmetricMatcher!="function")throw new Error(`Asymmetric matcher ${g.constructor.name} does not implement toAsymmetricMatcher()`);return g.toAsymmetricMatcher()};e.serialize=_;var o=g=>g&&g.$$typeof===l;e.test=o;var u={serialize:_,test:o},y=u;e.default=y}}),sr=ue({"../../node_modules/pretty-format/build/plugins/DOMCollection.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.test=e.serialize=e.default=void 0;var r=Be(),t=" ",l=["DOMStringMap","NamedNodeMap"],s=/^(HTML\w*Collection|NodeList)$/,_=p=>l.indexOf(p)!==-1||s.test(p),o=p=>p&&p.constructor&&!!p.constructor.name&&_(p.constructor.name);e.test=o;var u=p=>p.constructor.name==="NamedNodeMap",y=(p,f,b,m,h,d)=>{let S=p.constructor.name;return++m>f.maxDepth?`[${S}]`:(f.min?"":S+t)+(l.indexOf(S)!==-1?`{${(0,r.printObjectProperties)(u(p)?Array.from(p).reduce((E,A)=>(E[A.name]=A.value,E),{}):{...p},f,b,m,h,d)}}`:`[${(0,r.printListItems)(Array.from(p),f,b,m,h,d)}]`)};e.serialize=y;var g={serialize:y,test:o},i=g;e.default=i}}),mr=ue({"../../node_modules/pretty-format/build/plugins/lib/escapeHTML.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.default=r;function r(t){return t.replace(//g,">")}}}),Ge=ue({"../../node_modules/pretty-format/build/plugins/lib/markup.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.printText=e.printProps=e.printElementAsLeaf=e.printElement=e.printComment=e.printChildren=void 0;var r=t(mr());function t(g){return g&&g.__esModule?g:{default:g}}var l=(g,i,p,f,b,m,h)=>{let d=f+p.indent,S=p.colors;return g.map(E=>{let A=i[E],w=h(A,p,d,b,m);return typeof A!="string"&&(w.indexOf(` -`)!==-1&&(w=p.spacingOuter+d+w+p.spacingOuter+f),w=`{${w}}`),`${p.spacingInner+f+S.prop.open+E+S.prop.close}=${S.value.open}${w}${S.value.close}`}).join("")};e.printProps=l;var s=(g,i,p,f,b,m)=>g.map(h=>i.spacingOuter+p+(typeof h=="string"?_(h,i):m(h,i,p,f,b))).join("");e.printChildren=s;var _=(g,i)=>{let p=i.colors.content;return p.open+(0,r.default)(g)+p.close};e.printText=_;var o=(g,i)=>{let p=i.colors.comment;return`${p.open}${p.close}`};e.printComment=o;var u=(g,i,p,f,b)=>{let m=f.colors.tag;return`${m.open}<${g}${i&&m.close+i+f.spacingOuter+b+m.open}${p?`>${m.close}${p}${f.spacingOuter}${b}${m.open}${m.close}`};e.printElement=u;var y=(g,i)=>{let p=i.colors.tag;return`${p.open}<${g}${p.close} …${p.open} />${p.close}`};e.printElementAsLeaf=y}}),fr=ue({"../../node_modules/pretty-format/build/plugins/DOMElement.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.test=e.serialize=e.default=void 0;var r=Ge(),t=1,l=3,s=8,_=11,o=/^((HTML|SVG)\w*)?Element$/,u=d=>{try{return typeof d.hasAttribute=="function"&&d.hasAttribute("is")}catch{return!1}},y=d=>{let S=d.constructor.name,{nodeType:E,tagName:A}=d,w=typeof A=="string"&&A.includes("-")||u(d);return E===t&&(o.test(S)||w)||E===l&&S==="Text"||E===s&&S==="Comment"||E===_&&S==="DocumentFragment"},g=d=>{var S;return((S=d==null?void 0:d.constructor)==null?void 0:S.name)&&y(d)};e.test=g;function i(d){return d.nodeType===l}function p(d){return d.nodeType===s}function f(d){return d.nodeType===_}var b=(d,S,E,A,w,C)=>{if(i(d))return(0,r.printText)(d.data,S);if(p(d))return(0,r.printComment)(d.data,S);let N=f(d)?"DocumentFragment":d.tagName.toLowerCase();return++A>S.maxDepth?(0,r.printElementAsLeaf)(N,S):(0,r.printElement)(N,(0,r.printProps)(f(d)?[]:Array.from(d.attributes,I=>I.name).sort(),f(d)?{}:Array.from(d.attributes).reduce((I,O)=>(I[O.name]=O.value,I),{}),S,E+S.indent,A,w,C),(0,r.printChildren)(Array.prototype.slice.call(d.childNodes||d.children),S,E+S.indent,A,w,C),S,E)};e.serialize=b;var m={serialize:b,test:g},h=m;e.default=h}}),gr=ue({"../../node_modules/pretty-format/build/plugins/Immutable.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.test=e.serialize=e.default=void 0;var r=Be(),t="@@__IMMUTABLE_ITERABLE__@@",l="@@__IMMUTABLE_LIST__@@",s="@@__IMMUTABLE_KEYED__@@",_="@@__IMMUTABLE_MAP__@@",o="@@__IMMUTABLE_ORDERED__@@",u="@@__IMMUTABLE_RECORD__@@",y="@@__IMMUTABLE_SEQ__@@",g="@@__IMMUTABLE_SET__@@",i="@@__IMMUTABLE_STACK__@@",p=O=>`Immutable.${O}`,f=O=>`[${O}]`,b=" ",m="…",h=(O,j,B,F,x,v,k)=>++F>j.maxDepth?f(p(k)):`${p(k)+b}{${(0,r.printIteratorEntries)(O.entries(),j,B,F,x,v)}}`;function d(O){let j=0;return{next(){if(j{let k=p(O._name||"Record");return++F>j.maxDepth?f(k):`${k+b}{${(0,r.printIteratorEntries)(d(O),j,B,F,x,v)}}`},E=(O,j,B,F,x,v)=>{let k=p("Seq");return++F>j.maxDepth?f(k):O[s]?`${k+b}{${O._iter||O._object?(0,r.printIteratorEntries)(O.entries(),j,B,F,x,v):m}}`:`${k+b}[${O._iter||O._array||O._collection||O._iterable?(0,r.printIteratorValues)(O.values(),j,B,F,x,v):m}]`},A=(O,j,B,F,x,v,k)=>++F>j.maxDepth?f(p(k)):`${p(k)+b}[${(0,r.printIteratorValues)(O.values(),j,B,F,x,v)}]`,w=(O,j,B,F,x,v)=>O[_]?h(O,j,B,F,x,v,O[o]?"OrderedMap":"Map"):O[l]?A(O,j,B,F,x,v,"List"):O[g]?A(O,j,B,F,x,v,O[o]?"OrderedSet":"Set"):O[i]?A(O,j,B,F,x,v,"Stack"):O[y]?E(O,j,B,F,x,v):S(O,j,B,F,x,v);e.serialize=w;var C=O=>O&&(O[t]===!0||O[u]===!0);e.test=C;var N={serialize:w,test:C},I=N;e.default=I}}),yr=ue({"../../node_modules/pretty-format/node_modules/react-is/cjs/react-is.development.js"(e){(function(){var r=Symbol.for("react.element"),t=Symbol.for("react.portal"),l=Symbol.for("react.fragment"),s=Symbol.for("react.strict_mode"),_=Symbol.for("react.profiler"),o=Symbol.for("react.provider"),u=Symbol.for("react.context"),y=Symbol.for("react.server_context"),g=Symbol.for("react.forward_ref"),i=Symbol.for("react.suspense"),p=Symbol.for("react.suspense_list"),f=Symbol.for("react.memo"),b=Symbol.for("react.lazy"),m=Symbol.for("react.offscreen"),h=!1,d=!1,S=!1,E=!1,A=!1,w;w=Symbol.for("react.module.reference");function C(P){return!!(typeof P=="string"||typeof P=="function"||P===l||P===_||A||P===s||P===i||P===p||E||P===m||h||d||S||typeof P=="object"&&P!==null&&(P.$$typeof===b||P.$$typeof===f||P.$$typeof===o||P.$$typeof===u||P.$$typeof===g||P.$$typeof===w||P.getModuleId!==void 0))}function N(P){if(typeof P=="object"&&P!==null){var V=P.$$typeof;switch(V){case r:var J=P.type;switch(J){case l:case _:case s:case i:case p:return J;default:var fe=J&&J.$$typeof;switch(fe){case y:case u:case g:case b:case f:case o:return fe;default:return V}}case t:return V}}}var I=u,O=o,j=r,B=g,F=l,x=b,v=f,k=t,re=_,D=s,H=i,W=p,G=!1,Z=!1;function ie(P){return G||(G=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.")),!1}function X(P){return Z||(Z=!0,console.warn("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.")),!1}function Q(P){return N(P)===u}function le(P){return N(P)===o}function ae(P){return typeof P=="object"&&P!==null&&P.$$typeof===r}function ee(P){return N(P)===g}function te(P){return N(P)===l}function se(P){return N(P)===b}function me(P){return N(P)===f}function a(P){return N(P)===t}function R(P){return N(P)===_}function L(P){return N(P)===s}function Y(P){return N(P)===i}function U(P){return N(P)===p}e.ContextConsumer=I,e.ContextProvider=O,e.Element=j,e.ForwardRef=B,e.Fragment=F,e.Lazy=x,e.Memo=v,e.Portal=k,e.Profiler=re,e.StrictMode=D,e.Suspense=H,e.SuspenseList=W,e.isAsyncMode=ie,e.isConcurrentMode=X,e.isContextConsumer=Q,e.isContextProvider=le,e.isElement=ae,e.isForwardRef=ee,e.isFragment=te,e.isLazy=se,e.isMemo=me,e.isPortal=a,e.isProfiler=R,e.isStrictMode=L,e.isSuspense=Y,e.isSuspenseList=U,e.isValidElementType=C,e.typeOf=N})()}}),hr=ue({"../../node_modules/pretty-format/node_modules/react-is/index.js"(e,r){r.exports=yr()}}),pr=ue({"../../node_modules/pretty-format/build/plugins/ReactElement.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.test=e.serialize=e.default=void 0;var r=s(hr()),t=Ge();function l(f){if(typeof WeakMap!="function")return null;var b=new WeakMap,m=new WeakMap;return(l=function(h){return h?m:b})(f)}function s(f,b){if(!b&&f&&f.__esModule)return f;if(f===null||typeof f!="object"&&typeof f!="function")return{default:f};var m=l(b);if(m&&m.has(f))return m.get(f);var h={},d=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var S in f)if(S!=="default"&&Object.prototype.hasOwnProperty.call(f,S)){var E=d?Object.getOwnPropertyDescriptor(f,S):null;E&&(E.get||E.set)?Object.defineProperty(h,S,E):h[S]=f[S]}return h.default=f,m&&m.set(f,h),h}var _=(f,b=[])=>(Array.isArray(f)?f.forEach(m=>{_(m,b)}):f!=null&&f!==!1&&b.push(f),b),o=f=>{let b=f.type;if(typeof b=="string")return b;if(typeof b=="function")return b.displayName||b.name||"Unknown";if(r.isFragment(f))return"React.Fragment";if(r.isSuspense(f))return"React.Suspense";if(typeof b=="object"&&b!==null){if(r.isContextProvider(f))return"Context.Provider";if(r.isContextConsumer(f))return"Context.Consumer";if(r.isForwardRef(f)){if(b.displayName)return b.displayName;let m=b.render.displayName||b.render.name||"";return m!==""?`ForwardRef(${m})`:"ForwardRef"}if(r.isMemo(f)){let m=b.displayName||b.type.displayName||b.type.name||"";return m!==""?`Memo(${m})`:"Memo"}}return"UNDEFINED"},u=f=>{let{props:b}=f;return Object.keys(b).filter(m=>m!=="children"&&b[m]!==void 0).sort()},y=(f,b,m,h,d,S)=>++h>b.maxDepth?(0,t.printElementAsLeaf)(o(f),b):(0,t.printElement)(o(f),(0,t.printProps)(u(f),f.props,b,m+b.indent,h,d,S),(0,t.printChildren)(_(f.props.children),b,m+b.indent,h,d,S),b,m);e.serialize=y;var g=f=>f!=null&&r.isElement(f);e.test=g;var i={serialize:y,test:g},p=i;e.default=p}}),dr=ue({"../../node_modules/pretty-format/build/plugins/ReactTestComponent.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.test=e.serialize=e.default=void 0;var r=Ge(),t=globalThis["jest-symbol-do-not-touch"]||globalThis.Symbol,l=typeof t=="function"&&t.for?t.for("react.test.json"):245830487,s=g=>{let{props:i}=g;return i?Object.keys(i).filter(p=>i[p]!==void 0).sort():[]},_=(g,i,p,f,b,m)=>++f>i.maxDepth?(0,r.printElementAsLeaf)(g.type,i):(0,r.printElement)(g.type,g.props?(0,r.printProps)(s(g),g.props,i,p+i.indent,f,b,m):"",g.children?(0,r.printChildren)(g.children,i,p+i.indent,f,b,m):"",i,p);e.serialize=_;var o=g=>g&&g.$$typeof===l;e.test=o;var u={serialize:_,test:o},y=u;e.default=y}}),Je=ue({"../../node_modules/pretty-format/build/index.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.DEFAULT_OPTIONS=void 0,e.format=te,e.plugins=void 0;var r=g(ur()),t=Be(),l=g(lr()),s=g(sr()),_=g(fr()),o=g(gr()),u=g(pr()),y=g(dr());function g(a){return a&&a.__esModule?a:{default:a}}var i=Object.prototype.toString,p=Date.prototype.toISOString,f=Error.prototype.toString,b=RegExp.prototype.toString,m=a=>typeof a.constructor=="function"&&a.constructor.name||"Object",h=a=>typeof window<"u"&&a===window,d=/^Symbol\((.*)\)(.*)$/,S=/\n/gi,E=class extends Error{constructor(a,R){super(a),this.stack=R,this.name=this.constructor.name}};function A(a){return a==="[object Array]"||a==="[object ArrayBuffer]"||a==="[object DataView]"||a==="[object Float32Array]"||a==="[object Float64Array]"||a==="[object Int8Array]"||a==="[object Int16Array]"||a==="[object Int32Array]"||a==="[object Uint8Array]"||a==="[object Uint8ClampedArray]"||a==="[object Uint16Array]"||a==="[object Uint32Array]"}function w(a){return Object.is(a,-0)?"-0":String(a)}function C(a){return`${a}n`}function N(a,R){return R?`[Function ${a.name||"anonymous"}]`:"[Function]"}function I(a){return String(a).replace(d,"Symbol($1)")}function O(a){return`[${f.call(a)}]`}function j(a,R,L,Y){if(a===!0||a===!1)return`${a}`;if(a===void 0)return"undefined";if(a===null)return"null";let U=typeof a;if(U==="number")return w(a);if(U==="bigint")return C(a);if(U==="string")return Y?`"${a.replace(/"|\\/g,"\\$&")}"`:`"${a}"`;if(U==="function")return N(a,R);if(U==="symbol")return I(a);let P=i.call(a);return P==="[object WeakMap]"?"WeakMap {}":P==="[object WeakSet]"?"WeakSet {}":P==="[object Function]"||P==="[object GeneratorFunction]"?N(a,R):P==="[object Symbol]"?I(a):P==="[object Date]"?isNaN(+a)?"Date { NaN }":p.call(a):P==="[object Error]"?O(a):P==="[object RegExp]"?L?b.call(a).replace(/[\\^$*+?.()|[\]{}]/g,"\\$&"):b.call(a):a instanceof Error?O(a):null}function B(a,R,L,Y,U,P){if(U.indexOf(a)!==-1)return"[Circular]";U=U.slice(),U.push(a);let V=++Y>R.maxDepth,J=R.min;if(R.callToJSON&&!V&&a.toJSON&&typeof a.toJSON=="function"&&!P)return k(a.toJSON(),R,L,Y,U,!0);let fe=i.call(a);return fe==="[object Arguments]"?V?"[Arguments]":`${J?"":"Arguments "}[${(0,t.printListItems)(a,R,L,Y,U,k)}]`:A(fe)?V?`[${a.constructor.name}]`:`${J||!R.printBasicPrototype&&a.constructor.name==="Array"?"":`${a.constructor.name} `}[${(0,t.printListItems)(a,R,L,Y,U,k)}]`:fe==="[object Map]"?V?"[Map]":`Map {${(0,t.printIteratorEntries)(a.entries(),R,L,Y,U,k," => ")}}`:fe==="[object Set]"?V?"[Set]":`Set {${(0,t.printIteratorValues)(a.values(),R,L,Y,U,k)}}`:V||h(a)?`[${m(a)}]`:`${J||!R.printBasicPrototype&&m(a)==="Object"?"":`${m(a)} `}{${(0,t.printObjectProperties)(a,R,L,Y,U,k)}}`}function F(a){return a.serialize!=null}function x(a,R,L,Y,U,P){let V;try{V=F(a)?a.serialize(R,L,Y,U,P,k):a.print(R,J=>k(J,L,Y,U,P),J=>{let fe=Y+L.indent;return fe+J.replace(S,` -${fe}`)},{edgeSpacing:L.spacingOuter,min:L.min,spacing:L.spacingInner},L.colors)}catch(J){throw new E(J.message,J.stack)}if(typeof V!="string")throw new Error(`pretty-format: Plugin must return type "string" but instead returned "${typeof V}".`);return V}function v(a,R){for(let L=0;La,W=H({callToJSON:!0,compareKeys:void 0,escapeRegex:!1,escapeString:!0,highlight:!1,indent:2,maxDepth:1/0,maxWidth:1/0,min:!1,plugins:[],printBasicPrototype:!0,printFunctionName:!0,theme:re});e.DEFAULT_OPTIONS=W;function G(a){if(Object.keys(a).forEach(R=>{if(!Object.prototype.hasOwnProperty.call(W,R))throw new Error(`pretty-format: Unknown option "${R}".`)}),a.min&&a.indent!==void 0&&a.indent!==0)throw new Error('pretty-format: Options "min" and "indent" cannot be used together.');if(a.theme!==void 0){if(a.theme===null)throw new Error('pretty-format: Option "theme" must not be null.');if(typeof a.theme!="object")throw new Error(`pretty-format: Option "theme" must be of type "object" but instead received "${typeof a.theme}".`)}}var Z=a=>D.reduce((R,L)=>{let Y=a.theme&&a.theme[L]!==void 0?a.theme[L]:re[L],U=Y&&r.default[Y];if(U&&typeof U.close=="string"&&typeof U.open=="string")R[L]=U;else throw new Error(`pretty-format: Option "theme" has a key "${L}" whose value "${Y}" is undefined in ansi-styles.`);return R},Object.create(null)),ie=()=>D.reduce((a,R)=>(a[R]={close:"",open:""},a),Object.create(null)),X=a=>(a==null?void 0:a.printFunctionName)??W.printFunctionName,Q=a=>(a==null?void 0:a.escapeRegex)??W.escapeRegex,le=a=>(a==null?void 0:a.escapeString)??W.escapeString,ae=a=>({callToJSON:(a==null?void 0:a.callToJSON)??W.callToJSON,colors:a!=null&&a.highlight?Z(a):ie(),compareKeys:typeof(a==null?void 0:a.compareKeys)=="function"||(a==null?void 0:a.compareKeys)===null?a.compareKeys:W.compareKeys,escapeRegex:Q(a),escapeString:le(a),indent:a!=null&&a.min?"":ee((a==null?void 0:a.indent)??W.indent),maxDepth:(a==null?void 0:a.maxDepth)??W.maxDepth,maxWidth:(a==null?void 0:a.maxWidth)??W.maxWidth,min:(a==null?void 0:a.min)??W.min,plugins:(a==null?void 0:a.plugins)??W.plugins,printBasicPrototype:(a==null?void 0:a.printBasicPrototype)??!0,printFunctionName:X(a),spacingInner:a!=null&&a.min?" ":` -`,spacingOuter:a!=null&&a.min?"":` -`});function ee(a){return new Array(a+1).join(" ")}function te(a,R){if(R&&(G(R),R.plugins)){let Y=v(R.plugins,a);if(Y!==null)return x(Y,a,ae(R),"",0,[])}let L=j(a,X(R),Q(R),le(R));return L!==null?L:B(a,ae(R),"",0,[])}var se={AsymmetricMatcher:l.default,DOMCollection:s.default,DOMElement:_.default,Immutable:o.default,ReactElement:u.default,ReactTestComponent:y.default};e.plugins=se;var me=te;e.default=me}}),wt=ue({"../../node_modules/diff-sequences/build/index.js"(e){Object.defineProperty(e,"__esModule",{value:!0}),e.default=b;var r="diff-sequences",t=0,l=(m,h,d,S,E)=>{let A=0;for(;m{let A=0;for(;m<=h&&d<=S&&E(h,S);)h-=1,S-=1,A+=1;return A},_=(m,h,d,S,E,A,w)=>{let C=0,N=-m,I=A[C],O=I;A[C]+=l(I+1,h,S+I-N+1,d,E);let j=m{let C=0,N=m,I=A[C],O=I;A[C]-=s(h,I-1,d,S+I-N-1,E);let j=m{let j=S-h,B=d-h,F=E-S-B,x=-F-(m-1),v=-F+(m-1),k=t,re=m{let j=E-d,B=d-h,F=E-S-B,x=F-m,v=F+m,k=t,re=m{let I=S-h,O=E-d,j=d-h,B=E-S,F=B-j,x=j,v=j;if(w[0]=h-1,C[0]=d,F%2===0){let k=(m||F)/2,re=(j+B)/2;for(let D=1;D<=re;D+=1)if(x=_(D,d,E,I,A,w,x),D{if(E-S{le(ee,se,te)},isCommon:(ee,te)=>ae(te,ee)}}let X=h,Q=d;h=S,d=E,S=X,E=Q}let{foundSubsequence:O,isCommon:j}=w[A?1:0];g(m,h,d,S,E,j,C,N,I);let{nChangePreceding:B,aEndPreceding:F,bEndPreceding:x,nCommonPreceding:v,aCommonPreceding:k,bCommonPreceding:re,nCommonFollowing:D,aCommonFollowing:H,bCommonFollowing:W,nChangeFollowing:G,aStartFollowing:Z,bStartFollowing:ie}=I;h{if(typeof h!="number")throw new TypeError(`${r}: ${m} typeof ${typeof h} is not a number`);if(!Number.isSafeInteger(h))throw new RangeError(`${r}: ${m} value ${h} is not a safe integer`);if(h<0)throw new RangeError(`${r}: ${m} value ${h} is a negative integer`)},f=(m,h)=>{let d=typeof h;if(d!=="function")throw new TypeError(`${r}: ${m} typeof ${d} is not a function`)};function b(m,h,d,S){p("aLength",m),p("bLength",h),f("isCommon",d),f("foundSubsequence",S);let E=l(0,m,0,h,d);if(E!==0&&S(E,0,0),m!==E||h!==E){let A=E,w=E,C=s(A,m-1,w,h-1,d),N=m-C,I=h-C,O=E+C;m!==O&&h!==O&&i(0,A,N,w,I,!1,[{foundSubsequence:S,isCommon:d}],[t],[t],{aCommonFollowing:t,aCommonPreceding:t,aEndPreceding:t,aStartFollowing:t,bCommonFollowing:t,bCommonPreceding:t,bEndPreceding:t,bStartFollowing:t,nChangeFollowing:t,nChangePreceding:t,nCommonFollowing:t,nCommonPreceding:t}),C!==0&&S(C,N,I)}}}}),Ct=ue({"../../node_modules/loupe/loupe.js"(e,r){(function(t,l){typeof e=="object"&&typeof r<"u"?l(e):typeof define=="function"&&define.amd?define(["exports"],l):(t=typeof globalThis<"u"?globalThis:t||self,l(t.loupe={}))})(e,function(t){function l(n){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?l=function(c){return typeof c}:l=function(c){return c&&typeof Symbol=="function"&&c.constructor===Symbol&&c!==Symbol.prototype?"symbol":typeof c},l(n)}function s(n,c){return _(n)||o(n,c)||u(n,c)||g()}function _(n){if(Array.isArray(n))return n}function o(n,c){if(!(typeof Symbol>"u"||!(Symbol.iterator in Object(n)))){var T=[],M=!0,$=!1,z=void 0;try{for(var q=n[Symbol.iterator](),K;!(M=(K=q.next()).done)&&(T.push(K.value),!(c&&T.length===c));M=!0);}catch(oe){$=!0,z=oe}finally{try{!M&&q.return!=null&&q.return()}finally{if($)throw z}}return T}}function u(n,c){if(n){if(typeof n=="string")return y(n,c);var T=Object.prototype.toString.call(n).slice(8,-1);if(T==="Object"&&n.constructor&&(T=n.constructor.name),T==="Map"||T==="Set")return Array.from(n);if(T==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(T))return y(n,c)}}function y(n,c){(c==null||c>n.length)&&(c=n.length);for(var T=0,M=new Array(c);T0&&arguments[0]!==void 0?arguments[0]:{},c=n.showHidden,T=c===void 0?!1:c,M=n.depth,$=M===void 0?2:M,z=n.colors,q=z===void 0?!1:z,K=n.customInspect,oe=K===void 0?!0:K,ne=n.showProxy,ge=ne===void 0?!1:ne,pe=n.maxArrayLength,Fe=pe===void 0?1/0:pe,Te=n.breakLength,be=Te===void 0?1/0:Te,we=n.seen,Ht=we===void 0?[]:we,it=n.truncate,Vt=it===void 0?1/0:it,at=n.stylize,Gt=at===void 0?String:at,Le={showHidden:!!T,depth:Number($),colors:!!q,customInspect:!!oe,showProxy:!!ge,maxArrayLength:Number(Fe),breakLength:Number(be),truncate:Number(Vt),seen:Ht,stylize:Gt};return Le.colors&&(Le.stylize=b),Le}function h(n,c){var T=arguments.length>2&&arguments[2]!==void 0?arguments[2]:f;n=String(n);var M=T.length,$=n.length;return M>c&&$>M?T:$>c&&$>M?"".concat(n.slice(0,c-M)).concat(T):n}function d(n,c,T){var M=arguments.length>3&&arguments[3]!==void 0?arguments[3]:", ";T=T||c.inspect;var $=n.length;if($===0)return"";for(var z=c.truncate,q="",K="",oe="",ne=0;ne<$;ne+=1){var ge=ne+1===n.length,pe=ne+2===n.length;oe="".concat(f,"(").concat(n.length-ne,")");var Fe=n[ne];c.truncate=z-q.length-(ge?0:M.length);var Te=K||T(Fe,c)+(ge?"":M),be=q.length+Te.length,we=be+oe.length;if(ge&&be>z&&q.length+oe.length<=z||!ge&&!pe&&we>z||(K=ge?"":T(n[ne+1],c)+(pe?"":M),!ge&&pe&&we>z&&be+K.length>z))break;if(q+=Te,!ge&&!pe&&be+K.length>=z){oe="".concat(f,"(").concat(n.length-ne-1,")");break}oe=""}return"".concat(q).concat(oe)}function S(n){return n.match(/^[a-zA-Z_][a-zA-Z_0-9]*$/)?n:JSON.stringify(n).replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'")}function E(n,c){var T=s(n,2),M=T[0],$=T[1];return c.truncate-=2,typeof M=="string"?M=S(M):typeof M!="number"&&(M="[".concat(c.inspect(M,c),"]")),c.truncate-=M.length,$=c.inspect($,c),"".concat(M,": ").concat($)}function A(n,c){var T=Object.keys(n).slice(n.length);if(!n.length&&!T.length)return"[]";c.truncate-=4;var M=d(n,c);c.truncate-=M.length;var $="";return T.length&&($=d(T.map(function(z){return[z,n[z]]}),c,E)),"[ ".concat(M).concat($?", ".concat($):""," ]")}var w=Function.prototype.toString,C=/\s*function(?:\s|\s*\/\*[^(?:*\/)]+\*\/\s*)*([^\s\(\/]+)/,N=512;function I(n){if(typeof n!="function")return null;var c="";if(typeof Function.prototype.name>"u"&&typeof n.name>"u"){var T=w.call(n);if(T.indexOf("(")>N)return c;var M=T.match(C);M&&(c=M[1])}else c=n.name;return c}var O=I,j=function(n){return typeof Buffer=="function"&&n instanceof Buffer?"Buffer":n[Symbol.toStringTag]?n[Symbol.toStringTag]:O(n.constructor)};function B(n,c){var T=j(n);c.truncate-=T.length+4;var M=Object.keys(n).slice(n.length);if(!n.length&&!M.length)return"".concat(T,"[]");for(var $="",z=0;z ").concat($)}function k(n){var c=[];return n.forEach(function(T,M){c.push([M,T])}),c}function re(n,c){var T=n.size-1;return T<=0?"Map{}":(c.truncate-=7,"Map{ ".concat(d(k(n),c,v)," }"))}var D=Number.isNaN||function(n){return n!==n};function H(n,c){return D(n)?c.stylize("NaN","number"):n===1/0?c.stylize("Infinity","number"):n===-1/0?c.stylize("-Infinity","number"):n===0?c.stylize(1/n===1/0?"+0":"-0","number"):c.stylize(h(n,c.truncate),"number")}function W(n,c){var T=h(n.toString(),c.truncate-1);return T!==f&&(T+="n"),c.stylize(T,"bigint")}function G(n,c){var T=n.toString().split("/")[2],M=c.truncate-(2+T.length),$=n.source;return c.stylize("/".concat(h($,M),"/").concat(T),"regexp")}function Z(n){var c=[];return n.forEach(function(T){c.push(T)}),c}function ie(n,c){return n.size===0?"Set{}":(c.truncate-=7,"Set{ ".concat(d(Z(n),c)," }"))}var X=new RegExp("['\\u0000-\\u001f\\u007f-\\u009f\\u00ad\\u0600-\\u0604\\u070f\\u17b4\\u17b5\\u200c-\\u200f\\u2028-\\u202f\\u2060-\\u206f\\ufeff\\ufff0-\\uffff]","g"),Q={"\b":"\\b"," ":"\\t","\n":"\\n","\f":"\\f","\r":"\\r","'":"\\'","\\":"\\\\"},le=16,ae=4;function ee(n){return Q[n]||"\\u".concat("0000".concat(n.charCodeAt(0).toString(le)).slice(-ae))}function te(n,c){return X.test(n)&&(n=n.replace(X,ee)),c.stylize("'".concat(h(n,c.truncate-2),"'"),"string")}function se(n){return"description"in Symbol.prototype?n.description?"Symbol(".concat(n.description,")"):"Symbol()":n.toString()}var me=function(){return"Promise{…}"};try{var a=process.binding("util"),R=a.getPromiseDetails,L=a.kPending,Y=a.kRejected;Array.isArray(R(Promise.resolve()))&&(me=function(n,c){var T=R(n),M=s(T,2),$=M[0],z=M[1];return $===L?"Promise{}":"Promise".concat($===Y?"!":"","{").concat(c.inspect(z,c),"}")})}catch{}var U=me;function P(n,c){var T=Object.getOwnPropertyNames(n),M=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(n):[];if(T.length===0&&M.length===0)return"{}";if(c.truncate-=4,c.seen=c.seen||[],c.seen.indexOf(n)>=0)return"[Circular]";c.seen.push(n);var $=d(T.map(function(K){return[K,n[K]]}),c,E),z=d(M.map(function(K){return[K,n[K]]}),c,E);c.seen.pop();var q="";return $&&z&&(q=", "),"{ ".concat($).concat(q).concat(z," }")}var V=typeof Symbol<"u"&&Symbol.toStringTag?Symbol.toStringTag:!1;function J(n,c){var T="";return V&&V in n&&(T=n[V]),T=T||O(n.constructor),(!T||T==="_class")&&(T=""),c.truncate-=T.length,"".concat(T).concat(P(n,c))}function fe(n,c){return n.length===0?"Arguments[]":(c.truncate-=13,"Arguments[ ".concat(d(n,c)," ]"))}var xt=["stack","line","column","name","message","fileName","lineNumber","columnNumber","number","description"];function kt(n,c){var T=Object.getOwnPropertyNames(n).filter(function(q){return xt.indexOf(q)===-1}),M=n.name;c.truncate-=M.length;var $="";typeof n.message=="string"?$=h(n.message,c.truncate):T.unshift("message"),$=$?": ".concat($):"",c.truncate-=$.length+5;var z=d(T.map(function(q){return[q,n[q]]}),c,E);return"".concat(M).concat($).concat(z?" { ".concat(z," }"):"")}function zt(n,c){var T=s(n,2),M=T[0],$=T[1];return c.truncate-=3,$?"".concat(c.stylize(M,"yellow"),"=").concat(c.stylize('"'.concat($,'"'),"string")):"".concat(c.stylize(M,"yellow"))}function De(n,c){return d(n,c,et,` -`)}function et(n,c){var T=n.getAttributeNames(),M=n.tagName.toLowerCase(),$=c.stylize("<".concat(M),"special"),z=c.stylize(">","special"),q=c.stylize(""),"special");c.truncate-=M.length*2+5;var K="";T.length>0&&(K+=" ",K+=d(T.map(function(ge){return[ge,n.getAttribute(ge)]}),c,zt," ")),c.truncate-=K.length;var oe=c.truncate,ne=De(n.children,c);return ne&&ne.length>oe&&(ne="".concat(f,"(").concat(n.children.length,")")),"".concat($).concat(K).concat(z).concat(ne).concat(q)}var vt=typeof Symbol=="function"&&typeof Symbol.for=="function",Ne=vt?Symbol.for("chai/inspect"):"@@chai/inspect",_e=!1;try{var tt=or("util");_e=tt.inspect?tt.inspect.custom:!1}catch{_e=!1}function rt(){this.key="chai/loupe__"+Math.random()+Date.now()}rt.prototype={get:function(n){return n[this.key]},has:function(n){return this.key in n},set:function(n,c){Object.isExtensible(n)&&Object.defineProperty(n,this.key,{value:c,configurable:!0})}};var $e=new(typeof WeakMap=="function"?WeakMap:rt),Re={},nt={undefined:function(n,c){return c.stylize("undefined","undefined")},null:function(n,c){return c.stylize(null,"null")},boolean:function(n,c){return c.stylize(n,"boolean")},Boolean:function(n,c){return c.stylize(n,"boolean")},number:H,Number:H,bigint:W,BigInt:W,string:te,String:te,function:x,Function:x,symbol:se,Symbol:se,Array:A,Date:F,Map:re,Set:ie,RegExp:G,Promise:U,WeakSet:function(n,c){return c.stylize("WeakSet{…}","special")},WeakMap:function(n,c){return c.stylize("WeakMap{…}","special")},Arguments:fe,Int8Array:B,Uint8Array:B,Uint8ClampedArray:B,Int16Array:B,Uint16Array:B,Int32Array:B,Uint32Array:B,Float32Array:B,Float64Array:B,Generator:function(){return""},DataView:function(){return""},ArrayBuffer:function(){return""},Error:kt,HTMLCollection:De,NodeList:De},Ut=function(n,c,T){return Ne in n&&typeof n[Ne]=="function"?n[Ne](c):_e&&_e in n&&typeof n[_e]=="function"?n[_e](c.depth,c):"inspect"in n&&typeof n.inspect=="function"?n.inspect(c.depth,c):"constructor"in n&&$e.has(n.constructor)?$e.get(n.constructor)(n,c):Re[T]?Re[T](n,c):""},Yt=Object.prototype.toString;function Ie(n,c){c=m(c),c.inspect=Ie;var T=c,M=T.customInspect,$=n===null?"null":l(n);if($==="object"&&($=Yt.call(n).slice(8,-1)),nt[$])return nt[$](n,c);if(M&&n){var z=Ut(n,c,$);if(z)return typeof z=="string"?z:Ie(z,c)}var q=n?Object.getPrototypeOf(n):!1;return q===Object.prototype||q===null?P(n,c):n&&typeof HTMLElement=="function"&&n instanceof HTMLElement?et(n,c):"constructor"in n?n.constructor!==Object?J(n,c):P(n,c):n===Object(n)?P(n,c):c.stylize(String(n),$)}function Wt(n,c){return $e.has(n)?!1:($e.set(n,c),!0)}function qt(n,c){return n in Re?!1:(Re[n]=c,!0)}var Kt=Ne;t.custom=Kt,t.default=Ie,t.inspect=Ie,t.registerConstructor=Wt,t.registerStringTag=qt,Object.defineProperty(t,"__esModule",{value:!0})})}}),he=de(Je(),1),ct=de(wt(),1),_r=Symbol("vitest:SAFE_COLORS"),br={bold:["\x1B[1m","\x1B[22m","\x1B[22m\x1B[1m"],dim:["\x1B[2m","\x1B[22m","\x1B[22m\x1B[2m"],italic:["\x1B[3m","\x1B[23m"],underline:["\x1B[4m","\x1B[24m"],inverse:["\x1B[7m","\x1B[27m"],hidden:["\x1B[8m","\x1B[28m"],strikethrough:["\x1B[9m","\x1B[29m"],black:["\x1B[30m","\x1B[39m"],red:["\x1B[31m","\x1B[39m"],green:["\x1B[32m","\x1B[39m"],yellow:["\x1B[33m","\x1B[39m"],blue:["\x1B[34m","\x1B[39m"],magenta:["\x1B[35m","\x1B[39m"],cyan:["\x1B[36m","\x1B[39m"],white:["\x1B[37m","\x1B[39m"],gray:["\x1B[90m","\x1B[39m"],bgBlack:["\x1B[40m","\x1B[49m"],bgRed:["\x1B[41m","\x1B[49m"],bgGreen:["\x1B[42m","\x1B[49m"],bgYellow:["\x1B[43m","\x1B[49m"],bgBlue:["\x1B[44m","\x1B[49m"],bgMagenta:["\x1B[45m","\x1B[49m"],bgCyan:["\x1B[46m","\x1B[49m"],bgWhite:["\x1B[47m","\x1B[49m"]},Or=Object.entries(br);function Xe(e){return String(e)}Xe.open="";Xe.close="";var Sr=Or.reduce((e,[r])=>(e[r]=Xe,e),{isColorSupported:!1});function Er(){return globalThis[_r]||Sr}function ut(e){if(e===void 0)return"undefined";if(e===null)return"null";if(Array.isArray(e))return"array";if(typeof e=="boolean")return"boolean";if(typeof e=="function")return"function";if(typeof e=="number")return"number";if(typeof e=="string")return"string";if(typeof e=="bigint")return"bigint";if(typeof e=="object"){if(e!=null){if(e.constructor===RegExp)return"regexp";if(e.constructor===Map)return"map";if(e.constructor===Set)return"set";if(e.constructor===Date)return"date"}return"object"}else if(typeof e=="symbol")return"symbol";throw new Error(`value of unknown type: ${e}`)}var Se=-1,Ee=1,je=0,Ce=class{constructor(e,r){xe(this,0);xe(this,1);this[0]=e,this[1]=r}},At="Compared values have no visual difference.",Tr="Compared values serialize to the same structure.\nPrinting internal object structure without calling `toJSON` instead.";function wr(e,r){return e.replace(/\s+$/,t=>r(t))}function Ze(e,r,t,l,s,_){return e.length!==0?t(`${l} ${wr(e,s)}`):l!==" "?t(l):r&&_.length!==0?t(`${l} ${_}`):""}function Pt(e,r,{aColor:t,aIndicator:l,changeLineTrailingSpaceColor:s,emptyFirstOrLastLinePlaceholder:_}){return Ze(e,r,t,l,s,_)}function Mt(e,r,{bColor:t,bIndicator:l,changeLineTrailingSpaceColor:s,emptyFirstOrLastLinePlaceholder:_}){return Ze(e,r,t,l,s,_)}function Nt(e,r,{commonColor:t,commonIndicator:l,commonLineTrailingSpaceColor:s,emptyFirstOrLastLinePlaceholder:_}){return Ze(e,r,t,l,s,_)}function lt(e,r,t,l,{patchColor:s}){return s(`@@ -${e+1},${r-e} +${t+1},${l-t} @@`)}function Cr(e,r){let t=e.length,l=r.contextLines,s=l+l,_=t,o=!1,u=0,y=0;for(;y!==t;){let w=y;for(;y!==t&&e[y][0]===je;)y+=1;if(w!==y)if(w===0)y>l&&(_-=y-l,o=!0);else if(y===t){let C=y-w;C>l&&(_-=C-l,o=!0)}else{let C=y-w;C>s&&(_-=C-s,u+=1)}for(;y!==t&&e[y][0]!==je;)y+=1}let g=u!==0||o;u!==0?_+=u+1:o&&(_+=1);let i=_-1,p=[],f=0;g&&p.push("");let b=0,m=0,h=0,d=0,S=w=>{let C=p.length;p.push(Nt(w,C===0||C===i,r)),h+=1,d+=1},E=w=>{let C=p.length;p.push(Pt(w,C===0||C===i,r)),h+=1},A=w=>{let C=p.length;p.push(Mt(w,C===0||C===i,r)),d+=1};for(y=0;y!==t;){let w=y;for(;y!==t&&e[y][0]===je;)y+=1;if(w!==y)if(w===0){y>l&&(w=y-l,b=w,m=w,h=b,d=m);for(let C=w;C!==y;C+=1)S(e[C][1])}else if(y===t){let C=y-w>l?w+l:y;for(let N=w;N!==C;N+=1)S(e[N][1])}else{let C=y-w;if(C>s){let N=w+l;for(let O=w;O!==N;O+=1)S(e[O][1]);p[f]=lt(b,h,m,d,r),f=p.length,p.push("");let I=C-s;b=h+I,m=d+I,h=b,d=m;for(let O=y-l;O!==y;O+=1)S(e[O][1])}else for(let N=w;N!==y;N+=1)S(e[N][1])}for(;y!==t&&e[y][0]===Se;)E(e[y][1]),y+=1;for(;y!==t&&e[y][0]===Ee;)A(e[y][1]),y+=1}return g&&(p[f]=lt(b,h,m,d,r)),p.join(` -`)}function Ar(e,r){return e.map((t,l,s)=>{let _=t[1],o=l===0||l===s.length-1;switch(t[0]){case Se:return Pt(_,o,r);case Ee:return Mt(_,o,r);default:return Nt(_,o,r)}}).join(` -`)}var ke=e=>e,$t=5,Pr=0;function Mr(){let e=Er();return{aAnnotation:"Expected",aColor:e.green,aIndicator:"-",bAnnotation:"Received",bColor:e.red,bIndicator:"+",changeColor:e.inverse,changeLineTrailingSpaceColor:ke,commonColor:e.dim,commonIndicator:" ",commonLineTrailingSpaceColor:ke,compareKeys:void 0,contextLines:$t,emptyFirstOrLastLinePlaceholder:"",expand:!0,includeChangeCounts:!1,omitAnnotationLines:!1,patchColor:e.yellow,truncateThreshold:Pr,truncateAnnotation:"... Diff result is truncated",truncateAnnotationColor:ke}}function Nr(e){return e&&typeof e=="function"?e:void 0}function $r(e){return typeof e=="number"&&Number.isSafeInteger(e)&&e>=0?e:$t}function Me(e={}){return{...Mr(),...e,compareKeys:Nr(e.compareKeys),contextLines:$r(e.contextLines)}}function Oe(e){return e.length===1&&e[0].length===0}function Rr(e){let r=0,t=0;return e.forEach(l=>{switch(l[0]){case Se:r+=1;break;case Ee:t+=1;break}}),{a:r,b:t}}function Ir({aAnnotation:e,aColor:r,aIndicator:t,bAnnotation:l,bColor:s,bIndicator:_,includeChangeCounts:o,omitAnnotationLines:u},y){if(u)return"";let g="",i="";if(o){let b=String(y.a),m=String(y.b),h=l.length-e.length,d=" ".repeat(Math.max(0,h)),S=" ".repeat(Math.max(0,-h)),E=m.length-b.length,A=" ".repeat(Math.max(0,E)),w=" ".repeat(Math.max(0,-E));g=`${d} ${t} ${A}${b}`,i=`${S} ${_} ${w}${m}`}let p=`${t} ${e}${g}`,f=`${_} ${l}${i}`;return`${r(p)} -${s(f)} - -`}function Rt(e,r,t){return Ir(t,Rr(e))+(t.expand?Ar(e,t):Cr(e,t))+(r?t.truncateAnnotationColor(` -${t.truncateAnnotation}`):"")}function Qe(e,r,t){let l=Me(t),[s,_]=It(Oe(e)?[]:e,Oe(r)?[]:r,l);return Rt(s,_,l)}function jr(e,r,t,l,s){if(Oe(e)&&Oe(t)&&(e=[],t=[]),Oe(r)&&Oe(l)&&(r=[],l=[]),e.length!==t.length||r.length!==l.length)return Qe(e,r,s);let[_,o]=It(t,l,s),u=0,y=0;return _.forEach(g=>{switch(g[0]){case Se:g[1]=e[u],u+=1;break;case Ee:g[1]=r[y],y+=1;break;default:g[1]=r[y],u+=1,y+=1}}),Rt(_,o,Me(s))}function It(e,r,t){let l=(t==null?void 0:t.truncateThreshold)??!1,s=Math.max(Math.floor((t==null?void 0:t.truncateThreshold)??0),0),_=l?Math.min(e.length,s):e.length,o=l?Math.min(r.length,s):r.length,u=_!==e.length||o!==r.length,y=(b,m)=>e[b]===r[m],g=[],i=0,p=0,f=(b,m,h)=>{for(;i!==m;i+=1)g.push(new Ce(Se,e[i]));for(;p!==h;p+=1)g.push(new Ce(Ee,r[p]));for(;b!==0;b-=1,i+=1,p+=1)g.push(new Ce(je,r[p]))};for((ct.default.default||ct.default)(_,o,y,f);i!==_;i+=1)g.push(new Ce(Se,e[i]));for(;p!==o;p+=1)g.push(new Ce(Ee,r[p]));return[g,u]}function Ue(e,r){let{commonColor:t}=Me(r);return t(e)}var{AsymmetricMatcher:Br,DOMCollection:Dr,DOMElement:Fr,Immutable:Lr,ReactElement:xr,ReactTestComponent:kr}=he.plugins,jt=[kr,xr,Fr,Dr,Lr,Br],Ye={plugins:jt},Bt={callToJSON:!1,maxDepth:10,plugins:jt};function zr(e,r,t){if(Object.is(e,r))return"";let l=ut(e),s=l,_=!1;if(l==="object"&&typeof e.asymmetricMatch=="function"){if(e.$$typeof!==Symbol.for("jest.asymmetricMatcher")||typeof e.getExpectedType!="function")return null;s=e.getExpectedType(),_=s==="string"}if(s!==ut(r)){let{aAnnotation:o,aColor:u,aIndicator:y,bAnnotation:g,bColor:i,bIndicator:p}=Me(t),f=We(Bt,t),b=(0,he.format)(e,f),m=(0,he.format)(r,f),h=`${u(`${y} ${o}:`)} -${b}`,d=`${i(`${p} ${g}:`)} -${m}`;return`${h} - -${d}`}if(_)return null;switch(l){case"string":return Qe(e.split(` -`),r.split(` -`),t);case"boolean":case"number":return vr(e,r,t);case"map":return ze(st(e),st(r),t);case"set":return ze(mt(e),mt(r),t);default:return ze(e,r,t)}}function vr(e,r,t){let l=(0,he.format)(e,Ye),s=(0,he.format)(r,Ye);return l===s?"":Qe(l.split(` -`),s.split(` -`),t)}function st(e){return new Map(Array.from(e.entries()).sort())}function mt(e){return new Set(Array.from(e.values()).sort())}function ze(e,r,t){let l,s=!1;try{let o=We(Ye,t);l=ft(e,r,o,t)}catch{s=!0}let _=Ue(At,t);if(l===void 0||l===_){let o=We(Bt,t);l=ft(e,r,o,t),l!==_&&!s&&(l=`${Ue(Tr,t)} - -${l}`)}return l}function We(e,r){let{compareKeys:t}=Me(r);return{...e,compareKeys:t}}function ft(e,r,t,l){let s={...t,indent:0},_=(0,he.format)(e,s),o=(0,he.format)(r,s);if(_===o)return Ue(At,l);{let u=(0,he.format)(e,t),y=(0,he.format)(r,t);return jr(u.split(` -`),y.split(` -`),_.split(` -`),o.split(` -`),l)}}var qe=de(Je(),1),Ur=de(Ct(),1),{AsymmetricMatcher:Yr,DOMCollection:Wr,DOMElement:qr,Immutable:Kr,ReactElement:Hr,ReactTestComponent:Vr}=qe.plugins,gt=[Vr,Hr,qr,Wr,Kr,Yr];function Ke(e,r=10,{maxLength:t,...l}={}){let s=t??1e4,_;try{_=(0,qe.format)(e,{maxDepth:r,escapeString:!1,plugins:gt,...l})}catch{_=(0,qe.format)(e,{callToJSON:!1,maxDepth:r,escapeString:!1,plugins:gt,...l})}return _.length>=s&&r>1?Ke(e,Math.floor(r/2)):_}var Gr=/%[sdjifoOcj%]/g;function Jr(...e){if(typeof e[0]!="string"){let _=[];for(let o=0;o{if(_==="%%")return"%";if(t>=r)return _;switch(_){case"%s":{let o=e[t++];return typeof o=="bigint"?`${o.toString()}n`:typeof o=="number"&&o===0&&1/o<0?"-0":typeof o=="object"&&o!==null?Ae(o,{depth:0,colors:!1,compact:3}):String(o)}case"%d":{let o=e[t++];return typeof o=="bigint"?`${o.toString()}n`:Number(o).toString()}case"%i":{let o=e[t++];return typeof o=="bigint"?`${o.toString()}n`:Number.parseInt(String(o)).toString()}case"%f":return Number.parseFloat(String(e[t++])).toString();case"%o":return Ae(e[t++],{showHidden:!0,showProxy:!0});case"%O":return Ae(e[t++]);case"%c":return t++,"";case"%j":try{return JSON.stringify(e[t++])}catch(o){let u=o.message;if(u.includes("circular structure")||u.includes("cyclic structures")||u.includes("cyclic object"))return"[Circular]";throw o}default:return _}});for(let _=e[t];tr.add(l);Object.getOwnPropertyNames(e).forEach(t),Object.getOwnPropertySymbols(e).forEach(t)}function Dt(e){let r=new Set;return Xr(e)?[]:(Zr(e,r),Array.from(r))}var Ft={forceWritable:!1};function yt(e,r=Ft){return Ve(e,new WeakMap,r)}function Ve(e,r,t=Ft){let l,s;if(r.has(e))return r.get(e);if(Array.isArray(e)){for(s=Array(l=e.length),r.set(e,s);l--;)s[l]=Ve(e[l],r,t);return s}if(Object.prototype.toString.call(e)==="[object Object]"){s=Object.create(Object.getPrototypeOf(e)),r.set(e,s);let _=Dt(e);for(let o of _){let u=Object.getOwnPropertyDescriptor(e,o);if(!u)continue;let y=Ve(e[o],r,t);t.forceWritable?Object.defineProperty(s,o,{enumerable:u.enumerable,configurable:!0,writable:!0,value:y}):"get"in u?Object.defineProperty(s,o,{...u,get(){return y}}):Object.defineProperty(s,o,{...u,value:y})}return s}return e}de(Je(),1);de(wt(),1);de(Ct(),1);var Qr="@@__IMMUTABLE_RECORD__@@",en="@@__IMMUTABLE_ITERABLE__@@";function tn(e){return e&&(e[en]||e[Qr])}var rn=Object.getPrototypeOf({});function ht(e){return e instanceof Error?`: ${e.message}`:typeof e=="string"?`: ${e}`:""}function Pe(e,r=new WeakMap){if(!e||typeof e=="string")return e;if(typeof e=="function")return`Function<${e.name||"anonymous"}>`;if(typeof e=="symbol")return e.toString();if(typeof e!="object")return e;if(tn(e))return Pe(e.toJSON(),r);if(e instanceof Promise||e.constructor&&e.constructor.prototype==="AsyncFunction")return"Promise";if(typeof Element<"u"&&e instanceof Element)return e.tagName;if(typeof e.asymmetricMatch=="function")return`${e.toString()} ${Jr(e.sample)}`;if(typeof e.toJSON=="function")return e.toJSON();if(r.has(e))return r.get(e);if(Array.isArray(e)){let t=new Array(e.length);return r.set(e,t),e.forEach((l,s)=>{try{t[s]=Pe(l,r)}catch(_){t[s]=ht(_)}}),t}else{let t=Object.create(null);r.set(e,t);let l=e;for(;l&&l!==rn;)Object.getOwnPropertyNames(l).forEach(s=>{if(!(s in t))try{t[s]=Pe(e[s],r)}catch(_){delete t[s],t[s]=ht(_)}}),l=Object.getPrototypeOf(l);return t}}function pt(e){return e.replace(/__(vite_ssr_import|vi_import)_\d+__\./g,"")}function nn(e,r){if(!e||typeof e!="object")return{message:e};if(e.stack&&(e.stackStr=String(e.stack)),e.name&&(e.nameStr=String(e.name)),e.showDiff||e.showDiff===void 0&&e.expected!==void 0&&e.actual!==void 0){let t=yt(e.actual,{forceWritable:!0}),l=yt(e.expected,{forceWritable:!0}),{replacedActual:s,replacedExpected:_}=Lt(t,l);e.diff=zr(_,s,{...r,...e.diffOptions})}typeof e.expected!="string"&&(e.expected=Ke(e.expected,10)),typeof e.actual!="string"&&(e.actual=Ke(e.actual,10));try{typeof e.message=="string"&&(e.message=pt(e.message)),typeof e.cause=="object"&&typeof e.cause.message=="string"&&(e.cause.message=pt(e.cause.message))}catch{}try{return Pe(e)}catch(t){return Pe(new Error(`Failed to fully serialize error: ${t==null?void 0:t.message} -Inner error message: ${e==null?void 0:e.message}`))}}function dt(e){return He(e)==="Object"&&typeof e.asymmetricMatch=="function"}function _t(e,r){let t=He(e),l=He(r);return t===l&&(t==="Object"||t==="Array")}function Lt(e,r,t=new WeakSet,l=new WeakSet){return _t(e,r)?t.has(e)||l.has(r)?{replacedActual:e,replacedExpected:r}:(t.add(e),l.add(r),Dt(r).forEach(s=>{let _=r[s],o=e[s];if(dt(_))_.asymmetricMatch(o)&&(e[s]=_);else if(dt(o))o.asymmetricMatch(_)&&(r[s]=o);else if(_t(o,_)){let u=Lt(o,_,t,l);e[s]=u.replacedActual,r[s]=u.replacedExpected}}),{replacedActual:e,replacedExpected:r}):{replacedActual:e,replacedExpected:r}}var an=(e=>(e.DONE="done",e.ERROR="error",e.ACTIVE="active",e.WAITING="waiting",e))(an||{}),ye={CALL:"storybook/instrumenter/call",SYNC:"storybook/instrumenter/sync",START:"storybook/instrumenter/start",BACK:"storybook/instrumenter/back",GOTO:"storybook/instrumenter/goto",NEXT:"storybook/instrumenter/next",END:"storybook/instrumenter/end"},bt={start:!1,back:!1,goto:!1,next:!1,end:!1},on=new Error("This function ran after the play function completed. Did you forget to `await` it?"),Ot=e=>Object.prototype.toString.call(e)==="[object Object]",cn=e=>Object.prototype.toString.call(e)==="[object Module]",un=e=>{if(!Ot(e)&&!cn(e))return!1;if(e.constructor===void 0)return!0;let r=e.constructor.prototype;return!!Ot(r)},ln=e=>{try{return new e.constructor}catch{return{}}},ve=()=>({renderPhase:void 0,isDebugging:!1,isPlaying:!1,isLocked:!1,cursor:0,calls:[],shadowCalls:[],callRefsByResult:new Map,chainedCallIds:new Set,ancestors:[],playUntil:void 0,resolvers:{},syncTimeout:void 0}),St=(e,r=!1)=>{let t=(r?e.shadowCalls:e.calls).filter(s=>s.retain);if(!t.length)return;let l=new Map(Array.from(e.callRefsByResult.entries()).filter(([,s])=>s.retain));return{cursor:t.length,calls:t,callRefsByResult:l}},sn=class{constructor(){var o;this.initialized=!1,this.channel=Zt.getChannel(),this.state=((o=ce.window)==null?void 0:o.parent.__STORYBOOK_ADDON_INTERACTIONS_INSTRUMENTER_STATE__)||{};let e=({storyId:u,isPlaying:y=!0,isDebugging:g=!1})=>{let i=this.getState(u);this.setState(u,{...ve(),...St(i,g),shadowCalls:g?i.shadowCalls:[],chainedCallIds:g?i.chainedCallIds:new Set,playUntil:g?i.playUntil:void 0,isPlaying:y,isDebugging:g}),this.sync(u)};this.channel.on(ot,e),this.channel.on(er,({storyId:u,newPhase:y})=>{let{isDebugging:g}=this.getState(u);this.setState(u,{renderPhase:y}),y==="preparing"&&g&&e({storyId:u}),y==="playing"&&e({storyId:u,isDebugging:g}),y==="played"&&this.setState(u,{isLocked:!1,isPlaying:!1,isDebugging:!1}),y==="errored"&&this.setState(u,{isLocked:!1,isPlaying:!1})}),this.channel.on(tr,()=>{this.initialized?this.cleanup():this.initialized=!0});let r=({storyId:u,playUntil:y})=>{this.getState(u).isDebugging||this.setState(u,({calls:i})=>({calls:[],shadowCalls:i.map(p=>({...p,status:"waiting"})),isDebugging:!0}));let g=this.getLog(u);this.setState(u,({shadowCalls:i})=>{var f;if(y||!g.length)return{playUntil:y};let p=i.findIndex(b=>b.id===g[0].callId);return{playUntil:(f=i.slice(0,p).filter(b=>b.interceptable&&!b.ancestors.length).slice(-1)[0])==null?void 0:f.id}}),this.channel.emit(ot,{storyId:u,isDebugging:!0})},t=({storyId:u})=>{var i;let y=this.getLog(u).filter(p=>!p.ancestors.length),g=y.reduceRight((p,f,b)=>p>=0||f.status==="waiting"?p:b,-1);r({storyId:u,playUntil:(i=y[g-1])==null?void 0:i.callId})},l=({storyId:u,callId:y})=>{var m;let{calls:g,shadowCalls:i,resolvers:p}=this.getState(u),f=g.find(({id:h})=>h===y),b=i.find(({id:h})=>h===y);if(!f&&b&&Object.values(p).length>0){let h=(m=this.getLog(u).find(d=>d.status==="waiting"))==null?void 0:m.callId;b.id!==h&&this.setState(u,{playUntil:b.id}),Object.values(p).forEach(d=>d())}else r({storyId:u,playUntil:y})},s=({storyId:u})=>{var g;let{resolvers:y}=this.getState(u);if(Object.values(y).length>0)Object.values(y).forEach(i=>i());else{let i=(g=this.getLog(u).find(p=>p.status==="waiting"))==null?void 0:g.callId;i?r({storyId:u,playUntil:i}):_({storyId:u})}},_=({storyId:u})=>{this.setState(u,{playUntil:void 0,isDebugging:!1}),Object.values(this.getState(u).resolvers).forEach(y=>y())};this.channel.on(ye.START,r),this.channel.on(ye.BACK,t),this.channel.on(ye.GOTO,l),this.channel.on(ye.NEXT,s),this.channel.on(ye.END,_)}getState(e){return this.state[e]||ve()}setState(e,r){var s;let t=this.getState(e),l=typeof r=="function"?r(t):r;this.state={...this.state,[e]:{...t,...l}},(s=ce.window)!=null&&s.parent&&(ce.window.parent.__STORYBOOK_ADDON_INTERACTIONS_INSTRUMENTER_STATE__=this.state)}cleanup(){var r;this.state=Object.entries(this.state).reduce((t,[l,s])=>{let _=St(s);return _&&(t[l]=Object.assign(ve(),_)),t},{});let e={controlStates:bt,logItems:[]};this.channel.emit(ye.SYNC,e),(r=ce.window)!=null&&r.parent&&(ce.window.parent.__STORYBOOK_ADDON_INTERACTIONS_INSTRUMENTER_STATE__=this.state)}getLog(e){let{calls:r,shadowCalls:t}=this.getState(e),l=[...t];r.forEach((_,o)=>{l[o]=_});let s=new Set;return l.reduceRight((_,o)=>(o.args.forEach(u=>{u!=null&&u.__callId__&&s.add(u.__callId__)}),o.path.forEach(u=>{u.__callId__&&s.add(u.__callId__)}),(o.interceptable||o.exception)&&!s.has(o.id)&&(_.unshift({callId:o.id,status:o.status,ancestors:o.ancestors}),s.add(o.id)),_),[])}instrument(e,r,t=0){if(!un(e))return e;let{mutate:l=!1,path:s=[]}=r,_=r.getKeys?r.getKeys(e,t):Object.keys(e);return t+=1,_.reduce((o,u)=>{let y=fn(e,u);if(typeof(y==null?void 0:y.get)=="function"){let i=()=>{var p,f;return(f=(p=y==null?void 0:y.get)==null?void 0:p.bind(e))==null?void 0:f()};return Object.defineProperty(o,u,{get:()=>this.instrument(i(),{...r,path:s.concat(u)},t)}),o}let g=e[u];return typeof g!="function"?(o[u]=this.instrument(g,{...r,path:s.concat(u)},t),o):"__originalFn__"in g&&typeof g.__originalFn__=="function"?(o[u]=g,o):(o[u]=(...i)=>this.track(u,g,e,i,r),o[u].__originalFn__=g,Object.defineProperty(o[u],"name",{value:u,writable:!1}),Object.keys(g).length>0&&Object.assign(o[u],this.instrument({...g},{...r,path:s.concat(u)},t)),o)},l?e:ln(e))}track(e,r,t,l,s){var h,d,S,E;let _=((h=l==null?void 0:l[0])==null?void 0:h.__storyId__)||((E=(S=(d=ce.__STORYBOOK_PREVIEW__)==null?void 0:d.selectionStore)==null?void 0:S.selection)==null?void 0:E.storyId),{cursor:o,ancestors:u}=this.getState(_);this.setState(_,{cursor:o+1});let y=`${u.slice(-1)[0]||_} [${o}] ${e}`,{path:g=[],intercept:i=!1,retain:p=!1}=s,f=typeof i=="function"?i(e,g):i,b={id:y,cursor:o,storyId:_,ancestors:u,path:g,method:e,args:l,interceptable:f,retain:p},m=(f&&!u.length?this.intercept:this.invoke).call(this,r,t,b,s);return this.instrument(m,{...s,mutate:!0,path:[{__callId__:b.id}]})}intercept(e,r,t,l){let{chainedCallIds:s,isDebugging:_,playUntil:o}=this.getState(t.storyId),u=s.has(t.id);return!_||u||o?(o===t.id&&this.setState(t.storyId,{playUntil:void 0}),this.invoke(e,r,t,l)):new Promise(y=>{this.setState(t.storyId,({resolvers:g})=>({isLocked:!1,resolvers:{...g,[t.id]:y}}))}).then(()=>(this.setState(t.storyId,y=>{let{[t.id]:g,...i}=y.resolvers;return{isLocked:!0,resolvers:i}}),this.invoke(e,r,t,l)))}invoke(e,r,t,l){let{callRefsByResult:s,renderPhase:_}=this.getState(t.storyId),o=25,u=(i,p,f)=>{var b,m,h;if(f.includes(i))return"[Circular]";if(f=[...f,i],p>o)return"...";if(s.has(i))return s.get(i);if(i instanceof Array)return i.map(d=>u(d,++p,f));if(i instanceof Date)return{__date__:{value:i.toISOString()}};if(i instanceof Error){let{name:d,message:S,stack:E}=i;return{__error__:{name:d,message:S,stack:E}}}if(i instanceof RegExp){let{flags:d,source:S}=i;return{__regexp__:{flags:d,source:S}}}if(i instanceof((b=ce.window)==null?void 0:b.HTMLElement)){let{prefix:d,localName:S,id:E,classList:A,innerText:w}=i,C=Array.from(A);return{__element__:{prefix:d,localName:S,id:E,classNames:C,innerText:w}}}return typeof i=="function"?{__function__:{name:"getMockName"in i?i.getMockName():i.name}}:typeof i=="symbol"?{__symbol__:{description:i.description}}:typeof i=="object"&&((m=i==null?void 0:i.constructor)!=null&&m.name)&&((h=i==null?void 0:i.constructor)==null?void 0:h.name)!=="Object"?{__class__:{name:i.constructor.name}}:Object.prototype.toString.call(i)==="[object Object]"?Object.fromEntries(Object.entries(i).map(([d,S])=>[d,u(S,++p,f)])):i},y={...t,args:t.args.map(i=>u(i,0,[]))};t.path.forEach(i=>{i!=null&&i.__callId__&&this.setState(t.storyId,({chainedCallIds:p})=>({chainedCallIds:new Set(Array.from(p).concat(i.__callId__))}))});let g=i=>{if(i instanceof Error){let{name:p,message:f,stack:b,callId:m=t.id}=i,{showDiff:h=void 0,diff:d=void 0,actual:S=void 0,expected:E=void 0}=i.name==="AssertionError"?nn(i):i,A={name:p,message:f,stack:b,callId:m,showDiff:h,diff:d,actual:S,expected:E};if(this.update({...y,status:"error",exception:A}),this.setState(t.storyId,w=>({callRefsByResult:new Map([...Array.from(w.callRefsByResult.entries()),[i,{__callId__:t.id,retain:t.retain}]])})),t.ancestors.length)throw Object.prototype.hasOwnProperty.call(i,"callId")||Object.defineProperty(i,"callId",{value:t.id}),i}throw i};try{if(_==="played"&&!t.retain)throw on;let i=(l.getArgs?l.getArgs(t,this.getState(t.storyId)):t.args).map(f=>typeof f!="function"||Object.keys(f).length?f:(...b)=>{let{cursor:m,ancestors:h}=this.getState(t.storyId);this.setState(t.storyId,{cursor:0,ancestors:[...h,t.id]});let d=()=>this.setState(t.storyId,{cursor:m,ancestors:h}),S=!1;try{let E=f(...b);return E instanceof Promise?(S=!0,E.finally(d)):E}finally{S||d()}}),p=e.apply(r,i);return p&&["object","function","symbol"].includes(typeof p)&&this.setState(t.storyId,f=>({callRefsByResult:new Map([...Array.from(f.callRefsByResult.entries()),[p,{__callId__:t.id,retain:t.retain}]])})),this.update({...y,status:p instanceof Promise?"active":"done"}),p instanceof Promise?p.then(f=>(this.update({...y,status:"done"}),f),g):p}catch(i){return g(i)}}update(e){this.channel.emit(ye.CALL,e),this.setState(e.storyId,({calls:r})=>{let t=r.concat(e).reduce((l,s)=>Object.assign(l,{[s.id]:s}),{});return{calls:Object.values(t).sort((l,s)=>l.id.localeCompare(s.id,void 0,{numeric:!0}))}}),this.sync(e.storyId)}sync(e){let r=()=>{var g;let{isLocked:t,isPlaying:l}=this.getState(e),s=this.getLog(e),_=(g=s.filter(({ancestors:i})=>!i.length).find(i=>i.status==="waiting"))==null?void 0:g.callId,o=s.some(i=>i.status==="active");if(t||o||s.length===0){let i={controlStates:bt,logItems:s};this.channel.emit(ye.SYNC,i);return}let u=s.some(i=>i.status==="done"||i.status==="error"),y={controlStates:{start:u,back:u,goto:!0,next:l,end:l},logItems:s,pausedAt:_};this.channel.emit(ye.SYNC,y)};this.setState(e,({syncTimeout:t})=>(clearTimeout(t),{syncTimeout:setTimeout(r,0)}))}};function mn(e,r={}){var t,l,s,_,o,u,y,g;try{let i=!1,p=!1;return(s=(l=(t=ce.window)==null?void 0:t.location)==null?void 0:l.search)!=null&&s.includes("instrument=true")?i=!0:(u=(o=(_=ce.window)==null?void 0:_.location)==null?void 0:o.search)!=null&&u.includes("instrument=false")&&(p=!0),((y=ce.window)==null?void 0:y.parent)===ce.window&&!i||p?e:(ce.window&&!ce.window.__STORYBOOK_ADDON_INTERACTIONS_INSTRUMENTER__&&(ce.window.__STORYBOOK_ADDON_INTERACTIONS_INSTRUMENTER__=new sn),((g=ce.window)==null?void 0:g.__STORYBOOK_ADDON_INTERACTIONS_INSTRUMENTER__).instrument(e,r))}catch(i){return Qt.warn(i),e}}function fn(e,r){let t=e;for(;t!=null;){let l=Object.getOwnPropertyDescriptor(t,r);if(l)return l;t=Object.getPrototypeOf(t)}}var{step:yn}=mn({step:(e,r,t)=>r(t)},{intercept:!0}),hn={throwPlayFunctionExceptions:!1};export{hn as parameters,yn as runStep}; diff --git a/storybook-static/assets/preview-198e8472.js b/storybook-static/assets/preview-198e8472.js deleted file mode 100644 index 3bdc896..0000000 --- a/storybook-static/assets/preview-198e8472.js +++ /dev/null @@ -1 +0,0 @@ -var K=!0,S="Invariant failed";function A(o,t){if(!o){if(K)throw new Error(S);var e=typeof t=="function"?t():t,l=e?"".concat(S,": ").concat(e):S;throw new Error(l)}}const{useEffect:W}=__STORYBOOK_MODULE_PREVIEW_API__,{global:d}=__STORYBOOK_MODULE_GLOBAL__;function H(){let o=d.document.documentElement,t=Math.max(o.scrollHeight,o.offsetHeight);return{width:Math.max(o.scrollWidth,o.offsetWidth),height:t}}function G(){let o=d.document.createElement("canvas");o.id="storybook-addon-measure";let t=o.getContext("2d");A(t!=null);let{width:e,height:l}=H();return P(o,t,{width:e,height:l}),o.style.position="absolute",o.style.left="0",o.style.top="0",o.style.zIndex="2147483647",o.style.pointerEvents="none",d.document.body.appendChild(o),{canvas:o,context:t,width:e,height:l}}function P(o,t,{width:e,height:l}){o.style.width=`${e}px`,o.style.height=`${l}px`;let i=d.window.devicePixelRatio;o.width=Math.floor(e*i),o.height=Math.floor(l*i),t.scale(i,i)}var s={};function U(){s.canvas||(s=G())}function C(){s.context&&s.context.clearRect(0,0,s.width??0,s.height??0)}function V(o){C(),o(s.context)}function Z(){A(s.canvas,"Canvas should exist in the state."),A(s.context,"Context should exist in the state."),P(s.canvas,s.context,{width:0,height:0});let{width:o,height:t}=H();P(s.canvas,s.context,{width:o,height:t}),s.width=o,s.height=t}function J(){var o;s.canvas&&(C(),(o=s.canvas.parentNode)==null||o.removeChild(s.canvas),s={})}var w={margin:"#f6b26b",border:"#ffe599",padding:"#93c47d",content:"#6fa8dc",text:"#232020"},p=6;function B(o,{x:t,y:e,w:l,h:i,r:n}){t=t-l/2,e=e-i/2,l<2*n&&(n=l/2),i<2*n&&(n=i/2),o.beginPath(),o.moveTo(t+n,e),o.arcTo(t+l,e,t+l,e+i,n),o.arcTo(t+l,e+i,t,e+i,n),o.arcTo(t,e+i,t,e,n),o.arcTo(t,e,t+l,e,n),o.closePath()}function Q(o,{padding:t,border:e,width:l,height:i,top:n,left:f}){let r=l-e.left-e.right-t.left-t.right,a=i-t.top-t.bottom-e.top-e.bottom,h=f+e.left+t.left,u=n+e.top+t.top;return o==="top"?h+=r/2:o==="right"?(h+=r,u+=a/2):o==="bottom"?(h+=r/2,u+=a):o==="left"?u+=a/2:o==="center"&&(h+=r/2,u+=a/2),{x:h,y:u}}function x(o,t,{margin:e,border:l,padding:i},n,f){let r=m=>0,a=0,h=0,u=f?1:.5,c=f?n*2:0;return o==="padding"?r=m=>i[m]*u+c:o==="border"?r=m=>i[m]+l[m]*u+c:o==="margin"&&(r=m=>i[m]+l[m]+e[m]*u+c),t==="top"?h=-r("top"):t==="right"?a=r("right"):t==="bottom"?h=r("bottom"):t==="left"&&(a=-r("left")),{offsetX:a,offsetY:h}}function tt(o,t){return Math.abs(o.x-t.x){let r=l&&n.position==="center"?lt(o,t,n):et(o,t,n,i[f-1],l);i[f]=r})}function nt(o,t,e,l){let i=e.reduce((n,f)=>{var r;return Object.prototype.hasOwnProperty.call(n,f.position)||(n[f.position]=[]),(r=n[f.position])==null||r.push(f),n},{});i.top&&v(o,t,i.top,l),i.right&&v(o,t,i.right,l),i.bottom&&v(o,t,i.bottom,l),i.left&&v(o,t,i.left,l),i.center&&v(o,t,i.center,l)}var L={margin:"#f6b26ba8",border:"#ffe599a8",padding:"#93c47d8c",content:"#6fa8dca8"},O=30;function g(o){return parseInt(o.replace("px",""),10)}function b(o){return Number.isInteger(o)?o:o.toFixed(2)}function _(o){return o.filter(t=>t.text!==0&&t.text!=="0")}function rt(o){let t={top:d.window.scrollY,bottom:d.window.scrollY+d.window.innerHeight,left:d.window.scrollX,right:d.window.scrollX+d.window.innerWidth},e={top:Math.abs(t.top-o.top),bottom:Math.abs(t.bottom-o.bottom),left:Math.abs(t.left-o.left),right:Math.abs(t.right-o.right)};return{x:e.left>e.right?"left":"right",y:e.top>e.bottom?"top":"bottom"}}function ft(o){let t=d.getComputedStyle(o),{top:e,left:l,right:i,bottom:n,width:f,height:r}=o.getBoundingClientRect(),{marginTop:a,marginBottom:h,marginLeft:u,marginRight:c,paddingTop:m,paddingBottom:E,paddingLeft:F,paddingRight:I,borderBottomWidth:D,borderTopWidth:$,borderLeftWidth:N,borderRightWidth:q}=t;e=e+d.window.scrollY,l=l+d.window.scrollX,n=n+d.window.scrollY,i=i+d.window.scrollX;let y={top:g(a),bottom:g(h),left:g(u),right:g(c)},z={top:g(m),bottom:g(E),left:g(F),right:g(I)},j={top:g($),bottom:g(D),left:g(N),right:g(q)},T={top:e-y.top,bottom:n+y.bottom,left:l-y.left,right:i+y.right};return{margin:y,padding:z,border:j,top:e,left:l,bottom:n,right:i,width:f,height:r,extremities:T,floatingAlignment:rt(T)}}function at(o,{margin:t,width:e,height:l,top:i,left:n,bottom:f,right:r}){let a=l+t.bottom+t.top;o.fillStyle=L.margin,o.fillRect(n,i-t.top,e,t.top),o.fillRect(r,i-t.top,t.right,a),o.fillRect(n,f,e,t.bottom),o.fillRect(n-t.left,i-t.top,t.left,a);let h=[{type:"margin",text:b(t.top),position:"top"},{type:"margin",text:b(t.right),position:"right"},{type:"margin",text:b(t.bottom),position:"bottom"},{type:"margin",text:b(t.left),position:"left"}];return _(h)}function ht(o,{padding:t,border:e,width:l,height:i,top:n,left:f,bottom:r,right:a}){let h=l-e.left-e.right,u=i-t.top-t.bottom-e.top-e.bottom;o.fillStyle=L.padding,o.fillRect(f+e.left,n+e.top,h,t.top),o.fillRect(a-t.right-e.right,n+t.top+e.top,t.right,u),o.fillRect(f+e.left,r-t.bottom-e.bottom,h,t.bottom),o.fillRect(f+e.left,n+t.top+e.top,t.left,u);let c=[{type:"padding",text:t.top,position:"top"},{type:"padding",text:t.right,position:"right"},{type:"padding",text:t.bottom,position:"bottom"},{type:"padding",text:t.left,position:"left"}];return _(c)}function st(o,{border:t,width:e,height:l,top:i,left:n,bottom:f,right:r}){let a=l-t.top-t.bottom;o.fillStyle=L.border,o.fillRect(n,i,e,t.top),o.fillRect(n,f-t.bottom,e,t.bottom),o.fillRect(n,i+t.top,t.left,a),o.fillRect(r-t.right,i+t.top,t.right,a);let h=[{type:"border",text:t.top,position:"top"},{type:"border",text:t.right,position:"right"},{type:"border",text:t.bottom,position:"bottom"},{type:"border",text:t.left,position:"left"}];return _(h)}function ut(o,{padding:t,border:e,width:l,height:i,top:n,left:f}){let r=l-e.left-e.right-t.left-t.right,a=i-t.top-t.bottom-e.top-e.bottom;return o.fillStyle=L.content,o.fillRect(f+e.left+t.left,n+e.top+t.top,r,a),[{type:"content",position:"center",text:`${b(r)} x ${b(a)}`}]}function dt(o){return t=>{if(o&&t){let e=ft(o),l=at(t,e),i=ht(t,e),n=st(t,e),f=ut(t,e),r=e.width<=O*3||e.height<=O;nt(t,e,[...f,...i,...n,...l],r)}}}function mt(o){V(dt(o))}var ct=(o,t)=>{let e=d.document.elementFromPoint(o,t),l=i=>{if(i&&i.shadowRoot){let n=i.shadowRoot.elementFromPoint(o,t);return i.isEqualNode(n)?i:n.shadowRoot?l(n):n}return i};return l(e)||e},R,M={x:0,y:0};function Y(o,t){R=ct(o,t),mt(R)}var gt=(o,t)=>{let{measureEnabled:e}=t.globals;return W(()=>{let l=i=>{window.requestAnimationFrame(()=>{i.stopPropagation(),M.x=i.clientX,M.y=i.clientY})};return document.addEventListener("pointermove",l),()=>{document.removeEventListener("pointermove",l)}},[]),W(()=>{let l=n=>{window.requestAnimationFrame(()=>{n.stopPropagation(),Y(n.clientX,n.clientY)})},i=()=>{window.requestAnimationFrame(()=>{Z()})};return t.viewMode==="story"&&e&&(document.addEventListener("pointerover",l),U(),window.addEventListener("resize",i),Y(M.x,M.y)),()=>{window.removeEventListener("resize",i),J()}},[e,t.viewMode]),o()},pt="measureEnabled",wt=[gt],bt={[pt]:!1};export{wt as decorators,bt as initialGlobals}; diff --git a/storybook-static/assets/preview-2ff2accb.js b/storybook-static/assets/preview-2ff2accb.js deleted file mode 100644 index f726582..0000000 --- a/storybook-static/assets/preview-2ff2accb.js +++ /dev/null @@ -1 +0,0 @@ -import"./index-1b441bc2.js";const{global:O}=__STORYBOOK_MODULE_GLOBAL__,{makeDecorator:E,addons:_}=__STORYBOOK_MODULE_PREVIEW_API__,{STORY_CHANGED:l,SELECT_STORY:L}=__STORYBOOK_MODULE_CORE_EVENTS__;var c="links",{document:i,HTMLElement:m}=O,v=e=>_.getChannel().emit(L,e),o=e=>{let{target:t}=e;if(!(t instanceof m))return;let s=t,{sbKind:a,sbStory:r}=s.dataset;(a||r)&&(e.preventDefault(),v({kind:a,story:r}))},n=!1,d=()=>{n||(n=!0,i.addEventListener("click",o))},k=()=>{n&&(n=!1,i.removeEventListener("click",o))},R=E({name:"withLinks",parameterName:c,wrapper:(e,t)=>(d(),_.getChannel().once(l,k),e(t))}),T=[R];export{T as decorators}; diff --git a/storybook-static/assets/preview-344011ce.js b/storybook-static/assets/preview-344011ce.js deleted file mode 100644 index a494c6b..0000000 --- a/storybook-static/assets/preview-344011ce.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as a}from"./iframe-33901838.js";import"../sb-preview/runtime.js";const{global:i}=__STORYBOOK_MODULE_GLOBAL__;var s=Object.entries(i.TAGS_OPTIONS??{}).reduce((e,r)=>{let[t,o]=r;return o.excludeFromDocsStories&&(e[t]=!0),e},{}),n={docs:{renderer:async()=>{let{DocsRenderer:e}=await a(()=>import("./DocsRenderer-PKQXORMH-b0610b88.js").then(r=>r.ai),["./DocsRenderer-PKQXORMH-b0610b88.js","./iframe-33901838.js","./index-f1f2c4b1.js","./client-e941fabf.js","./index-5f347087.js","./index-1b441bc2.js","./isArray-03ed71c9.js","./index-356e4a49.js"],import.meta.url);return new e},stories:{filter:e=>{var r;return(e.tags||[]).filter(t=>s[t]).length===0&&!((r=e.parameters.docs)!=null&&r.disable)}}}};export{n as parameters}; diff --git a/storybook-static/assets/preview-5435dc72.js b/storybook-static/assets/preview-5435dc72.js deleted file mode 100644 index 06c9298..0000000 --- a/storybook-static/assets/preview-5435dc72.js +++ /dev/null @@ -1 +0,0 @@ -var t={viewport:"reset",viewportRotated:!1};export{t as initialGlobals}; diff --git a/storybook-static/assets/preview-9cbeee46.js b/storybook-static/assets/preview-9cbeee46.js deleted file mode 100644 index 87a74bf..0000000 --- a/storybook-static/assets/preview-9cbeee46.js +++ /dev/null @@ -1,20 +0,0 @@ -import{d as E}from"./index-356e4a49.js";const{useMemo:b,useEffect:v}=__STORYBOOK_MODULE_PREVIEW_API__,{global:M}=__STORYBOOK_MODULE_GLOBAL__,{logger:h}=__STORYBOOK_MODULE_CLIENT_LOGGER__;var p="backgrounds",{document:l,window:B}=M,x=()=>B.matchMedia("(prefers-reduced-motion: reduce)").matches,O=(r,e=[],a)=>{if(r==="transparent")return"transparent";if(e.find(d=>d.value===r))return r;let n=e.find(d=>d.name===a);if(n)return n.value;if(a){let d=e.map(i=>i.name).join(", ");h.warn(E` - Backgrounds Addon: could not find the default color "${a}". - These are the available colors for your story based on your configuration: - ${d}. - `)}return"transparent"},k=r=>{(Array.isArray(r)?r:[r]).forEach(S)},S=r=>{var a;let e=l.getElementById(r);e&&((a=e.parentElement)==null||a.removeChild(e))},w=(r,e)=>{let a=l.getElementById(r);if(a)a.innerHTML!==e&&(a.innerHTML=e);else{let n=l.createElement("style");n.setAttribute("id",r),n.innerHTML=e,l.head.appendChild(n)}},A=(r,e,a)=>{var d;let n=l.getElementById(r);if(n)n.innerHTML!==e&&(n.innerHTML=e);else{let i=l.createElement("style");i.setAttribute("id",r),i.innerHTML=e;let o=`addon-backgrounds-grid${a?`-docs-${a}`:""}`,t=l.getElementById(o);t?(d=t.parentElement)==null||d.insertBefore(i,t):l.head.appendChild(i)}},L=(r,e)=>{var c;let{globals:a,parameters:n}=e,d=(c=a[p])==null?void 0:c.value,i=n[p],o=b(()=>i.disable?"transparent":O(d,i.values,i.default),[i,d]),t=b(()=>o&&o!=="transparent",[o]),s=e.viewMode==="docs"?`#anchor--${e.id} .docs-story`:".sb-show-main",u=b(()=>` - ${s} { - background: ${o} !important; - ${x()?"":"transition: background-color 0.3s;"} - } - `,[o,s]);return v(()=>{let g=e.viewMode==="docs"?`addon-backgrounds-docs-${e.id}`:"addon-backgrounds-color";if(!t){k(g);return}A(g,u,e.viewMode==="docs"?e.id:null)},[t,u,e]),r()},T=(r,e)=>{var y;let{globals:a,parameters:n}=e,d=n[p].grid,i=((y=a[p])==null?void 0:y.grid)===!0&&d.disable!==!0,{cellAmount:o,cellSize:t,opacity:s}=d,u=e.viewMode==="docs",c=n.layout===void 0||n.layout==="padded"?16:0,g=d.offsetX??(u?20:c),m=d.offsetY??(u?20:c),$=b(()=>{let f=e.viewMode==="docs"?`#anchor--${e.id} .docs-story`:".sb-show-main",_=[`${t*o}px ${t*o}px`,`${t*o}px ${t*o}px`,`${t}px ${t}px`,`${t}px ${t}px`].join(", ");return` - ${f} { - background-size: ${_} !important; - background-position: ${g}px ${m}px, ${g}px ${m}px, ${g}px ${m}px, ${g}px ${m}px !important; - background-blend-mode: difference !important; - background-image: linear-gradient(rgba(130, 130, 130, ${s}) 1px, transparent 1px), - linear-gradient(90deg, rgba(130, 130, 130, ${s}) 1px, transparent 1px), - linear-gradient(rgba(130, 130, 130, ${s/2}) 1px, transparent 1px), - linear-gradient(90deg, rgba(130, 130, 130, ${s/2}) 1px, transparent 1px) !important; - } - `},[t]);return v(()=>{let f=e.viewMode==="docs"?`addon-backgrounds-grid-docs-${e.id}`:"addon-backgrounds-grid";if(!i){k(f);return}w(f,$)},[i,$,e]),r()},I=[T,L],G={[p]:{grid:{cellSize:20,opacity:.5,cellAmount:5},values:[{name:"light",value:"#F8F8F8"},{name:"dark",value:"#333333"}]}},R={[p]:null};export{I as decorators,R as initialGlobals,G as parameters}; diff --git a/storybook-static/assets/preview-a967b5ae.js b/storybook-static/assets/preview-a967b5ae.js deleted file mode 100644 index 38f360a..0000000 --- a/storybook-static/assets/preview-a967b5ae.js +++ /dev/null @@ -1,396 +0,0 @@ -import{d as $}from"./index-356e4a49.js";const{useMemo:x,useEffect:f}=__STORYBOOK_MODULE_PREVIEW_API__,{global:p}=__STORYBOOK_MODULE_GLOBAL__;var u=i=>{(Array.isArray(i)?i:[i]).forEach(r)},r=i=>{let t=typeof i=="string"?i:i.join(""),o=p.document.getElementById(t);o&&o.parentElement&&o.parentElement.removeChild(o)},b=(i,t)=>{let o=p.document.getElementById(i);if(o)o.innerHTML!==t&&(o.innerHTML=t);else{let n=p.document.createElement("style");n.setAttribute("id",i),n.innerHTML=t,p.document.head.appendChild(n)}},m="outline";function s(i){return $` - ${i} body { - outline: 1px solid #2980b9 !important; - } - - ${i} article { - outline: 1px solid #3498db !important; - } - - ${i} nav { - outline: 1px solid #0088c3 !important; - } - - ${i} aside { - outline: 1px solid #33a0ce !important; - } - - ${i} section { - outline: 1px solid #66b8da !important; - } - - ${i} header { - outline: 1px solid #99cfe7 !important; - } - - ${i} footer { - outline: 1px solid #cce7f3 !important; - } - - ${i} h1 { - outline: 1px solid #162544 !important; - } - - ${i} h2 { - outline: 1px solid #314e6e !important; - } - - ${i} h3 { - outline: 1px solid #3e5e85 !important; - } - - ${i} h4 { - outline: 1px solid #449baf !important; - } - - ${i} h5 { - outline: 1px solid #c7d1cb !important; - } - - ${i} h6 { - outline: 1px solid #4371d0 !important; - } - - ${i} main { - outline: 1px solid #2f4f90 !important; - } - - ${i} address { - outline: 1px solid #1a2c51 !important; - } - - ${i} div { - outline: 1px solid #036cdb !important; - } - - ${i} p { - outline: 1px solid #ac050b !important; - } - - ${i} hr { - outline: 1px solid #ff063f !important; - } - - ${i} pre { - outline: 1px solid #850440 !important; - } - - ${i} blockquote { - outline: 1px solid #f1b8e7 !important; - } - - ${i} ol { - outline: 1px solid #ff050c !important; - } - - ${i} ul { - outline: 1px solid #d90416 !important; - } - - ${i} li { - outline: 1px solid #d90416 !important; - } - - ${i} dl { - outline: 1px solid #fd3427 !important; - } - - ${i} dt { - outline: 1px solid #ff0043 !important; - } - - ${i} dd { - outline: 1px solid #e80174 !important; - } - - ${i} figure { - outline: 1px solid #ff00bb !important; - } - - ${i} figcaption { - outline: 1px solid #bf0032 !important; - } - - ${i} table { - outline: 1px solid #00cc99 !important; - } - - ${i} caption { - outline: 1px solid #37ffc4 !important; - } - - ${i} thead { - outline: 1px solid #98daca !important; - } - - ${i} tbody { - outline: 1px solid #64a7a0 !important; - } - - ${i} tfoot { - outline: 1px solid #22746b !important; - } - - ${i} tr { - outline: 1px solid #86c0b2 !important; - } - - ${i} th { - outline: 1px solid #a1e7d6 !important; - } - - ${i} td { - outline: 1px solid #3f5a54 !important; - } - - ${i} col { - outline: 1px solid #6c9a8f !important; - } - - ${i} colgroup { - outline: 1px solid #6c9a9d !important; - } - - ${i} button { - outline: 1px solid #da8301 !important; - } - - ${i} datalist { - outline: 1px solid #c06000 !important; - } - - ${i} fieldset { - outline: 1px solid #d95100 !important; - } - - ${i} form { - outline: 1px solid #d23600 !important; - } - - ${i} input { - outline: 1px solid #fca600 !important; - } - - ${i} keygen { - outline: 1px solid #b31e00 !important; - } - - ${i} label { - outline: 1px solid #ee8900 !important; - } - - ${i} legend { - outline: 1px solid #de6d00 !important; - } - - ${i} meter { - outline: 1px solid #e8630c !important; - } - - ${i} optgroup { - outline: 1px solid #b33600 !important; - } - - ${i} option { - outline: 1px solid #ff8a00 !important; - } - - ${i} output { - outline: 1px solid #ff9619 !important; - } - - ${i} progress { - outline: 1px solid #e57c00 !important; - } - - ${i} select { - outline: 1px solid #e26e0f !important; - } - - ${i} textarea { - outline: 1px solid #cc5400 !important; - } - - ${i} details { - outline: 1px solid #33848f !important; - } - - ${i} summary { - outline: 1px solid #60a1a6 !important; - } - - ${i} command { - outline: 1px solid #438da1 !important; - } - - ${i} menu { - outline: 1px solid #449da6 !important; - } - - ${i} del { - outline: 1px solid #bf0000 !important; - } - - ${i} ins { - outline: 1px solid #400000 !important; - } - - ${i} img { - outline: 1px solid #22746b !important; - } - - ${i} iframe { - outline: 1px solid #64a7a0 !important; - } - - ${i} embed { - outline: 1px solid #98daca !important; - } - - ${i} object { - outline: 1px solid #00cc99 !important; - } - - ${i} param { - outline: 1px solid #37ffc4 !important; - } - - ${i} video { - outline: 1px solid #6ee866 !important; - } - - ${i} audio { - outline: 1px solid #027353 !important; - } - - ${i} source { - outline: 1px solid #012426 !important; - } - - ${i} canvas { - outline: 1px solid #a2f570 !important; - } - - ${i} track { - outline: 1px solid #59a600 !important; - } - - ${i} map { - outline: 1px solid #7be500 !important; - } - - ${i} area { - outline: 1px solid #305900 !important; - } - - ${i} a { - outline: 1px solid #ff62ab !important; - } - - ${i} em { - outline: 1px solid #800b41 !important; - } - - ${i} strong { - outline: 1px solid #ff1583 !important; - } - - ${i} i { - outline: 1px solid #803156 !important; - } - - ${i} b { - outline: 1px solid #cc1169 !important; - } - - ${i} u { - outline: 1px solid #ff0430 !important; - } - - ${i} s { - outline: 1px solid #f805e3 !important; - } - - ${i} small { - outline: 1px solid #d107b2 !important; - } - - ${i} abbr { - outline: 1px solid #4a0263 !important; - } - - ${i} q { - outline: 1px solid #240018 !important; - } - - ${i} cite { - outline: 1px solid #64003c !important; - } - - ${i} dfn { - outline: 1px solid #b4005a !important; - } - - ${i} sub { - outline: 1px solid #dba0c8 !important; - } - - ${i} sup { - outline: 1px solid #cc0256 !important; - } - - ${i} time { - outline: 1px solid #d6606d !important; - } - - ${i} code { - outline: 1px solid #e04251 !important; - } - - ${i} kbd { - outline: 1px solid #5e001f !important; - } - - ${i} samp { - outline: 1px solid #9c0033 !important; - } - - ${i} var { - outline: 1px solid #d90047 !important; - } - - ${i} mark { - outline: 1px solid #ff0053 !important; - } - - ${i} bdi { - outline: 1px solid #bf3668 !important; - } - - ${i} bdo { - outline: 1px solid #6f1400 !important; - } - - ${i} ruby { - outline: 1px solid #ff7b93 !important; - } - - ${i} rt { - outline: 1px solid #ff2f54 !important; - } - - ${i} rp { - outline: 1px solid #803e49 !important; - } - - ${i} span { - outline: 1px solid #cc2643 !important; - } - - ${i} br { - outline: 1px solid #db687d !important; - } - - ${i} wbr { - outline: 1px solid #db175b !important; - }`}var e=(i,t)=>{let{globals:o}=t,n=[!0,"true"].includes(o[m]),d=t.viewMode==="docs",l=x(()=>s(d?'[data-story-block="true"]':".sb-show-main"),[t]);return f(()=>{let a=d?`addon-outline-docs-${t.id}`:"addon-outline";return n?b(a,l):u(a),()=>{u(a)}},[n,l,t]),i()},h=[e],g={[m]:!1};export{h as decorators,g as initialGlobals}; diff --git a/storybook-static/assets/preview-b7838eec.css b/storybook-static/assets/preview-b7838eec.css deleted file mode 100644 index 1cd7fe6..0000000 --- a/storybook-static/assets/preview-b7838eec.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:Libre Baskerville Bold;src:url(./librebaskerville-bold-webfont-7fd04a14.woff) format("woff"),local("libre-baskerville-bold");font-weight:700;font-style:normal;font-display:auto}@font-face{font-family:Libre Baskerville Italic;src:url(./librebaskerville-italic-webfont-1ee486a9.woff) format("woff"),local("libre-baskerville-italic");font-weight:400;font-style:italic;font-display:auto}@font-face{font-family:Montserrat Bold;src:url(./montserrat-bold-webfont-29219575.woff) format("woff"),local("montserrat-bold");font-weight:700;font-style:normal;font-display:auto}@font-face{font-family:Montserrat Extra Bold;src:url(./montserrat-extrabold-webfont-8844372c.woff) format("woff"),local("montserrat-extra-bold");font-weight:800;font-style:normal;font-display:auto}@font-face{font-family:Montserrat Medium;src:url(./montserrat-medium-webfont-c90d910d.woff) format("woff"),local("montserrat");font-weight:500;font-style:normal;font-display:auto}@font-face{font-family:Montserrat Semibold;src:url(./montserrat-semibold-webfont-0e32d132.woff) format("woff"),local("montserrat-semi-bold");font-weight:600;font-style:normal;font-display:auto}@font-face{font-family:Montserrat Regular;src:url(./montserrat-regular-webfont-afefae26.woff) format("woff"),local("montserrat-semi-bold");font-weight:400;font-style:normal;font-display:auto}@font-face{font-family:Montserrat Light;src:url(./montserrat-light-webfont-053c8bdd.woff) format("woff"),local("montserrat-light");font-weight:300;font-style:normal;font-display:auto}@font-face{font-family:Iconic;src:url(./iconic-font-5bf9df03.woff) format("woff"),local("iconic");font-weight:400;font-style:normal;font-display:auto}.atm_c8_xoeuol.atm_c8_xoeuol{font-size:var(--font-size-step0)}.atm_bx_3wtidt.atm_bx_3wtidt{font-family:var(--font-family-sans-regular)}.c1qb5p0i{-webkit-font-smoothing:antialiased;font-feature-settings:"liga","clig";font-variant-ligatures:common-ligatures;text-rendering:optimizeLegibility;--font-size-step5:clamp(1.5552rem, 1.0347rem + 2.6027vw, 3.0518rem);--font-size-step4:clamp(1.296rem, .8976rem + 1.992vw, 2.4414rem);--font-size-step3:clamp(1.08rem, .7763rem + 1.5185vw, 1.9531rem);--font-size-step2:clamp(.9rem, .6696rem + 1.1522vw, 1.5625rem);--font-size-step1:clamp(.75rem, .5761rem + .8696vw, 1.25rem);--font-size-step0:clamp(.625rem, .4946rem + .6522vw, 1rem);--font-size-stepN1:clamp(.5208rem, .4237rem + .4855vw, .8rem);--font-color-dark:#0D0A0B;--font-color-shaded:rgba(0, 0, 0, .5);--font-color-medium:rgba(0, 0, 0, .4);--font-color-text:#5f5f5f;--font-color-dim:rgba(255, 255, 255, .5);--font-color-light:#FFF;--font-color-lightAccent:#CCC;--font-color-accent:#862121;--font-color-link:#862121;--font-weight-extraBold:800;--font-weight-bold:600;--font-weight-semiBold:500;--font-weight-normal:400;--font-weight-light:300;--font-family-serif-regular:"Libre Baskerville",serif;--font-family-serif-bold:"Libre Baskerville Bold",serif;--font-family-serif-italic:"Libre Baskerville Italic",serif;--font-family-sans-regular:"Montserrat Regular",sans-serif;--font-family-sans-bold:"Montserrat Bold",sans-serif;--font-family-sans-extraBold:"Montserrat Extra Bold",sans-serif;--font-family-sans-medium:"Montserrat Medium",sans-serif;--font-family-sans-semiBold:"Montserrat Semibold",sans-serif;--font-family-sans-light:"Montserrat Light",sans-serif;--spacing-step0:clamp(.1875rem, .1658rem + .1087vw, .25rem);--spacing-step1:clamp(.3125rem, .2473rem + .3261vw, .5rem);--spacing-step2:clamp(.5rem, .413rem + .4348vw, .75rem);--spacing-step3:clamp(.625rem, .4946rem + .6522vw, 1rem);--spacing-step4:clamp(.8125rem, .6603rem + .7609vw, 1.25rem);--spacing-step5:clamp(.9375rem, .7418rem + .9783vw, 1.5rem);--spacing-step6:clamp(1.125rem, .9076rem + 1.087vw, 1.75rem);--spacing-step7:clamp(1.25rem, .9891rem + 1.3043vw, 2rem);--spacing-step8:clamp(1.4375rem, 1.1549rem + 1.413vw, 2.25rem);--spacing-step9:clamp(1.5625rem, 1.2364rem + 1.6304vw, 2.5rem);--spacing-avatar:clamp(2.5rem, 1.9783rem + 2.6087vw, 4rem);--spacing-sectionBottom:clamp(3.625rem, 2.8859rem + 3.6957vw, 5.75rem);--spacing-sectionTop:clamp(6.125rem, 4.8641rem + 6.3043vw, 9.75rem);--spacing-portfolioItemHeight:clamp(11.75rem, 9.3152rem + 12.1739vw, 18.75rem);--spacing-portfolioItemWidth:clamp(15.625rem, 12.3641rem + 16.3043vw, 25rem);--spacing-sectionDivider:clamp(1.4375rem, 1.1549rem + 1.413vw, 2.25rem);--color-dark:#000;--color-subtlest:#F1F1F1;--color-subtler:#E9E9E9;--color-subtle:rgba(255, 255, 255, .25);--color-shade:#C9C9C9;--color-light:#FFF;--color-separator:rgba(0,0,0,.1);--color-outline:rgba(0,0,0,.25);--color-grid:#333;--color-accent:#862121;--grid-maxWidth:74rem;--grid-gutter:var(--spacing-step7);--grid-columns:12}.c1qb5p0i a{color:var(--font-color-link);font-weight:600;-webkit-text-decoration:none;text-decoration:none;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.c1qb5p0i a:hover,.c1qb5p0i a:active,.c1qb5p0i a:focus{color:var(--font-color-dark)} diff --git a/storybook-static/assets/preview-c9496878.js b/storybook-static/assets/preview-c9496878.js deleted file mode 100644 index 2280167..0000000 --- a/storybook-static/assets/preview-c9496878.js +++ /dev/null @@ -1 +0,0 @@ -import{j as D}from"./jsx-runtime-d079401a.js";import{c as W}from"./css-7708fb60.js";/* empty css */import{R as m,r as f}from"./index-f1f2c4b1.js";import{c as z,R as q,a as Y,u as _,b as G,d as B,e as F}from"./index-a8bd1a45.js";import"./index-5f347087.js";const{makeDecorator:J,addons:w}=__STORYBOOK_MODULE_PREVIEW_API__;var y="storybook/react-router-v6",Q="reactRouter",s={CLEAR:`${y}/clear`,NAVIGATION:`${y}/navigation`,STORY_LOADED:`${y}/story-loaded`,ROUTE_MATCHES:`${y}/route-matches`,ACTION_INVOKED:`${y}/action_invoked`,ACTION_SETTLED:`${y}/action_settled`,LOADER_INVOKED:`${y}/loader_invoked`,LOADER_SETTLED:`${y}/loader_settled`},I=m.createContext([]),C=m.createContext(void 0);function X(){let[t,r]=f.useState([]),e=Y;return e.Provider._context=new Proxy(e.Provider._context??{},{set(a,n,i){return n==="_currentValue"&&i!==void 0&&r(o=>i.matches.length>o.length?i.matches:o),Reflect.set(a,n,i)}}),t}function Z(t){let r={};return t.forEach((e,a)=>{if(e instanceof File){r[a]={filename:e.name,filesize:e.size,filetype:e.type};return}r[a]=e}),r}async function P(t){let r=t.clone(),e=r.headers.get("content-type")||"",a;switch(!0){case e.startsWith("text"):a=await r.text();break;case e.startsWith("application/json"):a=await r.json();break;case e.startsWith("multipart/form-data"):case e.startsWith("application/x-www-form-urlencoded"):{a=Z(await r.formData());break}}return a}var b=()=>{let t=f.useRef(0);return f.useCallback(async(r,e)=>{t.current++;let a=`${r}_${t.current}`;switch(r){case s.ACTION_INVOKED:{let{request:n,params:i,context:o}=e,h={url:n.url,method:n.method,body:await P(n)};return{key:a,type:r,data:{params:i,request:h,context:o}}}case s.ACTION_SETTLED:return{key:a,type:r,data:e};case s.LOADER_INVOKED:{let{request:n,params:i,context:o}=e,h={url:n.url,method:n.method,body:await P(n)};return{key:a,type:r,data:{params:i,request:h,context:o}}}case s.LOADER_SETTLED:return{key:a,type:r,data:e}}},[])};function tt(){let t=w.getChannel(),r=b();return f.useCallback(e=>async function(a){if(e===void 0)return;t.emit(s.ACTION_INVOKED,await r(s.ACTION_INVOKED,a));let n=await e(a);return t.emit(s.ACTION_SETTLED,await r(s.ACTION_SETTLED,n)),n},[t,r])}function et(){let t=w.getChannel(),r=b();return f.useCallback(e=>async function(a){if(e===void 0)return;t.emit(s.LOADER_INVOKED,await r(s.LOADER_INVOKED,a));let n=await e(a);return t.emit(s.LOADER_SETTLED,await r(s.LOADER_SETTLED,n)),n},[t,r])}function rt(){let t=tt(),r=et(),e=f.useCallback(a=>a.map(n=>{let{action:i,loader:o,children:h,lazy:d}=n,c={...n};return d&&(c.lazy=async function(){let l=await d(),u={...l};return l.action&&(u.action=t(l.action)),l.loader&&(u.loader=r(l.loader)),u}),i&&(c.action=t(i)),o&&(c.loader=r(o)),h&&(c.children=e(h)),c}),[t,r]);return e}var L=()=>{let t=m.useContext(C);if(t===void 0)throw new Error("useStory should be used inside ");return t};function N(t,r,e=0){return t.length===1&&(t[0].children===void 0||t[0].children.length===0)?[{...t[0],element:r}]:t.findIndex(a=>a.useStoryElement)!==-1?t.map(a=>a.useStoryElement?{...a,element:r}:a):t.map(a=>a.children?{...a,children:N(a.children,r)}:a)}var S;(function(t){t.Pop="POP",t.Push="PUSH",t.Replace="REPLACE"})(S||(S={}));function at(t,r){if(t===!1||t===null||typeof t>"u")throw new Error(r)}function nt(t,r){if(!t){typeof console<"u"&&console.warn(r);try{throw new Error(r)}catch{}}}var A;(function(t){t.data="data",t.deferred="deferred",t.redirect="redirect",t.error="error"})(A||(A={}));function x(t,r){r===void 0&&(r={});let e=t;e.endsWith("*")&&e!=="*"&&!e.endsWith("/*")&&(nt(!1,'Route path "'+e+'" will be treated as if it were '+('"'+e.replace(/\*$/,"/*")+'" because the `*` character must ')+"always follow a `/` in the pattern. To get rid of this warning, "+('please change the route path to "'+e.replace(/\*$/,"/*")+'".')),e=e.replace(/\*$/,"/*"));let a=e.startsWith("/")?"/":"",n=o=>o==null?"":typeof o=="string"?o:String(o),i=e.split(/\/+/).map((o,h,d)=>{if(h===d.length-1&&o==="*")return n(r["*"]);let c=o.match(/^:([\w-]+)(\??)$/);if(c){let[,l,u]=c,E=r[l];return at(u==="?"||E!=null,'Missing ":'+l+'" param'),n(E)}return o.replace(/\?$/g,"")}).filter(o=>!!o);return a+i.join("/")}var k=["post","put","patch","delete"];new Set(k);var ot=["get",...k];new Set(ot);function it({navigationHistory:t,location:r,routes:e}){if(t!==void 0){let l=[],u,E=Object.values(t);for(let g=0;g!e.includes(i)),n=r.split("/").filter(i=>!e.includes(i));return"/"+[...a,...n].join("/")}function p(t,r){return Object.prototype.hasOwnProperty.call(t,r)}function st(t){return arguments.length===0?[]:Array.isArray(t)?t:[t]}function ct(t){var r;return t===void 0?[{path:"/"}]:typeof t=="string"?[{path:t}]:(t=st(t),t.length===1&&((r=t[0]).path??(r.path="/")),t)}var $=()=>m.useContext(I);function ut(t){let r={};return t.forEach((e,a)=>{let n=r[a];if(typeof n=="string"){r[a]=[n,e];return}if(Array.isArray(n)){r[a]=[...n,e];return}r[a]=e}),r}var ht=()=>{let t=_(),r=t.pathname;return t.search.length>0&&(r+=`?${t.search}`),t.hash.length>0&&(r+=`#${t.hash}`),r},dt=()=>{let t=f.useRef(0),r=_(),e=G(),[a]=B(),n=F(),i=$(),o=ut(a),h=ht(),d=i.map(l=>{let u={path:l.route.path};return Object.keys(l.params).length>0&&(u.params=l.params),u}),c={url:h,path:r.pathname,routeParams:e,searchParams:o,hash:r.hash,routeState:r.state,routeMatches:d};return l=>{t.current++;let u=`${l}_${t.current}`;switch(l){case s.STORY_LOADED:return{key:u,type:l,data:c};case s.NAVIGATION:return{key:u,type:l,data:{...c,navigationType:n}};case s.ROUTE_MATCHES:return{key:u,type:l,data:{matches:d}}}}};function V(){let{renderStory:t,storyContext:r}=L(),e=w.getChannel(),a=_(),n=$(),i=dt(),o=f.useRef(),h=f.useRef(),d=f.useRef(),c=o.current!==void 0,l=c&&a.key!==o.current;return l&&h.current!==a.key&&(e.emit(s.NAVIGATION,i(s.NAVIGATION)),h.current=a.key),l&&n.length>0&&n!==d.current&&e.emit(s.ROUTE_MATCHES,i(s.ROUTE_MATCHES)),!c&&n.length>0&&(e.emit(s.STORY_LOADED,i(s.STORY_LOADED)),o.current=a.key,d.current=n),d.current=n,m.createElement(m.Fragment,null,t(r))}V.displayName="RouterLogger";function mt(){let{addonParameters:t={}}=L(),{hydrationData:r,routing:e,navigationHistory:a,location:n}=t,i=rt(),o=f.useMemo(()=>{let h=ct(e),d=i(h),c=N(d,m.createElement(V,null)),{initialEntries:l,initialIndex:u}=it({navigationHistory:a,location:n,routes:c});return z(c,{initialEntries:l,initialIndex:u,hydrationData:r})},[i,r,n,a,e]);return m.createElement(q,{router:o,fallbackElement:m.createElement(pt,null)})}function pt(){return m.createElement("p",null,"Performing initial data load")}var ft=({renderStory:t,storyContext:r,addonParameters:e})=>{let a=X();return m.createElement(C.Provider,{value:{renderStory:t,storyContext:r,addonParameters:e}},m.createElement(I.Provider,{value:a},m.createElement(mt,null)))};function yt(t){if(m.isValidElement(t))return!0;switch(!0){case m.isValidElement(t):case typeof t=="string":case typeof t=="number":case typeof t=="boolean":case t===null:case t===void 0:case(t instanceof Object&&p(t,Symbol.iterator)):return!0}return!1}function Et(t){return yt(t)?{element:t}:t}function gt(t={}){let r=["location","navigationHistory","routing"];if(Object.keys(t??{}).some(a=>r.includes(a)))return t;let e={routing:{},location:{},hydrationData:void 0};if(p(t,"routePath")&&(e.location.path=t.routePath,e.routing.path=t.routePath),p(t,"routeParams")&&(e.location.pathParams=t.routeParams),p(t,"routeState")&&(e.location.state=t.routeState),p(t,"routeHandle")&&(e.routing.handle=t.routeHandle),p(t,"searchParams")&&(e.location.searchParams=t.searchParams),p(t,"browserPath")&&(e.location.path=t.browserPath),p(t,"loader")&&(e.routing.loader=t.loader),p(t,"action")&&(e.routing.action=t.action),p(t,"errorElement")&&(e.routing.errorElement=t.errorElement),p(t,"hydrationData")&&(e.hydrationData=t.hydrationData),p(t,"shouldRevalidate")&&(e.routing.shouldRevalidate=t.shouldRevalidate),p(t,"routeId")&&(e.routing.id=t.routeId),p(t,"outlet")){let a=Et(t.outlet);a.path??(a.path=""),e.routing.children=[a]}return e.routing.useStoryElement=!0,e}var vt=J({name:"withRouter",parameterName:Q,wrapper:(t,r,{parameters:e})=>{let a=gt(e);return m.createElement(ft,{renderStory:t,storyContext:r,addonParameters:a})}});const Pt={parameters:{controls:{matchers:{color:/(background|color)$/i,date:/Date$/}},options:{storySort:{order:["Pages","Home"]}}},decorators:[vt,t=>D.jsx("div",{className:W("atm_c8_xoeuol atm_bx_3wtidt","c1qb5p0i"),children:D.jsx(t,{})})]};export{Pt as default}; diff --git a/storybook-static/assets/preview-dfa23190.js b/storybook-static/assets/preview-dfa23190.js deleted file mode 100644 index c48ec79..0000000 --- a/storybook-static/assets/preview-dfa23190.js +++ /dev/null @@ -1,7 +0,0 @@ -const{global:r}=__STORYBOOK_MODULE_GLOBAL__,{addons:s}=__STORYBOOK_MODULE_PREVIEW_API__,{STORY_CHANGED:O}=__STORYBOOK_MODULE_CORE_EVENTS__;var d="storybook/highlight",i="storybookHighlight",g=`${d}/add`,E=`${d}/reset`,{document:l}=r,H=(e="#FF4785",t="dashed")=>` - outline: 2px ${t} ${e}; - outline-offset: 2px; - box-shadow: 0 0 0 6px rgba(255,255,255,0.6); -`,h=s.getChannel(),T=e=>{let t=i;n();let o=Array.from(new Set(e.elements)),_=l.createElement("style");_.setAttribute("id",t),_.innerHTML=o.map(a=>`${a}{ - ${H(e.color,e.style)} - }`).join(" "),l.head.appendChild(_)},n=()=>{var o;let e=i,t=l.getElementById(e);t&&((o=t.parentNode)==null||o.removeChild(t))};h.on(O,n);h.on(E,n);h.on(g,T); diff --git a/storybook-static/assets/preview-e085edad.js b/storybook-static/assets/preview-e085edad.js deleted file mode 100644 index e101c59..0000000 --- a/storybook-static/assets/preview-e085edad.js +++ /dev/null @@ -1 +0,0 @@ -let l;const A=new Uint8Array(16);function b(){if(!l&&(l=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!l))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return l(A)}const o=[];for(let e=0;e<256;++e)o.push((e+256).toString(16).slice(1));function D(e,t=0){return o[e[t+0]]+o[e[t+1]]+o[e[t+2]]+o[e[t+3]]+"-"+o[e[t+4]]+o[e[t+5]]+"-"+o[e[t+6]]+o[e[t+7]]+"-"+o[e[t+8]]+o[e[t+9]]+"-"+o[e[t+10]]+o[e[t+11]]+o[e[t+12]]+o[e[t+13]]+o[e[t+14]]+o[e[t+15]]}const I=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto),m={randomUUID:I};function v(e,t,n){if(m.randomUUID&&!t&&!e)return m.randomUUID();e=e||{};const r=e.random||(e.rng||b)();if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){n=n||0;for(let i=0;i<16;++i)t[n+i]=r[i];return t}return D(r)}const{addons:w}=__STORYBOOK_MODULE_PREVIEW_API__,{global:p}=__STORYBOOK_MODULE_GLOBAL__,{ImplicitActionsDuringRendering:U}=__STORYBOOK_MODULE_CORE_EVENTS_PREVIEW_ERRORS__;var j="storybook/actions",V=`${j}/action-event`,C={depth:10,clearOnStoryChange:!0,limit:50},E=(e,t)=>{let n=Object.getPrototypeOf(e);return!n||t(n)?n:E(n,t)},K=e=>!!(typeof e=="object"&&e&&E(e,t=>/^Synthetic(?:Base)?Event$/.test(t.constructor.name))&&typeof e.persist=="function"),L=e=>{if(K(e)){let t=Object.create(e.constructor.prototype,Object.getOwnPropertyDescriptors(e));t.persist();let n=Object.getOwnPropertyDescriptor(t,"view"),r=n==null?void 0:n.value;return typeof r=="object"&&(r==null?void 0:r.constructor.name)==="Window"&&Object.defineProperty(t,"view",{...n,value:Object.create(r.constructor.prototype)}),t}return e},B=()=>typeof crypto=="object"&&typeof crypto.getRandomValues=="function"?v():Date.now().toString(36)+Math.random().toString(36).substring(2);function u(e,t={}){let n={...C,...t},r=function(...i){var g,O;if(t.implicit){let y=(g="__STORYBOOK_PREVIEW__"in p?p.__STORYBOOK_PREVIEW__:void 0)==null?void 0:g.storyRenders.find(d=>d.phase==="playing"||d.phase==="rendering");if(y){let d=!((O=window==null?void 0:window.FEATURES)!=null&&O.disallowImplicitActionsInRenderV8),R=new U({phase:y.phase,name:e,deprecated:d});if(d)console.warn(R);else throw R}}let c=w.getChannel(),s=B(),a=5,_=i.map(L),x=i.length>1?_:_[0],S={id:s,count:0,data:{name:e,args:x},options:{...n,maxDepth:a+(n.depth||3),allowFunction:n.allowFunction||!1}};c.emit(V,S)};return r.isAction=!0,r.implicit=t.implicit,r}var T=(e,t)=>typeof t[e]>"u"&&!(e in t),M=e=>{let{initialArgs:t,argTypes:n,id:r,parameters:{actions:i}}=e;if(!i||i.disable||!i.argTypesRegex||!n)return{};let c=new RegExp(i.argTypesRegex);return Object.entries(n).filter(([s])=>!!c.test(s)).reduce((s,[a,_])=>(T(a,t)&&(s[a]=u(a,{implicit:!0,id:r})),s),{})},P=e=>{let{initialArgs:t,argTypes:n,parameters:{actions:r}}=e;return r!=null&&r.disable||!n?{}:Object.entries(n).filter(([i,c])=>!!c.action).reduce((i,[c,s])=>(T(c,t)&&(i[c]=u(typeof s.action=="string"?s.action:c)),i),{})},f=[P,M],h=!1,Y=e=>{let{parameters:{actions:t}}=e;if(!(t!=null&&t.disable)&&!h&&"__STORYBOOK_TEST_ON_MOCK_CALL__"in p&&typeof p.__STORYBOOK_TEST_ON_MOCK_CALL__=="function"){let n=p.__STORYBOOK_TEST_ON_MOCK_CALL__;n((r,i)=>{let c=r.getMockName();c!=="spy"&&(!/^next\/.*::/.test(c)||["next/router::useRouter()","next/navigation::useRouter()","next/navigation::redirect","next/cache::","next/headers::cookies().set","next/headers::cookies().delete","next/headers::headers().set","next/headers::headers().delete"].some(s=>c.startsWith(s)))&&u(c)(i)}),h=!0}},N=[Y];export{f as argsEnhancers,N as loaders}; diff --git a/storybook-static/assets/raya-a03f2445.webp b/storybook-static/assets/raya-a03f2445.webp deleted file mode 100644 index e691c95..0000000 Binary files a/storybook-static/assets/raya-a03f2445.webp and /dev/null differ diff --git a/storybook-static/assets/ress-c6782271.css b/storybook-static/assets/ress-c6782271.css deleted file mode 100644 index e1570c8..0000000 --- a/storybook-static/assets/ress-c6782271.css +++ /dev/null @@ -1 +0,0 @@ -html{-webkit-text-size-adjust:100%;box-sizing:border-box;-moz-tab-size:4;tab-size:4;word-break:normal}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{margin:0;padding:0}hr{color:inherit;height:0;overflow:visible}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}iframe{border-style:none}input{border-radius:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}a:focus,button:focus,input:focus,select:focus,textarea:focus{outline-width:0}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;max-width:100%;white-space:normal}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}[disabled]{cursor:default}img{border-style:none}progress{vertical-align:baseline}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default} diff --git a/storybook-static/assets/resume-5e517ea4.js b/storybook-static/assets/resume-5e517ea4.js deleted file mode 100644 index f819a5b..0000000 --- a/storybook-static/assets/resume-5e517ea4.js +++ /dev/null @@ -1,19 +0,0 @@ -const e="https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",t={name:"Clint Andrew Hall",summary:`I'm an Engineering Lead and User Interface Engineer. I work to make the web beautiful, both on its surface and beneath. - -I'm a demonstrated expert in HTML, CSS and JavaScript, React/Flux/Relay, and more. I specialize in techniques promoting web agnostics, semantics, and accessibility. I'm comfortable with varying levels of skill in any web full stack, having written and maintained production code in JS, PHP, Java and Ruby-on-Rails. I currently prefer React+Node or React Native for most of my personal projects. - -I'm a regular consumer and occasional contributor to open source projects and client APIs. If I have a suggestion for a website or application, I prefer to demonstrate the idea using an API rather than just describe it-- Code Wins Arguments. - -I look for opportunities where I can make strong, direct and meaningful contributions to a team, to users and to the web. I'm comfortable functioning as both designer and engineer, advising on both the technical and aesthetic. I'm affable and good-natured, yet results-driven and competitive. I have extensive experience working remotely, particularly during my time at Facebook and Elastic.`,label:"Technical Lead and User Interface Engineer",image:"https://www.gravatar.com/avatar/302764dcbe429cbf873064a2b8653da4.jpg?s=200",email:"resume@clintandrewhall.com",location:{city:"Hamilton",postalCode:"L8M 2N9",region:"Ontario",countryCode:"CA"},profiles:[{network:"Github",username:"clintandrewhall",url:"https://github.com/clintandrewhall"},{network:"LinkedIn",username:"clintandrewhall",url:"https://www.linkedin.com/in/clintandrewhall"},{network:"Twitter",username:"clintandrewhall",url:"https://twitter.com/clintandrewhall"},{network:"Facebook",username:"clint.hall",url:"https://facebook.com/clint.hall"},{network:"Instagram",username:"clintandrewhall",url:"https://instagram.com/clintandrewhall"}],url:"https://clintandrewhall.com"},a=[{type:"nomination",awarder:"KC/ACTF",title:"Irene Ryan Acting Scholarship",event:"KC/ACTF Region V Conference",date:"2001-05-01",summary:"Three-time nominee for excellence in Acting."},{type:"award",awarder:"ThinkQuest",title:"2nd Place - Arts and Literature",event:"ThinkQuest 1997",url:"https://web.archive.org/web/20140822164240/http://library.thinkquest.org/10502/",date:"1997-10-01",summary:`Created "Shakey's Place", a website about Shakespeare featuring a 3D Globe Theatre. Placed Second in Arts and Literature category totaling $48,000 in scholarships. Team Leader, designed interface and 3D graphics, programmed Perl 5 scripts, designed HTML layout.`}],n=[],i=[{studyType:"BS",area:"Computer Science",institution:"Rockhurst University",startDate:"1997-09",endDate:"2001-08",url:"http://rockhurst.edu"}],o=[],r={canonical:"https://raw.githubusercontent.com/jsonresume/resume-schema/master/resume.json",version:"v1.0.0",lastModified:"2022-04-25T00:00:00.000Z"},s=[{name:"Redefining How We See Technology",type:"conference",entity:"TEDx RenfrewCollingwood",roles:["speaker"],description:"I was invited to speak at TEDxRenfrewCollingwood about using metaphors to explain technology, to “bridge the gap” between what people believe software can do, and what it actually can do. I created an open-source website called metaphorical.ly where anyone could create a technology metaphor.",startDate:"2014-10-01",endDate:"2014-10-01",highlights:[],keywords:["TEDx"],url:"http://metaphorical.ly/"},{name:"Web Presentation Layer Bootstrapping for Accessibility and Performance",type:"conference",entity:"International Cross-Disciplinary Conference on Web Accessibility",roles:["speaker"],description:"I wrote a paper and delivered a talk about my findings using the Web Bootstrapper at Cerner in Madrid, Spain.",startDate:"2009-04-20",endDate:"2009-04-20",url:"https://dl.acm.org/citation.cfm?id=1535654"},{name:"Bootstrapping Web Pages for Accessibility and Performance",type:"conference",entity:"18th International World Wide Web Conference",roles:["speaker"],description:"I delivered a talk on the Web Bootstrapper I developed at Cerner at the WWW Conference in Madrid, Spain.",startDate:"2009-04-20",endDate:"2009-04-20",url:"http://www2009.wwwconference.org/developers.html"},{name:"SP3D and the Lighthouse: Explorations in 3D Internet Learning",type:"conference",entity:"SIGGRAPH",roles:["speaker"],description:"I was a speaker in the 'Playground' and 'Classroom' discussing the success of my 1997 and 1998 ThinkQuest websites, which used 3D graphics combined with Internet technology to teach difficult subjects to students of all ages.",startDate:"1999-03-03",endDate:"1999-03-03",url:"https://www.siggraph.org/s99/media/news/rel4.html"}],c=[{title:"Web Presentation Layer Bootstrapping for Accessibility and Performance",publisher:"W4A",releaseDate:"2009-04-20",url:"https://dl.acm.org/citation.cfm?id=1535654.1535671",summary:'In this paper, I present a the Web Bootstrapper, a technique that allows a developer to write a single site while still providing multiple experiences, or "skins," without altering source or running costly client-side code. It is a process by which an accurate collection of only those static resources and metadata necessary for a unique experience be delivered passively, by the most performant means possible.'}],l=[{name:"Tim Schnell",image:"tim",title:"Director of Engineering at Elastic",connection:"Tim managed Clint directly",timestamp:1651032e3,reference:"Clint is a rare technologist, able to combine software engineering, design, and product into a cohesive vision and produce world-class products with an eye for user experience. I have had the pleasure of working directly with Clint at Elastic, building out the Canvas and Dashboard tools within Kibana. During our time working together I was always impressed by Clint's ability to turn ideas into code. Clint is always pushing for ambitious projects and his passion for the work has a positive effect on the team around him. I always appreciated his ability to simplify complex problems and create clarity for those around him. Clint is truly an asset to any group that he works with."},{name:"Raya Fratkina",image:"raya",title:"Director of Engineering at Elastic",connection:"Raya managed Clint directly",timestamp:1650999316,reference:"Clint combines technical excellence with a feel for UX and ability to lead a team of engineers to deliver consistent business outcomes. It has been amazing working with him and watching him build and grow his team. Love his empathy and focus on outcomes and moving the product forward incrementally."},{name:"Jim Goodwin",image:"jim",title:"Vice President of Engineering at Elastic",connection:"Jim managed Clint directly",timestamp:1650917334,reference:"From the moment I interviewed Clint I knew he was going to be a great addition to the team. Throughout my time working with Clint he came up with creative and useful solutions. He encouraged and supported more junior members of the team. He solved complex problems under pressure with good humor and a cool head. His knowledge was impressive and always growing, he would find new technology, study it and share it and often solve a problem in the codebase with it. He's also a kind, smart and fun person to work with. If the opportunity arose I'd hire him again."},{name:"Erik Vorhes",image:"erik",title:"Lead Software Engineer at Chegg",connection:"Clint worked with Erik in different groups at Facebook",timestamp:1536902621,quote:"Clint is one of the best engineers I've worked with. He is especially passionate about making products available to as many people as possible — not only in terms of pushing for accessibility best practices and for inclusive design, but also in making sure to make things available to people whose devices aren't the latest and greatest devices and whose internet connections are suboptimal. Clint is capable of building things quickly and at a high standard of excellence while also demonstrating compassion for the people who use the things he builds."},{name:"Patrick Keenan",image:"patrick",title:"Lead Product Designer: Facebook Local App",connection:"Clint worked with Patrick on the same team at Facebook",timestamp:1526342400,reference:"Clint is a powerhouse of code and collaboration. He single handedly maintained and updated the product on web, refactoring when appropriate. He was proactive in working with design and also brought good questions to help round out the approach. Even in a remote office, it felt like he was always ready to help out."},{name:"Freddy Gottesman",image:"freddy",title:"Director of Product Manager at Meta",connection:"Clint worked with Freddy in the same group at Meta",timestamp:1526601600,reference:"Clint is a motivated and creative engineer with exceptional product sense. In my time working with him I was impressed by his ability to identify a user problem, design a solution and then implement the code to make it happen."},{name:"Jacob McDaniel",image:"jacob",title:"Sr. Experience Designer at HomeAway",connection:"Jacob worked with Clint, but at different companies",timestamp:1526515200,reference:"Hands down, Clint is by far one of the most intelligent engineers I have had the opportunity of working near. As an experience designer working with an engineer, building the most intuitive and functionally sound experience is critical. Clint brings a different perspective to the table and isn't afraid to get his hands dirty. He has an incredible capability of asking comprehensive questions to understand the requirements and data for building the appropriate solution. If given the opportunity in the future to work with Clint, I would sprint versus walk."},{name:"Naithan Jones",image:"naithan",title:"Partner at Andreessen Horowitz",connection:"Naithan worked with Clint but at different companies",timestamp:1526256e3,reference:"Clint worked as an consulting engineer on the initial build of my first venture backed product. Thoughtful and pragmatic engineer with advanced understanding of how to scale code for future usability and performance. One of the strongest engineers I know and a great all around person to boot. Would highly recommend Clint."},{name:"David Cacioppo",image:"david",title:"President/CEO of emfluence",connection:"David was a client of Clint's",timestamp:1317081600,reference:"Clint delivers on what he says he will and brings great ideas to the table. If you get the opportunity to work with Clint, bring him in early in the concept phase of your project. Odds are, he will have input that makes your project better."},{name:"Scott Ackerson",image:"scott",title:"Vice President at Cerner Corporation",connection:"Scott managed Clint directly at Cerner",timestamp:1316995200,reference:"Clint Hall embodies all that is web. His code, ideas and passion for all things web extend past his professional career into his social and personal life. He is un-conventional only in the fact that he is ahead of the thought leadership and natural curve of web developers. He also has a certain social adeptness that garners many opportunities for him and those around him."},{name:"Bo Fishback",image:"bo",title:"CEO of Zaarly, Inc",connection:"Bo worked with Clint, but at different companies",timestamp:1315785600,reference:"Clint is a great guy to work with. He's a sharp, curious, problem solver and has both a deep knowledge base to draw from and an impressive capacity to learn quickly and apply new skills. I've had the chance to work with him on multiple occasions at multiple different companies and have been impressed at every turn."}],d=[],h=[],m=[{key:"elastic",name:"Elastic",position:"Tech Lead, Shared User Experience",location:"Distributed, Amer",summary:`I'm the Tech Lead for Shared User Experience (UX) for the Application Experience organization at Elastic. The team was conceived by myself and other leaders to bridge the gap between design and the myriad of solutions that comprise our Application Experience organization. Our mission is to make consistency across our solutions a product. My role is leading the team through a technology lens, coordinating projects, and consulting with other tech leaders across Elastic. - -My team is responsible for creating, maintaining and supporting shared UX infrastructure, like components, hooks and services. We also promote patterns from our design organizations, fostering adoption through evangelism and codifying them in our infrastructure. We're also responsible for unique UX solutions, driving our projects across organizations, and consulting with teams to deliver consistent experiences.`,startDate:"2021-12-15",keywords:["Lead","React","Typescript","CSS"]},{key:"elastic",name:"Elastic",position:"Area Lead, Presentation Team",location:"Distributed, Amer",summary:'The Kibana organization created a new team-- Presentation-- responsible for [Canvas](https://www.elastic.co/what-is/kibana-canvas), [Dashboard](https://www.elastic.co/kibana/kibana-dashboard), and any other product considered a "presentation container". I became the Area Lead for this new team, coordinating efforts between these products and the rest of Kibana. I continued my previous responsibilites, this time on a larger scale: overseeing and coordinating technical efforts, representing the team across the org, and contributing significant or moonshot enhancements.',startDate:"2020-10-12",endDate:"2021-12-15",keywords:["Lead","React","Redux","Typescript","Javascript","CSS"],highlights:['[kibana/51318](https://github.com/elastic/kibana/issues/51318): Coordinated completion of "Time to Visualize".',"[kibana/88112](https://github.com/elastic/kibana/pull/88112): Plugin Services abstraction and shared component library.",'[kibana/95435](https://github.com/elastic/kibana/pull/95435): "Labs" service for enabling experimental projects.',"[kibana/102446](https://github.com/elastic/kibana/pull/102446): New Canvas Homepage","[kibana/103202](https://github.com/elastic/kibana/pull/103202): Convert Canvas to use Service Abstractions API"]},{key:"elastic",name:"Elastic",position:"Area Lead, Canvas - Kibana",location:"Distributed, US",summary:"In October of 2018, I accepted a role with [Elastic](https://www.elastic.co) to work on [Kibana](https://www.elastic.co/kibana), specifically a new, ground-breaking beta plugin called [Canvas](https://www.elastic.co/what-is/kibana-canvas). Soon after, I was named the new Area Lead. I was responsible for overseeing and coordinating our technical efforts, representing the team across the org, and contributing significant or moonshot enhancements.\n\nDuring my tenure I directed project efforts for 1 major and 9 minor releases, including the General Availability (GA) release of Canvas from beta. I introduced a number of technologies and architecture approaches that stabilized and enhanced the plugin, and oversaw migration of valuable bespoke technology to the Kibana ecosystem, (e.g. [`expressions`](https://www.elastic.co/guide/en/kibana/current/kibana-expressions-plugin.html)).",startDate:"2018-10-01",endDate:"2020-10-12",keywords:["Lead","React","Redux","Typescript","Javascript","CSS"],highlights:["[kibana/31734](https://github.com/elastic/kibana/pull/31734): Significant React performance investigation.","[kibana/35087](https://github.com/elastic/kibana/pull/35087): Introduced Typescript.","[kibana/36252](https://github.com/elastic/kibana/pull/36252): Introduced internationalization architecture.","[kibana/38850](https://github.com/elastic/kibana/pull/38850): Introduced [Storybook](https://storybook.js.org) for rapid development and testing.","[kibana/46278](https://github.com/elastic/kibana/pull/46278): Built novel means of embedding Canvas Workpads."]},{key:"facebook",name:"Facebook NYC",position:"User Interface Engineer",location:"New York City, NY, USA",summary:`When I first moved to the NYC Facebook office, I joined the Composer team for a "hack-a-quarter", converting the Composer to React, and then worked on the Share Dialog. - -Eventually Events found themselves with a large number of React and Relay projects, so I rejoined my former team remotely. I built the new Events Dashboard and Permalink, and implemented many "under the hood" improvements.`,startDate:"2015-04-01",endDate:"2018-06-01",keywords:["React","Flux","Relay","XHP","HTML","JS","CSS"],highlights:["New Events Dashboard for desktop in Relay.","New Events Dashboard for the mobile site in XHP.","New Events Permalink for all web surfaces in XHP.","New React + Flux Composer, and the new Share Dialog using that component.","New 'Minutiae' controls-- the structured data (Photos, Activity, Tags) found in Composer."]},{key:"facebook",name:"Facebook Vancouver",position:"User Interface Engineer",location:"Vancouver, BC, Canada",summary:`In 2013 I joined the Vancouver office with an amazing cadre of engineers from all over the world. With a Canadian fiance, it made sense for me to bring Facebook experience (and culture) to a group of "n00bs". - -While there, I worked on the Protect and Care team developing a new Messaging Inbox built in React. I also implemented the Open Graph Share dialog for FB Platform in XHP.`,startDate:"2013-08-01",endDate:"2015-04-01",keywords:["XHP","HTML","JS","CSS"],highlights:["New Help Center Inbox for desktop in React.",'New "How-to" panels for the Help Center.',"New Platform Share Dialog for mobile and desktop in XHP."]},{key:"facebook",name:"Facebook HQ",position:"User Interface Engineer",location:"Menlo Park, CA, USA",summary:`I joined Facebook in 2012 as a User Interface Engineer (UIE) on the Mobile Core Web team. I then joined the Accessibility team to help make Facebook more useful to everyone on the web. - -After several hackathons involving Events, I joined the team full time to rewrite the web experiences on both the mobile and main website. - -Afterwards, I spent some time with the Platform team, reworking a number of different web flows, like OAuth, and embeddable components like Share, Hashtags and Topics.`,startDate:"2012-01-01",endDate:"2013-08-01",keywords:["XHP","Accessibility","HTML","JS","CSS"],highlights:["New OAuth flow dialogs for developers using Facebook.","New Share, Hashtags and Topics plugins for developers.","New mobile web experience for the Events Dashboard and Permalink.",'Improved the Accessibility of Facebook, including a new way to "see" photos.',"New core components for mobile web for product teams."]},{key:"cerner",name:"Cerner Corporation",position:"Web Evangelist",location:"Kansas City, MO, USA",summary:"As Cerner's first Web Evangelist, I was responsible for advancing web best-practices to teams, both existing and emerging. I basically served as ad-hoc advisor with respect to semantics, accessibility, web agnostics and the responsible use of CSS and JavaScript.",startDate:"2009-10-01",endDate:"2012-01-01",keywords:[],highlights:["New OpenID SDK for the iPhone.","Redesigned a semantic search servive to use JSON-P",'"Proscenium", an experimental technique of compiling templates in JS libaries for isomorphic rendering.',"Spoke about Progressive Enhancement as a necessary philosophy."]},{key:"sag",name:"Socially Adept Geek, LLC",position:"Principal Architect",location:"Kansas City, MO, USA",summary:`In my spare time I operated a consultancy where I helped clients and friends with custom code, strategies and advice on their web projects. - -I shuttered this consulting business as part of my agreement to work at Facebook.`,startDate:"2010-10-01",endDate:"2012-01-01",keywords:[],highlights:[]},{key:"cerner",name:"Cerner Corporation",position:"Software Architect",location:"Kansas City, MO, USA",summary:"For a several years I was a Software Architect for Healthe, enforcing cross-browser compatibility, semantic markup and accessibility, developing CSS layouts and advanced JavaScript controls, and conducting platform research. I would also prototype HTML code based on paper designs, allowing the team to communicate intent to clients, stakeholders, usability and engineers.",startDate:"2007-01-01",endDate:"2009-10-01",keywords:[],highlights:["Inculcated a comprehensive browser-agnostic web philosophy, massively improving accessibility, portability and performance.","Invented the 'Web Bootstrapper', a patented technology that allowed semantic web pages to adapt to the heuristics of any device, dynamically.","Consultant and mentor to teams and engineers on web technology and development."]},{key:"cerner",name:"Cerner Corporation",position:"Sr. Software Engineer",location:"Kansas City, MO, USA",summary:"For several years I worked on the ePrescribing (eRx) and Community Health Record (CHR) solutions for treating Medicare populations in several states. I would interpret functional requirements into a coherent user interface and visual design.",startDate:"2005-01-01",endDate:"2007-01-01",keywords:[],highlights:['Proposed and built the "New Navigation" project, which was a radical redesign of the UI based on usability studies and feedback from sales.',"Novel architecture pattern discarding JSPs in favor of full modules of aggregate presentation components, adding entire workflows to any WAR using standard J2EE and Struts configurations.","Mentored software engineers and other architects in semantic markup practices and prudent Javascript."]},{key:"cerner",name:"Cerner Corporation",position:"Application Developer",location:"Kansas City, MO, USA",summary:'When I joined Cerner, I took on the role of Presentation Layer Developer for the "Web Experience" solution, specifically Order Management. I would design, document, and develop the UI for order placement, drug catalog browsing, and proactive interaction checking and alerting.',startDate:"2003-10-01",endDate:"2005-01-01",keywords:[],highlights:["Reusable, component-based rendering system which resulted in an 80% reduction in markup in JPSs, as well as sharing between solutions.","Subject matter expert for most presentation layer technologies, and reviewed most of that code from my (and other) teams. I ended up teaching a few courses for new associates."]},{key:"sprint",name:"Sprint",position:"Application Developer II",location:"Overland Park, KS, USA",summary:"I held a brief role at Sprint, transitioning from Accenture Outsourcing to Sprint PCS. I rolled on to the Architecture team, and was responsible for applying design patterns, creating interfaces to back-end applications, and overseeing code development across releases.",startDate:"2003-06-01",endDate:"2003-10-01",keywords:[],highlights:[]},{key:"accenture",name:"Accenture",position:"Outsourced Analyst",location:"Overland Park, KS, USA",summary:"Employed as an Analyst in the Outsourcing organization for a number of client engagements.",startDate:"2001-07-01",endDate:"2003-06-01",keywords:[],highlights:["At a Wireless Telecom engagement, I wrote web-based Java interfaces for a customer care billing platform.","At a Long Distance Telecom engagement, I was on-call and responsible for monitoring load balance and processing time on switches using SQL.","At a Broadband Telecom engagement, I created test plans for development teams across the US and Canada."]},{key:"symbol",name:"Symbol Technologies",position:"Intern",location:"Holtsville, NY, USA",summary:"I spent three summers writing complete web-based applications for quality control efforts.",startDate:"1998-01-01",endDate:"2001-01-01",keywords:[],highlights:[]}],p={$schema:e,basics:t,awards:a,certificates:n,education:i,interests:o,meta:r,projects:s,publications:c,references:l,skills:d,volunteer:h,work:m};export{e as $schema,a as awards,t as basics,n as certificates,p as default,i as education,o as interests,r as meta,s as projects,c as publications,l as references,d as skills,h as volunteer,m as work}; diff --git a/storybook-static/assets/sag-2788dfed.webp b/storybook-static/assets/sag-2788dfed.webp deleted file mode 100644 index d70235e..0000000 Binary files a/storybook-static/assets/sag-2788dfed.webp and /dev/null differ diff --git a/storybook-static/assets/scott-8e182c1c.webp b/storybook-static/assets/scott-8e182c1c.webp deleted file mode 100644 index 584e651..0000000 Binary files a/storybook-static/assets/scott-8e182c1c.webp and /dev/null differ diff --git a/storybook-static/assets/section-917efcef.css b/storybook-static/assets/section-917efcef.css deleted file mode 100644 index 1bbb378..0000000 --- a/storybook-static/assets/section-917efcef.css +++ /dev/null @@ -1 +0,0 @@ -.atm_7l_ubcz1x{color:var(--font-color-text)}.atm_h3_6x4hiq.atm_h3_6x4hiq{margin-top:var(--spacing-sectionBottom)}.atm_13lxbpr_1o8liyq>span{display:inline-block}.atm_1we05bf_h2mmj6>span{position:relative}.atm_a7d267_1ft2kkc>span{padding:var(--spacing-step0) var(--spacing-step5)}.atm_12s3h19_1o8liyq>span>a{display:inline-block}.atm_9w3b6q_1ysj30n>span>a:hover,.atm_9w3b6q_1ysj30n>span>a:active,.atm_9w3b6q_1ysj30n>span>a:focus{color:var(--font-color-lightAccent)}.atm_1cx1miq_jl56dx>span:before{content:"|"}.atm_9oyht2_stnw88>span:before{position:absolute}.atm_8ysm6a_12gsa0d>span:before{left:-2px}.atm_1m2ri3r_1yyfdc7>span:first-child:before{content:""}@media (max-width: 600px){.atm_i4wc52_kb7nvz.atm_i4wc52_kb7nvz>:nth-child(n+2){order:1}}@media (max-width: 600px){.atm_152q1x1_1yyfdc7.atm_152q1x1_1yyfdc7>:nth-child(n+2):before{content:""}}@media (max-width: 600px){.atm_7u9urb_jl56dx.atm_7u9urb_jl56dx>:nth-child(n+3):before{content:"|"}}.atm_l8_11xve83{padding:var(--spacing-step2) 0}.atm_gi_11me4g5{margin:var(--spacing-step5) 0}.atm_9s_1txwivl{display:flex}.atm_gb_glywfm{list-style:none}.atm_au_qxlwhf{flex-flow:row wrap}.atm_fc_1h6ojuz.atm_fc_1h6ojuz{justify-content:center}.atm_16pkgaz_75py1q a{color:var(--font-color-light)}.atm_3kzb6q_75py1q a:hover,.atm_3kzb6q_75py1q a:active,.atm_3kzb6q_75py1q a:focus{color:var(--font-color-light)}@media (max-width: 600px){.atm_1cg1zh1_1yyfdc7.atm_1cg1zh1_1yyfdc7:before{content:""}}@media (max-width: 600px){.atm_jwq6l7_1osqo2v.atm_jwq6l7_1osqo2v:before{width:100%}}@media (max-width: 600px){.atm_1pqqcs1_kb7nvz.atm_1pqqcs1_kb7nvz:before{order:1}}@media (max-width: 600px){.atm_1agzeg1_kb7nvz.atm_1agzeg1_kb7nvz>li:nth-child(n+4){order:1}}@media (max-width: 600px){.atm_1jfae3u_1yyfdc7.atm_1jfae3u_1yyfdc7>li:nth-child(n+4):before{content:""}}@media (max-width: 600px){.atm_1c9zy5y_jl56dx.atm_1c9zy5y_jl56dx>li:nth-child(n+5):before{content:"|"}}.atm_bx_lc3h.atm_bx_lc3h{font-family:var(--font-family-sans-light)}.atm_c8_ihbmcz.atm_c8_ihbmcz{font-size:var(--font-size-stepN1)}.atm_fr_f3p1u3{letter-spacing:calc(var(--font-size-stepN1) * .25)}.atm_l8_1lvlr14{padding:var(--spacing-step1) var(--spacing-step3)}.atm_1gkhzp4_jl56dx:before{content:"|"}.atm_x4yteh_stnw88:before{position:absolute}.atm_154qt54_ubcz1x:before{color:var(--font-color-text)}.atm_1xce73l_12gsa0d:before{left:-2px}.atm_1byyen0_1yyfdc7:first-child:before{content:""}.atm_h_1h6ojuz.atm_h_1h6ojuz{align-items:center}.atm_cx_1dbut50{gap:var(--spacing-step1)}.atm_c8_xoeuol.atm_c8_xoeuol{font-size:var(--font-size-step0)}.atm_x4yteh_h2mmj6:before{position:relative}.atm_tb79i2_t94yts:before{top:1px}.atm_2d_1h2jir2.atm_2d_1h2jir2{background-color:var(--color-dark)}.atm_l8_c0okdb{padding:var(--spacing-step4) 0}.atm_lh_zlmbyt{padding-inline:var(--grid-gutter)}.atm_gw_1wugsn5{margin-inline:auto}.atm_1i35zq2_idpfg4 .atm_1i35zq2_idpfg4{padding-inline:0}.atm_j3_1kvayuk{max-width:var(--grid-maxWidth)}.atm_gi_1wugsn5{margin:auto}.atm_9s_11p5wf0{display:grid}.atm_dl_zlmbyt{grid-gap:var(--grid-gutter)}.atm_dz_1kvv9al.atm_dz_1kvv9al{grid-template-columns:repeat(var(--grid-columns),1fr)}.atm_n9pd0g_2wk5kl>*{grid-area:auto/auto/auto/span var(--grid-columns)}.atm_2d_jdrkm1.atm_2d_jdrkm1{background-color:var(--color-separator)}.atm_e2_t94yts{height:1px}.atm_d2_wp2p3m{grid-area:auto/5/auto/span 4}.atm_gq_18qd2ou.atm_gq_18qd2ou{margin-bottom:var(--spacing-sectionDivider)}.atm_h3_18qd2ou.atm_h3_18qd2ou{margin-top:var(--spacing-sectionDivider)}.atm_bx_1dn7dki.atm_bx_1dn7dki{font-family:var(--font-family-sans-semiBold)}.atm_c8_wwia0z.atm_c8_wwia0z{font-size:var(--font-size-step1)}.atm_7l_11cnbga{color:var(--font-color-accent)}.atm_cs_p0owkv.atm_cs_p0owkv{font-weight:var(--font-weight-normal)}.atm_fr_10bjzdm{letter-spacing:calc(var(--font-size-step1) * .075)}.atm_t9_angws6{text-transform:uppercase}.atm_gq_vlbsmd.atm_gq_vlbsmd{margin-bottom:var(--spacing-step2)}.atm_bx_uxsjsn.atm_bx_uxsjsn{font-family:var(--font-family-serif-bold)}.atm_c8_jmbdy6.atm_c8_jmbdy6{font-size:var(--font-size-step5)}.atm_bx_3wtidt.atm_bx_3wtidt{font-family:var(--font-family-sans-regular)}.atm_h3_vlbsmd.atm_h3_vlbsmd{margin-top:var(--spacing-step2)}.atm_mk_h2mmj6{position:relative}.atm_r3_1h6ojuz{text-align:center}.atm_15ayt93_jdrkm1.atm_15ayt93_jdrkm1 [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{background-color:var(--color-separator)}.atm_6zkt5a_idpfg4 [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{bottom:0}.atm_1lei70c_1yyfdc7 [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{content:""}.atm_1pys9bn_1o8liyq [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{display:inline-block}.atm_k2s3ju_t94yts [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{height:1px}.atm_69qmzf_1x1l4y3 [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{left:25%}.atm_tetxha_1h6ojuz [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{text-align:center}.atm_17zbbr3_1ssbidh [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{width:50%}.atm_1wr8wd0_stnw88 [data-component=section-header-name]+[data-component=section-header-title]+[data-component=section-header-subtitle] :after{position:absolute}.atm_d2_1kevfx0{grid-area:auto/4/auto/10}.atm_h3_p4gng6.atm_h3_p4gng6{margin-top:var(--spacing-step4)}a.atm_2pao7w_75py1q{color:var(--font-color-light)}a.atm_1wdgi15_ihbmcz.atm_1wdgi15_ihbmcz{font-size:var(--font-size-stepN1)}a.atm_9ra9g3_1h2jir2.atm_9ra9g3_1h2jir2{background-color:var(--color-dark)}a.atm_1kx53r5_1ulexfb{display:block}a.atm_o3cwog_angws6{text-transform:uppercase}a.atm_1aontac_f3p1u3{letter-spacing:calc(var(--font-size-stepN1) * .25)}a.atm_1qm765o_1h6ojuz{text-align:center}a.atm_18ucp5h_jg74kl{padding:var(--spacing-step4) var(--spacing-step9)}a.atm_1hexq7e_1ic6ef2.atm_1hexq7e_1ic6ef2{line-height:var(--font-size-step3)}a.atm_gj9fsf_75py1q:hover,a.atm_gj9fsf_75py1q:focus{color:var(--font-color-light)}a.atm_1hjjm6w_1xngobm.atm_1hjjm6w_1xngobm:hover,a.atm_1hjjm6w_1xngobm.atm_1hjjm6w_1xngobm:focus{background-color:var(--color-accent)}.atm_lo_1uw1flx.atm_lo_1uw1flx{padding-top:var(--spacing-sectionTop)}.atm_le_6x4hiq.atm_le_6x4hiq{padding-bottom:var(--spacing-sectionBottom)} diff --git a/storybook-static/assets/section-925c1887.js b/storybook-static/assets/section-925c1887.js deleted file mode 100644 index 74637c7..0000000 --- a/storybook-static/assets/section-925c1887.js +++ /dev/null @@ -1 +0,0 @@ -import{j as e}from"./jsx-runtime-d079401a.js";import{r as l,R as j}from"./index-f1f2c4b1.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import{r as R}from"./index-1c937141.js";import{_ as C}from"./iframe-33901838.js";import{t as s,c as i}from"./css-7708fb60.js";import{t as N}from"./index-9b15b185.js";const A=()=>{const[t,n]=l.useState(null);return l.useEffect(()=>{C(()=>import("./resume-5e517ea4.js"),[],import.meta.url).then(r=>n(r))},[]),t};function x(t,n=0,r=[]){return l.Children.toArray(t).reduce((a,o,_)=>(R.isFragment(o)?a.push.apply(a,x(o.props.children,n+1,r.concat(o.key||_))):l.isValidElement(o)?a.push(l.cloneElement(o,{key:r.concat(String(o.key)).join(".")})):(typeof o=="string"||typeof o=="number")&&a.push(o),a),[])}function I(t){const n=x(t).reduce((a,o)=>{var h;const _=(h=o.type)==null?void 0:h.slot;return _?{...a,[_]:a[_]?[...a[_],o]:[o]}:a},{}),r=j.Children.toArray(t).filter(a=>{var o;return!((o=a.type)!=null&&o.slot)});return{...n,children:r}}function L(t,n){return t.slot=n,t}const E=s("atm_c8_ihbmcz atm_2d_1h2jir2 atm_7l_ubcz1x atm_h3_6x4hiq atm_9s_1txwivl atm_au_qxlwhf atm_fc_1h6ojuz atm_h_1h6ojuz atm_13lxbpr_1o8liyq atm_1we05bf_h2mmj6 atm_a7d267_1ft2kkc atm_12s3h19_1o8liyq atm_9w3b6q_1ysj30n atm_1cx1miq_jl56dx atm_9oyht2_stnw88 atm_8ysm6a_12gsa0d atm_1m2ri3r_1yyfdc7 atm_1cg1zh1_1yyfdc7 atm_jwq6l7_1osqo2v atm_1pqqcs1_kb7nvz atm_i4wc52_kb7nvz atm_152q1x1_1yyfdc7 atm_7u9urb_jl56dx"),P={root:E},b=()=>{const t=new Date().getFullYear();return e.jsxs("div",{...P.root,children:[e.jsxs("span",{children:["© Copyright Clint Andrew Hall ",t]}),e.jsxs("span",{children:[e.jsx("a",{href:"https://github.com/clintandrewhall/clintandrewhall.com",children:"Crafted"})," with"," ",e.jsx("a",{href:"https://reactjs.org/",children:"React"})]}),e.jsxs("span",{children:["Design by ",e.jsx("a",{href:"https://www.styleshout.com/",children:"styleshout"})]})]})};b.__docgenInfo={description:"",methods:[],displayName:"SiteCredits"};const D=""+new URL("logo-85d7e314.webp",import.meta.url).href;const H=s("atm_l8_11xve83 atm_gi_11me4g5 atm_r3_1h6ojuz"),F=s(""),y={root:H,link:F},w=()=>e.jsx("p",{...y.root,children:e.jsx("a",{href:"/",...y.link,children:e.jsx("img",{src:D,alt:"Logo"})})});w.__docgenInfo={description:"",methods:[],displayName:"SiteLogo"};const{icons:m}=N,O=s("atm_9s_1txwivl atm_gb_glywfm atm_au_qxlwhf atm_fc_1h6ojuz atm_16pkgaz_75py1q atm_3kzb6q_75py1q atm_1cg1zh1_1yyfdc7 atm_jwq6l7_1osqo2v atm_1pqqcs1_kb7nvz atm_1agzeg1_kb7nvz atm_1jfae3u_1yyfdc7 atm_1c9zy5y_jl56dx"),V=s("atm_bx_lc3h atm_c8_ihbmcz atm_fr_f3p1u3 atm_l8_1lvlr14 atm_mk_h2mmj6 atm_1gkhzp4_jl56dx atm_x4yteh_stnw88 atm_154qt54_ubcz1x atm_1xce73l_12gsa0d atm_1byyen0_1yyfdc7"),U=s("atm_t9_angws6 atm_9s_1txwivl atm_h_1h6ojuz atm_fc_1h6ojuz atm_cx_1dbut50"),c="atm_c8_xoeuol atm_x4yteh_h2mmj6 atm_tb79i2_t94yts",B={github:s(i(m.github(),c)),linkedin:s(i(m.linkedin(),c)),twitter:s(i(m.twitter(),c)),instagram:s(i(m.instagram(),c)),facebook:s(i(m.facebook(),c))},p={root:O,logos:B,link:U,item:V},M=({profile:t})=>e.jsx("li",{...p.item,children:e.jsxs("a",{href:t.url,rel:"noopener noreferrer",target:"_blank",...p.link,children:[e.jsx("i",{...p.logos[t.network.toLowerCase()],"aria-hidden":"true"}),e.jsx("span",{children:t.network})]})},t.network),k=({profiles:t})=>{const n=t.map(r=>e.jsx(M,{profile:r},r.network));return e.jsx("ul",{...p.root,children:n})};k.__docgenInfo={description:"",methods:[],displayName:"SocialProfiles",props:{profiles:{required:!0,tsType:{name:"Array",elements:[{name:"Profile"}],raw:"Profile[]"},description:""}}};const W=s("atm_2d_1h2jir2 atm_l8_c0okdb"),Y={root:W},q=()=>{var n;const t=((n=A())==null?void 0:n.basics.profiles)||[];return e.jsxs("footer",{...Y.root,children:[e.jsx(u.SiteLogo,{}),e.jsx(u.SocialProfiles,{profiles:t}),e.jsx(u.SiteCredits,{})]})},u=Object.assign(q,{SocialProfiles:k,SiteLogo:w,SiteCredits:b});q.__docgenInfo={description:"",methods:[],displayName:"Component"};const G=s("atm_lh_zlmbyt atm_gw_1wugsn5 atm_1i35zq2_idpfg4"),J=s("atm_j3_1kvayuk atm_gi_1wugsn5 atm_9s_11p5wf0 atm_dl_zlmbyt atm_dz_1kvv9al atm_n9pd0g_2wk5kl"),f={outer:G,inner:J},v=({children:t,className:n,element:r="div",id:a})=>e.jsx("div",{...i(f.outer,n),id:a,children:j.createElement(r,{...f.inner},t)}),K=Object.assign(v,{Footer:u});v.__docgenInfo={description:"",methods:[],displayName:"Component",props:{children:{required:!0,tsType:{name:"ReactReactNode",raw:"React.ReactNode"},description:""},className:{required:!1,tsType:{name:"string"},description:""},element:{required:!1,tsType:{name:"union",raw:"'div' | 'main' | 'article'",elements:[{name:"literal",value:"'div'"},{name:"literal",value:"'main'"},{name:"literal",value:"'article'"}]},description:"",defaultValue:{value:"'div'",computed:!1}},id:{required:!1,tsType:{name:"string"},description:""}}};const Q=s("atm_2d_jdrkm1 atm_e2_t94yts atm_d2_wp2p3m atm_gq_18qd2ou atm_h3_18qd2ou"),X={divider:Q},z=()=>e.jsx("div",{...X.divider});z.__docgenInfo={description:"",methods:[],displayName:"SectionDivider"};const Z="section-header-name",tt="section-header-title",et="section-header-subtitle",st=s(i("atm_bx_1dn7dki atm_c8_wwia0z atm_7l_11cnbga atm_cs_p0owkv atm_fr_10bjzdm atm_t9_angws6 atm_gq_vlbsmd","sectionHeader"),{},Z),ot=s("atm_bx_uxsjsn atm_c8_jmbdy6",{},tt),nt=s("atm_bx_3wtidt atm_c8_wwia0z atm_h3_vlbsmd",{},et),rt=s("atm_mk_h2mmj6 atm_r3_1h6ojuz atm_15ayt93_jdrkm1 atm_6zkt5a_idpfg4 atm_1lei70c_1yyfdc7 atm_1pys9bn_1o8liyq atm_k2s3ju_t94yts atm_69qmzf_1x1l4y3 atm_tetxha_1h6ojuz atm_17zbbr3_1ssbidh atm_1wr8wd0_stnw88"),d={root:rt,name:st,title:ot,subtitle:nt},T=({name:t,title:n,subtitle:r,className:a})=>{const o=t?e.jsx("h2",{...d.name,children:t}):null,_=r?e.jsx("p",{...d.subtitle,children:r}):null;return e.jsxs("header",{...i(d.root,a),children:[o,e.jsx("h3",{...d.title,children:n}),_]})};T.__docgenInfo={description:"",methods:[],displayName:"SectionHeader",props:{className:{required:!1,tsType:{name:"string"},description:""},name:{required:!1,tsType:{name:"string"},description:""},title:{required:!0,tsType:{name:"string"},description:""},subtitle:{required:!1,tsType:{name:"string"},description:""}}};const at=s("atm_d2_1kevfx0 atm_h3_p4gng6"),it=s("atm_2pao7w_75py1q atm_1wdgi15_ihbmcz atm_9ra9g3_1h2jir2 atm_1kx53r5_1ulexfb atm_o3cwog_angws6 atm_1aontac_f3p1u3 atm_1qm765o_1h6ojuz atm_18ucp5h_jg74kl atm_1hexq7e_1ic6ef2 atm_gj9fsf_75py1q atm_1hjjm6w_1xngobm"),g={root:at,link:it},S=({href:t,title:n,className:r})=>e.jsx("p",{...i(g.root,r),children:e.jsx("a",{...g.link,href:t,children:n,target:t.startsWith("http")?"_blank":"_self"})});S.__docgenInfo={description:"",methods:[],displayName:"SectionLink",props:{href:{required:!0,tsType:{name:"string"},description:""},title:{required:!0,tsType:{name:"string"},description:""},className:{required:!1,tsType:{name:"string"},description:""}}};const _t=t=>s("atm_lo_1uw1flx atm_le_6x4hiq",t),mt={root:_t},ct=L(T,"header"),$=({children:t,id:n,className:r,style:a})=>{const o=I(t);return e.jsxs(K,{element:"article",id:n,...i(mt.root(a),r),children:[o.header,o.children]})},jt=Object.assign($,{Header:ct,Divider:z,Link:S});$.__docgenInfo={description:"",methods:[],displayName:"Component",props:{children:{required:!0,tsType:{name:"ReactNode"},description:""},id:{required:!0,tsType:{name:"string"},description:""},className:{required:!1,tsType:{name:"string"},description:""},style:{required:!1,tsType:{name:"ReactCSSProperties",raw:"React.CSSProperties"},description:""}}};export{u as F,K as L,jt as S,A as u}; diff --git a/storybook-static/assets/section.stories-28196df5.js b/storybook-static/assets/section.stories-28196df5.js deleted file mode 100644 index 853670a..0000000 --- a/storybook-static/assets/section.stories-28196df5.js +++ /dev/null @@ -1,21 +0,0 @@ -import{j as e}from"./jsx-runtime-d079401a.js";import{S as t}from"./section-925c1887.js";import"./index-f1f2c4b1.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./iframe-33901838.js";import"../sb-preview/runtime.js";import"./css-7708fb60.js";import"./index-9b15b185.js";/* empty css */const x={title:"Components/Layout/Section",component:t},i={args:{id:"someSection",title:"The Section Title",subtitle:"A witty subtitle.",name:"Some Section"},render:r=>e.jsxs(t,{id:"storybook",children:[e.jsx(t.Header,{...r,className:"atm_d2_1muw95t"}),e.jsx("div",{style:{textAlign:"center"},children:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec dui nec ligula bibendum fringilla. Nulla facilisi. Donec ut nunc nec nunc facilisis fermentum. Nulla facilisi. Donec ut nunc nec nunc facilisis fermentum."}),e.jsx(t.Link,{href:"/some-link",title:"Some Link"})]})};var n,o,s;i.parameters={...i.parameters,docs:{...(n=i.parameters)==null?void 0:n.docs,source:{originalSource:`{ - args: { - id: 'someSection', - title: 'The Section Title', - subtitle: 'A witty subtitle.', - name: 'Some Section' - }, - render: (args: Arguments) => { - return - -
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec dui nec ligula bibendum - fringilla. Nulla facilisi. Donec ut nunc nec nunc facilisis fermentum. Nulla facilisi. - Donec ut nunc nec nunc facilisis fermentum. -
- -
; - } -}`,...(s=(o=i.parameters)==null?void 0:o.docs)==null?void 0:s.source}}};const k=["Section"];export{i as Section,k as __namedExportsOrder,x as default}; diff --git a/storybook-static/assets/section.stories-45d5dfd2.css b/storybook-static/assets/section.stories-45d5dfd2.css deleted file mode 100644 index 4e6800f..0000000 --- a/storybook-static/assets/section.stories-45d5dfd2.css +++ /dev/null @@ -1 +0,0 @@ -.atm_d2_1muw95t{grid-area:auto/1/auto/span 12} diff --git a/storybook-static/assets/spacing.stories-a4a71642.js b/storybook-static/assets/spacing.stories-a4a71642.js deleted file mode 100644 index 247247f..0000000 --- a/storybook-static/assets/spacing.stories-a4a71642.js +++ /dev/null @@ -1,5 +0,0 @@ -import{j as e}from"./jsx-runtime-d079401a.js";import{c as i}from"./css-7708fb60.js";import{u as p}from"./use_dimensions-681fd32d.js";import"./use_logos-a2e54b12.js";import"./use_people-750f5048.js";import"./index-1c937141.js";import"./index-f1f2c4b1.js";const u={title:"Theme/Spacing"},r={step0:"atm_e2_14mxdql atm_vy_14mxdql",step1:"atm_e2_1dbut50 atm_vy_1dbut50",step2:"atm_e2_vlbsmd atm_vy_vlbsmd",step3:"atm_e2_1hws8f atm_vy_1hws8f",step4:"atm_e2_p4gng6 atm_vy_p4gng6",step5:"atm_e2_1kwt7j8 atm_vy_1kwt7j8",step6:"atm_e2_2bn2nk atm_vy_2bn2nk",step7:"atm_e2_71gwbv atm_vy_71gwbv",step8:"atm_e2_gsn3wn atm_vy_gsn3wn",step9:"atm_e2_1u6qs5w atm_vy_1u6qs5w",avatar:"atm_e2_wsin2o atm_vy_wsin2o",sectionBottom:"atm_e2_6x4hiq atm_vy_6x4hiq",sectionTop:"atm_e2_1uw1flx atm_vy_1uw1flx",portfolioItemHeight:"atm_e2_q9ewe0 atm_vy_q9ewe0",portfolioItemWidth:"atm_e2_14or11w atm_vy_14or11w"},c=({size:t})=>{const{dimensions:s,ref:n}=p();return e.jsxs("div",{className:"atm_gi_1fwxnve",children:[e.jsx("span",{className:i("atm_2d_19j4os atm_9s_1o8liyq atm_h0_1fwxnve",r[t]),ref:n}),t," ",s==null?void 0:s.height]})},_={render:()=>e.jsx(e.Fragment,{children:Object.keys(r).map(t=>e.jsx(c,{size:t},t))})};var a,m,o;_.parameters={..._.parameters,docs:{...(a=_.parameters)==null?void 0:a.docs,source:{originalSource:`{ - render: () => <> - {Object.keys(sizes).map(size => )} - -}`,...(o=(m=_.parameters)==null?void 0:m.docs)==null?void 0:o.source}}};const f=["Spacing"];export{_ as Spacing,f as __namedExportsOrder,u as default}; diff --git a/storybook-static/assets/spacing.stories-b537dcc4.css b/storybook-static/assets/spacing.stories-b537dcc4.css deleted file mode 100644 index aa5ef71..0000000 --- a/storybook-static/assets/spacing.stories-b537dcc4.css +++ /dev/null @@ -1 +0,0 @@ -.atm_e2_14mxdql{height:var(--spacing-step0)}.atm_vy_14mxdql{width:var(--spacing-step0)}.atm_e2_1dbut50{height:var(--spacing-step1)}.atm_vy_1dbut50{width:var(--spacing-step1)}.atm_e2_vlbsmd{height:var(--spacing-step2)}.atm_vy_vlbsmd{width:var(--spacing-step2)}.atm_e2_1hws8f{height:var(--spacing-step3)}.atm_vy_1hws8f{width:var(--spacing-step3)}.atm_e2_p4gng6{height:var(--spacing-step4)}.atm_vy_p4gng6{width:var(--spacing-step4)}.atm_e2_1kwt7j8{height:var(--spacing-step5)}.atm_vy_1kwt7j8{width:var(--spacing-step5)}.atm_e2_2bn2nk{height:var(--spacing-step6)}.atm_vy_2bn2nk{width:var(--spacing-step6)}.atm_e2_71gwbv{height:var(--spacing-step7)}.atm_vy_71gwbv{width:var(--spacing-step7)}.atm_e2_gsn3wn{height:var(--spacing-step8)}.atm_vy_gsn3wn{width:var(--spacing-step8)}.atm_e2_1u6qs5w{height:var(--spacing-step9)}.atm_vy_1u6qs5w{width:var(--spacing-step9)}.atm_e2_wsin2o{height:var(--spacing-avatar)}.atm_vy_wsin2o{width:var(--spacing-avatar)}.atm_e2_6x4hiq{height:var(--spacing-sectionBottom)}.atm_vy_6x4hiq{width:var(--spacing-sectionBottom)}.atm_e2_1uw1flx{height:var(--spacing-sectionTop)}.atm_vy_1uw1flx{width:var(--spacing-sectionTop)}.atm_e2_q9ewe0{height:var(--spacing-portfolioItemHeight)}.atm_vy_q9ewe0{width:var(--spacing-portfolioItemHeight)}.atm_e2_14or11w{height:var(--spacing-portfolioItemWidth)}.atm_vy_14or11w{width:var(--spacing-portfolioItemWidth)}.atm_gi_1fwxnve{margin:12px}.atm_2d_19j4os.atm_2d_19j4os{background-color:#a9439a80}.atm_9s_1o8liyq{display:inline-block}.atm_h0_1fwxnve.atm_h0_1fwxnve{margin-right:12px} diff --git a/storybook-static/assets/sprint-df3d10ba.webp b/storybook-static/assets/sprint-df3d10ba.webp deleted file mode 100644 index b87c879..0000000 Binary files a/storybook-static/assets/sprint-df3d10ba.webp and /dev/null differ diff --git a/storybook-static/assets/stats-06bdd3b3.js b/storybook-static/assets/stats-06bdd3b3.js deleted file mode 100644 index c647b23..0000000 --- a/storybook-static/assets/stats-06bdd3b3.js +++ /dev/null @@ -1,7 +0,0 @@ -import{j as c}from"./jsx-runtime-d079401a.js";import{t as h,c as G}from"./css-7708fb60.js";import{c as H,g as V}from"./index-f1f2c4b1.js";const J=h("atm_a9_u67f1s atm_7l_udqwd8"),Z=h("atm_mk_1n9t6rb atm_tk_idpfg4 atm_3f_idpfg4 atm_wq_15ggnzb atm_n3_idpfg4 atm_1sg78bl_73lm4n"),X=h(G("octoArm","atm_tw_tnfvu5")),E={root:Z,svgRoot:J,octoArm:X},U=()=>c.jsx("a",{href:"https://github.com/clintandrewhall/clintandrewhall.com",target:"_blank",rel:"noopener noreferrer","aria-label":"View source on Github",...E.root,children:c.jsxs("svg",{width:"65",height:"65",viewBox:"0 0 250 250","aria-hidden":"true",...E.svgRoot,children:[c.jsx("path",{d:"M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"}),c.jsx("path",{d:"M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2",fill:"currentColor",...E.octoArm}),c.jsx("path",{d:"M115.0,115.0 C114.9,115.1 118.7,116.5 119.8,115.4 L133.7,101.6 C136.9,99.2 139.9,98.4 142.2,98.6 C133.8,88.0 127.5,74.4 143.8,58.0 C148.5,53.4 154.0,51.2 159.7,51.0 C160.3,49.4 163.2,43.6 171.4,40.1 C171.4,40.1 176.1,42.5 178.8,56.2 C183.1,58.6 187.2,61.8 190.9,65.4 C194.5,69.0 197.7,73.2 200.1,77.6 C213.8,80.2 216.3,84.9 216.3,84.9 C212.7,93.1 206.9,96.0 205.4,96.6 C205.1,102.4 203.0,107.8 198.3,112.5 C181.9,128.9 168.3,122.5 157.7,114.1 C157.9,116.9 156.7,120.9 152.7,124.9 L141.0,136.5 C139.8,137.7 141.6,141.9 141.8,141.8 Z",fill:"currentColor"})]})});U.__docgenInfo={description:"",methods:[],displayName:"GithubCorner"};const Q={Mercury:"#ff2b2b",TypeScript:"#2b7489",PureBasic:"#5a6986","Objective-C++":"#6866fb",Self:"#0579aa",edn:"#db5855",NewLisp:"#87AED7","Jupyter Notebook":"#DA5B0B",Rebol:"#358a5b",Frege:"#00cafe",Dart:"#00B4AB",AspectJ:"#a957b0",Shell:"#89e051","Web Ontology Language":"#9cc9dd",xBase:"#403a40",Eiffel:"#946d57",Nix:"#7e7eff",RAML:"#77d9fb",MTML:"#b7e1f4",Racket:"#22228f",Elixir:"#6e4a7e",SAS:"#B34936",Agda:"#315665",wisp:"#7582D1",D:"#ba595e",Kotlin:"#F18E33",Opal:"#f7ede0",Crystal:"#776791","Objective-C":"#438eff","ColdFusion CFC":"#ed2cd6",Oz:"#fab738",Mirah:"#c7a938","Objective-J":"#ff0c5a",Gosu:"#82937f",FreeMarker:"#0050b2",Ruby:"#701516","Component Pascal":"#b0ce4e",Arc:"#aa2afe",Brainfuck:"#2F2530",Nit:"#009917",APL:"#5A8164",Go:"#375eab","Visual Basic":"#945db7",PHP:"#4F5D95",Cirru:"#ccccff",SQF:"#3F3F3F",Glyph:"#e4cc98",Java:"#b07219",MAXScript:"#00a6a6",Scala:"#DC322F",Makefile:"#427819",ColdFusion:"#ed2cd6",Perl:"#0298c3",Lua:"#000080",Vue:"#2c3e50",Verilog:"#b2b7f8",Factor:"#636746",Haxe:"#df7900","Pure Data":"#91de79",Forth:"#341708",Red:"#ee0000",Hy:"#7790B2",Volt:"#1F1F1F",LSL:"#3d9970",eC:"#913960",CoffeeScript:"#244776",HTML:"#e44b23",Lex:"#DBCA00","API Blueprint":"#2ACCA8",Swift:"#ffac45",C:"#555555",AutoHotkey:"#6594b9",Isabelle:"#FEFE00",Metal:"#8f14e9",Clarion:"#db901e",JSONiq:"#40d47e",Boo:"#d4bec1",AutoIt:"#1C3552",Clojure:"#db5855",Rust:"#dea584",Prolog:"#74283c",SourcePawn:"#5c7611",AMPL:"#E6EFBB",FORTRAN:"#4d41b1",ANTLR:"#9DC3FF",Harbour:"#0e60e3",Tcl:"#e4cc98",BlitzMax:"#cd6400",PigLatin:"#fcd7de",Lasso:"#999999",ECL:"#8a1267",VHDL:"#adb2cb",Elm:"#60B5CC","Propeller Spin":"#7fa2a7",X10:"#4B6BEF",IDL:"#a3522f",ATS:"#1ac620",Ada:"#02f88c","Unity3D Asset":"#ab69a1",Nu:"#c9df40",LFE:"#004200",SuperCollider:"#46390b",Oxygene:"#cdd0e3",ASP:"#6a40fd",Assembly:"#6E4C13",Gnuplot:"#f0a9f0",JFlex:"#DBCA00",NetLinx:"#0aa0ff",Turing:"#45f715",Vala:"#fbe5cd",Processing:"#0096D8",Arduino:"#bd79d1",FLUX:"#88ccff",NetLogo:"#ff6375","C Sharp":"#178600",CSS:"#563d7c","Emacs Lisp":"#c065db",Stan:"#b2011d",SaltStack:"#646464",QML:"#44a51c",Pike:"#005390",LOLCODE:"#cc9900",ooc:"#b0b77e",Handlebars:"#01a9d6",J:"#9EEDFF",Mask:"#f97732",EmberScript:"#FFF4F3",TeX:"#3D6117",Nemerle:"#3d3c6e",KRL:"#28431f","Ren'Py":"#ff7f7f","Unified Parallel C":"#4e3617",Golo:"#88562A",Fancy:"#7b9db4",OCaml:"#3be133",Shen:"#120F14",Pascal:"#b0ce4e","F#":"#b845fc",Puppet:"#302B6D",ActionScript:"#882B0F",Diff:"#88dddd","Ragel in Ruby Host":"#9d5200",Fantom:"#dbded5",Zephir:"#118f9e",Click:"#E4E6F3",step1talk:"#596706",DM:"#447265",Ioke:"#078193",PogoScript:"#d80074",LiveScript:"#499886",JavaScript:"#f1e05a",VimL:"#199f4b",PureScript:"#1D222D",ABAP:"#E8274B",Matlab:"#bb92ac",Slash:"#007eff",R:"#198ce7",Erlang:"#B83998",Pan:"#cc0000",LookML:"#652B81",Eagle:"#814C05",Scheme:"#1e4aec",PLSQL:"#dad8d8",Python:"#3572A5",Max:"#c4a79c","Common Lisp":"#3fb68b",Latte:"#A8FF97",XQuery:"#5232e7",Omgrofl:"#cabbff",XC:"#99DA07",Nimrod:"#37775b",SystemVerilog:"#DAE1C2",Chapel:"#8dc63f",Groovy:"#e69f56",Dylan:"#6c616e",E:"#ccce35",Parrot:"#f3ca0a","Grammatical Framework":"#79aa7a","Game Maker Language":"#8fb200",Papyrus:"#6600cc","NetLinx+ERB":"#747faa",Clean:"#3F85AF",Alloy:"#64C800",Squirrel:"#800000",PAWN:"#dbb284",UnrealScript:"#a54c4d","Standard ML":"#dc566d",Slim:"#ff8f77",Perl6:"#0000fb",Julia:"#a270ba",Haskell:"#29b544",NCL:"#28431f",Io:"#a9188d",Rouge:"#cc0088",cpp:"#f34b7d","AGS Script":"#B9D9FF",Dogescript:"#cca760",nesC:"#94B0C7"};var q={exports:{}};/*! @preserve - * numeral.js - * version : 2.0.6 - * author : Adam Draper - * license : MIT - * http://adamwdraper.github.com/Numeral-js/ - */(function(p){(function(n,d){p.exports?p.exports=d():n.numeral=d()})(H,function(){var n,d,C="2.0.6",f={},w={},F={currentLocale:"en",zeroFormat:null,nullFormat:null,defaultFormat:"0,0",scalePercentBy100:!0},m={currentLocale:F.currentLocale,zeroFormat:F.zeroFormat,nullFormat:F.nullFormat,defaultFormat:F.defaultFormat,scalePercentBy100:F.scalePercentBy100};function M(e,t){this._input=e,this._value=t}return n=function(e){var t,i,a,r;if(n.isNumeral(e))t=e.value();else if(e===0||typeof e>"u")t=0;else if(e===null||d.isNaN(e))t=null;else if(typeof e=="string")if(m.zeroFormat&&e===m.zeroFormat)t=0;else if(m.nullFormat&&e===m.nullFormat||!e.replace(/[^0-9]+/g,"").length)t=null;else{for(i in f)if(r=typeof f[i].regexps.unformat=="function"?f[i].regexps.unformat():f[i].regexps.unformat,r&&e.match(r)){a=f[i].unformat;break}a=a||n._.stringToNumber,t=a(e)}else t=Number(e)||null;return new M(e,t)},n.version=C,n.isNumeral=function(e){return e instanceof M},n._=d={numberToFormat:function(e,t,i){var a=w[n.options.currentLocale],r=!1,o=!1,l=0,s="",b=1e12,u=1e9,g=1e6,N=1e3,y="",k=!1,x,v,_,L,A,z,j;if(e=e||0,v=Math.abs(e),n._.includes(t,"(")?(r=!0,t=t.replace(/[\(|\)]/g,"")):(n._.includes(t,"+")||n._.includes(t,"-"))&&(A=n._.includes(t,"+")?t.indexOf("+"):e<0?t.indexOf("-"):-1,t=t.replace(/[\+|\-]/g,"")),n._.includes(t,"a")&&(x=t.match(/a(k|m|b|t)?/),x=x?x[1]:!1,n._.includes(t," a")&&(s=" "),t=t.replace(new RegExp(s+"a[kmbt]?"),""),v>=b&&!x||x==="t"?(s+=a.abbreviations.trillion,e=e/b):v=u&&!x||x==="b"?(s+=a.abbreviations.billion,e=e/u):v=g&&!x||x==="m"?(s+=a.abbreviations.million,e=e/g):(v=N&&!x||x==="k")&&(s+=a.abbreviations.thousand,e=e/N)),n._.includes(t,"[.]")&&(o=!0,t=t.replace("[.]",".")),_=e.toString().split(".")[0],L=t.split(".")[1],z=t.indexOf(","),l=(t.split(".")[0].split(",")[0].match(/0/g)||[]).length,L?(n._.includes(L,"[")?(L=L.replace("]",""),L=L.split("["),y=n._.toFixed(e,L[0].length+L[1].length,i,L[1].length)):y=n._.toFixed(e,L.length,i),_=y.split(".")[0],n._.includes(y,".")?y=a.delimiters.decimal+y.split(".")[1]:y="",o&&Number(y.slice(1))===0&&(y="")):_=n._.toFixed(e,0,i),s&&!x&&Number(_)>=1e3&&s!==a.abbreviations.trillion)switch(_=String(Number(_)/1e3),s){case a.abbreviations.thousand:s=a.abbreviations.million;break;case a.abbreviations.million:s=a.abbreviations.billion;break;case a.abbreviations.billion:s=a.abbreviations.trillion;break}if(n._.includes(_,"-")&&(_=_.slice(1),k=!0),_.length0;D--)_="0"+_;return z>-1&&(_=_.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g,"$1"+a.delimiters.thousands)),t.indexOf(".")===0&&(_=""),j=_+y+(s||""),r?j=(r&&k?"(":"")+j+(r&&k?")":""):A>=0?j=A===0?(k?"-":"+")+j:j+(k?"-":"+"):k&&(j="-"+j),j},stringToNumber:function(e){var t=w[m.currentLocale],i=e,a={thousand:3,million:6,billion:9,trillion:12},r,o,l;if(m.zeroFormat&&e===m.zeroFormat)o=0;else if(m.nullFormat&&e===m.nullFormat||!e.replace(/[^0-9]+/g,"").length)o=null;else{o=1,t.delimiters.decimal!=="."&&(e=e.replace(/\./g,"").replace(t.delimiters.decimal,"."));for(r in a)if(l=new RegExp("[^a-zA-Z]"+t.abbreviations[r]+"(?:\\)|(\\"+t.currency.symbol+")?(?:\\))?)?$"),i.match(l)){o*=Math.pow(10,a[r]);break}o*=(e.split("-").length+Math.min(e.split("(").length-1,e.split(")").length-1))%2?1:-1,e=e.replace(/[^0-9\.]+/g,""),o*=Number(e)}return o},isNaN:function(e){return typeof e=="number"&&isNaN(e)},includes:function(e,t){return e.indexOf(t)!==-1},insert:function(e,t,i){return e.slice(0,i)+t+e.slice(i)},reduce:function(e,t){if(this===null)throw new TypeError("Array.prototype.reduce called on null or undefined");if(typeof t!="function")throw new TypeError(t+" is not a function");var i=Object(e),a=i.length>>>0,r=0,o;if(arguments.length===3)o=arguments[2];else{for(;r=a)throw new TypeError("Reduce of empty array with no initial value");o=i[r++]}for(;ra?t:a},1)},toFixed:function(e,t,i,a){var r=e.toString().split("."),o=t-(a||0),l,s,b,u;return r.length===2?l=Math.min(Math.max(r[1].length,o),t):l=o,b=Math.pow(10,l),u=(i(e+"e+"+l)/b).toFixed(l),a>t-l&&(s=new RegExp("\\.?0{1,"+(a-(t-l))+"}$"),u=u.replace(s,"")),u}},n.options=m,n.formats=f,n.locales=w,n.locale=function(e){return e&&(m.currentLocale=e.toLowerCase()),m.currentLocale},n.localeData=function(e){if(!e)return w[m.currentLocale];if(e=e.toLowerCase(),!w[e])throw new Error("Unknown locale : "+e);return w[e]},n.reset=function(){for(var e in F)m[e]=F[e]},n.zeroFormat=function(e){m.zeroFormat=typeof e=="string"?e:null},n.nullFormat=function(e){m.nullFormat=typeof e=="string"?e:null},n.defaultFormat=function(e){m.defaultFormat=typeof e=="string"?e:"0.0"},n.register=function(e,t,i){if(t=t.toLowerCase(),this[e+"s"][t])throw new TypeError(t+" "+e+" already registered.");return this[e+"s"][t]=i,i},n.validate=function(e,t){var i,a,r,o,l,s,b,u;if(typeof e!="string"&&(e+="",console.warn&&console.warn("Numeral.js: Value is not string. It has been co-erced to: ",e)),e=e.trim(),e.match(/^\d+$/))return!0;if(e==="")return!1;try{b=n.localeData(t)}catch{b=n.localeData(n.locale())}return r=b.currency.symbol,l=b.abbreviations,i=b.delimiters.decimal,b.delimiters.thousands==="."?a="\\.":a=b.delimiters.thousands,u=e.match(/^[^\d]+/),u!==null&&(e=e.substr(1),u[0]!==r)||(u=e.match(/[^\d]+$/),u!==null&&(e=e.slice(0,-1),u[0]!==l.thousand&&u[0]!==l.million&&u[0]!==l.billion&&u[0]!==l.trillion))?!1:(s=new RegExp(a+"{2}"),e.match(/[^\d.,]/g)?!1:(o=e.split(i),o.length>2?!1:o.length<2?!!o[0].match(/^\d+.*\d$/)&&!o[0].match(s):o[0].length===1?!!o[0].match(/^\d+$/)&&!o[0].match(s)&&!!o[1].match(/^\d+$/):!!o[0].match(/^\d+.*\d$/)&&!o[0].match(s)&&!!o[1].match(/^\d+$/)))},n.fn=M.prototype={clone:function(){return n(this)},format:function(e,t){var i=this._value,a=e||m.defaultFormat,r,o,l;if(t=t||Math.round,i===0&&m.zeroFormat!==null)o=m.zeroFormat;else if(i===null&&m.nullFormat!==null)o=m.nullFormat;else{for(r in f)if(a.match(f[r].regexps.format)){l=f[r].format;break}l=l||n._.numberToFormat,o=l(i,a,t)}return o},value:function(){return this._value},input:function(){return this._input},set:function(e){return this._value=Number(e),this},add:function(e){var t=d.correctionFactor.call(null,this._value,e);function i(a,r,o,l){return a+Math.round(t*r)}return this._value=d.reduce([this._value,e],i,0)/t,this},subtract:function(e){var t=d.correctionFactor.call(null,this._value,e);function i(a,r,o,l){return a-Math.round(t*r)}return this._value=d.reduce([e],i,Math.round(this._value*t))/t,this},multiply:function(e){function t(i,a,r,o){var l=d.correctionFactor(i,a);return Math.round(i*l)*Math.round(a*l)/Math.round(l*l)}return this._value=d.reduce([this._value,e],t,1),this},divide:function(e){function t(i,a,r,o){var l=d.correctionFactor(i,a);return Math.round(i*l)/Math.round(a*l)}return this._value=d.reduce([this._value,e],t),this},difference:function(e){return Math.abs(n(this._value).subtract(e).value())}},n.register("locale","en",{delimiters:{thousands:",",decimal:"."},abbreviations:{thousand:"k",million:"m",billion:"b",trillion:"t"},ordinal:function(e){var t=e%10;return~~(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th"},currency:{symbol:"$"}}),function(){n.register("format","bps",{regexps:{format:/(BPS)/,unformat:/(BPS)/},format:function(e,t,i){var a=n._.includes(t," BPS")?" ":"",r;return e=e*1e4,t=t.replace(/\s?BPS/,""),r=n._.numberToFormat(e,t,i),n._.includes(r,")")?(r=r.split(""),r.splice(-1,0,a+"BPS"),r=r.join("")):r=r+a+"BPS",r},unformat:function(e){return+(n._.stringToNumber(e)*1e-4).toFixed(15)}})}(),function(){var e={base:1e3,suffixes:["B","KB","MB","GB","TB","PB","EB","ZB","YB"]},t={base:1024,suffixes:["B","KiB","MiB","GiB","TiB","PiB","EiB","ZiB","YiB"]},i=e.suffixes.concat(t.suffixes.filter(function(r){return e.suffixes.indexOf(r)<0})),a=i.join("|");a="("+a.replace("B","B(?!PS)")+")",n.register("format","bytes",{regexps:{format:/([0\s]i?b)/,unformat:new RegExp(a)},format:function(r,o,l){var s,b=n._.includes(o,"ib")?t:e,u=n._.includes(o," b")||n._.includes(o," ib")?" ":"",g,N,y;for(o=o.replace(/\s?i?b/,""),g=0;g<=b.suffixes.length;g++)if(N=Math.pow(b.base,g),y=Math.pow(b.base,g+1),r===null||r===0||r>=N&&r0&&(r=r/N);break}return s=n._.numberToFormat(r,o,l),s+u},unformat:function(r){var o=n._.stringToNumber(r),l,s;if(o){for(l=e.suffixes.length-1;l>=0;l--){if(n._.includes(r,e.suffixes[l])){s=Math.pow(e.base,l);break}if(n._.includes(r,t.suffixes[l])){s=Math.pow(t.base,l);break}}o*=s||1}return o}})}(),function(){n.register("format","currency",{regexps:{format:/(\$)/},format:function(e,t,i){var a=n.locales[n.options.currentLocale],r={before:t.match(/^([\+|\-|\(|\s|\$]*)/)[0],after:t.match(/([\+|\-|\)|\s|\$]*)$/)[0]},o,l,s;for(t=t.replace(/\s?\$\s?/,""),o=n._.numberToFormat(e,t,i),e>=0?(r.before=r.before.replace(/[\-\(]/,""),r.after=r.after.replace(/[\-\)]/,"")):e<0&&!n._.includes(r.before,"-")&&!n._.includes(r.before,"(")&&(r.before="-"+r.before),s=0;s=0;s--)switch(l=r.after[s],l){case"$":o=s===r.after.length-1?o+a.currency.symbol:n._.insert(o,a.currency.symbol,-(r.after.length-(1+s)));break;case" ":o=s===r.after.length-1?o+" ":n._.insert(o," ",-(r.after.length-(1+s)+a.currency.symbol.length-1));break}return o}})}(),function(){n.register("format","exponential",{regexps:{format:/(e\+|e-)/,unformat:/(e\+|e-)/},format:function(e,t,i){var a,r=typeof e=="number"&&!n._.isNaN(e)?e.toExponential():"0e+0",o=r.split("e");return t=t.replace(/e[\+|\-]{1}0/,""),a=n._.numberToFormat(Number(o[0]),t,i),a+"e"+o[1]},unformat:function(e){var t=n._.includes(e,"e+")?e.split("e+"):e.split("e-"),i=Number(t[0]),a=Number(t[1]);a=n._.includes(e,"e-")?a*=-1:a;function r(o,l,s,b){var u=n._.correctionFactor(o,l),g=o*u*(l*u)/(u*u);return g}return n._.reduce([i,Math.pow(10,a)],r,1)}})}(),function(){n.register("format","ordinal",{regexps:{format:/(o)/},format:function(e,t,i){var a=n.locales[n.options.currentLocale],r,o=n._.includes(t," o")?" ":"";return t=t.replace(/\s?o/,""),o+=a.ordinal(e),r=n._.numberToFormat(e,t,i),r+o}})}(),function(){n.register("format","percentage",{regexps:{format:/(%)/,unformat:/(%)/},format:function(e,t,i){var a=n._.includes(t," %")?" ":"",r;return n.options.scalePercentBy100&&(e=e*100),t=t.replace(/\s?\%/,""),r=n._.numberToFormat(e,t,i),n._.includes(r,")")?(r=r.split(""),r.splice(-1,0,a+"%"),r=r.join("")):r=r+a+"%",r},unformat:function(e){var t=n._.stringToNumber(e);return n.options.scalePercentBy100?t*.01:t}})}(),function(){n.register("format","time",{regexps:{format:/(:)/,unformat:/(:)/},format:function(e,t,i){var a=Math.floor(e/60/60),r=Math.floor((e-a*60*60)/60),o=Math.round(e-a*60*60-r*60);return a+":"+(r<10?"0"+r:r)+":"+(o<10?"0"+o:o)},unformat:function(e){var t=e.split(":"),i=0;return t.length===3?(i=i+Number(t[0])*60*60,i=i+Number(t[1])*60,i=i+Number(t[2])):t.length===2&&(i=i+Number(t[0])*60,i=i+Number(t[1])),Number(i)}})}(),n})})(q);var K=q.exports;const R=V(K);const Y=h("atm_bx_3wtidt atm_e2_1u6qs5w"),W=h("atm_bx_1ukbt7o atm_c8_ihbmcz atm_t9_angws6 atm_fr_xmm3ny atm_h3_1hws8f"),ee=h("atm_2d_ssag22 atm_mk_h2mmj6 atm_e2_1dbut50 atm_h3_14mxdql atm_1yupzig_15vqwwr atm_t8nt15_stnw88"),te=h("atm_vl_15vqwwr atm_mk_stnw88"),re=p=>h("atm_bx_3wtidt atm_c8_ihbmcz atm_7l_75py1q atm_2d_1h2jir2 atm_mk_stnw88 atm_9s_1o8liyq atm_5j_1l7b3ar atm_g3_1kwt7j8 atm_l8_1e7xdat atm_tk_1v70ld8 atm_gz_vlbsmd atm_2zt8x3_stnw88 atm_1ymp90q_1ssbidh atm_89ifzh_idpfg4 atm_1fx0qig_1lpd5c9 atm_1lids5a_1lpd5c9 atm_x97tgh_10kubth atm_cf7i0j_10kubth atm_1d5o08k_381tww atm_1938jqx_1yyfdc7 atm_grwvqw_kb7nvz",{left:p}),ne=(p,n)=>h("atm_4b_er10vr atm_mk_stnw88 atm_e2_1dbut50 atm_g3_1dbut50 atm_se_gwm71d atm_5j_dsab1k atm_6h_t94yts atm_66_nqa18y",{background:n,width:p}),S={root:Y,header:W,definition:ee,repoCount:te,totalLines:re,percent:ne},O=({loc:p,overallTotal:n})=>{const{languageName:d,totalLines:C,byProject:f}=p,w=Q[d]||"inherit",F=R(C/n).format("0%"),m=Object.keys(f).length;return c.jsxs("div",{...S.root,children:[c.jsx("h4",{...S.header,children:d}),c.jsxs("dl",{...S.definition,children:[c.jsx("dt",{children:"Lines of code"}),c.jsx("dd",{...S.totalLines(F),children:R(C).format("0a")}),c.jsx("dt",{children:"Percentage"}),c.jsx("dd",{...S.percent(F,w),children:F}),c.jsx("dt",{children:"Number of Repos"}),c.jsx("dd",{...S.repoCount,children:m})]})]})};O.__docgenInfo={description:"",methods:[],displayName:"Language",props:{loc:{required:!0,tsType:{name:"LinesOfCode"},description:""},overallTotal:{required:!0,tsType:{name:"number"},description:""}}};const $=({loc:p})=>{if(!p)return null;const n=p.reduce((f,w)=>f+w.totalLines,0),d=p.filter(f=>f.totalLines/n*100>1).map(f=>c.jsx(O,{loc:f,overallTotal:n})),C=p.filter(f=>f.totalLines/n*100<=1).reduce((f,w)=>f+w.totalLines,0);return C>0&&d.push(c.jsx(O,{loc:{languageName:"Other",totalLines:C,byProject:{}},overallTotal:n})),d.length>0?c.jsx(c.Fragment,{children:d}):null};$.__docgenInfo={description:"",methods:[],displayName:"LOC",props:{loc:{required:!0,tsType:{name:"union",raw:"LinesOfCode[] | null",elements:[{name:"Array",elements:[{name:"LinesOfCode"}],raw:"LinesOfCode[]"},{name:"null"}]},description:""}}};const T={login:"clintandrewhall",id:297604,node_id:"MDQ6VXNlcjI5NzYwNA==",avatar_url:"https://avatars.githubusercontent.com/u/297604?v=4",gravatar_id:"",url:"https://api.github.com/users/clintandrewhall",html_url:"https://github.com/clintandrewhall",followers_url:"https://api.github.com/users/clintandrewhall/followers",following_url:"https://api.github.com/users/clintandrewhall/following{/other_user}",gists_url:"https://api.github.com/users/clintandrewhall/gists{/gist_id}",starred_url:"https://api.github.com/users/clintandrewhall/starred{/owner}{/repo}",subscriptions_url:"https://api.github.com/users/clintandrewhall/subscriptions",organizations_url:"https://api.github.com/users/clintandrewhall/orgs",repos_url:"https://api.github.com/users/clintandrewhall/repos",events_url:"https://api.github.com/users/clintandrewhall/events{/privacy}",received_events_url:"https://api.github.com/users/clintandrewhall/received_events",type:"User",site_admin:!1,name:"Clint Andrew Hall",company:"Elastic",blog:"http://www.clintandrewhall.com/",location:"Hamilton, ON",email:null,hireable:null,bio:"I build stuff. Currently a Tech Lead at @elastic. Previously at @facebook and @cerner.",twitter_username:"clintandrewhall",public_repos:45,public_gists:11,followers:167,following:17,created_at:"2010-06-05T21:16:25Z",updated_at:"2024-02-01T14:48:05Z"},ae=[{languageName:"JavaScript",totalLines:6652198,byProject:{hero:2665,"begin-oauth-babel-shared-code-poc":3178,boilerplate:6793,canvas_globe:15861,"clintandrewhall.com":49431,"backstrok.es":52170,"backstrokes-vr":857751,"node-jsonp-proxy":2618121,"clintandrewhall.github.io":3046228}},{languageName:"TypeScript",totalLines:3131003,byProject:{"clintandrewhall.github.io":2049,"begin-oauth-babel-shared-code-poc":3031,canvas_globe:3231,bunnyghp:18511,hero:48212,"node-jsonp-proxy":3055969}},{languageName:"CSS",totalLines:605194,byProject:{boilerplate:98,"clintandrewhall.github.io":4592,"backstrok.es":8517,"clintandrewhall.com":30491,hero:94254,"node-jsonp-proxy":467242}},{languageName:"HTML",totalLines:399695,byProject:{bunnyghp:626,canvas_globe:1017,"backstrokes-vr":1170,"node-jsonp-proxy":1657,"clintandrewhall.github.io":3736,hero:75301,itemize:316188}},{languageName:"Shell",totalLines:46321,byProject:{hero:107,"node-jsonp-proxy":8460,"clintandrewhall.github.io":37754}},{languageName:"Handlebars",totalLines:7014,byProject:{hero:7014}},{languageName:"Python",totalLines:2768,byProject:{"node-jsonp-proxy":2768}},{languageName:"AppleScript",totalLines:2657,byProject:{"clintandrewhall.github.io":2657}},{languageName:"SCSS",totalLines:491,byProject:{"clintandrewhall.github.io":491}},{languageName:"Sass",totalLines:200,byProject:{"clintandrewhall.github.io":200}},{languageName:"Arc",totalLines:74,byProject:{"begin-oauth-babel-shared-code-poc":74}},{languageName:"message",totalLines:0,byProject:{"node-foursquare":0}},{languageName:"documentation_url",totalLines:0,byProject:{"node-foursquare":0}}];const oe=h("atm_2d_17qlcpk atm_7l_1e3zypq atm_lk_1kwt7j8 atm_ll_1kwt7j8"),ie=h("atm_9s_11p5wf0 atm_cx_vlbsmd atm_oinevd_fsjm52 atm_dz_1ezzqvs"),le=h("atm_9s_1txwivl atm_ar_1bp4okc atm_h_1h6ojuz atm_fc_1h6ojuz atm_r3_1h6ojuz atm_ax_kb7nvz atm_mk_h2mmj6"),se=h("atm_bx_uxsjsn atm_c8_1ic6ef2 atm_40_1oqy291 atm_am_kb7nvz atm_gi_idpfg4 atm_k7_1mrwo0b atm_le_1dbut50 atm_lk_p4gng6 atm_ll_p4gng6 atm_lo_2bn2nk atm_mk_h2mmj6"),ce=h("atm_7l_qjldeo atm_bx_mszoox atm_c8_xoeuol atm_am_kb7nvz atm_le_p4gng6 atm_lk_p4gng6 atm_ll_p4gng6 atm_lo_1dbut50"),P={root:oe,list:ie,item:le,number:se,name:ce},B=({name:p,number:n})=>c.jsxs("div",{...P.item,children:[c.jsx("dt",{...P.name,children:p}),c.jsx("dd",{...P.number,children:n})]}),I=({followers:p,following:n,gists:d,repos:C})=>c.jsx("section",{id:"stats",...P.root,children:c.jsxs("dl",{...P.list,children:[c.jsx(B,{name:"Repos",number:C}),c.jsx(B,{name:"Followers",number:p}),c.jsx(B,{name:"Following",number:n}),c.jsx(B,{name:"Gists",number:d})]})});I.__docgenInfo={description:"",methods:[],displayName:"Numbers",props:{followers:{required:!0,tsType:{name:"number"},description:""},following:{required:!0,tsType:{name:"number"},description:""},gists:{required:!0,tsType:{name:"number"},description:""},repos:{required:!0,tsType:{name:"number"},description:""}}};const ue=()=>c.jsxs(c.Fragment,{children:[c.jsx(I,{...T,gists:T.public_gists,repos:T.public_repos}),c.jsx($,{loc:ae})]});ue.__docgenInfo={description:"",methods:[],displayName:"GithubStats"};export{U as G,ue as a}; diff --git a/storybook-static/assets/stats-fb7fdfd6.css b/storybook-static/assets/stats-fb7fdfd6.css deleted file mode 100644 index 6553b45..0000000 --- a/storybook-static/assets/stats-fb7fdfd6.css +++ /dev/null @@ -1 +0,0 @@ -.atm_a9_u67f1s{fill:#fff}.atm_7l_udqwd8{color:#151513}.atm_mk_1n9t6rb{position:fixed}.atm_tk_idpfg4{top:0}.atm_3f_idpfg4{border:0}.atm_wq_15ggnzb{z-index:1000}.atm_n3_idpfg4{right:0}.atm_1sg78bl_73lm4n:hover .octoArm{animation:octocat-wave .56s ease-in-out}@keyframes octocat-wave{0%,to{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}.atm_tw_tnfvu5{transform-origin:130px 106px}.atm_bx_3wtidt.atm_bx_3wtidt{font-family:var(--font-family-sans-regular)}.atm_e2_1u6qs5w{height:var(--spacing-step9)}.atm_bx_1ukbt7o.atm_bx_1ukbt7o{font-family:var(--font-family-sans-extraBold)}.atm_c8_ihbmcz.atm_c8_ihbmcz{font-size:var(--font-size-stepN1)}.atm_t9_angws6{text-transform:uppercase}.atm_fr_xmm3ny{letter-spacing:calc(var(--font-size-stepN1) * .14)}.atm_h3_1hws8f.atm_h3_1hws8f{margin-top:var(--spacing-step3)}.atm_2d_ssag22.atm_2d_ssag22{background-color:var(--color-shade)}.atm_e2_1dbut50{height:var(--spacing-step1)}.atm_h3_14mxdql.atm_h3_14mxdql{margin-top:var(--spacing-step0)}.atm_1yupzig_15vqwwr dt{visibility:hidden}.atm_t8nt15_stnw88 dt{position:absolute}.atm_vl_15vqwwr{visibility:hidden}.atm_mk_stnw88{position:absolute}.atm_7l_75py1q{color:var(--font-color-light)}.atm_2d_1h2jir2.atm_2d_1h2jir2{background-color:var(--color-dark)}.atm_9s_1o8liyq{display:inline-block}.atm_5j_1l7b3ar{border-radius:3px}.atm_g3_1kwt7j8.atm_g3_1kwt7j8{line-height:var(--spacing-step5)}.atm_l8_1e7xdat{padding:0 var(--spacing-step1)}.atm_tk_1v70ld8{top:calc(((var(--spacing-step5) - var(--spacing-step1)) / 2) * -1)}.atm_gz_vlbsmd.atm_gz_vlbsmd{margin-left:var(--spacing-step2)}.atm_2zt8x3_stnw88:after{position:absolute}.atm_1ymp90q_1ssbidh:after{top:50%}.atm_89ifzh_idpfg4:after{left:0}.atm_1fx0qig_1lpd5c9.atm_1fx0qig_1lpd5c9:after{margin-top:-5px}.atm_1lids5a_1lpd5c9.atm_1lids5a_1lpd5c9:after{margin-left:-5px}.atm_x97tgh_10kubth:after{border-bottom:5px solid transparent}.atm_cf7i0j_10kubth:after{border-top:5px solid transparent}.atm_1d5o08k_381tww:after{border-right:5px solid #000}.atm_1938jqx_1yyfdc7:after{content:""}.atm_grwvqw_kb7nvz:after{z-index:1}.atm_4b_er10vr.atm_4b_er10vr{border-color:var(--color-outline)}.atm_g3_1dbut50.atm_g3_1dbut50{line-height:var(--spacing-step1)}.atm_se_gwm71d{text-indent:-10000px}.atm_5j_dsab1k{border-radius:0 5px 5px 0}.atm_6h_t94yts.atm_6h_t94yts{border-width:1px}.atm_66_nqa18y.atm_66_nqa18y{border-style:solid}.atm_2d_17qlcpk.atm_2d_17qlcpk{background-color:var(--color-subtlest)}.atm_7l_1e3zypq{color:var(--font-color-dark)}.atm_lk_1kwt7j8.atm_lk_1kwt7j8{padding-left:var(--spacing-step5)}.atm_ll_1kwt7j8.atm_ll_1kwt7j8{padding-right:var(--spacing-step5)}.atm_9s_11p5wf0{display:grid}.atm_cx_vlbsmd{gap:var(--spacing-step2)}@media (max-width: 975px) and (min-width: 600px),(max-width: 400px){.atm_oinevd_fsjm52.atm_oinevd_fsjm52.atm_oinevd_fsjm52{grid-template-columns:repeat(2,1fr)}}.atm_dz_1ezzqvs.atm_dz_1ezzqvs{grid-template-columns:repeat(4,1fr)}.atm_9s_1txwivl{display:flex}.atm_ar_1bp4okc.atm_ar_1bp4okc{flex-direction:column}.atm_h_1h6ojuz.atm_h_1h6ojuz{align-items:center}.atm_fc_1h6ojuz.atm_fc_1h6ojuz{justify-content:center}.atm_r3_1h6ojuz{text-align:center}.atm_ax_kb7nvz.atm_ax_kb7nvz{flex-grow:1}.atm_mk_h2mmj6{position:relative}.atm_bx_uxsjsn.atm_bx_uxsjsn{font-family:var(--font-family-serif-bold)}.atm_c8_1ic6ef2.atm_c8_1ic6ef2{font-size:var(--font-size-step3)}.atm_40_1oqy291{border-bottom:1px solid var(--color-separator)}.atm_am_kb7nvz{flex:1}.atm_gi_idpfg4{margin:0}.atm_k7_1mrwo0b{order:-1}.atm_le_1dbut50.atm_le_1dbut50{padding-bottom:var(--spacing-step1)}.atm_lk_p4gng6.atm_lk_p4gng6{padding-left:var(--spacing-step4)}.atm_ll_p4gng6.atm_ll_p4gng6{padding-right:var(--spacing-step4)}.atm_lo_2bn2nk.atm_lo_2bn2nk{padding-top:var(--spacing-step6)}.atm_7l_qjldeo{color:var(--font-color-medium)}.atm_bx_mszoox.atm_bx_mszoox{font-family:var(--font-family-sans-medium)}.atm_c8_xoeuol.atm_c8_xoeuol{font-size:var(--font-size-step0)}.atm_le_p4gng6.atm_le_p4gng6{padding-bottom:var(--spacing-step4)}.atm_lo_1dbut50.atm_lo_1dbut50{padding-top:var(--spacing-step1)} diff --git a/storybook-static/assets/stats.stories-d192274a.js b/storybook-static/assets/stats.stories-d192274a.js deleted file mode 100644 index 19dbf56..0000000 --- a/storybook-static/assets/stats.stories-d192274a.js +++ /dev/null @@ -1,8 +0,0 @@ -import{a as e}from"./stats-06bdd3b3.js";import"./jsx-runtime-d079401a.js";import"./index-f1f2c4b1.js";import"./css-7708fb60.js";const m={title:"Components/Github/Stats",component:e},o={args:{followers:136,following:16,gists:11,repos:45}};var t,s,r;o.parameters={...o.parameters,docs:{...(t=o.parameters)==null?void 0:t.docs,source:{originalSource:`{ - args: { - followers: 136, - following: 16, - gists: 11, - repos: 45 - } -}`,...(r=(s=o.parameters)==null?void 0:s.docs)==null?void 0:r.source}}};const l=["Stats"];export{o as Stats,l as __namedExportsOrder,m as default}; diff --git a/storybook-static/assets/symbol-c31399b4.webp b/storybook-static/assets/symbol-c31399b4.webp deleted file mode 100644 index 6af4ca2..0000000 Binary files a/storybook-static/assets/symbol-c31399b4.webp and /dev/null differ diff --git a/storybook-static/assets/tim-cd99e9d8.webp b/storybook-static/assets/tim-cd99e9d8.webp deleted file mode 100644 index 43a0f9b..0000000 Binary files a/storybook-static/assets/tim-cd99e9d8.webp and /dev/null differ diff --git a/storybook-static/assets/timeline.stories-5cade05a.js b/storybook-static/assets/timeline.stories-5cade05a.js deleted file mode 100644 index 2225622..0000000 --- a/storybook-static/assets/timeline.stories-5cade05a.js +++ /dev/null @@ -1,22 +0,0 @@ -import{j as e}from"./jsx-runtime-d079401a.js";import{T as l,a as t}from"./timeline_item-de0bfc23.js";import"./index-f1f2c4b1.js";import"./use_logos-a2e54b12.js";import"./css-7708fb60.js";import"./index-9b15b185.js";/* empty css */const f={title:"Components/Timeline",component:l},i={args:{title:"Elastic",subtitle:"Tech Lead, Shared UX",start:"2021-12-21",id:"elastic",children:`Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent hendrerit dui vel pulvinar interdum. Cras fermentum lorem diam, sit amet semper nisl convallis eu. In feugiat ex vel lorem hendrerit, ac viverra ex ullamcorper. Pellentesque finibus vel sem sed rhoncus. - -Aliquam a diam efficitur, fringilla mauris euismod, ullamcorper eros. Cras efficitur id est non volutpat. Aliquam erat volutpat. Donec in ipsum id urna faucibus pellentesque at quis turpis. Etiam aliquam odio arcu, et interdum velit gravida vel. Praesent laoreet urna et sapien accumsan, ut ullamcorper mi faucibus.`},render:r=>e.jsx("div",{style:{margin:16},children:e.jsxs(l,{children:[e.jsx(t,{...r}),e.jsx(t,{...r}),e.jsx(t,{...r})]})})};var a,n,s;i.parameters={...i.parameters,docs:{...(a=i.parameters)==null?void 0:a.docs,source:{originalSource:`{ - args: { - title: 'Elastic', - subtitle: 'Tech Lead, Shared UX', - start: '2021-12-21', - id: 'elastic', - children: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent hendrerit dui vel pulvinar interdum. Cras fermentum lorem diam, sit amet semper nisl convallis eu. In feugiat ex vel lorem hendrerit, ac viverra ex ullamcorper. Pellentesque finibus vel sem sed rhoncus.\\n\\nAliquam a diam efficitur, fringilla mauris euismod, ullamcorper eros. Cras efficitur id est non volutpat. Aliquam erat volutpat. Donec in ipsum id urna faucibus pellentesque at quis turpis. Etiam aliquam odio arcu, et interdum velit gravida vel. Praesent laoreet urna et sapien accumsan, ut ullamcorper mi faucibus.' - }, - render: (args: Arguments) => { - return
- - - - - -
; - } -}`,...(s=(n=i.parameters)==null?void 0:n.docs)==null?void 0:s.source}}};const g=["Timeline"];export{i as Timeline,g as __namedExportsOrder,f as default}; diff --git a/storybook-static/assets/timeline_item-71381e11.css b/storybook-static/assets/timeline_item-71381e11.css deleted file mode 100644 index 223a4c4..0000000 --- a/storybook-static/assets/timeline_item-71381e11.css +++ /dev/null @@ -1 +0,0 @@ -.atm_d2_1cz9tj2{grid-area:auto/1/auto/span 12}.atm_84_zlmbyt.atm_84_zlmbyt{column-gap:var(--grid-gutter)}.atm_h3_1ls0pbf.atm_h3_1ls0pbf{margin-top:calc(var(--spacing-step7) * -1)}.atm_8o_125t7hm.atm_8o_125t7hm{column-width:calc(50% - var(--grid-gutter) / 2)}.atm_7y_cs5v99.atm_7y_cs5v99{column-count:2}@media (max-width: 975px){.atm_vcmvxo_kb7nvz.atm_vcmvxo_kb7nvz.atm_vcmvxo_kb7nvz{column-count:1}}@media (max-width: 975px){.atm_on9pq8_1osqo2v.atm_on9pq8_1osqo2v.atm_on9pq8_1osqo2v{column-width:100%}}.atm_1v8yup7_t94yts:before{width:1px}.atm_1aj71h3_g3u8h6:before{background:var(--color-subtler)}.atm_44hr8e_ipkheg:before{left:calc(((var(--spacing-step5) + (var(--spacing-step1) * 2))) / 2)}.atm_2stpi8_1h3umxk:before{top:calc(var(--spacing-step9) + 20px)}.atm_mbezp2_idpfg4:before{bottom:0}.atm_1hf877f_idpfg4:before{z-index:0}@media (min-width: 975px){.atm_1vbwstq_b3btdj.atm_1vbwstq_b3btdj:after{content:""}}@media (min-width: 975px){.atm_1bd50fa_1ulexfb.atm_1bd50fa_1ulexfb:after{display:block}}@media (min-width: 975px){.atm_6lyj3t_t94yts.atm_6lyj3t_t94yts:after{width:1px}}@media (min-width: 975px){.atm_1buta6p_g3u8h6.atm_1buta6p_g3u8h6:after{background:var(--color-subtler)}}@media (min-width: 975px){.atm_xwuqtq_stnw88.atm_xwuqtq_stnw88:after{position:absolute}}@media (min-width: 975px){.atm_199lwkh_199k40i.atm_199lwkh_199k40i:after{left:calc(50% + (var(--spacing-step1) * 2) + (((var(--spacing-step5) + (var(--spacing-step1) * 2))) / 2))}}@media (min-width: 975px){.atm_1jqc7ij_1u6qs5w.atm_1jqc7ij_1u6qs5w:after{top:var(--spacing-step9)}}@media (min-width: 975px){.atm_1ogxqjv_idpfg4.atm_1ogxqjv_idpfg4:after{bottom:0}}@media (min-width: 975px){.atm_8ill6d_idpfg4.atm_8ill6d_idpfg4:after{z-index:0}}.atm_lk_1g2egjv.atm_lk_1g2egjv{padding-left:calc((var(--spacing-step5) + (var(--spacing-step1) * 2)) + (var(--grid-gutter) / 2))}.atm_lo_1u6qs5w.atm_lo_1u6qs5w{padding-top:var(--spacing-step9)}.atm_mk_h2mmj6{position:relative}.atm_79_1xkizqx{break-inside:avoid}.atm_bx_mszoox.atm_bx_mszoox{font-family:var(--font-family-sans-medium)}.atm_7l_1e3zypq{color:var(--font-color-dark)}.atm_cs_p0owkv.atm_cs_p0owkv{font-weight:var(--font-weight-normal)}.atm_9s_1txwivl{display:flex}.atm_ar_1bp4okc.atm_ar_1bp4okc{flex-direction:column}.atm_lzn0r3_b3btdj:before{content:""}.atm_jxpu17_1ssbidh:before{border-radius:50%}.atm_du7p7_1ulexfb:before{display:block}.atm_1oletfx_1kwt7j8:before{height:var(--spacing-step5)}.atm_1v8yup7_1kwt7j8:before{width:var(--spacing-step5)}.atm_6hjprp_stnw88:before{position:absolute}.atm_1hf877f_cs5v99:before{z-index:2}.atm_44hr8e_1dbut50:before{left:var(--spacing-step1)}.atm_embtlk_1rvdtxc.atm_embtlk_1rvdtxc:before{background-image:var(--timeline-item-logo)}.atm_12h3rla_1kwt7j8.atm_12h3rla_1kwt7j8:before{background-size:var(--spacing-step5)}.atm_f5f5es_1h6ojuz.atm_f5f5es_1h6ojuz:before{background-position:center}.atm_2stpi8_xort1t:before{top:calc((var(--spacing-step9) + var(--font-size-step0) + var(--spacing-step1) + (var(--spacing-step2) / 2)))}.atm_135rde5_g3u8h6:after{background:var(--color-subtler)}.atm_1938jqx_b3btdj:after{content:""}.atm_t8tx92_1ulexfb:after{display:block}.atm_1054lsl_1q4jrv2:after{height:calc((var(--spacing-step5) + (var(--spacing-step1) * 2)))}.atm_1hh4tvs_1q4jrv2:after{width:calc((var(--spacing-step5) + (var(--spacing-step1) * 2)))}.atm_89ifzh_idpfg4:after{left:0}.atm_1ymp90q_29t12q:after{top:calc(((var(--spacing-step9) + var(--font-size-step0) + var(--spacing-step1) + (var(--spacing-step2) / 2))) - var(--spacing-step1))}.atm_7otamn_1ssbidh:after{border-radius:50%}.atm_2zt8x3_stnw88:after{position:absolute}.atm_grwvqw_kb7nvz:after{z-index:1}.atm_c8_ihbmcz.atm_c8_ihbmcz{font-size:var(--font-size-stepN1)}.atm_7l_ubcz1x{color:var(--font-color-text)}.atm_fr_1c31os8{letter-spacing:calc(var(--font-size-step0) * .1)}.atm_t9_angws6{text-transform:uppercase}.atm_k7_kb7nvz{order:1}.atm_gq_14mxdql.atm_gq_14mxdql{margin-bottom:var(--spacing-step0)}.atm_c8_1088tx0.atm_c8_1088tx0{font-size:var(--font-size-step2)}.atm_g3_1088tx0.atm_g3_1088tx0{line-height:var(--font-size-step2)}.atm_k7_cs5v99{order:2}.atm_gi_idpfg4{margin:0}.atm_g3_wwia0z.atm_g3_wwia0z{line-height:var(--font-size-step1)}.atm_k7_11wpgbn{order:3}.atm_h3_14mxdql.atm_h3_14mxdql{margin-top:var(--spacing-step0)}.atm_gq_p4gng6.atm_gq_p4gng6{margin-bottom:var(--spacing-step4)}.atm_bx_18cx291.atm_bx_18cx291{font-family:var(--font-family-serif-regular)}.atm_c8_xoeuol.atm_c8_xoeuol{font-size:var(--font-size-step0)}.atm_g3_1ic6ef2.atm_g3_1ic6ef2{line-height:var(--font-size-step3)}.atm_jtqn8w_2bn2nk.atm_jtqn8w_2bn2nk p{padding-bottom:var(--spacing-step6)} diff --git a/storybook-static/assets/timeline_item-de0bfc23.js b/storybook-static/assets/timeline_item-de0bfc23.js deleted file mode 100644 index 86f6cd0..0000000 --- a/storybook-static/assets/timeline_item-de0bfc23.js +++ /dev/null @@ -1,10 +0,0 @@ -import{j as C}from"./jsx-runtime-d079401a.js";import{u as Os}from"./use_logos-a2e54b12.js";import{t as ae}from"./css-7708fb60.js";import{t as xs}from"./index-9b15b185.js";const Ts=ae("atm_d2_1cz9tj2 atm_84_zlmbyt atm_h3_1ls0pbf atm_8o_125t7hm atm_7y_cs5v99 atm_mk_h2mmj6 atm_vcmvxo_kb7nvz atm_on9pq8_1osqo2v atm_lzn0r3_b3btdj atm_du7p7_1ulexfb atm_1v8yup7_t94yts atm_1aj71h3_g3u8h6 atm_6hjprp_stnw88 atm_44hr8e_ipkheg atm_2stpi8_1h3umxk atm_mbezp2_idpfg4 atm_1hf877f_idpfg4 atm_1vbwstq_b3btdj atm_1bd50fa_1ulexfb atm_6lyj3t_t94yts atm_1buta6p_g3u8h6 atm_xwuqtq_stnw88 atm_199lwkh_199k40i atm_1jqc7ij_1u6qs5w atm_1ogxqjv_idpfg4 atm_8ill6d_idpfg4"),bs={root:Ts},Ns=({children:e,items:t})=>{const s=e??t.map(r=>C.jsx(Ys,{...r},r.title));return C.jsx("div",{...bs.root,children:s})};Ns.__docgenInfo={description:"",methods:[],displayName:"Timeline"};//! moment.js -//! version : 2.30.1 -//! authors : Tim Wood, Iskren Chernev, Moment.js contributors -//! license : MIT -//! momentjs.com -var Ft;function l(){return Ft.apply(null,arguments)}function Ws(e){Ft=e}function R(e){return e instanceof Array||Object.prototype.toString.call(e)==="[object Array]"}function re(e){return e!=null&&Object.prototype.toString.call(e)==="[object Object]"}function w(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function nt(e){if(Object.getOwnPropertyNames)return Object.getOwnPropertyNames(e).length===0;var t;for(t in e)if(w(e,t))return!1;return!0}function x(e){return e===void 0}function Z(e){return typeof e=="number"||Object.prototype.toString.call(e)==="[object Number]"}function ve(e){return e instanceof Date||Object.prototype.toString.call(e)==="[object Date]"}function Lt(e,t){var s=[],r,a=e.length;for(r=0;r>>0,r;for(r=0;r0)for(s=0;s=0;return(n?s?"+":"":"-")+Math.pow(10,Math.max(0,a)).toString().substr(1)+r}var ut=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,xe=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,Be={},de={};function h(e,t,s,r){var a=r;typeof r=="string"&&(a=function(){return this[r]()}),e&&(de[e]=a),t&&(de[t[0]]=function(){return I(a.apply(this,arguments),t[1],t[2])}),s&&(de[s]=function(){return this.localeData().ordinal(a.apply(this,arguments),e)})}function Cs(e){return e.match(/\[[\s\S]/)?e.replace(/^\[|\]$/g,""):e.replace(/\\/g,"")}function Us(e){var t=e.match(ut),s,r;for(s=0,r=t.length;s=0&&xe.test(e);)e=e.replace(xe,r),xe.lastIndex=0,s-=1;return e}var Is={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};function Hs(e){var t=this._longDateFormat[e],s=this._longDateFormat[e.toUpperCase()];return t||!s?t:(this._longDateFormat[e]=s.match(ut).map(function(r){return r==="MMMM"||r==="MM"||r==="DD"||r==="dddd"?r.slice(1):r}).join(""),this._longDateFormat[e])}var Es="Invalid date";function js(){return this._invalidDate}var As="%d",Vs=/\d{1,2}/;function Gs(e){return this._ordinal.replace("%d",e)}var zs={future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",w:"a week",ww:"%d weeks",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function qs(e,t,s,r){var a=this._relativeTime[s];return E(a)?a(e,t,s,r):a.replace(/%d/i,e)}function $s(e,t){var s=this._relativeTime[e>0?"future":"past"];return E(s)?s(t):s.replace(/%s/i,t)}var Nt={D:"date",dates:"date",date:"date",d:"day",days:"day",day:"day",e:"weekday",weekdays:"weekday",weekday:"weekday",E:"isoWeekday",isoweekdays:"isoWeekday",isoweekday:"isoWeekday",DDD:"dayOfYear",dayofyears:"dayOfYear",dayofyear:"dayOfYear",h:"hour",hours:"hour",hour:"hour",ms:"millisecond",milliseconds:"millisecond",millisecond:"millisecond",m:"minute",minutes:"minute",minute:"minute",M:"month",months:"month",month:"month",Q:"quarter",quarters:"quarter",quarter:"quarter",s:"second",seconds:"second",second:"second",gg:"weekYear",weekyears:"weekYear",weekyear:"weekYear",GG:"isoWeekYear",isoweekyears:"isoWeekYear",isoweekyear:"isoWeekYear",w:"week",weeks:"week",week:"week",W:"isoWeek",isoweeks:"isoWeek",isoweek:"isoWeek",y:"year",years:"year",year:"year"};function W(e){return typeof e=="string"?Nt[e]||Nt[e.toLowerCase()]:void 0}function dt(e){var t={},s,r;for(r in e)w(e,r)&&(s=W(r),s&&(t[s]=e[r]));return t}var Zs={date:9,day:11,weekday:11,isoWeekday:11,dayOfYear:4,hour:13,millisecond:16,minute:14,month:8,quarter:7,second:15,weekYear:1,isoWeekYear:1,week:5,isoWeek:5,year:1};function Bs(e){var t=[],s;for(s in e)w(e,s)&&t.push({unit:s,priority:Zs[s]});return t.sort(function(r,a){return r.priority-a.priority}),t}var Ht=/\d/,T=/\d\d/,Et=/\d{3}/,ht=/\d{4}/,Ie=/[+-]?\d{6}/,M=/\d\d?/,jt=/\d\d\d\d?/,At=/\d\d\d\d\d\d?/,He=/\d{1,3}/,ft=/\d{1,4}/,Ee=/[+-]?\d{1,6}/,ce=/\d+/,je=/[+-]?\d+/,Js=/Z|[+-]\d\d:?\d\d/gi,Ae=/Z|[+-]\d\d(?::?\d\d)?/gi,Qs=/[+-]?\d+(\.\d{1,3})?/,Ye=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,_e=/^[1-9]\d?/,ct=/^([1-9]\d|\d)/,Pe;Pe={};function d(e,t,s){Pe[e]=E(t)?t:function(r,a){return r&&s?s:t}}function Xs(e,t){return w(Pe,e)?Pe[e](t._strict,t._locale):new RegExp(Ks(e))}function Ks(e){return q(e.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,s,r,a,n){return s||r||a||n}))}function q(e){return e.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function b(e){return e<0?Math.ceil(e)||0:Math.floor(e)}function _(e){var t=+e,s=0;return t!==0&&isFinite(t)&&(s=b(t)),s}var tt={};function g(e,t){var s,r=t,a;for(typeof e=="string"&&(e=[e]),Z(t)&&(r=function(n,i){i[t]=_(n)}),a=e.length,s=0;s68?1900:2e3)};var Vt=me("FullYear",!0);function rr(){return Ve(this.year())}function me(e,t){return function(s){return s!=null?(Gt(this,e,s),l.updateOffset(this,t),this):ge(this,e)}}function ge(e,t){if(!e.isValid())return NaN;var s=e._d,r=e._isUTC;switch(t){case"Milliseconds":return r?s.getUTCMilliseconds():s.getMilliseconds();case"Seconds":return r?s.getUTCSeconds():s.getSeconds();case"Minutes":return r?s.getUTCMinutes():s.getMinutes();case"Hours":return r?s.getUTCHours():s.getHours();case"Date":return r?s.getUTCDate():s.getDate();case"Day":return r?s.getUTCDay():s.getDay();case"Month":return r?s.getUTCMonth():s.getMonth();case"FullYear":return r?s.getUTCFullYear():s.getFullYear();default:return NaN}}function Gt(e,t,s){var r,a,n,i,u;if(!(!e.isValid()||isNaN(s))){switch(r=e._d,a=e._isUTC,t){case"Milliseconds":return void(a?r.setUTCMilliseconds(s):r.setMilliseconds(s));case"Seconds":return void(a?r.setUTCSeconds(s):r.setSeconds(s));case"Minutes":return void(a?r.setUTCMinutes(s):r.setMinutes(s));case"Hours":return void(a?r.setUTCHours(s):r.setHours(s));case"Date":return void(a?r.setUTCDate(s):r.setDate(s));case"FullYear":break;default:return}n=s,i=e.month(),u=e.date(),u=u===29&&i===1&&!Ve(n)?28:u,a?r.setUTCFullYear(n,i,u):r.setFullYear(n,i,u)}}function ar(e){return e=W(e),E(this[e])?this[e]():this}function nr(e,t){if(typeof e=="object"){e=dt(e);var s=Bs(e),r,a=s.length;for(r=0;r=0?(u=new Date(e+400,t,s,r,a,n,i),isFinite(u.getFullYear())&&u.setFullYear(e)):u=new Date(e,t,s,r,a,n,i),u}function pe(e){var t,s;return e<100&&e>=0?(s=Array.prototype.slice.call(arguments),s[0]=e+400,t=new Date(Date.UTC.apply(null,s)),isFinite(t.getUTCFullYear())&&t.setUTCFullYear(e)):t=new Date(Date.UTC.apply(null,arguments)),t}function Re(e,t,s){var r=7+t-s,a=(7+pe(e,0,r).getUTCDay()-t)%7;return-a+r-1}function Jt(e,t,s,r,a){var n=(7+s-r)%7,i=Re(e,r,a),u=1+7*(t-1)+n+i,f,m;return u<=0?(f=e-1,m=ke(f)+u):u>ke(e)?(f=e+1,m=u-ke(e)):(f=e,m=u),{year:f,dayOfYear:m}}function Me(e,t,s){var r=Re(e.year(),t,s),a=Math.floor((e.dayOfYear()-r-1)/7)+1,n,i;return a<1?(i=e.year()-1,n=a+$(i,t,s)):a>$(e.year(),t,s)?(n=a-$(e.year(),t,s),i=e.year()+1):(i=e.year(),n=a),{week:n,year:i}}function $(e,t,s){var r=Re(e,t,s),a=Re(e+1,t,s);return(ke(e)-r+a)/7}h("w",["ww",2],"wo","week");h("W",["WW",2],"Wo","isoWeek");d("w",M,_e);d("ww",M,T);d("W",M,_e);d("WW",M,T);Oe(["w","ww","W","WW"],function(e,t,s,r){t[r.substr(0,1)]=_(e)});function kr(e){return Me(e,this._week.dow,this._week.doy).week}var gr={dow:0,doy:6};function pr(){return this._week.dow}function Mr(){return this._week.doy}function Sr(e){var t=this.localeData().week(this);return e==null?t:this.add((e-t)*7,"d")}function vr(e){var t=Me(this,1,4).week;return e==null?t:this.add((e-t)*7,"d")}h("d",0,"do","day");h("dd",0,0,function(e){return this.localeData().weekdaysMin(this,e)});h("ddd",0,0,function(e){return this.localeData().weekdaysShort(this,e)});h("dddd",0,0,function(e){return this.localeData().weekdays(this,e)});h("e",0,0,"weekday");h("E",0,0,"isoWeekday");d("d",M);d("e",M);d("E",M);d("dd",function(e,t){return t.weekdaysMinRegex(e)});d("ddd",function(e,t){return t.weekdaysShortRegex(e)});d("dddd",function(e,t){return t.weekdaysRegex(e)});Oe(["dd","ddd","dddd"],function(e,t,s,r){var a=s._locale.weekdaysParse(e,r,s._strict);a!=null?t.d=a:c(s).invalidWeekday=e});Oe(["d","e","E"],function(e,t,s,r){t[r]=_(e)});function Dr(e,t){return typeof e!="string"?e:isNaN(e)?(e=t.weekdaysParse(e),typeof e=="number"?e:null):parseInt(e,10)}function Yr(e,t){return typeof e=="string"?t.weekdaysParse(e)%7||7:isNaN(e)?null:e}function mt(e,t){return e.slice(t,7).concat(e.slice(0,t))}var Or="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Qt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),xr="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Tr=Ye,br=Ye,Nr=Ye;function Wr(e,t){var s=R(this._weekdays)?this._weekdays:this._weekdays[e&&e!==!0&&this._weekdays.isFormat.test(t)?"format":"standalone"];return e===!0?mt(s,this._week.dow):e?s[e.day()]:s}function Pr(e){return e===!0?mt(this._weekdaysShort,this._week.dow):e?this._weekdaysShort[e.day()]:this._weekdaysShort}function Rr(e){return e===!0?mt(this._weekdaysMin,this._week.dow):e?this._weekdaysMin[e.day()]:this._weekdaysMin}function Fr(e,t,s){var r,a,n,i=e.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],r=0;r<7;++r)n=H([2e3,1]).day(r),this._minWeekdaysParse[r]=this.weekdaysMin(n,"").toLocaleLowerCase(),this._shortWeekdaysParse[r]=this.weekdaysShort(n,"").toLocaleLowerCase(),this._weekdaysParse[r]=this.weekdays(n,"").toLocaleLowerCase();return s?t==="dddd"?(a=v.call(this._weekdaysParse,i),a!==-1?a:null):t==="ddd"?(a=v.call(this._shortWeekdaysParse,i),a!==-1?a:null):(a=v.call(this._minWeekdaysParse,i),a!==-1?a:null):t==="dddd"?(a=v.call(this._weekdaysParse,i),a!==-1||(a=v.call(this._shortWeekdaysParse,i),a!==-1)?a:(a=v.call(this._minWeekdaysParse,i),a!==-1?a:null)):t==="ddd"?(a=v.call(this._shortWeekdaysParse,i),a!==-1||(a=v.call(this._weekdaysParse,i),a!==-1)?a:(a=v.call(this._minWeekdaysParse,i),a!==-1?a:null)):(a=v.call(this._minWeekdaysParse,i),a!==-1||(a=v.call(this._weekdaysParse,i),a!==-1)?a:(a=v.call(this._shortWeekdaysParse,i),a!==-1?a:null))}function Lr(e,t,s){var r,a,n;if(this._weekdaysParseExact)return Fr.call(this,e,t,s);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),r=0;r<7;r++){if(a=H([2e3,1]).day(r),s&&!this._fullWeekdaysParse[r]&&(this._fullWeekdaysParse[r]=new RegExp("^"+this.weekdays(a,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[r]=new RegExp("^"+this.weekdaysShort(a,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[r]=new RegExp("^"+this.weekdaysMin(a,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[r]||(n="^"+this.weekdays(a,"")+"|^"+this.weekdaysShort(a,"")+"|^"+this.weekdaysMin(a,""),this._weekdaysParse[r]=new RegExp(n.replace(".",""),"i")),s&&t==="dddd"&&this._fullWeekdaysParse[r].test(e))return r;if(s&&t==="ddd"&&this._shortWeekdaysParse[r].test(e))return r;if(s&&t==="dd"&&this._minWeekdaysParse[r].test(e))return r;if(!s&&this._weekdaysParse[r].test(e))return r}}function Cr(e){if(!this.isValid())return e!=null?this:NaN;var t=ge(this,"Day");return e!=null?(e=Dr(e,this.localeData()),this.add(e-t,"d")):t}function Ur(e){if(!this.isValid())return e!=null?this:NaN;var t=(this.day()+7-this.localeData()._week.dow)%7;return e==null?t:this.add(e-t,"d")}function Ir(e){if(!this.isValid())return e!=null?this:NaN;if(e!=null){var t=Yr(e,this.localeData());return this.day(this.day()%7?t:t-7)}else return this.day()||7}function Hr(e){return this._weekdaysParseExact?(w(this,"_weekdaysRegex")||yt.call(this),e?this._weekdaysStrictRegex:this._weekdaysRegex):(w(this,"_weekdaysRegex")||(this._weekdaysRegex=Tr),this._weekdaysStrictRegex&&e?this._weekdaysStrictRegex:this._weekdaysRegex)}function Er(e){return this._weekdaysParseExact?(w(this,"_weekdaysRegex")||yt.call(this),e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(w(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=br),this._weekdaysShortStrictRegex&&e?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function jr(e){return this._weekdaysParseExact?(w(this,"_weekdaysRegex")||yt.call(this),e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(w(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Nr),this._weekdaysMinStrictRegex&&e?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function yt(){function e(O,j){return j.length-O.length}var t=[],s=[],r=[],a=[],n,i,u,f,m;for(n=0;n<7;n++)i=H([2e3,1]).day(n),u=q(this.weekdaysMin(i,"")),f=q(this.weekdaysShort(i,"")),m=q(this.weekdays(i,"")),t.push(u),s.push(f),r.push(m),a.push(u),a.push(f),a.push(m);t.sort(e),s.sort(e),r.sort(e),a.sort(e),this._weekdaysRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+r.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+s.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+t.join("|")+")","i")}function wt(){return this.hours()%12||12}function Ar(){return this.hours()||24}h("H",["HH",2],0,"hour");h("h",["hh",2],0,wt);h("k",["kk",2],0,Ar);h("hmm",0,0,function(){return""+wt.apply(this)+I(this.minutes(),2)});h("hmmss",0,0,function(){return""+wt.apply(this)+I(this.minutes(),2)+I(this.seconds(),2)});h("Hmm",0,0,function(){return""+this.hours()+I(this.minutes(),2)});h("Hmmss",0,0,function(){return""+this.hours()+I(this.minutes(),2)+I(this.seconds(),2)});function Xt(e,t){h(e,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),t)})}Xt("a",!0);Xt("A",!1);function Kt(e,t){return t._meridiemParse}d("a",Kt);d("A",Kt);d("H",M,ct);d("h",M,_e);d("k",M,_e);d("HH",M,T);d("hh",M,T);d("kk",M,T);d("hmm",jt);d("hmmss",At);d("Hmm",jt);d("Hmmss",At);g(["H","HH"],D);g(["k","kk"],function(e,t,s){var r=_(e);t[D]=r===24?0:r});g(["a","A"],function(e,t,s){s._isPm=s._locale.isPM(e),s._meridiem=e});g(["h","hh"],function(e,t,s){t[D]=_(e),c(s).bigHour=!0});g("hmm",function(e,t,s){var r=e.length-2;t[D]=_(e.substr(0,r)),t[P]=_(e.substr(r)),c(s).bigHour=!0});g("hmmss",function(e,t,s){var r=e.length-4,a=e.length-2;t[D]=_(e.substr(0,r)),t[P]=_(e.substr(r,2)),t[z]=_(e.substr(a)),c(s).bigHour=!0});g("Hmm",function(e,t,s){var r=e.length-2;t[D]=_(e.substr(0,r)),t[P]=_(e.substr(r))});g("Hmmss",function(e,t,s){var r=e.length-4,a=e.length-2;t[D]=_(e.substr(0,r)),t[P]=_(e.substr(r,2)),t[z]=_(e.substr(a))});function Vr(e){return(e+"").toLowerCase().charAt(0)==="p"}var Gr=/[ap]\.?m?\.?/i,zr=me("Hours",!0);function qr(e,t,s){return e>11?s?"pm":"PM":s?"am":"AM"}var es={calendar:Fs,longDateFormat:Is,invalidDate:Es,ordinal:As,dayOfMonthOrdinalParse:Vs,relativeTime:zs,months:or,monthsShort:zt,week:gr,weekdays:Or,weekdaysMin:xr,weekdaysShort:Qt,meridiemParse:Gr},S={},ye={},Se;function $r(e,t){var s,r=Math.min(e.length,t.length);for(s=0;s0;){if(a=Ge(n.slice(0,s).join("-")),a)return a;if(r&&r.length>=s&&$r(n,r)>=s-1)break;s--}t++}return Se}function Br(e){return!!(e&&e.match("^[^/\\\\]*$"))}function Ge(e){var t=null,s;if(S[e]===void 0&&typeof module<"u"&&module&&module.exports&&Br(e))try{t=Se._abbr,s=require,s("./locale/"+e),ee(t)}catch{S[e]=null}return S[e]}function ee(e,t){var s;return e&&(x(t)?s=B(e):s=kt(e,t),s?Se=s:typeof console<"u"&&console.warn&&console.warn("Locale "+e+" not found. Did you forget to load it?")),Se._abbr}function kt(e,t){if(t!==null){var s,r=es;if(t.abbr=e,S[e]!=null)Ut("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),r=S[e]._config;else if(t.parentLocale!=null)if(S[t.parentLocale]!=null)r=S[t.parentLocale]._config;else if(s=Ge(t.parentLocale),s!=null)r=s._config;else return ye[t.parentLocale]||(ye[t.parentLocale]=[]),ye[t.parentLocale].push({name:e,config:t}),null;return S[e]=new lt(Ke(r,t)),ye[e]&&ye[e].forEach(function(a){kt(a.name,a.config)}),ee(e),S[e]}else return delete S[e],null}function Jr(e,t){if(t!=null){var s,r,a=es;S[e]!=null&&S[e].parentLocale!=null?S[e].set(Ke(S[e]._config,t)):(r=Ge(e),r!=null&&(a=r._config),t=Ke(a,t),r==null&&(t.abbr=e),s=new lt(t),s.parentLocale=S[e],S[e]=s),ee(e)}else S[e]!=null&&(S[e].parentLocale!=null?(S[e]=S[e].parentLocale,e===ee()&&ee(e)):S[e]!=null&&delete S[e]);return S[e]}function B(e){var t;if(e&&e._locale&&e._locale._abbr&&(e=e._locale._abbr),!e)return Se;if(!R(e)){if(t=Ge(e),t)return t;e=[e]}return Zr(e)}function Qr(){return et(S)}function gt(e){var t,s=e._a;return s&&c(e).overflow===-2&&(t=s[G]<0||s[G]>11?G:s[U]<1||s[U]>_t(s[Y],s[G])?U:s[D]<0||s[D]>24||s[D]===24&&(s[P]!==0||s[z]!==0||s[se]!==0)?D:s[P]<0||s[P]>59?P:s[z]<0||s[z]>59?z:s[se]<0||s[se]>999?se:-1,c(e)._overflowDayOfYear&&(tU)&&(t=U),c(e)._overflowWeeks&&t===-1&&(t=tr),c(e)._overflowWeekday&&t===-1&&(t=sr),c(e).overflow=t),e}var Xr=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Kr=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ea=/Z|[+-]\d\d(?::?\d\d)?/,Te=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/],["YYYYMM",/\d{6}/,!1],["YYYY",/\d{4}/,!1]],Je=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],ta=/^\/?Date\((-?\d+)/i,sa=/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,ra={UT:0,GMT:0,EDT:-4*60,EST:-5*60,CDT:-5*60,CST:-6*60,MDT:-6*60,MST:-7*60,PDT:-7*60,PST:-8*60};function ts(e){var t,s,r=e._i,a=Xr.exec(r)||Kr.exec(r),n,i,u,f,m=Te.length,O=Je.length;if(a){for(c(e).iso=!0,t=0,s=m;tke(i)||e._dayOfYear===0)&&(c(e)._overflowDayOfYear=!0),s=pe(i,0,e._dayOfYear),e._a[G]=s.getUTCMonth(),e._a[U]=s.getUTCDate()),t=0;t<3&&e._a[t]==null;++t)e._a[t]=r[t]=a[t];for(;t<7;t++)e._a[t]=r[t]=e._a[t]==null?t===2?1:0:e._a[t];e._a[D]===24&&e._a[P]===0&&e._a[z]===0&&e._a[se]===0&&(e._nextDay=!0,e._a[D]=0),e._d=(e._useUTC?pe:wr).apply(null,r),n=e._useUTC?e._d.getUTCDay():e._d.getDay(),e._tzm!=null&&e._d.setUTCMinutes(e._d.getUTCMinutes()-e._tzm),e._nextDay&&(e._a[D]=24),e._w&&typeof e._w.d<"u"&&e._w.d!==n&&(c(e).weekdayMismatch=!0)}}function ha(e){var t,s,r,a,n,i,u,f,m;t=e._w,t.GG!=null||t.W!=null||t.E!=null?(n=1,i=4,s=le(t.GG,e._a[Y],Me(p(),1,4).year),r=le(t.W,1),a=le(t.E,1),(a<1||a>7)&&(f=!0)):(n=e._locale._week.dow,i=e._locale._week.doy,m=Me(p(),n,i),s=le(t.gg,e._a[Y],m.year),r=le(t.w,m.week),t.d!=null?(a=t.d,(a<0||a>6)&&(f=!0)):t.e!=null?(a=t.e+n,(t.e<0||t.e>6)&&(f=!0)):a=n),r<1||r>$(s,n,i)?c(e)._overflowWeeks=!0:f!=null?c(e)._overflowWeekday=!0:(u=Jt(s,r,a,n,i),e._a[Y]=u.year,e._dayOfYear=u.dayOfYear)}l.ISO_8601=function(){};l.RFC_2822=function(){};function Mt(e){if(e._f===l.ISO_8601){ts(e);return}if(e._f===l.RFC_2822){ss(e);return}e._a=[],c(e).empty=!0;var t=""+e._i,s,r,a,n,i,u=t.length,f=0,m,O;for(a=It(e._f,e._locale).match(ut)||[],O=a.length,s=0;s0&&c(e).unusedInput.push(i),t=t.slice(t.indexOf(r)+r.length),f+=r.length),de[n]?(r?c(e).empty=!1:c(e).unusedTokens.push(n),er(n,r,e)):e._strict&&!r&&c(e).unusedTokens.push(n);c(e).charsLeftOver=u-f,t.length>0&&c(e).unusedInput.push(t),e._a[D]<=12&&c(e).bigHour===!0&&e._a[D]>0&&(c(e).bigHour=void 0),c(e).parsedDateParts=e._a.slice(0),c(e).meridiem=e._meridiem,e._a[D]=fa(e._locale,e._a[D],e._meridiem),m=c(e).era,m!==null&&(e._a[Y]=e._locale.erasConvertYear(m,e._a[Y])),pt(e),gt(e)}function fa(e,t,s){var r;return s==null?t:e.meridiemHour!=null?e.meridiemHour(t,s):(e.isPM!=null&&(r=e.isPM(s),r&&t<12&&(t+=12),!r&&t===12&&(t=0)),t)}function ca(e){var t,s,r,a,n,i,u=!1,f=e._f.length;if(f===0){c(e).invalidFormat=!0,e._d=new Date(NaN);return}for(a=0;athis?this:e:Ue()});function ns(e,t){var s,r;if(t.length===1&&R(t[0])&&(t=t[0]),!t.length)return p();for(s=t[0],r=1;rthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Fa(){if(!x(this._isDSTShifted))return this._isDSTShifted;var e={},t;return ot(e,this),e=rs(e),e._a?(t=e._isUTC?H(e._a):p(e._a),this._isDSTShifted=this.isValid()&&Ya(e._a,t.toArray())>0):this._isDSTShifted=!1,this._isDSTShifted}function La(){return this.isValid()?!this._isUTC:!1}function Ca(){return this.isValid()?this._isUTC:!1}function os(){return this.isValid()?this._isUTC&&this._offset===0:!1}var Ua=/^(-|\+)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/,Ia=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;function L(e,t){var s=e,r=null,a,n,i;return Ne(e)?s={ms:e._milliseconds,d:e._days,M:e._months}:Z(e)||!isNaN(+e)?(s={},t?s[t]=+e:s.milliseconds=+e):(r=Ua.exec(e))?(a=r[1]==="-"?-1:1,s={y:0,d:_(r[U])*a,h:_(r[D])*a,m:_(r[P])*a,s:_(r[z])*a,ms:_(st(r[se]*1e3))*a}):(r=Ia.exec(e))?(a=r[1]==="-"?-1:1,s={y:te(r[2],a),M:te(r[3],a),w:te(r[4],a),d:te(r[5],a),h:te(r[6],a),m:te(r[7],a),s:te(r[8],a)}):s==null?s={}:typeof s=="object"&&("from"in s||"to"in s)&&(i=Ha(p(s.from),p(s.to)),s={},s.ms=i.milliseconds,s.M=i.months),n=new ze(s),Ne(e)&&w(e,"_locale")&&(n._locale=e._locale),Ne(e)&&w(e,"_isValid")&&(n._isValid=e._isValid),n}L.fn=ze.prototype;L.invalid=Da;function te(e,t){var s=e&&parseFloat(e.replace(",","."));return(isNaN(s)?0:s)*t}function Pt(e,t){var s={};return s.months=t.month()-e.month()+(t.year()-e.year())*12,e.clone().add(s.months,"M").isAfter(t)&&--s.months,s.milliseconds=+t-+e.clone().add(s.months,"M"),s}function Ha(e,t){var s;return e.isValid()&&t.isValid()?(t=vt(t,e),e.isBefore(t)?s=Pt(e,t):(s=Pt(t,e),s.milliseconds=-s.milliseconds,s.months=-s.months),s):{milliseconds:0,months:0}}function ls(e,t){return function(s,r){var a,n;return r!==null&&!isNaN(+r)&&(Ut(t,"moment()."+t+"(period, number) is deprecated. Please use moment()."+t+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),n=s,s=r,r=n),a=L(s,r),us(this,a,e),this}}function us(e,t,s,r){var a=t._milliseconds,n=st(t._days),i=st(t._months);e.isValid()&&(r=r??!0,i&&$t(e,ge(e,"Month")+i*s),n&&Gt(e,"Date",ge(e,"Date")+n*s),a&&e._d.setTime(e._d.valueOf()+a*s),r&&l.updateOffset(e,n||i))}var Ea=ls(1,"add"),ja=ls(-1,"subtract");function ds(e){return typeof e=="string"||e instanceof String}function Aa(e){return F(e)||ve(e)||ds(e)||Z(e)||Ga(e)||Va(e)||e===null||e===void 0}function Va(e){var t=re(e)&&!nt(e),s=!1,r=["years","year","y","months","month","M","days","day","d","dates","date","D","hours","hour","h","minutes","minute","m","seconds","second","s","milliseconds","millisecond","ms"],a,n,i=r.length;for(a=0;as.valueOf():s.valueOf()9999?be(s,t?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):E(Date.prototype.toISOString)?t?this.toDate().toISOString():new Date(this.valueOf()+this.utcOffset()*60*1e3).toISOString().replace("Z",be(s,"Z")):be(s,t?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")}function an(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var e="moment",t="",s,r,a,n;return this.isLocal()||(e=this.utcOffset()===0?"moment.utc":"moment.parseZone",t="Z"),s="["+e+'("]',r=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",a="-MM-DD[T]HH:mm:ss.SSS",n=t+'[")]',this.format(s+r+a+n)}function nn(e){e||(e=this.isUtc()?l.defaultFormatUtc:l.defaultFormat);var t=be(this,e);return this.localeData().postformat(t)}function on(e,t){return this.isValid()&&(F(e)&&e.isValid()||p(e).isValid())?L({to:this,from:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function ln(e){return this.from(p(),e)}function un(e,t){return this.isValid()&&(F(e)&&e.isValid()||p(e).isValid())?L({from:this,to:e}).locale(this.locale()).humanize(!t):this.localeData().invalidDate()}function dn(e){return this.to(p(),e)}function hs(e){var t;return e===void 0?this._locale._abbr:(t=B(e),t!=null&&(this._locale=t),this)}var fs=N("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(e){return e===void 0?this.localeData():this.locale(e)});function cs(){return this._locale}var Fe=1e3,he=60*Fe,Le=60*he,_s=(365*400+97)*24*Le;function fe(e,t){return(e%t+t)%t}function ms(e,t,s){return e<100&&e>=0?new Date(e+400,t,s)-_s:new Date(e,t,s).valueOf()}function ys(e,t,s){return e<100&&e>=0?Date.UTC(e+400,t,s)-_s:Date.UTC(e,t,s)}function hn(e){var t,s;if(e=W(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(s=this._isUTC?ys:ms,e){case"year":t=s(this.year(),0,1);break;case"quarter":t=s(this.year(),this.month()-this.month()%3,1);break;case"month":t=s(this.year(),this.month(),1);break;case"week":t=s(this.year(),this.month(),this.date()-this.weekday());break;case"isoWeek":t=s(this.year(),this.month(),this.date()-(this.isoWeekday()-1));break;case"day":case"date":t=s(this.year(),this.month(),this.date());break;case"hour":t=this._d.valueOf(),t-=fe(t+(this._isUTC?0:this.utcOffset()*he),Le);break;case"minute":t=this._d.valueOf(),t-=fe(t,he);break;case"second":t=this._d.valueOf(),t-=fe(t,Fe);break}return this._d.setTime(t),l.updateOffset(this,!0),this}function fn(e){var t,s;if(e=W(e),e===void 0||e==="millisecond"||!this.isValid())return this;switch(s=this._isUTC?ys:ms,e){case"year":t=s(this.year()+1,0,1)-1;break;case"quarter":t=s(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":t=s(this.year(),this.month()+1,1)-1;break;case"week":t=s(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":t=s(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":t=s(this.year(),this.month(),this.date()+1)-1;break;case"hour":t=this._d.valueOf(),t+=Le-fe(t+(this._isUTC?0:this.utcOffset()*he),Le)-1;break;case"minute":t=this._d.valueOf(),t+=he-fe(t,he)-1;break;case"second":t=this._d.valueOf(),t+=Fe-fe(t,Fe)-1;break}return this._d.setTime(t),l.updateOffset(this,!0),this}function cn(){return this._d.valueOf()-(this._offset||0)*6e4}function _n(){return Math.floor(this.valueOf()/1e3)}function mn(){return new Date(this.valueOf())}function yn(){var e=this;return[e.year(),e.month(),e.date(),e.hour(),e.minute(),e.second(),e.millisecond()]}function wn(){var e=this;return{years:e.year(),months:e.month(),date:e.date(),hours:e.hours(),minutes:e.minutes(),seconds:e.seconds(),milliseconds:e.milliseconds()}}function kn(){return this.isValid()?this.toISOString():null}function gn(){return it(this)}function pn(){return X({},c(this))}function Mn(){return c(this).overflow}function Sn(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}h("N",0,0,"eraAbbr");h("NN",0,0,"eraAbbr");h("NNN",0,0,"eraAbbr");h("NNNN",0,0,"eraName");h("NNNNN",0,0,"eraNarrow");h("y",["y",1],"yo","eraYear");h("y",["yy",2],0,"eraYear");h("y",["yyy",3],0,"eraYear");h("y",["yyyy",4],0,"eraYear");d("N",Dt);d("NN",Dt);d("NNN",Dt);d("NNNN",Rn);d("NNNNN",Fn);g(["N","NN","NNN","NNNN","NNNNN"],function(e,t,s,r){var a=s._locale.erasParse(e,r,s._strict);a?c(s).era=a:c(s).invalidEra=e});d("y",ce);d("yy",ce);d("yyy",ce);d("yyyy",ce);d("yo",Ln);g(["y","yy","yyy","yyyy"],Y);g(["yo"],function(e,t,s,r){var a;s._locale._eraYearOrdinalRegex&&(a=e.match(s._locale._eraYearOrdinalRegex)),s._locale.eraYearOrdinalParse?t[Y]=s._locale.eraYearOrdinalParse(e,a):t[Y]=parseInt(e,10)});function vn(e,t){var s,r,a,n=this._eras||B("en")._eras;for(s=0,r=n.length;s=0)return n[r]}function Yn(e,t){var s=e.since<=e.until?1:-1;return t===void 0?l(e.since).year():l(e.since).year()+(t-e.offset)*s}function On(){var e,t,s,r=this.localeData().eras();for(e=0,t=r.length;en&&(t=n),An.call(this,e,t,s,r,a))}function An(e,t,s,r,a){var n=Jt(e,t,s,r,a),i=pe(n.year,0,n.dayOfYear);return this.year(i.getUTCFullYear()),this.month(i.getUTCMonth()),this.date(i.getUTCDate()),this}h("Q",0,"Qo","quarter");d("Q",Ht);g("Q",function(e,t){t[G]=(_(e)-1)*3});function Vn(e){return e==null?Math.ceil((this.month()+1)/3):this.month((e-1)*3+this.month()%3)}h("D",["DD",2],"Do","date");d("D",M,_e);d("DD",M,T);d("Do",function(e,t){return e?t._dayOfMonthOrdinalParse||t._ordinalParse:t._dayOfMonthOrdinalParseLenient});g(["D","DD"],U);g("Do",function(e,t){t[U]=_(e.match(M)[0])});var ks=me("Date",!0);h("DDD",["DDDD",3],"DDDo","dayOfYear");d("DDD",He);d("DDDD",Et);g(["DDD","DDDD"],function(e,t,s){s._dayOfYear=_(e)});function Gn(e){var t=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return e==null?t:this.add(e-t,"d")}h("m",["mm",2],0,"minute");d("m",M,ct);d("mm",M,T);g(["m","mm"],P);var zn=me("Minutes",!1);h("s",["ss",2],0,"second");d("s",M,ct);d("ss",M,T);g(["s","ss"],z);var qn=me("Seconds",!1);h("S",0,0,function(){return~~(this.millisecond()/100)});h(0,["SS",2],0,function(){return~~(this.millisecond()/10)});h(0,["SSS",3],0,"millisecond");h(0,["SSSS",4],0,function(){return this.millisecond()*10});h(0,["SSSSS",5],0,function(){return this.millisecond()*100});h(0,["SSSSSS",6],0,function(){return this.millisecond()*1e3});h(0,["SSSSSSS",7],0,function(){return this.millisecond()*1e4});h(0,["SSSSSSSS",8],0,function(){return this.millisecond()*1e5});h(0,["SSSSSSSSS",9],0,function(){return this.millisecond()*1e6});d("S",He,Ht);d("SS",He,T);d("SSS",He,Et);var K,gs;for(K="SSSS";K.length<=9;K+="S")d(K,ce);function $n(e,t){t[se]=_(("0."+e)*1e3)}for(K="S";K.length<=9;K+="S")g(K,$n);gs=me("Milliseconds",!1);h("z",0,0,"zoneAbbr");h("zz",0,0,"zoneName");function Zn(){return this._isUTC?"UTC":""}function Bn(){return this._isUTC?"Coordinated Universal Time":""}var o=De.prototype;o.add=Ea;o.calendar=$a;o.clone=Za;o.diff=tn;o.endOf=fn;o.format=nn;o.from=on;o.fromNow=ln;o.to=un;o.toNow=dn;o.get=ar;o.invalidAt=Mn;o.isAfter=Ba;o.isBefore=Ja;o.isBetween=Qa;o.isSame=Xa;o.isSameOrAfter=Ka;o.isSameOrBefore=en;o.isValid=gn;o.lang=fs;o.locale=hs;o.localeData=cs;o.max=ka;o.min=wa;o.parsingFlags=pn;o.set=nr;o.startOf=hn;o.subtract=ja;o.toArray=yn;o.toObject=wn;o.toDate=mn;o.toISOString=rn;o.inspect=an;typeof Symbol<"u"&&Symbol.for!=null&&(o[Symbol.for("nodejs.util.inspect.custom")]=function(){return"Moment<"+this.format()+">"});o.toJSON=kn;o.toString=sn;o.unix=_n;o.valueOf=cn;o.creationData=Sn;o.eraName=On;o.eraNarrow=xn;o.eraAbbr=Tn;o.eraYear=bn;o.year=Vt;o.isLeapYear=rr;o.weekYear=Cn;o.isoWeekYear=Un;o.quarter=o.quarters=Vn;o.month=Zt;o.daysInMonth=_r;o.week=o.weeks=Sr;o.isoWeek=o.isoWeeks=vr;o.weeksInYear=En;o.weeksInWeekYear=jn;o.isoWeeksInYear=In;o.isoWeeksInISOWeekYear=Hn;o.date=ks;o.day=o.days=Cr;o.weekday=Ur;o.isoWeekday=Ir;o.dayOfYear=Gn;o.hour=o.hours=zr;o.minute=o.minutes=zn;o.second=o.seconds=qn;o.millisecond=o.milliseconds=gs;o.utcOffset=xa;o.utc=ba;o.local=Na;o.parseZone=Wa;o.hasAlignedHourOffset=Pa;o.isDST=Ra;o.isLocal=La;o.isUtcOffset=Ca;o.isUtc=os;o.isUTC=os;o.zoneAbbr=Zn;o.zoneName=Bn;o.dates=N("dates accessor is deprecated. Use date instead.",ks);o.months=N("months accessor is deprecated. Use month instead",Zt);o.years=N("years accessor is deprecated. Use year instead",Vt);o.zone=N("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",Ta);o.isDSTShifted=N("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Fa);function Jn(e){return p(e*1e3)}function Qn(){return p.apply(null,arguments).parseZone()}function ps(e){return e}var k=lt.prototype;k.calendar=Ls;k.longDateFormat=Hs;k.invalidDate=js;k.ordinal=Gs;k.preparse=ps;k.postformat=ps;k.relativeTime=qs;k.pastFuture=$s;k.set=Rs;k.eras=vn;k.erasParse=Dn;k.erasConvertYear=Yn;k.erasAbbrRegex=Wn;k.erasNameRegex=Nn;k.erasNarrowRegex=Pn;k.months=dr;k.monthsShort=hr;k.monthsParse=cr;k.monthsRegex=yr;k.monthsShortRegex=mr;k.week=kr;k.firstDayOfYear=Mr;k.firstDayOfWeek=pr;k.weekdays=Wr;k.weekdaysMin=Rr;k.weekdaysShort=Pr;k.weekdaysParse=Lr;k.weekdaysRegex=Hr;k.weekdaysShortRegex=Er;k.weekdaysMinRegex=jr;k.isPM=Vr;k.meridiem=qr;function Ce(e,t,s,r){var a=B(),n=H().set(r,t);return a[s](n,e)}function Ms(e,t,s){if(Z(e)&&(t=e,e=void 0),e=e||"",t!=null)return Ce(e,t,s,"month");var r,a=[];for(r=0;r<12;r++)a[r]=Ce(e,r,s,"month");return a}function Ot(e,t,s,r){typeof e=="boolean"?(Z(t)&&(s=t,t=void 0),t=t||""):(t=e,s=t,e=!1,Z(t)&&(s=t,t=void 0),t=t||"");var a=B(),n=e?a._week.dow:0,i,u=[];if(s!=null)return Ce(t,(s+n)%7,r,"day");for(i=0;i<7;i++)u[i]=Ce(t,(i+n)%7,r,"day");return u}function Xn(e,t){return Ms(e,t,"months")}function Kn(e,t){return Ms(e,t,"monthsShort")}function ei(e,t,s){return Ot(e,t,s,"weekdays")}function ti(e,t,s){return Ot(e,t,s,"weekdaysShort")}function si(e,t,s){return Ot(e,t,s,"weekdaysMin")}ee("en",{eras:[{since:"0001-01-01",until:1/0,offset:1,name:"Anno Domini",narrow:"AD",abbr:"AD"},{since:"0000-12-31",until:-1/0,offset:1,name:"Before Christ",narrow:"BC",abbr:"BC"}],dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(e){var t=e%10,s=_(e%100/10)===1?"th":t===1?"st":t===2?"nd":t===3?"rd":"th";return e+s}});l.lang=N("moment.lang is deprecated. Use moment.locale instead.",ee);l.langData=N("moment.langData is deprecated. Use moment.localeData instead.",B);var A=Math.abs;function ri(){var e=this._data;return this._milliseconds=A(this._milliseconds),this._days=A(this._days),this._months=A(this._months),e.milliseconds=A(e.milliseconds),e.seconds=A(e.seconds),e.minutes=A(e.minutes),e.hours=A(e.hours),e.months=A(e.months),e.years=A(e.years),this}function Ss(e,t,s,r){var a=L(t,s);return e._milliseconds+=r*a._milliseconds,e._days+=r*a._days,e._months+=r*a._months,e._bubble()}function ai(e,t){return Ss(this,e,t,1)}function ni(e,t){return Ss(this,e,t,-1)}function Rt(e){return e<0?Math.floor(e):Math.ceil(e)}function ii(){var e=this._milliseconds,t=this._days,s=this._months,r=this._data,a,n,i,u,f;return e>=0&&t>=0&&s>=0||e<=0&&t<=0&&s<=0||(e+=Rt(at(s)+t)*864e5,t=0,s=0),r.milliseconds=e%1e3,a=b(e/1e3),r.seconds=a%60,n=b(a/60),r.minutes=n%60,i=b(n/60),r.hours=i%24,t+=b(i/24),f=b(vs(t)),s+=f,t-=Rt(at(f)),u=b(s/12),s%=12,r.days=t,r.months=s,r.years=u,this}function vs(e){return e*4800/146097}function at(e){return e*146097/4800}function oi(e){if(!this.isValid())return NaN;var t,s,r=this._milliseconds;if(e=W(e),e==="month"||e==="quarter"||e==="year")switch(t=this._days+r/864e5,s=this._months+vs(t),e){case"month":return s;case"quarter":return s/3;case"year":return s/12}else switch(t=this._days+Math.round(at(this._months)),e){case"week":return t/7+r/6048e5;case"day":return t+r/864e5;case"hour":return t*24+r/36e5;case"minute":return t*1440+r/6e4;case"second":return t*86400+r/1e3;case"millisecond":return Math.floor(t*864e5)+r;default:throw new Error("Unknown unit "+e)}}function J(e){return function(){return this.as(e)}}var Ds=J("ms"),li=J("s"),ui=J("m"),di=J("h"),hi=J("d"),fi=J("w"),ci=J("M"),_i=J("Q"),mi=J("y"),yi=Ds;function wi(){return L(this)}function ki(e){return e=W(e),this.isValid()?this[e+"s"]():NaN}function ne(e){return function(){return this.isValid()?this._data[e]:NaN}}var gi=ne("milliseconds"),pi=ne("seconds"),Mi=ne("minutes"),Si=ne("hours"),vi=ne("days"),Di=ne("months"),Yi=ne("years");function Oi(){return b(this.days()/7)}var V=Math.round,ue={ss:44,s:45,m:45,h:22,d:26,w:null,M:11};function xi(e,t,s,r,a){return a.relativeTime(t||1,!!s,e,r)}function Ti(e,t,s,r){var a=L(e).abs(),n=V(a.as("s")),i=V(a.as("m")),u=V(a.as("h")),f=V(a.as("d")),m=V(a.as("M")),O=V(a.as("w")),j=V(a.as("y")),Q=n<=s.ss&&["s",n]||n0,Q[4]=r,xi.apply(null,Q)}function bi(e){return e===void 0?V:typeof e=="function"?(V=e,!0):!1}function Ni(e,t){return ue[e]===void 0?!1:t===void 0?ue[e]:(ue[e]=t,e==="s"&&(ue.ss=t-1),!0)}function Wi(e,t){if(!this.isValid())return this.localeData().invalidDate();var s=!1,r=ue,a,n;return typeof e=="object"&&(t=e,e=!1),typeof e=="boolean"&&(s=e),typeof t=="object"&&(r=Object.assign({},ue,t),t.s!=null&&t.ss==null&&(r.ss=t.s-1)),a=this.localeData(),n=Ti(this,!s,r,a),s&&(n=a.pastFuture(+this,n)),a.postformat(n)}var Qe=Math.abs;function ie(e){return(e>0)-(e<0)||+e}function $e(){if(!this.isValid())return this.localeData().invalidDate();var e=Qe(this._milliseconds)/1e3,t=Qe(this._days),s=Qe(this._months),r,a,n,i,u=this.asSeconds(),f,m,O,j;return u?(r=b(e/60),a=b(r/60),e%=60,r%=60,n=b(s/12),s%=12,i=e?e.toFixed(3).replace(/\.?0+$/,""):"",f=u<0?"-":"",m=ie(this._months)!==ie(u)?"-":"",O=ie(this._days)!==ie(u)?"-":"",j=ie(this._milliseconds)!==ie(u)?"-":"",f+"P"+(n?m+n+"Y":"")+(s?m+s+"M":"")+(t?O+t+"D":"")+(a||r||e?"T":"")+(a?j+a+"H":"")+(r?j+r+"M":"")+(e?j+i+"S":"")):"P0D"}var y=ze.prototype;y.isValid=va;y.abs=ri;y.add=ai;y.subtract=ni;y.as=oi;y.asMilliseconds=Ds;y.asSeconds=li;y.asMinutes=ui;y.asHours=di;y.asDays=hi;y.asWeeks=fi;y.asMonths=ci;y.asQuarters=_i;y.asYears=mi;y.valueOf=yi;y._bubble=ii;y.clone=wi;y.get=ki;y.milliseconds=gi;y.seconds=pi;y.minutes=Mi;y.hours=Si;y.days=vi;y.weeks=Oi;y.months=Di;y.years=Yi;y.humanize=Wi;y.toISOString=$e;y.toString=$e;y.toJSON=$e;y.locale=hs;y.localeData=cs;y.toIsoString=N("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",$e);y.lang=fs;h("X",0,0,"unix");h("x",0,0,"valueOf");d("x",je);d("X",Qs);g("X",function(e,t,s){s._d=new Date(parseFloat(e)*1e3)});g("x",function(e,t,s){s._d=new Date(_(e))});//! moment.js -l.version="2.30.1";Ws(p);l.fn=o;l.min=ga;l.max=pa;l.now=Ma;l.utc=H;l.unix=Jn;l.months=Xn;l.isDate=ve;l.locale=ee;l.invalid=Ue;l.duration=L;l.isMoment=F;l.weekdays=ei;l.parseZone=Qn;l.localeData=B;l.isDuration=Ne;l.monthsShort=Kn;l.weekdaysMin=si;l.defineLocale=kt;l.updateLocale=Jr;l.locales=Qr;l.weekdaysShort=ti;l.normalizeUnits=W;l.relativeTimeRounding=bi;l.relativeTimeThreshold=Ni;l.calendarFormat=qa;l.prototype=o;l.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"};const{vars:xt}=xs;`${xt.spacing.step9}`;`${xt.spacing.step5}`;`${xt.spacing.step1}`;const Pi="--timeline-item-logo",Ri=e=>ae("atm_lk_1g2egjv atm_lo_1u6qs5w atm_mk_h2mmj6 atm_79_1xkizqx",{[Pi]:e?`url('${e}')`:"inherit"}),Fi=ae("atm_bx_mszoox atm_7l_1e3zypq atm_cs_p0owkv atm_9s_1txwivl atm_ar_1bp4okc atm_lzn0r3_b3btdj atm_jxpu17_1ssbidh atm_du7p7_1ulexfb atm_1oletfx_1kwt7j8 atm_1v8yup7_1kwt7j8 atm_6hjprp_stnw88 atm_1hf877f_cs5v99 atm_44hr8e_1dbut50 atm_embtlk_1rvdtxc atm_12h3rla_1kwt7j8 atm_f5f5es_1h6ojuz atm_2stpi8_xort1t atm_135rde5_g3u8h6 atm_1938jqx_b3btdj atm_t8tx92_1ulexfb atm_1054lsl_1q4jrv2 atm_1hh4tvs_1q4jrv2 atm_89ifzh_idpfg4 atm_1ymp90q_29t12q atm_7otamn_1ssbidh atm_2zt8x3_stnw88 atm_grwvqw_kb7nvz"),Li=ae("atm_bx_mszoox atm_c8_ihbmcz atm_7l_ubcz1x atm_fr_1c31os8 atm_t9_angws6 atm_k7_kb7nvz atm_gq_14mxdql"),Ci=ae("atm_c8_1088tx0 atm_g3_1088tx0 atm_cs_p0owkv atm_k7_cs5v99 atm_gi_idpfg4 atm_gq_14mxdql"),Ui=ae("atm_c8_ihbmcz atm_g3_wwia0z atm_cs_p0owkv atm_k7_11wpgbn atm_gi_idpfg4 atm_h3_14mxdql atm_gq_p4gng6"),Ii=ae("atm_bx_18cx291 atm_7l_ubcz1x atm_c8_xoeuol atm_g3_1ic6ef2 atm_jtqn8w_2bn2nk"),oe={root:Ri,title:Ci,header:Fi,subtitle:Ui,content:Ii,timeframe:Li},Ys=({children:e,start:t,subtitle:s,title:r,end:a,id:n})=>{const i=C.jsx("time",{dateTime:t,children:l(t).format("MMM YYYY")}),u=a?C.jsx("time",{dateTime:a,children:l(a).format("MMM YYYY")}):"Present",f=Os(n);return C.jsxs("article",{...oe.root(f==null?void 0:f.src),children:[C.jsxs("header",{...oe.header,children:[C.jsx("h4",{...oe.title,children:r}),C.jsx("h5",{...oe.subtitle,children:s}),C.jsxs("p",{...oe.timeframe,children:[i," to ",u]})]}),C.jsx("div",{...oe.content,children:e})]})};Ys.__docgenInfo={description:"",methods:[],displayName:"TimelineItem",props:{id:{required:!0,tsType:{name:"string"},description:""},title:{required:!0,tsType:{name:"string"},description:""},subtitle:{required:!0,tsType:{name:"string"},description:""},start:{required:!0,tsType:{name:"string"},description:""},end:{required:!1,tsType:{name:"string"},description:""},children:{required:!0,tsType:{name:"ReactNode"},description:""}}};export{Ns as T,Ys as a,l as h}; diff --git a/storybook-static/assets/use_dimensions-681fd32d.js b/storybook-static/assets/use_dimensions-681fd32d.js deleted file mode 100644 index 29bb6db..0000000 --- a/storybook-static/assets/use_dimensions-681fd32d.js +++ /dev/null @@ -1 +0,0 @@ -import{r as s}from"./index-f1f2c4b1.js";const d=()=>{const[o,r]=s.useState(null),t=s.useRef(null);return s.useLayoutEffect(()=>{const{current:i}=t;if(i){const n=()=>{window.requestAnimationFrame(()=>{const e=i.getBoundingClientRect();e.width=Math.round(e.width),e.height=Math.round(e.height),r(e)})};return n(),window.addEventListener("resize",n),()=>{window.removeEventListener("resize",n)}}},[t]),{dimensions:o,ref:t}};export{d as u}; diff --git a/storybook-static/assets/use_logos-a2e54b12.js b/storybook-static/assets/use_logos-a2e54b12.js deleted file mode 100644 index 95e840e..0000000 --- a/storybook-static/assets/use_logos-a2e54b12.js +++ /dev/null @@ -1 +0,0 @@ -const o="webp";const c="srgb";const r="uchar";const a=""+new URL("accenture-b310694f.webp",import.meta.url).href,ge={format:o,width:40,height:40,space:c,channels:3,depth:r,isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:a},$e=Object.freeze(Object.defineProperty({__proto__:null,channels:3,default:ge,depth:r,format:o,hasAlpha:!1,hasProfile:!1,height:40,isProgressive:!1,space:c,src:a,width:40},Symbol.toStringTag,{value:"Module"})),n="webp",h=40,l=33,i="srgb",p=4,f="uchar",g=!1,$=!1,d=!0,_=""+new URL("cerner-ca613330.webp",import.meta.url).href,de={format:n,width:h,height:l,space:i,channels:p,depth:f,isProgressive:g,hasProfile:$,hasAlpha:d,src:_},_e=Object.freeze(Object.defineProperty({__proto__:null,channels:p,default:de,depth:f,format:n,hasAlpha:d,hasProfile:$,height:l,isProgressive:g,space:i,src:_,width:h},Symbol.toStringTag,{value:"Module"})),b="webp",u=40,P=40,m="srgb",w=3,v="uchar",A=!1,y=!1,j=!1,O=""+new URL("elastic-7c2cd453.webp",import.meta.url).href,be={format:b,width:u,height:P,space:m,channels:w,depth:v,isProgressive:A,hasProfile:y,hasAlpha:j,src:O},ue=Object.freeze(Object.defineProperty({__proto__:null,channels:w,default:be,depth:v,format:b,hasAlpha:j,hasProfile:y,height:P,isProgressive:A,space:m,src:O,width:u},Symbol.toStringTag,{value:"Module"})),S="webp",M=40,L=40,R="srgb",T=4,z="uchar",U=!1,k=!1,E=!0,I=""+new URL("facebook-6e866917.webp",import.meta.url).href,Pe={format:S,width:M,height:L,space:R,channels:T,depth:z,isProgressive:U,hasProfile:k,hasAlpha:E,src:I},me=Object.freeze(Object.defineProperty({__proto__:null,channels:T,default:Pe,depth:z,format:S,hasAlpha:E,hasProfile:k,height:L,isProgressive:U,space:R,src:I,width:M},Symbol.toStringTag,{value:"Module"})),x="webp",F=24,G=24,H="srgb",X=4,q="uchar",B=!1,C=!1,D=!0,J=""+new URL("sag-2788dfed.webp",import.meta.url).href,we={format:x,width:F,height:G,space:H,channels:X,depth:q,isProgressive:B,hasProfile:C,hasAlpha:D,src:J},ve=Object.freeze(Object.defineProperty({__proto__:null,channels:X,default:we,depth:q,format:x,hasAlpha:D,hasProfile:C,height:G,isProgressive:B,space:H,src:J,width:F},Symbol.toStringTag,{value:"Module"})),K="webp",N=40,Q=49,V="srgb",W=3,Y="uchar",Z=!1,ee=!1,se=!1,te=""+new URL("sprint-df3d10ba.webp",import.meta.url).href,Ae={format:K,width:N,height:Q,space:V,channels:W,depth:Y,isProgressive:Z,hasProfile:ee,hasAlpha:se,src:te},ye=Object.freeze(Object.defineProperty({__proto__:null,channels:W,default:Ae,depth:Y,format:K,hasAlpha:se,hasProfile:ee,height:Q,isProgressive:Z,space:V,src:te,width:N},Symbol.toStringTag,{value:"Module"})),oe="webp",ce=40,re=40,ae="srgb",ne=4,he="uchar",le=!1,ie=!1,pe=!0,fe=""+new URL("symbol-c31399b4.webp",import.meta.url).href,je={format:oe,width:ce,height:re,space:ae,channels:ne,depth:he,isProgressive:le,hasProfile:ie,hasAlpha:pe,src:fe},Oe=Object.freeze(Object.defineProperty({__proto__:null,channels:ne,default:je,depth:he,format:oe,hasAlpha:pe,hasProfile:ie,height:re,isProgressive:le,space:ae,src:fe,width:ce},Symbol.toStringTag,{value:"Module"})),Se="/src/content/logos/",Me=Object.assign({"/src/content/logos/accenture.png":$e,"/src/content/logos/cerner.png":_e,"/src/content/logos/elastic.png":ue,"/src/content/logos/facebook.png":me,"/src/content/logos/sag.png":ve,"/src/content/logos/sprint.png":ye,"/src/content/logos/symbol.png":Oe}),t={};Object.entries(Me).forEach(([e,s])=>{t[e.replace(Se,"").replace(".png","")]=s.default});const Le=e=>{if(e&&t[e]){const s=t[e];if(s)return s}return null};export{Le as u}; diff --git a/storybook-static/assets/use_people-750f5048.js b/storybook-static/assets/use_people-750f5048.js deleted file mode 100644 index 2069e5e..0000000 --- a/storybook-static/assets/use_people-750f5048.js +++ /dev/null @@ -1 +0,0 @@ -const o="webp";const a="srgb";const c="uchar";const r=""+new URL("bo-60ec4679.webp",import.meta.url).href,Ze={format:o,width:75,height:75,space:a,channels:3,depth:c,isProgressive:!1,hasProfile:!1,hasAlpha:!1,src:r},es=Object.freeze(Object.defineProperty({__proto__:null,channels:3,default:Ze,depth:c,format:o,hasAlpha:!1,hasProfile:!1,height:75,isProgressive:!1,space:a,src:r,width:75},Symbol.toStringTag,{value:"Module"})),h="webp",n=75,l=75,i="srgb",p=3,f="uchar",g=!1,d=!1,$=!1,_=""+new URL("david-45b17e5c.webp",import.meta.url).href,ss={format:h,width:n,height:l,space:i,channels:p,depth:f,isProgressive:g,hasProfile:d,hasAlpha:$,src:_},ts=Object.freeze(Object.defineProperty({__proto__:null,channels:p,default:ss,depth:f,format:h,hasAlpha:$,hasProfile:d,height:l,isProgressive:g,space:i,src:_,width:n},Symbol.toStringTag,{value:"Module"})),b="webp",P=75,m=75,u="srgb",w=3,v="uchar",j=!1,A=!1,y=!1,O=""+new URL("erik-0903b8e6.webp",import.meta.url).href,os={format:b,width:P,height:m,space:u,channels:w,depth:v,isProgressive:j,hasProfile:A,hasAlpha:y,src:O},as=Object.freeze(Object.defineProperty({__proto__:null,channels:w,default:os,depth:v,format:b,hasAlpha:y,hasProfile:A,height:m,isProgressive:j,space:u,src:O,width:P},Symbol.toStringTag,{value:"Module"})),S="webp",M=75,R=75,T="srgb",z=3,L="uchar",U=!1,k=!1,E=!1,I=""+new URL("freddy-64821517.webp",import.meta.url).href,cs={format:S,width:M,height:R,space:T,channels:z,depth:L,isProgressive:U,hasProfile:k,hasAlpha:E,src:I},rs=Object.freeze(Object.defineProperty({__proto__:null,channels:z,default:cs,depth:L,format:S,hasAlpha:E,hasProfile:k,height:R,isProgressive:U,space:T,src:I,width:M},Symbol.toStringTag,{value:"Module"})),x="webp",F=75,G=75,H="srgb",X=3,q="uchar",B=!1,C=!1,D=!1,J=""+new URL("jacob-0e020577.webp",import.meta.url).href,hs={format:x,width:F,height:G,space:H,channels:X,depth:q,isProgressive:B,hasProfile:C,hasAlpha:D,src:J},ns=Object.freeze(Object.defineProperty({__proto__:null,channels:X,default:hs,depth:q,format:x,hasAlpha:D,hasProfile:C,height:G,isProgressive:B,space:H,src:J,width:F},Symbol.toStringTag,{value:"Module"})),K="webp",N=75,Q=75,V="srgb",W=3,Y="uchar",Z=!1,ee=!1,se=!1,te=""+new URL("jim-79686c42.webp",import.meta.url).href,ls={format:K,width:N,height:Q,space:V,channels:W,depth:Y,isProgressive:Z,hasProfile:ee,hasAlpha:se,src:te},is=Object.freeze(Object.defineProperty({__proto__:null,channels:W,default:ls,depth:Y,format:K,hasAlpha:se,hasProfile:ee,height:Q,isProgressive:Z,space:V,src:te,width:N},Symbol.toStringTag,{value:"Module"})),oe="webp",ae=75,ce=75,re="srgb",he=3,ne="uchar",le=!1,ie=!1,pe=!1,fe=""+new URL("naithan-f6fead7e.webp",import.meta.url).href,ps={format:oe,width:ae,height:ce,space:re,channels:he,depth:ne,isProgressive:le,hasProfile:ie,hasAlpha:pe,src:fe},fs=Object.freeze(Object.defineProperty({__proto__:null,channels:he,default:ps,depth:ne,format:oe,hasAlpha:pe,hasProfile:ie,height:ce,isProgressive:le,space:re,src:fe,width:ae},Symbol.toStringTag,{value:"Module"})),ge="webp",de=75,$e=75,_e="srgb",be=3,Pe="uchar",me=!1,ue=!1,we=!1,ve=""+new URL("patrick-31af79b5.webp",import.meta.url).href,gs={format:ge,width:de,height:$e,space:_e,channels:be,depth:Pe,isProgressive:me,hasProfile:ue,hasAlpha:we,src:ve},ds=Object.freeze(Object.defineProperty({__proto__:null,channels:be,default:gs,depth:Pe,format:ge,hasAlpha:we,hasProfile:ue,height:$e,isProgressive:me,space:_e,src:ve,width:de},Symbol.toStringTag,{value:"Module"})),je="webp",Ae=75,ye=75,Oe="srgb",Se=3,Me="uchar",Re=!1,Te=!1,ze=!1,Le=""+new URL("raya-a03f2445.webp",import.meta.url).href,$s={format:je,width:Ae,height:ye,space:Oe,channels:Se,depth:Me,isProgressive:Re,hasProfile:Te,hasAlpha:ze,src:Le},_s=Object.freeze(Object.defineProperty({__proto__:null,channels:Se,default:$s,depth:Me,format:je,hasAlpha:ze,hasProfile:Te,height:ye,isProgressive:Re,space:Oe,src:Le,width:Ae},Symbol.toStringTag,{value:"Module"})),Ue="webp",ke=75,Ee=75,Ie="srgb",xe=3,Fe="uchar",Ge=!1,He=!1,Xe=!1,qe=""+new URL("scott-8e182c1c.webp",import.meta.url).href,bs={format:Ue,width:ke,height:Ee,space:Ie,channels:xe,depth:Fe,isProgressive:Ge,hasProfile:He,hasAlpha:Xe,src:qe},Ps=Object.freeze(Object.defineProperty({__proto__:null,channels:xe,default:bs,depth:Fe,format:Ue,hasAlpha:Xe,hasProfile:He,height:Ee,isProgressive:Ge,space:Ie,src:qe,width:ke},Symbol.toStringTag,{value:"Module"})),Be="webp",Ce=75,De=75,Je="srgb",Ke=3,Ne="uchar",Qe=!1,Ve=!1,We=!1,Ye=""+new URL("tim-cd99e9d8.webp",import.meta.url).href,ms={format:Be,width:Ce,height:De,space:Je,channels:Ke,depth:Ne,isProgressive:Qe,hasProfile:Ve,hasAlpha:We,src:Ye},us=Object.freeze(Object.defineProperty({__proto__:null,channels:Ke,default:ms,depth:Ne,format:Be,hasAlpha:We,hasProfile:Ve,height:De,isProgressive:Qe,space:Je,src:Ye,width:Ce},Symbol.toStringTag,{value:"Module"})),ws="/src/content/people/",vs=Object.assign({"/src/content/people/bo.jpg":es,"/src/content/people/david.jpg":ts,"/src/content/people/erik.jpg":as,"/src/content/people/freddy.jpg":rs,"/src/content/people/jacob.jpg":ns,"/src/content/people/jim.jpg":is,"/src/content/people/naithan.jpg":fs,"/src/content/people/patrick.jpg":ds,"/src/content/people/raya.jpg":_s,"/src/content/people/scott.jpg":Ps,"/src/content/people/tim.jpg":us}),t={};Object.entries(vs).forEach(([e,s])=>{t[e.replace(ws,"").replace(".jpg","")]=s.default});const js=e=>{if(e&&t[e]){const s=t[e];if(s)return s}return null};export{js as u}; diff --git a/storybook-static/favicon-16x16.png b/storybook-static/favicon-16x16.png deleted file mode 100644 index 596a95e..0000000 Binary files a/storybook-static/favicon-16x16.png and /dev/null differ diff --git a/storybook-static/favicon-32x32.png b/storybook-static/favicon-32x32.png deleted file mode 100644 index af286a4..0000000 Binary files a/storybook-static/favicon-32x32.png and /dev/null differ diff --git a/storybook-static/favicon-96x96.png b/storybook-static/favicon-96x96.png deleted file mode 100644 index cdedc95..0000000 Binary files a/storybook-static/favicon-96x96.png and /dev/null differ diff --git a/storybook-static/favicon.ico b/storybook-static/favicon.ico deleted file mode 100644 index 72e049e..0000000 Binary files a/storybook-static/favicon.ico and /dev/null differ diff --git a/storybook-static/favicon.svg b/storybook-static/favicon.svg deleted file mode 100644 index 571f90f..0000000 --- a/storybook-static/favicon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/storybook-static/googledbf774013d437e91.html b/storybook-static/googledbf774013d437e91.html deleted file mode 100644 index d455f28..0000000 --- a/storybook-static/googledbf774013d437e91.html +++ /dev/null @@ -1 +0,0 @@ -google-site-verification: googledbf774013d437e91.html \ No newline at end of file diff --git a/storybook-static/iframe.html b/storybook-static/iframe.html deleted file mode 100644 index 18f980c..0000000 --- a/storybook-static/iframe.html +++ /dev/null @@ -1,653 +0,0 @@ - - - - - - - - - - - - - - - - - - Storybook - - - - - - - - - - - - - - - -
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-

No Preview

-

Sorry, but you either have no stories or none are selected somehow.

-
    -
  • Please check the Storybook config.
  • -
  • Try reloading the page.
  • -
-

- If the problem persists, check the browser console, or the terminal you've run Storybook from. -

-
-
- -
-
-

-

- The component failed to render properly, likely due to a configuration issue in Storybook. - Here are some common causes and how you can address them: -

-
    -
  1. - Missing Context/Providers: You can use decorators to supply specific - contexts or providers, which are sometimes necessary for components to render correctly. For - detailed instructions on using decorators, please visit the - Decorators documentation. -
  2. -
  3. - Misconfigured Webpack or Vite: Verify that Storybook picks up all necessary - settings for loaders, plugins, and other relevant parameters. You can find step-by-step - guides for configuring - Webpack or - Vite - with Storybook. -
  4. -
  5. - Missing Environment Variables: Your Storybook may require specific - environment variables to function as intended. You can set up custom environment variables - as outlined in the - Environment Variables documentation. -
  6. -
-
-
-
- -
-
- - - - diff --git a/storybook-static/index.html b/storybook-static/index.html deleted file mode 100644 index 30193c2..0000000 --- a/storybook-static/index.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - storybook - Storybook - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - diff --git a/storybook-static/index.json b/storybook-static/index.json deleted file mode 100644 index d7ff45e..0000000 --- a/storybook-static/index.json +++ /dev/null @@ -1 +0,0 @@ -{"v":5,"entries":{"pages-home--home":{"type":"story","id":"pages-home--home","name":"Home","title":"Pages/Home","importPath":"./src/.stories/home/home.stories.tsx","componentPath":"./src/home","tags":["dev","test"]},"home-about--about":{"type":"story","id":"home-about--about","name":"About","title":"Home/About","importPath":"./src/.stories/home/about.stories.tsx","tags":["dev","test"]},"home-career--career":{"type":"story","id":"home-career--career","name":"Career","title":"Home/Career","importPath":"./src/.stories/home/career.stories.tsx","tags":["dev","test"]},"home-medium--medium":{"type":"story","id":"home-medium--medium","name":"Medium","title":"Home/Medium","importPath":"./src/.stories/home/medium.stories.tsx","tags":["dev","test"]},"home-portfolio--portfolio":{"type":"story","id":"home-portfolio--portfolio","name":"Portfolio","title":"Home/Portfolio","importPath":"./src/.stories/home/portfolio.stories.tsx","tags":["dev","test"]},"components-github-corner--corner":{"type":"story","id":"components-github-corner--corner","name":"Corner","title":"Components/Github/Corner","importPath":"./src/.stories/components/corner.stories.tsx","componentPath":"./src/components/github","tags":["dev","test"]},"components-layout-footer--footer":{"type":"story","id":"components-layout-footer--footer","name":"Footer","title":"Components/Layout/Footer","importPath":"./src/.stories/components/footer.stories.tsx","componentPath":"./src/components/layout","tags":["dev","test"]},"components-layout-layout--layout":{"type":"story","id":"components-layout-layout--layout","name":"Layout","title":"Components/Layout/Layout","importPath":"./src/.stories/components/grid.stories.tsx","tags":["dev","test"]},"components-people-line--people-line":{"type":"story","id":"components-people-line--people-line","name":"People Line","title":"Components/People Line","importPath":"./src/.stories/components/people_line.stories.tsx","componentPath":"./src/components/people_line","tags":["dev","test"]},"components-layout-section--section":{"type":"story","id":"components-layout-section--section","name":"Section","title":"Components/Layout/Section","importPath":"./src/.stories/components/section.stories.tsx","componentPath":"./src/components/layout","tags":["dev","test"]},"components-github-stats--stats":{"type":"story","id":"components-github-stats--stats","name":"Stats","title":"Components/Github/Stats","importPath":"./src/.stories/components/stats.stories.tsx","componentPath":"./src/components/github","tags":["dev","test"]},"components-timeline--timeline":{"type":"story","id":"components-timeline--timeline","name":"Timeline","title":"Components/Timeline","importPath":"./src/.stories/components/timeline.stories.tsx","componentPath":"./src/components/timeline","tags":["dev","test"]},"theme-font--font-size":{"type":"story","id":"theme-font--font-size","name":"Font Size","title":"Theme/Font","importPath":"./src/.stories/theme/font.stories.tsx","tags":["dev","test"]},"theme-font--font-famliy":{"type":"story","id":"theme-font--font-famliy","name":"Font Famliy","title":"Theme/Font","importPath":"./src/.stories/theme/font.stories.tsx","tags":["dev","test"]},"theme-font--font-weight":{"type":"story","id":"theme-font--font-weight","name":"Font Weight","title":"Theme/Font","importPath":"./src/.stories/theme/font.stories.tsx","tags":["dev","test"]},"theme-icons--icons":{"type":"story","id":"theme-icons--icons","name":"Icons","title":"Theme/Icons","importPath":"./src/.stories/theme/icons.stories.tsx","tags":["dev","test"]},"theme-spacing--spacing":{"type":"story","id":"theme-spacing--spacing","name":"Spacing","title":"Theme/Spacing","importPath":"./src/.stories/theme/spacing.stories.tsx","tags":["dev","test"]}}} diff --git a/storybook-static/manifest.json b/storybook-static/manifest.json deleted file mode 100644 index b813df7..0000000 --- a/storybook-static/manifest.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "short_name": "Clint", - "name": "Clint Andrew Hall", - "icons": [ - { - "src": "favicon.ico", - "sizes": "64x64 32x32 24x24 16x16", - "type": "image/x-icon" - }, - { - "src": "logo192.png", - "type": "image/png", - "sizes": "192x192" - }, - { - "src": "logo512.png", - "type": "image/png", - "sizes": "512x512" - } - ], - "start_url": ".", - "display": "standalone", - "theme_color": "#000000", - "background_color": "#ffffff" -} \ No newline at end of file diff --git a/storybook-static/nunito-sans-bold-italic.woff2 b/storybook-static/nunito-sans-bold-italic.woff2 deleted file mode 100644 index 33563d8..0000000 Binary files a/storybook-static/nunito-sans-bold-italic.woff2 and /dev/null differ diff --git a/storybook-static/nunito-sans-bold.woff2 b/storybook-static/nunito-sans-bold.woff2 deleted file mode 100644 index 19fcc94..0000000 Binary files a/storybook-static/nunito-sans-bold.woff2 and /dev/null differ diff --git a/storybook-static/nunito-sans-italic.woff2 b/storybook-static/nunito-sans-italic.woff2 deleted file mode 100644 index 827096d..0000000 Binary files a/storybook-static/nunito-sans-italic.woff2 and /dev/null differ diff --git a/storybook-static/nunito-sans-regular.woff2 b/storybook-static/nunito-sans-regular.woff2 deleted file mode 100644 index c527ba4..0000000 Binary files a/storybook-static/nunito-sans-regular.woff2 and /dev/null differ diff --git a/storybook-static/project.json b/storybook-static/project.json deleted file mode 100644 index ff51836..0000000 --- a/storybook-static/project.json +++ /dev/null @@ -1 +0,0 @@ -{"generatedAt":1726118018001,"hasCustomBabel":false,"hasCustomWebpack":false,"hasStaticDirs":false,"hasStorybookEslint":true,"refCount":0,"testPackages":{"eslint-plugin-jest-dom":"5.1.0","eslint-plugin-testing-library":"6.1.0"},"packageManager":{"type":"yarn","version":"4.4.1"},"typescriptOptions":{"reactDocgen":"react-docgen"},"preview":{"usesGlobals":false},"framework":{"name":"@storybook/react-vite","options":{}},"builder":"@storybook/builder-vite","renderer":"@storybook/react","storybookVersion":"8.2.8","storybookVersionSpecifier":"^8.2.8","language":"typescript","storybookPackages":{"@storybook/blocks":{"version":"8.2.8"},"@storybook/react":{"version":"8.2.8"},"@storybook/react-vite":{"version":"8.2.8"},"@storybook/test":{"version":"8.2.8"},"eslint-plugin-storybook":{"version":"0.8.0"},"storybook":{"version":"8.2.8"}},"addons":{"@storybook/addon-links":{"version":"8.2.8"},"@storybook/addon-essentials":{"version":"8.2.8"},"@storybook/addon-interactions":{"version":"8.2.8"},"storybook-addon-remix-react-router":{"version":"3.0.0"},"chromatic":{"version":"11.8.0","versionSpecifier":"^11.8.0"}}} diff --git a/storybook-static/robots.txt b/storybook-static/robots.txt deleted file mode 100644 index e9e57dc..0000000 --- a/storybook-static/robots.txt +++ /dev/null @@ -1,3 +0,0 @@ -# https://www.robotstxt.org/robotstxt.html -User-agent: * -Disallow: diff --git a/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js b/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js deleted file mode 100644 index cbf61ce..0000000 --- a/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +++ /dev/null @@ -1,3 +0,0 @@ -try{ -(()=>{var o=__REACT__,{Children:Re,Component:Ae,Fragment:Ce,Profiler:Jr,PureComponent:qr,StrictMode:Xr,Suspense:Zr,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:Kr,cloneElement:Qr,createContext:K,createElement:en,createFactory:tn,createRef:rn,forwardRef:we,isValidElement:nn,lazy:an,memo:G,startTransition:on,unstable_act:sn,useCallback:N,useContext:Q,useDebugValue:ln,useDeferredValue:un,useEffect:xe,useId:cn,useImperativeHandle:pn,useInsertionEffect:fn,useLayoutEffect:Ne,useMemo:Le,useReducer:dn,useRef:Ie,useState:W,useSyncExternalStore:mn,useTransition:gn,version:bn}=__REACT__;var Tn=__STORYBOOK_API__,{ActiveTabs:_n,Consumer:vn,ManagerContext:Sn,Provider:Rn,RequestResponseError:An,addons:ee,combineParameters:Cn,controlOrMetaKey:wn,controlOrMetaSymbol:xn,eventMatchesShortcut:Nn,eventToShortcut:Ln,experimental_requestResponse:In,isMacLike:Dn,isShortcutTaken:Mn,keyToSymbol:Pn,merge:Bn,mockChannel:Fn,optionOrAltSymbol:zn,shortcutMatchesShortcut:Hn,shortcutToHumanString:jn,types:De,useAddonState:Me,useArgTypes:Un,useArgs:kn,useChannel:Pe,useGlobalTypes:Gn,useGlobals:Wn,useParameter:Vn,useSharedState:$n,useStoryPrepared:Yn,useStorybookApi:Jn,useStorybookState:qn}=__STORYBOOK_API__;var ea=__STORYBOOK_CORE_EVENTS__,{ARGTYPES_INFO_REQUEST:ta,ARGTYPES_INFO_RESPONSE:ra,CHANNEL_CREATED:na,CHANNEL_WS_DISCONNECT:aa,CONFIG_ERROR:oa,CREATE_NEW_STORYFILE_REQUEST:ia,CREATE_NEW_STORYFILE_RESPONSE:sa,CURRENT_STORY_WAS_SET:la,DOCS_PREPARED:ua,DOCS_RENDERED:ca,FILE_COMPONENT_SEARCH_REQUEST:pa,FILE_COMPONENT_SEARCH_RESPONSE:fa,FORCE_REMOUNT:da,FORCE_RE_RENDER:ma,GLOBALS_UPDATED:ga,NAVIGATE_URL:ba,PLAY_FUNCTION_THREW_EXCEPTION:ha,PRELOAD_ENTRIES:Ea,PREVIEW_BUILDER_PROGRESS:ya,PREVIEW_KEYDOWN:Oa,REGISTER_SUBSCRIPTION:Ta,REQUEST_WHATS_NEW_DATA:_a,RESET_STORY_ARGS:va,RESULT_WHATS_NEW_DATA:Sa,SAVE_STORY_REQUEST:Ra,SAVE_STORY_RESPONSE:Aa,SELECT_STORY:Ca,SET_CONFIG:wa,SET_CURRENT_STORY:xa,SET_GLOBALS:Na,SET_INDEX:La,SET_STORIES:Ia,SET_WHATS_NEW_CACHE:Da,SHARED_STATE_CHANGED:Ma,SHARED_STATE_SET:Pa,STORIES_COLLAPSE_ALL:Ba,STORIES_EXPAND_ALL:Fa,STORY_ARGS_UPDATED:za,STORY_CHANGED:V,STORY_ERRORED:Ha,STORY_INDEX_INVALIDATED:ja,STORY_MISSING:Ua,STORY_PREPARED:ka,STORY_RENDERED:Ga,STORY_RENDER_PHASE_CHANGED:Wa,STORY_SPECIFIED:Va,STORY_THREW_EXCEPTION:$a,STORY_UNCHANGED:Ya,TELEMETRY_ERROR:Ja,TOGGLE_WHATS_NEW_NOTIFICATIONS:qa,UNHANDLED_ERRORS_WHILE_PLAYING:Xa,UPDATE_GLOBALS:Za,UPDATE_QUERY_PARAMS:Ka,UPDATE_STORY_ARGS:Qa}=__STORYBOOK_CORE_EVENTS__;var uo=__STORYBOOK_COMPONENTS__,{A:co,ActionBar:Be,AddonPanel:po,Badge:Fe,Bar:fo,Blockquote:mo,Button:go,ClipboardCode:bo,Code:ho,DL:Eo,Div:yo,DocumentWrapper:Oo,EmptyTabContent:To,ErrorFormatter:_o,FlexBar:vo,Form:So,H1:Ro,H2:Ao,H3:Co,H4:wo,H5:xo,H6:No,HR:Lo,IconButton:Io,IconButtonSkeleton:Do,Icons:Mo,Img:Po,LI:Bo,Link:Fo,ListItem:zo,Loader:Ho,Modal:jo,OL:Uo,P:ko,Placeholder:Go,Pre:Wo,ResetWrapper:Vo,ScrollArea:ze,Separator:$o,Spaced:He,Span:Yo,StorybookIcon:Jo,StorybookLogo:qo,Symbols:Xo,SyntaxHighlighter:Zo,TT:Ko,TabBar:Qo,TabButton:ei,TabWrapper:ti,Table:ri,Tabs:ni,TabsState:ai,TooltipLinkList:oi,TooltipMessage:ii,TooltipNote:si,UL:li,WithTooltip:ui,WithTooltipPure:ci,Zoom:pi,codeCommon:fi,components:di,createCopyToClipboardFunction:mi,getStoryHref:gi,icons:bi,interleaveSeparators:hi,nameSpaceClassNames:Ei,resetComponents:yi,withReset:Oi}=__STORYBOOK_COMPONENTS__;var je=Object.prototype.hasOwnProperty;function Ue(e,t,r){for(r of e.keys())if(L(r,t))return r}function L(e,t){var r,n,a;if(e===t)return!0;if(e&&t&&(r=e.constructor)===t.constructor){if(r===Date)return e.getTime()===t.getTime();if(r===RegExp)return e.toString()===t.toString();if(r===Array){if((n=e.length)===t.length)for(;n--&&L(e[n],t[n]););return n===-1}if(r===Set){if(e.size!==t.size)return!1;for(n of e)if(a=n,a&&typeof a=="object"&&(a=Ue(t,a),!a)||!t.has(a))return!1;return!0}if(r===Map){if(e.size!==t.size)return!1;for(n of e)if(a=n[0],a&&typeof a=="object"&&(a=Ue(t,a),!a)||!L(n[1],t.get(a)))return!1;return!0}if(r===ArrayBuffer)e=new Uint8Array(e),t=new Uint8Array(t);else if(r===DataView){if((n=e.byteLength)===t.byteLength)for(;n--&&e.getInt8(n)===t.getInt8(n););return n===-1}if(ArrayBuffer.isView(e)){if((n=e.byteLength)===t.byteLength)for(;n--&&e[n]===t[n];);return n===-1}if(!r||typeof e=="object"){n=0;for(r in e)if(je.call(e,r)&&++n&&!je.call(t,r)||!(r in t)||!L(e[r],t[r]))return!1;return Object.keys(t).length===n}}return e!==e&&t!==t}var xi=__STORYBOOK_THEMING__,{CacheProvider:Ni,ClassNames:Li,Global:Ii,ThemeProvider:Di,background:Mi,color:Pi,convert:Bi,create:Fi,createCache:zi,createGlobal:Hi,createReset:ji,css:Ui,darken:ki,ensure:Gi,ignoreSsrWarning:Wi,isPropValid:Vi,jsx:$i,keyframes:Yi,lighten:Ji,styled:F,themes:qi,typography:Xi,useTheme:Zi,withTheme:ke}=__STORYBOOK_THEMING__;function O(){return O=Object.assign?Object.assign.bind():function(e){for(var t=1;t"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function I(e,t,r){return ae()?I=Reflect.construct.bind():I=function(a,i,s){var l=[null];l.push.apply(l,i);var u=Function.bind.apply(a,l),c=new u;return s&&R(c,s.prototype),c},I.apply(null,arguments)}function H(e){var t=typeof Map=="function"?new Map:void 0;return H=function(n){if(n===null||!ne(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof t<"u"){if(t.has(n))return t.get(n);t.set(n,a)}function a(){return I(n,arguments,z(this).constructor)}return a.prototype=Object.create(n.prototype,{constructor:{value:a,enumerable:!1,writable:!0,configurable:!0}}),R(a,n)},H(e)}var _=function(e){re(t,e);function t(r){var n;if(1)n=e.call(this,"An error occurred. See https://github.com/styled-components/polished/blob/main/src/internalHelpers/errors.md#"+r+" for more information.")||this;else for(var a,i,s;s=0&&a<1?(l=i,u=s):a>=1&&a<2?(l=s,u=i):a>=2&&a<3?(u=i,c=s):a>=3&&a<4?(u=s,c=i):a>=4&&a<5?(l=s,c=i):a>=5&&a<6&&(l=i,c=s);var p=r-i/2,d=l+p,f=u+p,E=c+p;return n(d,f,E)}var Ve={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function mt(e){if(typeof e!="string")return e;var t=e.toLowerCase();return Ve[t]?"#"+Ve[t]:e}var gt=/^#[a-fA-F0-9]{6}$/,bt=/^#[a-fA-F0-9]{8}$/,ht=/^#[a-fA-F0-9]{3}$/,Et=/^#[a-fA-F0-9]{4}$/,ie=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,yt=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,Ot=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,Tt=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function D(e){if(typeof e!="string")throw new _(3);var t=mt(e);if(t.match(gt))return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16)};if(t.match(bt)){var r=parseFloat((parseInt(""+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16),alpha:r}}if(t.match(ht))return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16)};if(t.match(Et)){var n=parseFloat((parseInt(""+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16),alpha:n}}var a=ie.exec(t);if(a)return{red:parseInt(""+a[1],10),green:parseInt(""+a[2],10),blue:parseInt(""+a[3],10)};var i=yt.exec(t.substring(0,50));if(i)return{red:parseInt(""+i[1],10),green:parseInt(""+i[2],10),blue:parseInt(""+i[3],10),alpha:parseFloat(""+i[4])>1?parseFloat(""+i[4])/100:parseFloat(""+i[4])};var s=Ot.exec(t);if(s){var l=parseInt(""+s[1],10),u=parseInt(""+s[2],10)/100,c=parseInt(""+s[3],10)/100,p="rgb("+j(l,u,c)+")",d=ie.exec(p);if(!d)throw new _(4,t,p);return{red:parseInt(""+d[1],10),green:parseInt(""+d[2],10),blue:parseInt(""+d[3],10)}}var f=Tt.exec(t.substring(0,50));if(f){var E=parseInt(""+f[1],10),m=parseInt(""+f[2],10)/100,y=parseInt(""+f[3],10)/100,T="rgb("+j(E,m,y)+")",x=ie.exec(T);if(!x)throw new _(4,t,T);return{red:parseInt(""+x[1],10),green:parseInt(""+x[2],10),blue:parseInt(""+x[3],10),alpha:parseFloat(""+f[4])>1?parseFloat(""+f[4])/100:parseFloat(""+f[4])}}throw new _(5)}function _t(e){var t=e.red/255,r=e.green/255,n=e.blue/255,a=Math.max(t,r,n),i=Math.min(t,r,n),s=(a+i)/2;if(a===i)return e.alpha!==void 0?{hue:0,saturation:0,lightness:s,alpha:e.alpha}:{hue:0,saturation:0,lightness:s};var l,u=a-i,c=s>.5?u/(2-a-i):u/(a+i);switch(a){case t:l=(r-n)/u+(r=1?$(e,t,r):"rgba("+j(e,t,r)+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?$(e.hue,e.saturation,e.lightness):"rgba("+j(e.hue,e.saturation,e.lightness)+","+e.alpha+")";throw new _(2)}function ue(e,t,r){if(typeof e=="number"&&typeof t=="number"&&typeof r=="number")return le("#"+w(e)+w(t)+w(r));if(typeof e=="object"&&t===void 0&&r===void 0)return le("#"+w(e.red)+w(e.green)+w(e.blue));throw new _(6)}function Y(e,t,r,n){if(typeof e=="string"&&typeof t=="number"){var a=D(e);return"rgba("+a.red+","+a.green+","+a.blue+","+t+")"}else{if(typeof e=="number"&&typeof t=="number"&&typeof r=="number"&&typeof n=="number")return n>=1?ue(e,t,r):"rgba("+e+","+t+","+r+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?ue(e.red,e.green,e.blue):"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")"}throw new _(7)}var Ct=function(t){return typeof t.red=="number"&&typeof t.green=="number"&&typeof t.blue=="number"&&(typeof t.alpha!="number"||typeof t.alpha>"u")},wt=function(t){return typeof t.red=="number"&&typeof t.green=="number"&&typeof t.blue=="number"&&typeof t.alpha=="number"},xt=function(t){return typeof t.hue=="number"&&typeof t.saturation=="number"&&typeof t.lightness=="number"&&(typeof t.alpha!="number"||typeof t.alpha>"u")},Nt=function(t){return typeof t.hue=="number"&&typeof t.saturation=="number"&&typeof t.lightness=="number"&&typeof t.alpha=="number"};function C(e){if(typeof e!="object")throw new _(8);if(wt(e))return Y(e);if(Ct(e))return ue(e);if(Nt(e))return At(e);if(xt(e))return Rt(e);throw new _(8)}function Ye(e,t,r){return function(){var a=r.concat(Array.prototype.slice.call(arguments));return a.length>=t?e.apply(this,a):Ye(e,t,a)}}function v(e){return Ye(e,e.length,[])}function Lt(e,t){if(t==="transparent")return t;var r=A(t);return C(O({},r,{hue:r.hue+parseFloat(e)}))}var nl=v(Lt);function M(e,t,r){return Math.max(e,Math.min(t,r))}function It(e,t){if(t==="transparent")return t;var r=A(t);return C(O({},r,{lightness:M(0,1,r.lightness-parseFloat(e))}))}var al=v(It);function Dt(e,t){if(t==="transparent")return t;var r=A(t);return C(O({},r,{saturation:M(0,1,r.saturation-parseFloat(e))}))}var ol=v(Dt);function Mt(e,t){if(t==="transparent")return t;var r=A(t);return C(O({},r,{lightness:M(0,1,r.lightness+parseFloat(e))}))}var il=v(Mt);function Pt(e,t,r){if(t==="transparent")return r;if(r==="transparent")return t;if(e===0)return r;var n=D(t),a=O({},n,{alpha:typeof n.alpha=="number"?n.alpha:1}),i=D(r),s=O({},i,{alpha:typeof i.alpha=="number"?i.alpha:1}),l=a.alpha-s.alpha,u=parseFloat(e)*2-1,c=u*l===-1?u:u+l,p=1+u*l,d=(c/p+1)/2,f=1-d,E={red:Math.floor(a.red*d+s.red*f),green:Math.floor(a.green*d+s.green*f),blue:Math.floor(a.blue*d+s.blue*f),alpha:a.alpha*parseFloat(e)+s.alpha*(1-parseFloat(e))};return Y(E)}var Bt=v(Pt),Je=Bt;function Ft(e,t){if(t==="transparent")return t;var r=D(t),n=typeof r.alpha=="number"?r.alpha:1,a=O({},r,{alpha:M(0,1,(n*100+parseFloat(e)*100)/100)});return Y(a)}var zt=v(Ft),qe=zt;function Ht(e,t){if(t==="transparent")return t;var r=A(t);return C(O({},r,{saturation:M(0,1,r.saturation+parseFloat(e))}))}var sl=v(Ht);function jt(e,t){return t==="transparent"?t:C(O({},A(t),{hue:parseFloat(e)}))}var ll=v(jt);function Ut(e,t){return t==="transparent"?t:C(O({},A(t),{lightness:parseFloat(e)}))}var ul=v(Ut);function kt(e,t){return t==="transparent"?t:C(O({},A(t),{saturation:parseFloat(e)}))}var cl=v(kt);function Gt(e,t){return t==="transparent"?t:Je(parseFloat(e),"rgb(0, 0, 0)",t)}var pl=v(Gt);function Wt(e,t){return t==="transparent"?t:Je(parseFloat(e),"rgb(255, 255, 255)",t)}var fl=v(Wt);function Vt(e,t){if(t==="transparent")return t;var r=D(t),n=typeof r.alpha=="number"?r.alpha:1,a=O({},r,{alpha:M(0,1,+(n*100-parseFloat(e)*100).toFixed(2)/100)});return Y(a)}var dl=v(Vt);var $t=Object.create,ge=Object.defineProperty,Yt=Object.getOwnPropertyDescriptor,et=Object.getOwnPropertyNames,Jt=Object.getPrototypeOf,qt=Object.prototype.hasOwnProperty,be=(e,t)=>function(){return t||(0,e[et(e)[0]])((t={exports:{}}).exports,t),t.exports},Xt=(e,t)=>{for(var r in t)ge(e,r,{get:t[r],enumerable:!0})},Zt=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of et(t))!qt.call(e,a)&&a!==r&&ge(e,a,{get:()=>t[a],enumerable:!(n=Yt(t,a))||n.enumerable});return e},Kt=(e,t,r)=>(r=e!=null?$t(Jt(e)):{},Zt(t||!e||!e.__esModule?ge(r,"default",{value:e,enumerable:!0}):r,e)),Qt=be({"node_modules/is-object/index.js"(e,t){t.exports=function(r){return typeof r=="object"&&r!==null}}}),er=be({"node_modules/is-window/index.js"(e,t){t.exports=function(r){if(r==null)return!1;var n=Object(r);return n===n.window}}}),tr=be({"node_modules/is-dom/index.js"(e,t){var r=Qt(),n=er();function a(i){return!r(i)||!n(window)||typeof window.Node!="function"?!1:typeof i.nodeType=="number"&&typeof i.nodeName=="string"}t.exports=a}}),X={};Xt(X,{chromeDark:()=>rr,chromeLight:()=>nr});var rr={BASE_FONT_FAMILY:"Menlo, monospace",BASE_FONT_SIZE:"11px",BASE_LINE_HEIGHT:1.2,BASE_BACKGROUND_COLOR:"rgb(36, 36, 36)",BASE_COLOR:"rgb(213, 213, 213)",OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES:10,OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES:5,OBJECT_NAME_COLOR:"rgb(227, 110, 236)",OBJECT_VALUE_NULL_COLOR:"rgb(127, 127, 127)",OBJECT_VALUE_UNDEFINED_COLOR:"rgb(127, 127, 127)",OBJECT_VALUE_REGEXP_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_STRING_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_SYMBOL_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_NUMBER_COLOR:"hsl(252, 100%, 75%)",OBJECT_VALUE_BOOLEAN_COLOR:"hsl(252, 100%, 75%)",OBJECT_VALUE_FUNCTION_PREFIX_COLOR:"rgb(85, 106, 242)",HTML_TAG_COLOR:"rgb(93, 176, 215)",HTML_TAGNAME_COLOR:"rgb(93, 176, 215)",HTML_TAGNAME_TEXT_TRANSFORM:"lowercase",HTML_ATTRIBUTE_NAME_COLOR:"rgb(155, 187, 220)",HTML_ATTRIBUTE_VALUE_COLOR:"rgb(242, 151, 102)",HTML_COMMENT_COLOR:"rgb(137, 137, 137)",HTML_DOCTYPE_COLOR:"rgb(192, 192, 192)",ARROW_COLOR:"rgb(145, 145, 145)",ARROW_MARGIN_RIGHT:3,ARROW_FONT_SIZE:12,ARROW_ANIMATION_DURATION:"0",TREENODE_FONT_FAMILY:"Menlo, monospace",TREENODE_FONT_SIZE:"11px",TREENODE_LINE_HEIGHT:1.2,TREENODE_PADDING_LEFT:12,TABLE_BORDER_COLOR:"rgb(85, 85, 85)",TABLE_TH_BACKGROUND_COLOR:"rgb(44, 44, 44)",TABLE_TH_HOVER_COLOR:"rgb(48, 48, 48)",TABLE_SORT_ICON_COLOR:"black",TABLE_DATA_BACKGROUND_IMAGE:"linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(51, 139, 255, 0.0980392) 50%, rgba(51, 139, 255, 0.0980392))",TABLE_DATA_BACKGROUND_SIZE:"128px 32px"},nr={BASE_FONT_FAMILY:"Menlo, monospace",BASE_FONT_SIZE:"11px",BASE_LINE_HEIGHT:1.2,BASE_BACKGROUND_COLOR:"white",BASE_COLOR:"black",OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES:10,OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES:5,OBJECT_NAME_COLOR:"rgb(136, 19, 145)",OBJECT_VALUE_NULL_COLOR:"rgb(128, 128, 128)",OBJECT_VALUE_UNDEFINED_COLOR:"rgb(128, 128, 128)",OBJECT_VALUE_REGEXP_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_STRING_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_SYMBOL_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_NUMBER_COLOR:"rgb(28, 0, 207)",OBJECT_VALUE_BOOLEAN_COLOR:"rgb(28, 0, 207)",OBJECT_VALUE_FUNCTION_PREFIX_COLOR:"rgb(13, 34, 170)",HTML_TAG_COLOR:"rgb(168, 148, 166)",HTML_TAGNAME_COLOR:"rgb(136, 18, 128)",HTML_TAGNAME_TEXT_TRANSFORM:"lowercase",HTML_ATTRIBUTE_NAME_COLOR:"rgb(153, 69, 0)",HTML_ATTRIBUTE_VALUE_COLOR:"rgb(26, 26, 166)",HTML_COMMENT_COLOR:"rgb(35, 110, 37)",HTML_DOCTYPE_COLOR:"rgb(192, 192, 192)",ARROW_COLOR:"#6e6e6e",ARROW_MARGIN_RIGHT:3,ARROW_FONT_SIZE:12,ARROW_ANIMATION_DURATION:"0",TREENODE_FONT_FAMILY:"Menlo, monospace",TREENODE_FONT_SIZE:"11px",TREENODE_LINE_HEIGHT:1.2,TREENODE_PADDING_LEFT:12,TABLE_BORDER_COLOR:"#aaa",TABLE_TH_BACKGROUND_COLOR:"#eee",TABLE_TH_HOVER_COLOR:"hsla(0, 0%, 90%, 1)",TABLE_SORT_ICON_COLOR:"#6e6e6e",TABLE_DATA_BACKGROUND_IMAGE:"linear-gradient(to bottom, white, white 50%, rgb(234, 243, 255) 50%, rgb(234, 243, 255))",TABLE_DATA_BACKGROUND_SIZE:"128px 32px"},tt=K([{},()=>{}]),ce={WebkitTouchCallout:"none",WebkitUserSelect:"none",KhtmlUserSelect:"none",MozUserSelect:"none",msUserSelect:"none",OUserSelect:"none",userSelect:"none"},J=e=>({DOMNodePreview:{htmlOpenTag:{base:{color:e.HTML_TAG_COLOR},tagName:{color:e.HTML_TAGNAME_COLOR,textTransform:e.HTML_TAGNAME_TEXT_TRANSFORM},htmlAttributeName:{color:e.HTML_ATTRIBUTE_NAME_COLOR},htmlAttributeValue:{color:e.HTML_ATTRIBUTE_VALUE_COLOR}},htmlCloseTag:{base:{color:e.HTML_TAG_COLOR},offsetLeft:{marginLeft:-e.TREENODE_PADDING_LEFT},tagName:{color:e.HTML_TAGNAME_COLOR,textTransform:e.HTML_TAGNAME_TEXT_TRANSFORM}},htmlComment:{color:e.HTML_COMMENT_COLOR},htmlDoctype:{color:e.HTML_DOCTYPE_COLOR}},ObjectPreview:{objectDescription:{fontStyle:"italic"},preview:{fontStyle:"italic"},arrayMaxProperties:e.OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES,objectMaxProperties:e.OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES},ObjectName:{base:{color:e.OBJECT_NAME_COLOR},dimmed:{opacity:.6}},ObjectValue:{objectValueNull:{color:e.OBJECT_VALUE_NULL_COLOR},objectValueUndefined:{color:e.OBJECT_VALUE_UNDEFINED_COLOR},objectValueRegExp:{color:e.OBJECT_VALUE_REGEXP_COLOR},objectValueString:{color:e.OBJECT_VALUE_STRING_COLOR},objectValueSymbol:{color:e.OBJECT_VALUE_SYMBOL_COLOR},objectValueNumber:{color:e.OBJECT_VALUE_NUMBER_COLOR},objectValueBoolean:{color:e.OBJECT_VALUE_BOOLEAN_COLOR},objectValueFunctionPrefix:{color:e.OBJECT_VALUE_FUNCTION_PREFIX_COLOR,fontStyle:"italic"},objectValueFunctionName:{fontStyle:"italic"}},TreeView:{treeViewOutline:{padding:0,margin:0,listStyleType:"none"}},TreeNode:{treeNodeBase:{color:e.BASE_COLOR,backgroundColor:e.BASE_BACKGROUND_COLOR,lineHeight:e.TREENODE_LINE_HEIGHT,cursor:"default",boxSizing:"border-box",listStyle:"none",fontFamily:e.TREENODE_FONT_FAMILY,fontSize:e.TREENODE_FONT_SIZE},treeNodePreviewContainer:{},treeNodePlaceholder:{whiteSpace:"pre",fontSize:e.ARROW_FONT_SIZE,marginRight:e.ARROW_MARGIN_RIGHT,...ce},treeNodeArrow:{base:{color:e.ARROW_COLOR,display:"inline-block",fontSize:e.ARROW_FONT_SIZE,marginRight:e.ARROW_MARGIN_RIGHT,...parseFloat(e.ARROW_ANIMATION_DURATION)>0?{transition:`transform ${e.ARROW_ANIMATION_DURATION} ease 0s`}:{},...ce},expanded:{WebkitTransform:"rotateZ(90deg)",MozTransform:"rotateZ(90deg)",transform:"rotateZ(90deg)"},collapsed:{WebkitTransform:"rotateZ(0deg)",MozTransform:"rotateZ(0deg)",transform:"rotateZ(0deg)"}},treeNodeChildNodesContainer:{margin:0,paddingLeft:e.TREENODE_PADDING_LEFT}},TableInspector:{base:{color:e.BASE_COLOR,position:"relative",border:`1px solid ${e.TABLE_BORDER_COLOR}`,fontFamily:e.BASE_FONT_FAMILY,fontSize:e.BASE_FONT_SIZE,lineHeight:"120%",boxSizing:"border-box",cursor:"default"}},TableInspectorHeaderContainer:{base:{top:0,height:"17px",left:0,right:0,overflowX:"hidden"},table:{tableLayout:"fixed",borderSpacing:0,borderCollapse:"separate",height:"100%",width:"100%",margin:0}},TableInspectorDataContainer:{tr:{display:"table-row"},td:{boxSizing:"border-box",border:"none",height:"16px",verticalAlign:"top",padding:"1px 4px",WebkitUserSelect:"text",whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",lineHeight:"14px"},div:{position:"static",top:"17px",bottom:0,overflowY:"overlay",transform:"translateZ(0)",left:0,right:0,overflowX:"hidden"},table:{positon:"static",left:0,top:0,right:0,bottom:0,borderTop:"0 none transparent",margin:0,backgroundImage:e.TABLE_DATA_BACKGROUND_IMAGE,backgroundSize:e.TABLE_DATA_BACKGROUND_SIZE,tableLayout:"fixed",borderSpacing:0,borderCollapse:"separate",width:"100%",fontSize:e.BASE_FONT_SIZE,lineHeight:"120%"}},TableInspectorTH:{base:{position:"relative",height:"auto",textAlign:"left",backgroundColor:e.TABLE_TH_BACKGROUND_COLOR,borderBottom:`1px solid ${e.TABLE_BORDER_COLOR}`,fontWeight:"normal",verticalAlign:"middle",padding:"0 4px",whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",lineHeight:"14px",":hover":{backgroundColor:e.TABLE_TH_HOVER_COLOR}},div:{whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",fontSize:e.BASE_FONT_SIZE,lineHeight:"120%"}},TableInspectorLeftBorder:{none:{borderLeft:"none"},solid:{borderLeft:`1px solid ${e.TABLE_BORDER_COLOR}`}},TableInspectorSortIcon:{display:"block",marginRight:3,width:8,height:7,marginTop:-7,color:e.TABLE_SORT_ICON_COLOR,fontSize:12,...ce}}),pe="chromeLight",rt=K(J(X[pe])),S=e=>Q(rt)[e],he=e=>({theme:t=pe,...r})=>{let n=Le(()=>{switch(Object.prototype.toString.call(t)){case"[object String]":return J(X[t]);case"[object Object]":return J(t);default:return J(X[pe])}},[t]);return o.createElement(rt.Provider,{value:n},o.createElement(e,{...r}))},ar=({expanded:e,styles:t})=>o.createElement("span",{style:{...t.base,...e?t.expanded:t.collapsed}},"\u25B6"),or=G(e=>{e={expanded:!0,nodeRenderer:({name:p})=>o.createElement("span",null,p),onClick:()=>{},shouldShowArrow:!1,shouldShowPlaceholder:!0,...e};let{expanded:t,onClick:r,children:n,nodeRenderer:a,title:i,shouldShowArrow:s,shouldShowPlaceholder:l}=e,u=S("TreeNode"),c=a;return o.createElement("li",{"aria-expanded":t,role:"treeitem",style:u.treeNodeBase,title:i},o.createElement("div",{style:u.treeNodePreviewContainer,onClick:r},s||Re.count(n)>0?o.createElement(ar,{expanded:t,styles:u.treeNodeArrow}):l&&o.createElement("span",{style:u.treeNodePlaceholder},"\xA0"),o.createElement(c,{...e})),o.createElement("ol",{role:"group",style:u.treeNodeChildNodesContainer},t?n:void 0))}),Z="$",Xe="*";function q(e,t){return!t(e).next().done}var ir=e=>Array.from({length:e},(t,r)=>[Z].concat(Array.from({length:r},()=>"*")).join(".")),sr=(e,t,r,n,a)=>{let i=[].concat(ir(n)).concat(r).filter(l=>typeof l=="string"),s=[];return i.forEach(l=>{let u=l.split("."),c=(p,d,f)=>{if(f===u.length){s.push(d);return}let E=u[f];if(f===0)q(p,t)&&(E===Z||E===Xe)&&c(p,Z,f+1);else if(E===Xe)for(let{name:m,data:y}of t(p))q(y,t)&&c(y,`${d}.${m}`,f+1);else{let m=p[E];q(m,t)&&c(m,`${d}.${E}`,f+1)}};c(e,"",0)}),s.reduce((l,u)=>(l[u]=!0,l),{...a})},nt=G(e=>{let{data:t,dataIterator:r,path:n,depth:a,nodeRenderer:i}=e,[s,l]=Q(tt),u=q(t,r),c=!!s[n],p=N(()=>u&&l(d=>({...d,[n]:!c})),[u,l,n,c]);return o.createElement(or,{expanded:c,onClick:p,shouldShowArrow:u,shouldShowPlaceholder:a>0,nodeRenderer:i,...e},c?[...r(t)].map(({name:d,data:f,...E})=>o.createElement(nt,{name:d,data:f,depth:a+1,path:`${n}.${d}`,key:d,dataIterator:r,nodeRenderer:i,...E})):null)}),at=G(({name:e,data:t,dataIterator:r,nodeRenderer:n,expandPaths:a,expandLevel:i})=>{let s=S("TreeView"),l=W({}),[,u]=l;return Ne(()=>u(c=>sr(t,r,a,i,c)),[t,r,a,i]),o.createElement(tt.Provider,{value:l},o.createElement("ol",{role:"tree",style:s.treeViewOutline},o.createElement(nt,{name:e,data:t,dataIterator:r,depth:0,path:Z,nodeRenderer:n})))}),Ee=({name:e,dimmed:t=!1,styles:r={}})=>{let n=S("ObjectName"),a={...n.base,...t?n.dimmed:{},...r};return o.createElement("span",{style:a},e)},U=({object:e,styles:t})=>{let r=S("ObjectValue"),n=a=>({...r[a],...t});switch(typeof e){case"bigint":return o.createElement("span",{style:n("objectValueNumber")},String(e),"n");case"number":return o.createElement("span",{style:n("objectValueNumber")},String(e));case"string":return o.createElement("span",{style:n("objectValueString")},'"',e,'"');case"boolean":return o.createElement("span",{style:n("objectValueBoolean")},String(e));case"undefined":return o.createElement("span",{style:n("objectValueUndefined")},"undefined");case"object":return e===null?o.createElement("span",{style:n("objectValueNull")},"null"):e instanceof Date?o.createElement("span",null,e.toString()):e instanceof RegExp?o.createElement("span",{style:n("objectValueRegExp")},e.toString()):Array.isArray(e)?o.createElement("span",null,`Array(${e.length})`):e.constructor?typeof e.constructor.isBuffer=="function"&&e.constructor.isBuffer(e)?o.createElement("span",null,`Buffer[${e.length}]`):o.createElement("span",null,e.constructor.name):o.createElement("span",null,"Object");case"function":return o.createElement("span",null,o.createElement("span",{style:n("objectValueFunctionPrefix")},"\u0192\xA0"),o.createElement("span",{style:n("objectValueFunctionName")},e.name,"()"));case"symbol":return o.createElement("span",{style:n("objectValueSymbol")},e.toString());default:return o.createElement("span",null)}},ot=Object.prototype.hasOwnProperty,lr=Object.prototype.propertyIsEnumerable;function fe(e,t){let r=Object.getOwnPropertyDescriptor(e,t);if(r.get)try{return r.get()}catch{return r.get}return e[t]}function Ze(e,t){return e.length===0?[]:e.slice(1).reduce((r,n)=>r.concat([t,n]),[e[0]])}var de=({data:e})=>{let t=S("ObjectPreview"),r=e;if(typeof r!="object"||r===null||r instanceof Date||r instanceof RegExp)return o.createElement(U,{object:r});if(Array.isArray(r)){let n=t.arrayMaxProperties,a=r.slice(0,n).map((s,l)=>o.createElement(U,{key:l,object:s}));r.length>n&&a.push(o.createElement("span",{key:"ellipsis"},"\u2026"));let i=r.length;return o.createElement(o.Fragment,null,o.createElement("span",{style:t.objectDescription},i===0?"":`(${i})\xA0`),o.createElement("span",{style:t.preview},"[",Ze(a,", "),"]"))}else{let n=t.objectMaxProperties,a=[];for(let s in r)if(ot.call(r,s)){let l;a.length===n-1&&Object.keys(r).length>n&&(l=o.createElement("span",{key:"ellipsis"},"\u2026"));let u=fe(r,s);if(a.push(o.createElement("span",{key:s},o.createElement(Ee,{name:s||'""'}),":\xA0",o.createElement(U,{object:u}),l)),l)break}let i=r.constructor?r.constructor.name:"Object";return o.createElement(o.Fragment,null,o.createElement("span",{style:t.objectDescription},i==="Object"?"":`${i} `),o.createElement("span",{style:t.preview},"{",Ze(a,", "),"}"))}},ur=({name:e,data:t})=>typeof e=="string"?o.createElement("span",null,o.createElement(Ee,{name:e}),o.createElement("span",null,": "),o.createElement(de,{data:t})):o.createElement(de,{data:t}),cr=({name:e,data:t,isNonenumerable:r=!1})=>{let n=t;return o.createElement("span",null,typeof e=="string"?o.createElement(Ee,{name:e,dimmed:r}):o.createElement(de,{data:e}),o.createElement("span",null,": "),o.createElement(U,{object:n}))},pr=(e,t)=>function*(r){if(!(typeof r=="object"&&r!==null||typeof r=="function"))return;let n=Array.isArray(r);if(!n&&r[Symbol.iterator]){let a=0;for(let i of r){if(Array.isArray(i)&&i.length===2){let[s,l]=i;yield{name:s,data:l}}else yield{name:a.toString(),data:i};a++}}else{let a=Object.getOwnPropertyNames(r);t===!0&&!n?a.sort():typeof t=="function"&&a.sort(t);for(let i of a)if(lr.call(r,i)){let s=fe(r,i);yield{name:i||'""',data:s}}else if(e){let s;try{s=fe(r,i)}catch{}s!==void 0&&(yield{name:i,data:s,isNonenumerable:!0})}e&&r!==Object.prototype&&(yield{name:"__proto__",data:Object.getPrototypeOf(r),isNonenumerable:!0})}},fr=({depth:e,name:t,data:r,isNonenumerable:n})=>e===0?o.createElement(ur,{name:t,data:r}):o.createElement(cr,{name:t,data:r,isNonenumerable:n}),dr=({showNonenumerable:e=!1,sortObjectKeys:t,nodeRenderer:r,...n})=>{let a=pr(e,t),i=r||fr;return o.createElement(at,{nodeRenderer:i,dataIterator:a,...n})},mr=he(dr);function gr(e){if(typeof e=="object"){let t=[];if(Array.isArray(e)){let n=e.length;t=[...Array(n).keys()]}else e!==null&&(t=Object.keys(e));let r=t.reduce((n,a)=>{let i=e[a];return typeof i=="object"&&i!==null&&Object.keys(i).reduce((s,l)=>(s.includes(l)||s.push(l),s),n),n},[]);return{rowHeaders:t,colHeaders:r}}}var br=({rows:e,columns:t,rowsData:r})=>{let n=S("TableInspectorDataContainer"),a=S("TableInspectorLeftBorder");return o.createElement("div",{style:n.div},o.createElement("table",{style:n.table},o.createElement("colgroup",null),o.createElement("tbody",null,e.map((i,s)=>o.createElement("tr",{key:i,style:n.tr},o.createElement("td",{style:{...n.td,...a.none}},i),t.map(l=>{let u=r[s];return typeof u=="object"&&u!==null&&ot.call(u,l)?o.createElement("td",{key:l,style:{...n.td,...a.solid}},o.createElement(U,{object:u[l]})):o.createElement("td",{key:l,style:{...n.td,...a.solid}})}))))))},hr=e=>o.createElement("div",{style:{position:"absolute",top:1,right:0,bottom:1,display:"flex",alignItems:"center"}},e.children),Er=({sortAscending:e})=>{let t=S("TableInspectorSortIcon"),r=e?"\u25B2":"\u25BC";return o.createElement("div",{style:t},r)},Ke=({sortAscending:e=!1,sorted:t=!1,onClick:r=void 0,borderStyle:n={},children:a,...i})=>{let s=S("TableInspectorTH"),[l,u]=W(!1),c=N(()=>u(!0),[]),p=N(()=>u(!1),[]);return o.createElement("th",{...i,style:{...s.base,...n,...l?s.base[":hover"]:{}},onMouseEnter:c,onMouseLeave:p,onClick:r},o.createElement("div",{style:s.div},a),t&&o.createElement(hr,null,o.createElement(Er,{sortAscending:e})))},yr=({indexColumnText:e="(index)",columns:t=[],sorted:r,sortIndexColumn:n,sortColumn:a,sortAscending:i,onTHClick:s,onIndexTHClick:l})=>{let u=S("TableInspectorHeaderContainer"),c=S("TableInspectorLeftBorder");return o.createElement("div",{style:u.base},o.createElement("table",{style:u.table},o.createElement("tbody",null,o.createElement("tr",null,o.createElement(Ke,{borderStyle:c.none,sorted:r&&n,sortAscending:i,onClick:l},e),t.map(p=>o.createElement(Ke,{borderStyle:c.solid,key:p,sorted:r&&a===p,sortAscending:i,onClick:s.bind(null,p)},p))))))},Or=({data:e,columns:t})=>{let r=S("TableInspector"),[{sorted:n,sortIndexColumn:a,sortColumn:i,sortAscending:s},l]=W({sorted:!1,sortIndexColumn:!1,sortColumn:void 0,sortAscending:!1}),u=N(()=>{l(({sortIndexColumn:m,sortAscending:y})=>({sorted:!0,sortIndexColumn:!0,sortColumn:void 0,sortAscending:m?!y:!0}))},[]),c=N(m=>{l(({sortColumn:y,sortAscending:T})=>({sorted:!0,sortIndexColumn:!1,sortColumn:m,sortAscending:m===y?!T:!0}))},[]);if(typeof e!="object"||e===null)return o.createElement("div",null);let{rowHeaders:p,colHeaders:d}=gr(e);t!==void 0&&(d=t);let f=p.map(m=>e[m]),E;if(i!==void 0?E=f.map((m,y)=>typeof m=="object"&&m!==null?[m[i],y]:[void 0,y]):a&&(E=p.map((m,y)=>[p[y],y])),E!==void 0){let m=(T,x)=>(ut,ct)=>{let ye=T(ut),Oe=T(ct),Te=typeof ye,_e=typeof Oe,ve=(B,Se)=>BSe?1:0,P;if(Te===_e)P=ve(ye,Oe);else{let B={string:0,number:1,object:2,symbol:3,boolean:4,undefined:5,function:6};P=ve(B[Te],B[_e])}return x||(P=-P),P},y=E.sort(m(T=>T[0],s)).map(T=>T[1]);p=y.map(T=>p[T]),f=y.map(T=>f[T])}return o.createElement("div",{style:r.base},o.createElement(yr,{columns:d,sorted:n,sortIndexColumn:a,sortColumn:i,sortAscending:s,onTHClick:c,onIndexTHClick:u}),o.createElement(br,{rows:p,columns:d,rowsData:f}))},Tr=he(Or),_r=80,it=e=>e.childNodes.length===0||e.childNodes.length===1&&e.childNodes[0].nodeType===Node.TEXT_NODE&&e.textContent.length<_r,vr=({tagName:e,attributes:t,styles:r})=>o.createElement("span",{style:r.base},"<",o.createElement("span",{style:r.tagName},e),(()=>{if(t){let n=[];for(let a=0;a"),Qe=({tagName:e,isChildNode:t=!1,styles:r})=>o.createElement("span",{style:Object.assign({},r.base,t&&r.offsetLeft)},""),Sr={1:"ELEMENT_NODE",3:"TEXT_NODE",7:"PROCESSING_INSTRUCTION_NODE",8:"COMMENT_NODE",9:"DOCUMENT_NODE",10:"DOCUMENT_TYPE_NODE",11:"DOCUMENT_FRAGMENT_NODE"},Rr=({isCloseTag:e,data:t,expanded:r})=>{let n=S("DOMNodePreview");if(e)return o.createElement(Qe,{styles:n.htmlCloseTag,isChildNode:!0,tagName:t.tagName});switch(t.nodeType){case Node.ELEMENT_NODE:return o.createElement("span",null,o.createElement(vr,{tagName:t.tagName,attributes:t.attributes,styles:n.htmlOpenTag}),it(t)?t.textContent:!r&&"\u2026",!r&&o.createElement(Qe,{tagName:t.tagName,styles:n.htmlCloseTag}));case Node.TEXT_NODE:return o.createElement("span",null,t.textContent);case Node.CDATA_SECTION_NODE:return o.createElement("span",null,"");case Node.COMMENT_NODE:return o.createElement("span",{style:n.htmlComment},"");case Node.PROCESSING_INSTRUCTION_NODE:return o.createElement("span",null,t.nodeName);case Node.DOCUMENT_TYPE_NODE:return o.createElement("span",{style:n.htmlDoctype},"");case Node.DOCUMENT_NODE:return o.createElement("span",null,t.nodeName);case Node.DOCUMENT_FRAGMENT_NODE:return o.createElement("span",null,t.nodeName);default:return o.createElement("span",null,Sr[t.nodeType])}},Ar=function*(e){if(e&&e.childNodes){if(it(e))return;for(let t=0;to.createElement(at,{nodeRenderer:Rr,dataIterator:Ar,...e}),wr=he(Cr),xr=Kt(tr()),Nr=({table:e=!1,data:t,...r})=>e?o.createElement(Tr,{data:t,...r}):(0,xr.default)(t)?o.createElement(wr,{data:t,...r}):o.createElement(mr,{data:t,...r}),Lr=F.div({display:"flex",padding:0,borderLeft:"5px solid transparent",borderBottom:"1px solid transparent",transition:"all 0.1s",alignItems:"flex-start",whiteSpace:"pre"}),Ir=F.div(({theme:e})=>({backgroundColor:qe(.5,e.appBorderColor),color:e.color.inverseText,fontSize:e.typography.size.s1,fontWeight:e.typography.weight.bold,lineHeight:1,padding:"1px 5px",borderRadius:20,margin:"2px 0px"})),Dr=F.div({flex:1,padding:"0 0 0 5px"}),st=we(({children:e,className:t},r)=>o.createElement(ze,{ref:r,horizontal:!0,vertical:!0,className:t},e));st.displayName="UnstyledWrapped";var Mr=F(st)({margin:0,padding:"10px 5px 20px"}),Pr=ke(({theme:e,...t})=>o.createElement(Nr,{theme:e.addonActionsTheme||"chromeLight",table:!1,...t})),Br=({actions:e,onClear:t})=>{let r=Ie(null),n=r.current,a=n&&n.scrollHeight-n.scrollTop===n.clientHeight;return xe(()=>{a&&(r.current.scrollTop=r.current.scrollHeight)},[a,e.length]),o.createElement(Ce,null,o.createElement(Mr,{ref:r},e.map(i=>o.createElement(Lr,{key:i.id},i.count>1&&o.createElement(Ir,null,i.count),o.createElement(Dr,null,o.createElement(Pr,{sortObjectKeys:!0,showNonenumerable:!1,name:i.data.name,data:i.data.args??i.data}))))),o.createElement(Be,{actionItems:[{title:"Clear",onClick:t}]}))},Fr="actions",k="storybook/actions",zr=`${k}/panel`,me=`${k}/action-event`,lt=`${k}/action-clear`,Hr=(e,t)=>{try{return L(e,t)}catch{return!1}},jr=class extends Ae{constructor(e){super(e),this.handleStoryChange=()=>{let{actions:t}=this.state;t.length>0&&t[0].options.clearOnStoryChange&&this.clearActions()},this.addAction=t=>{this.setState(r=>{let n=[...r.actions],a=n.length&&n[n.length-1];return a&&Hr(a.data,t.data)?a.count++:(t.count=1,n.push(t)),{actions:n.slice(0,t.options.limit)}})},this.clearActions=()=>{let{api:t}=this.props;t.emit(lt),this.setState({actions:[]})},this.mounted=!1,this.state={actions:[]}}componentDidMount(){this.mounted=!0;let{api:e}=this.props;e.on(me,this.addAction),e.on(V,this.handleStoryChange)}componentWillUnmount(){this.mounted=!1;let{api:e}=this.props;e.off(V,this.handleStoryChange),e.off(me,this.addAction)}render(){let{actions:e=[]}=this.state,{active:t}=this.props,r={actions:e,onClear:this.clearActions};return t?o.createElement(Br,{...r}):null}};function Ur(){let[{count:e},t]=Me(k,{count:0});return Pe({[me]:()=>{t(r=>({...r,count:r.count+1}))},[V]:()=>{t(r=>({...r,count:0}))},[lt]:()=>{t(r=>({...r,count:0}))}}),o.createElement("div",null,o.createElement(He,{col:1},o.createElement("span",{style:{display:"inline-block",verticalAlign:"middle"}},"Actions"),e===0?"":o.createElement(Fe,{status:"neutral"},e)))}ee.register(k,e=>{ee.add(zr,{title:Ur,type:De.PANEL,render:({active:t})=>o.createElement(jr,{api:e,active:!!t}),paramKey:Fr})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/essentials-backgrounds-4/manager-bundle.js b/storybook-static/sb-addons/essentials-backgrounds-4/manager-bundle.js deleted file mode 100644 index 5b0b898..0000000 --- a/storybook-static/sb-addons/essentials-backgrounds-4/manager-bundle.js +++ /dev/null @@ -1,12 +0,0 @@ -try{ -(()=>{var ne=Object.create;var F=Object.defineProperty;var te=Object.getOwnPropertyDescriptor;var re=Object.getOwnPropertyNames;var ce=Object.getPrototypeOf,ie=Object.prototype.hasOwnProperty;var E=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(o,a)=>(typeof require<"u"?require:o)[a]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')});var x=(e,o)=>()=>(e&&(o=e(e=0)),o);var ae=(e,o)=>()=>(o||e((o={exports:{}}).exports,o),o.exports);var se=(e,o,a,r)=>{if(o&&typeof o=="object"||typeof o=="function")for(let c of re(o))!ie.call(e,c)&&c!==a&&F(e,c,{get:()=>o[c],enumerable:!(r=te(o,c))||r.enumerable});return e};var le=(e,o,a)=>(a=e!=null?ne(ce(e)):{},se(o||!e||!e.__esModule?F(a,"default",{value:e,enumerable:!0}):a,e));var I=x(()=>{});var d=x(()=>{});var m=x(()=>{});var V=ae((W,G)=>{I();d();m();(function(e){if(typeof W=="object"&&typeof G<"u")G.exports=e();else if(typeof define=="function"&&define.amd)define([],e);else{var o;typeof window<"u"||typeof window<"u"?o=window:typeof self<"u"?o=self:o=this,o.memoizerific=e()}})(function(){var e,o,a;return function r(c,h,s){function t(i,f){if(!h[i]){if(!c[i]){var u=typeof E=="function"&&E;if(!f&&u)return u(i,!0);if(n)return n(i,!0);var b=new Error("Cannot find module '"+i+"'");throw b.code="MODULE_NOT_FOUND",b}var p=h[i]={exports:{}};c[i][0].call(p.exports,function(g){var S=c[i][1][g];return t(S||g)},p,p.exports,r,c,h,s)}return h[i].exports}for(var n=typeof E=="function"&&E,l=0;l=0)return this.lastItem=this.list[n],this.list[n].val},s.prototype.set=function(t,n){var l;return this.lastItem&&this.isEqual(this.lastItem.key,t)?(this.lastItem.val=n,this):(l=this.indexOf(t),l>=0?(this.lastItem=this.list[l],this.list[l].val=n,this):(this.lastItem={key:t,val:n},this.list.push(this.lastItem),this.size++,this))},s.prototype.delete=function(t){var n;if(this.lastItem&&this.isEqual(this.lastItem.key,t)&&(this.lastItem=void 0),n=this.indexOf(t),n>=0)return this.size--,this.list.splice(n,1)[0]},s.prototype.has=function(t){var n;return this.lastItem&&this.isEqual(this.lastItem.key,t)?!0:(n=this.indexOf(t),n>=0?(this.lastItem=this.list[n],!0):!1)},s.prototype.forEach=function(t,n){var l;for(l=0;l0&&(B[T]={cacheItem:g,arg:arguments[T]},A?t(u,B):u.push(B),u.length>i&&n(u.shift())),p.wasMemoized=A,p.numArgs=T+1,w};return p.limit=i,p.wasMemoized=!1,p.cache=f,p.lru=u,p}};function t(i,f){var u=i.length,b=f.length,p,g,S;for(g=0;g=0&&(u=i[p],b=u.cacheItem.get(u.arg),!b||!b.size);p--)u.cacheItem.delete(u.arg)}function l(i,f){return i===f||i!==i&&f!==f}},{"map-or-similar":1}]},{},[3])(3)})});I();d();m();I();d();m();I();d();m();I();d();m();var C=__REACT__,{Children:ke,Component:Te,Fragment:R,Profiler:Oe,PureComponent:ve,StrictMode:Ae,Suspense:Ee,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:we,cloneElement:Be,createContext:xe,createElement:Re,createFactory:Le,createRef:Pe,forwardRef:Me,isValidElement:De,lazy:Ge,memo:L,startTransition:He,unstable_act:Ne,useCallback:q,useContext:Ue,useDebugValue:Fe,useDeferredValue:qe,useEffect:ze,useId:Ke,useImperativeHandle:Ye,useInsertionEffect:We,useLayoutEffect:Ve,useMemo:z,useReducer:$e,useRef:je,useState:K,useSyncExternalStore:Ze,useTransition:Je,version:Qe}=__REACT__;I();d();m();var to=__STORYBOOK_API__,{ActiveTabs:ro,Consumer:co,ManagerContext:io,Provider:ao,RequestResponseError:so,addons:P,combineParameters:lo,controlOrMetaKey:uo,controlOrMetaSymbol:Io,eventMatchesShortcut:mo,eventToShortcut:po,experimental_requestResponse:fo,isMacLike:ho,isShortcutTaken:go,keyToSymbol:bo,merge:So,mockChannel:Co,optionOrAltSymbol:yo,shortcutMatchesShortcut:_o,shortcutToHumanString:ko,types:Y,useAddonState:To,useArgTypes:Oo,useArgs:vo,useChannel:Ao,useGlobalTypes:Eo,useGlobals:M,useParameter:D,useSharedState:wo,useStoryPrepared:Bo,useStorybookApi:xo,useStorybookState:Ro}=__STORYBOOK_API__;var U=le(V());I();d();m();var Fo=__STORYBOOK_CLIENT_LOGGER__,{deprecate:qo,logger:H,once:zo,pretty:Ko}=__STORYBOOK_CLIENT_LOGGER__;I();d();m();var jo=__STORYBOOK_COMPONENTS__,{A:Zo,ActionBar:Jo,AddonPanel:Qo,Badge:Xo,Bar:en,Blockquote:on,Button:nn,ClipboardCode:tn,Code:rn,DL:cn,Div:an,DocumentWrapper:sn,EmptyTabContent:ln,ErrorFormatter:un,FlexBar:In,Form:dn,H1:mn,H2:pn,H3:fn,H4:hn,H5:gn,H6:bn,HR:Sn,IconButton:N,IconButtonSkeleton:Cn,Icons:yn,Img:_n,LI:kn,Link:Tn,ListItem:On,Loader:vn,Modal:An,OL:En,P:wn,Placeholder:Bn,Pre:xn,ResetWrapper:Rn,ScrollArea:Ln,Separator:Pn,Spaced:Mn,Span:Dn,StorybookIcon:Gn,StorybookLogo:Hn,Symbols:Nn,SyntaxHighlighter:Un,TT:Fn,TabBar:qn,TabButton:zn,TabWrapper:Kn,Table:Yn,Tabs:Wn,TabsState:Vn,TooltipLinkList:$,TooltipMessage:$n,TooltipNote:jn,UL:Zn,WithTooltip:j,WithTooltipPure:Jn,Zoom:Qn,codeCommon:Xn,components:et,createCopyToClipboardFunction:ot,getStoryHref:nt,icons:tt,interleaveSeparators:rt,nameSpaceClassNames:ct,resetComponents:it,withReset:at}=__STORYBOOK_COMPONENTS__;I();d();m();var dt=__STORYBOOK_ICONS__,{AccessibilityAltIcon:mt,AccessibilityIcon:pt,AddIcon:ft,AdminIcon:ht,AlertAltIcon:gt,AlertIcon:bt,AlignLeftIcon:St,AlignRightIcon:Ct,AppleIcon:yt,ArrowDownIcon:_t,ArrowLeftIcon:kt,ArrowRightIcon:Tt,ArrowSolidDownIcon:Ot,ArrowSolidLeftIcon:vt,ArrowSolidRightIcon:At,ArrowSolidUpIcon:Et,ArrowUpIcon:wt,AzureDevOpsIcon:Bt,BackIcon:xt,BasketIcon:Rt,BatchAcceptIcon:Lt,BatchDenyIcon:Pt,BeakerIcon:Mt,BellIcon:Dt,BitbucketIcon:Gt,BoldIcon:Ht,BookIcon:Nt,BookmarkHollowIcon:Ut,BookmarkIcon:Ft,BottomBarIcon:qt,BottomBarToggleIcon:zt,BoxIcon:Kt,BranchIcon:Yt,BrowserIcon:Wt,ButtonIcon:Vt,CPUIcon:$t,CalendarIcon:jt,CameraIcon:Zt,CategoryIcon:Jt,CertificateIcon:Qt,ChangedIcon:Xt,ChatIcon:er,CheckIcon:or,ChevronDownIcon:nr,ChevronLeftIcon:tr,ChevronRightIcon:rr,ChevronSmallDownIcon:cr,ChevronSmallLeftIcon:ir,ChevronSmallRightIcon:ar,ChevronSmallUpIcon:sr,ChevronUpIcon:lr,ChromaticIcon:ur,ChromeIcon:Ir,CircleHollowIcon:dr,CircleIcon:mr,ClearIcon:pr,CloseAltIcon:fr,CloseIcon:hr,CloudHollowIcon:gr,CloudIcon:br,CogIcon:Sr,CollapseIcon:Cr,CommandIcon:yr,CommentAddIcon:_r,CommentIcon:kr,CommentsIcon:Tr,CommitIcon:Or,CompassIcon:vr,ComponentDrivenIcon:Ar,ComponentIcon:Er,ContrastIcon:wr,ControlsIcon:Br,CopyIcon:xr,CreditIcon:Rr,CrossIcon:Lr,DashboardIcon:Pr,DatabaseIcon:Mr,DeleteIcon:Dr,DiamondIcon:Gr,DirectionIcon:Hr,DiscordIcon:Nr,DocChartIcon:Ur,DocListIcon:Fr,DocumentIcon:qr,DownloadIcon:zr,DragIcon:Kr,EditIcon:Yr,EllipsisIcon:Wr,EmailIcon:Vr,ExpandAltIcon:$r,ExpandIcon:jr,EyeCloseIcon:Zr,EyeIcon:Jr,FaceHappyIcon:Qr,FaceNeutralIcon:Xr,FaceSadIcon:ec,FacebookIcon:oc,FailedIcon:nc,FastForwardIcon:tc,FigmaIcon:rc,FilterIcon:cc,FlagIcon:ic,FolderIcon:ac,FormIcon:sc,GDriveIcon:lc,GithubIcon:uc,GitlabIcon:Ic,GlobeIcon:dc,GoogleIcon:mc,GraphBarIcon:pc,GraphLineIcon:fc,GraphqlIcon:hc,GridAltIcon:gc,GridIcon:Z,GrowIcon:bc,HeartHollowIcon:Sc,HeartIcon:Cc,HomeIcon:yc,HourglassIcon:_c,InfoIcon:kc,ItalicIcon:Tc,JumpToIcon:Oc,KeyIcon:vc,LightningIcon:Ac,LightningOffIcon:Ec,LinkBrokenIcon:wc,LinkIcon:Bc,LinkedinIcon:xc,LinuxIcon:Rc,ListOrderedIcon:Lc,ListUnorderedIcon:Pc,LocationIcon:Mc,LockIcon:Dc,MarkdownIcon:Gc,MarkupIcon:Hc,MediumIcon:Nc,MemoryIcon:Uc,MenuIcon:Fc,MergeIcon:qc,MirrorIcon:zc,MobileIcon:Kc,MoonIcon:Yc,NutIcon:Wc,OutboxIcon:Vc,OutlineIcon:$c,PaintBrushIcon:jc,PaperClipIcon:Zc,ParagraphIcon:Jc,PassedIcon:Qc,PhoneIcon:Xc,PhotoDragIcon:ei,PhotoIcon:J,PinAltIcon:oi,PinIcon:ni,PlayBackIcon:ti,PlayIcon:ri,PlayNextIcon:ci,PlusIcon:ii,PointerDefaultIcon:ai,PointerHandIcon:si,PowerIcon:li,PrintIcon:ui,ProceedIcon:Ii,ProfileIcon:di,PullRequestIcon:mi,QuestionIcon:pi,RSSIcon:fi,RedirectIcon:hi,ReduxIcon:gi,RefreshIcon:bi,ReplyIcon:Si,RepoIcon:Ci,RequestChangeIcon:yi,RewindIcon:_i,RulerIcon:ki,SearchIcon:Ti,ShareAltIcon:Oi,ShareIcon:vi,ShieldIcon:Ai,SideBySideIcon:Ei,SidebarAltIcon:wi,SidebarAltToggleIcon:Bi,SidebarIcon:xi,SidebarToggleIcon:Ri,SpeakerIcon:Li,StackedIcon:Pi,StarHollowIcon:Mi,StarIcon:Di,StickerIcon:Gi,StopAltIcon:Hi,StopIcon:Ni,StorybookIcon:Ui,StructureIcon:Fi,SubtractIcon:qi,SunIcon:zi,SupportIcon:Ki,SwitchAltIcon:Yi,SyncIcon:Wi,TabletIcon:Vi,ThumbsUpIcon:$i,TimeIcon:ji,TimerIcon:Zi,TransferIcon:Ji,TrashIcon:Qi,TwitterIcon:Xi,TypeIcon:ea,UbuntuIcon:oa,UndoIcon:na,UnfoldIcon:ta,UnlockIcon:ra,UnpinIcon:ca,UploadIcon:ia,UserAddIcon:aa,UserAltIcon:sa,UserIcon:la,UsersIcon:ua,VSCodeIcon:Ia,VerifiedIcon:da,VideoIcon:ma,WandIcon:pa,WatchIcon:fa,WindowsIcon:ha,WrenchIcon:ga,YoutubeIcon:ba,ZoomIcon:Sa,ZoomOutIcon:Ca,ZoomResetIcon:ya,iconList:_a}=__STORYBOOK_ICONS__;I();d();m();var Aa=__STORYBOOK_THEMING__,{CacheProvider:Ea,ClassNames:wa,Global:Ba,ThemeProvider:xa,background:Ra,color:La,convert:Pa,create:Ma,createCache:Da,createGlobal:Ga,createReset:Ha,css:Na,darken:Ua,ensure:Fa,ignoreSsrWarning:qa,isPropValid:za,jsx:Ka,keyframes:Ya,lighten:Wa,styled:Q,themes:Va,typography:$a,useTheme:ja,withTheme:Za}=__STORYBOOK_THEMING__;I();d();m();var os=(()=>{let e;return typeof window<"u"?e=window:typeof globalThis<"u"?e=globalThis:typeof window<"u"?e=window:typeof self<"u"?e=self:e={},e})();I();d();m();function X(e){for(var o=[],a=1;a({borderRadius:"1rem",display:"block",height:"1rem",width:"1rem",background:e}),({theme:e})=>({boxShadow:`${e.appBorderColor} 0 0 0 1px inset`})),Ie=(e,o=[],a)=>{if(e==="transparent")return"transparent";if(o.find(c=>c.value===e))return e;let r=o.find(c=>c.name===a);if(r)return r.value;if(a){let c=o.map(h=>h.name).join(", ");H.warn(X` - Backgrounds Addon: could not find the default color "${a}". - These are the available colors for your story based on your configuration: - ${c}. - `)}return"transparent"},oe=(0,U.default)(1e3)((e,o,a,r,c,h)=>({id:e||o,title:o,onClick:()=>{c({selected:a,name:o})},value:a,right:r?C.createElement(ue,{background:a}):void 0,active:h})),de=(0,U.default)(10)((e,o,a)=>{let r=e.map(({name:c,value:h})=>oe(null,c,h,!0,a,h===o));return o!=="transparent"?[oe("reset","Clear background","transparent",null,a,!1),...r]:r}),me={default:null,disable:!0,values:[]},pe=L(function(){let e=D(v,me),[o,a]=K(!1),[r,c]=M(),h=r[v]?.value,s=z(()=>Ie(h,e.values,e.default),[e,h]);Array.isArray(e)&&H.warn("Addon Backgrounds api has changed in Storybook 6.0. Please refer to the migration guide: https://github.com/storybookjs/storybook/blob/next/MIGRATION.md");let t=q(n=>{c({[v]:{...r[v],value:n}})},[e,r,c]);return e.disable?null:C.createElement(R,null,C.createElement(j,{placement:"top",closeOnOutsideClick:!0,tooltip:({onHide:n})=>C.createElement($,{links:de(e.values,s,({selected:l})=>{s!==l&&t(l),n()})}),onVisibleChange:a},C.createElement(N,{key:"background",title:"Change the background of the preview",active:s!=="transparent"||o},C.createElement(J,null))))}),fe=L(function(){let[e,o]=M(),{grid:a}=D(v,{grid:{disable:!1}});if(a?.disable)return null;let r=e[v]?.grid||!1;return C.createElement(N,{key:"background",active:r,title:"Apply a grid to the preview",onClick:()=>o({[v]:{...e[v],grid:!r}})},C.createElement(Z,null))});P.register(ee,()=>{P.add(ee,{title:"Backgrounds",type:Y.TOOL,match:({viewMode:e,tabId:o})=>!!(e&&e.match(/^(story|docs)$/))&&!o,render:()=>C.createElement(R,null,C.createElement(pe,null),C.createElement(fe,null))})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/essentials-backgrounds-4/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/essentials-backgrounds-4/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js b/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js deleted file mode 100644 index 67e3b4c..0000000 --- a/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +++ /dev/null @@ -1,412 +0,0 @@ -try{ -(()=>{var B2=Object.create;var Ra=Object.defineProperty;var L2=Object.getOwnPropertyDescriptor;var q2=Object.getOwnPropertyNames;var M2=Object.getPrototypeOf,U2=Object.prototype.hasOwnProperty;var et=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,r)=>(typeof require<"u"?require:t)[r]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')});var Tt=(e,t)=>()=>(e&&(t=e(e=0)),t);var J=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),Hl=(e,t)=>{for(var r in t)Ra(e,r,{get:t[r],enumerable:!0})},J2=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of q2(t))!U2.call(e,o)&&o!==r&&Ra(e,o,{get:()=>t[o],enumerable:!(n=L2(t,o))||n.enumerable});return e};var ao=(e,t,r)=>(r=e!=null?B2(M2(e)):{},J2(t||!e||!e.__esModule?Ra(r,"default",{value:e,enumerable:!0}):r,e));var S=Tt(()=>{});var A=Tt(()=>{});var T=Tt(()=>{});var $2,Gl,z2,Wl,V2,H2,mn,nr,G2,gn,W2,Kl,K2,Yl,Y2,X2,or,Q2,Xl,tt,bn,Da=Tt(()=>{S();A();T();$2=Object.create,Gl=Object.defineProperty,z2=Object.getOwnPropertyDescriptor,Wl=Object.getOwnPropertyNames,V2=Object.getPrototypeOf,H2=Object.prototype.hasOwnProperty,mn=(e=>typeof et<"u"?et:typeof Proxy<"u"?new Proxy(e,{get:(t,r)=>(typeof et<"u"?et:t)[r]}):e)(function(e){if(typeof et<"u")return et.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')}),nr=(e,t)=>function(){return t||(0,e[Wl(e)[0]])((t={exports:{}}).exports,t),t.exports},G2=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of Wl(t))!H2.call(e,o)&&o!==r&&Gl(e,o,{get:()=>t[o],enumerable:!(n=z2(t,o))||n.enumerable});return e},gn=(e,t,r)=>(r=e!=null?$2(V2(e)):{},G2(t||!e||!e.__esModule?Gl(r,"default",{value:e,enumerable:!0}):r,e)),W2=Object.create,Kl=Object.defineProperty,K2=Object.getOwnPropertyDescriptor,Yl=Object.getOwnPropertyNames,Y2=Object.getPrototypeOf,X2=Object.prototype.hasOwnProperty,or=(e,t)=>function(){return t||(0,e[Yl(e)[0]])((t={exports:{}}).exports,t),t.exports},Q2=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of Yl(t))!X2.call(e,o)&&o!==r&&Kl(e,o,{get:()=>t[o],enumerable:!(n=K2(t,o))||n.enumerable});return e},Xl=(e,t,r)=>(r=e!=null?W2(Y2(e)):{},Q2(t||!e||!e.__esModule?Kl(r,"default",{value:e,enumerable:!0}):r,e)),tt=e=>`control-${e.replace(/\s+/g,"-")}`,bn=e=>`set-${e.replace(/\s+/g,"-")}`});var E,Ql,jt,F6,j6,N6,B6,Zl,L6,Oe,vn,Fa,q6,M6,U6,J6,eu,$6,z6,V6,$e,tu,H6,G6,ze,W6,K6,Y6,ru,Nt,X6,Xe,he,Q6,Z6,e8,io=Tt(()=>{S();A();T();E=__REACT__,{Children:Ql,Component:jt,Fragment:F6,Profiler:j6,PureComponent:N6,StrictMode:B6,Suspense:Zl,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:L6,cloneElement:Oe,createContext:vn,createElement:Fa,createFactory:q6,createRef:M6,forwardRef:U6,isValidElement:J6,lazy:eu,memo:$6,startTransition:z6,unstable_act:V6,useCallback:$e,useContext:tu,useDebugValue:H6,useDeferredValue:G6,useEffect:ze,useId:W6,useImperativeHandle:K6,useInsertionEffect:Y6,useLayoutEffect:ru,useMemo:Nt,useReducer:X6,useRef:Xe,useState:he,useSyncExternalStore:Q6,useTransition:Z6,version:e8}=__REACT__});var au={};Hl(au,{A:()=>t1,ActionBar:()=>ja,AddonPanel:()=>Na,Badge:()=>Ba,Bar:()=>La,Blockquote:()=>r1,Button:()=>Bt,ClipboardCode:()=>n1,Code:()=>o1,DL:()=>a1,Div:()=>i1,DocumentWrapper:()=>s1,EmptyTabContent:()=>qa,ErrorFormatter:()=>l1,FlexBar:()=>Ma,Form:()=>dt,H1:()=>u1,H2:()=>Ua,H3:()=>c1,H4:()=>p1,H5:()=>d1,H6:()=>f1,HR:()=>y1,IconButton:()=>ht,IconButtonSkeleton:()=>h1,Icons:()=>m1,Img:()=>g1,LI:()=>b1,Link:()=>ir,ListItem:()=>v1,Loader:()=>x1,Modal:()=>mt,OL:()=>E1,P:()=>w1,Placeholder:()=>S1,Pre:()=>A1,ResetWrapper:()=>Ja,ScrollArea:()=>T1,Separator:()=>C1,Spaced:()=>$a,Span:()=>_1,StorybookIcon:()=>O1,StorybookLogo:()=>I1,Symbols:()=>P1,SyntaxHighlighter:()=>so,TT:()=>k1,TabBar:()=>R1,TabButton:()=>D1,TabWrapper:()=>F1,Table:()=>j1,Tabs:()=>N1,TabsState:()=>B1,TooltipLinkList:()=>L1,TooltipMessage:()=>q1,TooltipNote:()=>sr,UL:()=>M1,WithTooltip:()=>Lt,WithTooltipPure:()=>za,Zoom:()=>Va,codeCommon:()=>Ir,components:()=>Ha,createCopyToClipboardFunction:()=>U1,default:()=>e1,getStoryHref:()=>J1,icons:()=>$1,interleaveSeparators:()=>z1,nameSpaceClassNames:()=>Ga,resetComponents:()=>V1,withReset:()=>Pr});var e1,t1,ja,Na,Ba,La,r1,Bt,n1,o1,a1,i1,s1,qa,l1,Ma,dt,u1,Ua,c1,p1,d1,f1,y1,ht,h1,m1,g1,b1,ir,v1,x1,mt,E1,w1,S1,A1,Ja,T1,C1,$a,_1,O1,I1,P1,so,k1,R1,D1,F1,j1,N1,B1,L1,q1,sr,M1,Lt,za,Va,Ir,Ha,U1,J1,$1,z1,Ga,V1,Pr,lo=Tt(()=>{S();A();T();e1=__STORYBOOK_COMPONENTS__,{A:t1,ActionBar:ja,AddonPanel:Na,Badge:Ba,Bar:La,Blockquote:r1,Button:Bt,ClipboardCode:n1,Code:o1,DL:a1,Div:i1,DocumentWrapper:s1,EmptyTabContent:qa,ErrorFormatter:l1,FlexBar:Ma,Form:dt,H1:u1,H2:Ua,H3:c1,H4:p1,H5:d1,H6:f1,HR:y1,IconButton:ht,IconButtonSkeleton:h1,Icons:m1,Img:g1,LI:b1,Link:ir,ListItem:v1,Loader:x1,Modal:mt,OL:E1,P:w1,Placeholder:S1,Pre:A1,ResetWrapper:Ja,ScrollArea:T1,Separator:C1,Spaced:$a,Span:_1,StorybookIcon:O1,StorybookLogo:I1,Symbols:P1,SyntaxHighlighter:so,TT:k1,TabBar:R1,TabButton:D1,TabWrapper:F1,Table:j1,Tabs:N1,TabsState:B1,TooltipLinkList:L1,TooltipMessage:q1,TooltipNote:sr,UL:M1,WithTooltip:Lt,WithTooltipPure:za,Zoom:Va,codeCommon:Ir,components:Ha,createCopyToClipboardFunction:U1,getStoryHref:J1,icons:$1,interleaveSeparators:z1,nameSpaceClassNames:Ga,resetComponents:V1,withReset:Pr}=__STORYBOOK_COMPONENTS__});var g9,b9,v9,x9,Ru,E9,go,Du,w9,S9,A9,T9,C9,_9,O9,Fu,I9,P9,ei,k9,W,ti,R9,ri,D9,ni=Tt(()=>{S();A();T();g9=__STORYBOOK_THEMING__,{CacheProvider:b9,ClassNames:v9,Global:x9,ThemeProvider:Ru,background:E9,color:go,convert:Du,create:w9,createCache:S9,createGlobal:A9,createReset:T9,css:C9,darken:_9,ensure:O9,ignoreSsrWarning:Fu,isPropValid:I9,jsx:P9,keyframes:ei,lighten:k9,styled:W,themes:ti,typography:R9,useTheme:ri,withTheme:D9}=__STORYBOOK_THEMING__});var L9,q9,M9,oi,U9,J9,$9,z9,V9,H9,G9,W9,K9,Y9,X9,Q9,Z9,eU,tU,rU,nU,oU,aU,iU,sU,lU,uU,cU,pU,dU,fU,yU,hU,mU,gU,bU,vU,xU,EU,wU,SU,AU,TU,ju,Nu,CU,Bu,ai,_U,OU,Lu,IU,PU,kU,RU,DU,FU,jU,NU,BU,LU,qU,MU,UU,JU,$U,zU,VU,HU,GU,WU,KU,YU,XU,QU,ZU,eJ,tJ,rJ,nJ,oJ,aJ,iJ,sJ,bo,lJ,uJ,cJ,pJ,dJ,fJ,yJ,qu,Mu,hJ,mJ,gJ,bJ,vJ,xJ,EJ,wJ,SJ,AJ,TJ,CJ,_J,OJ,IJ,PJ,kJ,RJ,DJ,FJ,jJ,NJ,BJ,LJ,qJ,MJ,UJ,JJ,$J,zJ,VJ,HJ,GJ,Uu,WJ,KJ,YJ,XJ,QJ,ZJ,e$,Ju,t$,r$,n$,o$,a$,i$,s$,l$,u$,c$,p$,d$,f$,y$,h$,m$,g$,b$,v$,x$,E$,w$,S$,A$,T$,C$,_$,O$,I$,P$,k$,R$,D$,F$,j$,N$,B$,L$,q$,M$,U$,J$,$$,z$,V$,H$,G$,W$,K$,Y$,X$,Q$,Z$,ez,tz,rz,nz,oz,$u,az,iz,sz,lz,uz,cz,pz,dz,fz,yz,hz,mz,gz,ii,bz,vz,xz,Ez,wz,Sz,Az,Tz,Cz,_z,zu,Oz,Iz,Pz,kz,Rz,Vu,Hu,Gu,Dz,si=Tt(()=>{S();A();T();L9=__STORYBOOK_ICONS__,{AccessibilityAltIcon:q9,AccessibilityIcon:M9,AddIcon:oi,AdminIcon:U9,AlertAltIcon:J9,AlertIcon:$9,AlignLeftIcon:z9,AlignRightIcon:V9,AppleIcon:H9,ArrowDownIcon:G9,ArrowLeftIcon:W9,ArrowRightIcon:K9,ArrowSolidDownIcon:Y9,ArrowSolidLeftIcon:X9,ArrowSolidRightIcon:Q9,ArrowSolidUpIcon:Z9,ArrowUpIcon:eU,AzureDevOpsIcon:tU,BackIcon:rU,BasketIcon:nU,BatchAcceptIcon:oU,BatchDenyIcon:aU,BeakerIcon:iU,BellIcon:sU,BitbucketIcon:lU,BoldIcon:uU,BookIcon:cU,BookmarkHollowIcon:pU,BookmarkIcon:dU,BottomBarIcon:fU,BottomBarToggleIcon:yU,BoxIcon:hU,BranchIcon:mU,BrowserIcon:gU,ButtonIcon:bU,CPUIcon:vU,CalendarIcon:xU,CameraIcon:EU,CategoryIcon:wU,CertificateIcon:SU,ChangedIcon:AU,ChatIcon:TU,CheckIcon:ju,ChevronDownIcon:Nu,ChevronLeftIcon:CU,ChevronRightIcon:Bu,ChevronSmallDownIcon:ai,ChevronSmallLeftIcon:_U,ChevronSmallRightIcon:OU,ChevronSmallUpIcon:Lu,ChevronUpIcon:IU,ChromaticIcon:PU,ChromeIcon:kU,CircleHollowIcon:RU,CircleIcon:DU,ClearIcon:FU,CloseAltIcon:jU,CloseIcon:NU,CloudHollowIcon:BU,CloudIcon:LU,CogIcon:qU,CollapseIcon:MU,CommandIcon:UU,CommentAddIcon:JU,CommentIcon:$U,CommentsIcon:zU,CommitIcon:VU,CompassIcon:HU,ComponentDrivenIcon:GU,ComponentIcon:WU,ContrastIcon:KU,ControlsIcon:YU,CopyIcon:XU,CreditIcon:QU,CrossIcon:ZU,DashboardIcon:eJ,DatabaseIcon:tJ,DeleteIcon:rJ,DiamondIcon:nJ,DirectionIcon:oJ,DiscordIcon:aJ,DocChartIcon:iJ,DocListIcon:sJ,DocumentIcon:bo,DownloadIcon:lJ,DragIcon:uJ,EditIcon:cJ,EllipsisIcon:pJ,EmailIcon:dJ,ExpandAltIcon:fJ,ExpandIcon:yJ,EyeCloseIcon:qu,EyeIcon:Mu,FaceHappyIcon:hJ,FaceNeutralIcon:mJ,FaceSadIcon:gJ,FacebookIcon:bJ,FailedIcon:vJ,FastForwardIcon:xJ,FigmaIcon:EJ,FilterIcon:wJ,FlagIcon:SJ,FolderIcon:AJ,FormIcon:TJ,GDriveIcon:CJ,GithubIcon:_J,GitlabIcon:OJ,GlobeIcon:IJ,GoogleIcon:PJ,GraphBarIcon:kJ,GraphLineIcon:RJ,GraphqlIcon:DJ,GridAltIcon:FJ,GridIcon:jJ,GrowIcon:NJ,HeartHollowIcon:BJ,HeartIcon:LJ,HomeIcon:qJ,HourglassIcon:MJ,InfoIcon:UJ,ItalicIcon:JJ,JumpToIcon:$J,KeyIcon:zJ,LightningIcon:VJ,LightningOffIcon:HJ,LinkBrokenIcon:GJ,LinkIcon:Uu,LinkedinIcon:WJ,LinuxIcon:KJ,ListOrderedIcon:YJ,ListUnorderedIcon:XJ,LocationIcon:QJ,LockIcon:ZJ,MarkdownIcon:e$,MarkupIcon:Ju,MediumIcon:t$,MemoryIcon:r$,MenuIcon:n$,MergeIcon:o$,MirrorIcon:a$,MobileIcon:i$,MoonIcon:s$,NutIcon:l$,OutboxIcon:u$,OutlineIcon:c$,PaintBrushIcon:p$,PaperClipIcon:d$,ParagraphIcon:f$,PassedIcon:y$,PhoneIcon:h$,PhotoDragIcon:m$,PhotoIcon:g$,PinAltIcon:b$,PinIcon:v$,PlayBackIcon:x$,PlayIcon:E$,PlayNextIcon:w$,PlusIcon:S$,PointerDefaultIcon:A$,PointerHandIcon:T$,PowerIcon:C$,PrintIcon:_$,ProceedIcon:O$,ProfileIcon:I$,PullRequestIcon:P$,QuestionIcon:k$,RSSIcon:R$,RedirectIcon:D$,ReduxIcon:F$,RefreshIcon:j$,ReplyIcon:N$,RepoIcon:B$,RequestChangeIcon:L$,RewindIcon:q$,RulerIcon:M$,SearchIcon:U$,ShareAltIcon:J$,ShareIcon:$$,ShieldIcon:z$,SideBySideIcon:V$,SidebarAltIcon:H$,SidebarAltToggleIcon:G$,SidebarIcon:W$,SidebarToggleIcon:K$,SpeakerIcon:Y$,StackedIcon:X$,StarHollowIcon:Q$,StarIcon:Z$,StickerIcon:ez,StopAltIcon:tz,StopIcon:rz,StorybookIcon:nz,StructureIcon:oz,SubtractIcon:$u,SunIcon:az,SupportIcon:iz,SwitchAltIcon:sz,SyncIcon:lz,TabletIcon:uz,ThumbsUpIcon:cz,TimeIcon:pz,TimerIcon:dz,TransferIcon:fz,TrashIcon:yz,TwitterIcon:hz,TypeIcon:mz,UbuntuIcon:gz,UndoIcon:ii,UnfoldIcon:bz,UnlockIcon:vz,UnpinIcon:xz,UploadIcon:Ez,UserAddIcon:wz,UserAltIcon:Sz,UserIcon:Az,UsersIcon:Tz,VSCodeIcon:Cz,VerifiedIcon:_z,VideoIcon:zu,WandIcon:Oz,WatchIcon:Iz,WindowsIcon:Pz,WrenchIcon:kz,YoutubeIcon:Rz,ZoomIcon:Vu,ZoomOutIcon:Hu,ZoomResetIcon:Gu,iconList:Dz}=__STORYBOOK_ICONS__});var li=J((Lz,Wu)=>{S();A();T();function H1(e,t){for(var r=-1,n=e==null?0:e.length,o=Array(n);++r{S();A();T();function G1(){this.__data__=[],this.size=0}Ku.exports=G1});var vo=J((Hz,Xu)=>{S();A();T();function W1(e,t){return e===t||e!==e&&t!==t}Xu.exports=W1});var En=J((Yz,Qu)=>{S();A();T();var K1=vo();function Y1(e,t){for(var r=e.length;r--;)if(K1(e[r][0],t))return r;return-1}Qu.exports=Y1});var ec=J((e7,Zu)=>{S();A();T();var X1=En(),Q1=Array.prototype,Z1=Q1.splice;function ex(e){var t=this.__data__,r=X1(t,e);if(r<0)return!1;var n=t.length-1;return r==n?t.pop():Z1.call(t,r,1),--this.size,!0}Zu.exports=ex});var rc=J((o7,tc)=>{S();A();T();var tx=En();function rx(e){var t=this.__data__,r=tx(t,e);return r<0?void 0:t[r][1]}tc.exports=rx});var oc=J((l7,nc)=>{S();A();T();var nx=En();function ox(e){return nx(this.__data__,e)>-1}nc.exports=ox});var ic=J((d7,ac)=>{S();A();T();var ax=En();function ix(e,t){var r=this.__data__,n=ax(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this}ac.exports=ix});var wn=J((m7,sc)=>{S();A();T();var sx=Yu(),lx=ec(),ux=rc(),cx=oc(),px=ic();function Rr(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t{S();A();T();var dx=wn();function fx(){this.__data__=new dx,this.size=0}lc.exports=fx});var pc=J((A7,cc)=>{S();A();T();function yx(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r}cc.exports=yx});var fc=J((O7,dc)=>{S();A();T();function hx(e){return this.__data__.get(e)}dc.exports=hx});var hc=J((R7,yc)=>{S();A();T();function mx(e){return this.__data__.has(e)}yc.exports=mx});var ui=J((N7,mc)=>{S();A();T();var gx=typeof window=="object"&&window&&window.Object===Object&&window;mc.exports=gx});var st=J((M7,gc)=>{S();A();T();var bx=ui(),vx=typeof self=="object"&&self&&self.Object===Object&&self,xx=bx||vx||Function("return this")();gc.exports=xx});var Dr=J((z7,bc)=>{S();A();T();var Ex=st(),wx=Ex.Symbol;bc.exports=wx});var wc=J((W7,Ec)=>{S();A();T();var vc=Dr(),xc=Object.prototype,Sx=xc.hasOwnProperty,Ax=xc.toString,Sn=vc?vc.toStringTag:void 0;function Tx(e){var t=Sx.call(e,Sn),r=e[Sn];try{e[Sn]=void 0;var n=!0}catch{}var o=Ax.call(e);return n&&(t?e[Sn]=r:delete e[Sn]),o}Ec.exports=Tx});var Ac=J((Q7,Sc)=>{S();A();T();var Cx=Object.prototype,_x=Cx.toString;function Ox(e){return _x.call(e)}Sc.exports=Ox});var Fr=J((rV,_c)=>{S();A();T();var Tc=Dr(),Ix=wc(),Px=Ac(),kx="[object Null]",Rx="[object Undefined]",Cc=Tc?Tc.toStringTag:void 0;function Dx(e){return e==null?e===void 0?Rx:kx:Cc&&Cc in Object(e)?Ix(e):Px(e)}_c.exports=Dx});var gt=J((iV,Oc)=>{S();A();T();function Fx(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}Oc.exports=Fx});var ci=J((cV,Ic)=>{S();A();T();var jx=Fr(),Nx=gt(),Bx="[object AsyncFunction]",Lx="[object Function]",qx="[object GeneratorFunction]",Mx="[object Proxy]";function Ux(e){if(!Nx(e))return!1;var t=jx(e);return t==Lx||t==qx||t==Bx||t==Mx}Ic.exports=Ux});var kc=J((yV,Pc)=>{S();A();T();var Jx=st(),$x=Jx["__core-js_shared__"];Pc.exports=$x});var Fc=J((bV,Dc)=>{S();A();T();var pi=kc(),Rc=function(){var e=/[^.]+$/.exec(pi&&pi.keys&&pi.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();function zx(e){return!!Rc&&Rc in e}Dc.exports=zx});var di=J((wV,jc)=>{S();A();T();var Vx=Function.prototype,Hx=Vx.toString;function Gx(e){if(e!=null){try{return Hx.call(e)}catch{}try{return e+""}catch{}}return""}jc.exports=Gx});var Bc=J((CV,Nc)=>{S();A();T();var Wx=ci(),Kx=Fc(),Yx=gt(),Xx=di(),Qx=/[\\^$.*+?()[\]{}|]/g,Zx=/^\[object .+?Constructor\]$/,eE=Function.prototype,tE=Object.prototype,rE=eE.toString,nE=tE.hasOwnProperty,oE=RegExp("^"+rE.call(nE).replace(Qx,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function aE(e){if(!Yx(e)||Kx(e))return!1;var t=Wx(e)?oE:Zx;return t.test(Xx(e))}Nc.exports=aE});var qc=J((PV,Lc)=>{S();A();T();function iE(e,t){return e?.[t]}Lc.exports=iE});var qt=J((FV,Mc)=>{S();A();T();var sE=Bc(),lE=qc();function uE(e,t){var r=lE(e,t);return sE(r)?r:void 0}Mc.exports=uE});var xo=J((LV,Uc)=>{S();A();T();var cE=qt(),pE=st(),dE=cE(pE,"Map");Uc.exports=dE});var An=J((JV,Jc)=>{S();A();T();var fE=qt(),yE=fE(Object,"create");Jc.exports=yE});var Vc=J((HV,zc)=>{S();A();T();var $c=An();function hE(){this.__data__=$c?$c(null):{},this.size=0}zc.exports=hE});var Gc=J((YV,Hc)=>{S();A();T();function mE(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}Hc.exports=mE});var Kc=J((eH,Wc)=>{S();A();T();var gE=An(),bE="__lodash_hash_undefined__",vE=Object.prototype,xE=vE.hasOwnProperty;function EE(e){var t=this.__data__;if(gE){var r=t[e];return r===bE?void 0:r}return xE.call(t,e)?t[e]:void 0}Wc.exports=EE});var Xc=J((oH,Yc)=>{S();A();T();var wE=An(),SE=Object.prototype,AE=SE.hasOwnProperty;function TE(e){var t=this.__data__;return wE?t[e]!==void 0:AE.call(t,e)}Yc.exports=TE});var Zc=J((lH,Qc)=>{S();A();T();var CE=An(),_E="__lodash_hash_undefined__";function OE(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=CE&&t===void 0?_E:t,this}Qc.exports=OE});var tp=J((dH,ep)=>{S();A();T();var IE=Vc(),PE=Gc(),kE=Kc(),RE=Xc(),DE=Zc();function jr(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t{S();A();T();var rp=tp(),FE=wn(),jE=xo();function NE(){this.size=0,this.__data__={hash:new rp,map:new(jE||FE),string:new rp}}np.exports=NE});var ip=J((xH,ap)=>{S();A();T();function BE(e){var t=typeof e;return t=="string"||t=="number"||t=="symbol"||t=="boolean"?e!=="__proto__":e===null}ap.exports=BE});var Tn=J((AH,sp)=>{S();A();T();var LE=ip();function qE(e,t){var r=e.__data__;return LE(t)?r[typeof t=="string"?"string":"hash"]:r.map}sp.exports=qE});var up=J((OH,lp)=>{S();A();T();var ME=Tn();function UE(e){var t=ME(this,e).delete(e);return this.size-=t?1:0,t}lp.exports=UE});var pp=J((RH,cp)=>{S();A();T();var JE=Tn();function $E(e){return JE(this,e).get(e)}cp.exports=$E});var fp=J((NH,dp)=>{S();A();T();var zE=Tn();function VE(e){return zE(this,e).has(e)}dp.exports=VE});var hp=J((MH,yp)=>{S();A();T();var HE=Tn();function GE(e,t){var r=HE(this,e),n=r.size;return r.set(e,t),this.size+=r.size==n?0:1,this}yp.exports=GE});var Eo=J((zH,mp)=>{S();A();T();var WE=op(),KE=up(),YE=pp(),XE=fp(),QE=hp();function Nr(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t{S();A();T();var ZE=wn(),ew=xo(),tw=Eo(),rw=200;function nw(e,t){var r=this.__data__;if(r instanceof ZE){var n=r.__data__;if(!ew||n.length{S();A();T();var ow=wn(),aw=uc(),iw=pc(),sw=fc(),lw=hc(),uw=bp();function Br(e){var t=this.__data__=new ow(e);this.size=t.size}Br.prototype.clear=aw;Br.prototype.delete=iw;Br.prototype.get=sw;Br.prototype.has=lw;Br.prototype.set=uw;vp.exports=Br});var Ep=J((rG,xp)=>{S();A();T();var cw="__lodash_hash_undefined__";function pw(e){return this.__data__.set(e,cw),this}xp.exports=pw});var Sp=J((iG,wp)=>{S();A();T();function dw(e){return this.__data__.has(e)}wp.exports=dw});var fi=J((cG,Ap)=>{S();A();T();var fw=Eo(),yw=Ep(),hw=Sp();function So(e){var t=-1,r=e==null?0:e.length;for(this.__data__=new fw;++t{S();A();T();function mw(e,t){for(var r=-1,n=e==null?0:e.length;++r{S();A();T();function gw(e,t){return e.has(t)}_p.exports=gw});var hi=J((wG,Op)=>{S();A();T();var bw=fi(),vw=Cp(),xw=yi(),Ew=1,ww=2;function Sw(e,t,r,n,o,a){var i=r&Ew,s=e.length,l=t.length;if(s!=l&&!(i&&l>s))return!1;var u=a.get(e),c=a.get(t);if(u&&c)return u==t&&c==e;var d=-1,y=!0,f=r&ww?new bw:void 0;for(a.set(e,t),a.set(t,e);++d{S();A();T();var Aw=st(),Tw=Aw.Uint8Array;Ip.exports=Tw});var kp=J((PG,Pp)=>{S();A();T();function Cw(e){var t=-1,r=Array(e.size);return e.forEach(function(n,o){r[++t]=[o,n]}),r}Pp.exports=Cw});var Ao=J((FG,Rp)=>{S();A();T();function _w(e){var t=-1,r=Array(e.size);return e.forEach(function(n){r[++t]=n}),r}Rp.exports=_w});var Bp=J((LG,Np)=>{S();A();T();var Dp=Dr(),Fp=mi(),Ow=vo(),Iw=hi(),Pw=kp(),kw=Ao(),Rw=1,Dw=2,Fw="[object Boolean]",jw="[object Date]",Nw="[object Error]",Bw="[object Map]",Lw="[object Number]",qw="[object RegExp]",Mw="[object Set]",Uw="[object String]",Jw="[object Symbol]",$w="[object ArrayBuffer]",zw="[object DataView]",jp=Dp?Dp.prototype:void 0,gi=jp?jp.valueOf:void 0;function Vw(e,t,r,n,o,a,i){switch(r){case zw:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case $w:return!(e.byteLength!=t.byteLength||!a(new Fp(e),new Fp(t)));case Fw:case jw:case Lw:return Ow(+e,+t);case Nw:return e.name==t.name&&e.message==t.message;case qw:case Uw:return e==t+"";case Bw:var s=Pw;case Mw:var l=n&Rw;if(s||(s=kw),e.size!=t.size&&!l)return!1;var u=i.get(e);if(u)return u==t;n|=Dw,i.set(e,t);var c=Iw(s(e),s(t),n,o,a,i);return i.delete(e),c;case Jw:if(gi)return gi.call(e)==gi.call(t)}return!1}Np.exports=Vw});var bi=J((JG,Lp)=>{S();A();T();function Hw(e,t){for(var r=-1,n=t.length,o=e.length;++r{S();A();T();var Gw=Array.isArray;qp.exports=Gw});var vi=J((YG,Mp)=>{S();A();T();var Ww=bi(),Kw=bt();function Yw(e,t,r){var n=t(e);return Kw(e)?n:Ww(n,r(e))}Mp.exports=Yw});var Jp=J((eW,Up)=>{S();A();T();function Xw(e,t){for(var r=-1,n=e==null?0:e.length,o=0,a=[];++r{S();A();T();function Qw(){return[]}$p.exports=Qw});var To=J((lW,Vp)=>{S();A();T();var Zw=Jp(),eS=xi(),tS=Object.prototype,rS=tS.propertyIsEnumerable,zp=Object.getOwnPropertySymbols,nS=zp?function(e){return e==null?[]:(e=Object(e),Zw(zp(e),function(t){return rS.call(e,t)}))}:eS;Vp.exports=nS});var Gp=J((dW,Hp)=>{S();A();T();function oS(e,t){for(var r=-1,n=Array(e);++r{S();A();T();function aS(e){return e!=null&&typeof e=="object"}Wp.exports=aS});var Yp=J((xW,Kp)=>{S();A();T();var iS=Fr(),sS=Mt(),lS="[object Arguments]";function uS(e){return sS(e)&&iS(e)==lS}Kp.exports=uS});var Ei=J((AW,Zp)=>{S();A();T();var Xp=Yp(),cS=Mt(),Qp=Object.prototype,pS=Qp.hasOwnProperty,dS=Qp.propertyIsEnumerable,fS=Xp(function(){return arguments}())?Xp:function(e){return cS(e)&&pS.call(e,"callee")&&!dS.call(e,"callee")};Zp.exports=fS});var td=J((OW,ed)=>{S();A();T();function yS(){return!1}ed.exports=yS});var Co=J((Cn,Lr)=>{S();A();T();var hS=st(),mS=td(),od=typeof Cn=="object"&&Cn&&!Cn.nodeType&&Cn,rd=od&&typeof Lr=="object"&&Lr&&!Lr.nodeType&&Lr,gS=rd&&rd.exports===od,nd=gS?hS.Buffer:void 0,bS=nd?nd.isBuffer:void 0,vS=bS||mS;Lr.exports=vS});var _o=J((jW,ad)=>{S();A();T();var xS=9007199254740991,ES=/^(?:0|[1-9]\d*)$/;function wS(e,t){var r=typeof e;return t=t??xS,!!t&&(r=="number"||r!="symbol"&&ES.test(e))&&e>-1&&e%1==0&&e{S();A();T();var SS=9007199254740991;function AS(e){return typeof e=="number"&&e>-1&&e%1==0&&e<=SS}id.exports=AS});var ld=J(($W,sd)=>{S();A();T();var TS=Fr(),CS=Oo(),_S=Mt(),OS="[object Arguments]",IS="[object Array]",PS="[object Boolean]",kS="[object Date]",RS="[object Error]",DS="[object Function]",FS="[object Map]",jS="[object Number]",NS="[object Object]",BS="[object RegExp]",LS="[object Set]",qS="[object String]",MS="[object WeakMap]",US="[object ArrayBuffer]",JS="[object DataView]",$S="[object Float32Array]",zS="[object Float64Array]",VS="[object Int8Array]",HS="[object Int16Array]",GS="[object Int32Array]",WS="[object Uint8Array]",KS="[object Uint8ClampedArray]",YS="[object Uint16Array]",XS="[object Uint32Array]",be={};be[$S]=be[zS]=be[VS]=be[HS]=be[GS]=be[WS]=be[KS]=be[YS]=be[XS]=!0;be[OS]=be[IS]=be[US]=be[PS]=be[JS]=be[kS]=be[RS]=be[DS]=be[FS]=be[jS]=be[NS]=be[BS]=be[LS]=be[qS]=be[MS]=!1;function QS(e){return _S(e)&&CS(e.length)&&!!be[TS(e)]}sd.exports=QS});var Io=J((GW,ud)=>{S();A();T();function ZS(e){return function(t){return e(t)}}ud.exports=ZS});var Po=J((_n,qr)=>{S();A();T();var eA=ui(),cd=typeof _n=="object"&&_n&&!_n.nodeType&&_n,On=cd&&typeof qr=="object"&&qr&&!qr.nodeType&&qr,tA=On&&On.exports===cd,wi=tA&&eA.process,rA=function(){try{var e=On&&On.require&&On.require("util").types;return e||wi&&wi.binding&&wi.binding("util")}catch{}}();qr.exports=rA});var Si=J((eK,fd)=>{S();A();T();var nA=ld(),oA=Io(),pd=Po(),dd=pd&&pd.isTypedArray,aA=dd?oA(dd):nA;fd.exports=aA});var Ai=J((oK,yd)=>{S();A();T();var iA=Gp(),sA=Ei(),lA=bt(),uA=Co(),cA=_o(),pA=Si(),dA=Object.prototype,fA=dA.hasOwnProperty;function yA(e,t){var r=lA(e),n=!r&&sA(e),o=!r&&!n&&uA(e),a=!r&&!n&&!o&&pA(e),i=r||n||o||a,s=i?iA(e.length,String):[],l=s.length;for(var u in e)(t||fA.call(e,u))&&!(i&&(u=="length"||o&&(u=="offset"||u=="parent")||a&&(u=="buffer"||u=="byteLength"||u=="byteOffset")||cA(u,l)))&&s.push(u);return s}yd.exports=yA});var ko=J((lK,hd)=>{S();A();T();var hA=Object.prototype;function mA(e){var t=e&&e.constructor,r=typeof t=="function"&&t.prototype||hA;return e===r}hd.exports=mA});var Ti=J((dK,md)=>{S();A();T();function gA(e,t){return function(r){return e(t(r))}}md.exports=gA});var bd=J((mK,gd)=>{S();A();T();var bA=Ti(),vA=bA(Object.keys,Object);gd.exports=vA});var xd=J((xK,vd)=>{S();A();T();var xA=ko(),EA=bd(),wA=Object.prototype,SA=wA.hasOwnProperty;function AA(e){if(!xA(e))return EA(e);var t=[];for(var r in Object(e))SA.call(e,r)&&r!="constructor"&&t.push(r);return t}vd.exports=AA});var Ci=J((AK,Ed)=>{S();A();T();var TA=ci(),CA=Oo();function _A(e){return e!=null&&CA(e.length)&&!TA(e)}Ed.exports=_A});var In=J((OK,wd)=>{S();A();T();var OA=Ai(),IA=xd(),PA=Ci();function kA(e){return PA(e)?OA(e):IA(e)}wd.exports=kA});var _i=J((RK,Sd)=>{S();A();T();var RA=vi(),DA=To(),FA=In();function jA(e){return RA(e,FA,DA)}Sd.exports=jA});var Cd=J((NK,Td)=>{S();A();T();var Ad=_i(),NA=1,BA=Object.prototype,LA=BA.hasOwnProperty;function qA(e,t,r,n,o,a){var i=r&NA,s=Ad(e),l=s.length,u=Ad(t),c=u.length;if(l!=c&&!i)return!1;for(var d=l;d--;){var y=s[d];if(!(i?y in t:LA.call(t,y)))return!1}var f=a.get(e),h=a.get(t);if(f&&h)return f==t&&h==e;var g=!0;a.set(e,t),a.set(t,e);for(var _=i;++d{S();A();T();var MA=qt(),UA=st(),JA=MA(UA,"DataView");_d.exports=JA});var Pd=J((zK,Id)=>{S();A();T();var $A=qt(),zA=st(),VA=$A(zA,"Promise");Id.exports=VA});var Oi=J((WK,kd)=>{S();A();T();var HA=qt(),GA=st(),WA=HA(GA,"Set");kd.exports=WA});var Dd=J((QK,Rd)=>{S();A();T();var KA=qt(),YA=st(),XA=KA(YA,"WeakMap");Rd.exports=XA});var Pn=J((rY,Md)=>{S();A();T();var Ii=Od(),Pi=xo(),ki=Pd(),Ri=Oi(),Di=Dd(),qd=Fr(),Mr=di(),Fd="[object Map]",QA="[object Object]",jd="[object Promise]",Nd="[object Set]",Bd="[object WeakMap]",Ld="[object DataView]",ZA=Mr(Ii),eT=Mr(Pi),tT=Mr(ki),rT=Mr(Ri),nT=Mr(Di),lr=qd;(Ii&&lr(new Ii(new ArrayBuffer(1)))!=Ld||Pi&&lr(new Pi)!=Fd||ki&&lr(ki.resolve())!=jd||Ri&&lr(new Ri)!=Nd||Di&&lr(new Di)!=Bd)&&(lr=function(e){var t=qd(e),r=t==QA?e.constructor:void 0,n=r?Mr(r):"";if(n)switch(n){case ZA:return Ld;case eT:return Fd;case tT:return jd;case rT:return Nd;case nT:return Bd}return t});Md.exports=lr});var Wd=J((iY,Gd)=>{S();A();T();var Fi=wo(),oT=hi(),aT=Bp(),iT=Cd(),Ud=Pn(),Jd=bt(),$d=Co(),sT=Si(),lT=1,zd="[object Arguments]",Vd="[object Array]",Ro="[object Object]",uT=Object.prototype,Hd=uT.hasOwnProperty;function cT(e,t,r,n,o,a){var i=Jd(e),s=Jd(t),l=i?Vd:Ud(e),u=s?Vd:Ud(t);l=l==zd?Ro:l,u=u==zd?Ro:u;var c=l==Ro,d=u==Ro,y=l==u;if(y&&$d(e)){if(!$d(t))return!1;i=!0,c=!1}if(y&&!c)return a||(a=new Fi),i||sT(e)?oT(e,t,r,n,o,a):aT(e,t,l,r,n,o,a);if(!(r&lT)){var f=c&&Hd.call(e,"__wrapped__"),h=d&&Hd.call(t,"__wrapped__");if(f||h){var g=f?e.value():e,_=h?t.value():t;return a||(a=new Fi),o(g,_,r,n,a)}}return y?(a||(a=new Fi),iT(e,t,r,n,o,a)):!1}Gd.exports=cT});var ji=J((cY,Xd)=>{S();A();T();var pT=Wd(),Kd=Mt();function Yd(e,t,r,n,o){return e===t?!0:e==null||t==null||!Kd(e)&&!Kd(t)?e!==e&&t!==t:pT(e,t,r,n,Yd,o)}Xd.exports=Yd});var Zd=J((yY,Qd)=>{S();A();T();var dT=wo(),fT=ji(),yT=1,hT=2;function mT(e,t,r,n){var o=r.length,a=o,i=!n;if(e==null)return!a;for(e=Object(e);o--;){var s=r[o];if(i&&s[2]?s[1]!==e[s[0]]:!(s[0]in e))return!1}for(;++o{S();A();T();var gT=gt();function bT(e){return e===e&&!gT(e)}ef.exports=bT});var rf=J((wY,tf)=>{S();A();T();var vT=Ni(),xT=In();function ET(e){for(var t=xT(e),r=t.length;r--;){var n=t[r],o=e[n];t[r]=[n,o,vT(o)]}return t}tf.exports=ET});var Bi=J((CY,nf)=>{S();A();T();function wT(e,t){return function(r){return r==null?!1:r[e]===t&&(t!==void 0||e in Object(r))}}nf.exports=wT});var af=J((PY,of)=>{S();A();T();var ST=Zd(),AT=rf(),TT=Bi();function CT(e){var t=AT(e);return t.length==1&&t[0][2]?TT(t[0][0],t[0][1]):function(r){return r===e||ST(r,e,t)}}of.exports=CT});var kn=J((FY,sf)=>{S();A();T();var _T=Fr(),OT=Mt(),IT="[object Symbol]";function PT(e){return typeof e=="symbol"||OT(e)&&_T(e)==IT}sf.exports=PT});var Do=J((LY,lf)=>{S();A();T();var kT=bt(),RT=kn(),DT=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,FT=/^\w*$/;function jT(e,t){if(kT(e))return!1;var r=typeof e;return r=="number"||r=="symbol"||r=="boolean"||e==null||RT(e)?!0:FT.test(e)||!DT.test(e)||t!=null&&e in Object(t)}lf.exports=jT});var pf=J((JY,cf)=>{S();A();T();var uf=Eo(),NT="Expected a function";function Li(e,t){if(typeof e!="function"||t!=null&&typeof t!="function")throw new TypeError(NT);var r=function(){var n=arguments,o=t?t.apply(this,n):n[0],a=r.cache;if(a.has(o))return a.get(o);var i=e.apply(this,n);return r.cache=a.set(o,i)||a,i};return r.cache=new(Li.Cache||uf),r}Li.Cache=uf;cf.exports=Li});var ff=J((HY,df)=>{S();A();T();var BT=pf(),LT=500;function qT(e){var t=BT(e,function(n){return r.size===LT&&r.clear(),n}),r=t.cache;return t}df.exports=qT});var hf=J((YY,yf)=>{S();A();T();var MT=ff(),UT=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,JT=/\\(\\)?/g,$T=MT(function(e){var t=[];return e.charCodeAt(0)===46&&t.push(""),e.replace(UT,function(r,n,o,a){t.push(o?a.replace(JT,"$1"):n||r)}),t});yf.exports=$T});var Ef=J((eX,xf)=>{S();A();T();var mf=Dr(),zT=li(),VT=bt(),HT=kn(),GT=1/0,gf=mf?mf.prototype:void 0,bf=gf?gf.toString:void 0;function vf(e){if(typeof e=="string")return e;if(VT(e))return zT(e,vf)+"";if(HT(e))return bf?bf.call(e):"";var t=e+"";return t=="0"&&1/e==-GT?"-0":t}xf.exports=vf});var Sf=J((oX,wf)=>{S();A();T();var WT=Ef();function KT(e){return e==null?"":WT(e)}wf.exports=KT});var Rn=J((lX,Af)=>{S();A();T();var YT=bt(),XT=Do(),QT=hf(),ZT=Sf();function eC(e,t){return YT(e)?e:XT(e,t)?[e]:QT(ZT(e))}Af.exports=eC});var Ur=J((dX,Tf)=>{S();A();T();var tC=kn(),rC=1/0;function nC(e){if(typeof e=="string"||tC(e))return e;var t=e+"";return t=="0"&&1/e==-rC?"-0":t}Tf.exports=nC});var Fo=J((mX,Cf)=>{S();A();T();var oC=Rn(),aC=Ur();function iC(e,t){t=oC(t,e);for(var r=0,n=t.length;e!=null&&r{S();A();T();var sC=Fo();function lC(e,t,r){var n=e==null?void 0:sC(e,t);return n===void 0?r:n}_f.exports=lC});var Pf=J((AX,If)=>{S();A();T();function uC(e,t){return e!=null&&t in Object(e)}If.exports=uC});var Rf=J((OX,kf)=>{S();A();T();var cC=Rn(),pC=Ei(),dC=bt(),fC=_o(),yC=Oo(),hC=Ur();function mC(e,t,r){t=cC(t,e);for(var n=-1,o=t.length,a=!1;++n{S();A();T();var gC=Pf(),bC=Rf();function vC(e,t){return e!=null&&bC(e,t,gC)}Df.exports=vC});var Nf=J((NX,jf)=>{S();A();T();var xC=ji(),EC=Of(),wC=Ff(),SC=Do(),AC=Ni(),TC=Bi(),CC=Ur(),_C=1,OC=2;function IC(e,t){return SC(e)&&AC(t)?TC(CC(e),t):function(r){var n=EC(r,e);return n===void 0&&n===t?wC(r,e):xC(t,n,_C|OC)}}jf.exports=IC});var Lf=J((MX,Bf)=>{S();A();T();function PC(e){return e}Bf.exports=PC});var Mf=J((zX,qf)=>{S();A();T();function kC(e){return function(t){return t?.[e]}}qf.exports=kC});var Jf=J((WX,Uf)=>{S();A();T();var RC=Fo();function DC(e){return function(t){return RC(t,e)}}Uf.exports=DC});var zf=J((QX,$f)=>{S();A();T();var FC=Mf(),jC=Jf(),NC=Do(),BC=Ur();function LC(e){return NC(e)?FC(BC(e)):jC(e)}$f.exports=LC});var Hf=J((rQ,Vf)=>{S();A();T();var qC=af(),MC=Nf(),UC=Lf(),JC=bt(),$C=zf();function zC(e){return typeof e=="function"?e:e==null?UC:typeof e=="object"?JC(e)?MC(e[0],e[1]):qC(e):$C(e)}Vf.exports=zC});var Wf=J((iQ,Gf)=>{S();A();T();var VC=qt(),HC=function(){try{var e=VC(Object,"defineProperty");return e({},"",{}),e}catch{}}();Gf.exports=HC});var qi=J((cQ,Yf)=>{S();A();T();var Kf=Wf();function GC(e,t,r){t=="__proto__"&&Kf?Kf(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}Yf.exports=GC});var jo=J((yQ,Xf)=>{S();A();T();var WC=qi(),KC=vo(),YC=Object.prototype,XC=YC.hasOwnProperty;function QC(e,t,r){var n=e[t];(!(XC.call(e,t)&&KC(n,r))||r===void 0&&!(t in e))&&WC(e,t,r)}Xf.exports=QC});var ey=J((bQ,Zf)=>{S();A();T();var ZC=jo(),e_=Rn(),t_=_o(),Qf=gt(),r_=Ur();function n_(e,t,r,n){if(!Qf(e))return e;t=e_(t,e);for(var o=-1,a=t.length,i=a-1,s=e;s!=null&&++o{S();A();T();var o_=Fo(),a_=ey(),i_=Rn();function s_(e,t,r){for(var n=-1,o=t.length,a={};++n{S();A();T();var l_=Ti(),u_=l_(Object.getPrototypeOf,Object);ny.exports=u_});var Ui=J((PQ,oy)=>{S();A();T();var c_=bi(),p_=Mi(),d_=To(),f_=xi(),y_=Object.getOwnPropertySymbols,h_=y_?function(e){for(var t=[];e;)c_(t,d_(e)),e=p_(e);return t}:f_;oy.exports=h_});var iy=J((FQ,ay)=>{S();A();T();function m_(e){var t=[];if(e!=null)for(var r in Object(e))t.push(r);return t}ay.exports=m_});var ly=J((LQ,sy)=>{S();A();T();var g_=gt(),b_=ko(),v_=iy(),x_=Object.prototype,E_=x_.hasOwnProperty;function w_(e){if(!g_(e))return v_(e);var t=b_(e),r=[];for(var n in e)n=="constructor"&&(t||!E_.call(e,n))||r.push(n);return r}sy.exports=w_});var No=J((JQ,uy)=>{S();A();T();var S_=Ai(),A_=ly(),T_=Ci();function C_(e){return T_(e)?S_(e,!0):A_(e)}uy.exports=C_});var Ji=J((HQ,cy)=>{S();A();T();var __=vi(),O_=Ui(),I_=No();function P_(e){return __(e,I_,O_)}cy.exports=P_});var dy=J((YQ,py)=>{S();A();T();var k_=li(),R_=Hf(),D_=ry(),F_=Ji();function j_(e,t){if(e==null)return{};var r=k_(F_(e),function(n){return[n]});return t=R_(t),D_(e,r,function(n,o){return t(n,o[0])})}py.exports=j_});var hy=J((sZ,yy)=>{S();A();T();function N_(e,t,r,n){for(var o=e.length,a=r+(n?1:-1);n?a--:++a{S();A();T();function B_(e){return e!==e}my.exports=B_});var vy=J((hZ,by)=>{S();A();T();function L_(e,t,r){for(var n=r-1,o=e.length;++n{S();A();T();var q_=hy(),M_=gy(),U_=vy();function J_(e,t,r){return t===t?U_(e,t,r):q_(e,M_,r)}xy.exports=J_});var Sy=J((SZ,wy)=>{S();A();T();var $_=Ey();function z_(e,t){var r=e==null?0:e.length;return!!r&&$_(e,t,0)>-1}wy.exports=z_});var Ty=J((_Z,Ay)=>{S();A();T();function V_(e,t,r){for(var n=-1,o=e==null?0:e.length;++n{S();A();T();function H_(){}Cy.exports=H_});var Iy=J((jZ,Oy)=>{S();A();T();var $i=Oi(),G_=_y(),W_=Ao(),K_=1/0,Y_=$i&&1/W_(new $i([,-0]))[1]==K_?function(e){return new $i(e)}:G_;Oy.exports=Y_});var ky=J((qZ,Py)=>{S();A();T();var X_=fi(),Q_=Sy(),Z_=Ty(),eO=yi(),tO=Iy(),rO=Ao(),nO=200;function oO(e,t,r){var n=-1,o=Q_,a=e.length,i=!0,s=[],l=s;if(r)i=!1,o=Z_;else if(a>=nO){var u=t?null:tO(e);if(u)return rO(u);i=!1,o=eO,l=new X_}else l=t?[]:s;e:for(;++n{S();A();T();var aO=ky();function iO(e){return e&&e.length?aO(e):[]}Ry.exports=iO});var jy=J((GZ,Fy)=>{S();A();T();function sO(e,t){for(var r=-1,n=e==null?0:e.length;++r{S();A();T();var lO=jo(),uO=qi();function cO(e,t,r,n){var o=!r;r||(r={});for(var a=-1,i=t.length;++a{S();A();T();var pO=Dn(),dO=In();function fO(e,t){return e&&pO(t,dO(t),e)}By.exports=fO});var My=J((aee,qy)=>{S();A();T();var yO=Dn(),hO=No();function mO(e,t){return e&&yO(t,hO(t),e)}qy.exports=mO});var Vy=J((Fn,Jr)=>{S();A();T();var gO=st(),zy=typeof Fn=="object"&&Fn&&!Fn.nodeType&&Fn,Uy=zy&&typeof Jr=="object"&&Jr&&!Jr.nodeType&&Jr,bO=Uy&&Uy.exports===zy,Jy=bO?gO.Buffer:void 0,$y=Jy?Jy.allocUnsafe:void 0;function vO(e,t){if(t)return e.slice();var r=e.length,n=$y?$y(r):new e.constructor(r);return e.copy(n),n}Jr.exports=vO});var Gy=J((dee,Hy)=>{S();A();T();function xO(e,t){var r=-1,n=e.length;for(t||(t=Array(n));++r{S();A();T();var EO=Dn(),wO=To();function SO(e,t){return EO(e,wO(e),t)}Wy.exports=SO});var Xy=J((xee,Yy)=>{S();A();T();var AO=Dn(),TO=Ui();function CO(e,t){return AO(e,TO(e),t)}Yy.exports=CO});var Zy=J((Aee,Qy)=>{S();A();T();var _O=Object.prototype,OO=_O.hasOwnProperty;function IO(e){var t=e.length,r=new e.constructor(t);return t&&typeof e[0]=="string"&&OO.call(e,"index")&&(r.index=e.index,r.input=e.input),r}Qy.exports=IO});var Lo=J((Oee,th)=>{S();A();T();var eh=mi();function PO(e){var t=new e.constructor(e.byteLength);return new eh(t).set(new eh(e)),t}th.exports=PO});var nh=J((Ree,rh)=>{S();A();T();var kO=Lo();function RO(e,t){var r=t?kO(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.byteLength)}rh.exports=RO});var ah=J((Nee,oh)=>{S();A();T();var DO=/\w*$/;function FO(e){var t=new e.constructor(e.source,DO.exec(e));return t.lastIndex=e.lastIndex,t}oh.exports=FO});var ch=J((Mee,uh)=>{S();A();T();var ih=Dr(),sh=ih?ih.prototype:void 0,lh=sh?sh.valueOf:void 0;function jO(e){return lh?Object(lh.call(e)):{}}uh.exports=jO});var dh=J((zee,ph)=>{S();A();T();var NO=Lo();function BO(e,t){var r=t?NO(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}ph.exports=BO});var yh=J((Wee,fh)=>{S();A();T();var LO=Lo(),qO=nh(),MO=ah(),UO=ch(),JO=dh(),$O="[object Boolean]",zO="[object Date]",VO="[object Map]",HO="[object Number]",GO="[object RegExp]",WO="[object Set]",KO="[object String]",YO="[object Symbol]",XO="[object ArrayBuffer]",QO="[object DataView]",ZO="[object Float32Array]",eI="[object Float64Array]",tI="[object Int8Array]",rI="[object Int16Array]",nI="[object Int32Array]",oI="[object Uint8Array]",aI="[object Uint8ClampedArray]",iI="[object Uint16Array]",sI="[object Uint32Array]";function lI(e,t,r){var n=e.constructor;switch(t){case XO:return LO(e);case $O:case zO:return new n(+e);case QO:return qO(e,r);case ZO:case eI:case tI:case rI:case nI:case oI:case aI:case iI:case sI:return JO(e,r);case VO:return new n;case HO:case KO:return new n(e);case GO:return MO(e);case WO:return new n;case YO:return UO(e)}}fh.exports=lI});var gh=J((Qee,mh)=>{S();A();T();var uI=gt(),hh=Object.create,cI=function(){function e(){}return function(t){if(!uI(t))return{};if(hh)return hh(t);e.prototype=t;var r=new e;return e.prototype=void 0,r}}();mh.exports=cI});var vh=J((rte,bh)=>{S();A();T();var pI=gh(),dI=Mi(),fI=ko();function yI(e){return typeof e.constructor=="function"&&!fI(e)?pI(dI(e)):{}}bh.exports=yI});var Eh=J((ite,xh)=>{S();A();T();var hI=Pn(),mI=Mt(),gI="[object Map]";function bI(e){return mI(e)&&hI(e)==gI}xh.exports=bI});var Th=J((cte,Ah)=>{S();A();T();var vI=Eh(),xI=Io(),wh=Po(),Sh=wh&&wh.isMap,EI=Sh?xI(Sh):vI;Ah.exports=EI});var _h=J((yte,Ch)=>{S();A();T();var wI=Pn(),SI=Mt(),AI="[object Set]";function TI(e){return SI(e)&&wI(e)==AI}Ch.exports=TI});var kh=J((bte,Ph)=>{S();A();T();var CI=_h(),_I=Io(),Oh=Po(),Ih=Oh&&Oh.isSet,OI=Ih?_I(Ih):CI;Ph.exports=OI});var Nh=J((wte,jh)=>{S();A();T();var II=wo(),PI=jy(),kI=jo(),RI=Ly(),DI=My(),FI=Vy(),jI=Gy(),NI=Ky(),BI=Xy(),LI=_i(),qI=Ji(),MI=Pn(),UI=Zy(),JI=yh(),$I=vh(),zI=bt(),VI=Co(),HI=Th(),GI=gt(),WI=kh(),KI=In(),YI=No(),XI=1,QI=2,ZI=4,Rh="[object Arguments]",eP="[object Array]",tP="[object Boolean]",rP="[object Date]",nP="[object Error]",Dh="[object Function]",oP="[object GeneratorFunction]",aP="[object Map]",iP="[object Number]",Fh="[object Object]",sP="[object RegExp]",lP="[object Set]",uP="[object String]",cP="[object Symbol]",pP="[object WeakMap]",dP="[object ArrayBuffer]",fP="[object DataView]",yP="[object Float32Array]",hP="[object Float64Array]",mP="[object Int8Array]",gP="[object Int16Array]",bP="[object Int32Array]",vP="[object Uint8Array]",xP="[object Uint8ClampedArray]",EP="[object Uint16Array]",wP="[object Uint32Array]",ge={};ge[Rh]=ge[eP]=ge[dP]=ge[fP]=ge[tP]=ge[rP]=ge[yP]=ge[hP]=ge[mP]=ge[gP]=ge[bP]=ge[aP]=ge[iP]=ge[Fh]=ge[sP]=ge[lP]=ge[uP]=ge[cP]=ge[vP]=ge[xP]=ge[EP]=ge[wP]=!0;ge[nP]=ge[Dh]=ge[pP]=!1;function qo(e,t,r,n,o,a){var i,s=t&XI,l=t&QI,u=t&ZI;if(r&&(i=o?r(e,n,o,a):r(e)),i!==void 0)return i;if(!GI(e))return e;var c=zI(e);if(c){if(i=UI(e),!s)return jI(e,i)}else{var d=MI(e),y=d==Dh||d==oP;if(VI(e))return FI(e,s);if(d==Fh||d==Rh||y&&!o){if(i=l||y?{}:$I(e),!s)return l?BI(e,DI(i,e)):NI(e,RI(i,e))}else{if(!ge[d])return o?e:{};i=JI(e,d,s)}}a||(a=new II);var f=a.get(e);if(f)return f;a.set(e,i),WI(e)?e.forEach(function(_){i.add(qo(_,t,r,_,e,a))}):HI(e)&&e.forEach(function(_,v){i.set(v,qo(_,t,r,v,e,a))});var h=u?l?qI:LI:l?YI:KI,g=c?void 0:h(e);return PI(g||e,function(_,v){g&&(v=_,_=e[v]),kI(i,v,qo(_,t,r,v,e,a))}),i}jh.exports=qo});var Lh=J((Cte,Bh)=>{S();A();T();var SP=Nh(),AP=1,TP=4;function CP(e){return SP(e,AP|TP)}Bh.exports=CP});var _0=J((noe,C0)=>{S();A();T();var Fj=st(),jj=function(){return Fj.Date.now()};C0.exports=jj});var I0=J((soe,O0)=>{S();A();T();var Nj=/\s/;function Bj(e){for(var t=e.length;t--&&Nj.test(e.charAt(t)););return t}O0.exports=Bj});var k0=J((poe,P0)=>{S();A();T();var Lj=I0(),qj=/^\s+/;function Mj(e){return e&&e.slice(0,Lj(e)+1).replace(qj,"")}P0.exports=Mj});var j0=J((hoe,F0)=>{S();A();T();var Uj=k0(),R0=gt(),Jj=kn(),D0=NaN,$j=/^[-+]0x[0-9a-f]+$/i,zj=/^0b[01]+$/i,Vj=/^0o[0-7]+$/i,Hj=parseInt;function Gj(e){if(typeof e=="number")return e;if(Jj(e))return D0;if(R0(e)){var t=typeof e.valueOf=="function"?e.valueOf():e;e=R0(t)?t+"":t}if(typeof e!="string")return e===0?e:+e;e=Uj(e);var r=zj.test(e);return r||Vj.test(e)?Hj(e.slice(2),r?2:8):$j.test(e)?D0:+e}F0.exports=Gj});var L0=J((voe,B0)=>{S();A();T();var Wj=gt(),il=_0(),N0=j0(),Kj="Expected a function",Yj=Math.max,Xj=Math.min;function Qj(e,t,r){var n,o,a,i,s,l,u=0,c=!1,d=!1,y=!0;if(typeof e!="function")throw new TypeError(Kj);t=N0(t)||0,Wj(r)&&(c=!!r.leading,d="maxWait"in r,a=d?Yj(N0(r.maxWait)||0,t):a,y="trailing"in r?!!r.trailing:y);function f(P){var F=n,D=o;return n=o=void 0,u=P,i=e.apply(D,F),i}function h(P){return u=P,s=setTimeout(v,t),c?f(P):i}function g(P){var F=P-l,D=P-u,U=t-F;return d?Xj(U,a-D):U}function _(P){var F=P-l,D=P-u;return l===void 0||F>=t||F<0||d&&D>=a}function v(){var P=il();if(_(P))return x(P);s=setTimeout(v,g(P))}function x(P){return s=void 0,y&&n?f(P):(n=o=void 0,i)}function O(){s!==void 0&&clearTimeout(s),u=0,n=l=o=s=void 0}function C(){return s===void 0?i:x(il())}function I(){var P=il(),F=_(P);if(n=arguments,o=this,l=P,F){if(s===void 0)return h(l);if(d)return clearTimeout(s),s=setTimeout(v,t),f(l)}return s===void 0&&(s=setTimeout(v,t)),i}return I.cancel=O,I.flush=C,I}B0.exports=Qj});var ov={};Hl(ov,{ColorControl:()=>nv,default:()=>LN});function hr(){return(hr=Object.assign||function(e){for(var t=1;t=0||(o[r]=e[r]);return o}function sl(e){var t=Xe(e),r=Xe(function(n){t.current&&t.current(n)});return t.current=e,r.current}function Z0(e,t,r){var n=sl(r),o=he(function(){return e.toHsva(t)}),a=o[0],i=o[1],s=Xe({color:t,hsva:a});ze(function(){if(!e.equal(t,s.current.color)){var u=e.toHsva(t);s.current={hsva:u,color:t},i(u)}},[t,e]),ze(function(){var u;X0(a,s.current.hsva)||e.equal(u=e.fromHsva(a),s.current.color)||(s.current={hsva:a,color:u},n(u))},[a,e,n]);var l=$e(function(u){i(function(c){return Object.assign({},c,u)})},[]);return[a,l]}var z0,Zj,V0,eN,tN,Xr,Kn,ll,q0,M0,fl,Yn,yl,Je,rN,nN,ul,oN,aN,iN,sN,H0,cl,ma,G0,lN,fa,uN,W0,K0,Y0,X0,Q0,cN,pN,dN,U0,ev,fN,yN,hN,mN,tv,gN,bN,vN,xN,ut,EN,wN,SN,AN,TN,CN,_N,J0,ON,IN,rv,ya,PN,kN,RN,pl,DN,FN,ha,$0,Yr,jN,NN,ga,BN,nv,LN,av=Tt(()=>{S();A();T();Da();io();z0=ao(L0());ni();lo();si();Zj=nr({"../../node_modules/color-name/index.js"(e,t){t.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}}}),V0=nr({"../../node_modules/color-convert/conversions.js"(e,t){var r=Zj(),n={};for(let i of Object.keys(r))n[r[i]]=i;var o={rgb:{channels:3,labels:"rgb"},hsl:{channels:3,labels:"hsl"},hsv:{channels:3,labels:"hsv"},hwb:{channels:3,labels:"hwb"},cmyk:{channels:4,labels:"cmyk"},xyz:{channels:3,labels:"xyz"},lab:{channels:3,labels:"lab"},lch:{channels:3,labels:"lch"},hex:{channels:1,labels:["hex"]},keyword:{channels:1,labels:["keyword"]},ansi16:{channels:1,labels:["ansi16"]},ansi256:{channels:1,labels:["ansi256"]},hcg:{channels:3,labels:["h","c","g"]},apple:{channels:3,labels:["r16","g16","b16"]},gray:{channels:1,labels:["gray"]}};t.exports=o;for(let i of Object.keys(o)){if(!("channels"in o[i]))throw new Error("missing channels property: "+i);if(!("labels"in o[i]))throw new Error("missing channel labels property: "+i);if(o[i].labels.length!==o[i].channels)throw new Error("channel and label counts mismatch: "+i);let{channels:s,labels:l}=o[i];delete o[i].channels,delete o[i].labels,Object.defineProperty(o[i],"channels",{value:s}),Object.defineProperty(o[i],"labels",{value:l})}o.rgb.hsl=function(i){let s=i[0]/255,l=i[1]/255,u=i[2]/255,c=Math.min(s,l,u),d=Math.max(s,l,u),y=d-c,f,h;d===c?f=0:s===d?f=(l-u)/y:l===d?f=2+(u-s)/y:u===d&&(f=4+(s-l)/y),f=Math.min(f*60,360),f<0&&(f+=360);let g=(c+d)/2;return d===c?h=0:g<=.5?h=y/(d+c):h=y/(2-d-c),[f,h*100,g*100]},o.rgb.hsv=function(i){let s,l,u,c,d,y=i[0]/255,f=i[1]/255,h=i[2]/255,g=Math.max(y,f,h),_=g-Math.min(y,f,h),v=function(x){return(g-x)/6/_+1/2};return _===0?(c=0,d=0):(d=_/g,s=v(y),l=v(f),u=v(h),y===g?c=u-l:f===g?c=1/3+s-u:h===g&&(c=2/3+l-s),c<0?c+=1:c>1&&(c-=1)),[c*360,d*100,g*100]},o.rgb.hwb=function(i){let s=i[0],l=i[1],u=i[2],c=o.rgb.hsl(i)[0],d=1/255*Math.min(s,Math.min(l,u));return u=1-1/255*Math.max(s,Math.max(l,u)),[c,d*100,u*100]},o.rgb.cmyk=function(i){let s=i[0]/255,l=i[1]/255,u=i[2]/255,c=Math.min(1-s,1-l,1-u),d=(1-s-c)/(1-c)||0,y=(1-l-c)/(1-c)||0,f=(1-u-c)/(1-c)||0;return[d*100,y*100,f*100,c*100]};function a(i,s){return(i[0]-s[0])**2+(i[1]-s[1])**2+(i[2]-s[2])**2}o.rgb.keyword=function(i){let s=n[i];if(s)return s;let l=1/0,u;for(let c of Object.keys(r)){let d=r[c],y=a(i,d);y.04045?((s+.055)/1.055)**2.4:s/12.92,l=l>.04045?((l+.055)/1.055)**2.4:l/12.92,u=u>.04045?((u+.055)/1.055)**2.4:u/12.92;let c=s*.4124+l*.3576+u*.1805,d=s*.2126+l*.7152+u*.0722,y=s*.0193+l*.1192+u*.9505;return[c*100,d*100,y*100]},o.rgb.lab=function(i){let s=o.rgb.xyz(i),l=s[0],u=s[1],c=s[2];l/=95.047,u/=100,c/=108.883,l=l>.008856?l**(1/3):7.787*l+16/116,u=u>.008856?u**(1/3):7.787*u+16/116,c=c>.008856?c**(1/3):7.787*c+16/116;let d=116*u-16,y=500*(l-u),f=200*(u-c);return[d,y,f]},o.hsl.rgb=function(i){let s=i[0]/360,l=i[1]/100,u=i[2]/100,c,d,y;if(l===0)return y=u*255,[y,y,y];u<.5?c=u*(1+l):c=u+l-u*l;let f=2*u-c,h=[0,0,0];for(let g=0;g<3;g++)d=s+1/3*-(g-1),d<0&&d++,d>1&&d--,6*d<1?y=f+(c-f)*6*d:2*d<1?y=c:3*d<2?y=f+(c-f)*(2/3-d)*6:y=f,h[g]=y*255;return h},o.hsl.hsv=function(i){let s=i[0],l=i[1]/100,u=i[2]/100,c=l,d=Math.max(u,.01);u*=2,l*=u<=1?u:2-u,c*=d<=1?d:2-d;let y=(u+l)/2,f=u===0?2*c/(d+c):2*l/(u+l);return[s,f*100,y*100]},o.hsv.rgb=function(i){let s=i[0]/60,l=i[1]/100,u=i[2]/100,c=Math.floor(s)%6,d=s-Math.floor(s),y=255*u*(1-l),f=255*u*(1-l*d),h=255*u*(1-l*(1-d));switch(u*=255,c){case 0:return[u,h,y];case 1:return[f,u,y];case 2:return[y,u,h];case 3:return[y,f,u];case 4:return[h,y,u];case 5:return[u,y,f]}},o.hsv.hsl=function(i){let s=i[0],l=i[1]/100,u=i[2]/100,c=Math.max(u,.01),d,y;y=(2-l)*u;let f=(2-l)*c;return d=l*c,d/=f<=1?f:2-f,d=d||0,y/=2,[s,d*100,y*100]},o.hwb.rgb=function(i){let s=i[0]/360,l=i[1]/100,u=i[2]/100,c=l+u,d;c>1&&(l/=c,u/=c);let y=Math.floor(6*s),f=1-u;d=6*s-y,y&1&&(d=1-d);let h=l+d*(f-l),g,_,v;switch(y){default:case 6:case 0:g=f,_=h,v=l;break;case 1:g=h,_=f,v=l;break;case 2:g=l,_=f,v=h;break;case 3:g=l,_=h,v=f;break;case 4:g=h,_=l,v=f;break;case 5:g=f,_=l,v=h;break}return[g*255,_*255,v*255]},o.cmyk.rgb=function(i){let s=i[0]/100,l=i[1]/100,u=i[2]/100,c=i[3]/100,d=1-Math.min(1,s*(1-c)+c),y=1-Math.min(1,l*(1-c)+c),f=1-Math.min(1,u*(1-c)+c);return[d*255,y*255,f*255]},o.xyz.rgb=function(i){let s=i[0]/100,l=i[1]/100,u=i[2]/100,c,d,y;return c=s*3.2406+l*-1.5372+u*-.4986,d=s*-.9689+l*1.8758+u*.0415,y=s*.0557+l*-.204+u*1.057,c=c>.0031308?1.055*c**(1/2.4)-.055:c*12.92,d=d>.0031308?1.055*d**(1/2.4)-.055:d*12.92,y=y>.0031308?1.055*y**(1/2.4)-.055:y*12.92,c=Math.min(Math.max(0,c),1),d=Math.min(Math.max(0,d),1),y=Math.min(Math.max(0,y),1),[c*255,d*255,y*255]},o.xyz.lab=function(i){let s=i[0],l=i[1],u=i[2];s/=95.047,l/=100,u/=108.883,s=s>.008856?s**(1/3):7.787*s+16/116,l=l>.008856?l**(1/3):7.787*l+16/116,u=u>.008856?u**(1/3):7.787*u+16/116;let c=116*l-16,d=500*(s-l),y=200*(l-u);return[c,d,y]},o.lab.xyz=function(i){let s=i[0],l=i[1],u=i[2],c,d,y;d=(s+16)/116,c=l/500+d,y=d-u/200;let f=d**3,h=c**3,g=y**3;return d=f>.008856?f:(d-16/116)/7.787,c=h>.008856?h:(c-16/116)/7.787,y=g>.008856?g:(y-16/116)/7.787,c*=95.047,d*=100,y*=108.883,[c,d,y]},o.lab.lch=function(i){let s=i[0],l=i[1],u=i[2],c;c=Math.atan2(u,l)*360/2/Math.PI,c<0&&(c+=360);let d=Math.sqrt(l*l+u*u);return[s,d,c]},o.lch.lab=function(i){let s=i[0],l=i[1],u=i[2]/360*2*Math.PI,c=l*Math.cos(u),d=l*Math.sin(u);return[s,c,d]},o.rgb.ansi16=function(i,s=null){let[l,u,c]=i,d=s===null?o.rgb.hsv(i)[2]:s;if(d=Math.round(d/50),d===0)return 30;let y=30+(Math.round(c/255)<<2|Math.round(u/255)<<1|Math.round(l/255));return d===2&&(y+=60),y},o.hsv.ansi16=function(i){return o.rgb.ansi16(o.hsv.rgb(i),i[2])},o.rgb.ansi256=function(i){let s=i[0],l=i[1],u=i[2];return s===l&&l===u?s<8?16:s>248?231:Math.round((s-8)/247*24)+232:16+36*Math.round(s/255*5)+6*Math.round(l/255*5)+Math.round(u/255*5)},o.ansi16.rgb=function(i){let s=i%10;if(s===0||s===7)return i>50&&(s+=3.5),s=s/10.5*255,[s,s,s];let l=(~~(i>50)+1)*.5,u=(s&1)*l*255,c=(s>>1&1)*l*255,d=(s>>2&1)*l*255;return[u,c,d]},o.ansi256.rgb=function(i){if(i>=232){let d=(i-232)*10+8;return[d,d,d]}i-=16;let s,l=Math.floor(i/36)/5*255,u=Math.floor((s=i%36)/6)/5*255,c=s%6/5*255;return[l,u,c]},o.rgb.hex=function(i){let s=(((Math.round(i[0])&255)<<16)+((Math.round(i[1])&255)<<8)+(Math.round(i[2])&255)).toString(16).toUpperCase();return"000000".substring(s.length)+s},o.hex.rgb=function(i){let s=i.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);if(!s)return[0,0,0];let l=s[0];s[0].length===3&&(l=l.split("").map(f=>f+f).join(""));let u=parseInt(l,16),c=u>>16&255,d=u>>8&255,y=u&255;return[c,d,y]},o.rgb.hcg=function(i){let s=i[0]/255,l=i[1]/255,u=i[2]/255,c=Math.max(Math.max(s,l),u),d=Math.min(Math.min(s,l),u),y=c-d,f,h;return y<1?f=d/(1-y):f=0,y<=0?h=0:c===s?h=(l-u)/y%6:c===l?h=2+(u-s)/y:h=4+(s-l)/y,h/=6,h%=1,[h*360,y*100,f*100]},o.hsl.hcg=function(i){let s=i[1]/100,l=i[2]/100,u=l<.5?2*s*l:2*s*(1-l),c=0;return u<1&&(c=(l-.5*u)/(1-u)),[i[0],u*100,c*100]},o.hsv.hcg=function(i){let s=i[1]/100,l=i[2]/100,u=s*l,c=0;return u<1&&(c=(l-u)/(1-u)),[i[0],u*100,c*100]},o.hcg.rgb=function(i){let s=i[0]/360,l=i[1]/100,u=i[2]/100;if(l===0)return[u*255,u*255,u*255];let c=[0,0,0],d=s%1*6,y=d%1,f=1-y,h=0;switch(Math.floor(d)){case 0:c[0]=1,c[1]=y,c[2]=0;break;case 1:c[0]=f,c[1]=1,c[2]=0;break;case 2:c[0]=0,c[1]=1,c[2]=y;break;case 3:c[0]=0,c[1]=f,c[2]=1;break;case 4:c[0]=y,c[1]=0,c[2]=1;break;default:c[0]=1,c[1]=0,c[2]=f}return h=(1-l)*u,[(l*c[0]+h)*255,(l*c[1]+h)*255,(l*c[2]+h)*255]},o.hcg.hsv=function(i){let s=i[1]/100,l=i[2]/100,u=s+l*(1-s),c=0;return u>0&&(c=s/u),[i[0],c*100,u*100]},o.hcg.hsl=function(i){let s=i[1]/100,l=i[2]/100*(1-s)+.5*s,u=0;return l>0&&l<.5?u=s/(2*l):l>=.5&&l<1&&(u=s/(2*(1-l))),[i[0],u*100,l*100]},o.hcg.hwb=function(i){let s=i[1]/100,l=i[2]/100,u=s+l*(1-s);return[i[0],(u-s)*100,(1-u)*100]},o.hwb.hcg=function(i){let s=i[1]/100,l=1-i[2]/100,u=l-s,c=0;return u<1&&(c=(l-u)/(1-u)),[i[0],u*100,c*100]},o.apple.rgb=function(i){return[i[0]/65535*255,i[1]/65535*255,i[2]/65535*255]},o.rgb.apple=function(i){return[i[0]/255*65535,i[1]/255*65535,i[2]/255*65535]},o.gray.rgb=function(i){return[i[0]/100*255,i[0]/100*255,i[0]/100*255]},o.gray.hsl=function(i){return[0,0,i[0]]},o.gray.hsv=o.gray.hsl,o.gray.hwb=function(i){return[0,100,i[0]]},o.gray.cmyk=function(i){return[0,0,0,i[0]]},o.gray.lab=function(i){return[i[0],0,0]},o.gray.hex=function(i){let s=Math.round(i[0]/100*255)&255,l=((s<<16)+(s<<8)+s).toString(16).toUpperCase();return"000000".substring(l.length)+l},o.rgb.gray=function(i){return[(i[0]+i[1]+i[2])/3/255*100]}}}),eN=nr({"../../node_modules/color-convert/route.js"(e,t){var r=V0();function n(){let s={},l=Object.keys(r);for(let u=l.length,c=0;c1&&(c=d),l(c))};return"conversion"in l&&(u.conversion=l.conversion),u}function s(l){let u=function(...c){let d=c[0];if(d==null)return d;d.length>1&&(c=d);let y=l(c);if(typeof y=="object")for(let f=y.length,h=0;h{o[l]={},Object.defineProperty(o[l],"channels",{value:r[l].channels}),Object.defineProperty(o[l],"labels",{value:r[l].labels});let u=n(l);Object.keys(u).forEach(c=>{let d=u[c];o[l][c]=s(d),o[l][c].raw=i(d)})}),t.exports=o}});Xr=function(e,t,r){return t===void 0&&(t=0),r===void 0&&(r=1),e>r?r:e0:_.buttons>0)&&o.current?a(q0(o.current,_,s.current)):g(!1)},h=function(){return g(!1)};function g(_){var v=l.current,x=ll(o.current),O=_?x.addEventListener:x.removeEventListener;O(v?"touchmove":"mousemove",f),O(v?"touchend":"mouseup",h)}return[function(_){var v=_.nativeEvent,x=o.current;if(x&&(M0(v),!function(C,I){return I&&!Kn(C)}(v,l.current)&&x)){if(Kn(v)){l.current=!0;var O=v.changedTouches||[];O.length&&(s.current=O[0].identifier)}x.focus(),a(q0(x,v,s.current)),g(!0)}},function(_){var v=_.which||_.keyCode;v<37||v>40||(_.preventDefault(),i({left:v===39?.05:v===37?-.05:0,top:v===40?.05:v===38?-.05:0}))},g]},[i,a]),c=u[0],d=u[1],y=u[2];return ze(function(){return y},[y]),E.createElement("div",hr({},n,{onTouchStart:c,onMouseDown:c,className:"react-colorful__interactive",ref:o,onKeyDown:d,tabIndex:0,role:"slider"}))}),Yn=function(e){return e.filter(Boolean).join(" ")},yl=function(e){var t=e.color,r=e.left,n=e.top,o=n===void 0?.5:n,a=Yn(["react-colorful__pointer",e.className]);return E.createElement("div",{className:a,style:{top:100*o+"%",left:100*r+"%"}},E.createElement("div",{className:"react-colorful__pointer-fill",style:{backgroundColor:t}}))},Je=function(e,t,r){return t===void 0&&(t=0),r===void 0&&(r=Math.pow(10,t)),Math.round(r*e)/r},rN={grad:.9,turn:360,rad:360/(2*Math.PI)},nN=function(e){return W0(ul(e))},ul=function(e){return e[0]==="#"&&(e=e.substring(1)),e.length<6?{r:parseInt(e[0]+e[0],16),g:parseInt(e[1]+e[1],16),b:parseInt(e[2]+e[2],16),a:e.length===4?Je(parseInt(e[3]+e[3],16)/255,2):1}:{r:parseInt(e.substring(0,2),16),g:parseInt(e.substring(2,4),16),b:parseInt(e.substring(4,6),16),a:e.length===8?Je(parseInt(e.substring(6,8),16)/255,2):1}},oN=function(e,t){return t===void 0&&(t="deg"),Number(e)*(rN[t]||1)},aN=function(e){var t=/hsla?\(?\s*(-?\d*\.?\d+)(deg|rad|grad|turn)?[,\s]+(-?\d*\.?\d+)%?[,\s]+(-?\d*\.?\d+)%?,?\s*[/\s]*(-?\d*\.?\d+)?(%)?\s*\)?/i.exec(e);return t?iN({h:oN(t[1],t[2]),s:Number(t[3]),l:Number(t[4]),a:t[5]===void 0?1:Number(t[5])/(t[6]?100:1)}):{h:0,s:0,v:0,a:1}},iN=function(e){var t=e.s,r=e.l;return{h:e.h,s:(t*=(r<50?r:100-r)/100)>0?2*t/(r+t)*100:0,v:r+t,a:e.a}},sN=function(e){return uN(G0(e))},H0=function(e){var t=e.s,r=e.v,n=e.a,o=(200-t)*r/100;return{h:Je(e.h),s:Je(o>0&&o<200?t*r/100/(o<=100?o:200-o)*100:0),l:Je(o/2),a:Je(n,2)}},cl=function(e){var t=H0(e);return"hsl("+t.h+", "+t.s+"%, "+t.l+"%)"},ma=function(e){var t=H0(e);return"hsla("+t.h+", "+t.s+"%, "+t.l+"%, "+t.a+")"},G0=function(e){var t=e.h,r=e.s,n=e.v,o=e.a;t=t/360*6,r/=100,n/=100;var a=Math.floor(t),i=n*(1-r),s=n*(1-(t-a)*r),l=n*(1-(1-t+a)*r),u=a%6;return{r:Je(255*[n,s,i,i,l,n][u]),g:Je(255*[l,n,n,s,i,i][u]),b:Je(255*[i,i,l,n,n,s][u]),a:Je(o,2)}},lN=function(e){var t=/rgba?\(?\s*(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?[,\s]+(-?\d*\.?\d+)(%)?,?\s*[/\s]*(-?\d*\.?\d+)?(%)?\s*\)?/i.exec(e);return t?W0({r:Number(t[1])/(t[2]?100/255:1),g:Number(t[3])/(t[4]?100/255:1),b:Number(t[5])/(t[6]?100/255:1),a:t[7]===void 0?1:Number(t[7])/(t[8]?100:1)}):{h:0,s:0,v:0,a:1}},fa=function(e){var t=e.toString(16);return t.length<2?"0"+t:t},uN=function(e){var t=e.r,r=e.g,n=e.b,o=e.a,a=o<1?fa(Je(255*o)):"";return"#"+fa(t)+fa(r)+fa(n)+a},W0=function(e){var t=e.r,r=e.g,n=e.b,o=e.a,a=Math.max(t,r,n),i=a-Math.min(t,r,n),s=i?a===t?(r-n)/i:a===r?2+(n-t)/i:4+(t-r)/i:0;return{h:Je(60*(s<0?s+6:s)),s:Je(a?i/a*100:0),v:Je(a/255*100),a:o}},K0=E.memo(function(e){var t=e.hue,r=e.onChange,n=Yn(["react-colorful__hue",e.className]);return E.createElement("div",{className:n},E.createElement(fl,{onMove:function(o){r({h:360*o.left})},onKey:function(o){r({h:Xr(t+360*o.left,0,360)})},"aria-label":"Hue","aria-valuenow":Je(t),"aria-valuemax":"360","aria-valuemin":"0"},E.createElement(yl,{className:"react-colorful__hue-pointer",left:t/360,color:cl({h:t,s:100,v:100,a:1})})))}),Y0=E.memo(function(e){var t=e.hsva,r=e.onChange,n={backgroundColor:cl({h:t.h,s:100,v:100,a:1})};return E.createElement("div",{className:"react-colorful__saturation",style:n},E.createElement(fl,{onMove:function(o){r({s:100*o.left,v:100-100*o.top})},onKey:function(o){r({s:Xr(t.s+100*o.left,0,100),v:Xr(t.v-100*o.top,0,100)})},"aria-label":"Color","aria-valuetext":"Saturation "+Je(t.s)+"%, Brightness "+Je(t.v)+"%"},E.createElement(yl,{className:"react-colorful__saturation-pointer",top:1-t.v/100,left:t.s/100,color:cl(t)})))}),X0=function(e,t){if(e===t)return!0;for(var r in e)if(e[r]!==t[r])return!1;return!0},Q0=function(e,t){return e.replace(/\s/g,"")===t.replace(/\s/g,"")},cN=function(e,t){return e.toLowerCase()===t.toLowerCase()||X0(ul(e),ul(t))};pN=typeof window<"u"?ru:ze,dN=function(){return typeof __webpack_nonce__<"u"?__webpack_nonce__:void 0},U0=new Map,ev=function(e){pN(function(){var t=e.current?e.current.ownerDocument:document;if(t!==void 0&&!U0.has(t)){var r=t.createElement("style");r.innerHTML=`.react-colorful{position:relative;display:flex;flex-direction:column;width:200px;height:200px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:default}.react-colorful__saturation{position:relative;flex-grow:1;border-color:transparent;border-bottom:12px solid #000;border-radius:8px 8px 0 0;background-image:linear-gradient(0deg,#000,transparent),linear-gradient(90deg,#fff,hsla(0,0%,100%,0))}.react-colorful__alpha-gradient,.react-colorful__pointer-fill{content:"";position:absolute;left:0;top:0;right:0;bottom:0;pointer-events:none;border-radius:inherit}.react-colorful__alpha-gradient,.react-colorful__saturation{box-shadow:inset 0 0 0 1px rgba(0,0,0,.05)}.react-colorful__alpha,.react-colorful__hue{position:relative;height:24px}.react-colorful__hue{background:linear-gradient(90deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.react-colorful__last-control{border-radius:0 0 8px 8px}.react-colorful__interactive{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:inherit;outline:none;touch-action:none}.react-colorful__pointer{position:absolute;z-index:1;box-sizing:border-box;width:28px;height:28px;transform:translate(-50%,-50%);background-color:#fff;border:2px solid #fff;border-radius:50%;box-shadow:0 2px 4px rgba(0,0,0,.2)}.react-colorful__interactive:focus .react-colorful__pointer{transform:translate(-50%,-50%) scale(1.1)}.react-colorful__alpha,.react-colorful__alpha-pointer{background-color:#fff;background-image:url('data:image/svg+xml;charset=utf-8,')}.react-colorful__saturation-pointer{z-index:3}.react-colorful__hue-pointer{z-index:2}`,U0.set(t,r);var n=dN();n&&r.setAttribute("nonce",n),t.head.appendChild(r)}},[])},fN=function(e){var t=e.className,r=e.colorModel,n=e.color,o=n===void 0?r.defaultColor:n,a=e.onChange,i=dl(e,["className","colorModel","color","onChange"]),s=Xe(null);ev(s);var l=Z0(r,o,a),u=l[0],c=l[1],d=Yn(["react-colorful",t]);return E.createElement("div",hr({},i,{ref:s,className:d}),E.createElement(Y0,{hsva:u,onChange:c}),E.createElement(K0,{hue:u.h,onChange:c,className:"react-colorful__last-control"}))},yN={defaultColor:"000",toHsva:nN,fromHsva:function(e){return sN({h:e.h,s:e.s,v:e.v,a:1})},equal:cN},hN=function(e){return E.createElement(fN,hr({},e,{colorModel:yN}))},mN=function(e){var t=e.className,r=e.hsva,n=e.onChange,o={backgroundImage:"linear-gradient(90deg, "+ma(Object.assign({},r,{a:0}))+", "+ma(Object.assign({},r,{a:1}))+")"},a=Yn(["react-colorful__alpha",t]),i=Je(100*r.a);return E.createElement("div",{className:a},E.createElement("div",{className:"react-colorful__alpha-gradient",style:o}),E.createElement(fl,{onMove:function(s){n({a:s.left})},onKey:function(s){n({a:Xr(r.a+s.left)})},"aria-label":"Alpha","aria-valuetext":i+"%","aria-valuenow":i,"aria-valuemin":"0","aria-valuemax":"100"},E.createElement(yl,{className:"react-colorful__alpha-pointer",left:r.a,color:ma(r)})))},tv=function(e){var t=e.className,r=e.colorModel,n=e.color,o=n===void 0?r.defaultColor:n,a=e.onChange,i=dl(e,["className","colorModel","color","onChange"]),s=Xe(null);ev(s);var l=Z0(r,o,a),u=l[0],c=l[1],d=Yn(["react-colorful",t]);return E.createElement("div",hr({},i,{ref:s,className:d}),E.createElement(Y0,{hsva:u,onChange:c}),E.createElement(K0,{hue:u.h,onChange:c}),E.createElement(mN,{hsva:u,onChange:c,className:"react-colorful__last-control"}))},gN={defaultColor:"hsla(0, 0%, 0%, 1)",toHsva:aN,fromHsva:ma,equal:Q0},bN=function(e){return E.createElement(tv,hr({},e,{colorModel:gN}))},vN={defaultColor:"rgba(0, 0, 0, 1)",toHsva:lN,fromHsva:function(e){var t=G0(e);return"rgba("+t.r+", "+t.g+", "+t.b+", "+t.a+")"},equal:Q0},xN=function(e){return E.createElement(tv,hr({},e,{colorModel:vN}))},ut=gn(tN(),1),EN=W.div({position:"relative",maxWidth:250,'&[aria-readonly="true"]':{opacity:.5}}),wN=W(Lt)({position:"absolute",zIndex:1,top:4,left:4,"[aria-readonly=true] &":{cursor:"not-allowed"}}),SN=W.div({width:200,margin:5,".react-colorful__saturation":{borderRadius:"4px 4px 0 0"},".react-colorful__hue":{boxShadow:"inset 0 0 0 1px rgb(0 0 0 / 5%)"},".react-colorful__last-control":{borderRadius:"0 0 4px 4px"}}),AN=W(sr)(({theme:e})=>({fontFamily:e.typography.fonts.base})),TN=W.div({display:"grid",gridTemplateColumns:"repeat(9, 16px)",gap:6,padding:3,marginTop:5,width:200}),CN=W.div(({theme:e,active:t})=>({width:16,height:16,boxShadow:t?`${e.appBorderColor} 0 0 0 1px inset, ${e.textMutedColor}50 0 0 0 4px`:`${e.appBorderColor} 0 0 0 1px inset`,borderRadius:e.appBorderRadius})),_N=`url('data:image/svg+xml;charset=utf-8,')`,J0=({value:e,style:t,...r})=>{let n=`linear-gradient(${e}, ${e}), ${_N}, linear-gradient(#fff, #fff)`;return E.createElement(CN,{...r,style:{...t,backgroundImage:n}})},ON=W(dt.Input)(({theme:e,readOnly:t})=>({width:"100%",paddingLeft:30,paddingRight:30,boxSizing:"border-box",fontFamily:e.typography.fonts.base})),IN=W(Ju)(({theme:e})=>({position:"absolute",zIndex:1,top:6,right:7,width:20,height:20,padding:4,boxSizing:"border-box",cursor:"pointer",color:e.input.color})),rv=(e=>(e.RGB="rgb",e.HSL="hsl",e.HEX="hex",e))(rv||{}),ya=Object.values(rv),PN=/\(([0-9]+),\s*([0-9]+)%?,\s*([0-9]+)%?,?\s*([0-9.]+)?\)/,kN=/^\s*rgba?\(([0-9]+),\s*([0-9]+),\s*([0-9]+),?\s*([0-9.]+)?\)\s*$/i,RN=/^\s*hsla?\(([0-9]+),\s*([0-9]+)%,\s*([0-9]+)%,?\s*([0-9.]+)?\)\s*$/i,pl=/^\s*#?([0-9a-f]{3}|[0-9a-f]{6})\s*$/i,DN=/^\s*#?([0-9a-f]{3})\s*$/i,FN={hex:hN,rgb:xN,hsl:bN},ha={hex:"transparent",rgb:"rgba(0, 0, 0, 0)",hsl:"hsla(0, 0%, 0%, 0)"},$0=e=>{let t=e?.match(PN);if(!t)return[0,0,0,1];let[,r,n,o,a=1]=t;return[r,n,o,a].map(Number)},Yr=e=>{if(!e)return;let t=!0;if(kN.test(e)){let[i,s,l,u]=$0(e),[c,d,y]=ut.default.rgb.hsl([i,s,l])||[0,0,0];return{valid:t,value:e,keyword:ut.default.rgb.keyword([i,s,l]),colorSpace:"rgb",rgb:e,hsl:`hsla(${c}, ${d}%, ${y}%, ${u})`,hex:`#${ut.default.rgb.hex([i,s,l]).toLowerCase()}`}}if(RN.test(e)){let[i,s,l,u]=$0(e),[c,d,y]=ut.default.hsl.rgb([i,s,l])||[0,0,0];return{valid:t,value:e,keyword:ut.default.hsl.keyword([i,s,l]),colorSpace:"hsl",rgb:`rgba(${c}, ${d}, ${y}, ${u})`,hsl:e,hex:`#${ut.default.hsl.hex([i,s,l]).toLowerCase()}`}}let r=e.replace("#",""),n=ut.default.keyword.rgb(r)||ut.default.hex.rgb(r),o=ut.default.rgb.hsl(n),a=e;if(/[^#a-f0-9]/i.test(e)?a=r:pl.test(e)&&(a=`#${r}`),a.startsWith("#"))t=pl.test(a);else try{ut.default.keyword.hex(a)}catch{t=!1}return{valid:t,value:a,keyword:ut.default.rgb.keyword(n),colorSpace:"hex",rgb:`rgba(${n[0]}, ${n[1]}, ${n[2]}, 1)`,hsl:`hsla(${o[0]}, ${o[1]}%, ${o[2]}%, 1)`,hex:a}},jN=(e,t,r)=>{if(!e||!t?.valid)return ha[r];if(r!=="hex")return t?.[r]||ha[r];if(!t.hex.startsWith("#"))try{return`#${ut.default.keyword.hex(t.hex)}`}catch{return ha.hex}let n=t.hex.match(DN);if(!n)return pl.test(t.hex)?t.hex:ha.hex;let[o,a,i]=n[1].split("");return`#${o}${o}${a}${a}${i}${i}`},NN=(e,t)=>{let[r,n]=he(e||""),[o,a]=he(()=>Yr(r)),[i,s]=he(o?.colorSpace||"hex");ze(()=>{let d=e||"",y=Yr(d);n(d),a(y),s(y?.colorSpace||"hex")},[e]);let l=Nt(()=>jN(r,o,i).toLowerCase(),[r,o,i]),u=$e(d=>{let y=Yr(d),f=y?.value||d||"";n(f),f===""&&(a(void 0),t(void 0)),y&&(a(y),s(y.colorSpace),t(y.value))},[t]),c=$e(()=>{let d=ya.indexOf(i)+1;d>=ya.length&&(d=0),s(ya[d]);let y=o?.[ya[d]]||"";n(y),t(y)},[o,i,t]);return{value:r,realValue:l,updateValue:u,color:o,colorSpace:i,cycleColorSpace:c}},ga=e=>e.replace(/\s*/,"").toLowerCase(),BN=(e,t,r)=>{let[n,o]=he(t?.valid?[t]:[]);ze(()=>{t===void 0&&o([])},[t]);let a=Nt(()=>(e||[]).map(s=>typeof s=="string"?Yr(s):s.title?{...Yr(s.color),keyword:s.title}:Yr(s.color)).concat(n).filter(Boolean).slice(-27),[e,n]),i=$e(s=>{s?.valid&&(a.some(l=>ga(l[r])===ga(s[r]))||o(l=>l.concat(s)))},[r,a]);return{presets:a,addPreset:i}},nv=({name:e,value:t,onChange:r,onFocus:n,onBlur:o,presetColors:a,startOpen:i=!1,argType:s})=>{let l=$e((0,z0.default)(r,200),[r]),{value:u,realValue:c,updateValue:d,color:y,colorSpace:f,cycleColorSpace:h}=NN(t,l),{presets:g,addPreset:_}=BN(a,y,f),v=FN[f],x=!!s?.table?.readonly;return E.createElement(EN,{"aria-readonly":x},E.createElement(wN,{startOpen:i,trigger:x?[null]:void 0,closeOnOutsideClick:!0,onVisibleChange:()=>_(y),tooltip:E.createElement(SN,null,E.createElement(v,{color:c==="transparent"?"#000000":c,onChange:d,onFocus:n,onBlur:o}),g.length>0&&E.createElement(TN,null,g.map((O,C)=>E.createElement(Lt,{key:`${O.value}-${C}`,hasChrome:!1,tooltip:E.createElement(AN,{note:O.keyword||O.value})},E.createElement(J0,{value:O[f],active:y&&ga(O[f])===ga(y[f]),onClick:()=>d(O.value)})))))},E.createElement(J0,{value:c,style:{margin:4}})),E.createElement(ON,{id:tt(e),value:u,onChange:O=>d(O.target.value),onFocus:O=>O.target.select(),readOnly:x,placeholder:"Choose color..."}),u?E.createElement(IN,{onClick:h}):null)},LN=nv});S();A();T();S();A();T();S();A();T();Da();io();io();S();A();T();var nu=Object.prototype.hasOwnProperty;function ou(e,t,r){for(r of e.keys())if(ar(r,t))return r}function ar(e,t){var r,n,o;if(e===t)return!0;if(e&&t&&(r=e.constructor)===t.constructor){if(r===Date)return e.getTime()===t.getTime();if(r===RegExp)return e.toString()===t.toString();if(r===Array){if((n=e.length)===t.length)for(;n--&&ar(e[n],t[n]););return n===-1}if(r===Set){if(e.size!==t.size)return!1;for(n of e)if(o=n,o&&typeof o=="object"&&(o=ou(t,o),!o)||!t.has(o))return!1;return!0}if(r===Map){if(e.size!==t.size)return!1;for(n of e)if(o=n[0],o&&typeof o=="object"&&(o=ou(t,o),!o)||!ar(n[1],t.get(o)))return!1;return!0}if(r===ArrayBuffer)e=new Uint8Array(e),t=new Uint8Array(t);else if(r===DataView){if((n=e.byteLength)===t.byteLength)for(;n--&&e.getInt8(n)===t.getInt8(n););return n===-1}if(ArrayBuffer.isView(e)){if((n=e.byteLength)===t.byteLength)for(;n--&&e[n]===t[n];);return n===-1}if(!r||typeof e=="object"){n=0;for(r in e)if(nu.call(e,r)&&++n&&!nu.call(t,r)||!(r in t)||!ar(e[r],t[r]))return!1;return Object.keys(t).length===n}}return e!==e&&t!==t}lo();S();A();T();S();A();T();var p8=__STORYBOOK_CORE_EVENTS__,{ARGTYPES_INFO_REQUEST:iu,ARGTYPES_INFO_RESPONSE:Wa,CHANNEL_CREATED:d8,CHANNEL_WS_DISCONNECT:f8,CONFIG_ERROR:su,CREATE_NEW_STORYFILE_REQUEST:y8,CREATE_NEW_STORYFILE_RESPONSE:h8,CURRENT_STORY_WAS_SET:Ka,DOCS_PREPARED:lu,DOCS_RENDERED:uo,FILE_COMPONENT_SEARCH_REQUEST:m8,FILE_COMPONENT_SEARCH_RESPONSE:g8,FORCE_REMOUNT:uu,FORCE_RE_RENDER:co,GLOBALS_UPDATED:cu,NAVIGATE_URL:pu,PLAY_FUNCTION_THREW_EXCEPTION:du,PRELOAD_ENTRIES:fu,PREVIEW_BUILDER_PROGRESS:b8,PREVIEW_KEYDOWN:yu,REGISTER_SUBSCRIPTION:v8,REQUEST_WHATS_NEW_DATA:x8,RESET_STORY_ARGS:po,RESULT_WHATS_NEW_DATA:E8,SAVE_STORY_REQUEST:Ya,SAVE_STORY_RESPONSE:fo,SELECT_STORY:w8,SET_CONFIG:S8,SET_CURRENT_STORY:hu,SET_GLOBALS:mu,SET_INDEX:A8,SET_STORIES:T8,SET_WHATS_NEW_CACHE:C8,SHARED_STATE_CHANGED:_8,SHARED_STATE_SET:O8,STORIES_COLLAPSE_ALL:I8,STORIES_EXPAND_ALL:P8,STORY_ARGS_UPDATED:gu,STORY_CHANGED:bu,STORY_ERRORED:vu,STORY_INDEX_INVALIDATED:xu,STORY_MISSING:Xa,STORY_PREPARED:Eu,STORY_RENDERED:xn,STORY_RENDER_PHASE_CHANGED:kr,STORY_SPECIFIED:wu,STORY_THREW_EXCEPTION:Su,STORY_UNCHANGED:Au,TELEMETRY_ERROR:k8,TOGGLE_WHATS_NEW_NOTIFICATIONS:R8,UNHANDLED_ERRORS_WHILE_PLAYING:Tu,UPDATE_GLOBALS:yo,UPDATE_QUERY_PARAMS:Cu,UPDATE_STORY_ARGS:ho}=__STORYBOOK_CORE_EVENTS__;S();A();T();var J8=__STORYBOOK_API__,{ActiveTabs:$8,Consumer:z8,ManagerContext:V8,Provider:H8,RequestResponseError:G8,addons:mo,combineParameters:W8,controlOrMetaKey:K8,controlOrMetaSymbol:Y8,eventMatchesShortcut:X8,eventToShortcut:Q8,experimental_requestResponse:Qa,isMacLike:Z8,isShortcutTaken:e9,keyToSymbol:t9,merge:r9,mockChannel:n9,optionOrAltSymbol:o9,shortcutMatchesShortcut:a9,shortcutToHumanString:i9,types:_u,useAddonState:s9,useArgTypes:Za,useArgs:Ou,useChannel:l9,useGlobalTypes:u9,useGlobals:Iu,useParameter:Pu,useSharedState:c9,useStoryPrepared:p9,useStorybookApi:d9,useStorybookState:ku}=__STORYBOOK_API__;ni();si();var Nv=ao(dy());S();A();T();var eZ=__STORYBOOK_CLIENT_LOGGER__,{deprecate:tZ,logger:Bo,once:fy,pretty:rZ}=__STORYBOOK_CLIENT_LOGGER__;var Bv=ao(Dy()),Lv=ao(Lh());S();A();T();S();A();T();S();A();T();var Pte=__STORYBOOK_CHANNELS__,{Channel:qh,PostMessageTransport:kte,WebsocketTransport:Rte,createBrowserChannel:Dte}=__STORYBOOK_CHANNELS__;S();A();T();var Lte=__STORYBOOK_CLIENT_LOGGER__,{deprecate:Ct,logger:me,once:Ut,pretty:qte}=__STORYBOOK_CLIENT_LOGGER__;S();A();T();var _P=Object.defineProperty,Pe=(e,t)=>_P(e,"name",{value:t,configurable:!0});function De(e){for(var t=[],r=1;r` - ${i}`).join(` -`)}`),`${o}${a!=null?` - -More info: ${a} -`:""}`}};Pe(Mh,"StorybookError");var Me=Mh,OP=(e=>(e.BLOCKS="BLOCKS",e.DOCS_TOOLS="DOCS-TOOLS",e.PREVIEW_CLIENT_LOGGER="PREVIEW_CLIENT-LOGGER",e.PREVIEW_CHANNELS="PREVIEW_CHANNELS",e.PREVIEW_CORE_EVENTS="PREVIEW_CORE-EVENTS",e.PREVIEW_INSTRUMENTER="PREVIEW_INSTRUMENTER",e.PREVIEW_API="PREVIEW_API",e.PREVIEW_REACT_DOM_SHIM="PREVIEW_REACT-DOM-SHIM",e.PREVIEW_ROUTER="PREVIEW_ROUTER",e.PREVIEW_THEMING="PREVIEW_THEMING",e.RENDERER_HTML="RENDERER_HTML",e.RENDERER_PREACT="RENDERER_PREACT",e.RENDERER_REACT="RENDERER_REACT",e.RENDERER_SERVER="RENDERER_SERVER",e.RENDERER_SVELTE="RENDERER_SVELTE",e.RENDERER_VUE="RENDERER_VUE",e.RENDERER_VUE3="RENDERER_VUE3",e.RENDERER_WEB_COMPONENTS="RENDERER_WEB-COMPONENTS",e.FRAMEWORK_NEXTJS="FRAMEWORK_NEXTJS",e))(OP||{}),Jh=class extends Me{constructor(t){super({category:"PREVIEW_API",code:1,message:De` - Couldn't find story matching id '${t.storyId}' after HMR. - - Did you just rename a story? - - Did you remove it from your CSF file? - - Are you sure a story with the id '${t.storyId}' exists? - - Please check the values in the stories field of your main.js config and see if they would match your CSF File. - - Also check the browser console and terminal for potential error messages.`}),this.data=t}};Pe(Jh,"MissingStoryAfterHmrError");var $h=Jh,IP=class extends Me{constructor(t){super({category:"PREVIEW_API",code:2,documentation:"https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#using-implicit-actions-during-rendering-is-deprecated-for-example-in-the-play-function",message:De` - We detected that you use an implicit action arg while ${t.phase} of your story. - ${t.deprecated?` -This is deprecated and won't work in Storybook 8 anymore. -`:""} - Please provide an explicit spy to your args like this: - import { fn } from '@storybook/test'; - ... - args: { - ${t.name}: fn() - }`}),this.data=t}};Pe(IP,"ImplicitActionsDuringRendering");var zh=class extends Me{constructor(){super({category:"PREVIEW_API",code:3,message:De` - Cannot call \`storyStore.extract()\` without calling \`storyStore.cacheAllCsfFiles()\` first. - - You probably meant to call \`await preview.extract()\` which does the above for you.`})}};Pe(zh,"CalledExtractOnStoreError");var Vh=zh,Hh=class extends Me{constructor(){super({category:"PREVIEW_API",code:4,message:De` - Expected your framework's preset to export a \`renderToCanvas\` field. - - Perhaps it needs to be upgraded for Storybook 7.0?`,documentation:"https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#mainjs-framework-field"})}};Pe(Hh,"MissingRenderToCanvasError");var Gh=Hh,Wh=class extends Me{constructor(t){super({category:"PREVIEW_API",code:5,message:De` - Called \`Preview.${t.methodName}()\` before initialization. - - The preview needs to load the story index before most methods can be called. If you want - to call \`${t.methodName}\`, try \`await preview.initializationPromise;\` first. - - If you didn't call the above code, then likely it was called by an addon that needs to - do the above.`}),this.data=t}};Pe(Wh,"CalledPreviewMethodBeforeInitializationError");var rt=Wh,Kh=class extends Me{constructor(t){super({category:"PREVIEW_API",code:6,message:De` - Error fetching \`/index.json\`: - - ${t.text} - - If you are in development, this likely indicates a problem with your Storybook process, - check the terminal for errors. - - If you are in a deployed Storybook, there may have been an issue deploying the full Storybook - build.`}),this.data=t}};Pe(Kh,"StoryIndexFetchError");var Yh=Kh,Xh=class extends Me{constructor(t){super({category:"PREVIEW_API",code:7,message:De` - Tried to render docs entry ${t.storyId} but it is a MDX file that has no CSF - references, or autodocs for a CSF file that some doesn't refer to itself. - - This likely is an internal error in Storybook's indexing, or you've attached the - \`attached-mdx\` tag to an MDX file that is not attached.`}),this.data=t}};Pe(Xh,"MdxFileWithNoCsfReferencesError");var Qh=Xh,Zh=class extends Me{constructor(){super({category:"PREVIEW_API",code:8,message:De` - Couldn't find any stories in your Storybook. - - - Please check your stories field of your main.js config: does it match correctly? - - Also check the browser console and terminal for error messages.`})}};Pe(Zh,"EmptyIndexError");var em=Zh,tm=class extends Me{constructor(t){super({category:"PREVIEW_API",code:9,message:De` - Couldn't find story matching '${t.storySpecifier}'. - - - Are you sure a story with that id exists? - - Please check your stories field of your main.js config. - - Also check the browser console and terminal for error messages.`}),this.data=t}};Pe(tm,"NoStoryMatchError");var rm=tm,nm=class extends Me{constructor(t){super({category:"PREVIEW_API",code:10,message:De` - Couldn't find story matching id '${t.storyId}' after importing a CSF file. - - The file was indexed as if the story was there, but then after importing the file in the browser - we didn't find the story. Possible reasons: - - You are using a custom story indexer that is misbehaving. - - You have a custom file loader that is removing or renaming exports. - - Please check your browser console and terminal for errors that may explain the issue.`}),this.data=t}};Pe(nm,"MissingStoryFromCsfFileError");var om=nm,am=class extends Me{constructor(){super({category:"PREVIEW_API",code:11,message:De` - Cannot access the Story Store until the index is ready. - - It is not recommended to use methods directly on the Story Store anyway, in Storybook 9 we will - remove access to the store entirely`})}};Pe(am,"StoryStoreAccessedBeforeInitializationError");var im=am,sm=class extends Me{constructor(t){super({category:"PREVIEW_API",code:12,message:De` - Incorrect use of mount in the play function. - - To use mount in the play function, you must satisfy the following two requirements: - - 1. You *must* destructure the mount property from the \`context\` (the argument passed to your play function). - This makes sure that Storybook does not start rendering the story before the play function begins. - - 2. Your Storybook framework or builder must be configured to transpile to ES2017 or newer. - This is because destructuring statements and async/await usages are otherwise transpiled away, - which prevents Storybook from recognizing your usage of \`mount\`. - - Note that Angular is not supported. As async/await is transpiled to support the zone.js polyfill. - - More info: https://storybook.js.org/docs/writing-tests/interaction-testing#run-code-before-the-component-gets-rendered - - Received the following play function: - ${t.playFunction}`}),this.data=t}};Pe(sm,"MountMustBeDestructuredError");var Mo=sm,PP=class extends Me{constructor(){super({category:"PREVIEW_API",code:13,message:De` - You must configure testingLibraryRender to use play in portable stories. - - import { render } from '@testing-library/[renderer]'; - - setProjectAnnotations({ - testingLibraryRender: render, - }); - - For other testing renderers, you can configure \`renderToCanvas\` like so: - - import { render } from 'your-test-renderer'; - - setProjectAnnotations({ - renderToCanvas: ({ storyFn }) => { - const Story = storyFn(); - - // Svelte - render(Story.Component, Story.props); - - // Vue - render(Story); - - // or for React - render(); - }, - });`})}};Pe(PP,"TestingLibraryMustBeConfiguredError");var lm=class extends Me{constructor(t){super({category:"PREVIEW_API",code:14,message:De` - No render function available for storyId '${t.id}' - `}),this.data=t}};Pe(lm,"NoRenderFunctionError");var um=lm,cm=class extends Me{constructor(){super({category:"PREVIEW_API",code:15,message:De` - No component is mounted in your story. - - This usually occurs when you destructure mount in the play function, but forget to call it. - - For example: - - async play({ mount, canvasElement }) { - // 👈 mount should be called: await mount(); - const canvas = within(canvasElement); - const button = await canvas.findByRole('button'); - await userEvent.click(button); - }; - - Make sure to either remove it or call mount in your play function. - `})}};Pe(cm,"NoStoryMountedError");var pm=cm,kP=class extends Me{constructor(){super({category:"FRAMEWORK_NEXTJS",code:1,documentation:"https://storybook.js.org/docs/get-started/nextjs#faq",message:De` - You are importing avif images, but you don't have sharp installed. - - You have to install sharp in order to use image optimization features in Next.js. - `})}};Pe(kP,"NextJsSharpError");var RP=class extends Me{constructor(t){super({category:"FRAMEWORK_NEXTJS",code:2,message:De` - Tried to access router mocks from "${t.importType}" but they were not created yet. You might be running code in an unsupported environment. - `}),this.data=t}};Pe(RP,"NextjsRouterMocksNotAvailable");var dm=class extends Me{constructor(t){super({category:"DOCS-TOOLS",code:1,documentation:"https://github.com/storybookjs/storybook/issues/26606",message:De` - There was a failure when generating detailed ArgTypes in ${t.language} for: - ${JSON.stringify(t.type,null,2)} - - Storybook will fall back to use a generic type description instead. - - This type is either not supported or it is a bug in the docgen generation in Storybook. - If you think this is a bug, please detail it as much as possible in the Github issue. - `}),this.data=t}};Pe(dm,"UnknownArgTypesError");var Uo=dm;S();A();T();var DP=Object.create,mm=Object.defineProperty,FP=Object.getOwnPropertyDescriptor,jP=Object.getOwnPropertyNames,NP=Object.getPrototypeOf,BP=Object.prototype.hasOwnProperty,LP=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),qP=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of jP(t))!BP.call(e,o)&&o!==r&&mm(e,o,{get:()=>t[o],enumerable:!(n=FP(t,o))||n.enumerable});return e},MP=(e,t,r)=>(r=e!=null?DP(NP(e)):{},qP(t||!e||!e.__esModule?mm(r,"default",{value:e,enumerable:!0}):r,e)),UP=LP(e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isEqual=function(){var t=Object.prototype.toString,r=Object.getPrototypeOf,n=Object.getOwnPropertySymbols?function(o){return Object.keys(o).concat(Object.getOwnPropertySymbols(o))}:Object.keys;return function(o,a){return function i(s,l,u){var c,d,y,f=t.call(s),h=t.call(l);if(s===l)return!0;if(s==null||l==null)return!1;if(u.indexOf(s)>-1&&u.indexOf(l)>-1)return!0;if(u.push(s,l),f!=h||(c=n(s),d=n(l),c.length!=d.length||c.some(function(g){return!i(s[g],l[g],u)})))return!1;switch(f.slice(8,-1)){case"Symbol":return s.valueOf()==l.valueOf();case"Date":case"Number":return+s==+l||+s!=+s&&+l!=+l;case"RegExp":case"Function":case"String":case"Boolean":return""+s==""+l;case"Set":case"Map":c=s.entries(),d=l.entries();do if(!i((y=c.next()).value,d.next().value,u))return!1;while(!y.done);return!0;case"ArrayBuffer":s=new Uint8Array(s),l=new Uint8Array(l);case"DataView":s=new Uint8Array(s.buffer),l=new Uint8Array(l.buffer);case"Float32Array":case"Float64Array":case"Int8Array":case"Int16Array":case"Int32Array":case"Uint8Array":case"Uint16Array":case"Uint32Array":case"Uint8ClampedArray":case"Arguments":case"Array":if(s.length!=l.length)return!1;for(y=0;y`${r} ${n}${o}`).replace(/([a-z])([A-Z])/g,(t,r,n)=>`${r} ${n}`).replace(/([a-z])([0-9])/gi,(t,r,n)=>`${r} ${n}`).replace(/([0-9])([a-z])/gi,(t,r,n)=>`${r} ${n}`).replace(/(\s|^)(\w)/g,(t,r,n)=>`${r}${n.toUpperCase()}`).replace(/ +/g," ").trim()}var fm=MP(UP()),gm=e=>e.map(t=>typeof t<"u").filter(Boolean).length,$P=(e,t)=>{let{exists:r,eq:n,neq:o,truthy:a}=e;if(gm([r,n,o,a])>1)throw new Error(`Invalid conditional test ${JSON.stringify({exists:r,eq:n,neq:o})}`);if(typeof n<"u")return(0,fm.isEqual)(t,n);if(typeof o<"u")return!(0,fm.isEqual)(t,o);if(typeof r<"u"){let i=typeof t<"u";return r?i:!i}return typeof a>"u"||a?!!t:!t},bm=(e,t,r)=>{if(!e.if)return!0;let{arg:n,global:o}=e.if;if(gm([n,o])!==1)throw new Error(`Invalid conditional value ${JSON.stringify({arg:n,global:o})}`);let a=n?t[n]:r[o];return $P(e.if,a)},Vi=e=>e.toLowerCase().replace(/[ ’–—―′¿'`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi,"-").replace(/-+/g,"-").replace(/^-+/,"").replace(/-+$/,""),ym=(e,t)=>{let r=Vi(e);if(r==="")throw new Error(`Invalid ${t} '${e}', must include alphanumeric characters`);return r},vm=(e,t)=>`${ym(e,"kind")}${t?`--${ym(t,"name")}`:""}`,xm=e=>JP(e);function hm(e,t){return Array.isArray(t)?t.includes(e):e.match(t)}function Jo(e,{includeStories:t,excludeStories:r}){return e!=="__esModule"&&(!t||hm(e,t))&&(!r||!hm(e,r))}var Em=(...e)=>{let t=e.reduce((r,n)=>(n.startsWith("!")?r.delete(n.slice(1)):r.add(n),r),new Set);return Array.from(t)};var zP=Object.create,ds=Object.defineProperty,VP=Object.getOwnPropertyDescriptor,HP=Object.getOwnPropertyNames,GP=Object.getPrototypeOf,WP=Object.prototype.hasOwnProperty,m=(e,t)=>ds(e,"name",{value:t,configurable:!0}),$o=(e=>typeof et<"u"?et:typeof Proxy<"u"?new Proxy(e,{get:(t,r)=>(typeof et<"u"?et:t)[r]}):e)(function(e){if(typeof et<"u")return et.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')}),L=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),KP=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of HP(t))!WP.call(e,o)&&o!==r&&ds(e,o,{get:()=>t[o],enumerable:!(n=VP(t,o))||n.enumerable});return e},Qe=(e,t,r)=>(r=e!=null?zP(GP(e)):{},KP(t||!e||!e.__esModule?ds(r,"default",{value:e,enumerable:!0}):r,e)),Lm=L((e,t)=>{(function(r){if(typeof e=="object"&&typeof t<"u")t.exports=r();else if(typeof define=="function"&&define.amd)define([],r);else{var n;typeof window<"u"||typeof window<"u"?n=window:typeof self<"u"?n=self:n=this,n.memoizerific=r()}})(function(){var r,n,o;return m(function a(i,s,l){function u(y,f){if(!s[y]){if(!i[y]){var h=typeof $o=="function"&&$o;if(!f&&h)return h(y,!0);if(c)return c(y,!0);var g=new Error("Cannot find module '"+y+"'");throw g.code="MODULE_NOT_FOUND",g}var _=s[y]={exports:{}};i[y][0].call(_.exports,function(v){var x=i[y][1][v];return u(x||v)},_,_.exports,a,i,s,l)}return s[y].exports}m(u,"s");for(var c=typeof $o=="function"&&$o,d=0;d=0)return this.lastItem=this.list[c],this.list[c].val},l.prototype.set=function(u,c){var d;return this.lastItem&&this.isEqual(this.lastItem.key,u)?(this.lastItem.val=c,this):(d=this.indexOf(u),d>=0?(this.lastItem=this.list[d],this.list[d].val=c,this):(this.lastItem={key:u,val:c},this.list.push(this.lastItem),this.size++,this))},l.prototype.delete=function(u){var c;if(this.lastItem&&this.isEqual(this.lastItem.key,u)&&(this.lastItem=void 0),c=this.indexOf(u),c>=0)return this.size--,this.list.splice(c,1)[0]},l.prototype.has=function(u){var c;return this.lastItem&&this.isEqual(this.lastItem.key,u)?!0:(c=this.indexOf(u),c>=0?(this.lastItem=this.list[c],!0):!1)},l.prototype.forEach=function(u,c){var d;for(d=0;d0&&(I[C]={cacheItem:v,arg:arguments[C]},P?u(h,I):h.push(I),h.length>y&&c(h.shift())),_.wasMemoized=P,_.numArgs=C+1,O},"memoizerific");return _.limit=y,_.wasMemoized=!1,_.cache=f,_.lru=h,_}};function u(y,f){var h=y.length,g=f.length,_,v,x;for(v=0;v=0&&(h=y[_],g=h.cacheItem.get(h.arg),!g||!g.size);_--)h.cacheItem.delete(h.arg)}m(c,"removeCachedResult");function d(y,f){return y===f||y!==y&&f!==f}m(d,"isEqual")},{"map-or-similar":1}]},{},[3])(3)})}),qm=L((e,t)=>{var r=typeof window=="object"&&window&&window.Object===Object&&window;t.exports=r}),It=L((e,t)=>{var r=qm(),n=typeof self=="object"&&self&&self.Object===Object&&self,o=r||n||Function("return this")();t.exports=o}),Ln=L((e,t)=>{var r=It(),n=r.Symbol;t.exports=n}),YP=L((e,t)=>{var r=Ln(),n=Object.prototype,o=n.hasOwnProperty,a=n.toString,i=r?r.toStringTag:void 0;function s(l){var u=o.call(l,i),c=l[i];try{l[i]=void 0;var d=!0}catch{}var y=a.call(l);return d&&(u?l[i]=c:delete l[i]),y}m(s,"getRawTag"),t.exports=s}),XP=L((e,t)=>{var r=Object.prototype,n=r.toString;function o(a){return n.call(a)}m(o,"objectToString"),t.exports=o}),Gr=L((e,t)=>{var r=Ln(),n=YP(),o=XP(),a="[object Null]",i="[object Undefined]",s=r?r.toStringTag:void 0;function l(u){return u==null?u===void 0?i:a:s&&s in Object(u)?n(u):o(u)}m(l,"baseGetTag"),t.exports=l}),qn=L((e,t)=>{function r(n){var o=typeof n;return n!=null&&(o=="object"||o=="function")}m(r,"isObject"),t.exports=r}),Mm=L((e,t)=>{var r=Gr(),n=qn(),o="[object AsyncFunction]",a="[object Function]",i="[object GeneratorFunction]",s="[object Proxy]";function l(u){if(!n(u))return!1;var c=r(u);return c==a||c==i||c==o||c==s}m(l,"isFunction"),t.exports=l}),QP=L((e,t)=>{var r=It(),n=r["__core-js_shared__"];t.exports=n}),ZP=L((e,t)=>{var r=QP(),n=function(){var a=/[^.]+$/.exec(r&&r.keys&&r.keys.IE_PROTO||"");return a?"Symbol(src)_1."+a:""}();function o(a){return!!n&&n in a}m(o,"isMasked"),t.exports=o}),Um=L((e,t)=>{var r=Function.prototype,n=r.toString;function o(a){if(a!=null){try{return n.call(a)}catch{}try{return a+""}catch{}}return""}m(o,"toSource"),t.exports=o}),ek=L((e,t)=>{var r=Mm(),n=ZP(),o=qn(),a=Um(),i=/[\\^$.*+?()[\]{}|]/g,s=/^\[object .+?Constructor\]$/,l=Function.prototype,u=Object.prototype,c=l.toString,d=u.hasOwnProperty,y=RegExp("^"+c.call(d).replace(i,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function f(h){if(!o(h)||n(h))return!1;var g=r(h)?y:s;return g.test(a(h))}m(f,"baseIsNative"),t.exports=f}),tk=L((e,t)=>{function r(n,o){return n?.[o]}m(r,"getValue"),t.exports=r}),dr=L((e,t)=>{var r=ek(),n=tk();function o(a,i){var s=n(a,i);return r(s)?s:void 0}m(o,"getNative"),t.exports=o}),Jm=L((e,t)=>{var r=dr(),n=function(){try{var o=r(Object,"defineProperty");return o({},"",{}),o}catch{}}();t.exports=n}),$m=L((e,t)=>{var r=Jm();function n(o,a,i){a=="__proto__"&&r?r(o,a,{configurable:!0,enumerable:!0,value:i,writable:!0}):o[a]=i}m(n,"baseAssignValue"),t.exports=n}),rk=L((e,t)=>{function r(n){return function(o,a,i){for(var s=-1,l=Object(o),u=i(o),c=u.length;c--;){var d=u[n?c:++s];if(a(l[d],d,l)===!1)break}return o}}m(r,"createBaseFor"),t.exports=r}),nk=L((e,t)=>{var r=rk(),n=r();t.exports=n}),ok=L((e,t)=>{function r(n,o){for(var a=-1,i=Array(n);++a{function r(n){return n!=null&&typeof n=="object"}m(r,"isObjectLike"),t.exports=r}),ak=L((e,t)=>{var r=Gr(),n=Wr(),o="[object Arguments]";function a(i){return n(i)&&r(i)==o}m(a,"baseIsArguments"),t.exports=a}),fs=L((e,t)=>{var r=ak(),n=Wr(),o=Object.prototype,a=o.hasOwnProperty,i=o.propertyIsEnumerable,s=r(function(){return arguments}())?r:function(l){return n(l)&&a.call(l,"callee")&&!i.call(l,"callee")};t.exports=s}),Pt=L((e,t)=>{var r=Array.isArray;t.exports=r}),ik=L((e,t)=>{function r(){return!1}m(r,"stubFalse"),t.exports=r}),zm=L((e,t)=>{var r=It(),n=ik(),o=typeof e=="object"&&e&&!e.nodeType&&e,a=o&&typeof t=="object"&&t&&!t.nodeType&&t,i=a&&a.exports===o,s=i?r.Buffer:void 0,l=s?s.isBuffer:void 0,u=l||n;t.exports=u}),ys=L((e,t)=>{var r=9007199254740991,n=/^(?:0|[1-9]\d*)$/;function o(a,i){var s=typeof a;return i=i??r,!!i&&(s=="number"||s!="symbol"&&n.test(a))&&a>-1&&a%1==0&&a{var r=9007199254740991;function n(o){return typeof o=="number"&&o>-1&&o%1==0&&o<=r}m(n,"isLength"),t.exports=n}),sk=L((e,t)=>{var r=Gr(),n=hs(),o=Wr(),a="[object Arguments]",i="[object Array]",s="[object Boolean]",l="[object Date]",u="[object Error]",c="[object Function]",d="[object Map]",y="[object Number]",f="[object Object]",h="[object RegExp]",g="[object Set]",_="[object String]",v="[object WeakMap]",x="[object ArrayBuffer]",O="[object DataView]",C="[object Float32Array]",I="[object Float64Array]",P="[object Int8Array]",F="[object Int16Array]",D="[object Int32Array]",U="[object Uint8Array]",G="[object Uint8ClampedArray]",X="[object Uint16Array]",Q="[object Uint32Array]",V={};V[C]=V[I]=V[P]=V[F]=V[D]=V[U]=V[G]=V[X]=V[Q]=!0,V[a]=V[i]=V[x]=V[s]=V[O]=V[l]=V[u]=V[c]=V[d]=V[y]=V[f]=V[h]=V[g]=V[_]=V[v]=!1;function R(q){return o(q)&&n(q.length)&&!!V[r(q)]}m(R,"baseIsTypedArray"),t.exports=R}),lk=L((e,t)=>{function r(n){return function(o){return n(o)}}m(r,"baseUnary"),t.exports=r}),uk=L((e,t)=>{var r=qm(),n=typeof e=="object"&&e&&!e.nodeType&&e,o=n&&typeof t=="object"&&t&&!t.nodeType&&t,a=o&&o.exports===n,i=a&&r.process,s=function(){try{var l=o&&o.require&&o.require("util").types;return l||i&&i.binding&&i.binding("util")}catch{}}();t.exports=s}),Vm=L((e,t)=>{var r=sk(),n=lk(),o=uk(),a=o&&o.isTypedArray,i=a?n(a):r;t.exports=i}),Hm=L((e,t)=>{var r=ok(),n=fs(),o=Pt(),a=zm(),i=ys(),s=Vm(),l=Object.prototype,u=l.hasOwnProperty;function c(d,y){var f=o(d),h=!f&&n(d),g=!f&&!h&&a(d),_=!f&&!h&&!g&&s(d),v=f||h||g||_,x=v?r(d.length,String):[],O=x.length;for(var C in d)(y||u.call(d,C))&&!(v&&(C=="length"||g&&(C=="offset"||C=="parent")||_&&(C=="buffer"||C=="byteLength"||C=="byteOffset")||i(C,O)))&&x.push(C);return x}m(c,"arrayLikeKeys"),t.exports=c}),Gm=L((e,t)=>{var r=Object.prototype;function n(o){var a=o&&o.constructor,i=typeof a=="function"&&a.prototype||r;return o===i}m(n,"isPrototype"),t.exports=n}),Wm=L((e,t)=>{function r(n,o){return function(a){return n(o(a))}}m(r,"overArg"),t.exports=r}),ck=L((e,t)=>{var r=Wm(),n=r(Object.keys,Object);t.exports=n}),pk=L((e,t)=>{var r=Gm(),n=ck(),o=Object.prototype,a=o.hasOwnProperty;function i(s){if(!r(s))return n(s);var l=[];for(var u in Object(s))a.call(s,u)&&u!="constructor"&&l.push(u);return l}m(i,"baseKeys"),t.exports=i}),Km=L((e,t)=>{var r=Mm(),n=hs();function o(a){return a!=null&&n(a.length)&&!r(a)}m(o,"isArrayLike"),t.exports=o}),ms=L((e,t)=>{var r=Hm(),n=pk(),o=Km();function a(i){return o(i)?r(i):n(i)}m(a,"keys"),t.exports=a}),dk=L((e,t)=>{var r=nk(),n=ms();function o(a,i){return a&&r(a,i,n)}m(o,"baseForOwn"),t.exports=o}),fk=L((e,t)=>{function r(){this.__data__=[],this.size=0}m(r,"listCacheClear"),t.exports=r}),gs=L((e,t)=>{function r(n,o){return n===o||n!==n&&o!==o}m(r,"eq"),t.exports=r}),Yo=L((e,t)=>{var r=gs();function n(o,a){for(var i=o.length;i--;)if(r(o[i][0],a))return i;return-1}m(n,"assocIndexOf"),t.exports=n}),yk=L((e,t)=>{var r=Yo(),n=Array.prototype,o=n.splice;function a(i){var s=this.__data__,l=r(s,i);if(l<0)return!1;var u=s.length-1;return l==u?s.pop():o.call(s,l,1),--this.size,!0}m(a,"listCacheDelete"),t.exports=a}),hk=L((e,t)=>{var r=Yo();function n(o){var a=this.__data__,i=r(a,o);return i<0?void 0:a[i][1]}m(n,"listCacheGet"),t.exports=n}),mk=L((e,t)=>{var r=Yo();function n(o){return r(this.__data__,o)>-1}m(n,"listCacheHas"),t.exports=n}),gk=L((e,t)=>{var r=Yo();function n(o,a){var i=this.__data__,s=r(i,o);return s<0?(++this.size,i.push([o,a])):i[s][1]=a,this}m(n,"listCacheSet"),t.exports=n}),Xo=L((e,t)=>{var r=fk(),n=yk(),o=hk(),a=mk(),i=gk();function s(l){var u=-1,c=l==null?0:l.length;for(this.clear();++u{var r=Xo();function n(){this.__data__=new r,this.size=0}m(n,"stackClear"),t.exports=n}),vk=L((e,t)=>{function r(n){var o=this.__data__,a=o.delete(n);return this.size=o.size,a}m(r,"stackDelete"),t.exports=r}),xk=L((e,t)=>{function r(n){return this.__data__.get(n)}m(r,"stackGet"),t.exports=r}),Ek=L((e,t)=>{function r(n){return this.__data__.has(n)}m(r,"stackHas"),t.exports=r}),bs=L((e,t)=>{var r=dr(),n=It(),o=r(n,"Map");t.exports=o}),Qo=L((e,t)=>{var r=dr(),n=r(Object,"create");t.exports=n}),wk=L((e,t)=>{var r=Qo();function n(){this.__data__=r?r(null):{},this.size=0}m(n,"hashClear"),t.exports=n}),Sk=L((e,t)=>{function r(n){var o=this.has(n)&&delete this.__data__[n];return this.size-=o?1:0,o}m(r,"hashDelete"),t.exports=r}),Ak=L((e,t)=>{var r=Qo(),n="__lodash_hash_undefined__",o=Object.prototype,a=o.hasOwnProperty;function i(s){var l=this.__data__;if(r){var u=l[s];return u===n?void 0:u}return a.call(l,s)?l[s]:void 0}m(i,"hashGet"),t.exports=i}),Tk=L((e,t)=>{var r=Qo(),n=Object.prototype,o=n.hasOwnProperty;function a(i){var s=this.__data__;return r?s[i]!==void 0:o.call(s,i)}m(a,"hashHas"),t.exports=a}),Ck=L((e,t)=>{var r=Qo(),n="__lodash_hash_undefined__";function o(a,i){var s=this.__data__;return this.size+=this.has(a)?0:1,s[a]=r&&i===void 0?n:i,this}m(o,"hashSet"),t.exports=o}),_k=L((e,t)=>{var r=wk(),n=Sk(),o=Ak(),a=Tk(),i=Ck();function s(l){var u=-1,c=l==null?0:l.length;for(this.clear();++u{var r=_k(),n=Xo(),o=bs();function a(){this.size=0,this.__data__={hash:new r,map:new(o||n),string:new r}}m(a,"mapCacheClear"),t.exports=a}),Ik=L((e,t)=>{function r(n){var o=typeof n;return o=="string"||o=="number"||o=="symbol"||o=="boolean"?n!=="__proto__":n===null}m(r,"isKeyable"),t.exports=r}),Zo=L((e,t)=>{var r=Ik();function n(o,a){var i=o.__data__;return r(a)?i[typeof a=="string"?"string":"hash"]:i.map}m(n,"getMapData"),t.exports=n}),Pk=L((e,t)=>{var r=Zo();function n(o){var a=r(this,o).delete(o);return this.size-=a?1:0,a}m(n,"mapCacheDelete"),t.exports=n}),kk=L((e,t)=>{var r=Zo();function n(o){return r(this,o).get(o)}m(n,"mapCacheGet"),t.exports=n}),Rk=L((e,t)=>{var r=Zo();function n(o){return r(this,o).has(o)}m(n,"mapCacheHas"),t.exports=n}),Dk=L((e,t)=>{var r=Zo();function n(o,a){var i=r(this,o),s=i.size;return i.set(o,a),this.size+=i.size==s?0:1,this}m(n,"mapCacheSet"),t.exports=n}),vs=L((e,t)=>{var r=Ok(),n=Pk(),o=kk(),a=Rk(),i=Dk();function s(l){var u=-1,c=l==null?0:l.length;for(this.clear();++u{var r=Xo(),n=bs(),o=vs(),a=200;function i(s,l){var u=this.__data__;if(u instanceof r){var c=u.__data__;if(!n||c.length{var r=Xo(),n=bk(),o=vk(),a=xk(),i=Ek(),s=Fk();function l(u){var c=this.__data__=new r(u);this.size=c.size}m(l,"Stack"),l.prototype.clear=n,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=s,t.exports=l}),jk=L((e,t)=>{var r="__lodash_hash_undefined__";function n(o){return this.__data__.set(o,r),this}m(n,"setCacheAdd"),t.exports=n}),Nk=L((e,t)=>{function r(n){return this.__data__.has(n)}m(r,"setCacheHas"),t.exports=r}),Bk=L((e,t)=>{var r=vs(),n=jk(),o=Nk();function a(i){var s=-1,l=i==null?0:i.length;for(this.__data__=new r;++s{function r(n,o){for(var a=-1,i=n==null?0:n.length;++a{function r(n,o){return n.has(o)}m(r,"cacheHas"),t.exports=r}),Xm=L((e,t)=>{var r=Bk(),n=Lk(),o=qk(),a=1,i=2;function s(l,u,c,d,y,f){var h=c&a,g=l.length,_=u.length;if(g!=_&&!(h&&_>g))return!1;var v=f.get(l),x=f.get(u);if(v&&x)return v==u&&x==l;var O=-1,C=!0,I=c&i?new r:void 0;for(f.set(l,u),f.set(u,l);++O{var r=It(),n=r.Uint8Array;t.exports=n}),Uk=L((e,t)=>{function r(n){var o=-1,a=Array(n.size);return n.forEach(function(i,s){a[++o]=[s,i]}),a}m(r,"mapToArray"),t.exports=r}),Jk=L((e,t)=>{function r(n){var o=-1,a=Array(n.size);return n.forEach(function(i){a[++o]=i}),a}m(r,"setToArray"),t.exports=r}),$k=L((e,t)=>{var r=Ln(),n=Mk(),o=gs(),a=Xm(),i=Uk(),s=Jk(),l=1,u=2,c="[object Boolean]",d="[object Date]",y="[object Error]",f="[object Map]",h="[object Number]",g="[object RegExp]",_="[object Set]",v="[object String]",x="[object Symbol]",O="[object ArrayBuffer]",C="[object DataView]",I=r?r.prototype:void 0,P=I?I.valueOf:void 0;function F(D,U,G,X,Q,V,R){switch(G){case C:if(D.byteLength!=U.byteLength||D.byteOffset!=U.byteOffset)return!1;D=D.buffer,U=U.buffer;case O:return!(D.byteLength!=U.byteLength||!V(new n(D),new n(U)));case c:case d:case h:return o(+D,+U);case y:return D.name==U.name&&D.message==U.message;case g:case v:return D==U+"";case f:var q=i;case _:var M=X&l;if(q||(q=s),D.size!=U.size&&!M)return!1;var Y=R.get(D);if(Y)return Y==U;X|=u,R.set(D,U);var te=a(q(D),q(U),X,Q,V,R);return R.delete(D),te;case x:if(P)return P.call(D)==P.call(U)}return!1}m(F,"equalByTag"),t.exports=F}),xs=L((e,t)=>{function r(n,o){for(var a=-1,i=o.length,s=n.length;++a{var r=xs(),n=Pt();function o(a,i,s){var l=i(a);return n(a)?l:r(l,s(a))}m(o,"baseGetAllKeys"),t.exports=o}),zk=L((e,t)=>{function r(n,o){for(var a=-1,i=n==null?0:n.length,s=0,l=[];++a{function r(){return[]}m(r,"stubArray"),t.exports=r}),eg=L((e,t)=>{var r=zk(),n=Zm(),o=Object.prototype,a=o.propertyIsEnumerable,i=Object.getOwnPropertySymbols,s=i?function(l){return l==null?[]:(l=Object(l),r(i(l),function(u){return a.call(l,u)}))}:n;t.exports=s}),Vk=L((e,t)=>{var r=Qm(),n=eg(),o=ms();function a(i){return r(i,o,n)}m(a,"getAllKeys"),t.exports=a}),Hk=L((e,t)=>{var r=Vk(),n=1,o=Object.prototype,a=o.hasOwnProperty;function i(s,l,u,c,d,y){var f=u&n,h=r(s),g=h.length,_=r(l),v=_.length;if(g!=v&&!f)return!1;for(var x=g;x--;){var O=h[x];if(!(f?O in l:a.call(l,O)))return!1}var C=y.get(s),I=y.get(l);if(C&&I)return C==l&&I==s;var P=!0;y.set(s,l),y.set(l,s);for(var F=f;++x{var r=dr(),n=It(),o=r(n,"DataView");t.exports=o}),Wk=L((e,t)=>{var r=dr(),n=It(),o=r(n,"Promise");t.exports=o}),Kk=L((e,t)=>{var r=dr(),n=It(),o=r(n,"Set");t.exports=o}),Yk=L((e,t)=>{var r=dr(),n=It(),o=r(n,"WeakMap");t.exports=o}),Xk=L((e,t)=>{var r=Gk(),n=bs(),o=Wk(),a=Kk(),i=Yk(),s=Gr(),l=Um(),u="[object Map]",c="[object Object]",d="[object Promise]",y="[object Set]",f="[object WeakMap]",h="[object DataView]",g=l(r),_=l(n),v=l(o),x=l(a),O=l(i),C=s;(r&&C(new r(new ArrayBuffer(1)))!=h||n&&C(new n)!=u||o&&C(o.resolve())!=d||a&&C(new a)!=y||i&&C(new i)!=f)&&(C=m(function(I){var P=s(I),F=P==c?I.constructor:void 0,D=F?l(F):"";if(D)switch(D){case g:return h;case _:return u;case v:return d;case x:return y;case O:return f}return P},"getTag")),t.exports=C}),Qk=L((e,t)=>{var r=Ym(),n=Xm(),o=$k(),a=Hk(),i=Xk(),s=Pt(),l=zm(),u=Vm(),c=1,d="[object Arguments]",y="[object Array]",f="[object Object]",h=Object.prototype,g=h.hasOwnProperty;function _(v,x,O,C,I,P){var F=s(v),D=s(x),U=F?y:i(v),G=D?y:i(x);U=U==d?f:U,G=G==d?f:G;var X=U==f,Q=G==f,V=U==G;if(V&&l(v)){if(!l(x))return!1;F=!0,X=!1}if(V&&!X)return P||(P=new r),F||u(v)?n(v,x,O,C,I,P):o(v,x,U,O,C,I,P);if(!(O&c)){var R=X&&g.call(v,"__wrapped__"),q=Q&&g.call(x,"__wrapped__");if(R||q){var M=R?v.value():v,Y=q?x.value():x;return P||(P=new r),I(M,Y,O,C,P)}}return V?(P||(P=new r),a(v,x,O,C,I,P)):!1}m(_,"baseIsEqualDeep"),t.exports=_}),tg=L((e,t)=>{var r=Qk(),n=Wr();function o(a,i,s,l,u){return a===i?!0:a==null||i==null||!n(a)&&!n(i)?a!==a&&i!==i:r(a,i,s,l,o,u)}m(o,"baseIsEqual"),t.exports=o}),Zk=L((e,t)=>{var r=Ym(),n=tg(),o=1,a=2;function i(s,l,u,c){var d=u.length,y=d,f=!c;if(s==null)return!y;for(s=Object(s);d--;){var h=u[d];if(f&&h[2]?h[1]!==s[h[0]]:!(h[0]in s))return!1}for(;++d{var r=qn();function n(o){return o===o&&!r(o)}m(n,"isStrictComparable"),t.exports=n}),eR=L((e,t)=>{var r=rg(),n=ms();function o(a){for(var i=n(a),s=i.length;s--;){var l=i[s],u=a[l];i[s]=[l,u,r(u)]}return i}m(o,"getMatchData"),t.exports=o}),ng=L((e,t)=>{function r(n,o){return function(a){return a==null?!1:a[n]===o&&(o!==void 0||n in Object(a))}}m(r,"matchesStrictComparable"),t.exports=r}),tR=L((e,t)=>{var r=Zk(),n=eR(),o=ng();function a(i){var s=n(i);return s.length==1&&s[0][2]?o(s[0][0],s[0][1]):function(l){return l===i||r(l,i,s)}}m(a,"baseMatches"),t.exports=a}),Es=L((e,t)=>{var r=Gr(),n=Wr(),o="[object Symbol]";function a(i){return typeof i=="symbol"||n(i)&&r(i)==o}m(a,"isSymbol"),t.exports=a}),ws=L((e,t)=>{var r=Pt(),n=Es(),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;function i(s,l){if(r(s))return!1;var u=typeof s;return u=="number"||u=="symbol"||u=="boolean"||s==null||n(s)?!0:a.test(s)||!o.test(s)||l!=null&&s in Object(l)}m(i,"isKey"),t.exports=i}),rR=L((e,t)=>{var r=vs(),n="Expected a function";function o(a,i){if(typeof a!="function"||i!=null&&typeof i!="function")throw new TypeError(n);var s=m(function(){var l=arguments,u=i?i.apply(this,l):l[0],c=s.cache;if(c.has(u))return c.get(u);var d=a.apply(this,l);return s.cache=c.set(u,d)||c,d},"memoized");return s.cache=new(o.Cache||r),s}m(o,"memoize"),o.Cache=r,t.exports=o}),nR=L((e,t)=>{var r=rR(),n=500;function o(a){var i=r(a,function(l){return s.size===n&&s.clear(),l}),s=i.cache;return i}m(o,"memoizeCapped"),t.exports=o}),oR=L((e,t)=>{var r=nR(),n=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,a=r(function(i){var s=[];return i.charCodeAt(0)===46&&s.push(""),i.replace(n,function(l,u,c,d){s.push(c?d.replace(o,"$1"):u||l)}),s});t.exports=a}),og=L((e,t)=>{function r(n,o){for(var a=-1,i=n==null?0:n.length,s=Array(i);++a{var r=Ln(),n=og(),o=Pt(),a=Es(),i=1/0,s=r?r.prototype:void 0,l=s?s.toString:void 0;function u(c){if(typeof c=="string")return c;if(o(c))return n(c,u)+"";if(a(c))return l?l.call(c):"";var d=c+"";return d=="0"&&1/c==-i?"-0":d}m(u,"baseToString"),t.exports=u}),iR=L((e,t)=>{var r=aR();function n(o){return o==null?"":r(o)}m(n,"toString"),t.exports=n}),ea=L((e,t)=>{var r=Pt(),n=ws(),o=oR(),a=iR();function i(s,l){return r(s)?s:n(s,l)?[s]:o(a(s))}m(i,"castPath"),t.exports=i}),Mn=L((e,t)=>{var r=Es(),n=1/0;function o(a){if(typeof a=="string"||r(a))return a;var i=a+"";return i=="0"&&1/a==-n?"-0":i}m(o,"toKey"),t.exports=o}),Ss=L((e,t)=>{var r=ea(),n=Mn();function o(a,i){i=r(i,a);for(var s=0,l=i.length;a!=null&&s{var r=Ss();function n(o,a,i){var s=o==null?void 0:r(o,a);return s===void 0?i:s}m(n,"get"),t.exports=n}),lR=L((e,t)=>{function r(n,o){return n!=null&&o in Object(n)}m(r,"baseHasIn"),t.exports=r}),uR=L((e,t)=>{var r=ea(),n=fs(),o=Pt(),a=ys(),i=hs(),s=Mn();function l(u,c,d){c=r(c,u);for(var y=-1,f=c.length,h=!1;++y{var r=lR(),n=uR();function o(a,i){return a!=null&&n(a,i,r)}m(o,"hasIn"),t.exports=o}),cR=L((e,t)=>{var r=tg(),n=sR(),o=ag(),a=ws(),i=rg(),s=ng(),l=Mn(),u=1,c=2;function d(y,f){return a(y)&&i(f)?s(l(y),f):function(h){var g=n(h,y);return g===void 0&&g===f?o(h,y):r(f,g,u|c)}}m(d,"baseMatchesProperty"),t.exports=d}),ig=L((e,t)=>{function r(n){return n}m(r,"identity"),t.exports=r}),pR=L((e,t)=>{function r(n){return function(o){return o?.[n]}}m(r,"baseProperty"),t.exports=r}),dR=L((e,t)=>{var r=Ss();function n(o){return function(a){return r(a,o)}}m(n,"basePropertyDeep"),t.exports=n}),fR=L((e,t)=>{var r=pR(),n=dR(),o=ws(),a=Mn();function i(s){return o(s)?r(a(s)):n(s)}m(i,"property"),t.exports=i}),sg=L((e,t)=>{var r=tR(),n=cR(),o=ig(),a=Pt(),i=fR();function s(l){return typeof l=="function"?l:l==null?o:typeof l=="object"?a(l)?n(l[0],l[1]):r(l):i(l)}m(s,"baseIteratee"),t.exports=s}),ta=L((e,t)=>{var r=$m(),n=dk(),o=sg();function a(i,s){var l={};return s=o(s,3),n(i,function(u,c,d){r(l,c,s(u,c,d))}),l}m(a,"mapValues"),t.exports=a}),yR=L((e,t)=>{var r=$m(),n=gs(),o=Object.prototype,a=o.hasOwnProperty;function i(s,l,u){var c=s[l];(!(a.call(s,l)&&n(c,u))||u===void 0&&!(l in s))&&r(s,l,u)}m(i,"assignValue"),t.exports=i}),hR=L((e,t)=>{var r=yR(),n=ea(),o=ys(),a=qn(),i=Mn();function s(l,u,c,d){if(!a(l))return l;u=n(u,l);for(var y=-1,f=u.length,h=f-1,g=l;g!=null&&++y{var r=Ss(),n=hR(),o=ea();function a(i,s,l){for(var u=-1,c=s.length,d={};++u{var r=lg(),n=ag();function o(a,i){return r(a,i,function(s,l){return n(a,l)})}m(o,"basePick"),t.exports=o}),gR=L((e,t)=>{var r=Ln(),n=fs(),o=Pt(),a=r?r.isConcatSpreadable:void 0;function i(s){return o(s)||n(s)||!!(a&&s&&s[a])}m(i,"isFlattenable"),t.exports=i}),bR=L((e,t)=>{var r=xs(),n=gR();function o(a,i,s,l,u){var c=-1,d=a.length;for(s||(s=n),u||(u=[]);++c0&&s(y)?i>1?o(y,i-1,s,l,u):r(u,y):l||(u[u.length]=y)}return u}m(o,"baseFlatten"),t.exports=o}),vR=L((e,t)=>{var r=bR();function n(o){var a=o==null?0:o.length;return a?r(o,1):[]}m(n,"flatten"),t.exports=n}),xR=L((e,t)=>{function r(n,o,a){switch(a.length){case 0:return n.call(o);case 1:return n.call(o,a[0]);case 2:return n.call(o,a[0],a[1]);case 3:return n.call(o,a[0],a[1],a[2])}return n.apply(o,a)}m(r,"apply"),t.exports=r}),ER=L((e,t)=>{var r=xR(),n=Math.max;function o(a,i,s){return i=n(i===void 0?a.length-1:i,0),function(){for(var l=arguments,u=-1,c=n(l.length-i,0),d=Array(c);++u{function r(n){return function(){return n}}m(r,"constant"),t.exports=r}),SR=L((e,t)=>{var r=wR(),n=Jm(),o=ig(),a=n?function(i,s){return n(i,"toString",{configurable:!0,enumerable:!1,value:r(s),writable:!0})}:o;t.exports=a}),AR=L((e,t)=>{var r=800,n=16,o=Date.now;function a(i){var s=0,l=0;return function(){var u=o(),c=n-(u-l);if(l=u,c>0){if(++s>=r)return arguments[0]}else s=0;return i.apply(void 0,arguments)}}m(a,"shortOut"),t.exports=a}),TR=L((e,t)=>{var r=SR(),n=AR(),o=n(r);t.exports=o}),CR=L((e,t)=>{var r=vR(),n=ER(),o=TR();function a(i){return o(n(i,void 0,r),i+"")}m(a,"flatRest"),t.exports=a}),_R=L((e,t)=>{var r=mR(),n=CR(),o=n(function(a,i){return a==null?{}:r(a,i)});t.exports=o}),ug=L((e,t)=>{var r=Wm(),n=r(Object.getPrototypeOf,Object);t.exports=n}),As=L((e,t)=>{var r=Gr(),n=ug(),o=Wr(),a="[object Object]",i=Function.prototype,s=Object.prototype,l=i.toString,u=s.hasOwnProperty,c=l.call(Object);function d(y){if(!o(y)||r(y)!=a)return!1;var f=n(y);if(f===null)return!0;var h=u.call(f,"constructor")&&f.constructor;return typeof h=="function"&&h instanceof h&&l.call(h)==c}m(d,"isPlainObject"),t.exports=d}),OR=L((e,t)=>{var r=xs(),n=ug(),o=eg(),a=Zm(),i=Object.getOwnPropertySymbols,s=i?function(l){for(var u=[];l;)r(u,o(l)),l=n(l);return u}:a;t.exports=s}),IR=L((e,t)=>{function r(n){var o=[];if(n!=null)for(var a in Object(n))o.push(a);return o}m(r,"nativeKeysIn"),t.exports=r}),PR=L((e,t)=>{var r=qn(),n=Gm(),o=IR(),a=Object.prototype,i=a.hasOwnProperty;function s(l){if(!r(l))return o(l);var u=n(l),c=[];for(var d in l)d=="constructor"&&(u||!i.call(l,d))||c.push(d);return c}m(s,"baseKeysIn"),t.exports=s}),kR=L((e,t)=>{var r=Hm(),n=PR(),o=Km();function a(i){return o(i)?r(i,!0):n(i)}m(a,"keysIn"),t.exports=a}),RR=L((e,t)=>{var r=Qm(),n=OR(),o=kR();function a(i){return r(i,o,n)}m(a,"getAllKeysIn"),t.exports=a}),DR=L((e,t)=>{var r=og(),n=sg(),o=lg(),a=RR();function i(s,l){if(s==null)return{};var u=r(a(s),function(c){return[c]});return l=n(l),o(s,u,function(c,d){return l(c,d[0])})}m(i,"pickBy"),t.exports=i}),FR=L((e,t)=>{"use strict";t.exports=Error}),jR=L((e,t)=>{"use strict";t.exports=EvalError}),NR=L((e,t)=>{"use strict";t.exports=RangeError}),BR=L((e,t)=>{"use strict";t.exports=ReferenceError}),cg=L((e,t)=>{"use strict";t.exports=SyntaxError}),Un=L((e,t)=>{"use strict";t.exports=TypeError}),LR=L((e,t)=>{"use strict";t.exports=URIError}),qR=L((e,t)=>{"use strict";t.exports=m(function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var r={},n=Symbol("test"),o=Object(n);if(typeof n=="string"||Object.prototype.toString.call(n)!=="[object Symbol]"||Object.prototype.toString.call(o)!=="[object Symbol]")return!1;var a=42;r[n]=a;for(n in r)return!1;if(typeof Object.keys=="function"&&Object.keys(r).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(r).length!==0)return!1;var i=Object.getOwnPropertySymbols(r);if(i.length!==1||i[0]!==n||!Object.prototype.propertyIsEnumerable.call(r,n))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var s=Object.getOwnPropertyDescriptor(r,n);if(s.value!==a||s.enumerable!==!0)return!1}return!0},"hasSymbols")}),MR=L((e,t)=>{"use strict";var r=typeof Symbol<"u"&&Symbol,n=qR();t.exports=m(function(){return typeof r!="function"||typeof Symbol!="function"||typeof r("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:n()},"hasNativeSymbols")}),UR=L((e,t)=>{"use strict";var r={__proto__:null,foo:{}},n=Object;t.exports=m(function(){return{__proto__:r}.foo===r.foo&&!(r instanceof n)},"hasProto")}),JR=L((e,t)=>{"use strict";var r="Function.prototype.bind called on incompatible ",n=Object.prototype.toString,o=Math.max,a="[object Function]",i=m(function(u,c){for(var d=[],y=0;y{"use strict";var r=JR();t.exports=Function.prototype.bind||r}),$R=L((e,t)=>{"use strict";var r=Function.prototype.call,n=Object.prototype.hasOwnProperty,o=Ts();t.exports=o.call(r,n)}),Kr=L((e,t)=>{"use strict";var r,n=FR(),o=jR(),a=NR(),i=BR(),s=cg(),l=Un(),u=LR(),c=Function,d=m(function(ne){try{return c('"use strict"; return ('+ne+").constructor;")()}catch{}},"getEvalledConstructor"),y=Object.getOwnPropertyDescriptor;if(y)try{y({},"")}catch{y=null}var f=m(function(){throw new l},"throwTypeError"),h=y?function(){try{return arguments.callee,f}catch{try{return y(arguments,"callee").get}catch{return f}}}():f,g=MR()(),_=UR()(),v=Object.getPrototypeOf||(_?function(ne){return ne.__proto__}:null),x={},O=typeof Uint8Array>"u"||!v?r:v(Uint8Array),C={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?r:ArrayBuffer,"%ArrayIteratorPrototype%":g&&v?v([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":x,"%AsyncGenerator%":x,"%AsyncGeneratorFunction%":x,"%AsyncIteratorPrototype%":x,"%Atomics%":typeof Atomics>"u"?r:Atomics,"%BigInt%":typeof BigInt>"u"?r:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?r:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":n,"%eval%":eval,"%EvalError%":o,"%Float32Array%":typeof Float32Array>"u"?r:Float32Array,"%Float64Array%":typeof Float64Array>"u"?r:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?r:FinalizationRegistry,"%Function%":c,"%GeneratorFunction%":x,"%Int8Array%":typeof Int8Array>"u"?r:Int8Array,"%Int16Array%":typeof Int16Array>"u"?r:Int16Array,"%Int32Array%":typeof Int32Array>"u"?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":g&&v?v(v([][Symbol.iterator]())):r,"%JSON%":typeof JSON=="object"?JSON:r,"%Map%":typeof Map>"u"?r:Map,"%MapIteratorPrototype%":typeof Map>"u"||!g||!v?r:v(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?r:Promise,"%Proxy%":typeof Proxy>"u"?r:Proxy,"%RangeError%":a,"%ReferenceError%":i,"%Reflect%":typeof Reflect>"u"?r:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?r:Set,"%SetIteratorPrototype%":typeof Set>"u"||!g||!v?r:v(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":g&&v?v(""[Symbol.iterator]()):r,"%Symbol%":g?Symbol:r,"%SyntaxError%":s,"%ThrowTypeError%":h,"%TypedArray%":O,"%TypeError%":l,"%Uint8Array%":typeof Uint8Array>"u"?r:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?r:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?r:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?r:Uint32Array,"%URIError%":u,"%WeakMap%":typeof WeakMap>"u"?r:WeakMap,"%WeakRef%":typeof WeakRef>"u"?r:WeakRef,"%WeakSet%":typeof WeakSet>"u"?r:WeakSet};if(v)try{null.error}catch(ne){I=v(v(ne)),C["%Error.prototype%"]=I}var I,P=m(function ne(re){var Z;if(re==="%AsyncFunction%")Z=d("async function () {}");else if(re==="%GeneratorFunction%")Z=d("function* () {}");else if(re==="%AsyncGeneratorFunction%")Z=d("async function* () {}");else if(re==="%AsyncGenerator%"){var ae=ne("%AsyncGeneratorFunction%");ae&&(Z=ae.prototype)}else if(re==="%AsyncIteratorPrototype%"){var le=ne("%AsyncGenerator%");le&&v&&(Z=v(le.prototype))}return C[re]=Z,Z},"doEval"),F={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},D=Ts(),U=$R(),G=D.call(Function.call,Array.prototype.concat),X=D.call(Function.apply,Array.prototype.splice),Q=D.call(Function.call,String.prototype.replace),V=D.call(Function.call,String.prototype.slice),R=D.call(Function.call,RegExp.prototype.exec),q=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,M=/\\(\\)?/g,Y=m(function(ne){var re=V(ne,0,1),Z=V(ne,-1);if(re==="%"&&Z!=="%")throw new s("invalid intrinsic syntax, expected closing `%`");if(Z==="%"&&re!=="%")throw new s("invalid intrinsic syntax, expected opening `%`");var ae=[];return Q(ne,q,function(le,Ee,pe,we){ae[ae.length]=pe?Q(we,M,"$1"):Ee||le}),ae},"stringToPath"),te=m(function(ne,re){var Z=ne,ae;if(U(F,Z)&&(ae=F[Z],Z="%"+ae[0]+"%"),U(C,Z)){var le=C[Z];if(le===x&&(le=P(Z)),typeof le>"u"&&!re)throw new l("intrinsic "+ne+" exists, but is not available. Please file an issue!");return{alias:ae,name:Z,value:le}}throw new s("intrinsic "+ne+" does not exist!")},"getBaseIntrinsic");t.exports=m(function(ne,re){if(typeof ne!="string"||ne.length===0)throw new l("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof re!="boolean")throw new l('"allowMissing" argument must be a boolean');if(R(/^%?[^%]*%?$/,ne)===null)throw new s("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var Z=Y(ne),ae=Z.length>0?Z[0]:"",le=te("%"+ae+"%",re),Ee=le.name,pe=le.value,we=!1,Le=le.alias;Le&&(ae=Le[0],X(Z,G([0,1],Le)));for(var Ve=1,Ye=!0;Ve=Z.length){var Re=y(pe,fe);Ye=!!Re,Ye&&"get"in Re&&!("originalValue"in Re.get)?pe=Re.get:pe=pe[fe]}else Ye=U(pe,fe),pe=pe[fe];Ye&&!we&&(C[Ee]=pe)}}return pe},"GetIntrinsic")}),Cs=L((e,t)=>{"use strict";var r=Kr(),n=r("%Object.defineProperty%",!0)||!1;if(n)try{n({},"a",{value:1})}catch{n=!1}t.exports=n}),pg=L((e,t)=>{"use strict";var r=Kr(),n=r("%Object.getOwnPropertyDescriptor%",!0);if(n)try{n([],"length")}catch{n=null}t.exports=n}),zR=L((e,t)=>{"use strict";var r=Cs(),n=cg(),o=Un(),a=pg();t.exports=m(function(i,s,l){if(!i||typeof i!="object"&&typeof i!="function")throw new o("`obj` must be an object or a function`");if(typeof s!="string"&&typeof s!="symbol")throw new o("`property` must be a string or a symbol`");if(arguments.length>3&&typeof arguments[3]!="boolean"&&arguments[3]!==null)throw new o("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&typeof arguments[4]!="boolean"&&arguments[4]!==null)throw new o("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&typeof arguments[5]!="boolean"&&arguments[5]!==null)throw new o("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&typeof arguments[6]!="boolean")throw new o("`loose`, if provided, must be a boolean");var u=arguments.length>3?arguments[3]:null,c=arguments.length>4?arguments[4]:null,d=arguments.length>5?arguments[5]:null,y=arguments.length>6?arguments[6]:!1,f=!!a&&a(i,s);if(r)r(i,s,{configurable:d===null&&f?f.configurable:!d,enumerable:u===null&&f?f.enumerable:!u,value:l,writable:c===null&&f?f.writable:!c});else if(y||!u&&!c&&!d)i[s]=l;else throw new n("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.")},"defineDataProperty")}),VR=L((e,t)=>{"use strict";var r=Cs(),n=m(function(){return!!r},"hasPropertyDescriptors");n.hasArrayLengthDefineBug=m(function(){if(!r)return null;try{return r([],"length",{value:1}).length!==1}catch{return!0}},"hasArrayLengthDefineBug"),t.exports=n}),HR=L((e,t)=>{"use strict";var r=Kr(),n=zR(),o=VR()(),a=pg(),i=Un(),s=r("%Math.floor%");t.exports=m(function(l,u){if(typeof l!="function")throw new i("`fn` is not a function");if(typeof u!="number"||u<0||u>4294967295||s(u)!==u)throw new i("`length` must be a positive 32-bit integer");var c=arguments.length>2&&!!arguments[2],d=!0,y=!0;if("length"in l&&a){var f=a(l,"length");f&&!f.configurable&&(d=!1),f&&!f.writable&&(y=!1)}return(d||y||!c)&&(o?n(l,"length",u,!0,!0):n(l,"length",u)),l},"setFunctionLength")}),GR=L((e,t)=>{"use strict";var r=Ts(),n=Kr(),o=HR(),a=Un(),i=n("%Function.prototype.apply%"),s=n("%Function.prototype.call%"),l=n("%Reflect.apply%",!0)||r.call(s,i),u=Cs(),c=n("%Math.max%");t.exports=m(function(y){if(typeof y!="function")throw new a("a function is required");var f=l(r,s,arguments);return o(f,1+c(0,y.length-(arguments.length-1)),!0)},"callBind");var d=m(function(){return l(r,i,arguments)},"applyBind");u?u(t.exports,"apply",{value:d}):t.exports.apply=d}),WR=L((e,t)=>{"use strict";var r=Kr(),n=GR(),o=n(r("String.prototype.indexOf"));t.exports=m(function(a,i){var s=r(a,!!i);return typeof s=="function"&&o(a,".prototype.")>-1?n(s):s},"callBoundIntrinsic")}),KR=L(()=>{}),YR=L((e,t)=>{var r=typeof Map=="function"&&Map.prototype,n=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,o=r&&n&&typeof n.get=="function"?n.get:null,a=r&&Map.prototype.forEach,i=typeof Set=="function"&&Set.prototype,s=Object.getOwnPropertyDescriptor&&i?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,l=i&&s&&typeof s.get=="function"?s.get:null,u=i&&Set.prototype.forEach,c=typeof WeakMap=="function"&&WeakMap.prototype,d=c?WeakMap.prototype.has:null,y=typeof WeakSet=="function"&&WeakSet.prototype,f=y?WeakSet.prototype.has:null,h=typeof WeakRef=="function"&&WeakRef.prototype,g=h?WeakRef.prototype.deref:null,_=Boolean.prototype.valueOf,v=Object.prototype.toString,x=Function.prototype.toString,O=String.prototype.match,C=String.prototype.slice,I=String.prototype.replace,P=String.prototype.toUpperCase,F=String.prototype.toLowerCase,D=RegExp.prototype.test,U=Array.prototype.concat,G=Array.prototype.join,X=Array.prototype.slice,Q=Math.floor,V=typeof BigInt=="function"?BigInt.prototype.valueOf:null,R=Object.getOwnPropertySymbols,q=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Symbol.prototype.toString:null,M=typeof Symbol=="function"&&typeof Symbol.iterator=="object",Y=typeof Symbol=="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===M||!0)?Symbol.toStringTag:null,te=Object.prototype.propertyIsEnumerable,ne=(typeof Reflect=="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function($){return $.__proto__}:null);function re($,H){if($===1/0||$===-1/0||$!==$||$&&$>-1e3&&$<1e3||D.call(/e/,H))return H;var ue=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof $=="number"){var de=$<0?-Q(-$):Q($);if(de!==$){var Ae=String(de),se=C.call(H,Ae.length+1);return I.call(Ae,ue,"$&_")+"."+I.call(I.call(se,/([0-9]{3})/g,"$&_"),/_$/,"")}}return I.call(H,ue,"$&_")}m(re,"addNumericSeparator");var Z=KR(),ae=Z.custom,le=Re(ae)?ae:null;t.exports=m(function $(H,ue,de,Ae){var se=ue||{};if(ce(se,"quoteStyle")&&se.quoteStyle!=="single"&&se.quoteStyle!=="double")throw new TypeError('option "quoteStyle" must be "single" or "double"');if(ce(se,"maxStringLength")&&(typeof se.maxStringLength=="number"?se.maxStringLength<0&&se.maxStringLength!==1/0:se.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var ot=ce(se,"customInspect")?se.customInspect:!0;if(typeof ot!="boolean"&&ot!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(ce(se,"indent")&&se.indent!==null&&se.indent!==" "&&!(parseInt(se.indent,10)===se.indent&&se.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(ce(se,"numericSeparator")&&typeof se.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var yt=se.numericSeparator;if(typeof H>"u")return"undefined";if(H===null)return"null";if(typeof H=="boolean")return H?"true":"false";if(typeof H=="string")return xr(H,se);if(typeof H=="number"){if(H===0)return 1/0/H>0?"0":"-0";var ke=String(H);return yt?re(H,ke):ke}if(typeof H=="bigint"){var xe=String(H)+"n";return yt?re(H,xe):xe}var er=typeof se.depth>"u"?5:se.depth;if(typeof de>"u"&&(de=0),de>=er&&er>0&&typeof H=="object")return we(H)?"[Array]":"[Object]";var at=no(se,de);if(typeof Ae>"u")Ae=[];else if(ft(Ae,H)>=0)return"[Circular]";function Ce(p,w,k){if(w&&(Ae=X.call(Ae),Ae.push(w)),k){var z={depth:se.depth};return ce(se,"quoteStyle")&&(z.quoteStyle=se.quoteStyle),$(p,z,de+1,Ae)}return $(p,se,de+1,Ae)}if(m(Ce,"inspect"),typeof H=="function"&&!Ve(H)){var Sr=Ft(H),oo=Zt(H,Ce);return"[Function"+(Sr?": "+Sr:" (anonymous)")+"]"+(oo.length>0?" { "+G.call(oo,", ")+" }":"")}if(Re(H)){var cn=M?I.call(String(H),/^(Symbol\(.*\))_[^)]*$/,"$1"):q.call(H);return typeof H=="object"&&!M?St(cn):cn}if(Qt(H)){for(var tr="<"+F.call(String(H.nodeName)),nt=H.attributes||[],Ar=0;Ar",tr}if(we(H)){if(H.length===0)return"[]";var Tr=Zt(H,Ce);return at&&!un(Tr)?"["+wr(Tr,at)+"]":"[ "+G.call(Tr,", ")+" ]"}if(Ye(H)){var it=Zt(H,Ce);return!("cause"in Error.prototype)&&"cause"in H&&!te.call(H,"cause")?"{ ["+String(H)+"] "+G.call(U.call("[cause]: "+Ce(H.cause),it),", ")+" }":it.length===0?"["+String(H)+"]":"{ ["+String(H)+"] "+G.call(it,", ")+" }"}if(typeof H=="object"&&ot){if(le&&typeof H[le]=="function"&&Z)return Z(H,{depth:er-de});if(ot!=="symbol"&&typeof H.inspect=="function")return H.inspect()}if(wt(H)){var pn=[];return a&&a.call(H,function(p,w){pn.push(Ce(w,H,!0)+" => "+Ce(p,H))}),ln("Map",o.call(H),pn,at)}if(Yt(H)){var rr=[];return u&&u.call(H,function(p){rr.push(Ce(p,H))}),ln("Set",l.call(H),rr,at)}if(an(H))return Er("WeakMap");if(Xt(H))return Er("WeakSet");if(sn(H))return Er("WeakRef");if(Ie(H))return St(Ce(Number(H)));if(Ze(H))return St(Ce(V.call(H)));if(ye(H))return St(_.call(H));if(fe(H))return St(Ce(String(H)));if(typeof window<"u"&&H===window)return"{ [object Window] }";if(H===window)return"{ [object globalThis] }";if(!Le(H)&&!Ve(H)){var dn=Zt(H,Ce),fn=ne?ne(H)===Object.prototype:H instanceof Object||H.constructor===Object,Cr=H instanceof Object?"":"null prototype",yn=!fn&&Y&&Object(H)===H&&Y in H?C.call(Se(H),8,-1):Cr?"Object":"",_r=fn||typeof H.constructor!="function"?"":H.constructor.name?H.constructor.name+" ":"",Or=_r+(yn||Cr?"["+G.call(U.call([],yn||[],Cr||[]),": ")+"] ":"");return dn.length===0?Or+"{}":at?Or+"{"+wr(dn,at)+"}":Or+"{ "+G.call(dn,", ")+" }"}return String(H)},"inspect_");function Ee($,H,ue){var de=(ue.quoteStyle||H)==="double"?'"':"'";return de+$+de}m(Ee,"wrapQuotes");function pe($){return I.call(String($),/"/g,""")}m(pe,"quote");function we($){return Se($)==="[object Array]"&&(!Y||!(typeof $=="object"&&Y in $))}m(we,"isArray");function Le($){return Se($)==="[object Date]"&&(!Y||!(typeof $=="object"&&Y in $))}m(Le,"isDate");function Ve($){return Se($)==="[object RegExp]"&&(!Y||!(typeof $=="object"&&Y in $))}m(Ve,"isRegExp");function Ye($){return Se($)==="[object Error]"&&(!Y||!(typeof $=="object"&&Y in $))}m(Ye,"isError");function fe($){return Se($)==="[object String]"&&(!Y||!(typeof $=="object"&&Y in $))}m(fe,"isString");function Ie($){return Se($)==="[object Number]"&&(!Y||!(typeof $=="object"&&Y in $))}m(Ie,"isNumber");function ye($){return Se($)==="[object Boolean]"&&(!Y||!(typeof $=="object"&&Y in $))}m(ye,"isBoolean");function Re($){if(M)return $&&typeof $=="object"&&$ instanceof Symbol;if(typeof $=="symbol")return!0;if(!$||typeof $!="object"||!q)return!1;try{return q.call($),!0}catch{}return!1}m(Re,"isSymbol");function Ze($){if(!$||typeof $!="object"||!V)return!1;try{return V.call($),!0}catch{}return!1}m(Ze,"isBigInt");var qe=Object.prototype.hasOwnProperty||function($){return $ in this};function ce($,H){return qe.call($,H)}m(ce,"has");function Se($){return v.call($)}m(Se,"toStr");function Ft($){if($.name)return $.name;var H=O.call(x.call($),/^function\s*([\w$]+)/);return H?H[1]:null}m(Ft,"nameOf");function ft($,H){if($.indexOf)return $.indexOf(H);for(var ue=0,de=$.length;ueH.maxStringLength){var ue=$.length-H.maxStringLength,de="... "+ue+" more character"+(ue>1?"s":"");return xr(C.call($,0,H.maxStringLength),H)+de}var Ae=I.call(I.call($,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,ro);return Ee(Ae,"single",H)}m(xr,"inspectString");function ro($){var H=$.charCodeAt(0),ue={8:"b",9:"t",10:"n",12:"f",13:"r"}[H];return ue?"\\"+ue:"\\x"+(H<16?"0":"")+P.call(H.toString(16))}m(ro,"lowbyte");function St($){return"Object("+$+")"}m(St,"markBoxed");function Er($){return $+" { ? }"}m(Er,"weakCollectionOf");function ln($,H,ue,de){var Ae=de?wr(ue,de):G.call(ue,", ");return $+" ("+H+") {"+Ae+"}"}m(ln,"collectionOf");function un($){for(var H=0;H<$.length;H++)if(ft($[H],` -`)>=0)return!1;return!0}m(un,"singleLineValues");function no($,H){var ue;if($.indent===" ")ue=" ";else if(typeof $.indent=="number"&&$.indent>0)ue=G.call(Array($.indent+1)," ");else return null;return{base:ue,prev:G.call(Array(H+1),ue)}}m(no,"getIndent");function wr($,H){if($.length===0)return"";var ue=` -`+H.prev+H.base;return ue+G.call($,","+ue)+` -`+H.prev}m(wr,"indentedJoin");function Zt($,H){var ue=we($),de=[];if(ue){de.length=$.length;for(var Ae=0;Ae<$.length;Ae++)de[Ae]=ce($,Ae)?H($[Ae],$):""}var se=typeof R=="function"?R($):[],ot;if(M){ot={};for(var yt=0;yt{"use strict";var r=Kr(),n=WR(),o=YR(),a=Un(),i=r("%WeakMap%",!0),s=r("%Map%",!0),l=n("WeakMap.prototype.get",!0),u=n("WeakMap.prototype.set",!0),c=n("WeakMap.prototype.has",!0),d=n("Map.prototype.get",!0),y=n("Map.prototype.set",!0),f=n("Map.prototype.has",!0),h=m(function(x,O){for(var C=x,I;(I=C.next)!==null;C=I)if(I.key===O)return C.next=I.next,I.next=x.next,x.next=I,I},"listGetNode"),g=m(function(x,O){var C=h(x,O);return C&&C.value},"listGet"),_=m(function(x,O,C){var I=h(x,O);I?I.value=C:x.next={key:O,next:x.next,value:C}},"listSet"),v=m(function(x,O){return!!h(x,O)},"listHas");t.exports=m(function(){var x,O,C,I={assert:m(function(P){if(!I.has(P))throw new a("Side channel does not contain "+o(P))},"assert"),get:m(function(P){if(i&&P&&(typeof P=="object"||typeof P=="function")){if(x)return l(x,P)}else if(s){if(O)return d(O,P)}else if(C)return g(C,P)},"get"),has:m(function(P){if(i&&P&&(typeof P=="object"||typeof P=="function")){if(x)return c(x,P)}else if(s){if(O)return f(O,P)}else if(C)return v(C,P);return!1},"has"),set:m(function(P,F){i&&P&&(typeof P=="object"||typeof P=="function")?(x||(x=new i),u(x,P,F)):s?(O||(O=new s),y(O,P,F)):(C||(C={key:{},next:null}),_(C,P,F))},"set")};return I},"getSideChannel")}),_s=L((e,t)=>{"use strict";var r=String.prototype.replace,n=/%20/g,o={RFC1738:"RFC1738",RFC3986:"RFC3986"};t.exports={default:o.RFC3986,formatters:{RFC1738:m(function(a){return r.call(a,n,"+")},"RFC1738"),RFC3986:m(function(a){return String(a)},"RFC3986")},RFC1738:o.RFC1738,RFC3986:o.RFC3986}}),dg=L((e,t)=>{"use strict";var r=_s(),n=Object.prototype.hasOwnProperty,o=Array.isArray,a=function(){for(var x=[],O=0;O<256;++O)x.push("%"+((O<16?"0":"")+O.toString(16)).toUpperCase());return x}(),i=m(function(x){for(;x.length>1;){var O=x.pop(),C=O.obj[O.prop];if(o(C)){for(var I=[],P=0;P=d?F.slice(U,U+d):F,X=[],Q=0;Q=48&&V<=57||V>=65&&V<=90||V>=97&&V<=122||P===r.RFC1738&&(V===40||V===41)){X[X.length]=G.charAt(Q);continue}if(V<128){X[X.length]=a[V];continue}if(V<2048){X[X.length]=a[192|V>>6]+a[128|V&63];continue}if(V<55296||V>=57344){X[X.length]=a[224|V>>12]+a[128|V>>6&63]+a[128|V&63];continue}Q+=1,V=65536+((V&1023)<<10|G.charCodeAt(Q)&1023),X[X.length]=a[240|V>>18]+a[128|V>>12&63]+a[128|V>>6&63]+a[128|V&63]}D+=X.join("")}return D},"encode"),f=m(function(x){for(var O=[{obj:{o:x},prop:"o"}],C=[],I=0;I{"use strict";var r=XR(),n=dg(),o=_s(),a=Object.prototype.hasOwnProperty,i={brackets:m(function(v){return v+"[]"},"brackets"),comma:"comma",indices:m(function(v,x){return v+"["+x+"]"},"indices"),repeat:m(function(v){return v},"repeat")},s=Array.isArray,l=Array.prototype.push,u=m(function(v,x){l.apply(v,s(x)?x:[x])},"pushToArray"),c=Date.prototype.toISOString,d=o.default,y={addQueryPrefix:!1,allowDots:!1,allowEmptyArrays:!1,arrayFormat:"indices",charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encodeDotInKeys:!1,encoder:n.encode,encodeValuesOnly:!1,format:d,formatter:o.formatters[d],indices:!1,serializeDate:m(function(v){return c.call(v)},"serializeDate"),skipNulls:!1,strictNullHandling:!1},f=m(function(v){return typeof v=="string"||typeof v=="number"||typeof v=="boolean"||typeof v=="symbol"||typeof v=="bigint"},"isNonNullishPrimitive"),h={},g=m(function v(x,O,C,I,P,F,D,U,G,X,Q,V,R,q,M,Y,te,ne){for(var re=x,Z=ne,ae=0,le=!1;(Z=Z.get(h))!==void 0&&!le;){var Ee=Z.get(x);if(ae+=1,typeof Ee<"u"){if(Ee===ae)throw new RangeError("Cyclic object value");le=!0}typeof Z.get(h)>"u"&&(ae=0)}if(typeof X=="function"?re=X(O,re):re instanceof Date?re=R(re):C==="comma"&&s(re)&&(re=n.maybeMap(re,function(Se){return Se instanceof Date?R(Se):Se})),re===null){if(F)return G&&!Y?G(O,y.encoder,te,"key",q):O;re=""}if(f(re)||n.isBuffer(re)){if(G){var pe=Y?O:G(O,y.encoder,te,"key",q);return[M(pe)+"="+M(G(re,y.encoder,te,"value",q))]}return[M(O)+"="+M(String(re))]}var we=[];if(typeof re>"u")return we;var Le;if(C==="comma"&&s(re))Y&&G&&(re=n.maybeMap(re,G)),Le=[{value:re.length>0?re.join(",")||null:void 0}];else if(s(X))Le=X;else{var Ve=Object.keys(re);Le=Q?Ve.sort(Q):Ve}var Ye=U?O.replace(/\./g,"%2E"):O,fe=I&&s(re)&&re.length===1?Ye+"[]":Ye;if(P&&s(re)&&re.length===0)return fe+"[]";for(var Ie=0;Ie"u"?v.encodeDotInKeys===!0?!0:y.allowDots:!!v.allowDots;return{addQueryPrefix:typeof v.addQueryPrefix=="boolean"?v.addQueryPrefix:y.addQueryPrefix,allowDots:F,allowEmptyArrays:typeof v.allowEmptyArrays=="boolean"?!!v.allowEmptyArrays:y.allowEmptyArrays,arrayFormat:P,charset:x,charsetSentinel:typeof v.charsetSentinel=="boolean"?v.charsetSentinel:y.charsetSentinel,commaRoundTrip:v.commaRoundTrip,delimiter:typeof v.delimiter>"u"?y.delimiter:v.delimiter,encode:typeof v.encode=="boolean"?v.encode:y.encode,encodeDotInKeys:typeof v.encodeDotInKeys=="boolean"?v.encodeDotInKeys:y.encodeDotInKeys,encoder:typeof v.encoder=="function"?v.encoder:y.encoder,encodeValuesOnly:typeof v.encodeValuesOnly=="boolean"?v.encodeValuesOnly:y.encodeValuesOnly,filter:I,format:O,formatter:C,serializeDate:typeof v.serializeDate=="function"?v.serializeDate:y.serializeDate,skipNulls:typeof v.skipNulls=="boolean"?v.skipNulls:y.skipNulls,sort:typeof v.sort=="function"?v.sort:null,strictNullHandling:typeof v.strictNullHandling=="boolean"?v.strictNullHandling:y.strictNullHandling}},"normalizeStringifyOptions");t.exports=function(v,x){var O=v,C=_(x),I,P;typeof C.filter=="function"?(P=C.filter,O=P("",O)):s(C.filter)&&(P=C.filter,I=P);var F=[];if(typeof O!="object"||O===null)return"";var D=i[C.arrayFormat],U=D==="comma"&&C.commaRoundTrip;I||(I=Object.keys(O)),C.sort&&I.sort(C.sort);for(var G=r(),X=0;X0?R+V:""}}),ZR=L((e,t)=>{"use strict";var r=dg(),n=Object.prototype.hasOwnProperty,o=Array.isArray,a={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:r.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},i=m(function(h){return h.replace(/&#(\d+);/g,function(g,_){return String.fromCharCode(parseInt(_,10))})},"interpretNumericEntities"),s=m(function(h,g){return h&&typeof h=="string"&&g.comma&&h.indexOf(",")>-1?h.split(","):h},"parseArrayValue"),l="utf8=%26%2310003%3B",u="utf8=%E2%9C%93",c=m(function(h,g){var _={__proto__:null},v=g.ignoreQueryPrefix?h.replace(/^\?/,""):h;v=v.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var x=g.parameterLimit===1/0?void 0:g.parameterLimit,O=v.split(g.delimiter,x),C=-1,I,P=g.charset;if(g.charsetSentinel)for(I=0;I-1&&(X=o(X)?[X]:X);var Q=n.call(_,G);Q&&g.duplicates==="combine"?_[G]=r.combine(_[G],X):(!Q||g.duplicates==="last")&&(_[G]=X)}return _},"parseQueryStringValues"),d=m(function(h,g,_,v){for(var x=v?g:s(g,_),O=h.length-1;O>=0;--O){var C,I=h[O];if(I==="[]"&&_.parseArrays)C=_.allowEmptyArrays&&(x===""||_.strictNullHandling&&x===null)?[]:[].concat(x);else{C=_.plainObjects?Object.create(null):{};var P=I.charAt(0)==="["&&I.charAt(I.length-1)==="]"?I.slice(1,-1):I,F=_.decodeDotInKeys?P.replace(/%2E/g,"."):P,D=parseInt(F,10);!_.parseArrays&&F===""?C={0:x}:!isNaN(D)&&I!==F&&String(D)===F&&D>=0&&_.parseArrays&&D<=_.arrayLimit?(C=[],C[D]=x):F!=="__proto__"&&(C[F]=x)}x=C}return x},"parseObject"),y=m(function(h,g,_,v){if(h){var x=_.allowDots?h.replace(/\.([^.[]+)/g,"[$1]"):h,O=/(\[[^[\]]*])/,C=/(\[[^[\]]*])/g,I=_.depth>0&&O.exec(x),P=I?x.slice(0,I.index):x,F=[];if(P){if(!_.plainObjects&&n.call(Object.prototype,P)&&!_.allowPrototypes)return;F.push(P)}for(var D=0;_.depth>0&&(I=C.exec(x))!==null&&D<_.depth;){if(D+=1,!_.plainObjects&&n.call(Object.prototype,I[1].slice(1,-1))&&!_.allowPrototypes)return;F.push(I[1])}return I&&F.push("["+x.slice(I.index)+"]"),d(F,g,_,v)}},"parseQueryStringKeys"),f=m(function(h){if(!h)return a;if(typeof h.allowEmptyArrays<"u"&&typeof h.allowEmptyArrays!="boolean")throw new TypeError("`allowEmptyArrays` option can only be `true` or `false`, when provided");if(typeof h.decodeDotInKeys<"u"&&typeof h.decodeDotInKeys!="boolean")throw new TypeError("`decodeDotInKeys` option can only be `true` or `false`, when provided");if(h.decoder!==null&&typeof h.decoder<"u"&&typeof h.decoder!="function")throw new TypeError("Decoder has to be a function.");if(typeof h.charset<"u"&&h.charset!=="utf-8"&&h.charset!=="iso-8859-1")throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var g=typeof h.charset>"u"?a.charset:h.charset,_=typeof h.duplicates>"u"?a.duplicates:h.duplicates;if(_!=="combine"&&_!=="first"&&_!=="last")throw new TypeError("The duplicates option must be either combine, first, or last");var v=typeof h.allowDots>"u"?h.decodeDotInKeys===!0?!0:a.allowDots:!!h.allowDots;return{allowDots:v,allowEmptyArrays:typeof h.allowEmptyArrays=="boolean"?!!h.allowEmptyArrays:a.allowEmptyArrays,allowPrototypes:typeof h.allowPrototypes=="boolean"?h.allowPrototypes:a.allowPrototypes,allowSparse:typeof h.allowSparse=="boolean"?h.allowSparse:a.allowSparse,arrayLimit:typeof h.arrayLimit=="number"?h.arrayLimit:a.arrayLimit,charset:g,charsetSentinel:typeof h.charsetSentinel=="boolean"?h.charsetSentinel:a.charsetSentinel,comma:typeof h.comma=="boolean"?h.comma:a.comma,decodeDotInKeys:typeof h.decodeDotInKeys=="boolean"?h.decodeDotInKeys:a.decodeDotInKeys,decoder:typeof h.decoder=="function"?h.decoder:a.decoder,delimiter:typeof h.delimiter=="string"||r.isRegExp(h.delimiter)?h.delimiter:a.delimiter,depth:typeof h.depth=="number"||h.depth===!1?+h.depth:a.depth,duplicates:_,ignoreQueryPrefix:h.ignoreQueryPrefix===!0,interpretNumericEntities:typeof h.interpretNumericEntities=="boolean"?h.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:typeof h.parameterLimit=="number"?h.parameterLimit:a.parameterLimit,parseArrays:h.parseArrays!==!1,plainObjects:typeof h.plainObjects=="boolean"?h.plainObjects:a.plainObjects,strictNullHandling:typeof h.strictNullHandling=="boolean"?h.strictNullHandling:a.strictNullHandling}},"normalizeParseOptions");t.exports=function(h,g){var _=f(g);if(h===""||h===null||typeof h>"u")return _.plainObjects?Object.create(null):{};for(var v=typeof h=="string"?c(h,_):h,x=_.plainObjects?Object.create(null):{},O=Object.keys(v),C=0;C{"use strict";var r=QR(),n=ZR(),o=_s();t.exports={formats:o,parse:n,stringify:r}}),fg=L((e,t)=>{t.exports={Aacute:"\xC1",aacute:"\xE1",Abreve:"\u0102",abreve:"\u0103",ac:"\u223E",acd:"\u223F",acE:"\u223E\u0333",Acirc:"\xC2",acirc:"\xE2",acute:"\xB4",Acy:"\u0410",acy:"\u0430",AElig:"\xC6",aelig:"\xE6",af:"\u2061",Afr:"\u{1D504}",afr:"\u{1D51E}",Agrave:"\xC0",agrave:"\xE0",alefsym:"\u2135",aleph:"\u2135",Alpha:"\u0391",alpha:"\u03B1",Amacr:"\u0100",amacr:"\u0101",amalg:"\u2A3F",amp:"&",AMP:"&",andand:"\u2A55",And:"\u2A53",and:"\u2227",andd:"\u2A5C",andslope:"\u2A58",andv:"\u2A5A",ang:"\u2220",ange:"\u29A4",angle:"\u2220",angmsdaa:"\u29A8",angmsdab:"\u29A9",angmsdac:"\u29AA",angmsdad:"\u29AB",angmsdae:"\u29AC",angmsdaf:"\u29AD",angmsdag:"\u29AE",angmsdah:"\u29AF",angmsd:"\u2221",angrt:"\u221F",angrtvb:"\u22BE",angrtvbd:"\u299D",angsph:"\u2222",angst:"\xC5",angzarr:"\u237C",Aogon:"\u0104",aogon:"\u0105",Aopf:"\u{1D538}",aopf:"\u{1D552}",apacir:"\u2A6F",ap:"\u2248",apE:"\u2A70",ape:"\u224A",apid:"\u224B",apos:"'",ApplyFunction:"\u2061",approx:"\u2248",approxeq:"\u224A",Aring:"\xC5",aring:"\xE5",Ascr:"\u{1D49C}",ascr:"\u{1D4B6}",Assign:"\u2254",ast:"*",asymp:"\u2248",asympeq:"\u224D",Atilde:"\xC3",atilde:"\xE3",Auml:"\xC4",auml:"\xE4",awconint:"\u2233",awint:"\u2A11",backcong:"\u224C",backepsilon:"\u03F6",backprime:"\u2035",backsim:"\u223D",backsimeq:"\u22CD",Backslash:"\u2216",Barv:"\u2AE7",barvee:"\u22BD",barwed:"\u2305",Barwed:"\u2306",barwedge:"\u2305",bbrk:"\u23B5",bbrktbrk:"\u23B6",bcong:"\u224C",Bcy:"\u0411",bcy:"\u0431",bdquo:"\u201E",becaus:"\u2235",because:"\u2235",Because:"\u2235",bemptyv:"\u29B0",bepsi:"\u03F6",bernou:"\u212C",Bernoullis:"\u212C",Beta:"\u0392",beta:"\u03B2",beth:"\u2136",between:"\u226C",Bfr:"\u{1D505}",bfr:"\u{1D51F}",bigcap:"\u22C2",bigcirc:"\u25EF",bigcup:"\u22C3",bigodot:"\u2A00",bigoplus:"\u2A01",bigotimes:"\u2A02",bigsqcup:"\u2A06",bigstar:"\u2605",bigtriangledown:"\u25BD",bigtriangleup:"\u25B3",biguplus:"\u2A04",bigvee:"\u22C1",bigwedge:"\u22C0",bkarow:"\u290D",blacklozenge:"\u29EB",blacksquare:"\u25AA",blacktriangle:"\u25B4",blacktriangledown:"\u25BE",blacktriangleleft:"\u25C2",blacktriangleright:"\u25B8",blank:"\u2423",blk12:"\u2592",blk14:"\u2591",blk34:"\u2593",block:"\u2588",bne:"=\u20E5",bnequiv:"\u2261\u20E5",bNot:"\u2AED",bnot:"\u2310",Bopf:"\u{1D539}",bopf:"\u{1D553}",bot:"\u22A5",bottom:"\u22A5",bowtie:"\u22C8",boxbox:"\u29C9",boxdl:"\u2510",boxdL:"\u2555",boxDl:"\u2556",boxDL:"\u2557",boxdr:"\u250C",boxdR:"\u2552",boxDr:"\u2553",boxDR:"\u2554",boxh:"\u2500",boxH:"\u2550",boxhd:"\u252C",boxHd:"\u2564",boxhD:"\u2565",boxHD:"\u2566",boxhu:"\u2534",boxHu:"\u2567",boxhU:"\u2568",boxHU:"\u2569",boxminus:"\u229F",boxplus:"\u229E",boxtimes:"\u22A0",boxul:"\u2518",boxuL:"\u255B",boxUl:"\u255C",boxUL:"\u255D",boxur:"\u2514",boxuR:"\u2558",boxUr:"\u2559",boxUR:"\u255A",boxv:"\u2502",boxV:"\u2551",boxvh:"\u253C",boxvH:"\u256A",boxVh:"\u256B",boxVH:"\u256C",boxvl:"\u2524",boxvL:"\u2561",boxVl:"\u2562",boxVL:"\u2563",boxvr:"\u251C",boxvR:"\u255E",boxVr:"\u255F",boxVR:"\u2560",bprime:"\u2035",breve:"\u02D8",Breve:"\u02D8",brvbar:"\xA6",bscr:"\u{1D4B7}",Bscr:"\u212C",bsemi:"\u204F",bsim:"\u223D",bsime:"\u22CD",bsolb:"\u29C5",bsol:"\\",bsolhsub:"\u27C8",bull:"\u2022",bullet:"\u2022",bump:"\u224E",bumpE:"\u2AAE",bumpe:"\u224F",Bumpeq:"\u224E",bumpeq:"\u224F",Cacute:"\u0106",cacute:"\u0107",capand:"\u2A44",capbrcup:"\u2A49",capcap:"\u2A4B",cap:"\u2229",Cap:"\u22D2",capcup:"\u2A47",capdot:"\u2A40",CapitalDifferentialD:"\u2145",caps:"\u2229\uFE00",caret:"\u2041",caron:"\u02C7",Cayleys:"\u212D",ccaps:"\u2A4D",Ccaron:"\u010C",ccaron:"\u010D",Ccedil:"\xC7",ccedil:"\xE7",Ccirc:"\u0108",ccirc:"\u0109",Cconint:"\u2230",ccups:"\u2A4C",ccupssm:"\u2A50",Cdot:"\u010A",cdot:"\u010B",cedil:"\xB8",Cedilla:"\xB8",cemptyv:"\u29B2",cent:"\xA2",centerdot:"\xB7",CenterDot:"\xB7",cfr:"\u{1D520}",Cfr:"\u212D",CHcy:"\u0427",chcy:"\u0447",check:"\u2713",checkmark:"\u2713",Chi:"\u03A7",chi:"\u03C7",circ:"\u02C6",circeq:"\u2257",circlearrowleft:"\u21BA",circlearrowright:"\u21BB",circledast:"\u229B",circledcirc:"\u229A",circleddash:"\u229D",CircleDot:"\u2299",circledR:"\xAE",circledS:"\u24C8",CircleMinus:"\u2296",CirclePlus:"\u2295",CircleTimes:"\u2297",cir:"\u25CB",cirE:"\u29C3",cire:"\u2257",cirfnint:"\u2A10",cirmid:"\u2AEF",cirscir:"\u29C2",ClockwiseContourIntegral:"\u2232",CloseCurlyDoubleQuote:"\u201D",CloseCurlyQuote:"\u2019",clubs:"\u2663",clubsuit:"\u2663",colon:":",Colon:"\u2237",Colone:"\u2A74",colone:"\u2254",coloneq:"\u2254",comma:",",commat:"@",comp:"\u2201",compfn:"\u2218",complement:"\u2201",complexes:"\u2102",cong:"\u2245",congdot:"\u2A6D",Congruent:"\u2261",conint:"\u222E",Conint:"\u222F",ContourIntegral:"\u222E",copf:"\u{1D554}",Copf:"\u2102",coprod:"\u2210",Coproduct:"\u2210",copy:"\xA9",COPY:"\xA9",copysr:"\u2117",CounterClockwiseContourIntegral:"\u2233",crarr:"\u21B5",cross:"\u2717",Cross:"\u2A2F",Cscr:"\u{1D49E}",cscr:"\u{1D4B8}",csub:"\u2ACF",csube:"\u2AD1",csup:"\u2AD0",csupe:"\u2AD2",ctdot:"\u22EF",cudarrl:"\u2938",cudarrr:"\u2935",cuepr:"\u22DE",cuesc:"\u22DF",cularr:"\u21B6",cularrp:"\u293D",cupbrcap:"\u2A48",cupcap:"\u2A46",CupCap:"\u224D",cup:"\u222A",Cup:"\u22D3",cupcup:"\u2A4A",cupdot:"\u228D",cupor:"\u2A45",cups:"\u222A\uFE00",curarr:"\u21B7",curarrm:"\u293C",curlyeqprec:"\u22DE",curlyeqsucc:"\u22DF",curlyvee:"\u22CE",curlywedge:"\u22CF",curren:"\xA4",curvearrowleft:"\u21B6",curvearrowright:"\u21B7",cuvee:"\u22CE",cuwed:"\u22CF",cwconint:"\u2232",cwint:"\u2231",cylcty:"\u232D",dagger:"\u2020",Dagger:"\u2021",daleth:"\u2138",darr:"\u2193",Darr:"\u21A1",dArr:"\u21D3",dash:"\u2010",Dashv:"\u2AE4",dashv:"\u22A3",dbkarow:"\u290F",dblac:"\u02DD",Dcaron:"\u010E",dcaron:"\u010F",Dcy:"\u0414",dcy:"\u0434",ddagger:"\u2021",ddarr:"\u21CA",DD:"\u2145",dd:"\u2146",DDotrahd:"\u2911",ddotseq:"\u2A77",deg:"\xB0",Del:"\u2207",Delta:"\u0394",delta:"\u03B4",demptyv:"\u29B1",dfisht:"\u297F",Dfr:"\u{1D507}",dfr:"\u{1D521}",dHar:"\u2965",dharl:"\u21C3",dharr:"\u21C2",DiacriticalAcute:"\xB4",DiacriticalDot:"\u02D9",DiacriticalDoubleAcute:"\u02DD",DiacriticalGrave:"`",DiacriticalTilde:"\u02DC",diam:"\u22C4",diamond:"\u22C4",Diamond:"\u22C4",diamondsuit:"\u2666",diams:"\u2666",die:"\xA8",DifferentialD:"\u2146",digamma:"\u03DD",disin:"\u22F2",div:"\xF7",divide:"\xF7",divideontimes:"\u22C7",divonx:"\u22C7",DJcy:"\u0402",djcy:"\u0452",dlcorn:"\u231E",dlcrop:"\u230D",dollar:"$",Dopf:"\u{1D53B}",dopf:"\u{1D555}",Dot:"\xA8",dot:"\u02D9",DotDot:"\u20DC",doteq:"\u2250",doteqdot:"\u2251",DotEqual:"\u2250",dotminus:"\u2238",dotplus:"\u2214",dotsquare:"\u22A1",doublebarwedge:"\u2306",DoubleContourIntegral:"\u222F",DoubleDot:"\xA8",DoubleDownArrow:"\u21D3",DoubleLeftArrow:"\u21D0",DoubleLeftRightArrow:"\u21D4",DoubleLeftTee:"\u2AE4",DoubleLongLeftArrow:"\u27F8",DoubleLongLeftRightArrow:"\u27FA",DoubleLongRightArrow:"\u27F9",DoubleRightArrow:"\u21D2",DoubleRightTee:"\u22A8",DoubleUpArrow:"\u21D1",DoubleUpDownArrow:"\u21D5",DoubleVerticalBar:"\u2225",DownArrowBar:"\u2913",downarrow:"\u2193",DownArrow:"\u2193",Downarrow:"\u21D3",DownArrowUpArrow:"\u21F5",DownBreve:"\u0311",downdownarrows:"\u21CA",downharpoonleft:"\u21C3",downharpoonright:"\u21C2",DownLeftRightVector:"\u2950",DownLeftTeeVector:"\u295E",DownLeftVectorBar:"\u2956",DownLeftVector:"\u21BD",DownRightTeeVector:"\u295F",DownRightVectorBar:"\u2957",DownRightVector:"\u21C1",DownTeeArrow:"\u21A7",DownTee:"\u22A4",drbkarow:"\u2910",drcorn:"\u231F",drcrop:"\u230C",Dscr:"\u{1D49F}",dscr:"\u{1D4B9}",DScy:"\u0405",dscy:"\u0455",dsol:"\u29F6",Dstrok:"\u0110",dstrok:"\u0111",dtdot:"\u22F1",dtri:"\u25BF",dtrif:"\u25BE",duarr:"\u21F5",duhar:"\u296F",dwangle:"\u29A6",DZcy:"\u040F",dzcy:"\u045F",dzigrarr:"\u27FF",Eacute:"\xC9",eacute:"\xE9",easter:"\u2A6E",Ecaron:"\u011A",ecaron:"\u011B",Ecirc:"\xCA",ecirc:"\xEA",ecir:"\u2256",ecolon:"\u2255",Ecy:"\u042D",ecy:"\u044D",eDDot:"\u2A77",Edot:"\u0116",edot:"\u0117",eDot:"\u2251",ee:"\u2147",efDot:"\u2252",Efr:"\u{1D508}",efr:"\u{1D522}",eg:"\u2A9A",Egrave:"\xC8",egrave:"\xE8",egs:"\u2A96",egsdot:"\u2A98",el:"\u2A99",Element:"\u2208",elinters:"\u23E7",ell:"\u2113",els:"\u2A95",elsdot:"\u2A97",Emacr:"\u0112",emacr:"\u0113",empty:"\u2205",emptyset:"\u2205",EmptySmallSquare:"\u25FB",emptyv:"\u2205",EmptyVerySmallSquare:"\u25AB",emsp13:"\u2004",emsp14:"\u2005",emsp:"\u2003",ENG:"\u014A",eng:"\u014B",ensp:"\u2002",Eogon:"\u0118",eogon:"\u0119",Eopf:"\u{1D53C}",eopf:"\u{1D556}",epar:"\u22D5",eparsl:"\u29E3",eplus:"\u2A71",epsi:"\u03B5",Epsilon:"\u0395",epsilon:"\u03B5",epsiv:"\u03F5",eqcirc:"\u2256",eqcolon:"\u2255",eqsim:"\u2242",eqslantgtr:"\u2A96",eqslantless:"\u2A95",Equal:"\u2A75",equals:"=",EqualTilde:"\u2242",equest:"\u225F",Equilibrium:"\u21CC",equiv:"\u2261",equivDD:"\u2A78",eqvparsl:"\u29E5",erarr:"\u2971",erDot:"\u2253",escr:"\u212F",Escr:"\u2130",esdot:"\u2250",Esim:"\u2A73",esim:"\u2242",Eta:"\u0397",eta:"\u03B7",ETH:"\xD0",eth:"\xF0",Euml:"\xCB",euml:"\xEB",euro:"\u20AC",excl:"!",exist:"\u2203",Exists:"\u2203",expectation:"\u2130",exponentiale:"\u2147",ExponentialE:"\u2147",fallingdotseq:"\u2252",Fcy:"\u0424",fcy:"\u0444",female:"\u2640",ffilig:"\uFB03",fflig:"\uFB00",ffllig:"\uFB04",Ffr:"\u{1D509}",ffr:"\u{1D523}",filig:"\uFB01",FilledSmallSquare:"\u25FC",FilledVerySmallSquare:"\u25AA",fjlig:"fj",flat:"\u266D",fllig:"\uFB02",fltns:"\u25B1",fnof:"\u0192",Fopf:"\u{1D53D}",fopf:"\u{1D557}",forall:"\u2200",ForAll:"\u2200",fork:"\u22D4",forkv:"\u2AD9",Fouriertrf:"\u2131",fpartint:"\u2A0D",frac12:"\xBD",frac13:"\u2153",frac14:"\xBC",frac15:"\u2155",frac16:"\u2159",frac18:"\u215B",frac23:"\u2154",frac25:"\u2156",frac34:"\xBE",frac35:"\u2157",frac38:"\u215C",frac45:"\u2158",frac56:"\u215A",frac58:"\u215D",frac78:"\u215E",frasl:"\u2044",frown:"\u2322",fscr:"\u{1D4BB}",Fscr:"\u2131",gacute:"\u01F5",Gamma:"\u0393",gamma:"\u03B3",Gammad:"\u03DC",gammad:"\u03DD",gap:"\u2A86",Gbreve:"\u011E",gbreve:"\u011F",Gcedil:"\u0122",Gcirc:"\u011C",gcirc:"\u011D",Gcy:"\u0413",gcy:"\u0433",Gdot:"\u0120",gdot:"\u0121",ge:"\u2265",gE:"\u2267",gEl:"\u2A8C",gel:"\u22DB",geq:"\u2265",geqq:"\u2267",geqslant:"\u2A7E",gescc:"\u2AA9",ges:"\u2A7E",gesdot:"\u2A80",gesdoto:"\u2A82",gesdotol:"\u2A84",gesl:"\u22DB\uFE00",gesles:"\u2A94",Gfr:"\u{1D50A}",gfr:"\u{1D524}",gg:"\u226B",Gg:"\u22D9",ggg:"\u22D9",gimel:"\u2137",GJcy:"\u0403",gjcy:"\u0453",gla:"\u2AA5",gl:"\u2277",glE:"\u2A92",glj:"\u2AA4",gnap:"\u2A8A",gnapprox:"\u2A8A",gne:"\u2A88",gnE:"\u2269",gneq:"\u2A88",gneqq:"\u2269",gnsim:"\u22E7",Gopf:"\u{1D53E}",gopf:"\u{1D558}",grave:"`",GreaterEqual:"\u2265",GreaterEqualLess:"\u22DB",GreaterFullEqual:"\u2267",GreaterGreater:"\u2AA2",GreaterLess:"\u2277",GreaterSlantEqual:"\u2A7E",GreaterTilde:"\u2273",Gscr:"\u{1D4A2}",gscr:"\u210A",gsim:"\u2273",gsime:"\u2A8E",gsiml:"\u2A90",gtcc:"\u2AA7",gtcir:"\u2A7A",gt:">",GT:">",Gt:"\u226B",gtdot:"\u22D7",gtlPar:"\u2995",gtquest:"\u2A7C",gtrapprox:"\u2A86",gtrarr:"\u2978",gtrdot:"\u22D7",gtreqless:"\u22DB",gtreqqless:"\u2A8C",gtrless:"\u2277",gtrsim:"\u2273",gvertneqq:"\u2269\uFE00",gvnE:"\u2269\uFE00",Hacek:"\u02C7",hairsp:"\u200A",half:"\xBD",hamilt:"\u210B",HARDcy:"\u042A",hardcy:"\u044A",harrcir:"\u2948",harr:"\u2194",hArr:"\u21D4",harrw:"\u21AD",Hat:"^",hbar:"\u210F",Hcirc:"\u0124",hcirc:"\u0125",hearts:"\u2665",heartsuit:"\u2665",hellip:"\u2026",hercon:"\u22B9",hfr:"\u{1D525}",Hfr:"\u210C",HilbertSpace:"\u210B",hksearow:"\u2925",hkswarow:"\u2926",hoarr:"\u21FF",homtht:"\u223B",hookleftarrow:"\u21A9",hookrightarrow:"\u21AA",hopf:"\u{1D559}",Hopf:"\u210D",horbar:"\u2015",HorizontalLine:"\u2500",hscr:"\u{1D4BD}",Hscr:"\u210B",hslash:"\u210F",Hstrok:"\u0126",hstrok:"\u0127",HumpDownHump:"\u224E",HumpEqual:"\u224F",hybull:"\u2043",hyphen:"\u2010",Iacute:"\xCD",iacute:"\xED",ic:"\u2063",Icirc:"\xCE",icirc:"\xEE",Icy:"\u0418",icy:"\u0438",Idot:"\u0130",IEcy:"\u0415",iecy:"\u0435",iexcl:"\xA1",iff:"\u21D4",ifr:"\u{1D526}",Ifr:"\u2111",Igrave:"\xCC",igrave:"\xEC",ii:"\u2148",iiiint:"\u2A0C",iiint:"\u222D",iinfin:"\u29DC",iiota:"\u2129",IJlig:"\u0132",ijlig:"\u0133",Imacr:"\u012A",imacr:"\u012B",image:"\u2111",ImaginaryI:"\u2148",imagline:"\u2110",imagpart:"\u2111",imath:"\u0131",Im:"\u2111",imof:"\u22B7",imped:"\u01B5",Implies:"\u21D2",incare:"\u2105",in:"\u2208",infin:"\u221E",infintie:"\u29DD",inodot:"\u0131",intcal:"\u22BA",int:"\u222B",Int:"\u222C",integers:"\u2124",Integral:"\u222B",intercal:"\u22BA",Intersection:"\u22C2",intlarhk:"\u2A17",intprod:"\u2A3C",InvisibleComma:"\u2063",InvisibleTimes:"\u2062",IOcy:"\u0401",iocy:"\u0451",Iogon:"\u012E",iogon:"\u012F",Iopf:"\u{1D540}",iopf:"\u{1D55A}",Iota:"\u0399",iota:"\u03B9",iprod:"\u2A3C",iquest:"\xBF",iscr:"\u{1D4BE}",Iscr:"\u2110",isin:"\u2208",isindot:"\u22F5",isinE:"\u22F9",isins:"\u22F4",isinsv:"\u22F3",isinv:"\u2208",it:"\u2062",Itilde:"\u0128",itilde:"\u0129",Iukcy:"\u0406",iukcy:"\u0456",Iuml:"\xCF",iuml:"\xEF",Jcirc:"\u0134",jcirc:"\u0135",Jcy:"\u0419",jcy:"\u0439",Jfr:"\u{1D50D}",jfr:"\u{1D527}",jmath:"\u0237",Jopf:"\u{1D541}",jopf:"\u{1D55B}",Jscr:"\u{1D4A5}",jscr:"\u{1D4BF}",Jsercy:"\u0408",jsercy:"\u0458",Jukcy:"\u0404",jukcy:"\u0454",Kappa:"\u039A",kappa:"\u03BA",kappav:"\u03F0",Kcedil:"\u0136",kcedil:"\u0137",Kcy:"\u041A",kcy:"\u043A",Kfr:"\u{1D50E}",kfr:"\u{1D528}",kgreen:"\u0138",KHcy:"\u0425",khcy:"\u0445",KJcy:"\u040C",kjcy:"\u045C",Kopf:"\u{1D542}",kopf:"\u{1D55C}",Kscr:"\u{1D4A6}",kscr:"\u{1D4C0}",lAarr:"\u21DA",Lacute:"\u0139",lacute:"\u013A",laemptyv:"\u29B4",lagran:"\u2112",Lambda:"\u039B",lambda:"\u03BB",lang:"\u27E8",Lang:"\u27EA",langd:"\u2991",langle:"\u27E8",lap:"\u2A85",Laplacetrf:"\u2112",laquo:"\xAB",larrb:"\u21E4",larrbfs:"\u291F",larr:"\u2190",Larr:"\u219E",lArr:"\u21D0",larrfs:"\u291D",larrhk:"\u21A9",larrlp:"\u21AB",larrpl:"\u2939",larrsim:"\u2973",larrtl:"\u21A2",latail:"\u2919",lAtail:"\u291B",lat:"\u2AAB",late:"\u2AAD",lates:"\u2AAD\uFE00",lbarr:"\u290C",lBarr:"\u290E",lbbrk:"\u2772",lbrace:"{",lbrack:"[",lbrke:"\u298B",lbrksld:"\u298F",lbrkslu:"\u298D",Lcaron:"\u013D",lcaron:"\u013E",Lcedil:"\u013B",lcedil:"\u013C",lceil:"\u2308",lcub:"{",Lcy:"\u041B",lcy:"\u043B",ldca:"\u2936",ldquo:"\u201C",ldquor:"\u201E",ldrdhar:"\u2967",ldrushar:"\u294B",ldsh:"\u21B2",le:"\u2264",lE:"\u2266",LeftAngleBracket:"\u27E8",LeftArrowBar:"\u21E4",leftarrow:"\u2190",LeftArrow:"\u2190",Leftarrow:"\u21D0",LeftArrowRightArrow:"\u21C6",leftarrowtail:"\u21A2",LeftCeiling:"\u2308",LeftDoubleBracket:"\u27E6",LeftDownTeeVector:"\u2961",LeftDownVectorBar:"\u2959",LeftDownVector:"\u21C3",LeftFloor:"\u230A",leftharpoondown:"\u21BD",leftharpoonup:"\u21BC",leftleftarrows:"\u21C7",leftrightarrow:"\u2194",LeftRightArrow:"\u2194",Leftrightarrow:"\u21D4",leftrightarrows:"\u21C6",leftrightharpoons:"\u21CB",leftrightsquigarrow:"\u21AD",LeftRightVector:"\u294E",LeftTeeArrow:"\u21A4",LeftTee:"\u22A3",LeftTeeVector:"\u295A",leftthreetimes:"\u22CB",LeftTriangleBar:"\u29CF",LeftTriangle:"\u22B2",LeftTriangleEqual:"\u22B4",LeftUpDownVector:"\u2951",LeftUpTeeVector:"\u2960",LeftUpVectorBar:"\u2958",LeftUpVector:"\u21BF",LeftVectorBar:"\u2952",LeftVector:"\u21BC",lEg:"\u2A8B",leg:"\u22DA",leq:"\u2264",leqq:"\u2266",leqslant:"\u2A7D",lescc:"\u2AA8",les:"\u2A7D",lesdot:"\u2A7F",lesdoto:"\u2A81",lesdotor:"\u2A83",lesg:"\u22DA\uFE00",lesges:"\u2A93",lessapprox:"\u2A85",lessdot:"\u22D6",lesseqgtr:"\u22DA",lesseqqgtr:"\u2A8B",LessEqualGreater:"\u22DA",LessFullEqual:"\u2266",LessGreater:"\u2276",lessgtr:"\u2276",LessLess:"\u2AA1",lesssim:"\u2272",LessSlantEqual:"\u2A7D",LessTilde:"\u2272",lfisht:"\u297C",lfloor:"\u230A",Lfr:"\u{1D50F}",lfr:"\u{1D529}",lg:"\u2276",lgE:"\u2A91",lHar:"\u2962",lhard:"\u21BD",lharu:"\u21BC",lharul:"\u296A",lhblk:"\u2584",LJcy:"\u0409",ljcy:"\u0459",llarr:"\u21C7",ll:"\u226A",Ll:"\u22D8",llcorner:"\u231E",Lleftarrow:"\u21DA",llhard:"\u296B",lltri:"\u25FA",Lmidot:"\u013F",lmidot:"\u0140",lmoustache:"\u23B0",lmoust:"\u23B0",lnap:"\u2A89",lnapprox:"\u2A89",lne:"\u2A87",lnE:"\u2268",lneq:"\u2A87",lneqq:"\u2268",lnsim:"\u22E6",loang:"\u27EC",loarr:"\u21FD",lobrk:"\u27E6",longleftarrow:"\u27F5",LongLeftArrow:"\u27F5",Longleftarrow:"\u27F8",longleftrightarrow:"\u27F7",LongLeftRightArrow:"\u27F7",Longleftrightarrow:"\u27FA",longmapsto:"\u27FC",longrightarrow:"\u27F6",LongRightArrow:"\u27F6",Longrightarrow:"\u27F9",looparrowleft:"\u21AB",looparrowright:"\u21AC",lopar:"\u2985",Lopf:"\u{1D543}",lopf:"\u{1D55D}",loplus:"\u2A2D",lotimes:"\u2A34",lowast:"\u2217",lowbar:"_",LowerLeftArrow:"\u2199",LowerRightArrow:"\u2198",loz:"\u25CA",lozenge:"\u25CA",lozf:"\u29EB",lpar:"(",lparlt:"\u2993",lrarr:"\u21C6",lrcorner:"\u231F",lrhar:"\u21CB",lrhard:"\u296D",lrm:"\u200E",lrtri:"\u22BF",lsaquo:"\u2039",lscr:"\u{1D4C1}",Lscr:"\u2112",lsh:"\u21B0",Lsh:"\u21B0",lsim:"\u2272",lsime:"\u2A8D",lsimg:"\u2A8F",lsqb:"[",lsquo:"\u2018",lsquor:"\u201A",Lstrok:"\u0141",lstrok:"\u0142",ltcc:"\u2AA6",ltcir:"\u2A79",lt:"<",LT:"<",Lt:"\u226A",ltdot:"\u22D6",lthree:"\u22CB",ltimes:"\u22C9",ltlarr:"\u2976",ltquest:"\u2A7B",ltri:"\u25C3",ltrie:"\u22B4",ltrif:"\u25C2",ltrPar:"\u2996",lurdshar:"\u294A",luruhar:"\u2966",lvertneqq:"\u2268\uFE00",lvnE:"\u2268\uFE00",macr:"\xAF",male:"\u2642",malt:"\u2720",maltese:"\u2720",Map:"\u2905",map:"\u21A6",mapsto:"\u21A6",mapstodown:"\u21A7",mapstoleft:"\u21A4",mapstoup:"\u21A5",marker:"\u25AE",mcomma:"\u2A29",Mcy:"\u041C",mcy:"\u043C",mdash:"\u2014",mDDot:"\u223A",measuredangle:"\u2221",MediumSpace:"\u205F",Mellintrf:"\u2133",Mfr:"\u{1D510}",mfr:"\u{1D52A}",mho:"\u2127",micro:"\xB5",midast:"*",midcir:"\u2AF0",mid:"\u2223",middot:"\xB7",minusb:"\u229F",minus:"\u2212",minusd:"\u2238",minusdu:"\u2A2A",MinusPlus:"\u2213",mlcp:"\u2ADB",mldr:"\u2026",mnplus:"\u2213",models:"\u22A7",Mopf:"\u{1D544}",mopf:"\u{1D55E}",mp:"\u2213",mscr:"\u{1D4C2}",Mscr:"\u2133",mstpos:"\u223E",Mu:"\u039C",mu:"\u03BC",multimap:"\u22B8",mumap:"\u22B8",nabla:"\u2207",Nacute:"\u0143",nacute:"\u0144",nang:"\u2220\u20D2",nap:"\u2249",napE:"\u2A70\u0338",napid:"\u224B\u0338",napos:"\u0149",napprox:"\u2249",natural:"\u266E",naturals:"\u2115",natur:"\u266E",nbsp:"\xA0",nbump:"\u224E\u0338",nbumpe:"\u224F\u0338",ncap:"\u2A43",Ncaron:"\u0147",ncaron:"\u0148",Ncedil:"\u0145",ncedil:"\u0146",ncong:"\u2247",ncongdot:"\u2A6D\u0338",ncup:"\u2A42",Ncy:"\u041D",ncy:"\u043D",ndash:"\u2013",nearhk:"\u2924",nearr:"\u2197",neArr:"\u21D7",nearrow:"\u2197",ne:"\u2260",nedot:"\u2250\u0338",NegativeMediumSpace:"\u200B",NegativeThickSpace:"\u200B",NegativeThinSpace:"\u200B",NegativeVeryThinSpace:"\u200B",nequiv:"\u2262",nesear:"\u2928",nesim:"\u2242\u0338",NestedGreaterGreater:"\u226B",NestedLessLess:"\u226A",NewLine:` -`,nexist:"\u2204",nexists:"\u2204",Nfr:"\u{1D511}",nfr:"\u{1D52B}",ngE:"\u2267\u0338",nge:"\u2271",ngeq:"\u2271",ngeqq:"\u2267\u0338",ngeqslant:"\u2A7E\u0338",nges:"\u2A7E\u0338",nGg:"\u22D9\u0338",ngsim:"\u2275",nGt:"\u226B\u20D2",ngt:"\u226F",ngtr:"\u226F",nGtv:"\u226B\u0338",nharr:"\u21AE",nhArr:"\u21CE",nhpar:"\u2AF2",ni:"\u220B",nis:"\u22FC",nisd:"\u22FA",niv:"\u220B",NJcy:"\u040A",njcy:"\u045A",nlarr:"\u219A",nlArr:"\u21CD",nldr:"\u2025",nlE:"\u2266\u0338",nle:"\u2270",nleftarrow:"\u219A",nLeftarrow:"\u21CD",nleftrightarrow:"\u21AE",nLeftrightarrow:"\u21CE",nleq:"\u2270",nleqq:"\u2266\u0338",nleqslant:"\u2A7D\u0338",nles:"\u2A7D\u0338",nless:"\u226E",nLl:"\u22D8\u0338",nlsim:"\u2274",nLt:"\u226A\u20D2",nlt:"\u226E",nltri:"\u22EA",nltrie:"\u22EC",nLtv:"\u226A\u0338",nmid:"\u2224",NoBreak:"\u2060",NonBreakingSpace:"\xA0",nopf:"\u{1D55F}",Nopf:"\u2115",Not:"\u2AEC",not:"\xAC",NotCongruent:"\u2262",NotCupCap:"\u226D",NotDoubleVerticalBar:"\u2226",NotElement:"\u2209",NotEqual:"\u2260",NotEqualTilde:"\u2242\u0338",NotExists:"\u2204",NotGreater:"\u226F",NotGreaterEqual:"\u2271",NotGreaterFullEqual:"\u2267\u0338",NotGreaterGreater:"\u226B\u0338",NotGreaterLess:"\u2279",NotGreaterSlantEqual:"\u2A7E\u0338",NotGreaterTilde:"\u2275",NotHumpDownHump:"\u224E\u0338",NotHumpEqual:"\u224F\u0338",notin:"\u2209",notindot:"\u22F5\u0338",notinE:"\u22F9\u0338",notinva:"\u2209",notinvb:"\u22F7",notinvc:"\u22F6",NotLeftTriangleBar:"\u29CF\u0338",NotLeftTriangle:"\u22EA",NotLeftTriangleEqual:"\u22EC",NotLess:"\u226E",NotLessEqual:"\u2270",NotLessGreater:"\u2278",NotLessLess:"\u226A\u0338",NotLessSlantEqual:"\u2A7D\u0338",NotLessTilde:"\u2274",NotNestedGreaterGreater:"\u2AA2\u0338",NotNestedLessLess:"\u2AA1\u0338",notni:"\u220C",notniva:"\u220C",notnivb:"\u22FE",notnivc:"\u22FD",NotPrecedes:"\u2280",NotPrecedesEqual:"\u2AAF\u0338",NotPrecedesSlantEqual:"\u22E0",NotReverseElement:"\u220C",NotRightTriangleBar:"\u29D0\u0338",NotRightTriangle:"\u22EB",NotRightTriangleEqual:"\u22ED",NotSquareSubset:"\u228F\u0338",NotSquareSubsetEqual:"\u22E2",NotSquareSuperset:"\u2290\u0338",NotSquareSupersetEqual:"\u22E3",NotSubset:"\u2282\u20D2",NotSubsetEqual:"\u2288",NotSucceeds:"\u2281",NotSucceedsEqual:"\u2AB0\u0338",NotSucceedsSlantEqual:"\u22E1",NotSucceedsTilde:"\u227F\u0338",NotSuperset:"\u2283\u20D2",NotSupersetEqual:"\u2289",NotTilde:"\u2241",NotTildeEqual:"\u2244",NotTildeFullEqual:"\u2247",NotTildeTilde:"\u2249",NotVerticalBar:"\u2224",nparallel:"\u2226",npar:"\u2226",nparsl:"\u2AFD\u20E5",npart:"\u2202\u0338",npolint:"\u2A14",npr:"\u2280",nprcue:"\u22E0",nprec:"\u2280",npreceq:"\u2AAF\u0338",npre:"\u2AAF\u0338",nrarrc:"\u2933\u0338",nrarr:"\u219B",nrArr:"\u21CF",nrarrw:"\u219D\u0338",nrightarrow:"\u219B",nRightarrow:"\u21CF",nrtri:"\u22EB",nrtrie:"\u22ED",nsc:"\u2281",nsccue:"\u22E1",nsce:"\u2AB0\u0338",Nscr:"\u{1D4A9}",nscr:"\u{1D4C3}",nshortmid:"\u2224",nshortparallel:"\u2226",nsim:"\u2241",nsime:"\u2244",nsimeq:"\u2244",nsmid:"\u2224",nspar:"\u2226",nsqsube:"\u22E2",nsqsupe:"\u22E3",nsub:"\u2284",nsubE:"\u2AC5\u0338",nsube:"\u2288",nsubset:"\u2282\u20D2",nsubseteq:"\u2288",nsubseteqq:"\u2AC5\u0338",nsucc:"\u2281",nsucceq:"\u2AB0\u0338",nsup:"\u2285",nsupE:"\u2AC6\u0338",nsupe:"\u2289",nsupset:"\u2283\u20D2",nsupseteq:"\u2289",nsupseteqq:"\u2AC6\u0338",ntgl:"\u2279",Ntilde:"\xD1",ntilde:"\xF1",ntlg:"\u2278",ntriangleleft:"\u22EA",ntrianglelefteq:"\u22EC",ntriangleright:"\u22EB",ntrianglerighteq:"\u22ED",Nu:"\u039D",nu:"\u03BD",num:"#",numero:"\u2116",numsp:"\u2007",nvap:"\u224D\u20D2",nvdash:"\u22AC",nvDash:"\u22AD",nVdash:"\u22AE",nVDash:"\u22AF",nvge:"\u2265\u20D2",nvgt:">\u20D2",nvHarr:"\u2904",nvinfin:"\u29DE",nvlArr:"\u2902",nvle:"\u2264\u20D2",nvlt:"<\u20D2",nvltrie:"\u22B4\u20D2",nvrArr:"\u2903",nvrtrie:"\u22B5\u20D2",nvsim:"\u223C\u20D2",nwarhk:"\u2923",nwarr:"\u2196",nwArr:"\u21D6",nwarrow:"\u2196",nwnear:"\u2927",Oacute:"\xD3",oacute:"\xF3",oast:"\u229B",Ocirc:"\xD4",ocirc:"\xF4",ocir:"\u229A",Ocy:"\u041E",ocy:"\u043E",odash:"\u229D",Odblac:"\u0150",odblac:"\u0151",odiv:"\u2A38",odot:"\u2299",odsold:"\u29BC",OElig:"\u0152",oelig:"\u0153",ofcir:"\u29BF",Ofr:"\u{1D512}",ofr:"\u{1D52C}",ogon:"\u02DB",Ograve:"\xD2",ograve:"\xF2",ogt:"\u29C1",ohbar:"\u29B5",ohm:"\u03A9",oint:"\u222E",olarr:"\u21BA",olcir:"\u29BE",olcross:"\u29BB",oline:"\u203E",olt:"\u29C0",Omacr:"\u014C",omacr:"\u014D",Omega:"\u03A9",omega:"\u03C9",Omicron:"\u039F",omicron:"\u03BF",omid:"\u29B6",ominus:"\u2296",Oopf:"\u{1D546}",oopf:"\u{1D560}",opar:"\u29B7",OpenCurlyDoubleQuote:"\u201C",OpenCurlyQuote:"\u2018",operp:"\u29B9",oplus:"\u2295",orarr:"\u21BB",Or:"\u2A54",or:"\u2228",ord:"\u2A5D",order:"\u2134",orderof:"\u2134",ordf:"\xAA",ordm:"\xBA",origof:"\u22B6",oror:"\u2A56",orslope:"\u2A57",orv:"\u2A5B",oS:"\u24C8",Oscr:"\u{1D4AA}",oscr:"\u2134",Oslash:"\xD8",oslash:"\xF8",osol:"\u2298",Otilde:"\xD5",otilde:"\xF5",otimesas:"\u2A36",Otimes:"\u2A37",otimes:"\u2297",Ouml:"\xD6",ouml:"\xF6",ovbar:"\u233D",OverBar:"\u203E",OverBrace:"\u23DE",OverBracket:"\u23B4",OverParenthesis:"\u23DC",para:"\xB6",parallel:"\u2225",par:"\u2225",parsim:"\u2AF3",parsl:"\u2AFD",part:"\u2202",PartialD:"\u2202",Pcy:"\u041F",pcy:"\u043F",percnt:"%",period:".",permil:"\u2030",perp:"\u22A5",pertenk:"\u2031",Pfr:"\u{1D513}",pfr:"\u{1D52D}",Phi:"\u03A6",phi:"\u03C6",phiv:"\u03D5",phmmat:"\u2133",phone:"\u260E",Pi:"\u03A0",pi:"\u03C0",pitchfork:"\u22D4",piv:"\u03D6",planck:"\u210F",planckh:"\u210E",plankv:"\u210F",plusacir:"\u2A23",plusb:"\u229E",pluscir:"\u2A22",plus:"+",plusdo:"\u2214",plusdu:"\u2A25",pluse:"\u2A72",PlusMinus:"\xB1",plusmn:"\xB1",plussim:"\u2A26",plustwo:"\u2A27",pm:"\xB1",Poincareplane:"\u210C",pointint:"\u2A15",popf:"\u{1D561}",Popf:"\u2119",pound:"\xA3",prap:"\u2AB7",Pr:"\u2ABB",pr:"\u227A",prcue:"\u227C",precapprox:"\u2AB7",prec:"\u227A",preccurlyeq:"\u227C",Precedes:"\u227A",PrecedesEqual:"\u2AAF",PrecedesSlantEqual:"\u227C",PrecedesTilde:"\u227E",preceq:"\u2AAF",precnapprox:"\u2AB9",precneqq:"\u2AB5",precnsim:"\u22E8",pre:"\u2AAF",prE:"\u2AB3",precsim:"\u227E",prime:"\u2032",Prime:"\u2033",primes:"\u2119",prnap:"\u2AB9",prnE:"\u2AB5",prnsim:"\u22E8",prod:"\u220F",Product:"\u220F",profalar:"\u232E",profline:"\u2312",profsurf:"\u2313",prop:"\u221D",Proportional:"\u221D",Proportion:"\u2237",propto:"\u221D",prsim:"\u227E",prurel:"\u22B0",Pscr:"\u{1D4AB}",pscr:"\u{1D4C5}",Psi:"\u03A8",psi:"\u03C8",puncsp:"\u2008",Qfr:"\u{1D514}",qfr:"\u{1D52E}",qint:"\u2A0C",qopf:"\u{1D562}",Qopf:"\u211A",qprime:"\u2057",Qscr:"\u{1D4AC}",qscr:"\u{1D4C6}",quaternions:"\u210D",quatint:"\u2A16",quest:"?",questeq:"\u225F",quot:'"',QUOT:'"',rAarr:"\u21DB",race:"\u223D\u0331",Racute:"\u0154",racute:"\u0155",radic:"\u221A",raemptyv:"\u29B3",rang:"\u27E9",Rang:"\u27EB",rangd:"\u2992",range:"\u29A5",rangle:"\u27E9",raquo:"\xBB",rarrap:"\u2975",rarrb:"\u21E5",rarrbfs:"\u2920",rarrc:"\u2933",rarr:"\u2192",Rarr:"\u21A0",rArr:"\u21D2",rarrfs:"\u291E",rarrhk:"\u21AA",rarrlp:"\u21AC",rarrpl:"\u2945",rarrsim:"\u2974",Rarrtl:"\u2916",rarrtl:"\u21A3",rarrw:"\u219D",ratail:"\u291A",rAtail:"\u291C",ratio:"\u2236",rationals:"\u211A",rbarr:"\u290D",rBarr:"\u290F",RBarr:"\u2910",rbbrk:"\u2773",rbrace:"}",rbrack:"]",rbrke:"\u298C",rbrksld:"\u298E",rbrkslu:"\u2990",Rcaron:"\u0158",rcaron:"\u0159",Rcedil:"\u0156",rcedil:"\u0157",rceil:"\u2309",rcub:"}",Rcy:"\u0420",rcy:"\u0440",rdca:"\u2937",rdldhar:"\u2969",rdquo:"\u201D",rdquor:"\u201D",rdsh:"\u21B3",real:"\u211C",realine:"\u211B",realpart:"\u211C",reals:"\u211D",Re:"\u211C",rect:"\u25AD",reg:"\xAE",REG:"\xAE",ReverseElement:"\u220B",ReverseEquilibrium:"\u21CB",ReverseUpEquilibrium:"\u296F",rfisht:"\u297D",rfloor:"\u230B",rfr:"\u{1D52F}",Rfr:"\u211C",rHar:"\u2964",rhard:"\u21C1",rharu:"\u21C0",rharul:"\u296C",Rho:"\u03A1",rho:"\u03C1",rhov:"\u03F1",RightAngleBracket:"\u27E9",RightArrowBar:"\u21E5",rightarrow:"\u2192",RightArrow:"\u2192",Rightarrow:"\u21D2",RightArrowLeftArrow:"\u21C4",rightarrowtail:"\u21A3",RightCeiling:"\u2309",RightDoubleBracket:"\u27E7",RightDownTeeVector:"\u295D",RightDownVectorBar:"\u2955",RightDownVector:"\u21C2",RightFloor:"\u230B",rightharpoondown:"\u21C1",rightharpoonup:"\u21C0",rightleftarrows:"\u21C4",rightleftharpoons:"\u21CC",rightrightarrows:"\u21C9",rightsquigarrow:"\u219D",RightTeeArrow:"\u21A6",RightTee:"\u22A2",RightTeeVector:"\u295B",rightthreetimes:"\u22CC",RightTriangleBar:"\u29D0",RightTriangle:"\u22B3",RightTriangleEqual:"\u22B5",RightUpDownVector:"\u294F",RightUpTeeVector:"\u295C",RightUpVectorBar:"\u2954",RightUpVector:"\u21BE",RightVectorBar:"\u2953",RightVector:"\u21C0",ring:"\u02DA",risingdotseq:"\u2253",rlarr:"\u21C4",rlhar:"\u21CC",rlm:"\u200F",rmoustache:"\u23B1",rmoust:"\u23B1",rnmid:"\u2AEE",roang:"\u27ED",roarr:"\u21FE",robrk:"\u27E7",ropar:"\u2986",ropf:"\u{1D563}",Ropf:"\u211D",roplus:"\u2A2E",rotimes:"\u2A35",RoundImplies:"\u2970",rpar:")",rpargt:"\u2994",rppolint:"\u2A12",rrarr:"\u21C9",Rrightarrow:"\u21DB",rsaquo:"\u203A",rscr:"\u{1D4C7}",Rscr:"\u211B",rsh:"\u21B1",Rsh:"\u21B1",rsqb:"]",rsquo:"\u2019",rsquor:"\u2019",rthree:"\u22CC",rtimes:"\u22CA",rtri:"\u25B9",rtrie:"\u22B5",rtrif:"\u25B8",rtriltri:"\u29CE",RuleDelayed:"\u29F4",ruluhar:"\u2968",rx:"\u211E",Sacute:"\u015A",sacute:"\u015B",sbquo:"\u201A",scap:"\u2AB8",Scaron:"\u0160",scaron:"\u0161",Sc:"\u2ABC",sc:"\u227B",sccue:"\u227D",sce:"\u2AB0",scE:"\u2AB4",Scedil:"\u015E",scedil:"\u015F",Scirc:"\u015C",scirc:"\u015D",scnap:"\u2ABA",scnE:"\u2AB6",scnsim:"\u22E9",scpolint:"\u2A13",scsim:"\u227F",Scy:"\u0421",scy:"\u0441",sdotb:"\u22A1",sdot:"\u22C5",sdote:"\u2A66",searhk:"\u2925",searr:"\u2198",seArr:"\u21D8",searrow:"\u2198",sect:"\xA7",semi:";",seswar:"\u2929",setminus:"\u2216",setmn:"\u2216",sext:"\u2736",Sfr:"\u{1D516}",sfr:"\u{1D530}",sfrown:"\u2322",sharp:"\u266F",SHCHcy:"\u0429",shchcy:"\u0449",SHcy:"\u0428",shcy:"\u0448",ShortDownArrow:"\u2193",ShortLeftArrow:"\u2190",shortmid:"\u2223",shortparallel:"\u2225",ShortRightArrow:"\u2192",ShortUpArrow:"\u2191",shy:"\xAD",Sigma:"\u03A3",sigma:"\u03C3",sigmaf:"\u03C2",sigmav:"\u03C2",sim:"\u223C",simdot:"\u2A6A",sime:"\u2243",simeq:"\u2243",simg:"\u2A9E",simgE:"\u2AA0",siml:"\u2A9D",simlE:"\u2A9F",simne:"\u2246",simplus:"\u2A24",simrarr:"\u2972",slarr:"\u2190",SmallCircle:"\u2218",smallsetminus:"\u2216",smashp:"\u2A33",smeparsl:"\u29E4",smid:"\u2223",smile:"\u2323",smt:"\u2AAA",smte:"\u2AAC",smtes:"\u2AAC\uFE00",SOFTcy:"\u042C",softcy:"\u044C",solbar:"\u233F",solb:"\u29C4",sol:"/",Sopf:"\u{1D54A}",sopf:"\u{1D564}",spades:"\u2660",spadesuit:"\u2660",spar:"\u2225",sqcap:"\u2293",sqcaps:"\u2293\uFE00",sqcup:"\u2294",sqcups:"\u2294\uFE00",Sqrt:"\u221A",sqsub:"\u228F",sqsube:"\u2291",sqsubset:"\u228F",sqsubseteq:"\u2291",sqsup:"\u2290",sqsupe:"\u2292",sqsupset:"\u2290",sqsupseteq:"\u2292",square:"\u25A1",Square:"\u25A1",SquareIntersection:"\u2293",SquareSubset:"\u228F",SquareSubsetEqual:"\u2291",SquareSuperset:"\u2290",SquareSupersetEqual:"\u2292",SquareUnion:"\u2294",squarf:"\u25AA",squ:"\u25A1",squf:"\u25AA",srarr:"\u2192",Sscr:"\u{1D4AE}",sscr:"\u{1D4C8}",ssetmn:"\u2216",ssmile:"\u2323",sstarf:"\u22C6",Star:"\u22C6",star:"\u2606",starf:"\u2605",straightepsilon:"\u03F5",straightphi:"\u03D5",strns:"\xAF",sub:"\u2282",Sub:"\u22D0",subdot:"\u2ABD",subE:"\u2AC5",sube:"\u2286",subedot:"\u2AC3",submult:"\u2AC1",subnE:"\u2ACB",subne:"\u228A",subplus:"\u2ABF",subrarr:"\u2979",subset:"\u2282",Subset:"\u22D0",subseteq:"\u2286",subseteqq:"\u2AC5",SubsetEqual:"\u2286",subsetneq:"\u228A",subsetneqq:"\u2ACB",subsim:"\u2AC7",subsub:"\u2AD5",subsup:"\u2AD3",succapprox:"\u2AB8",succ:"\u227B",succcurlyeq:"\u227D",Succeeds:"\u227B",SucceedsEqual:"\u2AB0",SucceedsSlantEqual:"\u227D",SucceedsTilde:"\u227F",succeq:"\u2AB0",succnapprox:"\u2ABA",succneqq:"\u2AB6",succnsim:"\u22E9",succsim:"\u227F",SuchThat:"\u220B",sum:"\u2211",Sum:"\u2211",sung:"\u266A",sup1:"\xB9",sup2:"\xB2",sup3:"\xB3",sup:"\u2283",Sup:"\u22D1",supdot:"\u2ABE",supdsub:"\u2AD8",supE:"\u2AC6",supe:"\u2287",supedot:"\u2AC4",Superset:"\u2283",SupersetEqual:"\u2287",suphsol:"\u27C9",suphsub:"\u2AD7",suplarr:"\u297B",supmult:"\u2AC2",supnE:"\u2ACC",supne:"\u228B",supplus:"\u2AC0",supset:"\u2283",Supset:"\u22D1",supseteq:"\u2287",supseteqq:"\u2AC6",supsetneq:"\u228B",supsetneqq:"\u2ACC",supsim:"\u2AC8",supsub:"\u2AD4",supsup:"\u2AD6",swarhk:"\u2926",swarr:"\u2199",swArr:"\u21D9",swarrow:"\u2199",swnwar:"\u292A",szlig:"\xDF",Tab:" ",target:"\u2316",Tau:"\u03A4",tau:"\u03C4",tbrk:"\u23B4",Tcaron:"\u0164",tcaron:"\u0165",Tcedil:"\u0162",tcedil:"\u0163",Tcy:"\u0422",tcy:"\u0442",tdot:"\u20DB",telrec:"\u2315",Tfr:"\u{1D517}",tfr:"\u{1D531}",there4:"\u2234",therefore:"\u2234",Therefore:"\u2234",Theta:"\u0398",theta:"\u03B8",thetasym:"\u03D1",thetav:"\u03D1",thickapprox:"\u2248",thicksim:"\u223C",ThickSpace:"\u205F\u200A",ThinSpace:"\u2009",thinsp:"\u2009",thkap:"\u2248",thksim:"\u223C",THORN:"\xDE",thorn:"\xFE",tilde:"\u02DC",Tilde:"\u223C",TildeEqual:"\u2243",TildeFullEqual:"\u2245",TildeTilde:"\u2248",timesbar:"\u2A31",timesb:"\u22A0",times:"\xD7",timesd:"\u2A30",tint:"\u222D",toea:"\u2928",topbot:"\u2336",topcir:"\u2AF1",top:"\u22A4",Topf:"\u{1D54B}",topf:"\u{1D565}",topfork:"\u2ADA",tosa:"\u2929",tprime:"\u2034",trade:"\u2122",TRADE:"\u2122",triangle:"\u25B5",triangledown:"\u25BF",triangleleft:"\u25C3",trianglelefteq:"\u22B4",triangleq:"\u225C",triangleright:"\u25B9",trianglerighteq:"\u22B5",tridot:"\u25EC",trie:"\u225C",triminus:"\u2A3A",TripleDot:"\u20DB",triplus:"\u2A39",trisb:"\u29CD",tritime:"\u2A3B",trpezium:"\u23E2",Tscr:"\u{1D4AF}",tscr:"\u{1D4C9}",TScy:"\u0426",tscy:"\u0446",TSHcy:"\u040B",tshcy:"\u045B",Tstrok:"\u0166",tstrok:"\u0167",twixt:"\u226C",twoheadleftarrow:"\u219E",twoheadrightarrow:"\u21A0",Uacute:"\xDA",uacute:"\xFA",uarr:"\u2191",Uarr:"\u219F",uArr:"\u21D1",Uarrocir:"\u2949",Ubrcy:"\u040E",ubrcy:"\u045E",Ubreve:"\u016C",ubreve:"\u016D",Ucirc:"\xDB",ucirc:"\xFB",Ucy:"\u0423",ucy:"\u0443",udarr:"\u21C5",Udblac:"\u0170",udblac:"\u0171",udhar:"\u296E",ufisht:"\u297E",Ufr:"\u{1D518}",ufr:"\u{1D532}",Ugrave:"\xD9",ugrave:"\xF9",uHar:"\u2963",uharl:"\u21BF",uharr:"\u21BE",uhblk:"\u2580",ulcorn:"\u231C",ulcorner:"\u231C",ulcrop:"\u230F",ultri:"\u25F8",Umacr:"\u016A",umacr:"\u016B",uml:"\xA8",UnderBar:"_",UnderBrace:"\u23DF",UnderBracket:"\u23B5",UnderParenthesis:"\u23DD",Union:"\u22C3",UnionPlus:"\u228E",Uogon:"\u0172",uogon:"\u0173",Uopf:"\u{1D54C}",uopf:"\u{1D566}",UpArrowBar:"\u2912",uparrow:"\u2191",UpArrow:"\u2191",Uparrow:"\u21D1",UpArrowDownArrow:"\u21C5",updownarrow:"\u2195",UpDownArrow:"\u2195",Updownarrow:"\u21D5",UpEquilibrium:"\u296E",upharpoonleft:"\u21BF",upharpoonright:"\u21BE",uplus:"\u228E",UpperLeftArrow:"\u2196",UpperRightArrow:"\u2197",upsi:"\u03C5",Upsi:"\u03D2",upsih:"\u03D2",Upsilon:"\u03A5",upsilon:"\u03C5",UpTeeArrow:"\u21A5",UpTee:"\u22A5",upuparrows:"\u21C8",urcorn:"\u231D",urcorner:"\u231D",urcrop:"\u230E",Uring:"\u016E",uring:"\u016F",urtri:"\u25F9",Uscr:"\u{1D4B0}",uscr:"\u{1D4CA}",utdot:"\u22F0",Utilde:"\u0168",utilde:"\u0169",utri:"\u25B5",utrif:"\u25B4",uuarr:"\u21C8",Uuml:"\xDC",uuml:"\xFC",uwangle:"\u29A7",vangrt:"\u299C",varepsilon:"\u03F5",varkappa:"\u03F0",varnothing:"\u2205",varphi:"\u03D5",varpi:"\u03D6",varpropto:"\u221D",varr:"\u2195",vArr:"\u21D5",varrho:"\u03F1",varsigma:"\u03C2",varsubsetneq:"\u228A\uFE00",varsubsetneqq:"\u2ACB\uFE00",varsupsetneq:"\u228B\uFE00",varsupsetneqq:"\u2ACC\uFE00",vartheta:"\u03D1",vartriangleleft:"\u22B2",vartriangleright:"\u22B3",vBar:"\u2AE8",Vbar:"\u2AEB",vBarv:"\u2AE9",Vcy:"\u0412",vcy:"\u0432",vdash:"\u22A2",vDash:"\u22A8",Vdash:"\u22A9",VDash:"\u22AB",Vdashl:"\u2AE6",veebar:"\u22BB",vee:"\u2228",Vee:"\u22C1",veeeq:"\u225A",vellip:"\u22EE",verbar:"|",Verbar:"\u2016",vert:"|",Vert:"\u2016",VerticalBar:"\u2223",VerticalLine:"|",VerticalSeparator:"\u2758",VerticalTilde:"\u2240",VeryThinSpace:"\u200A",Vfr:"\u{1D519}",vfr:"\u{1D533}",vltri:"\u22B2",vnsub:"\u2282\u20D2",vnsup:"\u2283\u20D2",Vopf:"\u{1D54D}",vopf:"\u{1D567}",vprop:"\u221D",vrtri:"\u22B3",Vscr:"\u{1D4B1}",vscr:"\u{1D4CB}",vsubnE:"\u2ACB\uFE00",vsubne:"\u228A\uFE00",vsupnE:"\u2ACC\uFE00",vsupne:"\u228B\uFE00",Vvdash:"\u22AA",vzigzag:"\u299A",Wcirc:"\u0174",wcirc:"\u0175",wedbar:"\u2A5F",wedge:"\u2227",Wedge:"\u22C0",wedgeq:"\u2259",weierp:"\u2118",Wfr:"\u{1D51A}",wfr:"\u{1D534}",Wopf:"\u{1D54E}",wopf:"\u{1D568}",wp:"\u2118",wr:"\u2240",wreath:"\u2240",Wscr:"\u{1D4B2}",wscr:"\u{1D4CC}",xcap:"\u22C2",xcirc:"\u25EF",xcup:"\u22C3",xdtri:"\u25BD",Xfr:"\u{1D51B}",xfr:"\u{1D535}",xharr:"\u27F7",xhArr:"\u27FA",Xi:"\u039E",xi:"\u03BE",xlarr:"\u27F5",xlArr:"\u27F8",xmap:"\u27FC",xnis:"\u22FB",xodot:"\u2A00",Xopf:"\u{1D54F}",xopf:"\u{1D569}",xoplus:"\u2A01",xotime:"\u2A02",xrarr:"\u27F6",xrArr:"\u27F9",Xscr:"\u{1D4B3}",xscr:"\u{1D4CD}",xsqcup:"\u2A06",xuplus:"\u2A04",xutri:"\u25B3",xvee:"\u22C1",xwedge:"\u22C0",Yacute:"\xDD",yacute:"\xFD",YAcy:"\u042F",yacy:"\u044F",Ycirc:"\u0176",ycirc:"\u0177",Ycy:"\u042B",ycy:"\u044B",yen:"\xA5",Yfr:"\u{1D51C}",yfr:"\u{1D536}",YIcy:"\u0407",yicy:"\u0457",Yopf:"\u{1D550}",yopf:"\u{1D56A}",Yscr:"\u{1D4B4}",yscr:"\u{1D4CE}",YUcy:"\u042E",yucy:"\u044E",yuml:"\xFF",Yuml:"\u0178",Zacute:"\u0179",zacute:"\u017A",Zcaron:"\u017D",zcaron:"\u017E",Zcy:"\u0417",zcy:"\u0437",Zdot:"\u017B",zdot:"\u017C",zeetrf:"\u2128",ZeroWidthSpace:"\u200B",Zeta:"\u0396",zeta:"\u03B6",zfr:"\u{1D537}",Zfr:"\u2128",ZHcy:"\u0416",zhcy:"\u0436",zigrarr:"\u21DD",zopf:"\u{1D56B}",Zopf:"\u2124",Zscr:"\u{1D4B5}",zscr:"\u{1D4CF}",zwj:"\u200D",zwnj:"\u200C"}}),e5=L((e,t)=>{t.exports={Aacute:"\xC1",aacute:"\xE1",Acirc:"\xC2",acirc:"\xE2",acute:"\xB4",AElig:"\xC6",aelig:"\xE6",Agrave:"\xC0",agrave:"\xE0",amp:"&",AMP:"&",Aring:"\xC5",aring:"\xE5",Atilde:"\xC3",atilde:"\xE3",Auml:"\xC4",auml:"\xE4",brvbar:"\xA6",Ccedil:"\xC7",ccedil:"\xE7",cedil:"\xB8",cent:"\xA2",copy:"\xA9",COPY:"\xA9",curren:"\xA4",deg:"\xB0",divide:"\xF7",Eacute:"\xC9",eacute:"\xE9",Ecirc:"\xCA",ecirc:"\xEA",Egrave:"\xC8",egrave:"\xE8",ETH:"\xD0",eth:"\xF0",Euml:"\xCB",euml:"\xEB",frac12:"\xBD",frac14:"\xBC",frac34:"\xBE",gt:">",GT:">",Iacute:"\xCD",iacute:"\xED",Icirc:"\xCE",icirc:"\xEE",iexcl:"\xA1",Igrave:"\xCC",igrave:"\xEC",iquest:"\xBF",Iuml:"\xCF",iuml:"\xEF",laquo:"\xAB",lt:"<",LT:"<",macr:"\xAF",micro:"\xB5",middot:"\xB7",nbsp:"\xA0",not:"\xAC",Ntilde:"\xD1",ntilde:"\xF1",Oacute:"\xD3",oacute:"\xF3",Ocirc:"\xD4",ocirc:"\xF4",Ograve:"\xD2",ograve:"\xF2",ordf:"\xAA",ordm:"\xBA",Oslash:"\xD8",oslash:"\xF8",Otilde:"\xD5",otilde:"\xF5",Ouml:"\xD6",ouml:"\xF6",para:"\xB6",plusmn:"\xB1",pound:"\xA3",quot:'"',QUOT:'"',raquo:"\xBB",reg:"\xAE",REG:"\xAE",sect:"\xA7",shy:"\xAD",sup1:"\xB9",sup2:"\xB2",sup3:"\xB3",szlig:"\xDF",THORN:"\xDE",thorn:"\xFE",times:"\xD7",Uacute:"\xDA",uacute:"\xFA",Ucirc:"\xDB",ucirc:"\xFB",Ugrave:"\xD9",ugrave:"\xF9",uml:"\xA8",Uuml:"\xDC",uuml:"\xFC",Yacute:"\xDD",yacute:"\xFD",yen:"\xA5",yuml:"\xFF"}}),yg=L((e,t)=>{t.exports={amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}}),t5=L((e,t)=>{t.exports={0:65533,128:8364,130:8218,131:402,132:8222,133:8230,134:8224,135:8225,136:710,137:8240,138:352,139:8249,140:338,142:381,145:8216,146:8217,147:8220,148:8221,149:8226,150:8211,151:8212,152:732,153:8482,154:353,155:8250,156:339,158:382,159:376}}),r5=L(e=>{"use strict";var t=e&&e.__importDefault||function(a){return a&&a.__esModule?a:{default:a}};Object.defineProperty(e,"__esModule",{value:!0});var r=t(t5()),n=String.fromCodePoint||function(a){var i="";return a>65535&&(a-=65536,i+=String.fromCharCode(a>>>10&1023|55296),a=56320|a&1023),i+=String.fromCharCode(a),i};function o(a){return a>=55296&&a<=57343||a>1114111?"\uFFFD":(a in r.default&&(a=r.default[a]),n(a))}m(o,"decodeCodePoint"),e.default=o}),wm=L(e=>{"use strict";var t=e&&e.__importDefault||function(c){return c&&c.__esModule?c:{default:c}};Object.defineProperty(e,"__esModule",{value:!0}),e.decodeHTML=e.decodeHTMLStrict=e.decodeXML=void 0;var r=t(fg()),n=t(e5()),o=t(yg()),a=t(r5()),i=/&(?:[a-zA-Z0-9]+|#[xX][\da-fA-F]+|#\d+);/g;e.decodeXML=s(o.default),e.decodeHTMLStrict=s(r.default);function s(c){var d=u(c);return function(y){return String(y).replace(i,d)}}m(s,"getStrictDecoder");var l=m(function(c,d){return c{"use strict";var t=e&&e.__importDefault||function(x){return x&&x.__esModule?x:{default:x}};Object.defineProperty(e,"__esModule",{value:!0}),e.escapeUTF8=e.escape=e.encodeNonAsciiHTML=e.encodeHTML=e.encodeXML=void 0;var r=t(yg()),n=l(r.default),o=u(n);e.encodeXML=v(n);var a=t(fg()),i=l(a.default),s=u(i);e.encodeHTML=f(i,s),e.encodeNonAsciiHTML=v(i);function l(x){return Object.keys(x).sort().reduce(function(O,C){return O[x[C]]="&"+C+";",O},{})}m(l,"getInverseObj");function u(x){for(var O=[],C=[],I=0,P=Object.keys(x);I1?d(x):x.charCodeAt(0)).toString(16).toUpperCase()+";"}m(y,"singleCharReplacer");function f(x,O){return function(C){return C.replace(O,function(I){return x[I]}).replace(c,y)}}m(f,"getInverse");var h=new RegExp(o.source+"|"+c.source,"g");function g(x){return x.replace(h,y)}m(g,"escape"),e.escape=g;function _(x){return x.replace(o,y)}m(_,"escapeUTF8"),e.escapeUTF8=_;function v(x){return function(O){return O.replace(h,function(C){return x[C]||y(C)})}}m(v,"getASCIIEncoder")}),n5=L(e=>{"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.decodeXMLStrict=e.decodeHTML5Strict=e.decodeHTML4Strict=e.decodeHTML5=e.decodeHTML4=e.decodeHTMLStrict=e.decodeHTML=e.decodeXML=e.encodeHTML5=e.encodeHTML4=e.escapeUTF8=e.escape=e.encodeNonAsciiHTML=e.encodeHTML=e.encodeXML=e.encode=e.decodeStrict=e.decode=void 0;var t=wm(),r=Sm();function n(l,u){return(!u||u<=0?t.decodeXML:t.decodeHTML)(l)}m(n,"decode"),e.decode=n;function o(l,u){return(!u||u<=0?t.decodeXML:t.decodeHTMLStrict)(l)}m(o,"decodeStrict"),e.decodeStrict=o;function a(l,u){return(!u||u<=0?r.encodeXML:r.encodeHTML)(l)}m(a,"encode"),e.encode=a;var i=Sm();Object.defineProperty(e,"encodeXML",{enumerable:!0,get:m(function(){return i.encodeXML},"get")}),Object.defineProperty(e,"encodeHTML",{enumerable:!0,get:m(function(){return i.encodeHTML},"get")}),Object.defineProperty(e,"encodeNonAsciiHTML",{enumerable:!0,get:m(function(){return i.encodeNonAsciiHTML},"get")}),Object.defineProperty(e,"escape",{enumerable:!0,get:m(function(){return i.escape},"get")}),Object.defineProperty(e,"escapeUTF8",{enumerable:!0,get:m(function(){return i.escapeUTF8},"get")}),Object.defineProperty(e,"encodeHTML4",{enumerable:!0,get:m(function(){return i.encodeHTML},"get")}),Object.defineProperty(e,"encodeHTML5",{enumerable:!0,get:m(function(){return i.encodeHTML},"get")});var s=wm();Object.defineProperty(e,"decodeXML",{enumerable:!0,get:m(function(){return s.decodeXML},"get")}),Object.defineProperty(e,"decodeHTML",{enumerable:!0,get:m(function(){return s.decodeHTML},"get")}),Object.defineProperty(e,"decodeHTMLStrict",{enumerable:!0,get:m(function(){return s.decodeHTMLStrict},"get")}),Object.defineProperty(e,"decodeHTML4",{enumerable:!0,get:m(function(){return s.decodeHTML},"get")}),Object.defineProperty(e,"decodeHTML5",{enumerable:!0,get:m(function(){return s.decodeHTML},"get")}),Object.defineProperty(e,"decodeHTML4Strict",{enumerable:!0,get:m(function(){return s.decodeHTMLStrict},"get")}),Object.defineProperty(e,"decodeHTML5Strict",{enumerable:!0,get:m(function(){return s.decodeHTMLStrict},"get")}),Object.defineProperty(e,"decodeXMLStrict",{enumerable:!0,get:m(function(){return s.decodeXML},"get")})}),o5=L((e,t)=>{"use strict";function r(R,q){if(!(R instanceof q))throw new TypeError("Cannot call a class as a function")}m(r,"_classCallCheck");function n(R,q){for(var M=0;M=R.length?{done:!0}:{done:!1,value:R[Y++]}},"n"),e:m(function(ae){throw ae},"e"),f:te}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var ne=!0,re=!1,Z;return{s:m(function(){M=M.call(R)},"s"),n:m(function(){var ae=M.next();return ne=ae.done,ae},"n"),e:m(function(ae){re=!0,Z=ae},"e"),f:m(function(){try{!ne&&M.return!=null&&M.return()}finally{if(re)throw Z}},"f")}}m(a,"_createForOfIteratorHelper");function i(R,q){if(R){if(typeof R=="string")return s(R,q);var M=Object.prototype.toString.call(R).slice(8,-1);if(M==="Object"&&R.constructor&&(M=R.constructor.name),M==="Map"||M==="Set")return Array.from(R);if(M==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(M))return s(R,q)}}m(i,"_unsupportedIterableToArray");function s(R,q){(q==null||q>R.length)&&(q=R.length);for(var M=0,Y=new Array(q);M0?R*40+55:0,re=q>0?q*40+55:0,Z=M>0?M*40+55:0;Y[te]=f([ne,re,Z])}m(d,"setStyleColor");function y(R){for(var q=R.toString(16);q.length<2;)q="0"+q;return q}m(y,"toHexString");function f(R){var q=[],M=a(R),Y;try{for(M.s();!(Y=M.n()).done;){var te=Y.value;q.push(y(te))}}catch(ne){M.e(ne)}finally{M.f()}return"#"+q.join("")}m(f,"toColorHexString");function h(R,q,M,Y){var te;return q==="text"?te=I(M,Y):q==="display"?te=_(R,M,Y):q==="xterm256Foreground"?te=D(R,Y.colors[M]):q==="xterm256Background"?te=U(R,Y.colors[M]):q==="rgb"&&(te=g(R,M)),te}m(h,"generateOutput");function g(R,q){q=q.substring(2).slice(0,-1);var M=+q.substr(0,2),Y=q.substring(5).split(";"),te=Y.map(function(ne){return("0"+Number(ne).toString(16)).substr(-2)}).join("");return F(R,(M===38?"color:#":"background-color:#")+te)}m(g,"handleRgb");function _(R,q,M){q=parseInt(q,10);var Y={"-1":m(function(){return"
"},"_"),0:m(function(){return R.length&&v(R)},"_"),1:m(function(){return P(R,"b")},"_"),3:m(function(){return P(R,"i")},"_"),4:m(function(){return P(R,"u")},"_"),8:m(function(){return F(R,"display:none")},"_"),9:m(function(){return P(R,"strike")},"_"),22:m(function(){return F(R,"font-weight:normal;text-decoration:none;font-style:normal")},"_"),23:m(function(){return G(R,"i")},"_"),24:m(function(){return G(R,"u")},"_"),39:m(function(){return D(R,M.fg)},"_"),49:m(function(){return U(R,M.bg)},"_"),53:m(function(){return F(R,"text-decoration:overline")},"_")},te;return Y[q]?te=Y[q]():4"}).join("")}m(v,"resetStyles");function x(R,q){for(var M=[],Y=R;Y<=q;Y++)M.push(Y);return M}m(x,"range");function O(R){return function(q){return(R===null||q.category!==R)&&R!=="all"}}m(O,"notCategory");function C(R){R=parseInt(R,10);var q=null;return R===0?q="all":R===1?q="bold":2")}m(P,"pushTag");function F(R,q){return P(R,"span",q)}m(F,"pushStyle");function D(R,q){return P(R,"span","color:"+q)}m(D,"pushForegroundColor");function U(R,q){return P(R,"span","background-color:"+q)}m(U,"pushBackgroundColor");function G(R,q){var M;if(R.slice(-1)[0]===q&&(M=R.pop()),M)return""}m(G,"closeTag");function X(R,q,M){var Y=!1,te=3;function ne(){return""}m(ne,"remove");function re(qe,ce){return M("xterm256Foreground",ce),""}m(re,"removeXterm256Foreground");function Z(qe,ce){return M("xterm256Background",ce),""}m(Z,"removeXterm256Background");function ae(qe){return q.newline?M("display",-1):M("text",qe),""}m(ae,"newline");function le(qe,ce){Y=!0,ce.trim().length===0&&(ce="0"),ce=ce.trimRight(";").split(";");var Se=a(ce),Ft;try{for(Se.s();!(Ft=Se.n()).done;){var ft=Ft.value;M("display",ft)}}catch(wt){Se.e(wt)}finally{Se.f()}return""}m(le,"ansiMess");function Ee(qe){return M("text",qe),""}m(Ee,"realText");function pe(qe){return M("rgb",qe),""}m(pe,"rgb");var we=[{pattern:/^\x08+/,sub:ne},{pattern:/^\x1b\[[012]?K/,sub:ne},{pattern:/^\x1b\[\(B/,sub:ne},{pattern:/^\x1b\[[34]8;2;\d+;\d+;\d+m/,sub:pe},{pattern:/^\x1b\[38;5;(\d+)m/,sub:re},{pattern:/^\x1b\[48;5;(\d+)m/,sub:Z},{pattern:/^\n/,sub:ae},{pattern:/^\r+\n/,sub:ae},{pattern:/^\r/,sub:ae},{pattern:/^\x1b\[((?:\d{1,3};?)+|)m/,sub:le},{pattern:/^\x1b\[\d?J/,sub:ne},{pattern:/^\x1b\[\d{0,3};\d{0,3}f/,sub:ne},{pattern:/^\x1b\[?[\d;]{0,3}/,sub:ne},{pattern:/^(([^\x1b\x08\r\n])+)/,sub:Ee}];function Le(qe,ce){ce>te&&Y||(Y=!1,R=R.replace(qe.pattern,qe.sub))}m(Le,"process");var Ve=[],Ye=R,fe=Ye.length;e:for(;fe>0;){for(var Ie=0,ye=0,Re=we.length;ye{let e;return typeof window<"u"?e=window:typeof globalThis<"u"?e=globalThis:typeof window<"u"?e=window:typeof self<"u"?e=self:e={},e})();function hg(){let e={setHandler:m(()=>{},"setHandler"),send:m(()=>{},"send")};return new qh({transport:e})}m(hg,"mockChannel");var mg=class{constructor(){this.promise=new Promise(t=>{this.resolve=()=>t(this.getChannel())})}channel;promise;resolve;getChannel=m(()=>{if(!this.channel){let t=hg();return this.setChannel(t),t}return this.channel},"getChannel");ready=m(()=>this.promise,"ready");hasChannel=m(()=>!!this.channel,"hasChannel");setChannel=m(t=>{this.channel=t,this.resolve()},"setChannel")};m(mg,"AddonStore");var a5=mg,Hi="__STORYBOOK_ADDONS_PREVIEW";function gg(){return Ue[Hi]||(Ue[Hi]=new a5),Ue[Hi]}m(gg,"getAddonsStore");var pr=gg(),bg=class{hookListsMap=void 0;mountedDecorators=void 0;prevMountedDecorators=void 0;currentHooks=void 0;nextHookIndex=void 0;currentPhase=void 0;currentEffects=void 0;prevEffects=void 0;currentDecoratorName=void 0;hasUpdates=void 0;currentContext=void 0;renderListener=m(t=>{t===this.currentContext?.id&&(this.triggerEffects(),this.currentContext=null,this.removeRenderListeners())},"renderListener");constructor(){this.init()}init(){this.hookListsMap=new WeakMap,this.mountedDecorators=new Set,this.prevMountedDecorators=new Set,this.currentHooks=[],this.nextHookIndex=0,this.currentPhase="NONE",this.currentEffects=[],this.prevEffects=[],this.currentDecoratorName=null,this.hasUpdates=!1,this.currentContext=null}clean(){this.prevEffects.forEach(t=>{t.destroy&&t.destroy()}),this.init(),this.removeRenderListeners()}getNextHook(){let t=this.currentHooks[this.nextHookIndex];return this.nextHookIndex+=1,t}triggerEffects(){this.prevEffects.forEach(t=>{!this.currentEffects.includes(t)&&t.destroy&&t.destroy()}),this.currentEffects.forEach(t=>{this.prevEffects.includes(t)||(t.destroy=t.create())}),this.prevEffects=this.currentEffects,this.currentEffects=[]}addRenderListeners(){this.removeRenderListeners(),pr.getChannel().on(xn,this.renderListener)}removeRenderListeners(){pr.getChannel().removeListener(xn,this.renderListener)}};m(bg,"HooksContext");var vg=bg;function Zi(e){let t=m((...r)=>{let{hooks:n}=typeof r[0]=="function"?r[1]:r[0],o=n.currentPhase,a=n.currentHooks,i=n.nextHookIndex,s=n.currentDecoratorName;n.currentDecoratorName=e.name,n.prevMountedDecorators.has(e)?(n.currentPhase="UPDATE",n.currentHooks=n.hookListsMap.get(e)||[]):(n.currentPhase="MOUNT",n.currentHooks=[],n.hookListsMap.set(e,n.currentHooks),n.prevMountedDecorators.add(e)),n.nextHookIndex=0;let l=Ue.STORYBOOK_HOOKS_CONTEXT;Ue.STORYBOOK_HOOKS_CONTEXT=n;let u=e(...r);if(Ue.STORYBOOK_HOOKS_CONTEXT=l,n.currentPhase==="UPDATE"&&n.getNextHook()!=null)throw new Error("Rendered fewer hooks than expected. This may be caused by an accidental early return statement.");return n.currentPhase=o,n.currentHooks=a,n.nextHookIndex=i,n.currentDecoratorName=s,u},"hookified");return t.originalFn=e,t}m(Zi,"hookify");var Gi=0,i5=25,s5=m(e=>(t,r)=>{let n=e(Zi(t),r.map(o=>Zi(o)));return o=>{let{hooks:a}=o;a.prevMountedDecorators??=new Set,a.mountedDecorators=new Set([t,...r]),a.currentContext=o,a.hasUpdates=!1;let i=n(o);for(Gi=1;a.hasUpdates;)if(a.hasUpdates=!1,a.currentEffects=[],i=n(o),Gi+=1,Gi>i5)throw new Error("Too many re-renders. Storybook limits the number of renders to prevent an infinite loop.");return a.addRenderListeners(),i}},"applyHooks"),l5=m((e,t)=>e.length===t.length&&e.every((r,n)=>r===t[n]),"areDepsEqual"),Is=m(()=>new Error("Storybook preview hooks can only be called inside decorators and story functions."),"invalidHooksError");function Ps(){return Ue.STORYBOOK_HOOKS_CONTEXT||null}m(Ps,"getHooksContextOrNull");function ra(){let e=Ps();if(e==null)throw Is();return e}m(ra,"getHooksContextOrThrow");function xg(e,t,r){let n=ra();if(n.currentPhase==="MOUNT"){r!=null&&!Array.isArray(r)&&me.warn(`${e} received a final argument that is not an array (instead, received ${r}). When specified, the final argument must be an array.`);let o={name:e,deps:r};return n.currentHooks.push(o),t(o),o}if(n.currentPhase==="UPDATE"){let o=n.getNextHook();if(o==null)throw new Error("Rendered more hooks than during the previous render.");return o.name!==e&&me.warn(`Storybook has detected a change in the order of Hooks${n.currentDecoratorName?` called by ${n.currentDecoratorName}`:""}. This will lead to bugs and errors if not fixed.`),r!=null&&o.deps==null&&me.warn(`${e} received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.`),r!=null&&o.deps!=null&&r.length!==o.deps.length&&me.warn(`The final argument passed to ${e} changed size between renders. The order and size of this array must remain constant. -Previous: ${o.deps} -Incoming: ${r}`),(r==null||o.deps==null||!l5(r,o.deps))&&(t(o),o.deps=r),o}throw Is()}m(xg,"useHook");function Jn(e,t,r){let{memoizedState:n}=xg(e,o=>{o.memoizedState=t()},r);return n}m(Jn,"useMemoLike");function u5(e,t){return Jn("useMemo",e,t)}m(u5,"useMemo");function Bn(e,t){return Jn("useCallback",()=>e,t)}m(Bn,"useCallback");function ks(e,t){return Jn(e,()=>({current:t}),[])}m(ks,"useRefLike");function c5(e){return ks("useRef",e)}m(c5,"useRef");function Eg(){let e=Ps();if(e!=null&&e.currentPhase!=="NONE")e.hasUpdates=!0;else try{pr.getChannel().emit(co)}catch{me.warn("State updates of Storybook preview hooks work only in browser")}}m(Eg,"triggerUpdate");function Rs(e,t){let r=ks(e,typeof t=="function"?t():t),n=m(o=>{r.current=typeof o=="function"?o(r.current):o,Eg()},"setState");return[r.current,n]}m(Rs,"useStateLike");function p5(e){return Rs("useState",e)}m(p5,"useState");function d5(e,t,r){let n=r!=null?()=>r(t):t,[o,a]=Rs("useReducer",n);return[o,m(i=>a(s=>e(s,i)),"dispatch")]}m(d5,"useReducer");function wg(e,t){let r=ra(),n=Jn("useEffect",()=>({create:e}),t);r.currentEffects.includes(n)||r.currentEffects.push(n)}m(wg,"useEffect");function f5(e,t=[]){let r=pr.getChannel();return wg(()=>(Object.entries(e).forEach(([n,o])=>r.on(n,o)),()=>{Object.entries(e).forEach(([n,o])=>r.removeListener(n,o))}),[...Object.keys(e),...t]),Bn(r.emit.bind(r),[r])}m(f5,"useChannel");function na(){let{currentContext:e}=ra();if(e==null)throw Is();return e}m(na,"useStoryContext");function y5(e,t){let{parameters:r}=na();if(e)return r[e]??t}m(y5,"useParameter");function h5(){let e=pr.getChannel(),{id:t,args:r}=na(),n=Bn(a=>e.emit(ho,{storyId:t,updatedArgs:a}),[e,t]),o=Bn(a=>e.emit(po,{storyId:t,argNames:a}),[e,t]);return[r,n,o]}m(h5,"useArgs");function m5(){let e=pr.getChannel(),{globals:t}=na(),r=Bn(n=>e.emit(yo,{globals:n}),[e]);return[t,r]}m(m5,"useGlobals");var Ere=m(({name:e,parameterName:t,wrapper:r,skipIfNoParametersOrOptions:n=!1})=>{let o=m(a=>(i,s)=>{let l=s.parameters&&s.parameters[t];return l&&l.disable||n&&!a&&!l?i(s):r(i,s,{options:a,parameters:l})},"decorator");return(...a)=>typeof a[0]=="function"?o()(...a):(...i)=>{if(i.length>1)return a.length>1?o(a)(...i):o(...a)(...i);throw new Error(`Passing stories directly into ${e}() is not allowed, - instead use addDecorator(${e}) and pass options with the '${t}' parameter`)}},"makeDecorator"),Wi=Qe(Lm(),1),g5=Qe(ta(),1),Am=Qe(_R(),1),b5=Qe(Lm(),1),v5=(0,b5.default)(1)(e=>Object.values(e).reduce((t,r)=>(t[r.importPath]=t[r.importPath]||r,t),{})),Sg=class{entries;constructor({entries:t}={v:5,entries:{}}){this.entries=t}entryFromSpecifier(t){let r=Object.values(this.entries);if(t==="*")return r[0];if(typeof t=="string")return this.entries[t]?this.entries[t]:r.find(a=>a.id.startsWith(t));let{name:n,title:o}=t;return r.find(a=>a.name===n&&a.title===o)}storyIdToEntry(t){let r=this.entries[t];if(!r)throw new $h({storyId:t});return r}importPathToEntry(t){return v5(this.entries)[t]}};m(Sg,"StoryIndexStore");var x5=Sg,Tm=Object.prototype.hasOwnProperty;function es(e,t,r){for(r of e.keys())if(Vr(r,t))return r}m(es,"find");function Vr(e,t){var r,n,o;if(e===t)return!0;if(e&&t&&(r=e.constructor)===t.constructor){if(r===Date)return e.getTime()===t.getTime();if(r===RegExp)return e.toString()===t.toString();if(r===Array){if((n=e.length)===t.length)for(;n--&&Vr(e[n],t[n]););return n===-1}if(r===Set){if(e.size!==t.size)return!1;for(n of e)if(o=n,o&&typeof o=="object"&&(o=es(t,o),!o)||!t.has(o))return!1;return!0}if(r===Map){if(e.size!==t.size)return!1;for(n of e)if(o=n[0],o&&typeof o=="object"&&(o=es(t,o),!o)||!Vr(n[1],t.get(o)))return!1;return!0}if(r===ArrayBuffer)e=new Uint8Array(e),t=new Uint8Array(t);else if(r===DataView){if((n=e.byteLength)===t.byteLength)for(;n--&&e.getInt8(n)===t.getInt8(n););return n===-1}if(ArrayBuffer.isView(e)){if((n=e.byteLength)===t.byteLength)for(;n--&&e[n]===t[n];);return n===-1}if(!r||typeof e=="object"){n=0;for(r in e)if(Tm.call(e,r)&&++n&&!Tm.call(t,r)||!(r in t)||!Vr(e[r],t[r]))return!1;return Object.keys(t).length===n}}return e!==e&&t!==t}m(Vr,"dequal");var Ho=Qe(As(),1);function lt(e){for(var t=[],r=1;r{let r=t.type;if(e==null||!r||t.mapping)return e;switch(r.name){case"string":return String(e);case"enum":return e;case"number":return Number(e);case"boolean":return String(e)==="true";case"array":return!r.value||!Array.isArray(e)?$r:e.reduce((n,o,a)=>{let i=ts(o,{type:r.value});return i!==$r&&(n[a]=i),n},new Array(e.length));case"object":return typeof e=="string"||typeof e=="number"?e:!r.value||typeof e!="object"?$r:Object.entries(e).reduce((n,[o,a])=>{let i=ts(a,{type:r.value[o]});return i===$r?n:Object.assign(n,{[o]:i})},{});default:return $r}},"map"),E5=m((e,t)=>Object.entries(e).reduce((r,[n,o])=>{if(!t[n])return r;let a=ts(o,t[n]);return a===$r?r:Object.assign(r,{[n]:a})},{}),"mapArgsToTypes"),rs=m((e,t)=>Array.isArray(e)&&Array.isArray(t)?t.reduce((r,n,o)=>(r[o]=rs(e[o],t[o]),r),[...e]).filter(r=>r!==void 0):!(0,Ho.default)(e)||!(0,Ho.default)(t)?t:Object.keys({...e,...t}).reduce((r,n)=>{if(n in t){let o=rs(e[n],t[n]);o!==void 0&&(r[n]=o)}else r[n]=e[n];return r},{}),"combineArgs"),w5=m((e,t)=>Object.entries(t).reduce((r,[n,{options:o}])=>{function a(){return n in e&&(r[n]=e[n]),r}if(m(a,"allowArg"),!o)return a();if(!Array.isArray(o))return Ut.error(lt` - Invalid argType: '${n}.options' should be an array. - - More info: https://storybook.js.org/docs/react/api/argtypes - `),a();if(o.some(d=>d&&["object","function"].includes(typeof d)))return Ut.error(lt` - Invalid argType: '${n}.options' should only contain primitives. Use a 'mapping' for complex values. - - More info: https://storybook.js.org/docs/react/writing-stories/args#mapping-to-complex-arg-values - `),a();let i=Array.isArray(e[n]),s=i&&e[n].findIndex(d=>!o.includes(d)),l=i&&s===-1;if(e[n]===void 0||o.includes(e[n])||l)return a();let u=i?`${n}[${s}]`:n,c=o.map(d=>typeof d=="string"?`'${d}'`:String(d)).join(", ");return Ut.warn(`Received illegal value for '${u}'. Supported options: ${c}`),r},{}),"validateOptions"),jn=Symbol("Deeply equal"),Go=m((e,t)=>{if(typeof e!=typeof t)return t;if(Vr(e,t))return jn;if(Array.isArray(e)&&Array.isArray(t)){let r=t.reduce((n,o,a)=>{let i=Go(e[a],o);return i!==jn&&(n[a]=i),n},new Array(t.length));return t.length>=e.length?r:r.concat(new Array(e.length-t.length).fill(void 0))}return(0,Ho.default)(e)&&(0,Ho.default)(t)?Object.keys({...e,...t}).reduce((r,n)=>{let o=Go(e?.[n],t?.[n]);return o===jn?r:Object.assign(r,{[n]:o})},{}):t},"deepDiff"),Ag="UNTARGETED";function Tg({args:e,argTypes:t}){let r={};return Object.entries(e).forEach(([n,o])=>{let{target:a=Ag}=t[n]||{};r[a]=r[a]||{},r[a][n]=o}),r}m(Tg,"groupArgsByTarget");function Cg(e){return Object.keys(e).forEach(t=>e[t]===void 0&&delete e[t]),e}m(Cg,"deleteUndefined");var _g=class{initialArgsByStoryId={};argsByStoryId={};get(t){if(!(t in this.argsByStoryId))throw new Error(`No args known for ${t} -- has it been rendered yet?`);return this.argsByStoryId[t]}setInitial(t){if(!this.initialArgsByStoryId[t.id])this.initialArgsByStoryId[t.id]=t.initialArgs,this.argsByStoryId[t.id]=t.initialArgs;else if(this.initialArgsByStoryId[t.id]!==t.initialArgs){let r=Go(this.initialArgsByStoryId[t.id],this.argsByStoryId[t.id]);this.initialArgsByStoryId[t.id]=t.initialArgs,this.argsByStoryId[t.id]=t.initialArgs,r!==jn&&this.updateFromDelta(t,r)}}updateFromDelta(t,r){let n=w5(r,t.argTypes);this.argsByStoryId[t.id]=rs(this.argsByStoryId[t.id],n)}updateFromPersisted(t,r){let n=E5(r,t.argTypes);return this.updateFromDelta(t,n)}update(t,r){if(!(t in this.argsByStoryId))throw new Error(`No args known for ${t} -- has it been rendered yet?`);this.argsByStoryId[t]=Cg({...this.argsByStoryId[t],...r})}};m(_g,"ArgsStore");var S5=_g,Og=m((e={})=>Object.entries(e).reduce((t,[r,{defaultValue:n}])=>(typeof n<"u"&&(t[r]=n),t),{}),"getValuesFromArgTypes"),Ig=class{allowedGlobalNames;initialGlobals;globals;constructor({globals:t={},globalTypes:r={}}){this.set({globals:t,globalTypes:r})}set({globals:t={},globalTypes:r={}}){let n=this.initialGlobals&&Go(this.initialGlobals,this.globals);this.allowedGlobalNames=new Set([...Object.keys(t),...Object.keys(r)]);let o=Og(r);this.initialGlobals={...o,...t},this.globals=this.initialGlobals,n&&n!==jn&&this.updateFromPersisted(n)}filterAllowedGlobals(t){return Object.entries(t).reduce((r,[n,o])=>(this.allowedGlobalNames.has(n)?r[n]=o:me.warn(`Attempted to set a global (${n}) that is not defined in initial globals or globalTypes`),r),{})}updateFromPersisted(t){let r=this.filterAllowedGlobals(t);this.globals={...this.globals,...r}}get(){return this.globals}update(t){this.globals={...this.globals,...this.filterAllowedGlobals(t)}}};m(Ig,"GlobalsStore");var A5=Ig,T5=Qe(ta(),1),C5=m(e=>typeof e=="string"?{name:e}:e,"normalizeType"),_5=m(e=>typeof e=="string"?{type:e}:e,"normalizeControl"),O5=m((e,t)=>{let{type:r,control:n,...o}=e,a={name:t,...o};return r&&(a.type=C5(r)),n?a.control=_5(n):n===!1&&(a.control={disable:!0}),a},"normalizeInputType"),Wo=m(e=>(0,T5.default)(e,O5),"normalizeInputTypes"),Fe=m(e=>Array.isArray(e)?e:e?[e]:[],"normalizeArrays"),I5=lt` -CSF .story annotations deprecated; annotate story functions directly: -- StoryFn.story.name => StoryFn.storyName -- StoryFn.story.(parameters|decorators) => StoryFn.(parameters|decorators) -See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#hoisted-csf-annotations for details and codemod. -`;function Ds(e,t,r){let n=t,o=typeof t=="function"?t:null,{story:a}=n;a&&(me.debug("deprecated story",a),Ct(I5));let i=xm(e),s=typeof n!="function"&&n.name||n.storyName||a?.name||i,l=[...Fe(n.decorators),...Fe(a?.decorators)],u={...a?.parameters,...n.parameters},c={...a?.args,...n.args},d={...a?.argTypes,...n.argTypes},y=[...Fe(n.loaders),...Fe(a?.loaders)],f=[...Fe(n.beforeEach),...Fe(a?.beforeEach)],{render:h,play:g,tags:_=[]}=n,v=u.__id||vm(r.id,i);return{moduleExport:t,id:v,name:s,tags:_,decorators:l,parameters:u,args:c,argTypes:Wo(d),loaders:y,beforeEach:f,...h&&{render:h},...o&&{userStoryFn:o},...g&&{play:g}}}m(Ds,"normalizeStory");function Fs(e,t=e.title,r){let{id:n,argTypes:o}=e;return{id:Vi(n||t),...e,title:t,...o&&{argTypes:Wo(o)},parameters:{fileName:r,...e.parameters}}}m(Fs,"normalizeComponentAnnotations");var P5=m(e=>{let{globals:t,globalTypes:r}=e;(t||r)&&me.error("Global args/argTypes can only be set globally",JSON.stringify({globals:t,globalTypes:r}))},"checkGlobals"),k5=m(e=>{let{options:t}=e;t?.storySort&&me.error("The storySort option parameter can only be set globally")},"checkStorySort"),Cm=m(e=>{e&&(P5(e),k5(e))},"checkDisallowedParameters");function Pg(e,t,r){let{default:n,__namedExportsOrder:o,...a}=e,i=Fs(n,r,t);Cm(i.parameters);let s={meta:i,stories:{},moduleExports:e};return Object.keys(a).forEach(l=>{if(Jo(l,i)){let u=Ds(l,a[l],i);Cm(u.parameters),s.stories[u.id]=u}}),s}m(Pg,"processCSFFile");var Ki=Qe(As(),1),Ot=m((...e)=>{let t={},r=e.filter(Boolean),n=r.reduce((o,a)=>(Object.entries(a).forEach(([i,s])=>{let l=o[i];Array.isArray(s)||typeof l>"u"?o[i]=s:(0,Ki.default)(s)&&(0,Ki.default)(l)?t[i]=!0:typeof s<"u"&&(o[i]=s)}),o),{});return Object.keys(t).forEach(o=>{let a=r.filter(Boolean).map(i=>i[o]).filter(i=>typeof i<"u");a.every(i=>(0,Ki.default)(i))?n[o]=Ot(...a):n[o]=a[a.length-1]}),n},"combineParameters");function kg(e,t,r){let n=r(e);return o=>t(n,o)}m(kg,"decorateStory");function Rg({componentId:e,title:t,kind:r,id:n,name:o,story:a,parameters:i,initialArgs:s,argTypes:l,...u}={}){return u}m(Rg,"sanitizeStoryContextUpdate");function Dg(e,t){let r={},n=m(a=>i=>{if(!r.value)throw new Error("Decorated function called without init");return r.value={...r.value,...Rg(i)},a(r.value)},"bindWithContext"),o=t.reduce((a,i)=>kg(a,i,n),e);return a=>(r.value=a,o(a))}m(Dg,"defaultDecorateStory");function Fg(e){return e!=null&&jg(e).includes("mount")}m(Fg,"mountDestructured");function jg(e){let t=e.toString().match(/[^(]*\(([^)]*)/);if(!t)return[];let r=ns(t[1]);if(!r.length)return[];let n=r[0];return n.startsWith("{")&&n.endsWith("}")?ns(n.slice(1,-1).replace(/\s/g,"")).map(o=>o.replace(/:.*|=.*/g,"")):[]}m(jg,"getUsedProps");function ns(e){let t=[],r=[],n=0;for(let a=0;a{let P={};for(let F of[..."__STORYBOOK_TEST_LOADERS__"in Ue&&Array.isArray(Ue.__STORYBOOK_TEST_LOADERS__)?[Ue.__STORYBOOK_TEST_LOADERS__]:[],Fe(r.loaders),Fe(t.loaders),Fe(e.loaders)]){if(I.abortSignal.aborted)return P;let D=await Promise.all(F.map(U=>U(I)));Object.assign(P,...D)}return P},"applyLoaders"),l=m(async I=>{let P=new Array;for(let F of[...Fe(r.beforeEach),...Fe(t.beforeEach),...Fe(e.beforeEach)]){if(I.abortSignal.aborted)return P;let D=await F(I);D&&P.push(D)}return P},"applyBeforeEach"),u=m(I=>I.originalStoryFn(I.args,I),"undecoratedStoryFn"),{applyDecorators:c=Dg,runStep:d}=r,y=[...Fe(e?.decorators),...Fe(t?.decorators),...Fe(r?.decorators)],f=e?.userStoryFn||e?.render||t.render||r.render,h=s5(c)(u,y),g=m(I=>h(I),"unboundStoryFn"),_=e?.play??t?.play,v=Fg(_);if(!f&&!v)throw new um({id:o});let x=m(I=>async()=>(await I.renderToCanvas(),I.canvas),"defaultMount"),O=e.mount??t.mount??r.mount??x,C=r.testingLibraryRender;return{...i,moduleExport:n,id:o,name:a,story:a,originalStoryFn:f,undecoratedStoryFn:u,unboundStoryFn:g,applyLoaders:s,applyBeforeEach:l,playFunction:_,runStep:d,mount:O,testingLibraryRender:C,renderToCanvas:r.renderToCanvas,usesMount:v}}m(js,"prepareStory");function Ng(e,t,r){return{...Ns(void 0,e,t),moduleExport:r}}m(Ng,"prepareMeta");function Ns(e,t,r){let n=["dev","test"],o=Ue.DOCS_OPTIONS?.autodocs===!0?["autodocs"]:[],a=Em(...n,...o,...r.tags??[],...t.tags??[],...e?.tags??[]),i=Ot(r.parameters,t.parameters,e?.parameters),{argTypesEnhancers:s=[],argsEnhancers:l=[]}=r,u=Ot(r.argTypes,t.argTypes,e?.argTypes);if(e){let _=e?.userStoryFn||e?.render||t.render||r.render;i.__isArgsStory=_&&_.length>0}let c={...r.args,...t.args,...e?.args},d={componentId:t.id,title:t.title,kind:t.title,id:e?.id||t.id,name:e?.name||"__meta",story:e?.name||"__meta",component:t.component,subcomponents:t.subcomponents,tags:a,parameters:i,initialArgs:c,argTypes:u};d.argTypes=s.reduce((_,v)=>v({...d,argTypes:_}),d.argTypes);let y={...c};d.initialArgs=l.reduce((_,v)=>({..._,...v({...d,initialArgs:_})}),y);let{name:f,story:h,...g}=d;return g}m(Ns,"preparePartialAnnotations");function Bs(e){let{args:t}=e,r={...e,allArgs:void 0,argsByTarget:void 0};if(Ue.FEATURES?.argTypeTargetsV7){let a=Tg(e);r={...e,allArgs:e.args,argsByTarget:a,args:a[Ag]||{}}}let n=Object.entries(r.args).reduce((a,[i,s])=>{if(!r.argTypes[i]?.mapping)return a[i]=s,a;let l=m(u=>{let c=r.argTypes[i].mapping;return c&&u in c?c[u]:u},"mappingFn");return a[i]=Array.isArray(s)?s.map(l):l(s),a},{}),o=Object.entries(n).reduce((a,[i,s])=>{let l=r.argTypes[i]||{};return bm(l,n,r.globals)&&(a[i]=s),a},{});return{...r,unmappedArgs:t,args:o}}m(Bs,"prepareContext");var os=Qe(ta(),1),as=m((e,t,r)=>{let n=typeof e;switch(n){case"boolean":case"string":case"number":case"function":case"symbol":return{name:n};default:break}return e?r.has(e)?(me.warn(lt` - We've detected a cycle in arg '${t}'. Args should be JSON-serializable. - - Consider using the mapping feature or fully custom args: - - Mapping: https://storybook.js.org/docs/react/writing-stories/args#mapping-to-complex-arg-values - - Custom args: https://storybook.js.org/docs/react/essentials/controls#fully-custom-args - `),{name:"other",value:"cyclic object"}):(r.add(e),Array.isArray(e)?{name:"array",value:e.length>0?as(e[0],t,new Set(r)):{name:"other",value:"unknown"}}:{name:"object",value:(0,os.default)(e,o=>as(o,t,new Set(r)))}):{name:"object",value:{}}},"inferType"),Bg=m(e=>{let{id:t,argTypes:r={},initialArgs:n={}}=e,o=(0,os.default)(n,(i,s)=>({name:s,type:as(i,`${t}.${s}`,new Set)})),a=(0,os.default)(r,(i,s)=>({name:s}));return Ot(o,a,r)},"inferArgTypes");Bg.secondPass=!0;var R5=Qe(ta(),1),D5=Qe(DR(),1),_m=m((e,t)=>Array.isArray(t)?t.includes(e):e.match(t),"matches"),F5=m((e,t,r)=>!t&&!r?e:e&&(0,D5.default)(e,(n,o)=>{let a=n.name||o;return(!t||_m(a,t))&&(!r||!_m(a,r))}),"filterArgTypes"),j5=m((e,t,r)=>{let{type:n,options:o}=e;if(n){if(r.color&&r.color.test(t)){let a=n.name;if(a==="string")return{control:{type:"color"}};a!=="enum"&&me.warn(`Addon controls: Control of type color only supports string, received "${a}" instead`)}if(r.date&&r.date.test(t))return{control:{type:"date"}};switch(n.name){case"array":return{control:{type:"object"}};case"boolean":return{control:{type:"boolean"}};case"string":return{control:{type:"text"}};case"number":return{control:{type:"number"}};case"enum":{let{value:a}=n;return{control:{type:a?.length<=5?"radio":"select"},options:a}}case"function":case"symbol":return null;default:return{control:{type:o?"select":"object"}}}}},"inferControl"),Lg=m(e=>{let{argTypes:t,parameters:{__isArgsStory:r,controls:{include:n=null,exclude:o=null,matchers:a={}}={}}}=e;if(!r)return t;let i=F5(t,n,o),s=(0,R5.default)(i,(l,u)=>l?.type&&j5(l,u,a));return Ot(s,i)},"inferControls");Lg.secondPass=!0;function Ko({argTypes:e,globalTypes:t,argTypesEnhancers:r,decorators:n,loaders:o,beforeEach:a,globals:i,initialGlobals:s,...l}){return i&&Object.keys(i).length>0&&Ct(lt` - The preview.js 'globals' field is deprecated and will be removed in Storybook 9.0. - Please use 'initialGlobals' instead. Learn more: - - https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#previewjs-globals-renamed-to-initialglobals - `),{...e&&{argTypes:Wo(e)},...t&&{globalTypes:Wo(t)},decorators:Fe(n),loaders:Fe(o),beforeEach:Fe(a),argTypesEnhancers:[...r||[],Bg,Lg],initialGlobals:Ot(s,i),...l}}m(Ko,"normalizeProjectAnnotations");function qg(e){return async(t,r,n)=>{await e.reduceRight((o,a)=>async()=>a(t,o,n),async()=>r(n))()}}m(qg,"composeStepRunners");var N5=m(e=>async()=>{let t=[];for(let r of e){let n=await r();n&&t.unshift(n)}return async()=>{for(let r of t)await r()}},"composeBeforeAllHooks");function Hr(e,t){return e.map(r=>r.default?.[t]??r[t]).filter(Boolean)}m(Hr,"getField");function Jt(e,t,r={}){return Hr(e,t).reduce((n,o)=>{let a=Fe(o);return r.reverseFileOrder?[...a,...n]:[...n,...a]},[])}m(Jt,"getArrayField");function zr(e,t){return Object.assign({},...Hr(e,t))}m(zr,"getObjectField");function ur(e,t){return Hr(e,t).pop()}m(ur,"getSingletonField");function Ls(e){let t=Jt(e,"argTypesEnhancers"),r=Hr(e,"runStep"),n=Jt(e,"beforeAll");return{parameters:Ot(...Hr(e,"parameters")),decorators:Jt(e,"decorators",{reverseFileOrder:!(Ue.FEATURES?.legacyDecoratorFileOrder??!1)}),args:zr(e,"args"),argsEnhancers:Jt(e,"argsEnhancers"),argTypes:zr(e,"argTypes"),argTypesEnhancers:[...t.filter(o=>!o.secondPass),...t.filter(o=>o.secondPass)],globals:zr(e,"globals"),initialGlobals:zr(e,"initialGlobals"),globalTypes:zr(e,"globalTypes"),loaders:Jt(e,"loaders"),beforeAll:N5(n),beforeEach:Jt(e,"beforeEach"),render:ur(e,"render"),renderToCanvas:ur(e,"renderToCanvas"),renderToDOM:ur(e,"renderToDOM"),applyDecorators:ur(e,"applyDecorators"),runStep:qg(r),tags:Jt(e,"tags"),mount:ur(e,"mount"),testingLibraryRender:ur(e,"testingLibraryRender")}}m(Ls,"composeConfigs");var is={},B5="ComposedStory",L5="Unnamed Story";function Mg(e){return e?"default"in e?e.default:e:{}}m(Mg,"extractAnnotation");function q5(e){let t=Array.isArray(e)?e:[e];return is=Ls(t.map(Mg)),is}m(q5,"setProjectAnnotations");var $t=[];function M5(e,t,r,n,o){if(e===void 0)throw new Error("Expected a story but received undefined.");t.title=t.title??B5;let a=Fs(t),i=o||e.storyName||e.story?.name||e.name||L5,s=Ds(i,e,a),l=Ko(Ls([n??{},is,r??{}])),u=js(s,a,l),c=Og(l.globalTypes),d=m(()=>{let _=Bs({hooks:new vg,globals:{...c,...l.initialGlobals},args:{...u.initialArgs},viewMode:"story",loaded:{},abortSignal:new AbortController().signal,step:m((v,x)=>u.runStep(v,x,_),"step"),canvasElement:null,canvas:{},...u,context:null,mount:null});return _.context=_,u.renderToCanvas&&(_.renderToCanvas=async()=>{let v=await u.renderToCanvas?.({componentId:u.componentId,title:u.title,id:u.id,name:u.name,tags:u.tags,showMain:m(()=>{},"showMain"),showError:m(x=>{},"showError"),showException:m(x=>{},"showException"),forceRemount:!0,storyContext:_,storyFn:m(()=>u.unboundStoryFn(_),"storyFn"),unboundStoryFn:u.unboundStoryFn},_.canvasElement);v&&$t.push(v)}),_.mount=u.mount(_),_},"initializeContext"),y,f=m(async _=>{let v=d();return v.canvasElement??=globalThis?.document?.body,y&&(v.loaded=y.loaded),Object.assign(v,_),u.playFunction(v)},"play"),h=m(_=>{let v=d();return Object.assign(v,_),Ug(u,v)},"run"),g=u.playFunction?f:void 0;return Object.assign(m(function(_){let v=d();return y&&(v.loaded=y.loaded),v.args={...v.initialArgs,..._},u.unboundStoryFn(v)},"storyFn"),{id:u.id,storyName:i,load:m(async()=>{for(let v of[...$t].reverse())await v();$t.length=0;let _=d();_.loaded=await u.applyLoaders(_),$t.push(...(await u.applyBeforeEach(_)).filter(Boolean)),y=_},"load"),args:u.initialArgs,parameters:u.parameters,argTypes:u.argTypes,play:g,run:h,tags:u.tags})}m(M5,"composeStory");function U5(e,t,r){let{default:n,__esModule:o,__namedExportsOrder:a,...i}=e;return Object.entries(i).reduce((s,[l,u])=>Jo(l,n)?Object.assign(s,{[l]:r(u,n,t,l)}):s,{})}m(U5,"composeStories");function J5(e){return e.extend({mount:m(async({mount:t,page:r},n)=>{await n(async(o,...a)=>{if(!("__pw_type"in o)||"__pw_type"in o&&o.__pw_type!=="jsx")throw new Error(lt` - Portable stories in Playwright CT only work when referencing JSX elements. - Please use JSX format for your components such as: - - instead of: - await mount(MyComponent, { props: { foo: 'bar' } }) - - do: - await mount() - - More info: https://storybook.js.org/docs/api/portable-stories-playwright - `);await r.evaluate(async s=>{let l=await globalThis.__pwUnwrapObject?.(s);return("__pw_type"in l?l.type:l)?.load?.()},o);let i=await t(o,...a);return await r.evaluate(async s=>{let l=await globalThis.__pwUnwrapObject?.(s),u="__pw_type"in l?l.type:l,c=document.querySelector("#root");return u?.play?.({canvasElement:c})},o),i})},"mount")})}m(J5,"createPlaywrightTest");async function Ug(e,t){for(let o of[...$t].reverse())await o();if($t.length=0,!t.canvasElement){let o=document.createElement("div");globalThis?.document?.body?.appendChild(o),t.canvasElement=o,$t.push(()=>{globalThis?.document?.body?.contains(o)&&globalThis?.document?.body?.removeChild(o)})}if(t.loaded=await e.applyLoaders(t),t.abortSignal.aborted)return;$t.push(...(await e.applyBeforeEach(t)).filter(Boolean));let r=e.playFunction,n=e.usesMount;n||await t.mount(),!t.abortSignal.aborted&&r&&(n||(t.mount=async()=>{throw new Mo({playFunction:r.toString()})}),await r(t))}m(Ug,"runStory");var Om=1e3,$5=1e4,Jg=class{constructor(t,r,n){this.importFn=r,this.storyIndex=new x5(t),this.projectAnnotations=Ko(n);let{initialGlobals:o,globalTypes:a}=this.projectAnnotations;this.args=new S5,this.globals=new A5({globals:o,globalTypes:a}),this.hooks={},this.cleanupCallbacks={},this.processCSFFileWithCache=(0,Wi.default)(Om)(Pg),this.prepareMetaWithCache=(0,Wi.default)(Om)(Ng),this.prepareStoryWithCache=(0,Wi.default)($5)(js)}storyIndex;projectAnnotations;globals;args;hooks;cleanupCallbacks;cachedCSFFiles;processCSFFileWithCache;prepareMetaWithCache;prepareStoryWithCache;setProjectAnnotations(t){this.projectAnnotations=Ko(t);let{initialGlobals:r,globalTypes:n}=t;this.globals.set({globals:r,globalTypes:n})}async onStoriesChanged({importFn:t,storyIndex:r}){t&&(this.importFn=t),r&&(this.storyIndex.entries=r.entries),this.cachedCSFFiles&&await this.cacheAllCSFFiles()}async storyIdToEntry(t){return this.storyIndex.storyIdToEntry(t)}async loadCSFFileByStoryId(t){let{importPath:r,title:n}=this.storyIndex.storyIdToEntry(t),o=await this.importFn(r);return this.processCSFFileWithCache(o,r,n)}async loadAllCSFFiles(){let t={};return Object.entries(this.storyIndex.entries).forEach(([r,{importPath:n}])=>{t[n]=r}),(await Promise.all(Object.entries(t).map(async([r,n])=>({importPath:r,csfFile:await this.loadCSFFileByStoryId(n)})))).reduce((r,{importPath:n,csfFile:o})=>(r[n]=o,r),{})}async cacheAllCSFFiles(){this.cachedCSFFiles=await this.loadAllCSFFiles()}preparedMetaFromCSFFile({csfFile:t}){let r=t.meta;return this.prepareMetaWithCache(r,this.projectAnnotations,t.moduleExports.default)}async loadStory({storyId:t}){let r=await this.loadCSFFileByStoryId(t);return this.storyFromCSFFile({storyId:t,csfFile:r})}storyFromCSFFile({storyId:t,csfFile:r}){let n=r.stories[t];if(!n)throw new om({storyId:t});let o=r.meta,a=this.prepareStoryWithCache(n,o,this.projectAnnotations);return this.args.setInitial(a),this.hooks[a.id]=this.hooks[a.id]||new vg,a}componentStoriesFromCSFFile({csfFile:t}){return Object.keys(this.storyIndex.entries).filter(r=>!!t.stories[r]).map(r=>this.storyFromCSFFile({storyId:r,csfFile:t}))}async loadEntry(t){let r=await this.storyIdToEntry(t),n=r.type==="docs"?r.storiesImports:[],[o,...a]=await Promise.all([this.importFn(r.importPath),...n.map(i=>{let s=this.storyIndex.importPathToEntry(i);return this.loadCSFFileByStoryId(s.id)})]);return{entryExports:o,csfFiles:a}}getStoryContext(t,{forceInitialArgs:r=!1}={}){return Bs({...t,args:r?t.initialArgs:this.args.get(t.id),globals:this.globals.get(),hooks:this.hooks[t.id]})}addCleanupCallbacks(t,r){this.cleanupCallbacks[t.id]=r}async cleanupStory(t){this.hooks[t.id].clean();let r=this.cleanupCallbacks[t.id];if(r)for(let n of[...r].reverse())await n();delete this.cleanupCallbacks[t.id]}extract(t={includeDocsOnly:!1}){let{cachedCSFFiles:r}=this;if(!r)throw new Vh;return Object.entries(this.storyIndex.entries).reduce((n,[o,{type:a,importPath:i}])=>{if(a==="docs")return n;let s=r[i],l=this.storyFromCSFFile({storyId:o,csfFile:s});return!t.includeDocsOnly&&l.parameters.docsOnly||(n[o]=Object.entries(l).reduce((u,[c,d])=>c==="moduleExport"||typeof d=="function"?u:Array.isArray(d)?Object.assign(u,{[c]:d.slice().sort()}):Object.assign(u,{[c]:d}),{args:l.initialArgs})),n},{})}getSetStoriesPayload(){let t=this.extract({includeDocsOnly:!0}),r=Object.values(t).reduce((n,{title:o})=>(n[o]={},n),{});return{v:2,globals:this.globals.get(),globalParameters:{},kindParameters:r,stories:t}}getStoriesJsonData=m(()=>{let t=this.getSetStoriesPayload(),r=["fileName","docsOnly","framework","__id","__isArgsStory"];return{v:3,stories:(0,g5.default)(t.stories,n=>{let{importPath:o}=this.storyIndex.entries[n.id];return{...(0,Am.default)(n,["id","name","title"]),importPath:o,kind:n.title,story:n.name,parameters:{...(0,Am.default)(n.parameters,r),fileName:o}}})}},"getStoriesJsonData");raw(){return Ct("StoryStore.raw() is deprecated and will be removed in 9.0, please use extract() instead"),Object.values(this.extract()).map(({id:t})=>this.fromId(t)).filter(Boolean)}fromId(t){if(Ct("StoryStore.fromId() is deprecated and will be removed in 9.0, please use loadStory() instead"),!this.cachedCSFFiles)throw new Error("Cannot call fromId/raw() unless you call cacheAllCSFFiles() first.");let r;try{({importPath:r}=this.storyIndex.storyIdToEntry(t))}catch{return null}let n=this.cachedCSFFiles[r],o=this.storyFromCSFFile({storyId:t,csfFile:n});return{...o,storyFn:m(a=>{let i={...this.getStoryContext(o),abortSignal:new AbortController().signal,canvasElement:null,loaded:{},step:m((s,l)=>o.runStep(s,l,i),"step"),context:null,mount:null,canvas:{},viewMode:"story"};return o.unboundStoryFn({...i,...a})},"storyFn")}}};m(Jg,"StoryStore");var z5=Jg;function $g(e){return e.startsWith("\\\\?\\")?e:e.replace(/\\/g,"/")}m($g,"slash");var V5=m(e=>{if(e.length===0)return e;let t=e[e.length-1],r=t?.replace(/(?:[.](?:story|stories))?([.][^.]+)$/i,"");if(e.length===1)return[r];let n=e[e.length-2];return r&&n&&r.toLowerCase()===n.toLowerCase()?[...e.slice(0,-2),r]:r&&(/^(story|stories)([.][^.]+)$/i.test(t)||/^index$/i.test(r))?e.slice(0,-1):[...e.slice(0,-1),r]},"sanitize");function ss(e){return e.flatMap(t=>t.split("/")).filter(Boolean).join("/")}m(ss,"pathJoin");var H5=m((e,t,r)=>{let{directory:n,importPathMatcher:o,titlePrefix:a=""}=t||{};typeof e=="number"&&Ut.warn(lt` - CSF Auto-title received a numeric fileName. This typically happens when - webpack is mis-configured in production mode. To force webpack to produce - filenames, set optimization.moduleIds = "named" in your webpack config. - `);let i=$g(String(e));if(o.exec(i)){if(!r){let s=i.replace(n,""),l=ss([a,s]).split("/");return l=V5(l),l.join("/")}return a?ss([a,r]):r}},"userOrAutoTitleFromSpecifier"),zre=m((e,t,r)=>{for(let n=0;n(t,r)=>{if(t.title===r.title&&!e.includeNames)return 0;let n=e.method||"configure",o=e.order||[],a=t.title.trim().split(Im),i=r.title.trim().split(Im);e.includeNames&&(a.push(t.name),i.push(r.name));let s=0;for(;a[s]||i[s];){if(!a[s])return-1;if(!i[s])return 1;let l=a[s],u=i[s];if(l!==u){let d=o.indexOf(l),y=o.indexOf(u),f=o.indexOf("*");return d!==-1||y!==-1?(d===-1&&(f!==-1?d=f:d=o.length),y===-1&&(f!==-1?y=f:y=o.length),d-y):n==="configure"?0:l.localeCompare(u,e.locales?e.locales:void 0,{numeric:!0,sensitivity:"accent"})}let c=o.indexOf(l);c===-1&&(c=o.indexOf("*")),o=c!==-1&&Array.isArray(o[c+1])?o[c+1]:[],s+=1}return 0},"storySort"),W5=m((e,t,r)=>{if(t){let n;typeof t=="function"?n=t:n=G5(t),e.sort(n)}else e.sort((n,o)=>r.indexOf(n.importPath)-r.indexOf(o.importPath));return e},"sortStoriesCommon"),Vre=m((e,t,r)=>{try{return W5(e,t,r)}catch(n){throw new Error(lt` - Error sorting stories with sort parameter ${t}: - - > ${n.message} - - Are you using a V6-style sort function in V7 mode? - - More info: https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#v7-style-story-sort - `)}},"sortStoriesV7"),oa=new Error("prepareAborted"),{AbortController:Pm}=globalThis;function ls(e){try{let{name:t="Error",message:r=String(e),stack:n}=e;return{name:t,message:r,stack:n}}catch{return{name:"Error",message:String(e)}}}m(ls,"serializeError");var zg=class{constructor(t,r,n,o,a,i,s={autoplay:!0,forceInitialArgs:!1},l){this.channel=t,this.store=r,this.renderToScreen=n,this.callbacks=o,this.id=a,this.viewMode=i,this.renderOptions=s,this.abortController=new Pm,l&&(this.story=l,this.phase="preparing")}type="story";story;phase;abortController;canvasElement;notYetRendered=!0;rerenderEnqueued=!1;disableKeyListeners=!1;teardownRender=m(()=>{},"teardownRender");torndown=!1;async runPhase(t,r,n){this.phase=r,this.channel.emit(kr,{newPhase:this.phase,storyId:this.id}),n&&(await n(),this.checkIfAborted(t))}checkIfAborted(t){return t.aborted?(this.phase="aborted",this.channel.emit(kr,{newPhase:this.phase,storyId:this.id}),!0):!1}async prepare(){if(await this.runPhase(this.abortController.signal,"preparing",async()=>{this.story=await this.store.loadStory({storyId:this.id})}),this.abortController.signal.aborted)throw await this.store.cleanupStory(this.story),oa}isEqual(t){return!!(this.id===t.id&&this.story&&this.story===t.story)}isPreparing(){return["preparing"].includes(this.phase)}isPending(){return["loading","beforeEach","rendering","playing"].includes(this.phase)}async renderToElement(t){return this.canvasElement=t,this.render({initial:!0,forceRemount:!0})}storyContext(){if(!this.story)throw new Error("Cannot call storyContext before preparing");let{forceInitialArgs:t}=this.renderOptions;return this.store.getStoryContext(this.story,{forceInitialArgs:t})}async render({initial:t=!1,forceRemount:r=!1}={}){let{canvasElement:n}=this;if(!this.story)throw new Error("cannot render when not prepared");let o=this.story;if(!n)throw new Error("cannot render when canvasElement is unset");let{id:a,componentId:i,title:s,name:l,tags:u,applyLoaders:c,applyBeforeEach:d,unboundStoryFn:y,playFunction:f,runStep:h}=o;r&&!t&&(this.cancelRender(),this.abortController=new Pm);let g=this.abortController.signal,_=!1,v=o.usesMount;try{let x={...this.storyContext(),viewMode:this.viewMode,abortSignal:g,canvasElement:n,loaded:{},step:m((D,U)=>h(D,U,x),"step"),context:null,canvas:{},renderToCanvas:m(async()=>{let D=await this.renderToScreen(O,n);this.teardownRender=D||(()=>{}),_=!0},"renderToCanvas"),mount:m(async(...D)=>{this.callbacks.showStoryDuringRender?.();let U=null;return await this.runPhase(g,"rendering",async()=>{U=await o.mount(x)(...D)}),v&&await this.runPhase(g,"playing"),U},"mount")};x.context=x;let O={componentId:i,title:s,kind:s,id:a,name:l,story:l,tags:u,...this.callbacks,showError:m(D=>(this.phase="errored",this.callbacks.showError(D)),"showError"),showException:m(D=>(this.phase="errored",this.callbacks.showException(D)),"showException"),forceRemount:r||this.notYetRendered,storyContext:x,storyFn:m(()=>y(x),"storyFn"),unboundStoryFn:y};if(await this.runPhase(g,"loading",async()=>{x.loaded=await c(x)}),g.aborted)return;let C=await d(x);if(this.store.addCleanupCallbacks(o,C),this.checkIfAborted(g)||(!_&&!v&&await x.mount(),this.notYetRendered=!1,g.aborted))return;let I=this.story.parameters?.test?.dangerouslyIgnoreUnhandledErrors===!0,P=new Set,F=m(D=>P.add("error"in D?D.error:D.reason),"onError");if(this.renderOptions.autoplay&&r&&f&&this.phase!=="errored"){window.addEventListener("error",F),window.addEventListener("unhandledrejection",F),this.disableKeyListeners=!0;try{if(v?await f(x):(x.mount=async()=>{throw new Mo({playFunction:f.toString()})},await this.runPhase(g,"playing",async()=>f(x))),!_)throw new pm;this.checkIfAborted(g),!I&&P.size>0?await this.runPhase(g,"errored"):await this.runPhase(g,"played")}catch(D){if(this.callbacks.showStoryDuringRender?.(),await this.runPhase(g,"errored",async()=>{this.channel.emit(du,ls(D))}),this.story.parameters.throwPlayFunctionExceptions!==!1)throw D;console.error(D)}if(!I&&P.size>0&&this.channel.emit(Tu,Array.from(P).map(ls)),this.disableKeyListeners=!1,window.removeEventListener("unhandledrejection",F),window.removeEventListener("error",F),g.aborted)return}await this.runPhase(g,"completed",async()=>this.channel.emit(xn,a))}catch(x){this.phase="errored",this.callbacks.showException(x)}this.rerenderEnqueued&&(this.rerenderEnqueued=!1,this.render())}async rerender(){if(this.isPending()&&this.phase!=="playing")this.rerenderEnqueued=!0;else return this.render()}async remount(){return await this.teardown(),this.render({forceRemount:!0})}cancelRender(){this.abortController?.abort()}async teardown(){this.torndown=!0,this.cancelRender(),this.story&&await this.store.cleanupStory(this.story);for(let t=0;t<3;t+=1){if(!this.isPending()){await this.teardownRender();return}await new Promise(r=>setTimeout(r,0))}window.location.reload(),await new Promise(()=>{})}};m(zg,"StoryRender");var Vg=zg,{fetch:K5}=Ue,Y5="./index.json",Hg=class{constructor(t,r,n=pr.getChannel(),o=!0){this.importFn=t,this.getProjectAnnotations=r,this.channel=n,this.storeInitializationPromise=new Promise((a,i)=>{this.resolveStoreInitializationPromise=a,this.rejectStoreInitializationPromise=i}),o&&this.initialize()}serverChannel;storyStoreValue;renderToCanvas;storyRenders=[];previewEntryError;projectAnnotationsBeforeInitialization;beforeAllCleanup;storeInitializationPromise;resolveStoreInitializationPromise;rejectStoreInitializationPromise;get storyStore(){return new Proxy({},{get:m((t,r)=>{if(this.storyStoreValue)return Ct("Accessing the Story Store is deprecated and will be removed in 9.0"),this.storyStoreValue[r];throw new im},"get")})}async initialize(){this.setupListeners();try{let t=await this.getProjectAnnotationsOrRenderError();await this.runBeforeAllHook(t),await this.initializeWithProjectAnnotations(t)}catch(t){this.rejectStoreInitializationPromise(t)}}ready(){return this.storeInitializationPromise}setupListeners(){this.channel.on(xu,this.onStoryIndexChanged.bind(this)),this.channel.on(yo,this.onUpdateGlobals.bind(this)),this.channel.on(ho,this.onUpdateArgs.bind(this)),this.channel.on(iu,this.onRequestArgTypesInfo.bind(this)),this.channel.on(po,this.onResetArgs.bind(this)),this.channel.on(co,this.onForceReRender.bind(this)),this.channel.on(uu,this.onForceRemount.bind(this))}async getProjectAnnotationsOrRenderError(){try{let t=await this.getProjectAnnotations();if(this.renderToCanvas=t.renderToCanvas,!this.renderToCanvas)throw new Gh;return t}catch(t){throw this.renderPreviewEntryError("Error reading preview.js:",t),t}}async initializeWithProjectAnnotations(t){this.projectAnnotationsBeforeInitialization=t;try{let r=await this.getStoryIndexFromServer();return this.initializeWithStoryIndex(r)}catch(r){throw this.renderPreviewEntryError("Error loading story index:",r),r}}async runBeforeAllHook(t){try{await this.beforeAllCleanup?.(),this.beforeAllCleanup=await t.beforeAll?.()}catch(r){throw this.renderPreviewEntryError("Error in beforeAll hook:",r),r}}async getStoryIndexFromServer(){let t=await K5(Y5);if(t.status===200)return t.json();throw new Yh({text:await t.text()})}initializeWithStoryIndex(t){if(!this.projectAnnotationsBeforeInitialization)throw new Error("Cannot call initializeWithStoryIndex until project annotations resolve");this.storyStoreValue=new z5(t,this.importFn,this.projectAnnotationsBeforeInitialization),delete this.projectAnnotationsBeforeInitialization,this.setInitialGlobals(),this.resolveStoreInitializationPromise()}async setInitialGlobals(){this.emitGlobals()}emitGlobals(){if(!this.storyStoreValue)throw new rt({methodName:"emitGlobals"});let t={globals:this.storyStoreValue.globals.get()||{},globalTypes:this.storyStoreValue.projectAnnotations.globalTypes||{}};this.channel.emit(mu,t)}async onGetProjectAnnotationsChanged({getProjectAnnotations:t}){delete this.previewEntryError,this.getProjectAnnotations=t;let r=await this.getProjectAnnotationsOrRenderError();if(await this.runBeforeAllHook(r),!this.storyStoreValue){await this.initializeWithProjectAnnotations(r);return}this.storyStoreValue.setProjectAnnotations(r),this.emitGlobals()}async onStoryIndexChanged(){if(delete this.previewEntryError,!(!this.storyStoreValue&&!this.projectAnnotationsBeforeInitialization))try{let t=await this.getStoryIndexFromServer();if(this.projectAnnotationsBeforeInitialization){this.initializeWithStoryIndex(t);return}await this.onStoriesChanged({storyIndex:t})}catch(t){throw this.renderPreviewEntryError("Error loading story index:",t),t}}async onStoriesChanged({importFn:t,storyIndex:r}){if(!this.storyStoreValue)throw new rt({methodName:"onStoriesChanged"});await this.storyStoreValue.onStoriesChanged({importFn:t,storyIndex:r})}async onUpdateGlobals({globals:t}){if(!this.storyStoreValue)throw new rt({methodName:"onUpdateGlobals"});this.storyStoreValue.globals.update(t),await Promise.all(this.storyRenders.map(r=>r.rerender())),this.channel.emit(cu,{globals:this.storyStoreValue.globals.get(),initialGlobals:this.storyStoreValue.globals.initialGlobals})}async onUpdateArgs({storyId:t,updatedArgs:r}){if(!this.storyStoreValue)throw new rt({methodName:"onUpdateArgs"});this.storyStoreValue.args.update(t,r),await Promise.all(this.storyRenders.filter(n=>n.id===t&&!n.renderOptions.forceInitialArgs).map(n=>n.story&&n.story.usesMount?n.remount():n.rerender())),this.channel.emit(gu,{storyId:t,args:this.storyStoreValue.args.get(t)})}async onRequestArgTypesInfo({id:t,payload:r}){try{await this.storeInitializationPromise;let n=await this.storyStoreValue?.loadStory(r);this.channel.emit(Wa,{id:t,success:!0,payload:{argTypes:n?.argTypes||{}},error:null})}catch(n){this.channel.emit(Wa,{id:t,success:!1,error:n?.message})}}async onResetArgs({storyId:t,argNames:r}){if(!this.storyStoreValue)throw new rt({methodName:"onResetArgs"});let n=this.storyRenders.find(a=>a.id===t)?.story||await this.storyStoreValue.loadStory({storyId:t}),o=(r||[...new Set([...Object.keys(n.initialArgs),...Object.keys(this.storyStoreValue.args.get(t))])]).reduce((a,i)=>(a[i]=n.initialArgs[i],a),{});await this.onUpdateArgs({storyId:t,updatedArgs:o})}async onForceReRender(){await Promise.all(this.storyRenders.map(t=>t.rerender()))}async onForceRemount({storyId:t}){await Promise.all(this.storyRenders.filter(r=>r.id===t).map(r=>r.remount()))}renderStoryToElement(t,r,n,o){if(!this.renderToCanvas||!this.storyStoreValue)throw new rt({methodName:"renderStoryToElement"});let a=new Vg(this.channel,this.storyStoreValue,this.renderToCanvas,n,t.id,"docs",o,t);return a.renderToElement(r),this.storyRenders.push(a),async()=>{await this.teardownRender(a)}}async teardownRender(t,{viewModeChanged:r}={}){this.storyRenders=this.storyRenders.filter(n=>n!==t),await t?.teardown?.({viewModeChanged:r})}async loadStory({storyId:t}){if(!this.storyStoreValue)throw new rt({methodName:"loadStory"});return this.storyStoreValue.loadStory({storyId:t})}getStoryContext(t,{forceInitialArgs:r=!1}={}){if(!this.storyStoreValue)throw new rt({methodName:"getStoryContext"});return this.storyStoreValue.getStoryContext(t,{forceInitialArgs:r})}async extract(t){if(!this.storyStoreValue)throw new rt({methodName:"extract"});if(this.previewEntryError)throw this.previewEntryError;return await this.storyStoreValue.cacheAllCSFFiles(),this.storyStoreValue.extract(t)}renderPreviewEntryError(t,r){this.previewEntryError=r,me.error(t),me.error(r),this.channel.emit(su,r)}};m(Hg,"Preview");var X5=Hg,Q5=!1,Yi="Invariant failed";function zo(e,t){if(!e){if(Q5)throw new Error(Yi);var r=typeof t=="function"?t():t,n=r?"".concat(Yi,": ").concat(r):Yi;throw new Error(n)}}m(zo,"invariant");var Gg=class{constructor(t,r,n,o){this.channel=t,this.store=r,this.renderStoryToElement=n,this.componentStoriesValue=[],this.storyIdToCSFFile=new Map,this.exportToStory=new Map,this.exportsToCSFFile=new Map,this.nameToStoryId=new Map,this.attachedCSFFiles=new Set,o.forEach((a,i)=>{this.referenceCSFFile(a)})}componentStoriesValue;storyIdToCSFFile;exportToStory;exportsToCSFFile;nameToStoryId;attachedCSFFiles;primaryStory;referenceCSFFile(t){this.exportsToCSFFile.set(t.moduleExports,t),this.exportsToCSFFile.set(t.moduleExports.default,t),this.store.componentStoriesFromCSFFile({csfFile:t}).forEach(r=>{let n=t.stories[r.id];this.storyIdToCSFFile.set(n.id,t),this.exportToStory.set(n.moduleExport,r)})}attachCSFFile(t){if(!this.exportsToCSFFile.has(t.moduleExports))throw new Error("Cannot attach a CSF file that has not been referenced");this.attachedCSFFiles.has(t)||(this.attachedCSFFiles.add(t),this.store.componentStoriesFromCSFFile({csfFile:t}).forEach(r=>{this.nameToStoryId.set(r.name,r.id),this.componentStoriesValue.push(r),this.primaryStory||(this.primaryStory=r)}))}referenceMeta(t,r){let n=this.resolveModuleExport(t);if(n.type!=="meta")throw new Error(" must reference a CSF file module export or meta export. Did you mistakenly reference your component instead of your CSF file?");r&&this.attachCSFFile(n.csfFile)}get projectAnnotations(){let{projectAnnotations:t}=this.store;if(!t)throw new Error("Can't get projectAnnotations from DocsContext before they are initialized");return t}resolveAttachedModuleExportType(t){if(t==="story"){if(!this.primaryStory)throw new Error("No primary story attached to this docs file, did you forget to use ?");return{type:"story",story:this.primaryStory}}if(this.attachedCSFFiles.size===0)throw new Error("No CSF file attached to this docs file, did you forget to use ?");let r=Array.from(this.attachedCSFFiles)[0];if(t==="meta")return{type:"meta",csfFile:r};let{component:n}=r.meta;if(!n)throw new Error("Attached CSF file does not defined a component, did you forget to export one?");return{type:"component",component:n}}resolveModuleExport(t){let r=this.exportsToCSFFile.get(t);if(r)return{type:"meta",csfFile:r};let n=this.exportToStory.get(t);return n?{type:"story",story:n}:{type:"component",component:t}}resolveOf(t,r=[]){let n;if(["component","meta","story"].includes(t)){let o=t;n=this.resolveAttachedModuleExportType(o)}else n=this.resolveModuleExport(t);if(r.length&&!r.includes(n.type)){let o=n.type==="component"?"component or unknown":n.type;throw new Error(lt`Invalid value passed to the 'of' prop. The value was resolved to a '${o}' type but the only types for this block are: ${r.join(", ")}. - - Did you pass a component to the 'of' prop when the block only supports a story or a meta? - - ... or vice versa? - - Did you pass a story, CSF file or meta to the 'of' prop that is not indexed, ie. is not targeted by the 'stories' globs in the main configuration?`)}switch(n.type){case"component":return{...n,projectAnnotations:this.projectAnnotations};case"meta":return{...n,preparedMeta:this.store.preparedMetaFromCSFFile({csfFile:n.csfFile})};case"story":default:return n}}storyIdByName=m(t=>{let r=this.nameToStoryId.get(t);if(r)return r;throw new Error(`No story found with that name: ${t}`)},"storyIdByName");componentStories=m(()=>this.componentStoriesValue,"componentStories");componentStoriesFromCSFFile=m(t=>this.store.componentStoriesFromCSFFile({csfFile:t}),"componentStoriesFromCSFFile");storyById=m(t=>{if(!t){if(!this.primaryStory)throw new Error("No primary story defined for docs entry. Did you forget to use ``?");return this.primaryStory}let r=this.storyIdToCSFFile.get(t);if(!r)throw new Error(`Called \`storyById\` for story that was never loaded: ${t}`);return this.store.storyFromCSFFile({storyId:t,csfFile:r})},"storyById");getStoryContext=m(t=>({...this.store.getStoryContext(t),loaded:{},viewMode:"docs"}),"getStoryContext");loadStory=m(t=>this.store.loadStory({storyId:t}),"loadStory")};m(Gg,"DocsContext");var Wg=Gg,Kg=class{constructor(t,r,n,o){this.channel=t,this.store=r,this.entry=n,this.callbacks=o,this.id=n.id}type="docs";subtype="csf";id;story;rerender;teardownRender;torndown=!1;disableKeyListeners=!1;preparing=!1;csfFiles;isPreparing(){return this.preparing}async prepare(){this.preparing=!0;let{entryExports:t,csfFiles:r=[]}=await this.store.loadEntry(this.id);if(this.torndown)throw oa;let{importPath:n,title:o}=this.entry,a=this.store.processCSFFileWithCache(t,n,o),i=Object.keys(a.stories)[0];this.story=this.store.storyFromCSFFile({storyId:i,csfFile:a}),this.csfFiles=[a,...r],this.preparing=!1}isEqual(t){return!!(this.id===t.id&&this.story&&this.story===t.story)}docsContext(t){if(!this.csfFiles)throw new Error("Cannot render docs before preparing");let r=new Wg(this.channel,this.store,t,this.csfFiles);return this.csfFiles.forEach(n=>r.attachCSFFile(n)),r}async renderToElement(t,r){if(!this.story||!this.csfFiles)throw new Error("Cannot render docs before preparing");let n=this.docsContext(r),{docs:o}=this.story.parameters||{};if(!o)throw new Error("Cannot render a story in viewMode=docs if `@storybook/addon-docs` is not installed");let a=await o.renderer(),{render:i}=a,s=m(async()=>{try{await i(n,o,t),this.channel.emit(uo,this.id)}catch(l){this.callbacks.showException(l)}},"renderDocs");return this.rerender=async()=>s(),this.teardownRender=async({viewModeChanged:l})=>{!l||!t||a.unmount(t)},s()}async teardown({viewModeChanged:t}={}){this.teardownRender?.({viewModeChanged:t}),this.torndown=!0}};m(Kg,"CsfDocsRender");var km=Kg,Yg=class{constructor(t,r,n,o){this.channel=t,this.store=r,this.entry=n,this.callbacks=o,this.id=n.id}type="docs";subtype="mdx";id;exports;rerender;teardownRender;torndown=!1;disableKeyListeners=!1;preparing=!1;csfFiles;isPreparing(){return this.preparing}async prepare(){this.preparing=!0;let{entryExports:t,csfFiles:r=[]}=await this.store.loadEntry(this.id);if(this.torndown)throw oa;this.csfFiles=r,this.exports=t,this.preparing=!1}isEqual(t){return!!(this.id===t.id&&this.exports&&this.exports===t.exports)}docsContext(t){if(!this.csfFiles)throw new Error("Cannot render docs before preparing");return new Wg(this.channel,this.store,t,this.csfFiles)}async renderToElement(t,r){if(!this.exports||!this.csfFiles||!this.store.projectAnnotations)throw new Error("Cannot render docs before preparing");let n=this.docsContext(r),{docs:o}=this.store.projectAnnotations.parameters||{};if(!o)throw new Error("Cannot render a story in viewMode=docs if `@storybook/addon-docs` is not installed");let a={...o,page:this.exports.default},i=await o.renderer(),{render:s}=i,l=m(async()=>{try{await s(n,a,t),this.channel.emit(uo,this.id)}catch(u){this.callbacks.showException(u)}},"renderDocs");return this.rerender=async()=>l(),this.teardownRender=async({viewModeChanged:u}={})=>{!u||!t||(i.unmount(t),this.torndown=!0)},l()}async teardown({viewModeChanged:t}={}){this.teardownRender?.({viewModeChanged:t}),this.torndown=!0}};m(Yg,"MdxDocsRender");var Rm=Yg,Z5=globalThis;function Xg(e){let t=e.composedPath&&e.composedPath()[0]||e.target;return/input|textarea/i.test(t.tagName)||t.getAttribute("contenteditable")!==null}m(Xg,"focusInInput");var Qg="attached-mdx",eD="unattached-mdx";function Zg({tags:e}){return e?.includes(eD)||e?.includes(Qg)}m(Zg,"isMdxEntry");function Vo(e){return e.type==="story"}m(Vo,"isStoryRender");function eb(e){return e.type==="docs"}m(eb,"isDocsRender");function tb(e){return eb(e)&&e.subtype==="csf"}m(tb,"isCsfDocsRender");var rb=class extends X5{constructor(t,r,n,o){super(t,r,void 0,!1),this.importFn=t,this.getProjectAnnotations=r,this.selectionStore=n,this.view=o,this.initialize()}currentSelection;currentRender;setupListeners(){super.setupListeners(),Z5.onkeydown=this.onKeydown.bind(this),this.channel.on(hu,this.onSetCurrentStory.bind(this)),this.channel.on(Cu,this.onUpdateQueryParams.bind(this)),this.channel.on(fu,this.onPreloadStories.bind(this))}async setInitialGlobals(){if(!this.storyStoreValue)throw new rt({methodName:"setInitialGlobals"});let{globals:t}=this.selectionStore.selectionSpecifier||{};t&&this.storyStoreValue.globals.updateFromPersisted(t),this.emitGlobals()}async initializeWithStoryIndex(t){return await super.initializeWithStoryIndex(t),this.selectSpecifiedStory()}async selectSpecifiedStory(){if(!this.storyStoreValue)throw new rt({methodName:"selectSpecifiedStory"});if(this.selectionStore.selection){await this.renderSelection();return}if(!this.selectionStore.selectionSpecifier){this.renderMissingStory();return}let{storySpecifier:t,args:r}=this.selectionStore.selectionSpecifier,n=this.storyStoreValue.storyIndex.entryFromSpecifier(t);if(!n){t==="*"?this.renderStoryLoadingException(t,new em):this.renderStoryLoadingException(t,new rm({storySpecifier:t.toString()}));return}let{id:o,type:a}=n;this.selectionStore.setSelection({storyId:o,viewMode:a}),this.channel.emit(wu,this.selectionStore.selection),this.channel.emit(Ka,this.selectionStore.selection),await this.renderSelection({persistedArgs:r})}async onGetProjectAnnotationsChanged({getProjectAnnotations:t}){await super.onGetProjectAnnotationsChanged({getProjectAnnotations:t}),this.selectionStore.selection&&this.renderSelection()}async onStoriesChanged({importFn:t,storyIndex:r}){await super.onStoriesChanged({importFn:t,storyIndex:r}),this.selectionStore.selection?await this.renderSelection():await this.selectSpecifiedStory()}onKeydown(t){if(!this.storyRenders.find(r=>r.disableKeyListeners)&&!Xg(t)){let{altKey:r,ctrlKey:n,metaKey:o,shiftKey:a,key:i,code:s,keyCode:l}=t;this.channel.emit(yu,{event:{altKey:r,ctrlKey:n,metaKey:o,shiftKey:a,key:i,code:s,keyCode:l}})}}async onSetCurrentStory(t){this.selectionStore.setSelection({viewMode:"story",...t}),await this.storeInitializationPromise,this.channel.emit(Ka,this.selectionStore.selection),this.renderSelection()}onUpdateQueryParams(t){this.selectionStore.setQueryParams(t)}async onUpdateGlobals({globals:t}){super.onUpdateGlobals({globals:t}),(this.currentRender instanceof Rm||this.currentRender instanceof km)&&await this.currentRender.rerender?.()}async onUpdateArgs({storyId:t,updatedArgs:r}){super.onUpdateArgs({storyId:t,updatedArgs:r})}async onPreloadStories({ids:t}){await this.storeInitializationPromise,this.storyStoreValue&&await Promise.allSettled(t.map(r=>this.storyStoreValue?.loadEntry(r)))}async renderSelection({persistedArgs:t}={}){let{renderToCanvas:r}=this;if(!this.storyStoreValue||!r)throw new rt({methodName:"renderSelection"});let{selection:n}=this.selectionStore;if(!n)throw new Error("Cannot call renderSelection as no selection was made");let{storyId:o}=n,a;try{a=await this.storyStoreValue.storyIdToEntry(o)}catch(y){this.currentRender&&await this.teardownRender(this.currentRender),this.renderStoryLoadingException(o,y);return}let i=this.currentSelection?.storyId!==o,s=this.currentRender?.type!==a.type;a.type==="story"?this.view.showPreparingStory({immediate:s}):this.view.showPreparingDocs({immediate:s}),this.currentRender?.isPreparing()&&await this.teardownRender(this.currentRender);let l;a.type==="story"?l=new Vg(this.channel,this.storyStoreValue,r,this.mainStoryCallbacks(o),o,"story"):Zg(a)?l=new Rm(this.channel,this.storyStoreValue,a,this.mainStoryCallbacks(o)):l=new km(this.channel,this.storyStoreValue,a,this.mainStoryCallbacks(o));let u=this.currentSelection;this.currentSelection=n;let c=this.currentRender;this.currentRender=l;try{await l.prepare()}catch(y){c&&await this.teardownRender(c),y!==oa&&this.renderStoryLoadingException(o,y);return}let d=!i&&c&&!l.isEqual(c);if(t&&Vo(l)&&(zo(!!l.story),this.storyStoreValue.args.updateFromPersisted(l.story,t)),c&&!c.torndown&&!i&&!d&&!s){this.currentRender=c,this.channel.emit(Au,o),this.view.showMain();return}if(c&&await this.teardownRender(c,{viewModeChanged:s}),u&&(i||s)&&this.channel.emit(bu,o),Vo(l)){zo(!!l.story);let{parameters:y,initialArgs:f,argTypes:h,unmappedArgs:g}=this.storyStoreValue.getStoryContext(l.story);this.channel.emit(Eu,{id:o,parameters:y,initialArgs:f,argTypes:h,args:g})}else{let{parameters:y}=this.storyStoreValue.projectAnnotations;if(tb(l)||l.entry.tags?.includes(Qg)){if(!l.csfFiles)throw new Qh({storyId:o});({parameters:y}=this.storyStoreValue.preparedMetaFromCSFFile({csfFile:l.csfFiles[0]}))}this.channel.emit(lu,{id:o,parameters:y})}Vo(l)?(zo(!!l.story),this.storyRenders.push(l),this.currentRender.renderToElement(this.view.prepareForStory(l.story))):this.currentRender.renderToElement(this.view.prepareForDocs(),this.renderStoryToElement.bind(this))}async teardownRender(t,{viewModeChanged:r=!1}={}){this.storyRenders=this.storyRenders.filter(n=>n!==t),await t?.teardown?.({viewModeChanged:r})}mainStoryCallbacks(t){return{showStoryDuringRender:m(()=>this.view.showStoryDuringRender(),"showStoryDuringRender"),showMain:m(()=>this.view.showMain(),"showMain"),showError:m(r=>this.renderError(t,r),"showError"),showException:m(r=>this.renderException(t,r),"showException")}}renderPreviewEntryError(t,r){super.renderPreviewEntryError(t,r),this.view.showErrorDisplay(r)}renderMissingStory(){this.view.showNoPreview(),this.channel.emit(Xa)}renderStoryLoadingException(t,r){me.error(r),this.view.showErrorDisplay(r),this.channel.emit(Xa,t)}renderException(t,r){let{name:n="Error",message:o=String(r),stack:a}=r;this.channel.emit(Su,{name:n,message:o,stack:a}),this.channel.emit(kr,{newPhase:"errored",storyId:t}),this.view.showErrorDisplay(r),me.error(`Error rendering story '${t}':`),me.error(r)}renderError(t,{title:r,description:n}){me.error(`Error rendering story ${r}: ${n}`),this.channel.emit(vu,{title:r,description:n}),this.channel.emit(kr,{newPhase:"errored",storyId:t}),this.view.showErrorDisplay({message:r,stack:n})}};m(rb,"PreviewWithSelection");var tD=rb,us=Qe(Os(),1),rD=Qe(Os(),1),nD=Qe(As(),1),Dm=/^[a-zA-Z0-9 _-]*$/,nb=/^-?[0-9]+(\.[0-9]+)?$/,oD=/^#([a-f0-9]{3,4}|[a-f0-9]{6}|[a-f0-9]{8})$/i,ob=/^(rgba?|hsla?)\(([0-9]{1,3}),\s?([0-9]{1,3})%?,\s?([0-9]{1,3})%?,?\s?([0-9](\.[0-9]{1,2})?)?\)$/i,cs=m((e="",t)=>e===null||e===""||!Dm.test(e)?!1:t==null||t instanceof Date||typeof t=="number"||typeof t=="boolean"?!0:typeof t=="string"?Dm.test(t)||nb.test(t)||oD.test(t)||ob.test(t):Array.isArray(t)?t.every(r=>cs(e,r)):(0,nD.default)(t)?Object.entries(t).every(([r,n])=>cs(r,n)):!1,"validateArgs"),aD={delimiter:";",allowDots:!0,allowSparse:!0,decoder(e,t,r,n){if(n==="value"&&e.startsWith("!")){if(e==="!undefined")return;if(e==="!null")return null;if(e==="!true")return!0;if(e==="!false")return!1;if(e.startsWith("!date(")&&e.endsWith(")"))return new Date(e.slice(6,-1));if(e.startsWith("!hex(")&&e.endsWith(")"))return`#${e.slice(5,-1)}`;let o=e.slice(1).match(ob);if(o)return e.startsWith("!rgba")?`${o[1]}(${o[2]}, ${o[3]}, ${o[4]}, ${o[5]})`:e.startsWith("!hsla")?`${o[1]}(${o[2]}, ${o[3]}%, ${o[4]}%, ${o[5]})`:e.startsWith("!rgb")?`${o[1]}(${o[2]}, ${o[3]}, ${o[4]})`:`${o[1]}(${o[2]}, ${o[3]}%, ${o[4]}%)`}return n==="value"&&nb.test(e)?Number(e):t(e,t,r)}},Fm=m(e=>{let t=e.split(";").map(r=>r.replace("=","~").replace(":","="));return Object.entries(rD.default.parse(t.join(";"),aD)).reduce((r,[n,o])=>cs(n,o)?Object.assign(r,{[n]:o}):(Ut.warn(lt` - Omitted potentially unsafe URL args. - - More info: https://storybook.js.org/docs/react/writing-stories/args#setting-args-through-the-url - `),r),{})},"parseArgsParam"),{history:ab,document:_t}=Ue;function ib(e){let t=(e||"").match(/^\/story\/(.+)/);if(!t)throw new Error(`Invalid path '${e}', must start with '/story/'`);return t[1]}m(ib,"pathToId");var sb=m(({selection:e,extraParams:t})=>{let r=typeof _t<"u"?_t.location.search:"",{path:n,selectedKind:o,selectedStory:a,...i}=us.default.parse(r,{ignoreQueryPrefix:!0});return us.default.stringify({...i,...t,...e&&{id:e.storyId,viewMode:e.viewMode}},{encode:!1,addQueryPrefix:!0})},"getQueryString"),iD=m(e=>{if(!e)return;let t=sb({selection:e}),{hash:r=""}=_t.location;_t.title=e.storyId,ab.replaceState({},"",`${_t.location.pathname}${t}${r}`)},"setPath"),sD=m(e=>e!=null&&typeof e=="object"&&Array.isArray(e)===!1,"isObject"),Nn=m(e=>{if(e!==void 0){if(typeof e=="string")return e;if(Array.isArray(e))return Nn(e[0]);if(sD(e))return Nn(Object.values(e).filter(Boolean))}},"getFirstString"),lD=m(()=>{if(typeof _t<"u"){let e=us.default.parse(_t.location.search,{ignoreQueryPrefix:!0}),t=typeof e.args=="string"?Fm(e.args):void 0,r=typeof e.globals=="string"?Fm(e.globals):void 0,n=Nn(e.viewMode);(typeof n!="string"||!n.match(/docs|story/))&&(n="story");let o=Nn(e.path),a=o?ib(o):Nn(e.id);if(a)return{storySpecifier:a,args:t,globals:r,viewMode:n}}return null},"getSelectionSpecifierFromPath"),lb=class{selectionSpecifier;selection;constructor(){this.selectionSpecifier=lD()}setSelection(t){this.selection=t,iD(this.selection)}setQueryParams(t){let r=sb({extraParams:t}),{hash:n=""}=_t.location;ab.replaceState({},"",`${_t.location.pathname}${r}${n}`)}};m(lb,"UrlStore");var uD=lb,cD=Qe(o5(),1),pD=Qe(Os(),1),{document:Ge}=Ue,jm=100,ub=(e=>(e.MAIN="MAIN",e.NOPREVIEW="NOPREVIEW",e.PREPARING_STORY="PREPARING_STORY",e.PREPARING_DOCS="PREPARING_DOCS",e.ERROR="ERROR",e))(ub||{}),Xi={PREPARING_STORY:"sb-show-preparing-story",PREPARING_DOCS:"sb-show-preparing-docs",MAIN:"sb-show-main",NOPREVIEW:"sb-show-nopreview",ERROR:"sb-show-errordisplay"},Qi={centered:"sb-main-centered",fullscreen:"sb-main-fullscreen",padded:"sb-main-padded"},Nm=new cD.default({escapeXML:!0}),cb=class{currentLayoutClass;testing=!1;preparingTimeout;constructor(){if(typeof Ge<"u"){let{__SPECIAL_TEST_PARAMETER__:t}=pD.default.parse(Ge.location.search,{ignoreQueryPrefix:!0});switch(t){case"preparing-story":{this.showPreparingStory(),this.testing=!0;break}case"preparing-docs":{this.showPreparingDocs(),this.testing=!0;break}default:}}}prepareForStory(t){return this.showStory(),this.applyLayout(t.parameters.layout),Ge.documentElement.scrollTop=0,Ge.documentElement.scrollLeft=0,this.storyRoot()}storyRoot(){return Ge.getElementById("storybook-root")}prepareForDocs(){return this.showMain(),this.showDocs(),this.applyLayout("fullscreen"),Ge.documentElement.scrollTop=0,Ge.documentElement.scrollLeft=0,this.docsRoot()}docsRoot(){return Ge.getElementById("storybook-docs")}applyLayout(t="padded"){if(t==="none"){Ge.body.classList.remove(this.currentLayoutClass),this.currentLayoutClass=null;return}this.checkIfLayoutExists(t);let r=Qi[t];Ge.body.classList.remove(this.currentLayoutClass),Ge.body.classList.add(r),this.currentLayoutClass=r}checkIfLayoutExists(t){Qi[t]||me.warn(lt` - The desired layout: ${t} is not a valid option. - The possible options are: ${Object.keys(Qi).join(", ")}, none. - `)}showMode(t){clearTimeout(this.preparingTimeout),Object.keys(ub).forEach(r=>{r===t?Ge.body.classList.add(Xi[r]):Ge.body.classList.remove(Xi[r])})}showErrorDisplay({message:t="",stack:r=""}){let n=t,o=r,a=t.split(` -`);a.length>1&&([n]=a,o=a.slice(1).join(` -`).replace(/^\n/,"")),Ge.getElementById("error-message").innerHTML=Nm.toHtml(n),Ge.getElementById("error-stack").innerHTML=Nm.toHtml(o),this.showMode("ERROR")}showNoPreview(){this.testing||(this.showMode("NOPREVIEW"),this.storyRoot()?.setAttribute("hidden","true"),this.docsRoot()?.setAttribute("hidden","true"))}showPreparingStory({immediate:t=!1}={}){clearTimeout(this.preparingTimeout),t?this.showMode("PREPARING_STORY"):this.preparingTimeout=setTimeout(()=>this.showMode("PREPARING_STORY"),jm)}showPreparingDocs({immediate:t=!1}={}){clearTimeout(this.preparingTimeout),t?this.showMode("PREPARING_DOCS"):this.preparingTimeout=setTimeout(()=>this.showMode("PREPARING_DOCS"),jm)}showMain(){this.showMode("MAIN")}showDocs(){this.storyRoot().setAttribute("hidden","true"),this.docsRoot().removeAttribute("hidden")}showStory(){this.docsRoot().setAttribute("hidden","true"),this.storyRoot().removeAttribute("hidden")}showStoryDuringRender(){Ge.body.classList.add(Xi.MAIN)}};m(cb,"WebView");var dD=cb,fD=class extends tD{constructor(t,r){super(t,r,new uD,new dD),this.importFn=t,this.getProjectAnnotations=r,Ue.__STORYBOOK_PREVIEW__=this}};m(fD,"PreviewWeb");var{document:cr}=Ue,yD=["application/javascript","application/ecmascript","application/x-ecmascript","application/x-javascript","text/ecmascript","text/javascript","text/javascript1.0","text/javascript1.1","text/javascript1.2","text/javascript1.3","text/javascript1.4","text/javascript1.5","text/jscript","text/livescript","text/x-ecmascript","text/x-javascript","module"],hD="script",Bm="scripts-root";function ps(){let e=cr.createEvent("Event");e.initEvent("DOMContentLoaded",!0,!0),cr.dispatchEvent(e)}m(ps,"simulateDOMContentLoaded");function pb(e,t,r){let n=cr.createElement("script");n.type=e.type==="module"?"module":"text/javascript",e.src?(n.onload=t,n.onerror=t,n.src=e.src):n.textContent=e.innerText,r?r.appendChild(n):cr.head.appendChild(n),e.parentNode.removeChild(e),e.src||t()}m(pb,"insertScript");function qs(e,t,r=0){e[r](()=>{r++,r===e.length?t():qs(e,t,r)})}m(qs,"insertScriptsSequentially");function mD(e){let t=cr.getElementById(Bm);t?t.innerHTML="":(t=cr.createElement("div"),t.id=Bm,cr.body.appendChild(t));let r=Array.from(e.querySelectorAll(hD));if(r.length){let n=[];r.forEach(o=>{let a=o.getAttribute("type");(!a||yD.includes(a))&&n.push(i=>pb(o,i,t))}),n.length&&qs(n,ps,void 0)}else ps()}m(mD,"simulatePageLoad");S();A();T();S();A();T();var gD=Object.create,Ms=Object.defineProperty,bD=Object.getOwnPropertyDescriptor,vD=Object.getOwnPropertyNames,xD=Object.getPrototypeOf,ED=Object.prototype.hasOwnProperty,b=(e,t)=>Ms(e,"name",{value:t,configurable:!0}),K=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),wD=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of vD(t))!ED.call(e,o)&&o!==r&&Ms(e,o,{get:()=>t[o],enumerable:!(n=bD(t,o))||n.enumerable});return e},db=(e,t,r)=>(r=e!=null?gD(xD(e)):{},wD(t||!e||!e.__esModule?Ms(r,"default",{value:e,enumerable:!0}):r,e)),fb=K((e,t)=>{var r=typeof window=="object"&&window&&window.Object===Object&&window;t.exports=r}),kt=K((e,t)=>{var r=fb(),n=typeof self=="object"&&self&&self.Object===Object&&self,o=r||n||Function("return this")();t.exports=o}),ia=K((e,t)=>{var r=kt(),n=r.Symbol;t.exports=n}),SD=K((e,t)=>{var r=ia(),n=Object.prototype,o=n.hasOwnProperty,a=n.toString,i=r?r.toStringTag:void 0;function s(l){var u=o.call(l,i),c=l[i];try{l[i]=void 0;var d=!0}catch{}var y=a.call(l);return d&&(u?l[i]=c:delete l[i]),y}b(s,"getRawTag"),t.exports=s}),AD=K((e,t)=>{var r=Object.prototype,n=r.toString;function o(a){return n.call(a)}b(o,"objectToString"),t.exports=o}),Hn=K((e,t)=>{var r=ia(),n=SD(),o=AD(),a="[object Null]",i="[object Undefined]",s=r?r.toStringTag:void 0;function l(u){return u==null?u===void 0?i:a:s&&s in Object(u)?n(u):o(u)}b(l,"baseGetTag"),t.exports=l}),Us=K((e,t)=>{function r(n){var o=typeof n;return n!=null&&(o=="object"||o=="function")}b(r,"isObject"),t.exports=r}),yb=K((e,t)=>{var r=Hn(),n=Us(),o="[object AsyncFunction]",a="[object Function]",i="[object GeneratorFunction]",s="[object Proxy]";function l(u){if(!n(u))return!1;var c=r(u);return c==a||c==i||c==o||c==s}b(l,"isFunction"),t.exports=l}),TD=K((e,t)=>{var r=kt(),n=r["__core-js_shared__"];t.exports=n}),CD=K((e,t)=>{var r=TD(),n=function(){var a=/[^.]+$/.exec(r&&r.keys&&r.keys.IE_PROTO||"");return a?"Symbol(src)_1."+a:""}();function o(a){return!!n&&n in a}b(o,"isMasked"),t.exports=o}),hb=K((e,t)=>{var r=Function.prototype,n=r.toString;function o(a){if(a!=null){try{return n.call(a)}catch{}try{return a+""}catch{}}return""}b(o,"toSource"),t.exports=o}),_D=K((e,t)=>{var r=yb(),n=CD(),o=Us(),a=hb(),i=/[\\^$.*+?()[\]{}|]/g,s=/^\[object .+?Constructor\]$/,l=Function.prototype,u=Object.prototype,c=l.toString,d=u.hasOwnProperty,y=RegExp("^"+c.call(d).replace(i,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function f(h){if(!o(h)||n(h))return!1;var g=r(h)?y:s;return g.test(a(h))}b(f,"baseIsNative"),t.exports=f}),OD=K((e,t)=>{function r(n,o){return n?.[o]}b(r,"getValue"),t.exports=r}),yr=K((e,t)=>{var r=_D(),n=OD();function o(a,i){var s=n(a,i);return r(s)?s:void 0}b(o,"getNative"),t.exports=o}),ID=K((e,t)=>{var r=yr(),n=function(){try{var o=r(Object,"defineProperty");return o({},"",{}),o}catch{}}();t.exports=n}),PD=K((e,t)=>{var r=ID();function n(o,a,i){a=="__proto__"&&r?r(o,a,{configurable:!0,enumerable:!0,value:i,writable:!0}):o[a]=i}b(n,"baseAssignValue"),t.exports=n}),kD=K((e,t)=>{function r(n){return function(o,a,i){for(var s=-1,l=Object(o),u=i(o),c=u.length;c--;){var d=u[n?c:++s];if(a(l[d],d,l)===!1)break}return o}}b(r,"createBaseFor"),t.exports=r}),RD=K((e,t)=>{var r=kD(),n=r();t.exports=n}),DD=K((e,t)=>{function r(n,o){for(var a=-1,i=Array(n);++a{function r(n){return n!=null&&typeof n=="object"}b(r,"isObjectLike"),t.exports=r}),FD=K((e,t)=>{var r=Hn(),n=Gn(),o="[object Arguments]";function a(i){return n(i)&&r(i)==o}b(a,"baseIsArguments"),t.exports=a}),mb=K((e,t)=>{var r=FD(),n=Gn(),o=Object.prototype,a=o.hasOwnProperty,i=o.propertyIsEnumerable,s=r(function(){return arguments}())?r:function(l){return n(l)&&a.call(l,"callee")&&!i.call(l,"callee")};t.exports=s}),Vt=K((e,t)=>{var r=Array.isArray;t.exports=r}),jD=K((e,t)=>{function r(){return!1}b(r,"stubFalse"),t.exports=r}),gb=K((e,t)=>{var r=kt(),n=jD(),o=typeof e=="object"&&e&&!e.nodeType&&e,a=o&&typeof t=="object"&&t&&!t.nodeType&&t,i=a&&a.exports===o,s=i?r.Buffer:void 0,l=s?s.isBuffer:void 0,u=l||n;t.exports=u}),bb=K((e,t)=>{var r=9007199254740991,n=/^(?:0|[1-9]\d*)$/;function o(a,i){var s=typeof a;return i=i??r,!!i&&(s=="number"||s!="symbol"&&n.test(a))&&a>-1&&a%1==0&&a{var r=9007199254740991;function n(o){return typeof o=="number"&&o>-1&&o%1==0&&o<=r}b(n,"isLength"),t.exports=n}),ND=K((e,t)=>{var r=Hn(),n=Js(),o=Gn(),a="[object Arguments]",i="[object Array]",s="[object Boolean]",l="[object Date]",u="[object Error]",c="[object Function]",d="[object Map]",y="[object Number]",f="[object Object]",h="[object RegExp]",g="[object Set]",_="[object String]",v="[object WeakMap]",x="[object ArrayBuffer]",O="[object DataView]",C="[object Float32Array]",I="[object Float64Array]",P="[object Int8Array]",F="[object Int16Array]",D="[object Int32Array]",U="[object Uint8Array]",G="[object Uint8ClampedArray]",X="[object Uint16Array]",Q="[object Uint32Array]",V={};V[C]=V[I]=V[P]=V[F]=V[D]=V[U]=V[G]=V[X]=V[Q]=!0,V[a]=V[i]=V[x]=V[s]=V[O]=V[l]=V[u]=V[c]=V[d]=V[y]=V[f]=V[h]=V[g]=V[_]=V[v]=!1;function R(q){return o(q)&&n(q.length)&&!!V[r(q)]}b(R,"baseIsTypedArray"),t.exports=R}),BD=K((e,t)=>{function r(n){return function(o){return n(o)}}b(r,"baseUnary"),t.exports=r}),LD=K((e,t)=>{var r=fb(),n=typeof e=="object"&&e&&!e.nodeType&&e,o=n&&typeof t=="object"&&t&&!t.nodeType&&t,a=o&&o.exports===n,i=a&&r.process,s=function(){try{var l=o&&o.require&&o.require("util").types;return l||i&&i.binding&&i.binding("util")}catch{}}();t.exports=s}),vb=K((e,t)=>{var r=ND(),n=BD(),o=LD(),a=o&&o.isTypedArray,i=a?n(a):r;t.exports=i}),qD=K((e,t)=>{var r=DD(),n=mb(),o=Vt(),a=gb(),i=bb(),s=vb(),l=Object.prototype,u=l.hasOwnProperty;function c(d,y){var f=o(d),h=!f&&n(d),g=!f&&!h&&a(d),_=!f&&!h&&!g&&s(d),v=f||h||g||_,x=v?r(d.length,String):[],O=x.length;for(var C in d)(y||u.call(d,C))&&!(v&&(C=="length"||g&&(C=="offset"||C=="parent")||_&&(C=="buffer"||C=="byteLength"||C=="byteOffset")||i(C,O)))&&x.push(C);return x}b(c,"arrayLikeKeys"),t.exports=c}),MD=K((e,t)=>{var r=Object.prototype;function n(o){var a=o&&o.constructor,i=typeof a=="function"&&a.prototype||r;return o===i}b(n,"isPrototype"),t.exports=n}),UD=K((e,t)=>{function r(n,o){return function(a){return n(o(a))}}b(r,"overArg"),t.exports=r}),JD=K((e,t)=>{var r=UD(),n=r(Object.keys,Object);t.exports=n}),$D=K((e,t)=>{var r=MD(),n=JD(),o=Object.prototype,a=o.hasOwnProperty;function i(s){if(!r(s))return n(s);var l=[];for(var u in Object(s))a.call(s,u)&&u!="constructor"&&l.push(u);return l}b(i,"baseKeys"),t.exports=i}),zD=K((e,t)=>{var r=yb(),n=Js();function o(a){return a!=null&&n(a.length)&&!r(a)}b(o,"isArrayLike"),t.exports=o}),$s=K((e,t)=>{var r=qD(),n=$D(),o=zD();function a(i){return o(i)?r(i):n(i)}b(a,"keys"),t.exports=a}),VD=K((e,t)=>{var r=RD(),n=$s();function o(a,i){return a&&r(a,i,n)}b(o,"baseForOwn"),t.exports=o}),HD=K((e,t)=>{function r(){this.__data__=[],this.size=0}b(r,"listCacheClear"),t.exports=r}),xb=K((e,t)=>{function r(n,o){return n===o||n!==n&&o!==o}b(r,"eq"),t.exports=r}),sa=K((e,t)=>{var r=xb();function n(o,a){for(var i=o.length;i--;)if(r(o[i][0],a))return i;return-1}b(n,"assocIndexOf"),t.exports=n}),GD=K((e,t)=>{var r=sa(),n=Array.prototype,o=n.splice;function a(i){var s=this.__data__,l=r(s,i);if(l<0)return!1;var u=s.length-1;return l==u?s.pop():o.call(s,l,1),--this.size,!0}b(a,"listCacheDelete"),t.exports=a}),WD=K((e,t)=>{var r=sa();function n(o){var a=this.__data__,i=r(a,o);return i<0?void 0:a[i][1]}b(n,"listCacheGet"),t.exports=n}),KD=K((e,t)=>{var r=sa();function n(o){return r(this.__data__,o)>-1}b(n,"listCacheHas"),t.exports=n}),YD=K((e,t)=>{var r=sa();function n(o,a){var i=this.__data__,s=r(i,o);return s<0?(++this.size,i.push([o,a])):i[s][1]=a,this}b(n,"listCacheSet"),t.exports=n}),la=K((e,t)=>{var r=HD(),n=GD(),o=WD(),a=KD(),i=YD();function s(l){var u=-1,c=l==null?0:l.length;for(this.clear();++u{var r=la();function n(){this.__data__=new r,this.size=0}b(n,"stackClear"),t.exports=n}),QD=K((e,t)=>{function r(n){var o=this.__data__,a=o.delete(n);return this.size=o.size,a}b(r,"stackDelete"),t.exports=r}),ZD=K((e,t)=>{function r(n){return this.__data__.get(n)}b(r,"stackGet"),t.exports=r}),eF=K((e,t)=>{function r(n){return this.__data__.has(n)}b(r,"stackHas"),t.exports=r}),zs=K((e,t)=>{var r=yr(),n=kt(),o=r(n,"Map");t.exports=o}),ua=K((e,t)=>{var r=yr(),n=r(Object,"create");t.exports=n}),tF=K((e,t)=>{var r=ua();function n(){this.__data__=r?r(null):{},this.size=0}b(n,"hashClear"),t.exports=n}),rF=K((e,t)=>{function r(n){var o=this.has(n)&&delete this.__data__[n];return this.size-=o?1:0,o}b(r,"hashDelete"),t.exports=r}),nF=K((e,t)=>{var r=ua(),n="__lodash_hash_undefined__",o=Object.prototype,a=o.hasOwnProperty;function i(s){var l=this.__data__;if(r){var u=l[s];return u===n?void 0:u}return a.call(l,s)?l[s]:void 0}b(i,"hashGet"),t.exports=i}),oF=K((e,t)=>{var r=ua(),n=Object.prototype,o=n.hasOwnProperty;function a(i){var s=this.__data__;return r?s[i]!==void 0:o.call(s,i)}b(a,"hashHas"),t.exports=a}),aF=K((e,t)=>{var r=ua(),n="__lodash_hash_undefined__";function o(a,i){var s=this.__data__;return this.size+=this.has(a)?0:1,s[a]=r&&i===void 0?n:i,this}b(o,"hashSet"),t.exports=o}),iF=K((e,t)=>{var r=tF(),n=rF(),o=nF(),a=oF(),i=aF();function s(l){var u=-1,c=l==null?0:l.length;for(this.clear();++u{var r=iF(),n=la(),o=zs();function a(){this.size=0,this.__data__={hash:new r,map:new(o||n),string:new r}}b(a,"mapCacheClear"),t.exports=a}),lF=K((e,t)=>{function r(n){var o=typeof n;return o=="string"||o=="number"||o=="symbol"||o=="boolean"?n!=="__proto__":n===null}b(r,"isKeyable"),t.exports=r}),ca=K((e,t)=>{var r=lF();function n(o,a){var i=o.__data__;return r(a)?i[typeof a=="string"?"string":"hash"]:i.map}b(n,"getMapData"),t.exports=n}),uF=K((e,t)=>{var r=ca();function n(o){var a=r(this,o).delete(o);return this.size-=a?1:0,a}b(n,"mapCacheDelete"),t.exports=n}),cF=K((e,t)=>{var r=ca();function n(o){return r(this,o).get(o)}b(n,"mapCacheGet"),t.exports=n}),pF=K((e,t)=>{var r=ca();function n(o){return r(this,o).has(o)}b(n,"mapCacheHas"),t.exports=n}),dF=K((e,t)=>{var r=ca();function n(o,a){var i=r(this,o),s=i.size;return i.set(o,a),this.size+=i.size==s?0:1,this}b(n,"mapCacheSet"),t.exports=n}),Vs=K((e,t)=>{var r=sF(),n=uF(),o=cF(),a=pF(),i=dF();function s(l){var u=-1,c=l==null?0:l.length;for(this.clear();++u{var r=la(),n=zs(),o=Vs(),a=200;function i(s,l){var u=this.__data__;if(u instanceof r){var c=u.__data__;if(!n||c.length{var r=la(),n=XD(),o=QD(),a=ZD(),i=eF(),s=fF();function l(u){var c=this.__data__=new r(u);this.size=c.size}b(l,"Stack"),l.prototype.clear=n,l.prototype.delete=o,l.prototype.get=a,l.prototype.has=i,l.prototype.set=s,t.exports=l}),yF=K((e,t)=>{var r="__lodash_hash_undefined__";function n(o){return this.__data__.set(o,r),this}b(n,"setCacheAdd"),t.exports=n}),hF=K((e,t)=>{function r(n){return this.__data__.has(n)}b(r,"setCacheHas"),t.exports=r}),mF=K((e,t)=>{var r=Vs(),n=yF(),o=hF();function a(i){var s=-1,l=i==null?0:i.length;for(this.__data__=new r;++s{function r(n,o){for(var a=-1,i=n==null?0:n.length;++a{function r(n,o){return n.has(o)}b(r,"cacheHas"),t.exports=r}),wb=K((e,t)=>{var r=mF(),n=gF(),o=bF(),a=1,i=2;function s(l,u,c,d,y,f){var h=c&a,g=l.length,_=u.length;if(g!=_&&!(h&&_>g))return!1;var v=f.get(l),x=f.get(u);if(v&&x)return v==u&&x==l;var O=-1,C=!0,I=c&i?new r:void 0;for(f.set(l,u),f.set(u,l);++O{var r=kt(),n=r.Uint8Array;t.exports=n}),xF=K((e,t)=>{function r(n){var o=-1,a=Array(n.size);return n.forEach(function(i,s){a[++o]=[s,i]}),a}b(r,"mapToArray"),t.exports=r}),EF=K((e,t)=>{function r(n){var o=-1,a=Array(n.size);return n.forEach(function(i){a[++o]=i}),a}b(r,"setToArray"),t.exports=r}),wF=K((e,t)=>{var r=ia(),n=vF(),o=xb(),a=wb(),i=xF(),s=EF(),l=1,u=2,c="[object Boolean]",d="[object Date]",y="[object Error]",f="[object Map]",h="[object Number]",g="[object RegExp]",_="[object Set]",v="[object String]",x="[object Symbol]",O="[object ArrayBuffer]",C="[object DataView]",I=r?r.prototype:void 0,P=I?I.valueOf:void 0;function F(D,U,G,X,Q,V,R){switch(G){case C:if(D.byteLength!=U.byteLength||D.byteOffset!=U.byteOffset)return!1;D=D.buffer,U=U.buffer;case O:return!(D.byteLength!=U.byteLength||!V(new n(D),new n(U)));case c:case d:case h:return o(+D,+U);case y:return D.name==U.name&&D.message==U.message;case g:case v:return D==U+"";case f:var q=i;case _:var M=X&l;if(q||(q=s),D.size!=U.size&&!M)return!1;var Y=R.get(D);if(Y)return Y==U;X|=u,R.set(D,U);var te=a(q(D),q(U),X,Q,V,R);return R.delete(D),te;case x:if(P)return P.call(D)==P.call(U)}return!1}b(F,"equalByTag"),t.exports=F}),SF=K((e,t)=>{function r(n,o){for(var a=-1,i=o.length,s=n.length;++a{var r=SF(),n=Vt();function o(a,i,s){var l=i(a);return n(a)?l:r(l,s(a))}b(o,"baseGetAllKeys"),t.exports=o}),TF=K((e,t)=>{function r(n,o){for(var a=-1,i=n==null?0:n.length,s=0,l=[];++a{function r(){return[]}b(r,"stubArray"),t.exports=r}),_F=K((e,t)=>{var r=TF(),n=CF(),o=Object.prototype,a=o.propertyIsEnumerable,i=Object.getOwnPropertySymbols,s=i?function(l){return l==null?[]:(l=Object(l),r(i(l),function(u){return a.call(l,u)}))}:n;t.exports=s}),OF=K((e,t)=>{var r=AF(),n=_F(),o=$s();function a(i){return r(i,o,n)}b(a,"getAllKeys"),t.exports=a}),IF=K((e,t)=>{var r=OF(),n=1,o=Object.prototype,a=o.hasOwnProperty;function i(s,l,u,c,d,y){var f=u&n,h=r(s),g=h.length,_=r(l),v=_.length;if(g!=v&&!f)return!1;for(var x=g;x--;){var O=h[x];if(!(f?O in l:a.call(l,O)))return!1}var C=y.get(s),I=y.get(l);if(C&&I)return C==l&&I==s;var P=!0;y.set(s,l),y.set(l,s);for(var F=f;++x{var r=yr(),n=kt(),o=r(n,"DataView");t.exports=o}),kF=K((e,t)=>{var r=yr(),n=kt(),o=r(n,"Promise");t.exports=o}),RF=K((e,t)=>{var r=yr(),n=kt(),o=r(n,"Set");t.exports=o}),DF=K((e,t)=>{var r=yr(),n=kt(),o=r(n,"WeakMap");t.exports=o}),FF=K((e,t)=>{var r=PF(),n=zs(),o=kF(),a=RF(),i=DF(),s=Hn(),l=hb(),u="[object Map]",c="[object Object]",d="[object Promise]",y="[object Set]",f="[object WeakMap]",h="[object DataView]",g=l(r),_=l(n),v=l(o),x=l(a),O=l(i),C=s;(r&&C(new r(new ArrayBuffer(1)))!=h||n&&C(new n)!=u||o&&C(o.resolve())!=d||a&&C(new a)!=y||i&&C(new i)!=f)&&(C=b(function(I){var P=s(I),F=P==c?I.constructor:void 0,D=F?l(F):"";if(D)switch(D){case g:return h;case _:return u;case v:return d;case x:return y;case O:return f}return P},"getTag")),t.exports=C}),jF=K((e,t)=>{var r=Eb(),n=wb(),o=wF(),a=IF(),i=FF(),s=Vt(),l=gb(),u=vb(),c=1,d="[object Arguments]",y="[object Array]",f="[object Object]",h=Object.prototype,g=h.hasOwnProperty;function _(v,x,O,C,I,P){var F=s(v),D=s(x),U=F?y:i(v),G=D?y:i(x);U=U==d?f:U,G=G==d?f:G;var X=U==f,Q=G==f,V=U==G;if(V&&l(v)){if(!l(x))return!1;F=!0,X=!1}if(V&&!X)return P||(P=new r),F||u(v)?n(v,x,O,C,I,P):o(v,x,U,O,C,I,P);if(!(O&c)){var R=X&&g.call(v,"__wrapped__"),q=Q&&g.call(x,"__wrapped__");if(R||q){var M=R?v.value():v,Y=q?x.value():x;return P||(P=new r),I(M,Y,O,C,P)}}return V?(P||(P=new r),a(v,x,O,C,I,P)):!1}b(_,"baseIsEqualDeep"),t.exports=_}),Sb=K((e,t)=>{var r=jF(),n=Gn();function o(a,i,s,l,u){return a===i?!0:a==null||i==null||!n(a)&&!n(i)?a!==a&&i!==i:r(a,i,s,l,o,u)}b(o,"baseIsEqual"),t.exports=o}),NF=K((e,t)=>{var r=Eb(),n=Sb(),o=1,a=2;function i(s,l,u,c){var d=u.length,y=d,f=!c;if(s==null)return!y;for(s=Object(s);d--;){var h=u[d];if(f&&h[2]?h[1]!==s[h[0]]:!(h[0]in s))return!1}for(;++d{var r=Us();function n(o){return o===o&&!r(o)}b(n,"isStrictComparable"),t.exports=n}),BF=K((e,t)=>{var r=Ab(),n=$s();function o(a){for(var i=n(a),s=i.length;s--;){var l=i[s],u=a[l];i[s]=[l,u,r(u)]}return i}b(o,"getMatchData"),t.exports=o}),Tb=K((e,t)=>{function r(n,o){return function(a){return a==null?!1:a[n]===o&&(o!==void 0||n in Object(a))}}b(r,"matchesStrictComparable"),t.exports=r}),LF=K((e,t)=>{var r=NF(),n=BF(),o=Tb();function a(i){var s=n(i);return s.length==1&&s[0][2]?o(s[0][0],s[0][1]):function(l){return l===i||r(l,i,s)}}b(a,"baseMatches"),t.exports=a}),Hs=K((e,t)=>{var r=Hn(),n=Gn(),o="[object Symbol]";function a(i){return typeof i=="symbol"||n(i)&&r(i)==o}b(a,"isSymbol"),t.exports=a}),Gs=K((e,t)=>{var r=Vt(),n=Hs(),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;function i(s,l){if(r(s))return!1;var u=typeof s;return u=="number"||u=="symbol"||u=="boolean"||s==null||n(s)?!0:a.test(s)||!o.test(s)||l!=null&&s in Object(l)}b(i,"isKey"),t.exports=i}),qF=K((e,t)=>{var r=Vs(),n="Expected a function";function o(a,i){if(typeof a!="function"||i!=null&&typeof i!="function")throw new TypeError(n);var s=b(function(){var l=arguments,u=i?i.apply(this,l):l[0],c=s.cache;if(c.has(u))return c.get(u);var d=a.apply(this,l);return s.cache=c.set(u,d)||c,d},"memoized");return s.cache=new(o.Cache||r),s}b(o,"memoize"),o.Cache=r,t.exports=o}),MF=K((e,t)=>{var r=qF(),n=500;function o(a){var i=r(a,function(l){return s.size===n&&s.clear(),l}),s=i.cache;return i}b(o,"memoizeCapped"),t.exports=o}),UF=K((e,t)=>{var r=MF(),n=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,a=r(function(i){var s=[];return i.charCodeAt(0)===46&&s.push(""),i.replace(n,function(l,u,c,d){s.push(c?d.replace(o,"$1"):u||l)}),s});t.exports=a}),JF=K((e,t)=>{function r(n,o){for(var a=-1,i=n==null?0:n.length,s=Array(i);++a{var r=ia(),n=JF(),o=Vt(),a=Hs(),i=1/0,s=r?r.prototype:void 0,l=s?s.toString:void 0;function u(c){if(typeof c=="string")return c;if(o(c))return n(c,u)+"";if(a(c))return l?l.call(c):"";var d=c+"";return d=="0"&&1/c==-i?"-0":d}b(u,"baseToString"),t.exports=u}),zF=K((e,t)=>{var r=$F();function n(o){return o==null?"":r(o)}b(n,"toString"),t.exports=n}),Cb=K((e,t)=>{var r=Vt(),n=Gs(),o=UF(),a=zF();function i(s,l){return r(s)?s:n(s,l)?[s]:o(a(s))}b(i,"castPath"),t.exports=i}),pa=K((e,t)=>{var r=Hs(),n=1/0;function o(a){if(typeof a=="string"||r(a))return a;var i=a+"";return i=="0"&&1/a==-n?"-0":i}b(o,"toKey"),t.exports=o}),_b=K((e,t)=>{var r=Cb(),n=pa();function o(a,i){i=r(i,a);for(var s=0,l=i.length;a!=null&&s{var r=_b();function n(o,a,i){var s=o==null?void 0:r(o,a);return s===void 0?i:s}b(n,"get"),t.exports=n}),HF=K((e,t)=>{function r(n,o){return n!=null&&o in Object(n)}b(r,"baseHasIn"),t.exports=r}),GF=K((e,t)=>{var r=Cb(),n=mb(),o=Vt(),a=bb(),i=Js(),s=pa();function l(u,c,d){c=r(c,u);for(var y=-1,f=c.length,h=!1;++y{var r=HF(),n=GF();function o(a,i){return a!=null&&n(a,i,r)}b(o,"hasIn"),t.exports=o}),KF=K((e,t)=>{var r=Sb(),n=VF(),o=WF(),a=Gs(),i=Ab(),s=Tb(),l=pa(),u=1,c=2;function d(y,f){return a(y)&&i(f)?s(l(y),f):function(h){var g=n(h,y);return g===void 0&&g===f?o(h,y):r(f,g,u|c)}}b(d,"baseMatchesProperty"),t.exports=d}),YF=K((e,t)=>{function r(n){return n}b(r,"identity"),t.exports=r}),XF=K((e,t)=>{function r(n){return function(o){return o?.[n]}}b(r,"baseProperty"),t.exports=r}),QF=K((e,t)=>{var r=_b();function n(o){return function(a){return r(a,o)}}b(n,"basePropertyDeep"),t.exports=n}),ZF=K((e,t)=>{var r=XF(),n=QF(),o=Gs(),a=pa();function i(s){return o(s)?r(a(s)):n(s)}b(i,"property"),t.exports=i}),ej=K((e,t)=>{var r=LF(),n=KF(),o=YF(),a=Vt(),i=ZF();function s(l){return typeof l=="function"?l:l==null?o:typeof l=="object"?a(l)?n(l[0],l[1]):r(l):i(l)}b(s,"baseIteratee"),t.exports=s}),tj=K((e,t)=>{var r=PD(),n=VD(),o=ej();function a(i,s){var l={};return s=o(s,3),n(i,function(u,c,d){r(l,c,s(u,c,d))}),l}b(a,"mapValues"),t.exports=a}),rj=K((e,t)=>{(function(r,n){typeof e=="object"&&typeof t<"u"?n(e):typeof define=="function"&&define.amd?define(["exports"],n):(r=typeof globalThis<"u"?globalThis:r||self,n(r.jtpp={}))})(e,function(r){"use strict";function n(p){return p.text!==void 0&&p.text!==""?`'${p.type}' with value '${p.text}'`:`'${p.type}'`}b(n,"tokenToString");let o=class Ob extends Error{constructor(w){super(`No parslet found for token: ${n(w)}`),this.token=w,Object.setPrototypeOf(this,Ob.prototype)}getToken(){return this.token}};b(o,"NoParsletFoundError");let a=o,i=class Ib extends Error{constructor(w){super(`The parsing ended early. The next token was: ${n(w)}`),this.token=w,Object.setPrototypeOf(this,Ib.prototype)}getToken(){return this.token}};b(i,"EarlyEndOfParseError");let s=i,l=class Pb extends Error{constructor(w,k){let z=`Unexpected type: '${w.type}'.`;k!==void 0&&(z+=` Message: ${k}`),super(z),Object.setPrototypeOf(this,Pb.prototype)}};b(l,"UnexpectedTypeError");let u=l;function c(p){return w=>w.startsWith(p)?{type:p,text:p}:null}b(c,"makePunctuationRule");function d(p){let w=0,k,z=p[0],ee=!1;if(z!=="'"&&z!=='"')return null;for(;w{let w=h(p);return w==null?null:{type:"Identifier",text:w}},"identifierRule");function x(p){return w=>{if(!w.startsWith(p))return null;let k=w[p.length];return k!==void 0&&f.test(k)?null:{type:p,text:p}}}b(x,"makeKeyWordRule");let O=b(p=>{let w=d(p);return w==null?null:{type:"StringValue",text:w}},"stringValueRule"),C=b(p=>p.length>0?null:{type:"EOF",text:""},"eofRule"),I=b(p=>{let w=_(p);return w===null?null:{type:"Number",text:w}},"numberRule"),P=[C,c("=>"),c("("),c(")"),c("{"),c("}"),c("["),c("]"),c("|"),c("&"),c("<"),c(">"),c(","),c(";"),c("*"),c("?"),c("!"),c("="),c(":"),c("..."),c("."),c("#"),c("~"),c("/"),c("@"),x("undefined"),x("null"),x("function"),x("this"),x("new"),x("module"),x("event"),x("external"),x("typeof"),x("keyof"),x("readonly"),x("import"),x("is"),x("in"),I,v,O],F=/^\s*\n\s*/,D=class aa{static create(w){let k=this.read(w);w=k.text;let z=this.read(w);return w=z.text,new aa(w,void 0,k.token,z.token)}constructor(w,k,z,ee){this.text="",this.text=w,this.previous=k,this.current=z,this.next=ee}static read(w,k=!1){k=k||F.test(w),w=w.trim();for(let z of P){let ee=z(w);if(ee!==null){let oe=Object.assign(Object.assign({},ee),{startOfLine:k});return w=w.slice(oe.text.length),{text:w,token:oe}}}throw new Error("Unexpected Token "+w)}advance(){let w=aa.read(this.text);return new aa(w.text,this.current,this.next,w.token)}};b(D,"Lexer");let U=D;function G(p){if(p===void 0)throw new Error("Unexpected undefined");if(p.type==="JsdocTypeKeyValue"||p.type==="JsdocTypeParameterList"||p.type==="JsdocTypeProperty"||p.type==="JsdocTypeReadonlyProperty"||p.type==="JsdocTypeObjectField"||p.type==="JsdocTypeJsdocObjectField"||p.type==="JsdocTypeIndexSignature"||p.type==="JsdocTypeMappedType")throw new u(p);return p}b(G,"assertRootResult");function X(p){return p.type==="JsdocTypeKeyValue"?V(p):G(p)}b(X,"assertPlainKeyValueOrRootResult");function Q(p){return p.type==="JsdocTypeName"?p:V(p)}b(Q,"assertPlainKeyValueOrNameResult");function V(p){if(p.type!=="JsdocTypeKeyValue")throw new u(p);return p}b(V,"assertPlainKeyValueResult");function R(p){var w;if(p.type==="JsdocTypeVariadic"){if(((w=p.element)===null||w===void 0?void 0:w.type)==="JsdocTypeName")return p;throw new u(p)}if(p.type!=="JsdocTypeNumber"&&p.type!=="JsdocTypeName")throw new u(p);return p}b(R,"assertNumberOrVariadicNameResult");function q(p){return p.type==="JsdocTypeIndexSignature"||p.type==="JsdocTypeMappedType"}b(q,"isSquaredProperty");var M;(function(p){p[p.ALL=0]="ALL",p[p.PARAMETER_LIST=1]="PARAMETER_LIST",p[p.OBJECT=2]="OBJECT",p[p.KEY_VALUE=3]="KEY_VALUE",p[p.UNION=4]="UNION",p[p.INTERSECTION=5]="INTERSECTION",p[p.PREFIX=6]="PREFIX",p[p.INFIX=7]="INFIX",p[p.TUPLE=8]="TUPLE",p[p.SYMBOL=9]="SYMBOL",p[p.OPTIONAL=10]="OPTIONAL",p[p.NULLABLE=11]="NULLABLE",p[p.KEY_OF_TYPE_OF=12]="KEY_OF_TYPE_OF",p[p.FUNCTION=13]="FUNCTION",p[p.ARROW=14]="ARROW",p[p.ARRAY_BRACKETS=15]="ARRAY_BRACKETS",p[p.GENERIC=16]="GENERIC",p[p.NAME_PATH=17]="NAME_PATH",p[p.PARENTHESIS=18]="PARENTHESIS",p[p.SPECIAL_TYPES=19]="SPECIAL_TYPES"})(M||(M={}));let Y=class{constructor(w,k,z){this.grammar=w,typeof k=="string"?this._lexer=U.create(k):this._lexer=k,this.baseParser=z}get lexer(){return this._lexer}parse(){let w=this.parseType(M.ALL);if(this.lexer.current.type!=="EOF")throw new s(this.lexer.current);return w}parseType(w){return G(this.parseIntermediateType(w))}parseIntermediateType(w){let k=this.tryParslets(null,w);if(k===null)throw new a(this.lexer.current);return this.parseInfixIntermediateType(k,w)}parseInfixIntermediateType(w,k){let z=this.tryParslets(w,k);for(;z!==null;)w=z,z=this.tryParslets(w,k);return w}tryParslets(w,k){for(let z of this.grammar){let ee=z(this,k,w);if(ee!==null)return ee}return null}consume(w){return Array.isArray(w)||(w=[w]),w.includes(this.lexer.current.type)?(this._lexer=this.lexer.advance(),!0):!1}acceptLexerState(w){this._lexer=w.lexer}};b(Y,"Parser");let te=Y;function ne(p){return p==="EOF"||p==="|"||p===","||p===")"||p===">"}b(ne,"isQuestionMarkUnknownType");let re=b((p,w,k)=>{let z=p.lexer.current.type,ee=p.lexer.next.type;return k==null&&z==="?"&&!ne(ee)||k!=null&&z==="?"?(p.consume("?"),k==null?{type:"JsdocTypeNullable",element:p.parseType(M.NULLABLE),meta:{position:"prefix"}}:{type:"JsdocTypeNullable",element:G(k),meta:{position:"suffix"}}):null},"nullableParslet");function Z(p){let w=b((k,z,ee)=>{let oe=k.lexer.current.type,ie=k.lexer.next.type;if(ee===null){if("parsePrefix"in p&&p.accept(oe,ie))return p.parsePrefix(k)}else if("parseInfix"in p&&p.precedence>z&&p.accept(oe,ie))return p.parseInfix(k,ee);return null},"parslet");return Object.defineProperty(w,"name",{value:p.name}),w}b(Z,"composeParslet");let ae=Z({name:"optionalParslet",accept:b(p=>p==="=","accept"),precedence:M.OPTIONAL,parsePrefix:b(p=>(p.consume("="),{type:"JsdocTypeOptional",element:p.parseType(M.OPTIONAL),meta:{position:"prefix"}}),"parsePrefix"),parseInfix:b((p,w)=>(p.consume("="),{type:"JsdocTypeOptional",element:G(w),meta:{position:"suffix"}}),"parseInfix")}),le=Z({name:"numberParslet",accept:b(p=>p==="Number","accept"),parsePrefix:b(p=>{let w=parseFloat(p.lexer.current.text);return p.consume("Number"),{type:"JsdocTypeNumber",value:w}},"parsePrefix")}),Ee=Z({name:"parenthesisParslet",accept:b(p=>p==="(","accept"),parsePrefix:b(p=>{if(p.consume("("),p.consume(")"))return{type:"JsdocTypeParameterList",elements:[]};let w=p.parseIntermediateType(M.ALL);if(!p.consume(")"))throw new Error("Unterminated parenthesis");return w.type==="JsdocTypeParameterList"?w:w.type==="JsdocTypeKeyValue"?{type:"JsdocTypeParameterList",elements:[w]}:{type:"JsdocTypeParenthesis",element:G(w)}},"parsePrefix")}),pe=Z({name:"specialTypesParslet",accept:b((p,w)=>p==="?"&&ne(w)||p==="null"||p==="undefined"||p==="*","accept"),parsePrefix:b(p=>{if(p.consume("null"))return{type:"JsdocTypeNull"};if(p.consume("undefined"))return{type:"JsdocTypeUndefined"};if(p.consume("*"))return{type:"JsdocTypeAny"};if(p.consume("?"))return{type:"JsdocTypeUnknown"};throw new Error("Unacceptable token: "+p.lexer.current.text)},"parsePrefix")}),we=Z({name:"notNullableParslet",accept:b(p=>p==="!","accept"),precedence:M.NULLABLE,parsePrefix:b(p=>(p.consume("!"),{type:"JsdocTypeNotNullable",element:p.parseType(M.NULLABLE),meta:{position:"prefix"}}),"parsePrefix"),parseInfix:b((p,w)=>(p.consume("!"),{type:"JsdocTypeNotNullable",element:G(w),meta:{position:"suffix"}}),"parseInfix")});function Le({allowTrailingComma:p}){return Z({name:"parameterListParslet",accept:b(w=>w===",","accept"),precedence:M.PARAMETER_LIST,parseInfix:b((w,k)=>{let z=[X(k)];w.consume(",");do try{let ee=w.parseIntermediateType(M.PARAMETER_LIST);z.push(X(ee))}catch(ee){if(p&&ee instanceof a)break;throw ee}while(w.consume(","));if(z.length>0&&z.slice(0,-1).some(ee=>ee.type==="JsdocTypeVariadic"))throw new Error("Only the last parameter may be a rest parameter");return{type:"JsdocTypeParameterList",elements:z}},"parseInfix")})}b(Le,"createParameterListParslet");let Ve=Z({name:"genericParslet",accept:b((p,w)=>p==="<"||p==="."&&w==="<","accept"),precedence:M.GENERIC,parseInfix:b((p,w)=>{let k=p.consume(".");p.consume("<");let z=[];do z.push(p.parseType(M.PARAMETER_LIST));while(p.consume(","));if(!p.consume(">"))throw new Error("Unterminated generic parameter list");return{type:"JsdocTypeGeneric",left:G(w),elements:z,meta:{brackets:"angle",dot:k}}},"parseInfix")}),Ye=Z({name:"unionParslet",accept:b(p=>p==="|","accept"),precedence:M.UNION,parseInfix:b((p,w)=>{p.consume("|");let k=[];do k.push(p.parseType(M.UNION));while(p.consume("|"));return{type:"JsdocTypeUnion",elements:[G(w),...k]}},"parseInfix")}),fe=[re,ae,le,Ee,pe,we,Le({allowTrailingComma:!0}),Ve,Ye,ae];function Ie({allowSquareBracketsOnAnyType:p,allowJsdocNamePaths:w,pathGrammar:k}){return b(function(z,ee,oe){if(oe==null||ee>=M.NAME_PATH)return null;let ie=z.lexer.current.type,Te=z.lexer.next.type;if(!(ie==="."&&Te!=="<"||ie==="["&&(p||oe.type==="JsdocTypeName")||w&&(ie==="~"||ie==="#")))return null;let _e,He=!1;z.consume(".")?_e="property":z.consume("[")?(_e="property-brackets",He=!0):z.consume("~")?_e="inner":(z.consume("#"),_e="instance");let At=k!==null?new te(k,z.lexer,z):z,pt=At.parseIntermediateType(M.NAME_PATH);z.acceptLexerState(At);let hn;switch(pt.type){case"JsdocTypeName":hn={type:"JsdocTypeProperty",value:pt.value,meta:{quote:void 0}};break;case"JsdocTypeNumber":hn={type:"JsdocTypeProperty",value:pt.value.toString(10),meta:{quote:void 0}};break;case"JsdocTypeStringValue":hn={type:"JsdocTypeProperty",value:pt.value,meta:{quote:pt.meta.quote}};break;case"JsdocTypeSpecialNamePath":if(pt.specialType==="event")hn=pt;else throw new u(pt,"Type 'JsdocTypeSpecialNamePath' is only allowed with specialType 'event'");break;default:throw new u(pt,"Expecting 'JsdocTypeName', 'JsdocTypeNumber', 'JsdocStringValue' or 'JsdocTypeSpecialNamePath'")}if(He&&!z.consume("]")){let Vl=z.lexer.current;throw new Error(`Unterminated square brackets. Next token is '${Vl.type}' with text '${Vl.text}'`)}return{type:"JsdocTypeNamePath",left:G(oe),right:hn,pathType:_e}},"namePathParslet")}b(Ie,"createNamePathParslet");function ye({allowedAdditionalTokens:p}){return Z({name:"nameParslet",accept:b(w=>w==="Identifier"||w==="this"||w==="new"||p.includes(w),"accept"),parsePrefix:b(w=>{let{type:k,text:z}=w.lexer.current;return w.consume(k),{type:"JsdocTypeName",value:z}},"parsePrefix")})}b(ye,"createNameParslet");let Re=Z({name:"stringValueParslet",accept:b(p=>p==="StringValue","accept"),parsePrefix:b(p=>{let w=p.lexer.current.text;return p.consume("StringValue"),{type:"JsdocTypeStringValue",value:w.slice(1,-1),meta:{quote:w[0]==="'"?"single":"double"}}},"parsePrefix")});function Ze({pathGrammar:p,allowedTypes:w}){return Z({name:"specialNamePathParslet",accept:b(k=>w.includes(k),"accept"),parsePrefix:b(k=>{let z=k.lexer.current.type;if(k.consume(z),!k.consume(":"))return{type:"JsdocTypeName",value:z};let ee,oe=k.lexer.current;if(k.consume("StringValue"))ee={type:"JsdocTypeSpecialNamePath",value:oe.text.slice(1,-1),specialType:z,meta:{quote:oe.text[0]==="'"?"single":"double"}};else{let _e="",He=["Identifier","@","/"];for(;He.some(At=>k.consume(At));)_e+=oe.text,oe=k.lexer.current;ee={type:"JsdocTypeSpecialNamePath",value:_e,specialType:z,meta:{quote:void 0}}}let ie=new te(p,k.lexer,k),Te=ie.parseInfixIntermediateType(ee,M.ALL);return k.acceptLexerState(ie),G(Te)},"parsePrefix")})}b(Ze,"createSpecialNamePathParslet");let qe=[ye({allowedAdditionalTokens:["external","module"]}),Re,le,Ie({allowSquareBracketsOnAnyType:!1,allowJsdocNamePaths:!0,pathGrammar:null})],ce=[...qe,Ze({allowedTypes:["event"],pathGrammar:qe})];function Se(p){let w;if(p.type==="JsdocTypeParameterList")w=p.elements;else if(p.type==="JsdocTypeParenthesis")w=[p.element];else throw new u(p);return w.map(k=>X(k))}b(Se,"getParameters");function Ft(p){let w=Se(p);if(w.some(k=>k.type==="JsdocTypeKeyValue"))throw new Error("No parameter should be named");return w}b(Ft,"getUnnamedParameters");function ft({allowNamedParameters:p,allowNoReturnType:w,allowWithoutParenthesis:k,allowNewAsFunctionKeyword:z}){return Z({name:"functionParslet",accept:b((ee,oe)=>ee==="function"||z&&ee==="new"&&oe==="(","accept"),parsePrefix:b(ee=>{let oe=ee.consume("new");ee.consume("function");let ie=ee.lexer.current.type==="(";if(!ie){if(!k)throw new Error("function is missing parameter list");return{type:"JsdocTypeName",value:"function"}}let Te={type:"JsdocTypeFunction",parameters:[],arrow:!1,constructor:oe,parenthesis:ie},_e=ee.parseIntermediateType(M.FUNCTION);if(p===void 0)Te.parameters=Ft(_e);else{if(oe&&_e.type==="JsdocTypeFunction"&&_e.arrow)return Te=_e,Te.constructor=!0,Te;Te.parameters=Se(_e);for(let He of Te.parameters)if(He.type==="JsdocTypeKeyValue"&&!p.includes(He.key))throw new Error(`only allowed named parameters are ${p.join(", ")} but got ${He.type}`)}if(ee.consume(":"))Te.returnType=ee.parseType(M.PREFIX);else if(!w)throw new Error("function is missing return type");return Te},"parsePrefix")})}b(ft,"createFunctionParslet");function wt({allowPostfix:p,allowEnclosingBrackets:w}){return Z({name:"variadicParslet",accept:b(k=>k==="...","accept"),precedence:M.PREFIX,parsePrefix:b(k=>{k.consume("...");let z=w&&k.consume("[");try{let ee=k.parseType(M.PREFIX);if(z&&!k.consume("]"))throw new Error("Unterminated variadic type. Missing ']'");return{type:"JsdocTypeVariadic",element:G(ee),meta:{position:"prefix",squareBrackets:z}}}catch(ee){if(ee instanceof a){if(z)throw new Error("Empty square brackets for variadic are not allowed.");return{type:"JsdocTypeVariadic",meta:{position:void 0,squareBrackets:!1}}}else throw ee}},"parsePrefix"),parseInfix:p?(k,z)=>(k.consume("..."),{type:"JsdocTypeVariadic",element:G(z),meta:{position:"suffix",squareBrackets:!1}}):void 0})}b(wt,"createVariadicParslet");let an=Z({name:"symbolParslet",accept:b(p=>p==="(","accept"),precedence:M.SYMBOL,parseInfix:b((p,w)=>{if(w.type!=="JsdocTypeName")throw new Error("Symbol expects a name on the left side. (Reacting on '(')");p.consume("(");let k={type:"JsdocTypeSymbol",value:w.value};if(!p.consume(")")){let z=p.parseIntermediateType(M.SYMBOL);if(k.element=R(z),!p.consume(")"))throw new Error("Symbol does not end after value")}return k},"parseInfix")}),sn=Z({name:"arrayBracketsParslet",precedence:M.ARRAY_BRACKETS,accept:b((p,w)=>p==="["&&w==="]","accept"),parseInfix:b((p,w)=>(p.consume("["),p.consume("]"),{type:"JsdocTypeGeneric",left:{type:"JsdocTypeName",value:"Array"},elements:[G(w)],meta:{brackets:"square",dot:!1}}),"parseInfix")});function Yt({objectFieldGrammar:p,allowKeyTypes:w}){return Z({name:"objectParslet",accept:b(k=>k==="{","accept"),parsePrefix:b(k=>{k.consume("{");let z={type:"JsdocTypeObject",meta:{separator:"comma"},elements:[]};if(!k.consume("}")){let ee,oe=new te(p,k.lexer,k);for(;;){oe.acceptLexerState(k);let ie=oe.parseIntermediateType(M.OBJECT);k.acceptLexerState(oe),ie===void 0&&w&&(ie=k.parseIntermediateType(M.OBJECT));let Te=!1;if(ie.type==="JsdocTypeNullable"&&(Te=!0,ie=ie.element),ie.type==="JsdocTypeNumber"||ie.type==="JsdocTypeName"||ie.type==="JsdocTypeStringValue"){let _e;ie.type==="JsdocTypeStringValue"&&(_e=ie.meta.quote),z.elements.push({type:"JsdocTypeObjectField",key:ie.value.toString(),right:void 0,optional:Te,readonly:!1,meta:{quote:_e}})}else if(ie.type==="JsdocTypeObjectField"||ie.type==="JsdocTypeJsdocObjectField")z.elements.push(ie);else throw new u(ie);if(k.lexer.current.startOfLine)ee="linebreak";else if(k.consume(","))ee="comma";else if(k.consume(";"))ee="semicolon";else break;if(k.lexer.current.type==="}")break}if(z.meta.separator=ee??"comma",!k.consume("}"))throw new Error("Unterminated record type. Missing '}'")}return z},"parsePrefix")})}b(Yt,"createObjectParslet");function Xt({allowSquaredProperties:p,allowKeyTypes:w,allowReadonly:k,allowOptional:z}){return Z({name:"objectFieldParslet",precedence:M.KEY_VALUE,accept:b(ee=>ee===":","accept"),parseInfix:b((ee,oe)=>{var ie;let Te=!1,_e=!1;z&&oe.type==="JsdocTypeNullable"&&(Te=!0,oe=oe.element),k&&oe.type==="JsdocTypeReadonlyProperty"&&(_e=!0,oe=oe.element);let He=(ie=ee.baseParser)!==null&&ie!==void 0?ie:ee;if(He.acceptLexerState(ee),oe.type==="JsdocTypeNumber"||oe.type==="JsdocTypeName"||oe.type==="JsdocTypeStringValue"||q(oe)){if(q(oe)&&!p)throw new u(oe);He.consume(":");let At;oe.type==="JsdocTypeStringValue"&&(At=oe.meta.quote);let pt=He.parseType(M.KEY_VALUE);return ee.acceptLexerState(He),{type:"JsdocTypeObjectField",key:q(oe)?oe:oe.value.toString(),right:pt,optional:Te,readonly:_e,meta:{quote:At}}}else{if(!w)throw new u(oe);He.consume(":");let At=He.parseType(M.KEY_VALUE);return ee.acceptLexerState(He),{type:"JsdocTypeJsdocObjectField",left:G(oe),right:At}}},"parseInfix")})}b(Xt,"createObjectFieldParslet");function Qt({allowOptional:p,allowVariadic:w}){return Z({name:"keyValueParslet",precedence:M.KEY_VALUE,accept:b(k=>k===":","accept"),parseInfix:b((k,z)=>{let ee=!1,oe=!1;if(p&&z.type==="JsdocTypeNullable"&&(ee=!0,z=z.element),w&&z.type==="JsdocTypeVariadic"&&z.element!==void 0&&(oe=!0,z=z.element),z.type!=="JsdocTypeName")throw new u(z);k.consume(":");let ie=k.parseType(M.KEY_VALUE);return{type:"JsdocTypeKeyValue",key:z.value,right:ie,optional:ee,variadic:oe}},"parseInfix")})}b(Qt,"createKeyValueParslet");let xr=[...fe,ft({allowWithoutParenthesis:!0,allowNamedParameters:["this","new"],allowNoReturnType:!0,allowNewAsFunctionKeyword:!1}),Re,Ze({allowedTypes:["module","external","event"],pathGrammar:ce}),wt({allowEnclosingBrackets:!0,allowPostfix:!0}),ye({allowedAdditionalTokens:["keyof"]}),an,sn,Ie({allowSquareBracketsOnAnyType:!1,allowJsdocNamePaths:!0,pathGrammar:ce})],ro=[...xr,Yt({objectFieldGrammar:[ye({allowedAdditionalTokens:["module","in"]}),Xt({allowSquaredProperties:!1,allowKeyTypes:!0,allowOptional:!1,allowReadonly:!1}),...xr],allowKeyTypes:!0}),Qt({allowOptional:!0,allowVariadic:!0})],St=Z({name:"typeOfParslet",accept:b(p=>p==="typeof","accept"),parsePrefix:b(p=>(p.consume("typeof"),{type:"JsdocTypeTypeof",element:G(p.parseType(M.KEY_OF_TYPE_OF))}),"parsePrefix")}),Er=[ye({allowedAdditionalTokens:["module","keyof","event","external","in"]}),re,ae,Re,le,Xt({allowSquaredProperties:!1,allowKeyTypes:!1,allowOptional:!1,allowReadonly:!1})],ln=[...fe,Yt({allowKeyTypes:!1,objectFieldGrammar:Er}),ye({allowedAdditionalTokens:["event","external","in"]}),St,ft({allowWithoutParenthesis:!1,allowNamedParameters:["this","new"],allowNoReturnType:!0,allowNewAsFunctionKeyword:!1}),wt({allowEnclosingBrackets:!1,allowPostfix:!1}),ye({allowedAdditionalTokens:["keyof"]}),Ze({allowedTypes:["module"],pathGrammar:ce}),Ie({allowSquareBracketsOnAnyType:!1,allowJsdocNamePaths:!0,pathGrammar:ce}),Qt({allowOptional:!1,allowVariadic:!1}),an];function un({allowQuestionMark:p}){return Z({name:"tupleParslet",accept:b(w=>w==="[","accept"),parsePrefix:b(w=>{w.consume("[");let k={type:"JsdocTypeTuple",elements:[]};if(w.consume("]"))return k;let z=w.parseIntermediateType(M.ALL);if(z.type==="JsdocTypeParameterList"?z.elements[0].type==="JsdocTypeKeyValue"?k.elements=z.elements.map(V):k.elements=z.elements.map(G):z.type==="JsdocTypeKeyValue"?k.elements=[V(z)]:k.elements=[G(z)],!w.consume("]"))throw new Error("Unterminated '['");if(!p&&k.elements.some(ee=>ee.type==="JsdocTypeUnknown"))throw new Error("Question mark in tuple not allowed");return k},"parsePrefix")})}b(un,"createTupleParslet");let no=Z({name:"keyOfParslet",accept:b(p=>p==="keyof","accept"),parsePrefix:b(p=>(p.consume("keyof"),{type:"JsdocTypeKeyof",element:G(p.parseType(M.KEY_OF_TYPE_OF))}),"parsePrefix")}),wr=Z({name:"importParslet",accept:b(p=>p==="import","accept"),parsePrefix:b(p=>{if(p.consume("import"),!p.consume("("))throw new Error("Missing parenthesis after import keyword");let w=p.parseType(M.PREFIX);if(w.type!=="JsdocTypeStringValue")throw new Error("Only string values are allowed as paths for imports");if(!p.consume(")"))throw new Error("Missing closing parenthesis after import keyword");return{type:"JsdocTypeImport",element:w}},"parsePrefix")}),Zt=Z({name:"readonlyPropertyParslet",accept:b(p=>p==="readonly","accept"),parsePrefix:b(p=>(p.consume("readonly"),{type:"JsdocTypeReadonlyProperty",element:p.parseType(M.KEY_VALUE)}),"parsePrefix")}),$=Z({name:"arrowFunctionParslet",precedence:M.ARROW,accept:b(p=>p==="=>","accept"),parseInfix:b((p,w)=>(p.consume("=>"),{type:"JsdocTypeFunction",parameters:Se(w).map(Q),arrow:!0,constructor:!1,parenthesis:!0,returnType:p.parseType(M.OBJECT)}),"parseInfix")}),H=Z({name:"intersectionParslet",accept:b(p=>p==="&","accept"),precedence:M.INTERSECTION,parseInfix:b((p,w)=>{p.consume("&");let k=[];do k.push(p.parseType(M.INTERSECTION));while(p.consume("&"));return{type:"JsdocTypeIntersection",elements:[G(w),...k]}},"parseInfix")}),ue=Z({name:"predicateParslet",precedence:M.INFIX,accept:b(p=>p==="is","accept"),parseInfix:b((p,w)=>{if(w.type!=="JsdocTypeName")throw new u(w,"A typescript predicate always has to have a name on the left side.");return p.consume("is"),{type:"JsdocTypePredicate",left:w,right:G(p.parseIntermediateType(M.INFIX))}},"parseInfix")}),de=Z({name:"objectSquareBracketPropertyParslet",accept:b(p=>p==="[","accept"),parsePrefix:b(p=>{if(p.baseParser===void 0)throw new Error("Only allowed inside object grammar");p.consume("[");let w=p.lexer.current.text;p.consume("Identifier");let k;if(p.consume(":")){let z=p.baseParser;z.acceptLexerState(p),k={type:"JsdocTypeIndexSignature",key:w,right:z.parseType(M.ARRAY_BRACKETS)},p.acceptLexerState(z)}else if(p.consume("in")){let z=p.baseParser;z.acceptLexerState(p),k={type:"JsdocTypeMappedType",key:w,right:z.parseType(M.ARRAY_BRACKETS)},p.acceptLexerState(z)}else throw new Error("Missing ':' or 'in' inside square bracketed property.");if(!p.consume("]"))throw new Error("Unterminated square brackets");return k},"parsePrefix")}),Ae=[Zt,ye({allowedAdditionalTokens:["module","event","keyof","event","external","in"]}),re,ae,Re,le,Xt({allowSquaredProperties:!0,allowKeyTypes:!1,allowOptional:!0,allowReadonly:!0}),de],se=[...fe,Yt({allowKeyTypes:!1,objectFieldGrammar:Ae}),St,no,wr,Re,ft({allowWithoutParenthesis:!0,allowNoReturnType:!1,allowNamedParameters:["this","new","args"],allowNewAsFunctionKeyword:!0}),un({allowQuestionMark:!1}),wt({allowEnclosingBrackets:!1,allowPostfix:!1}),ye({allowedAdditionalTokens:["event","external","in"]}),Ze({allowedTypes:["module"],pathGrammar:ce}),sn,$,Ie({allowSquareBracketsOnAnyType:!0,allowJsdocNamePaths:!1,pathGrammar:ce}),H,ue,Qt({allowVariadic:!0,allowOptional:!0})];function ot(p,w){switch(w){case"closure":return new te(ln,p).parse();case"jsdoc":return new te(ro,p).parse();case"typescript":return new te(se,p).parse()}}b(ot,"parse");function yt(p,w=["typescript","closure","jsdoc"]){let k;for(let z of w)try{return ot(p,z)}catch(ee){k=ee}throw k}b(yt,"tryParse");function ke(p,w){let k=p[w.type];if(k===void 0)throw new Error(`In this set of transform rules exists no rule for type ${w.type}.`);return k(w,z=>ke(p,z))}b(ke,"transform");function xe(p){throw new Error("This transform is not available. Are you trying the correct parsing mode?")}b(xe,"notAvailableTransform");function er(p){let w={params:[]};for(let k of p.parameters)k.type==="JsdocTypeKeyValue"?k.key==="this"?w.this=k.right:k.key==="new"?w.new=k.right:w.params.push(k):w.params.push(k);return w}b(er,"extractSpecialParams");function at(p,w,k){return p==="prefix"?k+w:w+k}b(at,"applyPosition");function Ce(p,w){switch(w){case"double":return`"${p}"`;case"single":return`'${p}'`;case void 0:return p}}b(Ce,"quote");function Sr(){return{JsdocTypeParenthesis:b((p,w)=>`(${p.element!==void 0?w(p.element):""})`,"JsdocTypeParenthesis"),JsdocTypeKeyof:b((p,w)=>`keyof ${w(p.element)}`,"JsdocTypeKeyof"),JsdocTypeFunction:b((p,w)=>{if(p.arrow){if(p.returnType===void 0)throw new Error("Arrow function needs a return type.");let k=`(${p.parameters.map(w).join(", ")}) => ${w(p.returnType)}`;return p.constructor&&(k="new "+k),k}else{let k=p.constructor?"new":"function";return p.parenthesis&&(k+=`(${p.parameters.map(w).join(", ")})`,p.returnType!==void 0&&(k+=`: ${w(p.returnType)}`)),k}},"JsdocTypeFunction"),JsdocTypeName:b(p=>p.value,"JsdocTypeName"),JsdocTypeTuple:b((p,w)=>`[${p.elements.map(w).join(", ")}]`,"JsdocTypeTuple"),JsdocTypeVariadic:b((p,w)=>p.meta.position===void 0?"...":at(p.meta.position,w(p.element),"..."),"JsdocTypeVariadic"),JsdocTypeNamePath:b((p,w)=>{let k=w(p.left),z=w(p.right);switch(p.pathType){case"inner":return`${k}~${z}`;case"instance":return`${k}#${z}`;case"property":return`${k}.${z}`;case"property-brackets":return`${k}[${z}]`}},"JsdocTypeNamePath"),JsdocTypeStringValue:b(p=>Ce(p.value,p.meta.quote),"JsdocTypeStringValue"),JsdocTypeAny:b(()=>"*","JsdocTypeAny"),JsdocTypeGeneric:b((p,w)=>{if(p.meta.brackets==="square"){let k=p.elements[0],z=w(k);return k.type==="JsdocTypeUnion"||k.type==="JsdocTypeIntersection"?`(${z})[]`:`${z}[]`}else return`${w(p.left)}${p.meta.dot?".":""}<${p.elements.map(w).join(", ")}>`},"JsdocTypeGeneric"),JsdocTypeImport:b((p,w)=>`import(${w(p.element)})`,"JsdocTypeImport"),JsdocTypeObjectField:b((p,w)=>{let k="";return p.readonly&&(k+="readonly "),typeof p.key=="string"?k+=Ce(p.key,p.meta.quote):k+=w(p.key),p.optional&&(k+="?"),p.right===void 0?k:k+`: ${w(p.right)}`},"JsdocTypeObjectField"),JsdocTypeJsdocObjectField:b((p,w)=>`${w(p.left)}: ${w(p.right)}`,"JsdocTypeJsdocObjectField"),JsdocTypeKeyValue:b((p,w)=>{let k=p.key;return p.optional&&(k+="?"),p.variadic&&(k="..."+k),p.right===void 0?k:k+`: ${w(p.right)}`},"JsdocTypeKeyValue"),JsdocTypeSpecialNamePath:b(p=>`${p.specialType}:${Ce(p.value,p.meta.quote)}`,"JsdocTypeSpecialNamePath"),JsdocTypeNotNullable:b((p,w)=>at(p.meta.position,w(p.element),"!"),"JsdocTypeNotNullable"),JsdocTypeNull:b(()=>"null","JsdocTypeNull"),JsdocTypeNullable:b((p,w)=>at(p.meta.position,w(p.element),"?"),"JsdocTypeNullable"),JsdocTypeNumber:b(p=>p.value.toString(),"JsdocTypeNumber"),JsdocTypeObject:b((p,w)=>`{${p.elements.map(w).join((p.meta.separator==="comma"?",":";")+" ")}}`,"JsdocTypeObject"),JsdocTypeOptional:b((p,w)=>at(p.meta.position,w(p.element),"="),"JsdocTypeOptional"),JsdocTypeSymbol:b((p,w)=>`${p.value}(${p.element!==void 0?w(p.element):""})`,"JsdocTypeSymbol"),JsdocTypeTypeof:b((p,w)=>`typeof ${w(p.element)}`,"JsdocTypeTypeof"),JsdocTypeUndefined:b(()=>"undefined","JsdocTypeUndefined"),JsdocTypeUnion:b((p,w)=>p.elements.map(w).join(" | "),"JsdocTypeUnion"),JsdocTypeUnknown:b(()=>"?","JsdocTypeUnknown"),JsdocTypeIntersection:b((p,w)=>p.elements.map(w).join(" & "),"JsdocTypeIntersection"),JsdocTypeProperty:b(p=>Ce(p.value,p.meta.quote),"JsdocTypeProperty"),JsdocTypePredicate:b((p,w)=>`${w(p.left)} is ${w(p.right)}`,"JsdocTypePredicate"),JsdocTypeIndexSignature:b((p,w)=>`[${p.key}: ${w(p.right)}]`,"JsdocTypeIndexSignature"),JsdocTypeMappedType:b((p,w)=>`[${p.key} in ${w(p.right)}]`,"JsdocTypeMappedType")}}b(Sr,"stringifyRules");let oo=Sr();function cn(p){return ke(oo,p)}b(cn,"stringify");let tr=["null","true","false","break","case","catch","class","const","continue","debugger","default","delete","do","else","export","extends","finally","for","function","if","import","in","instanceof","new","return","super","switch","this","throw","try","typeof","var","void","while","with","yield"];function nt(p){let w={type:"NameExpression",name:p};return tr.includes(p)&&(w.reservedWord=!0),w}b(nt,"makeName");let Ar={JsdocTypeOptional:b((p,w)=>{let k=w(p.element);return k.optional=!0,k},"JsdocTypeOptional"),JsdocTypeNullable:b((p,w)=>{let k=w(p.element);return k.nullable=!0,k},"JsdocTypeNullable"),JsdocTypeNotNullable:b((p,w)=>{let k=w(p.element);return k.nullable=!1,k},"JsdocTypeNotNullable"),JsdocTypeVariadic:b((p,w)=>{if(p.element===void 0)throw new Error("dots without value are not allowed in catharsis mode");let k=w(p.element);return k.repeatable=!0,k},"JsdocTypeVariadic"),JsdocTypeAny:b(()=>({type:"AllLiteral"}),"JsdocTypeAny"),JsdocTypeNull:b(()=>({type:"NullLiteral"}),"JsdocTypeNull"),JsdocTypeStringValue:b(p=>nt(Ce(p.value,p.meta.quote)),"JsdocTypeStringValue"),JsdocTypeUndefined:b(()=>({type:"UndefinedLiteral"}),"JsdocTypeUndefined"),JsdocTypeUnknown:b(()=>({type:"UnknownLiteral"}),"JsdocTypeUnknown"),JsdocTypeFunction:b((p,w)=>{let k=er(p),z={type:"FunctionType",params:k.params.map(w)};return k.this!==void 0&&(z.this=w(k.this)),k.new!==void 0&&(z.new=w(k.new)),p.returnType!==void 0&&(z.result=w(p.returnType)),z},"JsdocTypeFunction"),JsdocTypeGeneric:b((p,w)=>({type:"TypeApplication",applications:p.elements.map(k=>w(k)),expression:w(p.left)}),"JsdocTypeGeneric"),JsdocTypeSpecialNamePath:b(p=>nt(p.specialType+":"+Ce(p.value,p.meta.quote)),"JsdocTypeSpecialNamePath"),JsdocTypeName:b(p=>p.value!=="function"?nt(p.value):{type:"FunctionType",params:[]},"JsdocTypeName"),JsdocTypeNumber:b(p=>nt(p.value.toString()),"JsdocTypeNumber"),JsdocTypeObject:b((p,w)=>{let k={type:"RecordType",fields:[]};for(let z of p.elements)z.type!=="JsdocTypeObjectField"&&z.type!=="JsdocTypeJsdocObjectField"?k.fields.push({type:"FieldType",key:w(z),value:void 0}):k.fields.push(w(z));return k},"JsdocTypeObject"),JsdocTypeObjectField:b((p,w)=>{if(typeof p.key!="string")throw new Error("Index signatures and mapped types are not supported");return{type:"FieldType",key:nt(Ce(p.key,p.meta.quote)),value:p.right===void 0?void 0:w(p.right)}},"JsdocTypeObjectField"),JsdocTypeJsdocObjectField:b((p,w)=>({type:"FieldType",key:w(p.left),value:w(p.right)}),"JsdocTypeJsdocObjectField"),JsdocTypeUnion:b((p,w)=>({type:"TypeUnion",elements:p.elements.map(k=>w(k))}),"JsdocTypeUnion"),JsdocTypeKeyValue:b((p,w)=>({type:"FieldType",key:nt(p.key),value:p.right===void 0?void 0:w(p.right)}),"JsdocTypeKeyValue"),JsdocTypeNamePath:b((p,w)=>{let k=w(p.left),z;p.right.type==="JsdocTypeSpecialNamePath"?z=w(p.right).name:z=Ce(p.right.value,p.right.meta.quote);let ee=p.pathType==="inner"?"~":p.pathType==="instance"?"#":".";return nt(`${k.name}${ee}${z}`)},"JsdocTypeNamePath"),JsdocTypeSymbol:b(p=>{let w="",k=p.element,z=!1;return k?.type==="JsdocTypeVariadic"&&(k.meta.position==="prefix"?w="...":z=!0,k=k.element),k?.type==="JsdocTypeName"?w+=k.value:k?.type==="JsdocTypeNumber"&&(w+=k.value.toString()),z&&(w+="..."),nt(`${p.value}(${w})`)},"JsdocTypeSymbol"),JsdocTypeParenthesis:b((p,w)=>w(G(p.element)),"JsdocTypeParenthesis"),JsdocTypeMappedType:xe,JsdocTypeIndexSignature:xe,JsdocTypeImport:xe,JsdocTypeKeyof:xe,JsdocTypeTuple:xe,JsdocTypeTypeof:xe,JsdocTypeIntersection:xe,JsdocTypeProperty:xe,JsdocTypePredicate:xe};function Tr(p){return ke(Ar,p)}b(Tr,"catharsisTransform");function it(p){switch(p){case void 0:return"none";case"single":return"single";case"double":return"double"}}b(it,"getQuoteStyle");function pn(p){switch(p){case"inner":return"INNER_MEMBER";case"instance":return"INSTANCE_MEMBER";case"property":return"MEMBER";case"property-brackets":return"MEMBER"}}b(pn,"getMemberType");function rr(p,w){return w.length===2?{type:p,left:w[0],right:w[1]}:{type:p,left:w[0],right:rr(p,w.slice(1))}}b(rr,"nestResults");let dn={JsdocTypeOptional:b((p,w)=>({type:"OPTIONAL",value:w(p.element),meta:{syntax:p.meta.position==="prefix"?"PREFIX_EQUAL_SIGN":"SUFFIX_EQUALS_SIGN"}}),"JsdocTypeOptional"),JsdocTypeNullable:b((p,w)=>({type:"NULLABLE",value:w(p.element),meta:{syntax:p.meta.position==="prefix"?"PREFIX_QUESTION_MARK":"SUFFIX_QUESTION_MARK"}}),"JsdocTypeNullable"),JsdocTypeNotNullable:b((p,w)=>({type:"NOT_NULLABLE",value:w(p.element),meta:{syntax:p.meta.position==="prefix"?"PREFIX_BANG":"SUFFIX_BANG"}}),"JsdocTypeNotNullable"),JsdocTypeVariadic:b((p,w)=>{let k={type:"VARIADIC",meta:{syntax:p.meta.position==="prefix"?"PREFIX_DOTS":p.meta.position==="suffix"?"SUFFIX_DOTS":"ONLY_DOTS"}};return p.element!==void 0&&(k.value=w(p.element)),k},"JsdocTypeVariadic"),JsdocTypeName:b(p=>({type:"NAME",name:p.value}),"JsdocTypeName"),JsdocTypeTypeof:b((p,w)=>({type:"TYPE_QUERY",name:w(p.element)}),"JsdocTypeTypeof"),JsdocTypeTuple:b((p,w)=>({type:"TUPLE",entries:p.elements.map(w)}),"JsdocTypeTuple"),JsdocTypeKeyof:b((p,w)=>({type:"KEY_QUERY",value:w(p.element)}),"JsdocTypeKeyof"),JsdocTypeImport:b(p=>({type:"IMPORT",path:{type:"STRING_VALUE",quoteStyle:it(p.element.meta.quote),string:p.element.value}}),"JsdocTypeImport"),JsdocTypeUndefined:b(()=>({type:"NAME",name:"undefined"}),"JsdocTypeUndefined"),JsdocTypeAny:b(()=>({type:"ANY"}),"JsdocTypeAny"),JsdocTypeFunction:b((p,w)=>{let k=er(p),z={type:p.arrow?"ARROW":"FUNCTION",params:k.params.map(ee=>{if(ee.type==="JsdocTypeKeyValue"){if(ee.right===void 0)throw new Error("Function parameter without ':' is not expected to be 'KEY_VALUE'");return{type:"NAMED_PARAMETER",name:ee.key,typeName:w(ee.right)}}else return w(ee)}),new:null,returns:null};return k.this!==void 0?z.this=w(k.this):p.arrow||(z.this=null),k.new!==void 0&&(z.new=w(k.new)),p.returnType!==void 0&&(z.returns=w(p.returnType)),z},"JsdocTypeFunction"),JsdocTypeGeneric:b((p,w)=>{let k={type:"GENERIC",subject:w(p.left),objects:p.elements.map(w),meta:{syntax:p.meta.brackets==="square"?"SQUARE_BRACKET":p.meta.dot?"ANGLE_BRACKET_WITH_DOT":"ANGLE_BRACKET"}};return p.meta.brackets==="square"&&p.elements[0].type==="JsdocTypeFunction"&&!p.elements[0].parenthesis&&(k.objects[0]={type:"NAME",name:"function"}),k},"JsdocTypeGeneric"),JsdocTypeObjectField:b((p,w)=>{if(typeof p.key!="string")throw new Error("Index signatures and mapped types are not supported");if(p.right===void 0)return{type:"RECORD_ENTRY",key:p.key,quoteStyle:it(p.meta.quote),value:null,readonly:!1};let k=w(p.right);return p.optional&&(k={type:"OPTIONAL",value:k,meta:{syntax:"SUFFIX_KEY_QUESTION_MARK"}}),{type:"RECORD_ENTRY",key:p.key.toString(),quoteStyle:it(p.meta.quote),value:k,readonly:!1}},"JsdocTypeObjectField"),JsdocTypeJsdocObjectField:b(()=>{throw new Error("Keys may not be typed in jsdoctypeparser.")},"JsdocTypeJsdocObjectField"),JsdocTypeKeyValue:b((p,w)=>{if(p.right===void 0)return{type:"RECORD_ENTRY",key:p.key,quoteStyle:"none",value:null,readonly:!1};let k=w(p.right);return p.optional&&(k={type:"OPTIONAL",value:k,meta:{syntax:"SUFFIX_KEY_QUESTION_MARK"}}),{type:"RECORD_ENTRY",key:p.key,quoteStyle:"none",value:k,readonly:!1}},"JsdocTypeKeyValue"),JsdocTypeObject:b((p,w)=>{let k=[];for(let z of p.elements)(z.type==="JsdocTypeObjectField"||z.type==="JsdocTypeJsdocObjectField")&&k.push(w(z));return{type:"RECORD",entries:k}},"JsdocTypeObject"),JsdocTypeSpecialNamePath:b(p=>{if(p.specialType!=="module")throw new Error(`jsdoctypeparser does not support type ${p.specialType} at this point.`);return{type:"MODULE",value:{type:"FILE_PATH",quoteStyle:it(p.meta.quote),path:p.value}}},"JsdocTypeSpecialNamePath"),JsdocTypeNamePath:b((p,w)=>{let k=!1,z,ee;p.right.type==="JsdocTypeSpecialNamePath"&&p.right.specialType==="event"?(k=!0,z=p.right.value,ee=it(p.right.meta.quote)):(z=p.right.value,ee=it(p.right.meta.quote));let oe={type:pn(p.pathType),owner:w(p.left),name:z,quoteStyle:ee,hasEventPrefix:k};if(oe.owner.type==="MODULE"){let ie=oe.owner;return oe.owner=oe.owner.value,ie.value=oe,ie}else return oe},"JsdocTypeNamePath"),JsdocTypeUnion:b((p,w)=>rr("UNION",p.elements.map(w)),"JsdocTypeUnion"),JsdocTypeParenthesis:b((p,w)=>({type:"PARENTHESIS",value:w(G(p.element))}),"JsdocTypeParenthesis"),JsdocTypeNull:b(()=>({type:"NAME",name:"null"}),"JsdocTypeNull"),JsdocTypeUnknown:b(()=>({type:"UNKNOWN"}),"JsdocTypeUnknown"),JsdocTypeStringValue:b(p=>({type:"STRING_VALUE",quoteStyle:it(p.meta.quote),string:p.value}),"JsdocTypeStringValue"),JsdocTypeIntersection:b((p,w)=>rr("INTERSECTION",p.elements.map(w)),"JsdocTypeIntersection"),JsdocTypeNumber:b(p=>({type:"NUMBER_VALUE",number:p.value.toString()}),"JsdocTypeNumber"),JsdocTypeSymbol:xe,JsdocTypeProperty:xe,JsdocTypePredicate:xe,JsdocTypeMappedType:xe,JsdocTypeIndexSignature:xe};function fn(p){return ke(dn,p)}b(fn,"jtpTransform");function Cr(){return{JsdocTypeIntersection:b((p,w)=>({type:"JsdocTypeIntersection",elements:p.elements.map(w)}),"JsdocTypeIntersection"),JsdocTypeGeneric:b((p,w)=>({type:"JsdocTypeGeneric",left:w(p.left),elements:p.elements.map(w),meta:{dot:p.meta.dot,brackets:p.meta.brackets}}),"JsdocTypeGeneric"),JsdocTypeNullable:b(p=>p,"JsdocTypeNullable"),JsdocTypeUnion:b((p,w)=>({type:"JsdocTypeUnion",elements:p.elements.map(w)}),"JsdocTypeUnion"),JsdocTypeUnknown:b(p=>p,"JsdocTypeUnknown"),JsdocTypeUndefined:b(p=>p,"JsdocTypeUndefined"),JsdocTypeTypeof:b((p,w)=>({type:"JsdocTypeTypeof",element:w(p.element)}),"JsdocTypeTypeof"),JsdocTypeSymbol:b((p,w)=>{let k={type:"JsdocTypeSymbol",value:p.value};return p.element!==void 0&&(k.element=w(p.element)),k},"JsdocTypeSymbol"),JsdocTypeOptional:b((p,w)=>({type:"JsdocTypeOptional",element:w(p.element),meta:{position:p.meta.position}}),"JsdocTypeOptional"),JsdocTypeObject:b((p,w)=>({type:"JsdocTypeObject",meta:{separator:"comma"},elements:p.elements.map(w)}),"JsdocTypeObject"),JsdocTypeNumber:b(p=>p,"JsdocTypeNumber"),JsdocTypeNull:b(p=>p,"JsdocTypeNull"),JsdocTypeNotNullable:b((p,w)=>({type:"JsdocTypeNotNullable",element:w(p.element),meta:{position:p.meta.position}}),"JsdocTypeNotNullable"),JsdocTypeSpecialNamePath:b(p=>p,"JsdocTypeSpecialNamePath"),JsdocTypeObjectField:b((p,w)=>({type:"JsdocTypeObjectField",key:p.key,right:p.right===void 0?void 0:w(p.right),optional:p.optional,readonly:p.readonly,meta:p.meta}),"JsdocTypeObjectField"),JsdocTypeJsdocObjectField:b((p,w)=>({type:"JsdocTypeJsdocObjectField",left:w(p.left),right:w(p.right)}),"JsdocTypeJsdocObjectField"),JsdocTypeKeyValue:b((p,w)=>({type:"JsdocTypeKeyValue",key:p.key,right:p.right===void 0?void 0:w(p.right),optional:p.optional,variadic:p.variadic}),"JsdocTypeKeyValue"),JsdocTypeImport:b((p,w)=>({type:"JsdocTypeImport",element:w(p.element)}),"JsdocTypeImport"),JsdocTypeAny:b(p=>p,"JsdocTypeAny"),JsdocTypeStringValue:b(p=>p,"JsdocTypeStringValue"),JsdocTypeNamePath:b(p=>p,"JsdocTypeNamePath"),JsdocTypeVariadic:b((p,w)=>{let k={type:"JsdocTypeVariadic",meta:{position:p.meta.position,squareBrackets:p.meta.squareBrackets}};return p.element!==void 0&&(k.element=w(p.element)),k},"JsdocTypeVariadic"),JsdocTypeTuple:b((p,w)=>({type:"JsdocTypeTuple",elements:p.elements.map(w)}),"JsdocTypeTuple"),JsdocTypeName:b(p=>p,"JsdocTypeName"),JsdocTypeFunction:b((p,w)=>{let k={type:"JsdocTypeFunction",arrow:p.arrow,parameters:p.parameters.map(w),constructor:p.constructor,parenthesis:p.parenthesis};return p.returnType!==void 0&&(k.returnType=w(p.returnType)),k},"JsdocTypeFunction"),JsdocTypeKeyof:b((p,w)=>({type:"JsdocTypeKeyof",element:w(p.element)}),"JsdocTypeKeyof"),JsdocTypeParenthesis:b((p,w)=>({type:"JsdocTypeParenthesis",element:w(p.element)}),"JsdocTypeParenthesis"),JsdocTypeProperty:b(p=>p,"JsdocTypeProperty"),JsdocTypePredicate:b((p,w)=>({type:"JsdocTypePredicate",left:w(p.left),right:w(p.right)}),"JsdocTypePredicate"),JsdocTypeIndexSignature:b((p,w)=>({type:"JsdocTypeIndexSignature",key:p.key,right:w(p.right)}),"JsdocTypeIndexSignature"),JsdocTypeMappedType:b((p,w)=>({type:"JsdocTypeMappedType",key:p.key,right:w(p.right)}),"JsdocTypeMappedType")}}b(Cr,"identityTransformRules");let yn={JsdocTypeAny:[],JsdocTypeFunction:["parameters","returnType"],JsdocTypeGeneric:["left","elements"],JsdocTypeImport:[],JsdocTypeIndexSignature:["right"],JsdocTypeIntersection:["elements"],JsdocTypeKeyof:["element"],JsdocTypeKeyValue:["right"],JsdocTypeMappedType:["right"],JsdocTypeName:[],JsdocTypeNamePath:["left","right"],JsdocTypeNotNullable:["element"],JsdocTypeNull:[],JsdocTypeNullable:["element"],JsdocTypeNumber:[],JsdocTypeObject:["elements"],JsdocTypeObjectField:["right"],JsdocTypeJsdocObjectField:["left","right"],JsdocTypeOptional:["element"],JsdocTypeParenthesis:["element"],JsdocTypeSpecialNamePath:[],JsdocTypeStringValue:[],JsdocTypeSymbol:["element"],JsdocTypeTuple:["elements"],JsdocTypeTypeof:["element"],JsdocTypeUndefined:[],JsdocTypeUnion:["elements"],JsdocTypeUnknown:[],JsdocTypeVariadic:["element"],JsdocTypeProperty:[],JsdocTypePredicate:["left","right"]};function _r(p,w,k,z,ee){z?.(p,w,k);let oe=yn[p.type];for(let ie of oe){let Te=p[ie];if(Te!==void 0)if(Array.isArray(Te))for(let _e of Te)_r(_e,p,ie,z,ee);else _r(Te,p,ie,z,ee)}ee?.(p,w,k)}b(_r,"_traverse");function Or(p,w,k){_r(p,void 0,void 0,w,k)}b(Or,"traverse"),r.catharsisTransform=Tr,r.identityTransformRules=Cr,r.jtpTransform=fn,r.parse=ot,r.stringify=cn,r.stringifyRules=Sr,r.transform=ke,r.traverse=Or,r.tryParse=yt,r.visitorKeys=yn})}),kb=/^['"]|['"]$/g,nj=b(e=>e.replace(kb,""),"trimQuotes"),oj=b(e=>kb.test(e),"includesQuotes"),Rb=b(e=>{let t=nj(e);return oj(e)||Number.isNaN(Number(t))?t:Number(t)},"parseLiteral"),aj=b(e=>{switch(e.type){case"function":return{name:"function"};case"object":let t={};return e.signature.properties.forEach(r=>{t[r.key]=zn(r.value)}),{name:"object",value:t};default:throw new Uo({type:e,language:"Typescript"})}},"convertSig"),zn=b(e=>{let{name:t,raw:r}=e,n={};switch(typeof r<"u"&&(n.raw=r),e.name){case"string":case"number":case"symbol":case"boolean":return{...n,name:t};case"Array":return{...n,name:"array",value:e.elements.map(zn)};case"signature":return{...n,...aj(e)};case"union":let o;return e.elements?.every(a=>a.name==="literal")?o={...n,name:"enum",value:e.elements?.map(a=>Rb(a.value))}:o={...n,name:t,value:e.elements?.map(zn)},o;case"intersection":return{...n,name:t,value:e.elements?.map(zn)};default:return{...n,name:"other",value:t}}},"convert"),ij=b(e=>e.name==="literal","isLiteral"),sj=b(e=>e.value.replace(/['|"]/g,""),"toEnumOption"),lj=b(e=>{switch(e.type){case"function":return{name:"function"};case"object":let t={};return e.signature.properties.forEach(r=>{t[r.key]=Vn(r.value)}),{name:"object",value:t};default:throw new Uo({type:e,language:"Flow"})}},"convertSig"),Vn=b(e=>{let{name:t,raw:r}=e,n={};switch(typeof r<"u"&&(n.raw=r),e.name){case"literal":return{...n,name:"other",value:e.value};case"string":case"number":case"symbol":case"boolean":return{...n,name:t};case"Array":return{...n,name:"array",value:e.elements.map(Vn)};case"signature":return{...n,...lj(e)};case"union":return e.elements?.every(ij)?{...n,name:"enum",value:e.elements?.map(sj)}:{...n,name:t,value:e.elements?.map(Vn)};case"intersection":return{...n,name:t,value:e.elements?.map(Vn)};default:return{...n,name:"other",value:t}}},"convert"),uj=db(tj(),1),cj=/^\(.*\) => /,$n=b(e=>{let{name:t,raw:r,computed:n,value:o}=e,a={};switch(typeof r<"u"&&(a.raw=r),t){case"enum":{let s=n?o:o.map(l=>Rb(l.value));return{...a,name:t,value:s}}case"string":case"number":case"symbol":return{...a,name:t};case"func":return{...a,name:"function"};case"bool":case"boolean":return{...a,name:"boolean"};case"arrayOf":case"array":return{...a,name:"array",value:o&&$n(o)};case"object":return{...a,name:t};case"objectOf":return{...a,name:t,value:$n(o)};case"shape":case"exact":let i=(0,uj.default)(o,s=>$n(s));return{...a,name:"object",value:i};case"union":return{...a,name:"union",value:o.map(s=>$n(s))};case"instanceOf":case"element":case"elementType":default:{if(t?.indexOf("|")>0)try{let u=t.split("|").map(c=>JSON.parse(c));return{...a,name:"enum",value:u}}catch{}let s=o?`${t}(${o})`:t,l=cj.test(t)?"function":"other";return{...a,name:l,value:s}}}},"convert"),Ws=b(e=>{let{type:t,tsType:r,flowType:n}=e;try{if(t!=null)return $n(t);if(r!=null)return zn(r);if(n!=null)return Vn(n)}catch(o){console.error(o)}return null},"convert"),pj=(e=>(e.JAVASCRIPT="JavaScript",e.FLOW="Flow",e.TYPESCRIPT="TypeScript",e.UNKNOWN="Unknown",e))(pj||{}),dj=["null","undefined"];function da(e){return dj.some(t=>t===e)}b(da,"isDefaultValueBlacklisted");var fj=b(e=>{if(!e)return"";if(typeof e=="string")return e;throw new Error(`Description: expected string, got: ${JSON.stringify(e)}`)},"str");function Ks(e){return!!e.__docgenInfo}b(Ks,"hasDocgen");function Db(e){return e!=null&&Object.keys(e).length>0}b(Db,"isValidDocgenSection");function Fb(e,t){return Ks(e)?e.__docgenInfo[t]:null}b(Fb,"getDocgenSection");function jb(e){return Ks(e)?fj(e.__docgenInfo.description):""}b(jb,"getDocgenDescription");var zt;(function(e){e.start="/**",e.nostart="/***",e.delim="*",e.end="*/"})(zt=zt||(zt={}));function Nb(e){return/^\s+$/.test(e)}b(Nb,"isSpace");function Bb(e){let t=e.match(/\r+$/);return t==null?["",e]:[e.slice(-t[0].length),e.slice(0,-t[0].length)]}b(Bb,"splitCR");function fr(e){let t=e.match(/^\s+/);return t==null?["",e]:[e.slice(0,t[0].length),e.slice(t[0].length)]}b(fr,"splitSpace");function Lb(e){return e.split(/\n/)}b(Lb,"splitLines");function qb(e={}){return Object.assign({tag:"",name:"",type:"",optional:!1,description:"",problems:[],source:[]},e)}b(qb,"seedSpec");function Mb(e={}){return Object.assign({start:"",delimiter:"",postDelimiter:"",tag:"",postTag:"",name:"",postName:"",type:"",postType:"",description:"",end:"",lineEnd:""},e)}b(Mb,"seedTokens");var yj=/^@\S+/;function Ub({fence:e="```"}={}){let t=Jb(e),r=b((n,o)=>t(n)?!o:o,"toggleFence");return b(function(n){let o=[[]],a=!1;for(let i of n)yj.test(i.tokens.description)&&!a?o.push([i]):o[o.length-1].push(i),a=r(i.tokens.description,a);return o},"parseBlock")}b(Ub,"getParser");function Jb(e){return typeof e=="string"?t=>t.split(e).length%2===0:e}b(Jb,"getFencer");function $b({startLine:e=0,markers:t=zt}={}){let r=null,n=e;return b(function(o){let a=o,i=Mb();if([i.lineEnd,a]=Bb(a),[i.start,a]=fr(a),r===null&&a.startsWith(t.start)&&!a.startsWith(t.nostart)&&(r=[],i.delimiter=a.slice(0,t.start.length),a=a.slice(t.start.length),[i.postDelimiter,a]=fr(a)),r===null)return n++,null;let s=a.trimRight().endsWith(t.end);if(i.delimiter===""&&a.startsWith(t.delim)&&!a.startsWith(t.end)&&(i.delimiter=t.delim,a=a.slice(t.delim.length),[i.postDelimiter,a]=fr(a)),s){let l=a.trimRight();i.end=a.slice(l.length-t.end.length),a=l.slice(0,-t.end.length)}if(i.description=a,r.push({number:n,source:o,tokens:i}),n++,s){let l=r.slice();return r=null,l}return null},"parseSource")}b($b,"getParser");function zb({tokenizers:e}){return b(function(t){var r;let n=qb({source:t});for(let o of e)if(n=o(n),!((r=n.problems[n.problems.length-1])===null||r===void 0)&&r.critical)break;return n},"parseSpec")}b(zb,"getParser");function Vb(){return e=>{let{tokens:t}=e.source[0],r=t.description.match(/\s*(@(\S+))(\s*)/);return r===null?(e.problems.push({code:"spec:tag:prefix",message:'tag should start with "@" symbol',line:e.source[0].number,critical:!0}),e):(t.tag=r[1],t.postTag=r[3],t.description=t.description.slice(r[0].length),e.tag=r[2],e)}}b(Vb,"tagTokenizer");function Hb(e="compact"){let t=Gb(e);return r=>{let n=0,o=[];for(let[s,{tokens:l}]of r.source.entries()){let u="";if(s===0&&l.description[0]!=="{")return r;for(let c of l.description)if(c==="{"&&n++,c==="}"&&n--,u+=c,n===0)break;if(o.push([l,u]),n===0)break}if(n!==0)return r.problems.push({code:"spec:type:unpaired-curlies",message:"unpaired curlies",line:r.source[0].number,critical:!0}),r;let a=[],i=o[0][0].postDelimiter.length;for(let[s,[l,u]]of o.entries())l.type=u,s>0&&(l.type=l.postDelimiter.slice(i)+u,l.postDelimiter=l.postDelimiter.slice(0,i)),[l.postType,l.description]=fr(l.description.slice(u.length)),a.push(l.type);return a[0]=a[0].slice(1),a[a.length-1]=a[a.length-1].slice(0,-1),r.type=t(a),r}}b(Hb,"typeTokenizer");var hj=b(e=>e.trim(),"trim");function Gb(e){return e==="compact"?t=>t.map(hj).join(""):e==="preserve"?t=>t.join(` -`):e}b(Gb,"getJoiner");var mj=b(e=>e&&e.startsWith('"')&&e.endsWith('"'),"isQuoted");function Wb(){let e=b((t,{tokens:r},n)=>r.type===""?t:n,"typeEnd");return t=>{let{tokens:r}=t.source[t.source.reduce(e,0)],n=r.description.trimLeft(),o=n.split('"');if(o.length>1&&o[0]===""&&o.length%2===1)return t.name=o[1],r.name=`"${o[1]}"`,[r.postName,r.description]=fr(n.slice(r.name.length)),t;let a=0,i="",s=!1,l;for(let c of n){if(a===0&&Nb(c))break;c==="["&&a++,c==="]"&&a--,i+=c}if(a!==0)return t.problems.push({code:"spec:name:unpaired-brackets",message:"unpaired brackets",line:t.source[0].number,critical:!0}),t;let u=i;if(i[0]==="["&&i[i.length-1]==="]"){s=!0,i=i.slice(1,-1);let c=i.split("=");if(i=c[0].trim(),c[1]!==void 0&&(l=c.slice(1).join("=").trim()),i==="")return t.problems.push({code:"spec:name:empty-name",message:"empty name",line:t.source[0].number,critical:!0}),t;if(l==="")return t.problems.push({code:"spec:name:empty-default",message:"empty default value",line:t.source[0].number,critical:!0}),t;if(!mj(l)&&/=(?!>)/.test(l))return t.problems.push({code:"spec:name:invalid-default",message:"invalid default value syntax",line:t.source[0].number,critical:!0}),t}return t.optional=s,t.name=i,r.name=u,l!==void 0&&(t.default=l),[r.postName,r.description]=fr(n.slice(r.name.length)),t}}b(Wb,"nameTokenizer");function Kb(e="compact",t=zt){let r=Ys(e);return n=>(n.description=r(n.source,t),n)}b(Kb,"descriptionTokenizer");function Ys(e){return e==="compact"?Yb:e==="preserve"?Xb:e}b(Ys,"getJoiner");function Yb(e,t=zt){return e.map(({tokens:{description:r}})=>r.trim()).filter(r=>r!=="").join(" ")}b(Yb,"compactJoiner");var gj=b((e,{tokens:t},r)=>t.type===""?e:r,"lineNo"),bj=b(({tokens:e})=>(e.delimiter===""?e.start:e.postDelimiter.slice(1))+e.description,"getDescription");function Xb(e,t=zt){if(e.length===0)return"";e[0].tokens.description===""&&e[0].tokens.delimiter===t.start&&(e=e.slice(1));let r=e[e.length-1];return r!==void 0&&r.tokens.description===""&&r.tokens.end.endsWith(t.end)&&(e=e.slice(0,-1)),e=e.slice(e.reduce(gj,0)),e.map(bj).join(` -`)}b(Xb,"preserveJoiner");function Qb({startLine:e=0,fence:t="```",spacing:r="compact",markers:n=zt,tokenizers:o=[Vb(),Hb(r),Wb(),Kb(r)]}={}){if(e<0||e%1>0)throw new Error("Invalid startLine");let a=$b({startLine:e,markers:n}),i=Ub({fence:t}),s=zb({tokenizers:o}),l=Ys(r);return function(u){let c=[];for(let d of Lb(u)){let y=a(d);if(y===null)continue;let f=i(y),h=f.slice(1).map(s);c.push({description:l(f[0],n),tags:h,source:y,problems:h.reduce((g,_)=>g.concat(_.problems),[])})}return c}}b(Qb,"getParser");function Zb(e){return e.start+e.delimiter+e.postDelimiter+e.tag+e.postTag+e.type+e.postType+e.name+e.postName+e.description+e.end+e.lineEnd}b(Zb,"join");function e0(){return e=>e.source.map(({tokens:t})=>Zb(t)).join(` -`)}b(e0,"getStringifier");var vj={line:0,start:0,delimiter:0,postDelimiter:0,tag:0,postTag:0,name:0,postName:0,type:0,postType:0,description:0,end:0,lineEnd:0},Cne=Object.keys(vj);function t0(e,t={}){return Qb(t)(e)}b(t0,"parse");var _ne=e0(),Xs=db(rj(),1);function r0(e){return e!=null&&e.includes("@")}b(r0,"containsJsDoc");function n0(e){let t=`/** -`+(e??"").split(` -`).map(n=>` * ${n}`).join(` -`)+` -*/`,r=t0(t,{spacing:"preserve"});if(!r||r.length===0)throw new Error("Cannot parse JSDoc tags.");return r[0]}b(n0,"parse");var xj={tags:["param","arg","argument","returns","ignore","deprecated"]},Ej=b((e,t=xj)=>{if(!r0(e))return{includesJsDoc:!1,ignore:!1};let r=n0(e),n=o0(r,t.tags);return n.ignore?{includesJsDoc:!0,ignore:!0}:{includesJsDoc:!0,ignore:!1,description:r.description.trim(),extractedTags:n}},"parseJsDoc");function o0(e,t){let r={params:null,deprecated:null,returns:null,ignore:!1};for(let n of e.tags)if(!(t!==void 0&&!t.includes(n.tag)))if(n.tag==="ignore"){r.ignore=!0;break}else switch(n.tag){case"param":case"arg":case"argument":{let o=i0(n);o!=null&&(r.params==null&&(r.params=[]),r.params.push(o));break}case"deprecated":{let o=s0(n);o!=null&&(r.deprecated=o);break}case"returns":{let o=l0(n);o!=null&&(r.returns=o);break}default:break}return r}b(o0,"extractJsDocTags");function a0(e){return e.replace(/[\.-]$/,"")}b(a0,"normaliseParamName");function i0(e){if(!e.name||e.name==="-")return null;let t=el(e.type);return{name:e.name,type:t,description:Zs(e.description),getPrettyName:b(()=>a0(e.name),"getPrettyName"),getTypeName:b(()=>t?tl(t):null,"getTypeName")}}b(i0,"extractParam");function s0(e){return e.name?Qs(e.name,e.description):null}b(s0,"extractDeprecated");function Qs(e,t){let r=e===""?t:`${e} ${t}`;return Zs(r)}b(Qs,"joinNameAndDescription");function Zs(e){let t=e.replace(/^- /g,"").trim();return t===""?null:t}b(Zs,"normaliseDescription");function l0(e){let t=el(e.type);return t?{type:t,description:Qs(e.name,e.description),getTypeName:b(()=>tl(t),"getTypeName")}:null}b(l0,"extractReturns");var Ht=(0,Xs.stringifyRules)(),wj=Ht.JsdocTypeObject;Ht.JsdocTypeAny=()=>"any";Ht.JsdocTypeObject=(e,t)=>`(${wj(e,t)})`;Ht.JsdocTypeOptional=(e,t)=>t(e.element);Ht.JsdocTypeNullable=(e,t)=>t(e.element);Ht.JsdocTypeNotNullable=(e,t)=>t(e.element);Ht.JsdocTypeUnion=(e,t)=>e.elements.map(t).join("|");function el(e){try{return(0,Xs.parse)(e,"typescript")}catch{return null}}b(el,"extractType");function tl(e){return(0,Xs.transform)(Ht,e)}b(tl,"extractTypeName");function rl(e){return e.length>90}b(rl,"isTooLongForTypeSummary");function u0(e){return e.length>50}b(u0,"isTooLongForDefaultValueSummary");function je(e,t){return e===t?{summary:e}:{summary:e,detail:t}}b(je,"createSummaryValue");var One=b(e=>e.replace(/\\r\\n/g,"\\n"),"normalizeNewlines");function nl({name:e,value:t,elements:r,raw:n}){return t??(r!=null?r.map(nl).join(" | "):n??e)}b(nl,"generateUnionElement");function c0({name:e,raw:t,elements:r}){return r!=null?je(r.map(nl).join(" | ")):t!=null?je(t.replace(/^\|\s*/,"")):je(e)}b(c0,"generateUnion");function p0({type:e,raw:t}){return t!=null?je(t):je(e)}b(p0,"generateFuncSignature");function d0({type:e,raw:t}){return t!=null?rl(t)?je(e,t):je(t):je(e)}b(d0,"generateObjectSignature");function f0(e){let{type:t}=e;return t==="object"?d0(e):p0(e)}b(f0,"generateSignature");function y0({name:e,raw:t}){return t!=null?rl(t)?je(e,t):je(t):je(e)}b(y0,"generateDefault");function h0(e){if(e==null)return null;switch(e.name){case"union":return c0(e);case"signature":return f0(e);default:return y0(e)}}b(h0,"createType");function m0(e,t){if(e!=null){let{value:r}=e;if(!da(r))return u0(r)?je(t?.name,r):je(r)}return null}b(m0,"createDefaultValue");var Sj=b((e,t)=>{let{flowType:r,description:n,required:o,defaultValue:a}=t;return{name:e,type:h0(r),required:o,description:n,defaultValue:m0(a??null,r??null)}},"createFlowPropDef");function g0({tsType:e,required:t}){if(e==null)return null;let r=e.name;return t||(r=r.replace(" | undefined","")),je(["Array","Record","signature"].includes(e.name)?e.raw:r)}b(g0,"createType");function b0({defaultValue:e}){if(e!=null){let{value:t}=e;if(!da(t))return je(t)}return null}b(b0,"createDefaultValue");var Aj=b((e,t)=>{let{description:r,required:n}=t;return{name:e,type:g0(t),required:n,description:r,defaultValue:b0(t)}},"createTsPropDef");function v0(e){return e!=null?je(e.name):null}b(v0,"createType");function x0(e){let{computed:t,func:r}=e;return typeof t>"u"&&typeof r>"u"}b(x0,"isReactDocgenTypescript");function E0(e){return e?e.name==="string"?!0:e.name==="enum"?Array.isArray(e.value)&&e.value.every(({value:t})=>typeof t=="string"&&t[0]==='"'&&t[t.length-1]==='"'):!1:!1}b(E0,"isStringValued");function w0(e,t){if(e!=null){let{value:r}=e;if(!da(r))return x0(e)&&E0(t)?je(JSON.stringify(r)):je(r)}return null}b(w0,"createDefaultValue");function ol(e,t,r){let{description:n,required:o,defaultValue:a}=r;return{name:e,type:v0(t),required:o,description:n,defaultValue:w0(a,t)}}b(ol,"createBasicPropDef");function Wn(e,t){if(t?.includesJsDoc){let{description:r,extractedTags:n}=t;r!=null&&(e.description=t.description);let o={...n,params:n?.params?.map(a=>({name:a.getPrettyName(),description:a.description}))};Object.values(o).filter(Boolean).length>0&&(e.jsDocTags=o)}return e}b(Wn,"applyJsDocResult");var Tj=b((e,t,r)=>{let n=ol(e,t.type,t);return n.sbType=Ws(t),Wn(n,r)},"javaScriptFactory"),Cj=b((e,t,r)=>{let n=Aj(e,t);return n.sbType=Ws(t),Wn(n,r)},"tsFactory"),_j=b((e,t,r)=>{let n=Sj(e,t);return n.sbType=Ws(t),Wn(n,r)},"flowFactory"),Oj=b((e,t,r)=>{let n=ol(e,{name:"unknown"},t);return Wn(n,r)},"unknownFactory"),S0=b(e=>{switch(e){case"JavaScript":return Tj;case"TypeScript":return Cj;case"Flow":return _j;default:return Oj}},"getPropDefFactory"),A0=b(e=>e.type!=null?"JavaScript":e.flowType!=null?"Flow":e.tsType!=null?"TypeScript":"Unknown","getTypeSystem"),Ij=b(e=>{let t=A0(e[0]),r=S0(t);return e.map(n=>{let o=n;return n.type?.elements&&(o={...n,type:{...n.type,value:n.type.elements}}),al(o.name,o,t,r)})},"extractComponentSectionArray"),Pj=b(e=>{let t=Object.keys(e),r=A0(e[t[0]]),n=S0(r);return t.map(o=>{let a=e[o];return a!=null?al(o,a,r,n):null}).filter(Boolean)},"extractComponentSectionObject"),Ine=b((e,t)=>{let r=Fb(e,t);return Db(r)?Array.isArray(r)?Ij(r):Pj(r):[]},"extractComponentProps");function al(e,t,r,n){let o=Ej(t.description);return o.includesJsDoc&&o.ignore?null:{propDef:n(e,t,o),jsDocTags:o.extractedTags,docgenInfo:t,typeSystem:r}}b(al,"extractProp");function kj(e){return e!=null?jb(e):""}b(kj,"extractComponentDescription");var kne=b(e=>{let{component:t,argTypes:r,parameters:{docs:n={}}}=e,{extractArgTypes:o}=n,a=o&&t?o(t):{};return a?Ot(a,r):r},"enhanceArgTypes"),T0="storybook/docs",Rne=`${T0}/panel`;var Dne=`${T0}/snippet-rendered`,Rj=(e=>(e.AUTO="auto",e.CODE="code",e.DYNAMIC="dynamic",e))(Rj||{}),Dj=/(addons\/|addon-|addon-essentials\/)(docs|controls)/,Fne=b(e=>e.presetsList?.some(t=>Dj.test(t.name)),"hasDocsOrControls");S();A();T();S();A();T();var Wne=__STORYBOOK_CHANNELS__,{Channel:Kne,PostMessageTransport:Yne,WebsocketTransport:Xne,createBrowserChannel:Qne}=__STORYBOOK_CHANNELS__;var qv=nr({"../../node_modules/memoizerific/memoizerific.js"(e,t){(function(r){if(typeof e=="object"&&typeof t<"u")t.exports=r();else if(typeof define=="function"&&define.amd)define([],r);else{var n;typeof window<"u"||typeof window<"u"?n=window:typeof self<"u"?n=self:n=this,n.memoizerific=r()}})(function(){return function r(n,o,a){function i(u,c){if(!o[u]){if(!n[u]){var d=typeof mn=="function"&&mn;if(!c&&d)return d(u,!0);if(s)return s(u,!0);var y=new Error("Cannot find module '"+u+"'");throw y.code="MODULE_NOT_FOUND",y}var f=o[u]={exports:{}};n[u][0].call(f.exports,function(h){var g=n[u][1][h];return i(g||h)},f,f.exports,r,n,o,a)}return o[u].exports}for(var s=typeof mn=="function"&&mn,l=0;l=0)return this.lastItem=this.list[s],this.list[s].val},a.prototype.set=function(i,s){var l;return this.lastItem&&this.isEqual(this.lastItem.key,i)?(this.lastItem.val=s,this):(l=this.indexOf(i),l>=0?(this.lastItem=this.list[l],this.list[l].val=s,this):(this.lastItem={key:i,val:s},this.list.push(this.lastItem),this.size++,this))},a.prototype.delete=function(i){var s;if(this.lastItem&&this.isEqual(this.lastItem.key,i)&&(this.lastItem=void 0),s=this.indexOf(i),s>=0)return this.size--,this.list.splice(s,1)[0]},a.prototype.has=function(i){var s;return this.lastItem&&this.isEqual(this.lastItem.key,i)?!0:(s=this.indexOf(i),s>=0?(this.lastItem=this.list[s],!0):!1)},a.prototype.forEach=function(i,s){var l;for(l=0;l0&&(x[v]={cacheItem:h,arg:arguments[v]},O?i(d,x):d.push(x),d.length>u&&s(d.shift())),f.wasMemoized=O,f.numArgs=v+1,_};return f.limit=u,f.wasMemoized=!1,f.cache=c,f.lru=d,f}};function i(u,c){var d=u.length,y=c.length,f,h,g;for(h=0;h=0&&(d=u[f],y=d.cacheItem.get(d.arg),!y||!y.size);f--)d.cacheItem.delete(d.arg)}function l(u,c){return u===c||u!==u&&c!==c}},{"map-or-similar":1}]},{},[3])(3)})}}),xt=(()=>{let e;return typeof window<"u"?e=window:typeof globalThis<"u"?e=globalThis:typeof window<"u"?e=window:typeof self<"u"?e=self:e={},e})();function en(){return en=Object.assign?Object.assign.bind():function(e){for(var t=1;t1?o-1:0),i=1;i=0&&o<1?(s=a,l=i):o>=1&&o<2?(s=i,l=a):o>=2&&o<3?(l=a,u=i):o>=3&&o<4?(l=i,u=a):o>=4&&o<5?(s=i,u=a):o>=5&&o<6&&(s=a,u=i);var c=r-a/2,d=s+c,y=l+c,f=u+c;return n(d,y,f)}var iv={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function HN(e){if(typeof e!="string")return e;var t=e.toLowerCase();return iv[t]?"#"+iv[t]:e}var GN=/^#[a-fA-F0-9]{6}$/,WN=/^#[a-fA-F0-9]{8}$/,KN=/^#[a-fA-F0-9]{3}$/,YN=/^#[a-fA-F0-9]{4}$/,ml=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,XN=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,QN=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,ZN=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function Aa(e){if(typeof e!="string")throw new Et(3);var t=HN(e);if(t.match(GN))return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16)};if(t.match(WN)){var r=parseFloat((parseInt(""+t[7]+t[8],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[2],16),green:parseInt(""+t[3]+t[4],16),blue:parseInt(""+t[5]+t[6],16),alpha:r}}if(t.match(KN))return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16)};if(t.match(YN)){var n=parseFloat((parseInt(""+t[4]+t[4],16)/255).toFixed(2));return{red:parseInt(""+t[1]+t[1],16),green:parseInt(""+t[2]+t[2],16),blue:parseInt(""+t[3]+t[3],16),alpha:n}}var o=ml.exec(t);if(o)return{red:parseInt(""+o[1],10),green:parseInt(""+o[2],10),blue:parseInt(""+o[3],10)};var a=XN.exec(t.substring(0,50));if(a)return{red:parseInt(""+a[1],10),green:parseInt(""+a[2],10),blue:parseInt(""+a[3],10),alpha:parseFloat(""+a[4])>1?parseFloat(""+a[4])/100:parseFloat(""+a[4])};var i=QN.exec(t);if(i){var s=parseInt(""+i[1],10),l=parseInt(""+i[2],10)/100,u=parseInt(""+i[3],10)/100,c="rgb("+eo(s,l,u)+")",d=ml.exec(c);if(!d)throw new Et(4,t,c);return{red:parseInt(""+d[1],10),green:parseInt(""+d[2],10),blue:parseInt(""+d[3],10)}}var y=ZN.exec(t.substring(0,50));if(y){var f=parseInt(""+y[1],10),h=parseInt(""+y[2],10)/100,g=parseInt(""+y[3],10)/100,_="rgb("+eo(f,h,g)+")",v=ml.exec(_);if(!v)throw new Et(4,t,_);return{red:parseInt(""+v[1],10),green:parseInt(""+v[2],10),blue:parseInt(""+v[3],10),alpha:parseFloat(""+y[4])>1?parseFloat(""+y[4])/100:parseFloat(""+y[4])}}throw new Et(5)}function e3(e){var t=e.red/255,r=e.green/255,n=e.blue/255,o=Math.max(t,r,n),a=Math.min(t,r,n),i=(o+a)/2;if(o===a)return e.alpha!==void 0?{hue:0,saturation:0,lightness:i,alpha:e.alpha}:{hue:0,saturation:0,lightness:i};var s,l=o-a,u=i>.5?l/(2-o-a):l/(o+a);switch(o){case t:s=(r-n)/l+(r=1?Sa(e,t,r):"rgba("+eo(e,t,r)+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?Sa(e.hue,e.saturation,e.lightness):"rgba("+eo(e.hue,e.saturation,e.lightness)+","+e.alpha+")";throw new Et(2)}function Pl(e,t,r){if(typeof e=="number"&&typeof t=="number"&&typeof r=="number")return Il("#"+mr(e)+mr(t)+mr(r));if(typeof e=="object"&&t===void 0&&r===void 0)return Il("#"+mr(e.red)+mr(e.green)+mr(e.blue));throw new Et(6)}function Dt(e,t,r,n){if(typeof e=="string"&&typeof t=="number"){var o=Aa(e);return"rgba("+o.red+","+o.green+","+o.blue+","+t+")"}else{if(typeof e=="number"&&typeof t=="number"&&typeof r=="number"&&typeof n=="number")return n>=1?Pl(e,t,r):"rgba("+e+","+t+","+r+","+n+")";if(typeof e=="object"&&t===void 0&&r===void 0&&n===void 0)return e.alpha>=1?Pl(e.red,e.green,e.blue):"rgba("+e.red+","+e.green+","+e.blue+","+e.alpha+")"}throw new Et(7)}var a3=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},i3=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&typeof e.alpha=="number"},s3=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},l3=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&typeof e.alpha=="number"};function Jv(e){if(typeof e!="object")throw new Et(8);if(i3(e))return Dt(e);if(a3(e))return Pl(e);if(l3(e))return o3(e);if(s3(e))return n3(e);throw new Et(8)}function $v(e,t,r){return function(){var n=r.concat(Array.prototype.slice.call(arguments));return n.length>=t?e.apply(this,n):$v(e,t,n)}}function Ta(e){return $v(e,e.length,[])}function Ca(e,t,r){return Math.max(e,Math.min(t,r))}function u3(e,t){if(t==="transparent")return t;var r=Uv(t);return Jv(en({},r,{lightness:Ca(0,1,r.lightness-parseFloat(e))}))}var c3=Ta(u3),vt=c3;function p3(e,t){if(t==="transparent")return t;var r=Uv(t);return Jv(en({},r,{lightness:Ca(0,1,r.lightness+parseFloat(e))}))}var d3=Ta(p3),gr=d3;function f3(e,t){if(t==="transparent")return t;var r=Aa(t),n=typeof r.alpha=="number"?r.alpha:1,o=en({},r,{alpha:Ca(0,1,(n*100+parseFloat(e)*100)/100)});return Dt(o)}var y3=Ta(f3),ba=y3;function h3(e,t){if(t==="transparent")return t;var r=Aa(t),n=typeof r.alpha=="number"?r.alpha:1,o=en({},r,{alpha:Ca(0,1,+(n*100-parseFloat(e)*100).toFixed(2)/100)});return Dt(o)}var m3=Ta(h3),ve=m3,g3=Object.create,zv=Object.defineProperty,b3=Object.getOwnPropertyDescriptor,v3=Object.getOwnPropertyNames,x3=Object.getPrototypeOf,E3=Object.prototype.hasOwnProperty,w3=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),S3=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of v3(t))!E3.call(e,o)&&o!==r&&zv(e,o,{get:()=>t[o],enumerable:!(n=b3(t,o))||n.enumerable});return e},A3=(e,t,r)=>(r=e!=null?g3(x3(e)):{},S3(t||!e||!e.__esModule?zv(r,"default",{value:e,enumerable:!0}):r,e)),T3=w3(e=>{Object.defineProperty(e,"__esModule",{value:!0}),e.isEqual=function(){var t=Object.prototype.toString,r=Object.getPrototypeOf,n=Object.getOwnPropertySymbols?function(o){return Object.keys(o).concat(Object.getOwnPropertySymbols(o))}:Object.keys;return function(o,a){return function i(s,l,u){var c,d,y,f=t.call(s),h=t.call(l);if(s===l)return!0;if(s==null||l==null)return!1;if(u.indexOf(s)>-1&&u.indexOf(l)>-1)return!0;if(u.push(s,l),f!=h||(c=n(s),d=n(l),c.length!=d.length||c.some(function(g){return!i(s[g],l[g],u)})))return!1;switch(f.slice(8,-1)){case"Symbol":return s.valueOf()==l.valueOf();case"Date":case"Number":return+s==+l||+s!=+s&&+l!=+l;case"RegExp":case"Function":case"String":case"Boolean":return""+s==""+l;case"Set":case"Map":c=s.entries(),d=l.entries();do if(!i((y=c.next()).value,d.next().value,u))return!1;while(!y.done);return!0;case"ArrayBuffer":s=new Uint8Array(s),l=new Uint8Array(l);case"DataView":s=new Uint8Array(s.buffer),l=new Uint8Array(l.buffer);case"Float32Array":case"Float64Array":case"Int8Array":case"Int16Array":case"Int32Array":case"Uint8Array":case"Uint16Array":case"Uint32Array":case"Uint8ClampedArray":case"Arguments":case"Array":if(s.length!=l.length)return!1;for(y=0;ye.map(t=>typeof t<"u").filter(Boolean).length,C3=(e,t)=>{let{exists:r,eq:n,neq:o,truthy:a}=e;if(Vv([r,n,o,a])>1)throw new Error(`Invalid conditional test ${JSON.stringify({exists:r,eq:n,neq:o})}`);if(typeof n<"u")return(0,sv.isEqual)(t,n);if(typeof o<"u")return!(0,sv.isEqual)(t,o);if(typeof r<"u"){let i=typeof t<"u";return r?i:!i}return typeof a>"u"||a?!!t:!t},_3=(e,t,r)=>{if(!e.if)return!0;let{arg:n,global:o}=e.if;if(Vv([n,o])!==1)throw new Error(`Invalid conditional value ${JSON.stringify({arg:n,global:o})}`);let a=n?t[n]:r[o];return C3(e.if,a)};function br(){return br=Object.assign?Object.assign.bind():function(e){for(var t=1;t(e[t.toLowerCase()]=t,e),{for:"htmlFor"}),pv={amp:"&",apos:"'",gt:">",lt:"<",nbsp:"\xA0",quot:"\u201C"},I3=["style","script"],P3=/([-A-Z0-9_:]+)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|(?:\{((?:\\.|{[^}]*?}|[^}])*)\})))?/gi,k3=/mailto:/i,R3=/\n{2,}$/,Hv=/^(\s*>[\s\S]*?)(?=\n{2,})/,D3=/^ *> ?/gm,F3=/^ {2,}\n/,j3=/^(?:( *[-*_])){3,} *(?:\n *)+\n/,Gv=/^\s*(`{3,}|~{3,}) *(\S+)?([^\n]*?)?\n([\s\S]+?)\s*\1 *(?:\n *)*\n?/,Wv=/^(?: {4}[^\n]+\n*)+(?:\n *)+\n?/,N3=/^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,B3=/^(?:\n *)*\n/,L3=/\r\n?/g,q3=/^\[\^([^\]]+)](:(.*)((\n+ {4,}.*)|(\n(?!\[\^).+))*)/,M3=/^\[\^([^\]]+)]/,U3=/\f/g,J3=/^---[ \t]*\n(.|\n)*\n---[ \t]*\n/,$3=/^\s*?\[(x|\s)\]/,Kv=/^ *(#{1,6}) *([^\n]+?)(?: +#*)?(?:\n *)*(?:\n|$)/,Yv=/^ *(#{1,6}) +([^\n]+?)(?: +#*)?(?:\n *)*(?:\n|$)/,Xv=/^([^\n]+)\n *(=|-){3,} *(?:\n *)+\n/,kl=/^ *(?!<[a-z][^ >/]* ?\/>)<([a-z][^ >/]*) ?([^>]*)>\n?(\s*(?:<\1[^>]*?>[\s\S]*?<\/\1>|(?!<\1\b)[\s\S])*?)<\/\1>(?!<\/\1>)\n*/i,z3=/&([a-z0-9]+|#[0-9]{1,6}|#x[0-9a-fA-F]{1,6});/gi,Qv=/^)/,V3=/^(data|aria|x)-[a-z_][a-z\d_.-]*$/,Rl=/^ *<([a-z][a-z0-9:]*)(?:\s+((?:<.*?>|[^>])*))?\/?>(?!<\/\1>)(\s*\n)?/i,H3=/^\{.*\}$/,G3=/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,W3=/^<([^ >]+@[^ >]+)>/,K3=/^<([^ >]+:\/[^ >]+)>/,Y3=/-([a-z])?/gi,Zv=/^(.*\|?.*)\n *(\|? *[-:]+ *\|[-| :]*)\n((?:.*\|.*\n)*)\n?/,X3=/^\[([^\]]*)\]:\s+]+)>?\s*("([^"]*)")?/,Q3=/^!\[([^\]]*)\] ?\[([^\]]*)\]/,Z3=/^\[([^\]]*)\] ?\[([^\]]*)\]/,eB=/(\[|\])/g,tB=/(\n|^[-*]\s|^#|^ {2,}|^-{2,}|^>\s)/,rB=/\t/g,nB=/^ *\| */,oB=/(^ *\||\| *$)/g,aB=/ *$/,iB=/^ *:-+: *$/,sB=/^ *:-+ *$/,lB=/^ *-+: *$/,_a="((?:\\[.*?\\][([].*?[)\\]]|<.*?>(?:.*?<.*?>)?|`.*?`|~~.*?~~|==.*?==|.|\\n)*?)",uB=new RegExp(`^([*_])\\1${_a}\\1\\1(?!\\1)`),cB=new RegExp(`^([*_])${_a}\\1(?!\\1|\\w)`),pB=new RegExp(`^==${_a}==`),dB=new RegExp(`^~~${_a}~~`),fB=/^\\([^0-9A-Za-z\s])/,yB=/^[\s\S]+?(?=[^0-9A-Z\s\u00c0-\uffff&#;.()'"]|\d+\.|\n\n| {2,}\n|\w+:\S|$)/i,hB=/^\n+/,mB=/^([ \t]*)/,gB=/\\([^\\])/g,dv=/ *\n+$/,bB=/(?:^|\n)( *)$/,Nl="(?:\\d+\\.)",Bl="(?:[*+-])";function e2(e){return"( *)("+(e===1?Nl:Bl)+") +"}var t2=e2(1),r2=e2(2);function n2(e){return new RegExp("^"+(e===1?t2:r2))}var vB=n2(1),xB=n2(2);function o2(e){return new RegExp("^"+(e===1?t2:r2)+"[^\\n]*(?:\\n(?!\\1"+(e===1?Nl:Bl)+" )[^\\n]*)*(\\n|$)","gm")}var a2=o2(1),i2=o2(2);function s2(e){let t=e===1?Nl:Bl;return new RegExp("^( *)("+t+") [\\s\\S]+?(?:\\n{2,}(?! )(?!\\1"+t+" (?!"+t+" ))\\n*|\\s*\\n*$)")}var l2=s2(1),u2=s2(2);function fv(e,t){let r=t===1,n=r?l2:u2,o=r?a2:i2,a=r?vB:xB;return{match(i,s,l){let u=bB.exec(l);return u&&(s.list||!s.inline&&!s.simple)?n.exec(i=u[1]+i):null},order:1,parse(i,s,l){let u=r?+i[2]:void 0,c=i[0].replace(R3,` -`).match(o),d=!1;return{items:c.map(function(y,f){let h=a.exec(y)[0].length,g=new RegExp("^ {1,"+h+"}","gm"),_=y.replace(g,"").replace(a,""),v=f===c.length-1,x=_.indexOf(` - -`)!==-1||v&&d;d=x;let O=l.inline,C=l.list,I;l.list=!0,x?(l.inline=!1,I=_.replace(dv,` - -`)):(l.inline=!0,I=_.replace(dv,""));let P=s(I,l);return l.inline=O,l.list=C,P}),ordered:r,start:u}},render:(i,s,l)=>e(i.ordered?"ol":"ul",{key:l.key,start:i.type==="20"?i.start:void 0},i.items.map(function(u,c){return e("li",{key:c},s(u,l))}))}}var EB=new RegExp(`^\\[((?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*)\\]\\(\\s*?(?:\\s+['"]([\\s\\S]*?)['"])?\\s*\\)`),wB=/^!\[(.*?)\]\( *((?:\([^)]*\)|[^() ])*) *"?([^)"]*)?"?\)/,c2=[Hv,Gv,Wv,Kv,Xv,Yv,Qv,Zv,a2,l2,i2,u2],SB=[...c2,/^[^\n]+(?: \n|\n{2,})/,kl,Rl];function AB(e){return e.replace(/[ÀÁÂÃÄÅàáâãäåæÆ]/g,"a").replace(/[çÇ]/g,"c").replace(/[ðÐ]/g,"d").replace(/[ÈÉÊËéèêë]/g,"e").replace(/[ÏïÎîÍíÌì]/g,"i").replace(/[Ññ]/g,"n").replace(/[øØœŒÕõÔôÓóÒò]/g,"o").replace(/[ÜüÛûÚúÙù]/g,"u").replace(/[ŸÿÝý]/g,"y").replace(/[^a-z0-9- ]/gi,"").replace(/ /gi,"-").toLowerCase()}function TB(e){return lB.test(e)?"right":iB.test(e)?"center":sB.test(e)?"left":null}function yv(e,t,r){let n=r.inTable;r.inTable=!0;let o=t(e.trim(),r);r.inTable=n;let a=[[]];return o.forEach(function(i,s){i.type==="26"?s!==0&&s!==o.length-1&&a.push([]):(i.type!=="27"||o[s+1]!=null&&o[s+1].type!=="26"||(i.text=i.text.replace(aB,"")),a[a.length-1].push(i))}),a}function CB(e,t,r){r.inline=!0;let n=yv(e[1],t,r),o=e[2].replace(oB,"").split("|").map(TB),a=function(i,s,l){return i.trim().split(` -`).map(function(u){return yv(u,s,l)})}(e[3],t,r);return r.inline=!1,{align:o,cells:a,header:n,type:"25"}}function hv(e,t){return e.align[t]==null?{}:{textAlign:e.align[t]}}function Gt(e){return function(t,r){return r.inline?e.exec(t):null}}function Wt(e){return function(t,r){return r.inline||r.simple?e.exec(t):null}}function Rt(e){return function(t,r){return r.inline||r.simple?null:e.exec(t)}}function Xn(e){return function(t){return e.exec(t)}}function _B(e,t,r){if(t.inline||t.simple||r&&!r.endsWith(` -`))return null;let n="";e.split(` -`).every(a=>!c2.some(i=>i.test(a))&&(n+=a+` -`,a.trim()));let o=n.trimEnd();return o==""?null:[n,o]}function Qr(e){try{if(decodeURIComponent(e).replace(/[^A-Za-z0-9/:]/g,"").match(/^\s*(javascript|vbscript|data(?!:image)):/i))return}catch{return null}return e}function mv(e){return e.replace(gB,"$1")}function wa(e,t,r){let n=r.inline||!1,o=r.simple||!1;r.inline=!0,r.simple=!0;let a=e(t,r);return r.inline=n,r.simple=o,a}function OB(e,t,r){let n=r.inline||!1,o=r.simple||!1;r.inline=!1,r.simple=!0;let a=e(t,r);return r.inline=n,r.simple=o,a}function IB(e,t,r){return r.inline=!1,e(t,r)}var bl=(e,t,r)=>({children:wa(t,e[1],r)});function vl(){return{}}function xl(){return null}function PB(...e){return e.filter(Boolean).join(" ")}function El(e,t,r){let n=e,o=t.split(".");for(;o.length&&(n=n[o[0]],n!==void 0);)o.shift();return n||r}function kB(e="",t={}){t.overrides=t.overrides||{},t.slugify=t.slugify||AB,t.namedCodesToUnicode=t.namedCodesToUnicode?br({},pv,t.namedCodesToUnicode):pv;let r=t.createElement||Fa;function n(f,h,...g){let _=El(t.overrides,`${f}.props`,{});return r(function(v,x){let O=El(x,v);return O?typeof O=="function"||typeof O=="object"&&"render"in O?O:El(x,`${v}.component`,v):v}(f,t.overrides),br({},h,_,{className:PB(h?.className,_.className)||void 0}),...g)}function o(f){f=f.replace(J3,"");let h=!1;t.forceInline?h=!0:t.forceBlock||(h=tB.test(f)===!1);let g=c(u(h?f:`${f.trimEnd().replace(hB,"")} - -`,{inline:h}));for(;typeof g[g.length-1]=="string"&&!g[g.length-1].trim();)g.pop();if(t.wrapper===null)return g;let _=t.wrapper||(h?"span":"div"),v;if(g.length>1||t.forceWrapper)v=g;else{if(g.length===1)return v=g[0],typeof v=="string"?n("span",{key:"outer"},v):v;v=null}return Fa(_,{key:"outer"},v)}function a(f){let h=f.match(P3);return h?h.reduce(function(g,_,v){let x=_.indexOf("=");if(x!==-1){let O=function(F){return F.indexOf("-")!==-1&&F.match(V3)===null&&(F=F.replace(Y3,function(D,U){return U.toUpperCase()})),F}(_.slice(0,x)).trim(),C=function(F){let D=F[0];return(D==='"'||D==="'")&&F.length>=2&&F[F.length-1]===D?F.slice(1,-1):F}(_.slice(x+1).trim()),I=cv[O]||O,P=g[I]=function(F,D){return F==="style"?D.split(/;\s?/).reduce(function(U,G){let X=G.slice(0,G.indexOf(":"));return U[X.trim().replace(/(-[a-z])/g,Q=>Q[1].toUpperCase())]=G.slice(X.length+1).trim(),U},{}):F==="href"||F==="src"?Qr(D):(D.match(H3)&&(D=D.slice(1,D.length-1)),D==="true"||D!=="false"&&D)}(O,C);typeof P=="string"&&(kl.test(P)||Rl.test(P))&&(g[I]=Oe(o(P.trim()),{key:v}))}else _!=="style"&&(g[cv[_]||_]=!0);return g},{}):null}let i=[],s={},l={0:{match:Rt(Hv),order:1,parse:(f,h,g)=>({children:h(f[0].replace(D3,""),g)}),render:(f,h,g)=>n("blockquote",{key:g.key},h(f.children,g))},1:{match:Xn(F3),order:1,parse:vl,render:(f,h,g)=>n("br",{key:g.key})},2:{match:Rt(j3),order:1,parse:vl,render:(f,h,g)=>n("hr",{key:g.key})},3:{match:Rt(Wv),order:0,parse:f=>({lang:void 0,text:f[0].replace(/^ {4}/gm,"").replace(/\n+$/,"")}),render:(f,h,g)=>n("pre",{key:g.key},n("code",br({},f.attrs,{className:f.lang?`lang-${f.lang}`:""}),f.text))},4:{match:Rt(Gv),order:0,parse:f=>({attrs:a(f[3]||""),lang:f[2]||void 0,text:f[4],type:"3"})},5:{match:Wt(N3),order:3,parse:f=>({text:f[2]}),render:(f,h,g)=>n("code",{key:g.key},f.text)},6:{match:Rt(q3),order:0,parse:f=>(i.push({footnote:f[2],identifier:f[1]}),{}),render:xl},7:{match:Gt(M3),order:1,parse:f=>({target:`#${t.slugify(f[1])}`,text:f[1]}),render:(f,h,g)=>n("a",{key:g.key,href:Qr(f.target)},n("sup",{key:g.key},f.text))},8:{match:Gt($3),order:1,parse:f=>({completed:f[1].toLowerCase()==="x"}),render:(f,h,g)=>n("input",{checked:f.completed,key:g.key,readOnly:!0,type:"checkbox"})},9:{match:Rt(t.enforceAtxHeadings?Yv:Kv),order:1,parse:(f,h,g)=>({children:wa(h,f[2],g),id:t.slugify(f[2]),level:f[1].length}),render:(f,h,g)=>n(`h${f.level}`,{id:f.id,key:g.key},h(f.children,g))},10:{match:Rt(Xv),order:0,parse:(f,h,g)=>({children:wa(h,f[1],g),level:f[2]==="="?1:2,type:"9"})},11:{match:Xn(kl),order:1,parse(f,h,g){let[,_]=f[3].match(mB),v=new RegExp(`^${_}`,"gm"),x=f[3].replace(v,""),O=(C=x,SB.some(D=>D.test(C))?IB:wa);var C;let I=f[1].toLowerCase(),P=I3.indexOf(I)!==-1,F={attrs:a(f[2]),noInnerParse:P,tag:(P?I:f[1]).trim()};return g.inAnchor=g.inAnchor||I==="a",P?F.text=f[3]:F.children=O(h,x,g),g.inAnchor=!1,F},render:(f,h,g)=>n(f.tag,br({key:g.key},f.attrs),f.text||h(f.children,g))},13:{match:Xn(Rl),order:1,parse:f=>({attrs:a(f[2]||""),tag:f[1].trim()}),render:(f,h,g)=>n(f.tag,br({},f.attrs,{key:g.key}))},12:{match:Xn(Qv),order:1,parse:()=>({}),render:xl},14:{match:Wt(wB),order:1,parse:f=>({alt:f[1],target:mv(f[2]),title:f[3]}),render:(f,h,g)=>n("img",{key:g.key,alt:f.alt||void 0,title:f.title||void 0,src:Qr(f.target)})},15:{match:Gt(EB),order:3,parse:(f,h,g)=>({children:OB(h,f[1],g),target:mv(f[2]),title:f[3]}),render:(f,h,g)=>n("a",{key:g.key,href:Qr(f.target),title:f.title},h(f.children,g))},16:{match:Gt(K3),order:0,parse:f=>({children:[{text:f[1],type:"27"}],target:f[1],type:"15"})},17:{match:(f,h)=>h.inAnchor?null:Gt(G3)(f,h),order:0,parse:f=>({children:[{text:f[1],type:"27"}],target:f[1],title:void 0,type:"15"})},18:{match:Gt(W3),order:0,parse(f){let h=f[1],g=f[1];return k3.test(g)||(g="mailto:"+g),{children:[{text:h.replace("mailto:",""),type:"27"}],target:g,type:"15"}}},20:fv(n,1),33:fv(n,2),19:{match:Rt(B3),order:3,parse:vl,render:()=>` -`},21:{match:_B,order:3,parse:bl,render:(f,h,g)=>n("p",{key:g.key},h(f.children,g))},22:{match:Gt(X3),order:0,parse:f=>(s[f[1]]={target:f[2],title:f[4]},{}),render:xl},23:{match:Wt(Q3),order:0,parse:f=>({alt:f[1]||void 0,ref:f[2]}),render:(f,h,g)=>s[f.ref]?n("img",{key:g.key,alt:f.alt,src:Qr(s[f.ref].target),title:s[f.ref].title}):null},24:{match:Gt(Z3),order:0,parse:(f,h,g)=>({children:h(f[1],g),fallbackChildren:h(f[0].replace(eB,"\\$1"),g),ref:f[2]}),render:(f,h,g)=>s[f.ref]?n("a",{key:g.key,href:Qr(s[f.ref].target),title:s[f.ref].title},h(f.children,g)):n("span",{key:g.key},h(f.fallbackChildren,g))},25:{match:Rt(Zv),order:1,parse:CB,render:(f,h,g)=>n("table",{key:g.key},n("thead",null,n("tr",null,f.header.map(function(_,v){return n("th",{key:v,style:hv(f,v)},h(_,g))}))),n("tbody",null,f.cells.map(function(_,v){return n("tr",{key:v},_.map(function(x,O){return n("td",{key:O,style:hv(f,O)},h(x,g))}))})))},26:{match:function(f,h){return h.inTable?(h.inline=!0,nB.exec(f)):null},order:1,parse:function(){return{type:"26"}},render:()=>" | "},27:{match:Xn(yB),order:4,parse:f=>({text:f[0].replace(z3,(h,g)=>t.namedCodesToUnicode[g]?t.namedCodesToUnicode[g]:h)}),render:f=>f.text},28:{match:Wt(uB),order:2,parse:(f,h,g)=>({children:h(f[2],g)}),render:(f,h,g)=>n("strong",{key:g.key},h(f.children,g))},29:{match:Wt(cB),order:3,parse:(f,h,g)=>({children:h(f[2],g)}),render:(f,h,g)=>n("em",{key:g.key},h(f.children,g))},30:{match:Wt(fB),order:1,parse:f=>({text:f[1],type:"27"})},31:{match:Wt(pB),order:3,parse:bl,render:(f,h,g)=>n("mark",{key:g.key},h(f.children,g))},32:{match:Wt(dB),order:3,parse:bl,render:(f,h,g)=>n("del",{key:g.key},h(f.children,g))}};t.disableParsingRawHTML===!0&&(delete l[11],delete l[13]);let u=function(f){let h=Object.keys(f);function g(_,v){let x=[],O="";for(;_;){let C=0;for(;Cx(g,_,v),g,_,v):x(g,_,v)}}(l,t.renderRule),function f(h,g={}){if(Array.isArray(h)){let _=g.key,v=[],x=!1;for(let O=0;O{let{children:t="",options:r}=e,n=function(o,a){if(o==null)return{};var i,s,l={},u=Object.keys(o);for(s=0;s=0||(l[i]=o[i]);return l}(e,O3);return Oe(kB(t,r),n)},DB=gn(qv(),1),FB=Object.create,p2=Object.defineProperty,jB=Object.getOwnPropertyDescriptor,d2=Object.getOwnPropertyNames,NB=Object.getPrototypeOf,BB=Object.prototype.hasOwnProperty,ct=(e,t)=>function(){return t||(0,e[d2(e)[0]])((t={exports:{}}).exports,t),t.exports},LB=(e,t,r,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of d2(t))!BB.call(e,o)&&o!==r&&p2(e,o,{get:()=>t[o],enumerable:!(n=jB(t,o))||n.enumerable});return e},Ll=(e,t,r)=>(r=e!=null?FB(NB(e)):{},LB(t||!e||!e.__esModule?p2(r,"default",{value:e,enumerable:!0}):r,e)),qB=gn(qv(),1),f2=ct({"node_modules/has-symbols/shams.js"(e,t){t.exports=function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var r={},n=Symbol("test"),o=Object(n);if(typeof n=="string"||Object.prototype.toString.call(n)!=="[object Symbol]"||Object.prototype.toString.call(o)!=="[object Symbol]")return!1;var a=42;r[n]=a;for(n in r)return!1;if(typeof Object.keys=="function"&&Object.keys(r).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(r).length!==0)return!1;var i=Object.getOwnPropertySymbols(r);if(i.length!==1||i[0]!==n||!Object.prototype.propertyIsEnumerable.call(r,n))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var s=Object.getOwnPropertyDescriptor(r,n);if(s.value!==a||s.enumerable!==!0)return!1}return!0}}}),y2=ct({"node_modules/has-symbols/index.js"(e,t){var r=typeof Symbol<"u"&&Symbol,n=f2();t.exports=function(){return typeof r!="function"||typeof Symbol!="function"||typeof r("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:n()}}}),MB=ct({"node_modules/function-bind/implementation.js"(e,t){var r="Function.prototype.bind called on incompatible ",n=Array.prototype.slice,o=Object.prototype.toString,a="[object Function]";t.exports=function(i){var s=this;if(typeof s!="function"||o.call(s)!==a)throw new TypeError(r+s);for(var l=n.call(arguments,1),u,c=function(){if(this instanceof u){var g=s.apply(this,l.concat(n.call(arguments)));return Object(g)===g?g:this}else return s.apply(i,l.concat(n.call(arguments)))},d=Math.max(0,s.length-l.length),y=[],f=0;f"u"?r:d(Uint8Array),h={"%AggregateError%":typeof AggregateError>"u"?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?r:ArrayBuffer,"%ArrayIteratorPrototype%":c?d([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":y,"%AsyncGenerator%":y,"%AsyncGeneratorFunction%":y,"%AsyncIteratorPrototype%":y,"%Atomics%":typeof Atomics>"u"?r:Atomics,"%BigInt%":typeof BigInt>"u"?r:BigInt,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":typeof Float32Array>"u"?r:Float32Array,"%Float64Array%":typeof Float64Array>"u"?r:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?r:FinalizationRegistry,"%Function%":o,"%GeneratorFunction%":y,"%Int8Array%":typeof Int8Array>"u"?r:Int8Array,"%Int16Array%":typeof Int16Array>"u"?r:Int16Array,"%Int32Array%":typeof Int32Array>"u"?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":c?d(d([][Symbol.iterator]())):r,"%JSON%":typeof JSON=="object"?JSON:r,"%Map%":typeof Map>"u"?r:Map,"%MapIteratorPrototype%":typeof Map>"u"||!c?r:d(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?r:Promise,"%Proxy%":typeof Proxy>"u"?r:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":typeof Reflect>"u"?r:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?r:Set,"%SetIteratorPrototype%":typeof Set>"u"||!c?r:d(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":c?d(""[Symbol.iterator]()):r,"%Symbol%":c?Symbol:r,"%SyntaxError%":n,"%ThrowTypeError%":u,"%TypedArray%":f,"%TypeError%":a,"%Uint8Array%":typeof Uint8Array>"u"?r:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?r:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?r:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?r:Uint32Array,"%URIError%":URIError,"%WeakMap%":typeof WeakMap>"u"?r:WeakMap,"%WeakRef%":typeof WeakRef>"u"?r:WeakRef,"%WeakSet%":typeof WeakSet>"u"?r:WeakSet},g=function Q(V){var R;if(V==="%AsyncFunction%")R=i("async function () {}");else if(V==="%GeneratorFunction%")R=i("function* () {}");else if(V==="%AsyncGeneratorFunction%")R=i("async function* () {}");else if(V==="%AsyncGenerator%"){var q=Q("%AsyncGeneratorFunction%");q&&(R=q.prototype)}else if(V==="%AsyncIteratorPrototype%"){var M=Q("%AsyncGenerator%");M&&(R=d(M.prototype))}return h[V]=R,R},_={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},v=ql(),x=UB(),O=v.call(Function.call,Array.prototype.concat),C=v.call(Function.apply,Array.prototype.splice),I=v.call(Function.call,String.prototype.replace),P=v.call(Function.call,String.prototype.slice),F=v.call(Function.call,RegExp.prototype.exec),D=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,U=/\\(\\)?/g,G=function(Q){var V=P(Q,0,1),R=P(Q,-1);if(V==="%"&&R!=="%")throw new n("invalid intrinsic syntax, expected closing `%`");if(R==="%"&&V!=="%")throw new n("invalid intrinsic syntax, expected opening `%`");var q=[];return I(Q,D,function(M,Y,te,ne){q[q.length]=te?I(ne,U,"$1"):Y||M}),q},X=function(Q,V){var R=Q,q;if(x(_,R)&&(q=_[R],R="%"+q[0]+"%"),x(h,R)){var M=h[R];if(M===y&&(M=g(R)),typeof M>"u"&&!V)throw new a("intrinsic "+Q+" exists, but is not available. Please file an issue!");return{alias:q,name:R,value:M}}throw new n("intrinsic "+Q+" does not exist!")};t.exports=function(Q,V){if(typeof Q!="string"||Q.length===0)throw new a("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof V!="boolean")throw new a('"allowMissing" argument must be a boolean');if(F(/^%?[^%]*%?$/,Q)===null)throw new n("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var R=G(Q),q=R.length>0?R[0]:"",M=X("%"+q+"%",V),Y=M.name,te=M.value,ne=!1,re=M.alias;re&&(q=re[0],C(R,O([0,1],re)));for(var Z=1,ae=!0;Z=R.length){var we=s(te,le);ae=!!we,ae&&"get"in we&&!("originalValue"in we.get)?te=we.get:te=te[le]}else ae=x(te,le),te=te[le];ae&&!ne&&(h[Y]=te)}}return te}}}),JB=ct({"node_modules/call-bind/index.js"(e,t){var r=ql(),n=h2(),o=n("%Function.prototype.apply%"),a=n("%Function.prototype.call%"),i=n("%Reflect.apply%",!0)||r.call(a,o),s=n("%Object.getOwnPropertyDescriptor%",!0),l=n("%Object.defineProperty%",!0),u=n("%Math.max%");if(l)try{l({},"a",{value:1})}catch{l=null}t.exports=function(d){var y=i(r,a,arguments);if(s&&l){var f=s(y,"length");f.configurable&&l(y,"length",{value:1+u(0,d.length-(arguments.length-1))})}return y};var c=function(){return i(r,o,arguments)};l?l(t.exports,"apply",{value:c}):t.exports.apply=c}}),$B=ct({"node_modules/call-bind/callBound.js"(e,t){var r=h2(),n=JB(),o=n(r("String.prototype.indexOf"));t.exports=function(a,i){var s=r(a,!!i);return typeof s=="function"&&o(a,".prototype.")>-1?n(s):s}}}),zB=ct({"node_modules/has-tostringtag/shams.js"(e,t){var r=f2();t.exports=function(){return r()&&!!Symbol.toStringTag}}}),VB=ct({"node_modules/is-regex/index.js"(e,t){var r=$B(),n=zB()(),o,a,i,s;n&&(o=r("Object.prototype.hasOwnProperty"),a=r("RegExp.prototype.exec"),i={},l=function(){throw i},s={toString:l,valueOf:l},typeof Symbol.toPrimitive=="symbol"&&(s[Symbol.toPrimitive]=l));var l,u=r("Object.prototype.toString"),c=Object.getOwnPropertyDescriptor,d="[object RegExp]";t.exports=n?function(y){if(!y||typeof y!="object")return!1;var f=c(y,"lastIndex"),h=f&&o(f,"value");if(!h)return!1;try{a(y,s)}catch(g){return g===i}}:function(y){return!y||typeof y!="object"&&typeof y!="function"?!1:u(y)===d}}}),HB=ct({"node_modules/is-function/index.js"(e,t){t.exports=n;var r=Object.prototype.toString;function n(o){if(!o)return!1;var a=r.call(o);return a==="[object Function]"||typeof o=="function"&&a!=="[object RegExp]"||typeof window<"u"&&(o===window.setTimeout||o===window.alert||o===window.confirm||o===window.prompt)}}}),GB=ct({"node_modules/is-symbol/index.js"(e,t){var r=Object.prototype.toString,n=y2()();n?(o=Symbol.prototype.toString,a=/^Symbol\(.*\)$/,i=function(s){return typeof s.valueOf()!="symbol"?!1:a.test(o.call(s))},t.exports=function(s){if(typeof s=="symbol")return!0;if(r.call(s)!=="[object Symbol]")return!1;try{return i(s)}catch{return!1}}):t.exports=function(s){return!1};var o,a,i}});Ll(VB());Ll(HB());Ll(GB());var WB=typeof window=="object"&&window&&window.Object===Object&&window,KB=WB,YB=typeof self=="object"&&self&&self.Object===Object&&self,XB=KB||YB||Function("return this")(),Ml=XB,QB=Ml.Symbol,tn=QB,m2=Object.prototype,ZB=m2.hasOwnProperty,eL=m2.toString,Qn=tn?tn.toStringTag:void 0;function tL(e){var t=ZB.call(e,Qn),r=e[Qn];try{e[Qn]=void 0;var n=!0}catch{}var o=eL.call(e);return n&&(t?e[Qn]=r:delete e[Qn]),o}var rL=tL,nL=Object.prototype,oL=nL.toString;function aL(e){return oL.call(e)}var iL=aL,sL="[object Null]",lL="[object Undefined]",gv=tn?tn.toStringTag:void 0;function uL(e){return e==null?e===void 0?lL:sL:gv&&gv in Object(e)?rL(e):iL(e)}var cL=uL,bv=tn?tn.prototype:void 0;bv&&bv.toString;function pL(e){var t=typeof e;return e!=null&&(t=="object"||t=="function")}var g2=pL,dL="[object AsyncFunction]",fL="[object Function]",yL="[object GeneratorFunction]",hL="[object Proxy]";function mL(e){if(!g2(e))return!1;var t=cL(e);return t==fL||t==yL||t==dL||t==hL}var gL=mL,bL=Ml["__core-js_shared__"],wl=bL,vv=function(){var e=/[^.]+$/.exec(wl&&wl.keys&&wl.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();function vL(e){return!!vv&&vv in e}var xL=vL,EL=Function.prototype,wL=EL.toString;function SL(e){if(e!=null){try{return wL.call(e)}catch{}try{return e+""}catch{}}return""}var AL=SL,TL=/[\\^$.*+?()[\]{}|]/g,CL=/^\[object .+?Constructor\]$/,_L=Function.prototype,OL=Object.prototype,IL=_L.toString,PL=OL.hasOwnProperty,kL=RegExp("^"+IL.call(PL).replace(TL,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function RL(e){if(!g2(e)||xL(e))return!1;var t=gL(e)?kL:CL;return t.test(AL(e))}var DL=RL;function FL(e,t){return e?.[t]}var jL=FL;function NL(e,t){var r=jL(e,t);return DL(r)?r:void 0}var b2=NL;function BL(e,t){return e===t||e!==e&&t!==t}var LL=BL,qL=b2(Object,"create"),to=qL;function ML(){this.__data__=to?to(null):{},this.size=0}var UL=ML;function JL(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}var $L=JL,zL="__lodash_hash_undefined__",VL=Object.prototype,HL=VL.hasOwnProperty;function GL(e){var t=this.__data__;if(to){var r=t[e];return r===zL?void 0:r}return HL.call(t,e)?t[e]:void 0}var WL=GL,KL=Object.prototype,YL=KL.hasOwnProperty;function XL(e){var t=this.__data__;return to?t[e]!==void 0:YL.call(t,e)}var QL=XL,ZL="__lodash_hash_undefined__";function eq(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=to&&t===void 0?ZL:t,this}var tq=eq;function rn(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t-1}var dq=pq;function fq(e,t){var r=this.__data__,n=Oa(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this}var yq=fq;function nn(e){var t=-1,r=e==null?0:e.length;for(this.clear();++t{let t=null,r=!1,n=!1,o=!1,a="";if(e.indexOf("//")>=0||e.indexOf("/*")>=0)for(let i=0;iLq(e).replace(/\n\s*/g,"").trim());var qq=or({"../../node_modules/tocbot/src/js/default-options.js"(e,t){t.exports={tocSelector:".js-toc",contentSelector:".js-toc-content",headingSelector:"h1, h2, h3",ignoreSelector:".js-toc-ignore",hasInnerContainers:!1,linkClass:"toc-link",extraLinkClasses:"",activeLinkClass:"is-active-link",listClass:"toc-list",extraListClasses:"",isCollapsedClass:"is-collapsed",collapsibleClass:"is-collapsible",listItemClass:"toc-list-item",activeListItemClass:"is-active-li",collapseDepth:0,scrollSmooth:!0,scrollSmoothDuration:420,scrollSmoothOffset:0,scrollEndCallback:function(r){},headingsOffset:1,throttleTimeout:50,positionFixedSelector:null,positionFixedClass:"is-position-fixed",fixedSidebarOffset:"auto",includeHtml:!1,includeTitleTags:!1,onClick:function(r){},orderedList:!0,scrollContainer:null,skipRendering:!1,headingLabelCallback:!1,ignoreHiddenElements:!1,headingObjectCallback:null,basePath:"",disableTocScrollSync:!1,tocScrollOffset:0}}}),Mq=or({"../../node_modules/tocbot/src/js/build-html.js"(e,t){t.exports=function(r){var n=[].forEach,o=[].some,a=document.body,i,s=!0,l=" ";function u(C,I){var P=I.appendChild(d(C));if(C.children.length){var F=y(C.isCollapsed);C.children.forEach(function(D){u(D,F)}),P.appendChild(F)}}function c(C,I){var P=!1,F=y(P);if(I.forEach(function(D){u(D,F)}),i=C||i,i!==null)return i.firstChild&&i.removeChild(i.firstChild),I.length===0?i:i.appendChild(F)}function d(C){var I=document.createElement("li"),P=document.createElement("a");return r.listItemClass&&I.setAttribute("class",r.listItemClass),r.onClick&&(P.onclick=r.onClick),r.includeTitleTags&&P.setAttribute("title",C.textContent),r.includeHtml&&C.childNodes.length?n.call(C.childNodes,function(F){P.appendChild(F.cloneNode(!0))}):P.textContent=C.textContent,P.setAttribute("href",r.basePath+"#"+C.id),P.setAttribute("class",r.linkClass+l+"node-name--"+C.nodeName+l+r.extraLinkClasses),I.appendChild(P),I}function y(C){var I=r.orderedList?"ol":"ul",P=document.createElement(I),F=r.listClass+l+r.extraListClasses;return C&&(F=F+l+r.collapsibleClass,F=F+l+r.isCollapsedClass),P.setAttribute("class",F),P}function f(){if(r.scrollContainer&&document.querySelector(r.scrollContainer)){var C;C=document.querySelector(r.scrollContainer).scrollTop}else C=document.documentElement.scrollTop||a.scrollTop;var I=document.querySelector(r.positionFixedSelector);r.fixedSidebarOffset==="auto"&&(r.fixedSidebarOffset=i.offsetTop),C>r.fixedSidebarOffset?I.className.indexOf(r.positionFixedClass)===-1&&(I.className+=l+r.positionFixedClass):I.className=I.className.replace(l+r.positionFixedClass,"")}function h(C){var I=0;return C!==null&&(I=C.offsetTop,r.hasInnerContainers&&(I+=h(C.offsetParent))),I}function g(C,I){return C&&C.className!==I&&(C.className=I),C}function _(C){if(r.scrollContainer&&document.querySelector(r.scrollContainer)){var I;I=document.querySelector(r.scrollContainer).scrollTop}else I=document.documentElement.scrollTop||a.scrollTop;r.positionFixedSelector&&f();var P=C,F;if(s&&i!==null&&P.length>0){o.call(P,function(R,q){if(h(R)>I+r.headingsOffset+10){var M=q===0?q:q-1;return F=P[M],!0}else if(q===P.length-1)return F=P[P.length-1],!0});var D=i.querySelector("."+r.activeLinkClass),U=i.querySelector("."+r.linkClass+".node-name--"+F.nodeName+'[href="'+r.basePath+"#"+F.id.replace(/([ #;&,.+*~':"!^$[\]()=>|/\\@])/g,"\\$1")+'"]');if(D===U)return;var G=i.querySelectorAll("."+r.linkClass);n.call(G,function(R){g(R,R.className.replace(l+r.activeLinkClass,""))});var X=i.querySelectorAll("."+r.listItemClass);n.call(X,function(R){g(R,R.className.replace(l+r.activeListItemClass,""))}),U&&U.className.indexOf(r.activeLinkClass)===-1&&(U.className+=l+r.activeLinkClass);var Q=U&&U.parentNode;Q&&Q.className.indexOf(r.activeListItemClass)===-1&&(Q.className+=l+r.activeListItemClass);var V=i.querySelectorAll("."+r.listClass+"."+r.collapsibleClass);n.call(V,function(R){R.className.indexOf(r.isCollapsedClass)===-1&&(R.className+=l+r.isCollapsedClass)}),U&&U.nextSibling&&U.nextSibling.className.indexOf(r.isCollapsedClass)!==-1&&g(U.nextSibling,U.nextSibling.className.replace(l+r.isCollapsedClass,"")),v(U&&U.parentNode.parentNode)}}function v(C){return C&&C.className.indexOf(r.collapsibleClass)!==-1&&C.className.indexOf(r.isCollapsedClass)!==-1?(g(C,C.className.replace(l+r.isCollapsedClass,"")),v(C.parentNode.parentNode)):C}function x(C){var I=C.target||C.srcElement;typeof I.className!="string"||I.className.indexOf(r.linkClass)===-1||(s=!1)}function O(){s=!0}return{enableTocAnimation:O,disableTocAnimation:x,render:c,updateToc:_}}}}),Uq=or({"../../node_modules/tocbot/src/js/parse-content.js"(e,t){t.exports=function(r){var n=[].reduce;function o(d){return d[d.length-1]}function a(d){return+d.nodeName.toUpperCase().replace("H","")}function i(d){try{return d instanceof window.HTMLElement||d instanceof window.parent.HTMLElement}catch{return d instanceof window.HTMLElement}}function s(d){if(!i(d))return d;if(r.ignoreHiddenElements&&(!d.offsetHeight||!d.offsetParent))return null;let y=d.getAttribute("data-heading-label")||(r.headingLabelCallback?String(r.headingLabelCallback(d.innerText)):(d.innerText||d.textContent).trim());var f={id:d.id,children:[],nodeName:d.nodeName,headingLevel:a(d),textContent:y};return r.includeHtml&&(f.childNodes=d.childNodes),r.headingObjectCallback?r.headingObjectCallback(f,d):f}function l(d,y){for(var f=s(d),h=f.headingLevel,g=y,_=o(g),v=_?_.headingLevel:0,x=h-v;x>0&&(_=o(g),!(_&&h===_.headingLevel));)_&&_.children!==void 0&&(g=_.children),x--;return h>=r.collapseDepth&&(f.isCollapsed=!0),g.push(f),g}function u(d,y){var f=y;r.ignoreSelector&&(f=y.split(",").map(function(h){return h.trim()+":not("+r.ignoreSelector+")"}));try{return d.querySelectorAll(f)}catch{return console.warn("Headers not found with selector: "+f),null}}function c(d){return n.call(d,function(y,f){var h=s(f);return h&&l(h,y.nest),y},{nest:[]})}return{nestHeadingsArray:c,selectHeadings:u}}}}),Jq=or({"../../node_modules/tocbot/src/js/update-toc-scroll.js"(e,t){t.exports=function(r){var n=r.tocElement||document.querySelector(r.tocSelector);if(n&&n.scrollHeight>n.clientHeight){var o=n.querySelector("."+r.activeListItemClass);o&&(n.scrollTop=o.offsetTop-r.tocScrollOffset)}}}}),$q=or({"../../node_modules/tocbot/src/js/scroll-smooth/index.js"(e){e.initSmoothScrolling=t;function t(n){var o=n.duration,a=n.offset,i=location.hash?u(location.href):location.href;s();function s(){document.body.addEventListener("click",d,!1);function d(y){!l(y.target)||y.target.className.indexOf("no-smooth-scroll")>-1||y.target.href.charAt(y.target.href.length-2)==="#"&&y.target.href.charAt(y.target.href.length-1)==="!"||y.target.className.indexOf(n.linkClass)===-1||r(y.target.hash,{duration:o,offset:a,callback:function(){c(y.target.hash)}})}}function l(d){return d.tagName.toLowerCase()==="a"&&(d.hash.length>0||d.href.charAt(d.href.length-1)==="#")&&(u(d.href)===i||u(d.href)+"#"===i)}function u(d){return d.slice(0,d.lastIndexOf("#"))}function c(d){var y=document.getElementById(d.substring(1));y&&(/^(?:a|select|input|button|textarea)$/i.test(y.tagName)||(y.tabIndex=-1),y.focus())}}function r(n,o){var a=window.pageYOffset,i={duration:o.duration,offset:o.offset||0,callback:o.callback,easing:o.easing||h},s=document.querySelector('[id="'+decodeURI(n).split("#").join("")+'"]')||document.querySelector('[id="'+n.split("#").join("")+'"]'),l=typeof n=="string"?i.offset+(n?s&&s.getBoundingClientRect().top||0:-(document.documentElement.scrollTop||document.body.scrollTop)):n,u=typeof i.duration=="function"?i.duration(l):i.duration,c,d;requestAnimationFrame(function(g){c=g,y(g)});function y(g){d=g-c,window.scrollTo(0,i.easing(d,a,l,u)),d"u"&&!d)return;var y,f=Object.prototype.hasOwnProperty;function h(){for(var x={},O=0;O({backgroundColor:e.base==="light"?"rgba(0,0,0,.01)":"rgba(255,255,255,.01)",borderRadius:e.appBorderRadius,border:`1px dashed ${e.appBorderColor}`,display:"flex",alignItems:"center",justifyContent:"center",padding:20,margin:"25px 0 40px",color:ve(.3,e.color.defaultText),fontSize:e.typography.size.s2})),x2=e=>E.createElement(Vq,{...e,className:"docblock-emptyblock sb-unstyled"}),Hq=W(so)(({theme:e})=>({fontSize:`${e.typography.size.s2-1}px`,lineHeight:"19px",margin:"25px 0 40px",borderRadius:e.appBorderRadius,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0","pre.prismjs":{padding:20,background:"inherit"}})),Gq=W.div(({theme:e})=>({background:e.background.content,borderRadius:e.appBorderRadius,border:`1px solid ${e.appBorderColor}`,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0",margin:"25px 0 40px",padding:"20px 20px 20px 22px"})),va=W.div(({theme:e})=>({animation:`${e.animation.glow} 1.5s ease-in-out infinite`,background:e.appBorderColor,height:17,marginTop:1,width:"60%",[`&:first-child${Fu}`]:{margin:0}})),Wq=()=>E.createElement(Gq,null,E.createElement(va,null),E.createElement(va,{style:{width:"80%"}}),E.createElement(va,{style:{width:"30%"}}),E.createElement(va,{style:{width:"80%"}})),Kq=({isLoading:e,error:t,language:r,code:n,dark:o,format:a=!1,...i})=>{let{typography:s}=ri();if(e)return E.createElement(Wq,null);if(t)return E.createElement(x2,null,t);let l=E.createElement(Hq,{bordered:!0,copyable:!0,format:a,language:r,className:"docblock-source sb-unstyled",...i},n);if(typeof o>"u")return l;let u=o?ti.dark:ti.light;return E.createElement(Ru,{theme:Du({...u,fontCode:s.fonts.mono,fontBase:s.fonts.base})},l)},Ne=e=>`& :where(${e}:not(.sb-anchor, .sb-unstyled, .sb-unstyled ${e}))`,Jl=600;W.h1(Pr,({theme:e})=>({color:e.color.defaultText,fontSize:e.typography.size.m3,fontWeight:e.typography.weight.bold,lineHeight:"32px",[`@media (min-width: ${Jl}px)`]:{fontSize:e.typography.size.l1,lineHeight:"36px",marginBottom:"16px"}}));W.h2(Pr,({theme:e})=>({fontWeight:e.typography.weight.regular,fontSize:e.typography.size.s3,lineHeight:"20px",borderBottom:"none",marginBottom:15,[`@media (min-width: ${Jl}px)`]:{fontSize:e.typography.size.m1,lineHeight:"28px",marginBottom:24},color:ve(.25,e.color.defaultText)}));W.div(({theme:e})=>{let t={fontFamily:e.typography.fonts.base,fontSize:e.typography.size.s3,margin:0,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",WebkitOverflowScrolling:"touch"},r={margin:"20px 0 8px",padding:0,cursor:"text",position:"relative",color:e.color.defaultText,"&:first-of-type":{marginTop:0,paddingTop:0},"&:hover a.anchor":{textDecoration:"none"},"& code":{fontSize:"inherit"}},n={lineHeight:1,margin:"0 2px",padding:"3px 5px",whiteSpace:"nowrap",borderRadius:3,fontSize:e.typography.size.s2-1,border:e.base==="light"?`1px solid ${e.color.mediumlight}`:`1px solid ${e.color.darker}`,color:e.base==="light"?ve(.1,e.color.defaultText):ve(.3,e.color.defaultText),backgroundColor:e.base==="light"?e.color.lighter:e.color.border};return{maxWidth:1e3,width:"100%",[Ne("a")]:{...t,fontSize:"inherit",lineHeight:"24px",color:e.color.secondary,textDecoration:"none","&.absent":{color:"#cc0000"},"&.anchor":{display:"block",paddingLeft:30,marginLeft:-30,cursor:"pointer",position:"absolute",top:0,left:0,bottom:0}},[Ne("blockquote")]:{...t,margin:"16px 0",borderLeft:`4px solid ${e.color.medium}`,padding:"0 15px",color:e.color.dark,"& > :first-of-type":{marginTop:0},"& > :last-child":{marginBottom:0}},[Ne("div")]:t,[Ne("dl")]:{...t,margin:"16px 0",padding:0,"& dt":{fontSize:"14px",fontWeight:"bold",fontStyle:"italic",padding:0,margin:"16px 0 4px"},"& dt:first-of-type":{padding:0},"& dt > :first-of-type":{marginTop:0},"& dt > :last-child":{marginBottom:0},"& dd":{margin:"0 0 16px",padding:"0 15px"},"& dd > :first-of-type":{marginTop:0},"& dd > :last-child":{marginBottom:0}},[Ne("h1")]:{...t,...r,fontSize:`${e.typography.size.l1}px`,fontWeight:e.typography.weight.bold},[Ne("h2")]:{...t,...r,fontSize:`${e.typography.size.m2}px`,paddingBottom:4,borderBottom:`1px solid ${e.appBorderColor}`},[Ne("h3")]:{...t,...r,fontSize:`${e.typography.size.m1}px`,fontWeight:e.typography.weight.bold},[Ne("h4")]:{...t,...r,fontSize:`${e.typography.size.s3}px`},[Ne("h5")]:{...t,...r,fontSize:`${e.typography.size.s2}px`},[Ne("h6")]:{...t,...r,fontSize:`${e.typography.size.s2}px`,color:e.color.dark},[Ne("hr")]:{border:"0 none",borderTop:`1px solid ${e.appBorderColor}`,height:4,padding:0},[Ne("img")]:{maxWidth:"100%"},[Ne("li")]:{...t,fontSize:e.typography.size.s2,color:e.color.defaultText,lineHeight:"24px","& + li":{marginTop:".25em"},"& ul, & ol":{marginTop:".25em",marginBottom:0},"& code":n},[Ne("ol")]:{...t,margin:"16px 0",paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0}},[Ne("p")]:{...t,margin:"16px 0",fontSize:e.typography.size.s2,lineHeight:"24px",color:e.color.defaultText,"& code":n},[Ne("pre")]:{...t,fontFamily:e.typography.fonts.mono,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",lineHeight:"18px",padding:"11px 1rem",whiteSpace:"pre-wrap",color:"inherit",borderRadius:3,margin:"1rem 0","&:not(.prismjs)":{background:"transparent",border:"none",borderRadius:0,padding:0,margin:0},"& pre, &.prismjs":{padding:15,margin:0,whiteSpace:"pre-wrap",color:"inherit",fontSize:"13px",lineHeight:"19px",code:{color:"inherit",fontSize:"inherit"}},"& code":{whiteSpace:"pre"},"& code, & tt":{border:"none"}},[Ne("span")]:{...t,"&.frame":{display:"block",overflow:"hidden","& > span":{border:`1px solid ${e.color.medium}`,display:"block",float:"left",overflow:"hidden",margin:"13px 0 0",padding:7,width:"auto"},"& span img":{display:"block",float:"left"},"& span span":{clear:"both",color:e.color.darkest,display:"block",padding:"5px 0 0"}},"&.align-center":{display:"block",overflow:"hidden",clear:"both","& > span":{display:"block",overflow:"hidden",margin:"13px auto 0",textAlign:"center"},"& span img":{margin:"0 auto",textAlign:"center"}},"&.align-right":{display:"block",overflow:"hidden",clear:"both","& > span":{display:"block",overflow:"hidden",margin:"13px 0 0",textAlign:"right"},"& span img":{margin:0,textAlign:"right"}},"&.float-left":{display:"block",marginRight:13,overflow:"hidden",float:"left","& span":{margin:"13px 0 0"}},"&.float-right":{display:"block",marginLeft:13,overflow:"hidden",float:"right","& > span":{display:"block",overflow:"hidden",margin:"13px auto 0",textAlign:"right"}}},[Ne("table")]:{...t,margin:"16px 0",fontSize:e.typography.size.s2,lineHeight:"24px",padding:0,borderCollapse:"collapse","& tr":{borderTop:`1px solid ${e.appBorderColor}`,backgroundColor:e.appContentBg,margin:0,padding:0},"& tr:nth-of-type(2n)":{backgroundColor:e.base==="dark"?e.color.darker:e.color.lighter},"& tr th":{fontWeight:"bold",color:e.color.defaultText,border:`1px solid ${e.appBorderColor}`,margin:0,padding:"6px 13px"},"& tr td":{border:`1px solid ${e.appBorderColor}`,color:e.color.defaultText,margin:0,padding:"6px 13px"},"& tr th :first-of-type, & tr td :first-of-type":{marginTop:0},"& tr th :last-child, & tr td :last-child":{marginBottom:0}},[Ne("ul")]:{...t,margin:"16px 0",paddingLeft:30,"& :first-of-type":{marginTop:0},"& :last-child":{marginBottom:0},listStyle:"disc"}}});W.div(({theme:e})=>({background:e.background.content,display:"flex",justifyContent:"center",padding:"4rem 20px",minHeight:"100vh",boxSizing:"border-box",gap:"3rem",[`@media (min-width: ${Jl}px)`]:{}}));var Pa=e=>({borderRadius:e.appBorderRadius,background:e.background.content,boxShadow:e.base==="light"?"rgba(0, 0, 0, 0.10) 0 1px 3px 0":"rgba(0, 0, 0, 0.20) 0 2px 5px 0",border:`1px solid ${e.appBorderColor}`}),Yq=W(Ma)({position:"absolute",left:0,right:0,top:0,transition:"transform .2s linear"}),Xq=W.div({display:"flex",alignItems:"center",gap:4}),Qq=W.div(({theme:e})=>({width:14,height:14,borderRadius:2,margin:"0 7px",backgroundColor:e.appBorderColor,animation:`${e.animation.glow} 1.5s ease-in-out infinite`})),Zq=({isLoading:e,storyId:t,baseUrl:r,zoom:n,resetZoom:o,...a})=>E.createElement(Yq,{...a},E.createElement(Xq,{key:"left"},e?[1,2,3].map(i=>E.createElement(Qq,{key:i})):E.createElement(E.Fragment,null,E.createElement(ht,{key:"zoomin",onClick:i=>{i.preventDefault(),n(.8)},title:"Zoom in"},E.createElement(Vu,null)),E.createElement(ht,{key:"zoomout",onClick:i=>{i.preventDefault(),n(1.25)},title:"Zoom out"},E.createElement(Hu,null)),E.createElement(ht,{key:"zoomreset",onClick:i=>{i.preventDefault(),o()},title:"Reset zoom"},E.createElement(Gu,null))))),eM=vn({scale:1});W.strong(({theme:e})=>({color:e.color.orange}));var tM=W.div(({isColumn:e,columns:t,layout:r})=>({display:e||!t?"block":"flex",position:"relative",flexWrap:"wrap",overflow:"auto",flexDirection:e?"column":"row","& .innerZoomElementWrapper > *":e?{width:r!=="fullscreen"?"calc(100% - 20px)":"100%",display:"block"}:{maxWidth:r!=="fullscreen"?"calc(100% - 20px)":"100%",display:"inline-block"}}),({layout:e="padded"})=>e==="centered"||e==="padded"?{padding:"30px 20px","& .innerZoomElementWrapper > *":{width:"auto",border:"10px solid transparent!important"}}:{},({layout:e="padded"})=>e==="centered"?{display:"flex",justifyContent:"center",justifyItems:"center",alignContent:"center",alignItems:"center"}:{},({columns:e})=>e&&e>1?{".innerZoomElementWrapper > *":{minWidth:`calc(100% / ${e} - 20px)`}}:{}),Ev=W(Kq)(({theme:e})=>({margin:0,borderTopLeftRadius:0,borderTopRightRadius:0,borderBottomLeftRadius:e.appBorderRadius,borderBottomRightRadius:e.appBorderRadius,border:"none",background:e.base==="light"?"rgba(0, 0, 0, 0.85)":vt(.05,e.background.content),color:e.color.lightest,button:{background:e.base==="light"?"rgba(0, 0, 0, 0.85)":vt(.05,e.background.content)}})),rM=W.div(({theme:e,withSource:t,isExpanded:r})=>({position:"relative",overflow:"hidden",margin:"25px 0 40px",...Pa(e),borderBottomLeftRadius:t&&r&&0,borderBottomRightRadius:t&&r&&0,borderBottomWidth:r&&0,"h3 + &":{marginTop:"16px"}}),({withToolbar:e})=>e&&{paddingTop:40}),nM=(e,t,r)=>{switch(!0){case!!(e&&e.error):return{source:null,actionItem:{title:"No code available",className:"docblock-code-toggle docblock-code-toggle--disabled",disabled:!0,onClick:()=>r(!1)}};case t:return{source:E.createElement(Ev,{...e,dark:!0}),actionItem:{title:"Hide code",className:"docblock-code-toggle docblock-code-toggle--expanded",onClick:()=>r(!1)}};default:return{source:E.createElement(Ev,{...e,dark:!0}),actionItem:{title:"Show code",className:"docblock-code-toggle",onClick:()=>r(!0)}}}};function oM(e){if(Ql.count(e)===1){let t=e;if(t.props)return t.props.id}return null}var aM=W(Zq)({position:"absolute",top:0,left:0,right:0,height:40}),iM=W.div({overflow:"hidden",position:"relative"}),sM=({isLoading:e,isColumn:t,columns:r,children:n,withSource:o,withToolbar:a=!1,isExpanded:i=!1,additionalActions:s,className:l,layout:u="padded",...c})=>{let[d,y]=he(i),{source:f,actionItem:h}=nM(o,d,y),[g,_]=he(1),v=[l].concat(["sbdocs","sbdocs-preview","sb-unstyled"]),x=o?[h]:[],[O,C]=he(s?[...s]:[]),I=[...x,...O],{window:P}=xt,F=$e(async U=>{let{createCopyToClipboardFunction:G}=await Promise.resolve().then(()=>(lo(),au));G()},[]),D=U=>{let G=P.getSelection();G&&G.type==="Range"||(U.preventDefault(),O.filter(X=>X.title==="Copied").length===0&&F(f.props.code).then(()=>{C([...O,{title:"Copied",onClick:()=>{}}]),P.setTimeout(()=>C(O.filter(X=>X.title!=="Copied")),1500)}))};return E.createElement(rM,{withSource:o,withToolbar:a,...c,className:v.join(" ")},a&&E.createElement(aM,{isLoading:e,border:!0,zoom:U=>_(g*U),resetZoom:()=>_(1),storyId:oM(n),baseUrl:"./iframe.html"}),E.createElement(eM.Provider,{value:{scale:g}},E.createElement(iM,{className:"docs-story",onCopyCapture:o&&D},E.createElement(tM,{isColumn:t||!Array.isArray(n),columns:r,layout:u},E.createElement(Va.Element,{scale:g},Array.isArray(n)?n.map((U,G)=>E.createElement("div",{key:G},U)):E.createElement("div",null,n))),E.createElement(ja,{actionItems:I}))),o&&d&&f)};W(sM)(()=>({".docs-story":{paddingTop:32,paddingBottom:40}}));var lM=W.table(({theme:e})=>({"&&":{borderCollapse:"collapse",borderSpacing:0,border:"none",tr:{border:"none !important",background:"none"},"td, th":{padding:0,border:"none",width:"auto!important"},marginTop:0,marginBottom:0,"th:first-of-type, td:first-of-type":{paddingLeft:0},"th:last-of-type, td:last-of-type":{paddingRight:0},td:{paddingTop:0,paddingBottom:4,"&:not(:first-of-type)":{paddingLeft:10,paddingRight:0}},tbody:{boxShadow:"none",border:"none"},code:Ir({theme:e}),div:{span:{fontWeight:"bold"}},"& code":{margin:0,display:"inline-block",fontSize:e.typography.size.s1}}})),uM=({tags:e})=>{let t=(e.params||[]).filter(a=>a.description),r=t.length!==0,n=e.deprecated!=null,o=e.returns!=null&&e.returns.description!=null;return!r&&!o&&!n?null:E.createElement(E.Fragment,null,E.createElement(lM,null,E.createElement("tbody",null,n&&E.createElement("tr",{key:"deprecated"},E.createElement("td",{colSpan:2},E.createElement("strong",null,"Deprecated"),": ",e.deprecated.toString())),r&&t.map(a=>E.createElement("tr",{key:a.name},E.createElement("td",null,E.createElement("code",null,a.name)),E.createElement("td",null,a.description))),o&&E.createElement("tr",{key:"returns"},E.createElement("td",null,E.createElement("code",null,"Returns")),E.createElement("td",null,e.returns.description)))))},Dl=8,wv=W.div(({isExpanded:e})=>({display:"flex",flexDirection:e?"column":"row",flexWrap:"wrap",alignItems:"flex-start",marginBottom:"-4px",minWidth:100})),cM=W.span(Ir,({theme:e,simple:t=!1})=>({flex:"0 0 auto",fontFamily:e.typography.fonts.mono,fontSize:e.typography.size.s1,wordBreak:"break-word",whiteSpace:"normal",maxWidth:"100%",margin:0,marginRight:"4px",marginBottom:"4px",paddingTop:"2px",paddingBottom:"2px",lineHeight:"13px",...t&&{background:"transparent",border:"0 none",paddingLeft:0}})),pM=W.button(({theme:e})=>({fontFamily:e.typography.fonts.mono,color:e.color.secondary,marginBottom:"4px",background:"none",border:"none"})),dM=W.div(Ir,({theme:e})=>({fontFamily:e.typography.fonts.mono,color:e.color.secondary,fontSize:e.typography.size.s1,margin:0,whiteSpace:"nowrap",display:"flex",alignItems:"center"})),fM=W.div(({theme:e,width:t})=>({width:t,minWidth:200,maxWidth:800,padding:15,fontFamily:e.typography.fonts.mono,fontSize:e.typography.size.s1,boxSizing:"content-box","& code":{padding:"0 !important"}})),yM=W(Lu)({marginLeft:4}),hM=W(ai)({marginLeft:4}),mM=()=>E.createElement("span",null,"-"),E2=({text:e,simple:t})=>E.createElement(cM,{simple:t},e),gM=(0,DB.default)(1e3)(e=>{let t=e.split(/\r?\n/);return`${Math.max(...t.map(r=>r.length))}ch`}),bM=e=>{if(!e)return[e];let t=e.split("|").map(r=>r.trim());return(0,Bv.default)(t)},Sv=(e,t=!0)=>{let r=e;return t||(r=e.slice(0,Dl)),r.map(n=>E.createElement(E2,{key:n,text:n===""?'""':n}))},vM=({value:e,initialExpandedArgs:t})=>{let{summary:r,detail:n}=e,[o,a]=he(!1),[i,s]=he(t||!1);if(r==null)return null;let l=typeof r.toString=="function"?r.toString():r;if(n==null){if(/[(){}[\]<>]/.test(l))return E.createElement(E2,{text:l});let u=bM(l),c=u.length;return c>Dl?E.createElement(wv,{isExpanded:i},Sv(u,i),E.createElement(pM,{onClick:()=>s(!i)},i?"Show less...":`Show ${c-Dl} more...`)):E.createElement(wv,null,Sv(u))}return E.createElement(za,{closeOnOutsideClick:!0,placement:"bottom",visible:o,onVisibleChange:u=>{a(u)},tooltip:E.createElement(fM,{width:gM(n)},E.createElement(so,{language:"jsx",format:!1},n))},E.createElement(dM,{className:"sbdocs-expandable"},E.createElement("span",null,l),o?E.createElement(yM,null):E.createElement(hM,null)))},Sl=({value:e,initialExpandedArgs:t})=>e==null?E.createElement(mM,null):E.createElement(vM,{value:e,initialExpandedArgs:t}),xM=W.label(({theme:e})=>({lineHeight:"18px",alignItems:"center",marginBottom:8,display:"inline-block",position:"relative",whiteSpace:"nowrap",background:e.boolean.background,borderRadius:"3em",padding:1,'&[aria-disabled="true"]':{opacity:.5,input:{cursor:"not-allowed"}},input:{appearance:"none",width:"100%",height:"100%",position:"absolute",left:0,top:0,margin:0,padding:0,border:"none",background:"transparent",cursor:"pointer",borderRadius:"3em","&:focus":{outline:"none",boxShadow:`${e.color.secondary} 0 0 0 1px inset !important`}},span:{textAlign:"center",fontSize:e.typography.size.s1,fontWeight:e.typography.weight.bold,lineHeight:"1",cursor:"pointer",display:"inline-block",padding:"7px 15px",transition:"all 100ms ease-out",userSelect:"none",borderRadius:"3em",color:ve(.5,e.color.defaultText),background:"transparent","&:hover":{boxShadow:`${ba(.3,e.appBorderColor)} 0 0 0 1px inset`},"&:active":{boxShadow:`${ba(.05,e.appBorderColor)} 0 0 0 2px inset`,color:ba(1,e.appBorderColor)},"&:first-of-type":{paddingRight:8},"&:last-of-type":{paddingLeft:8}},"input:checked ~ span:last-of-type, input:not(:checked) ~ span:first-of-type":{background:e.boolean.selectedBackground,boxShadow:e.base==="light"?`${ba(.1,e.appBorderColor)} 0 0 2px`:`${e.appBorderColor} 0 0 0 1px`,color:e.color.defaultText,padding:"7px 15px"}})),EM=e=>e==="true",wM=({name:e,value:t,onChange:r,onBlur:n,onFocus:o,argType:a})=>{let i=$e(()=>r(!1),[r]),s=!!a?.table?.readonly;if(t===void 0)return E.createElement(Bt,{variant:"outline",size:"medium",id:bn(e),onClick:i,disabled:s},"Set boolean");let l=tt(e),u=typeof t=="string"?EM(t):t;return E.createElement(xM,{"aria-disabled":s,htmlFor:l,"aria-label":e},E.createElement("input",{id:l,type:"checkbox",onChange:c=>r(c.target.checked),checked:u,role:"switch",disabled:s,name:e,onBlur:n,onFocus:o}),E.createElement("span",{"aria-hidden":"true"},"False"),E.createElement("span",{"aria-hidden":"true"},"True"))},SM=e=>{let[t,r,n]=e.split("-"),o=new Date;return o.setFullYear(parseInt(t,10),parseInt(r,10)-1,parseInt(n,10)),o},AM=e=>{let[t,r]=e.split(":"),n=new Date;return n.setHours(parseInt(t,10)),n.setMinutes(parseInt(r,10)),n},TM=e=>{let t=new Date(e),r=`000${t.getFullYear()}`.slice(-4),n=`0${t.getMonth()+1}`.slice(-2),o=`0${t.getDate()}`.slice(-2);return`${r}-${n}-${o}`},CM=e=>{let t=new Date(e),r=`0${t.getHours()}`.slice(-2),n=`0${t.getMinutes()}`.slice(-2);return`${r}:${n}`},Av=W(dt.Input)(({readOnly:e})=>({opacity:e?.5:1})),_M=W.div(({theme:e})=>({flex:1,display:"flex",input:{marginLeft:10,flex:1,height:32,"&::-webkit-calendar-picker-indicator":{opacity:.5,height:12,filter:e.base==="light"?void 0:"invert(1)"}},"input:first-of-type":{marginLeft:0,flexGrow:4},"input:last-of-type":{flexGrow:3}})),OM=({name:e,value:t,onChange:r,onFocus:n,onBlur:o,argType:a})=>{let[i,s]=he(!0),l=Xe(),u=Xe(),c=!!a?.table?.readonly;ze(()=>{i!==!1&&(l&&l.current&&(l.current.value=t?TM(t):""),u&&u.current&&(u.current.value=t?CM(t):""))},[t]);let d=h=>{if(!h.target.value)return r();let g=SM(h.target.value),_=new Date(t);_.setFullYear(g.getFullYear(),g.getMonth(),g.getDate());let v=_.getTime();v&&r(v),s(!!v)},y=h=>{if(!h.target.value)return r();let g=AM(h.target.value),_=new Date(t);_.setHours(g.getHours()),_.setMinutes(g.getMinutes());let v=_.getTime();v&&r(v),s(!!v)},f=tt(e);return E.createElement(_M,null,E.createElement(Av,{type:"date",max:"9999-12-31",ref:l,id:`${f}-date`,name:`${f}-date`,readOnly:c,onChange:d,onFocus:n,onBlur:o}),E.createElement(Av,{type:"time",id:`${f}-time`,name:`${f}-time`,ref:u,onChange:y,readOnly:c,onFocus:n,onBlur:o}),i?null:E.createElement("div",null,"invalid"))},IM=W.label({display:"flex"}),PM=e=>{let t=parseFloat(e);return Number.isNaN(t)?void 0:t},kM=W(dt.Input)(({readOnly:e})=>({opacity:e?.5:1})),RM=({name:e,value:t,onChange:r,min:n,max:o,step:a,onBlur:i,onFocus:s,argType:l})=>{let[u,c]=he(typeof t=="number"?t:""),[d,y]=he(!1),[f,h]=he(null),g=!!l?.table?.readonly,_=$e(O=>{c(O.target.value);let C=parseFloat(O.target.value);Number.isNaN(C)?h(new Error(`'${O.target.value}' is not a number`)):(r(C),h(null))},[r,h]),v=$e(()=>{c("0"),r(0),y(!0)},[y]),x=Xe(null);return ze(()=>{d&&x.current&&x.current.select()},[d]),ze(()=>{u!==(typeof t=="number"?t:"")&&c(t)},[t]),t===void 0?E.createElement(Bt,{variant:"outline",size:"medium",id:bn(e),onClick:v,disabled:g},"Set number"):E.createElement(IM,null,E.createElement(kM,{ref:x,id:tt(e),type:"number",onChange:_,size:"flex",placeholder:"Edit number...",value:u,valid:f?"error":null,autoFocus:d,readOnly:g,name:e,min:n,max:o,step:a,onFocus:s,onBlur:i}))},w2=(e,t)=>{let r=t&&Object.entries(t).find(([n,o])=>o===e);return r?r[0]:void 0},Fl=(e,t)=>e&&t?Object.entries(t).filter(r=>e.includes(r[1])).map(r=>r[0]):[],S2=(e,t)=>e&&t&&e.map(r=>t[r]),DM=W.div(({isInline:e})=>e?{display:"flex",flexWrap:"wrap",alignItems:"flex-start",label:{display:"inline-flex",marginRight:15}}:{label:{display:"flex"}},e=>{if(e["aria-readonly"]==="true")return{input:{cursor:"not-allowed"}}}),FM=W.span({"[aria-readonly=true] &":{opacity:.5}}),jM=W.label({lineHeight:"20px",alignItems:"center",marginBottom:8,"&:last-child":{marginBottom:0},input:{margin:0,marginRight:6}}),Tv=({name:e,options:t,value:r,onChange:n,isInline:o,argType:a})=>{if(!t)return Bo.warn(`Checkbox with no options: ${e}`),E.createElement(E.Fragment,null,"-");let i=Fl(r,t),[s,l]=he(i),u=!!a?.table?.readonly,c=y=>{let f=y.target.value,h=[...s];h.includes(f)?h.splice(h.indexOf(f),1):h.push(f),n(S2(h,t)),l(h)};ze(()=>{l(Fl(r,t))},[r]);let d=tt(e);return E.createElement(DM,{"aria-readonly":u,isInline:o},Object.keys(t).map((y,f)=>{let h=`${d}-${f}`;return E.createElement(jM,{key:h,htmlFor:h},E.createElement("input",{type:"checkbox",disabled:u,id:h,name:h,value:y,onChange:c,checked:s?.includes(y)}),E.createElement(FM,null,y))}))},NM=W.div(({isInline:e})=>e?{display:"flex",flexWrap:"wrap",alignItems:"flex-start",label:{display:"inline-flex",marginRight:15}}:{label:{display:"flex"}},e=>{if(e["aria-readonly"]==="true")return{input:{cursor:"not-allowed"}}}),BM=W.span({"[aria-readonly=true] &":{opacity:.5}}),LM=W.label({lineHeight:"20px",alignItems:"center",marginBottom:8,"&:last-child":{marginBottom:0},input:{margin:0,marginRight:6}}),Cv=({name:e,options:t,value:r,onChange:n,isInline:o,argType:a})=>{if(!t)return Bo.warn(`Radio with no options: ${e}`),E.createElement(E.Fragment,null,"-");let i=w2(r,t),s=tt(e),l=!!a?.table?.readonly;return E.createElement(NM,{"aria-readonly":l,isInline:o},Object.keys(t).map((u,c)=>{let d=`${s}-${c}`;return E.createElement(LM,{key:d,htmlFor:d},E.createElement("input",{type:"radio",id:d,name:s,disabled:l,value:u,onChange:y=>n(t[y.currentTarget.value]),checked:u===i}),E.createElement(BM,null,u))}))},qM={appearance:"none",border:"0 none",boxSizing:"inherit",display:" block",margin:" 0",background:"transparent",padding:0,fontSize:"inherit",position:"relative"},A2=W.select(qM,({theme:e})=>({boxSizing:"border-box",position:"relative",padding:"6px 10px",width:"100%",color:e.input.color||"inherit",background:e.input.background,borderRadius:e.input.borderRadius,boxShadow:`${e.input.border} 0 0 0 1px inset`,fontSize:e.typography.size.s2-1,lineHeight:"20px","&:focus":{boxShadow:`${e.color.secondary} 0 0 0 1px inset`,outline:"none"},"&[disabled]":{cursor:"not-allowed",opacity:.5},"::placeholder":{color:e.textMutedColor},"&[multiple]":{overflow:"auto",padding:0,option:{display:"block",padding:"6px 10px",marginLeft:1,marginRight:1}}})),T2=W.span(({theme:e})=>({display:"inline-block",lineHeight:"normal",overflow:"hidden",position:"relative",verticalAlign:"top",width:"100%",svg:{position:"absolute",zIndex:1,pointerEvents:"none",height:"12px",marginTop:"-6px",right:"12px",top:"50%",fill:e.textMutedColor,path:{fill:e.textMutedColor}}})),_v="Choose option...",MM=({name:e,value:t,options:r,onChange:n,argType:o})=>{let a=u=>{n(r[u.currentTarget.value])},i=w2(t,r)||_v,s=tt(e),l=!!o?.table?.readonly;return E.createElement(T2,null,E.createElement(ai,null),E.createElement(A2,{disabled:l,id:s,value:i,onChange:a},E.createElement("option",{key:"no-selection",disabled:!0},_v),Object.keys(r).map(u=>E.createElement("option",{key:u,value:u},u))))},UM=({name:e,value:t,options:r,onChange:n,argType:o})=>{let a=u=>{let c=Array.from(u.currentTarget.options).filter(d=>d.selected).map(d=>d.value);n(S2(c,r))},i=Fl(t,r),s=tt(e),l=!!o?.table?.readonly;return E.createElement(T2,null,E.createElement(A2,{disabled:l,id:s,multiple:!0,value:i,onChange:a},Object.keys(r).map(u=>E.createElement("option",{key:u,value:u},u))))},Ov=e=>{let{name:t,options:r}=e;return r?e.isMulti?E.createElement(UM,{...e}):E.createElement(MM,{...e}):(Bo.warn(`Select with no options: ${t}`),E.createElement(E.Fragment,null,"-"))},JM=(e,t)=>Array.isArray(e)?e.reduce((r,n)=>(r[t?.[n]||String(n)]=n,r),{}):e,$M={check:Tv,"inline-check":Tv,radio:Cv,"inline-radio":Cv,select:Ov,"multi-select":Ov},Zr=e=>{let{type:t="select",labels:r,argType:n}=e,o={...e,argType:n,options:n?JM(n.options,r):{},isInline:t.includes("inline"),isMulti:t.includes("multi")},a=$M[t];if(a)return E.createElement(a,{...o});throw new Error(`Unknown options type: ${t}`)},$l="value",zM="key",VM="Error",HM="Object",GM="Array",WM="String",KM="Number",YM="Boolean",XM="Date",QM="Null",ZM="Undefined",e4="Function",t4="Symbol",C2="ADD_DELTA_TYPE",_2="REMOVE_DELTA_TYPE",O2="UPDATE_DELTA_TYPE";function vr(e){return e!==null&&typeof e=="object"&&!Array.isArray(e)&&typeof e[Symbol.iterator]=="function"?"Iterable":Object.prototype.toString.call(e).slice(8,-1)}function I2(e,t){let r=vr(e),n=vr(t);return(r==="Function"||n==="Function")&&n!==r}var zl=class extends jt{constructor(e){super(e),this.state={inputRefKey:null,inputRefValue:null},this.refInputValue=this.refInputValue.bind(this),this.refInputKey=this.refInputKey.bind(this),this.onKeydown=this.onKeydown.bind(this),this.onSubmit=this.onSubmit.bind(this)}componentDidMount(){let{inputRefKey:e,inputRefValue:t}=this.state,{onlyValue:r}=this.props;e&&typeof e.focus=="function"&&e.focus(),r&&t&&typeof t.focus=="function"&&t.focus(),document.addEventListener("keydown",this.onKeydown)}componentWillUnmount(){document.removeEventListener("keydown",this.onKeydown)}onKeydown(e){e.altKey||e.ctrlKey||e.metaKey||e.shiftKey||e.repeat||((e.code==="Enter"||e.key==="Enter")&&(e.preventDefault(),this.onSubmit()),(e.code==="Escape"||e.key==="Escape")&&(e.preventDefault(),this.props.handleCancel()))}onSubmit(){let{handleAdd:e,onlyValue:t,onSubmitValueParser:r,keyPath:n,deep:o}=this.props,{inputRefKey:a,inputRefValue:i}=this.state,s={};if(!t){if(!a.value)return;s.key=a.value}s.newValue=r(!1,n,o,s.key,i.value),e(s)}refInputKey(e){this.state.inputRefKey=e}refInputValue(e){this.state.inputRefValue=e}render(){let{handleCancel:e,onlyValue:t,addButtonElement:r,cancelButtonElement:n,inputElementGenerator:o,keyPath:a,deep:i}=this.props,s=Oe(r,{onClick:this.onSubmit}),l=Oe(n,{onClick:e}),u=o($l,a,i),c=Oe(u,{placeholder:"Value",ref:this.refInputValue}),d=null;if(!t){let y=o(zM,a,i);d=Oe(y,{placeholder:"Key",ref:this.refInputKey})}return E.createElement("span",{className:"rejt-add-value-node"},d,c,l,s)}};zl.defaultProps={onlyValue:!1,addButtonElement:E.createElement("button",null,"+"),cancelButtonElement:E.createElement("button",null,"c")};var P2=class extends jt{constructor(e){super(e);let t=[...e.keyPath,e.name];this.state={data:e.data,name:e.name,keyPath:t,deep:e.deep,nextDeep:e.deep+1,collapsed:e.isCollapsed(t,e.deep,e.data),addFormVisible:!1},this.handleCollapseMode=this.handleCollapseMode.bind(this),this.handleRemoveItem=this.handleRemoveItem.bind(this),this.handleAddMode=this.handleAddMode.bind(this),this.handleAddValueAdd=this.handleAddValueAdd.bind(this),this.handleAddValueCancel=this.handleAddValueCancel.bind(this),this.handleEditValue=this.handleEditValue.bind(this),this.onChildUpdate=this.onChildUpdate.bind(this),this.renderCollapsed=this.renderCollapsed.bind(this),this.renderNotCollapsed=this.renderNotCollapsed.bind(this)}static getDerivedStateFromProps(e,t){return e.data!==t.data?{data:e.data}:null}onChildUpdate(e,t){let{data:r,keyPath:n}=this.state;r[e]=t,this.setState({data:r});let{onUpdate:o}=this.props,a=n.length;o(n[a-1],r)}handleAddMode(){this.setState({addFormVisible:!0})}handleCollapseMode(){this.setState(e=>({collapsed:!e.collapsed}))}handleRemoveItem(e){return()=>{let{beforeRemoveAction:t,logger:r}=this.props,{data:n,keyPath:o,nextDeep:a}=this.state,i=n[e];t(e,o,a,i).then(()=>{let s={keyPath:o,deep:a,key:e,oldValue:i,type:_2};n.splice(e,1),this.setState({data:n});let{onUpdate:l,onDeltaUpdate:u}=this.props;l(o[o.length-1],n),u(s)}).catch(r.error)}}handleAddValueAdd({newValue:e}){let{data:t,keyPath:r,nextDeep:n}=this.state,{beforeAddAction:o,logger:a}=this.props;o(t.length,r,n,e).then(()=>{let i=[...t,e];this.setState({data:i}),this.handleAddValueCancel();let{onUpdate:s,onDeltaUpdate:l}=this.props;s(r[r.length-1],i),l({type:C2,keyPath:r,deep:n,key:i.length-1,newValue:e})}).catch(a.error)}handleAddValueCancel(){this.setState({addFormVisible:!1})}handleEditValue({key:e,value:t}){return new Promise((r,n)=>{let{beforeUpdateAction:o}=this.props,{data:a,keyPath:i,nextDeep:s}=this.state,l=a[e];o(e,i,s,l,t).then(()=>{a[e]=t,this.setState({data:a});let{onUpdate:u,onDeltaUpdate:c}=this.props;u(i[i.length-1],a),c({type:O2,keyPath:i,deep:s,key:e,newValue:t,oldValue:l}),r(void 0)}).catch(n)})}renderCollapsed(){let{name:e,data:t,keyPath:r,deep:n}=this.state,{handleRemove:o,readOnly:a,getStyle:i,dataType:s,minusMenuElement:l}=this.props,{minus:u,collapsed:c}=i(e,t,r,n,s),d=a(e,t,r,n,s),y=Oe(l,{onClick:o,className:"rejt-minus-menu",style:u});return E.createElement("span",{className:"rejt-collapsed"},E.createElement("span",{className:"rejt-collapsed-text",style:c,onClick:this.handleCollapseMode},"[...] ",t.length," ",t.length===1?"item":"items"),!d&&y)}renderNotCollapsed(){let{name:e,data:t,keyPath:r,deep:n,addFormVisible:o,nextDeep:a}=this.state,{isCollapsed:i,handleRemove:s,onDeltaUpdate:l,readOnly:u,getStyle:c,dataType:d,addButtonElement:y,cancelButtonElement:f,editButtonElement:h,inputElementGenerator:g,textareaElementGenerator:_,minusMenuElement:v,plusMenuElement:x,beforeRemoveAction:O,beforeAddAction:C,beforeUpdateAction:I,logger:P,onSubmitValueParser:F}=this.props,{minus:D,plus:U,delimiter:G,ul:X,addForm:Q}=c(e,t,r,n,d),V=u(e,t,r,n,d),R=Oe(x,{onClick:this.handleAddMode,className:"rejt-plus-menu",style:U}),q=Oe(v,{onClick:s,className:"rejt-minus-menu",style:D});return E.createElement("span",{className:"rejt-not-collapsed"},E.createElement("span",{className:"rejt-not-collapsed-delimiter",style:G},"["),!o&&R,E.createElement("ul",{className:"rejt-not-collapsed-list",style:X},t.map((M,Y)=>E.createElement(ka,{key:Y,name:Y.toString(),data:M,keyPath:r,deep:a,isCollapsed:i,handleRemove:this.handleRemoveItem(Y),handleUpdateValue:this.handleEditValue,onUpdate:this.onChildUpdate,onDeltaUpdate:l,readOnly:u,getStyle:c,addButtonElement:y,cancelButtonElement:f,editButtonElement:h,inputElementGenerator:g,textareaElementGenerator:_,minusMenuElement:v,plusMenuElement:x,beforeRemoveAction:O,beforeAddAction:C,beforeUpdateAction:I,logger:P,onSubmitValueParser:F}))),!V&&o&&E.createElement("div",{className:"rejt-add-form",style:Q},E.createElement(zl,{handleAdd:this.handleAddValueAdd,handleCancel:this.handleAddValueCancel,onlyValue:!0,addButtonElement:y,cancelButtonElement:f,inputElementGenerator:g,keyPath:r,deep:n,onSubmitValueParser:F})),E.createElement("span",{className:"rejt-not-collapsed-delimiter",style:G},"]"),!V&&q)}render(){let{name:e,collapsed:t,data:r,keyPath:n,deep:o}=this.state,{dataType:a,getStyle:i}=this.props,s=t?this.renderCollapsed():this.renderNotCollapsed(),l=i(e,r,n,o,a);return E.createElement("div",{className:"rejt-array-node"},E.createElement("span",{onClick:this.handleCollapseMode},E.createElement("span",{className:"rejt-name",style:l.name},e," :"," ")),s)}};P2.defaultProps={keyPath:[],deep:0,minusMenuElement:E.createElement("span",null," - "),plusMenuElement:E.createElement("span",null," + ")};var k2=class extends jt{constructor(e){super(e);let t=[...e.keyPath,e.name];this.state={value:e.value,name:e.name,keyPath:t,deep:e.deep,editEnabled:!1,inputRef:null},this.handleEditMode=this.handleEditMode.bind(this),this.refInput=this.refInput.bind(this),this.handleCancelEdit=this.handleCancelEdit.bind(this),this.handleEdit=this.handleEdit.bind(this),this.onKeydown=this.onKeydown.bind(this)}static getDerivedStateFromProps(e,t){return e.value!==t.value?{value:e.value}:null}componentDidUpdate(){let{editEnabled:e,inputRef:t,name:r,value:n,keyPath:o,deep:a}=this.state,{readOnly:i,dataType:s}=this.props,l=i(r,n,o,a,s);e&&!l&&typeof t.focus=="function"&&t.focus()}componentDidMount(){document.addEventListener("keydown",this.onKeydown)}componentWillUnmount(){document.removeEventListener("keydown",this.onKeydown)}onKeydown(e){e.altKey||e.ctrlKey||e.metaKey||e.shiftKey||e.repeat||((e.code==="Enter"||e.key==="Enter")&&(e.preventDefault(),this.handleEdit()),(e.code==="Escape"||e.key==="Escape")&&(e.preventDefault(),this.handleCancelEdit()))}handleEdit(){let{handleUpdateValue:e,originalValue:t,logger:r,onSubmitValueParser:n,keyPath:o}=this.props,{inputRef:a,name:i,deep:s}=this.state;if(!a)return;let l=n(!0,o,s,i,a.value);e({value:l,key:i}).then(()=>{I2(t,l)||this.handleCancelEdit()}).catch(r.error)}handleEditMode(){this.setState({editEnabled:!0})}refInput(e){this.state.inputRef=e}handleCancelEdit(){this.setState({editEnabled:!1})}render(){let{name:e,value:t,editEnabled:r,keyPath:n,deep:o}=this.state,{handleRemove:a,originalValue:i,readOnly:s,dataType:l,getStyle:u,editButtonElement:c,cancelButtonElement:d,textareaElementGenerator:y,minusMenuElement:f,keyPath:h}=this.props,g=u(e,i,n,o,l),_=null,v=null,x=s(e,i,n,o,l);if(r&&!x){let O=y($l,h,o,e,i,l),C=Oe(c,{onClick:this.handleEdit}),I=Oe(d,{onClick:this.handleCancelEdit}),P=Oe(O,{ref:this.refInput,defaultValue:i});_=E.createElement("span",{className:"rejt-edit-form",style:g.editForm},P," ",I,C),v=null}else{_=E.createElement("span",{className:"rejt-value",style:g.value,onClick:x?null:this.handleEditMode},t);let O=Oe(f,{onClick:a,className:"rejt-minus-menu",style:g.minus});v=x?null:O}return E.createElement("li",{className:"rejt-function-value-node",style:g.li},E.createElement("span",{className:"rejt-name",style:g.name},e," :"," "),_,v)}};k2.defaultProps={keyPath:[],deep:0,handleUpdateValue:()=>{},editButtonElement:E.createElement("button",null,"e"),cancelButtonElement:E.createElement("button",null,"c"),minusMenuElement:E.createElement("span",null," - ")};var ka=class extends jt{constructor(e){super(e),this.state={data:e.data,name:e.name,keyPath:e.keyPath,deep:e.deep}}static getDerivedStateFromProps(e,t){return e.data!==t.data?{data:e.data}:null}render(){let{data:e,name:t,keyPath:r,deep:n}=this.state,{isCollapsed:o,handleRemove:a,handleUpdateValue:i,onUpdate:s,onDeltaUpdate:l,readOnly:u,getStyle:c,addButtonElement:d,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,textareaElementGenerator:g,minusMenuElement:_,plusMenuElement:v,beforeRemoveAction:x,beforeAddAction:O,beforeUpdateAction:C,logger:I,onSubmitValueParser:P}=this.props,F=()=>!0,D=vr(e);switch(D){case VM:return E.createElement(jl,{data:e,name:t,isCollapsed:o,keyPath:r,deep:n,handleRemove:a,onUpdate:s,onDeltaUpdate:l,readOnly:F,dataType:D,getStyle:c,addButtonElement:d,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,textareaElementGenerator:g,minusMenuElement:_,plusMenuElement:v,beforeRemoveAction:x,beforeAddAction:O,beforeUpdateAction:C,logger:I,onSubmitValueParser:P});case HM:return E.createElement(jl,{data:e,name:t,isCollapsed:o,keyPath:r,deep:n,handleRemove:a,onUpdate:s,onDeltaUpdate:l,readOnly:u,dataType:D,getStyle:c,addButtonElement:d,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,textareaElementGenerator:g,minusMenuElement:_,plusMenuElement:v,beforeRemoveAction:x,beforeAddAction:O,beforeUpdateAction:C,logger:I,onSubmitValueParser:P});case GM:return E.createElement(P2,{data:e,name:t,isCollapsed:o,keyPath:r,deep:n,handleRemove:a,onUpdate:s,onDeltaUpdate:l,readOnly:u,dataType:D,getStyle:c,addButtonElement:d,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,textareaElementGenerator:g,minusMenuElement:_,plusMenuElement:v,beforeRemoveAction:x,beforeAddAction:O,beforeUpdateAction:C,logger:I,onSubmitValueParser:P});case WM:return E.createElement(Kt,{name:t,value:`"${e}"`,originalValue:e,keyPath:r,deep:n,handleRemove:a,handleUpdateValue:i,readOnly:u,dataType:D,getStyle:c,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,minusMenuElement:_,logger:I,onSubmitValueParser:P});case KM:return E.createElement(Kt,{name:t,value:e,originalValue:e,keyPath:r,deep:n,handleRemove:a,handleUpdateValue:i,readOnly:u,dataType:D,getStyle:c,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,minusMenuElement:_,logger:I,onSubmitValueParser:P});case YM:return E.createElement(Kt,{name:t,value:e?"true":"false",originalValue:e,keyPath:r,deep:n,handleRemove:a,handleUpdateValue:i,readOnly:u,dataType:D,getStyle:c,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,minusMenuElement:_,logger:I,onSubmitValueParser:P});case XM:return E.createElement(Kt,{name:t,value:e.toISOString(),originalValue:e,keyPath:r,deep:n,handleRemove:a,handleUpdateValue:i,readOnly:F,dataType:D,getStyle:c,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,minusMenuElement:_,logger:I,onSubmitValueParser:P});case QM:return E.createElement(Kt,{name:t,value:"null",originalValue:"null",keyPath:r,deep:n,handleRemove:a,handleUpdateValue:i,readOnly:u,dataType:D,getStyle:c,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,minusMenuElement:_,logger:I,onSubmitValueParser:P});case ZM:return E.createElement(Kt,{name:t,value:"undefined",originalValue:"undefined",keyPath:r,deep:n,handleRemove:a,handleUpdateValue:i,readOnly:u,dataType:D,getStyle:c,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,minusMenuElement:_,logger:I,onSubmitValueParser:P});case e4:return E.createElement(k2,{name:t,value:e.toString(),originalValue:e,keyPath:r,deep:n,handleRemove:a,handleUpdateValue:i,readOnly:u,dataType:D,getStyle:c,cancelButtonElement:y,editButtonElement:f,textareaElementGenerator:g,minusMenuElement:_,logger:I,onSubmitValueParser:P});case t4:return E.createElement(Kt,{name:t,value:e.toString(),originalValue:e,keyPath:r,deep:n,handleRemove:a,handleUpdateValue:i,readOnly:F,dataType:D,getStyle:c,cancelButtonElement:y,editButtonElement:f,inputElementGenerator:h,minusMenuElement:_,logger:I,onSubmitValueParser:P});default:return null}}};ka.defaultProps={keyPath:[],deep:0};var jl=class extends jt{constructor(e){super(e);let t=e.deep===-1?[]:[...e.keyPath,e.name];this.state={name:e.name,data:e.data,keyPath:t,deep:e.deep,nextDeep:e.deep+1,collapsed:e.isCollapsed(t,e.deep,e.data),addFormVisible:!1},this.handleCollapseMode=this.handleCollapseMode.bind(this),this.handleRemoveValue=this.handleRemoveValue.bind(this),this.handleAddMode=this.handleAddMode.bind(this),this.handleAddValueAdd=this.handleAddValueAdd.bind(this),this.handleAddValueCancel=this.handleAddValueCancel.bind(this),this.handleEditValue=this.handleEditValue.bind(this),this.onChildUpdate=this.onChildUpdate.bind(this),this.renderCollapsed=this.renderCollapsed.bind(this),this.renderNotCollapsed=this.renderNotCollapsed.bind(this)}static getDerivedStateFromProps(e,t){return e.data!==t.data?{data:e.data}:null}onChildUpdate(e,t){let{data:r,keyPath:n}=this.state;r[e]=t,this.setState({data:r});let{onUpdate:o}=this.props,a=n.length;o(n[a-1],r)}handleAddMode(){this.setState({addFormVisible:!0})}handleAddValueCancel(){this.setState({addFormVisible:!1})}handleAddValueAdd({key:e,newValue:t}){let{data:r,keyPath:n,nextDeep:o}=this.state,{beforeAddAction:a,logger:i}=this.props;a(e,n,o,t).then(()=>{r[e]=t,this.setState({data:r}),this.handleAddValueCancel();let{onUpdate:s,onDeltaUpdate:l}=this.props;s(n[n.length-1],r),l({type:C2,keyPath:n,deep:o,key:e,newValue:t})}).catch(i.error)}handleRemoveValue(e){return()=>{let{beforeRemoveAction:t,logger:r}=this.props,{data:n,keyPath:o,nextDeep:a}=this.state,i=n[e];t(e,o,a,i).then(()=>{let s={keyPath:o,deep:a,key:e,oldValue:i,type:_2};delete n[e],this.setState({data:n});let{onUpdate:l,onDeltaUpdate:u}=this.props;l(o[o.length-1],n),u(s)}).catch(r.error)}}handleCollapseMode(){this.setState(e=>({collapsed:!e.collapsed}))}handleEditValue({key:e,value:t}){return new Promise((r,n)=>{let{beforeUpdateAction:o}=this.props,{data:a,keyPath:i,nextDeep:s}=this.state,l=a[e];o(e,i,s,l,t).then(()=>{a[e]=t,this.setState({data:a});let{onUpdate:u,onDeltaUpdate:c}=this.props;u(i[i.length-1],a),c({type:O2,keyPath:i,deep:s,key:e,newValue:t,oldValue:l}),r()}).catch(n)})}renderCollapsed(){let{name:e,keyPath:t,deep:r,data:n}=this.state,{handleRemove:o,readOnly:a,dataType:i,getStyle:s,minusMenuElement:l}=this.props,{minus:u,collapsed:c}=s(e,n,t,r,i),d=Object.getOwnPropertyNames(n),y=a(e,n,t,r,i),f=Oe(l,{onClick:o,className:"rejt-minus-menu",style:u});return E.createElement("span",{className:"rejt-collapsed"},E.createElement("span",{className:"rejt-collapsed-text",style:c,onClick:this.handleCollapseMode},"{...}"," ",d.length," ",d.length===1?"key":"keys"),!y&&f)}renderNotCollapsed(){let{name:e,data:t,keyPath:r,deep:n,nextDeep:o,addFormVisible:a}=this.state,{isCollapsed:i,handleRemove:s,onDeltaUpdate:l,readOnly:u,getStyle:c,dataType:d,addButtonElement:y,cancelButtonElement:f,editButtonElement:h,inputElementGenerator:g,textareaElementGenerator:_,minusMenuElement:v,plusMenuElement:x,beforeRemoveAction:O,beforeAddAction:C,beforeUpdateAction:I,logger:P,onSubmitValueParser:F}=this.props,{minus:D,plus:U,addForm:G,ul:X,delimiter:Q}=c(e,t,r,n,d),V=Object.getOwnPropertyNames(t),R=u(e,t,r,n,d),q=Oe(x,{onClick:this.handleAddMode,className:"rejt-plus-menu",style:U}),M=Oe(v,{onClick:s,className:"rejt-minus-menu",style:D}),Y=V.map(te=>E.createElement(ka,{key:te,name:te,data:t[te],keyPath:r,deep:o,isCollapsed:i,handleRemove:this.handleRemoveValue(te),handleUpdateValue:this.handleEditValue,onUpdate:this.onChildUpdate,onDeltaUpdate:l,readOnly:u,getStyle:c,addButtonElement:y,cancelButtonElement:f,editButtonElement:h,inputElementGenerator:g,textareaElementGenerator:_,minusMenuElement:v,plusMenuElement:x,beforeRemoveAction:O,beforeAddAction:C,beforeUpdateAction:I,logger:P,onSubmitValueParser:F}));return E.createElement("span",{className:"rejt-not-collapsed"},E.createElement("span",{className:"rejt-not-collapsed-delimiter",style:Q},"{"),!R&&q,E.createElement("ul",{className:"rejt-not-collapsed-list",style:X},Y),!R&&a&&E.createElement("div",{className:"rejt-add-form",style:G},E.createElement(zl,{handleAdd:this.handleAddValueAdd,handleCancel:this.handleAddValueCancel,addButtonElement:y,cancelButtonElement:f,inputElementGenerator:g,keyPath:r,deep:n,onSubmitValueParser:F})),E.createElement("span",{className:"rejt-not-collapsed-delimiter",style:Q},"}"),!R&&M)}render(){let{name:e,collapsed:t,data:r,keyPath:n,deep:o}=this.state,{getStyle:a,dataType:i}=this.props,s=t?this.renderCollapsed():this.renderNotCollapsed(),l=a(e,r,n,o,i);return E.createElement("div",{className:"rejt-object-node"},E.createElement("span",{onClick:this.handleCollapseMode},E.createElement("span",{className:"rejt-name",style:l.name},e," :"," ")),s)}};jl.defaultProps={keyPath:[],deep:0,minusMenuElement:E.createElement("span",null," - "),plusMenuElement:E.createElement("span",null," + ")};var Kt=class extends jt{constructor(e){super(e);let t=[...e.keyPath,e.name];this.state={value:e.value,name:e.name,keyPath:t,deep:e.deep,editEnabled:!1,inputRef:null},this.handleEditMode=this.handleEditMode.bind(this),this.refInput=this.refInput.bind(this),this.handleCancelEdit=this.handleCancelEdit.bind(this),this.handleEdit=this.handleEdit.bind(this),this.onKeydown=this.onKeydown.bind(this)}static getDerivedStateFromProps(e,t){return e.value!==t.value?{value:e.value}:null}componentDidUpdate(){let{editEnabled:e,inputRef:t,name:r,value:n,keyPath:o,deep:a}=this.state,{readOnly:i,dataType:s}=this.props,l=i(r,n,o,a,s);e&&!l&&typeof t.focus=="function"&&t.focus()}componentDidMount(){document.addEventListener("keydown",this.onKeydown)}componentWillUnmount(){document.removeEventListener("keydown",this.onKeydown)}onKeydown(e){e.altKey||e.ctrlKey||e.metaKey||e.shiftKey||e.repeat||((e.code==="Enter"||e.key==="Enter")&&(e.preventDefault(),this.handleEdit()),(e.code==="Escape"||e.key==="Escape")&&(e.preventDefault(),this.handleCancelEdit()))}handleEdit(){let{handleUpdateValue:e,originalValue:t,logger:r,onSubmitValueParser:n,keyPath:o}=this.props,{inputRef:a,name:i,deep:s}=this.state;if(!a)return;let l=n(!0,o,s,i,a.value);e({value:l,key:i}).then(()=>{I2(t,l)||this.handleCancelEdit()}).catch(r.error)}handleEditMode(){this.setState({editEnabled:!0})}refInput(e){this.state.inputRef=e}handleCancelEdit(){this.setState({editEnabled:!1})}render(){let{name:e,value:t,editEnabled:r,keyPath:n,deep:o}=this.state,{handleRemove:a,originalValue:i,readOnly:s,dataType:l,getStyle:u,editButtonElement:c,cancelButtonElement:d,inputElementGenerator:y,minusMenuElement:f,keyPath:h}=this.props,g=u(e,i,n,o,l),_=s(e,i,n,o,l),v=r&&!_,x=y($l,h,o,e,i,l),O=Oe(c,{onClick:this.handleEdit}),C=Oe(d,{onClick:this.handleCancelEdit}),I=Oe(x,{ref:this.refInput,defaultValue:JSON.stringify(i)}),P=Oe(f,{onClick:a,className:"rejt-minus-menu",style:g.minus});return E.createElement("li",{className:"rejt-value-node",style:g.li},E.createElement("span",{className:"rejt-name",style:g.name},e," : "),v?E.createElement("span",{className:"rejt-edit-form",style:g.editForm},I," ",C,O):E.createElement("span",{className:"rejt-value",style:g.value,onClick:_?null:this.handleEditMode},String(t)),!_&&!v&&P)}};Kt.defaultProps={keyPath:[],deep:0,handleUpdateValue:()=>Promise.resolve(),editButtonElement:E.createElement("button",null,"e"),cancelButtonElement:E.createElement("button",null,"c"),minusMenuElement:E.createElement("span",null," - ")};var r4={minus:{color:"red"},plus:{color:"green"},collapsed:{color:"grey"},delimiter:{},ul:{padding:"0px",margin:"0 0 0 25px",listStyle:"none"},name:{color:"#2287CD"},addForm:{}},n4={minus:{color:"red"},plus:{color:"green"},collapsed:{color:"grey"},delimiter:{},ul:{padding:"0px",margin:"0 0 0 25px",listStyle:"none"},name:{color:"#2287CD"},addForm:{}},o4={minus:{color:"red"},editForm:{},value:{color:"#7bba3d"},li:{minHeight:"22px",lineHeight:"22px",outline:"0px"},name:{color:"#2287CD"}};function a4(e){let t=e;if(t.indexOf("function")===0)return(0,eval)(`(${t})`);try{t=JSON.parse(e)}catch{}return t}var R2=class extends jt{constructor(e){super(e),this.state={data:e.data,rootName:e.rootName},this.onUpdate=this.onUpdate.bind(this),this.removeRoot=this.removeRoot.bind(this)}static getDerivedStateFromProps(e,t){return e.data!==t.data||e.rootName!==t.rootName?{data:e.data,rootName:e.rootName}:null}onUpdate(e,t){this.setState({data:t}),this.props.onFullyUpdate(t)}removeRoot(){this.onUpdate(null,null)}render(){let{data:e,rootName:t}=this.state,{isCollapsed:r,onDeltaUpdate:n,readOnly:o,getStyle:a,addButtonElement:i,cancelButtonElement:s,editButtonElement:l,inputElement:u,textareaElement:c,minusMenuElement:d,plusMenuElement:y,beforeRemoveAction:f,beforeAddAction:h,beforeUpdateAction:g,logger:_,onSubmitValueParser:v,fallback:x=null}=this.props,O=vr(e),C=o;vr(o)==="Boolean"&&(C=()=>o);let I=u;u&&vr(u)!=="Function"&&(I=()=>u);let P=c;return c&&vr(c)!=="Function"&&(P=()=>c),O==="Object"||O==="Array"?E.createElement("div",{className:"rejt-tree"},E.createElement(ka,{data:e,name:t,deep:-1,isCollapsed:r,onUpdate:this.onUpdate,onDeltaUpdate:n,readOnly:C,getStyle:a,addButtonElement:i,cancelButtonElement:s,editButtonElement:l,inputElementGenerator:I,textareaElementGenerator:P,minusMenuElement:d,plusMenuElement:y,handleRemove:this.removeRoot,beforeRemoveAction:f,beforeAddAction:h,beforeUpdateAction:g,logger:_,onSubmitValueParser:v})):x}};R2.defaultProps={rootName:"root",isCollapsed:(e,t)=>t!==-1,getStyle:(e,t,r,n,o)=>{switch(o){case"Object":case"Error":return r4;case"Array":return n4;default:return o4}},readOnly:()=>!1,onFullyUpdate:()=>{},onDeltaUpdate:()=>{},beforeRemoveAction:()=>Promise.resolve(),beforeAddAction:()=>Promise.resolve(),beforeUpdateAction:()=>Promise.resolve(),logger:{error:()=>{}},onSubmitValueParser:(e,t,r,n,o)=>a4(o),inputElement:()=>E.createElement("input",null),textareaElement:()=>E.createElement("textarea",null),fallback:null};var{window:i4}=xt,s4=W.div(({theme:e})=>({position:"relative",display:"flex",'&[aria-readonly="true"]':{opacity:.5},".rejt-tree":{marginLeft:"1rem",fontSize:"13px"},".rejt-value-node, .rejt-object-node > .rejt-collapsed, .rejt-array-node > .rejt-collapsed, .rejt-object-node > .rejt-not-collapsed, .rejt-array-node > .rejt-not-collapsed":{"& > svg":{opacity:0,transition:"opacity 0.2s"}},".rejt-value-node:hover, .rejt-object-node:hover > .rejt-collapsed, .rejt-array-node:hover > .rejt-collapsed, .rejt-object-node:hover > .rejt-not-collapsed, .rejt-array-node:hover > .rejt-not-collapsed":{"& > svg":{opacity:1}},".rejt-edit-form button":{display:"none"},".rejt-add-form":{marginLeft:10},".rejt-add-value-node":{display:"inline-flex",alignItems:"center"},".rejt-name":{lineHeight:"22px"},".rejt-not-collapsed-delimiter":{lineHeight:"22px"},".rejt-plus-menu":{marginLeft:5},".rejt-object-node > span > *, .rejt-array-node > span > *":{position:"relative",zIndex:2},".rejt-object-node, .rejt-array-node":{position:"relative"},".rejt-object-node > span:first-of-type::after, .rejt-array-node > span:first-of-type::after, .rejt-collapsed::before, .rejt-not-collapsed::before":{content:'""',position:"absolute",top:0,display:"block",width:"100%",marginLeft:"-1rem",padding:"0 4px 0 1rem",height:22},".rejt-collapsed::before, .rejt-not-collapsed::before":{zIndex:1,background:"transparent",borderRadius:4,transition:"background 0.2s",pointerEvents:"none",opacity:.1},".rejt-object-node:hover, .rejt-array-node:hover":{"& > .rejt-collapsed::before, & > .rejt-not-collapsed::before":{background:e.color.secondary}},".rejt-collapsed::after, .rejt-not-collapsed::after":{content:'""',position:"absolute",display:"inline-block",pointerEvents:"none",width:0,height:0},".rejt-collapsed::after":{left:-8,top:8,borderTop:"3px solid transparent",borderBottom:"3px solid transparent",borderLeft:"3px solid rgba(153,153,153,0.6)"},".rejt-not-collapsed::after":{left:-10,top:10,borderTop:"3px solid rgba(153,153,153,0.6)",borderLeft:"3px solid transparent",borderRight:"3px solid transparent"},".rejt-value":{display:"inline-block",border:"1px solid transparent",borderRadius:4,margin:"1px 0",padding:"0 4px",cursor:"text",color:e.color.defaultText},".rejt-value-node:hover > .rejt-value":{background:e.color.lighter,borderColor:e.appBorderColor}})),Al=W.button(({theme:e,primary:t})=>({border:0,height:20,margin:1,borderRadius:4,background:t?e.color.secondary:"transparent",color:t?e.color.lightest:e.color.dark,fontWeight:t?"bold":"normal",cursor:"pointer",order:t?"initial":9})),l4=W(oi)(({theme:e,disabled:t})=>({display:"inline-block",verticalAlign:"middle",width:15,height:15,padding:3,marginLeft:5,cursor:t?"not-allowed":"pointer",color:e.textMutedColor,"&:hover":t?{}:{color:e.color.ancillary},"svg + &":{marginLeft:0}})),u4=W($u)(({theme:e,disabled:t})=>({display:"inline-block",verticalAlign:"middle",width:15,height:15,padding:3,marginLeft:5,cursor:t?"not-allowed":"pointer",color:e.textMutedColor,"&:hover":t?{}:{color:e.color.negative},"svg + &":{marginLeft:0}})),Iv=W.input(({theme:e,placeholder:t})=>({outline:0,margin:t?1:"1px 0",padding:"3px 4px",color:e.color.defaultText,background:e.background.app,border:`1px solid ${e.appBorderColor}`,borderRadius:4,lineHeight:"14px",width:t==="Key"?80:120,"&:focus":{border:`1px solid ${e.color.secondary}`}})),c4=W(ht)(({theme:e})=>({position:"absolute",zIndex:2,top:2,right:2,height:21,padding:"0 3px",background:e.background.bar,border:`1px solid ${e.appBorderColor}`,borderRadius:3,color:e.textMutedColor,fontSize:"9px",fontWeight:"bold",textDecoration:"none",span:{marginLeft:3,marginTop:1}})),p4=W(dt.Textarea)(({theme:e})=>({flex:1,padding:"7px 6px",fontFamily:e.typography.fonts.mono,fontSize:"12px",lineHeight:"18px","&::placeholder":{fontFamily:e.typography.fonts.base,fontSize:"13px"},"&:placeholder-shown":{padding:"7px 10px"}})),d4={bubbles:!0,cancelable:!0,key:"Enter",code:"Enter",keyCode:13},f4=e=>{e.currentTarget.dispatchEvent(new i4.KeyboardEvent("keydown",d4))},y4=e=>{e.currentTarget.select()},h4=e=>()=>({name:{color:e.color.secondary},collapsed:{color:e.color.dark},ul:{listStyle:"none",margin:"0 0 0 1rem",padding:0},li:{outline:0}}),Pv=({name:e,value:t,onChange:r,argType:n})=>{let o=ri(),a=Nt(()=>t&&(0,Lv.default)(t),[t]),i=a!=null,[s,l]=he(!i),[u,c]=he(null),d=!!n?.table?.readonly,y=$e(O=>{try{O&&r(JSON.parse(O)),c(void 0)}catch(C){c(C)}},[r]),[f,h]=he(!1),g=$e(()=>{r({}),h(!0)},[h]),_=Xe(null);if(ze(()=>{f&&_.current&&_.current.select()},[f]),!i)return E.createElement(Bt,{disabled:d,id:bn(e),onClick:g},"Set object");let v=E.createElement(p4,{ref:_,id:tt(e),name:e,defaultValue:t===null?"":JSON.stringify(t,null,2),onBlur:O=>y(O.target.value),placeholder:"Edit JSON string...",autoFocus:f,valid:u?"error":null,readOnly:d}),x=Array.isArray(t)||typeof t=="object"&&t?.constructor===Object;return E.createElement(s4,{"aria-readonly":d},x&&E.createElement(c4,{onClick:O=>{O.preventDefault(),l(C=>!C)}},s?E.createElement(qu,null):E.createElement(Mu,null),E.createElement("span",null,"RAW")),s?v:E.createElement(R2,{readOnly:d||!x,isCollapsed:x?void 0:()=>!0,data:a,rootName:e,onFullyUpdate:r,getStyle:h4(o),cancelButtonElement:E.createElement(Al,{type:"button"},"Cancel"),editButtonElement:E.createElement(Al,{type:"submit"},"Save"),addButtonElement:E.createElement(Al,{type:"submit",primary:!0},"Save"),plusMenuElement:E.createElement(l4,null),minusMenuElement:E.createElement(u4,null),inputElement:(O,C,I,P)=>P?E.createElement(Iv,{onFocus:y4,onBlur:f4}):E.createElement(Iv,null),fallback:v}))},m4=W.input(({theme:e,min:t,max:r,value:n,disabled:o})=>({"&":{width:"100%",backgroundColor:"transparent",appearance:"none"},"&::-webkit-slider-runnable-track":{background:e.base==="light"?`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${vt(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${vt(.02,e.input.background)} 100%)`:`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${gr(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${gr(.02,e.input.background)} 100%)`,boxShadow:`${e.appBorderColor} 0 0 0 1px inset`,borderRadius:6,width:"100%",height:6,cursor:o?"not-allowed":"pointer"},"&::-webkit-slider-thumb":{marginTop:"-6px",width:16,height:16,border:`1px solid ${Dt(e.appBorderColor,.2)}`,borderRadius:"50px",boxShadow:`0 1px 3px 0px ${Dt(e.appBorderColor,.2)}`,cursor:o?"not-allowed":"grab",appearance:"none",background:`${e.input.background}`,transition:"all 150ms ease-out","&:hover":{background:`${vt(.05,e.input.background)}`,transform:"scale3d(1.1, 1.1, 1.1) translateY(-1px)",transition:"all 50ms ease-out"},"&:active":{background:`${e.input.background}`,transform:"scale3d(1, 1, 1) translateY(0px)",cursor:o?"not-allowed":"grab"}},"&:focus":{outline:"none","&::-webkit-slider-runnable-track":{borderColor:Dt(e.color.secondary,.4)},"&::-webkit-slider-thumb":{borderColor:e.color.secondary,boxShadow:`0 0px 5px 0px ${e.color.secondary}`}},"&::-moz-range-track":{background:e.base==="light"?`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${vt(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${vt(.02,e.input.background)} 100%)`:`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${gr(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${gr(.02,e.input.background)} 100%)`,boxShadow:`${e.appBorderColor} 0 0 0 1px inset`,borderRadius:6,width:"100%",height:6,cursor:o?"not-allowed":"pointer",outline:"none"},"&::-moz-range-thumb":{width:16,height:16,border:`1px solid ${Dt(e.appBorderColor,.2)}`,borderRadius:"50px",boxShadow:`0 1px 3px 0px ${Dt(e.appBorderColor,.2)}`,cursor:o?"not-allowed":"grap",background:`${e.input.background}`,transition:"all 150ms ease-out","&:hover":{background:`${vt(.05,e.input.background)}`,transform:"scale3d(1.1, 1.1, 1.1) translateY(-1px)",transition:"all 50ms ease-out"},"&:active":{background:`${e.input.background}`,transform:"scale3d(1, 1, 1) translateY(0px)",cursor:"grabbing"}},"&::-ms-track":{background:e.base==="light"?`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${vt(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${vt(.02,e.input.background)} 100%)`:`linear-gradient(to right, - ${e.color.green} 0%, ${e.color.green} ${(n-t)/(r-t)*100}%, - ${gr(.02,e.input.background)} ${(n-t)/(r-t)*100}%, - ${gr(.02,e.input.background)} 100%)`,boxShadow:`${e.appBorderColor} 0 0 0 1px inset`,color:"transparent",width:"100%",height:"6px",cursor:"pointer"},"&::-ms-fill-lower":{borderRadius:6},"&::-ms-fill-upper":{borderRadius:6},"&::-ms-thumb":{width:16,height:16,background:`${e.input.background}`,border:`1px solid ${Dt(e.appBorderColor,.2)}`,borderRadius:50,cursor:"grab",marginTop:0},"@supports (-ms-ime-align:auto)":{"input[type=range]":{margin:"0"}}})),D2=W.span({paddingLeft:5,paddingRight:5,fontSize:12,whiteSpace:"nowrap",fontFeatureSettings:"tnum",fontVariantNumeric:"tabular-nums","[aria-readonly=true] &":{opacity:.5}}),g4=W(D2)(({numberOFDecimalsPlaces:e,max:t})=>({width:`${e+t.toString().length*2+3}ch`,textAlign:"right",flexShrink:0})),b4=W.div({display:"flex",alignItems:"center",width:"100%"});function v4(e){let t=e.toString().match(/(?:\.(\d+))?(?:[eE]([+-]?\d+))?$/);return t?Math.max(0,(t[1]?t[1].length:0)-(t[2]?+t[2]:0)):0}var x4=({name:e,value:t,onChange:r,min:n=0,max:o=100,step:a=1,onBlur:i,onFocus:s,argType:l})=>{let u=f=>{r(PM(f.target.value))},c=t!==void 0,d=Nt(()=>v4(a),[a]),y=!!l?.table?.readonly;return E.createElement(b4,{"aria-readonly":y},E.createElement(D2,null,n),E.createElement(m4,{id:tt(e),type:"range",disabled:y,onChange:u,name:e,value:t,min:n,max:o,step:a,onFocus:s,onBlur:i}),E.createElement(g4,{numberOFDecimalsPlaces:d,max:o},c?t.toFixed(d):"--"," / ",o))},E4=W.label({display:"flex"}),w4=W.div(({isMaxed:e})=>({marginLeft:"0.75rem",paddingTop:"0.35rem",color:e?"red":void 0})),S4=({name:e,value:t,onChange:r,onFocus:n,onBlur:o,maxLength:a,argType:i})=>{let s=f=>{r(f.target.value)},l=!!i?.table?.readonly,[u,c]=he(!1),d=$e(()=>{r(""),c(!0)},[c]);if(t===void 0)return E.createElement(Bt,{variant:"outline",size:"medium",disabled:l,id:bn(e),onClick:d},"Set string");let y=typeof t=="string";return E.createElement(E4,null,E.createElement(dt.Textarea,{id:tt(e),maxLength:a,onChange:s,disabled:l,size:"flex",placeholder:"Edit string...",autoFocus:u,valid:y?null:"error",name:e,value:y?t:"",onFocus:n,onBlur:o}),a&&E.createElement(w4,{isMaxed:t?.length===a},t?.length??0," / ",a))},A4=W(dt.Input)({padding:10});function T4(e){e.forEach(t=>{t.startsWith("blob:")&&URL.revokeObjectURL(t)})}var C4=({onChange:e,name:t,accept:r="image/*",value:n,argType:o})=>{let a=Xe(null),i=o?.control?.readOnly;function s(l){if(!l.target.files)return;let u=Array.from(l.target.files).map(c=>URL.createObjectURL(c));e(u),T4(n)}return ze(()=>{n==null&&a.current&&(a.current.value=null)},[n,t]),E.createElement(A4,{ref:a,id:tt(t),type:"file",name:t,multiple:!0,disabled:i,onChange:s,accept:r,size:"flex"})},_4=eu(()=>Promise.resolve().then(()=>(av(),ov))),O4=e=>E.createElement(Zl,{fallback:E.createElement("div",null)},E.createElement(_4,{...e})),I4={array:Pv,object:Pv,boolean:wM,color:O4,date:OM,number:RM,check:Zr,"inline-check":Zr,radio:Zr,"inline-radio":Zr,select:Zr,"multi-select":Zr,range:x4,text:S4,file:C4},kv=()=>E.createElement(E.Fragment,null,"-"),P4=({row:e,arg:t,updateArgs:r,isHovered:n})=>{let{key:o,control:a}=e,[i,s]=he(!1),[l,u]=he({value:t});ze(()=>{i||u({value:t})},[i,t]);let c=$e(g=>(u({value:g}),r({[o]:g}),g),[r,o]),d=$e(()=>s(!1),[]),y=$e(()=>s(!0),[]);if(!a||a.disable){let g=a?.disable!==!0&&e?.type?.name!=="function";return n&&g?E.createElement(ir,{href:"https://storybook.js.org/docs/react/essentials/controls",target:"_blank",withArrow:!0},"Setup controls"):E.createElement(kv,null)}let f={name:o,argType:e,value:l.value,onChange:c,onBlur:d,onFocus:y},h=I4[a.type]||kv;return E.createElement(h,{...f,...a,controlType:a.type})},k4=W.span({fontWeight:"bold"}),R4=W.span(({theme:e})=>({color:e.color.negative,fontFamily:e.typography.fonts.mono,cursor:"help"})),D4=W.div(({theme:e})=>({"&&":{p:{margin:"0 0 10px 0"},a:{color:e.color.secondary}},code:{...Ir({theme:e}),fontSize:12,fontFamily:e.typography.fonts.mono},"& code":{margin:0,display:"inline-block"},"& pre > code":{whiteSpace:"pre-wrap"}})),F4=W.div(({theme:e,hasDescription:t})=>({color:e.base==="light"?ve(.1,e.color.defaultText):ve(.2,e.color.defaultText),marginTop:t?4:0})),j4=W.div(({theme:e,hasDescription:t})=>({color:e.base==="light"?ve(.1,e.color.defaultText):ve(.2,e.color.defaultText),marginTop:t?12:0,marginBottom:12})),N4=W.td(({theme:e,expandable:t})=>({paddingLeft:t?"40px !important":"20px !important"})),B4=e=>e&&{summary:typeof e=="string"?e:e.name},xa=e=>{let[t,r]=he(!1),{row:n,updateArgs:o,compact:a,expandable:i,initialExpandedArgs:s}=e,{name:l,description:u}=n,c=n.table||{},d=c.type||B4(n.type),y=c.defaultValue||n.defaultValue,f=n.type?.required,h=u!=null&&u!=="";return E.createElement("tr",{onMouseEnter:()=>r(!0),onMouseLeave:()=>r(!1)},E.createElement(N4,{expandable:i},E.createElement(k4,null,l),f?E.createElement(R4,{title:"Required"},"*"):null),a?null:E.createElement("td",null,h&&E.createElement(D4,null,E.createElement(RB,null,u)),c.jsDocTags!=null?E.createElement(E.Fragment,null,E.createElement(j4,{hasDescription:h},E.createElement(Sl,{value:d,initialExpandedArgs:s})),E.createElement(uM,{tags:c.jsDocTags})):E.createElement(F4,{hasDescription:h},E.createElement(Sl,{value:d,initialExpandedArgs:s}))),a?null:E.createElement("td",null,E.createElement(Sl,{value:y,initialExpandedArgs:s})),o?E.createElement("td",null,E.createElement(P4,{...e,isHovered:t})):null)},L4=W(Nu)(({theme:e})=>({marginRight:8,marginLeft:-10,marginTop:-2,height:12,width:12,color:e.base==="light"?ve(.25,e.color.defaultText):ve(.3,e.color.defaultText),border:"none",display:"inline-block"})),q4=W(Bu)(({theme:e})=>({marginRight:8,marginLeft:-10,marginTop:-2,height:12,width:12,color:e.base==="light"?ve(.25,e.color.defaultText):ve(.3,e.color.defaultText),border:"none",display:"inline-block"})),M4=W.span(({theme:e})=>({display:"flex",lineHeight:"20px",alignItems:"center"})),U4=W.td(({theme:e})=>({position:"relative",letterSpacing:"0.35em",textTransform:"uppercase",fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s1-1,color:e.base==="light"?ve(.4,e.color.defaultText):ve(.6,e.color.defaultText),background:`${e.background.app} !important`,"& ~ td":{background:`${e.background.app} !important`}})),J4=W.td(({theme:e})=>({position:"relative",fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,background:e.background.app})),$4=W.td(()=>({position:"relative"})),z4=W.tr(({theme:e})=>({"&:hover > td":{backgroundColor:`${gr(.005,e.background.app)} !important`,boxShadow:`${e.color.mediumlight} 0 - 1px 0 0 inset`,cursor:"row-resize"}})),Rv=W.button(()=>({background:"none",border:"none",padding:"0",font:"inherit",position:"absolute",top:0,bottom:0,left:0,right:0,height:"100%",width:"100%",color:"transparent",cursor:"row-resize !important"})),Tl=({level:e="section",label:t,children:r,initialExpanded:n=!0,colSpan:o=3})=>{let[a,i]=he(n),s=e==="subsection"?J4:U4,l=r?.length||0,u=e==="subsection"?`${l} item${l!==1?"s":""}`:"",c=`${a?"Hide":"Show"} ${e==="subsection"?l:t} item${l!==1?"s":""}`;return E.createElement(E.Fragment,null,E.createElement(z4,{title:c},E.createElement(s,{colSpan:1},E.createElement(Rv,{onClick:d=>i(!a),tabIndex:0},c),E.createElement(M4,null,a?E.createElement(L4,null):E.createElement(q4,null),t)),E.createElement($4,{colSpan:o-1},E.createElement(Rv,{onClick:d=>i(!a),tabIndex:-1,style:{outline:"none"}},c),a?null:u)),a?r:null)},Ea=W.div(({theme:e})=>({display:"flex",gap:16,borderBottom:`1px solid ${e.appBorderColor}`,"&:last-child":{borderBottom:0}})),We=W.div(({numColumn:e})=>({display:"flex",flexDirection:"column",flex:e||1,gap:5,padding:"12px 20px"})),Be=W.div(({theme:e,width:t,height:r})=>({animation:`${e.animation.glow} 1.5s ease-in-out infinite`,background:e.appBorderColor,width:t||"100%",height:r||16,borderRadius:3})),Ke=[2,4,2,2],V4=()=>E.createElement(E.Fragment,null,E.createElement(Ea,null,E.createElement(We,{numColumn:Ke[0]},E.createElement(Be,{width:"60%"})),E.createElement(We,{numColumn:Ke[1]},E.createElement(Be,{width:"30%"})),E.createElement(We,{numColumn:Ke[2]},E.createElement(Be,{width:"60%"})),E.createElement(We,{numColumn:Ke[3]},E.createElement(Be,{width:"60%"}))),E.createElement(Ea,null,E.createElement(We,{numColumn:Ke[0]},E.createElement(Be,{width:"60%"})),E.createElement(We,{numColumn:Ke[1]},E.createElement(Be,{width:"80%"}),E.createElement(Be,{width:"30%"})),E.createElement(We,{numColumn:Ke[2]},E.createElement(Be,{width:"60%"})),E.createElement(We,{numColumn:Ke[3]},E.createElement(Be,{width:"60%"}))),E.createElement(Ea,null,E.createElement(We,{numColumn:Ke[0]},E.createElement(Be,{width:"60%"})),E.createElement(We,{numColumn:Ke[1]},E.createElement(Be,{width:"80%"}),E.createElement(Be,{width:"30%"})),E.createElement(We,{numColumn:Ke[2]},E.createElement(Be,{width:"60%"})),E.createElement(We,{numColumn:Ke[3]},E.createElement(Be,{width:"60%"}))),E.createElement(Ea,null,E.createElement(We,{numColumn:Ke[0]},E.createElement(Be,{width:"60%"})),E.createElement(We,{numColumn:Ke[1]},E.createElement(Be,{width:"80%"}),E.createElement(Be,{width:"30%"})),E.createElement(We,{numColumn:Ke[2]},E.createElement(Be,{width:"60%"})),E.createElement(We,{numColumn:Ke[3]},E.createElement(Be,{width:"60%"})))),H4=W.div(({inAddonPanel:e,theme:t})=>({height:e?"100%":"auto",display:"flex",border:e?"none":`1px solid ${t.appBorderColor}`,borderRadius:e?0:t.appBorderRadius,padding:e?0:40,alignItems:"center",justifyContent:"center",flexDirection:"column",gap:15,background:t.background.content,boxShadow:"rgba(0, 0, 0, 0.10) 0 1px 3px 0"})),G4=W.div(({theme:e})=>({display:"flex",fontSize:e.typography.size.s2-1,gap:25})),W4=W.div(({theme:e})=>({width:1,height:16,backgroundColor:e.appBorderColor})),K4=({inAddonPanel:e})=>{let[t,r]=he(!0);return ze(()=>{let n=setTimeout(()=>{r(!1)},100);return()=>clearTimeout(n)},[]),t?null:E.createElement(H4,{inAddonPanel:e},E.createElement(qa,{title:e?"Interactive story playground":"Args table with interactive controls couldn't be auto-generated",description:E.createElement(E.Fragment,null,"Controls give you an easy to use interface to test your components. Set your story args and you'll see controls appearing here automatically."),footer:E.createElement(G4,null,e&&E.createElement(E.Fragment,null,E.createElement(ir,{href:"https://youtu.be/0gOfS6K0x0E",target:"_blank",withArrow:!0},E.createElement(zu,null)," Watch 5m video"),E.createElement(W4,null),E.createElement(ir,{href:"https://storybook.js.org/docs/essentials/controls",target:"_blank",withArrow:!0},E.createElement(bo,null)," Read docs")),!e&&E.createElement(ir,{href:"https://storybook.js.org/docs/essentials/controls",target:"_blank",withArrow:!0},E.createElement(bo,null)," Learn how to set that up"))}))},Y4=W.table(({theme:e,compact:t,inAddonPanel:r})=>({"&&":{borderSpacing:0,color:e.color.defaultText,"td, th":{padding:0,border:"none",verticalAlign:"top",textOverflow:"ellipsis"},fontSize:e.typography.size.s2-1,lineHeight:"20px",textAlign:"left",width:"100%",marginTop:r?0:25,marginBottom:r?0:40,"thead th:first-of-type, td:first-of-type":{width:"25%"},"th:first-of-type, td:first-of-type":{paddingLeft:20},"th:nth-of-type(2), td:nth-of-type(2)":{...t?null:{width:"35%"}},"td:nth-of-type(3)":{...t?null:{width:"15%"}},"th:last-of-type, td:last-of-type":{paddingRight:20,...t?null:{width:"25%"}},th:{color:e.base==="light"?ve(.25,e.color.defaultText):ve(.45,e.color.defaultText),paddingTop:10,paddingBottom:10,paddingLeft:15,paddingRight:15},td:{paddingTop:"10px",paddingBottom:"10px","&:not(:first-of-type)":{paddingLeft:15,paddingRight:15},"&:last-of-type":{paddingRight:20}},marginLeft:r?0:1,marginRight:r?0:1,tbody:{...r?null:{filter:e.base==="light"?"drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.10))":"drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.20))"},"> tr > *":{background:e.background.content,borderTop:`1px solid ${e.appBorderColor}`},...r?null:{"> tr:first-of-type > *":{borderBlockStart:`1px solid ${e.appBorderColor}`},"> tr:last-of-type > *":{borderBlockEnd:`1px solid ${e.appBorderColor}`},"> tr > *:first-of-type":{borderInlineStart:`1px solid ${e.appBorderColor}`},"> tr > *:last-of-type":{borderInlineEnd:`1px solid ${e.appBorderColor}`},"> tr:first-of-type > td:first-of-type":{borderTopLeftRadius:e.appBorderRadius},"> tr:first-of-type > td:last-of-type":{borderTopRightRadius:e.appBorderRadius},"> tr:last-of-type > td:first-of-type":{borderBottomLeftRadius:e.appBorderRadius},"> tr:last-of-type > td:last-of-type":{borderBottomRightRadius:e.appBorderRadius}}}}})),X4=W(ht)(({theme:e})=>({margin:"-4px -12px -4px 0"})),Q4=W.span({display:"flex",justifyContent:"space-between"}),Z4={alpha:(e,t)=>e.name.localeCompare(t.name),requiredFirst:(e,t)=>+!!t.type?.required-+!!e.type?.required||e.name.localeCompare(t.name),none:void 0},e6=(e,t)=>{let r={ungrouped:[],ungroupedSubsections:{},sections:{}};if(!e)return r;Object.entries(e).forEach(([a,i])=>{let{category:s,subcategory:l}=i?.table||{};if(s){let u=r.sections[s]||{ungrouped:[],subsections:{}};if(!l)u.ungrouped.push({key:a,...i});else{let c=u.subsections[l]||[];c.push({key:a,...i}),u.subsections[l]=c}r.sections[s]=u}else if(l){let u=r.ungroupedSubsections[l]||[];u.push({key:a,...i}),r.ungroupedSubsections[l]=u}else r.ungrouped.push({key:a,...i})});let n=Z4[t],o=a=>n?Object.keys(a).reduce((i,s)=>({...i,[s]:a[s].sort(n)}),{}):a;return{ungrouped:r.ungrouped.sort(n),ungroupedSubsections:o(r.ungroupedSubsections),sections:Object.keys(r.sections).reduce((a,i)=>({...a,[i]:{ungrouped:r.sections[i].ungrouped.sort(n),subsections:o(r.sections[i].subsections)}}),{})}},t6=(e,t,r)=>{try{return _3(e,t,r)}catch(n){return fy.warn(n.message),!1}},r6=e=>{let{updateArgs:t,resetArgs:r,compact:n,inAddonPanel:o,initialExpandedArgs:a,sort:i="none",isLoading:s}=e;if("error"in e){let{error:x}=e;return E.createElement(x2,null,x,"\xA0",E.createElement(ir,{href:"http://storybook.js.org/docs/",target:"_blank",withArrow:!0},E.createElement(bo,null)," Read the docs"))}if(s)return E.createElement(V4,null);let{rows:l,args:u,globals:c}="rows"in e&&e,d=e6((0,Nv.default)(l,x=>!x?.table?.disable&&t6(x,u||{},c||{})),i),y=d.ungrouped.length===0,f=Object.entries(d.sections).length===0,h=Object.entries(d.ungroupedSubsections).length===0;if(y&&f&&h)return E.createElement(K4,{inAddonPanel:o});let g=1;t&&(g+=1),n||(g+=2);let _=Object.keys(d.sections).length>0,v={updateArgs:t,compact:n,inAddonPanel:o,initialExpandedArgs:a};return E.createElement(Ja,null,E.createElement(Y4,{compact:n,inAddonPanel:o,className:"docblock-argstable sb-unstyled"},E.createElement("thead",{className:"docblock-argstable-head"},E.createElement("tr",null,E.createElement("th",null,E.createElement("span",null,"Name")),n?null:E.createElement("th",null,E.createElement("span",null,"Description")),n?null:E.createElement("th",null,E.createElement("span",null,"Default")),t?E.createElement("th",null,E.createElement(Q4,null,"Control"," ",!s&&r&&E.createElement(X4,{onClick:()=>r(),title:"Reset controls"},E.createElement(ii,{"aria-hidden":!0})))):null)),E.createElement("tbody",{className:"docblock-argstable-body"},d.ungrouped.map(x=>E.createElement(xa,{key:x.key,row:x,arg:u&&u[x.key],...v})),Object.entries(d.ungroupedSubsections).map(([x,O])=>E.createElement(Tl,{key:x,label:x,level:"subsection",colSpan:g},O.map(C=>E.createElement(xa,{key:C.key,row:C,arg:u&&u[C.key],expandable:_,...v})))),Object.entries(d.sections).map(([x,O])=>E.createElement(Tl,{key:x,label:x,level:"section",colSpan:g},O.ungrouped.map(C=>E.createElement(xa,{key:C.key,row:C,arg:u&&u[C.key],...v})),Object.entries(O.subsections).map(([C,I])=>E.createElement(Tl,{key:C,label:C,level:"subsection",colSpan:g},I.map(P=>E.createElement(xa,{key:P.key,row:P,arg:u&&u[P.key],expandable:_,...v})))))))))};W.div(({theme:e})=>({marginRight:30,fontSize:`${e.typography.size.s1}px`,color:e.base==="light"?ve(.4,e.color.defaultText):ve(.6,e.color.defaultText)}));W.div({overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"});W.div({display:"flex",flexDirection:"row",alignItems:"baseline","&:not(:last-child)":{marginBottom:"1rem"}});W.div(Pr,({theme:e})=>({...Pa(e),margin:"25px 0 40px",padding:"30px 20px"}));W.div(({theme:e})=>({fontWeight:e.typography.weight.bold,color:e.color.defaultText}));W.div(({theme:e})=>({color:e.base==="light"?ve(.2,e.color.defaultText):ve(.6,e.color.defaultText)}));W.div({flex:"0 0 30%",lineHeight:"20px",marginTop:5});W.div(({theme:e})=>({flex:1,textAlign:"center",fontFamily:e.typography.fonts.mono,fontSize:e.typography.size.s1,lineHeight:1,overflow:"hidden",color:e.base==="light"?ve(.4,e.color.defaultText):ve(.6,e.color.defaultText),"> div":{display:"inline-block",overflow:"hidden",maxWidth:"100%",textOverflow:"ellipsis"},span:{display:"block",marginTop:2}}));W.div({display:"flex",flexDirection:"row"});W.div(({background:e})=>({position:"relative",flex:1,"&::before":{position:"absolute",top:0,left:0,width:"100%",height:"100%",background:e,content:'""'}}));W.div(({theme:e})=>({...Pa(e),display:"flex",flexDirection:"row",height:50,marginBottom:5,overflow:"hidden",backgroundColor:"white",backgroundImage:"repeating-linear-gradient(-45deg, #ccc, #ccc 1px, #fff 1px, #fff 16px)",backgroundClip:"padding-box"}));W.div({display:"flex",flexDirection:"column",flex:1,position:"relative",marginBottom:30});W.div({flex:1,display:"flex",flexDirection:"row"});W.div({display:"flex",alignItems:"flex-start"});W.div({flex:"0 0 30%"});W.div({flex:1});W.div(({theme:e})=>({display:"flex",flexDirection:"row",alignItems:"center",paddingBottom:20,fontWeight:e.typography.weight.bold,color:e.base==="light"?ve(.4,e.color.defaultText):ve(.6,e.color.defaultText)}));W.div(({theme:e})=>({fontSize:e.typography.size.s2,lineHeight:"20px",display:"flex",flexDirection:"column"}));W.div(({theme:e})=>({fontFamily:e.typography.fonts.base,fontSize:e.typography.size.s2,color:e.color.defaultText,marginLeft:10,lineHeight:1.2}));W.div(({theme:e})=>({...Pa(e),overflow:"hidden",height:40,width:40,display:"flex",alignItems:"center",justifyContent:"center",flex:"none","> img, > svg":{width:20,height:20}}));W.div({display:"inline-flex",flexDirection:"row",alignItems:"center",flex:"0 1 calc(20% - 10px)",minWidth:120,margin:"0px 10px 30px 0"});W.div({display:"flex",flexFlow:"row wrap"});xt&&xt.__DOCS_CONTEXT__===void 0&&(xt.__DOCS_CONTEXT__=vn(null),xt.__DOCS_CONTEXT__.displayName="DocsContext");var n6=xt?xt.__DOCS_CONTEXT__:vn(null);vn({sources:{}});var{document:o6}=xt;function a6(e,t){e.channel.emit(pu,t)}Ha.a;var F2=["h1","h2","h3","h4","h5","h6"],i6=F2.reduce((e,t)=>({...e,[t]:W(t)({"& svg":{position:"relative",top:"-0.1em",visibility:"hidden"},"&:hover svg":{visibility:"visible"}})}),{}),s6=W.a(()=>({float:"left",lineHeight:"inherit",paddingRight:"10px",marginLeft:"-24px",color:"inherit"})),l6=({as:e,id:t,children:r,...n})=>{let o=tu(n6),a=i6[e],i=`#${t}`;return E.createElement(a,{id:t,...n},E.createElement(s6,{"aria-hidden":"true",href:i,tabIndex:-1,target:"_self",onClick:s=>{o6.getElementById(t)&&a6(o,i)}},E.createElement(Uu,null)),r)},j2=e=>{let{as:t,id:r,children:n,...o}=e;if(r)return E.createElement(l6,{as:t,id:r,...o},n);let a=t,{as:i,...s}=e;return E.createElement(a,{...Ga(s,t)})};F2.reduce((e,t)=>({...e,[t]:r=>E.createElement(j2,{as:t,...r})}),{});var u6=(e=>(e.INFO="info",e.NOTES="notes",e.DOCGEN="docgen",e.AUTO="auto",e))(u6||{});Xl(zq());W.div(({theme:e})=>({width:"10rem","@media (max-width: 768px)":{display:"none"}}));W.div(({theme:e})=>({position:"fixed",bottom:0,top:0,width:"10rem",paddingTop:"4rem",paddingBottom:"2rem",overflowY:"auto",fontFamily:e.typography.fonts.base,fontSize:e.typography.size.s2,WebkitFontSmoothing:"antialiased",MozOsxFontSmoothing:"grayscale",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",WebkitOverflowScrolling:"touch","& *":{boxSizing:"border-box"},"& > .toc-wrapper > .toc-list":{paddingLeft:0,borderLeft:`solid 2px ${e.color.mediumlight}`,".toc-list":{paddingLeft:0,borderLeft:`solid 2px ${e.color.mediumlight}`,".toc-list":{paddingLeft:0,borderLeft:`solid 2px ${e.color.mediumlight}`}}},"& .toc-list-item":{position:"relative",listStyleType:"none",marginLeft:20,paddingTop:3,paddingBottom:3},"& .toc-list-item::before":{content:'""',position:"absolute",height:"100%",top:0,left:0,transform:"translateX(calc(-2px - 20px))",borderLeft:`solid 2px ${e.color.mediumdark}`,opacity:0,transition:"opacity 0.2s"},"& .toc-list-item.is-active-li::before":{opacity:1},"& .toc-list-item > a":{color:e.color.defaultText,textDecoration:"none"},"& .toc-list-item.is-active-li > a":{fontWeight:600,color:e.color.secondary,textDecoration:"none"}}));W.p(({theme:e})=>({fontWeight:600,fontSize:"0.875em",color:e.textColor,textTransform:"uppercase",marginBottom:10}));var c6=({children:e,disableAnchor:t,...r})=>{if(t||typeof e!="string")return E.createElement(Ua,null,e);let n=e.toLowerCase().replace(/[^a-z0-9]/gi,"-");return E.createElement(j2,{as:"h2",id:n,...r},e)};W(c6)(({theme:e})=>({fontSize:`${e.typography.size.s2-1}px`,fontWeight:e.typography.weight.bold,lineHeight:"16px",letterSpacing:"0.35em",textTransform:"uppercase",color:e.textMutedColor,border:0,marginBottom:"12px","&:first-of-type":{marginTop:"56px"}}));var Dv="addon-controls",N2="controls",p6=ei({from:{transform:"translateY(40px)"},to:{transform:"translateY(0)"}}),d6=ei({from:{background:"var(--highlight-bg-color)"},to:{}}),f6=W.div({containerType:"size",position:"sticky",bottom:0,height:39,overflow:"hidden",zIndex:1}),y6=W(La)(({theme:e})=>({"--highlight-bg-color":e.base==="dark"?"#153B5B":"#E0F0FF",display:"flex",flexDirection:"row-reverse",alignItems:"center",justifyContent:"space-between",flexWrap:"wrap",gap:6,padding:"6px 10px",animation:`${p6} 300ms, ${d6} 2s`,background:e.background.bar,borderTop:`1px solid ${e.appBorderColor}`,fontSize:e.typography.size.s2,"@container (max-width: 799px)":{flexDirection:"row",justifyContent:"flex-end"}})),h6=W.div({display:"flex",flex:"99 0 auto",alignItems:"center",marginLeft:10,gap:6}),m6=W.div(({theme:e})=>({display:"flex",flex:"1 0 0",alignItems:"center",gap:2,color:e.color.mediumdark,fontSize:e.typography.size.s2})),Cl=W.div({"@container (max-width: 799px)":{lineHeight:0,textIndent:"-9999px","&::after":{content:"attr(data-short-label)",display:"block",lineHeight:"initial",textIndent:"0"}}}),g6=W(dt.Input)(({theme:e})=>({"::placeholder":{color:e.color.mediumdark},"&:invalid:not(:placeholder-shown)":{boxShadow:`${e.color.negative} 0 0 0 1px inset`}})),b6=({saveStory:e,createStory:t,resetArgs:r})=>{let n=E.useRef(null),[o,a]=E.useState(!1),[i,s]=E.useState(!1),[l,u]=E.useState(""),[c,d]=E.useState(null),y=async()=>{o||(a(!0),await e().catch(()=>{}),a(!1))},f=()=>{s(!0),u(""),setTimeout(()=>n.current?.focus(),0)},h=g=>{let _=g.target.value.replace(/^[^a-z]/i,"").replace(/[^a-z0-9-_ ]/gi,"").replaceAll(/([-_ ]+[a-z0-9])/gi,v=>v.toUpperCase().replace(/[-_ ]/g,""));u(_.charAt(0).toUpperCase()+_.slice(1))};return E.createElement(f6,{id:"save-from-controls"},E.createElement(y6,null,E.createElement(m6,null,E.createElement(Lt,{as:"div",hasChrome:!1,trigger:"hover",tooltip:E.createElement(sr,{note:"Save changes to story"})},E.createElement(ht,{"aria-label":"Save changes to story",disabled:o,onClick:y},E.createElement(ju,null),E.createElement(Cl,{"data-short-label":"Save"},"Update story"))),E.createElement(Lt,{as:"div",hasChrome:!1,trigger:"hover",tooltip:E.createElement(sr,{note:"Create new story with these settings"})},E.createElement(ht,{"aria-label":"Create new story with these settings",onClick:f},E.createElement(oi,null),E.createElement(Cl,{"data-short-label":"New"},"Create new story"))),E.createElement(Lt,{as:"div",hasChrome:!1,trigger:"hover",tooltip:E.createElement(sr,{note:"Reset changes"})},E.createElement(ht,{"aria-label":"Reset changes",onClick:()=>r()},E.createElement(ii,null),E.createElement("span",null,"Reset")))),E.createElement(h6,null,E.createElement(Cl,{"data-short-label":"Unsaved changes"},"You modified this story. Do you want to save your changes?")),E.createElement(mt,{width:350,open:i,onOpenChange:s},E.createElement(dt,{onSubmit:async g=>{if(g.preventDefault(),!o)try{d(null),a(!0),await t(l.replace(/^[^a-z]/i,"").replaceAll(/[^a-z0-9]/gi,"")),s(!1),a(!1)}catch(_){d(_.message),a(!1)}},id:"create-new-story-form"},E.createElement(mt.Content,null,E.createElement(mt.Header,null,E.createElement(mt.Title,null,"Create new story"),E.createElement(mt.Description,null,"This will add a new story to your existing stories file.")),E.createElement(g6,{onChange:h,placeholder:"Story export name",readOnly:o,ref:n,value:l}),E.createElement(mt.Actions,null,E.createElement(Bt,{disabled:o||!l,size:"medium",type:"submit",variant:"solid"},"Create"),E.createElement(mt.Dialog.Close,{asChild:!0},E.createElement(Bt,{disabled:o,size:"medium",type:"reset"},"Cancel"))))),c&&E.createElement(mt.Error,null,c))))},Fv=e=>Object.entries(e).reduce((t,[r,n])=>n!==void 0?Object.assign(t,{[r]:n}):t,{}),v6=W.div({display:"grid",gridTemplateRows:"1fr 39px",height:"100%",maxHeight:"100vh",overflowY:"auto"}),x6=({saveStory:e,createStory:t})=>{let[r,n]=he(!0),[o,a,i,s]=Ou(),[l]=Iu(),u=Za(),{expanded:c,sort:d,presetColors:y}=Pu(N2,{}),{path:f,previewInitialized:h}=ku();ze(()=>{h&&n(!1)},[h]);let g=Object.values(u).some(x=>x?.control),_=Object.entries(u).reduce((x,[O,C])=>{let I=C?.control;return typeof I!="object"||I?.type!=="color"||I?.presetColors?x[O]=C:x[O]={...C,control:{...I,presetColors:y}},x},{}),v=Nt(()=>!!o&&!!s&&!ar(Fv(o),Fv(s)),[o,s]);return E.createElement(v6,null,E.createElement(r6,{key:f,compact:!c&&g,rows:_,args:o,globals:l,updateArgs:a,resetArgs:i,inAddonPanel:!0,sort:d,isLoading:r}),g&&v&&xt.CONFIG_TYPE==="DEVELOPMENT"&&E.createElement(b6,{resetArgs:i,saveStory:e,createStory:t}))};function E6(){let e=Za(),t=Object.values(e).filter(r=>r?.control&&!r?.table?.disable).length;return E.createElement("div",null,E.createElement($a,{col:1},E.createElement("span",{style:{display:"inline-block",verticalAlign:"middle"}},"Controls"),t===0?"":E.createElement(Ba,{status:"neutral"},t)))}var jv=e=>JSON.stringify(e,(t,r)=>typeof r=="function"?"__sb_empty_function_arg__":r);mo.register(Dv,e=>{let t=mo.getChannel(),r=async()=>{let o=e.getCurrentStoryData();if(o.type!=="story")throw new Error("Not a story");try{let a=await Qa(t,Ya,fo,{args:jv(Object.entries(o.args||{}).reduce((i,[s,l])=>(ar(l,o.initialArgs?.[s])||(i[s]=l),i),{})),csfId:o.id,importPath:o.importPath});e.addNotification({id:"save-story-success",icon:{name:"passed",color:go.positive},content:{headline:"Story saved",subHeadline:E.createElement(E.Fragment,null,"Updated story ",E.createElement("b",null,a.sourceStoryName),".")},duration:8e3})}catch(a){throw e.addNotification({id:"save-story-error",icon:{name:"failed",color:go.negative},content:{headline:"Failed to save story",subHeadline:a?.message||"Check the Storybook process on the command line for more details."},duration:8e3}),a}},n=async o=>{let a=e.getCurrentStoryData();if(a.type!=="story")throw new Error("Not a story");let i=await Qa(t,Ya,fo,{args:a.args&&jv(a.args),csfId:a.id,importPath:a.importPath,name:o});e.addNotification({id:"save-story-success",icon:{name:"passed",color:go.positive},content:{headline:"Story created",subHeadline:E.createElement(E.Fragment,null,"Added story ",E.createElement("b",null,i.newStoryName)," based on ",E.createElement("b",null,i.sourceStoryName),".")},duration:8e3,onClick:({onDismiss:s})=>{s(),e.selectStory(i.newStoryId)}})};mo.add(Dv,{title:E6,type:_u.PANEL,paramKey:N2,render:({active:o})=>!o||!e.getCurrentStoryData()?null:E.createElement(Na,{active:o},E.createElement(x6,{saveStory:r,createStory:n}))}),t.on(fo,o=>{if(!o.success)return;let a=e.getCurrentStoryData();a.type==="story"&&(e.resetStoryArgs(a),o.payload.newStoryId&&e.selectStory(o.payload.newStoryId))})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/essentials-measure-7/manager-bundle.js b/storybook-static/sb-addons/essentials-measure-7/manager-bundle.js deleted file mode 100644 index a7d02dc..0000000 --- a/storybook-static/sb-addons/essentials-measure-7/manager-bundle.js +++ /dev/null @@ -1,3 +0,0 @@ -try{ -(()=>{var t=__REACT__,{Children:B,Component:f,Fragment:R,Profiler:P,PureComponent:L,StrictMode:E,Suspense:D,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:w,cloneElement:M,createContext:x,createElement:v,createFactory:H,createRef:U,forwardRef:F,isValidElement:N,lazy:G,memo:W,startTransition:K,unstable_act:Y,useCallback:u,useContext:q,useDebugValue:V,useDeferredValue:Z,useEffect:d,useId:z,useImperativeHandle:J,useInsertionEffect:Q,useLayoutEffect:$,useMemo:j,useReducer:X,useRef:oo,useState:no,useSyncExternalStore:eo,useTransition:co,version:to}=__REACT__;var io=__STORYBOOK_API__,{ActiveTabs:so,Consumer:uo,ManagerContext:mo,Provider:po,RequestResponseError:So,addons:l,combineParameters:Co,controlOrMetaKey:ho,controlOrMetaSymbol:bo,eventMatchesShortcut:To,eventToShortcut:_o,experimental_requestResponse:Ao,isMacLike:go,isShortcutTaken:yo,keyToSymbol:Oo,merge:ko,mockChannel:Bo,optionOrAltSymbol:fo,shortcutMatchesShortcut:Ro,shortcutToHumanString:Po,types:m,useAddonState:Lo,useArgTypes:Eo,useArgs:Do,useChannel:wo,useGlobalTypes:Mo,useGlobals:p,useParameter:xo,useSharedState:vo,useStoryPrepared:Ho,useStorybookApi:S,useStorybookState:Uo}=__STORYBOOK_API__;var Ko=__STORYBOOK_COMPONENTS__,{A:Yo,ActionBar:qo,AddonPanel:Vo,Badge:Zo,Bar:zo,Blockquote:Jo,Button:Qo,ClipboardCode:$o,Code:jo,DL:Xo,Div:on,DocumentWrapper:nn,EmptyTabContent:en,ErrorFormatter:cn,FlexBar:tn,Form:rn,H1:In,H2:an,H3:ln,H4:sn,H5:un,H6:dn,HR:mn,IconButton:C,IconButtonSkeleton:pn,Icons:Sn,Img:Cn,LI:hn,Link:bn,ListItem:Tn,Loader:_n,Modal:An,OL:gn,P:yn,Placeholder:On,Pre:kn,ResetWrapper:Bn,ScrollArea:fn,Separator:Rn,Spaced:Pn,Span:Ln,StorybookIcon:En,StorybookLogo:Dn,Symbols:wn,SyntaxHighlighter:Mn,TT:xn,TabBar:vn,TabButton:Hn,TabWrapper:Un,Table:Fn,Tabs:Nn,TabsState:Gn,TooltipLinkList:Wn,TooltipMessage:Kn,TooltipNote:Yn,UL:qn,WithTooltip:Vn,WithTooltipPure:Zn,Zoom:zn,codeCommon:Jn,components:Qn,createCopyToClipboardFunction:$n,getStoryHref:jn,icons:Xn,interleaveSeparators:oe,nameSpaceClassNames:ne,resetComponents:ee,withReset:ce}=__STORYBOOK_COMPONENTS__;var le=__STORYBOOK_ICONS__,{AccessibilityAltIcon:ie,AccessibilityIcon:se,AddIcon:ue,AdminIcon:de,AlertAltIcon:me,AlertIcon:pe,AlignLeftIcon:Se,AlignRightIcon:Ce,AppleIcon:he,ArrowDownIcon:be,ArrowLeftIcon:Te,ArrowRightIcon:_e,ArrowSolidDownIcon:Ae,ArrowSolidLeftIcon:ge,ArrowSolidRightIcon:ye,ArrowSolidUpIcon:Oe,ArrowUpIcon:ke,AzureDevOpsIcon:Be,BackIcon:fe,BasketIcon:Re,BatchAcceptIcon:Pe,BatchDenyIcon:Le,BeakerIcon:Ee,BellIcon:De,BitbucketIcon:we,BoldIcon:Me,BookIcon:xe,BookmarkHollowIcon:ve,BookmarkIcon:He,BottomBarIcon:Ue,BottomBarToggleIcon:Fe,BoxIcon:Ne,BranchIcon:Ge,BrowserIcon:We,ButtonIcon:Ke,CPUIcon:Ye,CalendarIcon:qe,CameraIcon:Ve,CategoryIcon:Ze,CertificateIcon:ze,ChangedIcon:Je,ChatIcon:Qe,CheckIcon:$e,ChevronDownIcon:je,ChevronLeftIcon:Xe,ChevronRightIcon:oc,ChevronSmallDownIcon:nc,ChevronSmallLeftIcon:ec,ChevronSmallRightIcon:cc,ChevronSmallUpIcon:tc,ChevronUpIcon:rc,ChromaticIcon:Ic,ChromeIcon:ac,CircleHollowIcon:lc,CircleIcon:ic,ClearIcon:sc,CloseAltIcon:uc,CloseIcon:dc,CloudHollowIcon:mc,CloudIcon:pc,CogIcon:Sc,CollapseIcon:Cc,CommandIcon:hc,CommentAddIcon:bc,CommentIcon:Tc,CommentsIcon:_c,CommitIcon:Ac,CompassIcon:gc,ComponentDrivenIcon:yc,ComponentIcon:Oc,ContrastIcon:kc,ControlsIcon:Bc,CopyIcon:fc,CreditIcon:Rc,CrossIcon:Pc,DashboardIcon:Lc,DatabaseIcon:Ec,DeleteIcon:Dc,DiamondIcon:wc,DirectionIcon:Mc,DiscordIcon:xc,DocChartIcon:vc,DocListIcon:Hc,DocumentIcon:Uc,DownloadIcon:Fc,DragIcon:Nc,EditIcon:Gc,EllipsisIcon:Wc,EmailIcon:Kc,ExpandAltIcon:Yc,ExpandIcon:qc,EyeCloseIcon:Vc,EyeIcon:Zc,FaceHappyIcon:zc,FaceNeutralIcon:Jc,FaceSadIcon:Qc,FacebookIcon:$c,FailedIcon:jc,FastForwardIcon:Xc,FigmaIcon:ot,FilterIcon:nt,FlagIcon:et,FolderIcon:ct,FormIcon:tt,GDriveIcon:rt,GithubIcon:It,GitlabIcon:at,GlobeIcon:lt,GoogleIcon:it,GraphBarIcon:st,GraphLineIcon:ut,GraphqlIcon:dt,GridAltIcon:mt,GridIcon:pt,GrowIcon:St,HeartHollowIcon:Ct,HeartIcon:ht,HomeIcon:bt,HourglassIcon:Tt,InfoIcon:_t,ItalicIcon:At,JumpToIcon:gt,KeyIcon:yt,LightningIcon:Ot,LightningOffIcon:kt,LinkBrokenIcon:Bt,LinkIcon:ft,LinkedinIcon:Rt,LinuxIcon:Pt,ListOrderedIcon:Lt,ListUnorderedIcon:Et,LocationIcon:Dt,LockIcon:wt,MarkdownIcon:Mt,MarkupIcon:xt,MediumIcon:vt,MemoryIcon:Ht,MenuIcon:Ut,MergeIcon:Ft,MirrorIcon:Nt,MobileIcon:Gt,MoonIcon:Wt,NutIcon:Kt,OutboxIcon:Yt,OutlineIcon:qt,PaintBrushIcon:Vt,PaperClipIcon:Zt,ParagraphIcon:zt,PassedIcon:Jt,PhoneIcon:Qt,PhotoDragIcon:$t,PhotoIcon:jt,PinAltIcon:Xt,PinIcon:or,PlayBackIcon:nr,PlayIcon:er,PlayNextIcon:cr,PlusIcon:tr,PointerDefaultIcon:rr,PointerHandIcon:Ir,PowerIcon:ar,PrintIcon:lr,ProceedIcon:ir,ProfileIcon:sr,PullRequestIcon:ur,QuestionIcon:dr,RSSIcon:mr,RedirectIcon:pr,ReduxIcon:Sr,RefreshIcon:Cr,ReplyIcon:hr,RepoIcon:br,RequestChangeIcon:Tr,RewindIcon:_r,RulerIcon:h,SearchIcon:Ar,ShareAltIcon:gr,ShareIcon:yr,ShieldIcon:Or,SideBySideIcon:kr,SidebarAltIcon:Br,SidebarAltToggleIcon:fr,SidebarIcon:Rr,SidebarToggleIcon:Pr,SpeakerIcon:Lr,StackedIcon:Er,StarHollowIcon:Dr,StarIcon:wr,StickerIcon:Mr,StopAltIcon:xr,StopIcon:vr,StorybookIcon:Hr,StructureIcon:Ur,SubtractIcon:Fr,SunIcon:Nr,SupportIcon:Gr,SwitchAltIcon:Wr,SyncIcon:Kr,TabletIcon:Yr,ThumbsUpIcon:qr,TimeIcon:Vr,TimerIcon:Zr,TransferIcon:zr,TrashIcon:Jr,TwitterIcon:Qr,TypeIcon:$r,UbuntuIcon:jr,UndoIcon:Xr,UnfoldIcon:oI,UnlockIcon:nI,UnpinIcon:eI,UploadIcon:cI,UserAddIcon:tI,UserAltIcon:rI,UserIcon:II,UsersIcon:aI,VSCodeIcon:lI,VerifiedIcon:iI,VideoIcon:sI,WandIcon:uI,WatchIcon:dI,WindowsIcon:mI,WrenchIcon:pI,YoutubeIcon:SI,ZoomIcon:CI,ZoomOutIcon:hI,ZoomResetIcon:bI,iconList:TI}=__STORYBOOK_ICONS__;var i="storybook/measure-addon",b=`${i}/tool`,T=()=>{let[r,c]=p(),{measureEnabled:I}=r,s=S(),a=u(()=>c({measureEnabled:!I}),[c,I]);return d(()=>{s.setAddonShortcut(i,{label:"Toggle Measure [M]",defaultShortcut:["M"],actionName:"measure",showInMenu:!1,action:a})},[a,s]),t.createElement(C,{key:b,active:I,title:"Enable measure",onClick:a},t.createElement(h,null))};l.register(i,()=>{l.add(b,{type:m.TOOL,title:"Measure",match:({viewMode:r,tabId:c})=>r==="story"&&!c,render:()=>t.createElement(T,null)})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/essentials-measure-7/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/essentials-measure-7/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/essentials-outline-8/manager-bundle.js b/storybook-static/sb-addons/essentials-outline-8/manager-bundle.js deleted file mode 100644 index 71ce95b..0000000 --- a/storybook-static/sb-addons/essentials-outline-8/manager-bundle.js +++ /dev/null @@ -1,3 +0,0 @@ -try{ -(()=>{var t=__REACT__,{Children:f,Component:R,Fragment:P,Profiler:L,PureComponent:E,StrictMode:D,Suspense:w,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:v,cloneElement:x,createContext:H,createElement:M,createFactory:U,createRef:F,forwardRef:N,isValidElement:G,lazy:W,memo:u,startTransition:K,unstable_act:Y,useCallback:d,useContext:q,useDebugValue:V,useDeferredValue:Z,useEffect:p,useId:z,useImperativeHandle:J,useInsertionEffect:Q,useLayoutEffect:$,useMemo:j,useReducer:X,useRef:oo,useState:no,useSyncExternalStore:eo,useTransition:co,version:to}=__REACT__;var io=__STORYBOOK_API__,{ActiveTabs:so,Consumer:uo,ManagerContext:po,Provider:mo,RequestResponseError:So,addons:l,combineParameters:Co,controlOrMetaKey:ho,controlOrMetaSymbol:Ao,eventMatchesShortcut:_o,eventToShortcut:bo,experimental_requestResponse:To,isMacLike:go,isShortcutTaken:yo,keyToSymbol:Oo,merge:ko,mockChannel:Bo,optionOrAltSymbol:fo,shortcutMatchesShortcut:Ro,shortcutToHumanString:Po,types:m,useAddonState:Lo,useArgTypes:Eo,useArgs:Do,useChannel:wo,useGlobalTypes:vo,useGlobals:S,useParameter:xo,useSharedState:Ho,useStoryPrepared:Mo,useStorybookApi:C,useStorybookState:Uo}=__STORYBOOK_API__;var Ko=__STORYBOOK_COMPONENTS__,{A:Yo,ActionBar:qo,AddonPanel:Vo,Badge:Zo,Bar:zo,Blockquote:Jo,Button:Qo,ClipboardCode:$o,Code:jo,DL:Xo,Div:on,DocumentWrapper:nn,EmptyTabContent:en,ErrorFormatter:cn,FlexBar:tn,Form:rn,H1:In,H2:an,H3:ln,H4:sn,H5:un,H6:dn,HR:pn,IconButton:h,IconButtonSkeleton:mn,Icons:Sn,Img:Cn,LI:hn,Link:An,ListItem:_n,Loader:bn,Modal:Tn,OL:gn,P:yn,Placeholder:On,Pre:kn,ResetWrapper:Bn,ScrollArea:fn,Separator:Rn,Spaced:Pn,Span:Ln,StorybookIcon:En,StorybookLogo:Dn,Symbols:wn,SyntaxHighlighter:vn,TT:xn,TabBar:Hn,TabButton:Mn,TabWrapper:Un,Table:Fn,Tabs:Nn,TabsState:Gn,TooltipLinkList:Wn,TooltipMessage:Kn,TooltipNote:Yn,UL:qn,WithTooltip:Vn,WithTooltipPure:Zn,Zoom:zn,codeCommon:Jn,components:Qn,createCopyToClipboardFunction:$n,getStoryHref:jn,icons:Xn,interleaveSeparators:oe,nameSpaceClassNames:ne,resetComponents:ee,withReset:ce}=__STORYBOOK_COMPONENTS__;var le=__STORYBOOK_ICONS__,{AccessibilityAltIcon:ie,AccessibilityIcon:se,AddIcon:ue,AdminIcon:de,AlertAltIcon:pe,AlertIcon:me,AlignLeftIcon:Se,AlignRightIcon:Ce,AppleIcon:he,ArrowDownIcon:Ae,ArrowLeftIcon:_e,ArrowRightIcon:be,ArrowSolidDownIcon:Te,ArrowSolidLeftIcon:ge,ArrowSolidRightIcon:ye,ArrowSolidUpIcon:Oe,ArrowUpIcon:ke,AzureDevOpsIcon:Be,BackIcon:fe,BasketIcon:Re,BatchAcceptIcon:Pe,BatchDenyIcon:Le,BeakerIcon:Ee,BellIcon:De,BitbucketIcon:we,BoldIcon:ve,BookIcon:xe,BookmarkHollowIcon:He,BookmarkIcon:Me,BottomBarIcon:Ue,BottomBarToggleIcon:Fe,BoxIcon:Ne,BranchIcon:Ge,BrowserIcon:We,ButtonIcon:Ke,CPUIcon:Ye,CalendarIcon:qe,CameraIcon:Ve,CategoryIcon:Ze,CertificateIcon:ze,ChangedIcon:Je,ChatIcon:Qe,CheckIcon:$e,ChevronDownIcon:je,ChevronLeftIcon:Xe,ChevronRightIcon:oc,ChevronSmallDownIcon:nc,ChevronSmallLeftIcon:ec,ChevronSmallRightIcon:cc,ChevronSmallUpIcon:tc,ChevronUpIcon:rc,ChromaticIcon:Ic,ChromeIcon:ac,CircleHollowIcon:lc,CircleIcon:ic,ClearIcon:sc,CloseAltIcon:uc,CloseIcon:dc,CloudHollowIcon:pc,CloudIcon:mc,CogIcon:Sc,CollapseIcon:Cc,CommandIcon:hc,CommentAddIcon:Ac,CommentIcon:_c,CommentsIcon:bc,CommitIcon:Tc,CompassIcon:gc,ComponentDrivenIcon:yc,ComponentIcon:Oc,ContrastIcon:kc,ControlsIcon:Bc,CopyIcon:fc,CreditIcon:Rc,CrossIcon:Pc,DashboardIcon:Lc,DatabaseIcon:Ec,DeleteIcon:Dc,DiamondIcon:wc,DirectionIcon:vc,DiscordIcon:xc,DocChartIcon:Hc,DocListIcon:Mc,DocumentIcon:Uc,DownloadIcon:Fc,DragIcon:Nc,EditIcon:Gc,EllipsisIcon:Wc,EmailIcon:Kc,ExpandAltIcon:Yc,ExpandIcon:qc,EyeCloseIcon:Vc,EyeIcon:Zc,FaceHappyIcon:zc,FaceNeutralIcon:Jc,FaceSadIcon:Qc,FacebookIcon:$c,FailedIcon:jc,FastForwardIcon:Xc,FigmaIcon:ot,FilterIcon:nt,FlagIcon:et,FolderIcon:ct,FormIcon:tt,GDriveIcon:rt,GithubIcon:It,GitlabIcon:at,GlobeIcon:lt,GoogleIcon:it,GraphBarIcon:st,GraphLineIcon:ut,GraphqlIcon:dt,GridAltIcon:pt,GridIcon:mt,GrowIcon:St,HeartHollowIcon:Ct,HeartIcon:ht,HomeIcon:At,HourglassIcon:_t,InfoIcon:bt,ItalicIcon:Tt,JumpToIcon:gt,KeyIcon:yt,LightningIcon:Ot,LightningOffIcon:kt,LinkBrokenIcon:Bt,LinkIcon:ft,LinkedinIcon:Rt,LinuxIcon:Pt,ListOrderedIcon:Lt,ListUnorderedIcon:Et,LocationIcon:Dt,LockIcon:wt,MarkdownIcon:vt,MarkupIcon:xt,MediumIcon:Ht,MemoryIcon:Mt,MenuIcon:Ut,MergeIcon:Ft,MirrorIcon:Nt,MobileIcon:Gt,MoonIcon:Wt,NutIcon:Kt,OutboxIcon:Yt,OutlineIcon:A,PaintBrushIcon:qt,PaperClipIcon:Vt,ParagraphIcon:Zt,PassedIcon:zt,PhoneIcon:Jt,PhotoDragIcon:Qt,PhotoIcon:$t,PinAltIcon:jt,PinIcon:Xt,PlayBackIcon:or,PlayIcon:nr,PlayNextIcon:er,PlusIcon:cr,PointerDefaultIcon:tr,PointerHandIcon:rr,PowerIcon:Ir,PrintIcon:ar,ProceedIcon:lr,ProfileIcon:ir,PullRequestIcon:sr,QuestionIcon:ur,RSSIcon:dr,RedirectIcon:pr,ReduxIcon:mr,RefreshIcon:Sr,ReplyIcon:Cr,RepoIcon:hr,RequestChangeIcon:Ar,RewindIcon:_r,RulerIcon:br,SearchIcon:Tr,ShareAltIcon:gr,ShareIcon:yr,ShieldIcon:Or,SideBySideIcon:kr,SidebarAltIcon:Br,SidebarAltToggleIcon:fr,SidebarIcon:Rr,SidebarToggleIcon:Pr,SpeakerIcon:Lr,StackedIcon:Er,StarHollowIcon:Dr,StarIcon:wr,StickerIcon:vr,StopAltIcon:xr,StopIcon:Hr,StorybookIcon:Mr,StructureIcon:Ur,SubtractIcon:Fr,SunIcon:Nr,SupportIcon:Gr,SwitchAltIcon:Wr,SyncIcon:Kr,TabletIcon:Yr,ThumbsUpIcon:qr,TimeIcon:Vr,TimerIcon:Zr,TransferIcon:zr,TrashIcon:Jr,TwitterIcon:Qr,TypeIcon:$r,UbuntuIcon:jr,UndoIcon:Xr,UnfoldIcon:oI,UnlockIcon:nI,UnpinIcon:eI,UploadIcon:cI,UserAddIcon:tI,UserAltIcon:rI,UserIcon:II,UsersIcon:aI,VSCodeIcon:lI,VerifiedIcon:iI,VideoIcon:sI,WandIcon:uI,WatchIcon:dI,WindowsIcon:pI,WrenchIcon:mI,YoutubeIcon:SI,ZoomIcon:CI,ZoomOutIcon:hI,ZoomResetIcon:AI,iconList:_I}=__STORYBOOK_ICONS__;var i="storybook/outline",_="outline",b=u(function(){let[c,r]=S(),s=C(),I=[!0,"true"].includes(c[_]),a=d(()=>r({[_]:!I}),[I]);return p(()=>{s.setAddonShortcut(i,{label:"Toggle Outline",defaultShortcut:["alt","O"],actionName:"outline",showInMenu:!1,action:a})},[a,s]),t.createElement(h,{key:"outline",active:I,title:"Apply outlines to the preview",onClick:a},t.createElement(A,null))});l.register(i,()=>{l.add(i,{title:"Outline",type:m.TOOL,match:({viewMode:c,tabId:r})=>!!(c&&c.match(/^(story|docs)$/))&&!r,render:()=>t.createElement(b,null)})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/essentials-outline-8/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/essentials-outline-8/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/essentials-toolbars-6/manager-bundle.js b/storybook-static/sb-addons/essentials-toolbars-6/manager-bundle.js deleted file mode 100644 index 3cd68cf..0000000 --- a/storybook-static/sb-addons/essentials-toolbars-6/manager-bundle.js +++ /dev/null @@ -1,3 +0,0 @@ -try{ -(()=>{var n=__REACT__,{Children:le,Component:ne,Fragment:se,Profiler:ie,PureComponent:ue,StrictMode:ce,Suspense:pe,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:me,cloneElement:de,createContext:be,createElement:Se,createFactory:Te,createRef:ye,forwardRef:_e,isValidElement:fe,lazy:Ce,memo:Ie,startTransition:ve,unstable_act:Oe,useCallback:I,useContext:Ee,useDebugValue:xe,useDeferredValue:ge,useEffect:x,useId:he,useImperativeHandle:ke,useInsertionEffect:Ae,useLayoutEffect:Re,useMemo:Le,useReducer:Be,useRef:R,useState:L,useSyncExternalStore:Me,useTransition:Pe,version:Ne}=__REACT__;var Fe=__STORYBOOK_API__,{ActiveTabs:We,Consumer:Ge,ManagerContext:Ke,Provider:Ye,RequestResponseError:$e,addons:g,combineParameters:qe,controlOrMetaKey:ze,controlOrMetaSymbol:Ue,eventMatchesShortcut:je,eventToShortcut:Ze,experimental_requestResponse:Je,isMacLike:Qe,isShortcutTaken:Xe,keyToSymbol:et,merge:tt,mockChannel:ot,optionOrAltSymbol:rt,shortcutMatchesShortcut:at,shortcutToHumanString:lt,types:B,useAddonState:nt,useArgTypes:st,useArgs:it,useChannel:ut,useGlobalTypes:M,useGlobals:h,useParameter:ct,useSharedState:pt,useStoryPrepared:mt,useStorybookApi:P,useStorybookState:dt}=__STORYBOOK_API__;var _t=__STORYBOOK_COMPONENTS__,{A:ft,ActionBar:Ct,AddonPanel:It,Badge:vt,Bar:Ot,Blockquote:Et,Button:xt,ClipboardCode:gt,Code:ht,DL:kt,Div:At,DocumentWrapper:Rt,EmptyTabContent:Lt,ErrorFormatter:Bt,FlexBar:Mt,Form:Pt,H1:Nt,H2:wt,H3:Vt,H4:Dt,H5:Ht,H6:Ft,HR:Wt,IconButton:N,IconButtonSkeleton:Gt,Icons:k,Img:Kt,LI:Yt,Link:$t,ListItem:qt,Loader:zt,Modal:Ut,OL:jt,P:Zt,Placeholder:Jt,Pre:Qt,ResetWrapper:Xt,ScrollArea:eo,Separator:w,Spaced:to,Span:oo,StorybookIcon:ro,StorybookLogo:ao,Symbols:lo,SyntaxHighlighter:no,TT:so,TabBar:io,TabButton:uo,TabWrapper:co,Table:po,Tabs:mo,TabsState:bo,TooltipLinkList:V,TooltipMessage:So,TooltipNote:To,UL:yo,WithTooltip:D,WithTooltipPure:_o,Zoom:fo,codeCommon:Co,components:Io,createCopyToClipboardFunction:vo,getStoryHref:Oo,icons:Eo,interleaveSeparators:xo,nameSpaceClassNames:go,resetComponents:ho,withReset:ko}=__STORYBOOK_COMPONENTS__;var W=({active:o,title:t,icon:e,description:r,onClick:a})=>n.createElement(N,{active:o,title:r,onClick:a},e&&n.createElement(k,{icon:e,__suppressDeprecationWarning:!0}),t?`\xA0${t}`:null),G=["reset"],K=o=>o.filter(t=>!G.includes(t.type)).map(t=>t.value),b="addon-toolbars",Y=async(o,t,e)=>{e&&e.next&&await o.setAddonShortcut(b,{label:e.next.label,defaultShortcut:e.next.keys,actionName:`${t}:next`,action:e.next.action}),e&&e.previous&&await o.setAddonShortcut(b,{label:e.previous.label,defaultShortcut:e.previous.keys,actionName:`${t}:previous`,action:e.previous.action}),e&&e.reset&&await o.setAddonShortcut(b,{label:e.reset.label,defaultShortcut:e.reset.keys,actionName:`${t}:reset`,action:e.reset.action})},$=o=>t=>{let{id:e,toolbar:{items:r,shortcuts:a}}=t,d=P(),[S,s]=h(),l=R([]),p=S[e],v=I(()=>{s({[e]:""})},[s]),O=I(()=>{let m=l.current,i=m.indexOf(p),c=i===m.length-1?0:i+1,T=l.current[c];s({[e]:T})},[l,p,s]),u=I(()=>{let m=l.current,i=m.indexOf(p),c=i>-1?i:0,T=c===0?m.length-1:c-1,y=l.current[T];s({[e]:y})},[l,p,s]);return x(()=>{a&&Y(d,e,{next:{...a.next,action:O},previous:{...a.previous,action:u},reset:{...a.reset,action:v}})},[d,e,a,O,u,v]),x(()=>{l.current=K(r)},[]),n.createElement(o,{cycleValues:l.current,...t})},H=({currentValue:o,items:t})=>o!=null&&t.find(e=>e.value===o&&e.type!=="reset"),q=({currentValue:o,items:t})=>{let e=H({currentValue:o,items:t});if(e)return e.icon},z=({currentValue:o,items:t})=>{let e=H({currentValue:o,items:t});if(e)return e.title},U=({right:o,title:t,value:e,icon:r,hideIcon:a,onClick:d,currentValue:S})=>{let s=r&&n.createElement(k,{style:{opacity:1},icon:r}),l={id:e??"_reset",active:S===e,right:o,title:t,icon:r,onClick:d};return r&&!a&&(l.icon=s),l},j=$(({id:o,name:t,description:e,toolbar:{icon:r,items:a,title:d,preventDynamicIcon:S,dynamicTitle:s}})=>{let[l,p]=h(),[v,O]=L(!1),u=l[o],m=!!u,i=r,c=d;S||(i=q({currentValue:u,items:a})||i),s&&(c=z({currentValue:u,items:a})||c),!c&&!i&&console.warn(`Toolbar '${t}' has no title or icon`);let T=I(y=>{p({[o]:y})},[u,p]);return n.createElement(D,{placement:"top",tooltip:({onHide:y})=>{let F=a.filter(({type:E})=>{let A=!0;return E==="reset"&&!u&&(A=!1),A}).map(E=>U({...E,currentValue:u,onClick:()=>{T(E.value),y()}}));return n.createElement(V,{links:F})},closeOnOutsideClick:!0,onVisibleChange:O},n.createElement(W,{active:v||m,description:e||"",icon:i,title:c||""}))}),Z={type:"item",value:""},J=(o,t)=>({...t,name:t.name||o,description:t.description||o,toolbar:{...t.toolbar,items:t.toolbar.items.map(e=>{let r=typeof e=="string"?{value:e,title:e}:e;return r.type==="reset"&&t.toolbar.icon&&(r.icon=t.toolbar.icon,r.hideIcon=!0),{...Z,...r}})}}),Q=()=>{let o=M(),t=Object.keys(o).filter(e=>!!o[e].toolbar);return t.length?n.createElement(n.Fragment,null,n.createElement(w,null),t.map(e=>{let r=J(e,o[e]);return n.createElement(j,{key:e,id:e,...r})})):null};g.register(b,()=>g.add(b,{title:b,type:B.TOOL,match:({tabId:o})=>!o,render:()=>n.createElement(Q,null)}));})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/essentials-toolbars-6/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/essentials-toolbars-6/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/essentials-viewport-5/manager-bundle.js b/storybook-static/sb-addons/essentials-viewport-5/manager-bundle.js deleted file mode 100644 index d3cc7bc..0000000 --- a/storybook-static/sb-addons/essentials-viewport-5/manager-bundle.js +++ /dev/null @@ -1,3 +0,0 @@ -try{ -(()=>{var ie=Object.create;var H=Object.defineProperty;var ce=Object.getOwnPropertyDescriptor;var ae=Object.getOwnPropertyNames;var le=Object.getPrototypeOf,se=Object.prototype.hasOwnProperty;var O=(e=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(e,{get:(t,r)=>(typeof require<"u"?require:t)[r]}):e)(function(e){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+e+'" is not supported')});var P=(e,t)=>()=>(e&&(t=e(e=0)),t);var Ie=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var ue=(e,t,r,l)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of ae(t))!se.call(e,a)&&a!==r&&H(e,a,{get:()=>t[a],enumerable:!(l=ce(t,a))||l.enumerable});return e};var pe=(e,t,r)=>(r=e!=null?ie(le(e)):{},ue(t||!e||!e.__esModule?H(r,"default",{value:e,enumerable:!0}):r,e));var d=P(()=>{});var h=P(()=>{});var m=P(()=>{});var $=Ie((Z,D)=>{d();h();m();(function(e){if(typeof Z=="object"&&typeof D<"u")D.exports=e();else if(typeof define=="function"&&define.amd)define([],e);else{var t;typeof window<"u"||typeof window<"u"?t=window:typeof self<"u"?t=self:t=this,t.memoizerific=e()}})(function(){var e,t,r;return function l(a,S,u){function i(c,I){if(!S[c]){if(!a[c]){var s=typeof O=="function"&&O;if(!I&&s)return s(c,!0);if(o)return o(c,!0);var g=new Error("Cannot find module '"+c+"'");throw g.code="MODULE_NOT_FOUND",g}var n=S[c]={exports:{}};a[c][0].call(n.exports,function(p){var b=a[c][1][p];return i(b||p)},n,n.exports,l,a,S,u)}return S[c].exports}for(var o=typeof O=="function"&&O,f=0;f=0)return this.lastItem=this.list[o],this.list[o].val},u.prototype.set=function(i,o){var f;return this.lastItem&&this.isEqual(this.lastItem.key,i)?(this.lastItem.val=o,this):(f=this.indexOf(i),f>=0?(this.lastItem=this.list[f],this.list[f].val=o,this):(this.lastItem={key:i,val:o},this.list.push(this.lastItem),this.size++,this))},u.prototype.delete=function(i){var o;if(this.lastItem&&this.isEqual(this.lastItem.key,i)&&(this.lastItem=void 0),o=this.indexOf(i),o>=0)return this.size--,this.list.splice(o,1)[0]},u.prototype.has=function(i){var o;return this.lastItem&&this.isEqual(this.lastItem.key,i)?!0:(o=this.indexOf(i),o>=0?(this.lastItem=this.list[o],!0):!1)},u.prototype.forEach=function(i,o){var f;for(f=0;f0&&(E[y]={cacheItem:p,arg:arguments[y]},x?i(s,E):s.push(E),s.length>c&&o(s.shift())),n.wasMemoized=x,n.numArgs=y+1,R};return n.limit=c,n.wasMemoized=!1,n.cache=I,n.lru=s,n}};function i(c,I){var s=c.length,g=I.length,n,p,b;for(p=0;p=0&&(s=c[n],g=s.cacheItem.get(s.arg),!g||!g.size);n--)s.cacheItem.delete(s.arg)}function f(c,I){return c===I||c!==c&&I!==I}},{"map-or-similar":1}]},{},[3])(3)})});d();h();m();d();h();m();d();h();m();d();h();m();var w=__REACT__,{Children:De,Component:Ve,Fragment:U,Profiler:Ne,PureComponent:He,StrictMode:Ue,Suspense:ze,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:Fe,cloneElement:Ge,createContext:qe,createElement:z,createFactory:We,createRef:Ye,forwardRef:je,isValidElement:Ke,lazy:Ze,memo:F,startTransition:$e,unstable_act:Je,useCallback:Qe,useContext:Xe,useDebugValue:et,useDeferredValue:tt,useEffect:L,useId:ot,useImperativeHandle:nt,useInsertionEffect:rt,useLayoutEffect:it,useMemo:ct,useReducer:at,useRef:G,useState:q,useSyncExternalStore:lt,useTransition:st,version:It}=__REACT__;d();h();m();var ht=__STORYBOOK_API__,{ActiveTabs:mt,Consumer:ft,ManagerContext:gt,Provider:St,RequestResponseError:wt,addons:M,combineParameters:bt,controlOrMetaKey:yt,controlOrMetaSymbol:Ct,eventMatchesShortcut:vt,eventToShortcut:_t,experimental_requestResponse:Tt,isMacLike:xt,isShortcutTaken:Ot,keyToSymbol:At,merge:kt,mockChannel:Rt,optionOrAltSymbol:Et,shortcutMatchesShortcut:Lt,shortcutToHumanString:Bt,types:W,useAddonState:Pt,useArgTypes:Mt,useArgs:Dt,useChannel:Vt,useGlobalTypes:Nt,useGlobals:Y,useParameter:j,useSharedState:Ht,useStoryPrepared:Ut,useStorybookApi:K,useStorybookState:zt}=__STORYBOOK_API__;var N=pe($());d();h();m();var $t=__STORYBOOK_THEMING__,{CacheProvider:Jt,ClassNames:Qt,Global:J,ThemeProvider:Xt,background:eo,color:to,convert:oo,create:no,createCache:ro,createGlobal:io,createReset:co,css:ao,darken:lo,ensure:so,ignoreSsrWarning:Io,isPropValid:uo,jsx:po,keyframes:ho,lighten:mo,styled:A,themes:fo,typography:go,useTheme:So,withTheme:Q}=__STORYBOOK_THEMING__;d();h();m();var vo=__STORYBOOK_COMPONENTS__,{A:_o,ActionBar:To,AddonPanel:xo,Badge:Oo,Bar:Ao,Blockquote:ko,Button:Ro,ClipboardCode:Eo,Code:Lo,DL:Bo,Div:Po,DocumentWrapper:Mo,EmptyTabContent:Do,ErrorFormatter:Vo,FlexBar:No,Form:Ho,H1:Uo,H2:zo,H3:Fo,H4:Go,H5:qo,H6:Wo,HR:Yo,IconButton:V,IconButtonSkeleton:jo,Icons:Ko,Img:Zo,LI:$o,Link:Jo,ListItem:Qo,Loader:Xo,Modal:en,OL:tn,P:on,Placeholder:nn,Pre:rn,ResetWrapper:cn,ScrollArea:an,Separator:ln,Spaced:sn,Span:In,StorybookIcon:un,StorybookLogo:pn,Symbols:dn,SyntaxHighlighter:hn,TT:mn,TabBar:fn,TabButton:gn,TabWrapper:Sn,Table:wn,Tabs:bn,TabsState:yn,TooltipLinkList:X,TooltipMessage:Cn,TooltipNote:vn,UL:_n,WithTooltip:ee,WithTooltipPure:Tn,Zoom:xn,codeCommon:On,components:An,createCopyToClipboardFunction:kn,getStoryHref:Rn,icons:En,interleaveSeparators:Ln,nameSpaceClassNames:Bn,resetComponents:Pn,withReset:Mn}=__STORYBOOK_COMPONENTS__;d();h();m();var Un=__STORYBOOK_ICONS__,{AccessibilityAltIcon:zn,AccessibilityIcon:Fn,AddIcon:Gn,AdminIcon:qn,AlertAltIcon:Wn,AlertIcon:Yn,AlignLeftIcon:jn,AlignRightIcon:Kn,AppleIcon:Zn,ArrowDownIcon:$n,ArrowLeftIcon:Jn,ArrowRightIcon:Qn,ArrowSolidDownIcon:Xn,ArrowSolidLeftIcon:er,ArrowSolidRightIcon:tr,ArrowSolidUpIcon:or,ArrowUpIcon:nr,AzureDevOpsIcon:rr,BackIcon:ir,BasketIcon:cr,BatchAcceptIcon:ar,BatchDenyIcon:lr,BeakerIcon:sr,BellIcon:Ir,BitbucketIcon:ur,BoldIcon:pr,BookIcon:dr,BookmarkHollowIcon:hr,BookmarkIcon:mr,BottomBarIcon:fr,BottomBarToggleIcon:gr,BoxIcon:Sr,BranchIcon:wr,BrowserIcon:br,ButtonIcon:yr,CPUIcon:Cr,CalendarIcon:vr,CameraIcon:_r,CategoryIcon:Tr,CertificateIcon:xr,ChangedIcon:Or,ChatIcon:Ar,CheckIcon:kr,ChevronDownIcon:Rr,ChevronLeftIcon:Er,ChevronRightIcon:Lr,ChevronSmallDownIcon:Br,ChevronSmallLeftIcon:Pr,ChevronSmallRightIcon:Mr,ChevronSmallUpIcon:Dr,ChevronUpIcon:Vr,ChromaticIcon:Nr,ChromeIcon:Hr,CircleHollowIcon:Ur,CircleIcon:zr,ClearIcon:Fr,CloseAltIcon:Gr,CloseIcon:qr,CloudHollowIcon:Wr,CloudIcon:Yr,CogIcon:jr,CollapseIcon:Kr,CommandIcon:Zr,CommentAddIcon:$r,CommentIcon:Jr,CommentsIcon:Qr,CommitIcon:Xr,CompassIcon:ei,ComponentDrivenIcon:ti,ComponentIcon:oi,ContrastIcon:ni,ControlsIcon:ri,CopyIcon:ii,CreditIcon:ci,CrossIcon:ai,DashboardIcon:li,DatabaseIcon:si,DeleteIcon:Ii,DiamondIcon:ui,DirectionIcon:pi,DiscordIcon:di,DocChartIcon:hi,DocListIcon:mi,DocumentIcon:fi,DownloadIcon:gi,DragIcon:Si,EditIcon:wi,EllipsisIcon:bi,EmailIcon:yi,ExpandAltIcon:Ci,ExpandIcon:vi,EyeCloseIcon:_i,EyeIcon:Ti,FaceHappyIcon:xi,FaceNeutralIcon:Oi,FaceSadIcon:Ai,FacebookIcon:ki,FailedIcon:Ri,FastForwardIcon:Ei,FigmaIcon:Li,FilterIcon:Bi,FlagIcon:Pi,FolderIcon:Mi,FormIcon:Di,GDriveIcon:Vi,GithubIcon:Ni,GitlabIcon:Hi,GlobeIcon:Ui,GoogleIcon:zi,GraphBarIcon:Fi,GraphLineIcon:Gi,GraphqlIcon:qi,GridAltIcon:Wi,GridIcon:Yi,GrowIcon:te,HeartHollowIcon:ji,HeartIcon:Ki,HomeIcon:Zi,HourglassIcon:$i,InfoIcon:Ji,ItalicIcon:Qi,JumpToIcon:Xi,KeyIcon:ec,LightningIcon:tc,LightningOffIcon:oc,LinkBrokenIcon:nc,LinkIcon:rc,LinkedinIcon:ic,LinuxIcon:cc,ListOrderedIcon:ac,ListUnorderedIcon:lc,LocationIcon:sc,LockIcon:Ic,MarkdownIcon:uc,MarkupIcon:pc,MediumIcon:dc,MemoryIcon:hc,MenuIcon:mc,MergeIcon:fc,MirrorIcon:gc,MobileIcon:Sc,MoonIcon:wc,NutIcon:bc,OutboxIcon:yc,OutlineIcon:Cc,PaintBrushIcon:vc,PaperClipIcon:_c,ParagraphIcon:Tc,PassedIcon:xc,PhoneIcon:Oc,PhotoDragIcon:Ac,PhotoIcon:kc,PinAltIcon:Rc,PinIcon:Ec,PlayBackIcon:Lc,PlayIcon:Bc,PlayNextIcon:Pc,PlusIcon:Mc,PointerDefaultIcon:Dc,PointerHandIcon:Vc,PowerIcon:Nc,PrintIcon:Hc,ProceedIcon:Uc,ProfileIcon:zc,PullRequestIcon:Fc,QuestionIcon:Gc,RSSIcon:qc,RedirectIcon:Wc,ReduxIcon:Yc,RefreshIcon:jc,ReplyIcon:Kc,RepoIcon:Zc,RequestChangeIcon:$c,RewindIcon:Jc,RulerIcon:Qc,SearchIcon:Xc,ShareAltIcon:ea,ShareIcon:ta,ShieldIcon:oa,SideBySideIcon:na,SidebarAltIcon:ra,SidebarAltToggleIcon:ia,SidebarIcon:ca,SidebarToggleIcon:aa,SpeakerIcon:la,StackedIcon:sa,StarHollowIcon:Ia,StarIcon:ua,StickerIcon:pa,StopAltIcon:da,StopIcon:ha,StorybookIcon:ma,StructureIcon:fa,SubtractIcon:ga,SunIcon:Sa,SupportIcon:wa,SwitchAltIcon:ba,SyncIcon:ya,TabletIcon:Ca,ThumbsUpIcon:va,TimeIcon:_a,TimerIcon:Ta,TransferIcon:oe,TrashIcon:xa,TwitterIcon:Oa,TypeIcon:Aa,UbuntuIcon:ka,UndoIcon:Ra,UnfoldIcon:Ea,UnlockIcon:La,UnpinIcon:Ba,UploadIcon:Pa,UserAddIcon:Ma,UserAltIcon:Da,UserIcon:Va,UsersIcon:Na,VSCodeIcon:Ha,VerifiedIcon:Ua,VideoIcon:za,WandIcon:Fa,WatchIcon:Ga,WindowsIcon:qa,WrenchIcon:Wa,YoutubeIcon:Ya,ZoomIcon:ja,ZoomOutIcon:Ka,ZoomResetIcon:Za,iconList:$a}=__STORYBOOK_ICONS__;var k="storybook/viewport",he="viewport",me={viewport:"reset",viewportRotated:!1},re=(e,t)=>e.indexOf(t),fe=(e,t)=>{let r=re(e,t);return r===e.length-1?e[0]:e[r+1]},ge=(e,t)=>{let r=re(e,t);return r<1?e[e.length-1]:e[r-1]},Se=async(e,t,r,l)=>{await e.setAddonShortcut(k,{label:"Previous viewport",defaultShortcut:["alt","shift","V"],actionName:"previous",action:()=>{r({viewport:ge(l,t.viewport)})}}),await e.setAddonShortcut(k,{label:"Next viewport",defaultShortcut:["alt","V"],actionName:"next",action:()=>{r({viewport:fe(l,t.viewport)})}}),await e.setAddonShortcut(k,{label:"Reset viewport",defaultShortcut:["alt","control","V"],actionName:"reset",action:()=>{r(me)}})},we={mobile1:{name:"Small mobile",styles:{height:"568px",width:"320px"},type:"mobile"},mobile2:{name:"Large mobile",styles:{height:"896px",width:"414px"},type:"mobile"},tablet:{name:"Tablet",styles:{height:"1112px",width:"834px"},type:"tablet"}},be=(0,N.default)(50)(e=>[...ye,...Object.entries(e).map(([t,{name:r,...l}])=>({...l,id:t,title:r}))]),B={id:"reset",title:"Reset viewport",styles:null,type:"other"},ye=[B],Ce=(0,N.default)(50)((e,t,r,l)=>e.filter(a=>a.id!==B.id||t.id!==a.id).map(a=>({...a,onClick:()=>{r({viewport:a.id}),l()}}))),ve=({width:e,height:t,...r})=>({...r,height:e,width:t}),_e=A.div(()=>({display:"inline-flex",alignItems:"center"})),ne=A.div(({theme:e})=>({display:"inline-block",textDecoration:"none",padding:10,fontWeight:e.typography.weight.bold,fontSize:e.typography.size.s2-1,lineHeight:"1",height:40,border:"none",borderTop:"3px solid transparent",borderBottom:"3px solid transparent",background:"transparent"})),Te=A(V)(()=>({display:"inline-flex",alignItems:"center"})),xe=A.div(({theme:e})=>({fontSize:e.typography.size.s2-1,marginLeft:10})),Oe=(e,t,r)=>{if(t===null)return;let l=typeof t=="function"?t(e):t;return r?ve(l):l},Ae=F(Q(({theme:e})=>{let[t,r]=Y(),{viewports:l=we,defaultOrientation:a,defaultViewport:S,disable:u}=j(he,{}),i=be(l),o=K(),[f,c]=q(!1);S&&!i.find(n=>n.id===S)&&console.warn(`Cannot find "defaultViewport" of "${S}" in addon-viewport configs, please check the "viewports" setting in the configuration.`),L(()=>{Se(o,t,r,Object.keys(l))},[l,t,t.viewport,r,o]),L(()=>{let n=a==="landscape";(S&&t.viewport!==S||a&&t.viewportRotated!==n)&&r({viewport:S,viewportRotated:n})},[a,S,r]);let I=i.find(n=>n.id===t.viewport)||i.find(n=>n.id===S)||i.find(n=>n.default)||B,s=G(),g=Oe(s.current,I.styles,t.viewportRotated);return L(()=>{s.current=g},[I]),u||Object.entries(l).length===0?null:w.createElement(U,null,w.createElement(ee,{placement:"top",tooltip:({onHide:n})=>w.createElement(X,{links:Ce(i,I,r,n)}),closeOnOutsideClick:!0,onVisibleChange:c},w.createElement(Te,{key:"viewport",title:"Change the size of the preview",active:f||!!g,onDoubleClick:()=>{r({viewport:B.id})}},w.createElement(te,null),g?w.createElement(xe,null,t.viewportRotated?`${I.title} (L)`:`${I.title} (P)`):null)),g?w.createElement(_e,null,w.createElement(J,{styles:{'iframe[data-is-storybook="true"]':{...g||{width:"100%",height:"100%"}}}}),w.createElement(ne,{title:"Viewport width"},g.width.replace("px","")),w.createElement(V,{key:"viewport-rotate",title:"Rotate viewport",onClick:()=>{r({viewportRotated:!t.viewportRotated})}},w.createElement(oe,null)),w.createElement(ne,{title:"Viewport height"},g.height.replace("px",""))):null)}));M.register(k,()=>{M.add(k,{title:"viewport / media-queries",type:W.TOOL,match:({viewMode:e,tabId:t})=>e==="story"&&!t,render:()=>z(Ae,null)})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/essentials-viewport-5/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/essentials-viewport-5/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/interactions-9/manager-bundle.js b/storybook-static/sb-addons/interactions-9/manager-bundle.js deleted file mode 100644 index de03336..0000000 --- a/storybook-static/sb-addons/interactions-9/manager-bundle.js +++ /dev/null @@ -1,234 +0,0 @@ -try{ -(()=>{var ke=(t=>typeof require<"u"?require:typeof Proxy<"u"?new Proxy(t,{get:(e,r)=>(typeof require<"u"?require:e)[r]}):t)(function(t){if(typeof require<"u")return require.apply(this,arguments);throw Error('Dynamic require of "'+t+'" is not supported')});var x=__REACT__,{Children:Cm,Component:Om,Fragment:Sr,Profiler:_m,PureComponent:Im,StrictMode:Rm,Suspense:Tm,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:Dm,cloneElement:Fm,createContext:Pm,createElement:se,createFactory:jm,createRef:Bm,forwardRef:km,isValidElement:Nm,lazy:Mm,memo:Ar,startTransition:Lm,unstable_act:$m,useCallback:$o,useContext:zm,useDebugValue:qm,useDeferredValue:Um,useEffect:ct,useId:Hm,useImperativeHandle:Wm,useInsertionEffect:Vm,useLayoutEffect:Gm,useMemo:zo,useReducer:Ym,useRef:wr,useState:We,useSyncExternalStore:Km,useTransition:Jm,version:Xm}=__REACT__;var ty=__STORYBOOK_API__,{ActiveTabs:ry,Consumer:qo,ManagerContext:ny,Provider:oy,RequestResponseError:ay,addons:an,combineParameters:iy,controlOrMetaKey:sy,controlOrMetaSymbol:uy,eventMatchesShortcut:ly,eventToShortcut:cy,experimental_requestResponse:py,isMacLike:fy,isShortcutTaken:dy,keyToSymbol:hy,merge:my,mockChannel:yy,optionOrAltSymbol:gy,shortcutMatchesShortcut:by,shortcutToHumanString:vy,types:Uo,useAddonState:sn,useArgTypes:Ey,useArgs:Sy,useChannel:Ho,useGlobalTypes:Ay,useGlobals:wy,useParameter:Wo,useSharedState:xy,useStoryPrepared:Cy,useStorybookApi:Vo,useStorybookState:Oy}=__STORYBOOK_API__;var Dy=__STORYBOOK_COMPONENTS__,{A:Fy,ActionBar:Py,AddonPanel:Go,Badge:Yo,Bar:Ko,Blockquote:jy,Button:Jo,ClipboardCode:By,Code:ky,DL:Ny,Div:My,DocumentWrapper:Ly,EmptyTabContent:Xo,ErrorFormatter:$y,FlexBar:zy,Form:qy,H1:Uy,H2:Hy,H3:Wy,H4:Vy,H5:Gy,H6:Yy,HR:Ky,IconButton:un,IconButtonSkeleton:Jy,Icons:Xy,Img:Qy,LI:Zy,Link:ln,ListItem:eg,Loader:tg,Modal:rg,OL:ng,P:Qo,Placeholder:og,Pre:ag,ResetWrapper:ig,ScrollArea:sg,Separator:Zo,Spaced:ea,Span:ug,StorybookIcon:lg,StorybookLogo:cg,Symbols:pg,SyntaxHighlighter:fg,TT:dg,TabBar:hg,TabButton:mg,TabWrapper:yg,Table:gg,Tabs:bg,TabsState:vg,TooltipLinkList:Eg,TooltipMessage:Sg,TooltipNote:cn,UL:Ag,WithTooltip:Et,WithTooltipPure:wg,Zoom:xg,codeCommon:Cg,components:Og,createCopyToClipboardFunction:_g,getStoryHref:Ig,icons:Rg,interleaveSeparators:Tg,nameSpaceClassNames:Dg,resetComponents:Fg,withReset:Pg}=__STORYBOOK_COMPONENTS__;var Mg=__STORYBOOK_CHANNELS__,{Channel:ta,PostMessageTransport:Lg,WebsocketTransport:$g,createBrowserChannel:zg}=__STORYBOOK_CHANNELS__;var Vg=__STORYBOOK_CLIENT_LOGGER__,{deprecate:rt,logger:Se,once:pt,pretty:Gg}=__STORYBOOK_CLIENT_LOGGER__;var Qg=__STORYBOOK_CORE_EVENTS__,{ARGTYPES_INFO_REQUEST:ra,ARGTYPES_INFO_RESPONSE:pn,CHANNEL_CREATED:Zg,CHANNEL_WS_DISCONNECT:eb,CONFIG_ERROR:na,CREATE_NEW_STORYFILE_REQUEST:tb,CREATE_NEW_STORYFILE_RESPONSE:rb,CURRENT_STORY_WAS_SET:fn,DOCS_PREPARED:oa,DOCS_RENDERED:xr,FILE_COMPONENT_SEARCH_REQUEST:nb,FILE_COMPONENT_SEARCH_RESPONSE:ob,FORCE_REMOUNT:Qt,FORCE_RE_RENDER:Cr,GLOBALS_UPDATED:aa,NAVIGATE_URL:ab,PLAY_FUNCTION_THREW_EXCEPTION:Or,PRELOAD_ENTRIES:ia,PREVIEW_BUILDER_PROGRESS:ib,PREVIEW_KEYDOWN:sa,REGISTER_SUBSCRIPTION:sb,REQUEST_WHATS_NEW_DATA:ub,RESET_STORY_ARGS:_r,RESULT_WHATS_NEW_DATA:lb,SAVE_STORY_REQUEST:cb,SAVE_STORY_RESPONSE:pb,SELECT_STORY:fb,SET_CONFIG:db,SET_CURRENT_STORY:dn,SET_GLOBALS:ua,SET_INDEX:hb,SET_STORIES:mb,SET_WHATS_NEW_CACHE:yb,SHARED_STATE_CHANGED:gb,SHARED_STATE_SET:bb,STORIES_COLLAPSE_ALL:vb,STORIES_EXPAND_ALL:Eb,STORY_ARGS_UPDATED:la,STORY_CHANGED:ca,STORY_ERRORED:pa,STORY_INDEX_INVALIDATED:fa,STORY_MISSING:hn,STORY_PREPARED:da,STORY_RENDERED:Zt,STORY_RENDER_PHASE_CHANGED:nt,STORY_SPECIFIED:ha,STORY_THREW_EXCEPTION:Ir,STORY_UNCHANGED:ma,TELEMETRY_ERROR:Sb,TOGGLE_WHATS_NEW_NOTIFICATIONS:Ab,UNHANDLED_ERRORS_WHILE_PLAYING:Rr,UPDATE_GLOBALS:Tr,UPDATE_QUERY_PARAMS:ya,UPDATE_STORY_ARGS:Dr}=__STORYBOOK_CORE_EVENTS__;var Mu=Object.defineProperty,xe=(t,e)=>Mu(t,"name",{value:e,configurable:!0});function Ce(t){for(var e=[],r=1;r` - ${i}`).join(` -`)}`),`${o}${a!=null?` - -More info: ${a} -`:""}`}};xe(ga,"StorybookError");var Ie=ga,Lu=(t=>(t.BLOCKS="BLOCKS",t.DOCS_TOOLS="DOCS-TOOLS",t.PREVIEW_CLIENT_LOGGER="PREVIEW_CLIENT-LOGGER",t.PREVIEW_CHANNELS="PREVIEW_CHANNELS",t.PREVIEW_CORE_EVENTS="PREVIEW_CORE-EVENTS",t.PREVIEW_INSTRUMENTER="PREVIEW_INSTRUMENTER",t.PREVIEW_API="PREVIEW_API",t.PREVIEW_REACT_DOM_SHIM="PREVIEW_REACT-DOM-SHIM",t.PREVIEW_ROUTER="PREVIEW_ROUTER",t.PREVIEW_THEMING="PREVIEW_THEMING",t.RENDERER_HTML="RENDERER_HTML",t.RENDERER_PREACT="RENDERER_PREACT",t.RENDERER_REACT="RENDERER_REACT",t.RENDERER_SERVER="RENDERER_SERVER",t.RENDERER_SVELTE="RENDERER_SVELTE",t.RENDERER_VUE="RENDERER_VUE",t.RENDERER_VUE3="RENDERER_VUE3",t.RENDERER_WEB_COMPONENTS="RENDERER_WEB-COMPONENTS",t.FRAMEWORK_NEXTJS="FRAMEWORK_NEXTJS",t))(Lu||{}),va=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:1,message:Ce` - Couldn't find story matching id '${e.storyId}' after HMR. - - Did you just rename a story? - - Did you remove it from your CSF file? - - Are you sure a story with the id '${e.storyId}' exists? - - Please check the values in the stories field of your main.js config and see if they would match your CSF File. - - Also check the browser console and terminal for potential error messages.`}),this.data=e}};xe(va,"MissingStoryAfterHmrError");var Ea=va,$u=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:2,documentation:"https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#using-implicit-actions-during-rendering-is-deprecated-for-example-in-the-play-function",message:Ce` - We detected that you use an implicit action arg while ${e.phase} of your story. - ${e.deprecated?` -This is deprecated and won't work in Storybook 8 anymore. -`:""} - Please provide an explicit spy to your args like this: - import { fn } from '@storybook/test'; - ... - args: { - ${e.name}: fn() - }`}),this.data=e}};xe($u,"ImplicitActionsDuringRendering");var Sa=class extends Ie{constructor(){super({category:"PREVIEW_API",code:3,message:Ce` - Cannot call \`storyStore.extract()\` without calling \`storyStore.cacheAllCsfFiles()\` first. - - You probably meant to call \`await preview.extract()\` which does the above for you.`})}};xe(Sa,"CalledExtractOnStoreError");var Aa=Sa,wa=class extends Ie{constructor(){super({category:"PREVIEW_API",code:4,message:Ce` - Expected your framework's preset to export a \`renderToCanvas\` field. - - Perhaps it needs to be upgraded for Storybook 7.0?`,documentation:"https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#mainjs-framework-field"})}};xe(wa,"MissingRenderToCanvasError");var xa=wa,Ca=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:5,message:Ce` - Called \`Preview.${e.methodName}()\` before initialization. - - The preview needs to load the story index before most methods can be called. If you want - to call \`${e.methodName}\`, try \`await preview.initializationPromise;\` first. - - If you didn't call the above code, then likely it was called by an addon that needs to - do the above.`}),this.data=e}};xe(Ca,"CalledPreviewMethodBeforeInitializationError");var Ne=Ca,Oa=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:6,message:Ce` - Error fetching \`/index.json\`: - - ${e.text} - - If you are in development, this likely indicates a problem with your Storybook process, - check the terminal for errors. - - If you are in a deployed Storybook, there may have been an issue deploying the full Storybook - build.`}),this.data=e}};xe(Oa,"StoryIndexFetchError");var _a=Oa,Ia=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:7,message:Ce` - Tried to render docs entry ${e.storyId} but it is a MDX file that has no CSF - references, or autodocs for a CSF file that some doesn't refer to itself. - - This likely is an internal error in Storybook's indexing, or you've attached the - \`attached-mdx\` tag to an MDX file that is not attached.`}),this.data=e}};xe(Ia,"MdxFileWithNoCsfReferencesError");var Ra=Ia,Ta=class extends Ie{constructor(){super({category:"PREVIEW_API",code:8,message:Ce` - Couldn't find any stories in your Storybook. - - - Please check your stories field of your main.js config: does it match correctly? - - Also check the browser console and terminal for error messages.`})}};xe(Ta,"EmptyIndexError");var Da=Ta,Fa=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:9,message:Ce` - Couldn't find story matching '${e.storySpecifier}'. - - - Are you sure a story with that id exists? - - Please check your stories field of your main.js config. - - Also check the browser console and terminal for error messages.`}),this.data=e}};xe(Fa,"NoStoryMatchError");var Pa=Fa,ja=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:10,message:Ce` - Couldn't find story matching id '${e.storyId}' after importing a CSF file. - - The file was indexed as if the story was there, but then after importing the file in the browser - we didn't find the story. Possible reasons: - - You are using a custom story indexer that is misbehaving. - - You have a custom file loader that is removing or renaming exports. - - Please check your browser console and terminal for errors that may explain the issue.`}),this.data=e}};xe(ja,"MissingStoryFromCsfFileError");var Ba=ja,ka=class extends Ie{constructor(){super({category:"PREVIEW_API",code:11,message:Ce` - Cannot access the Story Store until the index is ready. - - It is not recommended to use methods directly on the Story Store anyway, in Storybook 9 we will - remove access to the store entirely`})}};xe(ka,"StoryStoreAccessedBeforeInitializationError");var Na=ka,Ma=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:12,message:Ce` - Incorrect use of mount in the play function. - - To use mount in the play function, you must satisfy the following two requirements: - - 1. You *must* destructure the mount property from the \`context\` (the argument passed to your play function). - This makes sure that Storybook does not start rendering the story before the play function begins. - - 2. Your Storybook framework or builder must be configured to transpile to ES2017 or newer. - This is because destructuring statements and async/await usages are otherwise transpiled away, - which prevents Storybook from recognizing your usage of \`mount\`. - - Note that Angular is not supported. As async/await is transpiled to support the zone.js polyfill. - - More info: https://storybook.js.org/docs/writing-tests/interaction-testing#run-code-before-the-component-gets-rendered - - Received the following play function: - ${e.playFunction}`}),this.data=e}};xe(Ma,"MountMustBeDestructuredError");var Fr=Ma,zu=class extends Ie{constructor(){super({category:"PREVIEW_API",code:13,message:Ce` - You must configure testingLibraryRender to use play in portable stories. - - import { render } from '@testing-library/[renderer]'; - - setProjectAnnotations({ - testingLibraryRender: render, - }); - - For other testing renderers, you can configure \`renderToCanvas\` like so: - - import { render } from 'your-test-renderer'; - - setProjectAnnotations({ - renderToCanvas: ({ storyFn }) => { - const Story = storyFn(); - - // Svelte - render(Story.Component, Story.props); - - // Vue - render(Story); - - // or for React - render(); - }, - });`})}};xe(zu,"TestingLibraryMustBeConfiguredError");var La=class extends Ie{constructor(e){super({category:"PREVIEW_API",code:14,message:Ce` - No render function available for storyId '${e.id}' - `}),this.data=e}};xe(La,"NoRenderFunctionError");var $a=La,za=class extends Ie{constructor(){super({category:"PREVIEW_API",code:15,message:Ce` - No component is mounted in your story. - - This usually occurs when you destructure mount in the play function, but forget to call it. - - For example: - - async play({ mount, canvasElement }) { - // 👈 mount should be called: await mount(); - const canvas = within(canvasElement); - const button = await canvas.findByRole('button'); - await userEvent.click(button); - }; - - Make sure to either remove it or call mount in your play function. - `})}};xe(za,"NoStoryMountedError");var qa=za,qu=class extends Ie{constructor(){super({category:"FRAMEWORK_NEXTJS",code:1,documentation:"https://storybook.js.org/docs/get-started/nextjs#faq",message:Ce` - You are importing avif images, but you don't have sharp installed. - - You have to install sharp in order to use image optimization features in Next.js. - `})}};xe(qu,"NextJsSharpError");var Uu=class extends Ie{constructor(e){super({category:"FRAMEWORK_NEXTJS",code:2,message:Ce` - Tried to access router mocks from "${e.importType}" but they were not created yet. You might be running code in an unsupported environment. - `}),this.data=e}};xe(Uu,"NextjsRouterMocksNotAvailable");var Hu=class extends Ie{constructor(e){super({category:"DOCS-TOOLS",code:1,documentation:"https://github.com/storybookjs/storybook/issues/26606",message:Ce` - There was a failure when generating detailed ArgTypes in ${e.language} for: - ${JSON.stringify(e.type,null,2)} - - Storybook will fall back to use a generic type description instead. - - This type is either not supported or it is a bug in the docgen generation in Storybook. - If you think this is a bug, please detail it as much as possible in the Github issue. - `}),this.data=e}};xe(Hu,"UnknownArgTypesError");var Wu=Object.create,Va=Object.defineProperty,Vu=Object.getOwnPropertyDescriptor,Gu=Object.getOwnPropertyNames,Yu=Object.getPrototypeOf,Ku=Object.prototype.hasOwnProperty,Ju=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),Xu=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of Gu(e))!Ku.call(t,o)&&o!==r&&Va(t,o,{get:()=>e[o],enumerable:!(n=Vu(e,o))||n.enumerable});return t},Qu=(t,e,r)=>(r=t!=null?Wu(Yu(t)):{},Xu(e||!t||!t.__esModule?Va(r,"default",{value:t,enumerable:!0}):r,t)),Zu=Ju(t=>{Object.defineProperty(t,"__esModule",{value:!0}),t.isEqual=function(){var e=Object.prototype.toString,r=Object.getPrototypeOf,n=Object.getOwnPropertySymbols?function(o){return Object.keys(o).concat(Object.getOwnPropertySymbols(o))}:Object.keys;return function(o,a){return function i(s,u,l){var f,d,p,g=e.call(s),h=e.call(u);if(s===u)return!0;if(s==null||u==null)return!1;if(l.indexOf(s)>-1&&l.indexOf(u)>-1)return!0;if(l.push(s,u),g!=h||(f=n(s),d=n(u),f.length!=d.length||f.some(function(v){return!i(s[v],u[v],l)})))return!1;switch(g.slice(8,-1)){case"Symbol":return s.valueOf()==u.valueOf();case"Date":case"Number":return+s==+u||+s!=+s&&+u!=+u;case"RegExp":case"Function":case"String":case"Boolean":return""+s==""+u;case"Set":case"Map":f=s.entries(),d=u.entries();do if(!i((p=f.next()).value,d.next().value,l))return!1;while(!p.done);return!0;case"ArrayBuffer":s=new Uint8Array(s),u=new Uint8Array(u);case"DataView":s=new Uint8Array(s.buffer),u=new Uint8Array(u.buffer);case"Float32Array":case"Float64Array":case"Int8Array":case"Int16Array":case"Int32Array":case"Uint8Array":case"Uint16Array":case"Uint32Array":case"Uint8ClampedArray":case"Arguments":case"Array":if(s.length!=u.length)return!1;for(p=0;p`${r} ${n}${o}`).replace(/([a-z])([A-Z])/g,(e,r,n)=>`${r} ${n}`).replace(/([a-z])([0-9])/gi,(e,r,n)=>`${r} ${n}`).replace(/([0-9])([a-z])/gi,(e,r,n)=>`${r} ${n}`).replace(/(\s|^)(\w)/g,(e,r,n)=>`${r}${n.toUpperCase()}`).replace(/ +/g," ").trim()}var Ua=Qu(Zu()),Ga=t=>t.map(e=>typeof e<"u").filter(Boolean).length,tl=(t,e)=>{let{exists:r,eq:n,neq:o,truthy:a}=t;if(Ga([r,n,o,a])>1)throw new Error(`Invalid conditional test ${JSON.stringify({exists:r,eq:n,neq:o})}`);if(typeof n<"u")return(0,Ua.isEqual)(e,n);if(typeof o<"u")return!(0,Ua.isEqual)(e,o);if(typeof r<"u"){let i=typeof e<"u";return r?i:!i}return typeof a>"u"||a?!!e:!e},Ya=(t,e,r)=>{if(!t.if)return!0;let{arg:n,global:o}=t.if;if(Ga([n,o])!==1)throw new Error(`Invalid conditional value ${JSON.stringify({arg:n,global:o})}`);let a=n?e[n]:r[o];return tl(t.if,a)},yn=t=>t.toLowerCase().replace(/[ ’–—―′¿'`~!@#$%^&*()_|+\-=?;:'",.<>\{\}\[\]\\\/]/gi,"-").replace(/-+/g,"-").replace(/^-+/,"").replace(/-+$/,""),Ha=(t,e)=>{let r=yn(t);if(r==="")throw new Error(`Invalid ${e} '${t}', must include alphanumeric characters`);return r},Ka=(t,e)=>`${Ha(t,"kind")}${e?`--${Ha(e,"name")}`:""}`,Ja=t=>el(t);function Wa(t,e){return Array.isArray(e)?e.includes(t):t.match(e)}function Pr(t,{includeStories:e,excludeStories:r}){return t!=="__esModule"&&(!e||Wa(t,e))&&(!r||!Wa(t,r))}var Xa=(...t)=>{let e=t.reduce((r,n)=>(n.startsWith("!")?r.delete(n.slice(1)):r.add(n),r),new Set);return Array.from(e)};var rl=Object.create,Nn=Object.defineProperty,nl=Object.getOwnPropertyDescriptor,ol=Object.getOwnPropertyNames,al=Object.getPrototypeOf,il=Object.prototype.hasOwnProperty,c=(t,e)=>Nn(t,"name",{value:e,configurable:!0}),jr=(t=>typeof ke<"u"?ke:typeof Proxy<"u"?new Proxy(t,{get:(e,r)=>(typeof ke<"u"?ke:e)[r]}):t)(function(t){if(typeof ke<"u")return ke.apply(this,arguments);throw Error('Dynamic require of "'+t+'" is not supported')}),R=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports),sl=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of ol(e))!il.call(t,o)&&o!==r&&Nn(t,o,{get:()=>e[o],enumerable:!(n=nl(e,o))||n.enumerable});return t},je=(t,e,r)=>(r=t!=null?rl(al(t)):{},sl(e||!t||!t.__esModule?Nn(r,"default",{value:t,enumerable:!0}):r,t)),hi=R((t,e)=>{(function(r){if(typeof t=="object"&&typeof e<"u")e.exports=r();else if(typeof define=="function"&&define.amd)define([],r);else{var n;typeof window<"u"||typeof window<"u"?n=window:typeof self<"u"?n=self:n=this,n.memoizerific=r()}})(function(){var r,n,o;return c(function a(i,s,u){function l(p,g){if(!s[p]){if(!i[p]){var h=typeof jr=="function"&&jr;if(!g&&h)return h(p,!0);if(f)return f(p,!0);var v=new Error("Cannot find module '"+p+"'");throw v.code="MODULE_NOT_FOUND",v}var b=s[p]={exports:{}};i[p][0].call(b.exports,function(m){var y=i[p][1][m];return l(y||m)},b,b.exports,a,i,s,u)}return s[p].exports}c(l,"s");for(var f=typeof jr=="function"&&jr,d=0;d=0)return this.lastItem=this.list[f],this.list[f].val},u.prototype.set=function(l,f){var d;return this.lastItem&&this.isEqual(this.lastItem.key,l)?(this.lastItem.val=f,this):(d=this.indexOf(l),d>=0?(this.lastItem=this.list[d],this.list[d].val=f,this):(this.lastItem={key:l,val:f},this.list.push(this.lastItem),this.size++,this))},u.prototype.delete=function(l){var f;if(this.lastItem&&this.isEqual(this.lastItem.key,l)&&(this.lastItem=void 0),f=this.indexOf(l),f>=0)return this.size--,this.list.splice(f,1)[0]},u.prototype.has=function(l){var f;return this.lastItem&&this.isEqual(this.lastItem.key,l)?!0:(f=this.indexOf(l),f>=0?(this.lastItem=this.list[f],!0):!1)},u.prototype.forEach=function(l,f){var d;for(d=0;d0&&(C[w]={cacheItem:m,arg:arguments[w]},I?l(h,C):h.push(C),h.length>p&&f(h.shift())),b.wasMemoized=I,b.numArgs=w+1,A},"memoizerific");return b.limit=p,b.wasMemoized=!1,b.cache=g,b.lru=h,b}};function l(p,g){var h=p.length,v=g.length,b,m,y;for(m=0;m=0&&(h=p[b],v=h.cacheItem.get(h.arg),!v||!v.size);b--)h.cacheItem.delete(h.arg)}c(f,"removeCachedResult");function d(p,g){return p===g||p!==p&&g!==g}c(d,"isEqual")},{"map-or-similar":1}]},{},[3])(3)})}),mi=R((t,e)=>{var r=typeof window=="object"&&window&&window.Object===Object&&window;e.exports=r}),at=R((t,e)=>{var r=mi(),n=typeof self=="object"&&self&&self.Object===Object&&self,o=r||n||Function("return this")();e.exports=o}),nr=R((t,e)=>{var r=at(),n=r.Symbol;e.exports=n}),ul=R((t,e)=>{var r=nr(),n=Object.prototype,o=n.hasOwnProperty,a=n.toString,i=r?r.toStringTag:void 0;function s(u){var l=o.call(u,i),f=u[i];try{u[i]=void 0;var d=!0}catch{}var p=a.call(u);return d&&(l?u[i]=f:delete u[i]),p}c(s,"getRawTag"),e.exports=s}),ll=R((t,e)=>{var r=Object.prototype,n=r.toString;function o(a){return n.call(a)}c(o,"objectToString"),e.exports=o}),Lt=R((t,e)=>{var r=nr(),n=ul(),o=ll(),a="[object Null]",i="[object Undefined]",s=r?r.toStringTag:void 0;function u(l){return l==null?l===void 0?i:a:s&&s in Object(l)?n(l):o(l)}c(u,"baseGetTag"),e.exports=u}),or=R((t,e)=>{function r(n){var o=typeof n;return n!=null&&(o=="object"||o=="function")}c(r,"isObject"),e.exports=r}),yi=R((t,e)=>{var r=Lt(),n=or(),o="[object AsyncFunction]",a="[object Function]",i="[object GeneratorFunction]",s="[object Proxy]";function u(l){if(!n(l))return!1;var f=r(l);return f==a||f==i||f==o||f==s}c(u,"isFunction"),e.exports=u}),cl=R((t,e)=>{var r=at(),n=r["__core-js_shared__"];e.exports=n}),pl=R((t,e)=>{var r=cl(),n=function(){var a=/[^.]+$/.exec(r&&r.keys&&r.keys.IE_PROTO||"");return a?"Symbol(src)_1."+a:""}();function o(a){return!!n&&n in a}c(o,"isMasked"),e.exports=o}),gi=R((t,e)=>{var r=Function.prototype,n=r.toString;function o(a){if(a!=null){try{return n.call(a)}catch{}try{return a+""}catch{}}return""}c(o,"toSource"),e.exports=o}),fl=R((t,e)=>{var r=yi(),n=pl(),o=or(),a=gi(),i=/[\\^$.*+?()[\]{}|]/g,s=/^\[object .+?Constructor\]$/,u=Function.prototype,l=Object.prototype,f=u.toString,d=l.hasOwnProperty,p=RegExp("^"+f.call(d).replace(i,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");function g(h){if(!o(h)||n(h))return!1;var v=r(h)?p:s;return v.test(a(h))}c(g,"baseIsNative"),e.exports=g}),dl=R((t,e)=>{function r(n,o){return n?.[o]}c(r,"getValue"),e.exports=r}),xt=R((t,e)=>{var r=fl(),n=dl();function o(a,i){var s=n(a,i);return r(s)?s:void 0}c(o,"getNative"),e.exports=o}),bi=R((t,e)=>{var r=xt(),n=function(){try{var o=r(Object,"defineProperty");return o({},"",{}),o}catch{}}();e.exports=n}),vi=R((t,e)=>{var r=bi();function n(o,a,i){a=="__proto__"&&r?r(o,a,{configurable:!0,enumerable:!0,value:i,writable:!0}):o[a]=i}c(n,"baseAssignValue"),e.exports=n}),hl=R((t,e)=>{function r(n){return function(o,a,i){for(var s=-1,u=Object(o),l=i(o),f=l.length;f--;){var d=l[n?f:++s];if(a(u[d],d,u)===!1)break}return o}}c(r,"createBaseFor"),e.exports=r}),ml=R((t,e)=>{var r=hl(),n=r();e.exports=n}),yl=R((t,e)=>{function r(n,o){for(var a=-1,i=Array(n);++a{function r(n){return n!=null&&typeof n=="object"}c(r,"isObjectLike"),e.exports=r}),gl=R((t,e)=>{var r=Lt(),n=$t(),o="[object Arguments]";function a(i){return n(i)&&r(i)==o}c(a,"baseIsArguments"),e.exports=a}),Mn=R((t,e)=>{var r=gl(),n=$t(),o=Object.prototype,a=o.hasOwnProperty,i=o.propertyIsEnumerable,s=r(function(){return arguments}())?r:function(u){return n(u)&&a.call(u,"callee")&&!i.call(u,"callee")};e.exports=s}),it=R((t,e)=>{var r=Array.isArray;e.exports=r}),bl=R((t,e)=>{function r(){return!1}c(r,"stubFalse"),e.exports=r}),Ei=R((t,e)=>{var r=at(),n=bl(),o=typeof t=="object"&&t&&!t.nodeType&&t,a=o&&typeof e=="object"&&e&&!e.nodeType&&e,i=a&&a.exports===o,s=i?r.Buffer:void 0,u=s?s.isBuffer:void 0,l=u||n;e.exports=l}),Ln=R((t,e)=>{var r=9007199254740991,n=/^(?:0|[1-9]\d*)$/;function o(a,i){var s=typeof a;return i=i??r,!!i&&(s=="number"||s!="symbol"&&n.test(a))&&a>-1&&a%1==0&&a{var r=9007199254740991;function n(o){return typeof o=="number"&&o>-1&&o%1==0&&o<=r}c(n,"isLength"),e.exports=n}),vl=R((t,e)=>{var r=Lt(),n=$n(),o=$t(),a="[object Arguments]",i="[object Array]",s="[object Boolean]",u="[object Date]",l="[object Error]",f="[object Function]",d="[object Map]",p="[object Number]",g="[object Object]",h="[object RegExp]",v="[object Set]",b="[object String]",m="[object WeakMap]",y="[object ArrayBuffer]",A="[object DataView]",w="[object Float32Array]",C="[object Float64Array]",I="[object Int8Array]",D="[object Int16Array]",E="[object Int32Array]",j="[object Uint8Array]",z="[object Uint8ClampedArray]",q="[object Uint16Array]",G="[object Uint32Array]",L={};L[w]=L[C]=L[I]=L[D]=L[E]=L[j]=L[z]=L[q]=L[G]=!0,L[a]=L[i]=L[y]=L[s]=L[A]=L[u]=L[l]=L[f]=L[d]=L[p]=L[g]=L[h]=L[v]=L[b]=L[m]=!1;function _(F){return o(F)&&n(F.length)&&!!L[r(F)]}c(_,"baseIsTypedArray"),e.exports=_}),El=R((t,e)=>{function r(n){return function(o){return n(o)}}c(r,"baseUnary"),e.exports=r}),Sl=R((t,e)=>{var r=mi(),n=typeof t=="object"&&t&&!t.nodeType&&t,o=n&&typeof e=="object"&&e&&!e.nodeType&&e,a=o&&o.exports===n,i=a&&r.process,s=function(){try{var u=o&&o.require&&o.require("util").types;return u||i&&i.binding&&i.binding("util")}catch{}}();e.exports=s}),Si=R((t,e)=>{var r=vl(),n=El(),o=Sl(),a=o&&o.isTypedArray,i=a?n(a):r;e.exports=i}),Ai=R((t,e)=>{var r=yl(),n=Mn(),o=it(),a=Ei(),i=Ln(),s=Si(),u=Object.prototype,l=u.hasOwnProperty;function f(d,p){var g=o(d),h=!g&&n(d),v=!g&&!h&&a(d),b=!g&&!h&&!v&&s(d),m=g||h||v||b,y=m?r(d.length,String):[],A=y.length;for(var w in d)(p||l.call(d,w))&&!(m&&(w=="length"||v&&(w=="offset"||w=="parent")||b&&(w=="buffer"||w=="byteLength"||w=="byteOffset")||i(w,A)))&&y.push(w);return y}c(f,"arrayLikeKeys"),e.exports=f}),wi=R((t,e)=>{var r=Object.prototype;function n(o){var a=o&&o.constructor,i=typeof a=="function"&&a.prototype||r;return o===i}c(n,"isPrototype"),e.exports=n}),xi=R((t,e)=>{function r(n,o){return function(a){return n(o(a))}}c(r,"overArg"),e.exports=r}),Al=R((t,e)=>{var r=xi(),n=r(Object.keys,Object);e.exports=n}),wl=R((t,e)=>{var r=wi(),n=Al(),o=Object.prototype,a=o.hasOwnProperty;function i(s){if(!r(s))return n(s);var u=[];for(var l in Object(s))a.call(s,l)&&l!="constructor"&&u.push(l);return u}c(i,"baseKeys"),e.exports=i}),Ci=R((t,e)=>{var r=yi(),n=$n();function o(a){return a!=null&&n(a.length)&&!r(a)}c(o,"isArrayLike"),e.exports=o}),zn=R((t,e)=>{var r=Ai(),n=wl(),o=Ci();function a(i){return o(i)?r(i):n(i)}c(a,"keys"),e.exports=a}),xl=R((t,e)=>{var r=ml(),n=zn();function o(a,i){return a&&r(a,i,n)}c(o,"baseForOwn"),e.exports=o}),Cl=R((t,e)=>{function r(){this.__data__=[],this.size=0}c(r,"listCacheClear"),e.exports=r}),qn=R((t,e)=>{function r(n,o){return n===o||n!==n&&o!==o}c(r,"eq"),e.exports=r}),zr=R((t,e)=>{var r=qn();function n(o,a){for(var i=o.length;i--;)if(r(o[i][0],a))return i;return-1}c(n,"assocIndexOf"),e.exports=n}),Ol=R((t,e)=>{var r=zr(),n=Array.prototype,o=n.splice;function a(i){var s=this.__data__,u=r(s,i);if(u<0)return!1;var l=s.length-1;return u==l?s.pop():o.call(s,u,1),--this.size,!0}c(a,"listCacheDelete"),e.exports=a}),_l=R((t,e)=>{var r=zr();function n(o){var a=this.__data__,i=r(a,o);return i<0?void 0:a[i][1]}c(n,"listCacheGet"),e.exports=n}),Il=R((t,e)=>{var r=zr();function n(o){return r(this.__data__,o)>-1}c(n,"listCacheHas"),e.exports=n}),Rl=R((t,e)=>{var r=zr();function n(o,a){var i=this.__data__,s=r(i,o);return s<0?(++this.size,i.push([o,a])):i[s][1]=a,this}c(n,"listCacheSet"),e.exports=n}),qr=R((t,e)=>{var r=Cl(),n=Ol(),o=_l(),a=Il(),i=Rl();function s(u){var l=-1,f=u==null?0:u.length;for(this.clear();++l{var r=qr();function n(){this.__data__=new r,this.size=0}c(n,"stackClear"),e.exports=n}),Dl=R((t,e)=>{function r(n){var o=this.__data__,a=o.delete(n);return this.size=o.size,a}c(r,"stackDelete"),e.exports=r}),Fl=R((t,e)=>{function r(n){return this.__data__.get(n)}c(r,"stackGet"),e.exports=r}),Pl=R((t,e)=>{function r(n){return this.__data__.has(n)}c(r,"stackHas"),e.exports=r}),Un=R((t,e)=>{var r=xt(),n=at(),o=r(n,"Map");e.exports=o}),Ur=R((t,e)=>{var r=xt(),n=r(Object,"create");e.exports=n}),jl=R((t,e)=>{var r=Ur();function n(){this.__data__=r?r(null):{},this.size=0}c(n,"hashClear"),e.exports=n}),Bl=R((t,e)=>{function r(n){var o=this.has(n)&&delete this.__data__[n];return this.size-=o?1:0,o}c(r,"hashDelete"),e.exports=r}),kl=R((t,e)=>{var r=Ur(),n="__lodash_hash_undefined__",o=Object.prototype,a=o.hasOwnProperty;function i(s){var u=this.__data__;if(r){var l=u[s];return l===n?void 0:l}return a.call(u,s)?u[s]:void 0}c(i,"hashGet"),e.exports=i}),Nl=R((t,e)=>{var r=Ur(),n=Object.prototype,o=n.hasOwnProperty;function a(i){var s=this.__data__;return r?s[i]!==void 0:o.call(s,i)}c(a,"hashHas"),e.exports=a}),Ml=R((t,e)=>{var r=Ur(),n="__lodash_hash_undefined__";function o(a,i){var s=this.__data__;return this.size+=this.has(a)?0:1,s[a]=r&&i===void 0?n:i,this}c(o,"hashSet"),e.exports=o}),Ll=R((t,e)=>{var r=jl(),n=Bl(),o=kl(),a=Nl(),i=Ml();function s(u){var l=-1,f=u==null?0:u.length;for(this.clear();++l{var r=Ll(),n=qr(),o=Un();function a(){this.size=0,this.__data__={hash:new r,map:new(o||n),string:new r}}c(a,"mapCacheClear"),e.exports=a}),zl=R((t,e)=>{function r(n){var o=typeof n;return o=="string"||o=="number"||o=="symbol"||o=="boolean"?n!=="__proto__":n===null}c(r,"isKeyable"),e.exports=r}),Hr=R((t,e)=>{var r=zl();function n(o,a){var i=o.__data__;return r(a)?i[typeof a=="string"?"string":"hash"]:i.map}c(n,"getMapData"),e.exports=n}),ql=R((t,e)=>{var r=Hr();function n(o){var a=r(this,o).delete(o);return this.size-=a?1:0,a}c(n,"mapCacheDelete"),e.exports=n}),Ul=R((t,e)=>{var r=Hr();function n(o){return r(this,o).get(o)}c(n,"mapCacheGet"),e.exports=n}),Hl=R((t,e)=>{var r=Hr();function n(o){return r(this,o).has(o)}c(n,"mapCacheHas"),e.exports=n}),Wl=R((t,e)=>{var r=Hr();function n(o,a){var i=r(this,o),s=i.size;return i.set(o,a),this.size+=i.size==s?0:1,this}c(n,"mapCacheSet"),e.exports=n}),Hn=R((t,e)=>{var r=$l(),n=ql(),o=Ul(),a=Hl(),i=Wl();function s(u){var l=-1,f=u==null?0:u.length;for(this.clear();++l{var r=qr(),n=Un(),o=Hn(),a=200;function i(s,u){var l=this.__data__;if(l instanceof r){var f=l.__data__;if(!n||f.length{var r=qr(),n=Tl(),o=Dl(),a=Fl(),i=Pl(),s=Vl();function u(l){var f=this.__data__=new r(l);this.size=f.size}c(u,"Stack"),u.prototype.clear=n,u.prototype.delete=o,u.prototype.get=a,u.prototype.has=i,u.prototype.set=s,e.exports=u}),Gl=R((t,e)=>{var r="__lodash_hash_undefined__";function n(o){return this.__data__.set(o,r),this}c(n,"setCacheAdd"),e.exports=n}),Yl=R((t,e)=>{function r(n){return this.__data__.has(n)}c(r,"setCacheHas"),e.exports=r}),Kl=R((t,e)=>{var r=Hn(),n=Gl(),o=Yl();function a(i){var s=-1,u=i==null?0:i.length;for(this.__data__=new r;++s{function r(n,o){for(var a=-1,i=n==null?0:n.length;++a{function r(n,o){return n.has(o)}c(r,"cacheHas"),e.exports=r}),_i=R((t,e)=>{var r=Kl(),n=Jl(),o=Xl(),a=1,i=2;function s(u,l,f,d,p,g){var h=f&a,v=u.length,b=l.length;if(v!=b&&!(h&&b>v))return!1;var m=g.get(u),y=g.get(l);if(m&&y)return m==l&&y==u;var A=-1,w=!0,C=f&i?new r:void 0;for(g.set(u,l),g.set(l,u);++A{var r=at(),n=r.Uint8Array;e.exports=n}),Zl=R((t,e)=>{function r(n){var o=-1,a=Array(n.size);return n.forEach(function(i,s){a[++o]=[s,i]}),a}c(r,"mapToArray"),e.exports=r}),ec=R((t,e)=>{function r(n){var o=-1,a=Array(n.size);return n.forEach(function(i){a[++o]=i}),a}c(r,"setToArray"),e.exports=r}),tc=R((t,e)=>{var r=nr(),n=Ql(),o=qn(),a=_i(),i=Zl(),s=ec(),u=1,l=2,f="[object Boolean]",d="[object Date]",p="[object Error]",g="[object Map]",h="[object Number]",v="[object RegExp]",b="[object Set]",m="[object String]",y="[object Symbol]",A="[object ArrayBuffer]",w="[object DataView]",C=r?r.prototype:void 0,I=C?C.valueOf:void 0;function D(E,j,z,q,G,L,_){switch(z){case w:if(E.byteLength!=j.byteLength||E.byteOffset!=j.byteOffset)return!1;E=E.buffer,j=j.buffer;case A:return!(E.byteLength!=j.byteLength||!L(new n(E),new n(j)));case f:case d:case h:return o(+E,+j);case p:return E.name==j.name&&E.message==j.message;case v:case m:return E==j+"";case g:var F=i;case b:var B=q&u;if(F||(F=s),E.size!=j.size&&!B)return!1;var H=_.get(E);if(H)return H==j;q|=l,_.set(E,j);var $=a(F(E),F(j),q,G,L,_);return _.delete(E),$;case y:if(I)return I.call(E)==I.call(j)}return!1}c(D,"equalByTag"),e.exports=D}),Wn=R((t,e)=>{function r(n,o){for(var a=-1,i=o.length,s=n.length;++a{var r=Wn(),n=it();function o(a,i,s){var u=i(a);return n(a)?u:r(u,s(a))}c(o,"baseGetAllKeys"),e.exports=o}),rc=R((t,e)=>{function r(n,o){for(var a=-1,i=n==null?0:n.length,s=0,u=[];++a{function r(){return[]}c(r,"stubArray"),e.exports=r}),Ti=R((t,e)=>{var r=rc(),n=Ri(),o=Object.prototype,a=o.propertyIsEnumerable,i=Object.getOwnPropertySymbols,s=i?function(u){return u==null?[]:(u=Object(u),r(i(u),function(l){return a.call(u,l)}))}:n;e.exports=s}),nc=R((t,e)=>{var r=Ii(),n=Ti(),o=zn();function a(i){return r(i,o,n)}c(a,"getAllKeys"),e.exports=a}),oc=R((t,e)=>{var r=nc(),n=1,o=Object.prototype,a=o.hasOwnProperty;function i(s,u,l,f,d,p){var g=l&n,h=r(s),v=h.length,b=r(u),m=b.length;if(v!=m&&!g)return!1;for(var y=v;y--;){var A=h[y];if(!(g?A in u:a.call(u,A)))return!1}var w=p.get(s),C=p.get(u);if(w&&C)return w==u&&C==s;var I=!0;p.set(s,u),p.set(u,s);for(var D=g;++y{var r=xt(),n=at(),o=r(n,"DataView");e.exports=o}),ic=R((t,e)=>{var r=xt(),n=at(),o=r(n,"Promise");e.exports=o}),sc=R((t,e)=>{var r=xt(),n=at(),o=r(n,"Set");e.exports=o}),uc=R((t,e)=>{var r=xt(),n=at(),o=r(n,"WeakMap");e.exports=o}),lc=R((t,e)=>{var r=ac(),n=Un(),o=ic(),a=sc(),i=uc(),s=Lt(),u=gi(),l="[object Map]",f="[object Object]",d="[object Promise]",p="[object Set]",g="[object WeakMap]",h="[object DataView]",v=u(r),b=u(n),m=u(o),y=u(a),A=u(i),w=s;(r&&w(new r(new ArrayBuffer(1)))!=h||n&&w(new n)!=l||o&&w(o.resolve())!=d||a&&w(new a)!=p||i&&w(new i)!=g)&&(w=c(function(C){var I=s(C),D=I==f?C.constructor:void 0,E=D?u(D):"";if(E)switch(E){case v:return h;case b:return l;case m:return d;case y:return p;case A:return g}return I},"getTag")),e.exports=w}),cc=R((t,e)=>{var r=Oi(),n=_i(),o=tc(),a=oc(),i=lc(),s=it(),u=Ei(),l=Si(),f=1,d="[object Arguments]",p="[object Array]",g="[object Object]",h=Object.prototype,v=h.hasOwnProperty;function b(m,y,A,w,C,I){var D=s(m),E=s(y),j=D?p:i(m),z=E?p:i(y);j=j==d?g:j,z=z==d?g:z;var q=j==g,G=z==g,L=j==z;if(L&&u(m)){if(!u(y))return!1;D=!0,q=!1}if(L&&!q)return I||(I=new r),D||l(m)?n(m,y,A,w,C,I):o(m,y,j,A,w,C,I);if(!(A&f)){var _=q&&v.call(m,"__wrapped__"),F=G&&v.call(y,"__wrapped__");if(_||F){var B=_?m.value():m,H=F?y.value():y;return I||(I=new r),C(B,H,A,w,I)}}return L?(I||(I=new r),a(m,y,A,w,C,I)):!1}c(b,"baseIsEqualDeep"),e.exports=b}),Di=R((t,e)=>{var r=cc(),n=$t();function o(a,i,s,u,l){return a===i?!0:a==null||i==null||!n(a)&&!n(i)?a!==a&&i!==i:r(a,i,s,u,o,l)}c(o,"baseIsEqual"),e.exports=o}),pc=R((t,e)=>{var r=Oi(),n=Di(),o=1,a=2;function i(s,u,l,f){var d=l.length,p=d,g=!f;if(s==null)return!p;for(s=Object(s);d--;){var h=l[d];if(g&&h[2]?h[1]!==s[h[0]]:!(h[0]in s))return!1}for(;++d{var r=or();function n(o){return o===o&&!r(o)}c(n,"isStrictComparable"),e.exports=n}),fc=R((t,e)=>{var r=Fi(),n=zn();function o(a){for(var i=n(a),s=i.length;s--;){var u=i[s],l=a[u];i[s]=[u,l,r(l)]}return i}c(o,"getMatchData"),e.exports=o}),Pi=R((t,e)=>{function r(n,o){return function(a){return a==null?!1:a[n]===o&&(o!==void 0||n in Object(a))}}c(r,"matchesStrictComparable"),e.exports=r}),dc=R((t,e)=>{var r=pc(),n=fc(),o=Pi();function a(i){var s=n(i);return s.length==1&&s[0][2]?o(s[0][0],s[0][1]):function(u){return u===i||r(u,i,s)}}c(a,"baseMatches"),e.exports=a}),Vn=R((t,e)=>{var r=Lt(),n=$t(),o="[object Symbol]";function a(i){return typeof i=="symbol"||n(i)&&r(i)==o}c(a,"isSymbol"),e.exports=a}),Gn=R((t,e)=>{var r=it(),n=Vn(),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/;function i(s,u){if(r(s))return!1;var l=typeof s;return l=="number"||l=="symbol"||l=="boolean"||s==null||n(s)?!0:a.test(s)||!o.test(s)||u!=null&&s in Object(u)}c(i,"isKey"),e.exports=i}),hc=R((t,e)=>{var r=Hn(),n="Expected a function";function o(a,i){if(typeof a!="function"||i!=null&&typeof i!="function")throw new TypeError(n);var s=c(function(){var u=arguments,l=i?i.apply(this,u):u[0],f=s.cache;if(f.has(l))return f.get(l);var d=a.apply(this,u);return s.cache=f.set(l,d)||f,d},"memoized");return s.cache=new(o.Cache||r),s}c(o,"memoize"),o.Cache=r,e.exports=o}),mc=R((t,e)=>{var r=hc(),n=500;function o(a){var i=r(a,function(u){return s.size===n&&s.clear(),u}),s=i.cache;return i}c(o,"memoizeCapped"),e.exports=o}),yc=R((t,e)=>{var r=mc(),n=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,a=r(function(i){var s=[];return i.charCodeAt(0)===46&&s.push(""),i.replace(n,function(u,l,f,d){s.push(f?d.replace(o,"$1"):l||u)}),s});e.exports=a}),ji=R((t,e)=>{function r(n,o){for(var a=-1,i=n==null?0:n.length,s=Array(i);++a{var r=nr(),n=ji(),o=it(),a=Vn(),i=1/0,s=r?r.prototype:void 0,u=s?s.toString:void 0;function l(f){if(typeof f=="string")return f;if(o(f))return n(f,l)+"";if(a(f))return u?u.call(f):"";var d=f+"";return d=="0"&&1/f==-i?"-0":d}c(l,"baseToString"),e.exports=l}),bc=R((t,e)=>{var r=gc();function n(o){return o==null?"":r(o)}c(n,"toString"),e.exports=n}),Wr=R((t,e)=>{var r=it(),n=Gn(),o=yc(),a=bc();function i(s,u){return r(s)?s:n(s,u)?[s]:o(a(s))}c(i,"castPath"),e.exports=i}),ar=R((t,e)=>{var r=Vn(),n=1/0;function o(a){if(typeof a=="string"||r(a))return a;var i=a+"";return i=="0"&&1/a==-n?"-0":i}c(o,"toKey"),e.exports=o}),Yn=R((t,e)=>{var r=Wr(),n=ar();function o(a,i){i=r(i,a);for(var s=0,u=i.length;a!=null&&s{var r=Yn();function n(o,a,i){var s=o==null?void 0:r(o,a);return s===void 0?i:s}c(n,"get"),e.exports=n}),Ec=R((t,e)=>{function r(n,o){return n!=null&&o in Object(n)}c(r,"baseHasIn"),e.exports=r}),Sc=R((t,e)=>{var r=Wr(),n=Mn(),o=it(),a=Ln(),i=$n(),s=ar();function u(l,f,d){f=r(f,l);for(var p=-1,g=f.length,h=!1;++p{var r=Ec(),n=Sc();function o(a,i){return a!=null&&n(a,i,r)}c(o,"hasIn"),e.exports=o}),Ac=R((t,e)=>{var r=Di(),n=vc(),o=Bi(),a=Gn(),i=Fi(),s=Pi(),u=ar(),l=1,f=2;function d(p,g){return a(p)&&i(g)?s(u(p),g):function(h){var v=n(h,p);return v===void 0&&v===g?o(h,p):r(g,v,l|f)}}c(d,"baseMatchesProperty"),e.exports=d}),ki=R((t,e)=>{function r(n){return n}c(r,"identity"),e.exports=r}),wc=R((t,e)=>{function r(n){return function(o){return o?.[n]}}c(r,"baseProperty"),e.exports=r}),xc=R((t,e)=>{var r=Yn();function n(o){return function(a){return r(a,o)}}c(n,"basePropertyDeep"),e.exports=n}),Cc=R((t,e)=>{var r=wc(),n=xc(),o=Gn(),a=ar();function i(s){return o(s)?r(a(s)):n(s)}c(i,"property"),e.exports=i}),Ni=R((t,e)=>{var r=dc(),n=Ac(),o=ki(),a=it(),i=Cc();function s(u){return typeof u=="function"?u:u==null?o:typeof u=="object"?a(u)?n(u[0],u[1]):r(u):i(u)}c(s,"baseIteratee"),e.exports=s}),Vr=R((t,e)=>{var r=vi(),n=xl(),o=Ni();function a(i,s){var u={};return s=o(s,3),n(i,function(l,f,d){r(u,f,s(l,f,d))}),u}c(a,"mapValues"),e.exports=a}),Oc=R((t,e)=>{var r=vi(),n=qn(),o=Object.prototype,a=o.hasOwnProperty;function i(s,u,l){var f=s[u];(!(a.call(s,u)&&n(f,l))||l===void 0&&!(u in s))&&r(s,u,l)}c(i,"assignValue"),e.exports=i}),_c=R((t,e)=>{var r=Oc(),n=Wr(),o=Ln(),a=or(),i=ar();function s(u,l,f,d){if(!a(u))return u;l=n(l,u);for(var p=-1,g=l.length,h=g-1,v=u;v!=null&&++p{var r=Yn(),n=_c(),o=Wr();function a(i,s,u){for(var l=-1,f=s.length,d={};++l{var r=Mi(),n=Bi();function o(a,i){return r(a,i,function(s,u){return n(a,u)})}c(o,"basePick"),e.exports=o}),Rc=R((t,e)=>{var r=nr(),n=Mn(),o=it(),a=r?r.isConcatSpreadable:void 0;function i(s){return o(s)||n(s)||!!(a&&s&&s[a])}c(i,"isFlattenable"),e.exports=i}),Tc=R((t,e)=>{var r=Wn(),n=Rc();function o(a,i,s,u,l){var f=-1,d=a.length;for(s||(s=n),l||(l=[]);++f0&&s(p)?i>1?o(p,i-1,s,u,l):r(l,p):u||(l[l.length]=p)}return l}c(o,"baseFlatten"),e.exports=o}),Dc=R((t,e)=>{var r=Tc();function n(o){var a=o==null?0:o.length;return a?r(o,1):[]}c(n,"flatten"),e.exports=n}),Fc=R((t,e)=>{function r(n,o,a){switch(a.length){case 0:return n.call(o);case 1:return n.call(o,a[0]);case 2:return n.call(o,a[0],a[1]);case 3:return n.call(o,a[0],a[1],a[2])}return n.apply(o,a)}c(r,"apply"),e.exports=r}),Pc=R((t,e)=>{var r=Fc(),n=Math.max;function o(a,i,s){return i=n(i===void 0?a.length-1:i,0),function(){for(var u=arguments,l=-1,f=n(u.length-i,0),d=Array(f);++l{function r(n){return function(){return n}}c(r,"constant"),e.exports=r}),Bc=R((t,e)=>{var r=jc(),n=bi(),o=ki(),a=n?function(i,s){return n(i,"toString",{configurable:!0,enumerable:!1,value:r(s),writable:!0})}:o;e.exports=a}),kc=R((t,e)=>{var r=800,n=16,o=Date.now;function a(i){var s=0,u=0;return function(){var l=o(),f=n-(l-u);if(u=l,f>0){if(++s>=r)return arguments[0]}else s=0;return i.apply(void 0,arguments)}}c(a,"shortOut"),e.exports=a}),Nc=R((t,e)=>{var r=Bc(),n=kc(),o=n(r);e.exports=o}),Mc=R((t,e)=>{var r=Dc(),n=Pc(),o=Nc();function a(i){return o(n(i,void 0,r),i+"")}c(a,"flatRest"),e.exports=a}),Lc=R((t,e)=>{var r=Ic(),n=Mc(),o=n(function(a,i){return a==null?{}:r(a,i)});e.exports=o}),Li=R((t,e)=>{var r=xi(),n=r(Object.getPrototypeOf,Object);e.exports=n}),Kn=R((t,e)=>{var r=Lt(),n=Li(),o=$t(),a="[object Object]",i=Function.prototype,s=Object.prototype,u=i.toString,l=s.hasOwnProperty,f=u.call(Object);function d(p){if(!o(p)||r(p)!=a)return!1;var g=n(p);if(g===null)return!0;var h=l.call(g,"constructor")&&g.constructor;return typeof h=="function"&&h instanceof h&&u.call(h)==f}c(d,"isPlainObject"),e.exports=d}),$c=R((t,e)=>{var r=Wn(),n=Li(),o=Ti(),a=Ri(),i=Object.getOwnPropertySymbols,s=i?function(u){for(var l=[];u;)r(l,o(u)),u=n(u);return l}:a;e.exports=s}),zc=R((t,e)=>{function r(n){var o=[];if(n!=null)for(var a in Object(n))o.push(a);return o}c(r,"nativeKeysIn"),e.exports=r}),qc=R((t,e)=>{var r=or(),n=wi(),o=zc(),a=Object.prototype,i=a.hasOwnProperty;function s(u){if(!r(u))return o(u);var l=n(u),f=[];for(var d in u)d=="constructor"&&(l||!i.call(u,d))||f.push(d);return f}c(s,"baseKeysIn"),e.exports=s}),Uc=R((t,e)=>{var r=Ai(),n=qc(),o=Ci();function a(i){return o(i)?r(i,!0):n(i)}c(a,"keysIn"),e.exports=a}),Hc=R((t,e)=>{var r=Ii(),n=$c(),o=Uc();function a(i){return r(i,o,n)}c(a,"getAllKeysIn"),e.exports=a}),Wc=R((t,e)=>{var r=ji(),n=Ni(),o=Mi(),a=Hc();function i(s,u){if(s==null)return{};var l=r(a(s),function(f){return[f]});return u=n(u),o(s,l,function(f,d){return u(f,d[0])})}c(i,"pickBy"),e.exports=i}),Vc=R((t,e)=>{"use strict";e.exports=Error}),Gc=R((t,e)=>{"use strict";e.exports=EvalError}),Yc=R((t,e)=>{"use strict";e.exports=RangeError}),Kc=R((t,e)=>{"use strict";e.exports=ReferenceError}),$i=R((t,e)=>{"use strict";e.exports=SyntaxError}),ir=R((t,e)=>{"use strict";e.exports=TypeError}),Jc=R((t,e)=>{"use strict";e.exports=URIError}),Xc=R((t,e)=>{"use strict";e.exports=c(function(){if(typeof Symbol!="function"||typeof Object.getOwnPropertySymbols!="function")return!1;if(typeof Symbol.iterator=="symbol")return!0;var r={},n=Symbol("test"),o=Object(n);if(typeof n=="string"||Object.prototype.toString.call(n)!=="[object Symbol]"||Object.prototype.toString.call(o)!=="[object Symbol]")return!1;var a=42;r[n]=a;for(n in r)return!1;if(typeof Object.keys=="function"&&Object.keys(r).length!==0||typeof Object.getOwnPropertyNames=="function"&&Object.getOwnPropertyNames(r).length!==0)return!1;var i=Object.getOwnPropertySymbols(r);if(i.length!==1||i[0]!==n||!Object.prototype.propertyIsEnumerable.call(r,n))return!1;if(typeof Object.getOwnPropertyDescriptor=="function"){var s=Object.getOwnPropertyDescriptor(r,n);if(s.value!==a||s.enumerable!==!0)return!1}return!0},"hasSymbols")}),Qc=R((t,e)=>{"use strict";var r=typeof Symbol<"u"&&Symbol,n=Xc();e.exports=c(function(){return typeof r!="function"||typeof Symbol!="function"||typeof r("foo")!="symbol"||typeof Symbol("bar")!="symbol"?!1:n()},"hasNativeSymbols")}),Zc=R((t,e)=>{"use strict";var r={__proto__:null,foo:{}},n=Object;e.exports=c(function(){return{__proto__:r}.foo===r.foo&&!(r instanceof n)},"hasProto")}),ep=R((t,e)=>{"use strict";var r="Function.prototype.bind called on incompatible ",n=Object.prototype.toString,o=Math.max,a="[object Function]",i=c(function(l,f){for(var d=[],p=0;p{"use strict";var r=ep();e.exports=Function.prototype.bind||r}),tp=R((t,e)=>{"use strict";var r=Function.prototype.call,n=Object.prototype.hasOwnProperty,o=Jn();e.exports=o.call(r,n)}),zt=R((t,e)=>{"use strict";var r,n=Vc(),o=Gc(),a=Yc(),i=Kc(),s=$i(),u=ir(),l=Jc(),f=Function,d=c(function(U){try{return f('"use strict"; return ('+U+").constructor;")()}catch{}},"getEvalledConstructor"),p=Object.getOwnPropertyDescriptor;if(p)try{p({},"")}catch{p=null}var g=c(function(){throw new u},"throwTypeError"),h=p?function(){try{return arguments.callee,g}catch{try{return p(arguments,"callee").get}catch{return g}}}():g,v=Qc()(),b=Zc()(),m=Object.getPrototypeOf||(b?function(U){return U.__proto__}:null),y={},A=typeof Uint8Array>"u"||!m?r:m(Uint8Array),w={__proto__:null,"%AggregateError%":typeof AggregateError>"u"?r:AggregateError,"%Array%":Array,"%ArrayBuffer%":typeof ArrayBuffer>"u"?r:ArrayBuffer,"%ArrayIteratorPrototype%":v&&m?m([][Symbol.iterator]()):r,"%AsyncFromSyncIteratorPrototype%":r,"%AsyncFunction%":y,"%AsyncGenerator%":y,"%AsyncGeneratorFunction%":y,"%AsyncIteratorPrototype%":y,"%Atomics%":typeof Atomics>"u"?r:Atomics,"%BigInt%":typeof BigInt>"u"?r:BigInt,"%BigInt64Array%":typeof BigInt64Array>"u"?r:BigInt64Array,"%BigUint64Array%":typeof BigUint64Array>"u"?r:BigUint64Array,"%Boolean%":Boolean,"%DataView%":typeof DataView>"u"?r:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":n,"%eval%":eval,"%EvalError%":o,"%Float32Array%":typeof Float32Array>"u"?r:Float32Array,"%Float64Array%":typeof Float64Array>"u"?r:Float64Array,"%FinalizationRegistry%":typeof FinalizationRegistry>"u"?r:FinalizationRegistry,"%Function%":f,"%GeneratorFunction%":y,"%Int8Array%":typeof Int8Array>"u"?r:Int8Array,"%Int16Array%":typeof Int16Array>"u"?r:Int16Array,"%Int32Array%":typeof Int32Array>"u"?r:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":v&&m?m(m([][Symbol.iterator]())):r,"%JSON%":typeof JSON=="object"?JSON:r,"%Map%":typeof Map>"u"?r:Map,"%MapIteratorPrototype%":typeof Map>"u"||!v||!m?r:m(new Map()[Symbol.iterator]()),"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":typeof Promise>"u"?r:Promise,"%Proxy%":typeof Proxy>"u"?r:Proxy,"%RangeError%":a,"%ReferenceError%":i,"%Reflect%":typeof Reflect>"u"?r:Reflect,"%RegExp%":RegExp,"%Set%":typeof Set>"u"?r:Set,"%SetIteratorPrototype%":typeof Set>"u"||!v||!m?r:m(new Set()[Symbol.iterator]()),"%SharedArrayBuffer%":typeof SharedArrayBuffer>"u"?r:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":v&&m?m(""[Symbol.iterator]()):r,"%Symbol%":v?Symbol:r,"%SyntaxError%":s,"%ThrowTypeError%":h,"%TypedArray%":A,"%TypeError%":u,"%Uint8Array%":typeof Uint8Array>"u"?r:Uint8Array,"%Uint8ClampedArray%":typeof Uint8ClampedArray>"u"?r:Uint8ClampedArray,"%Uint16Array%":typeof Uint16Array>"u"?r:Uint16Array,"%Uint32Array%":typeof Uint32Array>"u"?r:Uint32Array,"%URIError%":l,"%WeakMap%":typeof WeakMap>"u"?r:WeakMap,"%WeakRef%":typeof WeakRef>"u"?r:WeakRef,"%WeakSet%":typeof WeakSet>"u"?r:WeakSet};if(m)try{null.error}catch(U){C=m(m(U)),w["%Error.prototype%"]=C}var C,I=c(function U(M){var V;if(M==="%AsyncFunction%")V=d("async function () {}");else if(M==="%GeneratorFunction%")V=d("function* () {}");else if(M==="%AsyncGeneratorFunction%")V=d("async function* () {}");else if(M==="%AsyncGenerator%"){var J=U("%AsyncGeneratorFunction%");J&&(V=J.prototype)}else if(M==="%AsyncIteratorPrototype%"){var te=U("%AsyncGenerator%");te&&m&&(V=m(te.prototype))}return w[M]=V,V},"doEval"),D={__proto__:null,"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},E=Jn(),j=tp(),z=E.call(Function.call,Array.prototype.concat),q=E.call(Function.apply,Array.prototype.splice),G=E.call(Function.call,String.prototype.replace),L=E.call(Function.call,String.prototype.slice),_=E.call(Function.call,RegExp.prototype.exec),F=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,B=/\\(\\)?/g,H=c(function(U){var M=L(U,0,1),V=L(U,-1);if(M==="%"&&V!=="%")throw new s("invalid intrinsic syntax, expected closing `%`");if(V==="%"&&M!=="%")throw new s("invalid intrinsic syntax, expected opening `%`");var J=[];return G(U,F,function(te,ue,ne,le){J[J.length]=ne?G(le,B,"$1"):ue||te}),J},"stringToPath"),$=c(function(U,M){var V=U,J;if(j(D,V)&&(J=D[V],V="%"+J[0]+"%"),j(w,V)){var te=w[V];if(te===y&&(te=I(V)),typeof te>"u"&&!M)throw new u("intrinsic "+U+" exists, but is not available. Please file an issue!");return{alias:J,name:V,value:te}}throw new s("intrinsic "+U+" does not exist!")},"getBaseIntrinsic");e.exports=c(function(U,M){if(typeof U!="string"||U.length===0)throw new u("intrinsic name must be a non-empty string");if(arguments.length>1&&typeof M!="boolean")throw new u('"allowMissing" argument must be a boolean');if(_(/^%?[^%]*%?$/,U)===null)throw new s("`%` may not be present anywhere but at the beginning and end of the intrinsic name");var V=H(U),J=V.length>0?V[0]:"",te=$("%"+J+"%",M),ue=te.name,ne=te.value,le=!1,ce=te.alias;ce&&(J=ce[0],q(V,z([0,1],ce)));for(var ye=1,Ee=!0;ye=V.length){var re=p(ne,T);Ee=!!re,Ee&&"get"in re&&!("originalValue"in re.get)?ne=re.get:ne=ne[T]}else Ee=j(ne,T),ne=ne[T];Ee&&!le&&(w[ue]=ne)}}return ne},"GetIntrinsic")}),Xn=R((t,e)=>{"use strict";var r=zt(),n=r("%Object.defineProperty%",!0)||!1;if(n)try{n({},"a",{value:1})}catch{n=!1}e.exports=n}),zi=R((t,e)=>{"use strict";var r=zt(),n=r("%Object.getOwnPropertyDescriptor%",!0);if(n)try{n([],"length")}catch{n=null}e.exports=n}),rp=R((t,e)=>{"use strict";var r=Xn(),n=$i(),o=ir(),a=zi();e.exports=c(function(i,s,u){if(!i||typeof i!="object"&&typeof i!="function")throw new o("`obj` must be an object or a function`");if(typeof s!="string"&&typeof s!="symbol")throw new o("`property` must be a string or a symbol`");if(arguments.length>3&&typeof arguments[3]!="boolean"&&arguments[3]!==null)throw new o("`nonEnumerable`, if provided, must be a boolean or null");if(arguments.length>4&&typeof arguments[4]!="boolean"&&arguments[4]!==null)throw new o("`nonWritable`, if provided, must be a boolean or null");if(arguments.length>5&&typeof arguments[5]!="boolean"&&arguments[5]!==null)throw new o("`nonConfigurable`, if provided, must be a boolean or null");if(arguments.length>6&&typeof arguments[6]!="boolean")throw new o("`loose`, if provided, must be a boolean");var l=arguments.length>3?arguments[3]:null,f=arguments.length>4?arguments[4]:null,d=arguments.length>5?arguments[5]:null,p=arguments.length>6?arguments[6]:!1,g=!!a&&a(i,s);if(r)r(i,s,{configurable:d===null&&g?g.configurable:!d,enumerable:l===null&&g?g.enumerable:!l,value:u,writable:f===null&&g?g.writable:!f});else if(p||!l&&!f&&!d)i[s]=u;else throw new n("This environment does not support defining a property as non-configurable, non-writable, or non-enumerable.")},"defineDataProperty")}),np=R((t,e)=>{"use strict";var r=Xn(),n=c(function(){return!!r},"hasPropertyDescriptors");n.hasArrayLengthDefineBug=c(function(){if(!r)return null;try{return r([],"length",{value:1}).length!==1}catch{return!0}},"hasArrayLengthDefineBug"),e.exports=n}),op=R((t,e)=>{"use strict";var r=zt(),n=rp(),o=np()(),a=zi(),i=ir(),s=r("%Math.floor%");e.exports=c(function(u,l){if(typeof u!="function")throw new i("`fn` is not a function");if(typeof l!="number"||l<0||l>4294967295||s(l)!==l)throw new i("`length` must be a positive 32-bit integer");var f=arguments.length>2&&!!arguments[2],d=!0,p=!0;if("length"in u&&a){var g=a(u,"length");g&&!g.configurable&&(d=!1),g&&!g.writable&&(p=!1)}return(d||p||!f)&&(o?n(u,"length",l,!0,!0):n(u,"length",l)),u},"setFunctionLength")}),ap=R((t,e)=>{"use strict";var r=Jn(),n=zt(),o=op(),a=ir(),i=n("%Function.prototype.apply%"),s=n("%Function.prototype.call%"),u=n("%Reflect.apply%",!0)||r.call(s,i),l=Xn(),f=n("%Math.max%");e.exports=c(function(p){if(typeof p!="function")throw new a("a function is required");var g=u(r,s,arguments);return o(g,1+f(0,p.length-(arguments.length-1)),!0)},"callBind");var d=c(function(){return u(r,i,arguments)},"applyBind");l?l(e.exports,"apply",{value:d}):e.exports.apply=d}),ip=R((t,e)=>{"use strict";var r=zt(),n=ap(),o=n(r("String.prototype.indexOf"));e.exports=c(function(a,i){var s=r(a,!!i);return typeof s=="function"&&o(a,".prototype.")>-1?n(s):s},"callBoundIntrinsic")}),sp=R(()=>{}),up=R((t,e)=>{var r=typeof Map=="function"&&Map.prototype,n=Object.getOwnPropertyDescriptor&&r?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,o=r&&n&&typeof n.get=="function"?n.get:null,a=r&&Map.prototype.forEach,i=typeof Set=="function"&&Set.prototype,s=Object.getOwnPropertyDescriptor&&i?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,u=i&&s&&typeof s.get=="function"?s.get:null,l=i&&Set.prototype.forEach,f=typeof WeakMap=="function"&&WeakMap.prototype,d=f?WeakMap.prototype.has:null,p=typeof WeakSet=="function"&&WeakSet.prototype,g=p?WeakSet.prototype.has:null,h=typeof WeakRef=="function"&&WeakRef.prototype,v=h?WeakRef.prototype.deref:null,b=Boolean.prototype.valueOf,m=Object.prototype.toString,y=Function.prototype.toString,A=String.prototype.match,w=String.prototype.slice,C=String.prototype.replace,I=String.prototype.toUpperCase,D=String.prototype.toLowerCase,E=RegExp.prototype.test,j=Array.prototype.concat,z=Array.prototype.join,q=Array.prototype.slice,G=Math.floor,L=typeof BigInt=="function"?BigInt.prototype.valueOf:null,_=Object.getOwnPropertySymbols,F=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?Symbol.prototype.toString:null,B=typeof Symbol=="function"&&typeof Symbol.iterator=="object",H=typeof Symbol=="function"&&Symbol.toStringTag&&(typeof Symbol.toStringTag===B||!0)?Symbol.toStringTag:null,$=Object.prototype.propertyIsEnumerable,U=(typeof Reflect=="function"?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(P){return P.__proto__}:null);function M(P,N){if(P===1/0||P===-1/0||P!==P||P&&P>-1e3&&P<1e3||E.call(/e/,N))return N;var pe=/[0-9](?=(?:[0-9]{3})+(?![0-9]))/g;if(typeof P=="number"){var S=P<0?-G(-P):G(P);if(S!==P){var O=String(S),k=w.call(N,O.length+1);return C.call(O,pe,"$&_")+"."+C.call(C.call(k,/([0-9]{3})/g,"$&_"),/_$/,"")}}return C.call(N,pe,"$&_")}c(M,"addNumericSeparator");var V=sp(),J=V.custom,te=re(J)?J:null;e.exports=c(function P(N,pe,S,O){var k=pe||{};if(ee(k,"quoteStyle")&&k.quoteStyle!=="single"&&k.quoteStyle!=="double")throw new TypeError('option "quoteStyle" must be "single" or "double"');if(ee(k,"maxStringLength")&&(typeof k.maxStringLength=="number"?k.maxStringLength<0&&k.maxStringLength!==1/0:k.maxStringLength!==null))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var Y=ee(k,"customInspect")?k.customInspect:!0;if(typeof Y!="boolean"&&Y!=="symbol")throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(ee(k,"indent")&&k.indent!==null&&k.indent!==" "&&!(parseInt(k.indent,10)===k.indent&&k.indent>0))throw new TypeError('option "indent" must be "\\t", an integer > 0, or `null`');if(ee(k,"numericSeparator")&&typeof k.numericSeparator!="boolean")throw new TypeError('option "numericSeparator", if provided, must be `true` or `false`');var X=k.numericSeparator;if(typeof N>"u")return"undefined";if(N===null)return"null";if(typeof N=="boolean")return N?"true":"false";if(typeof N=="string")return Ge(N,k);if(typeof N=="number"){if(N===0)return 1/0/N>0?"0":"-0";var Z=String(N);return X?M(N,Z):Z}if(typeof N=="bigint"){var ie=String(N)+"n";return X?M(N,ie):ie}var he=typeof k.depth>"u"?5:k.depth;if(typeof S>"u"&&(S=0),S>=he&&he>0&&typeof N=="object")return le(N)?"[Array]":"[Object]";var we=br(k,S);if(typeof O>"u")O=[];else if(bt(O,N)>=0)return"[Circular]";function me(jt,Er,ku){if(Er&&(O=q.call(O),O.push(Er)),ku){var Lo={depth:k.depth};return ee(k,"quoteStyle")&&(Lo.quoteStyle=k.quoteStyle),P(jt,Lo,S+1,O)}return P(jt,k,S+1,O)}if(c(me,"inspect"),typeof N=="function"&&!ye(N)){var Pe=_e(N),Ke=Ye(N,me);return"[Function"+(Pe?": "+Pe:" (anonymous)")+"]"+(Ke.length>0?" { "+z.call(Ke,", ")+" }":"")}if(re(N)){var Dt=B?C.call(String(N),/^(Symbol\(.*\))_[^)]*$/,"$1"):F.call(N);return typeof N=="object"&&!B?et(Dt):Dt}if(vt(N)){for(var He="<"+D.call(String(N.nodeName)),Je=N.attributes||[],Xe=0;Xe",He}if(le(N)){if(N.length===0)return"[]";var Kt=Ye(N,me);return we&&!Yt(Kt)?"["+Tt(Kt,we)+"]":"[ "+z.call(Kt,", ")+" ]"}if(Ee(N)){var Ft=Ye(N,me);return!("cause"in Error.prototype)&&"cause"in N&&!$.call(N,"cause")?"{ ["+String(N)+"] "+z.call(j.call("[cause]: "+me(N.cause),Ft),", ")+" }":Ft.length===0?"["+String(N)+"]":"{ ["+String(N)+"] "+z.call(Ft,", ")+" }"}if(typeof N=="object"&&Y){if(te&&typeof N[te]=="function"&&V)return V(N,{depth:he-S});if(Y!=="symbol"&&typeof N.inspect=="function")return N.inspect()}if(It(N)){var vr=[];return a&&a.call(N,function(jt,Er){vr.push(me(Er,N,!0)+" => "+me(jt,N))}),lt("Map",o.call(N),vr,we)}if(Vt(N)){var Jt=[];return l&&l.call(N,function(jt){Jt.push(me(jt,N))}),lt("Set",u.call(N),Jt,we)}if(yr(N))return tt("WeakMap");if(gr(N))return tt("WeakSet");if(Rt(N))return tt("WeakRef");if(K(N))return et(me(Number(N)));if(oe(N))return et(me(L.call(N)));if(Q(N))return et(b.call(N));if(T(N))return et(me(String(N)));if(typeof window<"u"&&N===window)return"{ [object Window] }";if(N===window)return"{ [object globalThis] }";if(!ce(N)&&!ye(N)){var Xt=Ye(N,me),Pt=U?U(N)===Object.prototype:N instanceof Object||N.constructor===Object,nn=N instanceof Object?"":"null prototype",Mo=!Pt&&H&&Object(N)===N&&H in N?w.call(ae(N),8,-1):nn?"Object":"",Bu=Pt||typeof N.constructor!="function"?"":N.constructor.name?N.constructor.name+" ":"",on=Bu+(Mo||nn?"["+z.call(j.call([],Mo||[],nn||[]),": ")+"] ":"");return Xt.length===0?on+"{}":we?on+"{"+Tt(Xt,we)+"}":on+"{ "+z.call(Xt,", ")+" }"}return String(N)},"inspect_");function ue(P,N,pe){var S=(pe.quoteStyle||N)==="double"?'"':"'";return S+P+S}c(ue,"wrapQuotes");function ne(P){return C.call(String(P),/"/g,""")}c(ne,"quote");function le(P){return ae(P)==="[object Array]"&&(!H||!(typeof P=="object"&&H in P))}c(le,"isArray");function ce(P){return ae(P)==="[object Date]"&&(!H||!(typeof P=="object"&&H in P))}c(ce,"isDate");function ye(P){return ae(P)==="[object RegExp]"&&(!H||!(typeof P=="object"&&H in P))}c(ye,"isRegExp");function Ee(P){return ae(P)==="[object Error]"&&(!H||!(typeof P=="object"&&H in P))}c(Ee,"isError");function T(P){return ae(P)==="[object String]"&&(!H||!(typeof P=="object"&&H in P))}c(T,"isString");function K(P){return ae(P)==="[object Number]"&&(!H||!(typeof P=="object"&&H in P))}c(K,"isNumber");function Q(P){return ae(P)==="[object Boolean]"&&(!H||!(typeof P=="object"&&H in P))}c(Q,"isBoolean");function re(P){if(B)return P&&typeof P=="object"&&P instanceof Symbol;if(typeof P=="symbol")return!0;if(!P||typeof P!="object"||!F)return!1;try{return F.call(P),!0}catch{}return!1}c(re,"isSymbol");function oe(P){if(!P||typeof P!="object"||!L)return!1;try{return L.call(P),!0}catch{}return!1}c(oe,"isBigInt");var W=Object.prototype.hasOwnProperty||function(P){return P in this};function ee(P,N){return W.call(P,N)}c(ee,"has");function ae(P){return m.call(P)}c(ae,"toStr");function _e(P){if(P.name)return P.name;var N=A.call(y.call(P),/^function\s*([\w$]+)/);return N?N[1]:null}c(_e,"nameOf");function bt(P,N){if(P.indexOf)return P.indexOf(N);for(var pe=0,S=P.length;peN.maxStringLength){var pe=P.length-N.maxStringLength,S="... "+pe+" more character"+(pe>1?"s":"");return Ge(w.call(P,0,N.maxStringLength),N)+S}var O=C.call(C.call(P,/(['\\])/g,"\\$1"),/[\x00-\x1f]/g,Gt);return ue(O,"single",N)}c(Ge,"inspectString");function Gt(P){var N=P.charCodeAt(0),pe={8:"b",9:"t",10:"n",12:"f",13:"r"}[N];return pe?"\\"+pe:"\\x"+(N<16?"0":"")+I.call(N.toString(16))}c(Gt,"lowbyte");function et(P){return"Object("+P+")"}c(et,"markBoxed");function tt(P){return P+" { ? }"}c(tt,"weakCollectionOf");function lt(P,N,pe,S){var O=S?Tt(pe,S):z.call(pe,", ");return P+" ("+N+") {"+O+"}"}c(lt,"collectionOf");function Yt(P){for(var N=0;N=0)return!1;return!0}c(Yt,"singleLineValues");function br(P,N){var pe;if(P.indent===" ")pe=" ";else if(typeof P.indent=="number"&&P.indent>0)pe=z.call(Array(P.indent+1)," ");else return null;return{base:pe,prev:z.call(Array(N+1),pe)}}c(br,"getIndent");function Tt(P,N){if(P.length===0)return"";var pe=` -`+N.prev+N.base;return pe+z.call(P,","+pe)+` -`+N.prev}c(Tt,"indentedJoin");function Ye(P,N){var pe=le(P),S=[];if(pe){S.length=P.length;for(var O=0;O{"use strict";var r=zt(),n=ip(),o=up(),a=ir(),i=r("%WeakMap%",!0),s=r("%Map%",!0),u=n("WeakMap.prototype.get",!0),l=n("WeakMap.prototype.set",!0),f=n("WeakMap.prototype.has",!0),d=n("Map.prototype.get",!0),p=n("Map.prototype.set",!0),g=n("Map.prototype.has",!0),h=c(function(y,A){for(var w=y,C;(C=w.next)!==null;w=C)if(C.key===A)return w.next=C.next,C.next=y.next,y.next=C,C},"listGetNode"),v=c(function(y,A){var w=h(y,A);return w&&w.value},"listGet"),b=c(function(y,A,w){var C=h(y,A);C?C.value=w:y.next={key:A,next:y.next,value:w}},"listSet"),m=c(function(y,A){return!!h(y,A)},"listHas");e.exports=c(function(){var y,A,w,C={assert:c(function(I){if(!C.has(I))throw new a("Side channel does not contain "+o(I))},"assert"),get:c(function(I){if(i&&I&&(typeof I=="object"||typeof I=="function")){if(y)return u(y,I)}else if(s){if(A)return d(A,I)}else if(w)return v(w,I)},"get"),has:c(function(I){if(i&&I&&(typeof I=="object"||typeof I=="function")){if(y)return f(y,I)}else if(s){if(A)return g(A,I)}else if(w)return m(w,I);return!1},"has"),set:c(function(I,D){i&&I&&(typeof I=="object"||typeof I=="function")?(y||(y=new i),l(y,I,D)):s?(A||(A=new s),p(A,I,D)):(w||(w={key:{},next:null}),b(w,I,D))},"set")};return C},"getSideChannel")}),Qn=R((t,e)=>{"use strict";var r=String.prototype.replace,n=/%20/g,o={RFC1738:"RFC1738",RFC3986:"RFC3986"};e.exports={default:o.RFC3986,formatters:{RFC1738:c(function(a){return r.call(a,n,"+")},"RFC1738"),RFC3986:c(function(a){return String(a)},"RFC3986")},RFC1738:o.RFC1738,RFC3986:o.RFC3986}}),qi=R((t,e)=>{"use strict";var r=Qn(),n=Object.prototype.hasOwnProperty,o=Array.isArray,a=function(){for(var y=[],A=0;A<256;++A)y.push("%"+((A<16?"0":"")+A.toString(16)).toUpperCase());return y}(),i=c(function(y){for(;y.length>1;){var A=y.pop(),w=A.obj[A.prop];if(o(w)){for(var C=[],I=0;I=d?D.slice(j,j+d):D,q=[],G=0;G=48&&L<=57||L>=65&&L<=90||L>=97&&L<=122||I===r.RFC1738&&(L===40||L===41)){q[q.length]=z.charAt(G);continue}if(L<128){q[q.length]=a[L];continue}if(L<2048){q[q.length]=a[192|L>>6]+a[128|L&63];continue}if(L<55296||L>=57344){q[q.length]=a[224|L>>12]+a[128|L>>6&63]+a[128|L&63];continue}G+=1,L=65536+((L&1023)<<10|z.charCodeAt(G)&1023),q[q.length]=a[240|L>>18]+a[128|L>>12&63]+a[128|L>>6&63]+a[128|L&63]}E+=q.join("")}return E},"encode"),g=c(function(y){for(var A=[{obj:{o:y},prop:"o"}],w=[],C=0;C{"use strict";var r=lp(),n=qi(),o=Qn(),a=Object.prototype.hasOwnProperty,i={brackets:c(function(m){return m+"[]"},"brackets"),comma:"comma",indices:c(function(m,y){return m+"["+y+"]"},"indices"),repeat:c(function(m){return m},"repeat")},s=Array.isArray,u=Array.prototype.push,l=c(function(m,y){u.apply(m,s(y)?y:[y])},"pushToArray"),f=Date.prototype.toISOString,d=o.default,p={addQueryPrefix:!1,allowDots:!1,allowEmptyArrays:!1,arrayFormat:"indices",charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encodeDotInKeys:!1,encoder:n.encode,encodeValuesOnly:!1,format:d,formatter:o.formatters[d],indices:!1,serializeDate:c(function(m){return f.call(m)},"serializeDate"),skipNulls:!1,strictNullHandling:!1},g=c(function(m){return typeof m=="string"||typeof m=="number"||typeof m=="boolean"||typeof m=="symbol"||typeof m=="bigint"},"isNonNullishPrimitive"),h={},v=c(function m(y,A,w,C,I,D,E,j,z,q,G,L,_,F,B,H,$,U){for(var M=y,V=U,J=0,te=!1;(V=V.get(h))!==void 0&&!te;){var ue=V.get(y);if(J+=1,typeof ue<"u"){if(ue===J)throw new RangeError("Cyclic object value");te=!0}typeof V.get(h)>"u"&&(J=0)}if(typeof q=="function"?M=q(A,M):M instanceof Date?M=_(M):w==="comma"&&s(M)&&(M=n.maybeMap(M,function(ae){return ae instanceof Date?_(ae):ae})),M===null){if(D)return z&&!H?z(A,p.encoder,$,"key",F):A;M=""}if(g(M)||n.isBuffer(M)){if(z){var ne=H?A:z(A,p.encoder,$,"key",F);return[B(ne)+"="+B(z(M,p.encoder,$,"value",F))]}return[B(A)+"="+B(String(M))]}var le=[];if(typeof M>"u")return le;var ce;if(w==="comma"&&s(M))H&&z&&(M=n.maybeMap(M,z)),ce=[{value:M.length>0?M.join(",")||null:void 0}];else if(s(q))ce=q;else{var ye=Object.keys(M);ce=G?ye.sort(G):ye}var Ee=j?A.replace(/\./g,"%2E"):A,T=C&&s(M)&&M.length===1?Ee+"[]":Ee;if(I&&s(M)&&M.length===0)return T+"[]";for(var K=0;K"u"?m.encodeDotInKeys===!0?!0:p.allowDots:!!m.allowDots;return{addQueryPrefix:typeof m.addQueryPrefix=="boolean"?m.addQueryPrefix:p.addQueryPrefix,allowDots:D,allowEmptyArrays:typeof m.allowEmptyArrays=="boolean"?!!m.allowEmptyArrays:p.allowEmptyArrays,arrayFormat:I,charset:y,charsetSentinel:typeof m.charsetSentinel=="boolean"?m.charsetSentinel:p.charsetSentinel,commaRoundTrip:m.commaRoundTrip,delimiter:typeof m.delimiter>"u"?p.delimiter:m.delimiter,encode:typeof m.encode=="boolean"?m.encode:p.encode,encodeDotInKeys:typeof m.encodeDotInKeys=="boolean"?m.encodeDotInKeys:p.encodeDotInKeys,encoder:typeof m.encoder=="function"?m.encoder:p.encoder,encodeValuesOnly:typeof m.encodeValuesOnly=="boolean"?m.encodeValuesOnly:p.encodeValuesOnly,filter:C,format:A,formatter:w,serializeDate:typeof m.serializeDate=="function"?m.serializeDate:p.serializeDate,skipNulls:typeof m.skipNulls=="boolean"?m.skipNulls:p.skipNulls,sort:typeof m.sort=="function"?m.sort:null,strictNullHandling:typeof m.strictNullHandling=="boolean"?m.strictNullHandling:p.strictNullHandling}},"normalizeStringifyOptions");e.exports=function(m,y){var A=m,w=b(y),C,I;typeof w.filter=="function"?(I=w.filter,A=I("",A)):s(w.filter)&&(I=w.filter,C=I);var D=[];if(typeof A!="object"||A===null)return"";var E=i[w.arrayFormat],j=E==="comma"&&w.commaRoundTrip;C||(C=Object.keys(A)),w.sort&&C.sort(w.sort);for(var z=r(),q=0;q0?_+L:""}}),pp=R((t,e)=>{"use strict";var r=qi(),n=Object.prototype.hasOwnProperty,o=Array.isArray,a={allowDots:!1,allowEmptyArrays:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decodeDotInKeys:!1,decoder:r.decode,delimiter:"&",depth:5,duplicates:"combine",ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},i=c(function(h){return h.replace(/&#(\d+);/g,function(v,b){return String.fromCharCode(parseInt(b,10))})},"interpretNumericEntities"),s=c(function(h,v){return h&&typeof h=="string"&&v.comma&&h.indexOf(",")>-1?h.split(","):h},"parseArrayValue"),u="utf8=%26%2310003%3B",l="utf8=%E2%9C%93",f=c(function(h,v){var b={__proto__:null},m=v.ignoreQueryPrefix?h.replace(/^\?/,""):h;m=m.replace(/%5B/gi,"[").replace(/%5D/gi,"]");var y=v.parameterLimit===1/0?void 0:v.parameterLimit,A=m.split(v.delimiter,y),w=-1,C,I=v.charset;if(v.charsetSentinel)for(C=0;C-1&&(q=o(q)?[q]:q);var G=n.call(b,z);G&&v.duplicates==="combine"?b[z]=r.combine(b[z],q):(!G||v.duplicates==="last")&&(b[z]=q)}return b},"parseQueryStringValues"),d=c(function(h,v,b,m){for(var y=m?v:s(v,b),A=h.length-1;A>=0;--A){var w,C=h[A];if(C==="[]"&&b.parseArrays)w=b.allowEmptyArrays&&(y===""||b.strictNullHandling&&y===null)?[]:[].concat(y);else{w=b.plainObjects?Object.create(null):{};var I=C.charAt(0)==="["&&C.charAt(C.length-1)==="]"?C.slice(1,-1):C,D=b.decodeDotInKeys?I.replace(/%2E/g,"."):I,E=parseInt(D,10);!b.parseArrays&&D===""?w={0:y}:!isNaN(E)&&C!==D&&String(E)===D&&E>=0&&b.parseArrays&&E<=b.arrayLimit?(w=[],w[E]=y):D!=="__proto__"&&(w[D]=y)}y=w}return y},"parseObject"),p=c(function(h,v,b,m){if(h){var y=b.allowDots?h.replace(/\.([^.[]+)/g,"[$1]"):h,A=/(\[[^[\]]*])/,w=/(\[[^[\]]*])/g,C=b.depth>0&&A.exec(y),I=C?y.slice(0,C.index):y,D=[];if(I){if(!b.plainObjects&&n.call(Object.prototype,I)&&!b.allowPrototypes)return;D.push(I)}for(var E=0;b.depth>0&&(C=w.exec(y))!==null&&E"u"?a.charset:h.charset,b=typeof h.duplicates>"u"?a.duplicates:h.duplicates;if(b!=="combine"&&b!=="first"&&b!=="last")throw new TypeError("The duplicates option must be either combine, first, or last");var m=typeof h.allowDots>"u"?h.decodeDotInKeys===!0?!0:a.allowDots:!!h.allowDots;return{allowDots:m,allowEmptyArrays:typeof h.allowEmptyArrays=="boolean"?!!h.allowEmptyArrays:a.allowEmptyArrays,allowPrototypes:typeof h.allowPrototypes=="boolean"?h.allowPrototypes:a.allowPrototypes,allowSparse:typeof h.allowSparse=="boolean"?h.allowSparse:a.allowSparse,arrayLimit:typeof h.arrayLimit=="number"?h.arrayLimit:a.arrayLimit,charset:v,charsetSentinel:typeof h.charsetSentinel=="boolean"?h.charsetSentinel:a.charsetSentinel,comma:typeof h.comma=="boolean"?h.comma:a.comma,decodeDotInKeys:typeof h.decodeDotInKeys=="boolean"?h.decodeDotInKeys:a.decodeDotInKeys,decoder:typeof h.decoder=="function"?h.decoder:a.decoder,delimiter:typeof h.delimiter=="string"||r.isRegExp(h.delimiter)?h.delimiter:a.delimiter,depth:typeof h.depth=="number"||h.depth===!1?+h.depth:a.depth,duplicates:b,ignoreQueryPrefix:h.ignoreQueryPrefix===!0,interpretNumericEntities:typeof h.interpretNumericEntities=="boolean"?h.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:typeof h.parameterLimit=="number"?h.parameterLimit:a.parameterLimit,parseArrays:h.parseArrays!==!1,plainObjects:typeof h.plainObjects=="boolean"?h.plainObjects:a.plainObjects,strictNullHandling:typeof h.strictNullHandling=="boolean"?h.strictNullHandling:a.strictNullHandling}},"normalizeParseOptions");e.exports=function(h,v){var b=g(v);if(h===""||h===null||typeof h>"u")return b.plainObjects?Object.create(null):{};for(var m=typeof h=="string"?f(h,b):h,y=b.plainObjects?Object.create(null):{},A=Object.keys(m),w=0;w{"use strict";var r=cp(),n=pp(),o=Qn();e.exports={formats:o,parse:n,stringify:r}}),Ui=R((t,e)=>{e.exports={Aacute:"\xC1",aacute:"\xE1",Abreve:"\u0102",abreve:"\u0103",ac:"\u223E",acd:"\u223F",acE:"\u223E\u0333",Acirc:"\xC2",acirc:"\xE2",acute:"\xB4",Acy:"\u0410",acy:"\u0430",AElig:"\xC6",aelig:"\xE6",af:"\u2061",Afr:"\u{1D504}",afr:"\u{1D51E}",Agrave:"\xC0",agrave:"\xE0",alefsym:"\u2135",aleph:"\u2135",Alpha:"\u0391",alpha:"\u03B1",Amacr:"\u0100",amacr:"\u0101",amalg:"\u2A3F",amp:"&",AMP:"&",andand:"\u2A55",And:"\u2A53",and:"\u2227",andd:"\u2A5C",andslope:"\u2A58",andv:"\u2A5A",ang:"\u2220",ange:"\u29A4",angle:"\u2220",angmsdaa:"\u29A8",angmsdab:"\u29A9",angmsdac:"\u29AA",angmsdad:"\u29AB",angmsdae:"\u29AC",angmsdaf:"\u29AD",angmsdag:"\u29AE",angmsdah:"\u29AF",angmsd:"\u2221",angrt:"\u221F",angrtvb:"\u22BE",angrtvbd:"\u299D",angsph:"\u2222",angst:"\xC5",angzarr:"\u237C",Aogon:"\u0104",aogon:"\u0105",Aopf:"\u{1D538}",aopf:"\u{1D552}",apacir:"\u2A6F",ap:"\u2248",apE:"\u2A70",ape:"\u224A",apid:"\u224B",apos:"'",ApplyFunction:"\u2061",approx:"\u2248",approxeq:"\u224A",Aring:"\xC5",aring:"\xE5",Ascr:"\u{1D49C}",ascr:"\u{1D4B6}",Assign:"\u2254",ast:"*",asymp:"\u2248",asympeq:"\u224D",Atilde:"\xC3",atilde:"\xE3",Auml:"\xC4",auml:"\xE4",awconint:"\u2233",awint:"\u2A11",backcong:"\u224C",backepsilon:"\u03F6",backprime:"\u2035",backsim:"\u223D",backsimeq:"\u22CD",Backslash:"\u2216",Barv:"\u2AE7",barvee:"\u22BD",barwed:"\u2305",Barwed:"\u2306",barwedge:"\u2305",bbrk:"\u23B5",bbrktbrk:"\u23B6",bcong:"\u224C",Bcy:"\u0411",bcy:"\u0431",bdquo:"\u201E",becaus:"\u2235",because:"\u2235",Because:"\u2235",bemptyv:"\u29B0",bepsi:"\u03F6",bernou:"\u212C",Bernoullis:"\u212C",Beta:"\u0392",beta:"\u03B2",beth:"\u2136",between:"\u226C",Bfr:"\u{1D505}",bfr:"\u{1D51F}",bigcap:"\u22C2",bigcirc:"\u25EF",bigcup:"\u22C3",bigodot:"\u2A00",bigoplus:"\u2A01",bigotimes:"\u2A02",bigsqcup:"\u2A06",bigstar:"\u2605",bigtriangledown:"\u25BD",bigtriangleup:"\u25B3",biguplus:"\u2A04",bigvee:"\u22C1",bigwedge:"\u22C0",bkarow:"\u290D",blacklozenge:"\u29EB",blacksquare:"\u25AA",blacktriangle:"\u25B4",blacktriangledown:"\u25BE",blacktriangleleft:"\u25C2",blacktriangleright:"\u25B8",blank:"\u2423",blk12:"\u2592",blk14:"\u2591",blk34:"\u2593",block:"\u2588",bne:"=\u20E5",bnequiv:"\u2261\u20E5",bNot:"\u2AED",bnot:"\u2310",Bopf:"\u{1D539}",bopf:"\u{1D553}",bot:"\u22A5",bottom:"\u22A5",bowtie:"\u22C8",boxbox:"\u29C9",boxdl:"\u2510",boxdL:"\u2555",boxDl:"\u2556",boxDL:"\u2557",boxdr:"\u250C",boxdR:"\u2552",boxDr:"\u2553",boxDR:"\u2554",boxh:"\u2500",boxH:"\u2550",boxhd:"\u252C",boxHd:"\u2564",boxhD:"\u2565",boxHD:"\u2566",boxhu:"\u2534",boxHu:"\u2567",boxhU:"\u2568",boxHU:"\u2569",boxminus:"\u229F",boxplus:"\u229E",boxtimes:"\u22A0",boxul:"\u2518",boxuL:"\u255B",boxUl:"\u255C",boxUL:"\u255D",boxur:"\u2514",boxuR:"\u2558",boxUr:"\u2559",boxUR:"\u255A",boxv:"\u2502",boxV:"\u2551",boxvh:"\u253C",boxvH:"\u256A",boxVh:"\u256B",boxVH:"\u256C",boxvl:"\u2524",boxvL:"\u2561",boxVl:"\u2562",boxVL:"\u2563",boxvr:"\u251C",boxvR:"\u255E",boxVr:"\u255F",boxVR:"\u2560",bprime:"\u2035",breve:"\u02D8",Breve:"\u02D8",brvbar:"\xA6",bscr:"\u{1D4B7}",Bscr:"\u212C",bsemi:"\u204F",bsim:"\u223D",bsime:"\u22CD",bsolb:"\u29C5",bsol:"\\",bsolhsub:"\u27C8",bull:"\u2022",bullet:"\u2022",bump:"\u224E",bumpE:"\u2AAE",bumpe:"\u224F",Bumpeq:"\u224E",bumpeq:"\u224F",Cacute:"\u0106",cacute:"\u0107",capand:"\u2A44",capbrcup:"\u2A49",capcap:"\u2A4B",cap:"\u2229",Cap:"\u22D2",capcup:"\u2A47",capdot:"\u2A40",CapitalDifferentialD:"\u2145",caps:"\u2229\uFE00",caret:"\u2041",caron:"\u02C7",Cayleys:"\u212D",ccaps:"\u2A4D",Ccaron:"\u010C",ccaron:"\u010D",Ccedil:"\xC7",ccedil:"\xE7",Ccirc:"\u0108",ccirc:"\u0109",Cconint:"\u2230",ccups:"\u2A4C",ccupssm:"\u2A50",Cdot:"\u010A",cdot:"\u010B",cedil:"\xB8",Cedilla:"\xB8",cemptyv:"\u29B2",cent:"\xA2",centerdot:"\xB7",CenterDot:"\xB7",cfr:"\u{1D520}",Cfr:"\u212D",CHcy:"\u0427",chcy:"\u0447",check:"\u2713",checkmark:"\u2713",Chi:"\u03A7",chi:"\u03C7",circ:"\u02C6",circeq:"\u2257",circlearrowleft:"\u21BA",circlearrowright:"\u21BB",circledast:"\u229B",circledcirc:"\u229A",circleddash:"\u229D",CircleDot:"\u2299",circledR:"\xAE",circledS:"\u24C8",CircleMinus:"\u2296",CirclePlus:"\u2295",CircleTimes:"\u2297",cir:"\u25CB",cirE:"\u29C3",cire:"\u2257",cirfnint:"\u2A10",cirmid:"\u2AEF",cirscir:"\u29C2",ClockwiseContourIntegral:"\u2232",CloseCurlyDoubleQuote:"\u201D",CloseCurlyQuote:"\u2019",clubs:"\u2663",clubsuit:"\u2663",colon:":",Colon:"\u2237",Colone:"\u2A74",colone:"\u2254",coloneq:"\u2254",comma:",",commat:"@",comp:"\u2201",compfn:"\u2218",complement:"\u2201",complexes:"\u2102",cong:"\u2245",congdot:"\u2A6D",Congruent:"\u2261",conint:"\u222E",Conint:"\u222F",ContourIntegral:"\u222E",copf:"\u{1D554}",Copf:"\u2102",coprod:"\u2210",Coproduct:"\u2210",copy:"\xA9",COPY:"\xA9",copysr:"\u2117",CounterClockwiseContourIntegral:"\u2233",crarr:"\u21B5",cross:"\u2717",Cross:"\u2A2F",Cscr:"\u{1D49E}",cscr:"\u{1D4B8}",csub:"\u2ACF",csube:"\u2AD1",csup:"\u2AD0",csupe:"\u2AD2",ctdot:"\u22EF",cudarrl:"\u2938",cudarrr:"\u2935",cuepr:"\u22DE",cuesc:"\u22DF",cularr:"\u21B6",cularrp:"\u293D",cupbrcap:"\u2A48",cupcap:"\u2A46",CupCap:"\u224D",cup:"\u222A",Cup:"\u22D3",cupcup:"\u2A4A",cupdot:"\u228D",cupor:"\u2A45",cups:"\u222A\uFE00",curarr:"\u21B7",curarrm:"\u293C",curlyeqprec:"\u22DE",curlyeqsucc:"\u22DF",curlyvee:"\u22CE",curlywedge:"\u22CF",curren:"\xA4",curvearrowleft:"\u21B6",curvearrowright:"\u21B7",cuvee:"\u22CE",cuwed:"\u22CF",cwconint:"\u2232",cwint:"\u2231",cylcty:"\u232D",dagger:"\u2020",Dagger:"\u2021",daleth:"\u2138",darr:"\u2193",Darr:"\u21A1",dArr:"\u21D3",dash:"\u2010",Dashv:"\u2AE4",dashv:"\u22A3",dbkarow:"\u290F",dblac:"\u02DD",Dcaron:"\u010E",dcaron:"\u010F",Dcy:"\u0414",dcy:"\u0434",ddagger:"\u2021",ddarr:"\u21CA",DD:"\u2145",dd:"\u2146",DDotrahd:"\u2911",ddotseq:"\u2A77",deg:"\xB0",Del:"\u2207",Delta:"\u0394",delta:"\u03B4",demptyv:"\u29B1",dfisht:"\u297F",Dfr:"\u{1D507}",dfr:"\u{1D521}",dHar:"\u2965",dharl:"\u21C3",dharr:"\u21C2",DiacriticalAcute:"\xB4",DiacriticalDot:"\u02D9",DiacriticalDoubleAcute:"\u02DD",DiacriticalGrave:"`",DiacriticalTilde:"\u02DC",diam:"\u22C4",diamond:"\u22C4",Diamond:"\u22C4",diamondsuit:"\u2666",diams:"\u2666",die:"\xA8",DifferentialD:"\u2146",digamma:"\u03DD",disin:"\u22F2",div:"\xF7",divide:"\xF7",divideontimes:"\u22C7",divonx:"\u22C7",DJcy:"\u0402",djcy:"\u0452",dlcorn:"\u231E",dlcrop:"\u230D",dollar:"$",Dopf:"\u{1D53B}",dopf:"\u{1D555}",Dot:"\xA8",dot:"\u02D9",DotDot:"\u20DC",doteq:"\u2250",doteqdot:"\u2251",DotEqual:"\u2250",dotminus:"\u2238",dotplus:"\u2214",dotsquare:"\u22A1",doublebarwedge:"\u2306",DoubleContourIntegral:"\u222F",DoubleDot:"\xA8",DoubleDownArrow:"\u21D3",DoubleLeftArrow:"\u21D0",DoubleLeftRightArrow:"\u21D4",DoubleLeftTee:"\u2AE4",DoubleLongLeftArrow:"\u27F8",DoubleLongLeftRightArrow:"\u27FA",DoubleLongRightArrow:"\u27F9",DoubleRightArrow:"\u21D2",DoubleRightTee:"\u22A8",DoubleUpArrow:"\u21D1",DoubleUpDownArrow:"\u21D5",DoubleVerticalBar:"\u2225",DownArrowBar:"\u2913",downarrow:"\u2193",DownArrow:"\u2193",Downarrow:"\u21D3",DownArrowUpArrow:"\u21F5",DownBreve:"\u0311",downdownarrows:"\u21CA",downharpoonleft:"\u21C3",downharpoonright:"\u21C2",DownLeftRightVector:"\u2950",DownLeftTeeVector:"\u295E",DownLeftVectorBar:"\u2956",DownLeftVector:"\u21BD",DownRightTeeVector:"\u295F",DownRightVectorBar:"\u2957",DownRightVector:"\u21C1",DownTeeArrow:"\u21A7",DownTee:"\u22A4",drbkarow:"\u2910",drcorn:"\u231F",drcrop:"\u230C",Dscr:"\u{1D49F}",dscr:"\u{1D4B9}",DScy:"\u0405",dscy:"\u0455",dsol:"\u29F6",Dstrok:"\u0110",dstrok:"\u0111",dtdot:"\u22F1",dtri:"\u25BF",dtrif:"\u25BE",duarr:"\u21F5",duhar:"\u296F",dwangle:"\u29A6",DZcy:"\u040F",dzcy:"\u045F",dzigrarr:"\u27FF",Eacute:"\xC9",eacute:"\xE9",easter:"\u2A6E",Ecaron:"\u011A",ecaron:"\u011B",Ecirc:"\xCA",ecirc:"\xEA",ecir:"\u2256",ecolon:"\u2255",Ecy:"\u042D",ecy:"\u044D",eDDot:"\u2A77",Edot:"\u0116",edot:"\u0117",eDot:"\u2251",ee:"\u2147",efDot:"\u2252",Efr:"\u{1D508}",efr:"\u{1D522}",eg:"\u2A9A",Egrave:"\xC8",egrave:"\xE8",egs:"\u2A96",egsdot:"\u2A98",el:"\u2A99",Element:"\u2208",elinters:"\u23E7",ell:"\u2113",els:"\u2A95",elsdot:"\u2A97",Emacr:"\u0112",emacr:"\u0113",empty:"\u2205",emptyset:"\u2205",EmptySmallSquare:"\u25FB",emptyv:"\u2205",EmptyVerySmallSquare:"\u25AB",emsp13:"\u2004",emsp14:"\u2005",emsp:"\u2003",ENG:"\u014A",eng:"\u014B",ensp:"\u2002",Eogon:"\u0118",eogon:"\u0119",Eopf:"\u{1D53C}",eopf:"\u{1D556}",epar:"\u22D5",eparsl:"\u29E3",eplus:"\u2A71",epsi:"\u03B5",Epsilon:"\u0395",epsilon:"\u03B5",epsiv:"\u03F5",eqcirc:"\u2256",eqcolon:"\u2255",eqsim:"\u2242",eqslantgtr:"\u2A96",eqslantless:"\u2A95",Equal:"\u2A75",equals:"=",EqualTilde:"\u2242",equest:"\u225F",Equilibrium:"\u21CC",equiv:"\u2261",equivDD:"\u2A78",eqvparsl:"\u29E5",erarr:"\u2971",erDot:"\u2253",escr:"\u212F",Escr:"\u2130",esdot:"\u2250",Esim:"\u2A73",esim:"\u2242",Eta:"\u0397",eta:"\u03B7",ETH:"\xD0",eth:"\xF0",Euml:"\xCB",euml:"\xEB",euro:"\u20AC",excl:"!",exist:"\u2203",Exists:"\u2203",expectation:"\u2130",exponentiale:"\u2147",ExponentialE:"\u2147",fallingdotseq:"\u2252",Fcy:"\u0424",fcy:"\u0444",female:"\u2640",ffilig:"\uFB03",fflig:"\uFB00",ffllig:"\uFB04",Ffr:"\u{1D509}",ffr:"\u{1D523}",filig:"\uFB01",FilledSmallSquare:"\u25FC",FilledVerySmallSquare:"\u25AA",fjlig:"fj",flat:"\u266D",fllig:"\uFB02",fltns:"\u25B1",fnof:"\u0192",Fopf:"\u{1D53D}",fopf:"\u{1D557}",forall:"\u2200",ForAll:"\u2200",fork:"\u22D4",forkv:"\u2AD9",Fouriertrf:"\u2131",fpartint:"\u2A0D",frac12:"\xBD",frac13:"\u2153",frac14:"\xBC",frac15:"\u2155",frac16:"\u2159",frac18:"\u215B",frac23:"\u2154",frac25:"\u2156",frac34:"\xBE",frac35:"\u2157",frac38:"\u215C",frac45:"\u2158",frac56:"\u215A",frac58:"\u215D",frac78:"\u215E",frasl:"\u2044",frown:"\u2322",fscr:"\u{1D4BB}",Fscr:"\u2131",gacute:"\u01F5",Gamma:"\u0393",gamma:"\u03B3",Gammad:"\u03DC",gammad:"\u03DD",gap:"\u2A86",Gbreve:"\u011E",gbreve:"\u011F",Gcedil:"\u0122",Gcirc:"\u011C",gcirc:"\u011D",Gcy:"\u0413",gcy:"\u0433",Gdot:"\u0120",gdot:"\u0121",ge:"\u2265",gE:"\u2267",gEl:"\u2A8C",gel:"\u22DB",geq:"\u2265",geqq:"\u2267",geqslant:"\u2A7E",gescc:"\u2AA9",ges:"\u2A7E",gesdot:"\u2A80",gesdoto:"\u2A82",gesdotol:"\u2A84",gesl:"\u22DB\uFE00",gesles:"\u2A94",Gfr:"\u{1D50A}",gfr:"\u{1D524}",gg:"\u226B",Gg:"\u22D9",ggg:"\u22D9",gimel:"\u2137",GJcy:"\u0403",gjcy:"\u0453",gla:"\u2AA5",gl:"\u2277",glE:"\u2A92",glj:"\u2AA4",gnap:"\u2A8A",gnapprox:"\u2A8A",gne:"\u2A88",gnE:"\u2269",gneq:"\u2A88",gneqq:"\u2269",gnsim:"\u22E7",Gopf:"\u{1D53E}",gopf:"\u{1D558}",grave:"`",GreaterEqual:"\u2265",GreaterEqualLess:"\u22DB",GreaterFullEqual:"\u2267",GreaterGreater:"\u2AA2",GreaterLess:"\u2277",GreaterSlantEqual:"\u2A7E",GreaterTilde:"\u2273",Gscr:"\u{1D4A2}",gscr:"\u210A",gsim:"\u2273",gsime:"\u2A8E",gsiml:"\u2A90",gtcc:"\u2AA7",gtcir:"\u2A7A",gt:">",GT:">",Gt:"\u226B",gtdot:"\u22D7",gtlPar:"\u2995",gtquest:"\u2A7C",gtrapprox:"\u2A86",gtrarr:"\u2978",gtrdot:"\u22D7",gtreqless:"\u22DB",gtreqqless:"\u2A8C",gtrless:"\u2277",gtrsim:"\u2273",gvertneqq:"\u2269\uFE00",gvnE:"\u2269\uFE00",Hacek:"\u02C7",hairsp:"\u200A",half:"\xBD",hamilt:"\u210B",HARDcy:"\u042A",hardcy:"\u044A",harrcir:"\u2948",harr:"\u2194",hArr:"\u21D4",harrw:"\u21AD",Hat:"^",hbar:"\u210F",Hcirc:"\u0124",hcirc:"\u0125",hearts:"\u2665",heartsuit:"\u2665",hellip:"\u2026",hercon:"\u22B9",hfr:"\u{1D525}",Hfr:"\u210C",HilbertSpace:"\u210B",hksearow:"\u2925",hkswarow:"\u2926",hoarr:"\u21FF",homtht:"\u223B",hookleftarrow:"\u21A9",hookrightarrow:"\u21AA",hopf:"\u{1D559}",Hopf:"\u210D",horbar:"\u2015",HorizontalLine:"\u2500",hscr:"\u{1D4BD}",Hscr:"\u210B",hslash:"\u210F",Hstrok:"\u0126",hstrok:"\u0127",HumpDownHump:"\u224E",HumpEqual:"\u224F",hybull:"\u2043",hyphen:"\u2010",Iacute:"\xCD",iacute:"\xED",ic:"\u2063",Icirc:"\xCE",icirc:"\xEE",Icy:"\u0418",icy:"\u0438",Idot:"\u0130",IEcy:"\u0415",iecy:"\u0435",iexcl:"\xA1",iff:"\u21D4",ifr:"\u{1D526}",Ifr:"\u2111",Igrave:"\xCC",igrave:"\xEC",ii:"\u2148",iiiint:"\u2A0C",iiint:"\u222D",iinfin:"\u29DC",iiota:"\u2129",IJlig:"\u0132",ijlig:"\u0133",Imacr:"\u012A",imacr:"\u012B",image:"\u2111",ImaginaryI:"\u2148",imagline:"\u2110",imagpart:"\u2111",imath:"\u0131",Im:"\u2111",imof:"\u22B7",imped:"\u01B5",Implies:"\u21D2",incare:"\u2105",in:"\u2208",infin:"\u221E",infintie:"\u29DD",inodot:"\u0131",intcal:"\u22BA",int:"\u222B",Int:"\u222C",integers:"\u2124",Integral:"\u222B",intercal:"\u22BA",Intersection:"\u22C2",intlarhk:"\u2A17",intprod:"\u2A3C",InvisibleComma:"\u2063",InvisibleTimes:"\u2062",IOcy:"\u0401",iocy:"\u0451",Iogon:"\u012E",iogon:"\u012F",Iopf:"\u{1D540}",iopf:"\u{1D55A}",Iota:"\u0399",iota:"\u03B9",iprod:"\u2A3C",iquest:"\xBF",iscr:"\u{1D4BE}",Iscr:"\u2110",isin:"\u2208",isindot:"\u22F5",isinE:"\u22F9",isins:"\u22F4",isinsv:"\u22F3",isinv:"\u2208",it:"\u2062",Itilde:"\u0128",itilde:"\u0129",Iukcy:"\u0406",iukcy:"\u0456",Iuml:"\xCF",iuml:"\xEF",Jcirc:"\u0134",jcirc:"\u0135",Jcy:"\u0419",jcy:"\u0439",Jfr:"\u{1D50D}",jfr:"\u{1D527}",jmath:"\u0237",Jopf:"\u{1D541}",jopf:"\u{1D55B}",Jscr:"\u{1D4A5}",jscr:"\u{1D4BF}",Jsercy:"\u0408",jsercy:"\u0458",Jukcy:"\u0404",jukcy:"\u0454",Kappa:"\u039A",kappa:"\u03BA",kappav:"\u03F0",Kcedil:"\u0136",kcedil:"\u0137",Kcy:"\u041A",kcy:"\u043A",Kfr:"\u{1D50E}",kfr:"\u{1D528}",kgreen:"\u0138",KHcy:"\u0425",khcy:"\u0445",KJcy:"\u040C",kjcy:"\u045C",Kopf:"\u{1D542}",kopf:"\u{1D55C}",Kscr:"\u{1D4A6}",kscr:"\u{1D4C0}",lAarr:"\u21DA",Lacute:"\u0139",lacute:"\u013A",laemptyv:"\u29B4",lagran:"\u2112",Lambda:"\u039B",lambda:"\u03BB",lang:"\u27E8",Lang:"\u27EA",langd:"\u2991",langle:"\u27E8",lap:"\u2A85",Laplacetrf:"\u2112",laquo:"\xAB",larrb:"\u21E4",larrbfs:"\u291F",larr:"\u2190",Larr:"\u219E",lArr:"\u21D0",larrfs:"\u291D",larrhk:"\u21A9",larrlp:"\u21AB",larrpl:"\u2939",larrsim:"\u2973",larrtl:"\u21A2",latail:"\u2919",lAtail:"\u291B",lat:"\u2AAB",late:"\u2AAD",lates:"\u2AAD\uFE00",lbarr:"\u290C",lBarr:"\u290E",lbbrk:"\u2772",lbrace:"{",lbrack:"[",lbrke:"\u298B",lbrksld:"\u298F",lbrkslu:"\u298D",Lcaron:"\u013D",lcaron:"\u013E",Lcedil:"\u013B",lcedil:"\u013C",lceil:"\u2308",lcub:"{",Lcy:"\u041B",lcy:"\u043B",ldca:"\u2936",ldquo:"\u201C",ldquor:"\u201E",ldrdhar:"\u2967",ldrushar:"\u294B",ldsh:"\u21B2",le:"\u2264",lE:"\u2266",LeftAngleBracket:"\u27E8",LeftArrowBar:"\u21E4",leftarrow:"\u2190",LeftArrow:"\u2190",Leftarrow:"\u21D0",LeftArrowRightArrow:"\u21C6",leftarrowtail:"\u21A2",LeftCeiling:"\u2308",LeftDoubleBracket:"\u27E6",LeftDownTeeVector:"\u2961",LeftDownVectorBar:"\u2959",LeftDownVector:"\u21C3",LeftFloor:"\u230A",leftharpoondown:"\u21BD",leftharpoonup:"\u21BC",leftleftarrows:"\u21C7",leftrightarrow:"\u2194",LeftRightArrow:"\u2194",Leftrightarrow:"\u21D4",leftrightarrows:"\u21C6",leftrightharpoons:"\u21CB",leftrightsquigarrow:"\u21AD",LeftRightVector:"\u294E",LeftTeeArrow:"\u21A4",LeftTee:"\u22A3",LeftTeeVector:"\u295A",leftthreetimes:"\u22CB",LeftTriangleBar:"\u29CF",LeftTriangle:"\u22B2",LeftTriangleEqual:"\u22B4",LeftUpDownVector:"\u2951",LeftUpTeeVector:"\u2960",LeftUpVectorBar:"\u2958",LeftUpVector:"\u21BF",LeftVectorBar:"\u2952",LeftVector:"\u21BC",lEg:"\u2A8B",leg:"\u22DA",leq:"\u2264",leqq:"\u2266",leqslant:"\u2A7D",lescc:"\u2AA8",les:"\u2A7D",lesdot:"\u2A7F",lesdoto:"\u2A81",lesdotor:"\u2A83",lesg:"\u22DA\uFE00",lesges:"\u2A93",lessapprox:"\u2A85",lessdot:"\u22D6",lesseqgtr:"\u22DA",lesseqqgtr:"\u2A8B",LessEqualGreater:"\u22DA",LessFullEqual:"\u2266",LessGreater:"\u2276",lessgtr:"\u2276",LessLess:"\u2AA1",lesssim:"\u2272",LessSlantEqual:"\u2A7D",LessTilde:"\u2272",lfisht:"\u297C",lfloor:"\u230A",Lfr:"\u{1D50F}",lfr:"\u{1D529}",lg:"\u2276",lgE:"\u2A91",lHar:"\u2962",lhard:"\u21BD",lharu:"\u21BC",lharul:"\u296A",lhblk:"\u2584",LJcy:"\u0409",ljcy:"\u0459",llarr:"\u21C7",ll:"\u226A",Ll:"\u22D8",llcorner:"\u231E",Lleftarrow:"\u21DA",llhard:"\u296B",lltri:"\u25FA",Lmidot:"\u013F",lmidot:"\u0140",lmoustache:"\u23B0",lmoust:"\u23B0",lnap:"\u2A89",lnapprox:"\u2A89",lne:"\u2A87",lnE:"\u2268",lneq:"\u2A87",lneqq:"\u2268",lnsim:"\u22E6",loang:"\u27EC",loarr:"\u21FD",lobrk:"\u27E6",longleftarrow:"\u27F5",LongLeftArrow:"\u27F5",Longleftarrow:"\u27F8",longleftrightarrow:"\u27F7",LongLeftRightArrow:"\u27F7",Longleftrightarrow:"\u27FA",longmapsto:"\u27FC",longrightarrow:"\u27F6",LongRightArrow:"\u27F6",Longrightarrow:"\u27F9",looparrowleft:"\u21AB",looparrowright:"\u21AC",lopar:"\u2985",Lopf:"\u{1D543}",lopf:"\u{1D55D}",loplus:"\u2A2D",lotimes:"\u2A34",lowast:"\u2217",lowbar:"_",LowerLeftArrow:"\u2199",LowerRightArrow:"\u2198",loz:"\u25CA",lozenge:"\u25CA",lozf:"\u29EB",lpar:"(",lparlt:"\u2993",lrarr:"\u21C6",lrcorner:"\u231F",lrhar:"\u21CB",lrhard:"\u296D",lrm:"\u200E",lrtri:"\u22BF",lsaquo:"\u2039",lscr:"\u{1D4C1}",Lscr:"\u2112",lsh:"\u21B0",Lsh:"\u21B0",lsim:"\u2272",lsime:"\u2A8D",lsimg:"\u2A8F",lsqb:"[",lsquo:"\u2018",lsquor:"\u201A",Lstrok:"\u0141",lstrok:"\u0142",ltcc:"\u2AA6",ltcir:"\u2A79",lt:"<",LT:"<",Lt:"\u226A",ltdot:"\u22D6",lthree:"\u22CB",ltimes:"\u22C9",ltlarr:"\u2976",ltquest:"\u2A7B",ltri:"\u25C3",ltrie:"\u22B4",ltrif:"\u25C2",ltrPar:"\u2996",lurdshar:"\u294A",luruhar:"\u2966",lvertneqq:"\u2268\uFE00",lvnE:"\u2268\uFE00",macr:"\xAF",male:"\u2642",malt:"\u2720",maltese:"\u2720",Map:"\u2905",map:"\u21A6",mapsto:"\u21A6",mapstodown:"\u21A7",mapstoleft:"\u21A4",mapstoup:"\u21A5",marker:"\u25AE",mcomma:"\u2A29",Mcy:"\u041C",mcy:"\u043C",mdash:"\u2014",mDDot:"\u223A",measuredangle:"\u2221",MediumSpace:"\u205F",Mellintrf:"\u2133",Mfr:"\u{1D510}",mfr:"\u{1D52A}",mho:"\u2127",micro:"\xB5",midast:"*",midcir:"\u2AF0",mid:"\u2223",middot:"\xB7",minusb:"\u229F",minus:"\u2212",minusd:"\u2238",minusdu:"\u2A2A",MinusPlus:"\u2213",mlcp:"\u2ADB",mldr:"\u2026",mnplus:"\u2213",models:"\u22A7",Mopf:"\u{1D544}",mopf:"\u{1D55E}",mp:"\u2213",mscr:"\u{1D4C2}",Mscr:"\u2133",mstpos:"\u223E",Mu:"\u039C",mu:"\u03BC",multimap:"\u22B8",mumap:"\u22B8",nabla:"\u2207",Nacute:"\u0143",nacute:"\u0144",nang:"\u2220\u20D2",nap:"\u2249",napE:"\u2A70\u0338",napid:"\u224B\u0338",napos:"\u0149",napprox:"\u2249",natural:"\u266E",naturals:"\u2115",natur:"\u266E",nbsp:"\xA0",nbump:"\u224E\u0338",nbumpe:"\u224F\u0338",ncap:"\u2A43",Ncaron:"\u0147",ncaron:"\u0148",Ncedil:"\u0145",ncedil:"\u0146",ncong:"\u2247",ncongdot:"\u2A6D\u0338",ncup:"\u2A42",Ncy:"\u041D",ncy:"\u043D",ndash:"\u2013",nearhk:"\u2924",nearr:"\u2197",neArr:"\u21D7",nearrow:"\u2197",ne:"\u2260",nedot:"\u2250\u0338",NegativeMediumSpace:"\u200B",NegativeThickSpace:"\u200B",NegativeThinSpace:"\u200B",NegativeVeryThinSpace:"\u200B",nequiv:"\u2262",nesear:"\u2928",nesim:"\u2242\u0338",NestedGreaterGreater:"\u226B",NestedLessLess:"\u226A",NewLine:` -`,nexist:"\u2204",nexists:"\u2204",Nfr:"\u{1D511}",nfr:"\u{1D52B}",ngE:"\u2267\u0338",nge:"\u2271",ngeq:"\u2271",ngeqq:"\u2267\u0338",ngeqslant:"\u2A7E\u0338",nges:"\u2A7E\u0338",nGg:"\u22D9\u0338",ngsim:"\u2275",nGt:"\u226B\u20D2",ngt:"\u226F",ngtr:"\u226F",nGtv:"\u226B\u0338",nharr:"\u21AE",nhArr:"\u21CE",nhpar:"\u2AF2",ni:"\u220B",nis:"\u22FC",nisd:"\u22FA",niv:"\u220B",NJcy:"\u040A",njcy:"\u045A",nlarr:"\u219A",nlArr:"\u21CD",nldr:"\u2025",nlE:"\u2266\u0338",nle:"\u2270",nleftarrow:"\u219A",nLeftarrow:"\u21CD",nleftrightarrow:"\u21AE",nLeftrightarrow:"\u21CE",nleq:"\u2270",nleqq:"\u2266\u0338",nleqslant:"\u2A7D\u0338",nles:"\u2A7D\u0338",nless:"\u226E",nLl:"\u22D8\u0338",nlsim:"\u2274",nLt:"\u226A\u20D2",nlt:"\u226E",nltri:"\u22EA",nltrie:"\u22EC",nLtv:"\u226A\u0338",nmid:"\u2224",NoBreak:"\u2060",NonBreakingSpace:"\xA0",nopf:"\u{1D55F}",Nopf:"\u2115",Not:"\u2AEC",not:"\xAC",NotCongruent:"\u2262",NotCupCap:"\u226D",NotDoubleVerticalBar:"\u2226",NotElement:"\u2209",NotEqual:"\u2260",NotEqualTilde:"\u2242\u0338",NotExists:"\u2204",NotGreater:"\u226F",NotGreaterEqual:"\u2271",NotGreaterFullEqual:"\u2267\u0338",NotGreaterGreater:"\u226B\u0338",NotGreaterLess:"\u2279",NotGreaterSlantEqual:"\u2A7E\u0338",NotGreaterTilde:"\u2275",NotHumpDownHump:"\u224E\u0338",NotHumpEqual:"\u224F\u0338",notin:"\u2209",notindot:"\u22F5\u0338",notinE:"\u22F9\u0338",notinva:"\u2209",notinvb:"\u22F7",notinvc:"\u22F6",NotLeftTriangleBar:"\u29CF\u0338",NotLeftTriangle:"\u22EA",NotLeftTriangleEqual:"\u22EC",NotLess:"\u226E",NotLessEqual:"\u2270",NotLessGreater:"\u2278",NotLessLess:"\u226A\u0338",NotLessSlantEqual:"\u2A7D\u0338",NotLessTilde:"\u2274",NotNestedGreaterGreater:"\u2AA2\u0338",NotNestedLessLess:"\u2AA1\u0338",notni:"\u220C",notniva:"\u220C",notnivb:"\u22FE",notnivc:"\u22FD",NotPrecedes:"\u2280",NotPrecedesEqual:"\u2AAF\u0338",NotPrecedesSlantEqual:"\u22E0",NotReverseElement:"\u220C",NotRightTriangleBar:"\u29D0\u0338",NotRightTriangle:"\u22EB",NotRightTriangleEqual:"\u22ED",NotSquareSubset:"\u228F\u0338",NotSquareSubsetEqual:"\u22E2",NotSquareSuperset:"\u2290\u0338",NotSquareSupersetEqual:"\u22E3",NotSubset:"\u2282\u20D2",NotSubsetEqual:"\u2288",NotSucceeds:"\u2281",NotSucceedsEqual:"\u2AB0\u0338",NotSucceedsSlantEqual:"\u22E1",NotSucceedsTilde:"\u227F\u0338",NotSuperset:"\u2283\u20D2",NotSupersetEqual:"\u2289",NotTilde:"\u2241",NotTildeEqual:"\u2244",NotTildeFullEqual:"\u2247",NotTildeTilde:"\u2249",NotVerticalBar:"\u2224",nparallel:"\u2226",npar:"\u2226",nparsl:"\u2AFD\u20E5",npart:"\u2202\u0338",npolint:"\u2A14",npr:"\u2280",nprcue:"\u22E0",nprec:"\u2280",npreceq:"\u2AAF\u0338",npre:"\u2AAF\u0338",nrarrc:"\u2933\u0338",nrarr:"\u219B",nrArr:"\u21CF",nrarrw:"\u219D\u0338",nrightarrow:"\u219B",nRightarrow:"\u21CF",nrtri:"\u22EB",nrtrie:"\u22ED",nsc:"\u2281",nsccue:"\u22E1",nsce:"\u2AB0\u0338",Nscr:"\u{1D4A9}",nscr:"\u{1D4C3}",nshortmid:"\u2224",nshortparallel:"\u2226",nsim:"\u2241",nsime:"\u2244",nsimeq:"\u2244",nsmid:"\u2224",nspar:"\u2226",nsqsube:"\u22E2",nsqsupe:"\u22E3",nsub:"\u2284",nsubE:"\u2AC5\u0338",nsube:"\u2288",nsubset:"\u2282\u20D2",nsubseteq:"\u2288",nsubseteqq:"\u2AC5\u0338",nsucc:"\u2281",nsucceq:"\u2AB0\u0338",nsup:"\u2285",nsupE:"\u2AC6\u0338",nsupe:"\u2289",nsupset:"\u2283\u20D2",nsupseteq:"\u2289",nsupseteqq:"\u2AC6\u0338",ntgl:"\u2279",Ntilde:"\xD1",ntilde:"\xF1",ntlg:"\u2278",ntriangleleft:"\u22EA",ntrianglelefteq:"\u22EC",ntriangleright:"\u22EB",ntrianglerighteq:"\u22ED",Nu:"\u039D",nu:"\u03BD",num:"#",numero:"\u2116",numsp:"\u2007",nvap:"\u224D\u20D2",nvdash:"\u22AC",nvDash:"\u22AD",nVdash:"\u22AE",nVDash:"\u22AF",nvge:"\u2265\u20D2",nvgt:">\u20D2",nvHarr:"\u2904",nvinfin:"\u29DE",nvlArr:"\u2902",nvle:"\u2264\u20D2",nvlt:"<\u20D2",nvltrie:"\u22B4\u20D2",nvrArr:"\u2903",nvrtrie:"\u22B5\u20D2",nvsim:"\u223C\u20D2",nwarhk:"\u2923",nwarr:"\u2196",nwArr:"\u21D6",nwarrow:"\u2196",nwnear:"\u2927",Oacute:"\xD3",oacute:"\xF3",oast:"\u229B",Ocirc:"\xD4",ocirc:"\xF4",ocir:"\u229A",Ocy:"\u041E",ocy:"\u043E",odash:"\u229D",Odblac:"\u0150",odblac:"\u0151",odiv:"\u2A38",odot:"\u2299",odsold:"\u29BC",OElig:"\u0152",oelig:"\u0153",ofcir:"\u29BF",Ofr:"\u{1D512}",ofr:"\u{1D52C}",ogon:"\u02DB",Ograve:"\xD2",ograve:"\xF2",ogt:"\u29C1",ohbar:"\u29B5",ohm:"\u03A9",oint:"\u222E",olarr:"\u21BA",olcir:"\u29BE",olcross:"\u29BB",oline:"\u203E",olt:"\u29C0",Omacr:"\u014C",omacr:"\u014D",Omega:"\u03A9",omega:"\u03C9",Omicron:"\u039F",omicron:"\u03BF",omid:"\u29B6",ominus:"\u2296",Oopf:"\u{1D546}",oopf:"\u{1D560}",opar:"\u29B7",OpenCurlyDoubleQuote:"\u201C",OpenCurlyQuote:"\u2018",operp:"\u29B9",oplus:"\u2295",orarr:"\u21BB",Or:"\u2A54",or:"\u2228",ord:"\u2A5D",order:"\u2134",orderof:"\u2134",ordf:"\xAA",ordm:"\xBA",origof:"\u22B6",oror:"\u2A56",orslope:"\u2A57",orv:"\u2A5B",oS:"\u24C8",Oscr:"\u{1D4AA}",oscr:"\u2134",Oslash:"\xD8",oslash:"\xF8",osol:"\u2298",Otilde:"\xD5",otilde:"\xF5",otimesas:"\u2A36",Otimes:"\u2A37",otimes:"\u2297",Ouml:"\xD6",ouml:"\xF6",ovbar:"\u233D",OverBar:"\u203E",OverBrace:"\u23DE",OverBracket:"\u23B4",OverParenthesis:"\u23DC",para:"\xB6",parallel:"\u2225",par:"\u2225",parsim:"\u2AF3",parsl:"\u2AFD",part:"\u2202",PartialD:"\u2202",Pcy:"\u041F",pcy:"\u043F",percnt:"%",period:".",permil:"\u2030",perp:"\u22A5",pertenk:"\u2031",Pfr:"\u{1D513}",pfr:"\u{1D52D}",Phi:"\u03A6",phi:"\u03C6",phiv:"\u03D5",phmmat:"\u2133",phone:"\u260E",Pi:"\u03A0",pi:"\u03C0",pitchfork:"\u22D4",piv:"\u03D6",planck:"\u210F",planckh:"\u210E",plankv:"\u210F",plusacir:"\u2A23",plusb:"\u229E",pluscir:"\u2A22",plus:"+",plusdo:"\u2214",plusdu:"\u2A25",pluse:"\u2A72",PlusMinus:"\xB1",plusmn:"\xB1",plussim:"\u2A26",plustwo:"\u2A27",pm:"\xB1",Poincareplane:"\u210C",pointint:"\u2A15",popf:"\u{1D561}",Popf:"\u2119",pound:"\xA3",prap:"\u2AB7",Pr:"\u2ABB",pr:"\u227A",prcue:"\u227C",precapprox:"\u2AB7",prec:"\u227A",preccurlyeq:"\u227C",Precedes:"\u227A",PrecedesEqual:"\u2AAF",PrecedesSlantEqual:"\u227C",PrecedesTilde:"\u227E",preceq:"\u2AAF",precnapprox:"\u2AB9",precneqq:"\u2AB5",precnsim:"\u22E8",pre:"\u2AAF",prE:"\u2AB3",precsim:"\u227E",prime:"\u2032",Prime:"\u2033",primes:"\u2119",prnap:"\u2AB9",prnE:"\u2AB5",prnsim:"\u22E8",prod:"\u220F",Product:"\u220F",profalar:"\u232E",profline:"\u2312",profsurf:"\u2313",prop:"\u221D",Proportional:"\u221D",Proportion:"\u2237",propto:"\u221D",prsim:"\u227E",prurel:"\u22B0",Pscr:"\u{1D4AB}",pscr:"\u{1D4C5}",Psi:"\u03A8",psi:"\u03C8",puncsp:"\u2008",Qfr:"\u{1D514}",qfr:"\u{1D52E}",qint:"\u2A0C",qopf:"\u{1D562}",Qopf:"\u211A",qprime:"\u2057",Qscr:"\u{1D4AC}",qscr:"\u{1D4C6}",quaternions:"\u210D",quatint:"\u2A16",quest:"?",questeq:"\u225F",quot:'"',QUOT:'"',rAarr:"\u21DB",race:"\u223D\u0331",Racute:"\u0154",racute:"\u0155",radic:"\u221A",raemptyv:"\u29B3",rang:"\u27E9",Rang:"\u27EB",rangd:"\u2992",range:"\u29A5",rangle:"\u27E9",raquo:"\xBB",rarrap:"\u2975",rarrb:"\u21E5",rarrbfs:"\u2920",rarrc:"\u2933",rarr:"\u2192",Rarr:"\u21A0",rArr:"\u21D2",rarrfs:"\u291E",rarrhk:"\u21AA",rarrlp:"\u21AC",rarrpl:"\u2945",rarrsim:"\u2974",Rarrtl:"\u2916",rarrtl:"\u21A3",rarrw:"\u219D",ratail:"\u291A",rAtail:"\u291C",ratio:"\u2236",rationals:"\u211A",rbarr:"\u290D",rBarr:"\u290F",RBarr:"\u2910",rbbrk:"\u2773",rbrace:"}",rbrack:"]",rbrke:"\u298C",rbrksld:"\u298E",rbrkslu:"\u2990",Rcaron:"\u0158",rcaron:"\u0159",Rcedil:"\u0156",rcedil:"\u0157",rceil:"\u2309",rcub:"}",Rcy:"\u0420",rcy:"\u0440",rdca:"\u2937",rdldhar:"\u2969",rdquo:"\u201D",rdquor:"\u201D",rdsh:"\u21B3",real:"\u211C",realine:"\u211B",realpart:"\u211C",reals:"\u211D",Re:"\u211C",rect:"\u25AD",reg:"\xAE",REG:"\xAE",ReverseElement:"\u220B",ReverseEquilibrium:"\u21CB",ReverseUpEquilibrium:"\u296F",rfisht:"\u297D",rfloor:"\u230B",rfr:"\u{1D52F}",Rfr:"\u211C",rHar:"\u2964",rhard:"\u21C1",rharu:"\u21C0",rharul:"\u296C",Rho:"\u03A1",rho:"\u03C1",rhov:"\u03F1",RightAngleBracket:"\u27E9",RightArrowBar:"\u21E5",rightarrow:"\u2192",RightArrow:"\u2192",Rightarrow:"\u21D2",RightArrowLeftArrow:"\u21C4",rightarrowtail:"\u21A3",RightCeiling:"\u2309",RightDoubleBracket:"\u27E7",RightDownTeeVector:"\u295D",RightDownVectorBar:"\u2955",RightDownVector:"\u21C2",RightFloor:"\u230B",rightharpoondown:"\u21C1",rightharpoonup:"\u21C0",rightleftarrows:"\u21C4",rightleftharpoons:"\u21CC",rightrightarrows:"\u21C9",rightsquigarrow:"\u219D",RightTeeArrow:"\u21A6",RightTee:"\u22A2",RightTeeVector:"\u295B",rightthreetimes:"\u22CC",RightTriangleBar:"\u29D0",RightTriangle:"\u22B3",RightTriangleEqual:"\u22B5",RightUpDownVector:"\u294F",RightUpTeeVector:"\u295C",RightUpVectorBar:"\u2954",RightUpVector:"\u21BE",RightVectorBar:"\u2953",RightVector:"\u21C0",ring:"\u02DA",risingdotseq:"\u2253",rlarr:"\u21C4",rlhar:"\u21CC",rlm:"\u200F",rmoustache:"\u23B1",rmoust:"\u23B1",rnmid:"\u2AEE",roang:"\u27ED",roarr:"\u21FE",robrk:"\u27E7",ropar:"\u2986",ropf:"\u{1D563}",Ropf:"\u211D",roplus:"\u2A2E",rotimes:"\u2A35",RoundImplies:"\u2970",rpar:")",rpargt:"\u2994",rppolint:"\u2A12",rrarr:"\u21C9",Rrightarrow:"\u21DB",rsaquo:"\u203A",rscr:"\u{1D4C7}",Rscr:"\u211B",rsh:"\u21B1",Rsh:"\u21B1",rsqb:"]",rsquo:"\u2019",rsquor:"\u2019",rthree:"\u22CC",rtimes:"\u22CA",rtri:"\u25B9",rtrie:"\u22B5",rtrif:"\u25B8",rtriltri:"\u29CE",RuleDelayed:"\u29F4",ruluhar:"\u2968",rx:"\u211E",Sacute:"\u015A",sacute:"\u015B",sbquo:"\u201A",scap:"\u2AB8",Scaron:"\u0160",scaron:"\u0161",Sc:"\u2ABC",sc:"\u227B",sccue:"\u227D",sce:"\u2AB0",scE:"\u2AB4",Scedil:"\u015E",scedil:"\u015F",Scirc:"\u015C",scirc:"\u015D",scnap:"\u2ABA",scnE:"\u2AB6",scnsim:"\u22E9",scpolint:"\u2A13",scsim:"\u227F",Scy:"\u0421",scy:"\u0441",sdotb:"\u22A1",sdot:"\u22C5",sdote:"\u2A66",searhk:"\u2925",searr:"\u2198",seArr:"\u21D8",searrow:"\u2198",sect:"\xA7",semi:";",seswar:"\u2929",setminus:"\u2216",setmn:"\u2216",sext:"\u2736",Sfr:"\u{1D516}",sfr:"\u{1D530}",sfrown:"\u2322",sharp:"\u266F",SHCHcy:"\u0429",shchcy:"\u0449",SHcy:"\u0428",shcy:"\u0448",ShortDownArrow:"\u2193",ShortLeftArrow:"\u2190",shortmid:"\u2223",shortparallel:"\u2225",ShortRightArrow:"\u2192",ShortUpArrow:"\u2191",shy:"\xAD",Sigma:"\u03A3",sigma:"\u03C3",sigmaf:"\u03C2",sigmav:"\u03C2",sim:"\u223C",simdot:"\u2A6A",sime:"\u2243",simeq:"\u2243",simg:"\u2A9E",simgE:"\u2AA0",siml:"\u2A9D",simlE:"\u2A9F",simne:"\u2246",simplus:"\u2A24",simrarr:"\u2972",slarr:"\u2190",SmallCircle:"\u2218",smallsetminus:"\u2216",smashp:"\u2A33",smeparsl:"\u29E4",smid:"\u2223",smile:"\u2323",smt:"\u2AAA",smte:"\u2AAC",smtes:"\u2AAC\uFE00",SOFTcy:"\u042C",softcy:"\u044C",solbar:"\u233F",solb:"\u29C4",sol:"/",Sopf:"\u{1D54A}",sopf:"\u{1D564}",spades:"\u2660",spadesuit:"\u2660",spar:"\u2225",sqcap:"\u2293",sqcaps:"\u2293\uFE00",sqcup:"\u2294",sqcups:"\u2294\uFE00",Sqrt:"\u221A",sqsub:"\u228F",sqsube:"\u2291",sqsubset:"\u228F",sqsubseteq:"\u2291",sqsup:"\u2290",sqsupe:"\u2292",sqsupset:"\u2290",sqsupseteq:"\u2292",square:"\u25A1",Square:"\u25A1",SquareIntersection:"\u2293",SquareSubset:"\u228F",SquareSubsetEqual:"\u2291",SquareSuperset:"\u2290",SquareSupersetEqual:"\u2292",SquareUnion:"\u2294",squarf:"\u25AA",squ:"\u25A1",squf:"\u25AA",srarr:"\u2192",Sscr:"\u{1D4AE}",sscr:"\u{1D4C8}",ssetmn:"\u2216",ssmile:"\u2323",sstarf:"\u22C6",Star:"\u22C6",star:"\u2606",starf:"\u2605",straightepsilon:"\u03F5",straightphi:"\u03D5",strns:"\xAF",sub:"\u2282",Sub:"\u22D0",subdot:"\u2ABD",subE:"\u2AC5",sube:"\u2286",subedot:"\u2AC3",submult:"\u2AC1",subnE:"\u2ACB",subne:"\u228A",subplus:"\u2ABF",subrarr:"\u2979",subset:"\u2282",Subset:"\u22D0",subseteq:"\u2286",subseteqq:"\u2AC5",SubsetEqual:"\u2286",subsetneq:"\u228A",subsetneqq:"\u2ACB",subsim:"\u2AC7",subsub:"\u2AD5",subsup:"\u2AD3",succapprox:"\u2AB8",succ:"\u227B",succcurlyeq:"\u227D",Succeeds:"\u227B",SucceedsEqual:"\u2AB0",SucceedsSlantEqual:"\u227D",SucceedsTilde:"\u227F",succeq:"\u2AB0",succnapprox:"\u2ABA",succneqq:"\u2AB6",succnsim:"\u22E9",succsim:"\u227F",SuchThat:"\u220B",sum:"\u2211",Sum:"\u2211",sung:"\u266A",sup1:"\xB9",sup2:"\xB2",sup3:"\xB3",sup:"\u2283",Sup:"\u22D1",supdot:"\u2ABE",supdsub:"\u2AD8",supE:"\u2AC6",supe:"\u2287",supedot:"\u2AC4",Superset:"\u2283",SupersetEqual:"\u2287",suphsol:"\u27C9",suphsub:"\u2AD7",suplarr:"\u297B",supmult:"\u2AC2",supnE:"\u2ACC",supne:"\u228B",supplus:"\u2AC0",supset:"\u2283",Supset:"\u22D1",supseteq:"\u2287",supseteqq:"\u2AC6",supsetneq:"\u228B",supsetneqq:"\u2ACC",supsim:"\u2AC8",supsub:"\u2AD4",supsup:"\u2AD6",swarhk:"\u2926",swarr:"\u2199",swArr:"\u21D9",swarrow:"\u2199",swnwar:"\u292A",szlig:"\xDF",Tab:" ",target:"\u2316",Tau:"\u03A4",tau:"\u03C4",tbrk:"\u23B4",Tcaron:"\u0164",tcaron:"\u0165",Tcedil:"\u0162",tcedil:"\u0163",Tcy:"\u0422",tcy:"\u0442",tdot:"\u20DB",telrec:"\u2315",Tfr:"\u{1D517}",tfr:"\u{1D531}",there4:"\u2234",therefore:"\u2234",Therefore:"\u2234",Theta:"\u0398",theta:"\u03B8",thetasym:"\u03D1",thetav:"\u03D1",thickapprox:"\u2248",thicksim:"\u223C",ThickSpace:"\u205F\u200A",ThinSpace:"\u2009",thinsp:"\u2009",thkap:"\u2248",thksim:"\u223C",THORN:"\xDE",thorn:"\xFE",tilde:"\u02DC",Tilde:"\u223C",TildeEqual:"\u2243",TildeFullEqual:"\u2245",TildeTilde:"\u2248",timesbar:"\u2A31",timesb:"\u22A0",times:"\xD7",timesd:"\u2A30",tint:"\u222D",toea:"\u2928",topbot:"\u2336",topcir:"\u2AF1",top:"\u22A4",Topf:"\u{1D54B}",topf:"\u{1D565}",topfork:"\u2ADA",tosa:"\u2929",tprime:"\u2034",trade:"\u2122",TRADE:"\u2122",triangle:"\u25B5",triangledown:"\u25BF",triangleleft:"\u25C3",trianglelefteq:"\u22B4",triangleq:"\u225C",triangleright:"\u25B9",trianglerighteq:"\u22B5",tridot:"\u25EC",trie:"\u225C",triminus:"\u2A3A",TripleDot:"\u20DB",triplus:"\u2A39",trisb:"\u29CD",tritime:"\u2A3B",trpezium:"\u23E2",Tscr:"\u{1D4AF}",tscr:"\u{1D4C9}",TScy:"\u0426",tscy:"\u0446",TSHcy:"\u040B",tshcy:"\u045B",Tstrok:"\u0166",tstrok:"\u0167",twixt:"\u226C",twoheadleftarrow:"\u219E",twoheadrightarrow:"\u21A0",Uacute:"\xDA",uacute:"\xFA",uarr:"\u2191",Uarr:"\u219F",uArr:"\u21D1",Uarrocir:"\u2949",Ubrcy:"\u040E",ubrcy:"\u045E",Ubreve:"\u016C",ubreve:"\u016D",Ucirc:"\xDB",ucirc:"\xFB",Ucy:"\u0423",ucy:"\u0443",udarr:"\u21C5",Udblac:"\u0170",udblac:"\u0171",udhar:"\u296E",ufisht:"\u297E",Ufr:"\u{1D518}",ufr:"\u{1D532}",Ugrave:"\xD9",ugrave:"\xF9",uHar:"\u2963",uharl:"\u21BF",uharr:"\u21BE",uhblk:"\u2580",ulcorn:"\u231C",ulcorner:"\u231C",ulcrop:"\u230F",ultri:"\u25F8",Umacr:"\u016A",umacr:"\u016B",uml:"\xA8",UnderBar:"_",UnderBrace:"\u23DF",UnderBracket:"\u23B5",UnderParenthesis:"\u23DD",Union:"\u22C3",UnionPlus:"\u228E",Uogon:"\u0172",uogon:"\u0173",Uopf:"\u{1D54C}",uopf:"\u{1D566}",UpArrowBar:"\u2912",uparrow:"\u2191",UpArrow:"\u2191",Uparrow:"\u21D1",UpArrowDownArrow:"\u21C5",updownarrow:"\u2195",UpDownArrow:"\u2195",Updownarrow:"\u21D5",UpEquilibrium:"\u296E",upharpoonleft:"\u21BF",upharpoonright:"\u21BE",uplus:"\u228E",UpperLeftArrow:"\u2196",UpperRightArrow:"\u2197",upsi:"\u03C5",Upsi:"\u03D2",upsih:"\u03D2",Upsilon:"\u03A5",upsilon:"\u03C5",UpTeeArrow:"\u21A5",UpTee:"\u22A5",upuparrows:"\u21C8",urcorn:"\u231D",urcorner:"\u231D",urcrop:"\u230E",Uring:"\u016E",uring:"\u016F",urtri:"\u25F9",Uscr:"\u{1D4B0}",uscr:"\u{1D4CA}",utdot:"\u22F0",Utilde:"\u0168",utilde:"\u0169",utri:"\u25B5",utrif:"\u25B4",uuarr:"\u21C8",Uuml:"\xDC",uuml:"\xFC",uwangle:"\u29A7",vangrt:"\u299C",varepsilon:"\u03F5",varkappa:"\u03F0",varnothing:"\u2205",varphi:"\u03D5",varpi:"\u03D6",varpropto:"\u221D",varr:"\u2195",vArr:"\u21D5",varrho:"\u03F1",varsigma:"\u03C2",varsubsetneq:"\u228A\uFE00",varsubsetneqq:"\u2ACB\uFE00",varsupsetneq:"\u228B\uFE00",varsupsetneqq:"\u2ACC\uFE00",vartheta:"\u03D1",vartriangleleft:"\u22B2",vartriangleright:"\u22B3",vBar:"\u2AE8",Vbar:"\u2AEB",vBarv:"\u2AE9",Vcy:"\u0412",vcy:"\u0432",vdash:"\u22A2",vDash:"\u22A8",Vdash:"\u22A9",VDash:"\u22AB",Vdashl:"\u2AE6",veebar:"\u22BB",vee:"\u2228",Vee:"\u22C1",veeeq:"\u225A",vellip:"\u22EE",verbar:"|",Verbar:"\u2016",vert:"|",Vert:"\u2016",VerticalBar:"\u2223",VerticalLine:"|",VerticalSeparator:"\u2758",VerticalTilde:"\u2240",VeryThinSpace:"\u200A",Vfr:"\u{1D519}",vfr:"\u{1D533}",vltri:"\u22B2",vnsub:"\u2282\u20D2",vnsup:"\u2283\u20D2",Vopf:"\u{1D54D}",vopf:"\u{1D567}",vprop:"\u221D",vrtri:"\u22B3",Vscr:"\u{1D4B1}",vscr:"\u{1D4CB}",vsubnE:"\u2ACB\uFE00",vsubne:"\u228A\uFE00",vsupnE:"\u2ACC\uFE00",vsupne:"\u228B\uFE00",Vvdash:"\u22AA",vzigzag:"\u299A",Wcirc:"\u0174",wcirc:"\u0175",wedbar:"\u2A5F",wedge:"\u2227",Wedge:"\u22C0",wedgeq:"\u2259",weierp:"\u2118",Wfr:"\u{1D51A}",wfr:"\u{1D534}",Wopf:"\u{1D54E}",wopf:"\u{1D568}",wp:"\u2118",wr:"\u2240",wreath:"\u2240",Wscr:"\u{1D4B2}",wscr:"\u{1D4CC}",xcap:"\u22C2",xcirc:"\u25EF",xcup:"\u22C3",xdtri:"\u25BD",Xfr:"\u{1D51B}",xfr:"\u{1D535}",xharr:"\u27F7",xhArr:"\u27FA",Xi:"\u039E",xi:"\u03BE",xlarr:"\u27F5",xlArr:"\u27F8",xmap:"\u27FC",xnis:"\u22FB",xodot:"\u2A00",Xopf:"\u{1D54F}",xopf:"\u{1D569}",xoplus:"\u2A01",xotime:"\u2A02",xrarr:"\u27F6",xrArr:"\u27F9",Xscr:"\u{1D4B3}",xscr:"\u{1D4CD}",xsqcup:"\u2A06",xuplus:"\u2A04",xutri:"\u25B3",xvee:"\u22C1",xwedge:"\u22C0",Yacute:"\xDD",yacute:"\xFD",YAcy:"\u042F",yacy:"\u044F",Ycirc:"\u0176",ycirc:"\u0177",Ycy:"\u042B",ycy:"\u044B",yen:"\xA5",Yfr:"\u{1D51C}",yfr:"\u{1D536}",YIcy:"\u0407",yicy:"\u0457",Yopf:"\u{1D550}",yopf:"\u{1D56A}",Yscr:"\u{1D4B4}",yscr:"\u{1D4CE}",YUcy:"\u042E",yucy:"\u044E",yuml:"\xFF",Yuml:"\u0178",Zacute:"\u0179",zacute:"\u017A",Zcaron:"\u017D",zcaron:"\u017E",Zcy:"\u0417",zcy:"\u0437",Zdot:"\u017B",zdot:"\u017C",zeetrf:"\u2128",ZeroWidthSpace:"\u200B",Zeta:"\u0396",zeta:"\u03B6",zfr:"\u{1D537}",Zfr:"\u2128",ZHcy:"\u0416",zhcy:"\u0436",zigrarr:"\u21DD",zopf:"\u{1D56B}",Zopf:"\u2124",Zscr:"\u{1D4B5}",zscr:"\u{1D4CF}",zwj:"\u200D",zwnj:"\u200C"}}),fp=R((t,e)=>{e.exports={Aacute:"\xC1",aacute:"\xE1",Acirc:"\xC2",acirc:"\xE2",acute:"\xB4",AElig:"\xC6",aelig:"\xE6",Agrave:"\xC0",agrave:"\xE0",amp:"&",AMP:"&",Aring:"\xC5",aring:"\xE5",Atilde:"\xC3",atilde:"\xE3",Auml:"\xC4",auml:"\xE4",brvbar:"\xA6",Ccedil:"\xC7",ccedil:"\xE7",cedil:"\xB8",cent:"\xA2",copy:"\xA9",COPY:"\xA9",curren:"\xA4",deg:"\xB0",divide:"\xF7",Eacute:"\xC9",eacute:"\xE9",Ecirc:"\xCA",ecirc:"\xEA",Egrave:"\xC8",egrave:"\xE8",ETH:"\xD0",eth:"\xF0",Euml:"\xCB",euml:"\xEB",frac12:"\xBD",frac14:"\xBC",frac34:"\xBE",gt:">",GT:">",Iacute:"\xCD",iacute:"\xED",Icirc:"\xCE",icirc:"\xEE",iexcl:"\xA1",Igrave:"\xCC",igrave:"\xEC",iquest:"\xBF",Iuml:"\xCF",iuml:"\xEF",laquo:"\xAB",lt:"<",LT:"<",macr:"\xAF",micro:"\xB5",middot:"\xB7",nbsp:"\xA0",not:"\xAC",Ntilde:"\xD1",ntilde:"\xF1",Oacute:"\xD3",oacute:"\xF3",Ocirc:"\xD4",ocirc:"\xF4",Ograve:"\xD2",ograve:"\xF2",ordf:"\xAA",ordm:"\xBA",Oslash:"\xD8",oslash:"\xF8",Otilde:"\xD5",otilde:"\xF5",Ouml:"\xD6",ouml:"\xF6",para:"\xB6",plusmn:"\xB1",pound:"\xA3",quot:'"',QUOT:'"',raquo:"\xBB",reg:"\xAE",REG:"\xAE",sect:"\xA7",shy:"\xAD",sup1:"\xB9",sup2:"\xB2",sup3:"\xB3",szlig:"\xDF",THORN:"\xDE",thorn:"\xFE",times:"\xD7",Uacute:"\xDA",uacute:"\xFA",Ucirc:"\xDB",ucirc:"\xFB",Ugrave:"\xD9",ugrave:"\xF9",uml:"\xA8",Uuml:"\xDC",uuml:"\xFC",Yacute:"\xDD",yacute:"\xFD",yen:"\xA5",yuml:"\xFF"}}),Hi=R((t,e)=>{e.exports={amp:"&",apos:"'",gt:">",lt:"<",quot:'"'}}),dp=R((t,e)=>{e.exports={0:65533,128:8364,130:8218,131:402,132:8222,133:8230,134:8224,135:8225,136:710,137:8240,138:352,139:8249,140:338,142:381,145:8216,146:8217,147:8220,148:8221,149:8226,150:8211,151:8212,152:732,153:8482,154:353,155:8250,156:339,158:382,159:376}}),hp=R(t=>{"use strict";var e=t&&t.__importDefault||function(a){return a&&a.__esModule?a:{default:a}};Object.defineProperty(t,"__esModule",{value:!0});var r=e(dp()),n=String.fromCodePoint||function(a){var i="";return a>65535&&(a-=65536,i+=String.fromCharCode(a>>>10&1023|55296),a=56320|a&1023),i+=String.fromCharCode(a),i};function o(a){return a>=55296&&a<=57343||a>1114111?"\uFFFD":(a in r.default&&(a=r.default[a]),n(a))}c(o,"decodeCodePoint"),t.default=o}),Qa=R(t=>{"use strict";var e=t&&t.__importDefault||function(f){return f&&f.__esModule?f:{default:f}};Object.defineProperty(t,"__esModule",{value:!0}),t.decodeHTML=t.decodeHTMLStrict=t.decodeXML=void 0;var r=e(Ui()),n=e(fp()),o=e(Hi()),a=e(hp()),i=/&(?:[a-zA-Z0-9]+|#[xX][\da-fA-F]+|#\d+);/g;t.decodeXML=s(o.default),t.decodeHTMLStrict=s(r.default);function s(f){var d=l(f);return function(p){return String(p).replace(i,d)}}c(s,"getStrictDecoder");var u=c(function(f,d){return f{"use strict";var e=t&&t.__importDefault||function(y){return y&&y.__esModule?y:{default:y}};Object.defineProperty(t,"__esModule",{value:!0}),t.escapeUTF8=t.escape=t.encodeNonAsciiHTML=t.encodeHTML=t.encodeXML=void 0;var r=e(Hi()),n=u(r.default),o=l(n);t.encodeXML=m(n);var a=e(Ui()),i=u(a.default),s=l(i);t.encodeHTML=g(i,s),t.encodeNonAsciiHTML=m(i);function u(y){return Object.keys(y).sort().reduce(function(A,w){return A[y[w]]="&"+w+";",A},{})}c(u,"getInverseObj");function l(y){for(var A=[],w=[],C=0,I=Object.keys(y);C1?d(y):y.charCodeAt(0)).toString(16).toUpperCase()+";"}c(p,"singleCharReplacer");function g(y,A){return function(w){return w.replace(A,function(C){return y[C]}).replace(f,p)}}c(g,"getInverse");var h=new RegExp(o.source+"|"+f.source,"g");function v(y){return y.replace(h,p)}c(v,"escape"),t.escape=v;function b(y){return y.replace(o,p)}c(b,"escapeUTF8"),t.escapeUTF8=b;function m(y){return function(A){return A.replace(h,function(w){return y[w]||p(w)})}}c(m,"getASCIIEncoder")}),mp=R(t=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.decodeXMLStrict=t.decodeHTML5Strict=t.decodeHTML4Strict=t.decodeHTML5=t.decodeHTML4=t.decodeHTMLStrict=t.decodeHTML=t.decodeXML=t.encodeHTML5=t.encodeHTML4=t.escapeUTF8=t.escape=t.encodeNonAsciiHTML=t.encodeHTML=t.encodeXML=t.encode=t.decodeStrict=t.decode=void 0;var e=Qa(),r=Za();function n(u,l){return(!l||l<=0?e.decodeXML:e.decodeHTML)(u)}c(n,"decode"),t.decode=n;function o(u,l){return(!l||l<=0?e.decodeXML:e.decodeHTMLStrict)(u)}c(o,"decodeStrict"),t.decodeStrict=o;function a(u,l){return(!l||l<=0?r.encodeXML:r.encodeHTML)(u)}c(a,"encode"),t.encode=a;var i=Za();Object.defineProperty(t,"encodeXML",{enumerable:!0,get:c(function(){return i.encodeXML},"get")}),Object.defineProperty(t,"encodeHTML",{enumerable:!0,get:c(function(){return i.encodeHTML},"get")}),Object.defineProperty(t,"encodeNonAsciiHTML",{enumerable:!0,get:c(function(){return i.encodeNonAsciiHTML},"get")}),Object.defineProperty(t,"escape",{enumerable:!0,get:c(function(){return i.escape},"get")}),Object.defineProperty(t,"escapeUTF8",{enumerable:!0,get:c(function(){return i.escapeUTF8},"get")}),Object.defineProperty(t,"encodeHTML4",{enumerable:!0,get:c(function(){return i.encodeHTML},"get")}),Object.defineProperty(t,"encodeHTML5",{enumerable:!0,get:c(function(){return i.encodeHTML},"get")});var s=Qa();Object.defineProperty(t,"decodeXML",{enumerable:!0,get:c(function(){return s.decodeXML},"get")}),Object.defineProperty(t,"decodeHTML",{enumerable:!0,get:c(function(){return s.decodeHTML},"get")}),Object.defineProperty(t,"decodeHTMLStrict",{enumerable:!0,get:c(function(){return s.decodeHTMLStrict},"get")}),Object.defineProperty(t,"decodeHTML4",{enumerable:!0,get:c(function(){return s.decodeHTML},"get")}),Object.defineProperty(t,"decodeHTML5",{enumerable:!0,get:c(function(){return s.decodeHTML},"get")}),Object.defineProperty(t,"decodeHTML4Strict",{enumerable:!0,get:c(function(){return s.decodeHTMLStrict},"get")}),Object.defineProperty(t,"decodeHTML5Strict",{enumerable:!0,get:c(function(){return s.decodeHTMLStrict},"get")}),Object.defineProperty(t,"decodeXMLStrict",{enumerable:!0,get:c(function(){return s.decodeXML},"get")})}),yp=R((t,e)=>{"use strict";function r(_,F){if(!(_ instanceof F))throw new TypeError("Cannot call a class as a function")}c(r,"_classCallCheck");function n(_,F){for(var B=0;B=_.length?{done:!0}:{done:!1,value:_[H++]}},"n"),e:c(function(J){throw J},"e"),f:$}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}var U=!0,M=!1,V;return{s:c(function(){B=B.call(_)},"s"),n:c(function(){var J=B.next();return U=J.done,J},"n"),e:c(function(J){M=!0,V=J},"e"),f:c(function(){try{!U&&B.return!=null&&B.return()}finally{if(M)throw V}},"f")}}c(a,"_createForOfIteratorHelper");function i(_,F){if(_){if(typeof _=="string")return s(_,F);var B=Object.prototype.toString.call(_).slice(8,-1);if(B==="Object"&&_.constructor&&(B=_.constructor.name),B==="Map"||B==="Set")return Array.from(_);if(B==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(B))return s(_,F)}}c(i,"_unsupportedIterableToArray");function s(_,F){(F==null||F>_.length)&&(F=_.length);for(var B=0,H=new Array(F);B0?_*40+55:0,M=F>0?F*40+55:0,V=B>0?B*40+55:0;H[$]=g([U,M,V])}c(d,"setStyleColor");function p(_){for(var F=_.toString(16);F.length<2;)F="0"+F;return F}c(p,"toHexString");function g(_){var F=[],B=a(_),H;try{for(B.s();!(H=B.n()).done;){var $=H.value;F.push(p($))}}catch(U){B.e(U)}finally{B.f()}return"#"+F.join("")}c(g,"toColorHexString");function h(_,F,B,H){var $;return F==="text"?$=C(B,H):F==="display"?$=b(_,B,H):F==="xterm256Foreground"?$=E(_,H.colors[B]):F==="xterm256Background"?$=j(_,H.colors[B]):F==="rgb"&&($=v(_,B)),$}c(h,"generateOutput");function v(_,F){F=F.substring(2).slice(0,-1);var B=+F.substr(0,2),H=F.substring(5).split(";"),$=H.map(function(U){return("0"+Number(U).toString(16)).substr(-2)}).join("");return D(_,(B===38?"color:#":"background-color:#")+$)}c(v,"handleRgb");function b(_,F,B){F=parseInt(F,10);var H={"-1":c(function(){return"
"},"_"),0:c(function(){return _.length&&m(_)},"_"),1:c(function(){return I(_,"b")},"_"),3:c(function(){return I(_,"i")},"_"),4:c(function(){return I(_,"u")},"_"),8:c(function(){return D(_,"display:none")},"_"),9:c(function(){return I(_,"strike")},"_"),22:c(function(){return D(_,"font-weight:normal;text-decoration:none;font-style:normal")},"_"),23:c(function(){return z(_,"i")},"_"),24:c(function(){return z(_,"u")},"_"),39:c(function(){return E(_,B.fg)},"_"),49:c(function(){return j(_,B.bg)},"_"),53:c(function(){return D(_,"text-decoration:overline")},"_")},$;return H[F]?$=H[F]():4"}).join("")}c(m,"resetStyles");function y(_,F){for(var B=[],H=_;H<=F;H++)B.push(H);return B}c(y,"range");function A(_){return function(F){return(_===null||F.category!==_)&&_!=="all"}}c(A,"notCategory");function w(_){_=parseInt(_,10);var F=null;return _===0?F="all":_===1?F="bold":2<_&&_<5?F="underline":4<_&&_<7?F="blink":_===8?F="hide":_===9?F="strike":29<_&&_<38||_===39||89<_&&_<98?F="foreground-color":(39<_&&_<48||_===49||99<_&&_<108)&&(F="background-color"),F}c(w,"categoryForCode");function C(_,F){return F.escapeXML?u.encodeXML(_):_}c(C,"pushText");function I(_,F,B){return B||(B=""),_.push(F),"<".concat(F).concat(B?' style="'.concat(B,'"'):"",">")}c(I,"pushTag");function D(_,F){return I(_,"span",F)}c(D,"pushStyle");function E(_,F){return I(_,"span","color:"+F)}c(E,"pushForegroundColor");function j(_,F){return I(_,"span","background-color:"+F)}c(j,"pushBackgroundColor");function z(_,F){var B;if(_.slice(-1)[0]===F&&(B=_.pop()),B)return""}c(z,"closeTag");function q(_,F,B){var H=!1,$=3;function U(){return""}c(U,"remove");function M(W,ee){return B("xterm256Foreground",ee),""}c(M,"removeXterm256Foreground");function V(W,ee){return B("xterm256Background",ee),""}c(V,"removeXterm256Background");function J(W){return F.newline?B("display",-1):B("text",W),""}c(J,"newline");function te(W,ee){H=!0,ee.trim().length===0&&(ee="0"),ee=ee.trimRight(";").split(";");var ae=a(ee),_e;try{for(ae.s();!(_e=ae.n()).done;){var bt=_e.value;B("display",bt)}}catch(It){ae.e(It)}finally{ae.f()}return""}c(te,"ansiMess");function ue(W){return B("text",W),""}c(ue,"realText");function ne(W){return B("rgb",W),""}c(ne,"rgb");var le=[{pattern:/^\x08+/,sub:U},{pattern:/^\x1b\[[012]?K/,sub:U},{pattern:/^\x1b\[\(B/,sub:U},{pattern:/^\x1b\[[34]8;2;\d+;\d+;\d+m/,sub:ne},{pattern:/^\x1b\[38;5;(\d+)m/,sub:M},{pattern:/^\x1b\[48;5;(\d+)m/,sub:V},{pattern:/^\n/,sub:J},{pattern:/^\r+\n/,sub:J},{pattern:/^\r/,sub:J},{pattern:/^\x1b\[((?:\d{1,3};?)+|)m/,sub:te},{pattern:/^\x1b\[\d?J/,sub:U},{pattern:/^\x1b\[\d{0,3};\d{0,3}f/,sub:U},{pattern:/^\x1b\[?[\d;]{0,3}/,sub:U},{pattern:/^(([^\x1b\x08\r\n])+)/,sub:ue}];function ce(W,ee){ee>$&&H||(H=!1,_=_.replace(W.pattern,W.sub))}c(ce,"process");var ye=[],Ee=_,T=Ee.length;e:for(;T>0;){for(var K=0,Q=0,re=le.length;Q{let t;return typeof window<"u"?t=window:typeof globalThis<"u"?t=globalThis:typeof window<"u"?t=window:typeof self<"u"?t=self:t={},t})();function Wi(){let t={setHandler:c(()=>{},"setHandler"),send:c(()=>{},"send")};return new ta({transport:t})}c(Wi,"mockChannel");var Vi=class{constructor(){this.promise=new Promise(e=>{this.resolve=()=>e(this.getChannel())})}channel;promise;resolve;getChannel=c(()=>{if(!this.channel){let e=Wi();return this.setChannel(e),e}return this.channel},"getChannel");ready=c(()=>this.promise,"ready");hasChannel=c(()=>!!this.channel,"hasChannel");setChannel=c(e=>{this.channel=e,this.resolve()},"setChannel")};c(Vi,"AddonStore");var gp=Vi,gn="__STORYBOOK_ADDONS_PREVIEW";function Gi(){return Re[gn]||(Re[gn]=new gp),Re[gn]}c(Gi,"getAddonsStore");var ht=Gi(),Yi=class{hookListsMap=void 0;mountedDecorators=void 0;prevMountedDecorators=void 0;currentHooks=void 0;nextHookIndex=void 0;currentPhase=void 0;currentEffects=void 0;prevEffects=void 0;currentDecoratorName=void 0;hasUpdates=void 0;currentContext=void 0;renderListener=c(e=>{e===this.currentContext?.id&&(this.triggerEffects(),this.currentContext=null,this.removeRenderListeners())},"renderListener");constructor(){this.init()}init(){this.hookListsMap=new WeakMap,this.mountedDecorators=new Set,this.prevMountedDecorators=new Set,this.currentHooks=[],this.nextHookIndex=0,this.currentPhase="NONE",this.currentEffects=[],this.prevEffects=[],this.currentDecoratorName=null,this.hasUpdates=!1,this.currentContext=null}clean(){this.prevEffects.forEach(e=>{e.destroy&&e.destroy()}),this.init(),this.removeRenderListeners()}getNextHook(){let e=this.currentHooks[this.nextHookIndex];return this.nextHookIndex+=1,e}triggerEffects(){this.prevEffects.forEach(e=>{!this.currentEffects.includes(e)&&e.destroy&&e.destroy()}),this.currentEffects.forEach(e=>{this.prevEffects.includes(e)||(e.destroy=e.create())}),this.prevEffects=this.currentEffects,this.currentEffects=[]}addRenderListeners(){this.removeRenderListeners(),ht.getChannel().on(Zt,this.renderListener)}removeRenderListeners(){ht.getChannel().removeListener(Zt,this.renderListener)}};c(Yi,"HooksContext");var Ki=Yi;function xn(t){let e=c((...r)=>{let{hooks:n}=typeof r[0]=="function"?r[1]:r[0],o=n.currentPhase,a=n.currentHooks,i=n.nextHookIndex,s=n.currentDecoratorName;n.currentDecoratorName=t.name,n.prevMountedDecorators.has(t)?(n.currentPhase="UPDATE",n.currentHooks=n.hookListsMap.get(t)||[]):(n.currentPhase="MOUNT",n.currentHooks=[],n.hookListsMap.set(t,n.currentHooks),n.prevMountedDecorators.add(t)),n.nextHookIndex=0;let u=Re.STORYBOOK_HOOKS_CONTEXT;Re.STORYBOOK_HOOKS_CONTEXT=n;let l=t(...r);if(Re.STORYBOOK_HOOKS_CONTEXT=u,n.currentPhase==="UPDATE"&&n.getNextHook()!=null)throw new Error("Rendered fewer hooks than expected. This may be caused by an accidental early return statement.");return n.currentPhase=o,n.currentHooks=a,n.nextHookIndex=i,n.currentDecoratorName=s,l},"hookified");return e.originalFn=t,e}c(xn,"hookify");var bn=0,bp=25,vp=c(t=>(e,r)=>{let n=t(xn(e),r.map(o=>xn(o)));return o=>{let{hooks:a}=o;a.prevMountedDecorators??=new Set,a.mountedDecorators=new Set([e,...r]),a.currentContext=o,a.hasUpdates=!1;let i=n(o);for(bn=1;a.hasUpdates;)if(a.hasUpdates=!1,a.currentEffects=[],i=n(o),bn+=1,bn>bp)throw new Error("Too many re-renders. Storybook limits the number of renders to prevent an infinite loop.");return a.addRenderListeners(),i}},"applyHooks"),Ep=c((t,e)=>t.length===e.length&&t.every((r,n)=>r===e[n]),"areDepsEqual"),eo=c(()=>new Error("Storybook preview hooks can only be called inside decorators and story functions."),"invalidHooksError");function to(){return Re.STORYBOOK_HOOKS_CONTEXT||null}c(to,"getHooksContextOrNull");function Gr(){let t=to();if(t==null)throw eo();return t}c(Gr,"getHooksContextOrThrow");function Ji(t,e,r){let n=Gr();if(n.currentPhase==="MOUNT"){r!=null&&!Array.isArray(r)&&Se.warn(`${t} received a final argument that is not an array (instead, received ${r}). When specified, the final argument must be an array.`);let o={name:t,deps:r};return n.currentHooks.push(o),e(o),o}if(n.currentPhase==="UPDATE"){let o=n.getNextHook();if(o==null)throw new Error("Rendered more hooks than during the previous render.");return o.name!==t&&Se.warn(`Storybook has detected a change in the order of Hooks${n.currentDecoratorName?` called by ${n.currentDecoratorName}`:""}. This will lead to bugs and errors if not fixed.`),r!=null&&o.deps==null&&Se.warn(`${t} received a final argument during this render, but not during the previous render. Even though the final argument is optional, its type cannot change between renders.`),r!=null&&o.deps!=null&&r.length!==o.deps.length&&Se.warn(`The final argument passed to ${t} changed size between renders. The order and size of this array must remain constant. -Previous: ${o.deps} -Incoming: ${r}`),(r==null||o.deps==null||!Ep(r,o.deps))&&(e(o),o.deps=r),o}throw eo()}c(Ji,"useHook");function sr(t,e,r){let{memoizedState:n}=Ji(t,o=>{o.memoizedState=e()},r);return n}c(sr,"useMemoLike");function Sp(t,e){return sr("useMemo",t,e)}c(Sp,"useMemo");function rr(t,e){return sr("useCallback",()=>t,e)}c(rr,"useCallback");function ro(t,e){return sr(t,()=>({current:e}),[])}c(ro,"useRefLike");function Ap(t){return ro("useRef",t)}c(Ap,"useRef");function Xi(){let t=to();if(t!=null&&t.currentPhase!=="NONE")t.hasUpdates=!0;else try{ht.getChannel().emit(Cr)}catch{Se.warn("State updates of Storybook preview hooks work only in browser")}}c(Xi,"triggerUpdate");function no(t,e){let r=ro(t,typeof e=="function"?e():e),n=c(o=>{r.current=typeof o=="function"?o(r.current):o,Xi()},"setState");return[r.current,n]}c(no,"useStateLike");function wp(t){return no("useState",t)}c(wp,"useState");function xp(t,e,r){let n=r!=null?()=>r(e):e,[o,a]=no("useReducer",n);return[o,c(i=>a(s=>t(s,i)),"dispatch")]}c(xp,"useReducer");function Qi(t,e){let r=Gr(),n=sr("useEffect",()=>({create:t}),e);r.currentEffects.includes(n)||r.currentEffects.push(n)}c(Qi,"useEffect");function Cp(t,e=[]){let r=ht.getChannel();return Qi(()=>(Object.entries(t).forEach(([n,o])=>r.on(n,o)),()=>{Object.entries(t).forEach(([n,o])=>r.removeListener(n,o))}),[...Object.keys(t),...e]),rr(r.emit.bind(r),[r])}c(Cp,"useChannel");function Yr(){let{currentContext:t}=Gr();if(t==null)throw eo();return t}c(Yr,"useStoryContext");function Op(t,e){let{parameters:r}=Yr();if(t)return r[t]??e}c(Op,"useParameter");function _p(){let t=ht.getChannel(),{id:e,args:r}=Yr(),n=rr(a=>t.emit(Dr,{storyId:e,updatedArgs:a}),[t,e]),o=rr(a=>t.emit(_r,{storyId:e,argNames:a}),[t,e]);return[r,n,o]}c(_p,"useArgs");function Ip(){let t=ht.getChannel(),{globals:e}=Yr(),r=rr(n=>t.emit(Tr,{globals:n}),[t]);return[e,r]}c(Ip,"useGlobals");var o2=c(({name:t,parameterName:e,wrapper:r,skipIfNoParametersOrOptions:n=!1})=>{let o=c(a=>(i,s)=>{let u=s.parameters&&s.parameters[e];return u&&u.disable||n&&!a&&!u?i(s):r(i,s,{options:a,parameters:u})},"decorator");return(...a)=>typeof a[0]=="function"?o()(...a):(...i)=>{if(i.length>1)return a.length>1?o(a)(...i):o(...a)(...i);throw new Error(`Passing stories directly into ${t}() is not allowed, - instead use addDecorator(${t}) and pass options with the '${e}' parameter`)}},"makeDecorator"),vn=je(hi(),1),Rp=je(Vr(),1),ei=je(Lc(),1),Tp=je(hi(),1),Dp=(0,Tp.default)(1)(t=>Object.values(t).reduce((e,r)=>(e[r.importPath]=e[r.importPath]||r,e),{})),Zi=class{entries;constructor({entries:e}={v:5,entries:{}}){this.entries=e}entryFromSpecifier(e){let r=Object.values(this.entries);if(e==="*")return r[0];if(typeof e=="string")return this.entries[e]?this.entries[e]:r.find(a=>a.id.startsWith(e));let{name:n,title:o}=e;return r.find(a=>a.name===n&&a.title===o)}storyIdToEntry(e){let r=this.entries[e];if(!r)throw new Ea({storyId:e});return r}importPathToEntry(e){return Dp(this.entries)[e]}};c(Zi,"StoryIndexStore");var Fp=Zi,ti=Object.prototype.hasOwnProperty;function Cn(t,e,r){for(r of t.keys())if(Nt(r,e))return r}c(Cn,"find");function Nt(t,e){var r,n,o;if(t===e)return!0;if(t&&e&&(r=t.constructor)===e.constructor){if(r===Date)return t.getTime()===e.getTime();if(r===RegExp)return t.toString()===e.toString();if(r===Array){if((n=t.length)===e.length)for(;n--&&Nt(t[n],e[n]););return n===-1}if(r===Set){if(t.size!==e.size)return!1;for(n of t)if(o=n,o&&typeof o=="object"&&(o=Cn(e,o),!o)||!e.has(o))return!1;return!0}if(r===Map){if(t.size!==e.size)return!1;for(n of t)if(o=n[0],o&&typeof o=="object"&&(o=Cn(e,o),!o)||!Nt(n[1],e.get(o)))return!1;return!0}if(r===ArrayBuffer)t=new Uint8Array(t),e=new Uint8Array(e);else if(r===DataView){if((n=t.byteLength)===e.byteLength)for(;n--&&t.getInt8(n)===e.getInt8(n););return n===-1}if(ArrayBuffer.isView(t)){if((n=t.byteLength)===e.byteLength)for(;n--&&t[n]===e[n];);return n===-1}if(!r||typeof t=="object"){n=0;for(r in t)if(ti.call(t,r)&&++n&&!ti.call(e,r)||!(r in e)||!Nt(t[r],e[r]))return!1;return Object.keys(e).length===n}}return t!==t&&e!==e}c(Nt,"dequal");var Nr=je(Kn(),1);function qe(t){for(var e=[],r=1;r{let r=e.type;if(t==null||!r||e.mapping)return t;switch(r.name){case"string":return String(t);case"enum":return t;case"number":return Number(t);case"boolean":return String(t)==="true";case"array":return!r.value||!Array.isArray(t)?Bt:t.reduce((n,o,a)=>{let i=On(o,{type:r.value});return i!==Bt&&(n[a]=i),n},new Array(t.length));case"object":return typeof t=="string"||typeof t=="number"?t:!r.value||typeof t!="object"?Bt:Object.entries(t).reduce((n,[o,a])=>{let i=On(a,{type:r.value[o]});return i===Bt?n:Object.assign(n,{[o]:i})},{});default:return Bt}},"map"),Pp=c((t,e)=>Object.entries(t).reduce((r,[n,o])=>{if(!e[n])return r;let a=On(o,e[n]);return a===Bt?r:Object.assign(r,{[n]:a})},{}),"mapArgsToTypes"),_n=c((t,e)=>Array.isArray(t)&&Array.isArray(e)?e.reduce((r,n,o)=>(r[o]=_n(t[o],e[o]),r),[...t]).filter(r=>r!==void 0):!(0,Nr.default)(t)||!(0,Nr.default)(e)?e:Object.keys({...t,...e}).reduce((r,n)=>{if(n in e){let o=_n(t[n],e[n]);o!==void 0&&(r[n]=o)}else r[n]=t[n];return r},{}),"combineArgs"),jp=c((t,e)=>Object.entries(e).reduce((r,[n,{options:o}])=>{function a(){return n in t&&(r[n]=t[n]),r}if(c(a,"allowArg"),!o)return a();if(!Array.isArray(o))return pt.error(qe` - Invalid argType: '${n}.options' should be an array. - - More info: https://storybook.js.org/docs/react/api/argtypes - `),a();if(o.some(d=>d&&["object","function"].includes(typeof d)))return pt.error(qe` - Invalid argType: '${n}.options' should only contain primitives. Use a 'mapping' for complex values. - - More info: https://storybook.js.org/docs/react/writing-stories/args#mapping-to-complex-arg-values - `),a();let i=Array.isArray(t[n]),s=i&&t[n].findIndex(d=>!o.includes(d)),u=i&&s===-1;if(t[n]===void 0||o.includes(t[n])||u)return a();let l=i?`${n}[${s}]`:n,f=o.map(d=>typeof d=="string"?`'${d}'`:String(d)).join(", ");return pt.warn(`Received illegal value for '${l}'. Supported options: ${f}`),r},{}),"validateOptions"),er=Symbol("Deeply equal"),Mr=c((t,e)=>{if(typeof t!=typeof e)return e;if(Nt(t,e))return er;if(Array.isArray(t)&&Array.isArray(e)){let r=e.reduce((n,o,a)=>{let i=Mr(t[a],o);return i!==er&&(n[a]=i),n},new Array(e.length));return e.length>=t.length?r:r.concat(new Array(t.length-e.length).fill(void 0))}return(0,Nr.default)(t)&&(0,Nr.default)(e)?Object.keys({...t,...e}).reduce((r,n)=>{let o=Mr(t?.[n],e?.[n]);return o===er?r:Object.assign(r,{[n]:o})},{}):e},"deepDiff"),es="UNTARGETED";function ts({args:t,argTypes:e}){let r={};return Object.entries(t).forEach(([n,o])=>{let{target:a=es}=e[n]||{};r[a]=r[a]||{},r[a][n]=o}),r}c(ts,"groupArgsByTarget");function rs(t){return Object.keys(t).forEach(e=>t[e]===void 0&&delete t[e]),t}c(rs,"deleteUndefined");var ns=class{initialArgsByStoryId={};argsByStoryId={};get(e){if(!(e in this.argsByStoryId))throw new Error(`No args known for ${e} -- has it been rendered yet?`);return this.argsByStoryId[e]}setInitial(e){if(!this.initialArgsByStoryId[e.id])this.initialArgsByStoryId[e.id]=e.initialArgs,this.argsByStoryId[e.id]=e.initialArgs;else if(this.initialArgsByStoryId[e.id]!==e.initialArgs){let r=Mr(this.initialArgsByStoryId[e.id],this.argsByStoryId[e.id]);this.initialArgsByStoryId[e.id]=e.initialArgs,this.argsByStoryId[e.id]=e.initialArgs,r!==er&&this.updateFromDelta(e,r)}}updateFromDelta(e,r){let n=jp(r,e.argTypes);this.argsByStoryId[e.id]=_n(this.argsByStoryId[e.id],n)}updateFromPersisted(e,r){let n=Pp(r,e.argTypes);return this.updateFromDelta(e,n)}update(e,r){if(!(e in this.argsByStoryId))throw new Error(`No args known for ${e} -- has it been rendered yet?`);this.argsByStoryId[e]=rs({...this.argsByStoryId[e],...r})}};c(ns,"ArgsStore");var Bp=ns,os=c((t={})=>Object.entries(t).reduce((e,[r,{defaultValue:n}])=>(typeof n<"u"&&(e[r]=n),e),{}),"getValuesFromArgTypes"),as=class{allowedGlobalNames;initialGlobals;globals;constructor({globals:e={},globalTypes:r={}}){this.set({globals:e,globalTypes:r})}set({globals:e={},globalTypes:r={}}){let n=this.initialGlobals&&Mr(this.initialGlobals,this.globals);this.allowedGlobalNames=new Set([...Object.keys(e),...Object.keys(r)]);let o=os(r);this.initialGlobals={...o,...e},this.globals=this.initialGlobals,n&&n!==er&&this.updateFromPersisted(n)}filterAllowedGlobals(e){return Object.entries(e).reduce((r,[n,o])=>(this.allowedGlobalNames.has(n)?r[n]=o:Se.warn(`Attempted to set a global (${n}) that is not defined in initial globals or globalTypes`),r),{})}updateFromPersisted(e){let r=this.filterAllowedGlobals(e);this.globals={...this.globals,...r}}get(){return this.globals}update(e){this.globals={...this.globals,...this.filterAllowedGlobals(e)}}};c(as,"GlobalsStore");var kp=as,Np=je(Vr(),1),Mp=c(t=>typeof t=="string"?{name:t}:t,"normalizeType"),Lp=c(t=>typeof t=="string"?{type:t}:t,"normalizeControl"),$p=c((t,e)=>{let{type:r,control:n,...o}=t,a={name:e,...o};return r&&(a.type=Mp(r)),n?a.control=Lp(n):n===!1&&(a.control={disable:!0}),a},"normalizeInputType"),Lr=c(t=>(0,Np.default)(t,$p),"normalizeInputTypes"),Oe=c(t=>Array.isArray(t)?t:t?[t]:[],"normalizeArrays"),zp=qe` -CSF .story annotations deprecated; annotate story functions directly: -- StoryFn.story.name => StoryFn.storyName -- StoryFn.story.(parameters|decorators) => StoryFn.(parameters|decorators) -See https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#hoisted-csf-annotations for details and codemod. -`;function oo(t,e,r){let n=e,o=typeof e=="function"?e:null,{story:a}=n;a&&(Se.debug("deprecated story",a),rt(zp));let i=Ja(t),s=typeof n!="function"&&n.name||n.storyName||a?.name||i,u=[...Oe(n.decorators),...Oe(a?.decorators)],l={...a?.parameters,...n.parameters},f={...a?.args,...n.args},d={...a?.argTypes,...n.argTypes},p=[...Oe(n.loaders),...Oe(a?.loaders)],g=[...Oe(n.beforeEach),...Oe(a?.beforeEach)],{render:h,play:v,tags:b=[]}=n,m=l.__id||Ka(r.id,i);return{moduleExport:e,id:m,name:s,tags:b,decorators:u,parameters:l,args:f,argTypes:Lr(d),loaders:p,beforeEach:g,...h&&{render:h},...o&&{userStoryFn:o},...v&&{play:v}}}c(oo,"normalizeStory");function ao(t,e=t.title,r){let{id:n,argTypes:o}=t;return{id:yn(n||e),...t,title:e,...o&&{argTypes:Lr(o)},parameters:{fileName:r,...t.parameters}}}c(ao,"normalizeComponentAnnotations");var qp=c(t=>{let{globals:e,globalTypes:r}=t;(e||r)&&Se.error("Global args/argTypes can only be set globally",JSON.stringify({globals:e,globalTypes:r}))},"checkGlobals"),Up=c(t=>{let{options:e}=t;e?.storySort&&Se.error("The storySort option parameter can only be set globally")},"checkStorySort"),ri=c(t=>{t&&(qp(t),Up(t))},"checkDisallowedParameters");function is(t,e,r){let{default:n,__namedExportsOrder:o,...a}=t,i=ao(n,r,e);ri(i.parameters);let s={meta:i,stories:{},moduleExports:t};return Object.keys(a).forEach(u=>{if(Pr(u,i)){let l=oo(u,a[u],i);ri(l.parameters),s.stories[l.id]=l}}),s}c(is,"processCSFFile");var En=je(Kn(),1),wt=c((...t)=>{let e={},r=t.filter(Boolean),n=r.reduce((o,a)=>(Object.entries(a).forEach(([i,s])=>{let u=o[i];Array.isArray(s)||typeof u>"u"?o[i]=s:(0,En.default)(s)&&(0,En.default)(u)?e[i]=!0:typeof s<"u"&&(o[i]=s)}),o),{});return Object.keys(e).forEach(o=>{let a=r.filter(Boolean).map(i=>i[o]).filter(i=>typeof i<"u");a.every(i=>(0,En.default)(i))?n[o]=wt(...a):n[o]=a[a.length-1]}),n},"combineParameters");function ss(t,e,r){let n=r(t);return o=>e(n,o)}c(ss,"decorateStory");function us({componentId:t,title:e,kind:r,id:n,name:o,story:a,parameters:i,initialArgs:s,argTypes:u,...l}={}){return l}c(us,"sanitizeStoryContextUpdate");function ls(t,e){let r={},n=c(a=>i=>{if(!r.value)throw new Error("Decorated function called without init");return r.value={...r.value,...us(i)},a(r.value)},"bindWithContext"),o=e.reduce((a,i)=>ss(a,i,n),t);return a=>(r.value=a,o(a))}c(ls,"defaultDecorateStory");function cs(t){return t!=null&&ps(t).includes("mount")}c(cs,"mountDestructured");function ps(t){let e=t.toString().match(/[^(]*\(([^)]*)/);if(!e)return[];let r=In(e[1]);if(!r.length)return[];let n=r[0];return n.startsWith("{")&&n.endsWith("}")?In(n.slice(1,-1).replace(/\s/g,"")).map(o=>o.replace(/:.*|=.*/g,"")):[]}c(ps,"getUsedProps");function In(t){let e=[],r=[],n=0;for(let a=0;a{let I={};for(let D of[..."__STORYBOOK_TEST_LOADERS__"in Re&&Array.isArray(Re.__STORYBOOK_TEST_LOADERS__)?[Re.__STORYBOOK_TEST_LOADERS__]:[],Oe(r.loaders),Oe(e.loaders),Oe(t.loaders)]){if(C.abortSignal.aborted)return I;let E=await Promise.all(D.map(j=>j(C)));Object.assign(I,...E)}return I},"applyLoaders"),u=c(async C=>{let I=new Array;for(let D of[...Oe(r.beforeEach),...Oe(e.beforeEach),...Oe(t.beforeEach)]){if(C.abortSignal.aborted)return I;let E=await D(C);E&&I.push(E)}return I},"applyBeforeEach"),l=c(C=>C.originalStoryFn(C.args,C),"undecoratedStoryFn"),{applyDecorators:f=ls,runStep:d}=r,p=[...Oe(t?.decorators),...Oe(e?.decorators),...Oe(r?.decorators)],g=t?.userStoryFn||t?.render||e.render||r.render,h=vp(f)(l,p),v=c(C=>h(C),"unboundStoryFn"),b=t?.play??e?.play,m=cs(b);if(!g&&!m)throw new $a({id:o});let y=c(C=>async()=>(await C.renderToCanvas(),C.canvas),"defaultMount"),A=t.mount??e.mount??r.mount??y,w=r.testingLibraryRender;return{...i,moduleExport:n,id:o,name:a,story:a,originalStoryFn:g,undecoratedStoryFn:l,unboundStoryFn:v,applyLoaders:s,applyBeforeEach:u,playFunction:b,runStep:d,mount:A,testingLibraryRender:w,renderToCanvas:r.renderToCanvas,usesMount:m}}c(io,"prepareStory");function fs(t,e,r){return{...so(void 0,t,e),moduleExport:r}}c(fs,"prepareMeta");function so(t,e,r){let n=["dev","test"],o=Re.DOCS_OPTIONS?.autodocs===!0?["autodocs"]:[],a=Xa(...n,...o,...r.tags??[],...e.tags??[],...t?.tags??[]),i=wt(r.parameters,e.parameters,t?.parameters),{argTypesEnhancers:s=[],argsEnhancers:u=[]}=r,l=wt(r.argTypes,e.argTypes,t?.argTypes);if(t){let b=t?.userStoryFn||t?.render||e.render||r.render;i.__isArgsStory=b&&b.length>0}let f={...r.args,...e.args,...t?.args},d={componentId:e.id,title:e.title,kind:e.title,id:t?.id||e.id,name:t?.name||"__meta",story:t?.name||"__meta",component:e.component,subcomponents:e.subcomponents,tags:a,parameters:i,initialArgs:f,argTypes:l};d.argTypes=s.reduce((b,m)=>m({...d,argTypes:b}),d.argTypes);let p={...f};d.initialArgs=u.reduce((b,m)=>({...b,...m({...d,initialArgs:b})}),p);let{name:g,story:h,...v}=d;return v}c(so,"preparePartialAnnotations");function uo(t){let{args:e}=t,r={...t,allArgs:void 0,argsByTarget:void 0};if(Re.FEATURES?.argTypeTargetsV7){let a=ts(t);r={...t,allArgs:t.args,argsByTarget:a,args:a[es]||{}}}let n=Object.entries(r.args).reduce((a,[i,s])=>{if(!r.argTypes[i]?.mapping)return a[i]=s,a;let u=c(l=>{let f=r.argTypes[i].mapping;return f&&l in f?f[l]:l},"mappingFn");return a[i]=Array.isArray(s)?s.map(u):u(s),a},{}),o=Object.entries(n).reduce((a,[i,s])=>{let u=r.argTypes[i]||{};return Ya(u,n,r.globals)&&(a[i]=s),a},{});return{...r,unmappedArgs:e,args:o}}c(uo,"prepareContext");var Rn=je(Vr(),1),Tn=c((t,e,r)=>{let n=typeof t;switch(n){case"boolean":case"string":case"number":case"function":case"symbol":return{name:n};default:break}return t?r.has(t)?(Se.warn(qe` - We've detected a cycle in arg '${e}'. Args should be JSON-serializable. - - Consider using the mapping feature or fully custom args: - - Mapping: https://storybook.js.org/docs/react/writing-stories/args#mapping-to-complex-arg-values - - Custom args: https://storybook.js.org/docs/react/essentials/controls#fully-custom-args - `),{name:"other",value:"cyclic object"}):(r.add(t),Array.isArray(t)?{name:"array",value:t.length>0?Tn(t[0],e,new Set(r)):{name:"other",value:"unknown"}}:{name:"object",value:(0,Rn.default)(t,o=>Tn(o,e,new Set(r)))}):{name:"object",value:{}}},"inferType"),ds=c(t=>{let{id:e,argTypes:r={},initialArgs:n={}}=t,o=(0,Rn.default)(n,(i,s)=>({name:s,type:Tn(i,`${e}.${s}`,new Set)})),a=(0,Rn.default)(r,(i,s)=>({name:s}));return wt(o,a,r)},"inferArgTypes");ds.secondPass=!0;var Hp=je(Vr(),1),Wp=je(Wc(),1),ni=c((t,e)=>Array.isArray(e)?e.includes(t):t.match(e),"matches"),Vp=c((t,e,r)=>!e&&!r?t:t&&(0,Wp.default)(t,(n,o)=>{let a=n.name||o;return(!e||ni(a,e))&&(!r||!ni(a,r))}),"filterArgTypes"),Gp=c((t,e,r)=>{let{type:n,options:o}=t;if(n){if(r.color&&r.color.test(e)){let a=n.name;if(a==="string")return{control:{type:"color"}};a!=="enum"&&Se.warn(`Addon controls: Control of type color only supports string, received "${a}" instead`)}if(r.date&&r.date.test(e))return{control:{type:"date"}};switch(n.name){case"array":return{control:{type:"object"}};case"boolean":return{control:{type:"boolean"}};case"string":return{control:{type:"text"}};case"number":return{control:{type:"number"}};case"enum":{let{value:a}=n;return{control:{type:a?.length<=5?"radio":"select"},options:a}}case"function":case"symbol":return null;default:return{control:{type:o?"select":"object"}}}}},"inferControl"),hs=c(t=>{let{argTypes:e,parameters:{__isArgsStory:r,controls:{include:n=null,exclude:o=null,matchers:a={}}={}}}=t;if(!r)return e;let i=Vp(e,n,o),s=(0,Hp.default)(i,(u,l)=>u?.type&&Gp(u,l,a));return wt(s,i)},"inferControls");hs.secondPass=!0;function $r({argTypes:t,globalTypes:e,argTypesEnhancers:r,decorators:n,loaders:o,beforeEach:a,globals:i,initialGlobals:s,...u}){return i&&Object.keys(i).length>0&&rt(qe` - The preview.js 'globals' field is deprecated and will be removed in Storybook 9.0. - Please use 'initialGlobals' instead. Learn more: - - https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#previewjs-globals-renamed-to-initialglobals - `),{...t&&{argTypes:Lr(t)},...e&&{globalTypes:Lr(e)},decorators:Oe(n),loaders:Oe(o),beforeEach:Oe(a),argTypesEnhancers:[...r||[],ds,hs],initialGlobals:wt(s,i),...u}}c($r,"normalizeProjectAnnotations");function ms(t){return async(e,r,n)=>{await t.reduceRight((o,a)=>async()=>a(e,o,n),async()=>r(n))()}}c(ms,"composeStepRunners");var Yp=c(t=>async()=>{let e=[];for(let r of t){let n=await r();n&&e.unshift(n)}return async()=>{for(let r of e)await r()}},"composeBeforeAllHooks");function Mt(t,e){return t.map(r=>r.default?.[e]??r[e]).filter(Boolean)}c(Mt,"getField");function ft(t,e,r={}){return Mt(t,e).reduce((n,o)=>{let a=Oe(o);return r.reverseFileOrder?[...a,...n]:[...n,...a]},[])}c(ft,"getArrayField");function kt(t,e){return Object.assign({},...Mt(t,e))}c(kt,"getObjectField");function St(t,e){return Mt(t,e).pop()}c(St,"getSingletonField");function lo(t){let e=ft(t,"argTypesEnhancers"),r=Mt(t,"runStep"),n=ft(t,"beforeAll");return{parameters:wt(...Mt(t,"parameters")),decorators:ft(t,"decorators",{reverseFileOrder:!(Re.FEATURES?.legacyDecoratorFileOrder??!1)}),args:kt(t,"args"),argsEnhancers:ft(t,"argsEnhancers"),argTypes:kt(t,"argTypes"),argTypesEnhancers:[...e.filter(o=>!o.secondPass),...e.filter(o=>o.secondPass)],globals:kt(t,"globals"),initialGlobals:kt(t,"initialGlobals"),globalTypes:kt(t,"globalTypes"),loaders:ft(t,"loaders"),beforeAll:Yp(n),beforeEach:ft(t,"beforeEach"),render:St(t,"render"),renderToCanvas:St(t,"renderToCanvas"),renderToDOM:St(t,"renderToDOM"),applyDecorators:St(t,"applyDecorators"),runStep:ms(r),tags:ft(t,"tags"),mount:St(t,"mount"),testingLibraryRender:St(t,"testingLibraryRender")}}c(lo,"composeConfigs");var Dn={},Kp="ComposedStory",Jp="Unnamed Story";function ys(t){return t?"default"in t?t.default:t:{}}c(ys,"extractAnnotation");function Xp(t){let e=Array.isArray(t)?t:[t];return Dn=lo(e.map(ys)),Dn}c(Xp,"setProjectAnnotations");var dt=[];function Qp(t,e,r,n,o){if(t===void 0)throw new Error("Expected a story but received undefined.");e.title=e.title??Kp;let a=ao(e),i=o||t.storyName||t.story?.name||t.name||Jp,s=oo(i,t,a),u=$r(lo([n??{},Dn,r??{}])),l=io(s,a,u),f=os(u.globalTypes),d=c(()=>{let b=uo({hooks:new Ki,globals:{...f,...u.initialGlobals},args:{...l.initialArgs},viewMode:"story",loaded:{},abortSignal:new AbortController().signal,step:c((m,y)=>l.runStep(m,y,b),"step"),canvasElement:null,canvas:{},...l,context:null,mount:null});return b.context=b,l.renderToCanvas&&(b.renderToCanvas=async()=>{let m=await l.renderToCanvas?.({componentId:l.componentId,title:l.title,id:l.id,name:l.name,tags:l.tags,showMain:c(()=>{},"showMain"),showError:c(y=>{},"showError"),showException:c(y=>{},"showException"),forceRemount:!0,storyContext:b,storyFn:c(()=>l.unboundStoryFn(b),"storyFn"),unboundStoryFn:l.unboundStoryFn},b.canvasElement);m&&dt.push(m)}),b.mount=l.mount(b),b},"initializeContext"),p,g=c(async b=>{let m=d();return m.canvasElement??=globalThis?.document?.body,p&&(m.loaded=p.loaded),Object.assign(m,b),l.playFunction(m)},"play"),h=c(b=>{let m=d();return Object.assign(m,b),gs(l,m)},"run"),v=l.playFunction?g:void 0;return Object.assign(c(function(b){let m=d();return p&&(m.loaded=p.loaded),m.args={...m.initialArgs,...b},l.unboundStoryFn(m)},"storyFn"),{id:l.id,storyName:i,load:c(async()=>{for(let m of[...dt].reverse())await m();dt.length=0;let b=d();b.loaded=await l.applyLoaders(b),dt.push(...(await l.applyBeforeEach(b)).filter(Boolean)),p=b},"load"),args:l.initialArgs,parameters:l.parameters,argTypes:l.argTypes,play:v,run:h,tags:l.tags})}c(Qp,"composeStory");function Zp(t,e,r){let{default:n,__esModule:o,__namedExportsOrder:a,...i}=t;return Object.entries(i).reduce((s,[u,l])=>Pr(u,n)?Object.assign(s,{[u]:r(l,n,e,u)}):s,{})}c(Zp,"composeStories");function ef(t){return t.extend({mount:c(async({mount:e,page:r},n)=>{await n(async(o,...a)=>{if(!("__pw_type"in o)||"__pw_type"in o&&o.__pw_type!=="jsx")throw new Error(qe` - Portable stories in Playwright CT only work when referencing JSX elements. - Please use JSX format for your components such as: - - instead of: - await mount(MyComponent, { props: { foo: 'bar' } }) - - do: - await mount() - - More info: https://storybook.js.org/docs/api/portable-stories-playwright - `);await r.evaluate(async s=>{let u=await globalThis.__pwUnwrapObject?.(s);return("__pw_type"in u?u.type:u)?.load?.()},o);let i=await e(o,...a);return await r.evaluate(async s=>{let u=await globalThis.__pwUnwrapObject?.(s),l="__pw_type"in u?u.type:u,f=document.querySelector("#root");return l?.play?.({canvasElement:f})},o),i})},"mount")})}c(ef,"createPlaywrightTest");async function gs(t,e){for(let o of[...dt].reverse())await o();if(dt.length=0,!e.canvasElement){let o=document.createElement("div");globalThis?.document?.body?.appendChild(o),e.canvasElement=o,dt.push(()=>{globalThis?.document?.body?.contains(o)&&globalThis?.document?.body?.removeChild(o)})}if(e.loaded=await t.applyLoaders(e),e.abortSignal.aborted)return;dt.push(...(await t.applyBeforeEach(e)).filter(Boolean));let r=t.playFunction,n=t.usesMount;n||await e.mount(),!e.abortSignal.aborted&&r&&(n||(e.mount=async()=>{throw new Fr({playFunction:r.toString()})}),await r(e))}c(gs,"runStory");var oi=1e3,tf=1e4,bs=class{constructor(e,r,n){this.importFn=r,this.storyIndex=new Fp(e),this.projectAnnotations=$r(n);let{initialGlobals:o,globalTypes:a}=this.projectAnnotations;this.args=new Bp,this.globals=new kp({globals:o,globalTypes:a}),this.hooks={},this.cleanupCallbacks={},this.processCSFFileWithCache=(0,vn.default)(oi)(is),this.prepareMetaWithCache=(0,vn.default)(oi)(fs),this.prepareStoryWithCache=(0,vn.default)(tf)(io)}storyIndex;projectAnnotations;globals;args;hooks;cleanupCallbacks;cachedCSFFiles;processCSFFileWithCache;prepareMetaWithCache;prepareStoryWithCache;setProjectAnnotations(e){this.projectAnnotations=$r(e);let{initialGlobals:r,globalTypes:n}=e;this.globals.set({globals:r,globalTypes:n})}async onStoriesChanged({importFn:e,storyIndex:r}){e&&(this.importFn=e),r&&(this.storyIndex.entries=r.entries),this.cachedCSFFiles&&await this.cacheAllCSFFiles()}async storyIdToEntry(e){return this.storyIndex.storyIdToEntry(e)}async loadCSFFileByStoryId(e){let{importPath:r,title:n}=this.storyIndex.storyIdToEntry(e),o=await this.importFn(r);return this.processCSFFileWithCache(o,r,n)}async loadAllCSFFiles(){let e={};return Object.entries(this.storyIndex.entries).forEach(([r,{importPath:n}])=>{e[n]=r}),(await Promise.all(Object.entries(e).map(async([r,n])=>({importPath:r,csfFile:await this.loadCSFFileByStoryId(n)})))).reduce((r,{importPath:n,csfFile:o})=>(r[n]=o,r),{})}async cacheAllCSFFiles(){this.cachedCSFFiles=await this.loadAllCSFFiles()}preparedMetaFromCSFFile({csfFile:e}){let r=e.meta;return this.prepareMetaWithCache(r,this.projectAnnotations,e.moduleExports.default)}async loadStory({storyId:e}){let r=await this.loadCSFFileByStoryId(e);return this.storyFromCSFFile({storyId:e,csfFile:r})}storyFromCSFFile({storyId:e,csfFile:r}){let n=r.stories[e];if(!n)throw new Ba({storyId:e});let o=r.meta,a=this.prepareStoryWithCache(n,o,this.projectAnnotations);return this.args.setInitial(a),this.hooks[a.id]=this.hooks[a.id]||new Ki,a}componentStoriesFromCSFFile({csfFile:e}){return Object.keys(this.storyIndex.entries).filter(r=>!!e.stories[r]).map(r=>this.storyFromCSFFile({storyId:r,csfFile:e}))}async loadEntry(e){let r=await this.storyIdToEntry(e),n=r.type==="docs"?r.storiesImports:[],[o,...a]=await Promise.all([this.importFn(r.importPath),...n.map(i=>{let s=this.storyIndex.importPathToEntry(i);return this.loadCSFFileByStoryId(s.id)})]);return{entryExports:o,csfFiles:a}}getStoryContext(e,{forceInitialArgs:r=!1}={}){return uo({...e,args:r?e.initialArgs:this.args.get(e.id),globals:this.globals.get(),hooks:this.hooks[e.id]})}addCleanupCallbacks(e,r){this.cleanupCallbacks[e.id]=r}async cleanupStory(e){this.hooks[e.id].clean();let r=this.cleanupCallbacks[e.id];if(r)for(let n of[...r].reverse())await n();delete this.cleanupCallbacks[e.id]}extract(e={includeDocsOnly:!1}){let{cachedCSFFiles:r}=this;if(!r)throw new Aa;return Object.entries(this.storyIndex.entries).reduce((n,[o,{type:a,importPath:i}])=>{if(a==="docs")return n;let s=r[i],u=this.storyFromCSFFile({storyId:o,csfFile:s});return!e.includeDocsOnly&&u.parameters.docsOnly||(n[o]=Object.entries(u).reduce((l,[f,d])=>f==="moduleExport"||typeof d=="function"?l:Array.isArray(d)?Object.assign(l,{[f]:d.slice().sort()}):Object.assign(l,{[f]:d}),{args:u.initialArgs})),n},{})}getSetStoriesPayload(){let e=this.extract({includeDocsOnly:!0}),r=Object.values(e).reduce((n,{title:o})=>(n[o]={},n),{});return{v:2,globals:this.globals.get(),globalParameters:{},kindParameters:r,stories:e}}getStoriesJsonData=c(()=>{let e=this.getSetStoriesPayload(),r=["fileName","docsOnly","framework","__id","__isArgsStory"];return{v:3,stories:(0,Rp.default)(e.stories,n=>{let{importPath:o}=this.storyIndex.entries[n.id];return{...(0,ei.default)(n,["id","name","title"]),importPath:o,kind:n.title,story:n.name,parameters:{...(0,ei.default)(n.parameters,r),fileName:o}}})}},"getStoriesJsonData");raw(){return rt("StoryStore.raw() is deprecated and will be removed in 9.0, please use extract() instead"),Object.values(this.extract()).map(({id:e})=>this.fromId(e)).filter(Boolean)}fromId(e){if(rt("StoryStore.fromId() is deprecated and will be removed in 9.0, please use loadStory() instead"),!this.cachedCSFFiles)throw new Error("Cannot call fromId/raw() unless you call cacheAllCSFFiles() first.");let r;try{({importPath:r}=this.storyIndex.storyIdToEntry(e))}catch{return null}let n=this.cachedCSFFiles[r],o=this.storyFromCSFFile({storyId:e,csfFile:n});return{...o,storyFn:c(a=>{let i={...this.getStoryContext(o),abortSignal:new AbortController().signal,canvasElement:null,loaded:{},step:c((s,u)=>o.runStep(s,u,i),"step"),context:null,mount:null,canvas:{},viewMode:"story"};return o.unboundStoryFn({...i,...a})},"storyFn")}}};c(bs,"StoryStore");var rf=bs;function vs(t){return t.startsWith("\\\\?\\")?t:t.replace(/\\/g,"/")}c(vs,"slash");var nf=c(t=>{if(t.length===0)return t;let e=t[t.length-1],r=e?.replace(/(?:[.](?:story|stories))?([.][^.]+)$/i,"");if(t.length===1)return[r];let n=t[t.length-2];return r&&n&&r.toLowerCase()===n.toLowerCase()?[...t.slice(0,-2),r]:r&&(/^(story|stories)([.][^.]+)$/i.test(e)||/^index$/i.test(r))?t.slice(0,-1):[...t.slice(0,-1),r]},"sanitize");function Fn(t){return t.flatMap(e=>e.split("/")).filter(Boolean).join("/")}c(Fn,"pathJoin");var of=c((t,e,r)=>{let{directory:n,importPathMatcher:o,titlePrefix:a=""}=e||{};typeof t=="number"&&pt.warn(qe` - CSF Auto-title received a numeric fileName. This typically happens when - webpack is mis-configured in production mode. To force webpack to produce - filenames, set optimization.moduleIds = "named" in your webpack config. - `);let i=vs(String(t));if(o.exec(i)){if(!r){let s=i.replace(n,""),u=Fn([a,s]).split("/");return u=nf(u),u.join("/")}return a?Fn([a,r]):r}},"userOrAutoTitleFromSpecifier"),_2=c((t,e,r)=>{for(let n=0;n(e,r)=>{if(e.title===r.title&&!t.includeNames)return 0;let n=t.method||"configure",o=t.order||[],a=e.title.trim().split(ai),i=r.title.trim().split(ai);t.includeNames&&(a.push(e.name),i.push(r.name));let s=0;for(;a[s]||i[s];){if(!a[s])return-1;if(!i[s])return 1;let u=a[s],l=i[s];if(u!==l){let d=o.indexOf(u),p=o.indexOf(l),g=o.indexOf("*");return d!==-1||p!==-1?(d===-1&&(g!==-1?d=g:d=o.length),p===-1&&(g!==-1?p=g:p=o.length),d-p):n==="configure"?0:u.localeCompare(l,t.locales?t.locales:void 0,{numeric:!0,sensitivity:"accent"})}let f=o.indexOf(u);f===-1&&(f=o.indexOf("*")),o=f!==-1&&Array.isArray(o[f+1])?o[f+1]:[],s+=1}return 0},"storySort"),sf=c((t,e,r)=>{if(e){let n;typeof e=="function"?n=e:n=af(e),t.sort(n)}else t.sort((n,o)=>r.indexOf(n.importPath)-r.indexOf(o.importPath));return t},"sortStoriesCommon"),I2=c((t,e,r)=>{try{return sf(t,e,r)}catch(n){throw new Error(qe` - Error sorting stories with sort parameter ${e}: - - > ${n.message} - - Are you using a V6-style sort function in V7 mode? - - More info: https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#v7-style-story-sort - `)}},"sortStoriesV7"),Kr=new Error("prepareAborted"),{AbortController:ii}=globalThis;function Pn(t){try{let{name:e="Error",message:r=String(t),stack:n}=t;return{name:e,message:r,stack:n}}catch{return{name:"Error",message:String(t)}}}c(Pn,"serializeError");var Es=class{constructor(e,r,n,o,a,i,s={autoplay:!0,forceInitialArgs:!1},u){this.channel=e,this.store=r,this.renderToScreen=n,this.callbacks=o,this.id=a,this.viewMode=i,this.renderOptions=s,this.abortController=new ii,u&&(this.story=u,this.phase="preparing")}type="story";story;phase;abortController;canvasElement;notYetRendered=!0;rerenderEnqueued=!1;disableKeyListeners=!1;teardownRender=c(()=>{},"teardownRender");torndown=!1;async runPhase(e,r,n){this.phase=r,this.channel.emit(nt,{newPhase:this.phase,storyId:this.id}),n&&(await n(),this.checkIfAborted(e))}checkIfAborted(e){return e.aborted?(this.phase="aborted",this.channel.emit(nt,{newPhase:this.phase,storyId:this.id}),!0):!1}async prepare(){if(await this.runPhase(this.abortController.signal,"preparing",async()=>{this.story=await this.store.loadStory({storyId:this.id})}),this.abortController.signal.aborted)throw await this.store.cleanupStory(this.story),Kr}isEqual(e){return!!(this.id===e.id&&this.story&&this.story===e.story)}isPreparing(){return["preparing"].includes(this.phase)}isPending(){return["loading","beforeEach","rendering","playing"].includes(this.phase)}async renderToElement(e){return this.canvasElement=e,this.render({initial:!0,forceRemount:!0})}storyContext(){if(!this.story)throw new Error("Cannot call storyContext before preparing");let{forceInitialArgs:e}=this.renderOptions;return this.store.getStoryContext(this.story,{forceInitialArgs:e})}async render({initial:e=!1,forceRemount:r=!1}={}){let{canvasElement:n}=this;if(!this.story)throw new Error("cannot render when not prepared");let o=this.story;if(!n)throw new Error("cannot render when canvasElement is unset");let{id:a,componentId:i,title:s,name:u,tags:l,applyLoaders:f,applyBeforeEach:d,unboundStoryFn:p,playFunction:g,runStep:h}=o;r&&!e&&(this.cancelRender(),this.abortController=new ii);let v=this.abortController.signal,b=!1,m=o.usesMount;try{let y={...this.storyContext(),viewMode:this.viewMode,abortSignal:v,canvasElement:n,loaded:{},step:c((E,j)=>h(E,j,y),"step"),context:null,canvas:{},renderToCanvas:c(async()=>{let E=await this.renderToScreen(A,n);this.teardownRender=E||(()=>{}),b=!0},"renderToCanvas"),mount:c(async(...E)=>{this.callbacks.showStoryDuringRender?.();let j=null;return await this.runPhase(v,"rendering",async()=>{j=await o.mount(y)(...E)}),m&&await this.runPhase(v,"playing"),j},"mount")};y.context=y;let A={componentId:i,title:s,kind:s,id:a,name:u,story:u,tags:l,...this.callbacks,showError:c(E=>(this.phase="errored",this.callbacks.showError(E)),"showError"),showException:c(E=>(this.phase="errored",this.callbacks.showException(E)),"showException"),forceRemount:r||this.notYetRendered,storyContext:y,storyFn:c(()=>p(y),"storyFn"),unboundStoryFn:p};if(await this.runPhase(v,"loading",async()=>{y.loaded=await f(y)}),v.aborted)return;let w=await d(y);if(this.store.addCleanupCallbacks(o,w),this.checkIfAborted(v)||(!b&&!m&&await y.mount(),this.notYetRendered=!1,v.aborted))return;let C=this.story.parameters?.test?.dangerouslyIgnoreUnhandledErrors===!0,I=new Set,D=c(E=>I.add("error"in E?E.error:E.reason),"onError");if(this.renderOptions.autoplay&&r&&g&&this.phase!=="errored"){window.addEventListener("error",D),window.addEventListener("unhandledrejection",D),this.disableKeyListeners=!0;try{if(m?await g(y):(y.mount=async()=>{throw new Fr({playFunction:g.toString()})},await this.runPhase(v,"playing",async()=>g(y))),!b)throw new qa;this.checkIfAborted(v),!C&&I.size>0?await this.runPhase(v,"errored"):await this.runPhase(v,"played")}catch(E){if(this.callbacks.showStoryDuringRender?.(),await this.runPhase(v,"errored",async()=>{this.channel.emit(Or,Pn(E))}),this.story.parameters.throwPlayFunctionExceptions!==!1)throw E;console.error(E)}if(!C&&I.size>0&&this.channel.emit(Rr,Array.from(I).map(Pn)),this.disableKeyListeners=!1,window.removeEventListener("unhandledrejection",D),window.removeEventListener("error",D),v.aborted)return}await this.runPhase(v,"completed",async()=>this.channel.emit(Zt,a))}catch(y){this.phase="errored",this.callbacks.showException(y)}this.rerenderEnqueued&&(this.rerenderEnqueued=!1,this.render())}async rerender(){if(this.isPending()&&this.phase!=="playing")this.rerenderEnqueued=!0;else return this.render()}async remount(){return await this.teardown(),this.render({forceRemount:!0})}cancelRender(){this.abortController?.abort()}async teardown(){this.torndown=!0,this.cancelRender(),this.story&&await this.store.cleanupStory(this.story);for(let e=0;e<3;e+=1){if(!this.isPending()){await this.teardownRender();return}await new Promise(r=>setTimeout(r,0))}window.location.reload(),await new Promise(()=>{})}};c(Es,"StoryRender");var Ss=Es,{fetch:uf}=Re,lf="./index.json",As=class{constructor(e,r,n=ht.getChannel(),o=!0){this.importFn=e,this.getProjectAnnotations=r,this.channel=n,this.storeInitializationPromise=new Promise((a,i)=>{this.resolveStoreInitializationPromise=a,this.rejectStoreInitializationPromise=i}),o&&this.initialize()}serverChannel;storyStoreValue;renderToCanvas;storyRenders=[];previewEntryError;projectAnnotationsBeforeInitialization;beforeAllCleanup;storeInitializationPromise;resolveStoreInitializationPromise;rejectStoreInitializationPromise;get storyStore(){return new Proxy({},{get:c((e,r)=>{if(this.storyStoreValue)return rt("Accessing the Story Store is deprecated and will be removed in 9.0"),this.storyStoreValue[r];throw new Na},"get")})}async initialize(){this.setupListeners();try{let e=await this.getProjectAnnotationsOrRenderError();await this.runBeforeAllHook(e),await this.initializeWithProjectAnnotations(e)}catch(e){this.rejectStoreInitializationPromise(e)}}ready(){return this.storeInitializationPromise}setupListeners(){this.channel.on(fa,this.onStoryIndexChanged.bind(this)),this.channel.on(Tr,this.onUpdateGlobals.bind(this)),this.channel.on(Dr,this.onUpdateArgs.bind(this)),this.channel.on(ra,this.onRequestArgTypesInfo.bind(this)),this.channel.on(_r,this.onResetArgs.bind(this)),this.channel.on(Cr,this.onForceReRender.bind(this)),this.channel.on(Qt,this.onForceRemount.bind(this))}async getProjectAnnotationsOrRenderError(){try{let e=await this.getProjectAnnotations();if(this.renderToCanvas=e.renderToCanvas,!this.renderToCanvas)throw new xa;return e}catch(e){throw this.renderPreviewEntryError("Error reading preview.js:",e),e}}async initializeWithProjectAnnotations(e){this.projectAnnotationsBeforeInitialization=e;try{let r=await this.getStoryIndexFromServer();return this.initializeWithStoryIndex(r)}catch(r){throw this.renderPreviewEntryError("Error loading story index:",r),r}}async runBeforeAllHook(e){try{await this.beforeAllCleanup?.(),this.beforeAllCleanup=await e.beforeAll?.()}catch(r){throw this.renderPreviewEntryError("Error in beforeAll hook:",r),r}}async getStoryIndexFromServer(){let e=await uf(lf);if(e.status===200)return e.json();throw new _a({text:await e.text()})}initializeWithStoryIndex(e){if(!this.projectAnnotationsBeforeInitialization)throw new Error("Cannot call initializeWithStoryIndex until project annotations resolve");this.storyStoreValue=new rf(e,this.importFn,this.projectAnnotationsBeforeInitialization),delete this.projectAnnotationsBeforeInitialization,this.setInitialGlobals(),this.resolveStoreInitializationPromise()}async setInitialGlobals(){this.emitGlobals()}emitGlobals(){if(!this.storyStoreValue)throw new Ne({methodName:"emitGlobals"});let e={globals:this.storyStoreValue.globals.get()||{},globalTypes:this.storyStoreValue.projectAnnotations.globalTypes||{}};this.channel.emit(ua,e)}async onGetProjectAnnotationsChanged({getProjectAnnotations:e}){delete this.previewEntryError,this.getProjectAnnotations=e;let r=await this.getProjectAnnotationsOrRenderError();if(await this.runBeforeAllHook(r),!this.storyStoreValue){await this.initializeWithProjectAnnotations(r);return}this.storyStoreValue.setProjectAnnotations(r),this.emitGlobals()}async onStoryIndexChanged(){if(delete this.previewEntryError,!(!this.storyStoreValue&&!this.projectAnnotationsBeforeInitialization))try{let e=await this.getStoryIndexFromServer();if(this.projectAnnotationsBeforeInitialization){this.initializeWithStoryIndex(e);return}await this.onStoriesChanged({storyIndex:e})}catch(e){throw this.renderPreviewEntryError("Error loading story index:",e),e}}async onStoriesChanged({importFn:e,storyIndex:r}){if(!this.storyStoreValue)throw new Ne({methodName:"onStoriesChanged"});await this.storyStoreValue.onStoriesChanged({importFn:e,storyIndex:r})}async onUpdateGlobals({globals:e}){if(!this.storyStoreValue)throw new Ne({methodName:"onUpdateGlobals"});this.storyStoreValue.globals.update(e),await Promise.all(this.storyRenders.map(r=>r.rerender())),this.channel.emit(aa,{globals:this.storyStoreValue.globals.get(),initialGlobals:this.storyStoreValue.globals.initialGlobals})}async onUpdateArgs({storyId:e,updatedArgs:r}){if(!this.storyStoreValue)throw new Ne({methodName:"onUpdateArgs"});this.storyStoreValue.args.update(e,r),await Promise.all(this.storyRenders.filter(n=>n.id===e&&!n.renderOptions.forceInitialArgs).map(n=>n.story&&n.story.usesMount?n.remount():n.rerender())),this.channel.emit(la,{storyId:e,args:this.storyStoreValue.args.get(e)})}async onRequestArgTypesInfo({id:e,payload:r}){try{await this.storeInitializationPromise;let n=await this.storyStoreValue?.loadStory(r);this.channel.emit(pn,{id:e,success:!0,payload:{argTypes:n?.argTypes||{}},error:null})}catch(n){this.channel.emit(pn,{id:e,success:!1,error:n?.message})}}async onResetArgs({storyId:e,argNames:r}){if(!this.storyStoreValue)throw new Ne({methodName:"onResetArgs"});let n=this.storyRenders.find(a=>a.id===e)?.story||await this.storyStoreValue.loadStory({storyId:e}),o=(r||[...new Set([...Object.keys(n.initialArgs),...Object.keys(this.storyStoreValue.args.get(e))])]).reduce((a,i)=>(a[i]=n.initialArgs[i],a),{});await this.onUpdateArgs({storyId:e,updatedArgs:o})}async onForceReRender(){await Promise.all(this.storyRenders.map(e=>e.rerender()))}async onForceRemount({storyId:e}){await Promise.all(this.storyRenders.filter(r=>r.id===e).map(r=>r.remount()))}renderStoryToElement(e,r,n,o){if(!this.renderToCanvas||!this.storyStoreValue)throw new Ne({methodName:"renderStoryToElement"});let a=new Ss(this.channel,this.storyStoreValue,this.renderToCanvas,n,e.id,"docs",o,e);return a.renderToElement(r),this.storyRenders.push(a),async()=>{await this.teardownRender(a)}}async teardownRender(e,{viewModeChanged:r}={}){this.storyRenders=this.storyRenders.filter(n=>n!==e),await e?.teardown?.({viewModeChanged:r})}async loadStory({storyId:e}){if(!this.storyStoreValue)throw new Ne({methodName:"loadStory"});return this.storyStoreValue.loadStory({storyId:e})}getStoryContext(e,{forceInitialArgs:r=!1}={}){if(!this.storyStoreValue)throw new Ne({methodName:"getStoryContext"});return this.storyStoreValue.getStoryContext(e,{forceInitialArgs:r})}async extract(e){if(!this.storyStoreValue)throw new Ne({methodName:"extract"});if(this.previewEntryError)throw this.previewEntryError;return await this.storyStoreValue.cacheAllCSFFiles(),this.storyStoreValue.extract(e)}renderPreviewEntryError(e,r){this.previewEntryError=r,Se.error(e),Se.error(r),this.channel.emit(na,r)}};c(As,"Preview");var cf=As,pf=!1,Sn="Invariant failed";function Br(t,e){if(!t){if(pf)throw new Error(Sn);var r=typeof e=="function"?e():e,n=r?"".concat(Sn,": ").concat(r):Sn;throw new Error(n)}}c(Br,"invariant");var ws=class{constructor(e,r,n,o){this.channel=e,this.store=r,this.renderStoryToElement=n,this.componentStoriesValue=[],this.storyIdToCSFFile=new Map,this.exportToStory=new Map,this.exportsToCSFFile=new Map,this.nameToStoryId=new Map,this.attachedCSFFiles=new Set,o.forEach((a,i)=>{this.referenceCSFFile(a)})}componentStoriesValue;storyIdToCSFFile;exportToStory;exportsToCSFFile;nameToStoryId;attachedCSFFiles;primaryStory;referenceCSFFile(e){this.exportsToCSFFile.set(e.moduleExports,e),this.exportsToCSFFile.set(e.moduleExports.default,e),this.store.componentStoriesFromCSFFile({csfFile:e}).forEach(r=>{let n=e.stories[r.id];this.storyIdToCSFFile.set(n.id,e),this.exportToStory.set(n.moduleExport,r)})}attachCSFFile(e){if(!this.exportsToCSFFile.has(e.moduleExports))throw new Error("Cannot attach a CSF file that has not been referenced");this.attachedCSFFiles.has(e)||(this.attachedCSFFiles.add(e),this.store.componentStoriesFromCSFFile({csfFile:e}).forEach(r=>{this.nameToStoryId.set(r.name,r.id),this.componentStoriesValue.push(r),this.primaryStory||(this.primaryStory=r)}))}referenceMeta(e,r){let n=this.resolveModuleExport(e);if(n.type!=="meta")throw new Error(" must reference a CSF file module export or meta export. Did you mistakenly reference your component instead of your CSF file?");r&&this.attachCSFFile(n.csfFile)}get projectAnnotations(){let{projectAnnotations:e}=this.store;if(!e)throw new Error("Can't get projectAnnotations from DocsContext before they are initialized");return e}resolveAttachedModuleExportType(e){if(e==="story"){if(!this.primaryStory)throw new Error("No primary story attached to this docs file, did you forget to use ?");return{type:"story",story:this.primaryStory}}if(this.attachedCSFFiles.size===0)throw new Error("No CSF file attached to this docs file, did you forget to use ?");let r=Array.from(this.attachedCSFFiles)[0];if(e==="meta")return{type:"meta",csfFile:r};let{component:n}=r.meta;if(!n)throw new Error("Attached CSF file does not defined a component, did you forget to export one?");return{type:"component",component:n}}resolveModuleExport(e){let r=this.exportsToCSFFile.get(e);if(r)return{type:"meta",csfFile:r};let n=this.exportToStory.get(e);return n?{type:"story",story:n}:{type:"component",component:e}}resolveOf(e,r=[]){let n;if(["component","meta","story"].includes(e)){let o=e;n=this.resolveAttachedModuleExportType(o)}else n=this.resolveModuleExport(e);if(r.length&&!r.includes(n.type)){let o=n.type==="component"?"component or unknown":n.type;throw new Error(qe`Invalid value passed to the 'of' prop. The value was resolved to a '${o}' type but the only types for this block are: ${r.join(", ")}. - - Did you pass a component to the 'of' prop when the block only supports a story or a meta? - - ... or vice versa? - - Did you pass a story, CSF file or meta to the 'of' prop that is not indexed, ie. is not targeted by the 'stories' globs in the main configuration?`)}switch(n.type){case"component":return{...n,projectAnnotations:this.projectAnnotations};case"meta":return{...n,preparedMeta:this.store.preparedMetaFromCSFFile({csfFile:n.csfFile})};case"story":default:return n}}storyIdByName=c(e=>{let r=this.nameToStoryId.get(e);if(r)return r;throw new Error(`No story found with that name: ${e}`)},"storyIdByName");componentStories=c(()=>this.componentStoriesValue,"componentStories");componentStoriesFromCSFFile=c(e=>this.store.componentStoriesFromCSFFile({csfFile:e}),"componentStoriesFromCSFFile");storyById=c(e=>{if(!e){if(!this.primaryStory)throw new Error("No primary story defined for docs entry. Did you forget to use ``?");return this.primaryStory}let r=this.storyIdToCSFFile.get(e);if(!r)throw new Error(`Called \`storyById\` for story that was never loaded: ${e}`);return this.store.storyFromCSFFile({storyId:e,csfFile:r})},"storyById");getStoryContext=c(e=>({...this.store.getStoryContext(e),loaded:{},viewMode:"docs"}),"getStoryContext");loadStory=c(e=>this.store.loadStory({storyId:e}),"loadStory")};c(ws,"DocsContext");var xs=ws,Cs=class{constructor(e,r,n,o){this.channel=e,this.store=r,this.entry=n,this.callbacks=o,this.id=n.id}type="docs";subtype="csf";id;story;rerender;teardownRender;torndown=!1;disableKeyListeners=!1;preparing=!1;csfFiles;isPreparing(){return this.preparing}async prepare(){this.preparing=!0;let{entryExports:e,csfFiles:r=[]}=await this.store.loadEntry(this.id);if(this.torndown)throw Kr;let{importPath:n,title:o}=this.entry,a=this.store.processCSFFileWithCache(e,n,o),i=Object.keys(a.stories)[0];this.story=this.store.storyFromCSFFile({storyId:i,csfFile:a}),this.csfFiles=[a,...r],this.preparing=!1}isEqual(e){return!!(this.id===e.id&&this.story&&this.story===e.story)}docsContext(e){if(!this.csfFiles)throw new Error("Cannot render docs before preparing");let r=new xs(this.channel,this.store,e,this.csfFiles);return this.csfFiles.forEach(n=>r.attachCSFFile(n)),r}async renderToElement(e,r){if(!this.story||!this.csfFiles)throw new Error("Cannot render docs before preparing");let n=this.docsContext(r),{docs:o}=this.story.parameters||{};if(!o)throw new Error("Cannot render a story in viewMode=docs if `@storybook/addon-docs` is not installed");let a=await o.renderer(),{render:i}=a,s=c(async()=>{try{await i(n,o,e),this.channel.emit(xr,this.id)}catch(u){this.callbacks.showException(u)}},"renderDocs");return this.rerender=async()=>s(),this.teardownRender=async({viewModeChanged:u})=>{!u||!e||a.unmount(e)},s()}async teardown({viewModeChanged:e}={}){this.teardownRender?.({viewModeChanged:e}),this.torndown=!0}};c(Cs,"CsfDocsRender");var si=Cs,Os=class{constructor(e,r,n,o){this.channel=e,this.store=r,this.entry=n,this.callbacks=o,this.id=n.id}type="docs";subtype="mdx";id;exports;rerender;teardownRender;torndown=!1;disableKeyListeners=!1;preparing=!1;csfFiles;isPreparing(){return this.preparing}async prepare(){this.preparing=!0;let{entryExports:e,csfFiles:r=[]}=await this.store.loadEntry(this.id);if(this.torndown)throw Kr;this.csfFiles=r,this.exports=e,this.preparing=!1}isEqual(e){return!!(this.id===e.id&&this.exports&&this.exports===e.exports)}docsContext(e){if(!this.csfFiles)throw new Error("Cannot render docs before preparing");return new xs(this.channel,this.store,e,this.csfFiles)}async renderToElement(e,r){if(!this.exports||!this.csfFiles||!this.store.projectAnnotations)throw new Error("Cannot render docs before preparing");let n=this.docsContext(r),{docs:o}=this.store.projectAnnotations.parameters||{};if(!o)throw new Error("Cannot render a story in viewMode=docs if `@storybook/addon-docs` is not installed");let a={...o,page:this.exports.default},i=await o.renderer(),{render:s}=i,u=c(async()=>{try{await s(n,a,e),this.channel.emit(xr,this.id)}catch(l){this.callbacks.showException(l)}},"renderDocs");return this.rerender=async()=>u(),this.teardownRender=async({viewModeChanged:l}={})=>{!l||!e||(i.unmount(e),this.torndown=!0)},u()}async teardown({viewModeChanged:e}={}){this.teardownRender?.({viewModeChanged:e}),this.torndown=!0}};c(Os,"MdxDocsRender");var ui=Os,ff=globalThis;function _s(t){let e=t.composedPath&&t.composedPath()[0]||t.target;return/input|textarea/i.test(e.tagName)||e.getAttribute("contenteditable")!==null}c(_s,"focusInInput");var Is="attached-mdx",df="unattached-mdx";function Rs({tags:t}){return t?.includes(df)||t?.includes(Is)}c(Rs,"isMdxEntry");function kr(t){return t.type==="story"}c(kr,"isStoryRender");function Ts(t){return t.type==="docs"}c(Ts,"isDocsRender");function Ds(t){return Ts(t)&&t.subtype==="csf"}c(Ds,"isCsfDocsRender");var Fs=class extends cf{constructor(e,r,n,o){super(e,r,void 0,!1),this.importFn=e,this.getProjectAnnotations=r,this.selectionStore=n,this.view=o,this.initialize()}currentSelection;currentRender;setupListeners(){super.setupListeners(),ff.onkeydown=this.onKeydown.bind(this),this.channel.on(dn,this.onSetCurrentStory.bind(this)),this.channel.on(ya,this.onUpdateQueryParams.bind(this)),this.channel.on(ia,this.onPreloadStories.bind(this))}async setInitialGlobals(){if(!this.storyStoreValue)throw new Ne({methodName:"setInitialGlobals"});let{globals:e}=this.selectionStore.selectionSpecifier||{};e&&this.storyStoreValue.globals.updateFromPersisted(e),this.emitGlobals()}async initializeWithStoryIndex(e){return await super.initializeWithStoryIndex(e),this.selectSpecifiedStory()}async selectSpecifiedStory(){if(!this.storyStoreValue)throw new Ne({methodName:"selectSpecifiedStory"});if(this.selectionStore.selection){await this.renderSelection();return}if(!this.selectionStore.selectionSpecifier){this.renderMissingStory();return}let{storySpecifier:e,args:r}=this.selectionStore.selectionSpecifier,n=this.storyStoreValue.storyIndex.entryFromSpecifier(e);if(!n){e==="*"?this.renderStoryLoadingException(e,new Da):this.renderStoryLoadingException(e,new Pa({storySpecifier:e.toString()}));return}let{id:o,type:a}=n;this.selectionStore.setSelection({storyId:o,viewMode:a}),this.channel.emit(ha,this.selectionStore.selection),this.channel.emit(fn,this.selectionStore.selection),await this.renderSelection({persistedArgs:r})}async onGetProjectAnnotationsChanged({getProjectAnnotations:e}){await super.onGetProjectAnnotationsChanged({getProjectAnnotations:e}),this.selectionStore.selection&&this.renderSelection()}async onStoriesChanged({importFn:e,storyIndex:r}){await super.onStoriesChanged({importFn:e,storyIndex:r}),this.selectionStore.selection?await this.renderSelection():await this.selectSpecifiedStory()}onKeydown(e){if(!this.storyRenders.find(r=>r.disableKeyListeners)&&!_s(e)){let{altKey:r,ctrlKey:n,metaKey:o,shiftKey:a,key:i,code:s,keyCode:u}=e;this.channel.emit(sa,{event:{altKey:r,ctrlKey:n,metaKey:o,shiftKey:a,key:i,code:s,keyCode:u}})}}async onSetCurrentStory(e){this.selectionStore.setSelection({viewMode:"story",...e}),await this.storeInitializationPromise,this.channel.emit(fn,this.selectionStore.selection),this.renderSelection()}onUpdateQueryParams(e){this.selectionStore.setQueryParams(e)}async onUpdateGlobals({globals:e}){super.onUpdateGlobals({globals:e}),(this.currentRender instanceof ui||this.currentRender instanceof si)&&await this.currentRender.rerender?.()}async onUpdateArgs({storyId:e,updatedArgs:r}){super.onUpdateArgs({storyId:e,updatedArgs:r})}async onPreloadStories({ids:e}){await this.storeInitializationPromise,this.storyStoreValue&&await Promise.allSettled(e.map(r=>this.storyStoreValue?.loadEntry(r)))}async renderSelection({persistedArgs:e}={}){let{renderToCanvas:r}=this;if(!this.storyStoreValue||!r)throw new Ne({methodName:"renderSelection"});let{selection:n}=this.selectionStore;if(!n)throw new Error("Cannot call renderSelection as no selection was made");let{storyId:o}=n,a;try{a=await this.storyStoreValue.storyIdToEntry(o)}catch(p){this.currentRender&&await this.teardownRender(this.currentRender),this.renderStoryLoadingException(o,p);return}let i=this.currentSelection?.storyId!==o,s=this.currentRender?.type!==a.type;a.type==="story"?this.view.showPreparingStory({immediate:s}):this.view.showPreparingDocs({immediate:s}),this.currentRender?.isPreparing()&&await this.teardownRender(this.currentRender);let u;a.type==="story"?u=new Ss(this.channel,this.storyStoreValue,r,this.mainStoryCallbacks(o),o,"story"):Rs(a)?u=new ui(this.channel,this.storyStoreValue,a,this.mainStoryCallbacks(o)):u=new si(this.channel,this.storyStoreValue,a,this.mainStoryCallbacks(o));let l=this.currentSelection;this.currentSelection=n;let f=this.currentRender;this.currentRender=u;try{await u.prepare()}catch(p){f&&await this.teardownRender(f),p!==Kr&&this.renderStoryLoadingException(o,p);return}let d=!i&&f&&!u.isEqual(f);if(e&&kr(u)&&(Br(!!u.story),this.storyStoreValue.args.updateFromPersisted(u.story,e)),f&&!f.torndown&&!i&&!d&&!s){this.currentRender=f,this.channel.emit(ma,o),this.view.showMain();return}if(f&&await this.teardownRender(f,{viewModeChanged:s}),l&&(i||s)&&this.channel.emit(ca,o),kr(u)){Br(!!u.story);let{parameters:p,initialArgs:g,argTypes:h,unmappedArgs:v}=this.storyStoreValue.getStoryContext(u.story);this.channel.emit(da,{id:o,parameters:p,initialArgs:g,argTypes:h,args:v})}else{let{parameters:p}=this.storyStoreValue.projectAnnotations;if(Ds(u)||u.entry.tags?.includes(Is)){if(!u.csfFiles)throw new Ra({storyId:o});({parameters:p}=this.storyStoreValue.preparedMetaFromCSFFile({csfFile:u.csfFiles[0]}))}this.channel.emit(oa,{id:o,parameters:p})}kr(u)?(Br(!!u.story),this.storyRenders.push(u),this.currentRender.renderToElement(this.view.prepareForStory(u.story))):this.currentRender.renderToElement(this.view.prepareForDocs(),this.renderStoryToElement.bind(this))}async teardownRender(e,{viewModeChanged:r=!1}={}){this.storyRenders=this.storyRenders.filter(n=>n!==e),await e?.teardown?.({viewModeChanged:r})}mainStoryCallbacks(e){return{showStoryDuringRender:c(()=>this.view.showStoryDuringRender(),"showStoryDuringRender"),showMain:c(()=>this.view.showMain(),"showMain"),showError:c(r=>this.renderError(e,r),"showError"),showException:c(r=>this.renderException(e,r),"showException")}}renderPreviewEntryError(e,r){super.renderPreviewEntryError(e,r),this.view.showErrorDisplay(r)}renderMissingStory(){this.view.showNoPreview(),this.channel.emit(hn)}renderStoryLoadingException(e,r){Se.error(r),this.view.showErrorDisplay(r),this.channel.emit(hn,e)}renderException(e,r){let{name:n="Error",message:o=String(r),stack:a}=r;this.channel.emit(Ir,{name:n,message:o,stack:a}),this.channel.emit(nt,{newPhase:"errored",storyId:e}),this.view.showErrorDisplay(r),Se.error(`Error rendering story '${e}':`),Se.error(r)}renderError(e,{title:r,description:n}){Se.error(`Error rendering story ${r}: ${n}`),this.channel.emit(pa,{title:r,description:n}),this.channel.emit(nt,{newPhase:"errored",storyId:e}),this.view.showErrorDisplay({message:r,stack:n})}};c(Fs,"PreviewWithSelection");var hf=Fs,jn=je(Zn(),1),mf=je(Zn(),1),yf=je(Kn(),1),li=/^[a-zA-Z0-9 _-]*$/,Ps=/^-?[0-9]+(\.[0-9]+)?$/,gf=/^#([a-f0-9]{3,4}|[a-f0-9]{6}|[a-f0-9]{8})$/i,js=/^(rgba?|hsla?)\(([0-9]{1,3}),\s?([0-9]{1,3})%?,\s?([0-9]{1,3})%?,?\s?([0-9](\.[0-9]{1,2})?)?\)$/i,Bn=c((t="",e)=>t===null||t===""||!li.test(t)?!1:e==null||e instanceof Date||typeof e=="number"||typeof e=="boolean"?!0:typeof e=="string"?li.test(e)||Ps.test(e)||gf.test(e)||js.test(e):Array.isArray(e)?e.every(r=>Bn(t,r)):(0,yf.default)(e)?Object.entries(e).every(([r,n])=>Bn(r,n)):!1,"validateArgs"),bf={delimiter:";",allowDots:!0,allowSparse:!0,decoder(t,e,r,n){if(n==="value"&&t.startsWith("!")){if(t==="!undefined")return;if(t==="!null")return null;if(t==="!true")return!0;if(t==="!false")return!1;if(t.startsWith("!date(")&&t.endsWith(")"))return new Date(t.slice(6,-1));if(t.startsWith("!hex(")&&t.endsWith(")"))return`#${t.slice(5,-1)}`;let o=t.slice(1).match(js);if(o)return t.startsWith("!rgba")?`${o[1]}(${o[2]}, ${o[3]}, ${o[4]}, ${o[5]})`:t.startsWith("!hsla")?`${o[1]}(${o[2]}, ${o[3]}%, ${o[4]}%, ${o[5]})`:t.startsWith("!rgb")?`${o[1]}(${o[2]}, ${o[3]}, ${o[4]})`:`${o[1]}(${o[2]}, ${o[3]}%, ${o[4]}%)`}return n==="value"&&Ps.test(t)?Number(t):e(t,e,r)}},ci=c(t=>{let e=t.split(";").map(r=>r.replace("=","~").replace(":","="));return Object.entries(mf.default.parse(e.join(";"),bf)).reduce((r,[n,o])=>Bn(n,o)?Object.assign(r,{[n]:o}):(pt.warn(qe` - Omitted potentially unsafe URL args. - - More info: https://storybook.js.org/docs/react/writing-stories/args#setting-args-through-the-url - `),r),{})},"parseArgsParam"),{history:Bs,document:ot}=Re;function ks(t){let e=(t||"").match(/^\/story\/(.+)/);if(!e)throw new Error(`Invalid path '${t}', must start with '/story/'`);return e[1]}c(ks,"pathToId");var Ns=c(({selection:t,extraParams:e})=>{let r=typeof ot<"u"?ot.location.search:"",{path:n,selectedKind:o,selectedStory:a,...i}=jn.default.parse(r,{ignoreQueryPrefix:!0});return jn.default.stringify({...i,...e,...t&&{id:t.storyId,viewMode:t.viewMode}},{encode:!1,addQueryPrefix:!0})},"getQueryString"),vf=c(t=>{if(!t)return;let e=Ns({selection:t}),{hash:r=""}=ot.location;ot.title=t.storyId,Bs.replaceState({},"",`${ot.location.pathname}${e}${r}`)},"setPath"),Ef=c(t=>t!=null&&typeof t=="object"&&Array.isArray(t)===!1,"isObject"),tr=c(t=>{if(t!==void 0){if(typeof t=="string")return t;if(Array.isArray(t))return tr(t[0]);if(Ef(t))return tr(Object.values(t).filter(Boolean))}},"getFirstString"),Sf=c(()=>{if(typeof ot<"u"){let t=jn.default.parse(ot.location.search,{ignoreQueryPrefix:!0}),e=typeof t.args=="string"?ci(t.args):void 0,r=typeof t.globals=="string"?ci(t.globals):void 0,n=tr(t.viewMode);(typeof n!="string"||!n.match(/docs|story/))&&(n="story");let o=tr(t.path),a=o?ks(o):tr(t.id);if(a)return{storySpecifier:a,args:e,globals:r,viewMode:n}}return null},"getSelectionSpecifierFromPath"),Ms=class{selectionSpecifier;selection;constructor(){this.selectionSpecifier=Sf()}setSelection(e){this.selection=e,vf(this.selection)}setQueryParams(e){let r=Ns({extraParams:e}),{hash:n=""}=ot.location;Bs.replaceState({},"",`${ot.location.pathname}${r}${n}`)}};c(Ms,"UrlStore");var Af=Ms,wf=je(yp(),1),xf=je(Zn(),1),{document:De}=Re,pi=100,Ls=(t=>(t.MAIN="MAIN",t.NOPREVIEW="NOPREVIEW",t.PREPARING_STORY="PREPARING_STORY",t.PREPARING_DOCS="PREPARING_DOCS",t.ERROR="ERROR",t))(Ls||{}),An={PREPARING_STORY:"sb-show-preparing-story",PREPARING_DOCS:"sb-show-preparing-docs",MAIN:"sb-show-main",NOPREVIEW:"sb-show-nopreview",ERROR:"sb-show-errordisplay"},wn={centered:"sb-main-centered",fullscreen:"sb-main-fullscreen",padded:"sb-main-padded"},fi=new wf.default({escapeXML:!0}),$s=class{currentLayoutClass;testing=!1;preparingTimeout;constructor(){if(typeof De<"u"){let{__SPECIAL_TEST_PARAMETER__:e}=xf.default.parse(De.location.search,{ignoreQueryPrefix:!0});switch(e){case"preparing-story":{this.showPreparingStory(),this.testing=!0;break}case"preparing-docs":{this.showPreparingDocs(),this.testing=!0;break}default:}}}prepareForStory(e){return this.showStory(),this.applyLayout(e.parameters.layout),De.documentElement.scrollTop=0,De.documentElement.scrollLeft=0,this.storyRoot()}storyRoot(){return De.getElementById("storybook-root")}prepareForDocs(){return this.showMain(),this.showDocs(),this.applyLayout("fullscreen"),De.documentElement.scrollTop=0,De.documentElement.scrollLeft=0,this.docsRoot()}docsRoot(){return De.getElementById("storybook-docs")}applyLayout(e="padded"){if(e==="none"){De.body.classList.remove(this.currentLayoutClass),this.currentLayoutClass=null;return}this.checkIfLayoutExists(e);let r=wn[e];De.body.classList.remove(this.currentLayoutClass),De.body.classList.add(r),this.currentLayoutClass=r}checkIfLayoutExists(e){wn[e]||Se.warn(qe` - The desired layout: ${e} is not a valid option. - The possible options are: ${Object.keys(wn).join(", ")}, none. - `)}showMode(e){clearTimeout(this.preparingTimeout),Object.keys(Ls).forEach(r=>{r===e?De.body.classList.add(An[r]):De.body.classList.remove(An[r])})}showErrorDisplay({message:e="",stack:r=""}){let n=e,o=r,a=e.split(` -`);a.length>1&&([n]=a,o=a.slice(1).join(` -`).replace(/^\n/,"")),De.getElementById("error-message").innerHTML=fi.toHtml(n),De.getElementById("error-stack").innerHTML=fi.toHtml(o),this.showMode("ERROR")}showNoPreview(){this.testing||(this.showMode("NOPREVIEW"),this.storyRoot()?.setAttribute("hidden","true"),this.docsRoot()?.setAttribute("hidden","true"))}showPreparingStory({immediate:e=!1}={}){clearTimeout(this.preparingTimeout),e?this.showMode("PREPARING_STORY"):this.preparingTimeout=setTimeout(()=>this.showMode("PREPARING_STORY"),pi)}showPreparingDocs({immediate:e=!1}={}){clearTimeout(this.preparingTimeout),e?this.showMode("PREPARING_DOCS"):this.preparingTimeout=setTimeout(()=>this.showMode("PREPARING_DOCS"),pi)}showMain(){this.showMode("MAIN")}showDocs(){this.storyRoot().setAttribute("hidden","true"),this.docsRoot().removeAttribute("hidden")}showStory(){this.docsRoot().setAttribute("hidden","true"),this.storyRoot().removeAttribute("hidden")}showStoryDuringRender(){De.body.classList.add(An.MAIN)}};c($s,"WebView");var Cf=$s,Of=class extends hf{constructor(e,r){super(e,r,new Af,new Cf),this.importFn=e,this.getProjectAnnotations=r,Re.__STORYBOOK_PREVIEW__=this}};c(Of,"PreviewWeb");var{document:At}=Re,_f=["application/javascript","application/ecmascript","application/x-ecmascript","application/x-javascript","text/ecmascript","text/javascript","text/javascript1.0","text/javascript1.1","text/javascript1.2","text/javascript1.3","text/javascript1.4","text/javascript1.5","text/jscript","text/livescript","text/x-ecmascript","text/x-javascript","module"],If="script",di="scripts-root";function kn(){let t=At.createEvent("Event");t.initEvent("DOMContentLoaded",!0,!0),At.dispatchEvent(t)}c(kn,"simulateDOMContentLoaded");function zs(t,e,r){let n=At.createElement("script");n.type=t.type==="module"?"module":"text/javascript",t.src?(n.onload=e,n.onerror=e,n.src=t.src):n.textContent=t.innerText,r?r.appendChild(n):At.head.appendChild(n),t.parentNode.removeChild(t),t.src||e()}c(zs,"insertScript");function co(t,e,r=0){t[r](()=>{r++,r===t.length?e():co(t,e,r)})}c(co,"insertScriptsSequentially");function Rf(t){let e=At.getElementById(di);e?e.innerHTML="":(e=At.createElement("div"),e.id=di,At.body.appendChild(e));let r=Array.from(t.querySelectorAll(If));if(r.length){let n=[];r.forEach(o=>{let a=o.getAttribute("type");(!a||_f.includes(a))&&n.push(i=>zs(o,i,e))}),n.length&&co(n,kn,void 0)}else kn()}c(Rf,"simulatePageLoad");var i0=__STORYBOOK_CLIENT_LOGGER__,{deprecate:s0,logger:u0,once:Tf,pretty:l0}=__STORYBOOK_CLIENT_LOGGER__;var ur=(()=>{let t;return typeof window<"u"?t=window:typeof globalThis<"u"?t=globalThis:typeof window<"u"?t=window:typeof self<"u"?t=self:t={},t})();var Df=Object.create,qs=Object.defineProperty,Ff=Object.getOwnPropertyDescriptor,Us=Object.getOwnPropertyNames,Pf=Object.getPrototypeOf,jf=Object.prototype.hasOwnProperty,Bf=(t=>typeof ke<"u"?ke:typeof Proxy<"u"?new Proxy(t,{get:(e,r)=>(typeof ke<"u"?ke:e)[r]}):t)(function(t){if(typeof ke<"u")return ke.apply(this,arguments);throw Error('Dynamic require of "'+t+'" is not supported')}),Be=(t,e)=>function(){return e||(0,t[Us(t)[0]])((e={exports:{}}).exports,e),e.exports},kf=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of Us(e))!jf.call(t,o)&&o!==r&&qs(t,o,{get:()=>e[o],enumerable:!(n=Ff(e,o))||n.enumerable});return t},Ct=(t,e,r)=>(r=t!=null?Df(Pf(t)):{},kf(e||!t||!t.__esModule?qs(r,"default",{value:t,enumerable:!0}):r,t)),Nf=Be({"../../node_modules/pretty-format/node_modules/ansi-styles/index.js"(t,e){var r=(a=0)=>i=>`\x1B[${38+a};5;${i}m`,n=(a=0)=>(i,s,u)=>`\x1B[${38+a};2;${i};${s};${u}m`;function o(){let a=new Map,i={modifier:{reset:[0,0],bold:[1,22],dim:[2,22],italic:[3,23],underline:[4,24],overline:[53,55],inverse:[7,27],hidden:[8,28],strikethrough:[9,29]},color:{black:[30,39],red:[31,39],green:[32,39],yellow:[33,39],blue:[34,39],magenta:[35,39],cyan:[36,39],white:[37,39],blackBright:[90,39],redBright:[91,39],greenBright:[92,39],yellowBright:[93,39],blueBright:[94,39],magentaBright:[95,39],cyanBright:[96,39],whiteBright:[97,39]},bgColor:{bgBlack:[40,49],bgRed:[41,49],bgGreen:[42,49],bgYellow:[43,49],bgBlue:[44,49],bgMagenta:[45,49],bgCyan:[46,49],bgWhite:[47,49],bgBlackBright:[100,49],bgRedBright:[101,49],bgGreenBright:[102,49],bgYellowBright:[103,49],bgBlueBright:[104,49],bgMagentaBright:[105,49],bgCyanBright:[106,49],bgWhiteBright:[107,49]}};i.color.gray=i.color.blackBright,i.bgColor.bgGray=i.bgColor.bgBlackBright,i.color.grey=i.color.blackBright,i.bgColor.bgGrey=i.bgColor.bgBlackBright;for(let[s,u]of Object.entries(i)){for(let[l,f]of Object.entries(u))i[l]={open:`\x1B[${f[0]}m`,close:`\x1B[${f[1]}m`},u[l]=i[l],a.set(f[0],f[1]);Object.defineProperty(i,s,{value:u,enumerable:!1})}return Object.defineProperty(i,"codes",{value:a,enumerable:!1}),i.color.close="\x1B[39m",i.bgColor.close="\x1B[49m",i.color.ansi256=r(),i.color.ansi16m=n(),i.bgColor.ansi256=r(10),i.bgColor.ansi16m=n(10),Object.defineProperties(i,{rgbToAnsi256:{value:(s,u,l)=>s===u&&u===l?s<8?16:s>248?231:Math.round((s-8)/247*24)+232:16+36*Math.round(s/255*5)+6*Math.round(u/255*5)+Math.round(l/255*5),enumerable:!1},hexToRgb:{value:s=>{let u=/(?[a-f\d]{6}|[a-f\d]{3})/i.exec(s.toString(16));if(!u)return[0,0,0];let{colorString:l}=u.groups;l.length===3&&(l=l.split("").map(d=>d+d).join(""));let f=Number.parseInt(l,16);return[f>>16&255,f>>8&255,f&255]},enumerable:!1},hexToAnsi256:{value:s=>i.rgbToAnsi256(...i.hexToRgb(s)),enumerable:!1}}),i}Object.defineProperty(e,"exports",{enumerable:!0,get:o})}}),Jr=Be({"../../node_modules/pretty-format/build/collections.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.printIteratorEntries=r,t.printIteratorValues=n,t.printListItems=o,t.printObjectProperties=a;var e=(i,s)=>{let u=Object.keys(i),l=s!==null?u.sort(s):u;return Object.getOwnPropertySymbols&&Object.getOwnPropertySymbols(i).forEach(f=>{Object.getOwnPropertyDescriptor(i,f).enumerable&&l.push(f)}),l};function r(i,s,u,l,f,d,p=": "){let g="",h=0,v=i.next();if(!v.done){g+=s.spacingOuter;let b=u+s.indent;for(;!v.done;){if(g+=b,h++===s.maxWidth){g+="\u2026";break}let m=d(v.value[0],s,b,l,f),y=d(v.value[1],s,b,l,f);g+=m+p+y,v=i.next(),v.done?s.min||(g+=","):g+=`,${s.spacingInner}`}g+=s.spacingOuter+u}return g}function n(i,s,u,l,f,d){let p="",g=0,h=i.next();if(!h.done){p+=s.spacingOuter;let v=u+s.indent;for(;!h.done;){if(p+=v,g++===s.maxWidth){p+="\u2026";break}p+=d(h.value,s,v,l,f),h=i.next(),h.done?s.min||(p+=","):p+=`,${s.spacingInner}`}p+=s.spacingOuter+u}return p}function o(i,s,u,l,f,d){let p="";if(i.length){p+=s.spacingOuter;let g=u+s.indent;for(let h=0;h{let v=l.toString();if(v==="ArrayContaining"||v==="ArrayNotContaining")return++p>f.maxDepth?`[${v}]`:`${v+o}[${(0,e.printListItems)(l.sample,f,d,p,g,h)}]`;if(v==="ObjectContaining"||v==="ObjectNotContaining")return++p>f.maxDepth?`[${v}]`:`${v+o}{${(0,e.printObjectProperties)(l.sample,f,d,p,g,h)}}`;if(v==="StringMatching"||v==="StringNotMatching"||v==="StringContaining"||v==="StringNotContaining")return v+o+h(l.sample,f,d,p,g);if(typeof l.toAsymmetricMatcher!="function")throw new Error(`Asymmetric matcher ${l.constructor.name} does not implement toAsymmetricMatcher()`);return l.toAsymmetricMatcher()};t.serialize=a;var i=l=>l&&l.$$typeof===n;t.test=i;var s={serialize:a,test:i},u=s;t.default=u}}),Lf=Be({"../../node_modules/pretty-format/build/plugins/DOMCollection.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.test=t.serialize=t.default=void 0;var e=Jr(),r=" ",n=["DOMStringMap","NamedNodeMap"],o=/^(HTML\w*Collection|NodeList)$/,a=d=>n.indexOf(d)!==-1||o.test(d),i=d=>d&&d.constructor&&!!d.constructor.name&&a(d.constructor.name);t.test=i;var s=d=>d.constructor.name==="NamedNodeMap",u=(d,p,g,h,v,b)=>{let m=d.constructor.name;return++h>p.maxDepth?`[${m}]`:(p.min?"":m+r)+(n.indexOf(m)!==-1?`{${(0,e.printObjectProperties)(s(d)?Array.from(d).reduce((y,A)=>(y[A.name]=A.value,y),{}):{...d},p,g,h,v,b)}}`:`[${(0,e.printListItems)(Array.from(d),p,g,h,v,b)}]`)};t.serialize=u;var l={serialize:u,test:i},f=l;t.default=f}}),$f=Be({"../../node_modules/pretty-format/build/plugins/lib/escapeHTML.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=e;function e(r){return r.replace(//g,">")}}}),po=Be({"../../node_modules/pretty-format/build/plugins/lib/markup.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.printText=t.printProps=t.printElementAsLeaf=t.printElement=t.printComment=t.printChildren=void 0;var e=r($f());function r(l){return l&&l.__esModule?l:{default:l}}var n=(l,f,d,p,g,h,v)=>{let b=p+d.indent,m=d.colors;return l.map(y=>{let A=f[y],w=v(A,d,b,g,h);return typeof A!="string"&&(w.indexOf(` -`)!==-1&&(w=d.spacingOuter+b+w+d.spacingOuter+p),w=`{${w}}`),`${d.spacingInner+p+m.prop.open+y+m.prop.close}=${m.value.open}${w}${m.value.close}`}).join("")};t.printProps=n;var o=(l,f,d,p,g,h)=>l.map(v=>f.spacingOuter+d+(typeof v=="string"?a(v,f):h(v,f,d,p,g))).join("");t.printChildren=o;var a=(l,f)=>{let d=f.colors.content;return d.open+(0,e.default)(l)+d.close};t.printText=a;var i=(l,f)=>{let d=f.colors.comment;return`${d.open}${d.close}`};t.printComment=i;var s=(l,f,d,p,g)=>{let h=p.colors.tag;return`${h.open}<${l}${f&&h.close+f+p.spacingOuter+g+h.open}${d?`>${h.close}${d}${p.spacingOuter}${g}${h.open}${h.close}`};t.printElement=s;var u=(l,f)=>{let d=f.colors.tag;return`${d.open}<${l}${d.close} \u2026${d.open} />${d.close}`};t.printElementAsLeaf=u}}),zf=Be({"../../node_modules/pretty-format/build/plugins/DOMElement.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.test=t.serialize=t.default=void 0;var e=po(),r=1,n=3,o=8,a=11,i=/^((HTML|SVG)\w*)?Element$/,s=b=>{try{return typeof b.hasAttribute=="function"&&b.hasAttribute("is")}catch{return!1}},u=b=>{let m=b.constructor.name,{nodeType:y,tagName:A}=b,w=typeof A=="string"&&A.includes("-")||s(b);return y===r&&(i.test(m)||w)||y===n&&m==="Text"||y===o&&m==="Comment"||y===a&&m==="DocumentFragment"},l=b=>b?.constructor?.name&&u(b);t.test=l;function f(b){return b.nodeType===n}function d(b){return b.nodeType===o}function p(b){return b.nodeType===a}var g=(b,m,y,A,w,C)=>{if(f(b))return(0,e.printText)(b.data,m);if(d(b))return(0,e.printComment)(b.data,m);let I=p(b)?"DocumentFragment":b.tagName.toLowerCase();return++A>m.maxDepth?(0,e.printElementAsLeaf)(I,m):(0,e.printElement)(I,(0,e.printProps)(p(b)?[]:Array.from(b.attributes,D=>D.name).sort(),p(b)?{}:Array.from(b.attributes).reduce((D,E)=>(D[E.name]=E.value,D),{}),m,y+m.indent,A,w,C),(0,e.printChildren)(Array.prototype.slice.call(b.childNodes||b.children),m,y+m.indent,A,w,C),m,y)};t.serialize=g;var h={serialize:g,test:l},v=h;t.default=v}}),qf=Be({"../../node_modules/pretty-format/build/plugins/Immutable.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.test=t.serialize=t.default=void 0;var e=Jr(),r="@@__IMMUTABLE_ITERABLE__@@",n="@@__IMMUTABLE_LIST__@@",o="@@__IMMUTABLE_KEYED__@@",a="@@__IMMUTABLE_MAP__@@",i="@@__IMMUTABLE_ORDERED__@@",s="@@__IMMUTABLE_RECORD__@@",u="@@__IMMUTABLE_SEQ__@@",l="@@__IMMUTABLE_SET__@@",f="@@__IMMUTABLE_STACK__@@",d=E=>`Immutable.${E}`,p=E=>`[${E}]`,g=" ",h="\u2026",v=(E,j,z,q,G,L,_)=>++q>j.maxDepth?p(d(_)):`${d(_)+g}{${(0,e.printIteratorEntries)(E.entries(),j,z,q,G,L)}}`;function b(E){let j=0;return{next(){if(j{let _=d(E._name||"Record");return++q>j.maxDepth?p(_):`${_+g}{${(0,e.printIteratorEntries)(b(E),j,z,q,G,L)}}`},y=(E,j,z,q,G,L)=>{let _=d("Seq");return++q>j.maxDepth?p(_):E[o]?`${_+g}{${E._iter||E._object?(0,e.printIteratorEntries)(E.entries(),j,z,q,G,L):h}}`:`${_+g}[${E._iter||E._array||E._collection||E._iterable?(0,e.printIteratorValues)(E.values(),j,z,q,G,L):h}]`},A=(E,j,z,q,G,L,_)=>++q>j.maxDepth?p(d(_)):`${d(_)+g}[${(0,e.printIteratorValues)(E.values(),j,z,q,G,L)}]`,w=(E,j,z,q,G,L)=>E[a]?v(E,j,z,q,G,L,E[i]?"OrderedMap":"Map"):E[n]?A(E,j,z,q,G,L,"List"):E[l]?A(E,j,z,q,G,L,E[i]?"OrderedSet":"Set"):E[f]?A(E,j,z,q,G,L,"Stack"):E[u]?y(E,j,z,q,G,L):m(E,j,z,q,G,L);t.serialize=w;var C=E=>E&&(E[r]===!0||E[s]===!0);t.test=C;var I={serialize:w,test:C},D=I;t.default=D}}),Uf=Be({"../../node_modules/pretty-format/node_modules/react-is/cjs/react-is.development.js"(t){(function(){var e=Symbol.for("react.element"),r=Symbol.for("react.portal"),n=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),i=Symbol.for("react.provider"),s=Symbol.for("react.context"),u=Symbol.for("react.server_context"),l=Symbol.for("react.forward_ref"),f=Symbol.for("react.suspense"),d=Symbol.for("react.suspense_list"),p=Symbol.for("react.memo"),g=Symbol.for("react.lazy"),h=Symbol.for("react.offscreen"),v=!1,b=!1,m=!1,y=!1,A=!1,w;w=Symbol.for("react.module.reference");function C(W){return!!(typeof W=="string"||typeof W=="function"||W===n||W===a||A||W===o||W===f||W===d||y||W===h||v||b||m||typeof W=="object"&&W!==null&&(W.$$typeof===g||W.$$typeof===p||W.$$typeof===i||W.$$typeof===s||W.$$typeof===l||W.$$typeof===w||W.getModuleId!==void 0))}function I(W){if(typeof W=="object"&&W!==null){var ee=W.$$typeof;switch(ee){case e:var ae=W.type;switch(ae){case n:case a:case o:case f:case d:return ae;default:var _e=ae&&ae.$$typeof;switch(_e){case u:case s:case l:case g:case p:case i:return _e;default:return ee}}case r:return ee}}}var D=s,E=i,j=e,z=l,q=n,G=g,L=p,_=r,F=a,B=o,H=f,$=d,U=!1,M=!1;function V(W){return U||(U=!0,console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.")),!1}function J(W){return M||(M=!0,console.warn("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.")),!1}function te(W){return I(W)===s}function ue(W){return I(W)===i}function ne(W){return typeof W=="object"&&W!==null&&W.$$typeof===e}function le(W){return I(W)===l}function ce(W){return I(W)===n}function ye(W){return I(W)===g}function Ee(W){return I(W)===p}function T(W){return I(W)===r}function K(W){return I(W)===a}function Q(W){return I(W)===o}function re(W){return I(W)===f}function oe(W){return I(W)===d}t.ContextConsumer=D,t.ContextProvider=E,t.Element=j,t.ForwardRef=z,t.Fragment=q,t.Lazy=G,t.Memo=L,t.Portal=_,t.Profiler=F,t.StrictMode=B,t.Suspense=H,t.SuspenseList=$,t.isAsyncMode=V,t.isConcurrentMode=J,t.isContextConsumer=te,t.isContextProvider=ue,t.isElement=ne,t.isForwardRef=le,t.isFragment=ce,t.isLazy=ye,t.isMemo=Ee,t.isPortal=T,t.isProfiler=K,t.isStrictMode=Q,t.isSuspense=re,t.isSuspenseList=oe,t.isValidElementType=C,t.typeOf=I})()}}),Hf=Be({"../../node_modules/pretty-format/node_modules/react-is/index.js"(t,e){e.exports=Uf()}}),Wf=Be({"../../node_modules/pretty-format/build/plugins/ReactElement.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.test=t.serialize=t.default=void 0;var e=o(Hf()),r=po();function n(p){if(typeof WeakMap!="function")return null;var g=new WeakMap,h=new WeakMap;return(n=function(v){return v?h:g})(p)}function o(p,g){if(!g&&p&&p.__esModule)return p;if(p===null||typeof p!="object"&&typeof p!="function")return{default:p};var h=n(g);if(h&&h.has(p))return h.get(p);var v={},b=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var m in p)if(m!=="default"&&Object.prototype.hasOwnProperty.call(p,m)){var y=b?Object.getOwnPropertyDescriptor(p,m):null;y&&(y.get||y.set)?Object.defineProperty(v,m,y):v[m]=p[m]}return v.default=p,h&&h.set(p,v),v}var a=(p,g=[])=>(Array.isArray(p)?p.forEach(h=>{a(h,g)}):p!=null&&p!==!1&&g.push(p),g),i=p=>{let g=p.type;if(typeof g=="string")return g;if(typeof g=="function")return g.displayName||g.name||"Unknown";if(e.isFragment(p))return"React.Fragment";if(e.isSuspense(p))return"React.Suspense";if(typeof g=="object"&&g!==null){if(e.isContextProvider(p))return"Context.Provider";if(e.isContextConsumer(p))return"Context.Consumer";if(e.isForwardRef(p)){if(g.displayName)return g.displayName;let h=g.render.displayName||g.render.name||"";return h!==""?`ForwardRef(${h})`:"ForwardRef"}if(e.isMemo(p)){let h=g.displayName||g.type.displayName||g.type.name||"";return h!==""?`Memo(${h})`:"Memo"}}return"UNDEFINED"},s=p=>{let{props:g}=p;return Object.keys(g).filter(h=>h!=="children"&&g[h]!==void 0).sort()},u=(p,g,h,v,b,m)=>++v>g.maxDepth?(0,r.printElementAsLeaf)(i(p),g):(0,r.printElement)(i(p),(0,r.printProps)(s(p),p.props,g,h+g.indent,v,b,m),(0,r.printChildren)(a(p.props.children),g,h+g.indent,v,b,m),g,h);t.serialize=u;var l=p=>p!=null&&e.isElement(p);t.test=l;var f={serialize:u,test:l},d=f;t.default=d}}),Vf=Be({"../../node_modules/pretty-format/build/plugins/ReactTestComponent.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.test=t.serialize=t.default=void 0;var e=po(),r=globalThis["jest-symbol-do-not-touch"]||globalThis.Symbol,n=typeof r=="function"&&r.for?r.for("react.test.json"):245830487,o=l=>{let{props:f}=l;return f?Object.keys(f).filter(d=>f[d]!==void 0).sort():[]},a=(l,f,d,p,g,h)=>++p>f.maxDepth?(0,e.printElementAsLeaf)(l.type,f):(0,e.printElement)(l.type,l.props?(0,e.printProps)(o(l),l.props,f,d+f.indent,p,g,h):"",l.children?(0,e.printChildren)(l.children,f,d+f.indent,p,g,h):"",f,d);t.serialize=a;var i=l=>l&&l.$$typeof===n;t.test=i;var s={serialize:a,test:i},u=s;t.default=u}}),fo=Be({"../../node_modules/pretty-format/build/index.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=t.DEFAULT_OPTIONS=void 0,t.format=ce,t.plugins=void 0;var e=l(Nf()),r=Jr(),n=l(Mf()),o=l(Lf()),a=l(zf()),i=l(qf()),s=l(Wf()),u=l(Vf());function l(T){return T&&T.__esModule?T:{default:T}}var f=Object.prototype.toString,d=Date.prototype.toISOString,p=Error.prototype.toString,g=RegExp.prototype.toString,h=T=>typeof T.constructor=="function"&&T.constructor.name||"Object",v=T=>typeof window<"u"&&T===window,b=/^Symbol\((.*)\)(.*)$/,m=/\n/gi,y=class extends Error{constructor(T,K){super(T),this.stack=K,this.name=this.constructor.name}};function A(T){return T==="[object Array]"||T==="[object ArrayBuffer]"||T==="[object DataView]"||T==="[object Float32Array]"||T==="[object Float64Array]"||T==="[object Int8Array]"||T==="[object Int16Array]"||T==="[object Int32Array]"||T==="[object Uint8Array]"||T==="[object Uint8ClampedArray]"||T==="[object Uint16Array]"||T==="[object Uint32Array]"}function w(T){return Object.is(T,-0)?"-0":String(T)}function C(T){return`${T}n`}function I(T,K){return K?`[Function ${T.name||"anonymous"}]`:"[Function]"}function D(T){return String(T).replace(b,"Symbol($1)")}function E(T){return`[${p.call(T)}]`}function j(T,K,Q,re){if(T===!0||T===!1)return`${T}`;if(T===void 0)return"undefined";if(T===null)return"null";let oe=typeof T;if(oe==="number")return w(T);if(oe==="bigint")return C(T);if(oe==="string")return re?`"${T.replace(/"|\\/g,"\\$&")}"`:`"${T}"`;if(oe==="function")return I(T,K);if(oe==="symbol")return D(T);let W=f.call(T);return W==="[object WeakMap]"?"WeakMap {}":W==="[object WeakSet]"?"WeakSet {}":W==="[object Function]"||W==="[object GeneratorFunction]"?I(T,K):W==="[object Symbol]"?D(T):W==="[object Date]"?isNaN(+T)?"Date { NaN }":d.call(T):W==="[object Error]"?E(T):W==="[object RegExp]"?Q?g.call(T).replace(/[\\^$*+?.()|[\]{}]/g,"\\$&"):g.call(T):T instanceof Error?E(T):null}function z(T,K,Q,re,oe,W){if(oe.indexOf(T)!==-1)return"[Circular]";oe=oe.slice(),oe.push(T);let ee=++re>K.maxDepth,ae=K.min;if(K.callToJSON&&!ee&&T.toJSON&&typeof T.toJSON=="function"&&!W)return _(T.toJSON(),K,Q,re,oe,!0);let _e=f.call(T);return _e==="[object Arguments]"?ee?"[Arguments]":`${ae?"":"Arguments "}[${(0,r.printListItems)(T,K,Q,re,oe,_)}]`:A(_e)?ee?`[${T.constructor.name}]`:`${ae||!K.printBasicPrototype&&T.constructor.name==="Array"?"":`${T.constructor.name} `}[${(0,r.printListItems)(T,K,Q,re,oe,_)}]`:_e==="[object Map]"?ee?"[Map]":`Map {${(0,r.printIteratorEntries)(T.entries(),K,Q,re,oe,_," => ")}}`:_e==="[object Set]"?ee?"[Set]":`Set {${(0,r.printIteratorValues)(T.values(),K,Q,re,oe,_)}}`:ee||v(T)?`[${h(T)}]`:`${ae||!K.printBasicPrototype&&h(T)==="Object"?"":`${h(T)} `}{${(0,r.printObjectProperties)(T,K,Q,re,oe,_)}}`}function q(T){return T.serialize!=null}function G(T,K,Q,re,oe,W){let ee;try{ee=q(T)?T.serialize(K,Q,re,oe,W,_):T.print(K,ae=>_(ae,Q,re,oe,W),ae=>{let _e=re+Q.indent;return _e+ae.replace(m,` -${_e}`)},{edgeSpacing:Q.spacingOuter,min:Q.min,spacing:Q.spacingInner},Q.colors)}catch(ae){throw new y(ae.message,ae.stack)}if(typeof ee!="string")throw new Error(`pretty-format: Plugin must return type "string" but instead returned "${typeof ee}".`);return ee}function L(T,K){for(let Q=0;QT,$=H({callToJSON:!0,compareKeys:void 0,escapeRegex:!1,escapeString:!0,highlight:!1,indent:2,maxDepth:1/0,maxWidth:1/0,min:!1,plugins:[],printBasicPrototype:!0,printFunctionName:!0,theme:F});t.DEFAULT_OPTIONS=$;function U(T){if(Object.keys(T).forEach(K=>{if(!Object.prototype.hasOwnProperty.call($,K))throw new Error(`pretty-format: Unknown option "${K}".`)}),T.min&&T.indent!==void 0&&T.indent!==0)throw new Error('pretty-format: Options "min" and "indent" cannot be used together.');if(T.theme!==void 0){if(T.theme===null)throw new Error('pretty-format: Option "theme" must not be null.');if(typeof T.theme!="object")throw new Error(`pretty-format: Option "theme" must be of type "object" but instead received "${typeof T.theme}".`)}}var M=T=>B.reduce((K,Q)=>{let re=T.theme&&T.theme[Q]!==void 0?T.theme[Q]:F[Q],oe=re&&e.default[re];if(oe&&typeof oe.close=="string"&&typeof oe.open=="string")K[Q]=oe;else throw new Error(`pretty-format: Option "theme" has a key "${Q}" whose value "${re}" is undefined in ansi-styles.`);return K},Object.create(null)),V=()=>B.reduce((T,K)=>(T[K]={close:"",open:""},T),Object.create(null)),J=T=>T?.printFunctionName??$.printFunctionName,te=T=>T?.escapeRegex??$.escapeRegex,ue=T=>T?.escapeString??$.escapeString,ne=T=>({callToJSON:T?.callToJSON??$.callToJSON,colors:T?.highlight?M(T):V(),compareKeys:typeof T?.compareKeys=="function"||T?.compareKeys===null?T.compareKeys:$.compareKeys,escapeRegex:te(T),escapeString:ue(T),indent:T?.min?"":le(T?.indent??$.indent),maxDepth:T?.maxDepth??$.maxDepth,maxWidth:T?.maxWidth??$.maxWidth,min:T?.min??$.min,plugins:T?.plugins??$.plugins,printBasicPrototype:T?.printBasicPrototype??!0,printFunctionName:J(T),spacingInner:T?.min?" ":` -`,spacingOuter:T?.min?"":` -`});function le(T){return new Array(T+1).join(" ")}function ce(T,K){if(K&&(U(K),K.plugins)){let re=L(K.plugins,T);if(re!==null)return G(re,T,ne(K),"",0,[])}let Q=j(T,J(K),te(K),ue(K));return Q!==null?Q:z(T,ne(K),"",0,[])}var ye={AsymmetricMatcher:n.default,DOMCollection:o.default,DOMElement:a.default,Immutable:i.default,ReactElement:s.default,ReactTestComponent:u.default};t.plugins=ye;var Ee=ce;t.default=Ee}}),Hs=Be({"../../node_modules/diff-sequences/build/index.js"(t){Object.defineProperty(t,"__esModule",{value:!0}),t.default=g;var e="diff-sequences",r=0,n=(h,v,b,m,y)=>{let A=0;for(;h{let A=0;for(;h<=v&&b<=m&&y(v,m);)v-=1,m-=1,A+=1;return A},a=(h,v,b,m,y,A,w)=>{let C=0,I=-h,D=A[C],E=D;A[C]+=n(D+1,v,m+D-I+1,b,y);let j=h{let C=0,I=h,D=A[C],E=D;A[C]-=o(v,D-1,b,m+D-I-1,y);let j=h{let j=m-v,z=b-v,q=y-m-z,G=-q-(h-1),L=-q+(h-1),_=r,F=h{let j=y-b,z=b-v,q=y-m-z,G=q-h,L=q+h,_=r,F=h{let D=m-v,E=y-b,j=b-v,z=y-m,q=z-j,G=j,L=j;if(w[0]=v-1,C[0]=b,q%2===0){let _=(h||q)/2,F=(j+z)/2;for(let B=1;B<=F;B+=1)if(G=a(B,b,y,D,A,w,G),B<_)L=i(B,v,m,E,A,C,L);else if(u(B,v,b,m,y,A,w,G,C,L,I))return}else{let _=((h||q)+1)/2,F=(j+z+1)/2,B=1;for(G=a(B,b,y,D,A,w,G),B+=1;B<=F;B+=1)if(L=i(B-1,v,m,E,A,C,L),B<_)G=a(B,b,y,D,A,w,G);else if(s(B,v,b,m,y,A,w,G,C,L,I))return}throw new Error(`${e}: no overlap aStart=${v} aEnd=${b} bStart=${m} bEnd=${y}`)},f=(h,v,b,m,y,A,w,C,I,D)=>{if(y-m{ue(le,ye,ce)},isCommon:(le,ce)=>ne(ce,le)}}let J=v,te=b;v=m,b=y,m=J,y=te}let{foundSubsequence:E,isCommon:j}=w[A?1:0];l(h,v,b,m,y,j,C,I,D);let{nChangePreceding:z,aEndPreceding:q,bEndPreceding:G,nCommonPreceding:L,aCommonPreceding:_,bCommonPreceding:F,nCommonFollowing:B,aCommonFollowing:H,bCommonFollowing:$,nChangeFollowing:U,aStartFollowing:M,bStartFollowing:V}=D;v{if(typeof v!="number")throw new TypeError(`${e}: ${h} typeof ${typeof v} is not a number`);if(!Number.isSafeInteger(v))throw new RangeError(`${e}: ${h} value ${v} is not a safe integer`);if(v<0)throw new RangeError(`${e}: ${h} value ${v} is a negative integer`)},p=(h,v)=>{let b=typeof v;if(b!=="function")throw new TypeError(`${e}: ${h} typeof ${b} is not a function`)};function g(h,v,b,m){d("aLength",h),d("bLength",v),p("isCommon",b),p("foundSubsequence",m);let y=n(0,h,0,v,b);if(y!==0&&m(y,0,0),h!==y||v!==y){let A=y,w=y,C=o(A,h-1,w,v-1,b),I=h-C,D=v-C,E=y+C;h!==E&&v!==E&&f(0,A,I,w,D,!1,[{foundSubsequence:m,isCommon:b}],[r],[r],{aCommonFollowing:r,aCommonPreceding:r,aEndPreceding:r,aStartFollowing:r,bCommonFollowing:r,bCommonPreceding:r,bEndPreceding:r,bStartFollowing:r,nChangeFollowing:r,nChangePreceding:r,nCommonFollowing:r,nCommonPreceding:r}),C!==0&&m(C,I,D)}}}}),Ws=Be({"../../node_modules/loupe/loupe.js"(t,e){(function(r,n){typeof t=="object"&&typeof e<"u"?n(t):typeof define=="function"&&define.amd?define(["exports"],n):(r=typeof globalThis<"u"?globalThis:r||self,n(r.loupe={}))})(t,function(r){function n(S){"@babel/helpers - typeof";return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?n=function(O){return typeof O}:n=function(O){return O&&typeof Symbol=="function"&&O.constructor===Symbol&&O!==Symbol.prototype?"symbol":typeof O},n(S)}function o(S,O){return a(S)||i(S,O)||s(S,O)||l()}function a(S){if(Array.isArray(S))return S}function i(S,O){if(!(typeof Symbol>"u"||!(Symbol.iterator in Object(S)))){var k=[],Y=!0,X=!1,Z=void 0;try{for(var ie=S[Symbol.iterator](),he;!(Y=(he=ie.next()).done)&&(k.push(he.value),!(O&&k.length===O));Y=!0);}catch(we){X=!0,Z=we}finally{try{!Y&&ie.return!=null&&ie.return()}finally{if(X)throw Z}}return k}}function s(S,O){if(S){if(typeof S=="string")return u(S,O);var k=Object.prototype.toString.call(S).slice(8,-1);if(k==="Object"&&S.constructor&&(k=S.constructor.name),k==="Map"||k==="Set")return Array.from(S);if(k==="Arguments"||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(k))return u(S,O)}}function u(S,O){(O==null||O>S.length)&&(O=S.length);for(var k=0,Y=new Array(O);k0&&arguments[0]!==void 0?arguments[0]:{},O=S.showHidden,k=O===void 0?!1:O,Y=S.depth,X=Y===void 0?2:Y,Z=S.colors,ie=Z===void 0?!1:Z,he=S.customInspect,we=he===void 0?!0:he,me=S.showProxy,Pe=me===void 0?!1:me,Ke=S.maxArrayLength,Dt=Ke===void 0?1/0:Ke,He=S.breakLength,Je=He===void 0?1/0:He,Xe=S.seen,Kt=Xe===void 0?[]:Xe,Ft=S.truncate,vr=Ft===void 0?1/0:Ft,Jt=S.stylize,Xt=Jt===void 0?String:Jt,Pt={showHidden:!!k,depth:Number(X),colors:!!ie,customInspect:!!we,showProxy:!!Pe,maxArrayLength:Number(Dt),breakLength:Number(Je),truncate:Number(vr),seen:Kt,stylize:Xt};return Pt.colors&&(Pt.stylize=g),Pt}function v(S,O){var k=arguments.length>2&&arguments[2]!==void 0?arguments[2]:p;S=String(S);var Y=k.length,X=S.length;return Y>O&&X>Y?k:X>O&&X>Y?"".concat(S.slice(0,O-Y)).concat(k):S}function b(S,O,k){var Y=arguments.length>3&&arguments[3]!==void 0?arguments[3]:", ";k=k||O.inspect;var X=S.length;if(X===0)return"";for(var Z=O.truncate,ie="",he="",we="",me=0;meZ&&ie.length+we.length<=Z||!Pe&&!Ke&&Xe>Z||(he=Pe?"":k(S[me+1],O)+(Ke?"":Y),!Pe&&Ke&&Xe>Z&&Je+he.length>Z))break;if(ie+=He,!Pe&&!Ke&&Je+he.length>=Z){we="".concat(p,"(").concat(S.length-me-1,")");break}we=""}return"".concat(ie).concat(we)}function m(S){return S.match(/^[a-zA-Z_][a-zA-Z_0-9]*$/)?S:JSON.stringify(S).replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'")}function y(S,O){var k=o(S,2),Y=k[0],X=k[1];return O.truncate-=2,typeof Y=="string"?Y=m(Y):typeof Y!="number"&&(Y="[".concat(O.inspect(Y,O),"]")),O.truncate-=Y.length,X=O.inspect(X,O),"".concat(Y,": ").concat(X)}function A(S,O){var k=Object.keys(S).slice(S.length);if(!S.length&&!k.length)return"[]";O.truncate-=4;var Y=b(S,O);O.truncate-=Y.length;var X="";return k.length&&(X=b(k.map(function(Z){return[Z,S[Z]]}),O,y)),"[ ".concat(Y).concat(X?", ".concat(X):""," ]")}var w=Function.prototype.toString,C=/\s*function(?:\s|\s*\/\*[^(?:*\/)]+\*\/\s*)*([^\s\(\/]+)/,I=512;function D(S){if(typeof S!="function")return null;var O="";if(typeof Function.prototype.name>"u"&&typeof S.name>"u"){var k=w.call(S);if(k.indexOf("(")>I)return O;var Y=k.match(C);Y&&(O=Y[1])}else O=S.name;return O}var E=D,j=function(S){return typeof Buffer=="function"&&S instanceof Buffer?"Buffer":S[Symbol.toStringTag]?S[Symbol.toStringTag]:E(S.constructor)};function z(S,O){var k=j(S);O.truncate-=k.length+4;var Y=Object.keys(S).slice(S.length);if(!S.length&&!Y.length)return"".concat(k,"[]");for(var X="",Z=0;Z ").concat(X)}function _(S){var O=[];return S.forEach(function(k,Y){O.push([Y,k])}),O}function F(S,O){var k=S.size-1;return k<=0?"Map{}":(O.truncate-=7,"Map{ ".concat(b(_(S),O,L)," }"))}var B=Number.isNaN||function(S){return S!==S};function H(S,O){return B(S)?O.stylize("NaN","number"):S===1/0?O.stylize("Infinity","number"):S===-1/0?O.stylize("-Infinity","number"):S===0?O.stylize(1/S===1/0?"+0":"-0","number"):O.stylize(v(S,O.truncate),"number")}function $(S,O){var k=v(S.toString(),O.truncate-1);return k!==p&&(k+="n"),O.stylize(k,"bigint")}function U(S,O){var k=S.toString().split("/")[2],Y=O.truncate-(2+k.length),X=S.source;return O.stylize("/".concat(v(X,Y),"/").concat(k),"regexp")}function M(S){var O=[];return S.forEach(function(k){O.push(k)}),O}function V(S,O){return S.size===0?"Set{}":(O.truncate-=7,"Set{ ".concat(b(M(S),O)," }"))}var J=new RegExp("['\\u0000-\\u001f\\u007f-\\u009f\\u00ad\\u0600-\\u0604\\u070f\\u17b4\\u17b5\\u200c-\\u200f\\u2028-\\u202f\\u2060-\\u206f\\ufeff\\ufff0-\\uffff]","g"),te={"\b":"\\b"," ":"\\t","\n":"\\n","\f":"\\f","\r":"\\r","'":"\\'","\\":"\\\\"},ue=16,ne=4;function le(S){return te[S]||"\\u".concat("0000".concat(S.charCodeAt(0).toString(ue)).slice(-ne))}function ce(S,O){return J.test(S)&&(S=S.replace(J,le)),O.stylize("'".concat(v(S,O.truncate-2),"'"),"string")}function ye(S){return"description"in Symbol.prototype?S.description?"Symbol(".concat(S.description,")"):"Symbol()":S.toString()}var Ee=function(){return"Promise{\u2026}"};try{var T=process.binding("util"),K=T.getPromiseDetails,Q=T.kPending,re=T.kRejected;Array.isArray(K(Promise.resolve()))&&(Ee=function(S,O){var k=K(S),Y=o(k,2),X=Y[0],Z=Y[1];return X===Q?"Promise{}":"Promise".concat(X===re?"!":"","{").concat(O.inspect(Z,O),"}")})}catch{}var oe=Ee;function W(S,O){var k=Object.getOwnPropertyNames(S),Y=Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(S):[];if(k.length===0&&Y.length===0)return"{}";if(O.truncate-=4,O.seen=O.seen||[],O.seen.indexOf(S)>=0)return"[Circular]";O.seen.push(S);var X=b(k.map(function(he){return[he,S[he]]}),O,y),Z=b(Y.map(function(he){return[he,S[he]]}),O,y);O.seen.pop();var ie="";return X&&Z&&(ie=", "),"{ ".concat(X).concat(ie).concat(Z," }")}var ee=typeof Symbol<"u"&&Symbol.toStringTag?Symbol.toStringTag:!1;function ae(S,O){var k="";return ee&&ee in S&&(k=S[ee]),k=k||E(S.constructor),(!k||k==="_class")&&(k=""),O.truncate-=k.length,"".concat(k).concat(W(S,O))}function _e(S,O){return S.length===0?"Arguments[]":(O.truncate-=13,"Arguments[ ".concat(b(S,O)," ]"))}var bt=["stack","line","column","name","message","fileName","lineNumber","columnNumber","number","description"];function It(S,O){var k=Object.getOwnPropertyNames(S).filter(function(ie){return bt.indexOf(ie)===-1}),Y=S.name;O.truncate-=Y.length;var X="";typeof S.message=="string"?X=v(S.message,O.truncate):k.unshift("message"),X=X?": ".concat(X):"",O.truncate-=X.length+5;var Z=b(k.map(function(ie){return[ie,S[ie]]}),O,y);return"".concat(Y).concat(X).concat(Z?" { ".concat(Z," }"):"")}function yr(S,O){var k=o(S,2),Y=k[0],X=k[1];return O.truncate-=3,X?"".concat(O.stylize(Y,"yellow"),"=").concat(O.stylize('"'.concat(X,'"'),"string")):"".concat(O.stylize(Y,"yellow"))}function Rt(S,O){return b(S,O,Vt,` -`)}function Vt(S,O){var k=S.getAttributeNames(),Y=S.tagName.toLowerCase(),X=O.stylize("<".concat(Y),"special"),Z=O.stylize(">","special"),ie=O.stylize(""),"special");O.truncate-=Y.length*2+5;var he="";k.length>0&&(he+=" ",he+=b(k.map(function(Pe){return[Pe,S.getAttribute(Pe)]}),O,yr," ")),O.truncate-=he.length;var we=O.truncate,me=Rt(S.children,O);return me&&me.length>we&&(me="".concat(p,"(").concat(S.children.length,")")),"".concat(X).concat(he).concat(Z).concat(me).concat(ie)}var gr=typeof Symbol=="function"&&typeof Symbol.for=="function",vt=gr?Symbol.for("chai/inspect"):"@@chai/inspect",Ge=!1;try{var Gt=Bf("util");Ge=Gt.inspect?Gt.inspect.custom:!1}catch{Ge=!1}function et(){this.key="chai/loupe__"+Math.random()+Date.now()}et.prototype={get:function(S){return S[this.key]},has:function(S){return this.key in S},set:function(S,O){Object.isExtensible(S)&&Object.defineProperty(S,this.key,{value:O,configurable:!0})}};var tt=new(typeof WeakMap=="function"?WeakMap:et),lt={},Yt={undefined:function(S,O){return O.stylize("undefined","undefined")},null:function(S,O){return O.stylize(null,"null")},boolean:function(S,O){return O.stylize(S,"boolean")},Boolean:function(S,O){return O.stylize(S,"boolean")},number:H,Number:H,bigint:$,BigInt:$,string:ce,String:ce,function:G,Function:G,symbol:ye,Symbol:ye,Array:A,Date:q,Map:F,Set:V,RegExp:U,Promise:oe,WeakSet:function(S,O){return O.stylize("WeakSet{\u2026}","special")},WeakMap:function(S,O){return O.stylize("WeakMap{\u2026}","special")},Arguments:_e,Int8Array:z,Uint8Array:z,Uint8ClampedArray:z,Int16Array:z,Uint16Array:z,Int32Array:z,Uint32Array:z,Float32Array:z,Float64Array:z,Generator:function(){return""},DataView:function(){return""},ArrayBuffer:function(){return""},Error:It,HTMLCollection:Rt,NodeList:Rt},br=function(S,O,k){return vt in S&&typeof S[vt]=="function"?S[vt](O):Ge&&Ge in S&&typeof S[Ge]=="function"?S[Ge](O.depth,O):"inspect"in S&&typeof S.inspect=="function"?S.inspect(O.depth,O):"constructor"in S&&tt.has(S.constructor)?tt.get(S.constructor)(S,O):lt[k]?lt[k](S,O):""},Tt=Object.prototype.toString;function Ye(S,O){O=h(O),O.inspect=Ye;var k=O,Y=k.customInspect,X=S===null?"null":n(S);if(X==="object"&&(X=Tt.call(S).slice(8,-1)),Yt[X])return Yt[X](S,O);if(Y&&S){var Z=br(S,O,X);if(Z)return typeof Z=="string"?Z:Ye(Z,O)}var ie=S?Object.getPrototypeOf(S):!1;return ie===Object.prototype||ie===null?W(S,O):S&&typeof HTMLElement=="function"&&S instanceof HTMLElement?Vt(S,O):"constructor"in S?S.constructor!==Object?ae(S,O):W(S,O):S===Object(S)?W(S,O):O.stylize(String(S),X)}function P(S,O){return tt.has(S)?!1:(tt.set(S,O),!0)}function N(S,O){return S in lt?!1:(lt[S]=O,!0)}var pe=vt;r.custom=pe,r.default=Ye,r.inspect=Ye,r.registerConstructor=P,r.registerStringTag=N,Object.defineProperty(r,"__esModule",{value:!0})})}}),Gf=Ct(fo(),1),_0=Ct(Hs(),1),I0=Symbol("vitest:SAFE_COLORS"),Yf={bold:["\x1B[1m","\x1B[22m","\x1B[22m\x1B[1m"],dim:["\x1B[2m","\x1B[22m","\x1B[22m\x1B[2m"],italic:["\x1B[3m","\x1B[23m"],underline:["\x1B[4m","\x1B[24m"],inverse:["\x1B[7m","\x1B[27m"],hidden:["\x1B[8m","\x1B[28m"],strikethrough:["\x1B[9m","\x1B[29m"],black:["\x1B[30m","\x1B[39m"],red:["\x1B[31m","\x1B[39m"],green:["\x1B[32m","\x1B[39m"],yellow:["\x1B[33m","\x1B[39m"],blue:["\x1B[34m","\x1B[39m"],magenta:["\x1B[35m","\x1B[39m"],cyan:["\x1B[36m","\x1B[39m"],white:["\x1B[37m","\x1B[39m"],gray:["\x1B[90m","\x1B[39m"],bgBlack:["\x1B[40m","\x1B[49m"],bgRed:["\x1B[41m","\x1B[49m"],bgGreen:["\x1B[42m","\x1B[49m"],bgYellow:["\x1B[43m","\x1B[49m"],bgBlue:["\x1B[44m","\x1B[49m"],bgMagenta:["\x1B[45m","\x1B[49m"],bgCyan:["\x1B[46m","\x1B[49m"],bgWhite:["\x1B[47m","\x1B[49m"]},Kf=Object.entries(Yf);function ho(t){return String(t)}ho.open="";ho.close="";var R0=Kf.reduce((t,[e])=>(t[e]=ho,t),{isColorSupported:!1});var{AsymmetricMatcher:T0,DOMCollection:D0,DOMElement:F0,Immutable:P0,ReactElement:j0,ReactTestComponent:B0}=Gf.plugins;var Jf=Ct(fo(),1),k0=Ct(Ws(),1),{AsymmetricMatcher:N0,DOMCollection:M0,DOMElement:L0,Immutable:$0,ReactElement:z0,ReactTestComponent:q0}=Jf.plugins;Ct(fo(),1);Ct(Hs(),1);Ct(Ws(),1);var U0=Object.getPrototypeOf({});var de=(t=>(t.DONE="done",t.ERROR="error",t.ACTIVE="active",t.WAITING="waiting",t))(de||{}),mt={CALL:"storybook/instrumenter/call",SYNC:"storybook/instrumenter/sync",START:"storybook/instrumenter/start",BACK:"storybook/instrumenter/back",GOTO:"storybook/instrumenter/goto",NEXT:"storybook/instrumenter/next",END:"storybook/instrumenter/end"};var H0=new Error("This function ran after the play function completed. Did you forget to `await` it?");var X0=__STORYBOOK_THEMING__,{CacheProvider:Q0,ClassNames:Z0,Global:e1,ThemeProvider:t1,background:r1,color:n1,convert:o1,create:a1,createCache:i1,createGlobal:s1,createReset:u1,css:l1,darken:c1,ensure:p1,ignoreSsrWarning:f1,isPropValid:d1,jsx:h1,keyframes:m1,lighten:y1,styled:fe,themes:g1,typography:st,useTheme:lr,withTheme:b1}=__STORYBOOK_THEMING__;function Fe(){return Fe=Object.assign?Object.assign.bind():function(t){for(var e=1;e"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function qt(t,e,r){return bo()?qt=Reflect.construct.bind():qt=function(o,a,i){var s=[null];s.push.apply(s,a);var u=Function.bind.apply(o,s),l=new u;return i&&ut(l,i.prototype),l},qt.apply(null,arguments)}function pr(t){var e=typeof Map=="function"?new Map:void 0;return pr=function(n){if(n===null||!go(n))return n;if(typeof n!="function")throw new TypeError("Super expression must either be null or a function");if(typeof e<"u"){if(e.has(n))return e.get(n);e.set(n,o)}function o(){return qt(n,arguments,cr(this).constructor)}return o.prototype=Object.create(n.prototype,{constructor:{value:o,enumerable:!1,writable:!0,configurable:!0}}),ut(o,n)},pr(t)}var Me=function(t){yo(e,t);function e(r){var n;if(1)n=t.call(this,"An error occurred. See https://github.com/styled-components/polished/blob/main/src/internalHelpers/errors.md#"+r+" for more information.")||this;else for(var o,a,i;i=0&&o<1?(s=a,u=i):o>=1&&o<2?(s=i,u=a):o>=2&&o<3?(u=a,l=i):o>=3&&o<4?(u=i,l=a):o>=4&&o<5?(s=i,l=a):o>=5&&o<6&&(s=a,l=i);var f=r-a/2,d=s+f,p=u+f,g=l+f;return n(d,p,g)}var Ys={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"00ffff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"0000ff",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"00ffff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"ff00ff",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"639",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"};function ed(t){if(typeof t!="string")return t;var e=t.toLowerCase();return Ys[e]?"#"+Ys[e]:t}var td=/^#[a-fA-F0-9]{6}$/,rd=/^#[a-fA-F0-9]{8}$/,nd=/^#[a-fA-F0-9]{3}$/,od=/^#[a-fA-F0-9]{4}$/,Eo=/^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i,ad=/^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i,id=/^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,sd=/^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;function Ut(t){if(typeof t!="string")throw new Me(3);var e=ed(t);if(e.match(td))return{red:parseInt(""+e[1]+e[2],16),green:parseInt(""+e[3]+e[4],16),blue:parseInt(""+e[5]+e[6],16)};if(e.match(rd)){var r=parseFloat((parseInt(""+e[7]+e[8],16)/255).toFixed(2));return{red:parseInt(""+e[1]+e[2],16),green:parseInt(""+e[3]+e[4],16),blue:parseInt(""+e[5]+e[6],16),alpha:r}}if(e.match(nd))return{red:parseInt(""+e[1]+e[1],16),green:parseInt(""+e[2]+e[2],16),blue:parseInt(""+e[3]+e[3],16)};if(e.match(od)){var n=parseFloat((parseInt(""+e[4]+e[4],16)/255).toFixed(2));return{red:parseInt(""+e[1]+e[1],16),green:parseInt(""+e[2]+e[2],16),blue:parseInt(""+e[3]+e[3],16),alpha:n}}var o=Eo.exec(e);if(o)return{red:parseInt(""+o[1],10),green:parseInt(""+o[2],10),blue:parseInt(""+o[3],10)};var a=ad.exec(e.substring(0,50));if(a)return{red:parseInt(""+a[1],10),green:parseInt(""+a[2],10),blue:parseInt(""+a[3],10),alpha:parseFloat(""+a[4])>1?parseFloat(""+a[4])/100:parseFloat(""+a[4])};var i=id.exec(e);if(i){var s=parseInt(""+i[1],10),u=parseInt(""+i[2],10)/100,l=parseInt(""+i[3],10)/100,f="rgb("+fr(s,u,l)+")",d=Eo.exec(f);if(!d)throw new Me(4,e,f);return{red:parseInt(""+d[1],10),green:parseInt(""+d[2],10),blue:parseInt(""+d[3],10)}}var p=sd.exec(e.substring(0,50));if(p){var g=parseInt(""+p[1],10),h=parseInt(""+p[2],10)/100,v=parseInt(""+p[3],10)/100,b="rgb("+fr(g,h,v)+")",m=Eo.exec(b);if(!m)throw new Me(4,e,b);return{red:parseInt(""+m[1],10),green:parseInt(""+m[2],10),blue:parseInt(""+m[3],10),alpha:parseFloat(""+p[4])>1?parseFloat(""+p[4])/100:parseFloat(""+p[4])}}throw new Me(5)}function ud(t){var e=t.red/255,r=t.green/255,n=t.blue/255,o=Math.max(e,r,n),a=Math.min(e,r,n),i=(o+a)/2;if(o===a)return t.alpha!==void 0?{hue:0,saturation:0,lightness:i,alpha:t.alpha}:{hue:0,saturation:0,lightness:i};var s,u=o-a,l=i>.5?u/(2-o-a):u/(o+a);switch(o){case e:s=(r-n)/u+(r=1?Xr(t,e,r):"rgba("+fr(t,e,r)+","+n+")";if(typeof t=="object"&&e===void 0&&r===void 0&&n===void 0)return t.alpha>=1?Xr(t.hue,t.saturation,t.lightness):"rgba("+fr(t.hue,t.saturation,t.lightness)+","+t.alpha+")";throw new Me(2)}function wo(t,e,r){if(typeof t=="number"&&typeof e=="number"&&typeof r=="number")return Ao("#"+Ot(t)+Ot(e)+Ot(r));if(typeof t=="object"&&e===void 0&&r===void 0)return Ao("#"+Ot(t.red)+Ot(t.green)+Ot(t.blue));throw new Me(6)}function Qr(t,e,r,n){if(typeof t=="string"&&typeof e=="number"){var o=Ut(t);return"rgba("+o.red+","+o.green+","+o.blue+","+e+")"}else{if(typeof t=="number"&&typeof e=="number"&&typeof r=="number"&&typeof n=="number")return n>=1?wo(t,e,r):"rgba("+t+","+e+","+r+","+n+")";if(typeof t=="object"&&e===void 0&&r===void 0&&n===void 0)return t.alpha>=1?wo(t.red,t.green,t.blue):"rgba("+t.red+","+t.green+","+t.blue+","+t.alpha+")"}throw new Me(7)}var dd=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},hd=function(e){return typeof e.red=="number"&&typeof e.green=="number"&&typeof e.blue=="number"&&typeof e.alpha=="number"},md=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&(typeof e.alpha!="number"||typeof e.alpha>"u")},yd=function(e){return typeof e.hue=="number"&&typeof e.saturation=="number"&&typeof e.lightness=="number"&&typeof e.alpha=="number"};function gt(t){if(typeof t!="object")throw new Me(8);if(hd(t))return Qr(t);if(dd(t))return wo(t);if(yd(t))return fd(t);if(md(t))return pd(t);throw new Me(8)}function Js(t,e,r){return function(){var o=r.concat(Array.prototype.slice.call(arguments));return o.length>=e?t.apply(this,o):Js(t,e,o)}}function ze(t){return Js(t,t.length,[])}function gd(t,e){if(e==="transparent")return e;var r=yt(e);return gt(Fe({},r,{hue:r.hue+parseFloat(t)}))}var xv=ze(gd);function Ht(t,e,r){return Math.max(t,Math.min(e,r))}function bd(t,e){if(e==="transparent")return e;var r=yt(e);return gt(Fe({},r,{lightness:Ht(0,1,r.lightness-parseFloat(t))}))}var Cv=ze(bd);function vd(t,e){if(e==="transparent")return e;var r=yt(e);return gt(Fe({},r,{saturation:Ht(0,1,r.saturation-parseFloat(t))}))}var Ov=ze(vd);function Ed(t,e){if(e==="transparent")return e;var r=yt(e);return gt(Fe({},r,{lightness:Ht(0,1,r.lightness+parseFloat(t))}))}var _v=ze(Ed);function Sd(t,e,r){if(e==="transparent")return r;if(r==="transparent")return e;if(t===0)return r;var n=Ut(e),o=Fe({},n,{alpha:typeof n.alpha=="number"?n.alpha:1}),a=Ut(r),i=Fe({},a,{alpha:typeof a.alpha=="number"?a.alpha:1}),s=o.alpha-i.alpha,u=parseFloat(t)*2-1,l=u*s===-1?u:u+s,f=1+u*s,d=(l/f+1)/2,p=1-d,g={red:Math.floor(o.red*d+i.red*p),green:Math.floor(o.green*d+i.green*p),blue:Math.floor(o.blue*d+i.blue*p),alpha:o.alpha*parseFloat(t)+i.alpha*(1-parseFloat(t))};return Qr(g)}var Ad=ze(Sd),Xs=Ad;function wd(t,e){if(e==="transparent")return e;var r=Ut(e),n=typeof r.alpha=="number"?r.alpha:1,o=Fe({},r,{alpha:Ht(0,1,(n*100+parseFloat(t)*100)/100)});return Qr(o)}var Iv=ze(wd);function xd(t,e){if(e==="transparent")return e;var r=yt(e);return gt(Fe({},r,{saturation:Ht(0,1,r.saturation+parseFloat(t))}))}var Rv=ze(xd);function Cd(t,e){return e==="transparent"?e:gt(Fe({},yt(e),{hue:parseFloat(t)}))}var Tv=ze(Cd);function Od(t,e){return e==="transparent"?e:gt(Fe({},yt(e),{lightness:parseFloat(t)}))}var Dv=ze(Od);function _d(t,e){return e==="transparent"?e:gt(Fe({},yt(e),{saturation:parseFloat(t)}))}var Fv=ze(_d);function Id(t,e){return e==="transparent"?e:Xs(parseFloat(t),"rgb(0, 0, 0)",e)}var Pv=ze(Id);function Rd(t,e){return e==="transparent"?e:Xs(parseFloat(t),"rgb(255, 255, 255)",e)}var jv=ze(Rd);function Td(t,e){if(e==="transparent")return e;var r=Ut(e),n=typeof r.alpha=="number"?r.alpha:1,o=Fe({},r,{alpha:Ht(0,1,+(n*100-parseFloat(t)*100).toFixed(2)/100)});return Qr(o)}var Dd=ze(Td),Zr=Dd;var Lv=__STORYBOOK_ICONS__,{AccessibilityAltIcon:$v,AccessibilityIcon:zv,AddIcon:qv,AdminIcon:Uv,AlertAltIcon:Hv,AlertIcon:Wv,AlignLeftIcon:Vv,AlignRightIcon:Gv,AppleIcon:Yv,ArrowDownIcon:Kv,ArrowLeftIcon:Jv,ArrowRightIcon:Xv,ArrowSolidDownIcon:Qv,ArrowSolidLeftIcon:Zv,ArrowSolidRightIcon:eE,ArrowSolidUpIcon:tE,ArrowUpIcon:rE,AzureDevOpsIcon:nE,BackIcon:oE,BasketIcon:aE,BatchAcceptIcon:iE,BatchDenyIcon:sE,BeakerIcon:uE,BellIcon:lE,BitbucketIcon:cE,BoldIcon:pE,BookIcon:fE,BookmarkHollowIcon:dE,BookmarkIcon:hE,BottomBarIcon:mE,BottomBarToggleIcon:yE,BoxIcon:gE,BranchIcon:bE,BrowserIcon:vE,ButtonIcon:EE,CPUIcon:SE,CalendarIcon:AE,CameraIcon:wE,CategoryIcon:xE,CertificateIcon:CE,ChangedIcon:OE,ChatIcon:_E,CheckIcon:Qs,ChevronDownIcon:IE,ChevronLeftIcon:RE,ChevronRightIcon:TE,ChevronSmallDownIcon:DE,ChevronSmallLeftIcon:FE,ChevronSmallRightIcon:PE,ChevronSmallUpIcon:jE,ChevronUpIcon:BE,ChromaticIcon:kE,ChromeIcon:NE,CircleHollowIcon:ME,CircleIcon:Zs,ClearIcon:LE,CloseAltIcon:$E,CloseIcon:zE,CloudHollowIcon:qE,CloudIcon:UE,CogIcon:HE,CollapseIcon:WE,CommandIcon:VE,CommentAddIcon:GE,CommentIcon:YE,CommentsIcon:KE,CommitIcon:JE,CompassIcon:XE,ComponentDrivenIcon:QE,ComponentIcon:ZE,ContrastIcon:eS,ControlsIcon:tS,CopyIcon:rS,CreditIcon:nS,CrossIcon:oS,DashboardIcon:aS,DatabaseIcon:iS,DeleteIcon:sS,DiamondIcon:uS,DirectionIcon:lS,DiscordIcon:cS,DocChartIcon:pS,DocListIcon:fS,DocumentIcon:eu,DownloadIcon:dS,DragIcon:hS,EditIcon:mS,EllipsisIcon:yS,EmailIcon:gS,ExpandAltIcon:bS,ExpandIcon:vS,EyeCloseIcon:ES,EyeIcon:SS,FaceHappyIcon:AS,FaceNeutralIcon:wS,FaceSadIcon:xS,FacebookIcon:CS,FailedIcon:OS,FastForwardIcon:tu,FigmaIcon:_S,FilterIcon:IS,FlagIcon:RS,FolderIcon:TS,FormIcon:DS,GDriveIcon:FS,GithubIcon:PS,GitlabIcon:jS,GlobeIcon:BS,GoogleIcon:kS,GraphBarIcon:NS,GraphLineIcon:MS,GraphqlIcon:LS,GridAltIcon:$S,GridIcon:zS,GrowIcon:qS,HeartHollowIcon:US,HeartIcon:HS,HomeIcon:WS,HourglassIcon:VS,InfoIcon:GS,ItalicIcon:YS,JumpToIcon:KS,KeyIcon:JS,LightningIcon:XS,LightningOffIcon:QS,LinkBrokenIcon:ZS,LinkIcon:eA,LinkedinIcon:tA,LinuxIcon:rA,ListOrderedIcon:nA,ListUnorderedIcon:ru,LocationIcon:oA,LockIcon:aA,MarkdownIcon:iA,MarkupIcon:sA,MediumIcon:uA,MemoryIcon:lA,MenuIcon:cA,MergeIcon:pA,MirrorIcon:fA,MobileIcon:dA,MoonIcon:hA,NutIcon:mA,OutboxIcon:yA,OutlineIcon:gA,PaintBrushIcon:bA,PaperClipIcon:vA,ParagraphIcon:EA,PassedIcon:SA,PhoneIcon:AA,PhotoDragIcon:wA,PhotoIcon:xA,PinAltIcon:CA,PinIcon:OA,PlayBackIcon:nu,PlayIcon:ou,PlayNextIcon:au,PlusIcon:_A,PointerDefaultIcon:IA,PointerHandIcon:RA,PowerIcon:TA,PrintIcon:DA,ProceedIcon:FA,ProfileIcon:PA,PullRequestIcon:jA,QuestionIcon:BA,RSSIcon:kA,RedirectIcon:NA,ReduxIcon:MA,RefreshIcon:LA,ReplyIcon:$A,RepoIcon:zA,RequestChangeIcon:qA,RewindIcon:iu,RulerIcon:UA,SearchIcon:HA,ShareAltIcon:WA,ShareIcon:VA,ShieldIcon:GA,SideBySideIcon:YA,SidebarAltIcon:KA,SidebarAltToggleIcon:JA,SidebarIcon:XA,SidebarToggleIcon:QA,SpeakerIcon:ZA,StackedIcon:ew,StarHollowIcon:tw,StarIcon:rw,StickerIcon:nw,StopAltIcon:su,StopIcon:ow,StorybookIcon:aw,StructureIcon:iw,SubtractIcon:sw,SunIcon:uw,SupportIcon:lw,SwitchAltIcon:cw,SyncIcon:uu,TabletIcon:pw,ThumbsUpIcon:fw,TimeIcon:dw,TimerIcon:hw,TransferIcon:mw,TrashIcon:yw,TwitterIcon:gw,TypeIcon:bw,UbuntuIcon:vw,UndoIcon:Ew,UnfoldIcon:Sw,UnlockIcon:Aw,UnpinIcon:ww,UploadIcon:xw,UserAddIcon:Cw,UserAltIcon:Ow,UserIcon:_w,UsersIcon:Iw,VSCodeIcon:Rw,VerifiedIcon:Tw,VideoIcon:lu,WandIcon:Dw,WatchIcon:Fw,WindowsIcon:Pw,WrenchIcon:jw,YoutubeIcon:Bw,ZoomIcon:kw,ZoomOutIcon:Nw,ZoomResetIcon:Mw,iconList:Lw}=__STORYBOOK_ICONS__;var Fd=Object.create,Au=Object.defineProperty,Pd=Object.getOwnPropertyDescriptor,wu=Object.getOwnPropertyNames,jd=Object.getPrototypeOf,Bd=Object.prototype.hasOwnProperty,Ue=(t,e)=>function(){return e||(0,t[wu(t)[0]])((e={exports:{}}).exports,e),e.exports},kd=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let o of wu(e))!Bd.call(t,o)&&o!==r&&Au(t,o,{get:()=>e[o],enumerable:!(n=Pd(e,o))||n.enumerable});return t},Ve=(t,e,r)=>(r=t!=null?Fd(jd(t)):{},kd(e||!t||!t.__esModule?Au(r,"default",{value:t,enumerable:!0}):r,t)),Po=Ue({"../../node_modules/@devtools-ds/object-inspector/node_modules/@babel/runtime/helpers/extends.js"(t,e){function r(){return e.exports=r=Object.assign||function(n){for(var o=1;o=0)&&(a[s]=n[s]);return a}e.exports=r}}),jo=Ue({"../../node_modules/@devtools-ds/object-inspector/node_modules/@babel/runtime/helpers/objectWithoutProperties.js"(t,e){var r=Nd();function n(o,a){if(o==null)return{};var i=r(o,a),s,u;if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(o);for(u=0;u=0)&&Object.prototype.propertyIsEnumerable.call(o,s)&&(i[s]=o[s])}return i}e.exports=n}}),Md=Ue({"../../node_modules/@devtools-ds/themes/node_modules/@babel/runtime/helpers/defineProperty.js"(t,e){function r(n,o,a){return o in n?Object.defineProperty(n,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):n[o]=a,n}e.exports=r}}),Ld=Ue({"../../node_modules/@devtools-ds/themes/node_modules/@babel/runtime/helpers/objectSpread2.js"(t,e){var r=Md();function n(a,i){var s=Object.keys(a);if(Object.getOwnPropertySymbols){var u=Object.getOwnPropertySymbols(a);i&&(u=u.filter(function(l){return Object.getOwnPropertyDescriptor(a,l).enumerable})),s.push.apply(s,u)}return s}function o(a){for(var i=1;i=0)&&(a[s]=n[s]);return a}e.exports=r}}),zd=Ue({"../../node_modules/@devtools-ds/themes/node_modules/@babel/runtime/helpers/objectWithoutProperties.js"(t,e){var r=$d();function n(o,a){if(o==null)return{};var i=r(o,a),s,u;if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(o);for(u=0;u=0)&&Object.prototype.propertyIsEnumerable.call(o,s)&&(i[s]=o[s])}return i}e.exports=n}}),qd=Ue({"../../node_modules/@devtools-ds/object-inspector/node_modules/@babel/runtime/helpers/defineProperty.js"(t,e){function r(n,o,a){return o in n?Object.defineProperty(n,o,{value:a,enumerable:!0,configurable:!0,writable:!0}):n[o]=a,n}e.exports=r}}),Ud=Ue({"../../node_modules/@devtools-ds/object-inspector/node_modules/@babel/runtime/helpers/objectSpread2.js"(t,e){var r=qd();function n(a,i){var s=Object.keys(a);if(Object.getOwnPropertySymbols){var u=Object.getOwnPropertySymbols(a);i&&(u=u.filter(function(l){return Object.getOwnPropertyDescriptor(a,l).enumerable})),s.push.apply(s,u)}return s}function o(a){for(var i=1;i=0)&&(a[s]=n[s]);return a}e.exports=r}}),Vd=Ue({"../../node_modules/@devtools-ds/tree/node_modules/@babel/runtime/helpers/objectWithoutProperties.js"(t,e){var r=Wd();function n(o,a){if(o==null)return{};var i=r(o,a),s,u;if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(o);for(u=0;u=0)&&Object.prototype.propertyIsEnumerable.call(o,s)&&(i[s]=o[s])}return i}e.exports=n}}),tn="storybook/interactions",Gd=`${tn}/panel`,Yd="https://youtu.be/Waht9qq7AoA",Kd="writing-tests/interaction-testing",Jd=fe.div(({theme:t,status:e})=>({padding:"4px 6px 4px 8px;",borderRadius:"4px",backgroundColor:{[de.DONE]:t.color.positive,[de.ERROR]:t.color.negative,[de.ACTIVE]:t.color.warning,[de.WAITING]:t.color.warning}[e],color:"white",fontFamily:st.fonts.base,textTransform:"uppercase",fontSize:st.size.s1,letterSpacing:3,fontWeight:st.weight.bold,width:65,textAlign:"center"})),Xd=({status:t})=>{let e={[de.DONE]:"Pass",[de.ERROR]:"Fail",[de.ACTIVE]:"Runs",[de.WAITING]:"Runs"}[t];return x.createElement(Jd,{"aria-label":"Status of the test run",status:t},e)},Qd=fe.div(({theme:t})=>({background:t.background.app,borderBottom:`1px solid ${t.appBorderColor}`,position:"sticky",top:0,zIndex:1})),Zd=fe.nav(({theme:t})=>({height:40,display:"flex",alignItems:"center",justifyContent:"space-between",paddingLeft:15})),eh=fe(Jo)(({theme:t})=>({borderRadius:4,padding:6,color:t.textMutedColor,"&:not(:disabled)":{"&:hover,&:focus-visible":{color:t.color.secondary}}})),dr=fe(cn)(({theme:t})=>({fontFamily:t.typography.fonts.base})),hr=fe(un)(({theme:t})=>({color:t.textMutedColor,margin:"0 3px"})),th=fe(Zo)({marginTop:0}),rh=fe(Qo)(({theme:t})=>({color:t.textMutedColor,justifyContent:"flex-end",textAlign:"right",whiteSpace:"nowrap",marginTop:"auto",marginBottom:1,paddingRight:15,fontSize:13})),cu=fe.div({display:"flex",alignItems:"center"}),nh=fe(hr)({marginLeft:9}),oh=fe(eh)({marginLeft:9,marginRight:9,marginBottom:1,lineHeight:"12px"}),ah=fe(hr)(({theme:t,animating:e,disabled:r})=>({opacity:r?.5:1,svg:{animation:e&&`${t.animation.rotate360} 200ms ease-out`}})),ih=({controls:t,controlStates:e,status:r,storyFileName:n,onScrollToEnd:o})=>{let a=r===de.ERROR?"Scroll to error":"Scroll to end";return x.createElement(Qd,null,x.createElement(Ko,null,x.createElement(Zd,null,x.createElement(cu,null,x.createElement(Xd,{status:r}),x.createElement(oh,{onClick:o,disabled:!o},a),x.createElement(th,null),x.createElement(Et,{trigger:"hover",hasChrome:!1,tooltip:x.createElement(dr,{note:"Go to start"})},x.createElement(nh,{"aria-label":"Go to start",onClick:t.start,disabled:!e.start},x.createElement(iu,null))),x.createElement(Et,{trigger:"hover",hasChrome:!1,tooltip:x.createElement(dr,{note:"Go back"})},x.createElement(hr,{"aria-label":"Go back",onClick:t.back,disabled:!e.back},x.createElement(nu,null))),x.createElement(Et,{trigger:"hover",hasChrome:!1,tooltip:x.createElement(dr,{note:"Go forward"})},x.createElement(hr,{"aria-label":"Go forward",onClick:t.next,disabled:!e.next},x.createElement(au,null))),x.createElement(Et,{trigger:"hover",hasChrome:!1,tooltip:x.createElement(dr,{note:"Go to end"})},x.createElement(hr,{"aria-label":"Go to end",onClick:t.end,disabled:!e.end},x.createElement(tu,null))),x.createElement(Et,{trigger:"hover",hasChrome:!1,tooltip:x.createElement(dr,{note:"Rerun"})},x.createElement(ah,{"aria-label":"Rerun",onClick:t.rerun},x.createElement(uu,null)))),n&&x.createElement(cu,null,x.createElement(rh,null,n)))))},sh=Ve(Po()),uh=Ve(jo());function Do(t){var e,r,n="";if(t)if(typeof t=="object")if(Array.isArray(t))for(e=0;eArray.isArray(t)||ArrayBuffer.isView(t)&&!(t instanceof DataView),xu=t=>t!==null&&typeof t=="object"&&!Bo(t)&&!(t instanceof Date)&&!(t instanceof RegExp)&&!(t instanceof Error)&&!(t instanceof WeakMap)&&!(t instanceof WeakSet),lh=t=>xu(t)||Bo(t)||typeof t=="function"||t instanceof Promise,Cu=t=>{let e=/unique/;return Promise.race([t,e]).then(r=>r===e?["pending"]:["fulfilled",r],r=>["rejected",r])},Qe=async(t,e,r,n,o,a)=>{let i={key:t,depth:r,value:e,type:"value",parent:void 0};if(e&&lh(e)&&r<100){let s=[],u="object";if(Bo(e)){for(let l=0;l{let f=await Qe(l.toString(),e[l],r+1,n);return f.parent=i,f});u="array"}else{let l=Object.getOwnPropertyNames(e);n&&l.sort();for(let f=0;f{let p=await Qe(l[f],d,r+1,n);return p.parent=i,p})}if(typeof e=="function"&&(u="function"),e instanceof Promise){let[f,d]=await Cu(e);s.push(async()=>{let p=await Qe("",f,r+1,n);return p.parent=i,p}),f!=="pending"&&s.push(async()=>{let p=await Qe("",d,r+1,n);return p.parent=i,p}),u="promise"}if(e instanceof Map){let f=Array.from(e.entries()).map(d=>{let[p,g]=d;return{"":p,"":g}});s.push(async()=>{let d=await Qe("",f,r+1,n);return d.parent=i,d}),s.push(async()=>{let d=await Qe("size",e.size,r+1,n);return d.parent=i,d}),u="map"}if(e instanceof Set){let f=Array.from(e.entries()).map(d=>d[1]);s.push(async()=>{let d=await Qe("",f,r+1,n);return d.parent=i,d}),s.push(async()=>{let d=await Qe("size",e.size,r+1,n);return d.parent=i,d}),u="set"}}e!==Object.prototype&&a&&s.push(async()=>{let l=await Qe("",Object.getPrototypeOf(e),r+1,n,!0);return l.parent=i,l}),i.type=u,i.children=s,i.isPrototype=o}return i},ch=(t,e,r)=>Qe("root",t,0,e===!1?e:!0,void 0,r===!1?r:!0),pu=Ve(Ld()),ph=Ve(zd()),fh=["children"],Fo=x.createContext({theme:"chrome",colorScheme:"light"}),dh=t=>{let{children:e}=t,r=(0,ph.default)(t,fh),n=x.useContext(Fo);return x.createElement(Fo.Provider,{value:(0,pu.default)((0,pu.default)({},n),r)},e)},rn=(t,e={})=>{let r=x.useContext(Fo),n=t.theme||r.theme||"chrome",o=t.colorScheme||r.colorScheme||"light",a=Ze(e[n],e[o]);return{currentColorScheme:o,currentTheme:n,themeClass:a}},fu=Ve(Ud()),xo=Ve(Hd()),hh=Ve(Vd()),mh=x.createContext({isChild:!1,depth:0,hasHover:!0}),Co=mh,Le={tree:"Tree-tree-fbbbe38",item:"Tree-item-353d6f3",group:"Tree-group-d3c3d8a",label:"Tree-label-d819155",focusWhite:"Tree-focusWhite-f1e00c2",arrow:"Tree-arrow-03ab2e7",hover:"Tree-hover-3cc4e5d",open:"Tree-open-3f1a336",dark:"Tree-dark-1b4aa00",chrome:"Tree-chrome-bcbcac6",light:"Tree-light-09174ee"},yh=["theme","hover","colorScheme","children","label","className","onUpdate","onSelect","open"],en=t=>{let{theme:e,hover:r,colorScheme:n,children:o,label:a,className:i,onUpdate:s,onSelect:u,open:l}=t,f=(0,hh.default)(t,yh),{themeClass:d,currentTheme:p}=rn({theme:e,colorScheme:n},Le),[g,h]=We(l);ct(()=>{h(l)},[l]);let v=$=>{h($),s&&s($)},b=x.Children.count(o)>0,m=($,U)=>{if($.isSameNode(U||null))return;$.querySelector('[tabindex="-1"]')?.focus(),$.setAttribute("aria-selected","true"),U?.removeAttribute("aria-selected")},y=($,U)=>{let M=$;for(;M&&M.parentElement;){if(M.getAttribute("role")===U)return M;M=M.parentElement}return null},A=$=>{let U=y($,"tree");return U?Array.from(U.querySelectorAll("li")):[]},w=$=>{let U=y($,"group"),M=U?.previousElementSibling;if(M&&M.getAttribute("tabindex")==="-1"){let V=M.parentElement,J=$.parentElement;m(V,J)}},C=($,U)=>{let M=A($);M.forEach(V=>{V.removeAttribute("aria-selected")}),U==="start"&&M[0]&&m(M[0]),U==="end"&&M[M.length-1]&&m(M[M.length-1])},I=($,U)=>{let M=A($)||[];for(let V=0;V{let M=$.target;($.key==="Enter"||$.key===" ")&&v(!g),$.key==="ArrowRight"&&g&&!U?I(M,"down"):$.key==="ArrowRight"&&v(!0),$.key==="ArrowLeft"&&(!g||U)?w(M):$.key==="ArrowLeft"&&v(!1),$.key==="ArrowDown"&&I(M,"down"),$.key==="ArrowUp"&&I(M,"up"),$.key==="Home"&&C(M,"start"),$.key==="End"&&C(M,"end")},E=($,U)=>{let M=$.target,V=y(M,"treeitem"),J=A(M)||[],te=!1;for(let ue=0;ue{let U=$.currentTarget;!U.contains(document.activeElement)&&U.getAttribute("role")==="tree"&&U.setAttribute("tabindex","0")},z=$=>{let U=$.target;if(U.getAttribute("role")==="tree"){let M=U.querySelector('[aria-selected="true"]');M?m(M):I(U,"down"),U.setAttribute("tabindex","-1")}},q=()=>{u?.()},G=$=>{let U=$*.9+.3;return{paddingLeft:`${U}em`,width:`calc(100% - ${U}em)`}},{isChild:L,depth:_,hasHover:F}=x.useContext(Co),B=F?r:!1;if(!L)return x.createElement("ul",(0,xo.default)({role:"tree",tabIndex:0,className:Ze(Le.tree,Le.group,d,i),onFocus:z,onBlur:j},f),x.createElement(Co.Provider,{value:{isChild:!0,depth:0,hasHover:B}},x.createElement(en,t)));if(!b)return x.createElement("li",(0,xo.default)({role:"treeitem",className:Le.item},f),x.createElement("div",{role:"button",className:Ze(Le.label,{[Le.hover]:B,[Le.focusWhite]:p==="firefox"}),tabIndex:-1,style:G(_),onKeyDown:$=>{D($,L)},onClick:$=>E($,!0),onFocus:q},x.createElement("span",null,a)));let H=Ze(Le.arrow,{[Le.open]:g});return x.createElement("li",{role:"treeitem","aria-expanded":g,className:Le.item},x.createElement("div",{role:"button",tabIndex:-1,className:Ze(Le.label,{[Le.hover]:B,[Le.focusWhite]:p==="firefox"}),style:G(_),onClick:$=>E($),onKeyDown:$=>D($),onFocus:q},x.createElement("span",null,x.createElement("span",{"aria-hidden":!0,className:H}),x.createElement("span",null,a))),x.createElement("ul",(0,xo.default)({role:"group",className:Ze(i,Le.group)},f),g&&x.Children.map(o,$=>x.createElement(Co.Provider,{value:{isChild:!0,depth:_+1,hasHover:B}},$))))};en.defaultProps={open:!1,hover:!0};var gh=Ve(Po()),bh=Ve(jo()),Ae={"object-inspector":"ObjectInspector-object-inspector-0c33e82",objectInspector:"ObjectInspector-object-inspector-0c33e82","object-label":"ObjectInspector-object-label-b81482b",objectLabel:"ObjectInspector-object-label-b81482b",text:"ObjectInspector-text-25f57f3",key:"ObjectInspector-key-4f712bb",value:"ObjectInspector-value-f7ec2e5",string:"ObjectInspector-string-c496000",regex:"ObjectInspector-regex-59d45a3",error:"ObjectInspector-error-b818698",boolean:"ObjectInspector-boolean-2dd1642",number:"ObjectInspector-number-a6daabb",undefined:"ObjectInspector-undefined-3a68263",null:"ObjectInspector-null-74acb50",function:"ObjectInspector-function-07bbdcd","function-decorator":"ObjectInspector-function-decorator-3d22c24",functionDecorator:"ObjectInspector-function-decorator-3d22c24",prototype:"ObjectInspector-prototype-f2449ee",dark:"ObjectInspector-dark-0c96c97",chrome:"ObjectInspector-chrome-2f3ca98",light:"ObjectInspector-light-78bef54"},vh=["ast","theme","showKey","colorScheme","className"],$e=(t,e,r,n,o)=>{let a=t.includes("-")?`"${t}"`:t,i=o<=0;return x.createElement("span",{className:Ae.text},!i&&n&&x.createElement(x.Fragment,null,x.createElement("span",{className:Ae.key},a),x.createElement("span",null,":\xA0")),x.createElement("span",{className:r},e))},Ou=t=>{let{ast:e,theme:r,showKey:n,colorScheme:o,className:a}=t,i=(0,bh.default)(t,vh),{themeClass:s}=rn({theme:r,colorScheme:o},Ae),[u,l]=We(x.createElement("span",null)),f=x.createElement("span",null);return ct(()=>{e.value instanceof Promise&&(async d=>{l($e(e.key,`Promise { "${await Cu(d)}" }`,Ae.key,n,e.depth))})(e.value)},[e,n]),typeof e.value=="number"||typeof e.value=="bigint"?f=$e(e.key,String(e.value),Ae.number,n,e.depth):typeof e.value=="boolean"?f=$e(e.key,String(e.value),Ae.boolean,n,e.depth):typeof e.value=="string"?f=$e(e.key,`"${e.value}"`,Ae.string,n,e.depth):typeof e.value>"u"?f=$e(e.key,"undefined",Ae.undefined,n,e.depth):typeof e.value=="symbol"?f=$e(e.key,e.value.toString(),Ae.string,n,e.depth):typeof e.value=="function"?f=$e(e.key,`${e.value.name}()`,Ae.key,n,e.depth):typeof e.value=="object"&&(e.value===null?f=$e(e.key,"null",Ae.null,n,e.depth):Array.isArray(e.value)?f=$e(e.key,`Array(${e.value.length})`,Ae.key,n,e.depth):e.value instanceof Date?f=$e(e.key,`Date ${e.value.toString()}`,Ae.value,n,e.depth):e.value instanceof RegExp?f=$e(e.key,e.value.toString(),Ae.regex,n,e.depth):e.value instanceof Error?f=$e(e.key,e.value.toString(),Ae.error,n,e.depth):xu(e.value)?f=$e(e.key,"{\u2026}",Ae.key,n,e.depth):f=$e(e.key,e.value.constructor.name,Ae.key,n,e.depth)),x.createElement("span",(0,gh.default)({className:Ze(s,a)},i),u,f)};Ou.defaultProps={showKey:!0};var _u=Ou,Wt=Ve(Po()),Eh=Ve(jo()),Sh=["ast","theme","previewMax","open","colorScheme","className"],mr=(t,e,r)=>{let n=[];for(let o=0;oe){n.push("\u2026 ");break}}return n},Ah=(t,e,r,n)=>{let o=t.value.length;return e?x.createElement("span",null,"Array(",o,")"):x.createElement(x.Fragment,null,x.createElement("span",null,`${n==="firefox"?"Array":""}(${o}) [ `),mr(t.children,r,!1),x.createElement("span",null,"]"))},wh=(t,e,r,n)=>t.isPrototype?x.createElement("span",null,`Object ${n==="firefox"?"{ \u2026 }":""}`):e?x.createElement("span",null,"{\u2026}"):x.createElement(x.Fragment,null,x.createElement("span",null,`${n==="firefox"?"Object ":""}{ `),mr(t.children,r,!0),x.createElement("span",null,"}")),xh=(t,e,r)=>e?x.createElement("span",null,`Promise { "${String(t.children[0].value)}" }`):x.createElement(x.Fragment,null,x.createElement("span",null,"Promise { "),mr(t.children,r,!0),x.createElement("span",null,"}")),Ch=(t,e,r,n)=>{let{size:o}=t.value;return e?x.createElement("span",null,`Map(${o})`):x.createElement(x.Fragment,null,x.createElement("span",null,`Map${n==="chrome"?`(${o})`:""} { `),mr(t.children,r,!0),x.createElement("span",null,"}"))},Oh=(t,e,r)=>{let{size:n}=t.value;return e?x.createElement("span",null,"Set(",n,")"):x.createElement(x.Fragment,null,x.createElement("span",null,`Set(${t.value.size}) {`),mr(t.children,r,!0),x.createElement("span",null,"}"))},Iu=t=>{let{ast:e,theme:r,previewMax:n,open:o,colorScheme:a,className:i}=t,s=(0,Eh.default)(t,Sh),{themeClass:u,currentTheme:l}=rn({theme:r,colorScheme:a},Ae),f=e.isPrototype||!1,d=Ze(Ae.objectLabel,u,i,{[Ae.prototype]:f}),p=e.depth<=0,g=()=>x.createElement("span",{className:f?Ae.prototype:Ae.key},p?"":`${e.key}: `);return e.type==="array"?x.createElement("span",(0,Wt.default)({className:d},s),x.createElement(g,null),Ah(e,o,n,l)):e.type==="function"?x.createElement("span",(0,Wt.default)({className:d},s),x.createElement(g,null),l==="chrome"&&x.createElement("span",{className:Ae.functionDecorator},"\u0192 "),x.createElement("span",{className:Ze({[Ae.function]:!f})},`${e.value.name}()`)):e.type==="promise"?x.createElement("span",(0,Wt.default)({className:d},s),x.createElement(g,null),xh(e,o,n)):e.type==="map"?x.createElement("span",(0,Wt.default)({className:d},s),x.createElement(g,null),Ch(e,o,n,l)):e.type==="set"?x.createElement("span",(0,Wt.default)({className:d},s),x.createElement(g,null),Oh(e,o,n)):x.createElement("span",(0,Wt.default)({className:d},s),x.createElement(g,null),wh(e,o,n,l))};Iu.defaultProps={previewMax:8,open:!1};var _h=Iu,ko=t=>{let{ast:e,expandLevel:r,depth:n}=t,[o,a]=We(),[i,s]=We(n{(async()=>{if(e.type!=="value"){let u=e.children.map(d=>d()),l=await Promise.all(u),f=(0,fu.default)((0,fu.default)({},e),{},{children:l});a(f)}})()},[e]),o?x.createElement(en,{hover:!1,open:i,label:x.createElement(_h,{open:i,ast:o}),onSelect:()=>{var u;(u=t.onSelect)===null||u===void 0||u.call(t,e)},onUpdate:u=>{s(u)}},o.children.map(u=>x.createElement(ko,{key:u.key,ast:u,depth:n+1,expandLevel:r,onSelect:t.onSelect}))):x.createElement(en,{hover:!1,label:x.createElement(_u,{ast:e}),onSelect:()=>{var u;(u=t.onSelect)===null||u===void 0||u.call(t,e)}})};ko.defaultProps={expandLevel:0,depth:0};var Ih=ko,Rh=["data","expandLevel","sortKeys","includePrototypes","className","theme","colorScheme","onSelect"],Ru=t=>{let{data:e,expandLevel:r,sortKeys:n,includePrototypes:o,className:a,theme:i,colorScheme:s,onSelect:u}=t,l=(0,uh.default)(t,Rh),[f,d]=We(void 0),{themeClass:p,currentTheme:g,currentColorScheme:h}=rn({theme:i,colorScheme:s},Ae);return ct(()=>{(async()=>d(await ch(e,n,o)))()},[e,n,o]),x.createElement("div",(0,sh.default)({className:Ze(Ae.objectInspector,a,p)},l),f&&x.createElement(dh,{theme:g,colorScheme:h},x.createElement(Ih,{ast:f,expandLevel:r,onSelect:u})))};Ru.defaultProps={expandLevel:0,sortKeys:!0,includePrototypes:!0};var Th={base:"#444",nullish:"#7D99AA",string:"#16B242",number:"#5D40D0",boolean:"#f41840",objectkey:"#698394",instance:"#A15C20",function:"#EA7509",muted:"#7D99AA",tag:{name:"#6F2CAC",suffix:"#1F99E5"},date:"#459D9C",error:{name:"#D43900",message:"#444"},regex:{source:"#A15C20",flags:"#EA7509"},meta:"#EA7509",method:"#0271B6"},Dh={base:"#eee",nullish:"#aaa",string:"#5FE584",number:"#6ba5ff",boolean:"#ff4191",objectkey:"#accfe6",instance:"#E3B551",function:"#E3B551",muted:"#aaa",tag:{name:"#f57bff",suffix:"#8EB5FF"},date:"#70D4D3",error:{name:"#f40",message:"#eee"},regex:{source:"#FAD483",flags:"#E3B551"},meta:"#FAD483",method:"#5EC1FF"},Te=()=>{let{base:t}=lr();return t==="dark"?Dh:Th},Fh=/[^A-Z0-9]/i,du=/[\s.,…]+$/gm,Tu=(t,e)=>{if(t.length<=e)return t;for(let r=e-1;r>=0;r-=1)if(Fh.test(t[r])&&r>10)return`${t.slice(0,r).replace(du,"")}\u2026`;return`${t.slice(0,e).replace(du,"")}\u2026`},Ph=t=>{try{return JSON.stringify(t,null,1)}catch{return String(t)}},Du=(t,e)=>t.flatMap((r,n)=>n===t.length-1?[r]:[r,x.cloneElement(e,{key:`sep${n}`})]),_t=({value:t,nested:e,showObjectInspector:r,callsById:n,...o})=>{switch(!0){case t===null:return x.createElement(jh,{...o});case t===void 0:return x.createElement(Bh,{...o});case Array.isArray(t):return x.createElement(Lh,{...o,value:t,callsById:n});case typeof t=="string":return x.createElement(kh,{...o,value:t});case typeof t=="number":return x.createElement(Nh,{...o,value:t});case typeof t=="boolean":return x.createElement(Mh,{...o,value:t});case Object.prototype.hasOwnProperty.call(t,"__date__"):return x.createElement(Hh,{...o,...t.__date__});case Object.prototype.hasOwnProperty.call(t,"__error__"):return x.createElement(Wh,{...o,...t.__error__});case Object.prototype.hasOwnProperty.call(t,"__regexp__"):return x.createElement(Vh,{...o,...t.__regexp__});case Object.prototype.hasOwnProperty.call(t,"__function__"):return x.createElement(qh,{...o,...t.__function__});case Object.prototype.hasOwnProperty.call(t,"__symbol__"):return x.createElement(Gh,{...o,...t.__symbol__});case Object.prototype.hasOwnProperty.call(t,"__element__"):return x.createElement(Uh,{...o,...t.__element__});case Object.prototype.hasOwnProperty.call(t,"__class__"):return x.createElement(zh,{...o,...t.__class__});case Object.prototype.hasOwnProperty.call(t,"__callId__"):return x.createElement(No,{call:n.get(t.__callId__),callsById:n});case Object.prototype.toString.call(t)==="[object Object]":return x.createElement($h,{value:t,showInspector:r,callsById:n,...o});default:return x.createElement(Yh,{value:t,...o})}},jh=t=>{let e=Te();return x.createElement("span",{style:{color:e.nullish},...t},"null")},Bh=t=>{let e=Te();return x.createElement("span",{style:{color:e.nullish},...t},"undefined")},kh=({value:t,...e})=>{let r=Te();return x.createElement("span",{style:{color:r.string},...e},JSON.stringify(Tu(t,50)))},Nh=({value:t,...e})=>{let r=Te();return x.createElement("span",{style:{color:r.number},...e},t)},Mh=({value:t,...e})=>{let r=Te();return x.createElement("span",{style:{color:r.boolean},...e},String(t))},Lh=({value:t,nested:e=!1,callsById:r})=>{let n=Te();if(e)return x.createElement("span",{style:{color:n.base}},"[\u2026]");let o=t.slice(0,3).map((i,s)=>x.createElement(_t,{key:`${s}--${JSON.stringify(i)}`,value:i,nested:!0,callsById:r})),a=Du(o,x.createElement("span",null,", "));return t.length<=3?x.createElement("span",{style:{color:n.base}},"[",a,"]"):x.createElement("span",{style:{color:n.base}},"(",t.length,") [",a,", \u2026]")},$h=({showInspector:t,value:e,callsById:r,nested:n=!1})=>{let o=lr().base==="dark",a=Te();if(t)return x.createElement(x.Fragment,null,x.createElement(Ru,{id:"interactions-object-inspector",data:e,includePrototypes:!1,colorScheme:o?"dark":"light"}));if(n)return x.createElement("span",{style:{color:a.base}},"{\u2026}");let i=Du(Object.entries(e).slice(0,2).map(([s,u])=>x.createElement(Sr,{key:s},x.createElement("span",{style:{color:a.objectkey}},s,": "),x.createElement(_t,{value:u,callsById:r,nested:!0}))),x.createElement("span",null,", "));return Object.keys(e).length<=2?x.createElement("span",{style:{color:a.base}},"{ ",i," }"):x.createElement("span",{style:{color:a.base}},"(",Object.keys(e).length,") ","{ ",i,", \u2026 }")},zh=({name:t})=>{let e=Te();return x.createElement("span",{style:{color:e.instance}},t)},qh=({name:t})=>{let e=Te();return t?x.createElement("span",{style:{color:e.function}},t):x.createElement("span",{style:{color:e.nullish,fontStyle:"italic"}},"anonymous")},Uh=({prefix:t,localName:e,id:r,classNames:n=[],innerText:o})=>{let a=t?`${t}:${e}`:e,i=Te();return x.createElement("span",{style:{wordBreak:"keep-all"}},x.createElement("span",{key:`${a}_lt`,style:{color:i.muted}},"<"),x.createElement("span",{key:`${a}_tag`,style:{color:i.tag.name}},a),x.createElement("span",{key:`${a}_suffix`,style:{color:i.tag.suffix}},r?`#${r}`:n.reduce((s,u)=>`${s}.${u}`,"")),x.createElement("span",{key:`${a}_gt`,style:{color:i.muted}},">"),!r&&n.length===0&&o&&x.createElement(x.Fragment,null,x.createElement("span",{key:`${a}_text`},o),x.createElement("span",{key:`${a}_close_lt`,style:{color:i.muted}},"<"),x.createElement("span",{key:`${a}_close_tag`,style:{color:i.tag.name}},"/",a),x.createElement("span",{key:`${a}_close_gt`,style:{color:i.muted}},">")))},Hh=({value:t})=>{let[e,r,n]=t.split(/[T.Z]/),o=Te();return x.createElement("span",{style:{whiteSpace:"nowrap",color:o.date}},e,x.createElement("span",{style:{opacity:.7}},"T"),r==="00:00:00"?x.createElement("span",{style:{opacity:.7}},r):r,n==="000"?x.createElement("span",{style:{opacity:.7}},".",n):`.${n}`,x.createElement("span",{style:{opacity:.7}},"Z"))},Wh=({name:t,message:e})=>{let r=Te();return x.createElement("span",{style:{color:r.error.name}},t,e&&": ",e&&x.createElement("span",{style:{color:r.error.message},title:e.length>50?e:""},Tu(e,50)))},Vh=({flags:t,source:e})=>{let r=Te();return x.createElement("span",{style:{whiteSpace:"nowrap",color:r.regex.flags}},"/",x.createElement("span",{style:{color:r.regex.source}},e),"/",t)},Gh=({description:t})=>{let e=Te();return x.createElement("span",{style:{whiteSpace:"nowrap",color:e.instance}},"Symbol(",t&&x.createElement("span",{style:{color:e.meta}},'"',t,'"'),")")},Yh=({value:t})=>{let e=Te();return x.createElement("span",{style:{color:e.meta}},Ph(t))},Kh=({label:t})=>{let e=Te(),{typography:r}=lr();return x.createElement("span",{style:{color:e.base,fontFamily:r.fonts.base,fontSize:r.size.s2-1}},t)},No=({call:t,callsById:e})=>{if(!t)return null;if(t.method==="step"&&t.path.length===0)return x.createElement(Kh,{label:t.args[0]});let r=t.path.flatMap((a,i)=>{let s=a.__callId__;return[s?x.createElement(No,{key:`elem${i}`,call:e.get(s),callsById:e}):x.createElement("span",{key:`elem${i}`},a),x.createElement("wbr",{key:`wbr${i}`}),x.createElement("span",{key:`dot${i}`},".")]}),n=t.args.flatMap((a,i,s)=>{let u=x.createElement(_t,{key:`node${i}`,value:a,callsById:e});return i{for(let r=e,n=1;r{try{return t==="undefined"?void 0:JSON.parse(t)}catch{return t}},Jh=fe.span(({theme:t})=>({color:t.base==="light"?t.color.positiveText:t.color.positive})),Xh=fe.span(({theme:t})=>({color:t.base==="light"?t.color.negativeText:t.color.negative})),_o=({value:t,parsed:e})=>e?x.createElement(_t,{showObjectInspector:!0,value:t,style:{color:"#D43900"}}):x.createElement(Xh,null,t),Io=({value:t,parsed:e})=>e?typeof t=="string"&&t.startsWith("called with")?x.createElement(x.Fragment,null,t):x.createElement(_t,{showObjectInspector:!0,value:t,style:{color:"#16B242"}}):x.createElement(Jh,null,t),mu=({message:t,style:e={}})=>{let r=t.split(` -`);return x.createElement("pre",{style:{margin:0,padding:"8px 10px 8px 36px",fontSize:st.size.s1,...e}},r.flatMap((n,o)=>{if(n.startsWith("expect(")){let f=hu(n,7),d=f&&7+f.length,p=f&&n.slice(d).match(/\.(to|last|nth)[A-Z]\w+\(/);if(p){let g=d+p.index+p[0].length,h=hu(n,g);if(h)return["expect(",x.createElement(_o,{key:`received_${f}`,value:f}),n.slice(d,g),x.createElement(Io,{key:`expected_${h}`,value:h}),n.slice(g+h.length),x.createElement("br",{key:`br${o}`})]}}if(n.match(/^\s*- /))return[x.createElement(Io,{key:n+o,value:n}),x.createElement("br",{key:`br${o}`})];if(n.match(/^\s*\+ /)||n.match(/^Received: $/))return[x.createElement(_o,{key:n+o,value:n}),x.createElement("br",{key:`br${o}`})];let[,a,i]=n.match(/^(Expected|Received): (.*)$/)||[];if(a&&i)return a==="Expected"?["Expected: ",x.createElement(Io,{key:n+o,value:Oo(i),parsed:!0}),x.createElement("br",{key:`br${o}`})]:["Received: ",x.createElement(_o,{key:n+o,value:Oo(i),parsed:!0}),x.createElement("br",{key:`br${o}`})];let[,s,u]=n.match(/(Expected number|Received number|Number) of calls: (\d+)$/i)||[];if(s&&u)return[`${s} of calls: `,x.createElement(_t,{key:n+o,value:Number(u)}),x.createElement("br",{key:`br${o}`})];let[,l]=n.match(/^Received has value: (.+)$/)||[];return l?["Received has value: ",x.createElement(_t,{key:n+o,value:Oo(l)}),x.createElement("br",{key:`br${o}`})]:[x.createElement("span",{key:n+o},n),x.createElement("br",{key:`br${o}`})]}))},Qh=fe.div({width:14,height:14,display:"flex",alignItems:"center",justifyContent:"center"}),Fu=({status:t})=>{let e=lr();switch(t){case de.DONE:return x.createElement(Qs,{color:e.color.positive,"data-testid":"icon-done"});case de.ERROR:return x.createElement(su,{color:e.color.negative,"data-testid":"icon-error"});case de.ACTIVE:return x.createElement(ou,{color:e.color.secondary,"data-testid":"icon-active"});case de.WAITING:return x.createElement(Qh,{"data-testid":"icon-waiting"},x.createElement(Zs,{color:Zr(.5,"#CCCCCC"),size:6}));default:return null}};function Zh(t){return Pu(t)||ju(t)}function Pu(t){return t&&typeof t=="object"&&"name"in t&&typeof t.name=="string"&&t.name==="AssertionError"}function ju(t){return t&&typeof t=="object"&&"message"in t&&typeof t.message=="string"&&t.message.startsWith("expect(")}var em=fe.div(()=>({fontFamily:st.fonts.mono,fontSize:st.size.s1,overflowWrap:"break-word",inlineSize:"calc( 100% - 40px )"})),tm=fe("div",{shouldForwardProp:t=>!["call","pausedAt"].includes(t.toString())})(({theme:t,call:e})=>({position:"relative",display:"flex",flexDirection:"column",borderBottom:`1px solid ${t.appBorderColor}`,fontFamily:st.fonts.base,fontSize:13,...e.status===de.ERROR&&{backgroundColor:t.base==="dark"?Zr(.93,t.color.negative):t.background.warning},paddingLeft:e.ancestors.length*20}),({theme:t,call:e,pausedAt:r})=>r===e.id&&{"&::before":{content:'""',position:"absolute",top:-5,zIndex:1,borderTop:"4.5px solid transparent",borderLeft:`7px solid ${t.color.warning}`,borderBottom:"4.5px solid transparent"},"&::after":{content:'""',position:"absolute",top:-1,zIndex:1,width:"100%",borderTop:`1.5px solid ${t.color.warning}`}}),rm=fe.div(({theme:t,isInteractive:e})=>({display:"flex","&:hover":e?{}:{background:t.background.hoverable}})),nm=fe("button",{shouldForwardProp:t=>!["call"].includes(t.toString())})(({theme:t,disabled:e,call:r})=>({flex:1,display:"grid",background:"none",border:0,gridTemplateColumns:"15px 1fr",alignItems:"center",minHeight:40,margin:0,padding:"8px 15px",textAlign:"start",cursor:e||r.status===de.ERROR?"default":"pointer","&:focus-visible":{outline:0,boxShadow:`inset 3px 0 0 0 ${r.status===de.ERROR?t.color.warning:t.color.secondary}`,background:r.status===de.ERROR?"transparent":t.background.hoverable},"& > div":{opacity:r.status===de.WAITING?.5:1}})),om=fe.div({padding:6}),am=fe(un)(({theme:t})=>({color:t.textMutedColor,margin:"0 3px"})),im=fe(cn)(({theme:t})=>({fontFamily:t.typography.fonts.base})),yu=fe("div")(({theme:t})=>({padding:"8px 10px 8px 36px",fontSize:st.size.s1,color:t.color.defaultText,pre:{margin:0,padding:0}})),sm=({exception:t})=>{if(ju(t))return se(mu,{...t});if(Pu(t))return se(yu,null,se(mu,{message:`${t.message}${t.diff?` - -${t.diff}`:""}`,style:{padding:0}}),se("p",null,"See the full stack trace in the browser console."));let e=t.message.split(` - -`),r=e.length>1;return se(yu,null,se("pre",null,e[0]),r&&se("p",null,"See the full stack trace in the browser console."))},um=({call:t,callsById:e,controls:r,controlStates:n,childCallIds:o,isHidden:a,isCollapsed:i,toggleCollapsed:s,pausedAt:u})=>{let[l,f]=We(!1),d=!n.goto||!t.interceptable||!!t.ancestors.length;return a?null:se(tm,{call:t,pausedAt:u},se(rm,{isInteractive:d},se(nm,{"aria-label":"Interaction step",call:t,onClick:()=>r.goto(t.id),disabled:d,onMouseEnter:()=>n.goto&&f(!0),onMouseLeave:()=>n.goto&&f(!1)},se(Fu,{status:l?de.ACTIVE:t.status}),se(em,{style:{marginLeft:6,marginBottom:1}},se(No,{call:t,callsById:e}))),se(om,null,o?.length>0&&se(Et,{hasChrome:!1,tooltip:se(im,{note:`${i?"Show":"Hide"} interactions`})},se(am,{onClick:s},se(ru,null))))),t.status===de.ERROR&&t.exception?.callId===t.id&&se(sm,{exception:t.exception}))},lm=fe.div(({theme:t})=>({display:"flex",fontSize:t.typography.size.s2-1,gap:25})),cm=fe.div(({theme:t})=>({width:1,height:16,backgroundColor:t.appBorderColor})),pm=()=>{let[t,e]=We(!0),r=Vo().getDocsUrl({subpath:Kd,versioned:!0,renderer:!0});return ct(()=>{let n=setTimeout(()=>{e(!1)},100);return()=>clearTimeout(n)},[]),t?null:x.createElement(Xo,{title:"Interaction testing",description:x.createElement(x.Fragment,null,"Interaction tests allow you to verify the functional aspects of UIs. Write a play function for your story and you'll see it run here."),footer:x.createElement(lm,null,x.createElement(ln,{href:Yd,target:"_blank",withArrow:!0},x.createElement(lu,null)," Watch 8m video"),x.createElement(cm,null),x.createElement(ln,{href:r,target:"_blank",withArrow:!0},x.createElement(eu,null)," Read docs"))})},fm=fe.div(({theme:t})=>({height:"100%",background:t.background.content})),gu=fe.div(({theme:t})=>({borderBottom:`1px solid ${t.appBorderColor}`,backgroundColor:t.base==="dark"?Zr(.93,t.color.negative):t.background.warning,padding:15,fontSize:t.typography.size.s2-1,lineHeight:"19px"})),Ro=fe.code(({theme:t})=>({margin:"0 1px",padding:3,fontSize:t.typography.size.s1-1,lineHeight:1,verticalAlign:"top",background:"rgba(0, 0, 0, 0.05)",border:`1px solid ${t.appBorderColor}`,borderRadius:3})),bu=fe.div({paddingBottom:4,fontWeight:"bold"}),dm=fe.p({margin:0,padding:"0 0 20px"}),vu=fe.pre(({theme:t})=>({margin:0,padding:0,"&:not(:last-child)":{paddingBottom:16},fontSize:t.typography.size.s1-1})),hm=Ar(function({calls:t,controls:e,controlStates:r,interactions:n,fileName:o,hasException:a,caughtException:i,unhandledErrors:s,isPlaying:u,pausedAt:l,onScrollToEnd:f,endRef:d}){return se(fm,null,(n.length>0||a)&&se(ih,{controls:e,controlStates:r,status:u?de.ACTIVE:a?de.ERROR:de.DONE,storyFileName:o,onScrollToEnd:f}),se("div",{"aria-label":"Interactions list"},n.map(p=>se(um,{key:p.id,call:p,callsById:t,controls:e,controlStates:r,childCallIds:p.childCallIds,isHidden:p.isHidden,isCollapsed:p.isCollapsed,toggleCollapsed:p.toggleCollapsed,pausedAt:l}))),i&&!Zh(i)&&se(gu,null,se(bu,null,"Caught exception in ",se(Ro,null,"play")," function"),se(vu,{"data-chromatic":"ignore"},Eu(i))),s&&se(gu,null,se(bu,null,"Unhandled Errors"),se(dm,null,"Found ",s.length," unhandled error",s.length>1?"s":""," ","while running the play function. This might cause false positive assertions. Resolve unhandled errors or ignore unhandled errors with setting the",se(Ro,null,"test.dangerouslyIgnoreUnhandledErrors")," ","parameter to ",se(Ro,null,"true"),"."),s.map((p,g)=>se(vu,{key:g,"data-chromatic":"ignore"},Eu(p)))),se("div",{ref:d}),!u&&!i&&n.length===0&&se(pm,null))});function Eu(t){return t.stack||`${t.name}: ${t.message}`}var To={start:!1,back:!1,goto:!1,next:!1,end:!1},Su=({log:t,calls:e,collapsed:r,setCollapsed:n})=>{let o=new Map,a=new Map;return t.map(({callId:i,ancestors:s,status:u})=>{let l=!1;return s.forEach(f=>{r.has(f)&&(l=!0),a.set(f,(a.get(f)||[]).concat(i))}),{...e.get(i),status:u,isHidden:l}}).map(i=>{let s=i.status===de.ERROR&&o.get(i.ancestors.slice(-1)[0])?.status===de.ACTIVE?de.ACTIVE:i.status;return o.set(i.id,{...i,status:s}),{...i,status:s,childCallIds:a.get(i.id),isCollapsed:r.has(i.id),toggleCollapsed:()=>n(u=>(u.has(i.id)?u.delete(i.id):u.add(i.id),new Set(u)))}})},mm=Ar(function({storyId:t}){let[e,r]=sn(tn,{controlStates:To,isErrored:!1,pausedAt:void 0,interactions:[],isPlaying:!1,hasException:!1,caughtException:void 0,interactionsCount:0,unhandledErrors:void 0}),[n,o]=We(void 0),[a,i]=We(new Set),{controlStates:s=To,isErrored:u=!1,pausedAt:l=void 0,interactions:f=[],isPlaying:d=!1,caughtException:p=void 0,unhandledErrors:g=void 0}=e,h=wr([]),v=wr(new Map),b=({status:E,...j})=>v.current.set(j.id,j),m=wr();ct(()=>{let E;return ur.IntersectionObserver&&(E=new ur.IntersectionObserver(([j])=>o(j.isIntersecting?void 0:j.target),{root:ur.document.querySelector("#panel-tab-content")}),m.current&&E.observe(m.current)),()=>E?.disconnect()},[]);let y=Ho({[mt.CALL]:b,[mt.SYNC]:E=>{r(j=>{let z=Su({log:E.logItems,calls:v.current,collapsed:a,setCollapsed:i});return{...j,controlStates:E.controlStates,pausedAt:E.pausedAt,interactions:z,interactionsCount:z.filter(({method:q})=>q!=="step").length}}),h.current=E.logItems},[nt]:E=>{if(E.newPhase==="preparing"){r({controlStates:To,isErrored:!1,pausedAt:void 0,interactions:[],isPlaying:!1,hasException:!1,caughtException:void 0,interactionsCount:0,unhandledErrors:void 0});return}r(j=>({...j,isPlaying:E.newPhase==="playing",pausedAt:void 0,...E.newPhase==="rendering"?{isErrored:!1,caughtException:void 0}:{}}))},[Ir]:()=>{r(E=>({...E,isErrored:!0}))},[Or]:E=>{r(j=>({...j,caughtException:E}))},[Rr]:E=>{r(j=>({...j,unhandledErrors:E}))}},[a]);ct(()=>{r(E=>{let j=Su({log:h.current,calls:v.current,collapsed:a,setCollapsed:i});return{...E,interactions:j,interactionsCount:j.filter(({method:z})=>z!=="step").length}})},[a]);let A=zo(()=>({start:()=>y(mt.START,{storyId:t}),back:()=>y(mt.BACK,{storyId:t}),goto:E=>y(mt.GOTO,{storyId:t,callId:E}),next:()=>y(mt.NEXT,{storyId:t}),end:()=>y(mt.END,{storyId:t}),rerun:()=>{y(Qt,{storyId:t})}}),[t]),w=Wo("fileName",""),[C]=w.toString().split("/").slice(-1),I=()=>n?.scrollIntoView({behavior:"smooth",block:"end"}),D=!!p||!!g||f.some(E=>E.status===de.ERROR);return u?x.createElement(Sr,{key:"interactions"}):x.createElement(Sr,{key:"interactions"},x.createElement(hm,{calls:v.current,controls:A,controlStates:s,interactions:f,fileName:C,hasException:D,caughtException:p,unhandledErrors:g,isPlaying:d,pausedAt:l,endRef:m,onScrollToEnd:n&&I}))}),ym=fe(Fu)({marginLeft:5});function gm(){let[t={}]=sn(tn),{hasException:e,interactionsCount:r}=t;return x.createElement("div",null,x.createElement(ea,{col:1},x.createElement("span",{style:{display:"inline-block",verticalAlign:"middle"}},"Interactions"),r&&!e?x.createElement(Yo,{status:"neutral"},r):null,e?x.createElement(ym,{status:de.ERROR}):null))}an.register(tn,t=>{an.add(Gd,{type:Uo.PANEL,title:gm,match:({viewMode:e})=>e==="story",render:({active:e})=>{let r=$o(({state:n})=>({storyId:n.storyId}),[]);return x.createElement(Go,{active:e},x.createElement(qo,{filter:r},({storyId:n})=>x.createElement(mm,{storyId:n})))}})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/interactions-9/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/interactions-9/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/links-1/manager-bundle.js b/storybook-static/sb-addons/links-1/manager-bundle.js deleted file mode 100644 index 2372992..0000000 --- a/storybook-static/sb-addons/links-1/manager-bundle.js +++ /dev/null @@ -1,3 +0,0 @@ -try{ -(()=>{var E=__STORYBOOK_API__,{ActiveTabs:T,Consumer:h,ManagerContext:p,Provider:A,RequestResponseError:b,addons:a,combineParameters:O,controlOrMetaKey:R,controlOrMetaSymbol:k,eventMatchesShortcut:v,eventToShortcut:g,experimental_requestResponse:I,isMacLike:C,isShortcutTaken:M,keyToSymbol:P,merge:x,mockChannel:f,optionOrAltSymbol:q,shortcutMatchesShortcut:D,shortcutToHumanString:G,types:K,useAddonState:V,useArgTypes:$,useArgs:B,useChannel:N,useGlobalTypes:Q,useGlobals:U,useParameter:Y,useSharedState:H,useStoryPrepared:L,useStorybookApi:j,useStorybookState:w}=__STORYBOOK_API__;var e="storybook/links",n={NAVIGATE:`${e}/navigate`,REQUEST:`${e}/request`,RECEIVE:`${e}/receive`};a.register(e,t=>{t.on(n.REQUEST,({kind:u,name:S})=>{let c=t.storyId(u,S);t.emit(n.RECEIVE,c)})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/links-1/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/links-1/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/remix-react-router-10/manager-bundle.js b/storybook-static/sb-addons/remix-react-router-10/manager-bundle.js deleted file mode 100644 index fff1f05..0000000 --- a/storybook-static/sb-addons/remix-react-router-10/manager-bundle.js +++ /dev/null @@ -1,7 +0,0 @@ -try{ -(()=>{var Ht=__STORYBOOK_API__,{ActiveTabs:Ut,Consumer:Vt,ManagerContext:oe,Provider:jt,RequestResponseError:Gt,addons:j,combineParameters:Ft,controlOrMetaKey:Yt,controlOrMetaSymbol:Wt,eventMatchesShortcut:$t,eventToShortcut:Jt,experimental_requestResponse:Kt,isMacLike:Xt,isShortcutTaken:Zt,keyToSymbol:zt,merge:qt,mockChannel:Qt,optionOrAltSymbol:er,shortcutMatchesShortcut:tr,shortcutToHumanString:rr,types:ne,useAddonState:or,useArgTypes:nr,useArgs:ar,useChannel:ae,useGlobalTypes:sr,useGlobals:lr,useParameter:ir,useSharedState:cr,useStoryPrepared:Er,useStorybookApi:pr,useStorybookState:_r}=__STORYBOOK_API__;var r=__REACT__,{Children:se,Component:mr,Fragment:le,Profiler:Rr,PureComponent:Ar,StrictMode:fr,Suspense:Nr,__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED:br,cloneElement:Cr,createContext:x,createElement:yr,createFactory:Sr,createRef:Lr,forwardRef:gr,isValidElement:Ir,lazy:hr,memo:h,startTransition:vr,unstable_act:Dr,useCallback:S,useContext:L,useDebugValue:xr,useDeferredValue:Mr,useEffect:G,useId:Br,useImperativeHandle:Pr,useInsertionEffect:kr,useLayoutEffect:ie,useMemo:ce,useReducer:wr,useRef:Hr,useState:y,useSyncExternalStore:Ur,useTransition:Vr,version:jr}=__REACT__;var Ee={name:"storybook-addon-remix-react-router",version:"3.0.0",description:"Use Remix React Router in your stories. (Formerly storybook-addon-react-router-v6)",keywords:["storybook","storybook-addons","remix","react","router","react-router","remix-react-router"],repository:{type:"git",url:"git+https://github.com/JesusTheHun/storybook-addon-remix-react-router.git"},author:"Jonathan MASSUCHETTI ",license:"Apache-2.0",exports:{".":{types:"./dist/index.d.ts",require:"./dist/index.cjs",import:"./dist/index.js"},"./preview":{types:"./dist/preview.d.ts",import:"./dist/preview.js",require:"./dist/preview.js"},"./preset":"./dist/preset.cjs","./manager":"./dist/manager.js","./package.json":"./package.json"},type:"module",main:"dist/index.js",module:"dist/index.mjs",types:"dist/index.d.ts",files:["dist/**/*","README.md","*.js","*.d.ts"],scripts:{clean:"rimraf ./dist",prebuild:"npm run clean",build:"tsup","build:watch":"tsup --watch",test:"vitest","test:ci":"vitest run",start:'concurrently "npm run build:watch" "npm run storybook --quiet"',prerelease:"zx scripts/prepublish-checks.mjs",release:"npm run build && auto shipit","eject-ts":"zx scripts/eject-typescript.mjs",storybook:"storybook dev -p 6006 --no-open","build-storybook":"storybook build",chromatic:"npx chromatic --project-token=e29962fd32f5",prepare:"husky install","prettier:check":"prettier --check .","prettier:write":"prettier --write ."},dependencies:{"compare-versions":"^6.0.0","react-inspector":"6.0.2"},peerDependencies:{"@storybook/blocks":"^8.0.0","@storybook/channels":"^8.0.0","@storybook/components":"^8.0.0","@storybook/core-events":"^8.0.0","@storybook/manager-api":"^8.0.0","@storybook/preview-api":"^8.0.0","@storybook/theming":"^8.0.0",react:"^16.8.0 || ^17.0.0 || ^18.0.0","react-dom":"^16.8.0 || ^17.0.0 || ^18.0.0","react-router-dom":"^6.4.0"},devDependencies:{"@remix-run/router":"^1.3.3","@remix-run/web-fetch":"^4.3.2","@storybook/addon-essentials":"^8.0.0","@storybook/components":"^8.0.0","@storybook/core-common":"^8.0.0","@storybook/core-events":"^8.0.0","@storybook/manager-api":"^8.0.0","@storybook/preview-api":"^8.0.0","@storybook/react":"^8.0.0","@storybook/react-vite":"^8.0.0","@storybook/testing-library":"^0.2.2-next.0","@storybook/theming":"^8.0.0","@testing-library/jest-dom":"^5.16.5","@testing-library/react":"^14.0.0","@testing-library/user-event":"^14.4.3","@types/node":"^18.15.0","@types/react-inspector":"^4.0.2","@typescript-eslint/eslint-plugin":"^5.61.0","@typescript-eslint/parser":"^5.61.0","@vitejs/plugin-react":"^3.1.0",auto:"^11.1.1",boxen:"^5.0.1",chromatic:"^6.17.4",concurrently:"^6.2.0",dedent:"^0.7.0",eslint:"^8.44.0","eslint-config-prettier":"^8.8.0","eslint-plugin-prettier":"^4.2.1","eslint-plugin-react-hooks":"^4.6.0","eslint-plugin-react-refresh":"^0.4.1","expect-type":"^0.16.0",husky:"^8.0.3",jsdom:"^21.1.0","lint-staged":"^13.2.3",prettier:"2.8.8",prompts:"^2.4.2","prop-types":"^15.8.1",react:"^18.0.1","react-dom":"^18.0.1","react-router-dom":"^6.14.2",rimraf:"^3.0.2",storybook:"^8.0.0",tsup:"^8.0.2",typescript:"5.3.2","utility-types":"^3.10.0",vite:"^4.3.9",vitest:"^0.29.2",zx:"^1.14.1"},"lint-staged":{"**/*":"prettier --write --ignore-unknown"},peerDependenciesMeta:{react:{optional:!0},"react-dom":{optional:!0}},publishConfig:{access:"public"},storybook:{displayName:"Remix React Router (formerly React Router v6)",supportedFrameworks:["react"],icon:"https://user-images.githubusercontent.com/94478/167677696-c05c668e-6290-4ced-8b6b-c2a40211f8e7.jpg"},bugs:{url:"https://github.com/JesusTheHun/storybook-addon-remix-react-router/issues"},homepage:"https://github.com/JesusTheHun/storybook-addon-remix-react-router#readme"};var Jr=__STORYBOOK_COMPONENTS__,{A:Kr,ActionBar:pe,AddonPanel:_e,Badge:Xr,Bar:Zr,Blockquote:zr,Button:qr,ClipboardCode:Qr,Code:eo,DL:to,Div:ro,DocumentWrapper:oo,EmptyTabContent:no,ErrorFormatter:ao,FlexBar:so,Form:lo,H1:io,H2:co,H3:Eo,H4:po,H5:_o,H6:uo,HR:Oo,IconButton:To,IconButtonSkeleton:mo,Icons:Ro,Img:Ao,LI:fo,Link:No,ListItem:bo,Loader:Co,Modal:yo,OL:So,P:Lo,Placeholder:go,Pre:Io,ResetWrapper:ho,ScrollArea:ue,Separator:vo,Spaced:Do,Span:xo,StorybookIcon:Mo,StorybookLogo:Bo,Symbols:Po,SyntaxHighlighter:ko,TT:wo,TabBar:Ho,TabButton:Uo,TabWrapper:Vo,Table:jo,Tabs:Go,TabsState:Fo,TooltipLinkList:Yo,TooltipMessage:Wo,TooltipNote:$o,UL:Jo,WithTooltip:Ko,WithTooltipPure:Xo,Zoom:Zo,codeCommon:zo,components:qo,createCopyToClipboardFunction:Qo,getStoryHref:en,icons:tn,interleaveSeparators:rn,nameSpaceClassNames:on,resetComponents:nn,withReset:an}=__STORYBOOK_COMPONENTS__;var pn=__STORYBOOK_CORE_EVENTS__,{ARGTYPES_INFO_REQUEST:_n,ARGTYPES_INFO_RESPONSE:un,CHANNEL_CREATED:On,CHANNEL_WS_DISCONNECT:dn,CONFIG_ERROR:Tn,CREATE_NEW_STORYFILE_REQUEST:mn,CREATE_NEW_STORYFILE_RESPONSE:Rn,CURRENT_STORY_WAS_SET:An,DOCS_PREPARED:fn,DOCS_RENDERED:Nn,FILE_COMPONENT_SEARCH_REQUEST:bn,FILE_COMPONENT_SEARCH_RESPONSE:Cn,FORCE_REMOUNT:yn,FORCE_RE_RENDER:Sn,GLOBALS_UPDATED:Ln,NAVIGATE_URL:gn,PLAY_FUNCTION_THREW_EXCEPTION:In,PRELOAD_ENTRIES:hn,PREVIEW_BUILDER_PROGRESS:vn,PREVIEW_KEYDOWN:Dn,REGISTER_SUBSCRIPTION:xn,REQUEST_WHATS_NEW_DATA:Mn,RESET_STORY_ARGS:Bn,RESULT_WHATS_NEW_DATA:Pn,SAVE_STORY_REQUEST:kn,SAVE_STORY_RESPONSE:wn,SELECT_STORY:Hn,SET_CONFIG:Un,SET_CURRENT_STORY:Vn,SET_GLOBALS:jn,SET_INDEX:Gn,SET_STORIES:Fn,SET_WHATS_NEW_CACHE:Yn,SHARED_STATE_CHANGED:Wn,SHARED_STATE_SET:$n,STORIES_COLLAPSE_ALL:Jn,STORIES_EXPAND_ALL:Kn,STORY_ARGS_UPDATED:Xn,STORY_CHANGED:M,STORY_ERRORED:Zn,STORY_INDEX_INVALIDATED:zn,STORY_MISSING:qn,STORY_PREPARED:Qn,STORY_RENDERED:ea,STORY_RENDER_PHASE_CHANGED:ta,STORY_SPECIFIED:ra,STORY_THREW_EXCEPTION:oa,STORY_UNCHANGED:na,TELEMETRY_ERROR:aa,TOGGLE_WHATS_NEW_NOTIFICATIONS:sa,UNHANDLED_ERRORS_WHILE_PLAYING:la,UPDATE_GLOBALS:ia,UPDATE_QUERY_PARAMS:ca,UPDATE_STORY_ARGS:Ea}=__STORYBOOK_CORE_EVENTS__;var Te=/^[v^~<>=]*?(\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+)(?:\.([x*]|\d+))?(?:-([\da-z\-]+(?:\.[\da-z\-]+)*))?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i,B=e=>{if(typeof e!="string")throw new TypeError("Invalid argument expected string");let t=e.match(Te);if(!t)throw new Error(`Invalid argument not valid semver ('${e}' received)`);return t.shift(),t},Oe=e=>e==="*"||e==="x"||e==="X",de=e=>{let t=parseInt(e,10);return isNaN(t)?e:t},we=(e,t)=>typeof e!=typeof t?[String(e),String(t)]:[e,t],He=(e,t)=>{if(Oe(e)||Oe(t))return 0;let[o,n]=we(de(e),de(t));return o>n?1:o{for(let o=0;o{let o=B(e),n=B(t),a=o.pop(),s=n.pop(),c=P(o,n);return c!==0?c:a&&s?P(a.split("."),s.split(".")):a||s?a?-1:1:0};var Ue={">":[1],">=":[0,1],"=":[0],"<=":[-1,0],"<":[-1],"!=":[-1,1]},Sa=Object.keys(Ue);var qa=__STORYBOOK_THEMING__,{CacheProvider:Qa,ClassNames:es,Global:ts,ThemeProvider:rs,background:os,color:ns,convert:as,create:ss,createCache:ls,createGlobal:is,createReset:cs,css:Es,darken:ps,ensure:_s,ignoreSsrWarning:us,isPropValid:Os,jsx:ds,keyframes:Ts,lighten:ms,styled:v,themes:Rs,typography:As,useTheme:fs,withTheme:me}=__STORYBOOK_THEMING__;var je=Object.create,J=Object.defineProperty,Ge=Object.getOwnPropertyDescriptor,be=Object.getOwnPropertyNames,Fe=Object.getPrototypeOf,Ye=Object.prototype.hasOwnProperty,K=(e,t)=>function(){return t||(0,e[be(e)[0]])((t={exports:{}}).exports,t),t.exports},We=(e,t)=>{for(var o in t)J(e,o,{get:t[o],enumerable:!0})},$e=(e,t,o,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of be(t))!Ye.call(e,a)&&a!==o&&J(e,a,{get:()=>t[a],enumerable:!(n=Ge(t,a))||n.enumerable});return e},Je=(e,t,o)=>(o=e!=null?je(Fe(e)):{},$e(t||!e||!e.__esModule?J(o,"default",{value:e,enumerable:!0}):o,e)),Ke=K({"node_modules/is-object/index.js"(e,t){"use strict";t.exports=function(n){return typeof n=="object"&&n!==null}}}),Xe=K({"node_modules/is-window/index.js"(e,t){"use strict";t.exports=function(o){if(o==null)return!1;var n=Object(o);return n===n.window}}}),Ze=K({"node_modules/is-dom/index.js"(e,t){var o=Ke(),n=Xe();function a(s){return!o(s)||!n(window)||typeof window.Node!="function"?!1:typeof s.nodeType=="number"&&typeof s.nodeName=="string"}t.exports=a}}),U={};We(U,{chromeDark:()=>ze,chromeLight:()=>qe});var ze={BASE_FONT_FAMILY:"Menlo, monospace",BASE_FONT_SIZE:"11px",BASE_LINE_HEIGHT:1.2,BASE_BACKGROUND_COLOR:"rgb(36, 36, 36)",BASE_COLOR:"rgb(213, 213, 213)",OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES:10,OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES:5,OBJECT_NAME_COLOR:"rgb(227, 110, 236)",OBJECT_VALUE_NULL_COLOR:"rgb(127, 127, 127)",OBJECT_VALUE_UNDEFINED_COLOR:"rgb(127, 127, 127)",OBJECT_VALUE_REGEXP_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_STRING_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_SYMBOL_COLOR:"rgb(233, 63, 59)",OBJECT_VALUE_NUMBER_COLOR:"hsl(252, 100%, 75%)",OBJECT_VALUE_BOOLEAN_COLOR:"hsl(252, 100%, 75%)",OBJECT_VALUE_FUNCTION_PREFIX_COLOR:"rgb(85, 106, 242)",HTML_TAG_COLOR:"rgb(93, 176, 215)",HTML_TAGNAME_COLOR:"rgb(93, 176, 215)",HTML_TAGNAME_TEXT_TRANSFORM:"lowercase",HTML_ATTRIBUTE_NAME_COLOR:"rgb(155, 187, 220)",HTML_ATTRIBUTE_VALUE_COLOR:"rgb(242, 151, 102)",HTML_COMMENT_COLOR:"rgb(137, 137, 137)",HTML_DOCTYPE_COLOR:"rgb(192, 192, 192)",ARROW_COLOR:"rgb(145, 145, 145)",ARROW_MARGIN_RIGHT:3,ARROW_FONT_SIZE:12,ARROW_ANIMATION_DURATION:"0",TREENODE_FONT_FAMILY:"Menlo, monospace",TREENODE_FONT_SIZE:"11px",TREENODE_LINE_HEIGHT:1.2,TREENODE_PADDING_LEFT:12,TABLE_BORDER_COLOR:"rgb(85, 85, 85)",TABLE_TH_BACKGROUND_COLOR:"rgb(44, 44, 44)",TABLE_TH_HOVER_COLOR:"rgb(48, 48, 48)",TABLE_SORT_ICON_COLOR:"black",TABLE_DATA_BACKGROUND_IMAGE:"linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(51, 139, 255, 0.0980392) 50%, rgba(51, 139, 255, 0.0980392))",TABLE_DATA_BACKGROUND_SIZE:"128px 32px"},qe={BASE_FONT_FAMILY:"Menlo, monospace",BASE_FONT_SIZE:"11px",BASE_LINE_HEIGHT:1.2,BASE_BACKGROUND_COLOR:"white",BASE_COLOR:"black",OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES:10,OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES:5,OBJECT_NAME_COLOR:"rgb(136, 19, 145)",OBJECT_VALUE_NULL_COLOR:"rgb(128, 128, 128)",OBJECT_VALUE_UNDEFINED_COLOR:"rgb(128, 128, 128)",OBJECT_VALUE_REGEXP_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_STRING_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_SYMBOL_COLOR:"rgb(196, 26, 22)",OBJECT_VALUE_NUMBER_COLOR:"rgb(28, 0, 207)",OBJECT_VALUE_BOOLEAN_COLOR:"rgb(28, 0, 207)",OBJECT_VALUE_FUNCTION_PREFIX_COLOR:"rgb(13, 34, 170)",HTML_TAG_COLOR:"rgb(168, 148, 166)",HTML_TAGNAME_COLOR:"rgb(136, 18, 128)",HTML_TAGNAME_TEXT_TRANSFORM:"lowercase",HTML_ATTRIBUTE_NAME_COLOR:"rgb(153, 69, 0)",HTML_ATTRIBUTE_VALUE_COLOR:"rgb(26, 26, 166)",HTML_COMMENT_COLOR:"rgb(35, 110, 37)",HTML_DOCTYPE_COLOR:"rgb(192, 192, 192)",ARROW_COLOR:"#6e6e6e",ARROW_MARGIN_RIGHT:3,ARROW_FONT_SIZE:12,ARROW_ANIMATION_DURATION:"0",TREENODE_FONT_FAMILY:"Menlo, monospace",TREENODE_FONT_SIZE:"11px",TREENODE_LINE_HEIGHT:1.2,TREENODE_PADDING_LEFT:12,TABLE_BORDER_COLOR:"#aaa",TABLE_TH_BACKGROUND_COLOR:"#eee",TABLE_TH_HOVER_COLOR:"hsla(0, 0%, 90%, 1)",TABLE_SORT_ICON_COLOR:"#6e6e6e",TABLE_DATA_BACKGROUND_IMAGE:"linear-gradient(to bottom, white, white 50%, rgb(234, 243, 255) 50%, rgb(234, 243, 255))",TABLE_DATA_BACKGROUND_SIZE:"128px 32px"},Ce=x([{},()=>{}]),F={WebkitTouchCallout:"none",WebkitUserSelect:"none",KhtmlUserSelect:"none",MozUserSelect:"none",msUserSelect:"none",OUserSelect:"none",userSelect:"none"},w=e=>({DOMNodePreview:{htmlOpenTag:{base:{color:e.HTML_TAG_COLOR},tagName:{color:e.HTML_TAGNAME_COLOR,textTransform:e.HTML_TAGNAME_TEXT_TRANSFORM},htmlAttributeName:{color:e.HTML_ATTRIBUTE_NAME_COLOR},htmlAttributeValue:{color:e.HTML_ATTRIBUTE_VALUE_COLOR}},htmlCloseTag:{base:{color:e.HTML_TAG_COLOR},offsetLeft:{marginLeft:-e.TREENODE_PADDING_LEFT},tagName:{color:e.HTML_TAGNAME_COLOR,textTransform:e.HTML_TAGNAME_TEXT_TRANSFORM}},htmlComment:{color:e.HTML_COMMENT_COLOR},htmlDoctype:{color:e.HTML_DOCTYPE_COLOR}},ObjectPreview:{objectDescription:{fontStyle:"italic"},preview:{fontStyle:"italic"},arrayMaxProperties:e.OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES,objectMaxProperties:e.OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES},ObjectName:{base:{color:e.OBJECT_NAME_COLOR},dimmed:{opacity:.6}},ObjectValue:{objectValueNull:{color:e.OBJECT_VALUE_NULL_COLOR},objectValueUndefined:{color:e.OBJECT_VALUE_UNDEFINED_COLOR},objectValueRegExp:{color:e.OBJECT_VALUE_REGEXP_COLOR},objectValueString:{color:e.OBJECT_VALUE_STRING_COLOR},objectValueSymbol:{color:e.OBJECT_VALUE_SYMBOL_COLOR},objectValueNumber:{color:e.OBJECT_VALUE_NUMBER_COLOR},objectValueBoolean:{color:e.OBJECT_VALUE_BOOLEAN_COLOR},objectValueFunctionPrefix:{color:e.OBJECT_VALUE_FUNCTION_PREFIX_COLOR,fontStyle:"italic"},objectValueFunctionName:{fontStyle:"italic"}},TreeView:{treeViewOutline:{padding:0,margin:0,listStyleType:"none"}},TreeNode:{treeNodeBase:{color:e.BASE_COLOR,backgroundColor:e.BASE_BACKGROUND_COLOR,lineHeight:e.TREENODE_LINE_HEIGHT,cursor:"default",boxSizing:"border-box",listStyle:"none",fontFamily:e.TREENODE_FONT_FAMILY,fontSize:e.TREENODE_FONT_SIZE},treeNodePreviewContainer:{},treeNodePlaceholder:{whiteSpace:"pre",fontSize:e.ARROW_FONT_SIZE,marginRight:e.ARROW_MARGIN_RIGHT,...F},treeNodeArrow:{base:{color:e.ARROW_COLOR,display:"inline-block",fontSize:e.ARROW_FONT_SIZE,marginRight:e.ARROW_MARGIN_RIGHT,...parseFloat(e.ARROW_ANIMATION_DURATION)>0?{transition:`transform ${e.ARROW_ANIMATION_DURATION} ease 0s`}:{},...F},expanded:{WebkitTransform:"rotateZ(90deg)",MozTransform:"rotateZ(90deg)",transform:"rotateZ(90deg)"},collapsed:{WebkitTransform:"rotateZ(0deg)",MozTransform:"rotateZ(0deg)",transform:"rotateZ(0deg)"}},treeNodeChildNodesContainer:{margin:0,paddingLeft:e.TREENODE_PADDING_LEFT}},TableInspector:{base:{color:e.BASE_COLOR,position:"relative",border:`1px solid ${e.TABLE_BORDER_COLOR}`,fontFamily:e.BASE_FONT_FAMILY,fontSize:e.BASE_FONT_SIZE,lineHeight:"120%",boxSizing:"border-box",cursor:"default"}},TableInspectorHeaderContainer:{base:{top:0,height:"17px",left:0,right:0,overflowX:"hidden"},table:{tableLayout:"fixed",borderSpacing:0,borderCollapse:"separate",height:"100%",width:"100%",margin:0}},TableInspectorDataContainer:{tr:{display:"table-row"},td:{boxSizing:"border-box",border:"none",height:"16px",verticalAlign:"top",padding:"1px 4px",WebkitUserSelect:"text",whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",lineHeight:"14px"},div:{position:"static",top:"17px",bottom:0,overflowY:"overlay",transform:"translateZ(0)",left:0,right:0,overflowX:"hidden"},table:{positon:"static",left:0,top:0,right:0,bottom:0,borderTop:"0 none transparent",margin:0,backgroundImage:e.TABLE_DATA_BACKGROUND_IMAGE,backgroundSize:e.TABLE_DATA_BACKGROUND_SIZE,tableLayout:"fixed",borderSpacing:0,borderCollapse:"separate",width:"100%",fontSize:e.BASE_FONT_SIZE,lineHeight:"120%"}},TableInspectorTH:{base:{position:"relative",height:"auto",textAlign:"left",backgroundColor:e.TABLE_TH_BACKGROUND_COLOR,borderBottom:`1px solid ${e.TABLE_BORDER_COLOR}`,fontWeight:"normal",verticalAlign:"middle",padding:"0 4px",whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",lineHeight:"14px",":hover":{backgroundColor:e.TABLE_TH_HOVER_COLOR}},div:{whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",fontSize:e.BASE_FONT_SIZE,lineHeight:"120%"}},TableInspectorLeftBorder:{none:{borderLeft:"none"},solid:{borderLeft:`1px solid ${e.TABLE_BORDER_COLOR}`}},TableInspectorSortIcon:{display:"block",marginRight:3,width:8,height:7,marginTop:-7,color:e.TABLE_SORT_ICON_COLOR,fontSize:12,...F}}),Y="chromeLight",ye=x(w(U[Y])),N=e=>L(ye)[e],X=e=>({theme:o=Y,...n})=>{let a=ce(()=>{switch(Object.prototype.toString.call(o)){case"[object String]":return w(U[o]);case"[object Object]":return w(o);default:return w(U[Y])}},[o]);return r.createElement(ye.Provider,{value:a},r.createElement(e,{...n}))},Qe=({expanded:e,styles:t})=>r.createElement("span",{style:{...t.base,...e?t.expanded:t.collapsed}},"\u25B6"),et=h(e=>{e={expanded:!0,nodeRenderer:({name:_})=>r.createElement("span",null,_),onClick:()=>{},shouldShowArrow:!1,shouldShowPlaceholder:!0,...e};let{expanded:t,onClick:o,children:n,nodeRenderer:a,title:s,shouldShowArrow:c,shouldShowPlaceholder:l}=e,i=N("TreeNode"),p=a;return r.createElement("li",{"aria-expanded":t,role:"treeitem",style:i.treeNodeBase,title:s},r.createElement("div",{style:i.treeNodePreviewContainer,onClick:o},c||se.count(n)>0?r.createElement(Qe,{expanded:t,styles:i.treeNodeArrow}):l&&r.createElement("span",{style:i.treeNodePlaceholder},"\xA0"),r.createElement(p,{...e})),r.createElement("ol",{role:"group",style:i.treeNodeChildNodesContainer},t?n:void 0))}),V="$",Re="*";function H(e,t){return!t(e).next().done}var tt=e=>Array.from({length:e},(t,o)=>[V].concat(Array.from({length:o},()=>"*")).join(".")),rt=(e,t,o,n,a)=>{let s=[].concat(tt(n)).concat(o).filter(l=>typeof l=="string"),c=[];return s.forEach(l=>{let i=l.split("."),p=(_,T,m)=>{if(m===i.length){c.push(T);return}let b=i[m];if(m===0)H(_,t)&&(b===V||b===Re)&&p(_,V,m+1);else if(b===Re)for(let{name:u,data:O}of t(_))H(O,t)&&p(O,`${T}.${u}`,m+1);else{let u=_[b];H(u,t)&&p(u,`${T}.${b}`,m+1)}};p(e,"",0)}),c.reduce((l,i)=>(l[i]=!0,l),{...a})},Se=h(e=>{let{data:t,dataIterator:o,path:n,depth:a,nodeRenderer:s}=e,[c,l]=L(Ce),i=H(t,o),p=!!c[n],_=S(()=>i&&l(T=>({...T,[n]:!p})),[i,l,n,p]);return r.createElement(et,{expanded:p,onClick:_,shouldShowArrow:i,shouldShowPlaceholder:a>0,nodeRenderer:s,...e},p?[...o(t)].map(({name:T,data:m,...b})=>r.createElement(Se,{name:T,data:m,depth:a+1,path:`${n}.${T}`,key:T,dataIterator:o,nodeRenderer:s,...b})):null)}),Le=h(({name:e,data:t,dataIterator:o,nodeRenderer:n,expandPaths:a,expandLevel:s})=>{let c=N("TreeView"),l=y({}),[,i]=l;return ie(()=>i(p=>rt(t,o,a,s,p)),[t,o,a,s]),r.createElement(Ce.Provider,{value:l},r.createElement("ol",{role:"tree",style:c.treeViewOutline},r.createElement(Se,{name:e,data:t,dataIterator:o,depth:0,path:V,nodeRenderer:n})))}),Z=({name:e,dimmed:t=!1,styles:o={}})=>{let n=N("ObjectName"),a={...n.base,...t?n.dimmed:{},...o};return r.createElement("span",{style:a},e)},D=({object:e,styles:t})=>{let o=N("ObjectValue"),n=a=>({...o[a],...t});switch(typeof e){case"bigint":return r.createElement("span",{style:n("objectValueNumber")},String(e),"n");case"number":return r.createElement("span",{style:n("objectValueNumber")},String(e));case"string":return r.createElement("span",{style:n("objectValueString")},'"',e,'"');case"boolean":return r.createElement("span",{style:n("objectValueBoolean")},String(e));case"undefined":return r.createElement("span",{style:n("objectValueUndefined")},"undefined");case"object":return e===null?r.createElement("span",{style:n("objectValueNull")},"null"):e instanceof Date?r.createElement("span",null,e.toString()):e instanceof RegExp?r.createElement("span",{style:n("objectValueRegExp")},e.toString()):Array.isArray(e)?r.createElement("span",null,`Array(${e.length})`):e.constructor?typeof e.constructor.isBuffer=="function"&&e.constructor.isBuffer(e)?r.createElement("span",null,`Buffer[${e.length}]`):r.createElement("span",null,e.constructor.name):r.createElement("span",null,"Object");case"function":return r.createElement("span",null,r.createElement("span",{style:n("objectValueFunctionPrefix")},"\u0192\xA0"),r.createElement("span",{style:n("objectValueFunctionName")},e.name,"()"));case"symbol":return r.createElement("span",{style:n("objectValueSymbol")},e.toString());default:return r.createElement("span",null)}},ge=Object.prototype.hasOwnProperty,ot=Object.prototype.propertyIsEnumerable;function W(e,t){let o=Object.getOwnPropertyDescriptor(e,t);if(o.get)try{return o.get()}catch{return o.get}return e[t]}function Ae(e,t){return e.length===0?[]:e.slice(1).reduce((o,n)=>o.concat([t,n]),[e[0]])}var $=({data:e})=>{let t=N("ObjectPreview"),o=e;if(typeof o!="object"||o===null||o instanceof Date||o instanceof RegExp)return r.createElement(D,{object:o});if(Array.isArray(o)){let n=t.arrayMaxProperties,a=o.slice(0,n).map((c,l)=>r.createElement(D,{key:l,object:c}));o.length>n&&a.push(r.createElement("span",{key:"ellipsis"},"\u2026"));let s=o.length;return r.createElement(r.Fragment,null,r.createElement("span",{style:t.objectDescription},s===0?"":`(${s})\xA0`),r.createElement("span",{style:t.preview},"[",Ae(a,", "),"]"))}else{let n=t.objectMaxProperties,a=[];for(let c in o)if(ge.call(o,c)){let l;a.length===n-1&&Object.keys(o).length>n&&(l=r.createElement("span",{key:"ellipsis"},"\u2026"));let i=W(o,c);if(a.push(r.createElement("span",{key:c},r.createElement(Z,{name:c||'""'}),":\xA0",r.createElement(D,{object:i}),l)),l)break}let s=o.constructor?o.constructor.name:"Object";return r.createElement(r.Fragment,null,r.createElement("span",{style:t.objectDescription},s==="Object"?"":`${s} `),r.createElement("span",{style:t.preview},"{",Ae(a,", "),"}"))}},nt=({name:e,data:t})=>typeof e=="string"?r.createElement("span",null,r.createElement(Z,{name:e}),r.createElement("span",null,": "),r.createElement($,{data:t})):r.createElement($,{data:t}),at=({name:e,data:t,isNonenumerable:o=!1})=>{let n=t;return r.createElement("span",null,typeof e=="string"?r.createElement(Z,{name:e,dimmed:o}):r.createElement($,{data:e}),r.createElement("span",null,": "),r.createElement(D,{object:n}))},st=(e,t)=>function*(n){if(!(typeof n=="object"&&n!==null||typeof n=="function"))return;let s=Array.isArray(n);if(!s&&n[Symbol.iterator]){let c=0;for(let l of n){if(Array.isArray(l)&&l.length===2){let[i,p]=l;yield{name:i,data:p}}else yield{name:c.toString(),data:l};c++}}else{let c=Object.getOwnPropertyNames(n);t===!0&&!s?c.sort():typeof t=="function"&&c.sort(t);for(let l of c)if(ot.call(n,l)){let i=W(n,l);yield{name:l||'""',data:i}}else if(e){let i;try{i=W(n,l)}catch{}i!==void 0&&(yield{name:l,data:i,isNonenumerable:!0})}e&&n!==Object.prototype&&(yield{name:"__proto__",data:Object.getPrototypeOf(n),isNonenumerable:!0})}},lt=({depth:e,name:t,data:o,isNonenumerable:n})=>e===0?r.createElement(nt,{name:t,data:o}):r.createElement(at,{name:t,data:o,isNonenumerable:n}),it=({showNonenumerable:e=!1,sortObjectKeys:t,nodeRenderer:o,...n})=>{let a=st(e,t),s=o||lt;return r.createElement(Le,{nodeRenderer:s,dataIterator:a,...n})},Ie=X(it);function ct(e){if(typeof e=="object"){let t=[];if(Array.isArray(e)){let n=e.length;t=[...Array(n).keys()]}else e!==null&&(t=Object.keys(e));let o=t.reduce((n,a)=>{let s=e[a];return typeof s=="object"&&s!==null&&Object.keys(s).reduce((l,i)=>(l.includes(i)||l.push(i),l),n),n},[]);return{rowHeaders:t,colHeaders:o}}}var Et=({rows:e,columns:t,rowsData:o})=>{let n=N("TableInspectorDataContainer"),a=N("TableInspectorLeftBorder");return r.createElement("div",{style:n.div},r.createElement("table",{style:n.table},r.createElement("colgroup",null),r.createElement("tbody",null,e.map((s,c)=>r.createElement("tr",{key:s,style:n.tr},r.createElement("td",{style:{...n.td,...a.none}},s),t.map(l=>{let i=o[c];return typeof i=="object"&&i!==null&&ge.call(i,l)?r.createElement("td",{key:l,style:{...n.td,...a.solid}},r.createElement(D,{object:i[l]})):r.createElement("td",{key:l,style:{...n.td,...a.solid}})}))))))},pt=e=>r.createElement("div",{style:{position:"absolute",top:1,right:0,bottom:1,display:"flex",alignItems:"center"}},e.children),_t=({sortAscending:e})=>{let t=N("TableInspectorSortIcon"),o=e?"\u25B2":"\u25BC";return r.createElement("div",{style:t},o)},fe=({sortAscending:e=!1,sorted:t=!1,onClick:o=void 0,borderStyle:n={},children:a,...s})=>{let c=N("TableInspectorTH"),[l,i]=y(!1),p=S(()=>i(!0),[]),_=S(()=>i(!1),[]);return r.createElement("th",{...s,style:{...c.base,...n,...l?c.base[":hover"]:{}},onMouseEnter:p,onMouseLeave:_,onClick:o},r.createElement("div",{style:c.div},a),t&&r.createElement(pt,null,r.createElement(_t,{sortAscending:e})))},ut=({indexColumnText:e="(index)",columns:t=[],sorted:o,sortIndexColumn:n,sortColumn:a,sortAscending:s,onTHClick:c,onIndexTHClick:l})=>{let i=N("TableInspectorHeaderContainer"),p=N("TableInspectorLeftBorder");return r.createElement("div",{style:i.base},r.createElement("table",{style:i.table},r.createElement("tbody",null,r.createElement("tr",null,r.createElement(fe,{borderStyle:p.none,sorted:o&&n,sortAscending:s,onClick:l},e),t.map(_=>r.createElement(fe,{borderStyle:p.solid,key:_,sorted:o&&a===_,sortAscending:s,onClick:c.bind(null,_)},_))))))},Ot=({data:e,columns:t})=>{let o=N("TableInspector"),[{sorted:n,sortIndexColumn:a,sortColumn:s,sortAscending:c},l]=y({sorted:!1,sortIndexColumn:!1,sortColumn:void 0,sortAscending:!1}),i=S(()=>{l(({sortIndexColumn:u,sortAscending:O})=>({sorted:!0,sortIndexColumn:!0,sortColumn:void 0,sortAscending:u?!O:!0}))},[]),p=S(u=>{l(({sortColumn:O,sortAscending:d})=>({sorted:!0,sortIndexColumn:!1,sortColumn:u,sortAscending:u===O?!d:!0}))},[]);if(typeof e!="object"||e===null)return r.createElement("div",null);let{rowHeaders:_,colHeaders:T}=ct(e);t!==void 0&&(T=t);let m=_.map(u=>e[u]),b;if(s!==void 0?b=m.map((u,O)=>typeof u=="object"&&u!==null?[u[s],O]:[void 0,O]):a&&(b=_.map((u,O)=>[_[O],O])),b!==void 0){let u=(d,Me)=>(Be,Pe)=>{let z=d(Be),q=d(Pe),Q=typeof z,ee=typeof q,te=(I,re)=>Ire?1:0,g;if(Q===ee)g=te(z,q);else{let I={string:0,number:1,object:2,symbol:3,boolean:4,undefined:5,function:6};g=te(I[Q],I[ee])}return Me||(g=-g),g},O=b.sort(u(d=>d[0],c)).map(d=>d[1]);_=O.map(d=>_[d]),m=O.map(d=>m[d])}return r.createElement("div",{style:o.base},r.createElement(ut,{columns:T,sorted:n,sortIndexColumn:a,sortColumn:s,sortAscending:c,onTHClick:p,onIndexTHClick:i}),r.createElement(Et,{rows:_,columns:T,rowsData:m}))},Us=X(Ot),dt=80,he=e=>e.childNodes.length===0||e.childNodes.length===1&&e.childNodes[0].nodeType===Node.TEXT_NODE&&e.textContent.lengthr.createElement("span",{style:o.base},"<",r.createElement("span",{style:o.tagName},e),(()=>{if(t){let n=[];for(let a=0;a"),Ne=({tagName:e,isChildNode:t=!1,styles:o})=>r.createElement("span",{style:Object.assign({},o.base,t&&o.offsetLeft)},""),mt={1:"ELEMENT_NODE",3:"TEXT_NODE",7:"PROCESSING_INSTRUCTION_NODE",8:"COMMENT_NODE",9:"DOCUMENT_NODE",10:"DOCUMENT_TYPE_NODE",11:"DOCUMENT_FRAGMENT_NODE"},Rt=({isCloseTag:e,data:t,expanded:o})=>{let n=N("DOMNodePreview");if(e)return r.createElement(Ne,{styles:n.htmlCloseTag,isChildNode:!0,tagName:t.tagName});switch(t.nodeType){case Node.ELEMENT_NODE:return r.createElement("span",null,r.createElement(Tt,{tagName:t.tagName,attributes:t.attributes,styles:n.htmlOpenTag}),he(t)?t.textContent:!o&&"\u2026",!o&&r.createElement(Ne,{tagName:t.tagName,styles:n.htmlCloseTag}));case Node.TEXT_NODE:return r.createElement("span",null,t.textContent);case Node.CDATA_SECTION_NODE:return r.createElement("span",null,"");case Node.COMMENT_NODE:return r.createElement("span",{style:n.htmlComment},"");case Node.PROCESSING_INSTRUCTION_NODE:return r.createElement("span",null,t.nodeName);case Node.DOCUMENT_TYPE_NODE:return r.createElement("span",{style:n.htmlDoctype},"");case Node.DOCUMENT_NODE:return r.createElement("span",null,t.nodeName);case Node.DOCUMENT_FRAGMENT_NODE:return r.createElement("span",null,t.nodeName);default:return r.createElement("span",null,mt[t.nodeType])}},At=function*(e){if(e&&e.childNodes){if(he(e))return;for(let o=0;or.createElement(Le,{nodeRenderer:Rt,dataIterator:At,...e}),Gs=X(ft),Fs=Je(Ze());var C="storybook/react-router-v6",Nt=`${C}/panel`,bt="reactRouter",E={CLEAR:`${C}/clear`,NAVIGATION:`${C}/navigation`,STORY_LOADED:`${C}/story-loaded`,ROUTE_MATCHES:`${C}/route-matches`,ACTION_INVOKED:`${C}/action_invoked`,ACTION_SETTLED:`${C}/action_settled`,LOADER_INVOKED:`${C}/loader_invoked`,LOADER_SETTLED:`${C}/loader_settled`},ve=Ee.version;function De(){let[e,t]=y();G(()=>{if(e!==void 0)return;let n=new AbortController;return fetch("https://registry.npmjs.org/storybook-addon-remix-react-router/latest",{signal:n.signal}).then(a=>a.json()).then(a=>t(a.version)).catch(()=>{}),()=>n.abort()},[e]);let o=e===void 0?void 0:k(e,ve)===1;return{currentAddonVersion:ve,latestAddonVersion:e,addonUpdateAvailable:o}}var Ct=v.p` - background: #ffebba; - padding: 5px; - margin-top: 0; -`,yt=v.div({flex:1,padding:"0 0 0 5px"}),St=v.div({display:"flex",padding:0,borderLeft:"5px solid transparent",borderBottom:"1px solid transparent",transition:"all 0.1s",alignItems:"flex-start",whiteSpace:"pre"}),Lt=me(({theme:e,...t})=>r.createElement(Ie,{theme:e.addonActionsTheme||"chromeLight",...t})),gt=ue,It=({routerEvents:e,onClear:t})=>r.createElement(le,null,r.createElement(xe,{title:"reactRouterLogger"},e.map((o,n)=>r.createElement(St,{key:n},r.createElement(yt,null,r.createElement(Lt,{name:ht[o.type],data:o.data,showNonenumerable:!1,sortObjectKeys:!1,expandPaths:["$.routeParams","$.searchParams","$.routeMatches.*","$.routeMatches.*.*","$.matches","$.matches.*","$.matches.*.*"]}))))),r.createElement(pe,{actionItems:[{title:"Clear",onClick:t}]})),ht={[E.NAVIGATION]:"Navigate",[E.STORY_LOADED]:"Story rendered",[E.ROUTE_MATCHES]:"New route matches",[E.ACTION_INVOKED]:"Action invoked",[E.ACTION_SETTLED]:"Action settled",[E.LOADER_INVOKED]:"Loader invoked",[E.LOADER_SETTLED]:"Loader settled"},xe=v(({children:e,title:t})=>r.createElement(gt,{horizontal:!0,vertical:!0,title:t},e))({margin:0,padding:"10px 5px 20px"});xe.displayName="Wrapper";var vt=e=>{let[t,o]=y([]),{latestAddonVersion:n,addonUpdateAvailable:a}=De(),s=l=>{o(i=>[...i,l])};ae({[E.ROUTE_MATCHES]:s,[E.NAVIGATION]:s,[E.STORY_LOADED]:s,[E.ACTION_INVOKED]:s,[E.ACTION_SETTLED]:s,[E.LOADER_INVOKED]:s,[E.LOADER_SETTLED]:s,[M]:()=>o([])});let c=()=>{e.api.emit(E.CLEAR),o([])};return r.createElement(_e,{...e},a&&r.createElement(Ct,null,"Version ",n," is now available !"," ",r.createElement("a",{href:`https://github.com/JesusTheHun/storybook-addon-remix-react-router/releases/tag/v${n}`},"Changelog"),"."),r.createElement(It,{routerEvents:t,onClear:c}))};function Dt(){let{api:e}=L(oe),{addonUpdateAvailable:t}=De(),[o,n]=y(0),a=()=>n(l=>l+1),s=()=>n(0);G(()=>(e.on(M,s),e.on(E.ROUTE_MATCHES,a),e.on(E.NAVIGATION,a),e.on(E.ACTION_INVOKED,a),e.on(E.ACTION_SETTLED,a),e.on(E.LOADER_INVOKED,a),e.on(E.LOADER_SETTLED,a),e.on(E.CLEAR,s),()=>{e.off(M,s),e.off(E.ROUTE_MATCHES,a),e.off(E.NAVIGATION,a),e.off(E.ACTION_INVOKED,a),e.off(E.ACTION_SETTLED,a),e.off(E.LOADER_INVOKED,a),e.off(E.LOADER_SETTLED,a),e.off(E.CLEAR,s)}),[e]);let c=[];return t&&c.push("\u26A1\uFE0F"),o&&c.push(`(${o})`),r.createElement(r.Fragment,null,"React Router ",c.join(" "))}j.register(C,e=>{j.add(Nt,{type:ne.PANEL,paramKey:bt,title:r.createElement(Dt,null),match:({viewMode:t})=>t==="story",render:({active:t})=>r.createElement(vt,{active:t||!1,api:e,key:C})})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/remix-react-router-10/manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/remix-react-router-10/manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js b/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js deleted file mode 100644 index 92f5dd4..0000000 --- a/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +++ /dev/null @@ -1,3 +0,0 @@ -try{ -(()=>{var T=__STORYBOOK_API__,{ActiveTabs:_,Consumer:g,ManagerContext:O,Provider:f,RequestResponseError:A,addons:n,combineParameters:v,controlOrMetaKey:P,controlOrMetaSymbol:k,eventMatchesShortcut:x,eventToShortcut:M,experimental_requestResponse:R,isMacLike:w,isShortcutTaken:C,keyToSymbol:G,merge:I,mockChannel:K,optionOrAltSymbol:q,shortcutMatchesShortcut:B,shortcutToHumanString:F,types:Y,useAddonState:j,useArgTypes:E,useArgs:H,useChannel:L,useGlobalTypes:N,useGlobals:z,useParameter:D,useSharedState:J,useStoryPrepared:Q,useStorybookApi:U,useStorybookState:V}=__STORYBOOK_API__;var S=(()=>{let e;return typeof window<"u"?e=window:typeof globalThis<"u"?e=globalThis:typeof window<"u"?e=window:typeof self<"u"?e=self:e={},e})(),u="static-filter";n.register(u,e=>{let i=Object.entries(S.TAGS_OPTIONS??{}).reduce((t,r)=>{let[o,c]=r;return c.excludeFromSidebar&&(t[o]=!0),t},{});e.experimental_setFilter(u,t=>{let r=t.tags??[];return(r.includes("dev")||t.type==="docs")&&r.filter(o=>i[o]).length===0})});})(); -}catch(e){ console.error("[Storybook] One of your manager-entries failed: " + import.meta.url, e); } diff --git a/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js.LEGAL.txt b/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js.LEGAL.txt deleted file mode 100644 index e69de29..0000000 diff --git a/storybook-static/sb-common-assets/favicon.svg b/storybook-static/sb-common-assets/favicon.svg deleted file mode 100644 index 571f90f..0000000 --- a/storybook-static/sb-common-assets/favicon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 b/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 deleted file mode 100644 index 33563d8..0000000 Binary files a/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 and /dev/null differ diff --git a/storybook-static/sb-common-assets/nunito-sans-bold.woff2 b/storybook-static/sb-common-assets/nunito-sans-bold.woff2 deleted file mode 100644 index 19fcc94..0000000 Binary files a/storybook-static/sb-common-assets/nunito-sans-bold.woff2 and /dev/null differ diff --git a/storybook-static/sb-common-assets/nunito-sans-italic.woff2 b/storybook-static/sb-common-assets/nunito-sans-italic.woff2 deleted file mode 100644 index 827096d..0000000 Binary files a/storybook-static/sb-common-assets/nunito-sans-italic.woff2 and /dev/null differ diff --git a/storybook-static/sb-common-assets/nunito-sans-regular.woff2 b/storybook-static/sb-common-assets/nunito-sans-regular.woff2 deleted file mode 100644 index c527ba4..0000000 Binary files a/storybook-static/sb-common-assets/nunito-sans-regular.woff2 and /dev/null differ diff --git a/storybook-static/sb-manager/globals-module-info.js b/storybook-static/sb-manager/globals-module-info.js deleted file mode 100644 index 4a53a7b..0000000 --- a/storybook-static/sb-manager/globals-module-info.js +++ /dev/null @@ -1,995 +0,0 @@ -import ESM_COMPAT_Module from "node:module"; -import { fileURLToPath as ESM_COMPAT_fileURLToPath } from 'node:url'; -import { dirname as ESM_COMPAT_dirname } from 'node:path'; -const __filename = ESM_COMPAT_fileURLToPath(import.meta.url); -const __dirname = ESM_COMPAT_dirname(__filename); -const require = ESM_COMPAT_Module.createRequire(import.meta.url); - -// src/manager/globals/exports.ts -var t = { - react: [ - "Children", - "Component", - "Fragment", - "Profiler", - "PureComponent", - "StrictMode", - "Suspense", - "__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED", - "cloneElement", - "createContext", - "createElement", - "createFactory", - "createRef", - "forwardRef", - "isValidElement", - "lazy", - "memo", - "startTransition", - "unstable_act", - "useCallback", - "useContext", - "useDebugValue", - "useDeferredValue", - "useEffect", - "useId", - "useImperativeHandle", - "useInsertionEffect", - "useLayoutEffect", - "useMemo", - "useReducer", - "useRef", - "useState", - "useSyncExternalStore", - "useTransition", - "version" - ], - "react-dom": [ - "__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED", - "createPortal", - "createRoot", - "findDOMNode", - "flushSync", - "hydrate", - "hydrateRoot", - "render", - "unmountComponentAtNode", - "unstable_batchedUpdates", - "unstable_renderSubtreeIntoContainer", - "version" - ], - "react-dom/client": ["createRoot", "hydrateRoot"], - "@storybook/icons": [ - "AccessibilityAltIcon", - "AccessibilityIcon", - "AddIcon", - "AdminIcon", - "AlertAltIcon", - "AlertIcon", - "AlignLeftIcon", - "AlignRightIcon", - "AppleIcon", - "ArrowDownIcon", - "ArrowLeftIcon", - "ArrowRightIcon", - "ArrowSolidDownIcon", - "ArrowSolidLeftIcon", - "ArrowSolidRightIcon", - "ArrowSolidUpIcon", - "ArrowUpIcon", - "AzureDevOpsIcon", - "BackIcon", - "BasketIcon", - "BatchAcceptIcon", - "BatchDenyIcon", - "BeakerIcon", - "BellIcon", - "BitbucketIcon", - "BoldIcon", - "BookIcon", - "BookmarkHollowIcon", - "BookmarkIcon", - "BottomBarIcon", - "BottomBarToggleIcon", - "BoxIcon", - "BranchIcon", - "BrowserIcon", - "ButtonIcon", - "CPUIcon", - "CalendarIcon", - "CameraIcon", - "CategoryIcon", - "CertificateIcon", - "ChangedIcon", - "ChatIcon", - "CheckIcon", - "ChevronDownIcon", - "ChevronLeftIcon", - "ChevronRightIcon", - "ChevronSmallDownIcon", - "ChevronSmallLeftIcon", - "ChevronSmallRightIcon", - "ChevronSmallUpIcon", - "ChevronUpIcon", - "ChromaticIcon", - "ChromeIcon", - "CircleHollowIcon", - "CircleIcon", - "ClearIcon", - "CloseAltIcon", - "CloseIcon", - "CloudHollowIcon", - "CloudIcon", - "CogIcon", - "CollapseIcon", - "CommandIcon", - "CommentAddIcon", - "CommentIcon", - "CommentsIcon", - "CommitIcon", - "CompassIcon", - "ComponentDrivenIcon", - "ComponentIcon", - "ContrastIcon", - "ControlsIcon", - "CopyIcon", - "CreditIcon", - "CrossIcon", - "DashboardIcon", - "DatabaseIcon", - "DeleteIcon", - "DiamondIcon", - "DirectionIcon", - "DiscordIcon", - "DocChartIcon", - "DocListIcon", - "DocumentIcon", - "DownloadIcon", - "DragIcon", - "EditIcon", - "EllipsisIcon", - "EmailIcon", - "ExpandAltIcon", - "ExpandIcon", - "EyeCloseIcon", - "EyeIcon", - "FaceHappyIcon", - "FaceNeutralIcon", - "FaceSadIcon", - "FacebookIcon", - "FailedIcon", - "FastForwardIcon", - "FigmaIcon", - "FilterIcon", - "FlagIcon", - "FolderIcon", - "FormIcon", - "GDriveIcon", - "GithubIcon", - "GitlabIcon", - "GlobeIcon", - "GoogleIcon", - "GraphBarIcon", - "GraphLineIcon", - "GraphqlIcon", - "GridAltIcon", - "GridIcon", - "GrowIcon", - "HeartHollowIcon", - "HeartIcon", - "HomeIcon", - "HourglassIcon", - "InfoIcon", - "ItalicIcon", - "JumpToIcon", - "KeyIcon", - "LightningIcon", - "LightningOffIcon", - "LinkBrokenIcon", - "LinkIcon", - "LinkedinIcon", - "LinuxIcon", - "ListOrderedIcon", - "ListUnorderedIcon", - "LocationIcon", - "LockIcon", - "MarkdownIcon", - "MarkupIcon", - "MediumIcon", - "MemoryIcon", - "MenuIcon", - "MergeIcon", - "MirrorIcon", - "MobileIcon", - "MoonIcon", - "NutIcon", - "OutboxIcon", - "OutlineIcon", - "PaintBrushIcon", - "PaperClipIcon", - "ParagraphIcon", - "PassedIcon", - "PhoneIcon", - "PhotoDragIcon", - "PhotoIcon", - "PinAltIcon", - "PinIcon", - "PlayBackIcon", - "PlayIcon", - "PlayNextIcon", - "PlusIcon", - "PointerDefaultIcon", - "PointerHandIcon", - "PowerIcon", - "PrintIcon", - "ProceedIcon", - "ProfileIcon", - "PullRequestIcon", - "QuestionIcon", - "RSSIcon", - "RedirectIcon", - "ReduxIcon", - "RefreshIcon", - "ReplyIcon", - "RepoIcon", - "RequestChangeIcon", - "RewindIcon", - "RulerIcon", - "SearchIcon", - "ShareAltIcon", - "ShareIcon", - "ShieldIcon", - "SideBySideIcon", - "SidebarAltIcon", - "SidebarAltToggleIcon", - "SidebarIcon", - "SidebarToggleIcon", - "SpeakerIcon", - "StackedIcon", - "StarHollowIcon", - "StarIcon", - "StickerIcon", - "StopAltIcon", - "StopIcon", - "StorybookIcon", - "StructureIcon", - "SubtractIcon", - "SunIcon", - "SupportIcon", - "SwitchAltIcon", - "SyncIcon", - "TabletIcon", - "ThumbsUpIcon", - "TimeIcon", - "TimerIcon", - "TransferIcon", - "TrashIcon", - "TwitterIcon", - "TypeIcon", - "UbuntuIcon", - "UndoIcon", - "UnfoldIcon", - "UnlockIcon", - "UnpinIcon", - "UploadIcon", - "UserAddIcon", - "UserAltIcon", - "UserIcon", - "UsersIcon", - "VSCodeIcon", - "VerifiedIcon", - "VideoIcon", - "WandIcon", - "WatchIcon", - "WindowsIcon", - "WrenchIcon", - "YoutubeIcon", - "ZoomIcon", - "ZoomOutIcon", - "ZoomResetIcon", - "iconList" - ], - "storybook/internal/components": [ - "A", - "ActionBar", - "AddonPanel", - "Badge", - "Bar", - "Blockquote", - "Button", - "ClipboardCode", - "Code", - "DL", - "Div", - "DocumentWrapper", - "EmptyTabContent", - "ErrorFormatter", - "FlexBar", - "Form", - "H1", - "H2", - "H3", - "H4", - "H5", - "H6", - "HR", - "IconButton", - "IconButtonSkeleton", - "Icons", - "Img", - "LI", - "Link", - "ListItem", - "Loader", - "Modal", - "OL", - "P", - "Placeholder", - "Pre", - "ResetWrapper", - "ScrollArea", - "Separator", - "Spaced", - "Span", - "StorybookIcon", - "StorybookLogo", - "Symbols", - "SyntaxHighlighter", - "TT", - "TabBar", - "TabButton", - "TabWrapper", - "Table", - "Tabs", - "TabsState", - "TooltipLinkList", - "TooltipMessage", - "TooltipNote", - "UL", - "WithTooltip", - "WithTooltipPure", - "Zoom", - "codeCommon", - "components", - "createCopyToClipboardFunction", - "getStoryHref", - "icons", - "interleaveSeparators", - "nameSpaceClassNames", - "resetComponents", - "withReset" - ], - "@storybook/components": [ - "A", - "ActionBar", - "AddonPanel", - "Badge", - "Bar", - "Blockquote", - "Button", - "ClipboardCode", - "Code", - "DL", - "Div", - "DocumentWrapper", - "EmptyTabContent", - "ErrorFormatter", - "FlexBar", - "Form", - "H1", - "H2", - "H3", - "H4", - "H5", - "H6", - "HR", - "IconButton", - "IconButtonSkeleton", - "Icons", - "Img", - "LI", - "Link", - "ListItem", - "Loader", - "Modal", - "OL", - "P", - "Placeholder", - "Pre", - "ResetWrapper", - "ScrollArea", - "Separator", - "Spaced", - "Span", - "StorybookIcon", - "StorybookLogo", - "Symbols", - "SyntaxHighlighter", - "TT", - "TabBar", - "TabButton", - "TabWrapper", - "Table", - "Tabs", - "TabsState", - "TooltipLinkList", - "TooltipMessage", - "TooltipNote", - "UL", - "WithTooltip", - "WithTooltipPure", - "Zoom", - "codeCommon", - "components", - "createCopyToClipboardFunction", - "getStoryHref", - "icons", - "interleaveSeparators", - "nameSpaceClassNames", - "resetComponents", - "withReset" - ], - "@storybook/core/components": [ - "A", - "ActionBar", - "AddonPanel", - "Badge", - "Bar", - "Blockquote", - "Button", - "ClipboardCode", - "Code", - "DL", - "Div", - "DocumentWrapper", - "EmptyTabContent", - "ErrorFormatter", - "FlexBar", - "Form", - "H1", - "H2", - "H3", - "H4", - "H5", - "H6", - "HR", - "IconButton", - "IconButtonSkeleton", - "Icons", - "Img", - "LI", - "Link", - "ListItem", - "Loader", - "Modal", - "OL", - "P", - "Placeholder", - "Pre", - "ResetWrapper", - "ScrollArea", - "Separator", - "Spaced", - "Span", - "StorybookIcon", - "StorybookLogo", - "Symbols", - "SyntaxHighlighter", - "TT", - "TabBar", - "TabButton", - "TabWrapper", - "Table", - "Tabs", - "TabsState", - "TooltipLinkList", - "TooltipMessage", - "TooltipNote", - "UL", - "WithTooltip", - "WithTooltipPure", - "Zoom", - "codeCommon", - "components", - "createCopyToClipboardFunction", - "getStoryHref", - "icons", - "interleaveSeparators", - "nameSpaceClassNames", - "resetComponents", - "withReset" - ], - "storybook/internal/manager-api": [ - "ActiveTabs", - "Consumer", - "ManagerContext", - "Provider", - "RequestResponseError", - "addons", - "combineParameters", - "controlOrMetaKey", - "controlOrMetaSymbol", - "eventMatchesShortcut", - "eventToShortcut", - "experimental_requestResponse", - "isMacLike", - "isShortcutTaken", - "keyToSymbol", - "merge", - "mockChannel", - "optionOrAltSymbol", - "shortcutMatchesShortcut", - "shortcutToHumanString", - "types", - "useAddonState", - "useArgTypes", - "useArgs", - "useChannel", - "useGlobalTypes", - "useGlobals", - "useParameter", - "useSharedState", - "useStoryPrepared", - "useStorybookApi", - "useStorybookState" - ], - "@storybook/manager-api": [ - "ActiveTabs", - "Consumer", - "ManagerContext", - "Provider", - "RequestResponseError", - "addons", - "combineParameters", - "controlOrMetaKey", - "controlOrMetaSymbol", - "eventMatchesShortcut", - "eventToShortcut", - "experimental_requestResponse", - "isMacLike", - "isShortcutTaken", - "keyToSymbol", - "merge", - "mockChannel", - "optionOrAltSymbol", - "shortcutMatchesShortcut", - "shortcutToHumanString", - "types", - "useAddonState", - "useArgTypes", - "useArgs", - "useChannel", - "useGlobalTypes", - "useGlobals", - "useParameter", - "useSharedState", - "useStoryPrepared", - "useStorybookApi", - "useStorybookState" - ], - "@storybook/core/manager-api": [ - "ActiveTabs", - "Consumer", - "ManagerContext", - "Provider", - "RequestResponseError", - "addons", - "combineParameters", - "controlOrMetaKey", - "controlOrMetaSymbol", - "eventMatchesShortcut", - "eventToShortcut", - "experimental_requestResponse", - "isMacLike", - "isShortcutTaken", - "keyToSymbol", - "merge", - "mockChannel", - "optionOrAltSymbol", - "shortcutMatchesShortcut", - "shortcutToHumanString", - "types", - "useAddonState", - "useArgTypes", - "useArgs", - "useChannel", - "useGlobalTypes", - "useGlobals", - "useParameter", - "useSharedState", - "useStoryPrepared", - "useStorybookApi", - "useStorybookState" - ], - "storybook/internal/router": [ - "BaseLocationProvider", - "DEEPLY_EQUAL", - "Link", - "Location", - "LocationProvider", - "Match", - "Route", - "buildArgsParam", - "deepDiff", - "getMatch", - "parsePath", - "queryFromLocation", - "queryFromString", - "stringifyQuery", - "useNavigate" - ], - "@storybook/router": [ - "BaseLocationProvider", - "DEEPLY_EQUAL", - "Link", - "Location", - "LocationProvider", - "Match", - "Route", - "buildArgsParam", - "deepDiff", - "getMatch", - "parsePath", - "queryFromLocation", - "queryFromString", - "stringifyQuery", - "useNavigate" - ], - "@storybook/core/router": [ - "BaseLocationProvider", - "DEEPLY_EQUAL", - "Link", - "Location", - "LocationProvider", - "Match", - "Route", - "buildArgsParam", - "deepDiff", - "getMatch", - "parsePath", - "queryFromLocation", - "queryFromString", - "stringifyQuery", - "useNavigate" - ], - "storybook/internal/theming": [ - "CacheProvider", - "ClassNames", - "Global", - "ThemeProvider", - "background", - "color", - "convert", - "create", - "createCache", - "createGlobal", - "createReset", - "css", - "darken", - "ensure", - "ignoreSsrWarning", - "isPropValid", - "jsx", - "keyframes", - "lighten", - "styled", - "themes", - "typography", - "useTheme", - "withTheme" - ], - "@storybook/theming": [ - "CacheProvider", - "ClassNames", - "Global", - "ThemeProvider", - "background", - "color", - "convert", - "create", - "createCache", - "createGlobal", - "createReset", - "css", - "darken", - "ensure", - "ignoreSsrWarning", - "isPropValid", - "jsx", - "keyframes", - "lighten", - "styled", - "themes", - "typography", - "useTheme", - "withTheme" - ], - "@storybook/core/theming": [ - "CacheProvider", - "ClassNames", - "Global", - "ThemeProvider", - "background", - "color", - "convert", - "create", - "createCache", - "createGlobal", - "createReset", - "css", - "darken", - "ensure", - "ignoreSsrWarning", - "isPropValid", - "jsx", - "keyframes", - "lighten", - "styled", - "themes", - "typography", - "useTheme", - "withTheme" - ], - "storybook/internal/theming/create": ["create", "themes"], - "@storybook/theming/create": ["create", "themes"], - "@storybook/core/theming/create": ["create", "themes"], - "storybook/internal/channels": [ - "Channel", - "PostMessageTransport", - "WebsocketTransport", - "createBrowserChannel" - ], - "@storybook/channels": [ - "Channel", - "PostMessageTransport", - "WebsocketTransport", - "createBrowserChannel" - ], - "@storybook/core/channels": [ - "Channel", - "PostMessageTransport", - "WebsocketTransport", - "createBrowserChannel" - ], - "storybook/internal/core-errors": [ - "ARGTYPES_INFO_REQUEST", - "ARGTYPES_INFO_RESPONSE", - "CHANNEL_CREATED", - "CHANNEL_WS_DISCONNECT", - "CONFIG_ERROR", - "CREATE_NEW_STORYFILE_REQUEST", - "CREATE_NEW_STORYFILE_RESPONSE", - "CURRENT_STORY_WAS_SET", - "DOCS_PREPARED", - "DOCS_RENDERED", - "FILE_COMPONENT_SEARCH_REQUEST", - "FILE_COMPONENT_SEARCH_RESPONSE", - "FORCE_REMOUNT", - "FORCE_RE_RENDER", - "GLOBALS_UPDATED", - "NAVIGATE_URL", - "PLAY_FUNCTION_THREW_EXCEPTION", - "PRELOAD_ENTRIES", - "PREVIEW_BUILDER_PROGRESS", - "PREVIEW_KEYDOWN", - "REGISTER_SUBSCRIPTION", - "REQUEST_WHATS_NEW_DATA", - "RESET_STORY_ARGS", - "RESULT_WHATS_NEW_DATA", - "SAVE_STORY_REQUEST", - "SAVE_STORY_RESPONSE", - "SELECT_STORY", - "SET_CONFIG", - "SET_CURRENT_STORY", - "SET_GLOBALS", - "SET_INDEX", - "SET_STORIES", - "SET_WHATS_NEW_CACHE", - "SHARED_STATE_CHANGED", - "SHARED_STATE_SET", - "STORIES_COLLAPSE_ALL", - "STORIES_EXPAND_ALL", - "STORY_ARGS_UPDATED", - "STORY_CHANGED", - "STORY_ERRORED", - "STORY_INDEX_INVALIDATED", - "STORY_MISSING", - "STORY_PREPARED", - "STORY_RENDERED", - "STORY_RENDER_PHASE_CHANGED", - "STORY_SPECIFIED", - "STORY_THREW_EXCEPTION", - "STORY_UNCHANGED", - "TELEMETRY_ERROR", - "TOGGLE_WHATS_NEW_NOTIFICATIONS", - "UNHANDLED_ERRORS_WHILE_PLAYING", - "UPDATE_GLOBALS", - "UPDATE_QUERY_PARAMS", - "UPDATE_STORY_ARGS" - ], - "@storybook/core-events": [ - "ARGTYPES_INFO_REQUEST", - "ARGTYPES_INFO_RESPONSE", - "CHANNEL_CREATED", - "CHANNEL_WS_DISCONNECT", - "CONFIG_ERROR", - "CREATE_NEW_STORYFILE_REQUEST", - "CREATE_NEW_STORYFILE_RESPONSE", - "CURRENT_STORY_WAS_SET", - "DOCS_PREPARED", - "DOCS_RENDERED", - "FILE_COMPONENT_SEARCH_REQUEST", - "FILE_COMPONENT_SEARCH_RESPONSE", - "FORCE_REMOUNT", - "FORCE_RE_RENDER", - "GLOBALS_UPDATED", - "NAVIGATE_URL", - "PLAY_FUNCTION_THREW_EXCEPTION", - "PRELOAD_ENTRIES", - "PREVIEW_BUILDER_PROGRESS", - "PREVIEW_KEYDOWN", - "REGISTER_SUBSCRIPTION", - "REQUEST_WHATS_NEW_DATA", - "RESET_STORY_ARGS", - "RESULT_WHATS_NEW_DATA", - "SAVE_STORY_REQUEST", - "SAVE_STORY_RESPONSE", - "SELECT_STORY", - "SET_CONFIG", - "SET_CURRENT_STORY", - "SET_GLOBALS", - "SET_INDEX", - "SET_STORIES", - "SET_WHATS_NEW_CACHE", - "SHARED_STATE_CHANGED", - "SHARED_STATE_SET", - "STORIES_COLLAPSE_ALL", - "STORIES_EXPAND_ALL", - "STORY_ARGS_UPDATED", - "STORY_CHANGED", - "STORY_ERRORED", - "STORY_INDEX_INVALIDATED", - "STORY_MISSING", - "STORY_PREPARED", - "STORY_RENDERED", - "STORY_RENDER_PHASE_CHANGED", - "STORY_SPECIFIED", - "STORY_THREW_EXCEPTION", - "STORY_UNCHANGED", - "TELEMETRY_ERROR", - "TOGGLE_WHATS_NEW_NOTIFICATIONS", - "UNHANDLED_ERRORS_WHILE_PLAYING", - "UPDATE_GLOBALS", - "UPDATE_QUERY_PARAMS", - "UPDATE_STORY_ARGS" - ], - "@storybook/core/core-events": [ - "ARGTYPES_INFO_REQUEST", - "ARGTYPES_INFO_RESPONSE", - "CHANNEL_CREATED", - "CHANNEL_WS_DISCONNECT", - "CONFIG_ERROR", - "CREATE_NEW_STORYFILE_REQUEST", - "CREATE_NEW_STORYFILE_RESPONSE", - "CURRENT_STORY_WAS_SET", - "DOCS_PREPARED", - "DOCS_RENDERED", - "FILE_COMPONENT_SEARCH_REQUEST", - "FILE_COMPONENT_SEARCH_RESPONSE", - "FORCE_REMOUNT", - "FORCE_RE_RENDER", - "GLOBALS_UPDATED", - "NAVIGATE_URL", - "PLAY_FUNCTION_THREW_EXCEPTION", - "PRELOAD_ENTRIES", - "PREVIEW_BUILDER_PROGRESS", - "PREVIEW_KEYDOWN", - "REGISTER_SUBSCRIPTION", - "REQUEST_WHATS_NEW_DATA", - "RESET_STORY_ARGS", - "RESULT_WHATS_NEW_DATA", - "SAVE_STORY_REQUEST", - "SAVE_STORY_RESPONSE", - "SELECT_STORY", - "SET_CONFIG", - "SET_CURRENT_STORY", - "SET_GLOBALS", - "SET_INDEX", - "SET_STORIES", - "SET_WHATS_NEW_CACHE", - "SHARED_STATE_CHANGED", - "SHARED_STATE_SET", - "STORIES_COLLAPSE_ALL", - "STORIES_EXPAND_ALL", - "STORY_ARGS_UPDATED", - "STORY_CHANGED", - "STORY_ERRORED", - "STORY_INDEX_INVALIDATED", - "STORY_MISSING", - "STORY_PREPARED", - "STORY_RENDERED", - "STORY_RENDER_PHASE_CHANGED", - "STORY_SPECIFIED", - "STORY_THREW_EXCEPTION", - "STORY_UNCHANGED", - "TELEMETRY_ERROR", - "TOGGLE_WHATS_NEW_NOTIFICATIONS", - "UNHANDLED_ERRORS_WHILE_PLAYING", - "UPDATE_GLOBALS", - "UPDATE_QUERY_PARAMS", - "UPDATE_STORY_ARGS" - ], - "storybook/internal/types": ["Addon_TypesEnum"], - "@storybook/types": ["Addon_TypesEnum"], - "@storybook/core/types": ["Addon_TypesEnum"], - "storybook/internal/manager-errors": [ - "Category", - "ProviderDoesNotExtendBaseProviderError", - "UncaughtManagerError" - ], - "@storybook/core-events/manager-errors": [ - "Category", - "ProviderDoesNotExtendBaseProviderError", - "UncaughtManagerError" - ], - "@storybook/core/manager-errors": [ - "Category", - "ProviderDoesNotExtendBaseProviderError", - "UncaughtManagerError" - ], - "storybook/internal/client-logger": ["deprecate", "logger", "once", "pretty"], - "@storybook/client-logger": ["deprecate", "logger", "once", "pretty"], - "@storybook/core/client-logger": ["deprecate", "logger", "once", "pretty"] -}; - -// src/manager/globals/globals.ts -var e = { - react: "__REACT__", - "react-dom": "__REACT_DOM__", - "react-dom/client": "__REACT_DOM_CLIENT__", - "@storybook/icons": "__STORYBOOK_ICONS__", - "storybook/internal/manager-api": "__STORYBOOK_API__", - "@storybook/manager-api": "__STORYBOOK_API__", - "@storybook/core/manager-api": "__STORYBOOK_API__", - "storybook/internal/components": "__STORYBOOK_COMPONENTS__", - "@storybook/components": "__STORYBOOK_COMPONENTS__", - "@storybook/core/components": "__STORYBOOK_COMPONENTS__", - "storybook/internal/channels": "__STORYBOOK_CHANNELS__", - "@storybook/channels": "__STORYBOOK_CHANNELS__", - "@storybook/core/channels": "__STORYBOOK_CHANNELS__", - "storybook/internal/core-errors": "__STORYBOOK_CORE_EVENTS__", - "@storybook/core-events": "__STORYBOOK_CORE_EVENTS__", - "@storybook/core/core-events": "__STORYBOOK_CORE_EVENTS__", - "storybook/internal/manager-errors": "__STORYBOOK_CORE_EVENTS_MANAGER_ERRORS__", - "@storybook/core-events/manager-errors": "__STORYBOOK_CORE_EVENTS_MANAGER_ERRORS__", - "@storybook/core/manager-errors": "__STORYBOOK_CORE_EVENTS_MANAGER_ERRORS__", - "storybook/internal/router": "__STORYBOOK_ROUTER__", - "@storybook/router": "__STORYBOOK_ROUTER__", - "@storybook/core/router": "__STORYBOOK_ROUTER__", - "storybook/internal/theming": "__STORYBOOK_THEMING__", - "@storybook/theming": "__STORYBOOK_THEMING__", - "@storybook/core/theming": "__STORYBOOK_THEMING__", - "storybook/internal/theming/create": "__STORYBOOK_THEMING_CREATE__", - "@storybook/theming/create": "__STORYBOOK_THEMING_CREATE__", - "@storybook/core/theming/create": "__STORYBOOK_THEMING_CREATE__", - "storybook/internal/client-logger": "__STORYBOOK_CLIENT_LOGGER__", - "@storybook/client-logger": "__STORYBOOK_CLIENT_LOGGER__", - "@storybook/core/client-logger": "__STORYBOOK_CLIENT_LOGGER__", - "storybook/internal/types": "__STORYBOOK_TYPES__", - "@storybook/types": "__STORYBOOK_TYPES__", - "@storybook/core/types": "__STORYBOOK_TYPES__" -}, n = Object.keys(e); - -// src/manager/globals/globals-module-info.ts -var S = n.reduce( - (r, o) => (r[o] = { - type: "esm", - varName: e[o], - namedExports: t[o], - defaultExport: !0 - }, r), - {} -); -export { - S as globalsModuleInfoMap -}; diff --git a/storybook-static/sb-manager/globals-runtime.js b/storybook-static/sb-manager/globals-runtime.js deleted file mode 100644 index f729b73..0000000 --- a/storybook-static/sb-manager/globals-runtime.js +++ /dev/null @@ -1,53525 +0,0 @@ -var pfe = Object.create; -var Lm = Object.defineProperty; -var hfe = Object.getOwnPropertyDescriptor; -var mfe = Object.getOwnPropertyNames; -var vfe = Object.getPrototypeOf, gfe = Object.prototype.hasOwnProperty; -var yfe = (e, t, r) => t in e ? Lm(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r; -var a = (e, t) => Lm(e, "name", { value: t, configurable: !0 }), Pm = /* @__PURE__ */ ((e) => typeof require < "u" ? require : typeof Proxy < -"u" ? new Proxy(e, { - get: (t, r) => (typeof require < "u" ? require : t)[r] -}) : e)(function(e) { - if (typeof require < "u") return require.apply(this, arguments); - throw Error('Dynamic require of "' + e + '" is not supported'); -}); -var G = (e, t) => () => (e && (t = e(e = 0)), t); -var P = (e, t) => () => (t || e((t = { exports: {} }).exports, t), t.exports), Ft = (e, t) => { - for (var r in t) - Lm(e, r, { get: t[r], enumerable: !0 }); -}, bfe = (e, t, r, o) => { - if (t && typeof t == "object" || typeof t == "function") - for (let s of mfe(t)) - !gfe.call(e, s) && s !== r && Lm(e, s, { get: () => t[s], enumerable: !(o = hfe(t, s)) || o.enumerable }); - return e; -}; -var te = (e, t, r) => (r = e != null ? pfe(vfe(e)) : {}, bfe( - // If the importer is in node compatibility mode or this is not an ESM - // file that has been converted to a CommonJS file using a Babel- - // compatible transform (i.e. "__esModule" has not been set), then set - // "default" to the CommonJS "module.exports" for node compatibility. - t || !e || !e.__esModule ? Lm(r, "default", { value: e, enumerable: !0 }) : r, - e -)); -var y5 = (e, t, r) => yfe(e, typeof t != "symbol" ? t + "" : t, r); - -// ../node_modules/@storybook/global/dist/index.mjs -var xe, hr = G(() => { - xe = (() => { - let e; - return typeof window < "u" ? e = window : typeof globalThis < "u" ? e = globalThis : typeof global < "u" ? e = global : typeof self < "u" ? - e = self : e = {}, e; - })(); -}); - -// ../node_modules/react/cjs/react.development.js -var CI = P((ft, S5) => { - "use strict"; - (function() { - "use strict"; - typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__. - registerInternalModuleStart(new Error()); - var e = "18.2.0", t = Symbol.for("react.element"), r = Symbol.for("react.portal"), o = Symbol.for("react.fragment"), s = Symbol.for("rea\ -ct.strict_mode"), l = Symbol.for("react.profiler"), c = Symbol.for("react.provider"), p = Symbol.for("react.context"), h = Symbol.for("react\ -.forward_ref"), v = Symbol.for("react.suspense"), g = Symbol.for("react.suspense_list"), b = Symbol.for("react.memo"), w = Symbol.for("react\ -.lazy"), E = Symbol.for("react.offscreen"), D = Symbol.iterator, C = "@@iterator"; - function R(_) { - if (_ === null || typeof _ != "object") - return null; - var H = D && _[D] || _[C]; - return typeof H == "function" ? H : null; - } - a(R, "getIteratorFn"); - var I = { - /** - * @internal - * @type {ReactComponent} - */ - current: null - }, O = { - transition: null - }, F = { - current: null, - // Used to reproduce behavior of `batchedUpdates` in legacy mode. - isBatchingLegacy: !1, - didScheduleLegacyUpdate: !1 - }, M = { - /** - * @internal - * @type {ReactComponent} - */ - current: null - }, N = {}, B = null; - function $(_) { - B = _; - } - a($, "setExtraStackFrame"), N.setExtraStackFrame = function(_) { - B = _; - }, N.getCurrentStack = null, N.getStackAddendum = function() { - var _ = ""; - B && (_ += B); - var H = N.getCurrentStack; - return H && (_ += H() || ""), _; - }; - var U = !1, q = !1, ee = !1, ie = !1, le = !1, ae = { - ReactCurrentDispatcher: I, - ReactCurrentBatchConfig: O, - ReactCurrentOwner: M - }; - ae.ReactDebugCurrentFrame = N, ae.ReactCurrentActQueue = F; - function he(_) { - { - for (var H = arguments.length, X = new Array(H > 1 ? H - 1 : 0), re = 1; re < H; re++) - X[re - 1] = arguments[re]; - ue("warn", _, X); - } - } - a(he, "warn"); - function J(_) { - { - for (var H = arguments.length, X = new Array(H > 1 ? H - 1 : 0), re = 1; re < H; re++) - X[re - 1] = arguments[re]; - ue("error", _, X); - } - } - a(J, "error"); - function ue(_, H, X) { - { - var re = ae.ReactDebugCurrentFrame, de = re.getStackAddendum(); - de !== "" && (H += "%s", X = X.concat([de])); - var He = X.map(function(Fe) { - return String(Fe); - }); - He.unshift("Warning: " + H), Function.prototype.apply.call(console[_], console, He); - } - } - a(ue, "printWarning"); - var De = {}; - function ke(_, H) { - { - var X = _.constructor, re = X && (X.displayName || X.name) || "ReactClass", de = re + "." + H; - if (De[de]) - return; - J("Can't call %s on a component that is not yet mounted. This is a no-op, but it might indicate a bug in your application. Instead, \ -assign to `this.state` directly or define a `state = {};` class property with the desired state in the %s component.", H, re), De[de] = !0; - } - } - a(ke, "warnNoop"); - var Te = { - /** - * Checks whether or not this composite component is mounted. - * @param {ReactClass} publicInstance The instance we want to test. - * @return {boolean} True if mounted, false otherwise. - * @protected - * @final - */ - isMounted: /* @__PURE__ */ a(function(_) { - return !1; - }, "isMounted"), - /** - * Forces an update. This should only be invoked when it is known with - * certainty that we are **not** in a DOM transaction. - * - * You may want to call this when you know that some deeper aspect of the - * component's state has changed but `setState` was not called. - * - * This will not invoke `shouldComponentUpdate`, but it will invoke - * `componentWillUpdate` and `componentDidUpdate`. - * - * @param {ReactClass} publicInstance The instance that should rerender. - * @param {?function} callback Called after component is updated. - * @param {?string} callerName name of the calling function in the public API. - * @internal - */ - enqueueForceUpdate: /* @__PURE__ */ a(function(_, H, X) { - ke(_, "forceUpdate"); - }, "enqueueForceUpdate"), - /** - * Replaces all of the state. Always use this or `setState` to mutate state. - * You should treat `this.state` as immutable. - * - * There is no guarantee that `this.state` will be immediately updated, so - * accessing `this.state` after calling this method may return the old value. - * - * @param {ReactClass} publicInstance The instance that should rerender. - * @param {object} completeState Next state. - * @param {?function} callback Called after component is updated. - * @param {?string} callerName name of the calling function in the public API. - * @internal - */ - enqueueReplaceState: /* @__PURE__ */ a(function(_, H, X, re) { - ke(_, "replaceState"); - }, "enqueueReplaceState"), - /** - * Sets a subset of the state. This only exists because _pendingState is - * internal. This provides a merging strategy that is not available to deep - * properties which is confusing. TODO: Expose pendingState or don't use it - * during the merge. - * - * @param {ReactClass} publicInstance The instance that should rerender. - * @param {object} partialState Next partial state to be merged with state. - * @param {?function} callback Called after component is updated. - * @param {?string} Name of the calling function in the public API. - * @internal - */ - enqueueSetState: /* @__PURE__ */ a(function(_, H, X, re) { - ke(_, "setState"); - }, "enqueueSetState") - }, $e = Object.assign, Be = {}; - Object.freeze(Be); - function Ye(_, H, X) { - this.props = _, this.context = H, this.refs = Be, this.updater = X || Te; - } - a(Ye, "Component"), Ye.prototype.isReactComponent = {}, Ye.prototype.setState = function(_, H) { - if (typeof _ != "object" && typeof _ != "function" && _ != null) - throw new Error("setState(...): takes an object of state variables to update or a function which returns an object of state variable\ -s."); - this.updater.enqueueSetState(this, _, H, "setState"); - }, Ye.prototype.forceUpdate = function(_) { - this.updater.enqueueForceUpdate(this, _, "forceUpdate"); - }; - { - var pt = { - isMounted: ["isMounted", "Instead, make sure to clean up subscriptions and pending requests in componentWillUnmount to prevent memor\ -y leaks."], - replaceState: ["replaceState", "Refactor your code to use setState instead (see https://github.com/facebook/react/issues/3236)."] - }, lt = /* @__PURE__ */ a(function(_, H) { - Object.defineProperty(Ye.prototype, _, { - get: /* @__PURE__ */ a(function() { - he("%s(...) is deprecated in plain JavaScript React classes. %s", H[0], H[1]); - }, "get") - }); - }, "defineDeprecationWarning"); - for (var ht in pt) - pt.hasOwnProperty(ht) && lt(ht, pt[ht]); - } - function St() { - } - a(St, "ComponentDummy"), St.prototype = Ye.prototype; - function _t(_, H, X) { - this.props = _, this.context = H, this.refs = Be, this.updater = X || Te; - } - a(_t, "PureComponent"); - var Ut = _t.prototype = new St(); - Ut.constructor = _t, $e(Ut, Ye.prototype), Ut.isPureReactComponent = !0; - function Or() { - var _ = { - current: null - }; - return Object.seal(_), _; - } - a(Or, "createRef"); - var Wn = Array.isArray; - function br(_) { - return Wn(_); - } - a(br, "isArray"); - function _e(_) { - { - var H = typeof Symbol == "function" && Symbol.toStringTag, X = H && _[Symbol.toStringTag] || _.constructor.name || "Object"; - return X; - } - } - a(_e, "typeName"); - function or(_) { - try { - return ir(_), !1; - } catch { - return !0; - } - } - a(or, "willCoercionThrow"); - function ir(_) { - return "" + _; - } - a(ir, "testStringCoercion"); - function dr(_) { - if (or(_)) - return J("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", _e(_)), ir( - _); - } - a(dr, "checkKeyStringCoercion"); - function Gn(_, H, X) { - var re = _.displayName; - if (re) - return re; - var de = H.displayName || H.name || ""; - return de !== "" ? X + "(" + de + ")" : X; - } - a(Gn, "getWrappedName"); - function ln(_) { - return _.displayName || "Context"; - } - a(ln, "getContextName"); - function ve(_) { - if (_ == null) - return null; - if (typeof _.tag == "number" && J("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please \ -file an issue."), typeof _ == "function") - return _.displayName || _.name || null; - if (typeof _ == "string") - return _; - switch (_) { - case o: - return "Fragment"; - case r: - return "Portal"; - case l: - return "Profiler"; - case s: - return "StrictMode"; - case v: - return "Suspense"; - case g: - return "SuspenseList"; - } - if (typeof _ == "object") - switch (_.$$typeof) { - case p: - var H = _; - return ln(H) + ".Consumer"; - case c: - var X = _; - return ln(X._context) + ".Provider"; - case h: - return Gn(_, _.render, "ForwardRef"); - case b: - var re = _.displayName || null; - return re !== null ? re : ve(_.type) || "Memo"; - case w: { - var de = _, He = de._payload, Fe = de._init; - try { - return ve(Fe(He)); - } catch { - return null; - } - } - } - return null; - } - a(ve, "getComponentNameFromType"); - var Xa = Object.prototype.hasOwnProperty, ha = { - key: !0, - ref: !0, - __self: !0, - __source: !0 - }, Fo, Io, un; - un = {}; - function ma(_) { - if (Xa.call(_, "ref")) { - var H = Object.getOwnPropertyDescriptor(_, "ref").get; - if (H && H.isReactWarning) - return !1; - } - return _.ref !== void 0; - } - a(ma, "hasValidRef"); - function Yn(_) { - if (Xa.call(_, "key")) { - var H = Object.getOwnPropertyDescriptor(_, "key").get; - if (H && H.isReactWarning) - return !1; - } - return _.key !== void 0; - } - a(Yn, "hasValidKey"); - function Qa(_, H) { - var X = /* @__PURE__ */ a(function() { - Fo || (Fo = !0, J("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the\ - same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", H)); - }, "warnAboutAccessingKey"); - X.isReactWarning = !0, Object.defineProperty(_, "key", { - get: X, - configurable: !0 - }); - } - a(Qa, "defineKeyPropWarningGetter"); - function cn(_, H) { - var X = /* @__PURE__ */ a(function() { - Io || (Io = !0, J("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the\ - same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", H)); - }, "warnAboutAccessingRef"); - X.isReactWarning = !0, Object.defineProperty(_, "ref", { - get: X, - configurable: !0 - }); - } - a(cn, "defineRefPropWarningGetter"); - function Fa(_) { - if (typeof _.ref == "string" && M.current && _.__self && M.current.stateNode !== _.__self) { - var H = ve(M.current.type); - un[H] || (J('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This ca\ -se cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Le\ -arn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', H, _.ref), un[H] = !0); - } - } - a(Fa, "warnIfStringRefCannotBeAutoConverted"); - var qs = /* @__PURE__ */ a(function(_, H, X, re, de, He, Fe) { - var Ke = { - // This tag allows us to uniquely identify this as a React Element - $$typeof: t, - // Built-in properties that belong on the element - type: _, - key: H, - ref: X, - props: Fe, - // Record the component responsible for creating this element. - _owner: He - }; - return Ke._store = {}, Object.defineProperty(Ke._store, "validated", { - configurable: !1, - enumerable: !1, - writable: !0, - value: !1 - }), Object.defineProperty(Ke, "_self", { - configurable: !1, - enumerable: !1, - writable: !1, - value: re - }), Object.defineProperty(Ke, "_source", { - configurable: !1, - enumerable: !1, - writable: !1, - value: de - }), Object.freeze && (Object.freeze(Ke.props), Object.freeze(Ke)), Ke; - }, "ReactElement"); - function Jc(_, H, X) { - var re, de = {}, He = null, Fe = null, Ke = null, ut = null; - if (H != null) { - ma(H) && (Fe = H.ref, Fa(H)), Yn(H) && (dr(H.key), He = "" + H.key), Ke = H.__self === void 0 ? null : H.__self, ut = H.__source === - void 0 ? null : H.__source; - for (re in H) - Xa.call(H, re) && !ha.hasOwnProperty(re) && (de[re] = H[re]); - } - var Ct = arguments.length - 2; - if (Ct === 1) - de.children = X; - else if (Ct > 1) { - for (var Nt = Array(Ct), Bt = 0; Bt < Ct; Bt++) - Nt[Bt] = arguments[Bt + 2]; - Object.freeze && Object.freeze(Nt), de.children = Nt; - } - if (_ && _.defaultProps) { - var zt = _.defaultProps; - for (re in zt) - de[re] === void 0 && (de[re] = zt[re]); - } - if (He || Fe) { - var tr = typeof _ == "function" ? _.displayName || _.name || "Unknown" : _; - He && Qa(de, tr), Fe && cn(de, tr); - } - return qs(_, He, Fe, Ke, ut, M.current, de); - } - a(Jc, "createElement"); - function Se(_, H) { - var X = qs(_.type, H, _.ref, _._self, _._source, _._owner, _.props); - return X; - } - a(Se, "cloneAndReplaceKey"); - function Me(_, H, X) { - if (_ == null) - throw new Error("React.cloneElement(...): The argument must be a React element, but you passed " + _ + "."); - var re, de = $e({}, _.props), He = _.key, Fe = _.ref, Ke = _._self, ut = _._source, Ct = _._owner; - if (H != null) { - ma(H) && (Fe = H.ref, Ct = M.current), Yn(H) && (dr(H.key), He = "" + H.key); - var Nt; - _.type && _.type.defaultProps && (Nt = _.type.defaultProps); - for (re in H) - Xa.call(H, re) && !ha.hasOwnProperty(re) && (H[re] === void 0 && Nt !== void 0 ? de[re] = Nt[re] : de[re] = H[re]); - } - var Bt = arguments.length - 2; - if (Bt === 1) - de.children = X; - else if (Bt > 1) { - for (var zt = Array(Bt), tr = 0; tr < Bt; tr++) - zt[tr] = arguments[tr + 2]; - de.children = zt; - } - return qs(_.type, He, Fe, Ke, ut, Ct, de); - } - a(Me, "cloneElement"); - function Qe(_) { - return typeof _ == "object" && _ !== null && _.$$typeof === t; - } - a(Qe, "isValidElement"); - var Dt = ".", qt = ":"; - function Fn(_) { - var H = /[=:]/g, X = { - "=": "=0", - ":": "=2" - }, re = _.replace(H, function(de) { - return X[de]; - }); - return "$" + re; - } - a(Fn, "escape"); - var Sr = !1, Ja = /\/+/g; - function er(_) { - return _.replace(Ja, "$&/"); - } - a(er, "escapeUserProvidedKey"); - function Za(_, H) { - return typeof _ == "object" && _ !== null && _.key != null ? (dr(_.key), Fn("" + _.key)) : H.toString(36); - } - a(Za, "getElementKey"); - function wr(_, H, X, re, de) { - var He = typeof _; - (He === "undefined" || He === "boolean") && (_ = null); - var Fe = !1; - if (_ === null) - Fe = !0; - else - switch (He) { - case "string": - case "number": - Fe = !0; - break; - case "object": - switch (_.$$typeof) { - case t: - case r: - Fe = !0; - } - } - if (Fe) { - var Ke = _, ut = de(Ke), Ct = re === "" ? Dt + Za(Ke, 0) : re; - if (br(ut)) { - var Nt = ""; - Ct != null && (Nt = er(Ct) + "/"), wr(ut, H, Nt, "", function(oh) { - return oh; - }); - } else ut != null && (Qe(ut) && (ut.key && (!Ke || Ke.key !== ut.key) && dr(ut.key), ut = Se( - ut, - // Keep both the (mapped) and old keys if they differ, just as - // traverseAllChildren used to do for objects as children - X + // $FlowFixMe Flow incorrectly thinks React.Portal doesn't have a key - (ut.key && (!Ke || Ke.key !== ut.key) ? ( - // $FlowFixMe Flow incorrectly thinks existing element's key can be a number - // eslint-disable-next-line react-internal/safe-string-coercion - er("" + ut.key) + "/" - ) : "") + Ct - )), H.push(ut)); - return 1; - } - var Bt, zt, tr = 0, Ir = re === "" ? Dt : re + qt; - if (br(_)) - for (var df = 0; df < _.length; df++) - Bt = _[df], zt = Ir + Za(Bt, df), tr += wr(Bt, H, X, zt, de); - else { - var Lr = R(_); - if (typeof Lr == "function") { - var pf = _; - Lr === pf.entries && (Sr || he("Using Maps as children is not supported. Use an array of keyed ReactElements instead."), Sr = !0); - for (var yg = Lr.call(pf), ah, YS = 0; !(ah = yg.next()).done; ) - Bt = ah.value, zt = Ir + Za(Bt, YS++), tr += wr(Bt, H, X, zt, de); - } else if (He === "object") { - var Xi = String(_); - throw new Error("Objects are not valid as a React child (found: " + (Xi === "[object Object]" ? "object with keys {" + Object.keys( - _).join(", ") + "}" : Xi) + "). If you meant to render a collection of children, use an array instead."); - } - } - return tr; - } - a(wr, "mapIntoArray"); - function sr(_, H, X) { - if (_ == null) - return _; - var re = [], de = 0; - return wr(_, re, "", "", function(He) { - return H.call(X, He, de++); - }), re; - } - a(sr, "mapChildren"); - function LS(_) { - var H = 0; - return sr(_, function() { - H++; - }), H; - } - a(LS, "countChildren"); - function z0(_, H, X) { - sr(_, function() { - H.apply(this, arguments); - }, X); - } - a(z0, "forEachChildren"); - function j0(_) { - return sr(_, function(H) { - return H; - }) || []; - } - a(j0, "toArray"); - function PS(_) { - if (!Qe(_)) - throw new Error("React.Children.only expected to receive a single React element child."); - return _; - } - a(PS, "onlyChild"); - function kS(_) { - var H = { - $$typeof: p, - // As a workaround to support multiple concurrent renderers, we categorize - // some renderers as primary and others as secondary. We only expect - // there to be two concurrent renderers at most: React Native (primary) and - // Fabric (secondary); React DOM (primary) and React ART (secondary). - // Secondary renderers store their context values on separate fields. - _currentValue: _, - _currentValue2: _, - // Used to track how many concurrent renderers this context currently - // supports within in a single renderer. Such as parallel server rendering. - _threadCount: 0, - // These are circular - Provider: null, - Consumer: null, - // Add these to use same hidden class in VM as ServerContext - _defaultValue: null, - _globalName: null - }; - H.Provider = { - $$typeof: c, - _context: H - }; - var X = !1, re = !1, de = !1; - { - var He = { - $$typeof: p, - _context: H - }; - Object.defineProperties(He, { - Provider: { - get: /* @__PURE__ */ a(function() { - return re || (re = !0, J("Rendering is not supported and will be removed in a future major release\ -. Did you mean to render instead?")), H.Provider; - }, "get"), - set: /* @__PURE__ */ a(function(Fe) { - H.Provider = Fe; - }, "set") - }, - _currentValue: { - get: /* @__PURE__ */ a(function() { - return H._currentValue; - }, "get"), - set: /* @__PURE__ */ a(function(Fe) { - H._currentValue = Fe; - }, "set") - }, - _currentValue2: { - get: /* @__PURE__ */ a(function() { - return H._currentValue2; - }, "get"), - set: /* @__PURE__ */ a(function(Fe) { - H._currentValue2 = Fe; - }, "set") - }, - _threadCount: { - get: /* @__PURE__ */ a(function() { - return H._threadCount; - }, "get"), - set: /* @__PURE__ */ a(function(Fe) { - H._threadCount = Fe; - }, "set") - }, - Consumer: { - get: /* @__PURE__ */ a(function() { - return X || (X = !0, J("Rendering is not supported and will be removed in a future major release. \ -Did you mean to render instead?")), H.Consumer; - }, "get") - }, - displayName: { - get: /* @__PURE__ */ a(function() { - return H.displayName; - }, "get"), - set: /* @__PURE__ */ a(function(Fe) { - de || (he("Setting `displayName` on Context.Consumer has no effect. You should set it directly on the context with Context.dis\ -playName = '%s'.", Fe), de = !0); - }, "set") - } - }), H.Consumer = He; - } - return H._currentRenderer = null, H._currentRenderer2 = null, H; - } - a(kS, "createContext"); - var Vs = -1, Zc = 0, og = 1, ig = 2; - function U0(_) { - if (_._status === Vs) { - var H = _._result, X = H(); - if (X.then(function(He) { - if (_._status === Zc || _._status === Vs) { - var Fe = _; - Fe._status = og, Fe._result = He; - } - }, function(He) { - if (_._status === Zc || _._status === Vs) { - var Fe = _; - Fe._status = ig, Fe._result = He; - } - }), _._status === Vs) { - var re = _; - re._status = Zc, re._result = X; - } - } - if (_._status === og) { - var de = _._result; - return de === void 0 && J(`lazy: Expected the result of a dynamic import() call. Instead received: %s - -Your code should look like: - const MyComponent = lazy(() => import('./MyComponent')) - -Did you accidentally put curly braces around the import?`, de), "default" in de || J(`lazy: Expected the result of a dynamic import() call. \ -Instead received: %s - -Your code should look like: - const MyComponent = lazy(() => import('./MyComponent'))`, de), de.default; - } else - throw _._result; - } - a(U0, "lazyInitializer"); - function Ws(_) { - var H = { - // We use these fields to store the result. - _status: Vs, - _result: _ - }, X = { - $$typeof: w, - _payload: H, - _init: U0 - }; - { - var re, de; - Object.defineProperties(X, { - defaultProps: { - configurable: !0, - get: /* @__PURE__ */ a(function() { - return re; - }, "get"), - set: /* @__PURE__ */ a(function(He) { - J("React.lazy(...): It is not supported to assign `defaultProps` to a lazy component import. Either specify them where the com\ -ponent is defined, or create a wrapping component around it."), re = He, Object.defineProperty(X, "defaultProps", { - enumerable: !0 - }); - }, "set") - }, - propTypes: { - configurable: !0, - get: /* @__PURE__ */ a(function() { - return de; - }, "get"), - set: /* @__PURE__ */ a(function(He) { - J("React.lazy(...): It is not supported to assign `propTypes` to a lazy component import. Either specify them where the compon\ -ent is defined, or create a wrapping component around it."), de = He, Object.defineProperty(X, "propTypes", { - enumerable: !0 - }); - }, "set") - } - }); - } - return X; - } - a(Ws, "lazy"); - function Wi(_) { - _ != null && _.$$typeof === b ? J("forwardRef requires a render function but received a `memo` component. Instead of forwardRef(memo(.\ -..)), use memo(forwardRef(...)).") : typeof _ != "function" ? J("forwardRef requires a render function but was given %s.", _ === null ? "nul\ -l" : typeof _) : _.length !== 0 && _.length !== 2 && J("forwardRef render functions accept exactly two parameters: props and ref. %s", _.length === - 1 ? "Did you forget to use the ref parameter?" : "Any additional parameter will be undefined."), _ != null && (_.defaultProps != null || - _.propTypes != null) && J("forwardRef render functions do not support propTypes or defaultProps. Did you accidentally pass a React com\ -ponent?"); - var H = { - $$typeof: h, - render: _ - }; - { - var X; - Object.defineProperty(H, "displayName", { - enumerable: !1, - configurable: !0, - get: /* @__PURE__ */ a(function() { - return X; - }, "get"), - set: /* @__PURE__ */ a(function(re) { - X = re, !_.name && !_.displayName && (_.displayName = re); - }, "set") - }); - } - return H; - } - a(Wi, "forwardRef"); - var Gi; - Gi = Symbol.for("react.module.reference"); - function ef(_) { - return !!(typeof _ == "string" || typeof _ == "function" || _ === o || _ === l || le || _ === s || _ === v || _ === g || ie || _ === E || - U || q || ee || typeof _ == "object" && _ !== null && (_.$$typeof === w || _.$$typeof === b || _.$$typeof === c || _.$$typeof === p || - _.$$typeof === h || // This needs to include all possible module reference object - // types supported by any Flight configuration anywhere since - // we don't know which Flight build this will end up being used - // with. - _.$$typeof === Gi || _.getModuleId !== void 0)); - } - a(ef, "isValidElementType"); - function q0(_, H) { - ef(_) || J("memo: The first argument must be a component. Instead received: %s", _ === null ? "null" : typeof _); - var X = { - $$typeof: b, - type: _, - compare: H === void 0 ? null : H - }; - { - var re; - Object.defineProperty(X, "displayName", { - enumerable: !1, - configurable: !0, - get: /* @__PURE__ */ a(function() { - return re; - }, "get"), - set: /* @__PURE__ */ a(function(de) { - re = de, !_.name && !_.displayName && (_.displayName = de); - }, "set") - }); - } - return X; - } - a(q0, "memo"); - function Fr() { - var _ = I.current; - return _ === null && J(`Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for \ -one of the following reasons: -1. You might have mismatching versions of React and the renderer (such as React DOM) -2. You might be breaking the Rules of Hooks -3. You might have more than one copy of React in the same app -See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.`), _; - } - a(Fr, "resolveDispatcher"); - function V0(_) { - var H = Fr(); - if (_._context !== void 0) { - var X = _._context; - X.Consumer === _ ? J("Calling useContext(Context.Consumer) is not supported, may cause bugs, and will be removed in a future major r\ -elease. Did you mean to call useContext(Context) instead?") : X.Provider === _ && J("Calling useContext(Context.Provider) is not supported. \ -Did you mean to call useContext(Context) instead?"); - } - return H.useContext(_); - } - a(V0, "useContext"); - function Gs(_) { - var H = Fr(); - return H.useState(_); - } - a(Gs, "useState"); - function tf(_, H, X) { - var re = Fr(); - return re.useReducer(_, H, X); - } - a(tf, "useReducer"); - function rf(_) { - var H = Fr(); - return H.useRef(_); - } - a(rf, "useRef"); - function pu(_, H) { - var X = Fr(); - return X.useEffect(_, H); - } - a(pu, "useEffect"); - function fn(_, H) { - var X = Fr(); - return X.useInsertionEffect(_, H); - } - a(fn, "useInsertionEffect"); - function MS(_, H) { - var X = Fr(); - return X.useLayoutEffect(_, H); - } - a(MS, "useLayoutEffect"); - function NS(_, H) { - var X = Fr(); - return X.useCallback(_, H); - } - a(NS, "useCallback"); - function sg(_, H) { - var X = Fr(); - return X.useMemo(_, H); - } - a(sg, "useMemo"); - function BS(_, H, X) { - var re = Fr(); - return re.useImperativeHandle(_, H, X); - } - a(BS, "useImperativeHandle"); - function $S(_, H) { - { - var X = Fr(); - return X.useDebugValue(_, H); - } - } - a($S, "useDebugValue"); - function HS() { - var _ = Fr(); - return _.useTransition(); - } - a(HS, "useTransition"); - function lg(_) { - var H = Fr(); - return H.useDeferredValue(_); - } - a(lg, "useDeferredValue"); - function zS() { - var _ = Fr(); - return _.useId(); - } - a(zS, "useId"); - function Yi(_, H, X) { - var re = Fr(); - return re.useSyncExternalStore(_, H, X); - } - a(Yi, "useSyncExternalStore"); - var et = 0, Ys, W0, G0, Y0, K0, X0, Q0; - function J0() { - } - a(J0, "disabledLog"), J0.__reactDisabledLog = !0; - function ug() { - { - if (et === 0) { - Ys = console.log, W0 = console.info, G0 = console.warn, Y0 = console.error, K0 = console.group, X0 = console.groupCollapsed, Q0 = console. - groupEnd; - var _ = { - configurable: !0, - enumerable: !0, - value: J0, - writable: !0 - }; - Object.defineProperties(console, { - info: _, - log: _, - warn: _, - error: _, - group: _, - groupCollapsed: _, - groupEnd: _ - }); - } - et++; - } - } - a(ug, "disableLogs"); - function jS() { - { - if (et--, et === 0) { - var _ = { - configurable: !0, - enumerable: !0, - writable: !0 - }; - Object.defineProperties(console, { - log: $e({}, _, { - value: Ys - }), - info: $e({}, _, { - value: W0 - }), - warn: $e({}, _, { - value: G0 - }), - error: $e({}, _, { - value: Y0 - }), - group: $e({}, _, { - value: K0 - }), - groupCollapsed: $e({}, _, { - value: X0 - }), - groupEnd: $e({}, _, { - value: Q0 - }) - }); - } - et < 0 && J("disabledDepth fell below zero. This is a bug in React. Please file an issue."); - } - } - a(jS, "reenableLogs"); - var Z0 = ae.ReactCurrentDispatcher, hu; - function Ks(_, H, X) { - { - if (hu === void 0) - try { - throw Error(); - } catch (de) { - var re = de.stack.trim().match(/\n( *(at )?)/); - hu = re && re[1] || ""; - } - return ` -` + hu + _; - } - } - a(Ks, "describeBuiltInComponentFrame"); - var eo = !1, Xs; - { - var nf = typeof WeakMap == "function" ? WeakMap : Map; - Xs = new nf(); - } - function cg(_, H) { - if (!_ || eo) - return ""; - { - var X = Xs.get(_); - if (X !== void 0) - return X; - } - var re; - eo = !0; - var de = Error.prepareStackTrace; - Error.prepareStackTrace = void 0; - var He; - He = Z0.current, Z0.current = null, ug(); - try { - if (H) { - var Fe = /* @__PURE__ */ a(function() { - throw Error(); - }, "Fake"); - if (Object.defineProperty(Fe.prototype, "props", { - set: /* @__PURE__ */ a(function() { - throw Error(); - }, "set") - }), typeof Reflect == "object" && Reflect.construct) { - try { - Reflect.construct(Fe, []); - } catch (Ir) { - re = Ir; - } - Reflect.construct(_, [], Fe); - } else { - try { - Fe.call(); - } catch (Ir) { - re = Ir; - } - _.call(Fe.prototype); - } - } else { - try { - throw Error(); - } catch (Ir) { - re = Ir; - } - _(); - } - } catch (Ir) { - if (Ir && re && typeof Ir.stack == "string") { - for (var Ke = Ir.stack.split(` -`), ut = re.stack.split(` -`), Ct = Ke.length - 1, Nt = ut.length - 1; Ct >= 1 && Nt >= 0 && Ke[Ct] !== ut[Nt]; ) - Nt--; - for (; Ct >= 1 && Nt >= 0; Ct--, Nt--) - if (Ke[Ct] !== ut[Nt]) { - if (Ct !== 1 || Nt !== 1) - do - if (Ct--, Nt--, Nt < 0 || Ke[Ct] !== ut[Nt]) { - var Bt = ` -` + Ke[Ct].replace(" at new ", " at "); - return _.displayName && Bt.includes("") && (Bt = Bt.replace("", _.displayName)), typeof _ == "func\ -tion" && Xs.set(_, Bt), Bt; - } - while (Ct >= 1 && Nt >= 0); - break; - } - } - } finally { - eo = !1, Z0.current = He, jS(), Error.prepareStackTrace = de; - } - var zt = _ ? _.displayName || _.name : "", tr = zt ? Ks(zt) : ""; - return typeof _ == "function" && Xs.set(_, tr), tr; - } - a(cg, "describeNativeComponentFrame"); - function eh(_, H, X) { - return cg(_, !1); - } - a(eh, "describeFunctionComponentFrame"); - function US(_) { - var H = _.prototype; - return !!(H && H.isReactComponent); - } - a(US, "shouldConstruct"); - function Qs(_, H, X) { - if (_ == null) - return ""; - if (typeof _ == "function") - return cg(_, US(_)); - if (typeof _ == "string") - return Ks(_); - switch (_) { - case v: - return Ks("Suspense"); - case g: - return Ks("SuspenseList"); - } - if (typeof _ == "object") - switch (_.$$typeof) { - case h: - return eh(_.render); - case b: - return Qs(_.type, H, X); - case w: { - var re = _, de = re._payload, He = re._init; - try { - return Qs(He(de), H, X); - } catch { - } - } - } - return ""; - } - a(Qs, "describeUnknownElementTypeFrameInDEV"); - var fg = {}, af = ae.ReactDebugCurrentFrame; - function of(_) { - if (_) { - var H = _._owner, X = Qs(_.type, _._source, H ? H.type : null); - af.setExtraStackFrame(X); - } else - af.setExtraStackFrame(null); - } - a(of, "setCurrentlyValidatingElement"); - function dg(_, H, X, re, de) { - { - var He = Function.call.bind(Xa); - for (var Fe in _) - if (He(_, Fe)) { - var Ke = void 0; - try { - if (typeof _[Fe] != "function") { - var ut = Error((re || "React class") + ": " + X + " type `" + Fe + "` is invalid; it must be a function, usually from the `p\ -rop-types` package, but received `" + typeof _[Fe] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTyp\ -es.func`."); - throw ut.name = "Invariant Violation", ut; - } - Ke = _[Fe](H, Fe, re, X, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"); - } catch (Ct) { - Ke = Ct; - } - Ke && !(Ke instanceof Error) && (of(de), J("%s: type specification of %s `%s` is invalid; the type checker function must return \ -`null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectO\ -f, oneOf, oneOfType, and shape all require an argument).", re || "React class", X, Fe, typeof Ke), of(null)), Ke instanceof Error && !(Ke.message in - fg) && (fg[Ke.message] = !0, of(de), J("Failed %s type: %s", X, Ke.message), of(null)); - } - } - } - a(dg, "checkPropTypes"); - function Js(_) { - if (_) { - var H = _._owner, X = Qs(_.type, _._source, H ? H.type : null); - $(X); - } else - $(null); - } - a(Js, "setCurrentlyValidatingElement$1"); - var sf; - sf = !1; - function Ot() { - if (M.current) { - var _ = ve(M.current.type); - if (_) - return ` - -Check the render method of \`` + _ + "`."; - } - return ""; - } - a(Ot, "getDeclarationErrorAddendum"); - function qS(_) { - if (_ !== void 0) { - var H = _.fileName.replace(/^.*[\\\/]/, ""), X = _.lineNumber; - return ` - -Check your code at ` + H + ":" + X + "."; - } - return ""; - } - a(qS, "getSourceInfoErrorAddendum"); - function pg(_) { - return _ != null ? qS(_.__source) : ""; - } - a(pg, "getSourceInfoErrorAddendumForProps"); - var Xe = {}; - function hg(_) { - var H = Ot(); - if (!H) { - var X = typeof _ == "string" ? _ : _.displayName || _.name; - X && (H = ` - -Check the top-level render call using <` + X + ">."); - } - return H; - } - a(hg, "getCurrentComponentErrorInfo"); - function In(_, H) { - if (!(!_._store || _._store.validated || _.key != null)) { - _._store.validated = !0; - var X = hg(H); - if (!Xe[X]) { - Xe[X] = !0; - var re = ""; - _ && _._owner && _._owner !== M.current && (re = " It was passed a child from " + ve(_._owner.type) + "."), Js(_), J('Each child i\ -n a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', X, re), Js(null); - } - } - } - a(In, "validateExplicitKey"); - function Zs(_, H) { - if (typeof _ == "object") { - if (br(_)) - for (var X = 0; X < _.length; X++) { - var re = _[X]; - Qe(re) && In(re, H); - } - else if (Qe(_)) - _._store && (_._store.validated = !0); - else if (_) { - var de = R(_); - if (typeof de == "function" && de !== _.entries) - for (var He = de.call(_), Fe; !(Fe = He.next()).done; ) - Qe(Fe.value) && In(Fe.value, H); - } - } - } - a(Zs, "validateChildKeys"); - function el(_) { - { - var H = _.type; - if (H == null || typeof H == "string") - return; - var X; - if (typeof H == "function") - X = H.propTypes; - else if (typeof H == "object" && (H.$$typeof === h || // Note: Memo only checks outer props here. - // Inner props are checked in the reconciler. - H.$$typeof === b)) - X = H.propTypes; - else - return; - if (X) { - var re = ve(H); - dg(X, _.props, "prop", re, _); - } else if (H.PropTypes !== void 0 && !sf) { - sf = !0; - var de = ve(H); - J("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", de || "Unknown"); - } - typeof H.getDefaultProps == "function" && !H.getDefaultProps.isReactClassApproved && J("getDefaultProps is only used on classic Reac\ -t.createClass definitions. Use a static property named `defaultProps` instead."); - } - } - a(el, "validatePropTypes"); - function VS(_) { - { - for (var H = Object.keys(_.props), X = 0; X < H.length; X++) { - var re = H[X]; - if (re !== "children" && re !== "key") { - Js(_), J("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", re), Js(null); - break; - } - } - _.ref !== null && (Js(_), J("Invalid attribute `ref` supplied to `React.Fragment`."), Js(null)); - } - } - a(VS, "validateFragmentProps"); - function Yr(_, H, X) { - var re = ef(_); - if (!re) { - var de = ""; - (_ === void 0 || typeof _ == "object" && _ !== null && Object.keys(_).length === 0) && (de += " You likely forgot to export your com\ -ponent from the file it's defined in, or you might have mixed up default and named imports."); - var He = pg(H); - He ? de += He : de += Ot(); - var Fe; - _ === null ? Fe = "null" : br(_) ? Fe = "array" : _ !== void 0 && _.$$typeof === t ? (Fe = "<" + (ve(_.type) || "Unknown") + " />", de = - " Did you accidentally export a JSX literal instead of a component?") : Fe = typeof _, J("React.createElement: type is invalid -- ex\ -pected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", Fe, de); - } - var Ke = Jc.apply(this, arguments); - if (Ke == null) - return Ke; - if (re) - for (var ut = 2; ut < arguments.length; ut++) - Zs(arguments[ut], _); - return _ === o ? VS(Ke) : el(Ke), Ke; - } - a(Yr, "createElementWithValidation"); - var Xt = !1; - function WS(_) { - var H = Yr.bind(null, _); - return H.type = _, Xt || (Xt = !0, he("React.createFactory() is deprecated and will be removed in a future major release. Consider usi\ -ng JSX or use React.createElement() directly instead.")), Object.defineProperty(H, "type", { - enumerable: !1, - get: /* @__PURE__ */ a(function() { - return he("Factory.type is deprecated. Access the class directly before passing it to createFactory."), Object.defineProperty(this, - "type", { - value: _ - }), _; - }, "get") - }), H; - } - a(WS, "createFactoryWithValidation"); - function to(_, H, X) { - for (var re = Me.apply(this, arguments), de = 2; de < arguments.length; de++) - Zs(arguments[de], re.type); - return el(re), re; - } - a(to, "cloneElementWithValidation"); - function va(_, H) { - var X = O.transition; - O.transition = {}; - var re = O.transition; - O.transition._updatedFibers = /* @__PURE__ */ new Set(); - try { - _(); - } finally { - if (O.transition = X, X === null && re._updatedFibers) { - var de = re._updatedFibers.size; - de > 10 && he("Detected a large number of updates inside startTransition. If this is due to a subscription please re-write it to u\ -se React provided hooks. Otherwise concurrent mode guarantees are off the table."), re._updatedFibers.clear(); - } - } - } - a(va, "startTransition"); - var Lo = !1, lf = null; - function th(_) { - if (lf === null) - try { - var H = ("require" + Math.random()).slice(0, 7), X = S5 && S5[H]; - lf = X.call(S5, "timers").setImmediate; - } catch { - lf = /* @__PURE__ */ a(function(de) { - Lo === !1 && (Lo = !0, typeof MessageChannel > "u" && J("This browser does not have a MessageChannel implementation, so enqueuin\ -g tasks via await act(async () => ...) will fail. Please file an issue at https://github.com/facebook/react/issues if you encounter this war\ -ning.")); - var He = new MessageChannel(); - He.port1.onmessage = de, He.port2.postMessage(void 0); - }, "enqueueTaskImpl"); - } - return lf(_); - } - a(th, "enqueueTask"); - var Ki = 0, rh = !1; - function GS(_) { - { - var H = Ki; - Ki++, F.current === null && (F.current = []); - var X = F.isBatchingLegacy, re; - try { - if (F.isBatchingLegacy = !0, re = _(), !X && F.didScheduleLegacyUpdate) { - var de = F.current; - de !== null && (F.didScheduleLegacyUpdate = !1, cf(de)); - } - } catch (zt) { - throw uf(H), zt; - } finally { - F.isBatchingLegacy = X; - } - if (re !== null && typeof re == "object" && typeof re.then == "function") { - var He = re, Fe = !1, Ke = { - then: /* @__PURE__ */ a(function(zt, tr) { - Fe = !0, He.then(function(Ir) { - uf(H), Ki === 0 ? nh(Ir, zt, tr) : zt(Ir); - }, function(Ir) { - uf(H), tr(Ir); - }); - }, "then") - }; - return !rh && typeof Promise < "u" && Promise.resolve().then(function() { - }).then(function() { - Fe || (rh = !0, J("You called act(async () => ...) without await. This could lead to unexpected testing behaviour, interleaving \ -multiple act calls and mixing their scopes. You should - await act(async () => ...);")); - }), Ke; - } else { - var ut = re; - if (uf(H), Ki === 0) { - var Ct = F.current; - Ct !== null && (cf(Ct), F.current = null); - var Nt = { - then: /* @__PURE__ */ a(function(zt, tr) { - F.current === null ? (F.current = [], nh(ut, zt, tr)) : zt(ut); - }, "then") - }; - return Nt; - } else { - var Bt = { - then: /* @__PURE__ */ a(function(zt, tr) { - zt(ut); - }, "then") - }; - return Bt; - } - } - } - } - a(GS, "act"); - function uf(_) { - _ !== Ki - 1 && J("You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before makin\ -g a new one. "), Ki = _; - } - a(uf, "popActScope"); - function nh(_, H, X) { - { - var re = F.current; - if (re !== null) - try { - cf(re), th(function() { - re.length === 0 ? (F.current = null, H(_)) : nh(_, H, X); - }); - } catch (de) { - X(de); - } - else - H(_); - } - } - a(nh, "recursivelyFlushAsyncActWork"); - var tl = !1; - function cf(_) { - if (!tl) { - tl = !0; - var H = 0; - try { - for (; H < _.length; H++) { - var X = _[H]; - do - X = X(!0); - while (X !== null); - } - _.length = 0; - } catch (re) { - throw _ = _.slice(H + 1), re; - } finally { - tl = !1; - } - } - } - a(cf, "flushActQueue"); - var ff = Yr, mg = to, vg = WS, gg = { - map: sr, - forEach: z0, - count: LS, - toArray: j0, - only: PS - }; - ft.Children = gg, ft.Component = Ye, ft.Fragment = o, ft.Profiler = l, ft.PureComponent = _t, ft.StrictMode = s, ft.Suspense = v, ft.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = - ae, ft.cloneElement = mg, ft.createContext = kS, ft.createElement = ff, ft.createFactory = vg, ft.createRef = Or, ft.forwardRef = Wi, ft. - isValidElement = Qe, ft.lazy = Ws, ft.memo = q0, ft.startTransition = va, ft.unstable_act = GS, ft.useCallback = NS, ft.useContext = V0, - ft.useDebugValue = $S, ft.useDeferredValue = lg, ft.useEffect = pu, ft.useId = zS, ft.useImperativeHandle = BS, ft.useInsertionEffect = fn, - ft.useLayoutEffect = MS, ft.useMemo = sg, ft.useReducer = tf, ft.useRef = rf, ft.useState = Gs, ft.useSyncExternalStore = Yi, ft.useTransition = - HS, ft.version = e, typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop == "\ -function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error()); - })(); -}); - -// ../node_modules/react/index.js -var fe = P((XHe, DI) => { - "use strict"; - DI.exports = CI(); -}); - -// ../node_modules/scheduler/cjs/scheduler.development.js -var RI = P((Ht) => { - "use strict"; - (function() { - "use strict"; - typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__. - registerInternalModuleStart(new Error()); - var e = !1, t = !1, r = 5; - function o(Se, Me) { - var Qe = Se.length; - Se.push(Me), c(Se, Me, Qe); - } - a(o, "push"); - function s(Se) { - return Se.length === 0 ? null : Se[0]; - } - a(s, "peek"); - function l(Se) { - if (Se.length === 0) - return null; - var Me = Se[0], Qe = Se.pop(); - return Qe !== Me && (Se[0] = Qe, p(Se, Qe, 0)), Me; - } - a(l, "pop"); - function c(Se, Me, Qe) { - for (var Dt = Qe; Dt > 0; ) { - var qt = Dt - 1 >>> 1, Fn = Se[qt]; - if (h(Fn, Me) > 0) - Se[qt] = Me, Se[Dt] = Fn, Dt = qt; - else - return; - } - } - a(c, "siftUp"); - function p(Se, Me, Qe) { - for (var Dt = Qe, qt = Se.length, Fn = qt >>> 1; Dt < Fn; ) { - var Sr = (Dt + 1) * 2 - 1, Ja = Se[Sr], er = Sr + 1, Za = Se[er]; - if (h(Ja, Me) < 0) - er < qt && h(Za, Ja) < 0 ? (Se[Dt] = Za, Se[er] = Me, Dt = er) : (Se[Dt] = Ja, Se[Sr] = Me, Dt = Sr); - else if (er < qt && h(Za, Me) < 0) - Se[Dt] = Za, Se[er] = Me, Dt = er; - else - return; - } - } - a(p, "siftDown"); - function h(Se, Me) { - var Qe = Se.sortIndex - Me.sortIndex; - return Qe !== 0 ? Qe : Se.id - Me.id; - } - a(h, "compare"); - var v = 1, g = 2, b = 3, w = 4, E = 5; - function D(Se, Me) { - } - a(D, "markTaskErrored"); - var C = typeof performance == "object" && typeof performance.now == "function"; - if (C) { - var R = performance; - Ht.unstable_now = function() { - return R.now(); - }; - } else { - var I = Date, O = I.now(); - Ht.unstable_now = function() { - return I.now() - O; - }; - } - var F = 1073741823, M = -1, N = 250, B = 5e3, $ = 1e4, U = F, q = [], ee = [], ie = 1, le = null, ae = b, he = !1, J = !1, ue = !1, De = typeof setTimeout == - "function" ? setTimeout : null, ke = typeof clearTimeout == "function" ? clearTimeout : null, Te = typeof setImmediate < "u" ? setImmediate : - null, $e = typeof navigator < "u" && navigator.scheduling !== void 0 && navigator.scheduling.isInputPending !== void 0 ? navigator.scheduling. - isInputPending.bind(navigator.scheduling) : null; - function Be(Se) { - for (var Me = s(ee); Me !== null; ) { - if (Me.callback === null) - l(ee); - else if (Me.startTime <= Se) - l(ee), Me.sortIndex = Me.expirationTime, o(q, Me); - else - return; - Me = s(ee); - } - } - a(Be, "advanceTimers"); - function Ye(Se) { - if (ue = !1, Be(Se), !J) - if (s(q) !== null) - J = !0, Qa(pt); - else { - var Me = s(ee); - Me !== null && cn(Ye, Me.startTime - Se); - } - } - a(Ye, "handleTimeout"); - function pt(Se, Me) { - J = !1, ue && (ue = !1, Fa()), he = !0; - var Qe = ae; - try { - if (t) - try { - return lt(Se, Me); - } catch (qt) { - if (le !== null) { - var Dt = Ht.unstable_now(); - le.isQueued = !1; - } - throw qt; - } - else - return lt(Se, Me); - } finally { - le = null, ae = Qe, he = !1; - } - } - a(pt, "flushWork"); - function lt(Se, Me) { - var Qe = Me; - for (Be(Qe), le = s(q); le !== null && !e && !(le.expirationTime > Qe && (!Se || Xa())); ) { - var Dt = le.callback; - if (typeof Dt == "function") { - le.callback = null, ae = le.priorityLevel; - var qt = le.expirationTime <= Qe, Fn = Dt(qt); - Qe = Ht.unstable_now(), typeof Fn == "function" ? le.callback = Fn : le === s(q) && l(q), Be(Qe); - } else - l(q); - le = s(q); - } - if (le !== null) - return !0; - var Sr = s(ee); - return Sr !== null && cn(Ye, Sr.startTime - Qe), !1; - } - a(lt, "workLoop"); - function ht(Se, Me) { - switch (Se) { - case v: - case g: - case b: - case w: - case E: - break; - default: - Se = b; - } - var Qe = ae; - ae = Se; - try { - return Me(); - } finally { - ae = Qe; - } - } - a(ht, "unstable_runWithPriority"); - function St(Se) { - var Me; - switch (ae) { - case v: - case g: - case b: - Me = b; - break; - default: - Me = ae; - break; - } - var Qe = ae; - ae = Me; - try { - return Se(); - } finally { - ae = Qe; - } - } - a(St, "unstable_next"); - function _t(Se) { - var Me = ae; - return function() { - var Qe = ae; - ae = Me; - try { - return Se.apply(this, arguments); - } finally { - ae = Qe; - } - }; - } - a(_t, "unstable_wrapCallback"); - function Ut(Se, Me, Qe) { - var Dt = Ht.unstable_now(), qt; - if (typeof Qe == "object" && Qe !== null) { - var Fn = Qe.delay; - typeof Fn == "number" && Fn > 0 ? qt = Dt + Fn : qt = Dt; - } else - qt = Dt; - var Sr; - switch (Se) { - case v: - Sr = M; - break; - case g: - Sr = N; - break; - case E: - Sr = U; - break; - case w: - Sr = $; - break; - case b: - default: - Sr = B; - break; - } - var Ja = qt + Sr, er = { - id: ie++, - callback: Me, - priorityLevel: Se, - startTime: qt, - expirationTime: Ja, - sortIndex: -1 - }; - return qt > Dt ? (er.sortIndex = qt, o(ee, er), s(q) === null && er === s(ee) && (ue ? Fa() : ue = !0, cn(Ye, qt - Dt))) : (er.sortIndex = - Ja, o(q, er), !J && !he && (J = !0, Qa(pt))), er; - } - a(Ut, "unstable_scheduleCallback"); - function Or() { - } - a(Or, "unstable_pauseExecution"); - function Wn() { - !J && !he && (J = !0, Qa(pt)); - } - a(Wn, "unstable_continueExecution"); - function br() { - return s(q); - } - a(br, "unstable_getFirstCallbackNode"); - function _e(Se) { - Se.callback = null; - } - a(_e, "unstable_cancelCallback"); - function or() { - return ae; - } - a(or, "unstable_getCurrentPriorityLevel"); - var ir = !1, dr = null, Gn = -1, ln = r, ve = -1; - function Xa() { - var Se = Ht.unstable_now() - ve; - return !(Se < ln); - } - a(Xa, "shouldYieldToHost"); - function ha() { - } - a(ha, "requestPaint"); - function Fo(Se) { - if (Se < 0 || Se > 125) { - console.error("forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported"); - return; - } - Se > 0 ? ln = Math.floor(1e3 / Se) : ln = r; - } - a(Fo, "forceFrameRate"); - var Io = /* @__PURE__ */ a(function() { - if (dr !== null) { - var Se = Ht.unstable_now(); - ve = Se; - var Me = !0, Qe = !0; - try { - Qe = dr(Me, Se); - } finally { - Qe ? un() : (ir = !1, dr = null); - } - } else - ir = !1; - }, "performWorkUntilDeadline"), un; - if (typeof Te == "function") - un = /* @__PURE__ */ a(function() { - Te(Io); - }, "schedulePerformWorkUntilDeadline"); - else if (typeof MessageChannel < "u") { - var ma = new MessageChannel(), Yn = ma.port2; - ma.port1.onmessage = Io, un = /* @__PURE__ */ a(function() { - Yn.postMessage(null); - }, "schedulePerformWorkUntilDeadline"); - } else - un = /* @__PURE__ */ a(function() { - De(Io, 0); - }, "schedulePerformWorkUntilDeadline"); - function Qa(Se) { - dr = Se, ir || (ir = !0, un()); - } - a(Qa, "requestHostCallback"); - function cn(Se, Me) { - Gn = De(function() { - Se(Ht.unstable_now()); - }, Me); - } - a(cn, "requestHostTimeout"); - function Fa() { - ke(Gn), Gn = -1; - } - a(Fa, "cancelHostTimeout"); - var qs = ha, Jc = null; - Ht.unstable_IdlePriority = E, Ht.unstable_ImmediatePriority = v, Ht.unstable_LowPriority = w, Ht.unstable_NormalPriority = b, Ht.unstable_Profiling = - Jc, Ht.unstable_UserBlockingPriority = g, Ht.unstable_cancelCallback = _e, Ht.unstable_continueExecution = Wn, Ht.unstable_forceFrameRate = - Fo, Ht.unstable_getCurrentPriorityLevel = or, Ht.unstable_getFirstCallbackNode = br, Ht.unstable_next = St, Ht.unstable_pauseExecution = - Or, Ht.unstable_requestPaint = qs, Ht.unstable_runWithPriority = ht, Ht.unstable_scheduleCallback = Ut, Ht.unstable_shouldYield = Xa, Ht. - unstable_wrapCallback = _t, typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop == - "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStop(new Error()); - })(); -}); - -// ../node_modules/scheduler/index.js -var TI = P((ZHe, AI) => { - "use strict"; - AI.exports = RI(); -}); - -// ../node_modules/react-dom/cjs/react-dom.development.js -var _I = P((Ha) => { - "use strict"; - (function() { - "use strict"; - typeof __REACT_DEVTOOLS_GLOBAL_HOOK__ < "u" && typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.registerInternalModuleStart == "function" && __REACT_DEVTOOLS_GLOBAL_HOOK__. - registerInternalModuleStart(new Error()); - var e = fe(), t = TI(), r = e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED, o = !1; - function s(n) { - o = n; - } - a(s, "setSuppressWarning"); - function l(n) { - if (!o) { - for (var i = arguments.length, u = new Array(i > 1 ? i - 1 : 0), d = 1; d < i; d++) - u[d - 1] = arguments[d]; - p("warn", n, u); - } - } - a(l, "warn"); - function c(n) { - if (!o) { - for (var i = arguments.length, u = new Array(i > 1 ? i - 1 : 0), d = 1; d < i; d++) - u[d - 1] = arguments[d]; - p("error", n, u); - } - } - a(c, "error"); - function p(n, i, u) { - { - var d = r.ReactDebugCurrentFrame, m = d.getStackAddendum(); - m !== "" && (i += "%s", u = u.concat([m])); - var y = u.map(function(x) { - return String(x); - }); - y.unshift("Warning: " + i), Function.prototype.apply.call(console[n], console, y); - } - } - a(p, "printWarning"); - var h = 0, v = 1, g = 2, b = 3, w = 4, E = 5, D = 6, C = 7, R = 8, I = 9, O = 10, F = 11, M = 12, N = 13, B = 14, $ = 15, U = 16, q = 17, - ee = 18, ie = 19, le = 21, ae = 22, he = 23, J = 24, ue = 25, De = !0, ke = !1, Te = !1, $e = !1, Be = !1, Ye = !0, pt = !1, lt = !1, ht = !0, - St = !0, _t = !0, Ut = /* @__PURE__ */ new Set(), Or = {}, Wn = {}; - function br(n, i) { - _e(n, i), _e(n + "Capture", i); - } - a(br, "registerTwoPhaseEvent"); - function _e(n, i) { - Or[n] && c("EventRegistry: More than one plugin attempted to publish the same registration name, `%s`.", n), Or[n] = i; - { - var u = n.toLowerCase(); - Wn[u] = n, n === "onDoubleClick" && (Wn.ondblclick = n); - } - for (var d = 0; d < i.length; d++) - Ut.add(i[d]); - } - a(_e, "registerDirectEvent"); - var or = typeof window < "u" && typeof window.document < "u" && typeof window.document.createElement < "u", ir = Object.prototype.hasOwnProperty; - function dr(n) { - { - var i = typeof Symbol == "function" && Symbol.toStringTag, u = i && n[Symbol.toStringTag] || n.constructor.name || "Object"; - return u; - } - } - a(dr, "typeName"); - function Gn(n) { - try { - return ln(n), !1; - } catch { - return !0; - } - } - a(Gn, "willCoercionThrow"); - function ln(n) { - return "" + n; - } - a(ln, "testStringCoercion"); - function ve(n, i) { - if (Gn(n)) - return c("The provided `%s` attribute is an unsupported type %s. This value must be coerced to a string before before using it here.", - i, dr(n)), ln(n); - } - a(ve, "checkAttributeStringCoercion"); - function Xa(n) { - if (Gn(n)) - return c("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", dr(n)), ln( - n); - } - a(Xa, "checkKeyStringCoercion"); - function ha(n, i) { - if (Gn(n)) - return c("The provided `%s` prop is an unsupported type %s. This value must be coerced to a string before before using it here.", i, - dr(n)), ln(n); - } - a(ha, "checkPropStringCoercion"); - function Fo(n, i) { - if (Gn(n)) - return c("The provided `%s` CSS property is an unsupported type %s. This value must be coerced to a string before before using it he\ -re.", i, dr(n)), ln(n); - } - a(Fo, "checkCSSPropertyStringCoercion"); - function Io(n) { - if (Gn(n)) - return c("The provided HTML markup uses a value of unsupported type %s. This value must be coerced to a string before before using i\ -t here.", dr(n)), ln(n); - } - a(Io, "checkHtmlStringCoercion"); - function un(n) { - if (Gn(n)) - return c("Form field values (value, checked, defaultValue, or defaultChecked props) must be strings, not %s. This value must be coer\ -ced to a string before before using it here.", dr(n)), ln(n); - } - a(un, "checkFormFieldValueStringCoercion"); - var ma = 0, Yn = 1, Qa = 2, cn = 3, Fa = 4, qs = 5, Jc = 6, Se = ":A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1\ -FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD", Me = Se + "\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\\ -u2040", Qe = new RegExp("^[" + Se + "][" + Me + "]*$"), Dt = {}, qt = {}; - function Fn(n) { - return ir.call(qt, n) ? !0 : ir.call(Dt, n) ? !1 : Qe.test(n) ? (qt[n] = !0, !0) : (Dt[n] = !0, c("Invalid attribute name: `%s`", n), !1); - } - a(Fn, "isAttributeNameSafe"); - function Sr(n, i, u) { - return i !== null ? i.type === ma : u ? !1 : n.length > 2 && (n[0] === "o" || n[0] === "O") && (n[1] === "n" || n[1] === "N"); - } - a(Sr, "shouldIgnoreAttribute"); - function Ja(n, i, u, d) { - if (u !== null && u.type === ma) - return !1; - switch (typeof i) { - case "function": - case "symbol": - return !0; - case "boolean": { - if (d) - return !1; - if (u !== null) - return !u.acceptsBooleans; - var m = n.toLowerCase().slice(0, 5); - return m !== "data-" && m !== "aria-"; - } - default: - return !1; - } - } - a(Ja, "shouldRemoveAttributeWithWarning"); - function er(n, i, u, d) { - if (i === null || typeof i > "u" || Ja(n, i, u, d)) - return !0; - if (d) - return !1; - if (u !== null) - switch (u.type) { - case cn: - return !i; - case Fa: - return i === !1; - case qs: - return isNaN(i); - case Jc: - return isNaN(i) || i < 1; - } - return !1; - } - a(er, "shouldRemoveAttribute"); - function Za(n) { - return sr.hasOwnProperty(n) ? sr[n] : null; - } - a(Za, "getPropertyInfo"); - function wr(n, i, u, d, m, y, x) { - this.acceptsBooleans = i === Qa || i === cn || i === Fa, this.attributeName = d, this.attributeNamespace = m, this.mustUseProperty = u, - this.propertyName = n, this.type = i, this.sanitizeURL = y, this.removeEmptyString = x; - } - a(wr, "PropertyInfoRecord"); - var sr = {}, LS = [ - "children", - "dangerouslySetInnerHTML", - // TODO: This prevents the assignment of defaultValue to regular - // elements (not just inputs). Now that ReactDOMInput assigns to the - // defaultValue property -- do we need this? - "defaultValue", - "defaultChecked", - "innerHTML", - "suppressContentEditableWarning", - "suppressHydrationWarning", - "style" - ]; - LS.forEach(function(n) { - sr[n] = new wr( - n, - ma, - !1, - // mustUseProperty - n, - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), [["acceptCharset", "accept-charset"], ["className", "class"], ["htmlFor", "for"], ["httpEquiv", "http-equiv"]].forEach(function(n) { - var i = n[0], u = n[1]; - sr[i] = new wr( - i, - Yn, - !1, - // mustUseProperty - u, - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), ["contentEditable", "draggable", "spellCheck", "value"].forEach(function(n) { - sr[n] = new wr( - n, - Qa, - !1, - // mustUseProperty - n.toLowerCase(), - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), ["autoReverse", "externalResourcesRequired", "focusable", "preserveAlpha"].forEach(function(n) { - sr[n] = new wr( - n, - Qa, - !1, - // mustUseProperty - n, - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), [ - "allowFullScreen", - "async", - // Note: there is a special case that prevents it from being written to the DOM - // on the client side because the browsers are inconsistent. Instead we call focus(). - "autoFocus", - "autoPlay", - "controls", - "default", - "defer", - "disabled", - "disablePictureInPicture", - "disableRemotePlayback", - "formNoValidate", - "hidden", - "loop", - "noModule", - "noValidate", - "open", - "playsInline", - "readOnly", - "required", - "reversed", - "scoped", - "seamless", - // Microdata - "itemScope" - ].forEach(function(n) { - sr[n] = new wr( - n, - cn, - !1, - // mustUseProperty - n.toLowerCase(), - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), [ - "checked", - // Note: `option.selected` is not updated if `select.multiple` is - // disabled with `removeAttribute`. We have special logic for handling this. - "multiple", - "muted", - "selected" - // NOTE: if you add a camelCased prop to this list, - // you'll need to set attributeName to name.toLowerCase() - // instead in the assignment below. - ].forEach(function(n) { - sr[n] = new wr( - n, - cn, - !0, - // mustUseProperty - n, - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), [ - "capture", - "download" - // NOTE: if you add a camelCased prop to this list, - // you'll need to set attributeName to name.toLowerCase() - // instead in the assignment below. - ].forEach(function(n) { - sr[n] = new wr( - n, - Fa, - !1, - // mustUseProperty - n, - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), [ - "cols", - "rows", - "size", - "span" - // NOTE: if you add a camelCased prop to this list, - // you'll need to set attributeName to name.toLowerCase() - // instead in the assignment below. - ].forEach(function(n) { - sr[n] = new wr( - n, - Jc, - !1, - // mustUseProperty - n, - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), ["rowSpan", "start"].forEach(function(n) { - sr[n] = new wr( - n, - qs, - !1, - // mustUseProperty - n.toLowerCase(), - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }); - var z0 = /[\-\:]([a-z])/g, j0 = /* @__PURE__ */ a(function(n) { - return n[1].toUpperCase(); - }, "capitalize"); - [ - "accent-height", - "alignment-baseline", - "arabic-form", - "baseline-shift", - "cap-height", - "clip-path", - "clip-rule", - "color-interpolation", - "color-interpolation-filters", - "color-profile", - "color-rendering", - "dominant-baseline", - "enable-background", - "fill-opacity", - "fill-rule", - "flood-color", - "flood-opacity", - "font-family", - "font-size", - "font-size-adjust", - "font-stretch", - "font-style", - "font-variant", - "font-weight", - "glyph-name", - "glyph-orientation-horizontal", - "glyph-orientation-vertical", - "horiz-adv-x", - "horiz-origin-x", - "image-rendering", - "letter-spacing", - "lighting-color", - "marker-end", - "marker-mid", - "marker-start", - "overline-position", - "overline-thickness", - "paint-order", - "panose-1", - "pointer-events", - "rendering-intent", - "shape-rendering", - "stop-color", - "stop-opacity", - "strikethrough-position", - "strikethrough-thickness", - "stroke-dasharray", - "stroke-dashoffset", - "stroke-linecap", - "stroke-linejoin", - "stroke-miterlimit", - "stroke-opacity", - "stroke-width", - "text-anchor", - "text-decoration", - "text-rendering", - "underline-position", - "underline-thickness", - "unicode-bidi", - "unicode-range", - "units-per-em", - "v-alphabetic", - "v-hanging", - "v-ideographic", - "v-mathematical", - "vector-effect", - "vert-adv-y", - "vert-origin-x", - "vert-origin-y", - "word-spacing", - "writing-mode", - "xmlns:xlink", - "x-height" - // NOTE: if you add a camelCased prop to this list, - // you'll need to set attributeName to name.toLowerCase() - // instead in the assignment below. - ].forEach(function(n) { - var i = n.replace(z0, j0); - sr[i] = new wr( - i, - Yn, - !1, - // mustUseProperty - n, - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }), [ - "xlink:actuate", - "xlink:arcrole", - "xlink:role", - "xlink:show", - "xlink:title", - "xlink:type" - // NOTE: if you add a camelCased prop to this list, - // you'll need to set attributeName to name.toLowerCase() - // instead in the assignment below. - ].forEach(function(n) { - var i = n.replace(z0, j0); - sr[i] = new wr( - i, - Yn, - !1, - // mustUseProperty - n, - "http://www.w3.org/1999/xlink", - !1, - // sanitizeURL - !1 - ); - }), [ - "xml:base", - "xml:lang", - "xml:space" - // NOTE: if you add a camelCased prop to this list, - // you'll need to set attributeName to name.toLowerCase() - // instead in the assignment below. - ].forEach(function(n) { - var i = n.replace(z0, j0); - sr[i] = new wr( - i, - Yn, - !1, - // mustUseProperty - n, - "http://www.w3.org/XML/1998/namespace", - !1, - // sanitizeURL - !1 - ); - }), ["tabIndex", "crossOrigin"].forEach(function(n) { - sr[n] = new wr( - n, - Yn, - !1, - // mustUseProperty - n.toLowerCase(), - // attributeName - null, - // attributeNamespace - !1, - // sanitizeURL - !1 - ); - }); - var PS = "xlinkHref"; - sr[PS] = new wr( - "xlinkHref", - Yn, - !1, - // mustUseProperty - "xlink:href", - "http://www.w3.org/1999/xlink", - !0, - // sanitizeURL - !1 - ), ["src", "href", "action", "formAction"].forEach(function(n) { - sr[n] = new wr( - n, - Yn, - !1, - // mustUseProperty - n.toLowerCase(), - // attributeName - null, - // attributeNamespace - !0, - // sanitizeURL - !0 - ); - }); - var kS = /^[\u0000-\u001F ]*j[\r\n\t]*a[\r\n\t]*v[\r\n\t]*a[\r\n\t]*s[\r\n\t]*c[\r\n\t]*r[\r\n\t]*i[\r\n\t]*p[\r\n\t]*t[\r\n\t]*\:/i, Vs = !1; - function Zc(n) { - !Vs && kS.test(n) && (Vs = !0, c("A future version of React will block javascript: URLs as a security precaution. Use event handlers i\ -nstead if you can. If you need to generate unsafe HTML try using dangerouslySetInnerHTML instead. React was passed %s.", JSON.stringify(n))); - } - a(Zc, "sanitizeURL"); - function og(n, i, u, d) { - if (d.mustUseProperty) { - var m = d.propertyName; - return n[m]; - } else { - ve(u, i), d.sanitizeURL && Zc("" + u); - var y = d.attributeName, x = null; - if (d.type === Fa) { - if (n.hasAttribute(y)) { - var A = n.getAttribute(y); - return A === "" ? !0 : er(i, u, d, !1) ? A : A === "" + u ? u : A; - } - } else if (n.hasAttribute(y)) { - if (er(i, u, d, !1)) - return n.getAttribute(y); - if (d.type === cn) - return u; - x = n.getAttribute(y); - } - return er(i, u, d, !1) ? x === null ? u : x : x === "" + u ? u : x; - } - } - a(og, "getValueForProperty"); - function ig(n, i, u, d) { - { - if (!Fn(i)) - return; - if (!n.hasAttribute(i)) - return u === void 0 ? void 0 : null; - var m = n.getAttribute(i); - return ve(u, i), m === "" + u ? u : m; - } - } - a(ig, "getValueForAttribute"); - function U0(n, i, u, d) { - var m = Za(i); - if (!Sr(i, m, d)) { - if (er(i, u, m, d) && (u = null), d || m === null) { - if (Fn(i)) { - var y = i; - u === null ? n.removeAttribute(y) : (ve(u, i), n.setAttribute(y, "" + u)); - } - return; - } - var x = m.mustUseProperty; - if (x) { - var A = m.propertyName; - if (u === null) { - var T = m.type; - n[A] = T === cn ? !1 : ""; - } else - n[A] = u; - return; - } - var L = m.attributeName, k = m.attributeNamespace; - if (u === null) - n.removeAttribute(L); - else { - var j = m.type, z; - j === cn || j === Fa && u === !0 ? z = "" : (ve(u, L), z = "" + u, m.sanitizeURL && Zc(z.toString())), k ? n.setAttributeNS(k, L, z) : - n.setAttribute(L, z); - } - } - } - a(U0, "setValueForProperty"); - var Ws = Symbol.for("react.element"), Wi = Symbol.for("react.portal"), Gi = Symbol.for("react.fragment"), ef = Symbol.for("react.strict_\ -mode"), q0 = Symbol.for("react.profiler"), Fr = Symbol.for("react.provider"), V0 = Symbol.for("react.context"), Gs = Symbol.for("react.forwa\ -rd_ref"), tf = Symbol.for("react.suspense"), rf = Symbol.for("react.suspense_list"), pu = Symbol.for("react.memo"), fn = Symbol.for("react.l\ -azy"), MS = Symbol.for("react.scope"), NS = Symbol.for("react.debug_trace_mode"), sg = Symbol.for("react.offscreen"), BS = Symbol.for("react\ -.legacy_hidden"), $S = Symbol.for("react.cache"), HS = Symbol.for("react.tracing_marker"), lg = Symbol.iterator, zS = "@@iterator"; - function Yi(n) { - if (n === null || typeof n != "object") - return null; - var i = lg && n[lg] || n[zS]; - return typeof i == "function" ? i : null; - } - a(Yi, "getIteratorFn"); - var et = Object.assign, Ys = 0, W0, G0, Y0, K0, X0, Q0, J0; - function ug() { - } - a(ug, "disabledLog"), ug.__reactDisabledLog = !0; - function jS() { - { - if (Ys === 0) { - W0 = console.log, G0 = console.info, Y0 = console.warn, K0 = console.error, X0 = console.group, Q0 = console.groupCollapsed, J0 = console. - groupEnd; - var n = { - configurable: !0, - enumerable: !0, - value: ug, - writable: !0 - }; - Object.defineProperties(console, { - info: n, - log: n, - warn: n, - error: n, - group: n, - groupCollapsed: n, - groupEnd: n - }); - } - Ys++; - } - } - a(jS, "disableLogs"); - function Z0() { - { - if (Ys--, Ys === 0) { - var n = { - configurable: !0, - enumerable: !0, - writable: !0 - }; - Object.defineProperties(console, { - log: et({}, n, { - value: W0 - }), - info: et({}, n, { - value: G0 - }), - warn: et({}, n, { - value: Y0 - }), - error: et({}, n, { - value: K0 - }), - group: et({}, n, { - value: X0 - }), - groupCollapsed: et({}, n, { - value: Q0 - }), - groupEnd: et({}, n, { - value: J0 - }) - }); - } - Ys < 0 && c("disabledDepth fell below zero. This is a bug in React. Please file an issue."); - } - } - a(Z0, "reenableLogs"); - var hu = r.ReactCurrentDispatcher, Ks; - function eo(n, i, u) { - { - if (Ks === void 0) - try { - throw Error(); - } catch (m) { - var d = m.stack.trim().match(/\n( *(at )?)/); - Ks = d && d[1] || ""; - } - return ` -` + Ks + n; - } - } - a(eo, "describeBuiltInComponentFrame"); - var Xs = !1, nf; - { - var cg = typeof WeakMap == "function" ? WeakMap : Map; - nf = new cg(); - } - function eh(n, i) { - if (!n || Xs) - return ""; - { - var u = nf.get(n); - if (u !== void 0) - return u; - } - var d; - Xs = !0; - var m = Error.prepareStackTrace; - Error.prepareStackTrace = void 0; - var y; - y = hu.current, hu.current = null, jS(); - try { - if (i) { - var x = /* @__PURE__ */ a(function() { - throw Error(); - }, "Fake"); - if (Object.defineProperty(x.prototype, "props", { - set: /* @__PURE__ */ a(function() { - throw Error(); - }, "set") - }), typeof Reflect == "object" && Reflect.construct) { - try { - Reflect.construct(x, []); - } catch (K) { - d = K; - } - Reflect.construct(n, [], x); - } else { - try { - x.call(); - } catch (K) { - d = K; - } - n.call(x.prototype); - } - } else { - try { - throw Error(); - } catch (K) { - d = K; - } - n(); - } - } catch (K) { - if (K && d && typeof K.stack == "string") { - for (var A = K.stack.split(` -`), T = d.stack.split(` -`), L = A.length - 1, k = T.length - 1; L >= 1 && k >= 0 && A[L] !== T[k]; ) - k--; - for (; L >= 1 && k >= 0; L--, k--) - if (A[L] !== T[k]) { - if (L !== 1 || k !== 1) - do - if (L--, k--, k < 0 || A[L] !== T[k]) { - var j = ` -` + A[L].replace(" at new ", " at "); - return n.displayName && j.includes("") && (j = j.replace("", n.displayName)), typeof n == "functio\ -n" && nf.set(n, j), j; - } - while (L >= 1 && k >= 0); - break; - } - } - } finally { - Xs = !1, hu.current = y, Z0(), Error.prepareStackTrace = m; - } - var z = n ? n.displayName || n.name : "", Q = z ? eo(z) : ""; - return typeof n == "function" && nf.set(n, Q), Q; - } - a(eh, "describeNativeComponentFrame"); - function US(n, i, u) { - return eh(n, !0); - } - a(US, "describeClassComponentFrame"); - function Qs(n, i, u) { - return eh(n, !1); - } - a(Qs, "describeFunctionComponentFrame"); - function fg(n) { - var i = n.prototype; - return !!(i && i.isReactComponent); - } - a(fg, "shouldConstruct"); - function af(n, i, u) { - if (n == null) - return ""; - if (typeof n == "function") - return eh(n, fg(n)); - if (typeof n == "string") - return eo(n); - switch (n) { - case tf: - return eo("Suspense"); - case rf: - return eo("SuspenseList"); - } - if (typeof n == "object") - switch (n.$$typeof) { - case Gs: - return Qs(n.render); - case pu: - return af(n.type, i, u); - case fn: { - var d = n, m = d._payload, y = d._init; - try { - return af(y(m), i, u); - } catch { - } - } - } - return ""; - } - a(af, "describeUnknownElementTypeFrameInDEV"); - function of(n) { - var i = n._debugOwner ? n._debugOwner.type : null, u = n._debugSource; - switch (n.tag) { - case E: - return eo(n.type); - case U: - return eo("Lazy"); - case N: - return eo("Suspense"); - case ie: - return eo("SuspenseList"); - case h: - case g: - case $: - return Qs(n.type); - case F: - return Qs(n.type.render); - case v: - return US(n.type); - default: - return ""; - } - } - a(of, "describeFiber"); - function dg(n) { - try { - var i = "", u = n; - do - i += of(u), u = u.return; - while (u); - return i; - } catch (d) { - return ` -Error generating stack: ` + d.message + ` -` + d.stack; - } - } - a(dg, "getStackByFiberInDevAndProd"); - function Js(n, i, u) { - var d = n.displayName; - if (d) - return d; - var m = i.displayName || i.name || ""; - return m !== "" ? u + "(" + m + ")" : u; - } - a(Js, "getWrappedName"); - function sf(n) { - return n.displayName || "Context"; - } - a(sf, "getContextName"); - function Ot(n) { - if (n == null) - return null; - if (typeof n.tag == "number" && c("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please \ -file an issue."), typeof n == "function") - return n.displayName || n.name || null; - if (typeof n == "string") - return n; - switch (n) { - case Gi: - return "Fragment"; - case Wi: - return "Portal"; - case q0: - return "Profiler"; - case ef: - return "StrictMode"; - case tf: - return "Suspense"; - case rf: - return "SuspenseList"; - } - if (typeof n == "object") - switch (n.$$typeof) { - case V0: - var i = n; - return sf(i) + ".Consumer"; - case Fr: - var u = n; - return sf(u._context) + ".Provider"; - case Gs: - return Js(n, n.render, "ForwardRef"); - case pu: - var d = n.displayName || null; - return d !== null ? d : Ot(n.type) || "Memo"; - case fn: { - var m = n, y = m._payload, x = m._init; - try { - return Ot(x(y)); - } catch { - return null; - } - } - } - return null; - } - a(Ot, "getComponentNameFromType"); - function qS(n, i, u) { - var d = i.displayName || i.name || ""; - return n.displayName || (d !== "" ? u + "(" + d + ")" : u); - } - a(qS, "getWrappedName$1"); - function pg(n) { - return n.displayName || "Context"; - } - a(pg, "getContextName$1"); - function Xe(n) { - var i = n.tag, u = n.type; - switch (i) { - case J: - return "Cache"; - case I: - var d = u; - return pg(d) + ".Consumer"; - case O: - var m = u; - return pg(m._context) + ".Provider"; - case ee: - return "DehydratedFragment"; - case F: - return qS(u, u.render, "ForwardRef"); - case C: - return "Fragment"; - case E: - return u; - case w: - return "Portal"; - case b: - return "Root"; - case D: - return "Text"; - case U: - return Ot(u); - case R: - return u === ef ? "StrictMode" : "Mode"; - case ae: - return "Offscreen"; - case M: - return "Profiler"; - case le: - return "Scope"; - case N: - return "Suspense"; - case ie: - return "SuspenseList"; - case ue: - return "TracingMarker"; - case v: - case h: - case q: - case g: - case B: - case $: - if (typeof u == "function") - return u.displayName || u.name || null; - if (typeof u == "string") - return u; - break; - } - return null; - } - a(Xe, "getComponentNameFromFiber"); - var hg = r.ReactDebugCurrentFrame, In = null, Zs = !1; - function el() { - { - if (In === null) - return null; - var n = In._debugOwner; - if (n !== null && typeof n < "u") - return Xe(n); - } - return null; - } - a(el, "getCurrentFiberOwnerNameInDevOrNull"); - function VS() { - return In === null ? "" : dg(In); - } - a(VS, "getCurrentFiberStackInDev"); - function Yr() { - hg.getCurrentStack = null, In = null, Zs = !1; - } - a(Yr, "resetCurrentFiber"); - function Xt(n) { - hg.getCurrentStack = n === null ? null : VS, In = n, Zs = !1; - } - a(Xt, "setCurrentFiber"); - function WS() { - return In; - } - a(WS, "getCurrentFiber"); - function to(n) { - Zs = n; - } - a(to, "setIsRendering"); - function va(n) { - return "" + n; - } - a(va, "toString"); - function Lo(n) { - switch (typeof n) { - case "boolean": - case "number": - case "string": - case "undefined": - return n; - case "object": - return un(n), n; - default: - return ""; - } - } - a(Lo, "getToStringValue"); - var lf = { - button: !0, - checkbox: !0, - image: !0, - hidden: !0, - radio: !0, - reset: !0, - submit: !0 - }; - function th(n, i) { - lf[i.type] || i.onChange || i.onInput || i.readOnly || i.disabled || i.value == null || c("You provided a `value` prop to a form field\ - without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultValue`. Otherwise, set either\ - `onChange` or `readOnly`."), i.onChange || i.readOnly || i.disabled || i.checked == null || c("You provided a `checked` prop to a form fiel\ -d without an `onChange` handler. This will render a read-only field. If the field should be mutable use `defaultChecked`. Otherwise, set eit\ -her `onChange` or `readOnly`."); - } - a(th, "checkControlledValueProps"); - function Ki(n) { - var i = n.type, u = n.nodeName; - return u && u.toLowerCase() === "input" && (i === "checkbox" || i === "radio"); - } - a(Ki, "isCheckable"); - function rh(n) { - return n._valueTracker; - } - a(rh, "getTracker"); - function GS(n) { - n._valueTracker = null; - } - a(GS, "detachTracker"); - function uf(n) { - var i = ""; - return n && (Ki(n) ? i = n.checked ? "true" : "false" : i = n.value), i; - } - a(uf, "getValueFromNode"); - function nh(n) { - var i = Ki(n) ? "checked" : "value", u = Object.getOwnPropertyDescriptor(n.constructor.prototype, i); - un(n[i]); - var d = "" + n[i]; - if (!(n.hasOwnProperty(i) || typeof u > "u" || typeof u.get != "function" || typeof u.set != "function")) { - var m = u.get, y = u.set; - Object.defineProperty(n, i, { - configurable: !0, - get: /* @__PURE__ */ a(function() { - return m.call(this); - }, "get"), - set: /* @__PURE__ */ a(function(A) { - un(A), d = "" + A, y.call(this, A); - }, "set") - }), Object.defineProperty(n, i, { - enumerable: u.enumerable - }); - var x = { - getValue: /* @__PURE__ */ a(function() { - return d; - }, "getValue"), - setValue: /* @__PURE__ */ a(function(A) { - un(A), d = "" + A; - }, "setValue"), - stopTracking: /* @__PURE__ */ a(function() { - GS(n), delete n[i]; - }, "stopTracking") - }; - return x; - } - } - a(nh, "trackValueOnNode"); - function tl(n) { - rh(n) || (n._valueTracker = nh(n)); - } - a(tl, "track"); - function cf(n) { - if (!n) - return !1; - var i = rh(n); - if (!i) - return !0; - var u = i.getValue(), d = uf(n); - return d !== u ? (i.setValue(d), !0) : !1; - } - a(cf, "updateValueIfChanged"); - function ff(n) { - if (n = n || (typeof document < "u" ? document : void 0), typeof n > "u") - return null; - try { - return n.activeElement || n.body; - } catch { - return n.body; - } - } - a(ff, "getActiveElement"); - var mg = !1, vg = !1, gg = !1, _ = !1; - function H(n) { - var i = n.type === "checkbox" || n.type === "radio"; - return i ? n.checked != null : n.value != null; - } - a(H, "isControlled"); - function X(n, i) { - var u = n, d = i.checked, m = et({}, i, { - defaultChecked: void 0, - defaultValue: void 0, - value: void 0, - checked: d ?? u._wrapperState.initialChecked - }); - return m; - } - a(X, "getHostProps"); - function re(n, i) { - th("input", i), i.checked !== void 0 && i.defaultChecked !== void 0 && !vg && (c("%s contains an input of type %s with both checked an\ -d defaultChecked props. Input elements must be either controlled or uncontrolled (specify either the checked prop, or the defaultChecked pro\ -p, but not both). Decide between using a controlled or uncontrolled input element and remove one of these props. More info: https://reactjs.\ -org/link/controlled-components", el() || "A component", i.type), vg = !0), i.value !== void 0 && i.defaultValue !== void 0 && !mg && (c("%s \ -contains an input of type %s with both value and defaultValue props. Input elements must be either controlled or uncontrolled (specify eithe\ -r the value prop, or the defaultValue prop, but not both). Decide between using a controlled or uncontrolled input element and remove one of\ - these props. More info: https://reactjs.org/link/controlled-components", el() || "A component", i.type), mg = !0); - var u = n, d = i.defaultValue == null ? "" : i.defaultValue; - u._wrapperState = { - initialChecked: i.checked != null ? i.checked : i.defaultChecked, - initialValue: Lo(i.value != null ? i.value : d), - controlled: H(i) - }; - } - a(re, "initWrapperState"); - function de(n, i) { - var u = n, d = i.checked; - d != null && U0(u, "checked", d, !1); - } - a(de, "updateChecked"); - function He(n, i) { - var u = n; - { - var d = H(i); - !u._wrapperState.controlled && d && !_ && (c("A component is changing an uncontrolled input to be controlled. This is likely caused \ -by the value changing from undefined to a defined value, which should not happen. Decide between using a controlled or uncontrolled input el\ -ement for the lifetime of the component. More info: https://reactjs.org/link/controlled-components"), _ = !0), u._wrapperState.controlled && - !d && !gg && (c("A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a d\ -efined to undefined, which should not happen. Decide between using a controlled or uncontrolled input element for the lifetime of the compon\ -ent. More info: https://reactjs.org/link/controlled-components"), gg = !0); - } - de(n, i); - var m = Lo(i.value), y = i.type; - if (m != null) - y === "number" ? (m === 0 && u.value === "" || // We explicitly want to coerce to number here if possible. - // eslint-disable-next-line - u.value != m) && (u.value = va(m)) : u.value !== va(m) && (u.value = va(m)); - else if (y === "submit" || y === "reset") { - u.removeAttribute("value"); - return; - } - i.hasOwnProperty("value") ? Ct(u, i.type, m) : i.hasOwnProperty("defaultValue") && Ct(u, i.type, Lo(i.defaultValue)), i.checked == null && - i.defaultChecked != null && (u.defaultChecked = !!i.defaultChecked); - } - a(He, "updateWrapper"); - function Fe(n, i, u) { - var d = n; - if (i.hasOwnProperty("value") || i.hasOwnProperty("defaultValue")) { - var m = i.type, y = m === "submit" || m === "reset"; - if (y && (i.value === void 0 || i.value === null)) - return; - var x = va(d._wrapperState.initialValue); - u || x !== d.value && (d.value = x), d.defaultValue = x; - } - var A = d.name; - A !== "" && (d.name = ""), d.defaultChecked = !d.defaultChecked, d.defaultChecked = !!d._wrapperState.initialChecked, A !== "" && (d.name = - A); - } - a(Fe, "postMountWrapper"); - function Ke(n, i) { - var u = n; - He(u, i), ut(u, i); - } - a(Ke, "restoreControlledState"); - function ut(n, i) { - var u = i.name; - if (i.type === "radio" && u != null) { - for (var d = n; d.parentNode; ) - d = d.parentNode; - ve(u, "name"); - for (var m = d.querySelectorAll("input[name=" + JSON.stringify("" + u) + '][type="radio"]'), y = 0; y < m.length; y++) { - var x = m[y]; - if (!(x === n || x.form !== n.form)) { - var A = ay(x); - if (!A) - throw new Error("ReactDOMInput: Mixing React and non-React radio inputs with the same `name` is not supported."); - cf(x), He(x, A); - } - } - } - } - a(ut, "updateNamedCousins"); - function Ct(n, i, u) { - // Focused number inputs synchronize on blur. See ChangeEventPlugin.js - (i !== "number" || ff(n.ownerDocument) !== n) && (u == null ? n.defaultValue = va(n._wrapperState.initialValue) : n.defaultValue !== va( - u) && (n.defaultValue = va(u))); - } - a(Ct, "setDefaultValue"); - var Nt = !1, Bt = !1, zt = !1; - function tr(n, i) { - i.value == null && (typeof i.children == "object" && i.children !== null ? e.Children.forEach(i.children, function(u) { - u != null && (typeof u == "string" || typeof u == "number" || Bt || (Bt = !0, c("Cannot infer the option value of complex children. \ -Pass a `value` prop or use a plain string as children to