{"version":3,"file":"Tu2x5mHpu.DzMkINWV.mjs","names":["headers","className","Image","css"],"sources":["https:/framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ozVL167hH9qRZk4f9yzV/TableOfContent.js","https:/framerusercontent.com/modules/qFPB1FgK9XxMOlofSeix/e6sXxy1Gxk6lZG7DXvQk/Tu2x5mHpu.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 400\n */export default function Table_of_Content(props){const[headers,setHeaders]=useState([]);const[activeId,setActiveId]=useState(\"\");const[firstHeadingLevel,setFirstHeadingLevel]=useState(null);const ignoreNextScrollEvent=useRef(false);const scrollTimeoutRef=useRef(null);useEffect(()=>{const sectionElement=document.getElementById(props.section_id)||document.body;const headingElements=Array.from(sectionElement.querySelectorAll(\"h1, h2, h3, h4, h5, h6\"));if(headingElements.length>0&&firstHeadingLevel===null){setFirstHeadingLevel(parseInt(headingElements[0].tagName[1],10));}const headers=headingElements.map((element,index)=>{if(!element.id){element.id=`header-${index}`;}return{id:element.id,text:element.innerText,level:parseInt(element.tagName[1],10)};});setHeaders(headers);},[props.section_id,firstHeadingLevel]);useEffect(()=>{const onScroll=()=>{if(ignoreNextScrollEvent.current){ignoreNextScrollEvent.current=false;return;}let currentSectionId=\"\";headers.filter(header=>props[`showH${header.level}`]!==false).forEach(header=>{const element=document.getElementById(header.id);const scrollPosition=element.getBoundingClientRect().top+window.scrollY;if(scrollPosition<window.scrollY+props.yOffset+5){currentSectionId=header.id;}});setActiveId(currentSectionId);};window.addEventListener(\"scroll\",onScroll);return()=>window.removeEventListener(\"scroll\",onScroll);},[headers,props.yOffset,props]);const getStyle=header=>{const indentation=firstHeadingLevel?header.level-firstHeadingLevel:0;const headerFont=props[`h${header.level}Font`]||{};return{display:\"block\",...headerFont,color:header.id===activeId?props.activeColor:props.fontColor,fontWeight:header.id===activeId?props.activeFontWeight:headerFont.fontWeight||\"normal\",textDecoration:\"none\",marginBottom:`${props.spacing}px`,marginLeft:`${indentation*props.indentation}px`};};const handleClick=headerId=>{ignoreNextScrollEvent.current=true;const element=document.getElementById(headerId);if(element){const y=element.getBoundingClientRect().top+window.pageYOffset-props.yOffset;window.scrollTo({top:y,behavior:\"smooth\"});checkIfScrollFinished(headerId);}};const checkIfScrollFinished=headerId=>{if(scrollTimeoutRef.current){clearTimeout(scrollTimeoutRef.current);}const isScrolled=()=>{const element=document.getElementById(headerId);if(element){const rect=element.getBoundingClientRect();return Math.abs(rect.top-props.yOffset)<=1;}return false;};const checkScroll=()=>{if(isScrolled()){setActiveId(headerId);}else{scrollTimeoutRef.current=setTimeout(()=>{requestAnimationFrame(checkScroll);},10);}};checkScroll();};return /*#__PURE__*/_jsx(\"div\",{children:headers.filter(header=>props[`showH${header.level}`]!==false).map(header=>/*#__PURE__*/_jsx(\"a\",{href:`#${header.id}`,style:getStyle(header),onMouseOver:e=>e.currentTarget.style.color=props.onHoverColor,onMouseOut:e=>{e.currentTarget.style.color=header.id===activeId?props.activeColor:props.fontColor;e.currentTarget.style.fontWeight=header.id===activeId?props.activeFontWeight:getStyle(header).fontWeight;},onClick:e=>{e.preventDefault();handleClick(header.id);},children:header.text},header.id))});}Table_of_Content.defaultProps={section_id:\"\",fontColor:\"#000000\",activeColor:\"#FF0000\",onHoverColor:\"#00FF00\",spacing:8,indentation:10,yOffset:0,activeFontWeight:\"bold\"};addPropertyControls(Table_of_Content,{section_id:{type:ControlType.String,title:\"Section ID\"},fontColor:{type:ControlType.Color,title:\"Font Color\"},activeColor:{type:ControlType.Color,title:\"Active Color\"},onHoverColor:{type:ControlType.Color,title:\"On Hover Color\"},spacing:{type:ControlType.Number,title:\"Spacing\"},indentation:{type:ControlType.Number,title:\"Indentation\"},yOffset:{type:ControlType.Number,title:\"Y Offset\",min:0,max:200,step:1},activeFontWeight:{type:ControlType.Enum,title:\"Active Font Weight\",options:[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"bold\"},showH1:{type:ControlType.Boolean,title:\"Show H1\",defaultValue:true},showH2:{type:ControlType.Boolean,title:\"Show H2\",defaultValue:true},showH3:{type:ControlType.Boolean,title:\"Show H3\",defaultValue:true},showH4:{type:ControlType.Boolean,title:\"Show H4\",defaultValue:true},showH5:{type:ControlType.Boolean,title:\"Show H5\",defaultValue:true},showH6:{type:ControlType.Boolean,title:\"Show H6\",defaultValue:true},h1Font:{// @ts-expect-error – Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H1 Font\"},h2Font:{// @ts-expect-error – Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H2 Font\"},h3Font:{// @ts-expect-error – Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H3 Font\"},h4Font:{// @ts-expect-error – Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H4 Font\"},h5Font:{// @ts-expect-error – Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H5 Font\"},h6Font:{// @ts-expect-error – Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H6 Font\",description:\"Preview to see it in effect \\n\\nv1.6 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Table_of_Content\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"600\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map","// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/9Itf05TznODDHZDfnGsY/mEFetGEOiQqpiAwvfDsZ/H6nLEQhSF.js\";const enabledGestures={EXz6VuGJY:{hover:true,pressed:true}};const serializationHash=\"framer-DLrEG\";const variantClassNames={EXz6VuGJY:\"framer-v-u2udt6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"10px 24px 10px 12px\";}else{return\"14px\";}};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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=({height,id,link,projectLogo,title,width,...props})=>{return{...props,lK97gyAps:projectLogo??props.lK97gyAps,OwtQsTfR0:link??props.OwtQsTfR0,YWrBzVTdl:title??props.YWrBzVTdl??\"Stake now\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,lK97gyAps,YWrBzVTdl,OwtQsTfR0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"EXz6VuGJY\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const padding=numberToPixelString(convertFromBoolean(isSet(lK97gyAps),activeLocale));const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(lK97gyAps);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:OwtQsTfR0,motionChild:true,nodeId:\"EXz6VuGJY\",scopeId:\"Tu2x5mHpu\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-u2udt6\",className,classNames)} framer-e2t9zz`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EXz6VuGJY\",ref:refBinding,style:{\"--10ocmuz\":padding,\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.16)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(253, 252, 247)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"none\",...style},variants:{\"EXz6VuGJY-hover\":{backgroundColor:\"rgb(245, 245, 235)\"},\"EXz6VuGJY-pressed\":{boxShadow:\"inset 0px 1px 4px 0px rgba(0, 0, 0, 0.25)\"}},...addPropertyOverrides({\"EXz6VuGJY-hover\":{\"data-framer-name\":undefined},\"EXz6VuGJY-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",...toResponsiveImage(lK97gyAps)},className:\"framer-xyy5m7\",layoutDependency:layoutDependency,layoutId:\"WxqvKptgY\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7xk06g\",\"data-styles-preset\":\"H6nLEQhSF\",children:\"Stake now\"})}),className:\"framer-lveybv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fPXka3tfP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:YWrBzVTdl,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DLrEG.framer-e2t9zz, .framer-DLrEG .framer-e2t9zz { display: block; }\",\".framer-DLrEG.framer-u2udt6 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: var(--10ocmuz); position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-DLrEG .framer-xyy5m7 { -webkit-user-select: none; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: hidden; pointer-events: none; position: relative; user-select: none; width: 24px; }\",\".framer-DLrEG .framer-lveybv { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DLrEG.framer-u2udt6 { gap: 0px; } .framer-DLrEG.framer-u2udt6 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-DLrEG.framer-u2udt6 > :first-child { margin-left: 0px; } .framer-DLrEG.framer-u2udt6 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-DLrEG[data-border=\"true\"]::after, .framer-DLrEG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 97\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"QM2HaTPrS\":{\"layout\":[\"auto\",\"auto\"]},\"dHDIMA0mS\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"lK97gyAps\":\"projectLogo\",\"YWrBzVTdl\":\"title\",\"OwtQsTfR0\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTu2x5mHpu=withCSS(Component,css,\"framer-DLrEG\");export default FramerTu2x5mHpu;FramerTu2x5mHpu.displayName=\"Button/staking\";FramerTu2x5mHpu.defaultProps={height:42,width:97};addPropertyControls(FramerTu2x5mHpu,{lK97gyAps:{title:\"project_logo\",type:ControlType.ResponsiveImage},YWrBzVTdl:{defaultValue:\"Stake now\",displayTextArea:false,title:\"Title\",type:ControlType.String},OwtQsTfR0:{title:\"Link\",type:ControlType.Link}});addFonts(FramerTu2x5mHpu,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTu2x5mHpu\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"lK97gyAps\\\":\\\"projectLogo\\\",\\\"YWrBzVTdl\\\":\\\"title\\\",\\\"OwtQsTfR0\\\":\\\"link\\\"}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"42\",\"framerIntrinsicWidth\":\"97\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QM2HaTPrS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dHDIMA0mS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Tu2x5mHpu.map"],"mappings":"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"}