{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/5ThVylgodqn9NqbZbDQF/GH2r50CD3kpDklrx6vuX/PbbZ1XjVu.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import ButtonsButton from\"#framer/local/canvasComponent/beL7nB9Cx/beL7nB9Cx.js\";import NavigationNavigation from\"#framer/local/canvasComponent/Cck5nzSCj/Cck5nzSCj.js\";import ElementsCursor from\"#framer/local/canvasComponent/nqkaSsdn6/nqkaSsdn6.js\";import FooterFooter from\"#framer/local/canvasComponent/pQtVRkS2b/pQtVRkS2b.js\";import FooterCopyright from\"#framer/local/canvasComponent/Zeqloo3mj/Zeqloo3mj.js\";import*as sharedStyle2 from\"#framer/local/css/CZUjXgzYn/CZUjXgzYn.js\";import*as sharedStyle1 from\"#framer/local/css/f_JgQVGd5/f_JgQVGd5.js\";import*as sharedStyle from\"#framer/local/css/Hhsbvx3mQ/Hhsbvx3mQ.js\";import metadataProvider from\"#framer/local/webPageMetadata/PbbZ1XjVu/PbbZ1XjVu.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const EmbedFonts=getFonts(Embed);const ButtonsButtonFonts=getFonts(ButtonsButton);const FooterFooterFonts=getFonts(FooterFooter);const FooterCopyrightFonts=getFonts(FooterCopyright);const SmoothScrollFonts=getFonts(SmoothScroll);const ElementsCursorFonts=getFonts(ElementsCursor);const breakpoints={Lq5cOefWW:\"(max-width: 809px)\",M2wbOd_7N:\"(min-width: 1200px)\",t2ohg4SVE:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WhGsZ\";const variantClassNames={Lq5cOefWW:\"framer-v-7kzd52\",M2wbOd_7N:\"framer-v-h253pn\",t2ohg4SVE:\"framer-v-1kdfitd\"};const transition1={damping:60,delay:0,mass:1,stiffness:1e3,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"M2wbOd_7N\",Phone:\"Lq5cOefWW\",Tablet:\"t2ohg4SVE\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"M2wbOd_7N\"};};const cursor={alignment:\"center\",component:ElementsCursor,offset:{x:0,y:0},placement:\"bottom\",transition:transition1,variant:\"b3LzshYFh\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-WhGsZ`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-WhGsZ`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"t2ohg4SVE\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"t2ohg4SVE\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({\"1sss2om\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"M2wbOd_7N\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-h253pn\",className),\"data-framer-cursor\":\"1sss2om\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-k29nfb-container\",\"data-framer-appear-id\":\"k29nfb\",initial:animation1,layoutScroll:true,optimized:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{__framer__variantAppearEffectEnabled:undefined,variant:\"G8LqOZM6i\"},t2ohg4SVE:{__framer__variantAppearEffectEnabled:undefined,variant:\"G8LqOZM6i\"}},children:/*#__PURE__*/_jsx(NavigationNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"qM6RC0KNW\",layoutId:\"qM6RC0KNW\",style:{width:\"100%\"},variant:\"Hkg6yw26J\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-niedan hidden-1kdfitd\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mdovqw\",\"data-framer-name\":\"Image\",name:\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mevycb-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe \\n  src=\"https://docs.google.com/spreadsheets/d/e/2PACX-1vQvsGgftog4z1IhxbCZNcehPhJtxo-71cGo-XMl-7JAXQT_Z-b-tcvmvCJxpbIL10jDE_BOcpbP51D-/pubhtml\" \\n  width=\"100%\" \\n  height=\"600\" \\n  frameborder=\"0\" \\n  style=\"border: 1px solid #ccc;\">\\n</iframe>\\n',id:\"FWkRHoneI\",layoutId:\"FWkRHoneI\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250))\"},children:\"INDIA VIX BASED NIFTY RANGE CALCULATION\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250))\"},children:\"INDIA VIX BASED NIFTY RANGE CALCULATION\"})}),className:\"framer-1d847do\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:[\"Discover the Nifty Range Calculator using India Vix, \",/*#__PURE__*/_jsx(Link,{href:\"https://tradingwithsidhant.com/free-resources/\",nodeId:\"ngq45aLFQ\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"a valuable tool\"})}),\" for traders and investors. By leveraging India Vix, you can estimate the expected volatility and price movement of the Nifty index.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Gain insights into market dynamics and make informed decisions with ease. Join us now to calculate the Nifty range and navigate the ever-changing financial landscape effectively.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"What is the formula for Nifty range?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Formula \u2013 Vix as percentage/Square Root of Time\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:[\"To predict the expected volatility of the Nifty index in the next 30 days, the \",/*#__PURE__*/_jsx(Link,{href:\"https://static.nseindia.com//s3fs-public/inline-files/India_VIX_comp_meth.pdf\",nodeId:\"ngq45aLFQ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"India VIX\"})}),\" comes in handy. It offers insights into the potential price fluctuations of Nifty. Here\u2019s how you can calculate the anticipated movement:\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"First, take the current VIX value, let\u2019s say it\u2019s 20. Then, determine the time period by dividing 365 (number of days in a year) by 30, resulting in 12.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"To calculate the expected volatility, divide the VIX value by the square root of the time period. In this case, it would be 20 divided by the square root of 12, which amounts to 5.77%.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Therefore, you can expect Nifty to exhibit a movement of approximately 5.77% in either direction (upside or downside) over the next 30 days.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"How do you calculate market range?\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Nifty Range = (Nifty Price \u2013 Duration Vix%) to (Nifty Price + Duration Vix%)\"}),\"To calculate the Nifty range, follow these steps:Collect the historical data of Nifty index values over a specific time period.Identify the highest value (Max) and lowest value (Min) from the collected data.Use the following formula to calculate the Nifty range:Nifty Range = (Nifty Price \u2013 Duration Vix%) to (Nifty Price + Duration Vix%)Subtracting the minimum value from the maximum value gives you the range of the Nifty index.The range provides insights into the extent of price movement within the given time period, indicating the overall volatility or price spread of the Nifty index during that period.What is India Vix?\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"India Vix, also known as the \u201CFear Index,\u201D is a key measure of market expectations for near-term volatility in India.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"It represents the expected annual volatility in the Nifty50 index over the next 30 days. India Vix reflects the sentiment of the entire market, providing insights into expected market volatility.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"How is India Vix calculated?\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:[\"India Vix is calculated based on option prices on the \",/*#__PURE__*/_jsx(Link,{href:\"https://nseindia.com/\",nodeId:\"ngq45aLFQ\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"National Stock Exchange (NSE\"})}),\"). It measures the expected volatility over the next 30 days by taking the weighted average of the implied volatility from Nifty 50 index options.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Option prices reflect market expectations of volatility throughout the remaining life of the option contract.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"What does Higher/Lower Vix indicate?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"A higher value of Vix indicates stress, fear, and anxiety in the market, suggesting higher expected volatility.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Conversely, a lower Vix value indicates stability in the market with lower expected volatility. Vix serves as a gauge of market sentiment and can help investors assess potential market movements.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"What is the correlation between India Vix and Nifty?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"India Vix is negatively correlated to the Nifty index. When the market index (Nifty) drops, indicating a decline in stock prices, the Vix value tends to increase, signifying higher expected volatility.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Conversely, when the market index rises, the Vix value tends to decrease, indicating lower expected volatility.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"Common Myth about India Vix:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"It is a common misconception that when the market falls, India Vix will rise, and when Vix rises, the market will fall.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"However, this is not always true. Vix can go up in a rising market and go down in a falling market as well. The relationship between Vix and market movements is more nuanced and depends on various factors.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"How to use India Vix:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Hedging against volatility: The Vix index can be used as a tool for hedging against market volatility. Investors can utilize options or other volatility-based instruments to hedge their portfolios during periods of heightened volatility.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"By monitoring the Vix value, investors can identify market movements and hedge their positions to protect against potential market downturns.\"})]}),className:\"framer-px2ffo\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cpwgk hidden-1kdfitd\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g3twm2\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l88vof\",\"data-framer-name\":\"2 Columns Text Image\",name:\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qwm5dh\",\"data-framer-name\":\"Image\",name:\"Image\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fxSZy0asu\"},implicitPathVariables:undefined},{href:{webPageId:\"fxSZy0asu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{y:3404.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:5245,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j5ckcs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{odb0bWURU:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"l5DHd7qoe\",kTynE2FQc:\"regular\",layoutId:\"l5DHd7qoe\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:resolvedLinks[0],Q7omvm8K3:true,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Explore all resources\",variant:\"xRnZOplpr\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11dwvcu\",\"data-framer-name\":\"Carousel\",name:\"Carousel\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hWRifZB9a\"},nodeId:\"l935Yccmr\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1sh78y9 framer-1ug94uj\",\"data-border\":true,\"data-framer-name\":\"Optum\",name:\"Optum\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1adqjud\",\"data-framer-name\":\"Video\",name:\"Video\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3535),pixelHeight:300,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8ZiMaUAcbiSMOFgh8luMbhBGnE.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5237),pixelHeight:300,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/8ZiMaUAcbiSMOFgh8luMbhBGnE.webp\"},className:\"framer-44gp4m\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cr33wf\",\"data-framer-name\":\"Information\",name:\"Information\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250))\"},children:\"eBooks by Community\"})}),className:\"framer-hc7r23\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Dive into our extensive collection of free eBooks, covering various aspects of trading. From basic concepts to advanced strategies and market analysis, these resources are designed to broaden your understanding and enhance your trading skills.\"})}),className:\"framer-7dy7ml\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.com/invite/tradingwithsidhant\",nodeId:\"BFCMNfgiS\",openInNewTab:false,children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1d0ibrd framer-1ug94uj\",\"data-border\":true,\"data-framer-name\":\"Optum\",name:\"Optum\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15m6vgw\",\"data-framer-name\":\"Video\",name:\"Video\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(4017.2),pixelHeight:300,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RjoOOhZSJlfKdVKU7sTO6lKSWRo.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(5237),pixelHeight:300,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/RjoOOhZSJlfKdVKU7sTO6lKSWRo.webp\"},className:\"framer-l0952w\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ragc8\",\"data-framer-name\":\"Information\",name:\"Information\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250))\"},children:\"Live Market Community\"})}),className:\"framer-16iifug\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Connect with our vibrant trading community on Discord. Engage in real-time discussions, share market insights, and receive support from experienced traders. It's an ideal place for networking and gaining valuable market perspectives.\"})}),className:\"framer-1md4v7z\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{y:4585.4},t2ohg4SVE:{y:3252}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:397,width:\"100vw\",y:5901.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wxy48-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{variant:\"LgqP0G04V\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"DBtPzVfXY\",layoutId:\"DBtPzVfXY\",style:{width:\"100%\"},variant:\"C7VVUgxpD\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250},className:\"framer-5pvr13 hidden-h253pn hidden-7kzd52\",\"data-framer-name\":\"Header Image\",name:\"Header Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u4zgrm\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c9os9g\",\"data-framer-name\":\"Image\",name:\"Image\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fgbag9-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<iframe \\n  src=\"https://docs.google.com/spreadsheets/d/e/2PACX-1vQvsGgftog4z1IhxbCZNcehPhJtxo-71cGo-XMl-7JAXQT_Z-b-tcvmvCJxpbIL10jDE_BOcpbP51D-/pubhtml\" \\n  width=\"100%\" \\n  height=\"600\" \\n  frameborder=\"0\" \\n  style=\"border: 1px solid #ccc;\">\\n</iframe>\\n',id:\"A9JiCrH9X\",layoutId:\"A9JiCrH9X\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250))\"},children:\"INDIA VIX BASED NIFTY RANGE CALCULATION\"})}),className:\"framer-p69251\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:[\"Discover the Nifty Range Calculator using India Vix, \",/*#__PURE__*/_jsx(Link,{href:\"https://tradingwithsidhant.com/free-resources/\",nodeId:\"CkZV_57JH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"a valuable tool\"})}),\" for traders and investors. By leveraging India Vix, you can estimate the expected volatility and price movement of the Nifty index.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Gain insights into market dynamics and make informed decisions with ease. Join us now to calculate the Nifty range and navigate the ever-changing financial landscape effectively.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"What is the formula for Nifty range?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Formula \u2013 Vix as percentage/Square Root of Time\"})}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:[\"To predict the expected volatility of the Nifty index in the next 30 days, the \",/*#__PURE__*/_jsx(Link,{href:\"https://static.nseindia.com//s3fs-public/inline-files/India_VIX_comp_meth.pdf\",nodeId:\"CkZV_57JH\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"India VIX\"})}),\" comes in handy. It offers insights into the potential price fluctuations of Nifty. Here\u2019s how you can calculate the anticipated movement:\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"First, take the current VIX value, let\u2019s say it\u2019s 20. Then, determine the time period by dividing 365 (number of days in a year) by 30, resulting in 12.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"To calculate the expected volatility, divide the VIX value by the square root of the time period. In this case, it would be 20 divided by the square root of 12, which amounts to 5.77%.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Therefore, you can expect Nifty to exhibit a movement of approximately 5.77% in either direction (upside or downside) over the next 30 days.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"How do you calculate market range?\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Nifty Range = (Nifty Price \u2013 Duration Vix%) to (Nifty Price + Duration Vix%)\"}),\"To calculate the Nifty range, follow these steps:Collect the historical data of Nifty index values over a specific time period.Identify the highest value (Max) and lowest value (Min) from the collected data.Use the following formula to calculate the Nifty range:Nifty Range = (Nifty Price \u2013 Duration Vix%) to (Nifty Price + Duration Vix%)Subtracting the minimum value from the maximum value gives you the range of the Nifty index.The range provides insights into the extent of price movement within the given time period, indicating the overall volatility or price spread of the Nifty index during that period.What is India Vix?\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"India Vix, also known as the \u201CFear Index,\u201D is a key measure of market expectations for near-term volatility in India.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"It represents the expected annual volatility in the Nifty50 index over the next 30 days. India Vix reflects the sentiment of the entire market, providing insights into expected market volatility.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"How is India Vix calculated?\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:[\"India Vix is calculated based on option prices on the \",/*#__PURE__*/_jsx(Link,{href:\"https://nseindia.com/\",nodeId:\"CkZV_57JH\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-pbndum\",\"data-styles-preset\":\"f_JgQVGd5\",children:\"National Stock Exchange (NSE\"})}),\"). It measures the expected volatility over the next 30 days by taking the weighted average of the implied volatility from Nifty 50 index options.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Option prices reflect market expectations of volatility throughout the remaining life of the option contract.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"What does Higher/Lower Vix indicate?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"A higher value of Vix indicates stress, fear, and anxiety in the market, suggesting higher expected volatility.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Conversely, a lower Vix value indicates stability in the market with lower expected volatility. Vix serves as a gauge of market sentiment and can help investors assess potential market movements.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"What is the correlation between India Vix and Nifty?\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"India Vix is negatively correlated to the Nifty index. When the market index (Nifty) drops, indicating a decline in stock prices, the Vix value tends to increase, signifying higher expected volatility.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Conversely, when the market index rises, the Vix value tends to decrease, indicating lower expected volatility.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"Common Myth about India Vix:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"It is a common misconception that when the market falls, India Vix will rise, and when Vix rises, the market will fall.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"However, this is not always true. Vix can go up in a rising market and go down in a falling market as well. The relationship between Vix and market movements is more nuanced and depends on various factors.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1ad18pj\",\"data-styles-preset\":\"CZUjXgzYn\",children:\"How to use India Vix:\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"Hedging against volatility: The Vix index can be used as a tool for hedging against market volatility. Investors can utilize options or other volatility-based instruments to hedge their portfolios during periods of heightened volatility.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-es2zju\",\"data-styles-preset\":\"Hhsbvx3mQ\",children:\"By monitoring the Vix value, investors can identify market movements and hedge their positions to protect against potential market downturns.\"})]}),className:\"framer-1sna21r\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{y:4982.4},t2ohg4SVE:{y:3649}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"100vw\",y:6298.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c2uarj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Lq5cOefWW:{variant:\"s3dAJNPdA\"}},children:/*#__PURE__*/_jsx(FooterCopyright,{height:\"100%\",id:\"a2AiPBWKE\",layoutId:\"a2AiPBWKE\",style:{width:\"100%\"},variant:\"W0DFqA_ZT\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hlldm-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ZXnVzAhDW\",intensity:8,layoutId:\"ZXnVzAhDW\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-WhGsZ { background: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(10, 10, 10)) /* {\"name\":\"Background\"} */; }`,\".framer-WhGsZ.framer-1ug94uj, .framer-WhGsZ .framer-1ug94uj { display: block; }\",\".framer-WhGsZ.framer-h253pn { align-content: center; align-items: center; background-color: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, #0a0a0a); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-WhGsZ .framer-k29nfb-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-WhGsZ .framer-niedan { align-content: center; align-items: center; background-color: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, #0a0a0a); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 0px 100px 0px; position: relative; width: 84%; }\",\".framer-WhGsZ .framer-1mdovqw { align-content: flex-start; align-items: flex-start; background-color: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, #0a0a0a); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WhGsZ .framer-mevycb-container { flex: none; height: 275px; position: relative; width: 348px; }\",\".framer-WhGsZ .framer-1d847do { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WhGsZ .framer-px2ffo { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 993px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhGsZ .framer-1cpwgk, .framer-WhGsZ .framer-1g3twm2 { align-content: center; align-items: center; background-color: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, #0a0a0a); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 1004px; }\",\".framer-WhGsZ .framer-l88vof { align-content: flex-start; align-items: flex-start; background-color: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, #0a0a0a); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 84%; }\",\".framer-WhGsZ .framer-qwm5dh { align-content: center; align-items: center; background-color: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-WhGsZ .framer-1j5ckcs-container, .framer-WhGsZ .framer-hlldm-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-WhGsZ .framer-11dwvcu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-WhGsZ .framer-1sh78y9, .framer-WhGsZ .framer-1d0ibrd { --border-bottom-width: 1px; --border-color: var(--token-af7273d3-1fb6-4796-9326-48ad035c57d2, rgba(255, 255, 255, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-b02f73c3-0c77-4fa1-b52e-eca57fd70529, #0f0f0f); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 32px 15px 32px 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-WhGsZ .framer-1adqjud, .framer-WhGsZ .framer-15m6vgw { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: 189px; overflow: hidden; position: relative; width: 279px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WhGsZ .framer-44gp4m, .framer-WhGsZ .framer-l0952w { flex: none; height: 181px; left: 0px; position: absolute; top: 0px; width: 310px; }\",\".framer-WhGsZ .framer-1cr33wf, .framer-WhGsZ .framer-6ragc8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 249px; }\",\".framer-WhGsZ .framer-hc7r23, .framer-WhGsZ .framer-16iifug { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 880px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WhGsZ .framer-7dy7ml, .framer-WhGsZ .framer-1md4v7z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 389.5px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WhGsZ .framer-1wxy48-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-WhGsZ .framer-5pvr13 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-WhGsZ .framer-u4zgrm { background-color: rgba(0, 0, 0, 0.5); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-WhGsZ .framer-1c9os9g { align-content: flex-start; align-items: flex-start; background-color: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WhGsZ .framer-1fgbag9-container { flex: none; height: 272px; position: relative; width: 351px; }\",\".framer-WhGsZ .framer-p69251 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-WhGsZ .framer-1sna21r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: 2736px; position: relative; white-space: pre-wrap; width: 316px; word-break: break-word; word-wrap: break-word; }\",\".framer-WhGsZ .framer-c2uarj-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WhGsZ.framer-h253pn, .framer-WhGsZ .framer-niedan, .framer-WhGsZ .framer-1mdovqw, .framer-WhGsZ .framer-1cpwgk, .framer-WhGsZ .framer-1g3twm2, .framer-WhGsZ .framer-l88vof, .framer-WhGsZ .framer-qwm5dh, .framer-WhGsZ .framer-11dwvcu, .framer-WhGsZ .framer-1sh78y9, .framer-WhGsZ .framer-1cr33wf, .framer-WhGsZ .framer-1d0ibrd, .framer-WhGsZ .framer-6ragc8, .framer-WhGsZ .framer-5pvr13, .framer-WhGsZ .framer-1c9os9g { gap: 0px; } .framer-WhGsZ.framer-h253pn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-WhGsZ.framer-h253pn > :first-child, .framer-WhGsZ .framer-1mdovqw > :first-child, .framer-WhGsZ .framer-qwm5dh > :first-child, .framer-WhGsZ .framer-1sh78y9 > :first-child, .framer-WhGsZ .framer-1cr33wf > :first-child, .framer-WhGsZ .framer-1d0ibrd > :first-child, .framer-WhGsZ .framer-6ragc8 > :first-child, .framer-WhGsZ .framer-5pvr13 > :first-child, .framer-WhGsZ .framer-1c9os9g > :first-child { margin-top: 0px; } .framer-WhGsZ.framer-h253pn > :last-child, .framer-WhGsZ .framer-1mdovqw > :last-child, .framer-WhGsZ .framer-qwm5dh > :last-child, .framer-WhGsZ .framer-1sh78y9 > :last-child, .framer-WhGsZ .framer-1cr33wf > :last-child, .framer-WhGsZ .framer-1d0ibrd > :last-child, .framer-WhGsZ .framer-6ragc8 > :last-child, .framer-WhGsZ .framer-5pvr13 > :last-child, .framer-WhGsZ .framer-1c9os9g > :last-child { margin-bottom: 0px; } .framer-WhGsZ .framer-niedan > *, .framer-WhGsZ .framer-1cpwgk > *, .framer-WhGsZ .framer-1g3twm2 > *, .framer-WhGsZ .framer-l88vof > * { margin: 0px; margin-left: calc(42px / 2); margin-right: calc(42px / 2); } .framer-WhGsZ .framer-niedan > :first-child, .framer-WhGsZ .framer-1cpwgk > :first-child, .framer-WhGsZ .framer-1g3twm2 > :first-child, .framer-WhGsZ .framer-l88vof > :first-child, .framer-WhGsZ .framer-11dwvcu > :first-child { margin-left: 0px; } .framer-WhGsZ .framer-niedan > :last-child, .framer-WhGsZ .framer-1cpwgk > :last-child, .framer-WhGsZ .framer-1g3twm2 > :last-child, .framer-WhGsZ .framer-l88vof > :last-child, .framer-WhGsZ .framer-11dwvcu > :last-child { margin-right: 0px; } .framer-WhGsZ .framer-1mdovqw > *, .framer-WhGsZ .framer-1c9os9g > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-WhGsZ .framer-qwm5dh > *, .framer-WhGsZ .framer-5pvr13 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-WhGsZ .framer-11dwvcu > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-WhGsZ .framer-1sh78y9 > *, .framer-WhGsZ .framer-1d0ibrd > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-WhGsZ .framer-1cr33wf > *, .framer-WhGsZ .framer-6ragc8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-WhGsZ[data-border=\"true\"]::after, .framer-WhGsZ [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; }',`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-WhGsZ { background: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(10, 10, 10)) /* {\"name\":\"Background\"} */; } .framer-WhGsZ.framer-h253pn { width: 810px; } .framer-WhGsZ .framer-k29nfb-container { order: 0; } .framer-WhGsZ .framer-1wxy48-container { order: 4; } .framer-WhGsZ .framer-5pvr13 { order: 1; } .framer-WhGsZ .framer-c2uarj-container { order: 5; } .framer-WhGsZ .framer-hlldm-container { order: 6; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-WhGsZ { background: var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(10, 10, 10)) /* {\"name\":\"Background\"} */; } .framer-WhGsZ.framer-h253pn { width: 390px; } .framer-WhGsZ .framer-niedan { flex-direction: column; padding: 120px 10px 100px 10px; width: 100%; } .framer-WhGsZ .framer-1mdovqw { flex: none; order: 0; width: 100%; } .framer-WhGsZ .framer-mevycb-container { height: 272px; width: 351px; } .framer-WhGsZ .framer-1d847do { white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; } .framer-WhGsZ .framer-px2ffo { height: 2736px; width: 316px; } .framer-WhGsZ .framer-1cpwgk { width: 382px; } .framer-WhGsZ .framer-1g3twm2 { padding: 0px 0px 24px 0px; width: 360px; } .framer-WhGsZ .framer-l88vof { align-content: center; align-items: center; flex-direction: column; padding: 0px 0px 38px 0px; } .framer-WhGsZ .framer-qwm5dh { height: 109px; order: 0; } .framer-WhGsZ .framer-11dwvcu { flex: none; flex-direction: column; order: 1; width: 342px; } .framer-WhGsZ .framer-1sh78y9, .framer-WhGsZ .framer-1d0ibrd { width: 98%; } .framer-WhGsZ .framer-1adqjud, .framer-WhGsZ .framer-15m6vgw { height: 191px; width: 290px; } .framer-WhGsZ .framer-44gp4m, .framer-WhGsZ .framer-l0952w { height: 186px; width: 274px; } .framer-WhGsZ .framer-1cr33wf, .framer-WhGsZ .framer-6ragc8 { width: 299px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-WhGsZ .framer-niedan, .framer-WhGsZ .framer-l88vof, .framer-WhGsZ .framer-11dwvcu { gap: 0px; } .framer-WhGsZ .framer-niedan > *, .framer-WhGsZ .framer-l88vof > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-WhGsZ .framer-niedan > :first-child, .framer-WhGsZ .framer-l88vof > :first-child, .framer-WhGsZ .framer-11dwvcu > :first-child { margin-top: 0px; } .framer-WhGsZ .framer-niedan > :last-child, .framer-WhGsZ .framer-l88vof > :last-child, .framer-WhGsZ .framer-11dwvcu > :last-child { margin-bottom: 0px; } .framer-WhGsZ .framer-11dwvcu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4276\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"t2ohg4SVE\":{\"layout\":[\"fixed\",\"auto\"]},\"Lq5cOefWW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerPbbZ1XjVu=withCSS(Component,css,\"framer-WhGsZ\");export default FramerPbbZ1XjVu;FramerPbbZ1XjVu.displayName=\"Find My Edge Trading Journal\";FramerPbbZ1XjVu.defaultProps={height:4276,width:1200};addFonts(FramerPbbZ1XjVu,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{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\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavigationNavigationFonts,...EmbedFonts,...ButtonsButtonFonts,...FooterFooterFonts,...FooterCopyrightFonts,...SmoothScrollFonts,...ElementsCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPbbZ1XjVu\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"4276\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"t2ohg4SVE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Lq5cOefWW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "NavigationNavigationFonts", "getFonts", "Cck5nzSCj_default", "NavigationNavigationWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "EmbedFonts", "Embed", "ButtonsButtonFonts", "beL7nB9Cx_default", "FooterFooterFonts", "pQtVRkS2b_default", "FooterCopyrightFonts", "Zeqloo3mj_default", "SmoothScrollFonts", "SmoothScroll", "ElementsCursorFonts", "nqkaSsdn6_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "transition2", "animation", "animation1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "cursor", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "PropertyOverrides2", "x", "RichText2", "Link", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "Image2", "css", "FramerPbbZ1XjVu", "withCSS", "PbbZ1XjVu_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
