{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js", "ssg:https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js", "ssg:https://framer.com/m/cache-YMiL.js@b9aplVZjN51x28yfNK16", "ssg:https://framerusercontent.com/modules/uU1mtMKXsrVAg8N5hW7w/PCK1x1QLNluYNoEoapwx/cachedIndex.js", "ssg:https://framerusercontent.com/modules/K9JZRwJcE6slDAf8rUmh/mJ54py1Ecnn1RoC4N1m4/fakeResults.js", "ssg:https://framerusercontent.com/modules/TwRgbWuhHeB95MPifel4/YW8Hlm59FG3PajbrVsaR/fuzzySearch.js", "ssg:https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js", "ssg:https://framerusercontent.com/modules/MyBp84Z0p9nUcMimVMnY/y5F4AGWJ6syeuoB7ebKM/useSearch.js", "ssg:https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js", "ssg:https://framerusercontent.com/modules/Gzef0nFihI9m9vZG45th/lIUxbZcreiDm2GzUkt3y/useCallbackOnMouseMove.js", "ssg:https://framerusercontent.com/modules/eAnjm75CdfYT1Zz4BIaz/7KDSfnnyD1T3Ap75L4m8/scrollIntoView.js", "ssg:https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js", "ssg:https://framerusercontent.com/modules/hqEf5wXaAewP8VPuaZ98/5A0QGVeEr2cwheQpIuEG/useViewportSizeState.js", "ssg:https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js", "ssg:https://framerusercontent.com/modules/alVrcUECLNzJY8s4n0d3/CbbETGTz6CQMQQplfT97/KnM8kuxtd.js", "ssg:https://framerusercontent.com/modules/9ugvUYNSJErBzdyXfxaC/CFe9GuR4sTcl7UDLby50/NW90LBAkI.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";export function SearchIcon(props){return /*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:props.width,height:props.height,style:{...props.style,color:props.color},children:/*#__PURE__*/ _jsx(\"path\",{d:\"M232.49,215.51,185,168a92.12,92.12,0,1,0-17,17l47.53,47.54a12,12,0,0,0,17-17ZM44,112a68,68,0,1,1,68,68A68.07,68.07,0,0,1,44,112Z\",fill:\"currentColor\"})});}export function ClearIcon(props){return /*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",...props,children:[/*#__PURE__*/ _jsx(\"rect\",{width:\"256\",height:\"256\",fill:\"none\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm37.66,130.34a8,8,0,0,1-11.32,11.32L128,139.31l-26.34,26.35a8,8,0,0,1-11.32-11.32L116.69,128,90.34,101.66a8,8,0,0,1,11.32-11.32L128,116.69l26.34-26.35a8,8,0,0,1,11.32,11.32L139.31,128Z\",fill:\"currentColor\"})]});}export function SpinnerIcon(props){const borderWidth=3;return /*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\",...props.style},children:[/*#__PURE__*/ _jsx(motion.div,{animate:{rotate:360},transition:{ease:\"linear\",duration:1,repeat:Infinity},style:{borderRadius:100,backgroundImage:`conic-gradient(from 270deg, transparent 0%, ${props.color} 100%)`,width:\"100%\",height:\"100%\"}}),/*#__PURE__*/ _jsx(\"div\",{style:{backgroundColor:props.backgroundColor,borderRadius:100,position:\"absolute\",top:borderWidth,left:borderWidth,bottom:borderWidth,right:borderWidth}})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"ClearIcon\":{\"type\":\"reactComponent\",\"name\":\"ClearIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"SpinnerIcon\":{\"type\":\"reactComponent\",\"name\":\"SpinnerIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchIcon\":{\"type\":\"reactComponent\",\"name\":\"SearchIcon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Icons.map", "export function Storage(name) {\n    this.ready = new Promise((resolve, reject)=>{\n        var request = window.indexedDB.open(location.origin);\n        request.onupgradeneeded = (e)=>{\n            this.db = e.target[\"result\"];\n            this.db.createObjectStore(\"store\");\n        };\n        request.onsuccess = (e)=>{\n            this.db = e.target[\"result\"];\n            resolve();\n        };\n        request.onerror = (e)=>{\n            this.db = e.target[\"result\"];\n            reject(e);\n        };\n    });\n}\nStorage.prototype.get = function(key) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().get(key);\n            request.onsuccess = (e)=>resolve(e.target.result)\n            ;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.getStore = function() {\n    return this.db.transaction([\n        \"store\"\n    ], \"readwrite\").objectStore(\"store\");\n};\nStorage.prototype.set = function(key, value) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().put(value, key);\n            request.onsuccess = resolve;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.delete = function(key, value) {\n    window.indexedDB.deleteDatabase(location.origin);\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"Storage\":{\"type\":\"function\"}}}", "// @ts-ignore\nimport{Storage}from\"https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js\";export const hashCode=s=>s.split(\"\").reduce((a,b)=>{a=(a<<5)-a+b.charCodeAt(0);return a&a;},0);export function corsProxy(url){return`https://cors-anywhere.herokuapp.com/${url}`;}export async function cachedResponse(url,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.get(cacheKey);if(data){return data;}else{var req=new XMLHttpRequest;req.open(\"GET\",url,true);req.responseType=\"blob\";return new Promise((resolve,reject)=>{req.onload=async function(){if(this.status===200){await cache.set(url,this.response);resolve(this.response);}else{reject(new Error(`Response status ${this.status} ${this.statusText}`));}};req.onerror=function(error){reject(error);};req.send();});}}export async function setCachedData(url,dataToCache,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.set(cacheKey,dataToCache);}export async function checkForCachedData(url,cache=new Storage(\"cache\")){const cacheKey=url;const data=await cache.get(cacheKey);if(data){return data;}else{return null;}}\nexport const __FramerMetadata__ = {\"exports\":{\"hashCode\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"setCachedData\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"checkForCachedData\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"corsProxy\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"cachedResponse\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cache.map", "import{checkForCachedData,setCachedData}from\"https://framer.com/m/cache-YMiL.js@b9aplVZjN51x28yfNK16\";const VERSION=1;const defaultLocaleId=\"default\";export function isDefaultLocaleId(localeId){return!localeId||localeId===\"default\";}const INDEX_KEY=\"searchIndexCache\";function getIndexKey(localeId){if(isDefaultLocaleId(localeId))return INDEX_KEY;return`${INDEX_KEY}-${localeId}`;}const METADATA_KEY=\"searchCacheMetadata\";function getMetadataKey(localeId){if(isDefaultLocaleId(localeId))return METADATA_KEY;return`${METADATA_KEY}-${localeId}`;}export async function getCachedIndex(localeId){// A check here for metadata can be added later if we need to\n// migrate or expire the index. Though most likely, any version change\n// should result in deleting the cache and starting again.\nconst indexKey=getIndexKey(localeId);const cachedIndex=await checkForCachedData(indexKey);if(cachedIndex){return cachedIndex;}}export function setCachedIndex(localeId,index){const indexKey=getIndexKey(localeId);setCachedData(indexKey,index);const metadata={version:VERSION,timestamp:Date.now()};const metadataKey=getMetadataKey(localeId);setCachedData(metadataKey,metadata);}\nexport const __FramerMetadata__ = {\"exports\":{\"getCachedIndex\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"setCachedIndex\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isDefaultLocaleId\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cachedIndex.map", "// Fake example data used for when the search component is in preview mode.\n// Note that the `url` value is used as a key in React, so it needs to be unique.\nexport const fakeResults={\"/\":{version:1,title:\"Example Search Result\",description:\"Description of search result.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/\",codeblock:[]},\"/example-1\":{version:1,title:\"Publish your Site to Search\",description:\"Try Site Search to instantly search your Framer site content.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/1/\",codeblock:[]},\"/example-2\":{version:1,title:\"Customise your Site Search\",description:\"Personalize everything from corner radius, to icon weight.\",keywords:\"\",h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],p:[],url:\"/example-url/2/\",codeblock:[]}};\nexport const __FramerMetadata__ = {\"exports\":{\"fakeResults\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fakeResults.map", "// This file is based on the Levenshtein algorithm. Originally from Koen but maybe he\n// got it from somewhere else.\nconst peq=new Uint32Array(65536);const myers_32=(a,b)=>{const n=a.length;const m=b.length;const lst=1<<n-1;let pv=-1;let mv=0;let sc=n;let i=n;while(i--){peq[a.charCodeAt(i)]|=1<<i;}for(i=0;i<m;i++){let eq=peq[b.charCodeAt(i)];const xv=eq|mv;eq|=(eq&pv)+pv^pv;mv|=~(eq|pv);pv&=eq;if(mv&lst){sc++;}if(pv&lst){sc--;}mv=mv<<1|1;pv=pv<<1|~(xv|mv);mv&=xv;}i=n;while(i--){peq[a.charCodeAt(i)]=0;}return sc;};const myers_x=(b,a)=>{const n=a.length;const m=b.length;const mhc=[];const phc=[];const hsize=Math.ceil(n/32);const vsize=Math.ceil(m/32);for(let i=0;i<hsize;i++){phc[i]=-1;mhc[i]=0;}let j=0;for(;j<vsize-1;j++){let mv=0;let pv=-1;const start=j*32;const vlen=Math.min(32,m)+start;for(let k=start;k<vlen;k++){peq[b.charCodeAt(k)]|=1<<k;}for(let i1=0;i1<n;i1++){const eq=peq[a.charCodeAt(i1)];const pb=phc[i1/32|0]>>>i1&1;const mb=mhc[i1/32|0]>>>i1&1;const xv=eq|mv;const xh=((eq|mb)&pv)+pv^pv|eq|mb;let ph=mv|~(xh|pv);let mh=pv&xh;if(ph>>>31^pb){phc[i1/32|0]^=1<<i1;}if(mh>>>31^mb){mhc[i1/32|0]^=1<<i1;}ph=ph<<1|pb;mh=mh<<1|mb;pv=mh|~(xv|ph);mv=ph&xv;}for(let k1=start;k1<vlen;k1++){peq[b.charCodeAt(k1)]=0;}}let mv1=0;let pv1=-1;const start1=j*32;const vlen1=Math.min(32,m-start1)+start1;for(let k2=start1;k2<vlen1;k2++){peq[b.charCodeAt(k2)]|=1<<k2;}let score=m;for(let i2=0;i2<n;i2++){const eq1=peq[a.charCodeAt(i2)];const pb1=phc[i2/32|0]>>>i2&1;const mb1=mhc[i2/32|0]>>>i2&1;const xv1=eq1|mv1;const xh1=((eq1|mb1)&pv1)+pv1^pv1|eq1|mb1;let ph1=mv1|~(xh1|pv1);let mh1=pv1&xh1;score+=ph1>>>m-1&1;score-=mh1>>>m-1&1;if(ph1>>>31^pb1){phc[i2/32|0]^=1<<i2;}if(mh1>>>31^mb1){mhc[i2/32|0]^=1<<i2;}ph1=ph1<<1|pb1;mh1=mh1<<1|mb1;pv1=mh1|~(xv1|ph1);mv1=ph1&xv1;}for(let k3=start1;k3<vlen1;k3++){peq[b.charCodeAt(k3)]=0;}return score;};const distance=(a,b)=>{if(a.length<b.length){const tmp=b;b=a;a=tmp;}if(b.length===0){return a.length;}if(a.length<=32){return myers_32(a,b);}return myers_x(a,b);};const closest=(str,arr)=>{let min_distance=Infinity;let min_index=0;for(let i=0;i<arr.length;i++){const dist=distance(str,arr[i]);if(dist<min_distance){min_distance=dist;min_index=i;}}return arr[min_index];};export{closest,distance};\nexport const __FramerMetadata__ = {\"exports\":{\"closest\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"distance\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fuzzySearch.map", "export const localStorageDebugFlag=typeof window!==\"undefined\"&&window.localStorage.getItem(\"__framerDebugSearch\")===\"true\";const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]\\d*|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}export function clampText(text,maxLength){const textLength=text.length;if(textLength<=maxLength){return text;}const slicedText=text.slice(0,maxLength);if(textLength>maxLength){return slicedText+\"\u2026\";}return slicedText;}export function isEmptyObject(object){return Object.keys(object).length===0;}export function createLogger(showOutput){function log(...data){console.log(Date.now(),...data);}function time(label){console.time(label);}function timeEnd(label){console.timeEnd(label);}function noop(){}if(!showOutput){return{log:noop,time:noop,timeEnd:noop};}return{log,time,timeEnd};}export const DEFAULT_FONT_FAMILY=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;export function getFontFamily(theme){var _theme_inputFont,_theme_titleFont,_theme_subtitleFont;if((_theme_inputFont=theme.inputFont)===null||_theme_inputFont===void 0?void 0:_theme_inputFont.fontFamily)return theme.inputFont.fontFamily;if((_theme_titleFont=theme.titleFont)===null||_theme_titleFont===void 0?void 0:_theme_titleFont.fontFamily)return theme.titleFont.fontFamily;if((_theme_subtitleFont=theme.subtitleFont)===null||_theme_subtitleFont===void 0?void 0:_theme_subtitleFont.fontFamily)return theme.subtitleFont.fontFamily;return DEFAULT_FONT_FAMILY;}export function animationKeyFromLayout(layout){return`${layout}Animation`;}export const safeDocument=typeof document!==\"undefined\"?document:null;export const safeWindow=typeof window!==\"undefined\"?window:null;const metaTagSelector='meta[name=\"framer-search-index\"]';export function getMetaTagContent(){const metaTag=safeDocument===null||safeDocument===void 0?void 0:safeDocument.querySelector(metaTagSelector);if(!metaTag)return undefined;const metaTagContent=metaTag.getAttribute(\"content\");return metaTagContent;}export const checkIfOverLimit=()=>{return getMetaTagContent()===\"limit-reached\";};export function stripLocaleSlugFromPath(url,localeSlug){if(!localeSlug)return url;const localeSlugWithSlash=`/${localeSlug}`;if(url.startsWith(localeSlugWithSlash)){return url.slice(localeSlugWithSlash.length);}}\nexport const __FramerMetadata__ = {\"exports\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"checkIfOverLimit\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createLogger\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeDocument\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"animationKeyFromLayout\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DEFAULT_FONT_FAMILY\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"safeWindow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"clampText\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"stripLocaleSlugFromPath\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getMetaTagContent\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFontFamily\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localStorageDebugFlag\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isEmptyObject\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "// @ts-ignore\nimport{useLocaleInfo}from\"framer\";import{clamp}from\"framer-motion\";import{useEffect,useMemo,useState}from\"react\";import{SearchResultTitleType}from\"https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js\";import{getCachedIndex,setCachedIndex,isDefaultLocaleId}from\"https://framerusercontent.com/modules/uU1mtMKXsrVAg8N5hW7w/PCK1x1QLNluYNoEoapwx/cachedIndex.js\";import{fakeResults}from\"https://framerusercontent.com/modules/K9JZRwJcE6slDAf8rUmh/mJ54py1Ecnn1RoC4N1m4/fakeResults.js\";import{distance}from\"https://framerusercontent.com/modules/TwRgbWuhHeB95MPifel4/YW8Hlm59FG3PajbrVsaR/fuzzySearch.js\";import{createLogger,localStorageDebugFlag,safeDocument,safeWindow,stripLocaleSlugFromPath}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";const{log,time,timeEnd}=createLogger(localStorageDebugFlag);function isValidUrl(url){try{new URL(url);return true;}catch(_error){return false;}}function splitWords(text){try{// Regex lookbehind is used to ignore ampersands when splitting\n// words. For example \"H&M\" will not be split and is considered as\n// one word, but \"H & M\" will be split.\n// However, some browsers (like Safari iOS 15) don't support\n// lookbehind and will crash. When it's not supported, fallback to\n// a safer regex that always splits ampersands.\nreturn text.split(RegExp(\"[\\\\s.,;!?\\\\p{P}\\\\p{Z}]+(?<!\\\\p{L}&)(?!&\\\\p{L})\",\"u\"));}catch{log(\"Falling back to regex without lookbehind\");return text.split(RegExp(\"[\\\\s.,;!?\\\\p{P}\\\\p{Z}]+\",\"u\"));}}function getUniqueWords(str){const words=splitWords(str).filter(word=>word.trim()&&word.length>0);return new Set(words);}/**\n * Replace accented characters with equivilant non-accented versions and\n * make everything lowercase.\n */function getNormalizedString(text){if(Array.isArray(text)){return text.map(getNormalizedString);}return text.normalize(\"NFD\")// From: https://stackoverflow.com/a/37511463\n.replace(/[\\u0300-\\u036f]/g,\"\").toLowerCase();}function getNormalizedItem(item){const normalizedItem={};for(const[key,value]of Object.entries(item)){if(typeof value===\"string\"){normalizedItem[key]=getNormalizedString(value);continue;}if(Array.isArray(value)){normalizedItem[key]=getNormalizedString(value);continue;}normalizedItem[key]=value;}return normalizedItem;}function getMatchRange(currentRange,start,end){const result={...currentRange};if(start<result.start){result.start=start;}if(end>result.end){result.end=end;}return result;}/**\n * Score index item based on the contents of it's fields such as title, description, headings etc.\n *\n * Note that this does not normalize the item or query. Normalization is expected to happen\n * before passing the data into this.\n */function getScoreForSearchIndexItem(item,query,words,fullQuery){let score=0;const match={title:{start:Infinity,end:0},description:{start:Infinity,end:0}};const urlWords=getUniqueWords(item.url);// Match query based on words in the URL so that random strings inside\n// other strings are not matched.\nif(urlWords.has(query)){score+=10;}// Really boost single word queries that match single word URLs.\nif(words.size===1&&urlWords.size===1&&urlWords.values().next().value===query){score+=score*5;}// Score shorter URLs higher so `/pricing` is before `/lala/pricing`.\nif(score>0){const splitLength=item.url.split(\"/\").length;score+=clamp(10-splitLength,0,splitLength);}const titleWords=getUniqueWords(item.title);// Prefer full word matches in the title.\nif(titleWords.has(query)){score+=10;}const titleIndex=item.title.indexOf(query);if(titleIndex!==-1){score+=10;// TODO: Matches are currently not used, but they can be used in the\n// future to add text highlighting.\nmatch.title=getMatchRange(match.title,titleIndex,titleIndex+query.length);}// If the full query is close to being the heading, score this highly as\n// the user is most likely looking for that exact title.\nif(distance(item.title,fullQuery)<=2){score+=score*10;}// Fuzzy match full words in the title.\nfor(const titleWord of titleWords){const distanceScore=distance(query,titleWord);// Small distance score helps with small typos.\nif(distanceScore<=2){score+=10;}}const headings=[...item.h1,...item.h2,...item.h3,...item.h4,...item.h5,...item.h6];for(const heading of headings){const headingWords=getUniqueWords(heading);// If the full query is close to being the heading, score this highly as\n// the user is most likely looking for that exact title.\nif(distance(heading,fullQuery)<=2){score+=score*10;}// Bias headings that start with the query as this helps when\n// you know the title you are searching for.\nif(heading.startsWith(query)){score+=10;}if(headingWords.has(query)){score+=10;}if(heading.includes(query)){score+=1;}// Fuzzy match full words in headings.\nfor(const headingWord of headingWords){const distanceScore=distance(query,headingWord);if(distanceScore<=2){score+=1;}}}const descriptionIndex=item.description.indexOf(query);if(descriptionIndex!==-1){score+=10;match.description=getMatchRange(match.description,descriptionIndex,descriptionIndex+query.length);}for(const p of item.p){if(p.includes(query)){score+=.5;}}for(const codeblock of item.codeblock){// If the full query is close to being the codeblock, score this highly as\n// the user is most likely looking for that exact code.\nif(distance(codeblock,fullQuery)<=2){score*=10;}if(codeblock.includes(fullQuery)){score+=10;}if(codeblock.includes(query)){score+=.5;}}return{score,match};}function getSearchIndexItemScore(item,query){const normalizedItem=getNormalizedItem(item);const normalizedQuery=getNormalizedString(query);const queryWords=getUniqueWords(normalizedQuery);let total=0;for(const queryWord of queryWords){const{score}=getScoreForSearchIndexItem(normalizedItem,queryWord,queryWords,normalizedQuery);total+=score;}return total;}function useRawSearch(index,query,settings){const results=useMemo(()=>{if(!query||!index){return[];}const path=safeWindow===null||safeWindow===void 0?void 0:safeWindow.location.pathname;time(\"query\");// Filter the results.\nconst results=Object.values(index).map(item=>{const score=getSearchIndexItemScore(item,query);const heading=item.h1.length&&item.h1[0];const title=(settings===null||settings===void 0?void 0:settings.titleType)===SearchResultTitleType.Title?item.title:heading?heading:item.title;// Convert index item to result item.\nconst result={url:item.url,title,description:item.description,body:[...item.p,item.codeblock].join(\" \"),score};return result;}).filter(item=>item.score>settings.minimumScore||0).filter(item=>{if(!path)return true;return item.url!==path;}).sort((itemA,itemB)=>itemB.score-itemA.score);timeEnd(\"query\");return results;},[index,query]);return results;}function getIndexedScopedToUrl(index,rawUrlScope,localeSlug){const scopedIndex={};const baseScopeUrlHasVariable=rawUrlScope.includes(\":\");const urlUpToPathVariable=rawUrlScope.split(\":\")[0];const urlScope=urlUpToPathVariable.length>1?urlUpToPathVariable:\"\";for(const url in index){const strippedURL=stripLocaleSlugFromPath(url,localeSlug);if(!strippedURL.startsWith(urlScope)){continue;}if(baseScopeUrlHasVariable&&url.length<=urlScope.length){continue;}scopedIndex[url]=index[url];}return scopedIndex;}export function useSearch(query,settings){const[searchIndex,_setSearchIndex]=useState({});const[status,setStatus]=useState(\"loading\");const results=useRawSearch(searchIndex,query,settings);const{activeLocale}=useLocaleInfo();const localeId=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id;// Seperate setter function so that the URL scope is always applied\n// to indexes loaded from either the cache or network.\nfunction setSearchIndex(index,options={ignoreScope:false}){let scopedIndex=index;if(settings.urlScope&&!options.ignoreScope){scopedIndex=getIndexedScopedToUrl(index,settings.urlScope,activeLocale===null||activeLocale===void 0?void 0:activeLocale.slug);log(\"Using URL scope\",settings.urlScope);}_setSearchIndex(scopedIndex);}useEffect(()=>{async function loadSearchIndex(){setStatus(\"loading\");const metaTag=safeDocument===null||safeDocument===void 0?void 0:safeDocument.querySelector('meta[name=\"framer-search-index\"]');if(!metaTag){setStatus(\"no-meta-tag-found\");setSearchIndex(fakeResults,{ignoreScope:true});log(\"No meta tag found\");return;}const cachedIndex=await getCachedIndex(localeId);const metaTagContent=metaTag.getAttribute(\"content\");const isOverLimit=metaTagContent===\"limit-reached\";if(isOverLimit){log(\"Page limit for plan exceeded\");}// If a cached index exists, use the cached version until latest one\n// from the network loads.\nif(cachedIndex&&!isOverLimit){setSearchIndex(cachedIndex);setStatus(\"loading-with-cache\");log(\"Using cached index\");}// Return early and do not make a fetch request if the URL is not valid.\nif(!metaTagContent||!isValidUrl(metaTagContent)){log(\"Meta tag exists but URL is not valid yet\");// If there is no cached index, show the pending index message.\n// Otherwise use the cache to as the index to search.\nif(!cachedIndex){setStatus(\"pending-index-generation\");log(\"No cache to use, page reload required to check for meta tag\");}else{log(\"Continue using cache\");}return;}const searchIndexURL=getSearchIndexURL(metaTagContent,localeId);const response=await fetch(searchIndexURL);if(!response.ok){throw new Error(response.statusText);}const downloadedIndex=await response.json();setSearchIndex(downloadedIndex);setCachedIndex(localeId,downloadedIndex);setStatus(\"success\");log(\"Using downloaded index\");}loadSearchIndex().catch(error=>{// TODO: Check for error type here. If it's a network error,\n// we could do a few retries.\nsetStatus(\"error\");log(\"Failed to load search index\",error);});},[localeId]);log({status,results});return{results,status};}function getSearchIndexURL(baseURL,localeId){if(isDefaultLocaleId(localeId))return baseURL;return baseURL.replace(\".json\",`-${localeId}.json`);}\nexport const __FramerMetadata__ = {\"exports\":{\"useSearch\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchIndex\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useSearch.map", "export var Browser;(function(Browser){var isTouch=Browser.isTouch=()=>\"ontouchstart\"in window||navigator.maxTouchPoints>0;var isChrome=Browser.isChrome=()=>navigator.userAgent.toLowerCase().includes(\"chrome/\");var isWebKit=Browser.isWebKit=()=>navigator.userAgent.toLowerCase().includes(\"applewebkit/\");var isSafari=Browser.isSafari=()=>isWebKit()&&!isChrome();var isSafariDesktop=Browser.isSafariDesktop=()=>isSafari()&&!isTouch();var isWindows=Browser.isWindows=()=>/Win/.test(navigator.platform);var isMacOS=Browser.isMacOS=()=>/Mac/.test(navigator.platform);})(Browser||(Browser={}));\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./browser.map", "// From: @framerjs/fresco/src/components/utils/useCallbackOnMouseMove.ts\nimport{useRef,useCallback}from\"react\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";/**\n * Webkit fires mousemove events if the pointer's coordination changes relative\n * to its container (e.g. if the container scrolls), or when a modifier key is\n * pressed, mousemove would fire even if the cursor did not actually move.\n * This helper compares the cursor position between mouse events, and fire the\n * callback only when its position changes.\n */ export const useCallbackOnMouseMove=(callback,mousePositionRef)=>{const prevPositionRef=useRef(null);return useCallback(event=>{if(!Browser.isSafari())return callback(event);const ref=mousePositionRef?mousePositionRef:prevPositionRef;const{clientX,clientY}=event;const prevCursorPosition=ref.current;ref.current={x:clientX,y:clientY};// Ignore mouse moves unless we have a position. Else it might be an\n// element that appears behind the mouse without the mouse moving.\nif(!prevCursorPosition){return;}if(prevCursorPosition.x!==clientX||prevCursorPosition.y!==clientY){return callback(event);}},[mousePositionRef,callback]);};\nexport const __FramerMetadata__ = {\"exports\":{\"useCallbackOnMouseMove\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Point\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useCallbackOnMouseMove.map", "// Safari does not support `element.scrollIntoView({ block: \"nearest\" })`, so this\n// is a workaround for that.\nexport function scrollIntoView(targetElement,scrollElement,/** Additional spacing to add from the top or bottom of the scroll element viewport. */ {offsetTop,offsetBottom}){const targetElementBounds=targetElement.getBoundingClientRect();const scrollElementBounds=scrollElement.getBoundingClientRect();if(targetElementBounds.top<scrollElementBounds.top){const difference=scrollElementBounds.top-targetElementBounds.top;scrollElement.scrollTop=scrollElement.scrollTop-difference-offsetTop;}else if(targetElementBounds.bottom>scrollElementBounds.bottom){const topAligned=scrollElementBounds.top-targetElementBounds.top;const minOffset=scrollElement.scrollTop-topAligned-offsetTop;const bottomAligned=targetElementBounds.bottom-scrollElementBounds.bottom;const offset=scrollElement.scrollTop+bottomAligned+offsetBottom;scrollElement.scrollTop=Math.min(minOffset,offset);}}\nexport const __FramerMetadata__ = {\"exports\":{\"scrollIntoView\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./scrollIntoView.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useSearch}from\"https://framerusercontent.com/modules/MyBp84Z0p9nUcMimVMnY/y5F4AGWJ6syeuoB7ebKM/useSearch.js\";import React,{useEffect,useState,useMemo,forwardRef,useRef,useDeferredValue,useLayoutEffect,useCallback,useImperativeHandle}from\"react\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";import{motion,clamp,useAnimate}from\"framer-motion\";import{SearchIcon,ClearIcon,SpinnerIcon}from\"https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js\";import{clampText,getFontFamily,localStorageDebugFlag,animationKeyFromLayout,stripLocaleSlugFromPath}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";import{useCallbackOnMouseMove}from\"https://framerusercontent.com/modules/Gzef0nFihI9m9vZG45th/lIUxbZcreiDm2GzUkt3y/useCallbackOnMouseMove.js\";import{scrollIntoView}from\"https://framerusercontent.com/modules/eAnjm75CdfYT1Zz4BIaz/7KDSfnnyD1T3Ap75L4m8/scrollIntoView.js\";import{// @ts-expect-error Internal API\nuseLocaleInfo,useRouter,inferInitialRouteFromPath}from\"framer\";const MAX_DESCRIPTION_LENGTH=120;const MODAL_MAX_HEIGHT=496;const VERTICAL_SPACING_MULTIPLIER=.6;function ClearButton({theme,type,onClick,text}){const shouldDisplayIcon=type===\"icon\";const iconOrText=shouldDisplayIcon?/*#__PURE__*/_jsx(ClearIcon,{style:{color:theme.inputIconColor,width:theme.inputIconSize,height:theme.inputIconSize}}):text;return /*#__PURE__*/_jsx(\"div\",{style:{flexShrink:0,fontSize:theme&&theme.titleFont&&theme.titleFont.fontSize?theme.titleFont.fontSize:15},children:/*#__PURE__*/_jsx(\"button\",{className:\"__framer-search-clear-button\",onClick:onClick,style:{fontFamily:\"inherit\",border:\"none\",background:\"none\",cursor:\"pointer\",display:\"flex\",textTransform:\"uppercase\",color:theme.inputIconColor,fontSize:\"0.75em\",padding:0},children:iconOrText})});}function Divider({theme,type}){const styles={background:theme.foregroundColor,height:1,flexShrink:0,opacity:.05};if(type===\"contained\"&&theme){styles.marginLeft=theme.horizontalSpacing;styles.marginRight=theme.horizontalSpacing;}return /*#__PURE__*/_jsx(\"div\",{style:styles});}export const Input=/*#__PURE__*/forwardRef(function Input(props,ref){const{value=\"\",status,autofocus,theme,placeholder,iconType,clearButtonType,onChange}=props;const[inputValue,setInputValue]=useState(value);const[isFocused,setIsFocused]=useState(false);const inputRef=useRef();useImperativeHandle(ref,()=>inputRef.current);React.useLayoutEffect(()=>{// Runs on unmount, fixes a bug in Safari that scrolls to the bottom\n// of the page when the input unmounts.\nreturn()=>{const inputElement=inputRef.current;if(!inputElement||inputElement!==document.activeElement)return;inputElement.blur();};},[]);const handleInputClick=()=>{if(inputRef.current){inputRef.current.focus();}};const handleClearClick=()=>{setInputValue(\"\");};useEffect(()=>{onChange(inputValue);},[inputValue]);const hasInputText=inputValue.length>0;const showClearButton=inputValue.length>0&&clearButtonType&&clearButtonType!==\"none\";const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);const searchIcon=iconType===\"custom\"&&theme.inputIconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon alongside the Site Search input\",src:theme.inputIconImage.src,width:theme.inputIconSize,height:theme.inputIconSize}):/*#__PURE__*/_jsx(SearchIcon,{color:theme.inputIconColor,width:theme.inputIconSize,height:theme.inputIconSize});return /*#__PURE__*/_jsxs(\"div\",{role:\"search\",style:{...inputContainerStyle,fontFamily:getFontFamily(theme),paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,gap:12,paddingTop:verticalSpacing,paddingBottom:verticalSpacing,touchAction:\"none\"},onClick:handleInputClick,children:[/*#__PURE__*/_jsx(\"div\",{style:{flexShrink:0,display:\"flex\"},children:status===\"loading\"&&inputValue?/*#__PURE__*/_jsx(SpinnerIcon,{color:theme.inputIconColor,backgroundColor:theme.backgroundColor,style:{height:theme&&theme.inputIconSize,width:theme&&theme.inputIconSize}}):searchIcon}),/*#__PURE__*/_jsx(\"input\",{ref:inputRef,spellCheck:false,autoFocus:autofocus,style:{...inputStyle,WebkitTapHighlightColor:\"rgba(0,0,0,0)\",color:theme.foregroundColor,lineHeight:\"2em\",verticalAlign:\"baseline\",...theme.titleFont,...theme.inputFont,fontSize:theme.inputFontSize,// @ts-ignore\n\"--framer-search-placeholder-color\":theme.placeholderColor},onFocus:()=>{const scrollOffset=document.documentElement.scrollTop;document.documentElement.scrollTop=scrollOffset;},placeholder:placeholder,value:inputValue,onChange:()=>setInputValue(inputRef.current.value)}),showClearButton&&/*#__PURE__*/_jsx(ClearButton,{theme:theme,type:props.clearButtonType,text:props.clearButtonText,onClick:handleClearClick})]});});const inputContainerStyle={display:\"inline-flex\",alignItems:\"center\",flexShrink:0};const inputStyle={outline:\"none\",border:\"none\",background:\"transparent\",fontWeight:500,height:\"2em\",padding:0,width:\"100%\"};export const ResultRow=/*#__PURE__*/React.memo(/*#__PURE__*/React.forwardRef(function ResultRow(props,ref){const{index,result,prevMousePositionRef,type=\"contained\",subtitleType=\"path\",selected=false,theme,localeSlug,style,onMouseMove,onPointerDown,onNavigateTo}=props;const{url,title,score}=result;const urlPath=useMemo(()=>{return stripLocaleSlugFromPath(url,localeSlug);},[url,localeSlug]);const handleMouseMove=useCallbackOnMouseMove(event=>onMouseMove(event,index),prevMousePositionRef);const isContained=type===\"contained\";const borderRadius=isContained?clamp(0,Infinity,theme.borderRadius-theme.spacing):0;const subtitleText=subtitleType===\"path\"?urlPath:clampText(result.description,MAX_DESCRIPTION_LENGTH);const handleClick=event=>{event.preventDefault();onNavigateTo(result.url);};const focusTrap=event=>{event.preventDefault();};return /*#__PURE__*/_jsx(\"a\",{ref:ref,style:{textDecoration:\"none\"},href:result.url,onClick:handleClick,onMouseMove:handleMouseMove,onMouseDown:focusTrap,onPointerDown:event=>onPointerDown(event,index),children:/*#__PURE__*/_jsxs(\"li\",{style:{...resultContainer,...style,paddingTop:isContained?12:16,paddingBottom:isContained?12:16,color:theme.foregroundColor,position:\"relative\",paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing},children:[/*#__PURE__*/_jsx(\"div\",{style:{backgroundColor:theme.foregroundColor,position:\"absolute\",opacity:selected?.06:0,borderRadius,left:theme&&isContained?theme.spacing:0,right:theme&&isContained?theme.spacing:0,top:0,bottom:0}}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",overflow:\"hidden\",gap:4},children:[/*#__PURE__*/_jsx(\"h3\",{style:{...resultTitle,...theme.titleFont,lineHeight:\"1.4em\"},children:title}),/*#__PURE__*/_jsxs(\"p\",{style:{margin:0,color:theme.subtitleColor,...theme.subtitleFont,whiteSpace:\"nowrap\",overflow:\"hidden\",textOverflow:\"ellipsis\",lineHeight:\"1.4em\"},children:[localStorageDebugFlag?score:\"\",\" \",subtitleText]})]})]},result.url)});}));/**\n * Flexible gap used inside a flexbox layout to push down the quick menu\n * by 20% of the screen height, but also allow it to collapse to zero if\n * there is not enough vertical room.\n */function QuickMenuSpacer({onClick}){return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",flexBasis:\"20vh\"},onClick:onClick});}const layoutContainerStyle={display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"flex-start\",gap:15,overflow:\"visible\"};function LayoutContainer({layoutType,theme,onKeyDown,onDismiss,children,modalOptions}){const layoutStyles=getLayoutBaseStyles(layoutType,theme);const style={...layoutContainerStyle,...layoutStyles,willChange:\"transform\",marginTop:layoutType===\"FixedTop\"?theme.offsetTop:0,height:layoutType===\"Sidebar\"?\"100%\":\"auto\",maxHeight:layoutType===\"QuickMenu\"?\"100%\":\"none\",justifyContent:layoutType===\"Sidebar\"?\"flex-end\":\"flex-start\",flexDirection:layoutType===\"Sidebar\"?\"column-reverse\":\"column\"};const innerStyle={...layoutContainerStyle,...layoutStyles,height:layoutType===\"Sidebar\"?\"100%\":\"auto\",maxHeight:layoutType===\"QuickMenu\"?\"100%\":\"none\",gap:layoutType===\"Sidebar\"?0:theme.gapBetweenStatusAndSearch,backgroundColor:layoutType===\"Sidebar\"?theme.backgroundColor:\"transparent\",justifyContent:layoutType===\"Sidebar\"?\"flex-end\":\"flex-start\",flexDirection:layoutType===\"Sidebar\"?\"column-reverse\":\"column\",originX:.5,originY:.5};function getContainerAnimation(){switch(layoutType){case\"FixedTop\":{const key=animationKeyFromLayout(\"FixedTop\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{y:-10,opacity:.2,transition:{duration:Browser.isTouch()?0:.15}};}break;}case\"QuickMenu\":{const key=animationKeyFromLayout(\"QuickMenu\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{scale:.95,opacity:0,y:0,x:0,rotate:0,transition:{type:\"spring\",stiffness:600,damping:40}};}break;}case\"Sidebar\":{const key=animationKeyFromLayout(\"Sidebar\");const prop=modalOptions?modalOptions[key]:undefined;if(prop){return prop;}else{return{x:-10,opacity:0,transition:{duration:.15}};}break;}}}const containerAnimation=getContainerAnimation();return /*#__PURE__*/_jsxs(\"div\",{style:style,onKeyDown:onKeyDown,onClick:event=>event.stopPropagation(),children:[layoutType===\"QuickMenu\"&&/*#__PURE__*/_jsx(QuickMenuSpacer,{onClick:onDismiss}),/*#__PURE__*/_jsx(motion.div,{initial:containerAnimation,animate:{opacity:1,scale:1,x:0,y:0,rotate:0},transition:containerAnimation?containerAnimation.transition:undefined,exit:{opacity:0,transition:{duration:0}},style:innerStyle,children:children})]});}function ModalContainer({layoutType,theme,children,heightIsStatic,heightTransition,heightDeps}){const style={// This `willChange` is required to avoid weird rendering issues where\n// parts of the search window won't redraw, which we observed in Safari 16.4.\nwillChange:\"transform\",backgroundColor:theme.backgroundColor,color:theme.foregroundColor,borderRadius:layoutType===\"QuickMenu\"?theme.borderRadius:0,width:\"100%\",display:\"flex\",flexDirection:\"column\",overflow:\"hidden\",boxShadow:layoutType!==\"Sidebar\"?theme.shadow:undefined,maxHeight:layoutType===\"QuickMenu\"?`min(${MODAL_MAX_HEIGHT}px, calc(100vh - 30px))`:undefined};// Opt-in Height Animations for the Search Quick Actions menu.\n// These are disabled by default, but can be enabled via props.\nconst[scope,animate]=useAnimate();useLayoutEffect(()=>{if(layoutType!==\"QuickMenu\"||heightIsStatic)return;const prevHeight=scope.current.offsetHeight;scope.current.style.height=\"auto\";const height=scope.current.offsetHeight;scope.current.style.height=prevHeight+\"px\";animate(scope.current,{height:[prevHeight,height]},heightTransition);},heightDeps);return /*#__PURE__*/_jsx(\"div\",{ref:scope,role:\"dialog\",className:layoutType===\"FixedTop\"?\"__framer-max-height-80dvh\":undefined,style:style,children:children});}const ScrollView=/*#__PURE__*/React.forwardRef(function ScrollView({theme,children},ref){const isTouch=Browser.isTouch();const[canScroll,setCanScroll]=React.useState(true);React.useEffect(()=>{if(!isTouch)return;const element=ref.current;if(!element)return;setCanScroll(element.scrollHeight>element.clientHeight);});return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{width:`calc(100% + ${theme.scrollBarWidth}px)`,overflowY:\"scroll\",overflowX:\"hidden\",overscrollBehavior:\"contain\",touchAction:canScroll?undefined:\"none\",// Make the list appear slightly under the divider\n// so that the divider is still visible when the first\n// item is selected.\nmarginTop:-1},children:children});});const statusStyle={backgroundColor:\"#B5B5B5\",color:\"#FFF\",boxShadow:\"0px 20px 40px 0px rgba(0, 0, 0, 0.25)\",fontFamily:\"inherit\",textAlign:\"center\",fontSize:13,padding:\"8px 0\"};function StatusMessage({status,layoutType,theme}){const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);const style={...statusStyle,userSelect:\"none\",fontFamily:getFontFamily(theme),paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,fontWeight:500,lineHeight:`calc(${theme.inputFontSize} * 2)`,paddingTop:verticalSpacing,paddingBottom:verticalSpacing,...theme.titleFont,zIndex:theme.zIndex+1,maxWidth:layoutType===\"FixedTop\"?\"none\":theme.width,width:layoutType===\"FixedTop\"?`calc(100% - ${verticalSpacing*2}px`:\"100%\",boxShadow:layoutType!==\"Sidebar\"&&statusStyle.boxShadow,borderRadius:layoutType!==\"Sidebar\"&&theme.borderRadius};// Show less text on fixed text to look nicer on mobile\nconst previewInfoText=layoutType===\"FixedTop\"?\"Preview Mode\":\"Preview Mode. Publish your Site to Search.\";if(status===\"no-meta-tag-found\"){return /*#__PURE__*/_jsx(\"div\",{style:style,children:previewInfoText});}if(status===\"pending-index-generation\"){return /*#__PURE__*/_jsx(\"div\",{style:style,children:\"Site is being indexed\"});}return null;}const resultTitle={textOverflow:\"ellipsis\",maxWidth:\"100%\",overflow:\"hidden\",fontWeight:500,whiteSpace:\"nowrap\",flex:1,margin:0};const resultContainer={padding:\"16px 20px\",listStyle:\"none\",fontWeight:500};const sidebarStyles={left:0,width:500};const fixedTopStyles={top:0,width:\"100%\"};const quickMenuStyles={width:500};function getLayoutBaseStyles(layoutOption,theme){switch(layoutOption){case\"Sidebar\":return{...sidebarStyles,width:theme.width};case\"FixedTop\":return fixedTopStyles;case\"QuickMenu\":return{...quickMenuStyles,width:theme.width};}}export var SearchInputClearButtonType;(function(SearchInputClearButtonType){SearchInputClearButtonType[\"Icon\"]=\"icon\";SearchInputClearButtonType[\"Text\"]=\"text\";SearchInputClearButtonType[\"None\"]=\"none\";})(SearchInputClearButtonType||(SearchInputClearButtonType={}));export var SearchInputDividerType;(function(SearchInputDividerType){SearchInputDividerType[\"None\"]=\"none\";SearchInputDividerType[\"FullWidth\"]=\"fullWidth\";SearchInputDividerType[\"Contained\"]=\"contained\";})(SearchInputDividerType||(SearchInputDividerType={}));export var SearchResultTitleType;(function(SearchResultTitleType){SearchResultTitleType[\"H1\"]=\"h1\";SearchResultTitleType[\"Title\"]=\"title\";})(SearchResultTitleType||(SearchResultTitleType={}));export var SearchResultSubtitleType;(function(SearchResultSubtitleType){SearchResultSubtitleType[\"Description\"]=\"description\";SearchResultSubtitleType[\"Path\"]=\"path\";})(SearchResultSubtitleType||(SearchResultSubtitleType={}));export var SearchResultItemType;(function(SearchResultItemType){SearchResultItemType[\"FullWidth\"]=\"fullWidth\";SearchResultItemType[\"Contained\"]=\"contained\";})(SearchResultItemType||(SearchResultItemType={}));export var SearchLayoutType;(function(SearchLayoutType){SearchLayoutType[\"Sidebar\"]=\"Sidebar\";SearchLayoutType[\"FixedTop\"]=\"FixedTop\";SearchLayoutType[\"QuickMenu\"]=\"QuickMenu\";})(SearchLayoutType||(SearchLayoutType={}));export var SearchEntryType;(function(SearchEntryType){SearchEntryType[\"Icon\"]=\"icon\";SearchEntryType[\"Text\"]=\"text\";})(SearchEntryType||(SearchEntryType={}));export var SearchIconType;(function(SearchIconType){SearchIconType[\"Default\"]=\"default\";SearchIconType[\"Custom\"]=\"custom\";})(SearchIconType||(SearchIconType={}));/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export function SearchModal(props){const{layoutType,theme,urlScope,inputOptions,backdropOptions,modalOptions,resultOptions,onDismiss}=props;const{activeLocale}=useLocaleInfo();const localeId=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id;const localeSlug=activeLocale===null||activeLocale===void 0?void 0:activeLocale.slug;const input=useRef();const selectedResultRow=useRef();const scrollView=useRef();const[selected,setSelected]=useState({index:0,scroll:true});const prevMousePositionRef=useRef(null);const[isKeyboardNavigationDisabled,setIsKeyboardNavigationDisabled]=useState(Browser.isTouch);const[query,setQuery]=useState(\"\");const deferredQuery=useDeferredValue(query);const{results,status}=useSearch(deferredQuery,{minimumScore:0,urlScope,titleType:resultOptions.titleType});const selectedResult=results[selected.index];const verticalSpacing=Math.floor(theme?theme.horizontalSpacing*VERTICAL_SPACING_MULTIPLIER:0);useEffect(()=>{// Reset the selection to the top if the query changes.\nsetSelected({index:0,scroll:true});},[deferredQuery]);const handleResultRowPointerDown=useCallback((event,index)=>{if(event.pointerType!==\"touch\")return;setIsKeyboardNavigationDisabled(true);setSelected({index,scroll:false});},[]);const handleResultRowMouseMove=useCallback((event,index)=>{setSelected(previousSelected=>{if(previousSelected.index===index){return previousSelected;}return{index,scroll:false};});},[]);const router=useRouter();const navigateTo=useCallback(async url=>{if(status===\"no-meta-tag-found\"){return;}try{var _router_getRoute,_route_page_preload,_route_page,_router_navigate;// Ideally, we would directly expose `routeId` in the search index so that\n// we don't need to infer it from the URL.\nconst{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,url);const route=(_router_getRoute=router.getRoute)===null||_router_getRoute===void 0?void 0:_router_getRoute.call(router,routeId);onDismiss();await (route===null||route===void 0?void 0:(_route_page=route.page)===null||_route_page===void 0?void 0:(_route_page_preload=_route_page.preload)===null||_route_page_preload===void 0?void 0:_route_page_preload.call(_route_page));(_router_navigate=router.navigate)===null||_router_navigate===void 0?void 0:_router_navigate.call(router,routeId,null,pathVariables,false);}catch(error){window.location.href=url;}},[status]);const handleKeyDown=event=>{const maxIndex=results.length-1;switch(event.code){case\"ArrowUp\":event.preventDefault();if(isKeyboardNavigationDisabled){setIsKeyboardNavigationDisabled(false);break;}setSelected(previousSelected=>({index:clamp(0,maxIndex,previousSelected.index-1),scroll:true}));break;case\"ArrowDown\":event.preventDefault();if(isKeyboardNavigationDisabled){setIsKeyboardNavigationDisabled(false);break;}setSelected(previousSelected=>({index:clamp(0,maxIndex,previousSelected.index+1),scroll:true}));break;case\"Escape\":break;case\"Enter\":if(selectedResult){navigateTo(selectedResult.url);}break;default:event.stopPropagation();}};const showNoResults=results.length===0&&deferredQuery.length>1&&status!==\"loading\";const showDivider=Boolean((deferredQuery.length>0&&results.length>0||showNoResults)&&status!==\"loading\"&&props.inputOptions&&props.inputOptions.dividerType!==\"none\");const isItemContained=Boolean(props.resultOptions&&props.resultOptions.itemType===\"contained\");const spacing=isItemContained?theme.spacing:10;const listPaddingTop=showDivider&&isItemContained?spacing+theme.gapBetweenResults*2:0;useEffect(()=>{if(!selected.scroll)return;const element=selectedResultRow.current;if(!element)return;scrollIntoView(element,scrollView.current,{offsetTop:showDivider&&isItemContained?listPaddingTop:0,offsetBottom:isItemContained?spacing:0});// `showDivider` and `isItemContained` are not dependencies because\n// they will be the latest values when `selected` changes. And including\n// them will cause unnecessary scrolling into view.\n},[selected]);return /*#__PURE__*/_jsxs(LayoutContainer,{layoutType:layoutType,modalOptions:modalOptions,theme:theme,onKeyDown:handleKeyDown,onDismiss:onDismiss,children:[/*#__PURE__*/_jsxs(ModalContainer,{layoutType:layoutType,theme:theme,heightIsStatic:modalOptions.heightIsStatic,heightTransition:modalOptions.heightTransition,heightDeps:[results.length,showNoResults],children:[/*#__PURE__*/_jsx(Input,{autofocus:true,ref:input,onChange:setQuery,value:query,theme:theme,status:status,iconType:inputOptions.iconOptions.iconType,placeholder:inputOptions.placeholderOptions.placeholderText,clearButtonType:inputOptions?inputOptions.clearButtonType:undefined,clearButtonText:inputOptions.clearButtonText}),showDivider&&/*#__PURE__*/_jsx(Divider,{theme:theme,type:inputOptions.dividerType}),/*#__PURE__*/_jsx(ScrollView,{ref:scrollView,theme:theme,children:/*#__PURE__*/_jsxs(\"ul\",{\"aria-live\":\"polite\",style:{display:\"flex\",flexDirection:\"column\",width:`calc(100% - ${theme.scrollBarWidth}px)`,padding:0,paddingTop:listPaddingTop,paddingBottom:results.length&&isItemContained?spacing:0,gap:theme.gapBetweenResults,margin:0},children:[results.map((result,index)=>{const isSelected=index===selected.index;return /*#__PURE__*/_jsx(ResultRow,{ref:isSelected?selectedResultRow:null,index:index,result:result,prevMousePositionRef:prevMousePositionRef,selected:!isKeyboardNavigationDisabled&&isSelected,type:props.resultOptions.itemType,subtitleType:props.resultOptions.subtitleOptions.subtitleType,theme:theme,localeSlug:localeSlug,onMouseMove:handleResultRowMouseMove,onPointerDown:handleResultRowPointerDown,onNavigateTo:navigateTo},result.url);}),showNoResults&&/*#__PURE__*/_jsx(\"li\",{style:{paddingTop:verticalSpacing-listPaddingTop,paddingBottom:verticalSpacing,lineHeight:\"2em\",paddingLeft:theme&&theme.horizontalSpacing,paddingRight:theme&&theme.horizontalSpacing,height:\"Sidebar\"?\"100%\":\"auto\"},children:/*#__PURE__*/_jsx(\"h3\",{style:{...resultTitle,textAlign:\"center\",lineHeight:`calc(${theme.inputFontSize} * 2)`,color:theme.subtitleColor,...theme.titleFont},children:\"No results\"})})]})})]}),/*#__PURE__*/_jsx(StatusMessage,{status:status,layoutType:layoutType,theme:theme})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"SearchIconType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchEntryType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchModal\":{\"type\":\"reactComponent\",\"name\":\"SearchModal\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"SearchTheme\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultTitleType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultSubtitleType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ResultRow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchInputDividerType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchLayoutType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchResultItemType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SearchInputClearButtonType\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{useEffect,useState}from\"react\";function getViewportSize(){if(typeof window===\"undefined\"){return{width:0,height:0};}return{width:window.innerWidth,height:window.innerHeight};}export function useViewportSizeState(getState){const[state,setState]=useState(()=>getState(getViewportSize()));useEffect(()=>{const handleWindowResize=()=>setState(getState(getViewportSize()));window.addEventListener(\"resize\",handleWindowResize);return()=>{window.removeEventListener(\"resize\",handleWindowResize);};},[]);return state;}\nexport const __FramerMetadata__ = {\"exports\":{\"useViewportSizeState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useViewportSizeState.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{createPortal}from\"react-dom\";import{useRef,useState,useEffect,forwardRef}from\"react\";import{AnimatePresence,motion}from\"framer-motion\";import{SearchIcon}from\"https://framerusercontent.com/modules/LV9trClbmNwd5PVj9l8y/L4rFqMGNzGSwRZpGTGF3/Icons.js\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{SearchModal,SearchResultItemType,SearchResultTitleType,SearchResultSubtitleType,SearchInputDividerType,SearchInputClearButtonType,SearchLayoutType,SearchIconType}from\"https://framerusercontent.com/modules/tV9haTHllpHHc9Fjue2H/Xy775u0FJg3K1GQc1Cd9/SearchModal.js\";import{useViewportSizeState}from\"https://framerusercontent.com/modules/hqEf5wXaAewP8VPuaZ98/5A0QGVeEr2cwheQpIuEG/useViewportSizeState.js\";import{titleCase,DEFAULT_FONT_FAMILY,isEmptyObject,animationKeyFromLayout,checkIfOverLimit}from\"https://framerusercontent.com/modules/MWsEnYfRnoOQq31DN4ql/C71JVnvNwV2CrPvApXBB/utils.js\";import{Browser}from\"https://framerusercontent.com/modules/PJVBcBLmDteTEAZh3J9Z/keXJyjyE9VnzUcDMayjg/browser.js\";var EntryPointOptions;// SITE SEARCH\n// By Anthony and Hunter\n(function(EntryPointOptions){EntryPointOptions[\"icon\"]=\"Icon\";EntryPointOptions[\"input\"]=\"Input\";})(EntryPointOptions||(EntryPointOptions={}));function buildShadow(shadowProperty,fallback=\"none\"){if(!shadowProperty)return fallback;const{x,y,blur,color,spread}=shadowProperty;return`${x}px ${y}px ${blur}px ${spread}px ${color}`;}const Overlay=/*#__PURE__*/forwardRef(function Overlay(props,ref){const{layoutType,theme,onDismiss}=props;useEffect(()=>{const handleKeyDown=event=>{if(event.code===\"Escape\"){event.stopPropagation();onDismiss();}};const handlePointerDown=event=>{if(event.pointerType!==\"touch\")return;const isWithinSearchHeader=Boolean(event.target instanceof Element&&event.target.closest(\"[role=search]\"));if(isWithinSearchHeader)return;if(document.activeElement instanceof HTMLInputElement){document.activeElement.blur();}};// Event listener added to window so that pressing escape key to dimiss\n// can be invoked from anywhere on the page.\nwindow.addEventListener(\"keydown\",handleKeyDown);window.addEventListener(\"pointerdown\",handlePointerDown,{capture:true});// Disable page scrolling when overlay is shown.\ndocument.body.classList.add(bodyOverflowHidden);return()=>{window.removeEventListener(\"keydown\",handleKeyDown);window.removeEventListener(\"pointerdown\",handlePointerDown,{capture:true});document.body.classList.remove(bodyOverflowHidden);};},[]);return /*#__PURE__*/createPortal(/*#__PURE__*/_jsxs(\"div\",{ref:ref,className:\"__framer-search-modal-container\",role:\"presentation\",style:{...backdropStyles,zIndex:props.backdropOptions.zIndex,justifyContent:layoutType===SearchLayoutType.Sidebar?\"flex-start\":\"center\"},onClick:onDismiss,children:[/*#__PURE__*/_jsx(motion.div,{role:\"presentation\",initial:{opacity:0},animate:{opacity:1},exit:{opacity:0,transition:{duration:0}},transition:theme.overlayTransition,style:{top:0,left:0,right:0,bottom:0,width:\"100%\",height:\"100%\",boxSizing:\"border-box\",position:\"absolute\",touchAction:\"none\",backgroundColor:props.backdropOptions.backgroundColor}}),/*#__PURE__*/_jsx(SearchModal,{urlScope:props.urlScope,layoutType:layoutType,inputOptions:props.inputOptions,resultOptions:props.resultOptions,modalOptions:props.modalOptions,backdropOptions:props.backdropOptions,theme:props.theme,onDismiss:onDismiss})]}),document.body);});const backdropStyles={width:\"100%\",boxSizing:\"border-box\",willChange:\"transform\",position:\"fixed\",display:\"flex\",alignItems:\"flex-start\",top:0,left:0,right:0,bottom:0};const containerStyle={height:\"100%\",display:\"flex\",borderRadius:10,cursor:\"inherit\",overflow:\"hidden\"};const bodyOverflowHidden=\"__framer-overflow-hidden\";/**\n *\n * SEARCH\n * By Anthony and Hunter\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 40\n * @framerIntrinsicHeight 40\n */const EntryPoint=withCSS(function EntryPoint(props){var _props_inputOptions_inputFont,_props_inputOptions,_props_resultOptions,_props_resultOptions_subtitleOptions,_props_inputOptions1;const overlay=useRef(null);const[isOpen,setIsOpen]=useState(false);const[isOverLimit,setIsOverLimit]=useState(false);const[isSafariTouchDevice,setIsSafariTouchDevice]=useState(false);const[isOnCanvas]=useState(()=>RenderTarget.current()===RenderTarget.canvas);useEffect(()=>{setIsOverLimit(checkIfOverLimit());setIsSafariTouchDevice(Browser.isSafari()&&Browser.isTouch());},[]);const baseInputFontSize=((_props_inputOptions=props.inputOptions)===null||_props_inputOptions===void 0?void 0:(_props_inputOptions_inputFont=_props_inputOptions.inputFont)===null||_props_inputOptions_inputFont===void 0?void 0:_props_inputOptions_inputFont.fontSize)?props.inputOptions.inputFont.fontSize:\"16px\";// The font size is set to a minimum of `16px` on Safari with touch screens\n// because otherwise Safari will zoom in slightly if the type size is smaller.\nconst inputFontSize=isSafariTouchDevice?`max(16px, ${baseInputFontSize})`:baseInputFontSize;const layoutType=useViewportSizeState(size=>{if(size.width<props.modalOptions.width+10){return SearchLayoutType.FixedTop;}// @ts-ignore \u2013 Fallback\nreturn props.modalOptions.layoutType||props.layoutType;});const theme={subtitleColor:props.resultOptions.subtitleOptions.subtitleColor,backgroundColor:props.modalOptions.backgroundColor,foregroundColor:props.resultOptions.titleColor,placeholderColor:props.inputOptions.placeholderOptions.placeholderColor,titleFont:((_props_resultOptions=props.resultOptions)===null||_props_resultOptions===void 0?void 0:_props_resultOptions.titleFont)&&!isEmptyObject(props.resultOptions.titleFont)?props.resultOptions.titleFont:{fontSize:14,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},subtitleFont:((_props_resultOptions_subtitleOptions=props.resultOptions.subtitleOptions)===null||_props_resultOptions_subtitleOptions===void 0?void 0:_props_resultOptions_subtitleOptions.subtitleFont)&&!isEmptyObject(props.resultOptions.subtitleOptions.subtitleFont)?props.resultOptions.subtitleOptions.subtitleFont:{fontSize:12,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},inputFont:((_props_inputOptions1=props.inputOptions)===null||_props_inputOptions1===void 0?void 0:_props_inputOptions1.inputFont)&&!isEmptyObject(props.inputOptions.inputFont)?props.inputOptions.inputFont:{fontSize:16,fontFamily:DEFAULT_FONT_FAMILY,fontWeight:500},// Keep separate so we can more easily override\ninputFontSize:inputFontSize,width:props.modalOptions.width,offsetTop:props.modalOptions.top,borderRadius:props.modalOptions.borderRadius,shadow:buildShadow(props.modalOptions.shadow),entryIconColor:props.iconColor,entryIconSize:props.iconSize,entryIconImage:props.iconImage,inputIconSize:props.inputOptions.iconOptions.iconSize,inputIconColor:props.inputOptions.iconOptions.iconColor,inputIconImage:props.inputOptions.iconOptions.iconImage,gapBetweenStatusAndSearch:16,gapBetweenResults:1,scrollBarWidth:20,margin:10,spacing:8,zIndex:props.backdropOptions.zIndex,horizontalSpacing:20,overlayTransition:props.backdropOptions.transition};const handleClick=event=>{// Both need to keep `autofocus` working on the search input.\nevent.preventDefault();event.stopPropagation();if(isOverLimit)return;setIsOpen(true);};return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyle,...props.style,pointerEvents:isOverLimit?\"none\":\"auto\",opacity:isOverLimit?.4:1},children:[/*#__PURE__*/_jsx(\"button\",{\"aria-label\":\"Search Icon\",style:{width:\"100%\",height:\"100%\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",background:\"none\",cursor:\"inherit\",color:\"inherit\",border:\"none\",outline:\"inherit\",padding:0},onClick:handleClick,children:props.iconType===SearchIconType.Custom&&theme.entryIconImage?/*#__PURE__*/_jsx(\"img\",{alt:\"icon entry point for Site Search\",src:theme.entryIconImage.src,width:theme.entryIconSize,height:theme.entryIconSize}):/*#__PURE__*/_jsx(SearchIcon,{color:theme.entryIconColor,width:theme.entryIconSize,height:theme.entryIconSize})}),/*#__PURE__*/_jsx(AnimatePresence,{children:isOpen&&!isOnCanvas&&/*#__PURE__*/_jsx(Overlay,{ref:overlay,layoutType:layoutType,urlScope:props.urlScope,inputOptions:props.inputOptions,resultOptions:props.resultOptions,backdropOptions:props.backdropOptions,modalOptions:props.modalOptions,theme:theme,onDismiss:()=>setIsOpen(false)})})]});},[// Prevent scrolling on iOS Safari when Input is focused.\n// From: https://gist.github.com/kiding/72721a0553fa93198ae2bb6eefaa3299\n`\n        @keyframes __framer-blink-input {\n            0% { opacity: 0; }\n            100% { opacity: 1; }\n        }\n\n        .__framer-search-modal-container input:focus {\n            animation: __framer-blink-input 0.01s;\n        }\n        `,// Allow styling of input placeholder\n`\n         .__framer-search-modal-container input::placeholder, \n         .__framer-search-modal-container input::-webkit-input-placeholder { \n            color: var(--framer-search-placeholder-color, #999999);\n            opacity: 1;\n        }\n        `,// Allow fallback to 100vh when dvh unit is not supported.\n`\n        .__framer-search-modal-container {\n            height: 100vh;\n            height: 100dvh;\n        }\n        .__framer-search-modal-container .__framer-max-height-80dvh {\n            max-height: 80vh;\n            max-height: 80dvh;\n        }\n        `,`\n        body.${bodyOverflowHidden} {\n            overflow: hidden;\n        }`,// Increase hit target\n`\n        button.__framer-search-clear-button {\n            position: relative;\n        }\n        button.__framer-search-clear-button::after {\n            content: \"\";\n            position: absolute;\n            top: -10px;\n            right: -10px;\n            bottom: -10px;\n            left: -10px;\n        }`]);export default EntryPoint;addPropertyControls(EntryPoint,{urlScope:{title:\"Scope\",// @ts-ignore - Internal\ntype:ControlType.PageScope},// entryType: {\n//     title: \"Type\",\n//     type: ControlType.Enum,\n//     options: Object.values(SearchEntryType),\n//     optionTitles: Object.values(SearchEntryType).map(titleCase),\n//     displaySegmentedControl: true,\n// },\niconType:{title:\"Icon\",type:ControlType.Enum,options:Object.values(SearchIconType),optionTitles:Object.values(SearchIconType).map(titleCase),displaySegmentedControl:true},iconColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\",hidden:props=>props.iconType===SearchIconType.Custom},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.iconType===SearchIconType.Default},iconSize:{title:\"Size\",type:ControlType.Number,displayStepper:true,defaultValue:24},inputOptions:{title:\"Input\",type:ControlType.Object,buttonTitle:\"Icon, Styles\",controls:{iconOptions:{title:\"Icon\",type:ControlType.Object,buttonTitle:\"Color, Size\",controls:{iconType:{title:\"Icon\",type:ControlType.Enum,options:Object.values(SearchIconType),optionTitles:Object.values(SearchIconType).map(titleCase),displaySegmentedControl:true},iconColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.45)\",hidden:({iconType})=>{return iconType===SearchIconType.Custom;}},iconImage:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:({iconType})=>iconType===SearchIconType.Default},iconSize:{title:\"Icon Size\",type:ControlType.Number,displayStepper:true,defaultValue:18,min:0,max:100}}},inputFont:{title:\"Font\",// @ts-ignore \u2013\u00A0Internal\ntype:ControlType.Font,displayFontSize:true},textColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\"},placeholderOptions:{title:\"Placeholder\",type:ControlType.Object,buttonTitle:\"Color, Text\",controls:{placeholderText:{title:\"Text\",type:ControlType.String,defaultValue:\"Search...\"},placeholderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.4)\"}}},dividerType:{title:\"Divider\",type:ControlType.Enum,options:Object.values(SearchInputDividerType),optionTitles:Object.keys(SearchInputDividerType).map(titleCase),defaultValue:SearchInputDividerType.FullWidth},clearButtonType:{title:\"Clear Type\",type:ControlType.Enum,options:Object.values(SearchInputClearButtonType),optionTitles:Object.keys(SearchInputClearButtonType).map(titleCase),defaultValue:SearchInputClearButtonType.Icon},clearButtonText:{title:\"Clear Text\",type:ControlType.String,defaultValue:\"Clear\",hidden:props=>props.clearButtonType!==SearchInputClearButtonType.Text}}},modalOptions:{title:\"Modal\",buttonTitle:\"Layout, Width\",type:ControlType.Object,controls:{layoutType:{title:\"Layout\",type:ControlType.Enum,options:Object.keys(SearchLayoutType),optionTitles:Object.values(SearchLayoutType).map(titleCase),defaultValue:SearchLayoutType.QuickMenu},width:{title:\"Width\",type:ControlType.Number,defaultValue:500,min:200,max:1e3,displayStepper:true,step:5,hidden:props=>props.layoutType===SearchLayoutType.FixedTop},top:{title:\"Top\",type:ControlType.Number,defaultValue:0,min:0,max:1e3,displayStepper:true,hidden:props=>props.layoutType!==SearchLayoutType.FixedTop},heightIsStatic:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Instant\",disabledTitle:\"Animate\",hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu},heightTransition:{title:\"Type\",type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:800,damping:60},hidden:({heightIsStatic,layoutType})=>layoutType!==SearchLayoutType.QuickMenu||heightIsStatic},borderRadius:{title:\"Radius\",type:ControlType.Number,defaultValue:16,displayStepper:true,min:0,hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu},shadow:{buttonTitle:\"Options\",type:ControlType.Object,defaultValue:{x:0,y:20,blur:40,spread:0,color:\"rgba(0,0,0,0.2)\"},controls:{color:{type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.2)\"},x:{type:ControlType.Number,defaultValue:0},y:{type:ControlType.Number,defaultValue:20},blur:{type:ControlType.Number,defaultValue:40},spread:{type:ControlType.Number,defaultValue:0}}},backgroundColor:{title:\"Background\",type:ControlType.Color,defaultValue:\"#FFF\"},[animationKeyFromLayout(SearchLayoutType.QuickMenu)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",hidden:({layoutType})=>layoutType!==SearchLayoutType.QuickMenu,optional:true,buttonTitle:\"Options\",controls:{opacity:{type:ControlType.Number,defaultValue:.5,step:.1,min:0,max:1},scale:{type:ControlType.Number,defaultValue:.75,step:.1,min:0,max:2},// rotate: {\n//     type: ControlType.Number,\n//     defaultValue: 0,\n//     min: -360,\n//     max: 360,\n// },\nx:{type:ControlType.Number,defaultValue:0,min:-500,max:500},y:{type:ControlType.Number,defaultValue:0,min:-500,max:500},transition:{type:ControlType.Transition}}},[animationKeyFromLayout(SearchLayoutType.FixedTop)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",buttonTitle:\"Options\",hidden:({layoutType})=>layoutType!==SearchLayoutType.FixedTop,optional:true,controls:{opacity:{type:ControlType.Number,defaultValue:.8,step:.1,min:0,max:1},y:{type:ControlType.Number,defaultValue:0,min:-100,max:100},transition:{type:ControlType.Transition}}},[animationKeyFromLayout(SearchLayoutType.Sidebar)]:{title:\"Animation\",type:ControlType.Object,icon:\"effect\",buttonTitle:\"Options\",hidden:({layoutType})=>layoutType!==SearchLayoutType.Sidebar,optional:true,controls:{opacity:{type:ControlType.Number,defaultValue:.8,step:.1,min:0,max:1},x:{type:ControlType.Number,defaultValue:0,min:-1e3,max:1e3},transition:{type:ControlType.Transition}}}}},resultOptions:{title:\"Results\",buttonTitle:\"Fonts, Style\",type:ControlType.Object,defaultValue:{},// description:\n//     \"Learn more about how to use Site Search [here](https://framer.com/learn/site-search)\",\ncontrols:{itemType:{title:\"Style\",type:ControlType.Enum,options:Object.values(SearchResultItemType),optionTitles:Object.keys(SearchResultItemType).map(titleCase),defaultValue:SearchResultItemType.FullWidth},titleFont:{title:\"Title\",// @ts-ignore - Internal\ntype:ControlType.Font,defaultValue:{fontSize:15},displayFontSize:true},titleColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#333\"},titleType:{title:\"Content\",type:ControlType.Enum,options:Object.values(SearchResultTitleType),optionTitles:Object.keys(SearchResultTitleType).map(titleCase),defaultValue:SearchResultTitleType.H1,displaySegmentedControl:true},subtitleOptions:{type:ControlType.Object,title:\"Subtitle\",buttonTitle:\"Font, Content\",controls:{subtitleFont:{title:\"Font\",// @ts-ignore - Internal\ntype:ControlType.Font,defaultValue:{fontSize:13},displayFontSize:true},subtitleColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.4)\"},subtitleType:{title:\"Content\",type:ControlType.Enum,options:Object.values(SearchResultSubtitleType),optionTitles:Object.keys(SearchResultSubtitleType).map(titleCase),defaultValue:SearchResultSubtitleType.Path}}}}},backdropOptions:{title:\"Backdrop\",type:ControlType.Object,buttonTitle:\"Color, Z Index\",controls:{backgroundColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.8)\"},zIndex:{title:\"Z Index\",type:ControlType.Number,defaultValue:10,displayStepper:true,min:0,max:10},transition:{type:ControlType.Transition}}}});EntryPoint.displayName=\"Search\";\nexport const __FramerMetadata__ = {\"exports\":{\"ResponsiveImage\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Shadow\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"EntryPoint\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"40\"}},\"EntryPointProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"WindowAnimation\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pCSguaJDKATZoMyAU1I3/QCLaMoqYq5J4snyNumWX/tk62uPTpK.js\";import SocialMedia from\"https://framerusercontent.com/modules/a85m6B6s4oYuS4PeGiHY/QcvOECJbgSLuJMZ23wsB/N1nT8qURR.js\";const SocialMediaFonts=getFonts(SocialMedia);const SearchFonts=getFonts(Search);const enabledGestures={QyAp3ZBVV:{hover:true}};const cycleOrder=[\"QyAp3ZBVV\"];const serializationHash=\"framer-iy3lq\";const variantClassNames={QyAp3ZBVV:\"framer-v-8b3o1k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,mmPEKYRND:(_ref=title!==null&&title!==void 0?title:props.mmPEKYRND)!==null&&_ref!==void 0?_ref:\"Search\u2026\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,mmPEKYRND,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QyAp3ZBVV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8b3o1k\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QyAp3ZBVV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{\"QyAp3ZBVV-hover\":{\"--border-color\":\"rgba(0, 0, 0, 0.5)\"}},...addPropertyOverrides({\"QyAp3ZBVV-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10bdlah\",layoutDependency:layoutDependency,layoutId:\"WqCAJYiFP\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-x6bmag\",\"data-styles-preset\":\"tk62uPTpK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.3))\"},children:\"Search\u2026\"})}),className:\"framer-hevl0p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"igCTol1tt\",style:{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.3)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mmPEKYRND,variants:{\"QyAp3ZBVV-hover\":{\"--extracted-r6o4lv\":\"rgba(0, 0, 0, 0.5)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"QyAp3ZBVV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-x6bmag\",\"data-styles-preset\":\"tk62uPTpK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(0, 0, 0, 0.5))\"},children:\"Search\u2026\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,width:\"21px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+7+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-14-120)/2+0+0)+49.5,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ogug0-container\",layoutDependency:layoutDependency,layoutId:\"V5DgSEefO-container\",children:/*#__PURE__*/_jsx(SocialMedia,{BvbrJ7WcU:\"var(--token-d59fd7fc-69f1-4299-ae8c-343df946e6e4, rgb(170, 139, 99))\",c0LUI2LFa:\"rgba(0, 0, 0, 0.3)\",cnfGeFD1n:\"\",height:\"100%\",id:\"V5DgSEefO\",layoutId:\"V5DgSEefO\",LB6gpJdHs:\"bold\",LRIIT2AYO:\"magnifying-glass\",s7BugNyzU:\"bold\",style:{height:\"100%\",width:\"100%\"},variant:\"C9zUjw47f\",width:\"100%\",...addPropertyOverrides({\"QyAp3ZBVV-hover\":{c0LUI2LFa:\"rgba(0, 0, 0, 0.5)\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rn88jm-container\",layoutDependency:layoutDependency,layoutId:\"QzPLomXP1-container\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(0, 0, 0, 0.8)\",transition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:\"rgba(51, 51, 51, 0)\",iconSize:24,iconType:\"default\",id:\"QzPLomXP1\",inputOptions:{clearButtonText:\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"QzPLomXP1\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:4,heightIsStatic:true,heightTransition:{damping:60,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:500},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{fontFamily:'\"Open Sans\", \"Open Sans Placeholder\", sans-serif',fontSize:\"13px\",fontStyle:\"normal\",fontWeight:400},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iy3lq.framer-2pop7z, .framer-iy3lq .framer-2pop7z { display: block; }\",\".framer-iy3lq.framer-8b3o1k { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 15px 7px 15px; position: relative; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iy3lq .framer-10bdlah { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iy3lq .framer-hevl0p { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-iy3lq .framer-4ogug0-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 21px; }\",\".framer-iy3lq .framer-rn88jm-container { cursor: pointer; flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iy3lq.framer-8b3o1k, .framer-iy3lq .framer-10bdlah { gap: 0px; } .framer-iy3lq.framer-8b3o1k > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-iy3lq.framer-8b3o1k > :first-child { margin-top: 0px; } .framer-iy3lq.framer-8b3o1k > :last-child { margin-bottom: 0px; } .framer-iy3lq .framer-10bdlah > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-iy3lq .framer-10bdlah > :first-child { margin-left: 0px; } .framer-iy3lq .framer-10bdlah > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-iy3lq[data-border=\"true\"]::after, .framer-iy3lq [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ObZE2spR6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"mmPEKYRND\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKnM8kuxtd=withCSS(Component,css,\"framer-iy3lq\");export default FramerKnM8kuxtd;FramerKnM8kuxtd.displayName=\"Search\";FramerKnM8kuxtd.defaultProps={height:38,width:250};addPropertyControls(FramerKnM8kuxtd,{mmPEKYRND:{defaultValue:\"Search\u2026\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerKnM8kuxtd,[{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\"},{family:\"Open Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4iY1M2xLER.woff2\",weight:\"400\"}]},...SocialMediaFonts,...SearchFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKnM8kuxtd\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"38\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ObZE2spR6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"mmPEKYRND\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"250\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KnM8kuxtd.map", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import SideBar from\"https://framerusercontent.com/modules/bqJ88KMher4tnQy5sxvd/N1ElgKtqfy3AP6e4ZGhU/GAP6pkf1N.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/n7irVAIXh2oJ8X9fuMlj/gmjj0fG4OdhOuHbhdLrk/gjzrhfG1s.js\";import Search from\"https://framerusercontent.com/modules/alVrcUECLNzJY8s4n0d3/CbbETGTz6CQMQQplfT97/KnM8kuxtd.js\";const SearchFonts=getFonts(Search);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"Iq8Lx75Q1\",\"WoR6MJxIE\"];const serializationHash=\"framer-vaI3H\";const variantClassNames={Iq8Lx75Q1:\"framer-v-es8s6n\",WoR6MJxIE:\"framer-v-9viqlc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={delay:.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const query=prequery=>prequery({from:{alias:\"CMjcyA_zY\",data:SideBar,type:\"Collection\"},select:[{collection:\"CMjcyA_zY\",name:\"YvMdhQtqw\",type:\"Identifier\"},{collection:\"CMjcyA_zY\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query1=prequery=>prequery({from:{alias:\"XkWWZBkXf\",data:SideBar,type:\"Collection\"},select:[{collection:\"XkWWZBkXf\",name:\"u3wmhX4Y0\",type:\"Identifier\"},{collection:\"XkWWZBkXf\",name:\"ctKJa0ldK\",type:\"Identifier\"},{collection:\"XkWWZBkXf\",name:\"YvMdhQtqw\",type:\"Identifier\"},{collection:\"XkWWZBkXf\",name:\"id\",type:\"Identifier\"}]});const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop/Phone\":\"Iq8Lx75Q1\",Tablet:\"WoR6MJxIE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Iq8Lx75Q1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,YvMdhQtqwCMjcyA_zY,idCMjcyA_zY,u3wmhX4Y0XkWWZBkXf,ctKJa0ldKXkWWZBkXf,YvMdhQtqwXkWWZBkXf,idXkWWZBkXf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Iq8Lx75Q1\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-es8s6n\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop/Phone\",layoutDependency:layoutDependency,layoutId:\"Iq8Lx75Q1\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({WoR6MJxIE:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g90n9n\",layoutDependency:layoutDependency,layoutId:\"pABXxZXyE\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w8ihzo\",layoutDependency:layoutDependency,layoutId:\"UqoUytnvR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,y:(componentViewport?.y||0)+30+(((componentViewport?.height||1102)-60-1042)/2+0+0)+0+1,...addPropertyOverrides({WoR6MJxIE:{y:(componentViewport?.y||0)+30+(((componentViewport?.height||445)-60-385)/2+0+0)+0+1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14bqxh4-container\",layoutDependency:layoutDependency,layoutId:\"YvVkDleny-container\",nodeId:\"YvVkDleny\",rendersWithMotion:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(Search,{height:\"100%\",id:\"YvVkDleny\",layoutId:\"YvVkDleny\",mmPEKYRND:\"Search\u2026\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2zut3b\",layoutDependency:layoutDependency,layoutId:\"ijq_layUy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16wl6cc\",layoutDependency:layoutDependency,layoutId:\"oxnetwyCI\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qb0r85\",layoutDependency:layoutDependency,layoutId:\"VrtXjOyVh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-18s1m20\",\"data-styles-preset\":\"gjzrhfG1s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)))\"},children:\"LET'S MEET\"})}),className:\"framer-4kf39v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lXV47m2yq\",style:{\"--extracted-1lwpl3i\":\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-l3215m-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YwWgTBlkR-container\",nodeId:\"YwWgTBlkR\",rendersWithMotion:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"YwWgTBlkR\",intervalControl:2,itemAmount:1,layoutId:\"YwWgTBlkR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://thealternativeschool.com/news/20-years-call-for-papers\",motionChild:true,nodeId:\"DCDcsG_5h\",openInNewTab:false,scopeId:\"NW90LBAkI\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Teodora Migdalovici TheAlternativeSchool\",intrinsicHeight:2700,intrinsicWidth:2700,pixelHeight:8100,pixelWidth:8100,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/AaPk2RGE2c5uxSnBzHHg3Aq0QGM.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/AaPk2RGE2c5uxSnBzHHg3Aq0QGM.png?scale-down-to=512 512w,https://framerusercontent.com/images/AaPk2RGE2c5uxSnBzHHg3Aq0QGM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/AaPk2RGE2c5uxSnBzHHg3Aq0QGM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/AaPk2RGE2c5uxSnBzHHg3Aq0QGM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/AaPk2RGE2c5uxSnBzHHg3Aq0QGM.png 8100w\"},className:\"framer-yupr2m framer-x6zn3e\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"DCDcsG_5h\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})}),/*#__PURE__*/_jsx(Link,{href:\"https://thealternativeschool.com/news/20-years-call-for-papers\",motionChild:true,nodeId:\"kvwXHB8Pi\",openInNewTab:false,scopeId:\"NW90LBAkI\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Teodora Migdalovici TheAlternativeSchool\",intrinsicHeight:2700,intrinsicWidth:2700,pixelHeight:8100,pixelWidth:8100,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/WfEEzc27sHxKN405OosvPVGe0.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/WfEEzc27sHxKN405OosvPVGe0.png?scale-down-to=512 512w,https://framerusercontent.com/images/WfEEzc27sHxKN405OosvPVGe0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WfEEzc27sHxKN405OosvPVGe0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WfEEzc27sHxKN405OosvPVGe0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/WfEEzc27sHxKN405OosvPVGe0.png 8100w\"},className:\"framer-sapbwq framer-x6zn3e\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"kvwXHB8Pi\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})}),/*#__PURE__*/_jsx(Link,{href:\"https://thealternativeschool.com/news/20-years-call-for-papers\",motionChild:true,nodeId:\"TH_HiAKqz\",openInNewTab:false,scopeId:\"NW90LBAkI\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Teodora Migdalovici TheAlternativeSchool\",intrinsicHeight:2700,intrinsicWidth:2700,pixelHeight:8100,pixelWidth:8100,positionX:\"center\",positionY:\"center\",sizes:\"250px\",src:\"https://framerusercontent.com/images/WRBloLPu3R7aV5uu0Yb677iio.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/WRBloLPu3R7aV5uu0Yb677iio.png?scale-down-to=512 512w,https://framerusercontent.com/images/WRBloLPu3R7aV5uu0Yb677iio.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WRBloLPu3R7aV5uu0Yb677iio.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WRBloLPu3R7aV5uu0Yb677iio.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/WRBloLPu3R7aV5uu0Yb677iio.png 8100w\"},className:\"framer-d88dao framer-x6zn3e\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"TH_HiAKqz\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5v1r1\",layoutDependency:layoutDependency,layoutId:\"kp2o60Pzb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ikog4y\",layoutDependency:layoutDependency,layoutId:\"NAokSItsl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-18s1m20\",\"data-styles-preset\":\"gjzrhfG1s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)))\"},children:\"LOVE BRANDS\"})}),className:\"framer-10eg55g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Mf4DjJk8Q\",style:{\"--extracted-1lwpl3i\":\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ilzgul-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Y8kf7mmOo-container\",nodeId:\"Y8kf7mmOo\",rendersWithMotion:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Y8kf7mmOo\",intervalControl:2,itemAmount:1,layoutId:\"Y8kf7mmOo\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qn2ymy\",layoutDependency:layoutDependency,layoutId:\"pC_EH1w1k\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19pdul9\",\"data-framer-name\":\"Group 1251\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BJB_EK9Rj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 213 83\"><path d=\"M 81.809 52.687 C 82.029 52.018 82.244 51.408 82.429 50.789 C 82.521 50.508 82.573 50.214 82.583 49.918 C 82.583 38.732 82.6 26.528 82.563 15.342 C 82.563 14.684 82.214 14.015 81.968 13.373 C 81.796 12.924 81.899 12.812 82.349 12.812 C 90.109 12.812 97.872 12.657 105.624 12.872 C 111.138 13.027 115.848 15.303 119.209 19.879 C 123.006 25.059 122.443 32.034 117.994 36.673 C 115.883 38.87 113.349 40.329 110.503 41.296 C 110.414 41.325 110.318 41.363 110.146 41.432 C 110.235 41.586 110.338 41.73 110.454 41.864 C 113.202 44.349 117.583 47.906 120.404 50.303 C 121.426 51.173 122.726 51.709 123.898 52.401 C 123.991 52.455 124.083 52.521 124.328 52.693 C 123.97 52.727 123.793 52.76 123.613 52.76 L 108.214 52.76 C 107.403 52.76 107.403 52.76 107.403 51.926 C 107.426 51.609 107.422 51.29 107.392 50.973 C 107.362 50.704 107.253 50.451 107.079 50.245 C 105.067 48.336 101.366 45.421 99.322 43.545 C 99.087 43.346 98.793 43.233 98.487 43.223 C 96.652 43.195 94.815 43.223 92.98 43.197 C 92.453 43.197 92.348 43.403 92.349 43.867 C 92.362 46.279 92.349 49.71 92.366 52.123 C 92.366 52.577 92.249 52.766 91.769 52.764 C 88.622 52.749 85.493 52.764 82.353 52.755 C 82.171 52.742 81.989 52.72 81.809 52.687 Z M 99.213 33.876 C 101.048 33.876 102.882 33.876 104.719 33.876 C 106.467 33.883 108.171 33.316 109.572 32.26 C 112.534 30.053 112.832 26.04 110.231 23.406 C 108.681 21.835 106.769 21.128 104.634 21.098 C 100.786 21.044 96.937 21.098 93.088 21.068 C 92.499 21.068 92.348 21.255 92.348 21.816 C 92.367 25.623 92.367 29.431 92.348 33.238 C 92.348 33.746 92.503 33.887 92.988 33.881 C 95.058 33.864 97.129 33.876 99.203 33.876 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 75.34 43.654 C 75.356 43.942 75.375 44.117 75.375 44.293 C 75.375 47.043 75.375 49.794 75.375 52.547 C 75.375 53.213 75.331 53.205 74.701 53.076 C 73.914 52.915 73.113 52.736 72.316 52.736 C 61.656 52.713 50.994 52.708 40.332 52.719 C 40.062 52.719 39.792 52.691 39.427 52.67 C 39.629 52.037 39.823 51.483 39.982 50.918 C 40.1 50.562 40.169 50.192 40.188 49.817 C 40.199 38.629 40.203 26.457 40.179 15.271 C 40.179 14.759 39.925 14.247 39.773 13.74 C 39.694 13.48 39.577 13.231 39.442 12.887 C 39.744 12.859 39.968 12.82 40.192 12.82 C 50.971 12.82 61.751 12.814 72.531 12.803 C 73.288 12.803 74.051 12.616 74.797 12.451 C 75.223 12.358 75.386 12.438 75.384 12.885 C 75.384 15.716 75.384 18.548 75.384 21.38 C 75.384 21.805 75.23 21.941 74.849 21.734 C 73.874 21.173 72.831 21.061 71.72 21.066 C 64.751 21.094 57.781 21.079 50.812 21.079 C 49.964 21.079 49.964 21.079 49.964 21.94 C 49.964 23.933 49.977 25.928 49.964 27.923 C 49.964 28.393 50.104 28.555 50.569 28.555 C 56.531 28.544 62.494 28.555 68.456 28.531 C 69.095 28.531 69.737 28.324 70.369 28.174 C 70.694 28.097 70.822 28.206 70.822 28.511 C 70.822 31.378 70.819 34.25 70.813 37.126 C 70.797 37.223 70.765 37.318 70.72 37.406 C 67.364 36.593 63.983 37.075 60.626 36.995 C 57.27 36.914 53.913 36.995 50.556 36.97 C 50.077 36.97 49.958 37.157 49.966 37.614 C 49.986 39.297 49.966 41.95 49.966 43.624 C 49.966 44.456 49.966 44.458 50.771 44.458 L 64.453 44.458 C 67.021 44.458 69.587 44.439 72.153 44.469 C 72.981 44.469 73.755 44.377 74.49 43.981 C 74.766 43.855 75.05 43.745 75.34 43.654 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 213 43.539 L 213 53.145 C 212.463 53.03 211.957 52.91 211.449 52.816 C 211.065 52.733 210.675 52.683 210.284 52.669 C 199.505 52.661 188.725 52.661 177.944 52.669 C 177.676 52.669 177.408 52.642 177.039 52.626 C 177.287 51.838 177.52 51.13 177.732 50.419 C 177.809 50.177 177.852 49.925 177.859 49.671 C 177.859 38.564 177.876 26.53 177.84 15.425 C 177.84 14.785 177.47 14.146 177.286 13.508 C 177.229 13.321 177.162 13.149 177.066 12.88 C 177.359 12.859 177.565 12.833 177.771 12.833 C 188.609 12.833 199.448 12.827 210.287 12.814 C 211.176 12.814 212.063 12.551 212.989 12.405 L 212.989 21.928 C 212.565 21.764 212.187 21.581 211.791 21.468 C 211.25 21.315 210.695 21.111 210.145 21.109 C 202.88 21.085 195.613 21.094 188.348 21.094 C 187.561 21.094 187.554 21.094 187.554 21.889 C 187.554 23.903 187.565 25.917 187.554 27.931 C 187.554 28.393 187.689 28.567 188.159 28.567 C 194.141 28.567 200.123 28.567 206.105 28.544 C 206.703 28.544 207.305 28.337 207.897 28.196 C 208.268 28.107 208.414 28.249 208.414 28.612 C 208.414 31.403 208.414 34.194 208.414 36.985 C 208.414 37.335 208.258 37.464 207.927 37.359 C 206.333 36.826 204.683 37.004 203.052 37 C 198.155 36.985 193.26 37 188.362 37 C 187.565 37 187.565 37 187.565 37.784 C 187.565 39.48 187.577 42.102 187.565 43.796 C 187.565 44.265 187.711 44.428 188.174 44.428 C 195.655 44.428 203.139 44.441 210.621 44.39 C 211.306 44.39 211.987 43.943 212.671 43.704 C 212.737 43.648 212.823 43.611 213 43.539 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 0 46.225 C 1.465 44.991 2.909 43.794 4.336 42.571 C 5.119 41.901 5.886 41.213 6.641 40.514 C 6.906 40.267 7.084 40.243 7.382 40.488 C 10.226 42.808 13.738 44.134 17.391 44.267 C 18.412 44.327 19.435 44.323 20.455 44.254 C 22.234 44.11 23.591 43.259 24.343 41.57 C 24.847 40.448 24.567 39.513 23.519 38.62 C 22.351 37.632 20.984 36.913 19.513 36.512 C 17.333 35.901 15.108 35.463 12.92 34.883 C 9.957 34.098 7.191 32.879 4.984 30.62 C 1.215 26.757 0.911 20.195 5.401 16.193 C 7.304 14.499 9.53 13.452 11.946 12.745 C 14.202 12.074 16.562 11.829 18.907 12.023 C 21.364 12.227 23.808 12.53 26.165 13.332 C 26.548 13.461 26.743 13.646 26.739 14.099 C 26.72 16.87 26.739 19.641 26.728 22.413 C 26.718 22.592 26.699 22.77 26.67 22.948 L 24.047 21.732 C 21.849 20.723 19.445 20.256 17.033 20.369 C 15.827 20.437 14.652 20.783 13.599 21.38 C 11.579 22.478 12.227 25.023 13.543 25.829 C 14.736 26.557 16.036 26.91 17.376 27.159 C 21.508 27.925 25.502 29.092 29.087 31.39 C 31.475 32.922 33.38 34.898 34.324 37.658 C 35.332 40.6 34.813 43.364 33.178 45.927 C 31.373 48.759 28.814 50.617 25.678 51.724 C 22.901 52.712 20.046 52.829 17.161 52.7 C 14.558 52.606 11.977 52.172 9.483 51.41 C 6.14 50.384 3.015 48.735 0.272 46.548 C 0.171 46.449 0.08 46.341 0 46.225 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 146.895 53.145 C 145.133 50.393 143.45 47.771 141.77 45.146 C 139.549 41.666 137.327 38.185 135.105 34.702 C 131.654 29.298 128.166 23.918 124.767 18.482 C 123.595 16.612 122.265 14.918 120.508 13.577 C 120.275 13.399 120.025 13.239 119.784 13.07 L 119.942 12.861 L 137.194 12.861 C 136.979 13.207 136.812 13.484 136.638 13.753 C 136.541 13.927 136.424 14.089 136.29 14.235 C 135.237 15.258 135.438 16.18 136.188 17.381 C 139.784 23.138 143.274 28.974 146.801 34.771 C 146.847 34.822 146.897 34.869 146.951 34.911 C 147.068 34.804 147.176 34.685 147.271 34.556 C 150.547 29.137 153.818 23.714 157.084 18.288 C 157.495 17.609 157.898 16.922 158.337 16.262 C 158.589 15.888 158.537 15.591 158.28 15.241 C 157.743 14.512 157.241 13.757 156.637 12.887 L 173.997 12.887 C 173.877 13.045 173.747 13.196 173.608 13.338 C 172.901 13.974 172.127 14.55 171.49 15.245 C 170.843 15.961 170.258 16.731 169.742 17.549 C 166.248 22.973 162.769 28.407 159.304 33.851 C 155.863 39.237 152.422 44.623 148.984 50.011 C 148.418 50.898 147.849 51.782 147.275 52.663 C 147.156 52.83 147.03 52.991 146.895 53.145 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 151.741 0.02 L 148.758 7.687 C 148.721 7.757 148.69 7.83 148.667 7.906 C 148.436 9.215 147.704 9.867 146.271 9.673 C 146.235 9.499 146.218 9.322 146.221 9.145 C 146.443 6.87 146.668 4.596 146.923 2.324 C 146.94 2.192 146.987 2.066 147.057 1.954 C 147.128 1.842 147.221 1.747 147.332 1.675 C 148.686 1.088 150.059 0.553 151.428 0.005 C 151.532 -0.005 151.638 0 151.741 0.02 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 49.801 67.316 L 44.661 82.999 L 41.591 82.999 L 37.755 71.395 L 33.85 82.999 L 30.775 82.999 L 25.63 67.316 L 28.624 67.316 L 32.484 79.235 L 36.5 67.316 L 39.16 67.316 L 43.087 79.303 L 47.059 67.316 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 65.46 67.316 L 68.345 67.316 L 68.345 82.999 L 65.46 82.999 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 99.649 67.316 L 99.649 82.999 L 97.272 82.999 L 88.709 72.38 L 88.709 82.999 L 85.847 82.999 L 85.847 67.316 L 88.221 67.316 L 96.784 77.935 L 96.784 67.316 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 128.771 80.557 L 128.771 82.999 L 117.126 82.999 L 117.126 67.316 L 128.462 67.316 L 128.462 69.758 L 120.016 69.758 L 120.016 73.837 L 127.512 73.837 L 127.512 76.234 L 120.016 76.234 L 120.016 80.557 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 155.458 82.999 L 152.286 78.407 C 152.087 78.425 151.887 78.432 151.687 78.429 L 148.182 78.429 L 148.182 82.999 L 145.297 82.999 L 145.297 67.316 L 151.687 67.316 C 152.893 67.289 154.092 67.517 155.205 67.987 C 156.143 68.385 156.942 69.056 157.501 69.915 C 158.05 70.808 158.327 71.843 158.3 72.894 C 158.329 73.974 158.03 75.037 157.445 75.942 C 156.844 76.819 155.987 77.484 154.994 77.846 L 158.565 82.999 Z M 154.416 70.587 C 153.764 70.049 152.81 69.781 151.553 69.781 L 148.182 69.781 L 148.182 76.032 L 151.553 76.032 C 152.811 76.032 153.765 75.759 154.416 75.213 C 155.066 74.667 155.392 73.894 155.392 72.894 C 155.392 71.894 155.066 71.125 154.416 70.587 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 181.299 77.464 L 181.299 82.999 L 178.417 82.999 L 178.417 77.509 L 172.307 67.316 L 175.389 67.316 L 179.937 74.957 L 184.53 67.316 L 187.368 67.316 Z\" fill=\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:9634093488,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-85tye2\",layoutDependency:layoutDependency,layoutId:\"gBpJG5Clf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:347,intrinsicWidth:2147,pixelHeight:347,pixelWidth:2147,sizes:\"250px\",src:\"https://framerusercontent.com/images/nHSAcsIP7inb8DV4vHaGWatyKs.jpg\",srcSet:\"https://framerusercontent.com/images/nHSAcsIP7inb8DV4vHaGWatyKs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nHSAcsIP7inb8DV4vHaGWatyKs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nHSAcsIP7inb8DV4vHaGWatyKs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nHSAcsIP7inb8DV4vHaGWatyKs.jpg 2147w\"},className:\"framer-7u56ne\",\"data-framer-name\":\"sigla_vector_Clubul_ilustratorilor\",layoutDependency:layoutDependency,layoutId:\"UDbQ00OY6\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"HKm9dJ9YI\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16m1gsq framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"HKm9dJ9YI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:675,intrinsicWidth:4789,pixelHeight:675,pixelWidth:4789,sizes:\"226px\",src:\"https://framerusercontent.com/images/8Pu2I4O3UP55emFK54GxrEfVKQ.png\",srcSet:\"https://framerusercontent.com/images/8Pu2I4O3UP55emFK54GxrEfVKQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/8Pu2I4O3UP55emFK54GxrEfVKQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Pu2I4O3UP55emFK54GxrEfVKQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Pu2I4O3UP55emFK54GxrEfVKQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/8Pu2I4O3UP55emFK54GxrEfVKQ.png 4789w\"},className:\"framer-8k5e5s\",\"data-framer-name\":\"logo_phoenix_media\",layoutDependency:layoutDependency,layoutId:\"TUmHygPiv\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.spacesworks.com/ro/bucharest-ro/unirii/\",motionChild:true,nodeId:\"jkTMC97vP\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-151pob8 framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"jkTMC97vP\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:474.4,intrinsicWidth:474.4,pixelHeight:593,pixelWidth:593,sizes:\"250px\",src:\"https://framerusercontent.com/images/mxUr4DAIiXsaxFiP7yDHuvisCDA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mxUr4DAIiXsaxFiP7yDHuvisCDA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mxUr4DAIiXsaxFiP7yDHuvisCDA.jpg 593w\"},className:\"framer-jcshkk\",\"data-framer-name\":\"greenmindstudio\",layoutDependency:layoutDependency,layoutId:\"OnnpPQYqp\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19h1fhv\",layoutDependency:layoutDependency,layoutId:\"CMjcyA_zY\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CMjcyA_zY\",data:SideBar,type:\"Collection\"},select:[{collection:\"CMjcyA_zY\",name:\"YvMdhQtqw\",type:\"Identifier\"},{collection:\"CMjcyA_zY\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idCMjcyA_zY,YvMdhQtqw:YvMdhQtqwCMjcyA_zY},index)=>{YvMdhQtqwCMjcyA_zY??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CMjcyA_zY-${idCMjcyA_zY}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YvMdhQtqw:YvMdhQtqwCMjcyA_zY},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/ACLopzJ53oSa6zOIpijrpX8TWis.png\",srcSet:\"https://framerusercontent.com/images/ACLopzJ53oSa6zOIpijrpX8TWis.png?scale-down-to=512 512w,https://framerusercontent.com/images/ACLopzJ53oSa6zOIpijrpX8TWis.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ACLopzJ53oSa6zOIpijrpX8TWis.png 2000w\"},className:\"framer-3q78o8\",layoutDependency:layoutDependency,layoutId:\"BL__JiWi_\"})})},idCMjcyA_zY);})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"SL53vYTZT\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1glemip framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"SL53vYTZT\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/6gEE6snDkMww9pE0k2F6e3TpV4Y.png\"},className:\"framer-u6phea\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"t0qyUvJjN\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"MAYdYkMap\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fn3pr framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"MAYdYkMap\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:839.9999599456806,intrinsicWidth:841.1999598884602,pixelHeight:700,pixelWidth:701,sizes:\"202px\",src:\"https://framerusercontent.com/images/1LEHNfWiexiJwMcUg40b7ndA.jpg\",srcSet:\"https://framerusercontent.com/images/1LEHNfWiexiJwMcUg40b7ndA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1LEHNfWiexiJwMcUg40b7ndA.jpg 701w\"},className:\"framer-1ghnrs5\",\"data-framer-name\":\"invizibilii_2_\",layoutDependency:layoutDependency,layoutId:\"KxPZAfbG_\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"DTx0_NNNW\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-evdtga framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"DTx0_NNNW\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-81bnie\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:173,layoutDependency:layoutDependency,layoutId:\"MtdxDwyyv\",svg:'<svg width=\"173\" height=\"56\" viewBox=\"0 0 173 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_144_724)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4452 48.1318L8.79495 43.4967L7.15458 48.1318H10.4452ZM13.8001 51.1869C13.8968 51.5015 14.0492 51.7955 14.2497 52.0546C14.5209 52.2982 14.8342 52.4887 15.1736 52.6165V52.7218H10.3909V52.6014C10.7264 52.4751 11.0451 52.3065 11.3395 52.0998C11.4158 52.0407 11.478 51.9649 11.5216 51.8781C11.5652 51.7912 11.5891 51.6956 11.5915 51.5983C11.5569 51.289 11.4787 50.9867 11.3593 50.7002L10.6824 48.8141H6.91741L6.74941 49.3156C6.47303 49.9553 6.28515 50.6304 6.19109 51.3223C6.18519 51.4557 6.20775 51.5889 6.25719 51.7127C6.30666 51.8366 6.38186 51.948 6.47766 52.0396C6.77438 52.2846 7.10806 52.4794 7.46585 52.6165V52.7268H4.14062V52.6014C4.61988 52.2773 5.03404 51.8637 5.36103 51.3824C5.71553 50.7437 6.0084 50.0717 6.23557 49.3759L8.55284 42.9147L8.05875 41.9116C8.7278 41.6539 9.36464 41.3171 9.95606 40.9082L13.8001 51.1819V51.1869Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.4648 52.6005C15.8033 52.4859 16.1064 52.2837 16.3443 52.0137C16.5051 51.6381 16.5696 51.2275 16.5321 50.8197V47.4487C16.5626 46.991 16.5004 46.5317 16.3492 46.0993C16.1425 45.7841 15.8356 45.5503 15.4797 45.4372V45.3417C16.4676 45.2641 17.4447 45.0807 18.3947 44.7949L18.3502 46.4104H18.3947C18.5567 45.9828 18.8238 45.6048 19.1706 45.3118C19.5422 44.9785 20.0237 44.7996 20.5194 44.81C20.7849 44.8022 21.0465 44.8757 21.2704 45.0208L21.0481 47.1426H20.9394C20.3662 46.4154 19.8474 46.0591 19.3928 46.0591C18.9383 46.0591 18.6864 46.3149 18.4491 46.8217V50.8046C18.407 51.2172 18.4879 51.6332 18.6814 51.9986C18.9807 52.2798 19.3439 52.4814 19.7386 52.5854V52.6909H15.4747L15.4648 52.6005Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.7424 52.8615C24.4828 52.8682 24.2243 52.823 23.9818 52.7285C23.7394 52.6338 23.5177 52.4914 23.3293 52.3097C23.1272 52.0974 22.9714 51.8442 22.8718 51.5668C22.7722 51.2894 22.7312 50.994 22.7514 50.6994V45.4723H21.9805V45.2514C23.2652 44.4038 24.0953 43.6362 24.451 42.959H24.6289V45.0308H26.6892L26.6299 45.4773H24.6536L24.624 50.4035C24.5991 50.6148 24.6157 50.8289 24.6725 51.0338C24.7292 51.2386 24.8252 51.4301 24.955 51.5973C25.0611 51.7127 25.1897 51.8044 25.3326 51.8665C25.4754 51.9287 25.6296 51.9599 25.785 51.9584C25.9975 51.9463 26.2053 51.8903 26.3955 51.7936C26.5859 51.697 26.7547 51.562 26.8918 51.3968L26.9512 51.4719C26.7399 51.8847 26.4226 52.2317 26.0329 52.4764C25.6433 52.721 25.1957 52.8541 24.7375 52.8615H24.7424Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M28.1814 43.3858C28.0776 43.2918 27.9943 43.1767 27.9373 43.0479C27.8802 42.9192 27.8506 42.7794 27.8504 42.6382C27.8509 42.5 27.8808 42.3634 27.9379 42.238C27.995 42.1125 28.0779 42.001 28.1814 41.911C28.387 41.7056 28.6638 41.5904 28.9521 41.5899C29.2386 41.5882 29.5139 41.7019 29.718 41.906C29.8217 41.9967 29.905 42.1091 29.9621 42.2354C30.0192 42.3618 30.0489 42.4993 30.049 42.6382C30.0489 42.7794 30.0192 42.9192 29.9621 43.0479C29.9051 43.1767 29.8218 43.2918 29.718 43.3858C29.5145 43.5912 29.2391 43.7067 28.9521 43.7069C28.6638 43.7063 28.387 43.591 28.1814 43.3858ZM27.1289 52.6008C27.4659 52.4859 27.7673 52.2836 28.0034 52.014C28.1691 51.6399 28.2356 51.2284 28.1962 50.8202V47.5093C28.2356 47.0286 28.168 46.5452 27.9985 46.0946C27.7764 45.8046 27.4809 45.5809 27.1437 45.4475V45.3372C28.1491 45.2699 29.1438 45.0864 30.1083 44.7904V50.8101C30.0725 51.2172 30.1353 51.6271 30.2911 52.004C30.5171 52.2715 30.8086 52.474 31.1361 52.591V52.6963H27.1289V52.6008Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M38.09 45.267L33.8359 52.3652H35.9604C36.1189 52.3581 36.2743 52.3176 36.4164 52.2458C36.5585 52.1741 36.6842 52.0729 36.7855 51.9488C37.2236 51.3859 37.6012 50.7771 37.9121 50.133H38.0109L37.7589 52.7215H31.6914V52.5107L35.9752 45.4024H34.0532C33.9095 45.4119 33.7692 45.451 33.6409 45.5174C33.5126 45.5838 33.3991 45.6761 33.3072 45.7886C32.8544 46.339 32.4447 46.9243 32.0819 47.5395H31.9929L32.2448 45.0312H38.09V45.267Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M42.0644 51.7782C42.4047 51.7561 42.736 51.6588 43.0355 51.4934C43.335 51.3278 43.5954 51.0982 43.7986 50.8201L43.8727 47.9607C43.0619 48.1719 42.3064 48.5606 41.6592 49.0995C41.4573 49.2807 41.2949 49.5031 41.1825 49.7518C41.0703 50.0006 41.0104 50.2705 41.0069 50.5442C40.989 50.8733 41.093 51.1972 41.2986 51.4523C41.3963 51.5611 41.5164 51.6467 41.6506 51.7031C41.7846 51.7594 41.9292 51.7851 42.0742 51.7782H42.0644ZM45.1276 52.8969C44.9283 52.9166 44.7275 52.8802 44.547 52.7918C44.3666 52.7033 44.2138 52.5661 44.105 52.3953C43.908 52.0471 43.8185 51.6469 43.848 51.2465H43.8183C43.5624 51.707 43.195 52.0938 42.751 52.3702C42.2564 52.7034 41.6748 52.8781 41.0811 52.8718C40.5301 52.9021 39.9876 52.7233 39.5592 52.3702C39.3762 52.2078 39.2312 52.0059 39.1345 51.7795C39.038 51.5531 38.9923 51.3075 39.0011 51.0608C39.0011 50.3286 39.4062 49.6865 40.2313 49.1397C41.3658 48.4523 42.5971 47.9447 43.8826 47.6348L43.9123 46.4759C43.9229 46.1579 43.8366 45.8443 43.6653 45.578C43.5725 45.4419 43.446 45.3328 43.2984 45.2625C43.1509 45.192 42.9878 45.1624 42.8252 45.1767C42.5782 45.1775 42.3362 45.2478 42.126 45.3797C41.9159 45.5116 41.7458 45.7001 41.6345 45.9241C41.3341 46.453 41.1424 47.0385 41.0712 47.6446H40.9971L39.5889 46.7016C39.9014 46.1646 40.3435 45.7176 40.8737 45.4024C41.5294 45.0097 42.2817 44.8149 43.0427 44.8406C43.4171 44.8039 43.7947 44.8486 44.1508 44.9713C44.5069 45.0941 44.8331 45.2923 45.1079 45.5529C45.3166 45.7862 45.4773 46.0595 45.5809 46.3566C45.6844 46.6538 45.7285 46.9689 45.7107 47.2835L45.6168 51.4372C45.6168 51.8033 45.7503 51.984 46.0071 51.984C46.2641 51.984 46.5012 51.7581 46.7236 51.2967L46.8472 51.3619C46.7149 51.7615 46.4972 52.1263 46.2098 52.4303C46.0653 52.5775 45.8923 52.6928 45.7019 52.7687C45.5114 52.8446 45.3076 52.8798 45.1029 52.8718L45.1276 52.8969Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M55.0291 50.8549C54.9925 51.2639 55.0553 51.6754 55.212 52.0538C55.4386 52.3197 55.7299 52.5202 56.0569 52.6358V52.7461H52.0647V52.6358C52.4006 52.5243 52.7008 52.3234 52.9342 52.0538C53.0944 51.6761 53.1638 51.2653 53.1367 50.8549C53.1367 50.7245 53.1367 50.3533 53.1367 49.6962C53.1367 49.0389 53.1367 48.6477 53.1367 48.4873C53.1891 47.7812 53.1018 47.0717 52.8799 46.4004C52.7951 46.2287 52.662 46.0866 52.4976 45.9919C52.3331 45.8972 52.1445 45.8542 51.9559 45.8687C51.5788 45.854 51.207 45.9612 50.8936 46.1746C50.5626 46.4289 50.2741 46.7355 50.0388 47.0826V50.8499C50.0031 51.2572 50.0657 51.667 50.2217 52.0439C50.4539 52.3018 50.7486 52.4938 51.0765 52.6006V52.7111H47.0742V52.6006C47.4114 52.4862 47.7129 52.2838 47.9489 52.0138C48.1144 51.6397 48.1809 51.2281 48.1415 50.8199V47.494C48.1796 47.0211 48.1104 46.5457 47.939 46.1044C47.721 45.8051 47.4274 45.571 47.089 45.4272V45.3319C48.0747 45.2486 49.0497 45.0655 49.9993 44.7852V46.5809C50.7702 45.4121 51.7088 44.8252 52.8255 44.8201C53.3895 44.8106 53.9376 45.0105 54.3671 45.382C54.5993 45.6028 54.7794 45.8741 54.8942 46.1755C55.0088 46.4769 55.0549 46.8008 55.0291 47.1226V50.8149V50.8549Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M57.3882 43.3858C57.2853 43.2914 57.203 43.1761 57.1468 43.0474C57.0907 42.9184 57.0618 42.7791 57.0622 42.6382C57.0618 42.5004 57.0907 42.364 57.1469 42.2384C57.2033 42.1128 57.2855 42.0012 57.3882 41.911C57.594 41.7056 57.8706 41.5904 58.1591 41.5899C58.4454 41.5882 58.7208 41.7019 58.9249 41.906C59.0296 41.9958 59.1136 42.108 59.1709 42.2347C59.2281 42.3612 59.2572 42.4991 59.2559 42.6382C59.2575 42.7798 59.2288 42.9201 59.1717 43.0492C59.1146 43.1781 59.0303 43.2931 58.9249 43.3858C58.7213 43.5912 58.446 43.7067 58.1591 43.7069C57.8706 43.7063 57.594 43.591 57.3882 43.3858ZM56.3359 52.6008C56.6728 52.4859 56.9741 52.2836 57.2105 52.014C57.376 51.6399 57.4424 51.2284 57.403 50.8202V47.5093C57.4424 47.0286 57.3749 46.5452 57.2055 46.0946C56.9844 45.8034 56.6885 45.5796 56.3508 45.4475V45.3372C57.3562 45.2702 58.3508 45.0868 59.3152 44.7904V50.8101C59.2795 51.2172 59.3421 51.6271 59.4981 52.004C59.724 52.2715 60.0154 52.474 60.3429 52.591V52.6963H56.3407L56.3359 52.6008Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.6785 43.3855C61.5745 43.2915 61.4914 43.1764 61.4343 43.0476C61.3774 42.9187 61.3477 42.7791 61.3473 42.6379C61.3479 42.4997 61.3777 42.3631 61.4348 42.2376C61.492 42.1122 61.5751 42.0005 61.6785 41.9105C61.8835 41.7062 62.1594 41.5918 62.4467 41.5918C62.7341 41.5918 63.01 41.7062 63.215 41.9105C63.3188 42.0013 63.4021 42.1138 63.4592 42.2402C63.5163 42.3665 63.546 42.504 63.5462 42.643C63.5458 42.7842 63.5161 42.9237 63.4592 43.0526C63.4021 43.1814 63.319 43.2965 63.215 43.3905C63.0094 43.5957 62.7326 43.7111 62.4443 43.7114C62.1572 43.7112 61.8819 43.5959 61.6785 43.3905V43.3855ZM60.6211 52.6005C60.9585 52.4839 61.2613 52.2818 61.5006 52.0136C61.6637 51.6387 61.7299 51.2279 61.6933 50.8197V47.5088C61.7343 47.0277 61.665 46.5436 61.4907 46.0943C61.2695 45.8031 60.9739 45.5793 60.6359 45.4471V45.3367C61.6413 45.2699 62.6361 45.0865 63.6004 44.7899V50.8097C63.5661 51.2173 63.6307 51.6271 63.7882 52.0035C64.0141 52.2712 64.3055 52.4737 64.633 52.5905V52.6958H60.626L60.6211 52.6005Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M68.4609 52.6008C68.7983 52.4842 69.1011 52.2821 69.3404 52.0139C69.5011 51.6384 69.5658 51.2276 69.5282 50.82V43.466C69.57 42.9852 69.5024 42.5011 69.3305 42.0513C69.1094 41.7601 68.8137 41.5363 68.4758 41.4042V41.2939C69.4812 41.2269 70.476 41.0434 71.4404 40.7471V50.8351C71.4045 51.2421 71.4673 51.652 71.6231 52.0289C71.8505 52.2972 72.1436 52.4998 72.4729 52.6159V52.7212H68.4708L68.4609 52.6008Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M76.1514 51.7779C76.4908 51.755 76.8213 51.6575 77.12 51.4921C77.4186 51.3266 77.6782 51.0972 77.8809 50.8198L77.9598 47.9604C77.1486 48.1705 76.3929 48.5593 75.7463 49.0992C75.5436 49.2802 75.3805 49.5022 75.2674 49.7511C75.1542 49.9999 75.0934 50.27 75.0892 50.5439C75.0713 50.873 75.1753 51.1969 75.3807 51.452C75.479 51.5613 75.6 51.6475 75.7349 51.7039C75.87 51.7602 76.0156 51.7855 76.1613 51.7779H76.1514ZM79.2099 52.8966C79.0106 52.9158 78.8099 52.8791 78.6296 52.7907C78.4493 52.7022 78.2962 52.5654 78.1871 52.395C77.992 52.0462 77.9041 51.6462 77.935 51.2462H77.9056C77.6465 51.7044 77.2798 52.0905 76.8383 52.3699C76.3427 52.7013 75.7615 52.8758 75.1683 52.8715C74.6173 52.9018 74.0749 52.723 73.6465 52.3699C73.4616 52.2088 73.3151 52.0073 73.2175 51.7805C73.12 51.5539 73.074 51.3078 73.0832 51.0607C73.0832 50.3282 73.4883 49.6862 74.3134 49.1394C75.4484 48.4529 76.6796 47.9453 77.9647 47.6345L77.9944 46.4756C78.0081 46.1587 77.9252 45.8453 77.7573 45.5777C77.6657 45.4415 77.5402 45.3325 77.3933 45.262C77.2467 45.1915 77.084 45.1619 76.9223 45.1764C76.6746 45.1775 76.432 45.2479 76.221 45.3798C76.0101 45.5115 75.8391 45.6998 75.7265 45.9238C75.4279 46.4533 75.2379 47.0386 75.1683 47.6445H75.0892L73.6811 46.7014C73.995 46.1656 74.4368 45.7187 74.9657 45.4021C75.622 45.0106 76.374 44.8159 77.1347 44.8402C77.5098 44.8041 77.888 44.849 78.2448 44.9718C78.6016 45.0946 78.9287 45.2925 79.205 45.5526C79.413 45.7863 79.573 46.0596 79.6757 46.3567C79.7784 46.654 79.8216 46.969 79.8029 47.2832L79.7139 51.4369C79.7139 51.803 79.8423 51.9837 80.1042 51.9837C80.366 51.9837 80.5983 51.758 80.8206 51.2964L80.9392 51.3615C80.8089 51.7621 80.591 52.1273 80.3018 52.4302C80.1573 52.5773 79.9845 52.6925 79.7939 52.7684C79.6035 52.8445 79.3996 52.8795 79.1951 52.8715L79.2099 52.8966Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M85.9184 52.4256C86.1616 52.422 86.3977 52.3418 86.5941 52.1964C86.7906 52.0507 86.9378 51.847 87.0154 51.6129C87.2927 50.9072 87.4191 50.1499 87.3859 49.3908C87.411 48.4592 87.2428 47.5329 86.8918 46.6717C86.7981 46.3705 86.6148 46.1059 86.3671 45.9147C86.1195 45.7232 85.8194 45.6146 85.5084 45.6032C84.9846 45.6032 84.446 45.9796 83.9027 46.7219V49.9675C84.0627 50.5787 84.3252 51.1573 84.6783 51.6782C84.8056 51.8965 84.9852 52.0784 85.2003 52.2073C85.4152 52.3363 85.6589 52.4079 85.9086 52.4155L85.9184 52.4256ZM86.3236 44.8408C86.7432 44.8354 87.1584 44.9283 87.537 45.1117C87.9157 45.2952 88.2478 45.5647 88.5076 45.8992C89.1238 46.6998 89.4359 47.6987 89.387 48.7136C89.4341 49.8019 89.0919 50.871 88.4236 51.7232C88.1577 52.0752 87.8171 52.3614 87.4269 52.5603C87.0366 52.7592 86.6071 52.8658 86.1705 52.8721C85.3436 52.863 84.5529 52.5264 83.9667 51.934H83.9321V54.0259C83.8855 54.4436 83.9814 54.8652 84.204 55.2198C84.5537 55.5067 84.965 55.7059 85.4046 55.8018V55.9221H80.9875V55.8018C81.3172 55.6918 81.6099 55.4903 81.8323 55.2198C81.99 54.8432 82.0544 54.4334 82.0202 54.0259V46.441C82.031 46.3275 82.0182 46.2131 81.9825 46.105C81.9468 45.9969 81.8887 45.8978 81.8126 45.814C81.5598 45.6356 81.274 45.5112 80.9727 45.4477V45.3525C81.9603 45.273 82.9374 45.0898 83.8878 44.8057V46.2354H83.9173C84.1701 45.8157 84.5222 45.4671 84.9416 45.2207C85.361 44.9746 85.8344 44.8388 86.3186 44.8258L86.3236 44.8408Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M92.7346 52.8615C92.4741 52.8689 92.2147 52.8241 91.9712 52.7294C91.7279 52.6347 91.5053 52.492 91.3166 52.3097C91.1161 52.0965 90.9616 51.8431 90.8629 51.5659C90.7642 51.2885 90.7234 50.9934 90.7434 50.6994V45.4723H89.9727V45.2514C91.2572 44.4038 92.0873 43.6362 92.443 42.959H92.6209V45.0308H94.6812L94.6221 45.4773H92.6456L92.616 50.4035C92.5913 50.6148 92.6078 50.8289 92.6645 51.0338C92.7213 51.2386 92.8174 51.4301 92.947 51.5973C93.0528 51.7132 93.1813 51.8051 93.3243 51.8673C93.4673 51.9296 93.6216 51.9607 93.777 51.9584C93.9896 51.9463 94.1973 51.8903 94.3877 51.7936C94.5779 51.697 94.7469 51.562 94.8838 51.3968L94.9432 51.4719C94.7325 51.8851 94.4152 52.2325 94.0254 52.4771C93.6357 52.7218 93.1879 52.8546 92.7297 52.8615H92.7346Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M98.4829 45.2814C98.2606 45.2811 98.0421 45.3372 97.8469 45.445C97.6517 45.5529 97.4864 45.7088 97.3662 45.8986C97.0398 46.4223 96.8477 47.0208 96.808 47.6392L100.128 47.6091C100.117 47.3959 100.085 47.1843 100.034 46.9771C99.9703 46.7214 99.8859 46.4714 99.7823 46.2295C99.675 45.9646 99.5055 45.7304 99.2882 45.5473C99.0687 45.3681 98.7943 45.2723 98.5125 45.2764L98.4829 45.2814ZM101.971 50.0922C101.917 50.3748 101.832 50.6507 101.719 50.9149C101.581 51.2286 101.416 51.5291 101.225 51.8128C100.982 52.1527 100.655 52.421 100.276 52.5905C99.8275 52.7934 99.3398 52.8928 98.8485 52.8814C98.3445 52.8965 97.8427 52.8065 97.3744 52.6165C96.9061 52.4267 96.4812 52.1412 96.1261 51.7778C95.7594 51.3966 95.4738 50.9428 95.2869 50.445C95.0998 49.9471 95.0156 49.4156 95.039 48.8833C95.0178 48.3482 95.102 47.8145 95.2871 47.3129C95.472 46.8115 95.7539 46.3529 96.1162 45.9637C96.4642 45.5964 96.884 45.3067 97.3484 45.1132C97.8129 44.9198 98.3121 44.8267 98.8139 44.8401C99.2684 44.8314 99.7197 44.9203 100.138 45.101C100.482 45.2372 100.792 45.4478 101.047 45.7179C101.258 45.9575 101.438 46.2239 101.581 46.5105C101.706 46.7451 101.802 46.9944 101.867 47.253C101.907 47.4174 101.93 47.5854 101.937 47.7546V47.9503H96.8129V48.1358C96.778 48.5892 96.8336 49.0448 96.9762 49.4759C97.1188 49.9067 97.3457 50.3041 97.643 50.644C97.9099 50.9136 98.2279 51.1257 98.5777 51.2671C98.9276 51.4085 99.3021 51.4764 99.6785 51.4667C100.153 51.4857 100.621 51.3549 101.019 51.0926C101.417 50.8305 101.726 50.4494 101.902 50.002L101.971 50.0922Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M102.395 52.6008C102.73 52.4831 103.031 52.281 103.269 52.0139C103.432 51.639 103.498 51.2282 103.462 50.82V43.466C103.503 42.9848 103.433 42.5006 103.259 42.0513C103.039 41.7608 102.745 41.537 102.409 41.4042V41.2939C103.415 41.2269 104.41 41.0434 105.374 40.7471V50.8351C105.336 51.2427 105.401 51.6535 105.562 52.0289C105.791 52.294 106.086 52.4916 106.417 52.6008V52.7061H102.409L102.395 52.6008Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M114.425 50.8656C114.389 51.2114 114.454 51.5606 114.613 51.8687C114.85 52.0912 115.142 52.2453 115.458 52.3152V52.4105L112.558 52.9525V51.292C112.261 51.7833 111.848 52.1915 111.356 52.479C110.864 52.7664 110.309 52.924 109.741 52.9374C109.177 52.9469 108.629 52.7471 108.2 52.3755C107.969 52.1539 107.79 51.8823 107.677 51.5809C107.565 51.2795 107.52 50.956 107.548 50.6347V47.5296C107.582 47.0529 107.517 46.574 107.355 46.1249C107.144 45.8198 106.845 45.5885 106.5 45.4628V45.3525C107.505 45.2845 108.5 45.1011 109.465 44.8057C109.465 45.3926 109.465 46.3106 109.465 47.5195C109.465 48.7285 109.465 49.6466 109.465 50.2233C109.432 50.6719 109.564 51.1169 109.835 51.4725C109.951 51.6088 110.096 51.7173 110.258 51.7902C110.42 51.863 110.597 51.8985 110.774 51.8939C111.128 51.8706 111.472 51.7686 111.783 51.5952C112.094 51.4219 112.363 51.1813 112.572 50.8907V47.5296C112.611 47.0565 112.547 46.5804 112.385 46.135C112.171 45.8315 111.871 45.6021 111.525 45.4779V45.3675C112.529 45.3039 113.523 45.1273 114.489 44.8408V50.8605L114.425 50.8656Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M116.792 43.3855C116.688 43.2915 116.605 43.1764 116.548 43.0476C116.491 42.9187 116.461 42.7791 116.461 42.6379C116.461 42.4997 116.491 42.3631 116.548 42.2376C116.605 42.1122 116.688 42.0005 116.792 41.9105C116.997 41.7062 117.273 41.5918 117.56 41.5918C117.848 41.5918 118.123 41.7062 118.328 41.9105C118.432 42.0013 118.515 42.1138 118.572 42.2402C118.63 42.3665 118.659 42.504 118.659 42.643C118.659 42.7842 118.63 42.9237 118.572 43.0526C118.516 43.1814 118.432 43.2965 118.328 43.3905C118.123 43.5957 117.846 43.7111 117.558 43.7114C117.271 43.7112 116.995 43.5959 116.792 43.3905V43.3855ZM115.734 52.6005C116.071 52.4841 116.372 52.282 116.609 52.0136C116.772 51.6387 116.838 51.2279 116.802 50.8197V47.5088C116.843 47.0277 116.773 46.5436 116.599 46.0943C116.379 45.8039 116.085 45.5801 115.749 45.4471V45.3367C116.755 45.2699 117.749 45.0865 118.714 44.7899V50.8097C118.68 51.2173 118.744 51.6271 118.901 52.0035C119.129 52.2763 119.424 52.4824 119.756 52.6005V52.7058H115.749L115.734 52.6005Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.1953 33.759C35.4453 33.2223 36.2459 32.6855 36.6065 32.1488C36.9672 31.6121 37.1352 30.5185 37.1352 28.8681V19.5977C37.1352 17.8119 36.9705 16.5745 36.6411 15.8856C36.3052 15.1983 35.5046 14.5964 34.2546 14.0596V13.8038C36.9686 13.5858 39.6528 13.0814 42.2639 12.2988L42.1403 16.7434H42.2639C42.7135 15.5731 43.4478 14.5376 44.3983 13.7335C45.422 12.8287 46.7421 12.3456 48.099 12.3791C48.832 12.357 49.5546 12.5579 50.1743 12.956L49.5566 18.7951H49.2602C47.6791 16.7885 46.261 15.8103 45.011 15.8103C43.9338 15.8103 43.0692 16.5227 42.412 17.9172V28.858C42.412 30.5302 42.6245 31.6255 43.0494 32.1438C43.4743 32.6621 44.4461 33.1988 45.9646 33.754V34.055H34.22L34.1953 33.759Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M59.3704 34.4266C57.9294 34.4653 56.5319 33.9243 55.482 32.9216C54.4246 31.9183 53.8959 30.4134 53.8959 28.5021V14.1H51.7812V13.503C55.3123 11.162 57.595 9.05849 58.6293 7.19238H59.1234V12.9011H64.7857L64.6177 14.1251H59.1827L59.0987 27.6694C59.0987 29.1743 59.3753 30.288 60.0078 30.9551C60.298 31.2751 60.6511 31.5298 61.0443 31.7027C61.4376 31.8755 61.8621 31.9626 62.2905 31.9585C63.3281 31.9585 64.3411 31.4569 65.334 30.4134L65.5021 30.6292C63.9211 33.1842 61.892 34.4584 59.4149 34.4517L59.3704 34.4266Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M74.6002 13.5881C73.9902 13.5855 73.3894 13.7396 72.8539 14.0361C72.3183 14.3325 71.8652 14.7617 71.5369 15.2837C70.7314 16.4174 70.2276 18.0076 69.9953 20.0693L79.126 19.9841C79.0975 19.3966 79.0114 18.8135 78.8692 18.2434C78.6929 17.5379 78.46 16.8483 78.1724 16.1816C77.8702 15.4504 77.3909 14.8085 76.7791 14.3155C76.1741 13.8231 75.4202 13.5574 74.6447 13.563L74.6002 13.5881ZM84.2399 26.8266C84.0856 27.5998 83.852 28.3547 83.5433 29.0788C83.1581 29.9467 82.6917 30.775 82.15 31.552C81.4858 32.4891 80.5868 33.2286 79.546 33.6939C78.3112 34.2526 76.9695 34.525 75.6181 34.4915C74.2341 34.5358 72.8558 34.2915 71.5682 33.7737C70.2809 33.2561 69.1115 32.476 68.1326 31.4816C66.1562 29.4751 65.168 26.8014 65.168 23.5207C65.168 20.24 66.1562 17.5561 68.1326 15.4944C69.0869 14.4825 70.2395 13.6847 71.5161 13.1525C72.7924 12.6203 74.1645 12.3654 75.5439 12.4043C76.7895 12.3842 78.0256 12.625 79.1755 13.1116C80.1078 13.493 80.95 14.0709 81.646 14.8071C82.2316 15.4694 82.7299 16.2063 83.1283 16.9993C83.4672 17.6443 83.7293 18.328 83.9089 19.036C84.0235 19.4989 84.0865 19.9733 84.0967 20.4506V20.9873H70.0151L69.9706 21.4891C69.9706 24.559 70.7314 26.8548 72.2533 28.3765C72.9865 29.122 73.8612 29.7082 74.8243 30.0997C75.7876 30.4911 76.819 30.6798 77.8563 30.6541C80.6874 30.6541 82.7182 29.2995 83.9633 26.6158L84.2399 26.8266Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.7179 34.5968C92.1251 34.5149 89.5733 33.9168 87.2077 32.836L86.7383 26.8915L86.9902 26.8515C89.9548 31.3361 92.5833 33.5884 94.866 33.6085C95.2601 33.6235 95.6532 33.5549 96.0197 33.4072C96.3864 33.2595 96.7186 33.036 96.9956 32.7508C97.2755 32.4624 97.4967 32.1208 97.6459 31.7454C97.7951 31.3702 97.8698 30.9683 97.8652 30.5636C97.8906 30.0515 97.798 29.5404 97.5948 29.071C97.3914 28.6016 97.0831 28.1869 96.6941 27.8596C95.5347 26.9246 94.275 26.1253 92.9392 25.4769C92.1633 25.0907 91.5803 24.7696 91.1801 24.5339C90.7799 24.298 90.2611 23.9519 89.6189 23.4803C89.0638 23.0948 88.5648 22.6323 88.1366 22.1058C87.7525 21.5951 87.4429 21.0308 87.2176 20.4304C86.9567 19.7553 86.834 19.0332 86.8569 18.3084C86.834 17.4426 87.0213 16.5843 87.4021 15.8093C87.7831 15.0342 88.3456 14.3661 89.0407 13.8639C90.51 12.8169 92.2712 12.2755 94.0656 12.3188C96.3278 12.3991 98.5607 12.8637 100.672 13.6933L101.027 19.1863L100.731 19.2315C98.211 15.3019 95.8838 13.3271 93.7495 13.3071C93.3963 13.2989 93.0456 13.3651 92.719 13.5015C92.3924 13.6379 92.0973 13.8416 91.8521 14.0997C91.3243 14.659 91.0351 15.407 91.0468 16.1815C91.0316 16.7237 91.1435 17.2618 91.3729 17.7516C91.6537 18.2853 92.0508 18.7469 92.5339 19.1009C93.0066 19.4823 93.5016 19.8342 94.0162 20.1545C94.474 20.4288 95.1658 20.7932 96.0914 21.2481C97.7865 22.0327 99.349 23.084 100.721 24.3633C101.233 24.8967 101.629 25.5328 101.884 26.2308C102.139 26.9288 102.248 27.6734 102.203 28.4165C102.212 29.2833 102.026 30.1406 101.658 30.9231C101.291 31.7056 100.752 32.3925 100.084 32.9313C98.7051 34.0701 96.9215 34.6269 94.6981 34.6269L94.7179 34.5968Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M114.901 30.7848C115.838 30.3452 116.642 29.6614 117.234 28.8034L117.446 20.9476C116.772 21.1347 116.112 21.3693 115.47 21.6499C113.976 22.1956 112.625 23.0791 111.517 24.2333C111.067 24.7351 109.773 26.1848 109.743 28.0559C109.714 28.6532 109.838 29.2479 110.104 29.7816C110.351 30.2696 110.719 30.6845 111.171 30.9855C112.569 31.8633 114.363 31.0356 114.916 30.7848H114.901ZM120.89 34.512C119.536 34.512 118.607 34.0605 118.079 33.1576C117.537 32.2017 117.294 31.1014 117.382 30.0023H117.288C116.579 31.2676 115.568 32.3318 114.348 33.0973C113.948 33.3625 113.525 33.5891 113.083 33.7745C112.246 34.1463 111.352 34.3686 110.44 34.4319C109.62 34.4719 107.139 34.3414 105.692 32.696C104.16 30.9504 104.368 28.2214 105.02 26.5109C106.21 23.3805 109.753 22.1265 112.975 21.1433C114.439 20.6655 115.937 20.2999 117.456 20.0497C117.486 18.9863 117.51 17.9277 117.54 16.8693C117.581 15.9851 117.353 15.1097 116.888 14.361C116.633 13.9879 116.285 13.6901 115.879 13.498C115.474 13.3059 115.026 13.2263 114.58 13.2675C113.207 13.2675 112.11 13.9497 111.305 15.3242C110.479 16.7764 109.955 18.3844 109.763 20.0497L109.551 20.0899L105.692 17.4863C106.556 16.0166 107.771 14.7917 109.225 13.9246C111.025 12.843 113.092 12.3069 115.183 12.3796C117.807 12.3796 119.709 13.0267 120.87 14.331C121.444 14.974 121.885 15.7266 122.168 16.5449C122.452 17.3632 122.571 18.2307 122.52 19.0966L122.264 30.529C122.264 31.5323 122.624 32.0339 123.341 32.0339C124.057 32.0339 124.739 31.4119 125.317 30.1427L125.658 30.3133C125.297 31.4155 124.698 32.4216 123.904 33.2579C123.654 33.5193 123.37 33.744 123.059 33.9251C122.398 34.3079 121.651 34.5102 120.89 34.512Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M162.185 30.785C163.121 30.3453 163.926 29.6616 164.517 28.8034L164.72 20.9478C164.045 21.134 163.385 21.3688 162.743 21.6501C161.25 22.1958 159.898 23.0791 158.791 24.2335C158.341 24.7351 157.046 26.185 157.017 28.056C156.987 28.6532 157.112 29.248 157.377 29.7816C157.624 30.2687 157.99 30.6832 158.44 30.9855C159.843 31.8635 161.637 31.0358 162.19 30.785H162.185ZM168.178 34.5122C166.824 34.5122 165.896 34.0607 165.367 33.1576C164.825 32.2019 164.582 31.1016 164.67 30.0025H164.586C163.868 31.2694 162.849 32.3336 161.622 33.0975C161.222 33.3625 160.798 33.5892 160.357 33.7747C159.52 34.1465 158.625 34.3688 157.713 34.4319C156.893 34.472 154.413 34.3416 152.965 32.6962C151.434 30.9506 151.641 28.2216 152.293 26.5109C153.479 23.3807 157.027 22.1266 160.243 21.1433C161.71 20.6661 163.209 20.3005 164.729 20.0497C164.756 18.9863 164.784 17.9262 164.813 16.8694C164.852 15.9847 164.623 15.1093 164.156 14.3612C163.903 13.9881 163.555 13.6902 163.151 13.498C162.746 13.3059 162.299 13.2263 161.854 13.2676C160.48 13.2676 159.383 13.9498 158.578 15.3243C157.753 16.7765 157.228 18.3845 157.037 20.0497L156.824 20.0899L152.975 17.4864C153.837 16.0168 155.051 14.7918 156.503 13.9247C158.305 12.8424 160.374 12.3063 162.467 12.3797C165.085 12.3797 166.987 13.0268 168.154 14.3311C168.727 14.9741 169.168 15.7268 169.452 16.5451C169.735 17.3634 169.855 18.2308 169.804 19.0966L169.547 30.5292C169.547 31.5323 169.908 32.0341 170.624 32.0341C171.34 32.0341 172.022 31.4119 172.6 30.1429L172.936 30.3133C172.577 31.4153 171.98 32.4216 171.187 33.2581C170.937 33.5184 170.652 33.7427 170.342 33.9252C169.683 34.3072 168.937 34.5094 168.178 34.5122Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M147.98 28.9079C147.98 30.5801 148.145 31.6754 148.474 32.1937C148.81 32.7304 149.591 33.2672 150.796 33.8039V34.1049H139.823V33.8039C141.068 33.2672 141.873 32.7304 142.209 32.1937C142.545 31.6569 142.738 30.5634 142.758 28.9079C142.758 28.5468 142.758 27.4681 142.782 25.7124C142.807 23.9567 142.782 22.838 142.782 22.3866C142.782 19.5323 142.55 17.621 142.066 16.6528C141.832 16.1824 141.465 15.7932 141.013 15.5342C140.561 15.2752 140.044 15.1583 139.526 15.198C138.492 15.1604 137.472 15.4535 136.611 16.0357C135.698 16.7235 134.899 17.555 134.244 18.4988V28.8677C134.244 30.5198 134.409 31.6134 134.738 32.1485C135.079 32.6852 135.86 33.222 137.066 33.7587V34.0597H126.082V33.7587C127.33 33.2236 128.133 32.6869 128.488 32.1485C128.854 31.6117 129.022 30.5181 129.022 28.8677V19.7228C129.022 17.7915 128.829 16.5274 128.469 15.9053C128.108 15.2833 127.332 14.6613 126.122 14.0392V13.7784C128.835 13.5474 131.52 13.0433 134.136 12.2734V17.2096C136.25 13.9891 138.836 12.3721 141.893 12.3587C143.447 12.3308 144.958 12.8802 146.142 13.9038C147.348 14.9321 147.96 16.5223 147.96 18.6895V28.8376L147.98 28.9079Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.528 8.66207C5.04699 8.66307 4.57652 8.51916 4.17609 8.24856C3.77568 7.97797 3.46335 7.59286 3.2786 7.14195C3.09384 6.69107 3.045 6.19466 3.13824 5.71557C3.23148 5.23648 3.46262 4.79624 3.80239 4.45057C4.14217 4.10491 4.57529 3.86934 5.04699 3.77371C5.51868 3.67807 6.00769 3.72664 6.45219 3.9133C6.89666 4.09996 7.27662 4.4163 7.54395 4.82227C7.81129 5.22826 7.95397 5.70564 7.95399 6.19399C7.95399 6.8477 7.69855 7.4747 7.24372 7.93741C6.7889 8.40013 6.17185 8.66074 5.528 8.66207ZM10.0094 6.57524C9.40346 6.35686 8.76918 6.2301 8.12692 6.19901C8.78349 6.1702 9.43253 6.04517 10.0539 5.8278C10.2732 5.69702 10.465 5.52368 10.6183 5.31767C10.7716 5.11165 10.8835 4.87697 10.9475 4.62707C11.0115 4.37715 11.0264 4.11689 10.9913 3.86113C10.9563 3.60538 10.8719 3.35914 10.7431 3.13648C10.6143 2.91382 10.4436 2.71909 10.2407 2.56342C10.0378 2.40774 9.80663 2.29418 9.56047 2.22919C9.31432 2.1642 9.05799 2.1491 8.80607 2.18469C8.55416 2.2203 8.31163 2.30592 8.09234 2.43669C7.58373 2.86707 7.14373 3.37472 6.78793 3.94162C7.10254 3.35057 7.32742 2.71468 7.45494 2.05544C7.46818 1.79052 7.4282 1.52564 7.33745 1.27689C7.2467 1.02815 7.1071 0.800739 6.92708 0.608484C6.74707 0.416229 6.53045 0.263152 6.29037 0.158547C6.05028 0.0539425 5.79173 0 5.53047 0C5.2692 0 5.01067 0.0539425 4.77057 0.158547C4.53048 0.263152 4.31385 0.416229 4.13384 0.608484C3.95385 0.800739 3.81422 1.02815 3.72347 1.27689C3.63272 1.52564 3.59276 1.79052 3.60598 2.05544C3.72171 2.70024 3.93504 3.32296 4.23843 3.90149C3.86956 3.3502 3.41967 2.85959 2.90437 2.44672C2.69258 2.30166 2.45352 2.2026 2.20223 2.15583C1.95093 2.10906 1.69281 2.11555 1.44411 2.1749C1.1954 2.23427 0.961464 2.34521 0.757009 2.50076C0.552556 2.6563 0.382 2.8531 0.256051 3.07879C0.12619 3.30575 0.0435147 3.55734 0.0131224 3.81799C-0.0172699 4.07866 0.00526332 4.34288 0.0793394 4.59436C0.153415 4.84584 0.277465 5.07924 0.443823 5.28017C0.610181 5.48108 0.815326 5.64527 1.0466 5.76259C1.65447 5.99107 2.29202 6.12796 2.93897 6.16891C2.28261 6.19596 1.63356 6.31929 1.01201 6.53511C0.794645 6.66687 0.604971 6.84078 0.453813 7.04696C0.302655 7.25315 0.192975 7.48753 0.131036 7.73674C0.0690971 7.98595 0.0561097 8.24512 0.0928195 8.49942C0.129529 8.75373 0.215221 8.9982 0.344991 9.21888C0.474761 9.43957 0.646073 9.63215 0.849146 9.78562C1.05222 9.93909 1.28308 10.0504 1.52854 10.1133C1.774 10.1762 2.02924 10.1894 2.27974 10.1521C2.53021 10.1149 2.771 10.0279 2.98838 9.89611C3.47946 9.47349 3.90868 8.98195 4.26312 8.43633C3.98294 9.01806 3.78817 9.63833 3.68505 10.2774C3.68505 11.4211 4.40147 12.3441 5.528 12.3441C5.78858 12.3411 6.04588 12.2846 6.2844 12.178C6.52292 12.0714 6.73774 11.9169 6.9159 11.7239C7.09408 11.5308 7.23193 11.3031 7.32118 11.0545C7.41042 10.8059 7.4492 10.5416 7.43519 10.2774C7.30726 9.6446 7.09622 9.03213 6.80769 8.45639C7.18204 9.01797 7.63098 9.52439 8.14175 9.96132C8.35597 10.1045 8.59704 10.2013 8.84982 10.2455C9.1026 10.2897 9.36164 10.2805 9.61074 10.2183C9.85983 10.1561 10.0936 10.0424 10.2974 9.88424C10.5012 9.72608 10.6706 9.52688 10.795 9.29914C10.9258 9.06943 11.0093 8.81516 11.0405 8.5517C11.0716 8.28826 11.0498 8.02113 10.9764 7.76649C10.903 7.51183 10.7794 7.27498 10.6132 7.07021C10.447 6.86547 10.2416 6.69706 10.0094 6.57524Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.0219 21.4186L17.7628 8.67191L12.9751 21.4186H22.0219ZM31.0489 29.8112C31.2967 30.6744 31.7024 31.4828 32.2445 32.1939C32.9718 32.8679 33.8209 33.3926 34.7447 33.739V34.04H21.587V33.739C22.5179 33.3892 23.4012 32.9206 24.2156 32.3444C24.4342 32.184 24.6136 31.9749 24.7403 31.7332C24.8672 31.4915 24.9377 31.2234 24.9468 30.9498C24.8749 30.1027 24.6801 29.2711 24.3687 28.4819L22.6246 23.2848H12.2487L11.7546 24.6192C10.6775 27.3833 10.1291 29.2342 10.1044 30.1371C10.0794 30.5007 10.1328 30.8655 10.2608 31.206C10.3888 31.5464 10.5883 31.8545 10.8455 32.1087C11.652 32.7812 12.5595 33.3181 13.5334 33.6988V34.04H4.38281V33.744C5.73111 32.8554 6.90409 31.7189 7.84144 30.3931C8.84932 28.6512 9.69776 26.8192 10.3761 24.9202L17.1353 7.172L15.8259 4.36281C17.6865 3.64767 19.4602 2.71861 21.1128 1.59375L31.039 29.8363L31.0489 29.8112Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_144_724\">\\n<rect width=\"173\" height=\"56\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"MvcHQmIOZ\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xxnvxj framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"MvcHQmIOZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ynqalp\",\"data-framer-name\":\"Group 1255\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:57,intrinsicWidth:158,layoutDependency:layoutDependency,layoutId:\"BNqKrDuEF\",svg:'<svg width=\"158\" height=\"57\" viewBox=\"0 0 158 57\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M37.0061 0.462891C36.6978 1.07964 36.3894 1.64498 36.081 2.31313C35.8754 2.77569 35.7212 3.23826 35.567 3.64942V3.70082C35.3101 4.78013 35.2587 5.96224 35.2587 7.04155V20.2503C35.2587 21.6894 35.3615 22.8715 35.567 23.8994C36.3894 27.1373 39.062 28.4736 42.1457 27.6513C46.6171 26.5206 46.2574 22.4603 46.2574 18.7598V7.04155C46.2574 4.62595 45.692 2.57012 44.4071 0.462891H52.0651C51.7053 1.07964 51.2942 1.64498 51.0372 2.31313C50.883 2.57011 50.8316 2.7243 50.7802 2.92988C50.6774 3.18686 50.626 3.39244 50.5232 3.64942C50.1635 4.78013 50.1121 5.96224 50.1121 7.09295V20.0447C50.1121 20.9184 50.1121 21.6894 50.0607 22.3061C50.0093 22.9743 49.9579 23.4882 49.9065 23.8994C49.1869 28.5764 44.6127 30.3753 40.4496 30.6322C39.9871 30.6322 39.5245 30.6836 39.0106 30.6836C36.338 30.6836 33.0486 30.3239 30.89 28.4736C30.0163 27.7027 29.3481 26.7262 28.937 25.544C28.4744 24.3619 28.3202 22.9229 28.3202 21.3296V7.09295C28.3202 4.52316 27.7035 2.67291 26.3672 0.462891C29.9306 0.462891 33.4769 0.462891 37.0061 0.462891Z\" fill=\"black\"/>\\n<path d=\"M85.3699 3.7519C84.1878 4.77982 83.8281 6.47587 84.2392 7.96635C84.2392 8.01775 84.2906 8.06915 84.342 8.12055C84.3934 8.42893 84.5476 8.73729 84.7532 8.99427C85.5241 10.0736 86.8604 10.8959 87.8883 11.5641L92.1542 14.288C92.4112 14.4422 92.6681 14.5964 92.9251 14.6992C93.1307 14.8534 93.3363 15.059 93.5419 15.2132C94.6212 15.9841 95.3921 16.8064 95.9061 17.6288C97.9105 20.8667 97.0882 25.6979 94.1586 28.1135C93.6446 28.5761 93.0793 28.9873 92.4626 29.2442C89.8928 30.5291 85.9353 30.6833 82.9029 30.3235C82.389 30.2893 81.875 30.2207 81.361 30.118C80.7443 30.0152 80.1276 29.861 79.4594 29.7068C78.6885 29.5012 78.0203 29.2442 77.3008 28.9873V28.7817V22.1002L82.6459 26.7258C82.8515 26.9314 83.0571 27.0856 83.2627 27.1884C83.4169 27.2912 83.6225 27.394 83.7767 27.4454C83.9308 27.5482 84.1364 27.5996 84.342 27.651C85.2671 27.8052 86.7062 27.5482 87.5285 27.2398C89.1732 26.623 90.2011 25.2868 90.2011 23.4365C90.2011 22.6656 90.0469 21.8946 89.6358 21.2265C89.3788 20.9181 89.1218 20.5583 88.6593 20.1472V20.1986C88.2481 19.7874 87.7341 19.3762 87.1174 18.9651L82.389 15.7785C81.9264 15.4702 81.4638 15.1618 81.0527 14.8534C79.9734 13.9797 79.2538 13.1573 78.7399 12.335C78.3801 11.7182 78.1231 11.0501 77.9689 10.3306C77.198 7.34961 78.0203 4.26587 80.3331 2.26143L80.3845 2.15863C80.6415 1.95305 80.8985 1.74746 81.1555 1.59327C83.3141 0.154191 85.8325 0 88.2995 0H88.8648C90.0469 0 91.1263 0.0514084 92.257 0.205596C92.8737 0.308388 93.4391 0.359783 94.0044 0.462575C94.6212 0.565367 95.1351 0.719545 95.6491 0.822336L95.9061 0.925134V1.18211V7.45239L90.9207 3.49493C90.6637 3.34074 90.5095 3.18654 90.3039 3.08375C90.1497 2.92956 89.9442 2.87817 89.7386 2.82677C88.2995 2.26142 86.4492 2.77538 85.3699 3.7519Z\" fill=\"black\"/>\\n<path d=\"M131.214 3.7519C130.084 4.77982 129.672 6.47587 130.084 7.96635C130.135 8.01775 130.135 8.06915 130.186 8.12055C130.289 8.42893 130.443 8.73729 130.598 8.99427C131.368 10.0736 132.705 10.8959 133.784 11.5641L138.05 14.288C138.256 14.4422 138.513 14.5964 138.769 14.6992C138.975 14.8534 139.181 15.059 139.386 15.2132C140.466 15.9841 141.288 16.8064 141.75 17.6288C143.755 20.8667 142.933 25.6979 140.054 28.1135H140.003C139.489 28.5761 138.924 28.9873 138.307 29.2442C135.789 30.5291 131.78 30.6833 128.747 30.3235C128.233 30.2893 127.719 30.2207 127.205 30.118C126.589 30.0152 125.972 29.861 125.304 29.7068C124.533 29.5012 123.865 29.2442 123.094 28.9873V28.7817V22.1002L128.49 26.7258C128.747 26.9314 128.901 27.0856 129.107 27.1884C129.261 27.2912 129.467 27.394 129.672 27.4454C129.827 27.5482 129.981 27.5996 130.186 27.651C131.111 27.8052 132.602 27.5482 133.373 27.2398C135.069 26.623 136.097 25.2868 136.097 23.4365C136.097 22.6656 135.891 21.8946 135.48 21.2265C135.223 20.9181 134.966 20.5583 134.555 20.1472V20.1986C134.092 19.7874 133.578 19.3762 132.962 18.9651L128.233 15.7785C127.771 15.4702 127.308 15.1618 126.897 14.8534C125.869 13.9797 125.098 13.1573 124.584 12.335C124.224 11.7182 123.967 11.0501 123.762 10.3306C122.991 7.34961 123.813 4.26587 126.178 2.26143L126.229 2.15863C126.486 1.95305 126.743 1.74746 127.051 1.59327C129.158 0.154191 131.677 0 134.144 0H134.709C135.891 0 136.971 0.0514084 138.101 0.205596C138.718 0.308388 139.335 0.359783 139.849 0.462575C140.466 0.565367 141.031 0.719545 141.493 0.822336L141.75 0.925134V1.18211V7.45239L136.765 3.49493C136.559 3.34074 136.354 3.18654 136.148 3.08375C135.994 2.92956 135.789 2.87817 135.634 2.82677C134.144 2.26142 132.294 2.77538 131.214 3.7519Z\" fill=\"black\"/>\\n<path d=\"M63.9862 13.4149C66.1448 12.5926 66.8129 10.3826 66.8129 8.32675V8.27535C66.8129 6.88766 66.556 5.29439 65.5794 4.16369C65.1169 3.64973 64.5515 3.34135 63.9862 3.13577V0.463195C66.299 0.463195 68.6118 0.411793 70.6676 1.64529C71.1302 1.90227 71.5413 2.26204 71.9011 2.67321C73.7 4.72904 74.1111 7.86419 73.186 10.3312C72.2095 13.0038 69.8967 14.4943 67.2755 15.111L73.0318 24.1053C73.6486 25.1332 74.4709 26.0583 75.3446 26.9834C75.4474 27.0862 75.5502 27.2404 75.653 27.3432C75.8072 27.446 75.91 27.5488 76.0128 27.6516C76.6295 28.2683 77.2977 28.8337 77.9658 29.3476L77.7602 29.9644C74.9335 29.9644 72.1581 29.9644 69.3827 29.9644L63.9862 21.4327V13.4149ZM61.108 2.87879V13.7747C62.0845 13.7747 63.0096 13.7747 63.9862 13.4149V21.4841L61.108 17.0126V23.5913C61.108 25.1846 61.2622 26.6751 61.9303 28.1141C62.2387 28.7823 62.5985 29.399 62.9582 30.0158C59.5661 30.0158 56.1569 30.0158 52.7305 30.0158L53.0902 29.4504C53.5528 28.6281 53.964 27.7544 54.221 26.8293V26.7779C54.3237 26.6237 54.3237 26.3667 54.4265 26.1097C54.5807 25.1846 54.5807 24.2595 54.5807 23.3343V7.14465H54.6321C54.6321 6.42511 54.5807 5.75696 54.5293 5.1916C54.3237 3.39275 53.707 2.05647 52.7305 0.463195C56.431 0.463195 60.1315 0.463195 63.7806 0.463195H63.9862V3.18717C63.061 2.87879 62.0331 2.87879 61.108 2.87879Z\" fill=\"black\"/>\\n<path d=\"M108.241 0.462891C107.881 1.07964 107.573 1.64498 107.316 2.31313C107.059 2.77569 106.956 3.23826 106.802 3.64942V3.70082C106.545 4.78013 106.442 5.96224 106.442 7.04155V20.2503C106.442 21.6894 106.545 22.8715 106.802 23.8994C107.573 27.1373 110.246 28.4736 113.329 27.6513C117.801 26.5206 117.441 22.4603 117.441 18.7598V7.04155C117.441 4.62595 116.876 2.57012 115.539 0.462891H123.249C122.889 1.07964 122.529 1.64498 122.221 2.31313C122.118 2.57011 122.015 2.7243 121.964 2.92988C121.861 3.18686 121.758 3.39244 121.758 3.64942H121.707C121.347 4.78013 121.296 5.96224 121.296 7.09295V20.0447C121.296 20.9184 121.296 21.6894 121.244 22.3061C121.193 22.9743 121.193 23.4882 121.09 23.8994C120.319 28.5764 115.796 30.3753 111.685 30.6322C111.171 30.6322 110.708 30.6836 110.246 30.6836C107.522 30.6836 104.232 30.3239 102.074 28.4736C101.2 27.7027 100.532 26.7262 100.121 25.544C99.658 24.3619 99.5038 22.9229 99.5038 21.3296V7.09295C99.5038 4.52316 98.8871 2.67291 97.5508 0.462891C101.114 0.462891 104.678 0.462891 108.241 0.462891Z\" fill=\"black\"/>\\n<path d=\"M48.1023 48.5688H48.1537C48.4107 48.0548 49.0275 45.8448 49.5414 46.4102C49.5928 46.4102 49.6442 46.4102 49.6956 46.4102C50.1068 46.5644 50.1582 47.1811 49.9012 47.8493C49.747 48.1576 49.5928 48.5174 49.4386 48.8258L49.3359 48.98C48.9761 50.0593 47.9996 51.19 46.8175 51.9095C44.1449 53.9654 40.7527 52.9375 41.1639 49.5453C41.2667 48.7744 41.4209 47.9521 41.5751 47.2325C41.6265 47.0783 41.6265 46.9755 41.6265 46.8213C41.7293 46.1532 41.5751 45.6392 40.65 45.6392C38.5941 45.7934 37.2064 45.1253 36.7439 44.303C35.8188 47.0783 32.992 49.7509 29.2401 51.3442C28.5719 51.2414 28.4177 50.9844 28.1094 50.3163C30.268 49.3911 33.1462 47.9007 34.1227 44.303C35.0992 40.6025 33.3004 39.7801 34.6366 38.7008C35.202 38.2383 36.4869 38.7522 37.0009 39.3176C37.926 40.4483 37.155 41.4762 37.2578 42.8639C37.3606 44.6627 40.393 43.6348 42.5002 43.8404C44.9672 44.0974 44.8644 46.77 44.3505 48.6716C43.117 53.0402 46.6633 50.9844 48.1023 48.5688Z\" fill=\"black\"/>\\n<path d=\"M141.694 48.8261C141.951 48.6205 142.105 48.4149 142.31 48.2607C142.465 48.1579 142.67 47.9009 142.876 47.6954C143.133 47.2328 143.133 46.7188 142.927 46.6674C142.876 46.5646 142.824 46.5646 142.567 46.7702C141.18 48.1065 136.708 50.4193 133.368 50.9333V52.6294C136.451 52.2182 139.843 50.5735 141.694 48.8261ZM133.368 45.5367C134.55 45.2283 135.629 44.8172 136.503 44.2004C138.764 42.5558 139.329 40.7055 136.811 39.3178C135.68 38.7525 134.498 38.7525 133.368 39.0608V41.4251C134.036 41.0139 134.704 40.7055 135.423 40.6541C136.708 40.7055 136.4 42.0932 135.372 42.8641C134.755 43.3781 134.036 43.6865 133.368 43.9948V45.5367ZM133.368 50.9333C133.111 50.9847 132.905 50.9847 132.699 51.0361C131.003 51.0875 129.513 50.6249 129.41 49.0316C129.256 48.1065 129.616 46.9244 129.924 45.9993C129.924 45.9993 129.924 45.9993 129.975 45.9993C131.055 45.9479 132.237 45.7937 133.368 45.5367V43.9948C132.031 44.5088 130.746 44.7144 130.438 44.7658C130.849 43.8921 131.98 42.4016 133.368 41.4251V39.0608C129.924 39.986 126.892 43.9948 126.48 47.3356V48.7747C126.994 52.321 130.027 53.1433 133.368 52.6294V50.9333Z\" fill=\"black\"/>\\n<path d=\"M63.8343 48.8261C64.0398 48.6205 64.2454 48.4149 64.3996 48.2607C64.6052 48.1579 64.7594 47.9009 64.965 47.6954C65.222 47.2328 65.222 46.7188 65.0678 46.6674C65.0164 46.5646 64.9136 46.5646 64.6566 46.7702C63.3203 48.1065 58.8489 50.4193 55.4567 50.9333V52.6294C58.5919 52.2182 61.9326 50.5735 63.8343 48.8261ZM55.4567 45.5367C56.6388 45.2283 57.7696 44.8172 58.5919 44.2004C60.8533 42.5558 61.4187 40.7055 58.9517 39.3178C57.7695 38.7525 56.5875 38.7525 55.4567 39.0608V41.4251C56.1249 41.0139 56.8444 40.7055 57.5126 40.6541C58.8489 40.7055 58.4891 42.0932 57.5126 42.8641C56.8444 43.3781 56.1763 43.6865 55.4567 43.9948V45.5367ZM55.4567 50.9333C55.2512 50.9847 54.9942 50.9847 54.7886 51.0361C53.0925 51.0875 51.6535 50.6249 51.4993 49.0316C51.3965 48.1065 51.7048 46.9244 52.0132 45.9993C52.0132 45.9993 52.0646 45.9993 52.116 45.9993C53.1439 45.9479 54.326 45.7937 55.4567 45.5367V43.9948C54.1205 44.5088 52.8869 44.7144 52.5786 44.7658C52.9383 43.8921 54.0691 42.4016 55.4567 41.4251V39.0608C52.0646 39.986 48.9809 43.9948 48.6211 47.3356V48.7747C49.0837 52.321 52.116 53.1433 55.4567 52.6294V50.9333Z\" fill=\"black\"/>\\n<path d=\"M117.185 48.2616C117.442 47.799 118.059 45.589 118.573 46.1543C118.624 46.1543 118.727 46.1543 118.778 46.1543C119.138 46.3085 119.189 46.9253 118.932 47.5934C118.83 47.9018 118.675 48.2615 118.418 48.5699V48.7241C118.059 49.8034 117.031 50.9341 115.849 51.6537C113.176 53.7095 109.835 52.6816 110.195 49.2895C110.247 48.5185 110.452 47.6962 110.606 46.9767H110.658C110.658 46.8225 110.658 46.7197 110.658 46.5655C110.761 45.8973 110.606 45.332 109.733 45.3834C107.677 45.4862 106.289 44.8694 105.775 44.0471C104.85 46.8225 102.023 49.4951 98.2713 51.0369C97.6546 50.9855 97.449 50.7286 97.1406 50.0604C99.2992 49.1353 102.177 47.6448 103.154 44.0471C104.13 40.3466 102.332 39.5243 103.617 38.445C104.285 37.9824 105.57 38.4963 106.032 39.0617C106.957 40.1924 106.186 41.2203 106.289 42.608C106.392 44.4069 109.424 43.379 111.583 43.5845C114.05 43.8415 113.947 46.5141 113.382 48.4157C112.097 52.7844 115.746 50.7286 117.185 48.2616Z\" fill=\"black\"/>\\n<path d=\"M102.276 48.8261C102.481 48.6205 102.687 48.4149 102.892 48.2607C103.047 48.1579 103.252 47.9009 103.406 47.6954C103.663 47.2328 103.715 46.7188 103.509 46.6674C103.509 46.5646 103.355 46.5646 103.149 46.7702C101.762 48.1065 97.2903 50.4193 93.9495 50.9333V52.6294C97.0333 52.2182 100.374 50.5735 102.276 48.8261ZM93.9495 45.5367C95.0802 45.2283 96.211 44.8172 97.0847 44.2004C99.2947 42.5558 99.9115 40.7055 97.3931 39.3178C96.2624 38.7525 95.0802 38.7525 93.9495 39.0608V41.4251C94.5663 41.0139 95.2858 40.7055 95.954 40.6541C97.2903 40.7055 96.9305 42.0932 95.954 42.8641C95.2858 43.3781 94.6177 43.6865 93.9495 43.9948V45.5367ZM93.9495 50.9333C93.6926 50.9847 93.4356 50.9847 93.23 51.0361C91.5339 51.0875 90.1463 50.6249 89.9407 49.0316C89.8379 48.1065 90.1463 46.9244 90.4546 45.9993C90.4889 45.9993 90.5231 45.9993 90.5574 45.9993C91.6367 45.9479 92.8188 45.7937 93.9495 45.5367V43.9948C92.5619 44.5088 91.3284 44.7144 91.02 44.7658C91.4312 43.8921 92.5105 42.4016 93.9495 41.4251V39.0608C90.5574 39.986 87.4737 43.9948 87.0625 47.3356V48.7747C87.5765 52.321 90.5574 53.1433 93.9495 52.6294V50.9333Z\" fill=\"black\"/>\\n<path d=\"M149.869 54.6331C154.135 53.9136 153.775 51.6007 149.047 49.6477C145.141 48.1058 139.436 45.9986 142.211 40.7562C142.365 40.5506 142.468 40.3965 142.622 40.2423C144.729 36.4904 152.644 34.9999 155.985 35.925V35.9764C156.139 35.9764 156.242 36.0278 156.345 36.0792C157.578 37.2613 157.321 37.1585 156.705 37.7753C155.78 38.7518 150.023 41.0132 149.766 39.1116L149.818 38.0322C148.379 37.2099 141.543 40.4478 144.627 44.5081C145.757 45.6902 147.145 46.3584 148.584 46.9237C150.897 47.7975 156.756 49.5963 156.139 53.0398C155.934 54.2219 154.752 55.3013 152.182 55.9694C146.991 57.4599 139.179 55.918 135.992 54.6845C135.889 54.4275 135.221 53.8108 135.632 53.708C140.361 54.7873 145.552 55.3526 149.869 54.6331Z\" fill=\"black\"/>\\n<path d=\"M16.3439 54.3763C21.0723 53.2969 28.7303 49.7506 24.2074 44.5082C20.9181 41.0647 14.1852 40.3452 12.849 39.4201C12.3864 42.6066 10.5361 45.382 10.4333 51.8579C10.3306 51.9093 10.1764 51.9092 10.0736 51.9606C10.0736 51.9092 10.0736 51.8579 10.0222 51.8579C5.96192 46.0501 12.0266 40.7564 12.1294 33.2012C12.4892 32.8414 12.849 32.9442 12.9517 33.2012C13.2601 33.7151 13.3115 35.0514 13.1573 36.3877C15.8813 34.6403 19.1706 34.743 21.5863 33.2526C25.5951 30.7856 20.5069 28.0616 13.2087 29.9632C11.0501 30.5286 9.14846 31.4023 7.96635 32.3788C7.81217 32.533 7.65798 32.7386 7.55519 32.9442C7.14402 33.7151 6.47587 35.514 5.44795 34.3319L5.39656 34.2805C5.03679 33.6637 5.03679 33.1498 5.29376 32.533C6.21889 30.8884 9.40543 29.7576 10.9987 29.2951C17.012 27.4962 25.5951 27.1879 26.0577 31.0426C26.5716 34.6917 20.4041 36.1307 16.4467 37.6212C15.0076 38.1352 15.2132 39.0089 16.4467 39.2659C21.9974 40.4994 30.2721 43.2747 28.0107 49.5964C24.8756 58.3337 7.14402 57.8198 0.359769 53.9137C0.256978 53.6567 0.154188 53.4511 0 53.2969C4.52283 54.993 12.0266 55.4042 16.3439 54.3763Z\" fill=\"black\"/>\\n<path d=\"M89.7394 44.8679C87.8892 44.9707 85.268 44.3539 84.7026 42.812C84.3428 41.8355 84.0859 40.859 82.2356 40.7048C80.4368 40.5506 80.6423 43.6344 81.4133 43.9427C81.5161 43.9941 81.5675 44.0455 81.6703 44.0969V44.0455C82.0814 44.2511 82.2356 44.6109 82.2356 45.1249L82.1842 45.2276C81.8758 47.6946 77.5586 52.7828 75.2972 51.3438C73.9609 50.2644 74.3207 47.5405 74.7318 46.1014C75.143 44.7137 76.3251 43.583 75.7083 42.0925L74.2179 41.6299C73.4983 41.2188 73.0872 41.5785 72.5732 42.9662C72.2648 43.7886 71.9565 46.1528 71.9565 47.0779C71.8023 47.6432 71.8537 47.4377 71.6995 47.746C65.8403 56.3805 64.761 47.9002 68.4101 42.7092C68.4101 41.7327 66.7141 41.2702 66.0973 41.0132C63.1164 42.0925 62.7566 50.1102 64.8124 52.2175C66.2001 53.5538 68.4615 53.0398 70.1062 51.7035C70.9285 51.1896 71.6481 50.47 72.1106 49.8533C75.4 56.5861 83.1093 50.47 84.0345 44.8679C84.9596 45.6388 87.1182 45.9472 89.5338 46.05C89.6366 46.05 89.6366 45.2276 89.7394 44.8679Z\" fill=\"black\"/>\\n<path d=\"M123.507 37.3657C123.763 37.6741 124.432 38.9075 122.53 39.8327C121.399 40.3466 118.881 38.2394 119.755 37.0059C121.194 36.8517 122.684 36.5433 123.507 37.3657ZM117.082 49.3409V47.7476C117.133 46.8739 117.39 45.7946 117.75 44.6125C118.213 43.0706 120.731 41.7857 121.759 43.0192C121.245 44.2013 117.133 51.9107 122.941 50.6772C125.203 49.9063 126.642 47.799 126.899 46.3085C127.31 45.7946 127.053 47.0795 127.053 47.542C127.053 48.1074 126.899 48.6214 126.642 49.0839C126.385 49.5979 125.974 50.009 125.562 50.4202C122.53 53.5554 117.545 53.9665 117.082 49.3409Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"yf8IDqzSJ\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ni1aus framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"yf8IDqzSJ\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2297,intrinsicWidth:4998,pixelHeight:2297,pixelWidth:4998,sizes:\"202px\",src:\"https://framerusercontent.com/images/sj66V4KryJN4McNDWWGHedF6aW8.png\",srcSet:\"https://framerusercontent.com/images/sj66V4KryJN4McNDWWGHedF6aW8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sj66V4KryJN4McNDWWGHedF6aW8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sj66V4KryJN4McNDWWGHedF6aW8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sj66V4KryJN4McNDWWGHedF6aW8.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/sj66V4KryJN4McNDWWGHedF6aW8.png 4998w\"},className:\"framer-1gt7kjx\",\"data-framer-name\":\"MIG_Logo\",layoutDependency:layoutDependency,layoutId:\"M2RcPzL7t\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"n23tlAxXN\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kgeb55 framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"n23tlAxXN\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18wriq8\",\"data-framer-name\":\"Clip path group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:62,intrinsicWidth:156,layoutDependency:layoutDependency,layoutId:\"taBLvEIr0\",svg:'<svg width=\"156\" height=\"62\" viewBox=\"0 0 156 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_166_16\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"156\" height=\"62\">\\n<path d=\"M0.105469 0H155.105V61.1882H0.105469V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_166_16)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M62.316 37.4796C62.6467 37.224 62.9324 36.9083 63.1729 36.5625H69.5774H71.4266C69.863 35.3748 69.7127 33.0897 69.5924 31.7066V25.5877H69.833C71.3815 25.5877 72.1783 26.0839 72.8698 27.031C72.3436 26.6852 71.6821 26.5198 70.75 26.5198H70.5095V32.6387C70.6448 34.0218 70.7951 36.3069 72.3436 37.4796L70.4945 37.4946L62.316 37.4796ZM81.1235 13.1096C82.672 14.3874 83.5139 16.1915 83.5289 18.4316C83.559 22.5509 81.0333 24.355 78.5076 25.0014C78.0666 24.6606 77.6005 24.39 77.1094 24.1896C79.7854 23.6333 82.6269 21.8744 82.6118 17.5145C82.5968 15.7706 82.0856 14.2822 81.1235 13.1096ZM79.7253 26.159C80.7326 27.031 81.5895 28.2187 82.3111 29.6319L85.0624 35.1343C85.2428 35.4951 85.4382 35.8259 85.6487 36.1115C85.0022 35.6605 84.5512 35.0291 84.1453 34.2022L81.379 28.6998C80.898 27.7376 80.3417 26.8807 79.7253 26.159ZM86.3102 36.8482C86.7762 37.224 87.3325 37.4946 88.0692 37.645C82.8674 38.4718 79.8606 38.0359 78.1167 35.7958C79.8306 37.1188 82.4014 37.3894 86.3102 36.8482ZM69.6075 21.9195V13.29H71.7423C73.5614 13.305 74.8693 13.9064 75.591 14.9888C74.8543 14.4927 73.8771 14.2221 72.6744 14.2221H70.5245V21.9195H69.6075ZM106.801 37.4796C107.147 37.224 107.433 36.9083 107.658 36.5625H121.82C122.647 36.5625 123.399 36.5926 124.196 36.7129C124.572 35.3748 124.812 33.9165 124.962 32.4733C125.353 32.2327 125.714 31.9621 126.015 31.6615C125.925 33.676 125.654 35.7657 125.128 37.6299C124.331 37.5097 123.579 37.4946 122.752 37.4946L106.801 37.4796ZM123.624 10.9296C123.865 10.8996 124.09 10.8394 124.286 10.7943C124.752 12.5683 125.083 14.5979 125.128 16.387C123.97 15.2444 122.858 14.8685 121.625 14.8685H115.07V21.0024H114.138V13.9515H120.693C121.941 13.9515 123.038 14.3123 124.196 15.4549C124.166 14.0266 123.955 12.433 123.624 10.9296ZM121.249 21.5436C121.535 21.3632 121.79 21.1227 121.986 20.8069C122.316 23.1522 122.301 25.1668 121.986 26.9859C121.49 26.2041 120.663 25.8584 119.866 25.8584H115.07V32.5936H114.138V24.9262H118.949C119.731 24.9262 120.558 25.272 121.069 26.0538C121.294 24.6857 121.369 23.1973 121.249 21.5436ZM11.1404 36.5625H23.6186C31.3461 36.5926 34.5032 33.4956 34.5032 28.1285C34.5032 25.6479 33.8718 23.7686 32.7442 22.4005C34.4431 23.7987 35.4203 25.9636 35.4203 29.0455C35.4203 34.4127 32.2782 37.5247 24.5507 37.4796H12.0575H10.043C10.3286 37.209 10.5692 36.8933 10.7796 36.5625H11.1404ZM26.9712 19.499C30.2035 18.9878 32.4586 16.5223 32.3984 12.6435C32.3834 11.095 31.9775 9.66679 31.0304 8.49414C32.639 9.80209 33.3005 11.5911 33.3306 13.5756C33.3757 16.8681 31.752 19.1382 29.2714 20.0703C28.5598 19.8197 27.793 19.6293 26.9712 19.499ZM19.0483 9.90733V18.0557H18.1162V8.99026L20.4314 8.94516C22.7767 8.91509 24.1598 9.65175 24.9115 10.7492C24.0997 10.193 22.9571 9.8472 21.3635 9.87726L19.0483 9.90733ZM18.1012 32.7138L18.0861 21.8293H20.8524C23.333 21.8293 25.0017 22.6862 25.979 23.9791C24.9867 23.2274 23.6036 22.7614 21.7845 22.7614H19.0182V32.7138H18.1012ZM56.4227 13.3351C59.234 15.8457 60.8878 19.8297 60.8878 24.3099C60.8878 31.902 56.6031 38.0659 49.011 38.0659C45.478 38.0659 42.6666 36.6828 40.6671 34.4277C42.5764 36.1265 45.0721 37.1488 48.0939 37.1488C55.671 37.1488 59.9557 30.9849 59.9557 23.3777C59.9557 19.4088 58.6628 15.8457 56.4227 13.3351ZM44.3805 24.3099C44.3805 28.0232 44.606 31.2706 45.8839 33.0897C43.7791 31.6615 43.4634 27.8428 43.4634 23.3777C43.4634 17.6799 44.3053 13.0494 48.0939 13.0494C49.4018 13.0494 50.364 13.6057 51.0556 14.5829C50.4843 14.192 49.8228 13.9815 49.011 13.9815C45.2374 13.9815 44.3805 18.612 44.3805 24.3099ZM144.176 11.0499C144.416 11.0499 144.647 11.0349 144.867 11.0048C145.409 13.1096 145.679 15.2444 145.784 17.3792C145.464 16.9883 145.153 16.6325 144.852 16.3118C144.762 14.5528 144.552 12.7938 144.176 11.0499ZM144.221 15.7104C142.312 13.9966 140.703 13.8011 139.35 13.9815C136.042 14.4175 133.968 17.725 134.103 24.3099C134.148 27.016 134.419 30.3084 135.997 32.353C133.577 30.5189 133.231 26.5499 133.171 23.3777C133.051 16.7929 135.125 13.4854 138.418 13.0494C139.996 12.854 141.891 13.1396 144.221 15.7104ZM145.724 31.8268C146.085 31.456 146.431 31.0501 146.762 30.6091C146.702 32.8792 146.476 35.1493 145.845 37.4345C144.371 37.1188 143.184 37.9607 139.5 38.0058C135.652 38.0659 132.585 36.6076 130.435 34.2172C132.51 36.0514 135.246 37.1338 138.568 37.0887C142.267 37.0286 143.454 36.2017 144.928 36.5024C145.348 34.9539 145.589 33.3904 145.724 31.8268ZM103.569 16.7778C103.329 16.4321 103.013 16.1013 102.637 15.8006C102.607 14.3273 102.351 12.5834 101.945 11.11C102.136 11.09 102.341 11.0649 102.562 11.0349C103.148 12.6886 103.539 14.9437 103.569 16.7778ZM96.7738 27.5722C94.6841 25.8283 91.2112 24.4752 89.1967 22.145C91.6322 24.2948 95.1952 25.5877 96.7738 27.5722ZM87.558 29.707L87.543 29.5717C87.7334 29.8123 87.9338 30.0478 88.1443 30.2783C87.9439 30.0979 87.7484 29.9075 87.558 29.707ZM91.8427 36.8632C97.5706 37.4495 104.757 36.9684 104.561 28.9553C104.516 26.9107 103.765 25.3622 102.652 24.1144C104.246 25.5126 105.433 27.3016 105.494 29.8874C105.674 37.9005 98.5027 38.3816 92.7597 37.7803C91.7525 37.675 90.7753 37.3443 89.1215 37.5097C89.0113 37.1889 88.906 36.8682 88.8058 36.5475C90.1138 36.5024 90.9557 36.773 91.8427 36.8632ZM93.4663 16.1615C93.3461 11.8617 100.487 12.8991 102.577 15.7555C99.8257 13.6508 94.2782 13.305 94.3985 17.0785C94.4135 17.6949 94.639 18.2211 95.0148 18.7172C94.0978 17.9806 93.4964 17.1687 93.4663 16.1615Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M60.4518 35.631C61.865 34.5636 62.2559 32.5942 62.2559 31.196V13.6364C62.2559 12.2382 61.865 10.2688 60.4518 9.20137C61.6745 9.19135 62.8923 9.18633 64.105 9.18633C66.9314 9.06606 69.9081 9.0811 72.7796 9.18633C78.3572 9.39681 81.6346 12.148 81.6647 16.583C81.6948 20.9579 78.8533 22.7169 76.1623 23.2581C77.9513 24.0098 79.3645 25.6335 80.4319 27.7833L83.1982 33.2858C83.8747 34.6238 84.6264 35.4657 86.2049 35.7964C80.2816 36.7285 77.2146 36.037 75.606 32.94L73.1254 28.2043C71.9227 25.9041 71.3664 24.6563 68.9009 24.6563H68.6603V30.7901C68.7956 32.1582 68.946 34.4584 70.4945 35.631L68.6453 35.6461L60.4518 35.631ZM75.3053 16.4026C75.2753 13.907 73.6967 12.3735 70.7951 12.3735H68.6603V20.988H70.9455C74.4935 20.988 75.3354 18.8983 75.3053 16.4026ZM104.922 35.631C106.546 34.3983 106.771 31.9778 106.771 30.6247V14.2077C106.771 12.8396 106.546 10.4191 104.922 9.20137L108.621 9.18633H120.182C120.918 9.18633 121.82 9.11117 122.407 8.94579C122.888 10.7198 123.219 12.7494 123.249 14.5384C122.091 13.3958 120.993 13.02 119.746 13.02H113.191V20.0859H117.972C118.768 20.0859 119.61 19.7402 120.106 18.9584C120.452 21.3037 120.422 23.3182 120.106 25.1374C119.61 24.3556 118.784 24.0098 117.987 24.0098H113.191V31.6621H119.28C121.039 31.6621 122.978 30.9555 124.136 29.8129C124.045 31.8124 123.775 33.9172 123.249 35.7814C122.452 35.6611 121.7 35.631 120.873 35.631H104.922ZM8.16371 4.55588L10.1783 4.54085H10.1933C14.0119 4.54085 17.8456 4.40554 21.6642 4.51078C28.9256 4.72125 31.3912 7.86335 31.4513 11.7421C31.4964 15.6209 29.2413 18.0714 26.024 18.5976C30.5793 19.2891 33.541 21.8449 33.541 27.212C33.541 32.5792 30.3989 35.6761 22.6715 35.6461H10.1783L8.16371 35.631C9.92268 33.9773 10.1783 30.6698 10.1783 28.8207V11.3663C10.1783 9.53212 9.92268 6.22465 8.16371 4.55588ZM17.154 8.07382V17.1393H19.815C23.333 17.1393 24.7011 14.9744 24.7011 12.584C24.7011 10.1936 23.4983 7.98362 19.4692 8.04376L17.154 8.07382ZM26.0691 26.4002C26.0691 23.4987 24.1899 20.9278 19.9052 20.9278H17.1239L17.139 31.7974H19.8C23.9945 31.7974 26.0691 29.8279 26.0691 26.4002ZM47.1167 8.70525C54.2578 8.70525 58.9935 14.8692 58.9935 22.4763C58.9935 30.0685 54.7088 36.2324 47.1167 36.2324C39.5396 36.2324 35.2549 29.843 35.2549 22.2508C35.2549 14.6437 39.9906 8.70525 47.1167 8.70525ZM42.4862 22.4763C42.4862 28.1742 42.9974 32.8047 47.1167 32.8047C51.236 32.8047 51.7471 28.1742 51.7471 22.4763C51.7471 16.7634 50.9052 12.148 47.1167 12.148C43.3432 12.148 42.5012 16.7634 42.4862 22.4763ZM137.2 8.70525C139.365 8.70525 141.53 9.41184 142.973 9.1713C143.514 11.2761 143.8 13.3958 143.89 15.5457C141.274 12.2833 139.17 11.9225 137.456 12.148C134.163 12.569 132.089 15.8915 132.209 22.4763C132.299 26.731 132.885 32.3987 138.313 32.4739C141.154 32.519 143.139 31.0607 144.882 28.7605C144.822 31.0457 144.582 33.3158 143.965 35.601C142.477 35.2853 141.289 36.1121 137.606 36.1723C129.758 36.2925 125.128 30.1136 125.068 22.4763C125.023 14.8692 130.074 8.70525 137.2 8.70525ZM101.675 14.9443C99.6904 12.0127 92.3689 10.9152 92.5042 15.245C92.6395 19.6199 103.419 20.131 103.599 28.0539C103.795 36.067 96.6084 36.5481 90.8805 35.9468C89.8582 35.8415 88.881 35.4957 87.2272 35.6761C86.3402 33.0302 85.8291 30.3842 85.6487 27.7382C89.5124 32.6844 96.5182 34.0074 96.6084 28.8507C96.6836 23.9497 85.9343 23.2882 85.7239 16.4026C85.5735 11.2911 89.7529 8.93076 94.6841 8.85559C96.428 8.84055 97.5556 9.02096 98.8335 9.23144C99.3296 9.30661 99.9159 9.32164 100.668 9.18633C101.254 10.8401 101.645 13.1102 101.675 14.9443ZM147.528 36.1572C147.528 35.6761 147.704 35.2602 148.055 34.9094C148.395 34.5686 148.811 34.3983 149.302 34.3983C149.794 34.3983 150.209 34.5686 150.55 34.9094C150.891 35.2602 151.061 35.6761 151.061 36.1572C151.061 36.6483 150.891 37.0693 150.55 37.4201C150.209 37.7609 149.794 37.9312 149.302 37.9312C148.811 37.9312 148.395 37.7609 148.055 37.4201C147.704 37.0693 147.528 36.6483 147.528 36.1572ZM147.874 36.1572C147.874 36.5782 148.009 36.924 148.28 37.1946C148.551 37.4752 148.891 37.6155 149.302 37.6155C149.703 37.6155 150.044 37.4752 150.325 37.1946C150.595 36.924 150.731 36.5782 150.731 36.1572C150.731 35.7463 150.595 35.4055 150.325 35.1349C150.044 34.8543 149.703 34.714 149.302 34.714C148.891 34.714 148.551 34.8543 148.28 35.1349C148.009 35.4055 147.874 35.7463 147.874 36.1572ZM148.626 37.1946V35.1199H149.423C149.894 35.1199 150.129 35.3153 150.129 35.7062C150.129 35.8766 150.079 36.0119 149.979 36.1121C149.879 36.2224 149.748 36.2775 149.588 36.2775L150.189 37.1946H149.829L149.257 36.2775H148.957V37.1946H148.626ZM148.972 35.3905V36.0069H149.378C149.518 36.0069 149.623 35.9869 149.693 35.9468C149.763 35.9067 149.799 35.8215 149.799 35.6912C149.799 35.4907 149.658 35.3905 149.378 35.3905H148.972ZM3.68359 41.1184C11.1705 41.1184 13.3955 41.1034 20.8824 41.0583V41.374H3.68359V41.1184ZM41.0279 40.9681C50.5444 40.923 63.7743 40.8929 73.2908 40.8929H80.011V41.374C77.4251 41.374 75.7263 41.374 73.1404 41.374H41.0279V40.9681ZM87.4077 40.8779H126.21V41.2237C113.988 41.2688 99.6303 41.3289 87.4077 41.359V40.8779ZM133.727 40.8779H151.452V41.1635C144.236 41.1635 140.944 41.1786 133.727 41.1936V40.8779Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.6767 45.1182L33.7068 44.8927C34.1979 44.8526 34.7341 44.7022 35.3154 44.4416C35.9168 44.171 36.4429 43.8503 36.894 43.4795C37.5254 42.9483 38.0065 42.382 38.3372 41.7806C38.678 41.1793 38.8484 40.5779 38.8484 39.9766C38.8484 38.5834 37.8361 37.8868 35.8115 37.8868C34.8694 37.8868 33.8772 38.0272 32.8348 38.3078C31.8426 38.5634 30.8052 38.9693 29.7077 39.5255C30.3291 39.9866 30.6398 40.6481 30.6398 41.51C30.6398 42.1916 30.4143 42.8932 29.9633 43.6148C29.5123 44.3214 28.941 44.9077 28.2494 45.3287L28.1592 45.1633C28.9009 44.612 29.4622 44.0257 29.843 43.4043C30.244 42.7729 30.4444 42.1264 30.4444 41.4649C30.4444 40.6731 30.1437 40.0567 29.5424 39.6158L29.4973 39.6609C28.5952 40.162 27.8886 40.5829 27.3775 40.9237C26.8763 41.2645 26.3602 41.6604 25.829 42.1114C23.8445 43.8253 22.4714 45.6093 21.7097 47.4635L21.6946 47.5236C21.8751 47.7842 22.1156 48.0047 22.4163 48.1851C22.717 48.3655 23.0627 48.5008 23.4386 48.6061C23.8295 48.7063 24.2203 48.7564 24.6112 48.7564C25.3329 48.7564 26.1998 48.596 27.2121 48.2753C27.7433 48.1049 28.2645 47.9045 28.7756 47.6739C29.2968 47.4434 29.7879 47.2029 30.249 46.9523L30.3692 46.8771L30.4143 46.817L30.4594 46.7569C30.8102 46.2658 31.4717 45.3838 32.4439 44.1109C33.0252 43.3692 33.5414 42.7428 33.9924 42.2317C34.4434 41.7305 34.8443 41.3296 35.1951 41.0289C35.9268 40.3875 36.4881 40.0668 36.8789 40.0668C37.2197 40.0668 37.3901 40.2372 37.3901 40.5779C37.3901 40.8686 37.1696 41.2895 36.7286 41.8408C36.2676 42.4221 35.6712 43.0435 34.9396 43.705C34.4084 44.1961 33.5765 44.8576 32.4439 45.6895C32.2535 45.8498 31.8776 46.1204 31.3164 46.5013L31.1961 46.6516C28.3547 50.6807 25.7989 52.6953 23.5288 52.6953C22.717 52.6953 22.0855 52.4247 21.6345 51.8835C21.1735 51.3422 20.9429 50.6006 20.9429 49.6584C20.9429 48.9268 21.0883 48.1751 21.3789 47.4033C21.2286 47.1327 21.1083 46.8371 21.0181 46.5163C20.9279 46.1856 20.8828 45.8398 20.8828 45.479C20.8828 44.4166 21.2236 43.3792 21.9051 42.367C22.5816 41.3747 23.4687 40.5479 24.5511 39.9164C25.6436 39.285 26.7561 38.9693 27.8886 38.9693C28.51 38.9693 29.0563 39.1096 29.5273 39.3902C29.5674 39.3702 29.5875 39.3552 29.5875 39.3451L29.7528 39.2549C30.8453 38.7338 31.9227 38.3429 32.9851 38.0823C34.0475 37.8217 35.0548 37.6914 36.007 37.6914C37.0493 37.6914 37.8612 37.8969 38.4425 38.3078C39.0238 38.7287 39.3144 39.3151 39.3144 40.0668C39.3144 40.6681 39.119 41.2795 38.7281 41.9009C38.3072 42.5424 37.7509 43.1387 37.0593 43.69C36.5783 44.0307 36.0821 44.3114 35.571 44.5319C35.0298 44.7724 34.5036 44.9378 34.0074 45.028C34.5286 45.2685 34.7892 45.7797 34.7892 46.5614C34.7892 47.1127 34.6689 47.8894 34.4284 48.8917L34.1428 50.0794C33.8321 51.4324 33.6767 52.4247 33.6767 53.0561C33.6767 53.8479 33.8721 54.4643 34.263 54.9053C34.6539 55.3663 35.1701 55.5968 35.8115 55.5968C36.032 55.5968 36.2525 55.5718 36.473 55.5217C36.5231 55.4816 36.5732 55.4465 36.6234 55.4164C37.0844 55.0656 37.7409 54.6246 38.5928 54.0934L39.6752 53.4319C39.7053 53.4119 39.7705 53.3718 39.8707 53.3117C39.9609 53.2415 40.021 53.2014 40.0511 53.1914C40.1714 53.1212 40.2866 53.0461 40.3969 52.9659C40.6174 52.8356 40.7827 52.7354 40.893 52.6652L41.0283 52.6051C41.319 52.0438 41.6698 51.4475 42.0807 50.816C42.231 50.5755 42.3212 50.4302 42.3513 50.3801C42.4816 50.1495 42.5517 50.0243 42.5618 50.0042C42.5818 49.9741 42.6419 49.8789 42.7422 49.7186C42.7823 49.6484 42.8123 49.5983 42.8324 49.5682C42.8524 49.5382 42.8675 49.5031 42.8775 49.463L42.9677 49.3427L42.8624 49.448C42.1408 50.1295 41.5194 50.6206 40.9982 50.9213C40.6775 51.1318 40.4219 51.237 40.2315 51.237C39.8406 51.237 39.6452 51.0165 39.6452 50.5755C39.6452 50.2648 39.7805 49.8739 40.0511 49.4029C39.6702 49.7637 39.2794 50.0844 38.8784 50.365C38.0666 50.9463 37.4101 51.237 36.909 51.237C36.6083 51.237 36.3628 51.1267 36.1723 50.9062C35.9819 50.6958 35.8867 50.4151 35.8867 50.0643C35.8867 48.9819 36.6835 47.7942 38.2771 46.5013C38.7381 46.1204 39.2142 45.7947 39.7053 45.5241C40.1964 45.2635 40.5873 45.1332 40.878 45.1332C41.1987 45.1332 41.359 45.2635 41.359 45.5241C41.359 45.7546 41.1736 46.0403 40.8028 46.381C40.4219 46.7218 39.9308 47.0475 39.3295 47.3582C38.668 47.699 38.0165 47.9546 37.3751 48.125L37.2698 48.155C36.5883 49.0571 36.2475 49.7637 36.2475 50.2748C36.2475 50.7559 36.478 50.9965 36.9391 50.9965C37.2297 50.9965 37.6256 50.8611 38.1267 50.5905C38.5878 50.3199 39.109 49.934 39.6903 49.4329C40.001 49.1523 40.3017 48.8616 40.5923 48.561C40.8529 48.2102 41.1386 47.8794 41.4493 47.5687C42.1408 46.8972 42.9025 46.3259 43.7344 45.8548C44.5663 45.3938 45.2428 45.1633 45.764 45.1633C46.0045 45.1633 46.1799 45.2084 46.2902 45.2986C46.4255 45.4038 46.4856 45.5542 46.4856 45.7346C46.4856 45.915 46.4205 46.1455 46.2902 46.4261C46.1599 46.6967 45.9895 46.9523 45.779 47.1929L45.5836 47.0576C46.0146 46.5865 46.23 46.1605 46.23 45.7797C46.23 45.5091 46.0747 45.3738 45.764 45.3738C45.2328 45.3738 44.5563 45.6544 43.7344 46.2157C42.9025 46.7869 42.0857 47.5286 41.2839 48.4407C40.893 48.9117 40.5823 49.3477 40.3518 49.7486C40.1012 50.1796 39.9759 50.4903 39.9759 50.6807C39.9759 50.9113 40.0561 51.0265 40.2165 51.0265C40.437 51.0265 40.7777 50.8611 41.2388 50.5304C41.6798 50.2197 42.1609 49.8088 42.682 49.2976L43.1782 48.8015C43.2784 48.7013 43.4087 48.5609 43.569 48.3805C43.6492 48.2803 43.6893 48.2202 43.6893 48.2001L43.8848 47.9145C44.1253 47.5036 44.3859 47.1427 44.6665 46.832C44.9271 46.5514 45.1276 46.4111 45.2679 46.4111C45.328 46.4111 45.3581 46.4462 45.3581 46.5163C45.3581 46.6767 45.1977 46.9423 44.877 47.3131C44.3658 47.8744 43.975 48.2803 43.7043 48.5309C43.6041 48.6512 43.564 48.7113 43.5841 48.7113L43.2383 49.2976L42.7422 50.1696L42.2761 50.9513C42.1458 51.2019 41.9855 51.5076 41.795 51.8684L41.5996 52.1841L41.5846 52.2443L41.6447 52.1992C42.4064 51.688 43.1331 51.1017 43.8246 50.4402C44.0952 50.1997 44.456 49.8238 44.9071 49.3126C45.3681 48.8115 45.769 48.3605 46.1098 47.9596L46.215 47.8243C46.5357 47.3733 46.9166 46.8571 47.3576 46.2758C47.6282 45.925 47.8487 45.6243 48.0191 45.3738L48.0943 45.2836L48.6505 45.2685L48.5603 45.3738C48.5202 45.4138 48.2296 45.8097 47.6883 46.5614C47.4678 46.8521 47.3375 47.0275 47.2975 47.0876C47.2373 47.1628 47.1171 47.3131 46.9366 47.5537C45.5986 49.2976 44.9221 50.35 44.9221 50.6958C44.9221 50.8662 45.0123 50.9513 45.1927 50.9513C45.5535 50.9513 46.1398 50.5304 46.9366 49.7035C47.1471 49.483 47.5631 49.022 48.1845 48.3204C48.2446 48.2502 48.2897 48.1951 48.3198 48.155L48.3498 48.125C48.3599 48.1149 48.3649 48.1099 48.3649 48.1099C48.3849 48.0899 48.425 48.0448 48.4851 47.9746C48.5052 47.9546 48.5252 47.9345 48.5453 47.9145C48.7357 47.684 48.881 47.5136 48.9813 47.4033C49.773 46.5213 50.3293 45.945 50.65 45.6744C50.9808 45.3838 51.2714 45.2384 51.522 45.2384C51.6623 45.2384 51.7826 45.2936 51.8828 45.4038C51.983 45.494 52.0332 45.6193 52.0332 45.7797C52.0332 46.1906 51.8127 46.7318 51.3717 47.4033C51.8076 46.9373 52.2737 46.5314 52.7397 46.1706C53.5115 45.5492 54.0928 45.2384 54.4837 45.2384C54.6641 45.2384 54.8144 45.2986 54.9347 45.4189C55.055 45.5391 55.1151 45.6895 55.1151 45.8699C55.1151 46.3309 54.7142 47.0024 53.9124 47.8844L52.4541 49.463C51.9029 50.0543 51.6272 50.4803 51.6272 50.7409C51.6272 50.9413 51.7225 51.0416 51.9129 51.0416C52.0933 51.0416 52.3539 50.9363 52.6946 50.7258C53.0354 50.5053 53.3611 50.2448 53.6718 49.9441C54.1229 49.5231 54.624 48.9969 55.1752 48.3655C55.2354 48.2853 55.3005 48.2051 55.3707 48.125C55.4108 48.0749 55.4509 48.0247 55.491 47.9746L55.6263 47.8243L55.6413 47.8393C55.6413 47.8293 55.6413 47.8243 55.6413 47.8243C56.2527 47.1728 56.9743 46.5664 57.8062 46.0052C58.608 45.4539 59.1793 45.1783 59.5201 45.1783C59.8308 45.1783 59.9861 45.3437 59.9861 45.6744C59.9861 45.7245 59.9661 45.8198 59.926 45.9601L60.4221 45.2836H60.9784C60.9182 45.3838 60.8881 45.4239 60.8881 45.4038L60.5424 45.8548L60.1665 46.366L59.8959 46.7118L57.9716 49.3878C57.5306 49.9892 57.3101 50.4151 57.3101 50.6657C57.3101 50.8662 57.3953 50.9664 57.5656 50.9664C57.7861 50.9664 58.1119 50.7709 58.5429 50.3801C59.1743 49.7987 59.9059 48.9969 60.7378 47.9746L60.8881 47.8243L61.0385 47.9596C60.4973 48.581 59.946 49.2024 59.3847 49.8238C58.9037 50.335 58.5328 50.6807 58.2722 50.8611C58.0016 51.0716 57.7611 51.1769 57.5506 51.1769C57.4003 51.1769 57.275 51.1267 57.1748 51.0265C57.0846 50.9263 57.0395 50.796 57.0395 50.6356C57.0395 50.3049 57.2349 49.7987 57.6258 49.1172L57.4754 49.2375C57.0745 49.6584 56.5834 50.1195 56.0021 50.6206C55.4408 51.0516 55.0149 51.2671 54.7242 51.2671C54.5438 51.2671 54.3985 51.2019 54.2882 51.0716C54.178 50.9413 54.1229 50.776 54.1229 50.5755C54.1229 50.2548 54.2281 49.8839 54.4386 49.463C54.0176 49.914 53.6368 50.2748 53.296 50.5454C52.7147 51.0265 52.2436 51.2671 51.8828 51.2671C51.4919 51.2671 51.2965 51.0566 51.2965 50.6356C51.2965 50.2247 51.6423 49.6384 52.3338 48.8767L53.9575 47.1177C54.5188 46.5063 54.7994 46.0553 54.7994 45.7646C54.7994 45.6594 54.7693 45.5842 54.6942 45.5391C54.614 45.479 54.5338 45.4489 54.4536 45.4489C54.0527 45.4489 53.3812 45.8699 52.4391 46.7118C51.7174 47.3632 51.1461 47.9496 50.7252 48.4707C50.2241 49.1022 49.8131 49.6384 49.4924 50.0794L48.7708 51.1017C48.7708 51.1017 48.7658 51.1067 48.7558 51.1167C48.7457 51.1267 48.7407 51.1318 48.7407 51.1318C48.7407 51.1418 48.7357 51.1518 48.7257 51.1618C48.7157 51.1718 48.7106 51.1769 48.7106 51.1769C48.7006 51.1869 48.6856 51.2019 48.6655 51.222H48.1544L51.0108 47.238C51.542 46.5163 51.8076 46.0302 51.8076 45.7797C51.8076 45.6594 51.7826 45.5742 51.7325 45.5241C51.6824 45.474 51.6122 45.4489 51.522 45.4489C51.3566 45.4489 51.1612 45.5391 50.9357 45.7045C50.6951 45.8849 50.3594 46.2006 49.9284 46.6516C49.4573 47.1628 48.9963 47.689 48.5453 48.2302L48.4701 48.2903C48.4601 48.3004 48.4551 48.3104 48.4551 48.3204C48.3248 48.4808 48.1444 48.6862 47.9138 48.9368C47.1321 49.7987 46.5859 50.35 46.2752 50.5905C45.8392 50.9814 45.4783 51.1769 45.1927 51.1769C44.8419 51.1769 44.6665 51.0065 44.6665 50.6657C44.6665 50.3951 44.8018 50.0243 45.0724 49.5532C45.1225 49.473 45.1727 49.3878 45.2228 49.2976C45.1626 49.3678 45.1025 49.4379 45.0424 49.5081C44.6665 49.914 44.2756 50.3199 43.8697 50.7108C43.3987 51.1418 42.9877 51.4876 42.6369 51.7481C42.1859 52.0789 41.795 52.3495 41.4493 52.56L41.4042 52.575C41.0133 53.3167 40.5723 54.0333 40.0812 54.7249C39.6502 55.3864 39.1591 55.9877 38.6078 56.5289C38.0666 57.0551 37.5254 57.4911 36.9691 57.8068C36.448 58.1276 35.9969 58.2879 35.6161 58.2879C35.3906 58.2879 35.2402 58.2278 35.12 58.1075C34.9997 57.9872 34.9396 57.8219 34.9396 57.6114C34.9396 57.2305 35.135 56.8196 35.5259 56.3786C35.6862 56.1982 35.8867 56.0078 36.1272 55.8073C36.017 55.8173 35.9117 55.8223 35.8115 55.8223C35.3004 55.8223 34.8393 55.682 34.4284 55.4014C34.0275 55.1107 33.7168 54.7048 33.4963 54.1836C33.2758 53.6725 33.1655 53.0862 33.1655 52.4247C33.1655 51.9235 33.2056 51.4525 33.2858 51.0115C33.376 50.5605 33.5414 49.919 33.7819 49.0871L34.0977 48.125C34.3683 47.3232 34.5036 46.6917 34.5036 46.2307C34.5036 45.5542 34.2179 45.1783 33.6767 45.1182ZM94.023 51.0867L93.9478 51.222H93.3615C93.4016 51.1718 93.4366 51.1318 93.4667 51.1017C93.4868 51.0616 93.5118 51.0265 93.5419 50.9965L94.6544 49.4931L95.7519 48.0047L96.6088 46.7869C96.9897 46.2357 97.1801 45.8649 97.1801 45.6744C97.1801 45.5241 97.1049 45.4489 96.9546 45.4489C96.7541 45.4489 96.5136 45.5391 96.233 45.7195C95.9523 45.8799 95.6166 46.1455 95.2257 46.5163C94.8749 46.8671 94.4389 47.3482 93.9177 47.9596C93.2863 48.7013 92.8553 49.2275 92.6248 49.5382L92.0235 50.3199C91.9032 50.4803 91.7929 50.6356 91.6927 50.786C91.5724 50.9463 91.4973 51.0466 91.4672 51.0867L91.362 51.222H90.7155C91.0462 50.811 91.4522 50.2949 91.9332 49.6735C92.5246 48.9017 93.0959 48.12 93.6471 47.3282C94.2034 46.5314 94.474 46.0052 94.474 45.7346C94.474 45.5642 94.3788 45.479 94.1883 45.479C93.7373 45.479 92.9455 46.1555 91.813 47.5086L91.2567 48.1701L91.1515 48.2903L91.0011 48.1701C91.6326 47.3883 92.1638 46.7719 92.5947 46.3209C92.9556 45.9501 93.2713 45.6794 93.5419 45.5091C93.7924 45.3287 94.018 45.2384 94.2184 45.2384C94.5592 45.2384 94.7296 45.4289 94.7296 45.8097C94.7296 46.1505 94.5642 46.5815 94.2334 47.1027L94.053 47.4033C94.043 47.4033 94.033 47.4134 94.023 47.4334C94.023 47.4534 94.0029 47.4835 93.9628 47.5236C93.9829 47.5136 93.9979 47.4985 94.0079 47.4785C94.0179 47.4685 94.028 47.4585 94.038 47.4484C94.058 47.4384 94.0681 47.4284 94.0681 47.4184C94.0781 47.4083 94.0881 47.4033 94.0981 47.4033L94.5792 46.8771C95.0603 46.366 95.5113 45.9651 95.9323 45.6744C96.3532 45.3738 96.694 45.2234 96.9546 45.2234C97.1149 45.2234 97.2402 45.2735 97.3304 45.3738C97.4106 45.464 97.4507 45.5943 97.4507 45.7646C97.4507 45.915 97.3856 46.1405 97.2553 46.4412C97.135 46.7218 96.9746 46.9974 96.7742 47.268L96.6539 47.4635C96.6539 47.4735 96.6439 47.4835 96.6238 47.4935C96.6138 47.5136 96.6038 47.5236 96.5938 47.5236C96.5938 47.5336 96.5888 47.5437 96.5787 47.5537C96.6389 47.4935 96.674 47.4635 96.684 47.4635L97.3755 46.6967C97.6562 46.4161 97.9418 46.1706 98.2325 45.9601C98.5131 45.7396 98.7987 45.5642 99.0894 45.4339C99.3801 45.3036 99.6156 45.2384 99.796 45.2384C99.9864 45.2384 100.137 45.2936 100.247 45.4038C100.367 45.5141 100.427 45.6644 100.427 45.8548C100.427 46.1054 100.307 46.4011 100.067 46.7418C99.8361 47.0826 99.3951 47.5938 98.7436 48.2753C98.0019 49.027 97.4908 49.5883 97.2102 49.9591C96.9396 50.2999 96.8042 50.5705 96.8042 50.7709C96.8042 50.9714 96.8944 51.0716 97.0749 51.0716C97.4958 51.0716 98.1373 50.6507 98.9992 49.8088C99.1896 49.6284 99.6858 49.1172 100.488 48.2753C100.668 48.0849 100.798 47.9345 100.878 47.8243C101.199 47.3733 101.58 46.8571 102.021 46.2758C102.292 45.925 102.512 45.6243 102.683 45.3738L102.758 45.2836L103.314 45.2685L103.224 45.3738C103.184 45.4138 102.893 45.8097 102.352 46.5614C102.131 46.8521 101.996 47.0275 101.946 47.0876C101.901 47.1628 101.78 47.3131 101.6 47.5537C100.247 49.2976 99.5855 50.35 99.5855 50.6958C99.5855 50.8662 99.6707 50.9513 99.8411 50.9513C100.217 50.9513 100.803 50.5304 101.6 49.7035C101.811 49.483 102.226 49.022 102.848 48.3204C102.908 48.2502 102.953 48.1951 102.983 48.155L103.013 48.125C103.023 48.1149 103.028 48.1099 103.028 48.1099C103.048 48.0899 103.088 48.0448 103.149 47.9746C103.169 47.9546 103.189 47.9345 103.209 47.9145C103.399 47.684 103.544 47.5136 103.645 47.4033C104.436 46.5213 104.993 45.945 105.313 45.6744C105.644 45.3838 105.935 45.2384 106.185 45.2384C106.326 45.2384 106.446 45.2936 106.546 45.4038C106.646 45.494 106.697 45.6193 106.697 45.7797C106.697 46.1906 106.476 46.7318 106.035 47.4033C106.471 46.9373 106.937 46.5314 107.403 46.1706C108.165 45.5492 108.746 45.2384 109.147 45.2384C109.328 45.2384 109.478 45.2986 109.598 45.4189C109.718 45.5391 109.774 45.6895 109.764 45.8699C109.774 46.3309 109.378 47.0024 108.576 47.8844L107.118 49.463C106.566 50.0543 106.291 50.4803 106.291 50.7409C106.291 50.9413 106.386 51.0416 106.576 51.0416C106.757 51.0416 107.012 50.9363 107.343 50.7258C107.694 50.5053 108.025 50.2448 108.335 49.9441C108.836 49.483 109.393 48.8867 110.004 48.155C110.395 47.6238 110.941 47.0726 111.643 46.5013C112.114 46.1204 112.595 45.7947 113.086 45.5241C113.577 45.2635 113.963 45.1332 114.244 45.1332C114.574 45.1332 114.74 45.2635 114.74 45.5241C114.74 45.7546 114.554 46.0403 114.183 46.381C113.803 46.7218 113.307 47.0475 112.695 47.3582C112.044 47.699 111.397 47.9546 110.756 48.125L110.651 48.155C109.959 49.0571 109.613 49.7637 109.613 50.2748C109.613 50.7559 109.844 50.9965 110.305 50.9965C110.605 50.9965 111.001 50.8611 111.492 50.5905C111.963 50.3199 112.49 49.934 113.071 49.4329C113.512 49.032 113.928 48.6111 114.319 48.1701L114.289 48.155L114.394 48.0348L115.161 47.1177C115.852 46.2557 116.288 45.6744 116.469 45.3738C116.479 45.2535 116.594 45.0029 116.814 44.6221C117.165 44.1309 117.476 43.7351 117.747 43.4344C117.857 43.3041 117.947 43.2389 118.017 43.2389C118.067 43.2389 118.092 43.269 118.092 43.3291C118.092 43.4895 117.897 43.8353 117.506 44.3665L117.085 44.9829C117.025 45.0631 116.945 45.1683 116.844 45.2986C116.744 45.4189 116.689 45.494 116.679 45.5241C116.724 45.5692 116.844 45.5993 117.04 45.5993H117.596C118.137 45.5993 118.408 45.7747 118.408 46.1254C118.408 46.3059 118.318 46.5264 118.137 46.7869C117.957 47.0475 117.651 47.3833 117.22 47.7942L116.303 48.7113C115.311 49.6735 114.83 50.3801 114.83 50.816C114.83 50.9864 114.915 51.0716 115.086 51.0716C115.506 51.0716 116.328 50.4803 117.551 49.2976C117.782 49.0972 118.072 48.7965 118.423 48.3956C118.543 48.2452 118.674 48.0949 118.814 47.9446C118.854 47.9045 118.889 47.8644 118.919 47.8243C118.929 47.8243 118.934 47.8243 118.934 47.8243C119.546 47.1728 120.262 46.5664 121.084 46.0052C121.886 45.4539 122.462 45.1783 122.813 45.1783C123.124 45.1783 123.279 45.3437 123.279 45.6744C123.279 45.7245 123.254 45.8198 123.204 45.9601L123.7 45.2836H124.256C124.196 45.3838 124.166 45.4239 124.166 45.4038L123.835 45.8548L123.444 46.366L123.174 46.7118L121.249 49.3878C120.808 49.9892 120.588 50.4151 120.588 50.6657C120.588 50.8662 120.678 50.9664 120.859 50.9664C121.069 50.9664 121.39 50.7709 121.821 50.3801C122.452 49.7987 123.189 48.9969 124.031 47.9746L124.151 47.8544C124.221 47.7541 124.291 47.6539 124.361 47.5537L126.782 44.2612L127.398 43.4043L128.075 42.5173C129.237 40.9437 130.32 39.6709 131.322 38.6987C131.843 38.1675 132.299 37.9069 132.69 37.9169C132.961 37.9169 133.096 38.0572 133.096 38.3379C133.096 38.5784 132.921 38.9242 132.57 39.3752C132.219 39.8463 131.638 40.4877 130.826 41.2996C129.363 42.7528 128.03 43.9556 126.827 44.9077L124.437 48.2001L123.64 49.2826C123.139 49.9641 122.888 50.4352 122.888 50.6958C122.888 50.786 122.913 50.8561 122.963 50.9062C123.008 50.9664 123.069 50.9965 123.159 50.9965C123.409 50.9965 123.795 50.7559 124.316 50.2748C124.617 49.9741 124.978 49.5933 125.399 49.1322C125.659 48.8416 125.89 48.576 126.09 48.3354C126.491 47.7541 127.083 47.1427 127.864 46.5013C128.335 46.1204 128.817 45.7947 129.308 45.5241C129.799 45.2635 130.185 45.1332 130.465 45.1332C130.796 45.1332 130.961 45.2635 130.961 45.5241C130.961 45.7546 130.776 46.0403 130.405 46.381C130.024 46.7218 129.528 47.0475 128.917 47.3582C128.265 47.699 127.619 47.9546 126.977 48.125L126.872 48.155C126.181 49.0571 125.835 49.7637 125.835 50.2748C125.835 50.7559 126.065 50.9965 126.526 50.9965C126.827 50.9965 127.223 50.8611 127.714 50.5905C128.185 50.3199 128.711 49.934 129.293 49.4329C129.854 48.9318 130.365 48.3956 130.826 47.8243L130.961 47.9596L130.871 48.0799C130.089 49.012 129.293 49.7737 128.481 50.365C127.669 50.9463 127.012 51.237 126.511 51.237C126.201 51.237 125.95 51.1267 125.76 50.9062C125.569 50.6958 125.474 50.4151 125.474 50.0643C125.474 49.7737 125.534 49.478 125.654 49.1773C125.434 49.4279 125.228 49.6484 125.038 49.8388C124.567 50.34 124.191 50.6857 123.91 50.8762C123.6 51.1067 123.334 51.222 123.114 51.222C122.773 51.222 122.602 51.0416 122.602 50.6807C122.602 50.3801 122.803 49.894 123.204 49.2224C123.023 49.4229 122.843 49.6233 122.663 49.8238C122.182 50.335 121.811 50.6807 121.55 50.8611C121.28 51.0716 121.039 51.1769 120.828 51.1769C120.688 51.1769 120.563 51.1267 120.453 51.0265C120.362 50.9263 120.317 50.796 120.317 50.6356C120.317 50.3049 120.513 49.7987 120.904 49.1172L120.768 49.2375C120.367 49.6584 119.876 50.1195 119.295 50.6206C118.734 51.0516 118.308 51.2671 118.017 51.2671C117.837 51.2671 117.691 51.2019 117.581 51.0716C117.471 50.9413 117.416 50.776 117.416 50.5755C117.416 50.2247 117.536 49.8238 117.777 49.3728C117.536 49.6033 117.301 49.8238 117.07 50.0343C116.158 50.8662 115.481 51.2821 115.04 51.2821C114.67 51.2821 114.484 51.0816 114.484 50.6807C114.484 50.4402 114.584 50.1445 114.785 49.7937C115.065 49.3227 115.772 48.5259 116.905 47.4033C117.245 47.0525 117.511 46.7719 117.701 46.5614C117.842 46.4011 117.912 46.2557 117.912 46.1254C117.912 45.935 117.737 45.8448 117.386 45.8548C117.095 45.8548 116.9 45.8398 116.799 45.8097C116.709 45.7897 116.624 45.7496 116.544 45.6895L116.469 45.7797C116.088 46.3209 115.506 47.0425 114.725 47.9446L114.74 47.9596L114.65 48.0799C113.868 49.012 113.071 49.7737 112.259 50.365C111.447 50.9463 110.791 51.237 110.29 51.237C109.979 51.237 109.728 51.1267 109.538 50.9062C109.348 50.6958 109.257 50.4151 109.267 50.0643C109.267 49.7436 109.338 49.4129 109.478 49.0721C108.907 49.7035 108.4 50.1946 107.959 50.5454C107.378 51.0265 106.907 51.2671 106.546 51.2671C106.155 51.2671 105.955 51.0566 105.945 50.6356C105.945 50.2247 106.296 49.6384 106.997 48.8767L108.621 47.1177C109.182 46.5063 109.463 46.0553 109.463 45.7646C109.463 45.6644 109.428 45.5892 109.358 45.5391C109.277 45.479 109.192 45.4489 109.102 45.4489C108.711 45.4489 108.045 45.8699 107.102 46.7118C106.381 47.3632 105.81 47.9496 105.389 48.4707C104.887 49.1022 104.477 49.6384 104.156 50.0794L103.434 51.1017C103.434 51.1017 103.429 51.1067 103.419 51.1167C103.409 51.1267 103.404 51.1318 103.404 51.1318C103.394 51.1418 103.389 51.1518 103.389 51.1618C103.379 51.1718 103.369 51.1769 103.359 51.1769L103.329 51.222H102.818L105.674 47.238C106.205 46.5163 106.471 46.0302 106.471 45.7797C106.471 45.6594 106.446 45.5742 106.396 45.5241C106.346 45.474 106.276 45.4489 106.185 45.4489C106.02 45.4489 105.825 45.5391 105.584 45.7045C105.354 45.8849 105.023 46.2006 104.592 46.6516C104.111 47.1628 103.65 47.689 103.209 48.2302L103.134 48.2903C103.124 48.3004 103.119 48.3104 103.119 48.3204C102.988 48.4808 102.808 48.6862 102.577 48.9368C101.785 49.7987 101.239 50.35 100.939 50.5905C100.503 50.9814 100.142 51.1769 99.8411 51.1769C99.5003 51.1769 99.3299 51.0065 99.3299 50.6657C99.3299 50.3951 99.4653 50.0243 99.7359 49.5532C99.816 49.4129 99.9012 49.2726 99.9914 49.1322C99.6908 49.4429 99.3951 49.7336 99.1044 50.0042C98.1924 50.8561 97.5108 51.2821 97.0598 51.2821C96.6589 51.2821 96.4585 51.0816 96.4585 50.6807C96.4585 50.4703 96.5086 50.2648 96.6088 50.0643C96.699 49.8839 96.8493 49.6634 97.0598 49.4029C97.2202 49.2124 97.6311 48.7664 98.2926 48.0648C99.0343 47.2931 99.5304 46.7418 99.781 46.4111C99.9714 46.1204 100.067 45.8949 100.067 45.7346C100.067 45.5642 99.9614 45.479 99.7509 45.479C99.5104 45.479 99.1996 45.5892 98.8188 45.8097C98.473 46.0202 98.1122 46.3059 97.7213 46.6817C97.5309 46.8621 97.4006 46.9974 97.3304 47.0876C97.2102 47.1979 97.0398 47.3733 96.8193 47.6138C96.1077 48.4256 95.6116 49.017 95.3309 49.3878C94.7997 50.0092 94.3637 50.5755 94.023 51.0867ZM104.983 43.0585C104.983 43.2089 104.918 43.3492 104.787 43.4795C104.677 43.6198 104.557 43.69 104.426 43.69C104.276 43.69 104.201 43.6198 104.201 43.4795C104.201 43.3191 104.266 43.1688 104.396 43.0285C104.527 42.8881 104.652 42.813 104.772 42.803C104.913 42.813 104.983 42.8982 104.983 43.0585ZM110.846 47.9145C111.407 47.7341 111.963 47.4935 112.515 47.1929C113.046 46.9022 113.497 46.6015 113.868 46.2908C114.209 45.9901 114.379 45.7446 114.379 45.5542C114.379 45.4239 114.299 45.3587 114.138 45.3587C114.008 45.3587 113.828 45.4138 113.597 45.5241C113.387 45.6343 113.161 45.7747 112.921 45.945C112.5 46.2557 112.104 46.5865 111.733 46.9373C111.372 47.2881 111.076 47.6138 110.846 47.9145ZM117.686 50.6356C117.686 50.9062 117.797 51.0416 118.017 51.0416C118.338 51.0416 118.884 50.7058 119.656 50.0343C120.448 49.3427 121.194 48.5509 121.896 47.6589C122.658 46.6867 123.038 46.0302 123.038 45.6895C123.038 45.479 122.953 45.3738 122.783 45.3738C122.522 45.3738 122.091 45.6093 121.49 46.0803C120.869 46.5314 120.247 47.0876 119.626 47.7491C119.065 48.3405 118.608 48.8967 118.258 49.4179C117.907 49.9591 117.716 50.365 117.686 50.6356ZM127.804 43.5546L127.248 44.2913C127.859 43.8102 128.656 43.1086 129.638 42.1866C131.803 40.1119 132.886 38.834 132.886 38.3529C132.886 38.1925 132.811 38.1124 132.66 38.1124C132.42 38.1124 132.029 38.383 131.518 38.8941C131.167 39.2449 130.631 39.8713 129.909 40.7734C129.197 41.6654 128.661 42.367 128.3 42.8781C128.2 43.0184 128.09 43.1688 127.97 43.3291C127.899 43.4193 127.844 43.4945 127.804 43.5546ZM127.068 47.9145C127.629 47.7341 128.185 47.4935 128.736 47.1929C129.268 46.9022 129.719 46.6015 130.089 46.2908C130.43 45.9901 130.601 45.7446 130.601 45.5542C130.601 45.4239 130.52 45.3587 130.36 45.3587C130.23 45.3587 130.049 45.4138 129.819 45.5241C129.608 45.6343 129.383 45.7747 129.142 45.945C128.711 46.2557 128.315 46.5865 127.955 46.9373C127.594 47.2881 127.298 47.6138 127.068 47.9145ZM30.0986 47.268C29.6175 47.5587 28.931 47.8794 28.039 48.2302C27.3775 48.4707 26.7611 48.6512 26.2199 48.7865C25.6887 48.8967 25.1525 48.9518 24.6112 48.9518C23.3183 48.9518 22.316 48.5459 21.6044 47.7341L21.5894 47.7942C21.3188 48.5058 21.1835 49.1924 21.1835 49.8539C21.1835 50.6657 21.394 51.3072 21.8149 51.7782C22.2559 52.2593 22.8422 52.4998 23.5739 52.4998C24.0349 52.4998 24.5411 52.3846 25.0923 52.1541C25.6536 51.9336 26.1898 51.6279 26.7009 51.237C27.2221 50.8561 27.8034 50.2648 28.4449 49.463C29.2667 48.4006 29.6827 47.8594 29.6927 47.8393L29.9032 47.5537C29.9032 47.5537 29.9683 47.4585 30.0986 47.268ZM29.2718 39.4955L29.3169 39.4804C28.936 39.27 28.4499 39.1647 27.8586 39.1647C26.7761 39.1647 25.7037 39.4704 24.6413 40.0818C23.5689 40.7032 22.7119 41.495 22.0705 42.4572C21.419 43.4394 21.0933 44.4467 21.0933 45.479C21.0933 45.7897 21.1284 46.0803 21.1985 46.351C21.2737 46.6366 21.3489 46.9072 21.4691 47.1628L21.4992 47.1027L21.6044 46.832C22.2659 45.3136 23.3333 43.9155 24.7616 42.6075C25.3329 42.0563 26.0495 41.485 26.9114 40.8936C27.7433 40.3123 28.5301 39.8463 29.2718 39.4955ZM31.7524 45.915C31.8877 45.8548 32.2034 45.6444 32.6694 45.2836L33.5113 44.6371C33.802 44.4266 34.1628 44.1259 34.5938 43.7351C35.0047 43.3742 35.3755 43.0134 35.7063 42.6526C36.6785 41.6403 37.1646 40.9488 37.1646 40.5779C37.1646 40.3674 37.0694 40.2622 36.8789 40.2622C36.7186 40.2622 36.5081 40.3324 36.2475 40.4727C35.9869 40.623 35.6913 40.8586 35.3605 41.1793C34.9997 41.51 34.684 41.8408 34.3833 42.2016C34.0425 42.6025 33.7268 43.0184 33.4362 43.4494L32.6243 44.607C32.2134 45.1783 31.9227 45.6143 31.7524 45.915ZM40.6675 53.1613L40.7727 53.011C40.7326 53.021 40.6976 53.0361 40.6675 53.0561C40.6274 53.0862 40.5723 53.1162 40.5021 53.1463C40.3919 53.2165 40.1413 53.3718 39.7504 53.6124L38.6529 54.2889C37.5003 54.9905 36.6334 55.6169 36.0521 56.1681C35.4607 56.7294 35.1651 57.2055 35.1651 57.5964C35.1651 57.9071 35.3154 58.0624 35.6161 58.0624C35.9869 58.0624 36.4179 57.897 36.909 57.5663C37.3801 57.2456 37.9012 56.7745 38.4725 56.1531C38.9937 55.5718 39.5299 54.8652 40.0812 54.0333L40.6675 53.1613ZM37.4803 47.9145C38.0315 47.7341 38.5878 47.4935 39.1491 47.1929C39.6803 46.9122 40.1313 46.6115 40.5021 46.2908C40.8429 45.9901 41.0133 45.7496 41.0133 45.5692C41.0133 45.4289 40.9331 45.3587 40.7727 45.3587C40.6424 45.3587 40.462 45.4189 40.2315 45.5391C40.011 45.6394 39.7855 45.7747 39.555 45.945C39.124 46.2557 38.7281 46.5865 38.3673 46.9373C38.0065 47.2881 37.7108 47.6138 37.4803 47.9145ZM50.3343 43.0585C50.3243 43.2089 50.2591 43.3492 50.1389 43.4795C50.0186 43.6198 49.8983 43.69 49.7781 43.69C49.6277 43.69 49.5525 43.6198 49.5525 43.4795C49.5525 43.3191 49.6177 43.1688 49.748 43.0285C49.8683 42.8881 49.9885 42.818 50.1088 42.818C50.2591 42.818 50.3343 42.8982 50.3343 43.0585ZM54.4085 50.6507C54.4085 50.9113 54.5188 51.0416 54.7393 51.0416C55.06 51.0416 55.6062 50.7058 56.378 50.0343C57.1697 49.3427 57.9114 48.5509 58.603 47.6589C59.3747 46.6867 59.7606 46.0352 59.7606 45.7045C59.7606 45.484 59.6754 45.3788 59.505 45.3888C59.2444 45.3788 58.8135 45.6093 58.2121 46.0803C57.5907 46.5414 56.9693 47.1027 56.3479 47.7642C55.7866 48.3455 55.3306 48.8967 54.9798 49.4179C54.629 49.9591 54.4386 50.37 54.4085 50.6507ZM68.3299 47.8243V47.8393L71.8329 43.0285H72.344L68.9764 47.6589L69.2019 47.4184C70.0338 46.5965 70.6702 46.0302 71.1112 45.7195C71.5522 45.4088 71.9431 45.2535 72.2839 45.2535C72.4743 45.2535 72.6297 45.3086 72.7499 45.4189C72.8602 45.5391 72.9153 45.6995 72.9153 45.8999C72.9153 46.0803 72.8852 46.2457 72.8251 46.3961C72.765 46.5464 72.6146 46.7669 72.3741 47.0576C72.2037 47.268 71.918 47.5988 71.5171 48.0498L70.8406 48.7865C70.3996 49.2876 70.0789 49.6534 69.8784 49.8839C69.688 50.1245 69.5627 50.2999 69.5026 50.4101C69.4324 50.5404 69.3974 50.6557 69.3974 50.7559C69.3974 50.8261 69.4274 50.8962 69.4876 50.9664C69.5377 51.0365 69.6078 51.0716 69.698 51.0716C70.0188 51.0716 70.5099 50.786 71.1714 50.2147C71.8028 49.6634 72.4392 48.9969 73.0807 48.2152C73.4816 47.6639 74.0479 47.0926 74.7795 46.5013C75.2406 46.1204 75.7166 45.7997 76.2077 45.5391C76.6988 45.2685 77.0897 45.1332 77.3804 45.1332C77.7011 45.1332 77.8615 45.2635 77.8615 45.5241C77.8615 45.7546 77.6761 46.0403 77.3052 46.381C76.9244 46.7218 76.4332 47.0525 75.8319 47.3733C75.1704 47.704 74.5189 47.9546 73.8775 48.125L73.7722 48.155C73.0907 49.0671 72.7499 49.7737 72.7499 50.2748C72.7499 50.7559 72.9754 50.9965 73.4265 50.9965C73.7271 50.9965 74.128 50.8611 74.6292 50.5905C75.0902 50.3299 75.6114 49.9441 76.1927 49.4329C76.6638 49.012 77.1048 48.566 77.5157 48.0949C77.636 47.9245 77.7663 47.7441 77.9066 47.5537L80.312 44.2612L80.9434 43.4193L81.62 42.5173C82.7826 40.9437 83.865 39.6709 84.8673 38.6987C85.3885 38.1775 85.8395 37.9169 86.2203 37.9169C86.501 37.9169 86.6413 38.0572 86.6413 38.3379C86.6413 38.5784 86.4659 38.9292 86.1151 39.3902C85.7643 39.8513 85.183 40.4877 84.3712 41.2996C82.8978 42.7578 81.5598 43.9606 80.3571 44.9077L77.9667 48.2001L77.1849 49.2826C76.6838 49.9641 76.4332 50.4402 76.4332 50.7108C76.4332 50.791 76.4583 50.8561 76.5084 50.9062C76.5535 50.9664 76.6137 50.9965 76.7039 50.9965C76.9544 50.9965 77.3403 50.7559 77.8615 50.2748C78.1622 49.9842 78.523 49.6033 78.9439 49.1322C79.1544 48.8917 79.3498 48.6712 79.5302 48.4707C79.6605 48.2903 79.8109 48.1049 79.9813 47.9145L80.0414 47.8243L80.0564 47.8393C80.307 47.5587 80.5976 47.2781 80.9284 46.9974C81.5448 46.4412 82.1461 46.0052 82.7174 45.7045C83.2737 45.3888 83.7097 45.2234 84.0254 45.2234C84.3762 45.2234 84.5516 45.3938 84.5516 45.7346C84.5516 46.0954 84.286 46.6566 83.7548 47.4184C83.2236 48.1801 82.6072 48.9017 81.9056 49.5833L81.8605 49.6434H82.071C82.8026 49.6434 83.6094 49.1523 84.4914 48.1701L84.4764 48.155L84.5967 48.0498L84.747 47.8544L84.762 47.8243L85.3484 47.1327C86.0399 46.2608 86.4809 45.6794 86.6714 45.3888C86.6714 45.2585 86.7816 45.0029 87.0021 44.6221C87.3529 44.1309 87.6686 43.7351 87.9492 43.4344C88.0495 43.3041 88.1397 43.2389 88.2199 43.2389C88.2599 43.2389 88.28 43.269 88.28 43.3291C88.28 43.4895 88.0845 43.8403 87.6937 44.3815L87.2727 44.9829C87.2126 45.0631 87.1324 45.1683 87.0322 45.2986C86.942 45.4189 86.8868 45.494 86.8668 45.5241C86.9119 45.5842 87.0322 45.6143 87.2276 45.6143H87.7839C88.3251 45.6143 88.5957 45.7847 88.5957 46.1254C88.5957 46.3159 88.5105 46.5364 88.3401 46.7869C88.1497 47.0475 87.839 47.3883 87.408 47.8093L86.491 48.7263C85.5137 49.6885 85.0176 50.3801 85.0176 50.816C85.0176 50.9864 85.1028 51.0716 85.2732 51.0716C85.6942 51.0716 86.516 50.4803 87.7388 49.2976C88.0595 49.017 88.5155 48.5259 89.1069 47.8243L89.2572 47.9596L89.1369 48.1099C88.5155 48.8416 87.8891 49.483 87.2577 50.0343C86.3456 50.8662 85.6691 51.2821 85.2281 51.2821C84.8673 51.2821 84.6819 51.0816 84.6718 50.6807C84.6718 50.4402 84.7721 50.1445 84.9725 49.7937C85.2532 49.3227 85.9598 48.5259 87.0923 47.4033C87.4331 47.0626 87.6987 46.7819 87.8891 46.5614C88.0294 46.4011 88.0996 46.2557 88.0996 46.1254C88.0996 45.945 87.9292 45.8548 87.5884 45.8548C87.2978 45.8548 87.0973 45.8448 86.9871 45.8248C86.8969 45.7947 86.8167 45.7546 86.7465 45.7045L86.6714 45.7797C86.2805 46.3309 85.6942 47.0525 84.9124 47.9446L84.9274 47.9596C84.8673 48.0398 84.8222 48.0899 84.7921 48.1099C84.742 48.16 84.6969 48.2152 84.6568 48.2753L84.6418 48.2903H84.6267C84.1858 48.8115 83.7748 49.1924 83.394 49.4329C82.973 49.7035 82.537 49.8388 82.086 49.8388C81.9357 49.8388 81.7954 49.8288 81.6651 49.8088L81.62 49.8388C81.0186 50.3901 80.5525 50.7659 80.2218 50.9664C79.881 51.1769 79.5954 51.2821 79.3649 51.2821C79.1544 51.2821 78.994 51.2169 78.8838 51.0867C78.7535 50.9463 78.6883 50.7609 78.6883 50.5304C78.6883 50.2097 78.7685 49.8589 78.9289 49.478C78.8086 49.6083 78.6933 49.7286 78.5831 49.8388C78.117 50.335 77.7262 50.6807 77.4556 50.8762C77.1348 51.1067 76.8692 51.222 76.6588 51.222C76.308 51.222 76.1326 51.0416 76.1326 50.6807C76.1326 50.37 76.3481 49.8689 76.779 49.1773C76.318 49.6284 75.8519 50.0243 75.3809 50.365C74.569 50.9463 73.9126 51.237 73.4114 51.237C73.1107 51.237 72.8652 51.1318 72.6748 50.9213C72.4843 50.7008 72.3891 50.4151 72.3891 50.0643C72.3891 49.7536 72.4543 49.4379 72.5846 49.1172C72.0935 49.6584 71.6424 50.0994 71.2315 50.4402C70.585 50.9964 70.0739 51.2671 69.698 51.2671C69.2971 51.2671 69.0967 51.0616 69.0967 50.6507C69.0967 50.36 69.237 50.0243 69.5176 49.6434C69.7682 49.2926 70.4046 48.566 71.4269 47.4635C71.888 46.9623 72.2087 46.5915 72.3891 46.351C72.5395 46.1305 72.6146 45.935 72.6146 45.7646C72.6146 45.5742 72.5044 45.479 72.2839 45.479C71.8429 45.479 71.2165 45.8448 70.4046 46.5765C69.8133 47.0876 69.2621 47.6238 68.7509 48.1851C68.2397 48.7564 67.7536 49.3477 67.2926 49.9591L66.4507 51.1167L62.7824 56.2433H62.2111L67.1122 49.5081C67.012 49.6183 66.9117 49.7286 66.8115 49.8388C66.3304 50.34 65.9596 50.6857 65.699 50.8762C65.4284 51.0766 65.1929 51.1769 64.9924 51.1769C64.8421 51.1769 64.7168 51.1267 64.6166 51.0265C64.5163 50.9363 64.4662 50.811 64.4662 50.6507C64.4662 50.3099 64.6667 49.7987 65.0676 49.1172L64.9172 49.2375C64.5163 49.6685 64.0252 50.1295 63.4439 50.6206C62.8826 51.0516 62.4567 51.2671 62.166 51.2671C61.9856 51.2671 61.8403 51.2019 61.73 51.0716C61.6198 50.9413 61.5647 50.776 61.5647 50.5755C61.5647 50.2147 61.7 49.7887 61.9706 49.2976C62.2312 48.8165 62.602 48.3254 63.0831 47.8243C63.6945 47.1728 64.4161 46.5715 65.248 46.0202C66.0498 45.4589 66.6211 45.1783 66.9619 45.1783C67.2726 45.1783 67.4279 45.3437 67.4279 45.6744C67.4279 45.7245 67.4079 45.8248 67.3678 45.9751L67.8489 45.2986H68.4202C68.36 45.3888 68.3299 45.4289 68.3299 45.4189L67.9842 45.8548L67.6083 46.366L67.3377 46.7268L65.4134 49.3878C64.9623 49.9892 64.7368 50.4151 64.7368 50.6657C64.7368 50.8662 64.827 50.9664 65.0074 50.9664C65.2279 50.9664 65.5487 50.776 65.9696 50.3951C66.6111 49.8038 67.3477 48.9969 68.1796 47.9746L68.3299 47.8243ZM61.8503 50.6507C61.8503 50.9113 61.9606 51.0416 62.1811 51.0416C62.5018 51.0416 63.048 50.7058 63.8198 50.0343C64.6115 49.3527 65.3582 48.561 66.0598 47.6589C66.8215 46.6867 67.2024 46.0352 67.2024 45.7045C67.2024 45.494 67.1172 45.3888 66.9468 45.3888C66.6862 45.3888 66.2553 45.6193 65.6539 46.0803C65.0325 46.5414 64.4111 47.1027 63.7897 47.7642C63.2284 48.3455 62.7724 48.8967 62.4216 49.4179C62.0708 49.9691 61.8804 50.3801 61.8503 50.6507ZM73.9827 47.9145C74.534 47.7441 75.0902 47.5036 75.6515 47.1929C76.1827 46.9122 76.6337 46.6115 77.0045 46.2908C77.3453 45.9901 77.5157 45.7496 77.5157 45.5692C77.5157 45.4289 77.4355 45.3587 77.2751 45.3587C77.1448 45.3587 76.9644 45.4189 76.7339 45.5391C76.5235 45.6494 76.2979 45.7847 76.0574 45.945C75.6264 46.2658 75.2305 46.6015 74.8697 46.9523C74.5089 47.2931 74.2132 47.6138 73.9827 47.9145ZM81.3493 43.5546L80.7931 44.2913C81.4045 43.8102 82.2013 43.1137 83.1835 42.2016C85.3484 40.1269 86.4308 38.849 86.4308 38.3679C86.4308 38.2076 86.3557 38.1274 86.2053 38.1274C85.9648 38.1274 85.5889 38.383 85.0627 38.9092C84.7119 39.2599 84.1807 39.8814 83.4691 40.7734C82.7475 41.6754 82.2063 42.377 81.8455 42.8781C81.7452 43.0285 81.635 43.1788 81.5147 43.3291C81.4446 43.4294 81.3894 43.5045 81.3493 43.5546ZM81.5899 49.5382C81.9908 49.1673 82.3917 48.7213 82.7926 48.2001C83.1935 47.679 83.5243 47.1828 83.7848 46.7118C84.0454 46.2507 84.1757 45.915 84.1757 45.7045C84.1757 45.5441 84.0955 45.464 83.9352 45.464C83.6946 45.464 83.404 45.5742 83.0632 45.7947C82.7325 46.0202 82.4168 46.3209 82.101 46.6967C81.8204 47.0475 81.5949 47.4134 81.4245 47.7942C81.2591 48.1851 81.184 48.5309 81.184 48.8165C81.184 49.1373 81.3193 49.3778 81.5899 49.5382ZM81.4245 49.7336C81.2441 49.5933 81.1188 49.453 81.0487 49.3126C80.9785 49.1824 80.9434 49.022 80.9434 48.8316C80.9535 48.5509 81.0286 48.2302 81.1689 47.8694C81.3193 47.4986 81.4997 47.1728 81.7102 46.8922L81.9958 46.5013C82.0259 46.4813 82.0509 46.4562 82.071 46.4261C82.071 46.4161 82.081 46.4061 82.101 46.3961C82.101 46.386 82.1061 46.371 82.1161 46.351L82.0259 46.4412C81.3193 47.1027 80.748 47.719 80.327 48.2603C79.445 49.3527 79.004 50.1495 79.004 50.6507C79.004 50.7509 79.0391 50.8461 79.1093 50.9363C79.1694 51.0265 79.2546 51.0716 79.3649 51.0716C79.6255 51.0716 80.0765 50.8261 80.7179 50.335C80.8683 50.2047 81.0186 50.0744 81.1689 49.9441C81.3193 49.8138 81.4045 49.7436 81.4245 49.7336Z\" fill=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"Nfwcl_6KI\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-wqukup framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"Nfwcl_6KI\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vrm5z0\",\"data-framer-name\":\"Group 1289\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:175,layoutDependency:layoutDependency,layoutId:\"NEbRKh_GF\",svg:'<svg width=\"175\" height=\"39\" viewBox=\"0 0 175 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.098 30.1482H9.54658C8.83969 29.3029 8.48989 26.9053 8.48989 22.9482V22.9118L8.52633 21.119C8.57006 18.6413 8.59192 17.3733 8.59192 17.315C8.59192 16.3093 7.91418 15.7919 6.55143 15.7919V30.1045H0V0.28418H8.08908C9.9401 0.28418 11.5433 0.699567 12.9061 1.5522C14.2761 2.39755 14.9612 3.73115 14.9612 5.5603V9.13845C14.9612 11.4559 13.6057 13.0227 10.8948 13.8389C13.613 14.4802 14.983 16.1198 14.983 18.7725L14.8737 22.0373C14.8737 26.8033 15.2818 29.5142 16.098 30.1482ZM8.59192 10.5959V5.69148C8.59192 4.64937 7.91418 4.13196 6.55143 4.13196V12.1773C7.91418 12.1773 8.59192 11.6453 8.59192 10.5959ZM30.8041 19.8802H22.8389V25.5134C22.8389 26.3296 23.1887 26.7377 23.8737 26.7377C24.5587 26.7377 24.9013 26.3296 24.9013 25.5134V20.6453H30.8041V25.5498C30.8041 28.8073 28.4867 30.4397 23.83 30.4397C19.2316 30.4397 16.9288 28.7417 16.9288 25.3458V10.8874C16.9288 7.48419 19.2316 5.7935 23.83 5.7935C28.4867 5.7935 30.8041 7.42589 30.8041 10.6834V19.8802ZM24.9013 16.2583V10.7271C24.9013 9.93278 24.5587 9.53926 23.8737 9.53926C23.1887 9.53926 22.8389 9.93278 22.8389 10.7271V16.2583H24.9013ZM43.8705 30.1118H40.132C37.4503 30.1118 35.847 29.7037 35.3223 28.902C34.7976 28.1004 34.5353 26.5555 34.5353 24.2672V9.53926H31.8972V5.96111H34.5353V1.09309H40.4673V5.96111H43.6665V9.53926H40.4673V24.2235C40.4673 24.9377 40.6713 25.4041 41.094 25.6518C41.524 25.8923 42.4422 26.0162 43.8705 26.0162V30.1118ZM58.9774 30.1118H53.7304V29.1717C53.2932 30.017 52.0252 30.4397 49.9264 30.4397C46.6981 30.4397 45.0802 29.179 45.0802 26.6575V21.8113C45.0802 20.7328 45.4738 19.7854 46.2608 18.9838C47.0406 18.1749 48.6219 17.1765 50.9904 15.9668C52.3604 15.2672 53.0527 14.7134 53.0527 14.298V10.7271C53.0527 9.93278 52.7102 9.53926 52.0325 9.53926C51.2527 9.53926 50.8665 10.5012 50.8665 12.4324C50.8665 12.7822 50.8883 13.2923 50.9321 13.97C50.9831 14.6478 51.0049 15.1652 51.0049 15.5077H45.2916V10.6834C45.2916 7.42589 47.6527 5.7935 52.3604 5.7935C56.7693 5.7935 58.9774 7.49148 58.9774 10.8874V30.1118ZM53.0527 25.6008V19.3773C51.6875 19.7126 51.0049 20.3247 51.0049 21.2138V25.6008C51.0049 26.3393 51.3596 26.7085 52.0689 26.7085C52.7248 26.7085 53.0527 26.3393 53.0527 25.6008ZM66.192 4.6348H60.2673V0.29147H66.192V4.6348ZM66.192 30.1118H60.2673V5.9684H66.192V30.1118ZM73.4139 30.1118H67.4892V0.28418H73.4139V30.1118ZM83.3321 19.5012H74.8641V16.149H83.3321V19.5012Z\" fill=\"black\"/>\\n<path d=\"M96.6828 4.13199H90.9621V12.1773H96.0779V15.7919H90.9621V30.1045H84.418V0.284208H96.6828V4.13199ZM120.564 30.1045H114.719V13.3652L111.309 30.1045H106.79L102.884 13.3652V30.1045H97.7613V0.284208H106.193L109.188 15.7555L111.782 0.284208H120.564V30.1045ZM136.348 10.698H130.38V4.78786C130.38 4.2996 130.081 4.05911 129.484 4.05911C128.857 4.05911 128.551 4.2996 128.551 4.78786V25.4842C128.551 25.9701 128.862 26.213 129.484 26.213C130.081 26.213 130.38 25.9701 130.38 25.4842V18.1166H136.348V25.6956C136.348 27.1021 135.656 28.2389 134.271 29.0915C132.887 29.9442 131.32 30.3741 129.571 30.3741C124.521 30.3741 121.999 28.5814 121.999 25.0033V5.8081C121.999 1.93846 124.521 0.00728568 129.571 0.00728568C134.089 0.00728568 136.348 1.76356 136.348 5.2907V10.698ZM152.162 30.0972H149.021L148.161 28.4575C146.726 29.7328 145.195 30.3668 143.592 30.3668C142.023 30.3668 140.653 29.9636 139.482 29.1571C138.309 28.3409 137.726 27.0438 137.726 25.2729V5.80082C137.726 1.93118 140.189 0 145.13 0C149.818 0 152.162 1.76114 152.162 5.28341V10.8146H146.23V4.78786C146.23 4.2996 145.91 4.05911 145.254 4.05911C144.605 4.05911 144.284 4.2996 144.284 4.78786V25.4842C144.284 25.9652 144.605 26.2057 145.254 26.2057C145.905 26.2057 146.23 25.9652 146.23 25.4842V19.9021H144.882V15.3328H152.162V30.0972Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M156.503 30.1045H153.18V27.4446H156.503V30.1045ZM165.86 21.4324H162.223V18.2259C162.223 17.7692 162.015 17.5409 161.597 17.5409C161.179 17.5409 160.97 17.7595 160.97 18.1968V30.1045H157.341V15.3036H160.97V15.7992C161.458 15.3984 162.209 15.1943 163.222 15.1943C163.943 15.1943 164.563 15.3911 165.08 15.7773C165.6 16.166 165.86 16.6761 165.86 17.3077V21.4324ZM166.472 27.1749V18.3134C166.472 16.234 167.913 15.1943 170.793 15.1943C171.908 15.1943 172.885 15.4348 173.738 15.9158C174.576 16.4041 174.998 17.1619 174.998 18.1895V27.3061C174.998 29.3029 173.599 30.3012 170.793 30.3012C167.913 30.3012 166.472 29.2591 166.472 27.1749ZM171.369 27.2842V18.2186C171.369 17.7304 171.158 17.4899 170.742 17.4899C170.32 17.4899 170.101 17.7304 170.101 18.2186V27.2842C170.101 27.7846 170.315 28.0324 170.742 28.0276C171.158 28.0276 171.369 27.7798 171.369 27.2842Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.261719 36.4659V31.248H2.74674C3.31031 31.248 3.70626 31.3574 3.9346 31.576C4.16294 31.7995 4.27711 32.1857 4.27711 32.7347C4.27711 33.2157 4.21638 33.5509 4.09492 33.7404C3.96861 33.9298 3.72812 34.0537 3.37347 34.112V34.1266C3.92731 34.1655 4.20424 34.5007 4.20424 35.1323V36.4659H3.62124V35.2707C3.62124 34.6586 3.35646 34.3525 2.82691 34.3525H0.852004V36.4659H0.261719ZM0.852004 33.857H2.55727C3.00423 33.857 3.31031 33.7889 3.47549 33.6529C3.63581 33.5169 3.71598 33.2594 3.71598 32.8804C3.71598 32.4092 3.65525 32.1007 3.53379 31.9549C3.41233 31.814 3.15241 31.7436 2.75403 31.7436H0.852004V33.857ZM7.65849 35.3655H8.21234V35.4966C8.21234 35.8756 8.09574 36.1428 7.86254 36.2983C7.6342 36.4489 7.23096 36.5242 6.65282 36.5242C5.97752 36.5242 5.53541 36.4003 5.3265 36.1525C5.1176 35.9096 5.01071 35.3922 5.00585 34.6003C5.00585 33.8715 5.11274 33.3833 5.3265 33.1355C5.54027 32.8829 5.95565 32.7566 6.57266 32.7566C7.24311 32.7566 7.68279 32.8659 7.89169 33.0845C8.1006 33.3031 8.20748 33.7598 8.21234 34.4545V34.7387H5.57428C5.57428 35.3169 5.63744 35.6837 5.76375 35.8391C5.88521 35.9995 6.17428 36.0796 6.63096 36.0796C7.05849 36.0796 7.33785 36.0432 7.46902 35.9703C7.59534 35.8926 7.65849 35.7298 7.65849 35.4821V35.3655ZM7.65849 34.3234V34.1485C7.65849 33.7549 7.5929 33.4974 7.46173 33.376C7.33056 33.2594 7.0512 33.2011 6.62367 33.2011C6.18642 33.2011 5.90464 33.2715 5.77833 33.4124C5.64715 33.5485 5.58157 33.8521 5.58157 34.3234H7.65849ZM11.7613 32.8076L10.537 36.4659H9.77186L8.55485 32.8076H9.1087L9.75 34.8043L9.95404 35.4238L10.0488 35.7371L10.1508 36.0505H10.1654L10.2601 35.7444L10.3476 35.4311L10.5443 34.8043L11.1638 32.8076H11.7613ZM12.7451 31.248V31.8456H12.2059V31.248H12.7451ZM12.7451 32.8076V36.4659H12.2132V32.8076H12.7451ZM16.5128 33.7695H15.9808C15.9808 33.512 15.9298 33.3541 15.8277 33.2958C15.7209 33.2327 15.4536 33.2011 15.0261 33.2011C14.6277 33.2011 14.3751 33.2327 14.2682 33.2958C14.1613 33.3638 14.1079 33.5217 14.1079 33.7695C14.1079 34.1436 14.2877 34.3404 14.6472 34.3598L15.0844 34.3817L15.631 34.4035C16.2917 34.4375 16.6221 34.7849 16.6221 35.4456C16.6221 35.8586 16.5128 36.1404 16.2941 36.291C16.0755 36.4464 15.6723 36.5242 15.0844 36.5242C14.4868 36.5242 14.0763 36.4513 13.8528 36.3055C13.6245 36.1598 13.5103 35.8926 13.5103 35.5039L13.5176 35.3072H14.0715V35.4748C14.0715 35.7177 14.1346 35.878 14.2609 35.9558C14.3824 36.0383 14.6229 36.0796 14.9824 36.0796C15.4245 36.0796 15.7136 36.0359 15.8496 35.9485C15.9905 35.8659 16.0609 35.691 16.0609 35.4238C16.0609 35.04 15.886 34.8481 15.5362 34.8481C14.7249 34.8481 14.1905 34.7776 13.933 34.6367C13.6755 34.5007 13.5468 34.2165 13.5468 33.7841C13.5468 33.3711 13.6488 33.0966 13.8528 32.9606C14.052 32.8246 14.4553 32.7566 15.0626 32.7566C16.0294 32.7566 16.5128 33.0481 16.5128 33.6311V33.7695ZM19.333 32.8149V33.2594H17.9265V35.4966C17.9265 35.8853 18.099 36.0796 18.4439 36.0796C18.7889 36.0796 18.9613 35.9047 18.9613 35.5549V35.38L18.9686 35.176H19.4715V35.4456C19.4715 36.1647 19.1314 36.5242 18.4512 36.5242C17.7419 36.5242 17.3873 36.2254 17.3873 35.6278V33.2594H16.8844V32.8149H17.3873V31.9331H17.9265V32.8149H19.333ZM20.499 33.8424H19.967C19.967 33.4149 20.0642 33.1282 20.2585 32.9825C20.448 32.8367 20.8245 32.7638 21.3881 32.7638C21.9954 32.7638 22.4083 32.8537 22.6269 33.0335C22.8407 33.2132 22.9476 33.5558 22.9476 34.061V36.4732H22.4083L22.452 36.0796L22.4375 36.0724C22.2334 36.3736 21.8205 36.5242 21.1986 36.5242C20.2755 36.5242 19.814 36.1525 19.814 35.4092C19.814 34.9719 19.916 34.6683 20.1201 34.4983C20.329 34.3282 20.7031 34.2432 21.2423 34.2432C21.8836 34.2432 22.2674 34.3695 22.3937 34.6221H22.4083V34.1776C22.4083 33.7598 22.35 33.4877 22.2334 33.3614C22.1217 33.24 21.8715 33.1792 21.4828 33.1792C20.8269 33.1792 20.499 33.3638 20.499 33.7331C20.499 33.7525 20.499 33.7889 20.499 33.8424ZM21.3589 34.6659C20.9508 34.6659 20.6836 34.7072 20.5573 34.7898C20.4358 34.8772 20.3751 35.0643 20.3751 35.3509C20.3751 35.6472 20.4358 35.844 20.5573 35.9412C20.6788 36.0335 20.9265 36.0796 21.3006 36.0796C22.0585 36.0796 22.4375 35.8513 22.4375 35.3946C22.4375 35.1031 22.3646 34.9088 22.2188 34.8116C22.0682 34.7145 21.7816 34.6659 21.3589 34.6659ZM25.95 32.8149H26.482L26.431 33.2375L26.4383 33.2448C26.652 32.9047 27.0018 32.7347 27.4877 32.7347C28.163 32.7347 28.5006 33.0796 28.5006 33.7695L28.4933 34.0246H27.9687L27.9759 33.9298C27.9857 33.8327 27.9905 33.7671 27.9905 33.7331C27.9905 33.359 27.7865 33.1719 27.3784 33.1719C26.7808 33.1719 26.482 33.5412 26.482 34.2796V36.4732H25.95V32.8149ZM31.5614 35.3655H32.1079L32.1152 35.5039C32.1152 35.8829 31.9986 36.1477 31.7654 36.2983C31.5371 36.4489 31.1314 36.5242 30.5484 36.5242C29.878 36.5242 29.4383 36.4027 29.2294 36.1598C29.0156 35.912 28.9087 35.3946 28.9087 34.6076C28.9087 33.8788 29.0156 33.3881 29.2294 33.1355C29.4383 32.8877 29.8512 32.7638 30.4682 32.7638C31.1436 32.7638 31.5857 32.8707 31.7946 33.0845C32.0035 33.3031 32.1079 33.7598 32.1079 34.4545V34.7387H29.4772C29.4772 35.3169 29.5379 35.6861 29.6593 35.8464C29.7857 36.0019 30.0747 36.0796 30.5265 36.0796C30.9589 36.0796 31.2407 36.0432 31.3719 35.9703C31.4982 35.8926 31.5614 35.7298 31.5614 35.4821V35.3655ZM31.5614 34.3234V34.1485C31.5614 33.7549 31.4958 33.4999 31.3646 33.3833C31.2334 33.2618 30.9517 33.2011 30.5193 33.2011C30.0869 33.2011 29.8075 33.2715 29.6812 33.4124C29.55 33.5533 29.4844 33.857 29.4844 34.3234H31.5614ZM34.8917 32.8149V33.2594H33.4853V35.4966C33.4853 35.8853 33.6602 36.0796 34.01 36.0796C34.3549 36.0796 34.5274 35.9047 34.5274 35.5549V35.38L34.5347 35.176H35.0302L35.0375 35.4456C35.0375 36.1647 34.695 36.5242 34.01 36.5242C33.3055 36.5242 32.9533 36.2254 32.9533 35.6278V33.2594H32.4431V32.8149H32.9533V31.9331H33.4853V32.8149H34.8917ZM36.065 33.8351H35.533C35.533 33.4124 35.6278 33.1258 35.8172 32.9752C36.0116 32.8294 36.3881 32.7566 36.9468 32.7566C37.559 32.7566 37.9719 32.8464 38.1857 33.0262C38.3994 33.2059 38.5063 33.5485 38.5063 34.0537V36.4732H37.9743L38.0108 36.0796L38.0035 36.0724C37.7994 36.3736 37.384 36.5242 36.7573 36.5242C35.8342 36.5242 35.3727 36.1525 35.3727 35.4092C35.3727 34.9671 35.4772 34.6634 35.6861 34.4983C35.8901 34.3282 36.2642 34.2432 36.8083 34.2432C37.4496 34.2432 37.8334 34.3695 37.9598 34.6221H37.9743V34.1776C37.9743 33.7549 37.916 33.4829 37.7994 33.3614C37.6828 33.24 37.4326 33.1792 37.0488 33.1792C36.3881 33.1792 36.0577 33.3638 36.0577 33.7331C36.0577 33.7477 36.0602 33.7817 36.065 33.8351ZM36.9249 34.6586C36.512 34.6586 36.2448 34.7023 36.1233 34.7898C35.997 34.8772 35.9338 35.0643 35.9338 35.3509C35.9338 35.6472 35.997 35.8416 36.1233 35.9339C36.2448 36.0311 36.4926 36.0796 36.8666 36.0796C37.6197 36.0796 37.9962 35.8513 37.9962 35.3946C37.9962 35.1031 37.9233 34.9088 37.7776 34.8116C37.6318 34.7096 37.3476 34.6586 36.9249 34.6586ZM40.0367 31.248V31.8456H39.4974V31.248H40.0367ZM40.0367 32.8149V36.4732H39.5047V32.8149H40.0367ZM41.5088 31.248V36.4732H40.9695V31.248H41.5088ZM45.4367 32.8149V36.4732H44.9047L44.9411 35.9922L44.9266 35.9776C44.742 36.342 44.3436 36.5242 43.7314 36.5242C42.8764 36.5242 42.4513 36.0991 42.4561 35.2489V32.8149H42.9881V35.2489C42.9881 35.5792 43.044 35.8003 43.1557 35.912C43.2626 36.0238 43.4764 36.0796 43.797 36.0796C44.2197 36.0796 44.5088 35.997 44.6642 35.8319C44.8246 35.6618 44.9047 35.3557 44.9047 34.9136V32.8149H45.4367ZM46.9598 31.248V36.4732H46.4278V31.248H46.9598ZM50.8804 32.8149V36.4732H50.3484L50.3849 35.9922L50.3776 35.9776C50.1881 36.342 49.7897 36.5242 49.1825 36.5242C48.3274 36.5242 47.8999 36.0991 47.8999 35.2489V32.8149H48.4318V35.2489C48.4318 35.5792 48.4877 35.8003 48.5995 35.912C48.7063 36.0238 48.9225 36.0796 49.248 36.0796C49.6658 36.0796 49.9549 35.997 50.1152 35.8319C50.2707 35.6618 50.3484 35.3557 50.3484 34.9136V32.8149H50.8804ZM52.4035 31.248V31.8456H51.8715V31.248H52.4035ZM52.4035 32.8149V36.4732H51.8642V32.8149H52.4035ZM58.1387 33.7695H57.5995C57.5995 33.512 57.5485 33.3541 57.4464 33.2958C57.3444 33.2327 57.0796 33.2011 56.6521 33.2011C56.2537 33.2011 56.0011 33.2351 55.8942 33.3031C55.7873 33.3663 55.7339 33.5217 55.7339 33.7695C55.7339 34.1436 55.9136 34.3404 56.2732 34.3598L56.7031 34.3817L57.2497 34.4108C57.9153 34.44 58.2481 34.7873 58.2481 35.4529C58.2481 35.861 58.1363 36.1404 57.9128 36.291C57.6942 36.4464 57.2934 36.5242 56.7104 36.5242C56.1128 36.5242 55.6999 36.4513 55.4715 36.3055C55.248 36.1598 55.1363 35.8926 55.1363 35.5039V35.3072H55.6902L55.6974 35.4821C55.6974 35.7201 55.7582 35.8804 55.8796 35.963C56.0011 36.0408 56.2416 36.0796 56.6011 36.0796C57.0432 36.0796 57.3347 36.0383 57.4756 35.9558C57.6116 35.8683 57.6796 35.691 57.6796 35.4238C57.6796 35.04 57.5047 34.8481 57.1549 34.8481C56.3436 34.8481 55.8092 34.78 55.5517 34.644C55.2991 34.5031 55.1727 34.2165 55.1727 33.7841C55.1727 33.376 55.2723 33.1039 55.4715 32.9679C55.6756 32.827 56.0788 32.7566 56.6812 32.7566C57.6529 32.7566 58.1387 33.0505 58.1387 33.6383V33.7695ZM59.5525 31.248V31.8456H59.0132V31.248H59.5525ZM59.5525 32.8076V36.4659H59.0205V32.8076H59.5525ZM62.9849 31.248V31.8456H62.4456V31.248H62.9849ZM62.9849 32.8076V36.4659H62.4529V32.8076H62.9849ZM63.9177 32.8076H64.4351L64.4205 33.3104L64.4351 33.3177C64.6003 32.9436 65.006 32.7566 65.6521 32.7566C66.1768 32.7566 66.5315 32.8489 66.7161 33.0335C66.9007 33.2181 66.993 33.5703 66.993 34.0902V36.4659H66.461V33.9954C66.461 33.6796 66.4003 33.4683 66.2788 33.3614C66.1574 33.2545 65.9266 33.2011 65.5865 33.2011C64.8335 33.2011 64.457 33.5557 64.457 34.2651V36.4659H63.9177V32.8076ZM71.0157 31.248V36.4659H70.4837L70.5129 35.9922H70.491C70.3258 36.342 69.9347 36.5193 69.3177 36.5242C68.759 36.5193 68.3752 36.3809 68.1663 36.1088C67.9622 35.8367 67.8602 35.329 67.8602 34.5857C67.8602 33.9007 67.9647 33.4246 68.1736 33.1574C68.3776 32.8902 68.7469 32.7566 69.2813 32.7566C69.9469 32.7566 70.3428 32.929 70.4691 33.274L70.4837 33.2667V31.248H71.0157ZM69.4052 33.2011C69.0068 33.2011 68.7444 33.291 68.6181 33.4707C68.4869 33.6553 68.4214 34.0246 68.4214 34.5784C68.4214 35.1906 68.4845 35.5938 68.6108 35.7881C68.742 35.9825 69.0092 36.0796 69.4124 36.0796C69.8546 36.0796 70.1436 35.9825 70.2797 35.7881C70.4108 35.5938 70.4764 35.1736 70.4764 34.5274C70.4764 34.0076 70.4035 33.6553 70.2578 33.4707C70.1072 33.291 69.823 33.2011 69.4052 33.2011ZM74.9436 32.8076V36.4659H74.4044L74.4408 35.9922L74.4335 35.9776C74.2489 36.3371 73.8505 36.5193 73.2384 36.5242C72.3833 36.5242 71.9558 36.0966 71.9558 35.2416V32.8076H72.495V35.2416C72.495 35.5719 72.5485 35.793 72.6554 35.9047C72.7671 36.0213 72.9833 36.0796 73.304 36.0796C73.7266 36.0796 74.0157 35.9946 74.1712 35.8246C74.3266 35.6594 74.4044 35.3533 74.4044 34.9064V32.8076H74.9436ZM78.7696 33.7695H78.2376C78.2376 33.512 78.1841 33.3517 78.0772 33.2885C77.9752 33.2302 77.7104 33.2011 77.2829 33.2011C76.8845 33.2011 76.6319 33.2327 76.525 33.2958C76.4181 33.3638 76.3647 33.5217 76.3647 33.7695C76.3647 34.1436 76.5444 34.3379 76.904 34.3525L77.3339 34.3744L77.8805 34.4035C78.5461 34.4375 78.8789 34.7849 78.8789 35.4456C78.8789 35.8537 78.7696 36.1355 78.5509 36.291C78.3274 36.4416 77.9242 36.5193 77.3412 36.5242C76.7436 36.5193 76.3307 36.4464 76.1023 36.3055C75.8789 36.1598 75.7671 35.8926 75.7671 35.5039V35.3072H76.3283V35.4748C76.3283 35.7177 76.389 35.878 76.5104 35.9558C76.6368 36.0383 76.8797 36.0796 77.2392 36.0796C77.6764 36.0796 77.9655 36.0359 78.1064 35.9485C78.2473 35.8659 78.3177 35.691 78.3177 35.4238C78.3177 35.04 78.1428 34.8481 77.793 34.8481C76.9768 34.8481 76.44 34.7776 76.1825 34.6367C75.9299 34.5007 75.8035 34.2165 75.8035 33.7841C75.8035 33.3711 75.9056 33.0966 76.1096 32.9606C76.3088 32.8246 76.7121 32.7566 77.3193 32.7566C78.2861 32.7566 78.7696 33.0481 78.7696 33.6311V33.7695ZM81.5898 32.8149V33.2594H80.176V35.4966C80.176 35.8853 80.3509 36.0796 80.7007 36.0796C81.0457 36.0796 81.2181 35.9047 81.2181 35.5549V35.38L81.2254 35.176H81.7283V35.4456C81.7283 36.1647 81.3857 36.5242 80.7007 36.5242C79.9963 36.5242 79.644 36.2254 79.644 35.6278V33.2594H79.1412V32.8149H79.644V31.9331H80.176V32.8149H81.5898ZM82.2602 32.8149H82.7922L82.7412 33.2302L82.7485 33.2448C82.9623 32.8999 83.3121 32.7274 83.7979 32.7274C84.4732 32.7274 84.8108 33.0748 84.8108 33.7695L84.8036 34.0246H84.2789L84.2862 33.9298C84.2959 33.8327 84.3007 33.7671 84.3007 33.7331C84.3007 33.359 84.0967 33.1719 83.6886 33.1719C83.091 33.1719 82.7922 33.5412 82.7922 34.2796V36.4732H82.2602V32.8149ZM85.8602 31.248V31.8456H85.3283V31.248H85.8602ZM85.8602 32.8149V36.4732H85.321V32.8149H85.8602ZM89.3437 35.3655H89.8902L89.8975 35.4966C89.8975 35.8804 89.7809 36.1477 89.5477 36.2983C89.3194 36.4489 88.9137 36.5242 88.3307 36.5242C87.6603 36.5242 87.2206 36.4003 87.0117 36.1525C86.7979 35.9096 86.691 35.3922 86.691 34.6003C86.691 33.8715 86.7979 33.3833 87.0117 33.1355C87.2206 32.8829 87.6335 32.7566 88.2505 32.7566C88.9258 32.7566 89.3679 32.8659 89.5769 33.0845C89.7858 33.3031 89.8902 33.7598 89.8902 34.4545V34.7387H87.2594C87.2594 35.3169 87.3202 35.6861 87.4416 35.8464C87.5679 36.0019 87.857 36.0796 88.3088 36.0796C88.7412 36.0796 89.023 36.0432 89.1542 35.9703C89.2805 35.8926 89.3437 35.7298 89.3437 35.4821V35.3655ZM89.3437 34.3234V34.1485C89.3437 33.7549 89.2781 33.4974 89.1469 33.376C89.0157 33.2594 88.7339 33.2011 88.3015 33.2011C87.8692 33.2011 87.5898 33.2715 87.4635 33.4124C87.3323 33.5485 87.2667 33.8521 87.2667 34.3234H89.3437ZM91.2748 31.248V31.8456H90.7356V31.248H91.2748ZM91.2748 32.8149V36.4659H90.7428V32.8149H91.2748ZM94.168 36.4659V31.248H94.7072V33.274L94.7145 33.2885C94.836 32.9339 95.2368 32.7566 95.9169 32.7566C96.4514 32.7566 96.8206 32.895 97.0246 33.1719C97.2287 33.4537 97.3307 33.959 97.3307 34.6877C97.3307 35.3776 97.2238 35.8562 97.0101 36.1234C96.7963 36.3906 96.4052 36.5242 95.8368 36.5242C95.2635 36.5242 94.8821 36.3541 94.6927 36.014H94.6781L94.7072 36.4659H94.168ZM95.7785 33.2011C95.3558 33.2011 95.074 33.291 94.9331 33.4707C94.7874 33.6505 94.7145 34.0076 94.7145 34.542C94.7145 35.2027 94.7801 35.6254 94.9113 35.81C95.0376 35.9898 95.3339 36.0796 95.8003 36.0796C96.1939 36.0796 96.4538 35.9873 96.5801 35.8027C96.7064 35.6181 96.7696 35.2391 96.7696 34.6659C96.7696 34.0586 96.7064 33.6626 96.5801 33.478C96.4538 33.2934 96.1866 33.2011 95.7785 33.2011ZM101.157 32.8149V36.4659H100.617L100.661 35.9922L100.647 35.9776C100.462 36.342 100.064 36.5242 99.4514 36.5242C98.5963 36.5242 98.1688 36.0966 98.1688 35.2416V32.8149H98.708V35.2416C98.708 35.5768 98.7615 35.8003 98.8684 35.912C98.9801 36.0238 99.1963 36.0796 99.517 36.0796C99.9396 36.0796 100.229 35.9946 100.384 35.8246C100.54 35.6594 100.617 35.3533 100.617 34.9064V32.8149H101.157ZM102.148 32.8149H102.665L102.651 33.3104L102.665 33.3177C102.83 32.9436 103.236 32.7566 103.882 32.7566C104.407 32.7566 104.761 32.8489 104.946 33.0335C105.131 33.2181 105.223 33.5703 105.223 34.0902V36.4659H104.684V33.9954C104.684 33.6845 104.625 33.4732 104.509 33.3614C104.387 33.2545 104.157 33.2011 103.817 33.2011C103.064 33.2011 102.687 33.5582 102.687 34.2723V36.4659H102.148V32.8149ZM109.173 32.8149V36.4732H108.641L108.677 35.9995L108.67 35.9849C108.481 36.3493 108.082 36.5315 107.475 36.5315C106.62 36.5315 106.192 36.1039 106.192 35.2489V32.8149H106.724V35.2489C106.724 35.5841 106.78 35.8076 106.892 35.9193C106.999 36.0311 107.215 36.0869 107.54 36.0869C107.958 36.0869 108.247 36.0019 108.408 35.8319C108.563 35.6667 108.641 35.3606 108.641 34.9136V32.8149H109.173ZM110.215 32.8149H110.754L110.696 33.2375L110.71 33.2521C110.919 32.9072 111.269 32.7347 111.76 32.7347C112.43 32.7347 112.766 33.0821 112.766 33.7768V34.0246H112.234L112.248 33.9371C112.253 33.84 112.255 33.7744 112.255 33.7404C112.255 33.3663 112.051 33.1792 111.643 33.1792C111.051 33.1792 110.754 33.5485 110.754 34.2869V36.4732H110.215V32.8149ZM113.822 31.2553V31.8529H113.283V31.2553H113.822ZM113.822 32.8149V36.4732H113.29V32.8149H113.822ZM115.294 31.2553V36.4732H114.755V31.2553H115.294ZM117.75 32.7638C118.425 32.7638 118.865 32.8804 119.069 33.1136C119.268 33.3517 119.368 33.8618 119.368 34.644C119.368 35.4311 119.268 35.9412 119.069 36.1744C118.865 36.4124 118.425 36.5315 117.75 36.5315C117.08 36.5315 116.642 36.4124 116.438 36.1744C116.239 35.9412 116.14 35.4311 116.14 34.644C116.14 33.8618 116.239 33.3517 116.438 33.1136C116.642 32.8804 117.08 32.7638 117.75 32.7638ZM117.75 33.2084C117.274 33.2084 116.98 33.2861 116.868 33.4416C116.757 33.5922 116.701 33.993 116.701 34.644C116.701 35.295 116.757 35.6983 116.868 35.8537C116.98 36.0092 117.274 36.0869 117.75 36.0869C118.226 36.0869 118.523 36.0092 118.639 35.8537C118.751 35.6983 118.807 35.295 118.807 34.644C118.807 33.993 118.751 33.5922 118.639 33.4416C118.523 33.2861 118.226 33.2084 117.75 33.2084ZM120.257 32.8149H120.789L120.738 33.2375L120.753 33.2521C120.962 32.9072 121.311 32.7347 121.802 32.7347C122.472 32.7347 122.808 33.0821 122.808 33.7768V34.0246H122.276L122.29 33.9371C122.295 33.84 122.298 33.7744 122.298 33.7404C122.298 33.3663 122.094 33.1792 121.685 33.1792C121.088 33.1792 120.789 33.5485 120.789 34.2869V36.4732H120.257V32.8149ZM128.339 31.2553V36.4732H127.807L127.836 35.9995H127.821C127.651 36.3541 127.258 36.5315 126.641 36.5315C126.082 36.5315 125.701 36.393 125.497 36.1161C125.288 35.844 125.183 35.3363 125.183 34.593C125.183 33.908 125.288 33.4319 125.497 33.1647C125.701 32.8974 126.07 32.7638 126.604 32.7638C127.27 32.7638 127.666 32.9363 127.792 33.2813L127.807 33.274V31.2553H128.339ZM126.728 33.2084C126.335 33.2084 126.072 33.2983 125.941 33.478C125.81 33.6626 125.745 34.0343 125.745 34.593C125.745 35.2003 125.81 35.6011 125.941 35.7954C126.068 35.9898 126.335 36.0869 126.743 36.0869C127.18 36.0869 127.467 35.9898 127.603 35.7954C127.734 35.606 127.8 35.1881 127.8 34.542C127.8 34.0173 127.727 33.6626 127.581 33.478C127.43 33.2983 127.146 33.2084 126.728 33.2084ZM131.822 35.3728H132.369L132.376 35.5039C132.376 35.8829 132.26 36.1501 132.026 36.3055C131.798 36.4562 131.395 36.5315 130.817 36.5315C130.141 36.5315 129.699 36.4076 129.49 36.1598C129.277 35.912 129.17 35.3946 129.17 34.6076C129.17 33.8788 129.277 33.3906 129.49 33.1428C129.704 32.8902 130.119 32.7638 130.736 32.7638C131.407 32.7638 131.847 32.8732 132.055 33.0918C132.264 33.3055 132.369 33.7622 132.369 34.4618V34.746H129.738C129.738 35.3242 129.801 35.691 129.928 35.8464C130.049 36.0068 130.338 36.0869 130.795 36.0869C131.222 36.0869 131.502 36.0481 131.633 35.9703C131.759 35.8975 131.822 35.7347 131.822 35.4821V35.3728ZM131.822 34.3379V34.163C131.822 33.7695 131.757 33.512 131.626 33.3906C131.494 33.274 131.215 33.2157 130.787 33.2157C130.35 33.2157 130.068 33.2837 129.942 33.4197C129.811 33.5606 129.745 33.8667 129.745 34.3379H131.822ZM135.714 31.2626V36.4804H135.175V31.2626H135.714ZM137.215 33.8497H136.683C136.683 33.4221 136.78 33.1355 136.975 32.9898C137.164 32.844 137.54 32.7711 138.104 32.7711C138.711 32.7711 139.122 32.861 139.336 33.0408C139.554 33.2205 139.664 33.563 139.664 34.0683V36.4804H139.124L139.168 36.0869H139.153C138.949 36.3881 138.536 36.5388 137.915 36.5388C136.992 36.5388 136.53 36.1671 136.53 35.4238C136.53 34.9817 136.632 34.6756 136.836 34.5055C137.045 34.3404 137.419 34.2578 137.958 34.2578C138.6 34.2578 138.983 34.3841 139.11 34.6367L139.124 34.6294V34.1849C139.124 33.7671 139.066 33.495 138.949 33.3687C138.838 33.2472 138.587 33.1865 138.199 33.1865C137.543 33.1865 137.215 33.3711 137.215 33.7404C137.215 33.7598 137.215 33.7962 137.215 33.8497ZM138.075 34.6732C137.667 34.6732 137.4 34.7169 137.273 34.8043C137.152 34.8918 137.091 35.0764 137.091 35.3582C137.091 35.6545 137.152 35.8513 137.273 35.9485C137.395 36.0456 137.643 36.0942 138.017 36.0942C138.775 36.0942 139.153 35.8634 139.153 35.4019C139.153 35.1153 139.081 34.9209 138.935 34.8189C138.784 34.7217 138.498 34.6732 138.075 34.6732ZM140.706 32.8221H141.238L141.187 33.2448L141.201 33.2594C141.41 32.9145 141.76 32.742 142.251 32.742C142.921 32.742 143.256 33.0893 143.256 33.7841V34.0319H142.724L142.739 33.9444C142.744 33.8472 142.746 33.7817 142.746 33.7476C142.746 33.3736 142.542 33.1865 142.134 33.1865C141.536 33.1865 141.238 33.5533 141.238 34.2869V36.4804H140.706V32.8221ZM146.834 32.8221V36.7209C146.834 37.2505 146.72 37.6149 146.492 37.8141C146.264 38.0132 145.843 38.1128 145.231 38.1128C144.682 38.1128 144.308 38.0278 144.109 37.8578C143.91 37.6926 143.81 37.3768 143.81 36.9104H144.328C144.328 37.2262 144.386 37.4303 144.502 37.5226C144.619 37.6197 144.874 37.6683 145.268 37.6683C145.676 37.6683 145.95 37.6076 146.091 37.4861C146.232 37.3647 146.302 37.1242 146.302 36.7647V36.0286H146.288C146.152 36.3639 145.753 36.5315 145.093 36.5315C144.553 36.5315 144.182 36.4003 143.978 36.1379C143.774 35.8707 143.672 35.3825 143.672 34.6732C143.672 33.9444 143.776 33.444 143.985 33.1719C144.189 32.9047 144.573 32.7711 145.136 32.7711C145.739 32.7711 146.132 32.9533 146.317 33.3177H146.324L146.302 32.8221H146.834ZM145.238 33.2157C144.816 33.2157 144.541 33.3031 144.415 33.478C144.294 33.6578 144.233 34.0464 144.233 34.644C144.233 35.2513 144.294 35.6424 144.415 35.8173C144.541 36.0019 144.816 36.0942 145.238 36.0942C145.661 36.0942 145.941 35.9946 146.077 35.7954C146.213 35.5962 146.281 35.1857 146.281 34.5638C146.281 34.01 146.213 33.6456 146.077 33.4707C145.941 33.3007 145.661 33.2157 145.238 33.2157ZM152.242 35.1614H152.781V35.3582C152.781 36.1404 152.268 36.5315 151.243 36.5315C150.587 36.5315 150.153 36.41 149.939 36.1671C149.725 35.9193 149.618 35.4092 149.618 34.6367C149.618 33.908 149.728 33.4149 149.946 33.1574C150.16 32.8999 150.57 32.7711 151.178 32.7711C151.77 32.7711 152.176 32.8586 152.395 33.0335C152.609 33.2084 152.715 33.5363 152.715 34.0173H152.183V33.9226C152.183 33.6408 152.113 33.4513 151.972 33.3541C151.831 33.2618 151.552 33.2157 151.134 33.2157C150.731 33.2157 150.471 33.3031 150.354 33.478C150.243 33.6578 150.187 34.0586 150.187 34.6804C150.187 35.2877 150.252 35.674 150.383 35.8391C150.515 36.0092 150.821 36.0942 151.302 36.0942C151.71 36.0942 151.97 36.0383 152.081 35.9266C152.188 35.8197 152.242 35.5647 152.242 35.1614ZM155.04 32.7711C155.715 32.7711 156.155 32.8877 156.359 33.1209C156.558 33.3541 156.658 33.8643 156.658 34.6513C156.658 35.4383 156.558 35.9485 156.359 36.1817C156.155 36.4149 155.715 36.5315 155.04 36.5315C154.365 36.5315 153.928 36.4149 153.728 36.1817C153.524 35.9485 153.422 35.4383 153.422 34.6513C153.422 33.8643 153.524 33.3541 153.728 33.1209C153.928 32.8877 154.365 32.7711 155.04 32.7711ZM155.04 33.2157C154.564 33.2157 154.27 33.291 154.158 33.4416C154.042 33.597 153.983 34.0003 153.983 34.6513C153.983 35.3023 154.042 35.7055 154.158 35.861C154.27 36.0165 154.564 36.0942 155.04 36.0942C155.516 36.0942 155.81 36.0165 155.922 35.861C156.039 35.7055 156.097 35.3023 156.097 34.6513C156.097 34.0003 156.039 33.597 155.922 33.4416C155.81 33.291 155.516 33.2157 155.04 33.2157ZM157.489 32.8221H158.006L157.992 33.3177L158.006 33.3323C158.171 32.9582 158.577 32.7711 159.223 32.7711C159.748 32.7711 160.102 32.8634 160.287 33.0481C160.472 33.2278 160.564 33.58 160.564 34.1047V36.4804H160.032V34.01C160.032 33.6942 159.971 33.4829 159.85 33.376C159.728 33.2691 159.498 33.2157 159.158 33.2157C158.404 33.2157 158.028 33.5703 158.028 34.2796V36.4804H157.489V32.8221ZM164.368 33.7768H163.829C163.829 33.5242 163.778 33.3663 163.676 33.3031C163.574 33.2448 163.309 33.2157 162.881 33.2157C162.483 33.2157 162.23 33.2472 162.124 33.3104C162.017 33.3784 161.963 33.5339 161.963 33.7768C161.963 34.1557 162.143 34.3525 162.502 34.3671L162.932 34.389L163.479 34.4181C164.14 34.4521 164.473 34.7995 164.477 35.4602C164.477 35.8683 164.366 36.1501 164.142 36.3055C163.924 36.4562 163.523 36.5315 162.94 36.5315C162.342 36.5315 161.929 36.461 161.701 36.3201C161.477 36.1744 161.366 35.9072 161.366 35.5185V35.3145H161.919L161.927 35.4894C161.927 35.7274 161.987 35.8877 162.109 35.9703C162.23 36.0481 162.471 36.0894 162.83 36.0942C163.273 36.0942 163.564 36.0505 163.705 35.963C163.841 35.8804 163.909 35.7055 163.909 35.4383C163.909 35.0497 163.734 34.8578 163.384 34.8626C162.573 34.8626 162.039 34.7922 161.781 34.6513C161.528 34.5153 161.402 34.2286 161.402 33.7914C161.402 33.3833 161.502 33.1112 161.701 32.9752C161.905 32.8391 162.308 32.7711 162.911 32.7711C163.882 32.7711 164.368 33.0626 164.368 33.6456V33.7768ZM168.23 32.8221V36.4804H167.691L167.728 35.9995L167.72 35.9849C167.536 36.3493 167.137 36.5315 166.525 36.5315C165.67 36.5315 165.243 36.1064 165.243 35.2562V32.8221H165.782V35.2562C165.782 35.5865 165.835 35.8076 165.942 35.9193C166.054 36.0311 166.27 36.0869 166.591 36.0869C167.013 36.0869 167.302 36.0043 167.458 35.8391C167.613 35.6691 167.691 35.3606 167.691 34.9136V32.8221H168.23ZM169.222 32.8221H169.761L169.746 33.3687L169.761 33.3833C169.965 32.9703 170.361 32.7638 170.949 32.7638C171.571 32.7638 171.947 32.9703 172.078 33.3833H172.093C172.326 32.9703 172.746 32.7638 173.354 32.7638C174.218 32.7638 174.651 33.2059 174.651 34.0902V36.4804H174.111V34.0391C174.111 33.7185 174.056 33.4999 173.944 33.3833C173.827 33.2667 173.609 33.2084 173.288 33.2084C172.865 33.2084 172.579 33.2885 172.428 33.4489C172.277 33.6092 172.202 33.9128 172.202 34.3598V36.4804H171.67V34.0902L171.663 33.9153C171.663 33.444 171.393 33.2084 170.854 33.2084C170.125 33.2084 169.761 33.6068 169.761 34.4035V36.4804H169.222V32.8221Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.165 10.8064H80.8428L80.8501 10.9667V11.2728C80.8501 11.5983 80.8282 11.8874 80.7845 12.14L81.8412 13.0145L81.4695 13.4882L80.5731 12.7449C80.3205 13.2841 79.6403 13.5538 78.5327 13.5538C77.4687 13.5538 76.7812 13.4347 76.4703 13.1967C76.1594 12.9586 76.0039 12.4315 76.0039 11.6153C76.0039 11.0809 76.0743 10.7068 76.2152 10.493C76.361 10.2793 76.6428 10.1287 77.0606 10.0412C77.0995 10.0315 77.1602 10.0194 77.2428 10.0048C76.8735 9.69385 76.6889 9.33919 76.6889 8.94081C76.6889 8.37239 76.8152 7.98616 77.0679 7.78211C77.3205 7.5732 77.7966 7.46875 78.4962 7.46875C79.1764 7.46875 79.6428 7.57077 79.8954 7.77482C80.1432 7.97401 80.2671 8.35053 80.2671 8.90438L80.2598 9.28333H79.582V9.05742C79.582 8.60559 79.5213 8.32381 79.3999 8.21207C79.2784 8.10518 78.9675 8.05175 78.4671 8.05175C78.0152 8.05175 77.714 8.10033 77.5634 8.1975C77.4177 8.29466 77.3448 8.49385 77.3448 8.79506C77.3448 9.13029 77.4735 9.39993 77.731 9.60398L77.8841 9.72786L80.165 11.6299V10.8064ZM77.6727 10.3692C77.2112 10.4712 76.927 10.5902 76.8201 10.7262C76.7084 10.8623 76.6525 11.1659 76.6525 11.6372C76.6525 12.2542 76.7424 12.6307 76.9221 12.7667C77.1019 12.9028 77.5974 12.9708 78.4088 12.9708C79.3756 12.9708 79.9197 12.7546 80.0412 12.3222L77.6727 10.3692Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://news.phoenixmedia.ro/\",motionChild:true,nodeId:\"VW8xDpltk\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-o0a3v framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"VW8xDpltk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mnyibu\",\"data-framer-name\":\"Group 1629\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:47,intrinsicWidth:136,layoutDependency:layoutDependency,layoutId:\"CiymSGb2A\",svg:'<svg width=\"136\" height=\"47\" viewBox=\"0 0 136 47\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.456 38.629V43.0209C12.5786 45.2168 10.6699 46.1266 7.72865 46.1266C2.59708 46.1266 0 42.3308 0 37.5311C0 34.7391 0.750968 32.2608 2.90998 30.3786C4.4432 29.0296 6.38318 28.4336 8.38575 28.4336C9.76251 28.4336 10.8577 28.8414 11.9841 29.5002L13.1105 28.6846H13.7051V33.4529H12.7038C12.2344 30.8178 11.6712 29.2806 8.63606 29.2806C6.72737 29.2806 5.31932 30.0962 4.78739 31.9471C4.28675 33.547 4.22416 35.3665 4.22416 37.0605C4.22416 38.6918 4.28674 40.323 4.56835 41.9543C4.84996 43.8993 5.72608 45.3737 7.94768 45.3737C8.88638 45.3737 9.51218 45.2482 10.138 44.5267C10.5448 44.0561 10.7012 43.7424 10.7012 43.115V38.629H8.16671V37.6252H16.0205V38.629H14.456Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.6227 45.8116C26.6764 45.8116 25.2885 45.7803 24.6576 44.9339C24.4683 44.6832 24.3422 44.4011 24.216 44.119C23.1119 45.3728 21.724 46.1251 19.9891 46.1251C18.0964 46.1251 16.5508 45.2161 16.5508 43.2099C16.5508 41.9248 17.2448 40.859 18.2226 40.1381C19.8314 38.947 22.2287 38.7276 24.1213 38.5395V36.2513C24.1213 34.684 23.8059 34.0257 22.071 34.0257C21.6294 34.0257 20.3045 34.2138 20.3045 34.8721C20.3045 35.3109 20.8723 35.7497 20.8723 36.4393C20.8723 37.3797 20.1468 38.0693 19.2005 38.0693C18.2542 38.0693 17.5602 37.3797 17.5602 36.4707C17.5602 34.0571 20.8408 33.2734 22.7334 33.2734C23.6797 33.2734 24.7522 33.3988 25.667 33.8063C27.2442 34.4646 27.6227 35.4049 27.6227 37.0035V44.9966H29.5785V45.8116H27.6227ZM20.0206 42.2069C20.0206 43.4294 20.7461 44.3697 22.0394 44.3697C22.4811 44.3697 22.9542 44.1503 23.3012 43.8682C24.0583 43.2726 24.1529 42.489 24.1529 41.6113V39.3545C22.1972 39.4798 20.0206 39.7619 20.0206 42.2069Z\" fill=\"black\"/>\\n<path d=\"M40.0448 37.5693C39.0415 37.5693 38.1949 36.9117 38.1949 35.8784C38.1949 35.0956 38.6966 34.6885 38.6966 34.5007C38.6966 34.3128 38.4458 34.2189 38.289 34.2189C37.8814 34.2189 37.1602 35.1582 36.9407 35.4087C36.0942 36.536 35.7806 38.039 35.7806 39.4167V44.9277H38.1949V45.7731H30.1055V44.9277H32.0808V34.4067H30.1055V33.5613H35.7806V35.7845C36.7213 34.3441 37.5678 33.1855 39.4491 33.1855C40.8914 33.1855 41.9888 34.1249 41.9888 35.5966C41.9888 36.7865 41.205 37.5693 40.0448 37.5693Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M52.1065 45.7505V43.9337C51.136 45.3433 50.3534 46.1265 48.5063 46.1265C44.9374 46.1265 42.7773 43.2758 42.7773 39.83C42.7773 37.3866 43.8104 35.0372 46.0331 33.8468C46.7219 33.4709 47.5358 33.2516 48.3811 33.2516C50.009 33.2516 51.1047 33.9095 52.1065 35.1625V29.336H50.1655V28.5215H55.8319V44.9361H57.7416V45.7505H52.1065ZM46.6593 39.6734C46.6593 41.365 46.7532 45.1554 49.1951 45.1554C50.3847 45.1554 51.4178 43.965 51.8561 42.9312C52.2004 42.0855 52.2317 40.6445 52.2317 39.7674C52.2317 38.6397 52.2317 37.0107 51.6995 35.977C51.2299 35.0999 50.2908 34.2227 49.2264 34.2227C46.7219 34.2227 46.6593 37.9192 46.6593 39.6734Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.7642 38.9019V40.4028C61.7642 42.5604 61.9527 45.2183 64.812 45.2183C67.0115 45.2183 68.237 43.7799 69.2739 42.0601L69.9966 42.4353C68.8026 44.7492 67.2001 46.1251 64.4664 46.1251C60.633 46.1251 57.7422 43.4985 57.7422 39.6523C57.7422 35.9313 60.5073 33.2734 64.215 33.2734C65.8175 33.2734 67.4829 33.8676 68.5826 35.0558C69.6824 36.2127 69.9023 37.3697 70.1537 38.9019H61.7642ZM66.2888 36.3378C66.2888 34.9307 65.849 33.9301 64.215 33.9301C61.5756 33.9301 61.8584 36.1189 61.827 38.0576H66.2888V36.3378Z\" fill=\"black\"/>\\n<path d=\"M79.7292 45.7731V44.959H81.3954V37.538C81.3954 36.1915 81.3954 34.532 79.6035 34.532C78.1888 34.532 76.8684 35.9097 76.5226 37.1935C76.3968 37.7885 76.3968 38.4147 76.3968 39.0409V44.959H78.2831V45.7731H70.7695V44.959H72.7501V34.4067H70.7695V33.5613H76.3968V35.44C77.1513 34.5633 77.6543 34.0623 78.7546 33.6552C79.4463 33.3421 80.2322 33.1855 80.9553 33.1855C81.5211 33.1855 82.1185 33.2795 82.6529 33.436C84.6334 33.9997 85.1365 35.3148 85.1365 37.1935V44.959H87.0541V45.7731H79.7292Z\" fill=\"black\"/>\\n<path d=\"M91.1055 45.774V44.9277H93.1255V29.6315H91.1055V28.7852H99.0277V29.6315H96.9761V44.9277H99.0277V45.774H91.1055Z\" fill=\"black\"/>\\n<path d=\"M108.78 45.7731V44.959H110.415V37.538C110.415 36.1915 110.415 34.532 108.654 34.532C107.24 34.532 105.919 35.9097 105.573 37.1935C105.416 37.7885 105.448 38.4147 105.448 39.0409V44.959H107.334V45.7731H99.8203V44.959H101.801V34.4067H99.8203V33.5613H105.448V35.44C106.202 34.5633 106.705 34.0623 107.805 33.6552C108.497 33.3421 109.252 33.1855 110.006 33.1855C110.572 33.1855 111.138 33.2795 111.672 33.436C113.684 33.9997 114.156 35.3148 114.156 37.1935V44.959H116.105V45.7731H108.78Z\" fill=\"black\"/>\\n<path d=\"M125.634 45.7731V44.959H127.26V37.538C127.26 36.1915 127.26 34.532 125.478 34.532C124.102 34.532 122.789 35.9097 122.445 37.1935C122.288 37.7885 122.32 38.4147 122.32 39.0409V44.959H124.196V45.7731H116.723V44.959H118.693V34.4067H116.723V33.5613H122.32V35.44C123.07 34.5633 123.57 34.0623 124.633 33.6552C125.352 33.3421 126.103 33.1855 126.853 33.1855C127.416 33.1855 127.979 33.2795 128.511 33.436C130.512 33.9997 130.981 35.3148 130.981 37.1935V44.959H132.919V45.7731H125.634Z\" fill=\"black\"/>\\n<path d=\"M25.6186 24.9991H0.355469V0H25.6186V24.9991Z\" fill=\"black\"/>\\n<path d=\"M5.04895 4.22461C4.74094 4.22461 4.46373 4.51648 4.49453 4.84078C4.49453 5.19751 4.77174 5.45696 5.07975 5.45696C5.38776 5.42453 5.66497 5.16509 5.63416 4.80836C5.63416 4.48406 5.35696 4.22461 5.04895 4.22461Z\" fill=\"white\"/>\\n<path d=\"M10.0663 3.5584C8.33789 2.03087 7.14374 1.9997 4.53546 1.84383C4.53546 1.84383 3.24704 1.68796 2.27286 1.53209C2.08431 1.50092 1.80148 1.46974 1.73863 1.53209C1.64436 1.59444 1.67578 1.875 1.70721 2.06204C1.89576 3.02844 2.05288 4.30657 2.05288 4.30657C2.17858 6.89401 2.21001 8.10979 3.74983 9.82436C3.74983 9.82436 7.99221 14.3134 11.2918 11.0402C11.2918 11.0402 11.5432 10.7908 11.449 10.5725C11.3233 10.1985 9.15494 8.07862 8.30647 7.23692C7.42656 6.36405 6.45239 5.5847 6.20099 5.52235C6.16957 5.52235 6.13813 5.49118 6.07528 5.52235C5.88673 5.55353 5.76103 5.77174 5.76103 5.77174C5.76103 5.80292 5.72961 5.86527 5.76103 5.98996C5.91816 6.33288 6.42096 6.98753 7.48941 8.04745C8.62071 9.16971 10.1605 10.5102 10.1605 10.5102C8.24361 12.0065 5.32109 9.63732 5.32109 9.63732C3.43558 8.07862 2.86993 5.02357 2.99563 2.81022C5.22681 2.68552 8.30647 3.24666 9.87772 5.1171C9.87772 5.1171 11.449 7.17458 11.1347 8.98267C11.1347 9.04502 11.1347 9.07619 11.1661 9.10736C11.449 9.51262 11.9518 9.54379 12.3603 9.20088C12.3917 9.16971 12.3603 9.16971 12.4231 9.10736C13.0202 6.33288 10.0663 3.5584 10.0663 3.5584Z\" fill=\"white\"/>\\n<path d=\"M21.0428 4.78252C21.0428 4.47388 20.7717 4.1961 20.4706 4.22696C20.1394 4.22696 19.8984 4.50473 19.8984 4.81337C19.9286 5.12201 20.1695 5.36893 20.5007 5.36893C20.8018 5.36893 21.0428 5.09116 21.0428 4.78252Z\" fill=\"white\"/>\\n<path d=\"M21.7752 9.81685C23.3152 8.08473 23.3467 6.88799 23.5038 4.27407C23.5038 4.27407 23.661 2.95136 23.8181 2.00657C23.8495 1.81761 23.881 1.53418 23.8181 1.47119C23.7553 1.37671 23.4724 1.4082 23.2838 1.4397C22.3095 1.62865 21.0209 1.78612 21.0209 1.78612C18.4122 1.91209 17.1865 1.94358 15.4579 3.48674C15.4579 3.48674 10.932 7.7383 14.2321 11.0451C14.2321 11.0451 14.4836 11.2655 14.735 11.2025C15.0807 11.0766 17.2179 8.87205 18.0665 8.05323C18.9465 7.17143 19.7323 6.16365 19.7951 5.9432C19.7951 5.9117 19.8266 5.88021 19.7951 5.81723C19.7637 5.62827 19.5437 5.5023 19.5437 5.5023C19.5123 5.5023 19.4494 5.43931 19.3237 5.5023C18.978 5.65976 18.318 6.16365 17.2493 7.23441C16.1179 8.36816 14.7664 9.91132 14.7664 9.91132C13.2578 7.95875 15.6464 5.06139 15.6464 5.06139C17.2179 3.17181 20.298 2.57345 22.5295 2.73091C22.6552 4.96692 22.0895 8.05323 20.2037 9.62788C20.2037 9.62788 18.1294 11.2025 16.3065 10.8876C16.2436 10.8876 16.2122 10.8876 16.1807 10.9191C15.7722 11.2025 15.7407 11.7064 16.0865 12.1158C16.1179 12.1158 16.1179 12.1158 16.1807 12.1473C18.978 12.7772 21.7752 9.81685 21.7752 9.81685Z\" fill=\"white\"/>\\n<path d=\"M20.4847 20.8613C20.8242 20.8613 21.071 20.5694 21.0402 20.2451C21.0402 19.8883 20.7624 19.6289 20.4539 19.6289C20.1453 19.6613 19.8984 19.9208 19.8984 20.2775C19.8984 20.6018 20.1762 20.8613 20.4847 20.8613Z\" fill=\"white\"/>\\n<path d=\"M15.4639 21.4801C17.1923 23.0516 18.3864 23.083 20.9947 23.2401C20.9947 23.2401 22.3146 23.3973 23.2573 23.5544C23.4459 23.5859 23.7287 23.6173 23.7916 23.5544C23.8858 23.4916 23.8544 23.2087 23.823 23.0201C23.6344 22.0458 23.4773 20.7572 23.4773 20.7572C23.3516 18.1486 23.3202 16.9228 21.7803 15.1942C21.7803 15.1942 17.538 10.6683 14.2383 13.9684C14.2383 13.9684 14.0184 14.2199 14.0812 14.4399C14.2069 14.817 16.4067 16.9542 17.2237 17.8028C18.1036 18.6829 19.1092 19.4686 19.3292 19.5315C19.3606 19.5315 19.392 19.5315 19.4549 19.5315C19.6434 19.5 19.7691 19.28 19.7691 19.28C19.7691 19.2486 19.832 19.1543 19.7691 19.06C19.612 18.7143 19.1092 18.0543 18.0408 16.9857C16.9095 15.8542 15.3696 14.4713 15.3696 14.4713C17.318 12.9941 20.2091 15.3828 20.2091 15.3828C22.0946 16.9542 22.6917 20.0343 22.5345 22.2658C20.3034 22.3915 17.2237 21.8258 15.6525 19.94C15.6525 19.94 14.0812 17.8657 14.3955 16.0428C14.3955 15.9799 14.3955 15.9485 14.364 15.9171C14.0812 15.5085 13.5784 15.4771 13.2013 15.8228C13.1699 15.8542 13.1699 15.8542 13.107 15.9171C12.51 18.7143 15.4639 21.4801 15.4639 21.4801Z\" fill=\"white\"/>\\n<path d=\"M4.49219 20.2617C4.49219 20.5934 4.76321 20.8919 5.06435 20.8587C5.3956 20.8587 5.63651 20.5602 5.63651 20.2285C5.6064 19.8968 5.36549 19.5983 5.03423 19.6314C4.73309 19.6314 4.49219 19.93 4.49219 20.2617Z\" fill=\"white\"/>\\n<path d=\"M3.8552 15.2683C2.2965 16.9826 2.26532 18.1671 2.10945 20.7542C2.10945 20.7542 1.95359 22.0321 1.79772 22.9984C1.76654 23.1854 1.73537 23.4659 1.79772 23.5283C1.86006 23.6218 2.14063 23.5906 2.32768 23.5594C3.29407 23.3724 4.5722 23.2166 4.5722 23.2166C7.15964 23.0919 8.37542 23.0607 10.09 21.5334C10.09 21.5334 14.579 17.3255 11.3058 14.0527C11.3058 14.0527 11.0564 13.8034 10.8382 13.8969C10.4641 14.0215 8.34424 16.1722 7.50255 17.0138C6.62968 17.8866 5.85033 18.8528 5.78798 19.1022C5.78798 19.1333 5.78798 19.1645 5.78798 19.2269C5.85033 19.4139 6.03738 19.5386 6.03738 19.5386C6.09972 19.5386 6.16207 19.6009 6.25559 19.5386C6.5985 19.3827 7.25316 18.884 8.31307 17.8242C9.43534 16.7021 10.807 15.1748 10.807 15.1748C12.2722 17.0762 9.90295 19.9749 9.90295 19.9749C8.34425 21.8451 5.2892 22.4062 3.07585 22.2815C2.95115 20.0684 3.51228 17.0138 5.38272 15.4553C5.38272 15.4553 7.4402 13.8969 9.24829 14.2086C9.31064 14.2086 9.34181 14.2086 9.37299 14.1774C9.77825 13.8969 9.80943 13.3982 9.46651 12.9929C9.43534 12.9618 9.43533 12.9929 9.37299 12.9306C6.5985 12.3384 3.8552 15.2683 3.8552 15.2683Z\" fill=\"white\"/>\\n<path d=\"M52.059 1.47608V23.4916L53.7831 23.7114V24.9991H45.2564V23.7114L47.106 23.4916V13.4731H36.1968V23.4916L37.8896 23.7114V24.9991H29.4883V23.7114L31.1811 23.4916V1.47608L29.4883 1.25623V0H37.8896V1.25623L36.1968 1.47608V10.8978H47.106V1.47608L45.2564 1.25623V0H53.7831V1.25623L52.059 1.47608Z\" fill=\"black\"/>\\n<path d=\"M63.6852 23.647L65.3147 23.8669V24.9978H57.4805V23.8669L59.0787 23.647V8.56766L57.4805 8.34775V7.2168H63.6852V23.647Z\" fill=\"black\"/>\\n<path d=\"M68.75 23.8999L70.3106 23.68V1.31905L68.75 1.0992V0H74.9612V23.68L76.5842 23.8999V24.9991H68.75V23.8999Z\" fill=\"black\"/>\\n<path d=\"M86.1529 7.21199H90.3675V8.8705H86.1529V19.416C86.1529 22.1385 86.719 23.0147 89.2037 23.0147C90.1158 23.0147 90.9336 23.0147 91.7199 22.8269V24.016C89.4239 24.8296 87.5053 25.1738 85.9013 25.1738C82.2843 25.1738 81.4665 23.5466 81.4665 20.4487V8.8705H78.1641V7.21199H81.5609V3.48819L86.1529 2.11133V7.21199Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M111.439 16.2477C111.439 21.814 107.699 25.5248 101.791 25.5248C96.0713 25.5248 92.4258 23.1033 92.4258 16.2477C92.4258 10.5242 96.197 6.6875 102.105 6.6875C107.919 6.6875 111.439 10.1468 111.439 16.2477ZM106.317 16.1533C106.317 10.5242 104.619 8.03977 101.885 8.03977C99.2454 8.03977 97.5484 10.3984 97.5484 16.1533C97.5484 21.814 99.2454 24.1726 101.885 24.1726C104.745 24.1726 106.317 21.9398 106.317 16.1533Z\" fill=\"black\"/>\\n<path d=\"M132.739 23.867V24.9984H124.895V23.867L126.463 23.647V13.4962C126.463 10.6993 125.428 9.44221 123.263 9.44221C122.29 9.44221 120.721 10.1336 119.56 10.9193V23.647L121.161 23.867V24.9984H113.285V23.867L114.885 23.647V8.68798L113.285 8.43656V7.1795H119.56V9.6622C121.506 8.1223 123.388 6.86523 126.024 6.86523C129.57 6.86523 131.138 8.90797 131.138 12.9306V23.647L132.739 23.867Z\" fill=\"black\"/>\\n<path d=\"M63.9922 2.52449C63.9922 3.91296 62.8506 5.01742 61.4236 5.01742C60.0283 5.01742 58.8867 3.91296 58.8867 2.52449C58.8867 1.13602 60.0283 0 61.4236 0C62.8506 0 63.9922 1.13602 63.9922 2.52449Z\" fill=\"black\"/>\\n<path d=\"M132.886 31.5493H132.155V33.6249H131.711V31.5493H130.98V31.1926H132.886V31.5493ZM134.696 32.879L135.363 31.1602H135.998V33.5924H135.585V31.679H135.553L134.855 33.5924H134.537L133.807 31.679V33.5924H133.362V31.1602H134.029L134.696 32.879Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.raiffeisen.ro/ro/persoane-fizice/produsele-noastre/digital-banking/mobile-banking.html\",motionChild:true,nodeId:\"nYaaqXetn\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-n8c2fe framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"nYaaqXetn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ubopra\",\"data-framer-name\":\"Raiffeisen Bank-5 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:555,intrinsicWidth:2197,layoutDependency:layoutDependency,layoutId:\"drh1F9c63\",svg:'<svg width=\"2197\" height=\"555\" viewBox=\"0 0 2197 555\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_207_2\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"2173\" height=\"555\">\\n<path d=\"M2172.65 0H0V555H2172.65V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_207_2)\">\\n<path d=\"M806.904 251.858L758.159 163.31H738.413V251.858H691.02V28.0063H780.922C796.296 28.0063 809.566 30.5885 820.769 35.7528C831.972 40.917 840.514 48.425 846.433 58.3166C852.352 68.2082 855.332 80.0463 855.332 93.8706C855.332 110.118 851.002 123.705 842.341 134.708C833.68 145.712 821.325 153.379 805.316 157.748L859.662 251.897H806.983L806.904 251.858ZM738.413 68.8041V125.77H775.281C785.174 125.77 792.721 123.307 798.005 118.381C803.289 113.455 805.911 106.265 805.911 96.8103C805.911 87.3557 803.289 79.808 798.005 75.3985C792.721 70.9889 785.053 68.8041 774.963 68.8041H738.413Z\" fill=\"black\"/>\\n<path d=\"M995.567 77.7024H1040.66V251.858H995.567V231.121C989.847 239.026 982.617 245.223 973.837 249.712C965.057 254.202 955.165 256.466 944.2 256.466C929.938 256.466 917.185 252.572 906.022 244.786C894.819 237 886.119 226.115 879.842 212.172C873.565 198.229 870.467 182.497 870.467 164.939C870.467 147.38 873.605 131.291 879.842 117.348C886.079 103.405 894.819 92.5595 906.022 84.7734C917.226 76.9872 929.938 73.0942 944.2 73.0942C955.165 73.0942 965.057 75.3983 973.837 80.0063C982.617 84.6144 989.847 90.891 995.567 98.7964V77.7024ZM977.769 209.709C983.69 205.777 988.377 199.976 991.754 192.429C995.171 184.84 996.839 175.704 996.839 164.939C996.839 154.173 995.13 145.037 991.754 137.449C988.337 129.901 983.69 124.102 977.769 120.168C971.85 116.236 965.057 114.249 957.35 114.249C949.643 114.249 942.809 116.236 936.771 120.168C930.733 124.102 926.084 129.901 922.788 137.449C919.49 145.037 917.861 154.173 917.861 164.939C917.861 175.704 919.49 184.84 922.788 192.429C926.084 199.976 930.733 205.777 936.771 209.709C942.809 213.682 949.682 215.628 957.35 215.628C965.018 215.628 971.85 213.641 977.769 209.709Z\" fill=\"black\"/>\\n<path d=\"M1083.01 45.9224C1078.08 40.9965 1075.62 34.5611 1075.62 26.6557C1075.62 18.7504 1078.08 12.315 1083.01 7.38905C1087.94 2.46313 1094.37 -0.0395508 1102.28 -0.0395508C1110.18 -0.0395508 1116.54 2.42341 1121.38 7.38905C1126.19 12.315 1128.62 18.7504 1128.62 26.6557C1128.62 34.5611 1126.19 40.9965 1121.38 45.9224C1116.54 50.8484 1110.18 53.3511 1102.28 53.3511C1094.37 53.3511 1087.94 50.888 1083.01 45.9224ZM1124.33 251.858H1079.23V77.7025H1124.33V251.858Z\" fill=\"black\"/>\\n<path d=\"M1220.78 77.7022H1268.54V117.229H1220.78V251.897H1175.7V117.229H1146.06V77.7022H1175.7V67.175C1175.7 48.0673 1181.18 33.4881 1192.14 23.398C1203.1 13.3078 1218.16 8.2627 1237.24 8.2627C1244.27 8.2627 1250.94 8.8983 1257.33 10.2489C1263.69 11.5599 1269.53 13.3475 1274.77 15.5324L1263.25 50.0933C1257.33 47.67 1250.86 46.4783 1243.83 46.4783C1235.69 46.4783 1229.85 48.3454 1226.23 52.0795C1222.61 55.8137 1220.78 61.5341 1220.78 69.2011V77.742V77.7022Z\" fill=\"black\"/>\\n<path d=\"M1336.03 77.7022H1383.79V117.229H1336.03V251.897H1290.94V117.229H1261.31V77.7022H1290.94V67.175C1290.94 48.0673 1296.43 33.4881 1307.39 23.398C1318.35 13.3078 1333.4 8.2627 1352.48 8.2627C1359.51 8.2627 1366.19 8.8983 1372.58 10.2489C1378.94 11.5599 1384.78 13.3475 1390.02 15.5324L1378.5 50.0933C1372.58 47.67 1366.11 46.4783 1359.08 46.4783C1350.93 46.4783 1345.1 48.3454 1341.48 52.0795C1337.86 55.8137 1336.03 61.5341 1336.03 69.2011V77.742V77.7022Z\" fill=\"black\"/>\\n<path d=\"M1559.26 180.75H1441.71C1443.26 193.938 1447.51 203.472 1454.54 209.391C1461.57 215.31 1471.86 218.29 1485.48 218.29C1494.91 218.29 1503.64 216.939 1511.66 214.198C1519.69 211.456 1526.65 207.563 1532.57 202.519L1552 233.464C1543.21 240.933 1533 246.654 1521.36 250.586C1509.72 254.519 1497.21 256.505 1483.82 256.505C1464.95 256.505 1448.7 252.891 1435.07 245.661C1421.45 238.43 1411.08 227.983 1403.96 214.397C1396.82 200.77 1393.28 184.642 1393.28 166.011C1393.28 147.38 1396.77 131.332 1403.8 117.268C1410.84 103.206 1420.78 92.3608 1433.6 84.6541C1446.44 76.9871 1461.1 73.1338 1477.54 73.1338C1493.99 73.1338 1508.37 76.868 1520.68 84.3364C1532.96 91.8047 1542.46 102.451 1549.17 116.275C1555.85 130.1 1559.22 146.347 1559.22 165.018V180.828L1559.26 180.75ZM1441.71 149.804H1513.81C1512.7 136.853 1509.08 127.199 1502.97 120.843C1496.8 114.488 1488.47 111.31 1477.93 111.31C1456.89 111.31 1444.8 124.141 1441.71 149.843V149.804Z\" fill=\"black\"/>\\n<path d=\"M1590.72 45.9224C1585.79 40.9965 1583.33 34.5611 1583.33 26.6557C1583.33 18.7504 1585.79 12.315 1590.72 7.38905C1595.65 2.46313 1602.09 -0.0395508 1610 -0.0395508C1617.89 -0.0395508 1624.25 2.42341 1629.1 7.38905C1633.91 12.315 1636.34 18.7504 1636.34 26.6557C1636.34 34.5611 1633.91 40.9965 1629.1 45.9224C1624.25 50.8484 1617.89 53.3511 1610 53.3511C1602.09 53.3511 1595.65 50.888 1590.72 45.9224ZM1632.04 251.858H1586.95V77.7025H1632.04V251.858Z\" fill=\"black\"/>\\n<path d=\"M1689.64 250.705C1677.33 246.852 1666.92 240.893 1658.38 232.75L1679.43 200.493C1692.38 212.767 1708.84 218.926 1728.82 218.926C1737.6 218.926 1744.23 217.575 1748.72 214.794C1753.21 212.053 1755.47 207.922 1755.47 202.44C1755.47 197.831 1753.45 194.057 1749.4 191.077C1745.34 188.099 1737.92 185.318 1727.19 182.696C1713.36 179.637 1702 176.221 1693.1 172.486C1684.21 168.752 1677.02 163.468 1671.54 156.675C1666.05 149.882 1663.3 140.984 1663.3 130.02C1663.3 118.38 1666.29 108.291 1672.21 99.7497C1678.13 91.2089 1686.59 84.6144 1697.55 80.0063C1708.51 75.3983 1721.27 73.0942 1735.73 73.0942C1749.32 73.0942 1761.91 75.0804 1773.43 79.0132C1784.96 82.9461 1794.76 88.7856 1802.9 96.4526L1781.86 127.398C1775.94 121.916 1768.91 117.746 1760.8 114.885C1752.7 112.025 1744.23 110.595 1735.46 110.595C1726.67 110.595 1720.75 111.906 1716.34 114.567C1711.94 117.189 1709.75 121.161 1709.75 126.405C1709.75 129.464 1710.67 132.046 1712.53 134.152C1714.4 136.257 1717.61 138.244 1722.26 140.23C1726.91 142.216 1733.47 144.162 1742.01 146.149C1753.84 149.009 1764.05 152.425 1772.63 156.359C1781.22 160.291 1788.21 165.892 1793.69 173.162C1799.18 180.391 1801.92 189.608 1801.92 200.811C1801.92 212.013 1799.05 221.785 1793.33 230.127C1787.62 238.47 1779.27 244.945 1768.31 249.553C1757.35 254.161 1744.15 256.466 1728.77 256.466C1714.96 256.466 1701.89 254.559 1689.61 250.705H1689.64Z\" fill=\"black\"/>\\n<path d=\"M1986.3 180.75H1868.73C1870.28 193.938 1874.54 203.472 1881.57 209.391C1888.6 215.31 1898.89 218.29 1912.51 218.29C1921.94 218.29 1930.68 216.939 1938.7 214.198C1946.73 211.456 1953.68 207.563 1959.6 202.519L1979.02 233.464C1970.23 240.933 1960.04 246.654 1948.39 250.586C1936.75 254.519 1924.24 256.505 1910.85 256.505C1891.98 256.505 1875.73 252.891 1862.11 245.661C1848.47 238.43 1838.1 227.983 1830.99 214.397C1823.84 200.77 1820.31 184.642 1820.31 166.011C1820.31 147.38 1823.81 131.332 1830.84 117.268C1837.87 103.206 1847.8 92.3608 1860.63 84.6541C1873.46 76.9871 1888.12 73.1338 1904.57 73.1338C1921.02 73.1338 1935.39 76.868 1947.71 84.3364C1959.99 91.8047 1969.48 102.451 1976.2 116.275C1982.87 130.1 1986.25 146.347 1986.25 165.018V180.828L1986.3 180.75ZM1868.73 149.804H1940.84C1939.73 136.853 1936.11 127.199 1929.99 120.843C1923.84 114.488 1915.49 111.31 1904.97 111.31C1883.92 111.31 1871.83 124.141 1868.73 149.843V149.804Z\" fill=\"black\"/>\\n<path d=\"M2143.53 81.1584C2152.86 86.5213 2160.06 94.3868 2165.11 104.715C2170.15 115.044 2172.69 127.438 2172.69 141.938V251.897H2127.24V147.539C2127.24 136.337 2124.66 127.954 2119.49 122.353C2114.34 116.752 2106.51 113.971 2095.94 113.971C2088.03 113.971 2081.08 115.719 2075.04 119.255C2069.01 122.79 2063.68 128.034 2059.07 135.065V251.937H2013.98V77.7024H2059.07V98.121C2064.56 90.2158 2071.75 84.0584 2080.64 79.6886C2089.54 75.3187 2099.48 73.0942 2110.44 73.0942C2123.16 73.0942 2134.2 75.7955 2143.53 81.1584Z\" fill=\"black\"/>\\n<path d=\"M846.433 453.105C852.789 462.201 855.968 473.365 855.968 486.514C855.968 506.932 849.413 522.703 836.382 533.747C823.311 544.831 804.838 550.392 780.922 550.392H691.02V326.5H773.016C796.733 326.5 815.048 331.586 827.999 341.795C840.951 352.004 847.426 366.425 847.426 385.096C847.426 407.262 837.891 423.192 818.782 432.844C830.86 437.254 840.077 444.008 846.433 453.105ZM738.413 366.663V419.02H769.362C779.452 419.02 786.882 416.836 791.569 412.426C796.296 408.057 798.641 401.582 798.641 393.001C798.641 383.586 796.099 376.832 791.052 372.741C786.007 368.689 778.42 366.663 768.328 366.663H738.374H738.413ZM775.281 510.189C785.61 510.189 793.318 508.005 798.482 503.595C803.647 499.226 806.229 492.195 806.229 482.541C806.229 473.523 803.766 466.85 798.839 462.44C793.913 458.07 785.73 455.846 774.327 455.846H738.454V510.189H775.321H775.281Z\" fill=\"black\"/>\\n<path d=\"M998.547 376.237H1043.64V550.392H998.547V529.655C992.827 537.56 985.596 543.758 976.816 548.246C968.037 552.736 958.144 555 947.18 555C932.918 555 920.165 551.107 909.002 543.32C897.798 535.534 889.098 524.649 882.822 510.706C876.544 496.763 873.445 481.032 873.445 463.473C873.445 445.915 876.585 429.826 882.822 415.882C889.059 401.939 897.798 391.094 909.002 383.308C920.206 375.522 932.918 371.629 947.18 371.629C958.144 371.629 968.037 373.932 976.816 378.541C985.596 383.149 992.827 389.426 998.547 397.331V376.237ZM980.749 508.243C986.669 504.311 991.357 498.511 994.734 490.963C998.15 483.376 999.819 474.238 999.819 463.473C999.819 452.707 998.11 443.571 994.734 435.983C991.317 428.435 986.669 422.636 980.749 418.703C974.83 414.77 968.037 412.783 960.33 412.783C952.623 412.783 945.789 414.77 939.751 418.703C933.712 422.636 929.064 428.435 925.766 435.983C922.47 443.571 920.84 452.707 920.84 463.473C920.84 474.238 922.47 483.376 925.766 490.963C929.064 498.511 933.712 504.311 939.751 508.243C945.789 512.216 952.662 514.162 960.33 514.162C967.997 514.162 974.83 512.176 980.749 508.243Z\" fill=\"black\"/>\\n<path d=\"M1211.73 379.693C1221.06 385.057 1228.25 392.922 1233.29 403.25C1238.34 413.579 1240.89 425.973 1240.89 440.472V550.432H1195.43V446.074C1195.43 434.871 1192.86 426.49 1187.69 420.888C1182.53 415.287 1174.7 412.506 1164.13 412.506C1156.23 412.506 1149.27 414.254 1143.24 417.79C1137.2 421.325 1131.87 426.57 1127.26 433.601V550.472H1082.17V376.317H1127.26V396.736C1132.75 388.83 1139.94 382.673 1148.84 378.303C1157.74 373.934 1167.67 371.709 1178.63 371.709C1191.34 371.709 1202.39 374.41 1211.73 379.773V379.693Z\" fill=\"black\"/>\\n<path d=\"M1364.67 457.554L1434.48 550.392H1380.49L1320.89 471.379V550.392H1275.81V313.352H1320.89V447.027L1377.55 376.237H1431.22L1364.72 457.554H1364.67Z\" fill=\"black\"/>\\n<path d=\"M522.415 27.9668H0V550.392H522.415V27.9668Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M377.769 252.056L444.352 185.477L462.15 203.274L462.269 203.155C462.269 191.714 458.893 152.385 427.309 121.599C391.951 87.1175 356.554 107.298 344.318 119.454L280.198 183.571L296.089 199.46L261.209 234.339L226.328 199.46L242.219 183.571L178.099 119.454C165.903 107.258 130.506 87.1175 95.1086 121.599C63.5252 152.385 60.1484 191.714 60.1484 203.155L60.2677 203.274L78.0655 185.477L144.649 252.056L163.003 233.703V189.847L181.873 208.716V261.749L207.854 287.729L73.0201 422.557L126.375 475.908L261.209 341.081L396.044 475.908L449.397 422.557L314.563 287.729L340.544 261.749V208.716L359.415 189.847V233.703L377.769 252.056Z\" fill=\"white\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.raiffeisen.ro/ro/persoane-fizice/produsele-noastre/digital-banking/mobile-banking.html\",motionChild:true,nodeId:\"MVx2YHjo0\",openInNewTab:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8g21da framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"MVx2YHjo0\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:411,intrinsicWidth:987,pixelHeight:411,pixelWidth:987,sizes:\"202px\",src:\"https://framerusercontent.com/images/jpDUS7DAYAYYf4HAlQW6H7533g.png\",srcSet:\"https://framerusercontent.com/images/jpDUS7DAYAYYf4HAlQW6H7533g.png?scale-down-to=512 512w,https://framerusercontent.com/images/jpDUS7DAYAYYf4HAlQW6H7533g.png 987w\"},className:\"framer-wadmei\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZVLSrSpjI\",style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"}})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ph2vbt\",layoutDependency:layoutDependency,layoutId:\"dj36qbjZi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eac0e8\",layoutDependency:layoutDependency,layoutId:\"pJBlybVCG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-18s1m20\",\"data-styles-preset\":\"gjzrhfG1s\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0)))\"},children:\"EYES ON\"})}),className:\"framer-ypc7xz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U54mMRbkJ\",style:{\"--extracted-1lwpl3i\":\"var(--token-f1d9e82d-2cb5-4cb2-9b27-7d4e6ad34ecd, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cz0e4l-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"AmvSdIkcQ-container\",nodeId:\"AmvSdIkcQ\",rendersWithMotion:true,scopeId:\"NW90LBAkI\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"AmvSdIkcQ\",intervalControl:2,itemAmount:1,layoutId:\"AmvSdIkcQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15r3r1s\",layoutDependency:layoutDependency,layoutId:\"XkWWZBkXf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XkWWZBkXf\",data:SideBar,type:\"Collection\"},select:[{collection:\"XkWWZBkXf\",name:\"u3wmhX4Y0\",type:\"Identifier\"},{collection:\"XkWWZBkXf\",name:\"ctKJa0ldK\",type:\"Identifier\"},{collection:\"XkWWZBkXf\",name:\"YvMdhQtqw\",type:\"Identifier\"},{collection:\"XkWWZBkXf\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({ctKJa0ldK:ctKJa0ldKXkWWZBkXf,id:idXkWWZBkXf,u3wmhX4Y0:u3wmhX4Y0XkWWZBkXf,YvMdhQtqw:YvMdhQtqwXkWWZBkXf},index1)=>{ctKJa0ldKXkWWZBkXf??=\"\";YvMdhQtqwXkWWZBkXf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`XkWWZBkXf-${idXkWWZBkXf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{YvMdhQtqw:YvMdhQtqwXkWWZBkXf},children:/*#__PURE__*/_jsx(Link,{href:ctKJa0ldKXkWWZBkXf,motionChild:true,nodeId:\"yr028kJCa\",openInNewTab:false,scopeId:\"NW90LBAkI\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(u3wmhX4Y0XkWWZBkXf)},className:\"framer-1d148ud framer-x6zn3e\",layoutDependency:layoutDependency,layoutId:\"yr028kJCa\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})})})},idXkWWZBkXf);})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://adelinabutnaru.com/\",motionChild:true,nodeId:\"doIMcw3Jj\",openInNewTab:true,scopeId:\"NW90LBAkI\",smoothScroll:true,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Teodora Migdalovici TheAlternativeSchool\",fit:\"fill\",intrinsicHeight:2700,intrinsicWidth:2700,pixelHeight:2700,pixelWidth:2700,sizes:\"250px\",src:\"https://framerusercontent.com/images/ZXea6ZCGVbtQuLS7BuTlT5HPKc.png\",srcSet:\"https://framerusercontent.com/images/ZXea6ZCGVbtQuLS7BuTlT5HPKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZXea6ZCGVbtQuLS7BuTlT5HPKc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZXea6ZCGVbtQuLS7BuTlT5HPKc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZXea6ZCGVbtQuLS7BuTlT5HPKc.png 2700w\"},className:\"framer-cjlkus framer-x6zn3e\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"doIMcw3Jj\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vaI3H.framer-x6zn3e, .framer-vaI3H .framer-x6zn3e { display: block; }\",\".framer-vaI3H.framer-es8s6n { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 30px 24px 30px 24px; position: relative; width: 298px; }\",\".framer-vaI3H .framer-g90n9n, .framer-vaI3H .framer-qb0r85, .framer-vaI3H .framer-ikog4y, .framer-vaI3H .framer-1eac0e8 { 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; width: 100%; }\",\".framer-vaI3H .framer-w8ihzo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 1px 0px 1px 0px; position: relative; width: 1px; }\",\".framer-vaI3H .framer-14bqxh4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-vaI3H .framer-2zut3b, .framer-vaI3H .framer-5v1r1 { align-content: center; align-items: center; 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: 100%; }\",\".framer-vaI3H .framer-16wl6cc, .framer-vaI3H .framer-ph2vbt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vaI3H .framer-4kf39v, .framer-vaI3H .framer-10eg55g, .framer-vaI3H .framer-ypc7xz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-vaI3H .framer-l3215m-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); position: relative; width: 250px; }\",\".framer-vaI3H .framer-yupr2m, .framer-vaI3H .framer-sapbwq, .framer-vaI3H .framer-d88dao, .framer-vaI3H .framer-cjlkus { aspect-ratio: 1 / 1; cursor: pointer; height: var(--framer-aspect-ratio-supported, 250px); overflow: hidden; position: relative; text-decoration: none; width: 250px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vaI3H .framer-ilzgul-container, .framer-vaI3H .framer-1cz0e4l-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); position: relative; width: 100%; }\",\".framer-vaI3H .framer-1qn2ymy { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 250px); justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 250px; }\",\".framer-vaI3H .framer-19pdul9 { flex: none; height: 83px; position: relative; width: 213px; }\",\".framer-vaI3H .framer-85tye2 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 250px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 250px; }\",\".framer-vaI3H .framer-7u56ne { aspect-ratio: 6.187319884726225 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 1px; }\",\".framer-vaI3H .framer-16m1gsq, .framer-vaI3H .framer-151pob8, .framer-vaI3H .framer-1glemip { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 250px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 250px; }\",\".framer-vaI3H .framer-8k5e5s { aspect-ratio: 7.094814814814815 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 226px; }\",\".framer-vaI3H .framer-jcshkk, .framer-vaI3H .framer-u6phea { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 1px; }\",\".framer-vaI3H .framer-19h1fhv { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 250px; justify-content: flex-start; padding: 0px; position: relative; width: 250px; }\",\".framer-vaI3H .framer-3q78o8 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-vaI3H .framer-fn3pr, .framer-vaI3H .framer-evdtga, .framer-vaI3H .framer-1xxnvxj, .framer-vaI3H .framer-ni1aus, .framer-vaI3H .framer-1kgeb55, .framer-vaI3H .framer-wqukup, .framer-vaI3H .framer-o0a3v, .framer-vaI3H .framer-n8c2fe, .framer-vaI3H .framer-8g21da { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 250px); justify-content: center; overflow: hidden; padding: 24px; position: relative; text-decoration: none; width: 250px; }\",\".framer-vaI3H .framer-1ghnrs5 { aspect-ratio: 1.0014285714285713 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 1px; }\",\".framer-vaI3H .framer-81bnie { flex: none; height: 75px; position: relative; width: 229px; }\",\".framer-vaI3H .framer-ynqalp { flex: none; height: 79px; position: relative; width: 224px; }\",\".framer-vaI3H .framer-1gt7kjx { aspect-ratio: 2.175881584675664 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 92px); overflow: visible; position: relative; width: 1px; }\",\".framer-vaI3H .framer-18wriq8 { aspect-ratio: 2.5384615384615383 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 79px); position: relative; width: 1px; }\",\".framer-vaI3H .framer-1vrm5z0 { aspect-ratio: 4.4375 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 45px); position: relative; width: 1px; }\",\".framer-vaI3H .framer-1mnyibu { flex: none; height: 69px; position: relative; width: 199px; }\",\".framer-vaI3H .framer-ubopra { flex: none; height: 62px; position: relative; width: 244px; }\",\".framer-vaI3H .framer-wadmei { aspect-ratio: 2.4014598540145986 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 83px); overflow: visible; position: relative; width: 1px; }\",\".framer-vaI3H .framer-15r3r1s { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 250px); justify-content: flex-start; padding: 0px; position: relative; width: 250px; }\",\".framer-vaI3H .framer-1d148ud { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 250px); overflow: hidden; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaI3H.framer-es8s6n, .framer-vaI3H .framer-g90n9n, .framer-vaI3H .framer-w8ihzo, .framer-vaI3H .framer-2zut3b, .framer-vaI3H .framer-16wl6cc, .framer-vaI3H .framer-qb0r85, .framer-vaI3H .framer-5v1r1, .framer-vaI3H .framer-ikog4y, .framer-vaI3H .framer-1qn2ymy, .framer-vaI3H .framer-85tye2, .framer-vaI3H .framer-16m1gsq, .framer-vaI3H .framer-151pob8, .framer-vaI3H .framer-19h1fhv, .framer-vaI3H .framer-1glemip, .framer-vaI3H .framer-fn3pr, .framer-vaI3H .framer-evdtga, .framer-vaI3H .framer-1xxnvxj, .framer-vaI3H .framer-ni1aus, .framer-vaI3H .framer-1kgeb55, .framer-vaI3H .framer-wqukup, .framer-vaI3H .framer-o0a3v, .framer-vaI3H .framer-n8c2fe, .framer-vaI3H .framer-8g21da, .framer-vaI3H .framer-ph2vbt, .framer-vaI3H .framer-1eac0e8, .framer-vaI3H .framer-15r3r1s { gap: 0px; } .framer-vaI3H.framer-es8s6n > *, .framer-vaI3H .framer-2zut3b > *, .framer-vaI3H .framer-16wl6cc > *, .framer-vaI3H .framer-5v1r1 > *, .framer-vaI3H .framer-ph2vbt > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-vaI3H.framer-es8s6n > :first-child, .framer-vaI3H .framer-2zut3b > :first-child, .framer-vaI3H .framer-16wl6cc > :first-child, .framer-vaI3H .framer-5v1r1 > :first-child, .framer-vaI3H .framer-19h1fhv > :first-child, .framer-vaI3H .framer-ph2vbt > :first-child, .framer-vaI3H .framer-15r3r1s > :first-child { margin-top: 0px; } .framer-vaI3H.framer-es8s6n > :last-child, .framer-vaI3H .framer-2zut3b > :last-child, .framer-vaI3H .framer-16wl6cc > :last-child, .framer-vaI3H .framer-5v1r1 > :last-child, .framer-vaI3H .framer-19h1fhv > :last-child, .framer-vaI3H .framer-ph2vbt > :last-child, .framer-vaI3H .framer-15r3r1s > :last-child { margin-bottom: 0px; } .framer-vaI3H .framer-g90n9n > *, .framer-vaI3H .framer-w8ihzo > *, .framer-vaI3H .framer-qb0r85 > *, .framer-vaI3H .framer-ikog4y > *, .framer-vaI3H .framer-1qn2ymy > *, .framer-vaI3H .framer-85tye2 > *, .framer-vaI3H .framer-16m1gsq > *, .framer-vaI3H .framer-151pob8 > *, .framer-vaI3H .framer-1glemip > *, .framer-vaI3H .framer-fn3pr > *, .framer-vaI3H .framer-evdtga > *, .framer-vaI3H .framer-1xxnvxj > *, .framer-vaI3H .framer-ni1aus > *, .framer-vaI3H .framer-1kgeb55 > *, .framer-vaI3H .framer-wqukup > *, .framer-vaI3H .framer-o0a3v > *, .framer-vaI3H .framer-n8c2fe > *, .framer-vaI3H .framer-8g21da > *, .framer-vaI3H .framer-1eac0e8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vaI3H .framer-g90n9n > :first-child, .framer-vaI3H .framer-w8ihzo > :first-child, .framer-vaI3H .framer-qb0r85 > :first-child, .framer-vaI3H .framer-ikog4y > :first-child, .framer-vaI3H .framer-1qn2ymy > :first-child, .framer-vaI3H .framer-85tye2 > :first-child, .framer-vaI3H .framer-16m1gsq > :first-child, .framer-vaI3H .framer-151pob8 > :first-child, .framer-vaI3H .framer-1glemip > :first-child, .framer-vaI3H .framer-fn3pr > :first-child, .framer-vaI3H .framer-evdtga > :first-child, .framer-vaI3H .framer-1xxnvxj > :first-child, .framer-vaI3H .framer-ni1aus > :first-child, .framer-vaI3H .framer-1kgeb55 > :first-child, .framer-vaI3H .framer-wqukup > :first-child, .framer-vaI3H .framer-o0a3v > :first-child, .framer-vaI3H .framer-n8c2fe > :first-child, .framer-vaI3H .framer-8g21da > :first-child, .framer-vaI3H .framer-1eac0e8 > :first-child { margin-left: 0px; } .framer-vaI3H .framer-g90n9n > :last-child, .framer-vaI3H .framer-w8ihzo > :last-child, .framer-vaI3H .framer-qb0r85 > :last-child, .framer-vaI3H .framer-ikog4y > :last-child, .framer-vaI3H .framer-1qn2ymy > :last-child, .framer-vaI3H .framer-85tye2 > :last-child, .framer-vaI3H .framer-16m1gsq > :last-child, .framer-vaI3H .framer-151pob8 > :last-child, .framer-vaI3H .framer-1glemip > :last-child, .framer-vaI3H .framer-fn3pr > :last-child, .framer-vaI3H .framer-evdtga > :last-child, .framer-vaI3H .framer-1xxnvxj > :last-child, .framer-vaI3H .framer-ni1aus > :last-child, .framer-vaI3H .framer-1kgeb55 > :last-child, .framer-vaI3H .framer-wqukup > :last-child, .framer-vaI3H .framer-o0a3v > :last-child, .framer-vaI3H .framer-n8c2fe > :last-child, .framer-vaI3H .framer-8g21da > :last-child, .framer-vaI3H .framer-1eac0e8 > :last-child { margin-right: 0px; } .framer-vaI3H .framer-19h1fhv > *, .framer-vaI3H .framer-15r3r1s > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-vaI3H.framer-v-9viqlc.framer-es8s6n { gap: 35px; width: 810px; }\",\".framer-vaI3H.framer-v-9viqlc .framer-2zut3b { flex-direction: row; }\",\".framer-vaI3H.framer-v-9viqlc .framer-16wl6cc, .framer-vaI3H.framer-v-9viqlc .framer-5v1r1, .framer-vaI3H.framer-v-9viqlc .framer-ph2vbt { flex: 1 0 0px; width: 1px; }\",\".framer-vaI3H.framer-v-9viqlc .framer-ilzgul-container, .framer-vaI3H.framer-v-9viqlc .framer-1cz0e4l-container { height: var(--framer-aspect-ratio-supported, 238px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vaI3H.framer-v-9viqlc.framer-es8s6n, .framer-vaI3H.framer-v-9viqlc .framer-2zut3b { gap: 0px; } .framer-vaI3H.framer-v-9viqlc.framer-es8s6n > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-vaI3H.framer-v-9viqlc.framer-es8s6n > :first-child { margin-top: 0px; } .framer-vaI3H.framer-v-9viqlc.framer-es8s6n > :last-child { margin-bottom: 0px; } .framer-vaI3H.framer-v-9viqlc .framer-2zut3b > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-vaI3H.framer-v-9viqlc .framer-2zut3b > :first-child { margin-left: 0px; } .framer-vaI3H.framer-v-9viqlc .framer-2zut3b > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-vaI3H[data-border=\"true\"]::after, .framer-vaI3H [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1102\n * @framerIntrinsicWidth 298\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WoR6MJxIE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNW90LBAkI=withCSS(Component,css,\"framer-vaI3H\");export default FramerNW90LBAkI;FramerNW90LBAkI.displayName=\"sidebar\";FramerNW90LBAkI.defaultProps={height:1102,width:298};addPropertyControls(FramerNW90LBAkI,{variant:{options:[\"Iq8Lx75Q1\",\"WoR6MJxIE\"],optionTitles:[\"Desktop/Phone\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNW90LBAkI,[{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\"}]},...SearchFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNW90LBAkI\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1102\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WoR6MJxIE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"298\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NW90LBAkI.map"],
  "mappings": "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",
  "names": ["SearchIcon", "props", "p", "ClearIcon", "u", "SpinnerIcon", "motion", "Storage", "name", "resolve", "reject", "request", "window", "e", "key", "value", "setCachedData", "url", "dataToCache", "cache", "Storage", "cacheKey", "data", "checkForCachedData", "VERSION", "isDefaultLocaleId", "localeId", "INDEX_KEY", "getIndexKey", "METADATA_KEY", "getMetadataKey", "getCachedIndex", "indexKey", "cachedIndex", "checkForCachedData", "setCachedIndex", "index", "setCachedData", "metadata", "VERSION", "metadataKey", "fakeResults", "peq", "myers_32", "a", "b", "n", "m", "lst", "pv", "mv", "sc", "i", "eq", "xv", "myers_x", "mhc", "phc", "hsize", "vsize", "j", "start", "vlen", "k", "i1", "pb", "mb", "xh", "ph", "mh", "k1", "mv1", "pv1", "start1", "vlen1", "k2", "score", "i2", "eq1", "pb1", "mb1", "xv1", "xh1", "ph1", "mh1", "k3", "distance", "tmp", "localStorageDebugFlag", "window", "groupsRegex", "capitalizeFirstLetter", "value", "titleCase", "clampText", "text", "maxLength", "textLength", "slicedText", "isEmptyObject", "object", "createLogger", "showOutput", "log", "data", "time", "label", "timeEnd", "noop", "DEFAULT_FONT_FAMILY", "getFontFamily", "theme", "_theme_inputFont", "_theme_titleFont", "_theme_subtitleFont", "animationKeyFromLayout", "layout", "safeDocument", "safeWindow", "metaTagSelector", "getMetaTagContent", "metaTag", "checkIfOverLimit", "stripLocaleSlugFromPath", "url", "localeSlug", "localeSlugWithSlash", "log", "time", "timeEnd", "createLogger", "localStorageDebugFlag", "isValidUrl", "url", "splitWords", "text", "getUniqueWords", "str", "words", "word", "getNormalizedString", "getNormalizedItem", "item", "normalizedItem", "key", "value", "getMatchRange", "currentRange", "start", "end", "result", "getScoreForSearchIndexItem", "query", "fullQuery", "score", "match", "urlWords", "splitLength", "clamp", "titleWords", "titleIndex", "distance", "titleWord", "headings", "heading", "headingWords", "headingWord", "descriptionIndex", "p", "codeblock", "getSearchIndexItemScore", "normalizedQuery", "queryWords", "total", "queryWord", "useRawSearch", "index", "settings", "se", "path", "safeWindow", "results", "title", "SearchResultTitleType", "itemA", "itemB", "getIndexedScopedToUrl", "rawUrlScope", "localeSlug", "scopedIndex", "baseScopeUrlHasVariable", "urlUpToPathVariable", "urlScope", "stripLocaleSlugFromPath", "useSearch", "searchIndex", "_setSearchIndex", "ye", "status", "setStatus", "activeLocale", "useLocaleInfo", "localeId", "setSearchIndex", "options", "ue", "loadSearchIndex", "metaTag", "safeDocument", "fakeResults", "cachedIndex", "getCachedIndex", "metaTagContent", "isOverLimit", "searchIndexURL", "getSearchIndexURL", "response", "downloadedIndex", "setCachedIndex", "error", "baseURL", "isDefaultLocaleId", "Browser", "isTouch", "window", "navigator", "isChrome", "isWebKit", "isSafari", "isSafariDesktop", "isWindows", "isMacOS", "useCallbackOnMouseMove", "callback", "mousePositionRef", "prevPositionRef", "pe", "te", "event", "Browser", "ref", "clientX", "clientY", "prevCursorPosition", "scrollIntoView", "targetElement", "scrollElement", "offsetTop", "offsetBottom", "targetElementBounds", "scrollElementBounds", "difference", "topAligned", "minOffset", "bottomAligned", "offset", "MAX_DESCRIPTION_LENGTH", "MODAL_MAX_HEIGHT", "VERTICAL_SPACING_MULTIPLIER", "ClearButton", "theme", "type", "onClick", "text", "iconOrText", "p", "ClearIcon", "Divider", "styles", "Input", "Y", "props", "ref", "value", "status", "autofocus", "placeholder", "iconType", "clearButtonType", "onChange", "inputValue", "setInputValue", "ye", "isFocused", "setIsFocused", "inputRef", "pe", "ce", "e", "inputElement", "handleInputClick", "handleClearClick", "ue", "hasInputText", "showClearButton", "verticalSpacing", "searchIcon", "SearchIcon", "u", "inputContainerStyle", "getFontFamily", "SpinnerIcon", "inputStyle", "scrollOffset", "ResultRow", "index", "result", "prevMousePositionRef", "subtitleType", "selected", "localeSlug", "style", "onMouseMove", "onPointerDown", "onNavigateTo", "url", "title", "score", "urlPath", "se", "stripLocaleSlugFromPath", "handleMouseMove", "useCallbackOnMouseMove", "event", "isContained", "borderRadius", "clamp", "subtitleText", "clampText", "handleClick", "focusTrap", "resultContainer", "resultTitle", "localStorageDebugFlag", "QuickMenuSpacer", "layoutContainerStyle", "LayoutContainer", "layoutType", "onKeyDown", "onDismiss", "children", "modalOptions", "layoutStyles", "getLayoutBaseStyles", "innerStyle", "getContainerAnimation", "key", "animationKeyFromLayout", "prop", "Browser", "containerAnimation", "motion", "ModalContainer", "heightIsStatic", "heightTransition", "heightDeps", "scope", "animate", "useAnimate", "fe", "prevHeight", "height", "ScrollView", "isTouch", "canScroll", "setCanScroll", "element", "statusStyle", "StatusMessage", "previewInfoText", "sidebarStyles", "fixedTopStyles", "quickMenuStyles", "layoutOption", "SearchInputClearButtonType", "SearchInputDividerType", "SearchResultTitleType", "SearchResultSubtitleType", "SearchResultItemType", "SearchLayoutType", "SearchEntryType", "SearchIconType", "SearchModal", "urlScope", "inputOptions", "backdropOptions", "resultOptions", "activeLocale", "useLocaleInfo", "localeId", "input", "selectedResultRow", "scrollView", "setSelected", "isKeyboardNavigationDisabled", "setIsKeyboardNavigationDisabled", "query", "setQuery", "deferredQuery", "oe", "results", "useSearch", "selectedResult", "handleResultRowPointerDown", "te", "handleResultRowMouseMove", "previousSelected", "router", "useRouter", "navigateTo", "_router_getRoute", "_route_page_preload", "_route_page", "_router_navigate", "routeId", "pathVariables", "inferInitialRouteFromPath", "route", "window", "handleKeyDown", "maxIndex", "showNoResults", "showDivider", "isItemContained", "spacing", "listPaddingTop", "scrollIntoView", "isSelected", "getViewportSize", "window", "useViewportSizeState", "getState", "state", "setState", "ye", "ue", "handleWindowResize", "EntryPointOptions", "buildShadow", "shadowProperty", "fallback", "x", "y", "blur", "color", "spread", "Overlay", "Y", "props", "ref", "layoutType", "theme", "onDismiss", "ue", "handleKeyDown", "event", "handlePointerDown", "window", "bodyOverflowHidden", "Ga", "u", "backdropStyles", "SearchLayoutType", "p", "motion", "SearchModal", "containerStyle", "EntryPoint", "withCSS", "_props_inputOptions_inputFont", "_props_inputOptions", "_props_resultOptions", "_props_resultOptions_subtitleOptions", "_props_inputOptions1", "overlay", "pe", "isOpen", "setIsOpen", "ye", "isOverLimit", "setIsOverLimit", "isSafariTouchDevice", "setIsSafariTouchDevice", "isOnCanvas", "RenderTarget", "checkIfOverLimit", "Browser", "baseInputFontSize", "inputFontSize", "useViewportSizeState", "size", "isEmptyObject", "DEFAULT_FONT_FAMILY", "handleClick", "SearchIconType", "SearchIcon", "AnimatePresence", "Search_default", "addPropertyControls", "ControlType", "titleCase", "iconType", "SearchInputDividerType", "SearchInputClearButtonType", "heightIsStatic", "animationKeyFromLayout", "SearchResultItemType", "SearchResultTitleType", "SearchResultSubtitleType", "SocialMediaFonts", "getFonts", "N1nT8qURR_default", "SearchFonts", "Search_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mmPEKYRND", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerKnM8kuxtd", "withCSS", "KnM8kuxtd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SearchFonts", "getFonts", "KnM8kuxtd_default", "SlideshowFonts", "Slideshow", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "toResponsiveImage", "value", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "YvMdhQtqwCMjcyA_zY", "idCMjcyA_zY", "u3wmhX4Y0XkWWZBkXf", "ctKJa0ldKXkWWZBkXf", "YvMdhQtqwXkWWZBkXf", "idXkWWZBkXf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition2", "u", "MotionDivWithFX", "transition1", "animation", "animation1", "addPropertyOverrides", "ComponentViewportProvider", "SmartComponentScopedContainer", "KnM8kuxtd_default", "RichText2", "Slideshow", "Link", "Image2", "SVG", "ChildrenCanSuspend", "QueryData", "GAP6pkf1N_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "toResponsiveImage", "css", "FramerNW90LBAkI", "withCSS", "NW90LBAkI_default", "addPropertyControls", "ControlType", "addFonts", "SearchFonts", "SlideshowFonts", "getFontsFromSharedStyle", "fonts"]
}
