{"version":3,"file":"Yzh5nXCTZVYCcX9kGEm7JLBoJ8UXySQR5ZPpo61xg28.B-K9eWyA.mjs","names":["NavBreadcrum","Governance","metadata","className","PropertyOverrides","Image","css"],"sources":["https:/framerusercontent.com/modules/2ZoG4qovmvCYoEus7wm4/vYVbk4kl6C7fb8sHYFxE/GovernanceAPIComponent.js","https:/framerusercontent.com/modules/1ihT8fOpEGF2y4KVwpcS/0nDuahTodhrswrYyHzUF/MIWg7EQCA.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import lottie from\"lottie-web\";import{addPropertyControls,ControlType}from\"framer\";export function GovernanceAPIComponent({chainName,lottiePath,showProposalNumber,showDateProposal,showReasonProposal,showTitle,showVote,fontFamily,fontSize,fontWeight,textColor,rowHeight,rowPadding,headerFontFamily,headerFontSize,headerFontWeight,headerTextColor,selected}){const[data,setData]=React.useState({original:[],filtered:[]});const[loading,setLoading]=React.useState(true);const[sortAsc,setSortAsc]=React.useState(false);const[voteFilter,setVoteFilter]=React.useState(\"all\");const animationRef=React.useRef(null);const formatDate=dateStr=>{const date=new Date(dateStr.replace(\" \",\"T\"));return date.toLocaleDateString(\"en-US\");};const apiURL=`https://api.imperator.co/governance/chain?chain_name=${chainName}`;const headerBaseStyle={fontFamily:headerFontFamily,fontSize:headerFontSize,fontWeight:headerFontWeight,color:headerTextColor,padding:12,position:\"sticky\",top:0,backgroundColor:\"#F6F4ED\",zIndex:5,borderBottom:\"1px solid #E7E7E7\",cursor:\"pointer\",minWidth:70};const rowBaseStyle={fontFamily,fontSize,fontWeight,color:textColor,height:`${rowHeight}px`,padding:`${rowPadding}px`,borderBottom:\"1px solid #E7E7E7\",textAlign:\"center\"};React.useEffect(()=>{setLoading(true);const fetchData=async()=>{try{const response=await fetch(apiURL);const jsonData=await response.json();const dataArray=Object.keys(jsonData).map(key=>({id:key,...jsonData[key]}));setData({original:dataArray,filtered:dataArray});}catch(error){console.error(\"Error fetching data: \",error);}finally{setLoading(false);}};fetchData();},[apiURL]);React.useEffect(()=>{if(loading&&lottiePath&&animationRef.current){const anim=lottie.loadAnimation({container:animationRef.current,renderer:\"svg\",loop:true,autoplay:true,path:lottiePath});return()=>anim.destroy();}},[loading,lottiePath]);React.useEffect(()=>{const applyFilters=()=>{let filteredData=[...data.original];if(!sortAsc){filteredData.sort((a,b)=>b[\"proposal number\"]-a[\"proposal number\"]);}else{filteredData.sort((a,b)=>a[\"proposal number\"]-b[\"proposal number\"]);}if(voteFilter!==\"all\"){filteredData=filteredData.filter(item=>item.vote===voteFilter);}setData(prevData=>({...prevData,filtered:filteredData}));};applyFilters();},[sortAsc,voteFilter,data.original]);const capitalizeWords=str=>str.replace(/\\b(\\w)/g,s=>s.toUpperCase());const getVoteStyle=vote=>{const baseStyle={padding:\"4px 8px\",borderRadius:\"12px\",display:\"inline-block\"};const colors={yes:\"#d1fae5\",no:\"#ffc7c9\",\"no with veto\":\"#ffc7c9\",abstain:\"#e7e7e7\"};return{...baseStyle,backgroundColor:colors[vote.toLowerCase()],color:\"#333333\"};};const toggleSortOrder=()=>setSortAsc(prevState=>!prevState);const handleFilterChange=event=>setVoteFilter(event.target.value);const openDetails=proposalNumber=>{const url=`https://www.mintscan.io/${chainName.toLowerCase()}/proposals/${proposalNumber}`;window.open(url,\"_blank\");};return /*#__PURE__*/_jsx(\"div\",{children:loading?/*#__PURE__*/_jsx(\"div\",{ref:animationRef,style:{width:\"100%\",height:\"50px\"}}):/*#__PURE__*/_jsxs(\"table\",{style:{width:\"100%\",borderCollapse:\"separate\",borderSpacing:0},children:[/*#__PURE__*/_jsx(\"thead\",{children:/*#__PURE__*/_jsxs(\"tr\",{children:[showProposalNumber&&/*#__PURE__*/_jsxs(\"th\",{style:headerBaseStyle,onClick:toggleSortOrder,children:[\"ID \",sortAsc?\"↑\":\"↓\"]}),showDateProposal&&/*#__PURE__*/_jsx(\"th\",{style:headerBaseStyle,children:\"Date\"}),showTitle&&/*#__PURE__*/_jsx(\"th\",{style:headerBaseStyle,children:\"Title\"}),showReasonProposal&&/*#__PURE__*/_jsx(\"th\",{style:headerBaseStyle,children:\"Reason\"}),showVote&&/*#__PURE__*/_jsx(\"th\",{style:{...headerBaseStyle,minWidth:130},children:/*#__PURE__*/_jsxs(\"select\",{onChange:handleFilterChange,value:voteFilter,style:{backgroundColor:\"transparent\",borderRadius:4,padding:4,borderColor:\"#D1D1D1\"},children:[/*#__PURE__*/_jsx(\"option\",{value:\"\",disabled:true,selected:true,children:\"Vote\"}),/*#__PURE__*/_jsx(\"option\",{value:\"all\",children:\"All\"}),/*#__PURE__*/_jsx(\"option\",{value:\"YES\",children:\"Yes\"}),/*#__PURE__*/_jsx(\"option\",{value:\"NO\",children:\"No\"}),/*#__PURE__*/_jsx(\"option\",{value:\"ABSTAIN\",children:\"Abstain\"}),/*#__PURE__*/_jsx(\"option\",{value:\"No With Veto\",children:\"No with Veto\"})]})}),/*#__PURE__*/_jsx(\"th\",{style:headerBaseStyle,children:\"Details\"})]})}),/*#__PURE__*/_jsx(\"tbody\",{children:data.filtered.length>0?data.filtered.map(proposal=>/*#__PURE__*/_jsxs(\"tr\",{children:[showProposalNumber&&/*#__PURE__*/_jsx(\"td\",{style:rowBaseStyle,children:proposal[\"proposal number\"]}),showDateProposal&&/*#__PURE__*/_jsx(\"td\",{style:rowBaseStyle,children:formatDate(proposal[\"date proposal\"])}),showTitle&&/*#__PURE__*/_jsx(\"td\",{style:rowBaseStyle,children:proposal.title}),showReasonProposal&&/*#__PURE__*/_jsx(\"td\",{style:rowBaseStyle,children:proposal[\"reason\"]}),showVote&&/*#__PURE__*/_jsx(\"td\",{style:{...rowBaseStyle,minWidth:130},children:/*#__PURE__*/_jsx(\"span\",{style:getVoteStyle(proposal.vote),children:proposal.vote})}),/*#__PURE__*/_jsx(\"td\",{style:{...rowBaseStyle,minWidth:80},children:/*#__PURE__*/_jsxs(\"div\",{style:{cursor:\"pointer\",color:\"#007aff\",display:\"flex\",gap:5,alignItems:\"center\",justifyContent:\"center\"},onClick:()=>openDetails(proposal[\"proposal number\"]),children:[/*#__PURE__*/_jsx(\"span\",{children:\"Details\"}),/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"14\",height:\"14\",fill:\"none\",stroke:\"currentColor\",strokeLinecap:\"round\",strokeLinejoin:\"round\",strokeWidth:\"2\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M20 13.5c0 1.395 0 2.092-.138 2.667a5 5 0 0 1-3.695 3.695C15.592 20 14.894 20 13.5 20H12c-2.8 0-4.2 0-5.27-.545a5 5 0 0 1-2.185-2.185C4 16.2 4 14.8 4 12v-.5c0-2.33 0-3.495.38-4.413A5 5 0 0 1 7.088 4.38c.776-.322 1.73-.372 3.413-.38m9.26 5.454c.262-1.633.31-3.285.142-4.914a.495.495 0 0 0-.142-.3m0 0a.496.496 0 0 0-.301-.143 18.815 18.815 0 0 0-4.913.142m5.214 0L10 14\"})})]})})]},proposal.id)):/*#__PURE__*/_jsx(\"tr\",{children:/*#__PURE__*/_jsx(\"td\",{colSpan:6,style:{...rowBaseStyle,textAlign:\"center\",height:\"100px\"},children:\"No results found\"})})})]})});}addPropertyControls(GovernanceAPIComponent,{// Data Source\nchainName:{type:ControlType.String,title:\"Chain Name\",defaultValue:\"axelar\"},lottiePath:{type:ControlType.String,title:\"Lottie Animation Path\",defaultValue:\"https://lottie.host/8cafc67a-1312-48e6-91b9-f58ec2bfc74e/gkevCNJasx.json\"},// Display Toggles\nshowProposalNumber:{type:ControlType.Boolean,title:\"Show Proposal Number\",defaultValue:true},showDateProposal:{type:ControlType.Boolean,title:\"Show Date Proposal\",defaultValue:true},showTitle:{type:ControlType.Boolean,title:\"Show Title\",defaultValue:true},showReasonProposal:{type:ControlType.Boolean,title:\"Show Reason Proposal\",defaultValue:true},showVote:{type:ControlType.Boolean,title:\"Show Vote\",defaultValue:true},// Row Styling\nfontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Inter\"},rowHeight:{type:ControlType.Number,title:\"Row Height\",defaultValue:30},rowPadding:{type:ControlType.Number,title:\"Row Padding\",defaultValue:10},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#000000\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:14},fontWeight:{type:ControlType.Enum,title:\"Font Weight\",options:[\"normal\",\"bold\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],optionTitles:[\"Normal\",\"Bold\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"normal\"},// Header Styling\nheaderFontFamily:{type:ControlType.String,title:\"Header Font Family\",defaultValue:\"Inter\"},headerTextColor:{type:ControlType.Color,title:\"Header Text Color\",defaultValue:\"#000000\"},headerFontSize:{type:ControlType.Number,title:\"Header Font Size\",defaultValue:16},headerFontWeight:{type:ControlType.Enum,title:\"Header Font Weight\",options:[\"normal\",\"bold\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],optionTitles:[\"Normal\",\"Bold\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"bold\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"GovernanceAPIComponent\":{\"type\":\"reactComponent\",\"name\":\"GovernanceAPIComponent\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GovernanceAPIComponent.map","// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavBreadcrum from\"#framer/local/canvasComponent/VfHgKb3zL/VfHgKb3zL.js\";import{GovernanceAPIComponent}from\"#framer/local/codeFile/VQhmoS3/GovernanceAPIComponent.js\";import Governance from\"#framer/local/collection/jjVoKetTA/jjVoKetTA.js\";import*as sharedStyle1 from\"#framer/local/css/haIqvLIp1/haIqvLIp1.js\";import*as sharedStyle2 from\"#framer/local/css/jQsBIWpbJ/jQsBIWpbJ.js\";import*as sharedStyle3 from\"#framer/local/css/kPaxGJ310/kPaxGJ310.js\";import*as sharedStyle from\"#framer/local/css/ZGylmUzjD/ZGylmUzjD.js\";import metadataProvider from\"#framer/local/webPageMetadata/MIWg7EQCA/MIWg7EQCA.js\";const NavBreadcrumFonts=getFonts(NavBreadcrum);const GovernanceAPIComponentFonts=getFonts(GovernanceAPIComponent);const breakpoints={vgE9IVjRP:\"(min-width: 810px) and (max-width: 1199px)\",WCqp3yNhl:\"(max-width: 809px)\",YfbOcwCXq:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-FOoc8\";const variantClassNames={vgE9IVjRP:\"framer-v-1s6qjcr\",WCqp3yNhl:\"framer-v-1sizg3j\",YfbOcwCXq:\"framer-v-19ltiq1\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"YfbOcwCXq\",Phone:\"WCqp3yNhl\",Tablet:\"vgE9IVjRP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YfbOcwCXq\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"MIWg7EQCA\",data:Governance,type:\"Collection\"},select:[{collection:\"MIWg7EQCA\",name:\"q4SwolPmB\",type:\"Identifier\"},{collection:\"MIWg7EQCA\",name:\"cjUDJWTHl\",type:\"Identifier\"},{collection:\"MIWg7EQCA\",name:\"kFOZBIVE4\",type:\"Identifier\"},{collection:\"MIWg7EQCA\",name:\"ioHisD_PL\",type:\"Identifier\"},{collection:\"MIWg7EQCA\",name:\"ZTenanWfq\",type:\"Identifier\"},{collection:\"MIWg7EQCA\",name:\"qPcOiHvjA\",type:\"Identifier\"},{collection:\"MIWg7EQCA\",name:\"ZXt2DkuZW\",type:\"Identifier\"},{collection:\"MIWg7EQCA\",name:\"CtFd5XQ7G\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"MIWg7EQCA\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,cjUDJWTHl=getFromCurrentRouteData(\"cjUDJWTHl\")??\"\",q4SwolPmB=getFromCurrentRouteData(\"q4SwolPmB\"),ioHisD_PL=getFromCurrentRouteData(\"ioHisD_PL\")??\"\",kFOZBIVE4=getFromCurrentRouteData(\"kFOZBIVE4\")??\"\",ZTenanWfq=getFromCurrentRouteData(\"ZTenanWfq\")??\"\",qPcOiHvjA=getFromCurrentRouteData(\"qPcOiHvjA\")??\"\",ZXt2DkuZW=getFromCurrentRouteData(\"ZXt2DkuZW\")??\"\",CtFd5XQ7G=getFromCurrentRouteData(\"CtFd5XQ7G\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"YfbOcwCXq\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-8655b34d-eab9-4bb6-9760-6479d293f912, rgb(250, 250, 250)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-19ltiq1\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MeyojXZVb\"},implicitPathVariables:undefined},{href:{webPageId:\"MeyojXZVb\"},implicitPathVariables:undefined},{href:{webPageId:\"MeyojXZVb\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m1uflg-container\",nodeId:\"GCqbOAuoE\",scopeId:\"MIWg7EQCA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vgE9IVjRP:{tnzfztmN8:resolvedLinks[1]},WCqp3yNhl:{tnzfztmN8:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(NavBreadcrum,{f6boJC1kj:cjUDJWTHl,height:\"100%\",id:\"GCqbOAuoE\",kTf48_2Pm:\"Label\",layoutId:\"GCqbOAuoE\",LcR9Gz9wy:\"Governance\",rvr2ojRP3:\"token\",style:{width:\"100%\"},tnzfztmN8:resolvedLinks[0],variant:\"I0Vy26yrO\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-1k6nm9y\",\"data-framer-name\":\"main\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-pklpvr\",\"data-framer-name\":\"max-width\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1flbjxn\",\"data-border\":true,\"data-framer-name\":\"chain info\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gggh1x\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pcrjwa\",\"data-framer-name\":\"chain\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vgE9IVjRP:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+45+0+0+50+0+24+0+0+1.6),sizes:\"40px\",...toResponsiveImage(q4SwolPmB),...{positionX:\"center\",positionY:\"center\"}}},WCqp3yNhl:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+45+0+0+50+0+24+0+0+0+1.6),sizes:\"40px\",...toResponsiveImage(q4SwolPmB),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+45+0+0+50+24+0+0+1.6),sizes:\"40px\",...toResponsiveImage(q4SwolPmB),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-9fjs9k\",\"data-framer-name\":\"chain logo\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ocpz1s\",\"data-framer-name\":\"chain title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-opc5d8\",\"data-styles-preset\":\"ZGylmUzjD\",children:\"Chain\"})}),className:\"framer-1gyy03c\",fonts:[\"Inter\"],text:cjUDJWTHl,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yaw6x0\",\"data-framer-name\":\"chian description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ack06l\",\"data-styles-preset\":\"haIqvLIp1\",children:\"Short description\"})}),className:\"framer-vhvnaq\",fonts:[\"Inter\"],text:ioHisD_PL,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dopc3u\",\"data-framer-name\":\"details tab\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kjxfdy\",\"data-border\":true,\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gwgmcy\",\"data-styles-preset\":\"jQsBIWpbJ\",children:\"Token\"})}),className:\"framer-6bo80t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o0bzmv\",\"data-styles-preset\":\"kPaxGJ310\",children:\"Token\"})}),className:\"framer-zf1vto\",fonts:[\"Inter\"],text:kFOZBIVE4,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-auwt0n\",\"data-border\":true,\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gwgmcy\",\"data-styles-preset\":\"jQsBIWpbJ\",children:\"Category\"})}),className:\"framer-4dzcov\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o0bzmv\",\"data-styles-preset\":\"kPaxGJ310\",children:\"Category\"})}),className:\"framer-rhplbj\",fonts:[\"Inter\"],text:ZTenanWfq,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1palnsm\",\"data-border\":true,\"data-framer-name\":\"row\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gwgmcy\",\"data-styles-preset\":\"jQsBIWpbJ\",children:\"Ecosystem\"})}),className:\"framer-1mqimqt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-o0bzmv\",\"data-styles-preset\":\"kPaxGJ310\",children:\"Ecosystem\"})}),className:\"framer-1lsob8b\",fonts:[\"Inter\"],text:qPcOiHvjA,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5s2xdf\",\"data-framer-name\":\"socials\",children:[/*#__PURE__*/_jsx(Link,{href:ZXt2DkuZW,motionChild:true,nodeId:\"RUJPDeSpW\",openInNewTab:true,scopeId:\"MIWg7EQCA\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12114ty framer-t5c7vf\",\"data-framer-name\":\"website\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10v4ytn\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 2.85 12 L 21.15 12 M 2.85 12 C 2.85 17.053 6.947 21.15 12 21.15 M 2.85 12 C 2.85 6.947 6.947 2.85 12 2.85 M 21.15 12 C 21.15 17.053 17.053 21.15 12 21.15 M 21.15 12 C 21.15 6.947 17.053 2.85 12 2.85 M 12 2.85 C 14.289 5.356 15.589 8.607 15.66 12 C 15.589 15.393 14.289 18.644 12 21.15 M 12 2.85 C 9.711 5.356 8.411 8.607 8.34 12 C 8.411 15.393 9.711 18.644 12 21.15\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(176, 176, 176)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11735833413,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:CtFd5XQ7G,motionChild:true,nodeId:\"jzDqGV6ai\",openInNewTab:true,scopeId:\"MIWg7EQCA\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rx511m framer-t5c7vf\",\"data-framer-name\":\"x\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ln00ca\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.8 3 L 13.582 10.105 M 4.05 21 L 10.682 13.421 M 13.583 10.105 L 9.267 4.013 C 9.004 3.642 8.873 3.457 8.703 3.323 C 8.553 3.204 8.381 3.115 8.197 3.061 C 7.99 3 7.763 3 7.308 3 L 5.62 3 C 4.87 3 4.494 3 4.292 3.156 C 4.116 3.291 4.009 3.498 4 3.72 C 3.99 3.975 4.207 4.281 4.64 4.894 L 10.681 13.421 M 13.582 10.105 L 19.958 19.106 C 20.392 19.719 20.608 20.025 20.598 20.28 C 20.589 20.502 20.483 20.708 20.307 20.844 C 20.104 21 19.729 21 18.979 21 L 17.29 21 C 16.835 21 16.608 21 16.4 20.939 C 16.216 20.885 16.045 20.796 15.895 20.677 C 15.725 20.544 15.594 20.358 15.331 19.987 L 10.68 13.421\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(176, 176, 176)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:8748403380,withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hqmuyk\",\"data-border\":true,\"data-framer-name\":\"Tab votes\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dj32s1\",\"data-framer-name\":\"scroll-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dk8l60-container\",isAuthoredByUser:true,nodeId:\"bvfCGEGZa\",scopeId:\"MIWg7EQCA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WCqp3yNhl:{showDateProposal:false,showTitle:false}},children:/*#__PURE__*/_jsx(GovernanceAPIComponent,{chainName:cjUDJWTHl,fontFamily:\"Manrope\",fontSize:14,fontWeight:\"300\",headerFontFamily:\"Manrope\",headerFontSize:14,headerFontWeight:\"600\",headerTextColor:\"rgb(51, 51, 51)\",height:\"100%\",id:\"bvfCGEGZa\",layoutId:\"bvfCGEGZa\",lottiePath:\"https://lottie.host/8cafc67a-1312-48e6-91b9-f58ec2bfc74e/gkevCNJasx.json\",rowHeight:64,rowPadding:12,showDateProposal:true,showProposalNumber:true,showReasonProposal:false,showTitle:true,showVote:true,style:{width:\"100%\"},textColor:\"rgb(109, 109, 109)\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tjmnjz\",\"data-framer-name\":\"fade\"})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FOoc8.framer-t5c7vf, .framer-FOoc8 .framer-t5c7vf { display: block; }\",\".framer-FOoc8.framer-19ltiq1 { align-content: center; align-items: center; background-color: var(--token-8655b34d-eab9-4bb6-9760-6479d293f912, #fafafa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-FOoc8 .framer-m1uflg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-FOoc8 .framer-1k6nm9y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FOoc8 .framer-pklpvr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 50px 12px 100px 12px; position: relative; width: 100%; }\",\".framer-FOoc8 .framer-1flbjxn { --border-bottom-width: 1px; --border-color: #e7e7e7; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-a8052db3-9704-4921-9bdc-ea40bee00a06, #f6f4ed); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 30%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-FOoc8 .framer-gggh1x { flex: none; height: 187px; overflow: hidden; position: relative; width: 305px; }\",\".framer-FOoc8 .framer-pcrjwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: 305px; }\",\".framer-FOoc8 .framer-9fjs9k { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: hidden; position: relative; width: 40px; }\",\".framer-FOoc8 .framer-1ocpz1s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FOoc8 .framer-1gyy03c { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FOoc8 .framer-yaw6x0 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 305px; }\",\".framer-FOoc8 .framer-vhvnaq { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-FOoc8 .framer-1dopc3u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FOoc8 .framer-1kjxfdy, .framer-FOoc8 .framer-auwt0n, .framer-FOoc8 .framer-1palnsm { --border-bottom-width: 1px; --border-color: #e7e7e7; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-FOoc8 .framer-6bo80t, .framer-FOoc8 .framer-zf1vto, .framer-FOoc8 .framer-4dzcov, .framer-FOoc8 .framer-rhplbj, .framer-FOoc8 .framer-1mqimqt, .framer-FOoc8 .framer-1lsob8b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-FOoc8 .framer-5s2xdf { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-FOoc8 .framer-12114ty, .framer-FOoc8 .framer-rx511m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-FOoc8 .framer-10v4ytn, .framer-FOoc8 .framer-ln00ca { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-FOoc8 .framer-1hqmuyk { --border-bottom-width: 1px; --border-color: #e7e7e7; --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-a8052db3-9704-4921-9bdc-ea40bee00a06, #f6f4ed); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80vh; justify-content: flex-start; overflow: hidden; padding: 1px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FOoc8 .framer-dj32s1 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: flex-start; overflow: hidden; overflow-y: auto; overscroll-behavior: none; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-FOoc8 .framer-1dk8l60-container { flex: none; height: auto; min-height: 50px; position: relative; width: 100%; }\",\".framer-FOoc8 .framer-tjmnjz { background: linear-gradient(180deg, rgba(246, 246, 246, 0) 0%, var(--token-a8052db3-9704-4921-9bdc-ea40bee00a06, rgb(246, 244, 237)) 100%); bottom: 1px; flex: none; height: 20px; left: 4px; overflow: hidden; position: absolute; right: 4px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FOoc8.framer-19ltiq1, .framer-FOoc8 .framer-1k6nm9y, .framer-FOoc8 .framer-pklpvr, .framer-FOoc8 .framer-1flbjxn, .framer-FOoc8 .framer-pcrjwa, .framer-FOoc8 .framer-1ocpz1s, .framer-FOoc8 .framer-yaw6x0, .framer-FOoc8 .framer-1dopc3u, .framer-FOoc8 .framer-5s2xdf, .framer-FOoc8 .framer-12114ty, .framer-FOoc8 .framer-rx511m, .framer-FOoc8 .framer-1hqmuyk, .framer-FOoc8 .framer-dj32s1 { gap: 0px; } .framer-FOoc8.framer-19ltiq1 > *, .framer-FOoc8 .framer-1ocpz1s > *, .framer-FOoc8 .framer-1dopc3u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FOoc8.framer-19ltiq1 > :first-child, .framer-FOoc8 .framer-1k6nm9y > :first-child, .framer-FOoc8 .framer-1flbjxn > :first-child, .framer-FOoc8 .framer-1ocpz1s > :first-child, .framer-FOoc8 .framer-1dopc3u > :first-child, .framer-FOoc8 .framer-1hqmuyk > :first-child, .framer-FOoc8 .framer-dj32s1 > :first-child { margin-top: 0px; } .framer-FOoc8.framer-19ltiq1 > :last-child, .framer-FOoc8 .framer-1k6nm9y > :last-child, .framer-FOoc8 .framer-1flbjxn > :last-child, .framer-FOoc8 .framer-1ocpz1s > :last-child, .framer-FOoc8 .framer-1dopc3u > :last-child, .framer-FOoc8 .framer-1hqmuyk > :last-child, .framer-FOoc8 .framer-dj32s1 > :last-child { margin-bottom: 0px; } .framer-FOoc8 .framer-1k6nm9y > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-FOoc8 .framer-pklpvr > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-FOoc8 .framer-pklpvr > :first-child, .framer-FOoc8 .framer-pcrjwa > :first-child, .framer-FOoc8 .framer-yaw6x0 > :first-child, .framer-FOoc8 .framer-5s2xdf > :first-child, .framer-FOoc8 .framer-12114ty > :first-child, .framer-FOoc8 .framer-rx511m > :first-child { margin-left: 0px; } .framer-FOoc8 .framer-pklpvr > :last-child, .framer-FOoc8 .framer-pcrjwa > :last-child, .framer-FOoc8 .framer-yaw6x0 > :last-child, .framer-FOoc8 .framer-5s2xdf > :last-child, .framer-FOoc8 .framer-12114ty > :last-child, .framer-FOoc8 .framer-rx511m > :last-child { margin-right: 0px; } .framer-FOoc8 .framer-1flbjxn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-FOoc8 .framer-pcrjwa > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-FOoc8 .framer-yaw6x0 > *, .framer-FOoc8 .framer-5s2xdf > *, .framer-FOoc8 .framer-12114ty > *, .framer-FOoc8 .framer-rx511m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-FOoc8 .framer-1hqmuyk > *, .framer-FOoc8 .framer-dj32s1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-FOoc8[data-border=\"true\"]::after, .framer-FOoc8 [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; }','.framer-FOoc8[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-FOoc8 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-FOoc8[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-FOoc8 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-FOoc8[data-hide-scrollbars=\"true\"], .framer-FOoc8 [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-FOoc8.framer-19ltiq1 { width: 810px; } .framer-FOoc8 .framer-pklpvr { flex-direction: column; } .framer-FOoc8 .framer-1flbjxn { align-self: unset; flex-direction: row; height: min-content; width: 100%; } .framer-FOoc8 .framer-gggh1x { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; width: min-content; } .framer-FOoc8 .framer-pcrjwa { left: unset; position: relative; top: unset; transform: unset; width: 203px; } .framer-FOoc8 .framer-yaw6x0 { bottom: unset; left: unset; position: relative; transform: unset; width: 203px; } .framer-FOoc8 .framer-1dopc3u { flex: 1 0 0px; width: 1px; } .framer-FOoc8 .framer-5s2xdf { flex: none; flex-direction: column; height: min-content; } .framer-FOoc8 .framer-1hqmuyk { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FOoc8 .framer-pklpvr, .framer-FOoc8 .framer-1flbjxn, .framer-FOoc8 .framer-gggh1x, .framer-FOoc8 .framer-5s2xdf { gap: 0px; } .framer-FOoc8 .framer-pklpvr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-FOoc8 .framer-pklpvr > :first-child, .framer-FOoc8 .framer-gggh1x > :first-child, .framer-FOoc8 .framer-5s2xdf > :first-child { margin-top: 0px; } .framer-FOoc8 .framer-pklpvr > :last-child, .framer-FOoc8 .framer-gggh1x > :last-child, .framer-FOoc8 .framer-5s2xdf > :last-child { margin-bottom: 0px; } .framer-FOoc8 .framer-1flbjxn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-FOoc8 .framer-1flbjxn > :first-child { margin-left: 0px; } .framer-FOoc8 .framer-1flbjxn > :last-child { margin-right: 0px; } .framer-FOoc8 .framer-gggh1x > *, .framer-FOoc8 .framer-5s2xdf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-FOoc8.framer-19ltiq1 { width: 390px; } .framer-FOoc8 .framer-pklpvr { flex-direction: column; } .framer-FOoc8 .framer-1flbjxn { align-self: unset; height: min-content; width: 100%; } .framer-FOoc8 .framer-gggh1x { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; width: min-content; } .framer-FOoc8 .framer-pcrjwa { left: unset; position: relative; top: unset; transform: unset; width: 203px; } .framer-FOoc8 .framer-yaw6x0 { bottom: unset; left: unset; position: relative; transform: unset; width: 203px; } .framer-FOoc8 .framer-5s2xdf { flex: none; height: min-content; } .framer-FOoc8 .framer-1hqmuyk { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-FOoc8 .framer-pklpvr, .framer-FOoc8 .framer-gggh1x { gap: 0px; } .framer-FOoc8 .framer-pklpvr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-FOoc8 .framer-pklpvr > :first-child, .framer-FOoc8 .framer-gggh1x > :first-child { margin-top: 0px; } .framer-FOoc8 .framer-pklpvr > :last-child, .framer-FOoc8 .framer-gggh1x > :last-child { margin-bottom: 0px; } .framer-FOoc8 .framer-gggh1x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2453\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vgE9IVjRP\":{\"layout\":[\"fixed\",\"auto\"]},\"WCqp3yNhl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerMIWg7EQCA=withCSS(Component,css,\"framer-FOoc8\");export default FramerMIWg7EQCA;FramerMIWg7EQCA.displayName=\"Page\";FramerMIWg7EQCA.defaultProps={height:2453,width:1200};addFonts(FramerMIWg7EQCA,[{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\"}]},...NavBreadcrumFonts,...GovernanceAPIComponentFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMIWg7EQCA\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"2453\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vgE9IVjRP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WCqp3yNhl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}