{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/uWn5YcfPKqQE7jHP3lZC/4bPdV10qzqr58EJXCJyd/bf1zSVh21.js", "ssg:https://framerusercontent.com/modules/bgQfLQzRSWx1SxZ0jjIp/6C5cUzqWnrfyjxe00rEQ/EWjLAxnW_.js", "ssg:https://framerusercontent.com/modules/5CPiksN6axxg1dmatuav/8XmgLfbzBAfPZQwJscuN/ey7x_AO4P.js", "ssg:https://framerusercontent.com/modules/qJYn98NLafEC7umXjX7x/4KHBIhd9F5fHhLPi8hpV/KvwbDDYhs.js", "ssg:https://framerusercontent.com/modules/8vhG13qtgm5MQZ426Sub/Tu2uqUv7EvIil0r6ZtfS/pr4KiPQWs.js", "ssg:https://framerusercontent.com/modules/6KLtmtiSNQRqQRaNjPHu/hplJZZdEJSvD15lSMyPC/sQJvSyP0F.js", "ssg:https://framerusercontent.com/modules/URHb2MpX5kpoMBC0H2HD/NVxoZGHZeDGKsCYmb7So/wrUAV4eSR.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (5ac62b5)\nimport{jsx as e}from\"react/jsx-runtime\";import{addFonts as r,cx as t,SVG as a,useLocaleInfo as o,useVariantState as C,withCSS as i}from\"framer\";import{LayoutGroup as n,motion as s,MotionConfigContext as d}from\"framer-motion\";import*as l from\"react\";let u=[\"ysSok6Xkp\"],p=\"framer-I4Uua\",L={ysSok6Xkp:\"framer-v-qyjb2q\"};function f(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let m={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},h=({value:r,children:t})=>{let a=l.useContext(d),o=null!=r?r:a.transition,C=l.useMemo(()=>({...a,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(d.Provider,{value:C,children:t});},b=({height:e,id:r,width:t,...a})=>({...a}),y=(e,r)=>r.join(\"-\")+e.layoutDependency,v=/*#__PURE__*/l.forwardRef(function(r,i){let{activeLocale:d}=o(),{style:p,className:f,layoutId:v,variant:c,...g}=b(r),{baseVariant:w,classNames:x,gestureVariant:q,setGestureState:k,setVariant:I,transition:M,variants:S}=C({cycleOrder:u,defaultVariant:\"ysSok6Xkp\",transitions:m,variant:c,variantClassNames:L}),j=y(r,S),U=l.useRef(null),Z=l.useId();return /*#__PURE__*/e(n,{id:null!=v?v:Z,children:/*#__PURE__*/e(s.div,{initial:c,animate:S,onHoverStart:()=>k({isHovered:!0}),onHoverEnd:()=>k({isHovered:!1}),onTapStart:()=>k({isPressed:!0}),onTap:()=>k({isPressed:!1}),onTapCancel:()=>k({isPressed:!1}),className:t(\"framer-I4Uua\",...[],x),style:{display:\"contents\"},children:/*#__PURE__*/e(h,{value:M,children:/*#__PURE__*/e(s.div,{...g,className:t(\"framer-qyjb2q\",f),\"data-framer-name\":\"Variant 1\",layoutDependency:j,layoutId:\"ysSok6Xkp\",ref:null!=i?i:U,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...p},children:/*#__PURE__*/e(a,{className:\"framer-pb1eqv\",\"data-framer-name\":\"Bobo_s_SVG_Logos_Outside_Logo\",layout:\"position\",layoutDependency:j,layoutId:\"zJB4t65JK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 110 55\"><path d=\"M 57.851 36.062 L 57.75 37.29 L 54.377 37.29 L 54.285 36.373 C 53.203 37.26 51.806 37.667 50.417 37.501 C 49.266 37.568 48.14 37.15 47.311 36.349 C 46.482 35.548 46.026 34.437 46.053 33.284 C 45.989 31.451 46.007 29.562 46.053 27.692 C 46.053 27.106 45.907 26.849 45.274 26.904 C 44.642 26.959 44.11 26.904 43.441 26.904 L 43.441 33.651 L 45.274 33.651 L 45.274 37.317 L 38.5 37.317 L 38.5 35.832 C 37.6 36.412 36.645 36.9 35.649 37.29 C 34.068 37.778 32.359 37.644 30.873 36.914 C 29.636 36.236 28.917 34.891 29.04 33.486 L 29.04 26.996 L 28.792 26.858 C 28.646 27.06 28.398 27.243 28.371 27.463 C 28.031 30.368 26.635 33.047 24.447 34.989 C 22.693 36.534 20.502 37.495 18.177 37.739 C 15.48 38.145 12.724 37.696 10.294 36.456 C 6.519 34.53 4.145 30.647 4.152 26.409 C 4.013 24.293 4.374 22.173 5.207 20.222 C 6.6 16.766 9.69 14.284 13.365 13.668 C 16.205 13.047 19.169 13.349 21.826 14.529 C 25.267 16.205 27.665 19.463 28.242 23.247 L 33.944 23.247 L 33.944 31.588 C 33.944 33.11 34.347 33.596 35.612 33.77 C 36.822 33.926 37.964 33.174 38.298 32.001 C 38.408 31.6 38.476 31.188 38.5 30.772 L 38.5 26.941 L 36.153 26.941 L 36.153 23.274 L 42.561 23.274 C 43.248 23.27 43.935 23.215 44.614 23.109 C 45.263 23.092 45.874 22.799 46.294 22.304 C 46.714 21.809 46.903 21.158 46.814 20.515 C 46.814 19.809 47.007 19.598 47.731 19.598 C 48.721 19.663 49.72 19.598 50.719 19.598 C 50.719 19.598 50.811 19.644 50.939 19.699 L 50.939 22.55 C 50.939 23.091 51.113 23.256 51.645 23.247 L 55.312 23.247 L 55.394 24.282 C 56.61 23.481 58.036 23.06 59.492 23.073 C 60.971 22.943 62.447 23.357 63.644 24.237 L 63.745 23.32 L 74.507 23.32 L 74.507 33.623 L 75.964 33.623 C 75.863 32.422 75.698 31.222 75.68 30.012 C 75.607 25.593 78.87 22.596 83.517 23.164 C 84.391 23.369 85.237 23.677 86.038 24.081 L 86.038 22.339 L 83.572 22.339 L 83.572 18.718 L 91.062 18.718 L 91.062 33.605 L 92.198 33.605 C 92.061 32.688 91.859 31.772 91.795 30.855 C 91.455 26.995 94.237 23.56 98.083 23.091 C 100.413 22.613 102.834 23.179 104.711 24.64 C 106.027 25.744 106.868 27.314 107.057 29.022 C 107.14 29.553 107.14 30.085 107.195 30.617 C 107.25 31.148 106.993 31.35 106.443 31.35 L 97.176 31.35 C 96.916 32.67 97.766 33.953 99.083 34.228 C 99.755 34.419 100.476 34.333 101.084 33.988 C 101.692 33.644 102.136 33.07 102.318 32.395 C 102.335 32.208 102.431 32.038 102.582 31.926 C 102.732 31.814 102.923 31.771 103.107 31.808 L 107.25 31.808 C 107.22 33.464 106.429 35.013 105.105 36.007 C 103.682 37.061 101.953 37.618 100.182 37.592 C 98.656 37.757 97.111 37.592 95.654 37.107 C 94.967 36.813 94.325 36.428 93.582 36.052 L 93.491 37.235 L 86.167 37.235 L 86.075 36.098 C 83.032 38.032 79.796 37.932 77.229 35.887 L 77.156 37.244 L 67.237 37.244 L 67.155 36.135 C 65.817 37.132 64.162 37.611 62.498 37.482 C 60.828 37.587 59.177 37.082 57.851 36.062 Z M 11.431 24.347 C 11.486 24.924 11.522 25.639 11.632 26.336 C 11.847 28.577 12.739 30.7 14.19 32.423 C 14.958 33.397 16.189 33.887 17.417 33.706 C 18.864 33.45 20.03 32.377 20.405 30.956 C 21.035 29.237 21.242 27.391 21.01 25.575 C 20.707 23.1 20.148 20.708 18.425 18.783 C 16.958 17.142 14.401 16.793 12.861 18.92 C 11.724 20.533 11.513 22.348 11.431 24.347 Z M 52.837 32.129 L 57.356 32.129 C 57.859 32.077 58.345 32.334 58.584 32.78 C 59.449 34.1 61.039 34.75 62.581 34.412 C 62.929 34.357 63.213 33.917 63.497 33.651 C 63.288 33.363 63.049 33.099 62.782 32.863 C 62.517 32.711 62.224 32.614 61.921 32.578 C 60.317 32.212 58.685 31.937 57.108 31.46 C 55.802 31.114 54.815 30.041 54.578 28.71 C 54.468 28.151 54.432 27.573 54.358 26.968 L 51.608 26.968 C 51.049 26.968 50.847 27.115 50.857 27.702 L 50.857 32.743 C 50.837 33.124 50.906 33.503 51.058 33.853 C 51.238 34.16 51.543 34.374 51.892 34.439 C 52.103 34.439 52.488 34.091 52.571 33.816 C 52.714 33.264 52.803 32.699 52.837 32.129 Z M 86.212 30.195 C 86.13 29.475 85.986 28.764 85.782 28.068 C 85.477 27.199 84.65 26.622 83.728 26.638 C 82.814 26.542 81.934 27.015 81.51 27.83 C 80.756 29.297 80.726 31.031 81.427 32.523 C 81.833 33.475 82.837 34.024 83.857 33.852 C 84.803 33.823 85.612 33.161 85.827 32.239 C 85.993 31.565 86.121 30.883 86.212 30.195 Z M 69.914 33.642 L 69.914 26.968 C 67.98 26.785 67.98 26.785 67.687 27.949 L 64.194 27.949 C 63.861 27.928 63.554 27.764 63.351 27.5 C 62.654 26.134 60.812 26.125 59.611 26.427 C 59.391 26.482 59.061 26.803 59.079 26.959 C 59.15 27.24 59.341 27.474 59.602 27.601 C 60.067 27.797 60.553 27.938 61.05 28.022 C 62.563 28.352 64.103 28.554 65.578 28.994 C 66.985 29.349 68.008 30.563 68.118 32.01 C 68.182 32.56 68.237 33.101 68.301 33.66 Z M 97.332 28.563 L 101.86 28.563 C 101.722 27.023 101.163 26.446 99.816 26.418 C 99.19 26.315 98.551 26.495 98.071 26.909 C 97.591 27.323 97.32 27.929 97.332 28.563 Z\" fill=\"var(--token-27e98388-736a-4f0e-a446-044ad503a471, rgb(157, 167, 168)) /* {&quot;name&quot;:&quot;Gray 2&quot;} */\"></path><path d=\"M 74.452 18.691 L 74.452 22.247 C 74.398 22.444 74.244 22.597 74.048 22.651 L 70.29 22.651 C 70.08 22.589 69.917 22.422 69.859 22.211 L 69.859 19.149 C 69.915 18.938 70.079 18.774 70.29 18.718 C 71.628 18.682 72.976 18.691 74.452 18.691 Z\" fill=\"var(--token-27e98388-736a-4f0e-a446-044ad503a471, rgb(157, 167, 168)) /* {&quot;name&quot;:&quot;Gray 2&quot;} */\"></path></svg>',svgContentId:4036932921,withExternalLayout:!0})})})})});}),c=['.framer-I4Uua [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-I4Uua .framer-3rhc3l { display: block; }\",\".framer-I4Uua .framer-qyjb2q { height: 30px; overflow: hidden; position: relative; width: 106px; }\",\".framer-I4Uua .framer-pb1eqv { bottom: -14px; flex: none; height: 55px; left: -2px; position: absolute; width: 110px; }\"],g=i(v,c,\"framer-I4Uua\");export default g;g.displayName=\"Logo/Outside\",g.defaultProps={height:30,width:106},r(g,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbf1zSVh21\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"30\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"106\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bf1zSVh21.map", "// Generated by Framer (4f5e97b)\nimport{jsx as L}from\"react/jsx-runtime\";import{addFonts as e,cx as r,Link as C,SVG as t,useLocaleInfo as o,useVariantState as a,withCSS as i}from\"framer\";import{LayoutGroup as n,motion as l,MotionConfigContext as d}from\"framer-motion\";import*as s from\"react\";let p=[\"pyvU4CovB\"],m=\"framer-x4L7J\",f={pyvU4CovB:\"framer-v-13ascd8\"};function u(L,...e){let r={};return null==e||e.forEach(e=>e&&Object.assign(r,L[e])),r;}let h={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},c=({value:e,children:r})=>{let C=s.useContext(d),t=null!=e?e:C.transition,o=s.useMemo(()=>({...C,transition:t}),[JSON.stringify(t)]);return /*#__PURE__*/L(d.Provider,{value:o,children:r});},v=({height:L,id:e,width:r,...C})=>({...C}),y=(L,e)=>e.join(\"-\")+L.layoutDependency,M=/*#__PURE__*/s.forwardRef(function(e,i){let{activeLocale:d}=o(),{style:m,className:u,layoutId:M,variant:Z,...x}=v(e),{baseVariant:w,classNames:g,gestureVariant:b,setGestureState:J,setVariant:N,transition:k,variants:P}=a({cycleOrder:p,defaultVariant:\"pyvU4CovB\",transitions:h,variant:Z,variantClassNames:f}),B=y(e,P),j=s.useRef(null),q=s.useId();return /*#__PURE__*/L(n,{id:null!=M?M:q,children:/*#__PURE__*/L(l.div,{initial:Z,animate:P,onHoverStart:()=>J({isHovered:!0}),onHoverEnd:()=>J({isHovered:!1}),onTapStart:()=>J({isPressed:!0}),onTap:()=>J({isPressed:!1}),onTapCancel:()=>J({isPressed:!1}),className:r(\"framer-x4L7J\",...[],g),style:{display:\"contents\"},children:/*#__PURE__*/L(c,{value:k,children:/*#__PURE__*/L(C,{href:\"https://www.nytimes.com/2021/02/08/well/diet-glucose-monitor.html\",children:/*#__PURE__*/L(l.a,{...x,className:`${r(\"framer-13ascd8\",u)} framer-hz5ilg`,\"data-framer-name\":\"Variant 1\",layoutDependency:B,layoutId:\"pyvU4CovB\",ref:null!=i?i:j,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...m},children:/*#__PURE__*/L(t,{className:\"framer-d371l6\",\"data-framer-name\":\"NewYorkTimes\",layout:\"position\",layoutDependency:B,layoutId:\"dNypZFF_L\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 222 30\"><path d=\"M 16.56 3.48 C 16.56 1.08 14.28 0.48 12.48 0.48 L 12.48 0.84 C 13.56 0.84 14.4 1.2 14.4 2.04 C 14.4 2.52 14.04 3.24 12.96 3.24 C 12.12 3.24 10.32 2.76 9 2.28 C 7.44 1.68 6 1.2 4.8 1.2 C 2.4 1.2 0.72 3 0.72 5.04 C 0.72 6.84 2.04 7.44 2.52 7.68 L 2.64 7.44 C 2.4 7.2 2.04 6.96 2.04 6.24 C 2.04 5.76 2.52 4.92 3.72 4.92 C 4.8 4.92 6.24 5.4 8.16 6 C 9.84 6.48 11.64 6.84 12.6 6.96 L 12.6 10.68 L 10.8 12.24 L 10.8 12.36 L 12.6 13.92 L 12.6 19.08 C 11.64 19.68 10.56 19.8 9.6 19.8 C 7.8 19.8 6.24 19.32 4.92 17.88 L 9.84 15.48 L 9.84 7.2 L 3.84 9.84 C 4.32 8.28 5.64 7.2 6.96 6.48 L 6.84 6.12 C 3.24 7.08 0 10.44 0 14.52 C 0 19.32 3.96 22.92 8.4 22.92 C 13.2 22.92 16.32 19.08 16.32 15.12 L 16.08 15.12 C 15.36 16.68 14.28 18.12 12.96 18.84 L 12.96 13.92 L 14.88 12.36 L 14.88 12.24 L 12.96 10.68 L 12.96 6.96 C 14.76 6.96 16.56 5.76 16.56 3.48 Z M 6.12 16.68 L 4.68 17.4 C 3.84 16.32 3.36 14.88 3.36 12.84 C 3.36 12 3.36 11.04 3.6 10.32 L 6.12 9.24 Z M 18.84 19.44 L 17.28 20.64 L 17.52 20.88 L 18.24 20.28 L 20.88 22.68 L 24.48 20.28 L 24.36 20.04 L 23.4 20.64 L 22.2 19.44 L 22.2 11.28 L 23.16 10.56 L 25.2 12.24 L 25.2 19.56 C 25.2 24.12 24.24 24.84 22.2 25.56 L 22.2 25.92 C 25.56 26.04 28.68 24.96 28.68 19.08 L 28.68 11.16 L 29.76 10.32 L 29.52 10.08 L 28.56 10.8 L 25.56 8.28 L 22.2 10.8 L 22.2 0.96 L 21.96 0.96 L 17.76 3.84 L 17.76 4.08 C 18.24 4.32 18.96 4.56 18.96 5.88 Z M 40.8 18.12 L 37.8 20.4 L 34.8 18 L 34.8 16.56 L 40.44 12.72 L 40.44 12.6 L 37.56 8.28 L 31.32 11.64 L 31.32 19.56 L 30.12 20.52 L 30.36 20.76 L 31.44 19.92 L 35.52 22.92 L 40.92 18.6 Z M 34.8 16.08 L 34.8 10.2 L 35.04 10.08 L 37.68 14.28 Z M 63.72 2.4 C 63.72 2.04 63.6 1.68 63.48 1.32 L 63.24 1.32 C 62.88 2.28 62.4 2.76 61.2 2.76 C 60.12 2.76 59.4 2.16 58.92 1.68 L 55.44 5.64 L 55.68 5.88 L 56.88 4.8 C 57.6 5.4 58.2 5.88 59.88 6 L 59.88 15.96 L 52.8 3.84 C 52.2 2.88 51.36 1.56 49.68 1.56 C 47.76 1.56 46.08 3.24 46.32 5.88 L 46.68 5.88 C 46.8 5.16 47.16 4.32 48 4.32 C 48.6 4.32 49.2 4.92 49.56 5.52 L 49.56 9.48 C 47.4 9.48 45.96 10.44 45.96 12.24 C 45.96 13.2 46.44 14.64 47.88 15 L 47.88 14.76 C 47.64 14.52 47.52 14.28 47.52 13.92 C 47.52 13.32 48 12.84 48.84 12.84 L 49.44 12.84 L 49.44 17.88 C 46.92 17.88 44.88 19.32 44.88 21.72 C 44.88 24 46.8 25.08 48.96 24.96 L 48.96 24.72 C 47.64 24.6 47.04 24 47.04 23.16 C 47.04 22.08 47.76 21.6 48.72 21.6 C 49.68 21.6 50.52 22.2 51.12 22.92 L 54.6 19.08 L 54.36 18.84 L 53.52 19.8 C 52.2 18.6 51.48 18.24 49.92 18 L 49.92 6 L 59.52 22.8 L 60.24 22.8 L 60.24 6 C 62.04 5.88 63.72 4.44 63.72 2.4 Z M 72.48 18.12 L 69.48 20.4 L 66.48 18 L 66.48 16.56 L 72.12 12.72 L 72.12 12.6 L 69.24 8.28 L 63 11.64 L 63 19.56 L 61.8 20.52 L 62.04 20.76 L 63.12 19.92 L 67.2 22.92 L 72.6 18.6 Z M 66.48 16.08 L 66.48 10.2 L 66.72 10.08 L 69.36 14.28 Z M 92.04 9.6 L 91.2 10.2 L 88.92 8.28 L 86.28 10.68 L 87.36 11.76 L 87.36 20.76 L 84.48 18.96 L 84.48 11.52 L 85.44 10.92 L 82.68 8.28 L 80.04 10.68 L 81.12 11.76 L 81.12 20.4 L 80.76 20.64 L 78.24 18.84 L 78.24 11.64 C 78.24 9.96 77.4 9.48 76.44 8.88 C 75.6 8.28 75.12 7.92 75.12 7.08 C 75.12 6.36 75.84 6 76.2 5.76 L 76.2 5.52 C 75.24 5.52 72.72 6.48 72.72 8.76 C 72.72 9.96 73.32 10.44 73.92 11.04 C 74.52 11.64 75.12 12.12 75.12 13.2 L 75.12 20.16 L 73.8 21.12 L 74.04 21.36 L 75.24 20.4 L 78 22.8 L 81 20.76 L 84.36 22.8 L 90.72 19.08 L 90.72 11.04 L 92.28 9.84 Z M 114.36 3 L 113.16 4.08 L 110.52 1.68 L 106.56 4.56 L 106.56 1.92 L 106.2 1.92 L 106.32 21.36 C 105.96 21.36 104.88 21.12 104.04 20.88 L 103.8 4.68 C 103.8 3.48 102.96 1.8 100.8 1.8 C 98.64 1.8 97.2 3.48 97.2 5.16 L 97.56 5.16 C 97.68 4.44 98.04 3.84 98.76 3.84 C 99.48 3.84 100.08 4.32 100.08 5.88 L 100.08 10.56 C 97.92 10.68 96.6 11.88 96.6 13.44 C 96.6 14.4 97.08 15.84 98.52 15.84 L 98.52 15.6 C 98.04 15.36 97.92 15 97.92 14.76 C 97.92 14.04 98.52 13.8 99.48 13.8 L 99.96 13.8 L 99.96 21.24 C 98.16 21.84 97.44 23.16 97.44 24.6 C 97.44 26.64 99 28.08 101.4 28.08 C 103.08 28.08 104.52 27.84 105.96 27.48 C 107.16 27.24 108.72 26.88 109.44 26.88 C 110.4 26.88 110.76 27.36 110.76 27.96 C 110.76 28.8 110.4 29.16 109.92 29.28 L 109.92 29.52 C 111.84 29.16 113.04 27.96 113.04 26.16 C 113.04 24.36 111.24 23.28 109.32 23.28 C 108.36 23.28 106.32 23.64 104.88 23.88 C 103.2 24.24 101.52 24.48 101.04 24.48 C 100.2 24.48 99.24 24.12 99.24 22.92 C 99.24 21.96 100.08 21.12 102.12 21.12 C 103.2 21.12 104.52 21.24 105.84 21.6 C 107.28 21.96 108.6 22.32 109.8 22.32 C 111.6 22.32 113.16 21.72 113.16 19.2 L 113.16 4.44 L 114.6 3.24 Z M 109.44 10.32 C 109.08 10.68 108.6 11.04 108 11.04 C 107.4 11.04 106.8 10.68 106.56 10.32 L 106.56 5.04 L 107.76 4.2 L 109.44 5.76 Z M 109.44 13.92 C 109.2 13.68 108.6 13.32 108 13.32 C 107.4 13.32 106.8 13.68 106.56 13.92 L 106.56 10.8 C 106.8 11.04 107.4 11.4 108 11.4 C 108.6 11.4 109.2 11.04 109.44 10.8 Z M 109.44 19.56 C 109.44 20.52 108.84 21.48 107.52 21.48 L 106.56 21.48 L 106.56 14.4 C 106.8 14.16 107.4 13.8 108 13.8 C 108.6 13.8 109.08 14.16 109.44 14.4 Z M 125.88 11.04 L 122.04 8.28 L 116.16 11.64 L 116.16 19.44 L 114.96 20.4 L 115.08 20.64 L 116.04 19.92 L 119.88 22.8 L 125.88 19.2 Z M 119.4 18.6 L 119.4 9.96 L 122.4 12.12 L 122.4 20.64 Z M 137.28 8.52 L 137.04 8.52 C 136.68 8.76 136.32 9 135.96 9 C 135.48 9 134.88 8.76 134.64 8.4 L 134.4 8.4 L 132.36 10.68 L 130.32 8.4 L 126.72 10.8 L 126.84 11.04 L 127.8 10.44 L 129 11.76 L 129 19.32 L 127.44 20.52 L 127.68 20.76 L 128.4 20.16 L 131.28 22.56 L 135 20.04 L 134.88 19.8 L 133.8 20.4 L 132.36 19.2 L 132.36 10.8 C 132.96 11.4 133.68 12 134.52 12 C 136.2 12.12 137.16 10.44 137.28 8.52 Z M 151.68 20.04 L 147.6 22.8 L 142.08 14.4 L 146.04 8.28 L 146.28 8.28 C 146.76 8.76 147.48 9.24 148.32 9.24 C 149.16 9.24 149.76 8.76 150.12 8.28 L 150.36 8.28 C 150.24 10.68 148.56 12.12 147.36 12.12 C 146.16 12.12 145.56 11.52 144.84 11.16 L 144.48 11.76 L 150.48 20.64 L 151.68 19.92 Z M 138.48 19.44 L 136.92 20.64 L 137.16 20.88 L 137.88 20.28 L 140.52 22.68 L 144.12 20.28 L 143.88 20.04 L 142.92 20.64 L 141.72 19.44 L 141.72 0.96 L 141.6 0.96 L 137.28 3.84 L 137.28 4.08 C 137.76 4.32 138.48 4.44 138.48 5.88 Z M 171.6 3.48 C 171.6 1.08 169.32 0.48 167.52 0.48 L 167.52 0.84 C 168.6 0.84 169.44 1.2 169.44 2.04 C 169.44 2.52 169.08 3.24 168 3.24 C 167.16 3.24 165.36 2.76 164.04 2.28 C 162.48 1.8 161.04 1.32 159.84 1.32 C 157.44 1.32 155.76 3.12 155.76 5.16 C 155.76 6.96 157.08 7.56 157.56 7.8 L 157.68 7.56 C 157.32 7.32 156.96 7.08 156.96 6.36 C 156.96 5.88 157.44 5.04 158.64 5.04 C 159.72 5.04 161.16 5.52 163.08 6.12 C 164.76 6.6 166.56 6.96 167.52 7.08 L 167.52 10.8 L 165.72 12.36 L 165.72 12.48 L 167.52 14.04 L 167.52 19.2 C 166.56 19.8 165.48 19.92 164.52 19.92 C 162.72 19.92 161.16 19.44 159.84 18 L 164.76 15.6 L 164.76 7.2 L 158.76 9.84 C 159.36 8.28 160.68 7.2 161.88 6.36 L 161.76 6.12 C 158.16 7.08 154.92 10.32 154.92 14.4 C 154.92 19.2 158.88 22.8 163.32 22.8 C 168.12 22.8 171.24 18.96 171.24 15 L 171 15 C 170.28 16.56 169.2 18 167.88 18.72 L 167.88 13.8 L 169.8 12.24 L 169.8 12.12 L 168 10.56 L 168 6.96 C 169.8 6.96 171.6 5.76 171.6 3.48 Z M 161.16 16.68 L 159.72 17.4 C 158.88 16.32 158.4 14.88 158.4 12.84 C 158.4 12 158.52 11.04 158.76 10.32 L 161.28 9.24 Z M 175.8 2.28 L 175.68 2.28 L 173.28 4.32 L 173.28 4.44 L 175.32 6.72 L 175.56 6.72 L 177.96 4.68 L 177.96 4.56 Z M 179.4 20.04 L 178.44 20.64 L 177.24 19.44 L 177.24 11.16 L 178.44 10.32 L 178.2 10.08 L 177.36 10.8 L 175.2 8.28 L 171.72 10.68 L 171.96 11.04 L 172.8 10.44 L 173.88 11.76 L 173.88 19.56 L 172.32 20.76 L 172.44 21 L 173.28 20.4 L 175.92 22.8 L 179.52 20.4 Z M 199.44 19.92 L 198.6 20.52 L 197.28 19.32 L 197.28 11.16 L 198.48 10.2 L 198.24 9.96 L 197.28 10.8 L 194.52 8.28 L 190.92 10.8 L 188.16 8.28 L 184.8 10.8 L 182.64 8.28 L 179.16 10.68 L 179.28 11.04 L 180.12 10.44 L 181.32 11.76 L 181.32 19.56 L 180.36 20.52 L 183.12 22.8 L 185.76 20.4 L 184.68 19.32 L 184.68 11.16 L 185.76 10.44 L 187.56 12.12 L 187.56 19.32 L 186.6 20.28 L 189.36 22.56 L 192 20.16 L 190.92 19.08 L 190.92 11.16 L 191.88 10.56 L 193.8 12.24 L 193.8 19.44 L 192.96 20.28 L 195.72 22.8 L 199.44 20.28 Z M 209.88 18.12 L 206.88 20.4 L 203.88 18 L 203.88 16.56 L 209.52 12.72 L 209.52 12.6 L 206.64 8.28 L 200.4 11.64 L 200.4 19.8 L 204.6 22.8 L 210 18.48 Z M 203.88 16.08 L 203.88 10.2 L 204.12 10.08 L 206.76 14.28 Z M 220.8 15 L 218.52 13.2 C 220.08 11.88 220.68 10.08 220.68 8.88 L 220.68 8.16 L 220.44 8.16 C 220.2 8.76 219.72 9.36 218.76 9.36 C 217.8 9.36 217.2 8.88 216.6 8.16 L 211.2 11.16 L 211.2 15.48 L 213.24 17.04 C 211.2 18.84 210.84 20.04 210.84 21 C 210.84 22.2 211.44 23.04 212.4 23.4 L 212.52 23.16 C 212.28 22.92 212.04 22.8 212.04 22.2 C 212.04 21.84 212.52 21.24 213.48 21.24 C 214.68 21.24 215.4 22.08 215.76 22.44 L 220.92 19.32 L 220.92 15 Z M 219.48 11.4 C 218.64 12.84 216.84 14.28 215.76 15 L 214.44 13.92 L 214.44 9.72 C 214.92 10.92 216.24 11.88 217.56 11.88 C 218.4 11.88 218.88 11.76 219.48 11.4 Z M 217.44 21 C 216.84 19.68 215.4 18.72 213.96 18.72 C 213.6 18.72 212.64 18.72 211.68 19.32 C 212.28 18.36 213.84 16.68 215.88 15.48 L 217.32 16.68 Z\" fill=\"var(--token-27e98388-736a-4f0e-a446-044ad503a471, rgb(157, 167, 168)) /* {&quot;name&quot;:&quot;Gray 2&quot;} */\"></path></svg>',svgContentId:2814736327,withExternalLayout:!0})})})})})});}),Z=['.framer-x4L7J [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x4L7J .framer-hz5ilg { display: block; }\",\".framer-x4L7J .framer-13ascd8 { height: 30px; overflow: hidden; position: relative; text-decoration: none; width: 222px; }\",\".framer-x4L7J .framer-d371l6 { flex: none; height: 30px; left: 0px; position: absolute; top: 0px; width: 222px; }\"],x=i(M,Z,\"framer-x4L7J\");export default x;x.displayName=\"Logo/Partner\",x.defaultProps={height:30,width:222},e(x,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEWjLAxnW_\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"222\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EWjLAxnW_.map", "// Generated by Framer (4f5e97b)\nimport{jsx as e}from\"react/jsx-runtime\";import{addFonts as r,cx as L,Link as t,SVG as a,useLocaleInfo as o,useVariantState as n,withCSS as i}from\"framer\";import{LayoutGroup as l,motion as s,MotionConfigContext as d}from\"framer-motion\";import*as C from\"react\";let m=[\"OZGHzjIb5\"],p=\"framer-0WK6z\",f={OZGHzjIb5:\"framer-v-1my2j5z\"};function u(e,...r){let L={};return null==r||r.forEach(r=>r&&Object.assign(L,e[r])),L;}let h={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},c=({value:r,children:L})=>{let t=C.useContext(d),a=null!=r?r:t.transition,o=C.useMemo(()=>({...t,transition:a}),[JSON.stringify(a)]);return /*#__PURE__*/e(d.Provider,{value:o,children:L});},b=({height:e,id:r,width:L,...t})=>({...t}),v=(e,r)=>r.join(\"-\")+e.layoutDependency,y=/*#__PURE__*/C.forwardRef(function(r,i){let{activeLocale:d}=o(),{style:p,className:u,layoutId:y,variant:w,...g}=b(r),{baseVariant:x,classNames:Z,gestureVariant:z,setGestureState:M,setVariant:j,transition:H,variants:I}=n({cycleOrder:m,defaultVariant:\"OZGHzjIb5\",transitions:h,variant:w,variantClassNames:f}),K=v(r,I),N=C.useRef(null),W=C.useId();return /*#__PURE__*/e(l,{id:null!=y?y:W,children:/*#__PURE__*/e(s.div,{initial:w,animate:I,onHoverStart:()=>M({isHovered:!0}),onHoverEnd:()=>M({isHovered:!1}),onTapStart:()=>M({isPressed:!0}),onTap:()=>M({isPressed:!1}),onTapCancel:()=>M({isPressed:!1}),className:L(\"framer-0WK6z\",...[],Z),style:{display:\"contents\"},children:/*#__PURE__*/e(c,{value:H,children:/*#__PURE__*/e(t,{href:\"https://www.menshealth.com/health/a35541222/cgm-continual-glucose-monitor-levels-supersapiens/\",openInNewTab:!0,children:/*#__PURE__*/e(s.a,{...g,className:`${L(\"framer-1my2j5z\",u)} framer-y34zj5`,\"data-framer-name\":\"Variant 1\",layoutDependency:K,layoutId:\"OZGHzjIb5\",ref:null!=i?i:N,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...p},children:/*#__PURE__*/e(a,{className:\"framer-119hat2\",\"data-framer-name\":\"mens_health_vector_logo\",layout:\"position\",layoutDependency:K,layoutId:\"ovuNcwrFU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 122 122\"><path d=\"M 42.157 52.43 L 43.149 52.43 L 43.149 55.33 L 44.403 55.33 L 45.544 50.727 L 45.544 48.875 L 42.139 48.875 L 42.139 52.43 Z M 26.982 56.378 C 27.731 56.378 28.086 56.977 28.086 61.674 L 25.635 61.674 C 25.729 56.977 26.121 56.378 26.982 56.378 Z M 31.529 65.828 L 29.939 65.828 L 29.939 66.37 C 29.939 68.672 29.284 69.776 27.937 69.776 C 26.383 69.776 25.635 68.784 25.635 63.526 L 25.635 63.133 L 31.735 63.133 C 31.735 56.996 30.388 54.582 26.982 54.582 C 23.577 54.582 21.387 58.081 21.387 63.47 C 21.387 68.821 23.483 71.722 27.076 71.722 C 30.182 71.722 31.529 69.982 31.529 66.277 Z M 73.948 56.378 C 74.697 56.378 75.052 56.977 75.052 61.674 L 72.751 61.674 C 72.844 56.977 73.106 56.378 73.948 56.378 Z M 78.495 65.828 L 76.905 65.828 L 76.905 66.37 C 76.905 68.672 76.25 69.776 74.903 69.776 C 73.35 69.776 72.751 68.784 72.751 63.526 L 72.751 63.133 L 78.701 63.133 C 78.701 56.996 77.354 54.582 73.948 54.582 C 70.543 54.582 68.354 58.081 68.354 63.47 C 68.354 68.821 70.449 71.722 74.042 71.722 C 77.148 71.722 78.495 69.982 78.495 66.277 Z M 100.575 71.722 C 102.821 71.722 103.775 70.318 103.775 68.316 L 103.775 65.828 L 102.278 65.828 L 102.278 68.316 C 102.278 69.364 102.128 69.72 101.623 69.72 C 101.174 69.72 101.024 69.42 101.024 68.466 L 101.024 56.472 L 103.775 56.472 L 103.775 54.919 L 101.08 54.919 L 101.08 50.278 L 99.527 50.278 L 97.226 55.125 L 95.879 55.125 L 95.879 56.416 L 97.076 56.416 L 97.076 67.512 C 97.076 70.412 97.581 71.722 100.575 71.722 Z M 88.993 59.035 C 88.993 55.929 87.589 54.638 84.595 54.638 C 81.602 54.638 79.543 56.79 79.543 59.335 L 79.543 60.326 L 82.986 60.326 L 82.986 57.987 C 82.986 56.64 83.286 56.135 84.034 56.135 C 84.783 56.135 85.082 56.584 85.082 57.987 L 85.082 60.738 C 80.535 62.291 79.132 63.433 79.132 67.287 C 79.132 70.281 80.329 71.74 82.387 71.74 C 84.128 71.74 84.932 70.543 85.381 69.794 L 85.381 71.441 L 89.835 71.441 L 89.835 70.094 L 88.993 70.094 Z M 115.021 70.075 L 115.021 58.231 C 115.021 55.779 113.917 54.638 111.971 54.638 C 109.632 54.638 108.677 56.378 108.677 56.378 L 108.677 48.688 L 103.737 49.23 L 103.737 50.521 L 104.879 50.521 L 104.879 70.056 L 104.074 70.056 L 104.074 71.404 L 109.575 71.404 L 109.575 70.056 L 108.771 70.056 L 108.771 59.709 C 108.771 57.913 109.276 57.164 110.174 57.164 C 110.829 57.164 111.072 57.557 111.072 58.567 L 111.072 70.056 L 110.174 70.056 L 110.174 71.404 L 116.125 71.404 L 116.125 70.056 L 115.021 70.056 Z M 85.082 62.123 L 85.082 67.212 C 85.082 68.709 84.783 69.308 83.94 69.308 C 83.286 69.308 82.986 68.765 82.986 66.969 C 82.986 63.919 83.248 63.171 85.082 62.123 Z M 67.586 70.075 L 67.586 50.241 L 68.728 50.241 L 68.728 48.95 L 61.879 48.95 L 61.879 50.241 L 63.283 50.241 L 63.283 59.54 L 58.886 59.54 L 58.886 50.241 L 60.326 50.241 L 60.326 48.95 L 53.384 48.95 L 53.384 50.241 L 54.582 50.241 L 54.582 70.075 L 53.384 70.075 L 53.384 71.422 L 60.326 71.422 L 60.326 70.075 L 58.886 70.075 L 58.886 61.075 L 63.283 61.075 L 63.283 70.075 L 61.879 70.075 L 61.879 71.422 L 68.728 71.422 L 68.728 70.075 Z M 95.074 70.075 L 95.074 48.688 L 89.928 49.23 L 89.928 50.521 L 91.182 50.521 L 91.182 70.056 L 90.377 70.056 L 90.377 71.404 L 96.271 71.404 L 96.271 70.056 L 95.074 70.056 Z M 53.16 66.969 C 53.16 61.674 47.471 61.318 47.471 57.819 C 47.471 56.621 48.07 56.023 49.025 56.023 C 50.465 56.023 51.214 57.464 51.326 60.514 L 52.617 60.514 L 52.617 55.517 C 52.617 55.517 51.176 54.619 48.968 54.619 C 46.33 54.619 44.178 56.116 44.178 59.166 C 44.178 64.162 49.717 64.855 49.717 68.26 C 49.717 69.607 49.062 70.262 48.014 70.262 C 46.424 70.262 45.619 68.859 45.525 65.416 L 44.234 65.416 L 44.234 70.805 C 44.234 70.805 45.825 71.703 48.183 71.703 C 51.064 71.722 53.16 70.075 53.16 66.969 Z M 20.639 70.075 L 20.639 50.241 L 21.687 50.241 L 21.687 48.95 L 15.83 48.95 L 12.93 61.599 L 9.824 48.95 L 3.836 48.95 L 3.836 50.241 L 5.09 50.241 L 5.09 70.075 L 3.836 70.075 L 3.836 71.422 L 8.439 71.422 L 8.439 70.075 L 6.998 70.075 L 6.998 56.135 L 10.647 71.422 L 12.743 71.422 L 16.335 56.041 L 16.335 70.075 L 14.988 70.075 L 14.988 71.422 L 21.687 71.422 L 21.687 70.075 Z M 42.756 70.075 L 42.756 58.231 C 42.756 55.779 41.652 54.638 39.762 54.638 C 37.423 54.638 36.469 56.378 36.469 56.378 L 36.469 54.638 L 31.473 55.181 L 31.473 56.528 L 32.614 56.528 L 32.614 70.075 L 31.417 70.075 L 31.417 71.422 L 37.367 71.422 L 37.367 70.075 L 36.563 70.075 L 36.563 59.728 C 36.563 57.931 37.068 57.183 37.966 57.183 C 38.621 57.183 38.864 57.576 38.864 58.586 L 38.864 70.075 L 37.966 70.075 L 37.966 71.422 L 43.561 71.422 L 43.561 70.075 Z\" fill=\"var(--token-27e98388-736a-4f0e-a446-044ad503a471, rgb(157, 167, 168)) /* {&quot;name&quot;:&quot;Gray 2&quot;} */\"></path></svg>',svgContentId:17137885,withExternalLayout:!0})})})})})});}),w=['.framer-0WK6z [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0WK6z .framer-y34zj5 { display: block; }\",\".framer-0WK6z .framer-1my2j5z { height: 30px; overflow: hidden; position: relative; text-decoration: none; width: 114px; }\",\".framer-0WK6z .framer-119hat2 { flex: none; height: 122px; left: calc(50.877192982456165% - 122px / 2); position: absolute; top: calc(53.33333333333336% - 122px / 2); width: 122px; }\"],g=i(y,w,\"framer-0WK6z\");export default g;g.displayName=\"Logo/MensHealth\",g.defaultProps={height:30,width:114},r(g,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerey7x_AO4P\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"30\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"114\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ey7x_AO4P.map", "// Generated by Framer (4f5e97b)\nimport{jsx as L}from\"react/jsx-runtime\";import{addFonts as r,cx as e,Link as C,SVG as t,useLocaleInfo as a,useVariantState as o,withCSS as n}from\"framer\";import{LayoutGroup as i,motion as l,MotionConfigContext as s}from\"framer-motion\";import*as d from\"react\";let f=[\"QHVKLjNZg\"],m=\"framer-rXPKl\",p={QHVKLjNZg:\"framer-v-1a68u80\"};function u(L,...r){let e={};return null==r||r.forEach(r=>r&&Object.assign(e,L[r])),e;}let h={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},c=({value:r,children:e})=>{let C=d.useContext(s),t=null!=r?r:C.transition,a=d.useMemo(()=>({...C,transition:t}),[JSON.stringify(t)]);return /*#__PURE__*/L(s.Provider,{value:a,children:e});},g=({height:L,id:r,width:e,...C})=>({...C}),w=(L,r)=>r.join(\"-\")+L.layoutDependency,v=/*#__PURE__*/d.forwardRef(function(r,n){let{activeLocale:s}=a(),{style:m,className:u,layoutId:v,variant:b,...M}=g(r),{baseVariant:y,classNames:Z,gestureVariant:x,setGestureState:P,setVariant:K,transition:j,variants:N}=o({cycleOrder:f,defaultVariant:\"QHVKLjNZg\",transitions:h,variant:b,variantClassNames:p}),k=w(r,N),H=d.useRef(null),V=d.useId();return /*#__PURE__*/L(i,{id:null!=v?v:V,children:/*#__PURE__*/L(l.div,{initial:b,animate:N,onHoverStart:()=>P({isHovered:!0}),onHoverEnd:()=>P({isHovered:!1}),onTapStart:()=>P({isPressed:!0}),onTap:()=>P({isPressed:!1}),onTapCancel:()=>P({isPressed:!1}),className:e(\"framer-rXPKl\",...[],Z),style:{display:\"contents\"},children:/*#__PURE__*/L(c,{value:j,children:/*#__PURE__*/L(C,{href:\"https://www.wsj.com/articles/how-health-and-fitness-trackers-are-about-to-get-a-lot-more-granular-11641999617\",children:/*#__PURE__*/L(l.a,{...M,className:`${e(\"framer-1a68u80\",u)} framer-11zdpkm`,\"data-framer-name\":\"Variant 1\",layoutDependency:k,layoutId:\"QHVKLjNZg\",ref:null!=n?n:H,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...m},children:/*#__PURE__*/L(t,{className:\"framer-sfh1z6\",\"data-framer-name\":\"WSJ_Logo\",layout:\"position\",layoutDependency:k,layoutId:\"fju53SaiV\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 284 24\"><path d=\"M 282.572 20.569 C 281.745 20.569 281.056 21.251 281.056 22.172 C 281.056 23.093 281.745 23.776 282.572 23.776 C 283.398 23.776 284.087 23.093 284.087 22.172 C 284.087 21.251 283.398 20.569 282.572 20.569 M 227.745 23.673 L 234.701 23.673 L 234.701 23.059 L 233.944 22.888 C 233.255 22.717 232.945 22.343 232.945 21.387 L 232.945 12.109 L 234.564 12.109 C 235.563 12.109 236.079 12.348 236.148 14.429 L 236.32 18.795 C 236.458 22.717 237.594 23.809 239.524 23.809 C 241.486 23.809 242.003 22.479 242.003 20.603 L 242.003 19.818 L 241.279 19.818 L 241.279 20.398 C 241.279 21.66 241.108 22.547 240.625 22.547 C 240.177 22.547 240.143 22.206 240.04 20.637 L 239.833 17.636 C 239.557 13.61 239.041 12.212 236.044 11.666 C 238.903 10.916 240.66 8.834 240.66 5.867 C 240.66 2.012 237.594 0.17 234.667 0.17 L 222.924 0.17 L 222.924 0.785 L 223.578 0.921 C 224.818 1.194 224.853 1.842 224.853 4.605 L 224.853 18.181 C 224.853 21.217 223.991 22.684 222.028 22.684 C 220.272 22.684 219.307 21.831 219.307 18.522 L 219.307 2.388 C 219.307 1.433 219.617 1.16 220.374 0.989 L 221.304 0.785 L 221.304 0.17 L 214.108 0.17 L 214.108 0.785 L 214.864 0.989 C 215.553 1.194 215.794 1.467 215.794 2.422 L 215.794 18.283 C 215.794 21.865 217.895 23.843 221.099 23.843 C 224.301 23.843 225.885 21.865 225.885 18.181 L 225.885 3.377 C 225.885 1.535 226.264 0.887 227.779 0.887 C 228.985 0.887 229.502 1.296 229.502 2.422 L 229.502 21.387 C 229.502 22.343 229.192 22.684 228.502 22.854 L 227.745 23.059 Z M 273.962 2.422 C 273.962 1.467 274.272 1.16 274.96 1.023 L 275.891 0.818 L 275.891 0.17 L 268.727 0.17 L 268.727 0.785 L 269.484 0.989 C 270.173 1.194 270.483 1.467 270.483 2.422 L 270.483 21.524 C 270.483 22.445 270.105 22.957 269.036 22.957 C 267.797 22.957 267.624 22.547 267.177 20.535 L 262.769 0.102 L 261.391 0.102 L 257.19 19.886 C 256.708 22.103 256.467 22.616 255.537 22.888 L 254.951 23.059 L 254.951 23.673 L 259.876 23.673 L 259.876 23.059 L 259.153 22.922 C 258.12 22.717 257.844 22.172 258.361 19.58 L 260.841 6.924 L 263.561 20.33 C 263.974 22.274 263.94 22.65 262.459 22.922 L 261.736 23.059 L 261.736 23.673 L 279.988 23.673 L 279.988 15.896 L 279.334 15.896 C 278.99 19.477 278.267 22.854 275.34 22.854 L 273.961 22.854 L 273.961 2.422 Z M 263.217 17.328 L 263.217 16.408 L 258.568 16.408 L 258.43 17.328 Z M 244 2.831 L 244 19.136 C 244 21.592 244 22.752 242.76 22.957 L 242.14 23.059 L 242.14 23.673 L 247.202 23.673 L 247.202 23.059 C 244.999 22.752 244.999 22.002 244.999 19.341 L 244.999 3.854 L 244.172 3.104 L 252.61 23.673 L 254.056 23.673 L 254.056 4.708 C 254.056 1.91 254.056 1.296 255.434 0.921 L 255.916 0.785 L 255.916 0.17 L 250.715 0.17 L 250.715 0.785 L 251.301 0.921 C 253.057 1.228 253.057 1.91 253.057 4.503 L 253.057 16.373 L 253.402 16.271 L 246.996 0.17 L 242.072 0.17 L 242.072 0.785 L 242.553 0.921 C 243.105 1.092 243.415 1.706 244 2.831 M 232.945 0.989 L 234.323 0.989 C 235.7 0.989 236.974 1.876 236.974 6.311 C 236.974 10.847 236.01 11.291 234.082 11.291 L 232.945 11.291 Z M 210.009 11.7 C 210.009 21.558 209.183 22.957 207.391 22.957 C 205.601 22.957 204.809 21.558 204.809 11.768 C 204.809 2.285 205.67 0.921 207.391 0.921 C 209.183 0.921 210.009 2.285 210.009 11.7 M 213.763 11.905 C 213.763 5.389 211.662 0 207.391 0 C 203.087 0 201.055 5.389 201.055 11.905 C 201.055 18.454 203.155 23.843 207.391 23.843 C 211.765 23.843 213.763 18.454 213.763 11.905 M 199.023 2.422 C 199.023 1.467 199.264 1.16 199.952 0.989 L 200.71 0.785 L 200.71 0.17 L 193.581 0.17 L 193.581 0.785 L 194.442 0.989 C 195.131 1.16 195.51 1.399 195.51 2.388 L 195.51 18.795 C 195.51 21.08 195.303 22.922 193.581 22.922 C 192.479 22.922 191.653 22.069 191.688 21.456 C 191.79 20.398 193.581 20.467 193.719 18.761 C 193.823 17.533 193.03 17.021 192.307 16.919 C 191.24 16.782 189.931 17.669 189.896 19.443 C 189.861 21.728 191.377 23.809 193.96 23.809 C 196.819 23.809 199.023 21.899 199.023 18.249 Z M 83.997 2.422 C 83.997 1.467 84.307 1.16 84.995 1.023 L 85.925 0.818 L 85.925 0.17 L 78.762 0.17 L 78.762 0.785 L 79.52 0.989 C 80.208 1.194 80.518 1.467 80.518 2.422 L 80.518 21.524 C 80.518 22.445 80.139 22.957 79.072 22.957 C 77.832 22.957 77.625 22.547 77.178 20.535 L 72.769 0.102 L 71.392 0.102 L 67.191 19.886 C 66.709 22.103 66.467 22.616 65.537 22.888 L 64.952 23.059 L 64.952 23.673 L 69.876 23.673 L 69.876 23.059 L 69.153 22.922 C 68.12 22.717 67.845 22.172 68.361 19.58 L 70.841 6.856 L 73.562 20.33 C 73.941 22.274 73.941 22.65 72.46 22.922 L 71.737 23.059 L 71.737 23.673 L 90.024 23.673 L 90.024 15.896 L 89.369 15.896 C 89.025 19.477 88.302 22.854 85.375 22.854 L 83.997 22.854 Z M 179.874 0.989 L 180.632 0.989 C 182.768 0.989 183.491 4.366 183.732 7.948 L 184.386 7.948 L 184.386 0.17 L 171.885 0.17 L 171.885 7.948 L 172.539 7.948 C 172.781 4.366 173.504 0.989 175.639 0.989 L 176.397 0.989 L 176.397 21.387 C 176.397 22.343 176.087 22.684 175.398 22.854 L 174.503 23.059 L 174.503 23.673 L 181.942 23.673 L 181.942 23.059 L 180.874 22.82 C 180.219 22.65 179.875 22.445 179.875 21.387 L 179.875 0.989 Z M 164.136 11.87 L 165.204 11.905 C 166.754 11.939 167.201 12.519 167.512 16.237 L 168.165 16.237 L 168.165 6.754 L 167.512 6.754 C 167.132 9.722 166.719 10.984 165.238 11.018 L 164.136 11.052 L 164.136 0.989 L 166.512 0.989 C 169.165 0.989 169.75 4.298 170.128 7.948 L 170.783 7.948 L 170.783 0.17 L 158.902 0.17 L 158.902 0.785 L 159.659 0.989 C 160.451 1.194 160.658 1.672 160.658 2.456 L 160.658 21.387 C 160.658 22.343 160.348 22.684 159.659 22.854 L 158.902 23.059 L 158.902 23.673 L 171.127 23.673 L 171.127 15.896 L 170.473 15.896 C 170.059 19.443 169.612 22.854 166.512 22.854 L 164.136 22.854 Z M 151.153 11.87 L 152.22 11.905 C 153.77 11.939 154.218 12.519 154.528 16.237 L 155.182 16.237 L 155.182 6.754 L 154.528 6.754 C 154.149 9.722 153.736 10.984 152.255 11.018 L 151.153 11.052 L 151.153 0.989 L 153.529 0.989 C 156.181 0.989 156.766 4.366 157.145 7.948 L 157.799 7.948 L 157.799 0.17 L 145.573 0.17 L 145.573 0.785 L 146.676 0.989 C 147.467 1.194 147.674 1.672 147.674 2.456 L 147.674 21.387 C 147.674 22.343 147.364 22.684 146.676 22.854 L 145.918 23.059 L 145.918 23.673 L 158.143 23.673 L 158.143 15.896 L 157.489 15.896 C 157.076 19.443 156.628 22.854 153.529 22.854 L 151.152 22.854 L 151.152 11.87 Z M 136.998 0.989 L 138.031 0.989 C 139.409 0.989 140.683 1.876 140.683 6.311 C 140.683 10.779 139.719 11.291 137.791 11.291 L 136.998 11.291 Z M 131.798 23.673 L 138.755 23.673 L 138.755 23.059 L 137.997 22.888 C 137.308 22.717 136.998 22.343 136.998 21.387 L 136.998 12.109 L 138.272 12.109 C 139.271 12.109 139.788 12.519 139.857 14.429 L 140.029 18.795 C 140.167 22.717 141.303 23.809 143.232 23.809 C 145.195 23.809 145.711 22.479 145.711 20.603 L 145.711 19.818 L 144.988 19.818 L 144.988 20.398 C 144.988 21.66 144.816 22.547 144.334 22.547 C 143.886 22.547 143.851 22.206 143.749 20.637 L 143.541 17.636 C 143.266 13.508 142.715 12.212 139.753 11.666 C 142.612 10.916 144.368 8.834 144.368 5.867 C 144.368 2.012 141.303 0.17 138.376 0.17 L 131.798 0.17 L 131.798 0.785 L 132.555 0.989 C 133.244 1.194 133.554 1.467 133.554 2.422 L 133.554 21.387 C 133.554 22.343 133.244 22.684 132.555 22.854 L 131.798 23.059 Z M 126.529 0.989 L 127.287 0.989 C 129.421 0.989 130.145 4.366 130.386 7.948 L 131.04 7.948 L 131.04 0.17 L 118.539 0.17 L 118.539 7.948 L 119.193 7.948 C 119.434 4.366 120.158 0.989 122.293 0.989 L 123.051 0.989 L 123.051 21.387 C 123.051 22.343 122.74 22.684 122.052 22.854 L 121.156 23.059 L 121.156 23.673 L 128.423 23.673 L 128.423 23.059 L 127.527 22.854 C 126.632 22.65 126.529 21.967 126.529 21.387 Z M 118.573 17.567 C 118.573 10.574 110.825 8.732 110.825 3.65 C 110.825 2.558 111.238 0.921 112.959 0.921 C 115.439 0.921 116.369 4.093 116.783 7.948 L 117.437 7.948 L 117.437 0.17 L 117.024 0.17 C 116.851 0.921 116.541 1.262 116.094 1.262 C 115.302 1.262 114.888 0.034 112.994 0.034 C 110.067 0.034 108.07 2.456 108.07 5.628 C 108.07 11.393 115.818 13.814 115.818 19.136 C 115.818 21.558 114.681 22.922 113.132 22.922 C 110.825 22.922 109.309 20.228 108.896 15.896 L 108.242 15.896 L 108.242 23.673 L 108.655 23.673 C 108.999 22.547 109.447 22.445 109.826 22.445 C 110.48 22.445 111.169 23.809 113.166 23.809 C 116.232 23.809 118.573 21.183 118.573 17.567 M 96.016 2.422 C 96.016 1.467 96.326 1.16 97.014 1.023 L 97.944 0.818 L 97.944 0.17 L 90.781 0.17 L 90.781 0.785 L 91.539 0.989 C 92.228 1.194 92.538 1.467 92.538 2.422 L 92.538 21.387 C 92.538 22.343 92.228 22.684 91.539 22.854 L 90.781 23.059 L 90.781 23.673 L 102.043 23.673 L 102.043 15.896 L 101.388 15.896 C 101.044 19.477 100.321 22.854 97.393 22.854 L 96.016 22.854 Z M 73.217 17.328 L 73.217 16.408 L 68.568 16.408 L 68.43 17.328 Z M 53.311 23.741 L 54.724 23.741 L 57.926 6.959 L 57.444 6.959 L 60.957 23.741 L 62.197 23.741 L 66.399 3.957 C 66.846 1.876 67.087 1.16 67.914 0.955 L 68.568 0.785 L 68.568 0.17 L 63.712 0.17 L 63.712 0.785 L 64.436 0.921 C 65.469 1.126 65.709 1.74 65.227 4.264 L 62.507 17.533 L 62.92 17.533 L 60.165 3.547 C 59.889 2.217 59.717 1.126 60.854 0.921 L 61.611 0.785 L 61.611 0.17 L 54.964 0.17 L 54.964 0.785 L 55.412 0.887 C 56.101 1.057 56.204 1.467 56.48 2.763 L 57.547 7.846 L 57.341 4.775 L 54.964 17.192 L 55.274 17.192 L 52.484 3.547 C 52.174 2.149 52.071 1.092 53.173 0.887 L 53.69 0.785 L 53.69 0.17 L 46.906 0.17 L 46.906 0.785 L 47.56 0.955 C 48.18 1.126 48.524 1.433 48.938 3.308 L 53.311 23.741 Z M 34.921 11.87 L 35.989 11.905 C 37.538 11.939 37.986 12.519 38.296 16.237 L 38.95 16.237 L 38.95 6.754 L 38.296 6.754 C 37.917 9.722 37.504 10.984 36.023 11.018 L 34.921 11.052 L 34.921 0.989 L 37.298 0.989 C 39.949 0.989 40.535 4.366 40.913 7.948 L 41.568 7.948 L 41.568 0.17 L 29.686 0.17 L 29.686 0.785 L 30.444 0.989 C 31.236 1.194 31.443 1.672 31.443 2.456 L 31.443 21.387 C 31.443 22.343 31.133 22.684 30.444 22.854 L 29.686 23.059 L 29.686 23.673 L 41.912 23.673 L 41.912 15.896 L 41.258 15.896 C 40.845 19.443 40.397 22.854 37.297 22.854 L 34.921 22.854 Z M 13.259 23.673 L 20.319 23.673 L 20.319 23.059 L 19.527 22.888 C 18.907 22.752 18.493 22.343 18.493 21.387 L 18.493 12.076 L 23.694 12.076 L 23.694 21.387 C 23.694 22.343 23.281 22.752 22.661 22.888 L 21.869 23.059 L 21.869 23.673 L 28.929 23.673 L 28.929 23.059 L 28.171 22.854 C 27.482 22.684 27.172 22.308 27.172 21.353 L 27.172 2.422 C 27.172 1.467 27.482 1.16 28.171 0.989 L 28.929 0.785 L 28.929 0.17 L 21.869 0.17 L 21.869 0.785 L 22.661 0.989 C 23.246 1.16 23.694 1.399 23.694 2.388 L 23.694 11.154 L 18.493 11.154 L 18.493 2.388 C 18.493 1.433 18.872 1.16 19.527 0.989 L 20.319 0.785 L 20.319 0.17 L 13.259 0.17 L 13.259 0.785 L 14.016 0.989 C 14.705 1.194 15.015 1.467 15.015 2.422 L 15.015 21.387 C 15.015 22.343 14.705 22.684 14.016 22.854 L 13.259 23.059 L 13.259 23.673 Z M 7.99 0.989 L 8.748 0.989 C 10.883 0.989 11.606 4.366 11.847 7.948 L 12.501 7.948 L 12.501 0.17 L 0 0.17 L 0 7.948 L 0.655 7.948 C 0.895 4.366 1.619 0.989 3.754 0.989 L 4.511 0.989 L 4.511 21.387 C 4.511 22.343 4.202 22.684 3.513 22.854 L 2.617 23.059 L 2.617 23.673 L 10.057 23.673 L 10.057 23.059 L 8.989 22.82 C 8.334 22.65 7.99 22.445 7.99 21.387 Z\" fill=\"var(--token-27e98388-736a-4f0e-a446-044ad503a471, rgb(157, 167, 168)) /* {&quot;name&quot;:&quot;Gray 2&quot;} */\"></path></svg>',svgContentId:1492590314,withExternalLayout:!0})})})})})});}),b=['.framer-rXPKl [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rXPKl .framer-11zdpkm { display: block; }\",\".framer-rXPKl .framer-1a68u80 { height: 30px; overflow: hidden; position: relative; text-decoration: none; width: 285px; }\",\".framer-rXPKl .framer-sfh1z6 { flex: none; height: 24px; left: 0px; position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 284px; }\"],M=n(v,b,\"framer-rXPKl\");export default M;M.displayName=\"Logo/WSJ\",M.defaultProps={height:30,width:285},r(M,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKvwbDDYhs\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"285\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KvwbDDYhs.map", "// Generated by Framer (4f5e97b)\nimport{jsx as e}from\"react/jsx-runtime\";import{addFonts as r,cx as t,Link as a,SVG as L,useLocaleInfo as o,useVariantState as n,withCSS as C}from\"framer\";import{LayoutGroup as i,motion as s,MotionConfigContext as d}from\"framer-motion\";import*as l from\"react\";let m=[\"V0jC4e8e4\"],f=\"framer-JmdKO\",p={V0jC4e8e4:\"framer-v-1vvcj5\"};function u(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let c={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},h=({value:r,children:t})=>{let a=l.useContext(d),L=null!=r?r:a.transition,o=l.useMemo(()=>({...a,transition:L}),[JSON.stringify(L)]);return /*#__PURE__*/e(d.Provider,{value:o,children:t});},v=({height:e,id:r,width:t,...a})=>({...a}),y=(e,r)=>r.join(\"-\")+e.layoutDependency,w=/*#__PURE__*/l.forwardRef(function(r,C){let{activeLocale:d}=o(),{style:f,className:u,layoutId:w,variant:b,...g}=v(r),{baseVariant:x,classNames:M,gestureVariant:Z,setGestureState:j,setVariant:O,transition:J,variants:K}=n({cycleOrder:m,defaultVariant:\"V0jC4e8e4\",transitions:c,variant:b,variantClassNames:p}),k=y(r,K),N=l.useRef(null),V=l.useId();return /*#__PURE__*/e(i,{id:null!=w?w:V,children:/*#__PURE__*/e(s.div,{initial:b,animate:K,onHoverStart:()=>j({isHovered:!0}),onHoverEnd:()=>j({isHovered:!1}),onTapStart:()=>j({isPressed:!0}),onTap:()=>j({isPressed:!1}),onTapCancel:()=>j({isPressed:!1}),className:t(\"framer-JmdKO\",...[],M),style:{display:\"contents\"},children:/*#__PURE__*/e(h,{value:J,children:/*#__PURE__*/e(a,{href:\"https://www.fastcompany.com/90741642/this-former-spacex-engineer-wants-to-prevent-you-from-getting-diabetes\",openInNewTab:!0,children:/*#__PURE__*/e(s.a,{...g,className:`${t(\"framer-1vvcj5\",u)} framer-10sf19e`,\"data-framer-name\":\"Variant 1\",layoutDependency:k,layoutId:\"V0jC4e8e4\",ref:null!=C?C:N,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...f},children:/*#__PURE__*/e(L,{className:\"framer-8zm00\",\"data-framer-name\":\"Fast_Company_logo\",layout:\"position\",layoutDependency:k,layoutId:\"sLMfnZDfk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 183 30\"><path d=\"M 0 30 L 0 0 L 183 0 L 183 30 Z\" fill=\"transparent\"></path><path d=\"M 159.219 5.373 C 159.219 3.594 159.771 2.981 160.691 2.981 C 161.612 2.981 162.348 3.349 163.207 5.373 L 168.422 17.208 L 168.422 24.689 C 168.422 26.467 167.686 26.958 165.661 27.203 L 165.661 27.693 L 175.294 27.693 L 175.294 27.203 C 173.208 26.958 172.533 26.406 172.533 24.689 L 172.533 17.208 L 177.564 5.802 C 178.546 3.594 179.527 3.104 181 2.858 L 181 2.368 L 173.944 2.368 L 173.944 2.858 C 176.337 3.104 177.196 3.778 176.521 5.373 L 172.103 15.491 L 167.563 5.127 C 166.949 3.717 167.318 3.288 169.956 2.92 L 169.956 2.429 L 154.801 2.429 L 154.801 2.92 C 157.194 3.288 157.93 3.717 157.93 5.434 L 157.93 19.292 L 146.825 2.429 L 141.364 2.429 L 141.364 2.92 C 143.143 3.165 143.696 3.717 143.696 5.434 L 143.696 24.75 C 143.696 26.528 143.205 27.142 142.591 27.142 C 142.039 27.142 141.732 26.896 140.935 24.75 L 132.713 2.307 L 132.222 2.307 L 124.307 23.769 C 123.448 26.16 122.098 26.958 120.748 27.264 L 120.748 27.755 L 127.988 27.755 L 127.988 27.264 C 125.473 27.019 124.675 26.038 125.227 24.443 L 127.007 19.538 L 134.492 19.538 L 136.21 24.137 C 136.946 26.222 136.517 26.835 134.369 27.203 L 134.369 27.693 L 148.113 27.693 L 148.113 27.203 C 145.72 26.835 144.984 26.406 144.984 24.689 L 144.984 7.396 L 158.421 27.755 L 159.219 27.755 Z M 62.338 15 C 62.338 7.151 66.08 3.042 70.437 3.042 C 73.014 3.042 74.67 3.594 75.652 4.637 C 76.388 5.373 76.94 6.415 77.554 8.071 L 78.045 8.071 L 78.045 2.797 C 75.529 2.307 73.259 2 70.989 2 C 64.424 2 57.613 6.231 57.613 15 C 57.613 23.769 64.424 28 70.559 28 C 73.259 28 75.652 27.571 77.922 26.896 L 78.658 21.929 L 78.229 21.807 C 77.677 22.849 77.002 23.769 76.265 24.566 C 74.67 26.16 72.523 27.019 70.375 27.019 C 66.203 26.958 62.338 22.972 62.338 15 Z M 116.76 15.736 C 116.208 15.736 115.472 15.675 114.736 15.552 L 114.736 3.288 L 116.76 3.288 C 120.135 3.288 121.607 5.066 121.607 9.481 C 121.607 13.958 120.074 15.736 116.76 15.736 Z M 37.918 2.368 L 37.918 8.439 L 38.409 8.439 C 39.145 4.575 40.679 3.349 43.256 3.349 L 44.483 3.349 L 44.483 24.689 C 44.483 26.467 43.747 26.958 41.722 27.203 L 41.722 27.693 L 51.355 27.693 L 51.355 27.203 C 49.269 26.958 48.594 26.406 48.594 24.689 L 48.594 3.288 L 49.821 3.288 C 52.398 3.288 53.932 4.514 54.668 8.377 L 55.159 8.377 L 55.159 2.307 L 37.918 2.307 Z M 30.248 28 C 34.421 28 38.838 25.608 38.838 20.703 C 38.838 17.821 37.304 15.429 34.605 13.958 L 29.819 11.321 C 27.303 9.91 26.567 8.623 26.567 6.783 C 26.567 4.698 28.101 3.042 30.985 3.042 C 32.396 3.042 33.439 3.41 34.298 4.208 C 35.034 4.943 35.771 6.17 36.445 8.377 L 36.875 8.377 L 36.875 2.797 C 35.157 2.307 33.378 2 31.292 2 C 27.181 2 24.113 4.575 24.113 8.929 C 24.113 11.689 25.647 14.203 28.162 15.675 L 32.58 18.127 C 35.096 19.538 35.893 20.887 35.893 22.91 C 35.893 25.302 33.439 27.019 30.739 27.019 C 28.96 27.019 27.487 26.406 26.444 25.363 C 25.769 24.689 25.033 23.646 24.542 22.297 L 27.426 22.297 L 27.426 21.807 C 26.628 21.623 26.138 21.5 25.463 19.906 L 19.818 6.476 L 19.327 6.476 L 13.805 19.599 C 13.069 21.377 12.578 21.684 11.719 21.807 L 11.719 22.297 L 16.627 22.297 L 16.627 21.807 C 14.848 21.623 14.357 20.764 14.787 19.66 L 15.646 17.575 L 20.616 17.575 L 21.72 20.151 C 22.211 21.316 21.475 21.623 19.695 21.745 L 19.695 22.236 L 23.622 22.236 L 23.622 27.08 C 25.585 27.632 28.101 28 30.248 28 Z M 92.586 27.755 L 99.887 7.458 L 100.44 24.75 C 100.501 26.467 99.826 26.958 97.74 27.203 L 97.74 27.693 L 117.865 27.693 L 117.865 27.203 C 115.472 26.835 114.736 26.406 114.736 24.689 L 114.736 16.533 C 115.533 16.656 116.331 16.717 116.944 16.717 C 121.792 16.717 125.964 14.939 125.964 9.542 C 125.964 4.146 121.792 2.368 116.944 2.368 L 108.293 2.368 L 108.293 2.858 C 110.073 3.104 110.625 3.656 110.625 5.373 L 110.625 24.689 C 110.625 26.467 109.888 27.203 107.864 27.203 L 107.802 27.203 C 105.655 27.203 104.735 26.406 104.673 24.75 L 103.937 5.434 C 103.876 3.656 104.489 3.104 106.391 2.858 L 106.391 2.368 L 100.44 2.368 L 93.936 20.58 L 87.432 2.368 L 81.051 2.368 L 81.051 2.858 C 82.953 3.104 83.567 3.717 83.505 5.434 L 82.831 23.953 C 82.769 25.792 81.787 26.896 80.008 27.203 L 80.008 27.693 L 86.757 27.693 L 86.757 27.203 C 85.039 26.958 84.058 25.854 84.119 23.953 L 84.671 7.09 L 92.095 27.693 Z M 73.014 22.42 C 76.265 22.42 80.438 19.538 80.438 15 C 80.438 10.524 76.327 7.58 73.014 7.58 C 69.762 7.58 65.589 10.462 65.589 15 C 65.589 19.476 69.7 22.42 73.014 22.42 Z M 73.014 8.623 C 75.1 8.623 76.511 10.34 76.511 15 C 76.511 19.722 75.038 21.377 73.014 21.377 C 70.927 21.377 69.516 19.66 69.516 15 C 69.516 10.278 70.927 8.623 73.014 8.623 Z M 134.185 18.495 L 127.375 18.495 L 130.749 9.175 Z M 20.309 16.594 L 16.137 16.594 L 18.223 11.505 Z M 12.333 17.882 L 12.823 17.882 L 12.823 10.278 L 12.333 10.278 C 11.535 12.976 10.737 13.59 9.265 13.59 L 6.442 13.59 L 6.442 3.288 L 10.921 3.288 C 13.498 3.288 15.032 4.514 15.768 8.377 L 16.259 8.377 L 16.259 2.307 L 0 2.307 L 0 2.797 C 1.779 3.042 2.332 3.594 2.332 5.311 L 2.332 24.627 C 2.332 26.406 1.779 26.896 0 27.142 L 0 27.632 L 9.572 27.632 L 9.572 27.142 C 7.179 26.774 6.442 26.344 6.442 24.627 L 6.442 14.509 L 9.265 14.509 C 10.676 14.571 11.535 15.184 12.333 17.882 Z\" fill=\"var(--token-27e98388-736a-4f0e-a446-044ad503a471, rgb(157, 167, 168)) /* {&quot;name&quot;:&quot;Gray 2&quot;} */\"></path></svg>',svgContentId:1623837610,withExternalLayout:!0})})})})})});}),b=['.framer-JmdKO [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JmdKO .framer-10sf19e { display: block; }\",\".framer-JmdKO .framer-1vvcj5 { height: 30px; overflow: hidden; position: relative; text-decoration: none; width: 211px; }\",\".framer-JmdKO .framer-8zm00 { flex: none; height: 30px; left: 0px; position: absolute; top: calc(50.00000000000002% - 30px / 2); width: 183px; }\"],g=C(w,b,\"framer-JmdKO\");export default g;g.displayName=\"Logo/FastCompany\",g.defaultProps={height:30,width:211},r(g,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpr4KiPQWs\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"211\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"30\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pr4KiPQWs.map", "// Generated by Framer (4f5e97b)\nimport{jsx as e}from\"react/jsx-runtime\";import{addFonts as r,cx as t,Link as a,SVG as o,useLocaleInfo as n,useVariantState as i,withCSS as s}from\"framer\";import{LayoutGroup as l,motion as d,MotionConfigContext as L}from\"framer-motion\";import*as m from\"react\";let f=[\"yd8gm6bny\"],C=\"framer-RtV36\",p={yd8gm6bny:\"framer-v-11kshvm\"};function u(e,...r){let t={};return null==r||r.forEach(r=>r&&Object.assign(t,e[r])),t;}let h={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}},c=({value:r,children:t})=>{let a=m.useContext(L),o=null!=r?r:a.transition,n=m.useMemo(()=>({...a,transition:o}),[JSON.stringify(o)]);return /*#__PURE__*/e(L.Provider,{value:n,children:t});},v=({height:e,id:r,width:t,...a})=>({...a}),g=(e,r)=>r.join(\"-\")+e.layoutDependency,y=/*#__PURE__*/m.forwardRef(function(r,s){let{activeLocale:L}=n(),{style:C,className:u,layoutId:y,variant:b,...w}=v(r),{baseVariant:x,classNames:M,gestureVariant:Z,setGestureState:k,setVariant:V,transition:R,variants:j}=i({cycleOrder:f,defaultVariant:\"yd8gm6bny\",transitions:h,variant:b,variantClassNames:p}),N=g(r,j),q=m.useRef(null),P=m.useId();return /*#__PURE__*/e(l,{id:null!=y?y:P,children:/*#__PURE__*/e(d.div,{initial:b,animate:j,onHoverStart:()=>k({isHovered:!0}),onHoverEnd:()=>k({isHovered:!1}),onTapStart:()=>k({isPressed:!0}),onTap:()=>k({isPressed:!1}),onTapCancel:()=>k({isPressed:!1}),className:t(\"framer-RtV36\",...[],M),style:{display:\"contents\"},children:/*#__PURE__*/e(c,{value:R,children:/*#__PURE__*/e(a,{href:\"https://www.theverge.com/22794594/levels-health-glucose-fitness-tracker-review\",children:/*#__PURE__*/e(d.a,{...w,className:`${t(\"framer-11kshvm\",u)} framer-1kffbvj`,\"data-framer-name\":\"Variant 1\",layoutDependency:N,layoutId:\"yd8gm6bny\",ref:null!=s?s:q,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...C},children:/*#__PURE__*/e(o,{className:\"framer-1rguri2\",\"data-framer-name\":\"The_Verge_New_2022\",layout:\"position\",layoutDependency:N,layoutId:\"Gjjmdiqkm\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 145 102\"><path d=\"M 100.816 44.756 L 100.705 48.074 C 96.812 47.809 95.699 48.805 95.699 52.056 L 95.699 52.475 L 92.362 52.475 L 92.362 44.955 L 95.699 44.955 L 95.699 47.1 C 96.7 45.354 98.057 44.558 100.816 44.756 Z M 21.382 58.25 L 24.719 58.25 L 24.719 45.42 L 21.382 45.42 Z M 37.914 44.779 C 35.578 44.779 34.154 45.819 33.397 46.97 L 33.397 39.891 L 15.82 39.891 L 15.82 42.988 L 30.282 42.988 L 30.282 52.477 L 33.463 52.477 C 33.463 49.756 35.043 47.832 36.979 47.832 C 38.648 47.832 39.404 48.651 39.404 51.592 L 39.404 58.251 L 42.742 58.251 L 42.742 50.398 C 42.743 46.638 40.807 44.779 37.914 44.779 Z M 51.042 55.706 C 49.018 55.706 47.705 54.49 47.482 52.477 L 44.345 52.477 C 44.657 56.016 46.993 58.516 51.02 58.516 C 54.136 58.516 55.893 57.122 56.806 55.021 L 53.98 53.781 C 53.556 55.042 52.777 55.706 51.042 55.706 Z M 50.908 44.845 C 49.717 44.819 48.539 45.092 47.482 45.641 L 49.085 47.898 C 49.685 47.589 50.331 47.434 51.02 47.455 C 52.889 47.455 53.846 48.673 53.98 50.265 L 50.754 50.265 L 50.754 52.477 L 57.117 52.477 C 57.162 52.145 57.184 51.835 57.184 51.504 C 57.205 46.681 54.001 44.845 50.908 44.845 Z M 83.95 55.706 C 81.926 55.706 80.613 54.49 80.39 52.477 L 77.253 52.477 C 77.565 56.016 79.901 58.516 83.928 58.516 C 87.044 58.516 88.801 57.122 89.714 55.021 L 86.888 53.781 C 86.442 55.042 85.663 55.706 83.95 55.706 Z M 83.838 44.845 C 82.647 44.818 81.468 45.092 80.411 45.641 L 82.013 47.898 C 82.613 47.589 83.259 47.434 83.949 47.455 C 85.818 47.455 86.775 48.673 86.909 50.265 L 83.682 50.265 L 83.682 52.477 L 90.046 52.477 C 90.091 52.145 90.113 51.835 90.113 51.504 C 90.135 46.681 86.932 44.845 83.838 44.845 Z M 122.954 55.706 C 120.93 55.706 119.617 54.49 119.394 52.477 L 116.257 52.477 C 116.569 56.016 118.905 58.516 122.932 58.516 C 126.048 58.516 127.805 57.122 128.718 55.021 L 125.892 53.781 C 125.446 55.042 124.668 55.706 122.954 55.706 Z M 122.776 44.845 C 121.585 44.819 120.407 45.092 119.35 45.641 L 120.953 47.898 C 121.554 47.589 122.199 47.434 122.888 47.455 C 124.757 47.455 125.714 48.673 125.848 50.265 L 122.622 50.265 L 122.622 52.477 L 128.985 52.477 C 129.031 52.145 129.052 51.835 129.052 51.504 C 129.073 46.681 125.869 44.845 122.776 44.845 Z M 58.896 38.319 L 64.899 52.475 L 68.548 52.475 L 63.969 41.217 L 69.887 41.217 L 69.887 38.341 Z M 76.697 38.341 L 69.822 55.661 L 68.798 58.25 L 72.291 58.25 L 80.545 38.341 Z M 107.379 57.941 C 108.804 57.941 109.982 57.543 110.805 56.857 L 109.471 54.755 C 109.048 54.932 108.581 54.999 108.113 54.999 C 106.288 54.999 105.242 53.915 104.887 52.477 L 101.616 52.477 C 102.061 55.552 104.287 57.941 107.379 57.941 Z M 111.495 46.813 C 110.739 45.619 109.204 44.756 107.067 44.756 C 104.976 44.735 103.04 45.862 102.017 47.699 L 104.798 49.469 C 105.309 48.406 106.311 47.699 107.847 47.699 C 110.027 47.699 111.495 49.38 111.495 51.371 C 111.495 51.747 111.45 52.123 111.34 52.477 L 114.832 52.477 L 114.832 44.978 L 111.495 44.978 Z M 108.269 60.949 C 106.111 60.949 105.309 59.91 105.154 58.692 L 101.972 58.692 C 102.039 61.015 103.596 63.559 108.336 63.559 C 111.54 63.559 113.632 61.966 114.499 59.577 L 111.495 58.537 C 111.073 60.087 109.916 60.949 108.269 60.949 Z\" fill=\"var(--token-27e98388-736a-4f0e-a446-044ad503a471, rgb(157, 167, 168)) /* {&quot;name&quot;:&quot;Gray 2&quot;} */\"></path></svg>',svgContentId:1548726073,withExternalLayout:!0})})})})})});}),b=['.framer-RtV36 [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RtV36 .framer-1kffbvj { display: block; }\",\".framer-RtV36 .framer-11kshvm { height: 28px; overflow: hidden; position: relative; text-decoration: none; width: 115px; }\",\".framer-RtV36 .framer-1rguri2 { flex: none; height: 102px; left: calc(49.56521739130437% - 145px / 2); position: absolute; top: calc(50.00000000000002% - 102px / 2); width: 145px; }\"],w=s(y,b,\"framer-RtV36\");export default w;w.displayName=\"Logo/TheVerge\",w.defaultProps={height:28,width:115},r(w,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersQJvSyP0F\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"115\",\"framerIntrinsicHeight\":\"28\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sQJvSyP0F.map", "// Generated by Framer (5eef525)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import LogoOutside from\"https://framerusercontent.com/modules/uWn5YcfPKqQE7jHP3lZC/4bPdV10qzqr58EJXCJyd/bf1zSVh21.js\";import LogoPartner from\"https://framerusercontent.com/modules/bgQfLQzRSWx1SxZ0jjIp/6C5cUzqWnrfyjxe00rEQ/EWjLAxnW_.js\";import LogoMensHealth from\"https://framerusercontent.com/modules/5CPiksN6axxg1dmatuav/8XmgLfbzBAfPZQwJscuN/ey7x_AO4P.js\";import LogoWSJ from\"https://framerusercontent.com/modules/qJYn98NLafEC7umXjX7x/4KHBIhd9F5fHhLPi8hpV/KvwbDDYhs.js\";import LogoFastCompany from\"https://framerusercontent.com/modules/8vhG13qtgm5MQZ426Sub/Tu2uqUv7EvIil0r6ZtfS/pr4KiPQWs.js\";import LogoTheVerge from\"https://framerusercontent.com/modules/6KLtmtiSNQRqQRaNjPHu/hplJZZdEJSvD15lSMyPC/sQJvSyP0F.js\";const LogoTheVergeFonts=getFonts(LogoTheVerge);const LogoFastCompanyFonts=getFonts(LogoFastCompany);const LogoOutsideFonts=getFonts(LogoOutside);const LogoMensHealthFonts=getFonts(LogoMensHealth);const LogoWSJFonts=getFonts(LogoWSJ);const LogoPartnerFonts=getFonts(LogoPartner);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"ua1b0GVfp\"];const serializationHash=\"framer-ZUaPy\";const variantClassNames={ua1b0GVfp:\"framer-v-18emjtb\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};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,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ua1b0GVfp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18emjtb\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ua1b0GVfp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8m0mb2-container\",layoutDependency:layoutDependency,layoutId:\"LRCbO1Ie5-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:84,height:\"100%\",hoverFactor:.7,id:\"LRCbO1Ie5\",layoutId:\"LRCbO1Ie5\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y9bxuh-container\",layoutDependency:layoutDependency,layoutId:\"k7BnguM57-container\",children:/*#__PURE__*/_jsx(LogoTheVerge,{height:\"100%\",id:\"k7BnguM57\",layoutId:\"k7BnguM57\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7ur18s-container\",layoutDependency:layoutDependency,layoutId:\"tf_DZGoQr-container\",children:/*#__PURE__*/_jsx(LogoFastCompany,{height:\"100%\",id:\"tf_DZGoQr\",layoutId:\"tf_DZGoQr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o38mlx-container\",layoutDependency:layoutDependency,layoutId:\"oCNuzk3EG-container\",children:/*#__PURE__*/_jsx(LogoOutside,{height:\"100%\",id:\"oCNuzk3EG\",layoutId:\"oCNuzk3EG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wmwdn6-container\",layoutDependency:layoutDependency,layoutId:\"ACAm6GL4Z-container\",children:/*#__PURE__*/_jsx(LogoMensHealth,{height:\"100%\",id:\"ACAm6GL4Z\",layoutId:\"ACAm6GL4Z\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kut3i9-container\",layoutDependency:layoutDependency,layoutId:\"I7dQdQviI-container\",children:/*#__PURE__*/_jsx(LogoWSJ,{height:\"100%\",id:\"I7dQdQviI\",layoutId:\"I7dQdQviI\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ibt7r7-container\",\"data-framer-name\":\"Logo/NYT\",layoutDependency:layoutDependency,layoutId:\"UJezjUe1R-container\",name:\"Logo/NYT\",children:/*#__PURE__*/_jsx(LogoPartner,{height:\"100%\",id:\"UJezjUe1R\",layoutId:\"UJezjUe1R\",name:\"Logo/NYT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZUaPy.framer-agkafs, .framer-ZUaPy .framer-agkafs { display: block; }\",\".framer-ZUaPy.framer-18emjtb { height: 56px; overflow: hidden; position: relative; width: 1240px; }\",\".framer-ZUaPy .framer-8m0mb2-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-ZUaPy .framer-1y9bxuh-container { height: 28px; position: relative; width: 116px; }\",\".framer-ZUaPy .framer-7ur18s-container { aspect-ratio: 6.066666666666666 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 182px; }\",\".framer-ZUaPy .framer-o38mlx-container { height: 30px; position: relative; width: 106px; }\",\".framer-ZUaPy .framer-1wmwdn6-container { height: 30px; position: relative; width: 115px; }\",\".framer-ZUaPy .framer-1kut3i9-container { height: 30px; position: relative; width: 286px; }\",\".framer-ZUaPy .framer-1ibt7r7-container { height: 30px; position: relative; width: 222px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 56\n * @framerIntrinsicWidth 1240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwrUAV4eSR=withCSS(Component,css,\"framer-ZUaPy\");export default FramerwrUAV4eSR;FramerwrUAV4eSR.displayName=\"DJ \u2022 Featured\";FramerwrUAV4eSR.defaultProps={height:56,width:1240};addFonts(FramerwrUAV4eSR,[{explicitInter:true,fonts:[]},...LogoTheVergeFonts,...LogoFastCompanyFonts,...LogoOutsideFonts,...LogoMensHealthFonts,...LogoWSJFonts,...LogoPartnerFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwrUAV4eSR\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1240\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"56\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wrUAV4eSR.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "u", "L", "m", "h", "r", "t", "a", "re", "MotionConfigContext", "o", "C", "se", "p", "b", "y", "v", "Y", "i", "d", "useLocaleInfo", "f", "c", "g", "w", "x", "q", "k", "I", "S", "useVariantState", "u", "L", "j", "U", "pe", "Z", "ae", "LayoutGroup", "motion", "cx", "SVG", "withCSS", "bf1zSVh21_default", "addFonts", "p", "f", "h", "c", "C", "re", "MotionConfigContext", "t", "o", "se", "p", "v", "L", "e", "r", "y", "M", "Y", "i", "d", "useLocaleInfo", "m", "u", "Z", "x", "w", "g", "b", "J", "N", "k", "P", "useVariantState", "f", "B", "j", "pe", "q", "ae", "LayoutGroup", "motion", "cx", "Link", "SVG", "withCSS", "EWjLAxnW_default", "addFonts", "m", "f", "h", "c", "r", "L", "t", "re", "MotionConfigContext", "o", "se", "p", "b", "v", "y", "Y", "i", "d", "useLocaleInfo", "u", "w", "g", "x", "Z", "z", "M", "j", "H", "I", "useVariantState", "m", "f", "K", "N", "pe", "W", "ae", "LayoutGroup", "motion", "cx", "Link", "SVG", "withCSS", "ey7x_AO4P_default", "addFonts", "f", "p", "h", "c", "r", "e", "C", "re", "MotionConfigContext", "t", "a", "se", "p", "g", "L", "w", "v", "Y", "n", "s", "useLocaleInfo", "m", "u", "b", "M", "y", "Z", "x", "P", "K", "j", "N", "useVariantState", "f", "k", "H", "pe", "V", "ae", "LayoutGroup", "motion", "cx", "Link", "SVG", "withCSS", "KvwbDDYhs_default", "addFonts", "m", "p", "c", "h", "r", "t", "a", "re", "MotionConfigContext", "L", "o", "se", "p", "v", "y", "w", "Y", "C", "d", "useLocaleInfo", "f", "u", "b", "g", "x", "M", "Z", "j", "O", "J", "K", "useVariantState", "m", "k", "N", "pe", "V", "ae", "LayoutGroup", "motion", "cx", "Link", "SVG", "withCSS", "pr4KiPQWs_default", "addFonts", "f", "p", "h", "c", "r", "t", "a", "re", "MotionConfigContext", "o", "n", "se", "p", "v", "g", "y", "Y", "s", "L", "useLocaleInfo", "C", "u", "b", "x", "M", "Z", "k", "V", "R", "j", "useVariantState", "f", "N", "q", "pe", "P", "ae", "LayoutGroup", "motion", "cx", "Link", "SVG", "w", "withCSS", "sQJvSyP0F_default", "addFonts", "LogoTheVergeFonts", "getFonts", "sQJvSyP0F_default", "LogoFastCompanyFonts", "pr4KiPQWs_default", "LogoOutsideFonts", "bf1zSVh21_default", "LogoMensHealthFonts", "ey7x_AO4P_default", "LogoWSJFonts", "KvwbDDYhs_default", "LogoPartnerFonts", "EWjLAxnW_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "sQJvSyP0F_default", "pr4KiPQWs_default", "bf1zSVh21_default", "ey7x_AO4P_default", "KvwbDDYhs_default", "EWjLAxnW_default", "css", "FramerwrUAV4eSR", "withCSS", "wrUAV4eSR_default", "addFonts", "LogoTheVergeFonts", "LogoFastCompanyFonts", "LogoOutsideFonts", "LogoMensHealthFonts", "LogoWSJFonts", "LogoPartnerFonts", "TickerFonts"]
}
