{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ozVL167hH9qRZk4f9yzV/TableOfContent.js", "ssg: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 \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H1 Font\"},h2Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H2 Font\"},h3Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H3 Font\"},h4Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H4 Font\"},h5Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H5 Font\"},h6Font:{// @ts-expect-error \u2013 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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",
  "names": ["init_ssg_sandbox_shims", "Table_of_Content", "props", "headers", "setHeaders", "ye", "activeId", "setActiveId", "firstHeadingLevel", "setFirstHeadingLevel", "ignoreNextScrollEvent", "pe", "scrollTimeoutRef", "ue", "sectionElement", "headingElements", "element", "index", "onScroll", "currentSectionId", "header", "getStyle", "indentation", "headerFont", "handleClick", "headerId", "y", "checkIfScrollFinished", "isScrolled", "rect", "checkScroll", "p", "e", "addPropertyControls", "ControlType", "init_ssg_sandbox_shims", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "isSet", "value", "convertFromBoolean", "activeLocale", "numberToPixelString", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "link", "projectLogo", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "lK97gyAps", "YWrBzVTdl", "OwtQsTfR0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "sharedStyleClassNames", "padding", "scopingClassNames", "cx", "visible", "LayoutGroup", "Link", "u", "Image2", "RichText2", "css", "FramerTu2x5mHpu", "withCSS", "Tu2x5mHpu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
