{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/N0dk20OmTDzABA3MTpLJ/vCHax1xtqLJUbHqeqGID/TableOfContents.js", "ssg:https://framerusercontent.com/modules/rylZxAftY5biHrNTMgHE/GIpBMlLlMMz8E26LLK4M/hFjWKRd0h.js", "ssg:https://framerusercontent.com/modules/xMTzFYnrOOiJVKBM69QM/EUCSDUzB4ukeDubbAhld/rZjEUZkty.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useState,useRef}from\"react\";import{motion,LayoutGroup}from\"framer-motion\";const LETTERS=\"abcdefghijklmnopqurstuvwxyz\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function TableOfContents(props){const{content,headingIdPrefix,topItem,includedHeadings,linking,fontColor,textMode,gap,labels,highlight}=props;// if (!content) {\n//     return <div style={props.style} /> // Get empty state from CMS Slideshow\n//     // Connect a formatted text field to the Content variable to create a table of contents.\n// }\nconst pt=highlight?highlight.paddingIsMixed?highlight.paddingTop:highlight.padding:0;const pl=highlight?highlight.paddingIsMixed?highlight.paddingLeft:highlight.padding:0;const pb=highlight?highlight.paddingIsMixed?highlight.paddingBottom:highlight.padding:0;const pr=highlight?highlight.paddingIsMixed?highlight.paddingRight:highlight.padding:0;const uniqueLayoutId=Math.random().toString();const highlightBorder=highlight===null||highlight===void 0?void 0:highlight.border;const highlightShadow=highlight===null||highlight===void 0?void 0:highlight.shadow;const highlightRadius=highlight?highlight.radiusIsMixed?`${highlight.radiusTopLeft}px ${highlight.radiusTopRight}px ${highlight.radiusBottomRight}px ${highlight.radiusBottomLeft}px`:`${highlight.radius}px`:\"\";const itemsBeforeHeadings=useRef(0);const totalItems=useRef(0);const[activeIndex,setActiveIndex]=useState(0);const activeIndexRef=useRef(activeIndex);let documentHeightElement=null;if(typeof document!==\"undefined\"){// In the preview, body does not have the correct height.\n// This finds the first element with the actual height of the page.\nconst bodyChildren=document.body.children;for(let i=0;i<bodyChildren.length;i++){if(bodyChildren[i].tagName.toLowerCase()===\"main\"){documentHeightElement=bodyChildren[i].firstChild;break;}}// On the published site, body has the correct height.\nif(!documentHeightElement){documentHeightElement=document.body;}}useEffect(()=>{const headings=headingIds.map(id=>document.querySelector(`[id=\"${id}\"]`));const onScroll=()=>{let index=headings.findIndex(header=>(header===null||header===void 0?void 0:header.getBoundingClientRect().top)>100||0);if(window.scrollY<=0){// Top of page\nindex=0;}else if(Math.round(window.innerHeight+window.scrollY)>=documentHeightElement.offsetHeight){// Bottom of page\nindex=totalItems.current-1;}else if(index===-1){index=totalItems.current-1;}else if(index>0){index=index-1+itemsBeforeHeadings.current;}if(index!==activeIndexRef.current){const newIndex=index;setActiveIndex(newIndex);activeIndexRef.current=newIndex;}};window.addEventListener(\"scroll\",onScroll);return()=>{window.removeEventListener(\"scroll\",onScroll);};},[]);const headingTitles=[];const headingIds=[];const children=content.props&&(Array.isArray(content.props.children)?content.props.children:[content.props.children]);if(children&&children.length){for(const child of children){if(includedHeadings[child.type]==true){const text=getTextFromReactElement(child);let id=headingIdPrefix+text.toLowerCase().trim().replace(/[^a-z0-9\\s]/g,\"\").replace(/\\s+/g,\"-\").replace(/-+/g,\"-\");if(headingIds.includes(id)){for(let i=2;i<100;i++){if(!headingIds.includes(`${id}-${i}`)){id=`${id}-${i}`;break;}}}headingTitles.push(text);headingIds.push(id);}}}function onTopItemButtonPress(){if(linking){window.scrollTo({top:0,behavior:linking.scrollMode==\"smooth\"?\"smooth\":undefined});}}function onHeadingButtonPress(index){if(linking){const element=document.getElementById(headingIds[index]);if(element){element.scrollIntoView(linking.scrollMode==\"smooth\"?{behavior:\"smooth\"}:undefined);}else{window.location.hash=headingIds[index];}}}function onItemButtonPress(item){if(linking){window.location.href=item.link;}}const buttons=[];let index=0;// Top item\nif(topItem.length>0){buttons.push({text:topItem,onButtonPress:onTopItemButtonPress});// buttons.push(\n//     <ListItem\n//         {...props}\n//         key={index}\n//         index={index}\n//         buttonText={topItem}\n//         activeIndex={activeIndex}\n//         onButtonPress={onTopItemButtonPress}\n//     />\n// )\nindex++;itemsBeforeHeadings.current=1;}// for (const item of startItems) {\n//     buttons.push(\n//         <ListItem\n//             {...props}\n//             key={index}\n//             index={index}\n//             buttonText={item.name}\n//             activeIndex={activeIndex}\n//             onButtonPress={() => onItemButtonPress(item)}\n//         />\n//     )\n//     index++\n// }\nfor(let i=0;i<headingTitles.length;i++){buttons.push({text:headingTitles[i],onButtonPress:()=>onHeadingButtonPress(i)});// buttons.push(\n//     <ListItem\n//         {...props}\n//         key={index}\n//         index={index}\n//         buttonText={headingTitles[i]}\n//         activeIndex={activeIndex}\n//         onButtonPress={() => onHeadingButtonPress(i)}\n//     />\n// )\nindex++;}// for (const item of endItems) {\n//     buttons.push(\n//         <ListItem\n//             {...props}\n//             key={index}\n//             index={index}\n//             buttonText={item.name}\n//             activeIndex={activeIndex}\n//             onButtonPress={() => onItemButtonPress(item)}\n//         />\n//     )\n//     index++\n// }\ntotalItems.current=index;return /*#__PURE__*/_jsxs(\"div\",{style:{// display: \"flex\",\n// flexDirection: \"column\",\ndisplay:\"grid\",gridTemplateColumns:labels?labels.position==\"left\"?\"max-content auto\":\"auto max-content\":\"100%\",rowGap:0,columnGap:labels===null||labels===void 0?void 0:labels.gap,userSelect:props.textSelect?\"auto\":\"none\",...props.font,...props.style},children:[/*#__PURE__*/_jsx(\"style\",{children:`html { scroll-padding-top: ${linking.scrollOffset}px; }`}),/*#__PURE__*/_jsx(LayoutGroup,{id:uniqueLayoutId,children:buttons.map((value,index)=>/*#__PURE__*/_jsxs(motion.div,{onClick:value.onButtonPress,animate:{color:index==activeIndex?fontColor.current:fontColor.default},whileHover:{color:index==activeIndex?fontColor.currentHover:fontColor.defaultHover},style:{position:\"relative\",display:\"grid\",gridTemplateColumns:\"subgrid\",alignItems:\"top\",gridColumn:labels?\"span 2\":undefined,// display: \"flex\",\n    // flexDirection:\n    //     labels?.position == \"right\"\n    //         ? \"row-reverse\"\n    //         : \"row\",\n    // gap: labels?.gap,\n    padding:`${index==0?pt:gap/2}px ${pr}px ${index==totalItems.current-1?pb:gap/2}px ${pl}px`,cursor:linking?\"pointer\":undefined},initial:false,transition:props.transition,children:[index==activeIndex&&highlight&&/*#__PURE__*/_jsxs(motion.div,{layoutId:\"highlight\",style:{position:\"absolute\",inset:0,top:index==0?0:-pt+gap/2,bottom:index==totalItems.current-1?0:-pb+gap/2},children:[/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,backgroundColor:highlight.fill,opacity:highlight.opacity,borderRadius:highlightRadius,boxShadow:highlightShadow&&`${highlightShadow.x}px ${highlightShadow.y}px ${highlightShadow.blur}px ${highlightShadow.spread}px ${highlightShadow.color}`,backdropFilter:highlight.bgBlur>0?`blur(${highlight.bgBlur}px)`:undefined,pointerEvents:\"none\"}}),highlightBorder&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,borderColor:highlightBorder.color,borderWidth:highlightBorder.widthIsMixed?`${highlightBorder.widthTop}px ${highlightBorder.widthRight}px ${highlightBorder.widthBottom}px ${highlightBorder.widthLeft}px`:`${highlightBorder.width}px`,borderStyle:highlightBorder.style,borderRadius:highlightRadius,pointerEvents:\"none\"}})]}),labels&&/*#__PURE__*/_jsx(ButtonLabel,{...labels,index:index}),/*#__PURE__*/_jsx(\"span\",{style:{position:\"relative\",flex:1,overflow:textMode==\"wrap\"?\"visible\":\"hidden\",overflowWrap:textMode==\"wrap\"?\"break-word\":\"none\",textOverflow:textMode==\"truncate\"?\"ellipsis\":\"none\",whiteSpace:textMode==\"truncate\"?\"nowrap\":\"none\"},children:value.text})]}))})]});}TableOfContents.displayName=\"Table of Contents\";function headingControl(title){return{type:ControlType.Boolean,defaultValue:true,title:title};}addPropertyControls(TableOfContents,{content:{type:\"richtext\"},headingIdPrefix:{type:ControlType.String,defaultValue:\"\",title:\"Heading ID Prefix\"},topItem:{type:ControlType.String,defaultValue:\"\"},includedHeadings:{type:ControlType.Object,buttonTitle:\"H1 - H6\",controls:{h1:headingControl(\"H1\"),h2:headingControl(\"H2\"),h3:headingControl(\"H3\"),h4:headingControl(\"H4\"),h5:headingControl(\"H5\"),h6:headingControl(\"H6\")},title:\"Headings\"},linking:{type:ControlType.Object,optional:true,defaultValue:{scrollMode:\"smooth\"},controls:{scrollMode:{type:ControlType.Enum,defaultValue:\"smooth\",options:[\"smooth\",\"instant\"],optionTitles:[\"Smooth\",\"Instant\"],displaySegmentedControl:true,title:\"Scroll\"},scrollOffset:{type:ControlType.Number,defaultValue:32,step:1,description:\"Distance from heading to top of screen to scroll to.\"}}},fontColor:{type:ControlType.Object,buttonTitle:\"Options\",controls:{current:{type:ControlType.Color,defaultValue:\"#0075FF\"},currentHover:{type:ControlType.Color,defaultValue:\"#0099FF\"},default:{type:ControlType.Color,defaultValue:\"#000000\"},defaultHover:{type:ControlType.Color,defaultValue:\"#000000\"},transition:{type:ControlType.Transition}}},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1}},textMode:{type:ControlType.Enum,defaultValue:\"wrap\",options:[\"wrap\",\"truncate\",\"clip\"],optionTitles:[\"Wrap\",\"Truncate\",\"Clip\"]},labels:{type:ControlType.Object,optional:true,controls:{type:{type:ControlType.Enum,defaultValue:\"numbers\",options:[\"numbers\",\"letters\",\"romanNumerals\",\"character\"],optionTitles:[\"Numbers\",\"Letters\",\"Roman Numerals\",\"Character\"]},capitalized:{type:ControlType.Boolean,defaultValue:false,hidden:props=>props.type!=\"letters\"},prefix:{type:ControlType.String,defaultValue:\"\",hidden:props=>props.type==\"character\"},suffix:{type:ControlType.String,defaultValue:\".\",hidden:props=>props.type==\"character\"},character:{type:ControlType.String,defaultValue:\"\u2022\",hidden:props=>props.type!=\"character\"},gap:{type:ControlType.Number,defaultValue:4,min:0,step:1},position:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],displaySegmentedControl:true},alignment:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true}}},highlight:{type:ControlType.Object,defaultValue:{fill:\"rgba(0, 117, 255, 0.2)\",padding:10,radius:8},optional:true,buttonTitle:\"Styles\",controls:{fill:{type:ControlType.Color,optional:true},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01},padding:{type:ControlType.FusedNumber,defaultValue:10,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadow:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.25)\"},x:{type:ControlType.Number,defaultValue:0,displayStepper:true},y:{type:ControlType.Number,defaultValue:2,displayStepper:true},blur:{type:ControlType.Number,defaultValue:4,displayStepper:true},spread:{type:ControlType.Number,defaultValue:0,displayStepper:true}}},bgBlur:{type:ControlType.Number,defaultValue:0,min:0,step:1,title:\"BG Blur\"},transition:{type:ControlType.Transition}}},gap:{type:ControlType.Number,defaultValue:20,min:0,step:1},textSelect:{type:ControlType.Boolean,defaultValue:false}});function ButtonLabel(props){const{type,index}=props;let prefixAndSuffix=true;let text=\"\";switch(type){case\"numbers\":text=String(index+1);break;case\"letters\":if(index<LETTERS.length){text=LETTERS[index];}else{text=LETTERS[Math.floor(index/LETTERS.length)]+LETTERS[index%LETTERS.length];}if(props.capitalized){text=text.toUpperCase();}break;case\"romanNumerals\":text=numberToRomanNumeral(index+1);break;case\"character\":text=props.character;prefixAndSuffix=false;break;}return /*#__PURE__*/_jsxs(\"span\",{style:{textAlign:props.alignment,order:props.position==\"right\"?1:0},children:[prefixAndSuffix&&props.prefix,text,prefixAndSuffix&&props.suffix]});}function getTextFromReactElement(element){if(typeof element==\"string\"){return element;}if(!element||!element.props){return\"\";}const{children}=element.props;if(typeof children===\"string\"){return children;}if(Array.isArray(children)){return children.map(getTextFromReactElement).join(\"\");}return\"\";}function numberToRomanNumeral(num){if(num<=0||num>=4e3){return\"Invalid input. Enter a number between 1 and 3999\";}const numValues=[1e3,900,500,400,100,90,50,40,10,9,5,4,1];const romanNumerals=[\"M\",\"CM\",\"D\",\"CD\",\"C\",\"XC\",\"L\",\"XL\",\"X\",\"IX\",\"V\",\"IV\",\"I\"];let romanStr=\"\";for(let i=0;i<numValues.length;i++){while(num>=numValues[i]){romanStr+=romanNumerals[i];num-=numValues[i];}}return romanStr;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TableOfContents\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContents.map", "// Generated by Framer (139b156)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TableOfContents from\"https://framerusercontent.com/modules/N0dk20OmTDzABA3MTpLJ/vCHax1xtqLJUbHqeqGID/TableOfContents.js\";const TableOfContentsFonts=getFonts(TableOfContents);const serializationHash=\"framer-qp84H\";const variantClassNames={Xza63lTCG:\"framer-v-4q1e0c\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({content,height,id,topItem,width,...props})=>{var _ref,_ref1;return{...props,ES3sp1NEO:(_ref=topItem!==null&&topItem!==void 0?topItem:props.ES3sp1NEO)!==null&&_ref!==void 0?_ref:\"Overview\",PVnDC2dIM:(_ref1=content!==null&&content!==void 0?content:props.PVnDC2dIM)!==null&&_ref1!==void 0?_ref1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Content\"})})};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PVnDC2dIM,ES3sp1NEO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Xza63lTCG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4q1e0c\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Xza63lTCG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ilbevl\",\"data-framer-name\":\"Left Border\",layoutDependency:layoutDependency,layoutId:\"fsn94CWu6\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3hafs9-container\",layoutDependency:layoutDependency,layoutId:\"FZO6fnAc1-container\",children:/*#__PURE__*/_jsx(TableOfContents,{content:PVnDC2dIM,font:{fontFamily:'\"Aktiv Grotesk Medium\", \"Aktiv Grotesk Medium Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1.2em\"},fontColor:{current:\"var(--token-cc0ba6bf-a32b-445d-9599-362f131a8074, rgb(32, 46, 57))\",currentHover:\"var(--token-cc0ba6bf-a32b-445d-9599-362f131a8074, rgb(32, 46, 57))\",default:\"rgba(32, 46, 57, 0.75)\",defaultHover:\"var(--token-cc0ba6bf-a32b-445d-9599-362f131a8074, rgb(32, 46, 57))\",transition:{damping:60,delay:0,mass:1,stiffness:700,type:\"spring\"}},gap:20,headingIdPrefix:\"\",height:\"100%\",highlight:{bgBlur:0,border:{color:\"var(--token-933ae746-8567-47c8-a536-079353f9a4f1, rgb(41, 171, 227))\",style:\"solid\",width:2,widthBottom:0,widthIsMixed:true,widthLeft:2,widthRight:0,widthTop:0},fill:\"rgba(41, 171, 227, 0.2)\",opacity:1,padding:16,paddingBottom:10,paddingIsMixed:true,paddingLeft:16,paddingRight:10,paddingTop:10,radius:0,radiusBottomLeft:0,radiusBottomRight:6,radiusIsMixed:true,radiusTopLeft:0,radiusTopRight:6,transition:{damping:60,delay:0,mass:1,stiffness:700,type:\"spring\"}},id:\"FZO6fnAc1\",includedHeadings:{h1:true,h2:true,h3:false,h4:false,h5:true,h6:false},layoutId:\"FZO6fnAc1\",linking:{scrollMode:\"smooth\",scrollOffset:96},style:{width:\"100%\"},textMode:\"wrap\",textSelect:false,topItem:ES3sp1NEO,width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qp84H.framer-qy16jg, .framer-qp84H .framer-qy16jg { display: block; }\",\".framer-qp84H.framer-4q1e0c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 275px; }\",\".framer-qp84H .framer-1ilbevl { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 1px; }\",\".framer-qp84H .framer-3hafs9-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qp84H.framer-4q1e0c { gap: 0px; } .framer-qp84H.framer-4q1e0c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qp84H.framer-4q1e0c > :first-child { margin-top: 0px; } .framer-qp84H.framer-4q1e0c > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 39\n * @framerIntrinsicWidth 275\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PVnDC2dIM\":\"content\",\"ES3sp1NEO\":\"topItem\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhFjWKRd0h=withCSS(Component,css,\"framer-qp84H\");export default FramerhFjWKRd0h;FramerhFjWKRd0h.displayName=\"ToC/Table of Contents\";FramerhFjWKRd0h.defaultProps={height:39,width:275};addPropertyControls(FramerhFjWKRd0h,{PVnDC2dIM:{defaultValue:\"<p>Content</p>\",title:\"Content\",type:ControlType.RichText},ES3sp1NEO:{defaultValue:\"Overview\",title:\"Top Item\",type:ControlType.String}});addFonts(FramerhFjWKRd0h,[{explicitInter:true,fonts:[{family:\"Aktiv Grotesk Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/alPrfrjWJ1rpzGvh3XgkUbDNVLg.woff2\"}]},...TableOfContentsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhFjWKRd0h\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"PVnDC2dIM\\\":\\\"content\\\",\\\"ES3sp1NEO\\\":\\\"topItem\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"275\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"39\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hFjWKRd0h.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ToCTableOfContents from\"https://framerusercontent.com/modules/rylZxAftY5biHrNTMgHE/GIpBMlLlMMz8E26LLK4M/hFjWKRd0h.js\";const PhosphorFonts=getFonts(Phosphor);const ToCTableOfContentsFonts=getFonts(ToCTableOfContents);const cycleOrder=[\"ZG6LjXeOk\",\"EfpSL9K__\",\"p1YwwtH80\"];const serializationHash=\"framer-R9YFH\";const variantClassNames={EfpSL9K__:\"framer-v-1o6fi47\",p1YwwtH80:\"framer-v-i0jldx\",ZG6LjXeOk:\"framer-v-1krbken\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"No commands\":\"p1YwwtH80\",Closed:\"EfpSL9K__\",Open:\"ZG6LjXeOk\"};const getProps=({content,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,E6WcHpXSG:(_ref=content!==null&&content!==void 0?content:props.E6WcHpXSG)!==null&&_ref!==void 0?_ref:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Content\"})}),variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"ZG6LjXeOk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,E6WcHpXSG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZG6LjXeOk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClick1dvwvzd=activeVariantCallback(async(...args)=>{setVariant(\"EfpSL9K__\");});const onClick24pmci=activeVariantCallback(async(...args)=>{setVariant(\"ZG6LjXeOk\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"p1YwwtH80\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"EfpSL9K__\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1krbken\",className,classNames),\"data-framer-name\":\"Open\",layoutDependency:layoutDependency,layoutId:\"ZG6LjXeOk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EfpSL9K__:{\"data-framer-name\":\"Closed\"},p1YwwtH80:{\"data-framer-name\":\"No commands\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-apw5w6\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"ZRU85ravg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0FrdGl2IEdyb3Rlc2sgTWVkaXVt\",\"--framer-font-family\":'\"Aktiv Grotesk Medium\", \"Aktiv Grotesk Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cc0ba6bf-a32b-445d-9599-362f131a8074, rgb(32, 46, 57)))\"},children:\"Table Of Contents:\"})}),className:\"framer-1truezo\",fonts:[\"CUSTOM;Aktiv Grotesk Medium\"],layoutDependency:layoutDependency,layoutId:\"RbP5ICJld\",style:{\"--extracted-r6o4lv\":\"var(--token-cc0ba6bf-a32b-445d-9599-362f131a8074, rgb(32, 46, 57))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yns8p7\",\"data-framer-name\":\"Open/Closed\",layoutDependency:layoutDependency,layoutId:\"Oeztbr5oa\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-169icx4-container\",layoutDependency:layoutDependency,layoutId:\"CF11_6J3s-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-cc0ba6bf-a32b-445d-9599-362f131a8074, rgb(32, 46, 57))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretUp\",id:\"CF11_6J3s\",layoutId:\"CF11_6J3s\",mirrored:false,onClick:onClick1dvwvzd,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({EfpSL9K__:{iconSelection:\"CaretDown\",onClick:onClick24pmci}},baseVariant,gestureVariant)})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:39,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-0-79.2)/2+25.2+15),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t4no2b-container\",layoutDependency:layoutDependency,layoutId:\"sidEQC4i5-container\",children:/*#__PURE__*/_jsx(ToCTableOfContents,{ES3sp1NEO:\"\",height:\"100%\",id:\"sidEQC4i5\",layoutId:\"sidEQC4i5\",PVnDC2dIM:E6WcHpXSG,style:{width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-R9YFH.framer-1h0s40t, .framer-R9YFH .framer-1h0s40t { display: block; }\",\".framer-R9YFH.framer-1krbken { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 277px; }\",\".framer-R9YFH .framer-apw5w6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-R9YFH .framer-1truezo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-R9YFH .framer-yns8p7 { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-R9YFH .framer-169icx4-container { bottom: 0px; cursor: pointer; flex: none; left: calc(47.61904761904764% - 20px / 2); position: absolute; top: 0px; width: 20px; }\",\".framer-R9YFH .framer-1t4no2b-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-R9YFH.framer-1krbken, .framer-R9YFH .framer-apw5w6 { gap: 0px; } .framer-R9YFH.framer-1krbken > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-R9YFH.framer-1krbken > :first-child { margin-top: 0px; } .framer-R9YFH.framer-1krbken > :last-child { margin-bottom: 0px; } .framer-R9YFH .framer-apw5w6 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-R9YFH .framer-apw5w6 > :first-child { margin-left: 0px; } .framer-R9YFH .framer-apw5w6 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 276\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EfpSL9K__\":{\"layout\":[\"fixed\",\"auto\"]},\"p1YwwtH80\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"E6WcHpXSG\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrZjEUZkty=withCSS(Component,css,\"framer-R9YFH\");export default FramerrZjEUZkty;FramerrZjEUZkty.displayName=\"ToC/WIth Expand\";FramerrZjEUZkty.defaultProps={height:40,width:276};addPropertyControls(FramerrZjEUZkty,{variant:{options:[\"ZG6LjXeOk\",\"EfpSL9K__\",\"p1YwwtH80\"],optionTitles:[\"Open\",\"Closed\",\"No commands\"],title:\"Variant\",type:ControlType.Enum},E6WcHpXSG:{defaultValue:\"<p>Content</p>\",title:\"Content\",type:ControlType.RichText}});addFonts(FramerrZjEUZkty,[{explicitInter:true,fonts:[{family:\"Aktiv Grotesk Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/alPrfrjWJ1rpzGvh3XgkUbDNVLg.woff2\"}]},...PhosphorFonts,...ToCTableOfContentsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrZjEUZkty\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"276\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EfpSL9K__\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p1YwwtH80\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"E6WcHpXSG\\\":\\\"content\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "qVAAwM,IAAMA,EAAQ,8BAGpM,SAARC,EAAiCC,EAAM,CAAC,GAAK,CAAC,QAAAC,EAAQ,gBAAAC,EAAgB,QAAAC,EAAQ,iBAAAC,EAAiB,QAAAC,EAAQ,UAAAC,EAAU,SAAAC,EAAS,IAAAC,EAAI,OAAAC,EAAO,UAAAC,CAAS,EAAEV,EAIpJW,EAAGD,EAAUA,EAAU,eAAeA,EAAU,WAAWA,EAAU,QAAQ,EAAQE,EAAGF,EAAUA,EAAU,eAAeA,EAAU,YAAYA,EAAU,QAAQ,EAAQG,EAAGH,EAAUA,EAAU,eAAeA,EAAU,cAAcA,EAAU,QAAQ,EAAQI,EAAGJ,EAAUA,EAAU,eAAeA,EAAU,aAAaA,EAAU,QAAQ,EAAQK,GAAe,KAAK,OAAO,EAAE,SAAS,EAAQC,EAA4DN,GAAU,OAAaO,EAA4DP,GAAU,OAAaQ,EAAgBR,EAAUA,EAAU,cAAc,GAAGA,EAAU,aAAa,MAAMA,EAAU,cAAc,MAAMA,EAAU,iBAAiB,MAAMA,EAAU,gBAAgB,KAAK,GAAGA,EAAU,MAAM,KAAK,GAASS,EAAoBC,EAAO,CAAC,EAAQC,EAAWD,EAAO,CAAC,EAAO,CAACE,EAAYC,CAAc,EAAEC,GAAS,CAAC,EAAQC,EAAeL,EAAOE,CAAW,EAAMI,EAAsB,KAAK,GAAG,OAAO,SAAW,IAAY,CAEr9B,IAAMC,EAAa,SAAS,KAAK,SAAS,QAAQC,EAAE,EAAEA,EAAED,EAAa,OAAOC,IAAK,GAAGD,EAAaC,CAAC,EAAE,QAAQ,YAAY,IAAI,OAAO,CAACF,EAAsBC,EAAaC,CAAC,EAAE,WAAW,KAAM,CACvLF,IAAuBA,EAAsB,SAAS,KAAM,CAAC,GAAU,IAAI,CAAC,IAAMG,EAASC,EAAW,IAAIC,GAAI,SAAS,cAAc,QAAQA,CAAE,IAAI,CAAC,EAAQC,EAAS,IAAI,CAAC,IAAIC,EAAMJ,EAAS,UAAUK,GAA+CA,GAAO,sBAAsB,EAAE,IAAK,KAAK,CAAC,EAE5J,GAFiKC,EAAO,SAAS,EACzTF,EAAM,EAAW,KAAK,MAAME,EAAO,YAAYA,EAAO,OAAO,GAAGT,EAAsB,cAClDO,IAAQ,GAA5CA,EAAMZ,EAAW,QAAQ,EAA2DY,EAAM,IAAGA,EAAMA,EAAM,EAAEd,EAAoB,SAAYc,IAAQR,EAAe,QAAQ,CAAC,IAAMW,EAASH,EAAMV,EAAea,CAAQ,EAAEX,EAAe,QAAQW,CAAS,CAAC,EAAE,OAAAD,EAAO,iBAAiB,SAASH,CAAQ,EAAQ,IAAI,CAACG,EAAO,oBAAoB,SAASH,CAAQ,CAAE,CAAE,EAAE,CAAC,CAAC,EAAE,IAAMK,EAAc,CAAC,EAAQP,EAAW,CAAC,EAAQQ,EAASrC,EAAQ,QAAQ,MAAM,QAAQA,EAAQ,MAAM,QAAQ,EAAEA,EAAQ,MAAM,SAAS,CAACA,EAAQ,MAAM,QAAQ,GAAG,GAAGqC,GAAUA,EAAS,QAAQ,QAAUC,KAASD,EAAU,GAAGlC,EAAiBmC,EAAM,IAAI,GAAG,GAAK,CAAC,IAAMC,EAAKC,GAAwBF,CAAK,EAAMR,EAAG7B,EAAgBsC,EAAK,YAAY,EAAE,KAAK,EAAE,QAAQ,eAAe,EAAE,EAAE,QAAQ,OAAO,GAAG,EAAE,QAAQ,MAAM,GAAG,EAAE,GAAGV,EAAW,SAASC,CAAE,GAAG,QAAQH,EAAE,EAAEA,EAAE,IAAIA,IAAK,GAAG,CAACE,EAAW,SAAS,GAAGC,CAAE,IAAIH,CAAC,EAAE,EAAE,CAACG,EAAG,GAAGA,CAAE,IAAIH,CAAC,GAAG,KAAM,EAAGS,EAAc,KAAKG,CAAI,EAAEV,EAAW,KAAKC,CAAE,CAAE,EAAG,SAASW,IAAsB,CAAIrC,GAAS8B,EAAO,SAAS,CAAC,IAAI,EAAE,SAAS9B,EAAQ,YAAY,SAAS,SAAS,MAAS,CAAC,CAAG,CAAC,SAASsC,EAAqBV,EAAM,CAAC,GAAG5B,EAAQ,CAAC,IAAMuC,EAAQ,SAAS,eAAed,EAAWG,CAAK,CAAC,EAAKW,EAASA,EAAQ,eAAevC,EAAQ,YAAY,SAAS,CAAC,SAAS,QAAQ,EAAE,MAAS,EAAQ8B,EAAO,SAAS,KAAKL,EAAWG,CAAK,CAAG,CAAC,CAAC,SAASY,GAAkBC,EAAK,CAAIzC,IAAS8B,EAAO,SAAS,KAAKW,EAAK,KAAM,CAAC,IAAMC,GAAQ,CAAC,EAAMd,GAAM,EAC14C9B,EAAQ,OAAO,IAAG4C,GAAQ,KAAK,CAAC,KAAK5C,EAAQ,cAAcuC,EAAoB,CAAC,EAUnFT,KAAQd,EAAoB,QAAQ,GAapC,QAAQS,EAAE,EAAEA,EAAES,EAAc,OAAOT,IAAKmB,GAAQ,KAAK,CAAC,KAAKV,EAAcT,CAAC,EAAE,cAAc,IAAIe,EAAqBf,CAAC,CAAC,CAAC,EAUtHK,KAaA,OAAAZ,EAAW,QAAQY,GAA0Be,EAAM,MAAM,CAAC,MAAM,CAEhE,QAAQ,OAAO,oBAAoBvC,EAAOA,EAAO,UAAU,OAAO,mBAAmB,mBAAmB,OAAO,OAAO,EAAE,UAAgDA,GAAO,IAAI,WAAWT,EAAM,WAAW,OAAO,OAAO,GAAGA,EAAM,KAAK,GAAGA,EAAM,KAAK,EAAE,SAAS,CAAciD,EAAK,QAAQ,CAAC,SAAS,8BAA8B5C,EAAQ,YAAY,OAAO,CAAC,EAAe4C,EAAKC,EAAY,CAAC,GAAGnC,GAAe,SAASgC,GAAQ,IAAI,CAACI,EAAMlB,IAAqBe,EAAMI,EAAO,IAAI,CAAC,QAAQD,EAAM,cAAc,QAAQ,CAAC,MAAMlB,GAAOX,EAAYhB,EAAU,QAAQA,EAAU,OAAO,EAAE,WAAW,CAAC,MAAM2B,GAAOX,EAAYhB,EAAU,aAAaA,EAAU,YAAY,EAAE,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,oBAAoB,UAAU,WAAW,MAAM,WAAWG,EAAO,SAAS,OAMhwB,QAAQ,GAAGwB,GAAO,EAAEtB,EAAGH,EAAI,CAAC,MAAMM,CAAE,MAAMmB,GAAOZ,EAAW,QAAQ,EAAER,EAAGL,EAAI,CAAC,MAAMI,CAAE,KAAK,OAAOP,EAAQ,UAAU,MAAS,EAAE,QAAQ,GAAM,WAAWL,EAAM,WAAW,SAAS,CAACiC,GAAOX,GAAaZ,GAAwBsC,EAAMI,EAAO,IAAI,CAAC,SAAS,YAAY,MAAM,CAAC,SAAS,WAAW,MAAM,EAAE,IAAInB,GAAO,EAAE,EAAE,CAACtB,EAAGH,EAAI,EAAE,OAAOyB,GAAOZ,EAAW,QAAQ,EAAE,EAAE,CAACR,EAAGL,EAAI,CAAC,EAAE,SAAS,CAAcyC,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,MAAM,EAAE,gBAAgBvC,EAAU,KAAK,QAAQA,EAAU,QAAQ,aAAaQ,EAAgB,UAAUD,GAAiB,GAAGA,EAAgB,CAAC,MAAMA,EAAgB,CAAC,MAAMA,EAAgB,IAAI,MAAMA,EAAgB,MAAM,MAAMA,EAAgB,KAAK,GAAG,eAAeP,EAAU,OAAO,EAAE,QAAQA,EAAU,MAAM,MAAM,OAAU,cAAc,MAAM,CAAC,CAAC,EAAEM,GAA8BiC,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,MAAM,EAAE,YAAYjC,EAAgB,MAAM,YAAYA,EAAgB,aAAa,GAAGA,EAAgB,QAAQ,MAAMA,EAAgB,UAAU,MAAMA,EAAgB,WAAW,MAAMA,EAAgB,SAAS,KAAK,GAAGA,EAAgB,KAAK,KAAK,YAAYA,EAAgB,MAAM,aAAaE,EAAgB,cAAc,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAET,GAAqBwC,EAAKI,GAAY,CAAC,GAAG5C,EAAO,MAAMwB,CAAK,CAAC,EAAegB,EAAK,OAAO,CAAC,MAAM,CAAC,SAAS,WAAW,KAAK,EAAE,SAAS1C,GAAU,OAAO,UAAU,SAAS,aAAaA,GAAU,OAAO,aAAa,OAAO,aAAaA,GAAU,WAAW,WAAW,OAAO,WAAWA,GAAU,WAAW,SAAS,MAAM,EAAE,SAAS4C,EAAM,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACpD,EAAgB,YAAY,oBAAoB,SAASuD,EAAeC,EAAM,CAAC,MAAM,CAAC,KAAKC,EAAY,QAAQ,aAAa,GAAK,MAAMD,CAAK,CAAE,CAACE,EAAoB1D,EAAgB,CAAC,QAAQ,CAAC,KAAK,UAAU,EAAE,gBAAgB,CAAC,KAAKyD,EAAY,OAAO,aAAa,GAAG,MAAM,mBAAmB,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,EAAE,iBAAiB,CAAC,KAAKA,EAAY,OAAO,YAAY,UAAU,SAAS,CAAC,GAAGF,EAAe,IAAI,EAAE,GAAGA,EAAe,IAAI,EAAE,GAAGA,EAAe,IAAI,EAAE,GAAGA,EAAe,IAAI,EAAE,GAAGA,EAAe,IAAI,EAAE,GAAGA,EAAe,IAAI,CAAC,EAAE,MAAM,UAAU,EAAE,QAAQ,CAAC,KAAKE,EAAY,OAAO,SAAS,GAAK,aAAa,CAAC,WAAW,QAAQ,EAAE,SAAS,CAAC,WAAW,CAAC,KAAKA,EAAY,KAAK,aAAa,SAAS,QAAQ,CAAC,SAAS,SAAS,EAAE,aAAa,CAAC,SAAS,SAAS,EAAE,wBAAwB,GAAK,MAAM,QAAQ,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,KAAK,EAAE,YAAY,sDAAsD,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,YAAY,UAAU,SAAS,CAAC,QAAQ,CAAC,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,aAAa,CAAC,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,QAAQ,CAAC,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,aAAa,CAAC,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAKA,EAAY,UAAU,CAAC,CAAC,EAAE,KAAK,CAAC,KAAK,OAAO,SAAS,WAAW,gBAAgB,aAAa,aAAa,CAAC,SAAS,GAAG,WAAW,CAAC,CAAC,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,aAAa,OAAO,QAAQ,CAAC,OAAO,WAAW,MAAM,EAAE,aAAa,CAAC,OAAO,WAAW,MAAM,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,SAAS,GAAK,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,KAAK,aAAa,UAAU,QAAQ,CAAC,UAAU,UAAU,gBAAgB,WAAW,EAAE,aAAa,CAAC,UAAU,UAAU,iBAAiB,WAAW,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,QAAQ,aAAa,GAAM,OAAOxD,GAAOA,EAAM,MAAM,SAAS,EAAE,OAAO,CAAC,KAAKwD,EAAY,OAAO,aAAa,GAAG,OAAOxD,GAAOA,EAAM,MAAM,WAAW,EAAE,OAAO,CAAC,KAAKwD,EAAY,OAAO,aAAa,IAAI,OAAOxD,GAAOA,EAAM,MAAM,WAAW,EAAE,UAAU,CAAC,KAAKwD,EAAY,OAAO,aAAa,SAAI,OAAOxD,GAAOA,EAAM,MAAM,WAAW,EAAE,IAAI,CAAC,KAAKwD,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,aAAa,OAAO,QAAQ,CAAC,OAAO,OAAO,EAAE,aAAa,CAAC,OAAO,OAAO,EAAE,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,aAAa,OAAO,QAAQ,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,wBAAwB,EAAI,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,aAAa,CAAC,KAAK,yBAAyB,QAAQ,GAAG,OAAO,CAAC,EAAE,SAAS,GAAK,YAAY,SAAS,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,MAAM,SAAS,EAAI,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,GAAG,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,aAAa,GAAG,UAAU,iBAAiB,aAAa,CAAC,MAAM,YAAY,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,aAAa,EAAE,UAAU,gBAAgB,aAAa,CAAC,MAAM,YAAY,EAAE,UAAU,CAAC,gBAAgB,iBAAiB,oBAAoB,kBAAkB,EAAE,YAAY,CAAC,KAAK,KAAK,KAAK,IAAI,EAAE,IAAI,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,SAAS,GAAK,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,YAAY,aAAa,EAAE,UAAU,eAAe,aAAa,CAAC,MAAM,YAAY,EAAE,UAAU,CAAC,WAAW,aAAa,cAAc,WAAW,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,aAAa,QAAQ,QAAQ,CAAC,QAAQ,SAAS,SAAS,QAAQ,EAAE,aAAa,CAAC,QAAQ,SAAS,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,SAAS,GAAK,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,MAAM,aAAa,qBAAqB,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,eAAe,EAAI,EAAE,EAAE,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,eAAe,EAAI,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,eAAe,EAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,eAAe,EAAI,CAAC,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,aAAa,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,SAAS,EAAE,WAAW,CAAC,KAAKA,EAAY,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,IAAI,EAAE,KAAK,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,aAAa,EAAK,CAAC,CAAC,EAAE,SAASH,GAAYrD,EAAM,CAAC,GAAK,CAAC,KAAA0D,EAAK,MAAAzB,CAAK,EAAEjC,EAAU2D,EAAgB,GAASnB,EAAK,GAAG,OAAOkB,EAAK,CAAC,IAAI,UAAUlB,EAAK,OAAOP,EAAM,CAAC,EAAE,MAAM,IAAI,UAAaA,EAAMnC,EAAQ,OAAQ0C,EAAK1C,EAAQmC,CAAK,EAAQO,EAAK1C,EAAQ,KAAK,MAAMmC,EAAMnC,EAAQ,MAAM,CAAC,EAAEA,EAAQmC,EAAMnC,EAAQ,MAAM,EAAME,EAAM,cAAawC,EAAKA,EAAK,YAAY,GAAG,MAAM,IAAI,gBAAgBA,EAAKoB,GAAqB3B,EAAM,CAAC,EAAE,MAAM,IAAI,YAAYO,EAAKxC,EAAM,UAAU2D,EAAgB,GAAM,KAAM,CAAC,OAAoBX,EAAM,OAAO,CAAC,MAAM,CAAC,UAAUhD,EAAM,UAAU,MAAMA,EAAM,UAAU,QAAQ,EAAE,CAAC,EAAE,SAAS,CAAC2D,GAAiB3D,EAAM,OAAOwC,EAAKmB,GAAiB3D,EAAM,MAAM,CAAC,CAAC,CAAE,CAAC,SAASyC,GAAwBG,EAAQ,CAAC,GAAG,OAAOA,GAAS,SAAU,OAAOA,EAAS,GAAG,CAACA,GAAS,CAACA,EAAQ,MAAO,MAAM,GAAI,GAAK,CAAC,SAAAN,CAAQ,EAAEM,EAAQ,MAAM,OAAG,OAAON,GAAW,SAAiBA,EAAa,MAAM,QAAQA,CAAQ,EAAUA,EAAS,IAAIG,EAAuB,EAAE,KAAK,EAAE,EAAS,EAAG,CAAC,SAASmB,GAAqBC,EAAI,CAAC,GAAGA,GAAK,GAAGA,GAAK,IAAK,MAAM,mDAAoD,IAAMC,EAAU,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAQC,EAAc,CAAC,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,IAAI,KAAK,GAAG,EAAMC,EAAS,GAAG,QAAQpC,EAAE,EAAEA,EAAEkC,EAAU,OAAOlC,IAAK,KAAMiC,GAAKC,EAAUlC,CAAC,GAAGoC,GAAUD,EAAcnC,CAAC,EAAEiC,GAAKC,EAAUlC,CAAC,EAAI,OAAOoC,CAAS,CClElkN,IAAMC,GAAqBC,EAASC,CAAe,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAM,MAAM,CAAC,GAAGF,EAAM,WAAWC,EAAKH,GAAyCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,WAAW,WAAWC,EAAMP,GAAyCK,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAmBZ,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAE,EAAQW,GAAuB,CAACH,EAAMI,IAAeJ,EAAM,iBAAwBI,EAAS,KAAK,GAAG,EAAEJ,EAAM,iBAAwBI,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASM,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArB,CAAQ,EAAEsB,GAAgB,CAAC,eAAe,YAAY,QAAAZ,EAAQ,kBAAAa,EAAiB,CAAC,EAAQC,EAAiBzB,GAAuBH,EAAMI,CAAQ,EAAQyB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB7C,EAAK8C,EAAY,CAAC,GAAGvB,GAA4CkB,EAAgB,SAAsBzC,EAAKC,GAAS,CAAC,QAAQa,EAAS,QAAQ,GAAM,SAAsBd,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsByD,EAAM7C,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUiB,GAAGC,GAAkB,GAAGN,EAAsB,gBAAgBrB,EAAUO,CAAU,EAAE,mBAAmB,UAAU,iBAAiBS,EAAiB,SAAS,YAAY,IAAIrB,GAA6BsB,EAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,SAAS,CAAcrB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiBoC,EAAiB,SAAS,WAAW,CAAC,EAAetC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKmD,EAAgB,CAAC,QAAQ1B,EAAU,KAAK,CAAC,WAAW,yEAAyE,SAAS,OAAO,cAAc,MAAM,WAAW,OAAO,EAAE,UAAU,CAAC,QAAQ,qEAAqE,aAAa,qEAAqE,QAAQ,yBAAyB,aAAa,qEAAqE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAE,IAAI,GAAG,gBAAgB,GAAG,OAAO,OAAO,UAAU,CAAC,OAAO,EAAE,OAAO,CAAC,MAAM,uEAAuE,MAAM,QAAQ,MAAM,EAAE,YAAY,EAAE,aAAa,GAAK,UAAU,EAAE,WAAW,EAAE,SAAS,CAAC,EAAE,KAAK,0BAA0B,QAAQ,EAAE,QAAQ,GAAG,cAAc,GAAG,eAAe,GAAK,YAAY,GAAG,aAAa,GAAG,WAAW,GAAG,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,cAAc,GAAK,cAAc,EAAE,eAAe,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAE,GAAG,YAAY,iBAAiB,CAAC,GAAG,GAAK,GAAG,GAAK,GAAG,GAAM,GAAG,GAAM,GAAG,GAAK,GAAG,EAAK,EAAE,SAAS,YAAY,QAAQ,CAAC,WAAW,SAAS,aAAa,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,SAAS,OAAO,WAAW,GAAM,QAAQC,EAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,gFAAgF,oQAAoQ,oIAAoI,wGAAwG,0WAA0W,EASrjLC,EAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,wBAAwBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,UAAU,CAAC,aAAa,iBAAiB,MAAM,UAAU,KAAKI,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,WAAW,MAAM,WAAW,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,uBAAuB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAGM,EAAoB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT/C,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAwBF,EAASG,EAAkB,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,cAAc,YAAY,OAAO,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKL,GAAyCI,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAkBX,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,SAASW,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBrB,GAAuBJ,EAAMvB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAeH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAcL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQlB,IAAc,YAA6CmB,EAAa,IAAQnB,IAAc,YAA6CoB,EAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAG5B,GAA4CuB,EAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB8D,EAAMlD,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUwB,GAAGtE,GAAkB,GAAGiE,GAAsB,iBAAiB1B,EAAUK,CAAU,EAAE,mBAAmB,OAAO,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6ByB,EAAK,MAAM,CAAC,GAAGrB,CAAK,EAAE,GAAGpC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,aAAa,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAS,CAAcsB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBiC,EAAiB,SAAS,YAAY,SAAS,CAAcnC,EAAKsD,GAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,yEAAyE,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,6BAA6B,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBiC,EAAiB,SAAS,YAAY,SAASS,EAAY,GAAgB5C,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKrB,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,UAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQ4D,EAAe,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,OAAO,GAAGtD,GAAqB,CAAC,UAAU,CAAC,cAAc,YAAY,QAAQwD,CAAa,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,EAAa,GAAgB7C,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAmEN,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,MAAM,EAAE,KAAK,IAAI,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKnB,GAAmB,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU2C,EAAU,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgC,GAAI,CAAC,kFAAkF,kFAAkF,oQAAoQ,iRAAiR,iHAAiH,iHAAiH,8KAA8K,qHAAqH,6nBAA6nB,EAS/xQC,EAAgBC,GAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,kBAAkBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,SAAS,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,iBAAiB,MAAM,UAAU,KAAKA,EAAY,QAAQ,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,uBAAuB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAGhF,GAAc,GAAGG,EAAuB,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["LETTERS", "TableOfContents", "props", "content", "headingIdPrefix", "topItem", "includedHeadings", "linking", "fontColor", "textMode", "gap", "labels", "highlight", "pt", "pl", "pb", "pr", "uniqueLayoutId", "highlightBorder", "highlightShadow", "highlightRadius", "itemsBeforeHeadings", "pe", "totalItems", "activeIndex", "setActiveIndex", "ye", "activeIndexRef", "documentHeightElement", "bodyChildren", "i", "headings", "headingIds", "id", "onScroll", "index", "header", "window", "newIndex", "headingTitles", "children", "child", "text", "getTextFromReactElement", "onTopItemButtonPress", "onHeadingButtonPress", "element", "onItemButtonPress", "item", "buttons", "u", "p", "LayoutGroup", "value", "motion", "ButtonLabel", "headingControl", "title", "ControlType", "addPropertyControls", "type", "prefixAndSuffix", "numberToRomanNumeral", "num", "numValues", "romanNumerals", "romanStr", "TableOfContentsFonts", "getFonts", "TableOfContents", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "content", "height", "id", "topItem", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "PVnDC2dIM", "ES3sp1NEO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "TableOfContents", "css", "FramerhFjWKRd0h", "withCSS", "hFjWKRd0h_default", "addPropertyControls", "ControlType", "addFonts", "TableOfContentsFonts", "PhosphorFonts", "getFonts", "Icon", "ToCTableOfContentsFonts", "hFjWKRd0h_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "content", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E6WcHpXSG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClick1dvwvzd", "args", "onClick24pmci", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerrZjEUZkty", "withCSS", "rZjEUZkty_default", "addPropertyControls", "ControlType", "addFonts"]
}
