{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js", "ssg:https://framerusercontent.com/modules/KdY8OSaR6FM7DFyRkJAN/keUaAqHdAytx17SLVMDo/Dgw9bOaD6.js", "ssg:https://framerusercontent.com/modules/S1clbFqWVD3p9ZvE5mwh/zO947hNe7e4N8c00srM8/kvK3FpllA.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}from\"framer-motion\";import{resize}from\"@motionone/dom\";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;const numChildren=Children.count(slots);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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"S0lfwljnK\",\"Z43HPxyga\",\"O3KiVimO2\",\"C0x1mLtnq\"];const serializationHash=\"framer-hVmpw\";const variantClassNames={C0x1mLtnq:\"framer-v-13ggtwd\",O3KiVimO2:\"framer-v-dyzect\",S0lfwljnK:\"framer-v-1un3z5d\",Z43HPxyga:\"framer-v-1hsn9cs\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==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 humanReadableVariantMap={\"Desktop Icon\":\"O3KiVimO2\",\"Mobile Icon\":\"C0x1mLtnq\",Desktop:\"S0lfwljnK\",Mobile:\"Z43HPxyga\"};const getProps=({height,icon,id,image,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,hPDXsni7y:(_ref=icon!==null&&icon!==void 0?icon:props.hPDXsni7y)!==null&&_ref!==void 0?_ref:\"micro\",qLZmhBfkK:image!==null&&image!==void 0?image:props.qLZmhBfkK,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"S0lfwljnK\",vMhFkomIZ:(_ref2=title!==null&&title!==void 0?title:props.vMhFkomIZ)!==null&&_ref2!==void 0?_ref2:\"DALL-E 2\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vMhFkomIZ,qLZmhBfkK,hPDXsni7y,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"S0lfwljnK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"O3KiVimO2\",\"C0x1mLtnq\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"O3KiVimO2\",\"C0x1mLtnq\"].includes(baseVariant))return true;return false;};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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1un3z5d\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"S0lfwljnK\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({C0x1mLtnq:{\"data-framer-name\":\"Mobile Icon\"},O3KiVimO2:{\"data-framer-name\":\"Desktop Icon\"},Z43HPxyga:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"56px\",...toResponsiveImage(qLZmhBfkK)},className:\"framer-54lxh8\",\"data-framer-name\":\"Logo / OpenAI\",layoutDependency:layoutDependency,layoutId:\"BjjLh2M63\",...addPropertyOverrides({Z43HPxyga:{background:{alt:\"\",fit:\"fill\",sizes:\"32px\",...toResponsiveImage(qLZmhBfkK)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"DALL-E 2\"})}),className:\"framer-1b80rt3\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"X5OwfpgO6\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vMhFkomIZ,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({C0x1mLtnq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"DALL-E 2\"})})},Z43HPxyga:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"DALL-E 2\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l6tmr4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"NNH_lLtmw\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{C0x1mLtnq:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18gf0qy-container\",layoutDependency:layoutDependency,layoutId:\"ECLC5gUte-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62befff8-b7e9-46c2-b6b6-8ca39399946f, rgb(255, 255, 255))\",height:\"100%\",iconSearch:hPDXsni7y,iconSelection:\"House\",id:\"ECLC5gUte\",layoutId:\"ECLC5gUte\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hVmpw.framer-p2tnrs, .framer-hVmpw .framer-p2tnrs { display: block; }\",\".framer-hVmpw.framer-1un3z5d { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 160px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hVmpw .framer-54lxh8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; width: 56px; }\",\".framer-hVmpw .framer-1b80rt3 { flex: none; height: 40px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hVmpw .framer-1l6tmr4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 56px; }\",\".framer-hVmpw .framer-18gf0qy-container { flex: none; height: 32px; position: relative; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hVmpw.framer-1un3z5d, .framer-hVmpw .framer-1l6tmr4 { gap: 0px; } .framer-hVmpw.framer-1un3z5d > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-hVmpw.framer-1un3z5d > :first-child { margin-top: 0px; } .framer-hVmpw.framer-1un3z5d > :last-child { margin-bottom: 0px; } .framer-hVmpw .framer-1l6tmr4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-hVmpw .framer-1l6tmr4 > :first-child { margin-left: 0px; } .framer-hVmpw .framer-1l6tmr4 > :last-child { margin-right: 0px; } }\",\".framer-hVmpw.framer-v-1hsn9cs.framer-1un3z5d, .framer-hVmpw.framer-v-13ggtwd.framer-1un3z5d { gap: 0px; height: 100px; padding: 24px 16px 16px 16px; width: 100px; }\",\".framer-hVmpw.framer-v-1hsn9cs .framer-54lxh8 { height: var(--framer-aspect-ratio-supported, 32px); width: 32px; }\",\".framer-hVmpw.framer-v-1hsn9cs .framer-1b80rt3 { width: 80px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hVmpw.framer-v-1hsn9cs.framer-1un3z5d { gap: 0px; } .framer-hVmpw.framer-v-1hsn9cs.framer-1un3z5d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hVmpw.framer-v-1hsn9cs.framer-1un3z5d > :first-child { margin-top: 0px; } .framer-hVmpw.framer-v-1hsn9cs.framer-1un3z5d > :last-child { margin-bottom: 0px; } }\",\".framer-hVmpw.framer-v-dyzect .framer-1b80rt3 { order: 2; }\",\".framer-hVmpw.framer-v-dyzect .framer-1l6tmr4 { order: 0; }\",\".framer-hVmpw.framer-v-13ggtwd .framer-1b80rt3 { order: 2; width: 80px; }\",\".framer-hVmpw.framer-v-13ggtwd .framer-1l6tmr4 { height: 32px; order: 0; width: 32px; }\",\".framer-hVmpw.framer-v-13ggtwd .framer-18gf0qy-container { height: 24px; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hVmpw.framer-v-13ggtwd.framer-1un3z5d { gap: 0px; } .framer-hVmpw.framer-v-13ggtwd.framer-1un3z5d > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hVmpw.framer-v-13ggtwd.framer-1un3z5d > :first-child { margin-top: 0px; } .framer-hVmpw.framer-v-13ggtwd.framer-1un3z5d > :last-child { margin-bottom: 0px; } }\",'.framer-hVmpw[data-border=\"true\"]::after, .framer-hVmpw [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 160\n * @framerIntrinsicWidth 160\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z43HPxyga\":{\"layout\":[\"fixed\",\"fixed\"]},\"O3KiVimO2\":{\"layout\":[\"fixed\",\"fixed\"]},\"C0x1mLtnq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vMhFkomIZ\":\"title\",\"qLZmhBfkK\":\"image\",\"hPDXsni7y\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDgw9bOaD6=withCSS(Component,css,\"framer-hVmpw\");export default FramerDgw9bOaD6;FramerDgw9bOaD6.displayName=\"APIs\";FramerDgw9bOaD6.defaultProps={height:160,width:160};addPropertyControls(FramerDgw9bOaD6,{variant:{options:[\"S0lfwljnK\",\"Z43HPxyga\",\"O3KiVimO2\",\"C0x1mLtnq\"],optionTitles:[\"Desktop\",\"Mobile\",\"Desktop Icon\",\"Mobile Icon\"],title:\"Variant\",type:ControlType.Enum},vMhFkomIZ:{defaultValue:\"DALL-E 2\",displayTextArea:false,title:\"Title\",type:ControlType.String},qLZmhBfkK:{title:\"Image\",type:ControlType.ResponsiveImage},hPDXsni7y:{defaultValue:\"micro\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"Icon\",type:ControlType.String}});addFonts(FramerDgw9bOaD6,[{explicitInter:true,fonts:[{family:\"Inconsolata\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aR_8lleY2co.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDgw9bOaD6\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"vMhFkomIZ\\\":\\\"title\\\",\\\"qLZmhBfkK\\\":\\\"image\\\",\\\"hPDXsni7y\\\":\\\"icon\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z43HPxyga\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O3KiVimO2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"C0x1mLtnq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"160\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"160\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dgw9bOaD6.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js\";import{withAnalytics_button_homepage_nodes_toggle__all,withAnalytics_button_homepage_nodes_toggle__flow_nodes,withAnalytics_button_homepage_nodes_toggle__integrations,withAnalytics_button_homepage_nodes_toggle__utilities}from\"https://framerusercontent.com/modules/5Iyyv7KTCbtrv1x9cTI9/MG80XoSGPO0OxEMAQimB/Analytics.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/LkvATeYYa9uPmRMWdqha/0lkT4GPGj9oDM9sMH1MM/UFMXOSzu1.js\";import APIs from\"https://framerusercontent.com/modules/KdY8OSaR6FM7DFyRkJAN/keUaAqHdAytx17SLVMDo/Dgw9bOaD6.js\";import Tab,*as TabInfo from\"https://framerusercontent.com/modules/LjK8OxB3aVYpgf3aNUm3/jKYRCzsOFIxrct9fjCIS/oFIKAFfzp.js\";const TabFonts=getFonts(Tab);const TabWithAnalytics_button_homepage_nodes_toggle__flow_nodesWithMappedReactProps1ehzghf=withMappedReactProps(withAnalytics_button_homepage_nodes_toggle__flow_nodes(Tab),TabInfo);const TabWithAnalytics_button_homepage_nodes_toggle__utilitiesWithMappedReactProps1ehzghf=withMappedReactProps(withAnalytics_button_homepage_nodes_toggle__utilities(Tab),TabInfo);const TabWithAnalytics_button_homepage_nodes_toggle__allWithMappedReactProps1ehzghf=withMappedReactProps(withAnalytics_button_homepage_nodes_toggle__all(Tab),TabInfo);const TabWithAnalytics_button_homepage_nodes_toggle__integrationsWithMappedReactProps1ehzghf=withMappedReactProps(withAnalytics_button_homepage_nodes_toggle__integrations(Tab),TabInfo);const APIsFonts=getFonts(APIs);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"mL4C2JamO\",\"YoUPvDqQS\",\"dC38LsnIh\",\"zEh8NfUCV\",\"oImA9wpdi\",\"T3R116ZM0\",\"YYAHZFKg5\",\"Nq9FRjCor\"];const serializationHash=\"framer-sQL2o\";const variantClassNames={dC38LsnIh:\"framer-v-vrye3\",mL4C2JamO:\"framer-v-1a55iqw\",Nq9FRjCor:\"framer-v-904v3o\",oImA9wpdi:\"framer-v-eazpen\",T3R116ZM0:\"framer-v-8ybcul\",YoUPvDqQS:\"framer-v-11vcd39\",YYAHZFKg5:\"framer-v-9n31uz\",zEh8NfUCV:\"framer-v-zzh3rk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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(React.Fragment);const humanReadableVariantMap={\"AI Models - Mobile\":\"YYAHZFKg5\",\"AI Models\":\"dC38LsnIh\",\"Flow Nodes - Mobile\":\"oImA9wpdi\",\"Flow Nodes\":\"mL4C2JamO\",\"Integrations - Mobile\":\"Nq9FRjCor\",\"Utilities - Mobile\":\"T3R116ZM0\",Integrations:\"zEh8NfUCV\",Utilities:\"YoUPvDqQS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mL4C2JamO\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mL4C2JamO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1bd5pb3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YoUPvDqQS\"),4e3);});const onAppear1ch9gcq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"dC38LsnIh\"),4e3);});const onAppear1pmi900=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zEh8NfUCV\"),4e3);});const onAppear16hqrsm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"mL4C2JamO\"),4e3);});const onAppear1ri1x37=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"T3R116ZM0\"),4e3);});const onAppear1vyg48u=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YYAHZFKg5\"),4e3);});const onAppear1jhu4k1=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Nq9FRjCor\"),4e3);});const onAppearc2ywk3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"oImA9wpdi\"),4e3);});const VrNk23cEGxuwh8z=activeVariantCallback(async(...args)=>{setVariant(\"mL4C2JamO\");});const VrNk23cEGital02=activeVariantCallback(async(...args)=>{setVariant(\"oImA9wpdi\");});const VrNk23cEG1ustvi8=activeVariantCallback(async(...args)=>{setVariant(\"YoUPvDqQS\");});const VrNk23cEG1vlrig4=activeVariantCallback(async(...args)=>{setVariant(\"T3R116ZM0\");});const VrNk23cEG1mwmmys=activeVariantCallback(async(...args)=>{setVariant(\"dC38LsnIh\");});const VrNk23cEGita1mp=activeVariantCallback(async(...args)=>{setVariant(\"YYAHZFKg5\");});const VrNk23cEG4e7099=activeVariantCallback(async(...args)=>{setVariant(\"zEh8NfUCV\");});const VrNk23cEG19iqaic=activeVariantCallback(async(...args)=>{setVariant(\"Nq9FRjCor\");});useOnVariantChange(baseVariant,{dC38LsnIh:onAppear1pmi900,default:onAppear1bd5pb3,Nq9FRjCor:onAppearc2ywk3,oImA9wpdi:onAppear1ri1x37,T3R116ZM0:onAppear1vyg48u,YoUPvDqQS:onAppear1ch9gcq,YYAHZFKg5:onAppear1jhu4k1,zEh8NfUCV:onAppear16hqrsm});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"dC38LsnIh\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"Nq9FRjCor\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"YYAHZFKg5\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"T3R116ZM0\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"oImA9wpdi\")return true;return false;};const isDisplayed5=()=>{if([\"YoUPvDqQS\",\"dC38LsnIh\",\"zEh8NfUCV\",\"oImA9wpdi\",\"T3R116ZM0\",\"YYAHZFKg5\",\"Nq9FRjCor\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"zEh8NfUCV\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"YoUPvDqQS\")return true;return false;};const isDisplayed8=()=>{if([\"oImA9wpdi\",\"T3R116ZM0\",\"YYAHZFKg5\",\"Nq9FRjCor\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({Nq9FRjCor:{value:transition2},oImA9wpdi:{value:transition2},T3R116ZM0:{value:transition2},YYAHZFKg5:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1a55iqw\",className,classNames),\"data-framer-name\":\"Flow Nodes\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mL4C2JamO\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{...style},...addPropertyOverrides({dC38LsnIh:{\"data-framer-name\":\"AI Models\"},Nq9FRjCor:{\"data-framer-name\":\"Integrations - Mobile\"},oImA9wpdi:{\"data-framer-name\":\"Flow Nodes - Mobile\"},T3R116ZM0:{\"data-framer-name\":\"Utilities - Mobile\"},YoUPvDqQS:{\"data-framer-name\":\"Utilities\"},YYAHZFKg5:{\"data-framer-name\":\"AI Models - Mobile\"},zEh8NfUCV:{\"data-framer-name\":\"Integrations\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vi41ej\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"tWb_V_Pws\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1toq89b-container\",layoutDependency:layoutDependency,layoutId:\"tP8vGYLzw-container\",children:/*#__PURE__*/_jsx(TabWithAnalytics_button_homepage_nodes_toggle__flow_nodesWithMappedReactProps1ehzghf,{fsiuQADKW:\"wand\",g0KG8yv3o:\"House\",height:\"100%\",id:\"tP8vGYLzw\",layoutId:\"tP8vGYLzw\",variant:\"C8PqHFngF\",VrNk23cEG:VrNk23cEGxuwh8z,width:\"100%\",Zgo3H2FPa:\"Flow nodes\",...addPropertyOverrides({dC38LsnIh:{variant:\"NZsjP3YPb\"},Nq9FRjCor:{fsiuQADKW:\"flow-arrow\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEGital02},oImA9wpdi:{fsiuQADKW:\"flow-arrow\",variant:\"VconxRfrV\",VrNk23cEG:VrNk23cEGital02},T3R116ZM0:{fsiuQADKW:\"flow-arrow\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEGital02},YoUPvDqQS:{variant:\"NZsjP3YPb\"},YYAHZFKg5:{fsiuQADKW:\"flow-arrow\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEGital02},zEh8NfUCV:{variant:\"NZsjP3YPb\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fkybx7-container\",layoutDependency:layoutDependency,layoutId:\"EvLDZEo4z-container\",children:/*#__PURE__*/_jsx(TabWithAnalytics_button_homepage_nodes_toggle__utilitiesWithMappedReactProps1ehzghf,{fsiuQADKW:\"wand\",g0KG8yv3o:\"House\",height:\"100%\",id:\"EvLDZEo4z\",layoutId:\"EvLDZEo4z\",variant:\"NZsjP3YPb\",VrNk23cEG:VrNk23cEG1ustvi8,width:\"100%\",Zgo3H2FPa:\"Utilities\",...addPropertyOverrides({Nq9FRjCor:{fsiuQADKW:\"compass-tool\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEG1vlrig4},oImA9wpdi:{fsiuQADKW:\"compass-tool\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEG1vlrig4},T3R116ZM0:{fsiuQADKW:\"compass-tool\",variant:\"VconxRfrV\",VrNk23cEG:VrNk23cEG1vlrig4},YoUPvDqQS:{variant:\"C8PqHFngF\"},YYAHZFKg5:{fsiuQADKW:\"compass-tool\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEG1vlrig4}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h5ai29-container\",layoutDependency:layoutDependency,layoutId:\"Abd7_JNoU-container\",children:/*#__PURE__*/_jsx(TabWithAnalytics_button_homepage_nodes_toggle__allWithMappedReactProps1ehzghf,{fsiuQADKW:\"wand\",g0KG8yv3o:\"House\",height:\"100%\",id:\"Abd7_JNoU\",layoutId:\"Abd7_JNoU\",variant:\"NZsjP3YPb\",VrNk23cEG:VrNk23cEG1mwmmys,width:\"100%\",Zgo3H2FPa:\"AI models\",...addPropertyOverrides({dC38LsnIh:{variant:\"C8PqHFngF\"},Nq9FRjCor:{variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEGita1mp},oImA9wpdi:{variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEGita1mp},T3R116ZM0:{variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEGita1mp},YYAHZFKg5:{variant:\"VconxRfrV\",VrNk23cEG:VrNk23cEGita1mp}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jnqyfd-container\",layoutDependency:layoutDependency,layoutId:\"yjYn_7KqF-container\",children:/*#__PURE__*/_jsx(TabWithAnalytics_button_homepage_nodes_toggle__integrationsWithMappedReactProps1ehzghf,{fsiuQADKW:\"wand\",g0KG8yv3o:\"House\",height:\"100%\",id:\"yjYn_7KqF\",layoutId:\"yjYn_7KqF\",variant:\"NZsjP3YPb\",VrNk23cEG:VrNk23cEG4e7099,width:\"100%\",Zgo3H2FPa:\"Integrations\",...addPropertyOverrides({Nq9FRjCor:{fsiuQADKW:\"puzzle\",variant:\"VconxRfrV\",VrNk23cEG:VrNk23cEG19iqaic},oImA9wpdi:{fsiuQADKW:\"puzzle\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEG19iqaic},T3R116ZM0:{fsiuQADKW:\"puzzle\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEG19iqaic},YYAHZFKg5:{fsiuQADKW:\"puzzle\",variant:\"HEtoAAZwm\",VrNk23cEG:VrNk23cEG19iqaic},zEh8NfUCV:{variant:\"C8PqHFngF\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16rglze-container\",layoutDependency:layoutDependency,layoutId:\"HEjJny4vE-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"HEjJny4vE\",layoutId:\"HEjJny4vE\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wh7eis\",\"data-framer-name\":\"AI Models\",layoutDependency:layoutDependency,layoutId:\"lfvmF6cRG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y4kx26-container\",layoutDependency:layoutDependency,layoutId:\"I1FaHOzbi-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"I1FaHOzbi\",layoutId:\"I1FaHOzbi\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/sGvMqytQhVEdr7fPF8q8HRHMOqA.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Leap AI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18z3otu-container\",layoutDependency:layoutDependency,layoutId:\"RoLOkYI4D-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"RoLOkYI4D\",layoutId:\"RoLOkYI4D\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/wHOSr9pzXyIHfqXgfYXIAiZGbT8.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Synthesia\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vup3f9-container\",layoutDependency:layoutDependency,layoutId:\"t7AL7QoKt-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"t7AL7QoKt\",layoutId:\"t7AL7QoKt\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/PRS8daO0IglUjbApLiptt9JyTXM.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"DALL-E 2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1knphm-container\",layoutDependency:layoutDependency,layoutId:\"dTLiY3j_q-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"dTLiY3j_q\",layoutId:\"dTLiY3j_q\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/fYzVFwklvGx7v4cUyxhkdxGkA48.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Hugging Face\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13zp2rn-container\",layoutDependency:layoutDependency,layoutId:\"rznot4gLg-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"rznot4gLg\",layoutId:\"rznot4gLg\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/ZFRbCligrhfLIMicxs7xc8f07M.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Replicate\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xq1rjy-container\",layoutDependency:layoutDependency,layoutId:\"j_8fRftG6-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"j_8fRftG6\",layoutId:\"j_8fRftG6\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/OBPtqEb4uMJ9cvzObSvh8qMjeVo.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Stability AI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xu7okp-container\",layoutDependency:layoutDependency,layoutId:\"oXQzZjuCK-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"oXQzZjuCK\",layoutId:\"oXQzZjuCK\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/m679oGyZ0P0A6DkR793kRRcDI.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Google Vertex AI\",width:\"100%\"})})})]})],speed:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-onoqs5\",\"data-framer-name\":\"Integration - mobile\",layoutDependency:layoutDependency,layoutId:\"PGfZ8PhTu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nq9FRjCor:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1zbran-container\",layoutDependency:layoutDependency,layoutId:\"SyocoJcLo-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"SyocoJcLo\",layoutId:\"SyocoJcLo\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/MpN5p2EGubJVf72mv8u6ZMS9LM.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"Z43HPxyga\",vMhFkomIZ:\"Postgres\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nq9FRjCor:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-n560mv-container\",layoutDependency:layoutDependency,layoutId:\"p6HZaFPhw-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"p6HZaFPhw\",layoutId:\"p6HZaFPhw\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/uTncfuuMyEqKWaeMtR2JF7p9jH4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"Z43HPxyga\",vMhFkomIZ:\"Firebase\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nq9FRjCor:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6g7e7d-container\",layoutDependency:layoutDependency,layoutId:\"RfqOab8jK-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"RfqOab8jK\",layoutId:\"RfqOab8jK\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/Y15prbvuTUT8bpBN33tDaPZ9cBo.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"Z43HPxyga\",vMhFkomIZ:\"Stripe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nq9FRjCor:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yv82s2-container\",layoutDependency:layoutDependency,layoutId:\"R_TmTvYvO-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"R_TmTvYvO\",layoutId:\"R_TmTvYvO\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/o7n0omyXaatMq8rxEm5bEis56Y.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"Z43HPxyga\",vMhFkomIZ:\"Slack\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nq9FRjCor:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ihxtf-container\",layoutDependency:layoutDependency,layoutId:\"T53QkG26E-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"T53QkG26E\",layoutId:\"T53QkG26E\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/MxbLqkDHpFbmFfvPt4pv3eyNWwg.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"Z43HPxyga\",vMhFkomIZ:\"Discord\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nq9FRjCor:{width:\"100px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v40zkx-container\",layoutDependency:layoutDependency,layoutId:\"ISFaalwcF-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"ISFaalwcF\",layoutId:\"ISFaalwcF\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"Z43HPxyga\",vMhFkomIZ:\"GitHub\",width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rg41dr\",\"data-framer-name\":\"AI Models - mobile\",layoutDependency:layoutDependency,layoutId:\"odFvLnhiz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fvmx53-container\",layoutDependency:layoutDependency,layoutId:\"KTAS3rl30-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"KTAS3rl30\",layoutId:\"KTAS3rl30\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/sGvMqytQhVEdr7fPF8q8HRHMOqA.svg\"},\"\"),variant:\"Z43HPxyga\",vMhFkomIZ:\"Leap AI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10zkgbk-container\",layoutDependency:layoutDependency,layoutId:\"ZnxUGVL4M-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"ZnxUGVL4M\",layoutId:\"ZnxUGVL4M\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/fYzVFwklvGx7v4cUyxhkdxGkA48.svg\"},\"\"),variant:\"Z43HPxyga\",vMhFkomIZ:\"Hugging Face\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7qtsxu-container\",layoutDependency:layoutDependency,layoutId:\"Zr5FsgJcU-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"Zr5FsgJcU\",layoutId:\"Zr5FsgJcU\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/wHOSr9pzXyIHfqXgfYXIAiZGbT8.png\"},\"\"),variant:\"Z43HPxyga\",vMhFkomIZ:\"Synthesia\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jj0sta-container\",layoutDependency:layoutDependency,layoutId:\"YrOfBjvby-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"YrOfBjvby\",layoutId:\"YrOfBjvby\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/ZFRbCligrhfLIMicxs7xc8f07M.svg\"},\"\"),variant:\"Z43HPxyga\",vMhFkomIZ:\"Replicate\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2fm7gq-container\",layoutDependency:layoutDependency,layoutId:\"ZSyJpyYgo-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"ZSyJpyYgo\",layoutId:\"ZSyJpyYgo\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/PRS8daO0IglUjbApLiptt9JyTXM.svg\"},\"\"),variant:\"Z43HPxyga\",vMhFkomIZ:\"DALL-E 2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-px3nhk-container\",layoutDependency:layoutDependency,layoutId:\"EQNbZlH86-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"EQNbZlH86\",layoutId:\"EQNbZlH86\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/OBPtqEb4uMJ9cvzObSvh8qMjeVo.svg\"},\"\"),variant:\"Z43HPxyga\",vMhFkomIZ:\"Stability AI\",width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yul9bt\",\"data-framer-name\":\"Utilities - mobile\",layoutDependency:layoutDependency,layoutId:\"zLWFOSLn7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y1muv6-container\",layoutDependency:layoutDependency,layoutId:\"irVrzOwWs-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"irVrzOwWs\",layoutId:\"irVrzOwWs\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),variant:\"C0x1mLtnq\",vMhFkomIZ:\"Extract audio\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8txzze-container\",layoutDependency:layoutDependency,layoutId:\"n9gL4_AGz-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"pdf\",id:\"n9gL4_AGz\",layoutId:\"n9gL4_AGz\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),variant:\"C0x1mLtnq\",vMhFkomIZ:\"Generate PDF\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uighcr-container\",layoutDependency:layoutDependency,layoutId:\"FDwfVcbnJ-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"speakerhigh\",id:\"FDwfVcbnJ\",layoutId:\"FDwfVcbnJ\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),variant:\"C0x1mLtnq\",vMhFkomIZ:\"Text-to-Speech\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wbh458-container\",layoutDependency:layoutDependency,layoutId:\"ZFGLHo2PQ-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"download-simple\",id:\"ZFGLHo2PQ\",layoutId:\"ZFGLHo2PQ\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),variant:\"C0x1mLtnq\",vMhFkomIZ:\"Save Base64\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1al9gs4-container\",layoutDependency:layoutDependency,layoutId:\"QgrLsZhpG-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"code\",id:\"QgrLsZhpG\",layoutId:\"QgrLsZhpG\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),variant:\"C0x1mLtnq\",vMhFkomIZ:\"Parse JSON\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bcxqvg-container\",layoutDependency:layoutDependency,layoutId:\"fKf3RXNtj-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"zip\",id:\"fKf3RXNtj\",layoutId:\"fKf3RXNtj\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),variant:\"C0x1mLtnq\",vMhFkomIZ:\"ZIP folder\",width:\"100%\"})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13yizq9\",\"data-framer-name\":\"Flow Nodes - mobile\",layoutDependency:layoutDependency,layoutId:\"aVZ522xw0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fs14tu\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"ZkKvO3zU9\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xbtztg\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"sZ72qRihr\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x1e79t\",\"data-framer-name\":\"icon/plug\",layoutDependency:layoutDependency,layoutId:\"g3Rp3gX8E\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ytvr6t\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"PhmojeNVW\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.716 4.14053C17.6265 4.05066 17.52 3.97935 17.4028 3.9307C17.2856 3.88204 17.16 3.85699 17.0331 3.85699C16.9062 3.85699 16.7806 3.88204 16.6634 3.9307C16.5462 3.97935 16.4397 4.05066 16.3502 4.14053L13.8201 6.67028L11.3294 4.1799L13.8619 1.64854C14.043 1.46744 14.1448 1.22181 14.1448 0.965693C14.1448 0.709575 14.043 0.463947 13.8619 0.282845C13.6808 0.101742 13.4351 0 13.179 0C12.9228 0 12.6772 0.101742 12.496 0.282845L9.96359 2.8142L8.07469 0.927132C7.985 0.837459 7.87853 0.766327 7.76136 0.717796C7.64418 0.669265 7.51859 0.644287 7.39176 0.644287C7.13561 0.644287 6.88995 0.746029 6.70883 0.927132C6.52771 1.10823 6.42595 1.35386 6.42595 1.60998C6.42595 1.8661 6.52771 2.11172 6.70883 2.29283L6.99084 2.5732L2.96478 6.6012C2.63645 6.92943 2.37601 7.31912 2.19832 7.74801C2.02063 8.1769 1.92917 8.63659 1.92917 9.10082C1.92917 9.56505 2.02063 10.0247 2.19832 10.4536C2.37601 10.8825 2.63645 11.2722 2.96478 11.6004L3.99961 12.6352L0.282878 16.3515C0.193195 16.4411 0.122054 16.5476 0.0735176 16.6648C0.0249813 16.7819 0 16.9075 0 17.0343C0 17.1611 0.0249813 17.2867 0.0735176 17.4039C0.122054 17.521 0.193195 17.6275 0.282878 17.7172C0.464002 17.8983 0.709658 18 0.965806 18C1.09264 18 1.21823 17.975 1.3354 17.9265C1.45258 17.878 1.55905 17.8068 1.64873 17.7172L5.36547 14.0009L6.40031 15.0356C6.72858 15.3639 7.11832 15.6243 7.54726 15.8019C7.9762 15.9796 8.43594 16.0711 8.90023 16.0711C9.36451 16.0711 9.82425 15.9796 10.2532 15.8019C10.6821 15.6243 11.0719 15.3639 11.4001 15.0356L15.427 11.0084L15.709 11.2912C15.7987 11.3808 15.9052 11.452 16.0224 11.5005C16.1395 11.549 16.2651 11.574 16.3919 11.574C16.5188 11.574 16.6444 11.549 16.7615 11.5005C16.8787 11.452 16.9852 11.3808 17.0749 11.2912C17.1646 11.2015 17.2357 11.095 17.2842 10.9779C17.3328 10.8607 17.3578 10.7351 17.3578 10.6083C17.3578 10.4815 17.3328 10.3559 17.2842 10.2388C17.2357 10.1216 17.1646 10.0151 17.0749 9.92546L15.186 8.03598L17.7184 5.50462C17.8079 5.41493 17.8788 5.30849 17.9272 5.19137C17.9755 5.07425 18.0002 4.94877 18 4.82208C17.9998 4.69539 17.9746 4.56999 17.9259 4.45305C17.8771 4.3361 17.8058 4.22991 17.716 4.14053ZM10.0351 13.6707C9.88587 13.8199 9.7087 13.9384 9.5137 14.0191C9.3187 14.0999 9.10969 14.1415 8.89862 14.1415C8.68754 14.1415 8.47854 14.0999 8.28354 14.0191C8.08854 13.9384 7.91137 13.8199 7.76215 13.6707L4.32822 10.2372C4.17894 10.088 4.06052 9.9108 3.97973 9.71583C3.89893 9.52085 3.85735 9.31187 3.85735 9.10082C3.85735 8.88977 3.89893 8.68079 3.97973 8.48581C4.06052 8.29084 4.17894 8.11369 4.32822 7.96448L8.3567 3.93889L14.0612 9.64268L10.0351 13.6707Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"API Call\"})}),className:\"framer-18hgb2q\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"nd9d3GSt2\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c7ub74\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"H8sXaKwXp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rsfntv\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"VH4i77Jmg\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s09hcg\",\"data-framer-name\":\"icon/script\",layoutDependency:layoutDependency,layoutId:\"pkKSDLT7f\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wg81v9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"yKw8myM9l\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.37547 14.781L6.62547 13.219L2.60147 9.99998L6.62547 6.78098L5.37547 5.21898L0.375469 9.21898C0.258315 9.31267 0.163737 9.4315 0.0987422 9.5667C0.0337473 9.70189 0 9.84998 0 9.99998C0 10.15 0.0337473 10.2981 0.0987422 10.4333C0.163737 10.5685 0.258315 10.6873 0.375469 10.781L5.37547 14.781ZM14.6255 5.21898L13.3755 6.78098L17.3995 9.99998L13.3755 13.219L14.6255 14.781L19.6255 10.781C19.7426 10.6873 19.8372 10.5685 19.9022 10.4333C19.9672 10.2981 20.0009 10.15 20.0009 9.99998C20.0009 9.84998 19.9672 9.70189 19.9022 9.5667C19.8372 9.4315 19.7426 9.31267 19.6255 9.21898L14.6255 5.21898ZM12.9765 1.21598L8.97647 19.216L7.02347 18.782L11.0235 0.781982L12.9765 1.21598Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Script\"})}),className:\"framer-1ureudb\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"NmgE5pRod\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fmanr9\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"HJGFhAS8d\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17i4ghd\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"dcSHZRuEp\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kzdf0y\",\"data-framer-name\":\"icon/if-else\",layoutDependency:layoutDependency,layoutId:\"Qo9jdSum8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1shx2tp\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"PQlF_2dFd\",svg:'<svg width=\"18\" height=\"20\" viewBox=\"0 0 18 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 0V5C10 6.32948 10.3274 6.91318 10.6446 7.23039C11.0123 7.59812 11.5243 7.78732 12.3162 8.05132L12.389 8.07554C13.0908 8.30887 14.038 8.62374 14.7696 9.35539C15.5774 10.1632 16 11.3295 16 13H14C14 11.6705 13.6726 11.0868 13.3554 10.7696C12.9877 10.4019 12.4757 10.2127 11.6838 9.94868L11.611 9.92446C10.9092 9.69113 9.96205 9.37626 9.23039 8.64461C9.14974 8.56396 9.07293 8.47973 9 8.39179C8.92707 8.47973 8.85026 8.56396 8.76961 8.64461C8.03795 9.37626 7.09085 9.69113 6.38903 9.92446L6.31623 9.94868C5.52425 10.2127 5.01233 10.4019 4.64461 10.7696C4.3274 11.0868 4 11.6705 4 13H2C2 11.3295 2.4226 10.1632 3.23039 9.35539C3.96205 8.62374 4.90915 8.30887 5.61096 8.07554L5.68377 8.05132C6.47575 7.78732 6.98767 7.59812 7.35539 7.23039C7.6726 6.91318 8 6.32948 8 5V0H10ZM15 18C15.5523 18 16 17.5523 16 17C16 16.4477 15.5523 16 15 16C14.4477 16 14 16.4477 14 17C14 17.5523 14.4477 18 15 18ZM15 20C16.6569 20 18 18.6569 18 17C18 15.3431 16.6569 14 15 14C13.3431 14 12 15.3431 12 17C12 18.6569 13.3431 20 15 20ZM4 17C4 17.5523 3.55228 18 3 18C2.44772 18 2 17.5523 2 17C2 16.4477 2.44772 16 3 16C3.55228 16 4 16.4477 4 17ZM6 17C6 18.6569 4.65685 20 3 20C1.34315 20 0 18.6569 0 17C0 15.3431 1.34315 14 3 14C4.65685 14 6 15.3431 6 17Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Branch\"})}),className:\"framer-1g2z9xk\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"NQVhbJKpC\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dwxc2s\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"v7Zk7I_na\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ohkzie\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"GE0Mr1efC\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k36zyn\",\"data-framer-name\":\"icon/loop\",layoutDependency:layoutDependency,layoutId:\"JcCosr6Wy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wv1tbv\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"qmOEYwaNA\",svg:'<svg width=\"18\" height=\"15\" viewBox=\"0 0 18 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 8L10 4L6 0V3H0V15H18V3H12.25V5H16V13H2V5H6V8Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Loop\"})}),className:\"framer-heots5\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"rOwmsq79L\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18vbq0d\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"UkMyxb2jt\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-167at31\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"bxwZxBXVF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-28ts60\",\"data-framer-name\":\"icon/return\",layoutDependency:layoutDependency,layoutId:\"RTKU8e6Ce\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-veu2ql\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"xJQB2TeIP\",svg:'<svg width=\"19\" height=\"15\" viewBox=\"0 0 19 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 0H13V2H17V8H3.83L7.41 4.41L6 3L0 9L6 15L7.41 13.59L3.83 10H19V0Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Return\"})}),className:\"framer-hori4l\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"W4fxoaEqW\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rbhaoh\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"vDnZbxHYY\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ufxt9\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"e5s9irEfQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vpszwp\",\"data-framer-name\":\"icon/switch\",layoutDependency:layoutDependency,layoutId:\"gRLPfNX8u\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-13hw86y\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"ve5yl3HvF\",svg:'<svg width=\"18\" height=\"22\" viewBox=\"-1 -1 18 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8.70156L2 10C2 12.2925 2.67852 13.7176 3.75824 14.601C4.87742 15.5167 6.60623 16 9 16V18C6.39377 18 4.12258 17.4833 2.49176 16.149C0.821479 14.7824 0 12.7075 0 10V3V0H2L2 3L2 3.00394C2.00078 5.29413 2.67914 6.71814 3.75824 7.60104C4.87742 8.51674 6.60623 9 9 9V11C6.39377 11 4.12258 10.4833 2.49176 9.14896C2.31874 9.0074 2.15483 8.85824 2 8.70156ZM13 11C13.5523 11 14 10.5523 14 10C14 9.44772 13.5523 9 13 9C12.4477 9 12 9.44772 12 10C12 10.5523 12.4477 11 13 11ZM13 13C14.6569 13 16 11.6569 16 10C16 8.34315 14.6569 7 13 7C11.3431 7 10 8.34315 10 10C10 11.6569 11.3431 13 13 13ZM14 17C14 17.5523 13.5523 18 13 18C12.4477 18 12 17.5523 12 17C12 16.4477 12.4477 16 13 16C13.5523 16 14 16.4477 14 17ZM16 17C16 18.6569 14.6569 20 13 20C11.3431 20 10 18.6569 10 17C10 15.3431 11.3431 14 13 14C14.6569 14 16 15.3431 16 17Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Switch\"})}),className:\"framer-1est5sv\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"khKzRofIO\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o8v69y-container\",layoutDependency:layoutDependency,layoutId:\"VOEpMvtHe-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"VOEpMvtHe\",layoutId:\"VOEpMvtHe\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hbtb5a\",\"data-framer-name\":\"Flow\",layoutDependency:layoutDependency,layoutId:\"oxOGzexcg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1591cx9\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"KyVdMnHF2\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3g8jag\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"SqUqxfqF4\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11uf7u9\",\"data-framer-name\":\"icon/plug\",layoutDependency:layoutDependency,layoutId:\"IaptakbcL\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1pilncl\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"DKpm5PDh9\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.716 4.14053C17.6265 4.05066 17.52 3.97935 17.4028 3.9307C17.2856 3.88204 17.16 3.85699 17.0331 3.85699C16.9062 3.85699 16.7806 3.88204 16.6634 3.9307C16.5462 3.97935 16.4397 4.05066 16.3502 4.14053L13.8201 6.67028L11.3294 4.1799L13.8619 1.64854C14.043 1.46744 14.1448 1.22181 14.1448 0.965693C14.1448 0.709575 14.043 0.463947 13.8619 0.282845C13.6808 0.101742 13.4351 0 13.179 0C12.9228 0 12.6772 0.101742 12.496 0.282845L9.96359 2.8142L8.07469 0.927132C7.985 0.837459 7.87853 0.766327 7.76136 0.717796C7.64418 0.669265 7.51859 0.644287 7.39176 0.644287C7.13561 0.644287 6.88995 0.746029 6.70883 0.927132C6.52771 1.10823 6.42595 1.35386 6.42595 1.60998C6.42595 1.8661 6.52771 2.11172 6.70883 2.29283L6.99084 2.5732L2.96478 6.6012C2.63645 6.92943 2.37601 7.31912 2.19832 7.74801C2.02063 8.1769 1.92917 8.63659 1.92917 9.10082C1.92917 9.56505 2.02063 10.0247 2.19832 10.4536C2.37601 10.8825 2.63645 11.2722 2.96478 11.6004L3.99961 12.6352L0.282878 16.3515C0.193195 16.4411 0.122054 16.5476 0.0735176 16.6648C0.0249813 16.7819 0 16.9075 0 17.0343C0 17.1611 0.0249813 17.2867 0.0735176 17.4039C0.122054 17.521 0.193195 17.6275 0.282878 17.7172C0.464002 17.8983 0.709658 18 0.965806 18C1.09264 18 1.21823 17.975 1.3354 17.9265C1.45258 17.878 1.55905 17.8068 1.64873 17.7172L5.36547 14.0009L6.40031 15.0356C6.72858 15.3639 7.11832 15.6243 7.54726 15.8019C7.9762 15.9796 8.43594 16.0711 8.90023 16.0711C9.36451 16.0711 9.82425 15.9796 10.2532 15.8019C10.6821 15.6243 11.0719 15.3639 11.4001 15.0356L15.427 11.0084L15.709 11.2912C15.7987 11.3808 15.9052 11.452 16.0224 11.5005C16.1395 11.549 16.2651 11.574 16.3919 11.574C16.5188 11.574 16.6444 11.549 16.7615 11.5005C16.8787 11.452 16.9852 11.3808 17.0749 11.2912C17.1646 11.2015 17.2357 11.095 17.2842 10.9779C17.3328 10.8607 17.3578 10.7351 17.3578 10.6083C17.3578 10.4815 17.3328 10.3559 17.2842 10.2388C17.2357 10.1216 17.1646 10.0151 17.0749 9.92546L15.186 8.03598L17.7184 5.50462C17.8079 5.41493 17.8788 5.30849 17.9272 5.19137C17.9755 5.07425 18.0002 4.94877 18 4.82208C17.9998 4.69539 17.9746 4.56999 17.9259 4.45305C17.8771 4.3361 17.8058 4.22991 17.716 4.14053ZM10.0351 13.6707C9.88587 13.8199 9.7087 13.9384 9.5137 14.0191C9.3187 14.0999 9.10969 14.1415 8.89862 14.1415C8.68754 14.1415 8.47854 14.0999 8.28354 14.0191C8.08854 13.9384 7.91137 13.8199 7.76215 13.6707L4.32822 10.2372C4.17894 10.088 4.06052 9.9108 3.97973 9.71583C3.89893 9.52085 3.85735 9.31187 3.85735 9.10082C3.85735 8.88977 3.89893 8.68079 3.97973 8.48581C4.06052 8.29084 4.17894 8.11369 4.32822 7.96448L8.3567 3.93889L14.0612 9.64268L10.0351 13.6707Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"API Call\"})}),className:\"framer-7f7v7s\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"PSfPZnl_K\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e68783\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"u0nwSETlr\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n2cqn8\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"kWFbEmN5O\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11i3dzu\",\"data-framer-name\":\"icon/script\",layoutDependency:layoutDependency,layoutId:\"niVCl1hHi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6z4fbz\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"CyHDuYG1s\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.37547 14.781L6.62547 13.219L2.60147 9.99998L6.62547 6.78098L5.37547 5.21898L0.375469 9.21898C0.258315 9.31267 0.163737 9.4315 0.0987422 9.5667C0.0337473 9.70189 0 9.84998 0 9.99998C0 10.15 0.0337473 10.2981 0.0987422 10.4333C0.163737 10.5685 0.258315 10.6873 0.375469 10.781L5.37547 14.781ZM14.6255 5.21898L13.3755 6.78098L17.3995 9.99998L13.3755 13.219L14.6255 14.781L19.6255 10.781C19.7426 10.6873 19.8372 10.5685 19.9022 10.4333C19.9672 10.2981 20.0009 10.15 20.0009 9.99998C20.0009 9.84998 19.9672 9.70189 19.9022 9.5667C19.8372 9.4315 19.7426 9.31267 19.6255 9.21898L14.6255 5.21898ZM12.9765 1.21598L8.97647 19.216L7.02347 18.782L11.0235 0.781982L12.9765 1.21598Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Script\"})}),className:\"framer-qurlha\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"cmdmqzxKu\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pumr5m\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"uYFzVoFNP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kevnv2\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"lVfAm9ENO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y8t1fb\",\"data-framer-name\":\"icon/if-else\",layoutDependency:layoutDependency,layoutId:\"sidz7L6vD\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qxkzcq\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"bVfxKxUQS\",svg:'<svg width=\"18\" height=\"20\" viewBox=\"0 0 18 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 0V5C10 6.32948 10.3274 6.91318 10.6446 7.23039C11.0123 7.59812 11.5243 7.78732 12.3162 8.05132L12.389 8.07554C13.0908 8.30887 14.038 8.62374 14.7696 9.35539C15.5774 10.1632 16 11.3295 16 13H14C14 11.6705 13.6726 11.0868 13.3554 10.7696C12.9877 10.4019 12.4757 10.2127 11.6838 9.94868L11.611 9.92446C10.9092 9.69113 9.96205 9.37626 9.23039 8.64461C9.14974 8.56396 9.07293 8.47973 9 8.39179C8.92707 8.47973 8.85026 8.56396 8.76961 8.64461C8.03795 9.37626 7.09085 9.69113 6.38903 9.92446L6.31623 9.94868C5.52425 10.2127 5.01233 10.4019 4.64461 10.7696C4.3274 11.0868 4 11.6705 4 13H2C2 11.3295 2.4226 10.1632 3.23039 9.35539C3.96205 8.62374 4.90915 8.30887 5.61096 8.07554L5.68377 8.05132C6.47575 7.78732 6.98767 7.59812 7.35539 7.23039C7.6726 6.91318 8 6.32948 8 5V0H10ZM15 18C15.5523 18 16 17.5523 16 17C16 16.4477 15.5523 16 15 16C14.4477 16 14 16.4477 14 17C14 17.5523 14.4477 18 15 18ZM15 20C16.6569 20 18 18.6569 18 17C18 15.3431 16.6569 14 15 14C13.3431 14 12 15.3431 12 17C12 18.6569 13.3431 20 15 20ZM4 17C4 17.5523 3.55228 18 3 18C2.44772 18 2 17.5523 2 17C2 16.4477 2.44772 16 3 16C3.55228 16 4 16.4477 4 17ZM6 17C6 18.6569 4.65685 20 3 20C1.34315 20 0 18.6569 0 17C0 15.3431 1.34315 14 3 14C4.65685 14 6 15.3431 6 17Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Branch\"})}),className:\"framer-166hdc4\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"UIKXIhahh\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b9678t\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"NSaRJfIUT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-t6271f\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"rkOBeb0zl\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17d6n2y\",\"data-framer-name\":\"icon/loop\",layoutDependency:layoutDependency,layoutId:\"zz6wJQEVr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t73xbh\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"lhMzGjy7R\",svg:'<svg width=\"18\" height=\"15\" viewBox=\"0 0 18 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 8L10 4L6 0V3H0V15H18V3H12.25V5H16V13H2V5H6V8Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Loop\"})}),className:\"framer-k2pgrz\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"I4WH0uN9P\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xfw59o\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"JLKu2uD6e\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fnlme4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"bAnGZV73f\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wo8d4c\",\"data-framer-name\":\"icon/return\",layoutDependency:layoutDependency,layoutId:\"YSZzgMfMu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tw2d5s\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:15,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"n_8s9hB9o\",svg:'<svg width=\"19\" height=\"15\" viewBox=\"0 0 19 15\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M19 0H13V2H17V8H3.83L7.41 4.41L6 3L0 9L6 15L7.41 13.59L3.83 10H19V0Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Return\"})}),className:\"framer-1wjkjae\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"sCU_WQuxK\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rtiufc\",\"data-border\":true,\"data-framer-name\":\"APIs\",layoutDependency:layoutDependency,layoutId:\"FmK0HlKdV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4bd911e4-8cc1-4d49-baab-1718572c3b52, rgb(24, 24, 27))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vua8xy\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"nd8vfIRV7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d05lqb\",\"data-framer-name\":\"icon/switch\",layoutDependency:layoutDependency,layoutId:\"gWQniTvyB\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-h9z548\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"VlHKzdyoP\",svg:'<svg width=\"18\" height=\"22\" viewBox=\"-1 -1 18 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 8.70156L2 10C2 12.2925 2.67852 13.7176 3.75824 14.601C4.87742 15.5167 6.60623 16 9 16V18C6.39377 18 4.12258 17.4833 2.49176 16.149C0.821479 14.7824 0 12.7075 0 10V3V0H2L2 3L2 3.00394C2.00078 5.29413 2.67914 6.71814 3.75824 7.60104C4.87742 8.51674 6.60623 9 9 9V11C6.39377 11 4.12258 10.4833 2.49176 9.14896C2.31874 9.0074 2.15483 8.85824 2 8.70156ZM13 11C13.5523 11 14 10.5523 14 10C14 9.44772 13.5523 9 13 9C12.4477 9 12 9.44772 12 10C12 10.5523 12.4477 11 13 11ZM13 13C14.6569 13 16 11.6569 16 10C16 8.34315 14.6569 7 13 7C11.3431 7 10 8.34315 10 10C10 11.6569 11.3431 13 13 13ZM14 17C14 17.5523 13.5523 18 13 18C12.4477 18 12 17.5523 12 17C12 16.4477 12.4477 16 13 16C13.5523 16 14 16.4477 14 17ZM16 17C16 18.6569 14.6569 20 13 20C11.3431 20 10 18.6569 10 17C10 15.3431 11.3431 14 13 14C14.6569 14 16 15.3431 16 17Z\" fill=\"white\" fill-opacity=\"0.9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7SW5jb25zb2xhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Inconsolata\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(255, 255, 255))\"},children:\"Switch\"})}),className:\"framer-aq8x8m\",fonts:[\"GF;Inconsolata-regular\"],layoutDependency:layoutDependency,layoutId:\"SAY1Hfn33\",style:{\"--extracted-a0htzi\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})],speed:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wc4526-container\",layoutDependency:layoutDependency,layoutId:\"JRMLEeTHa-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"JRMLEeTHa\",layoutId:\"JRMLEeTHa\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ose9un\",\"data-framer-name\":\"Integrations\",layoutDependency:layoutDependency,layoutId:\"JOQRUPLVC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rjrq9p-container\",layoutDependency:layoutDependency,layoutId:\"Ls4TGr0IH-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"Ls4TGr0IH\",layoutId:\"Ls4TGr0IH\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/MpN5p2EGubJVf72mv8u6ZMS9LM.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Postgres\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kj0t2j-container\",layoutDependency:layoutDependency,layoutId:\"HWPZNsQTq-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"HWPZNsQTq\",layoutId:\"HWPZNsQTq\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/uTncfuuMyEqKWaeMtR2JF7p9jH4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Firebase\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-198h13o-container\",layoutDependency:layoutDependency,layoutId:\"me5U0qiRk-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"me5U0qiRk\",layoutId:\"me5U0qiRk\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/Y15prbvuTUT8bpBN33tDaPZ9cBo.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Stripe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6gdhvt-container\",layoutDependency:layoutDependency,layoutId:\"D9RJhbxC0-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"D9RJhbxC0\",layoutId:\"D9RJhbxC0\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/o7n0omyXaatMq8rxEm5bEis56Y.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Slack\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r4sfe7-container\",layoutDependency:layoutDependency,layoutId:\"UbcEdLEOP-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"UbcEdLEOP\",layoutId:\"UbcEdLEOP\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/MxbLqkDHpFbmFfvPt4pv3eyNWwg.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"Discord\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mymb8l-container\",layoutDependency:layoutDependency,layoutId:\"y1JU_AbO1-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"y1JU_AbO1\",layoutId:\"y1JU_AbO1\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"S0lfwljnK\",vMhFkomIZ:\"GitHub\",width:\"100%\"})})})]})],speed:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zrl4lq-container\",layoutDependency:layoutDependency,layoutId:\"p7N6oeQlg-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"p7N6oeQlg\",layoutId:\"p7N6oeQlg\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bvo1mk\",\"data-framer-name\":\"Utilities\",layoutDependency:layoutDependency,layoutId:\"uueRGueGw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1plz0np-container\",layoutDependency:layoutDependency,layoutId:\"Rb6pvNqB2-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"micro\",id:\"Rb6pvNqB2\",layoutId:\"Rb6pvNqB2\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"O3KiVimO2\",vMhFkomIZ:\"Extract audio\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-56ia6u-container\",layoutDependency:layoutDependency,layoutId:\"dl5csN9xk-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"pdf\",id:\"dl5csN9xk\",layoutId:\"dl5csN9xk\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"O3KiVimO2\",vMhFkomIZ:\"Generate PDF\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oy8d5u-container\",layoutDependency:layoutDependency,layoutId:\"qoD5XRrY3-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"speakerhigh\",id:\"qoD5XRrY3\",layoutId:\"qoD5XRrY3\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"O3KiVimO2\",vMhFkomIZ:\"Text-to-Speech\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qsw07k-container\",layoutDependency:layoutDependency,layoutId:\"KP_5X9eEN-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"download-simple\",id:\"KP_5X9eEN\",layoutId:\"KP_5X9eEN\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"O3KiVimO2\",vMhFkomIZ:\"Save Base64\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-es6nnp-container\",layoutDependency:layoutDependency,layoutId:\"UZFKJ76S4-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"code\",id:\"UZFKJ76S4\",layoutId:\"UZFKJ76S4\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"O3KiVimO2\",vMhFkomIZ:\"Parse JSON\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"160px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xo5ex1-container\",layoutDependency:layoutDependency,layoutId:\"HPvt3aWI9-container\",children:/*#__PURE__*/_jsx(APIs,{height:\"100%\",hPDXsni7y:\"zip\",id:\"HPvt3aWI9\",layoutId:\"HPvt3aWI9\",qLZmhBfkK:addImageAlt({src:\"https://framerusercontent.com/images/bmzOiqGQVgMGlqUevgPZm6Hsx4.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"O3KiVimO2\",vMhFkomIZ:\"ZIP folder\",width:\"100%\"})})})]})],speed:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed8()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-76qt3a\",\"data-styles-preset\":\"UFMXOSzu1\",children:\"AI Models\"})}),className:\"framer-1ojylo8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x1K06kGeY\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nq9FRjCor:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-76qt3a\",\"data-styles-preset\":\"UFMXOSzu1\",children:\"Integrations\"})})},oImA9wpdi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-76qt3a\",\"data-styles-preset\":\"UFMXOSzu1\",children:\"Flow Nodes\"})})},T3R116ZM0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-76qt3a\",\"data-styles-preset\":\"UFMXOSzu1\",children:\"Utilities\"})})}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sQL2o.framer-1i3jj2i, .framer-sQL2o .framer-1i3jj2i { display: block; }\",\".framer-sQL2o.framer-1a55iqw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-sQL2o .framer-vi41ej { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sQL2o .framer-1toq89b-container, .framer-sQL2o .framer-fkybx7-container, .framer-sQL2o .framer-h5ai29-container, .framer-sQL2o .framer-jnqyfd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sQL2o .framer-16rglze-container, .framer-sQL2o .framer-o8v69y-container, .framer-sQL2o .framer-wc4526-container, .framer-sQL2o .framer-zrl4lq-container { flex: none; height: 164px; position: relative; width: 100%; }\",\".framer-sQL2o .framer-wh7eis, .framer-sQL2o .framer-hbtb5a, .framer-sQL2o .framer-ose9un, .framer-sQL2o .framer-1bvo1mk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 160px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sQL2o .framer-1y4kx26-container, .framer-sQL2o .framer-18z3otu-container, .framer-sQL2o .framer-vup3f9-container, .framer-sQL2o .framer-1knphm-container, .framer-sQL2o .framer-13zp2rn-container, .framer-sQL2o .framer-xq1rjy-container, .framer-sQL2o .framer-1xu7okp-container, .framer-sQL2o .framer-1rjrq9p-container, .framer-sQL2o .framer-1kj0t2j-container, .framer-sQL2o .framer-198h13o-container, .framer-sQL2o .framer-6gdhvt-container, .framer-sQL2o .framer-1r4sfe7-container, .framer-sQL2o .framer-1mymb8l-container, .framer-sQL2o .framer-1plz0np-container, .framer-sQL2o .framer-56ia6u-container, .framer-sQL2o .framer-1oy8d5u-container, .framer-sQL2o .framer-1qsw07k-container, .framer-sQL2o .framer-es6nnp-container, .framer-sQL2o .framer-xo5ex1-container { flex: none; height: 160px; position: relative; width: 160px; }\",\".framer-sQL2o .framer-onoqs5, .framer-sQL2o .framer-1yul9bt { display: grid; flex: none; gap: 8px; grid-auto-rows: 100px; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, 100px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 316px; }\",\".framer-sQL2o .framer-1zbran-container, .framer-sQL2o .framer-n560mv-container, .framer-sQL2o .framer-6g7e7d-container, .framer-sQL2o .framer-yv82s2-container, .framer-sQL2o .framer-3ihxtf-container, .framer-sQL2o .framer-1v40zkx-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-sQL2o .framer-1rg41dr { display: grid; flex: none; gap: 8px; grid-auto-rows: 100px; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, 100px); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-sQL2o .framer-1fvmx53-container, .framer-sQL2o .framer-10zkgbk-container, .framer-sQL2o .framer-7qtsxu-container, .framer-sQL2o .framer-jj0sta-container, .framer-sQL2o .framer-2fm7gq-container, .framer-sQL2o .framer-px3nhk-container, .framer-sQL2o .framer-1y1muv6-container, .framer-sQL2o .framer-8txzze-container, .framer-sQL2o .framer-uighcr-container, .framer-sQL2o .framer-wbh458-container, .framer-sQL2o .framer-1al9gs4-container, .framer-sQL2o .framer-bcxqvg-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-sQL2o .framer-13yizq9 { display: grid; flex: none; gap: 8px; grid-auto-rows: 100px; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, 100px); height: 208px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 316px; }\",\".framer-sQL2o .framer-fs14tu, .framer-sQL2o .framer-c7ub74, .framer-sQL2o .framer-1fmanr9, .framer-sQL2o .framer-1dwxc2s, .framer-sQL2o .framer-18vbq0d, .framer-sQL2o .framer-1rbhaoh { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; justify-self: start; overflow: hidden; padding: 24px 16px 16px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-sQL2o .framer-xbtztg, .framer-sQL2o .framer-rsfntv, .framer-sQL2o .framer-17i4ghd, .framer-sQL2o .framer-1ohkzie, .framer-sQL2o .framer-167at31, .framer-sQL2o .framer-13ufxt9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 32px; }\",\".framer-sQL2o .framer-1x1e79t, .framer-sQL2o .framer-1s09hcg, .framer-sQL2o .framer-1kzdf0y, .framer-sQL2o .framer-1k36zyn, .framer-sQL2o .framer-28ts60, .framer-sQL2o .framer-vpszwp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-sQL2o .framer-1ytvr6t, .framer-sQL2o .framer-1pilncl { bottom: 3px; flex: none; left: 3px; position: absolute; right: 3px; top: 3px; }\",\".framer-sQL2o .framer-18hgb2q, .framer-sQL2o .framer-1ureudb, .framer-sQL2o .framer-1g2z9xk, .framer-sQL2o .framer-heots5, .framer-sQL2o .framer-hori4l, .framer-sQL2o .framer-1est5sv { flex: none; height: 40px; position: relative; white-space: pre-wrap; width: 80px; word-break: break-word; word-wrap: break-word; }\",\".framer-sQL2o .framer-1wg81v9, .framer-sQL2o .framer-6z4fbz { bottom: 4px; flex: none; left: 2px; position: absolute; right: 2px; top: 2px; }\",\".framer-sQL2o .framer-1shx2tp, .framer-sQL2o .framer-qxkzcq { bottom: 2px; flex: none; left: 3px; position: absolute; right: 3px; top: 2px; }\",\".framer-sQL2o .framer-wv1tbv, .framer-sQL2o .framer-1t73xbh { bottom: 6px; flex: none; left: 3px; position: absolute; right: 3px; top: 3px; }\",\".framer-sQL2o .framer-veu2ql, .framer-sQL2o .framer-1tw2d5s { bottom: 4px; flex: none; left: 2px; position: absolute; right: 3px; top: 5px; }\",\".framer-sQL2o .framer-13hw86y, .framer-sQL2o .framer-h9z548 { bottom: 1px; flex: none; left: 3px; position: absolute; right: 3px; top: 1px; }\",\".framer-sQL2o .framer-1591cx9, .framer-sQL2o .framer-e68783, .framer-sQL2o .framer-1pumr5m, .framer-sQL2o .framer-1b9678t, .framer-sQL2o .framer-1xfw59o, .framer-sQL2o .framer-rtiufc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 160px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 160px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sQL2o .framer-3g8jag, .framer-sQL2o .framer-n2cqn8, .framer-sQL2o .framer-1kevnv2, .framer-sQL2o .framer-t6271f, .framer-sQL2o .framer-1fnlme4, .framer-sQL2o .framer-vua8xy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 56px; }\",\".framer-sQL2o .framer-11uf7u9, .framer-sQL2o .framer-11i3dzu, .framer-sQL2o .framer-1y8t1fb, .framer-sQL2o .framer-17d6n2y, .framer-sQL2o .framer-1wo8d4c, .framer-sQL2o .framer-d05lqb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 32px; }\",\".framer-sQL2o .framer-7f7v7s, .framer-sQL2o .framer-qurlha, .framer-sQL2o .framer-166hdc4, .framer-sQL2o .framer-k2pgrz, .framer-sQL2o .framer-1wjkjae, .framer-sQL2o .framer-aq8x8m { flex: none; height: 40px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sQL2o .framer-1ojylo8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sQL2o.framer-1a55iqw, .framer-sQL2o .framer-vi41ej, .framer-sQL2o .framer-wh7eis, .framer-sQL2o .framer-fs14tu, .framer-sQL2o .framer-xbtztg, .framer-sQL2o .framer-c7ub74, .framer-sQL2o .framer-rsfntv, .framer-sQL2o .framer-1fmanr9, .framer-sQL2o .framer-17i4ghd, .framer-sQL2o .framer-1dwxc2s, .framer-sQL2o .framer-1ohkzie, .framer-sQL2o .framer-18vbq0d, .framer-sQL2o .framer-167at31, .framer-sQL2o .framer-1rbhaoh, .framer-sQL2o .framer-13ufxt9, .framer-sQL2o .framer-hbtb5a, .framer-sQL2o .framer-1591cx9, .framer-sQL2o .framer-3g8jag, .framer-sQL2o .framer-e68783, .framer-sQL2o .framer-n2cqn8, .framer-sQL2o .framer-1pumr5m, .framer-sQL2o .framer-1kevnv2, .framer-sQL2o .framer-1b9678t, .framer-sQL2o .framer-t6271f, .framer-sQL2o .framer-1xfw59o, .framer-sQL2o .framer-1fnlme4, .framer-sQL2o .framer-rtiufc, .framer-sQL2o .framer-vua8xy, .framer-sQL2o .framer-ose9un, .framer-sQL2o .framer-1bvo1mk { gap: 0px; } .framer-sQL2o.framer-1a55iqw > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-sQL2o.framer-1a55iqw > :first-child, .framer-sQL2o .framer-fs14tu > :first-child, .framer-sQL2o .framer-c7ub74 > :first-child, .framer-sQL2o .framer-1fmanr9 > :first-child, .framer-sQL2o .framer-1dwxc2s > :first-child, .framer-sQL2o .framer-18vbq0d > :first-child, .framer-sQL2o .framer-1rbhaoh > :first-child, .framer-sQL2o .framer-1591cx9 > :first-child, .framer-sQL2o .framer-e68783 > :first-child, .framer-sQL2o .framer-1pumr5m > :first-child, .framer-sQL2o .framer-1b9678t > :first-child, .framer-sQL2o .framer-1xfw59o > :first-child, .framer-sQL2o .framer-rtiufc > :first-child { margin-top: 0px; } .framer-sQL2o.framer-1a55iqw > :last-child, .framer-sQL2o .framer-fs14tu > :last-child, .framer-sQL2o .framer-c7ub74 > :last-child, .framer-sQL2o .framer-1fmanr9 > :last-child, .framer-sQL2o .framer-1dwxc2s > :last-child, .framer-sQL2o .framer-18vbq0d > :last-child, .framer-sQL2o .framer-1rbhaoh > :last-child, .framer-sQL2o .framer-1591cx9 > :last-child, .framer-sQL2o .framer-e68783 > :last-child, .framer-sQL2o .framer-1pumr5m > :last-child, .framer-sQL2o .framer-1b9678t > :last-child, .framer-sQL2o .framer-1xfw59o > :last-child, .framer-sQL2o .framer-rtiufc > :last-child { margin-bottom: 0px; } .framer-sQL2o .framer-vi41ej > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-sQL2o .framer-vi41ej > :first-child, .framer-sQL2o .framer-wh7eis > :first-child, .framer-sQL2o .framer-xbtztg > :first-child, .framer-sQL2o .framer-rsfntv > :first-child, .framer-sQL2o .framer-17i4ghd > :first-child, .framer-sQL2o .framer-1ohkzie > :first-child, .framer-sQL2o .framer-167at31 > :first-child, .framer-sQL2o .framer-13ufxt9 > :first-child, .framer-sQL2o .framer-hbtb5a > :first-child, .framer-sQL2o .framer-3g8jag > :first-child, .framer-sQL2o .framer-n2cqn8 > :first-child, .framer-sQL2o .framer-1kevnv2 > :first-child, .framer-sQL2o .framer-t6271f > :first-child, .framer-sQL2o .framer-1fnlme4 > :first-child, .framer-sQL2o .framer-vua8xy > :first-child, .framer-sQL2o .framer-ose9un > :first-child, .framer-sQL2o .framer-1bvo1mk > :first-child { margin-left: 0px; } .framer-sQL2o .framer-vi41ej > :last-child, .framer-sQL2o .framer-wh7eis > :last-child, .framer-sQL2o .framer-xbtztg > :last-child, .framer-sQL2o .framer-rsfntv > :last-child, .framer-sQL2o .framer-17i4ghd > :last-child, .framer-sQL2o .framer-1ohkzie > :last-child, .framer-sQL2o .framer-167at31 > :last-child, .framer-sQL2o .framer-13ufxt9 > :last-child, .framer-sQL2o .framer-hbtb5a > :last-child, .framer-sQL2o .framer-3g8jag > :last-child, .framer-sQL2o .framer-n2cqn8 > :last-child, .framer-sQL2o .framer-1kevnv2 > :last-child, .framer-sQL2o .framer-t6271f > :last-child, .framer-sQL2o .framer-1fnlme4 > :last-child, .framer-sQL2o .framer-vua8xy > :last-child, .framer-sQL2o .framer-ose9un > :last-child, .framer-sQL2o .framer-1bvo1mk > :last-child { margin-right: 0px; } .framer-sQL2o .framer-wh7eis > *, .framer-sQL2o .framer-hbtb5a > *, .framer-sQL2o .framer-ose9un > *, .framer-sQL2o .framer-1bvo1mk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-sQL2o .framer-fs14tu > *, .framer-sQL2o .framer-c7ub74 > *, .framer-sQL2o .framer-1fmanr9 > *, .framer-sQL2o .framer-1dwxc2s > *, .framer-sQL2o .framer-18vbq0d > *, .framer-sQL2o .framer-1rbhaoh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sQL2o .framer-xbtztg > *, .framer-sQL2o .framer-rsfntv > *, .framer-sQL2o .framer-17i4ghd > *, .framer-sQL2o .framer-1ohkzie > *, .framer-sQL2o .framer-167at31 > *, .framer-sQL2o .framer-13ufxt9 > *, .framer-sQL2o .framer-3g8jag > *, .framer-sQL2o .framer-n2cqn8 > *, .framer-sQL2o .framer-1kevnv2 > *, .framer-sQL2o .framer-t6271f > *, .framer-sQL2o .framer-1fnlme4 > *, .framer-sQL2o .framer-vua8xy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sQL2o .framer-1591cx9 > *, .framer-sQL2o .framer-e68783 > *, .framer-sQL2o .framer-1pumr5m > *, .framer-sQL2o .framer-1b9678t > *, .framer-sQL2o .framer-1xfw59o > *, .framer-sQL2o .framer-rtiufc > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-sQL2o.framer-v-vrye3 .framer-1toq89b-container { order: 0; }\",\".framer-sQL2o.framer-v-vrye3 .framer-fkybx7-container, .framer-sQL2o.framer-v-eazpen .framer-1ojylo8, .framer-sQL2o.framer-v-8ybcul .framer-1ojylo8, .framer-sQL2o.framer-v-9n31uz .framer-1ojylo8, .framer-sQL2o.framer-v-904v3o .framer-1ojylo8 { order: 1; }\",\".framer-sQL2o.framer-v-vrye3 .framer-h5ai29-container, .framer-sQL2o.framer-v-904v3o .framer-onoqs5 { order: 2; }\",\".framer-sQL2o.framer-v-vrye3 .framer-jnqyfd-container, .framer-sQL2o.framer-v-9n31uz .framer-1rg41dr { order: 3; }\",\".framer-sQL2o.framer-v-eazpen.framer-1a55iqw, .framer-sQL2o.framer-v-8ybcul.framer-1a55iqw, .framer-sQL2o.framer-v-9n31uz.framer-1a55iqw, .framer-sQL2o.framer-v-904v3o.framer-1a55iqw { gap: 24px; width: min-content; }\",\".framer-sQL2o.framer-v-eazpen .framer-vi41ej, .framer-sQL2o.framer-v-8ybcul .framer-vi41ej, .framer-sQL2o.framer-v-9n31uz .framer-vi41ej, .framer-sQL2o.framer-v-904v3o .framer-vi41ej { align-self: stretch; justify-content: center; order: 0; width: auto; }\",\".framer-sQL2o.framer-v-eazpen .framer-13yizq9 { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sQL2o.framer-v-eazpen.framer-1a55iqw { gap: 0px; } .framer-sQL2o.framer-v-eazpen.framer-1a55iqw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sQL2o.framer-v-eazpen.framer-1a55iqw > :first-child { margin-top: 0px; } .framer-sQL2o.framer-v-eazpen.framer-1a55iqw > :last-child { margin-bottom: 0px; } }\",\".framer-sQL2o.framer-v-8ybcul .framer-1yul9bt { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sQL2o.framer-v-8ybcul.framer-1a55iqw { gap: 0px; } .framer-sQL2o.framer-v-8ybcul.framer-1a55iqw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sQL2o.framer-v-8ybcul.framer-1a55iqw > :first-child { margin-top: 0px; } .framer-sQL2o.framer-v-8ybcul.framer-1a55iqw > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sQL2o.framer-v-9n31uz.framer-1a55iqw { gap: 0px; } .framer-sQL2o.framer-v-9n31uz.framer-1a55iqw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sQL2o.framer-v-9n31uz.framer-1a55iqw > :first-child { margin-top: 0px; } .framer-sQL2o.framer-v-9n31uz.framer-1a55iqw > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sQL2o.framer-v-904v3o.framer-1a55iqw { gap: 0px; } .framer-sQL2o.framer-v-904v3o.framer-1a55iqw > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sQL2o.framer-v-904v3o.framer-1a55iqw > :first-child { margin-top: 0px; } .framer-sQL2o.framer-v-904v3o.framer-1a55iqw > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-sQL2o[data-border=\"true\"]::after, .framer-sQL2o [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 257\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YoUPvDqQS\":{\"layout\":[\"fixed\",\"auto\"]},\"dC38LsnIh\":{\"layout\":[\"fixed\",\"auto\"]},\"zEh8NfUCV\":{\"layout\":[\"fixed\",\"auto\"]},\"oImA9wpdi\":{\"layout\":[\"auto\",\"auto\"]},\"T3R116ZM0\":{\"layout\":[\"auto\",\"auto\"]},\"YYAHZFKg5\":{\"layout\":[\"auto\",\"auto\"]},\"Nq9FRjCor\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkvK3FpllA=withCSS(Component,css,\"framer-sQL2o\");export default FramerkvK3FpllA;FramerkvK3FpllA.displayName=\"Tabs - Nodes 3\";FramerkvK3FpllA.defaultProps={height:257,width:1200};addPropertyControls(FramerkvK3FpllA,{variant:{options:[\"mL4C2JamO\",\"YoUPvDqQS\",\"dC38LsnIh\",\"zEh8NfUCV\",\"oImA9wpdi\",\"T3R116ZM0\",\"YYAHZFKg5\",\"Nq9FRjCor\"],optionTitles:[\"Flow Nodes\",\"Utilities\",\"AI Models\",\"Integrations\",\"Flow Nodes - Mobile\",\"Utilities - Mobile\",\"AI Models - Mobile\",\"Integrations - Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkvK3FpllA,[{explicitInter:true,fonts:[{family:\"Inconsolata\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aR_8lleY2co.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...TabFonts,...APIsFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkvK3FpllA\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YoUPvDqQS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dC38LsnIh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zEh8NfUCV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oImA9wpdi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"T3R116ZM0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YYAHZFKg5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Nq9FRjCor\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"257\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "krBAA0X,IAAMA,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WASzpB,SAARC,EAAwBC,EAAM,CAAa,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAwBqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAM1B,CAAK,EAAQ2B,EAAYF,GAAY,EAAKf,IAAY,KAAMA,EAAU,QAAQ,IAAMkB,EAAalB,IAAY,QAAQA,IAAY,QAAcd,GAAOiC,GAAe,CAAC,EAAQC,EAAYnC,GAAsBe,CAAS,EAAQqB,GAAUC,GAAapC,GAAOkC,CAAW,EAA6BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA4BC,GAAY,EAAMC,GAAQ,EAAKrB,IACvnCoB,GAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACrB,GAAUI,GAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEM,GAAQ,GAAkC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,EAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM/C,EAAIsC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe3B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAyC,GAAGI,EAAY,CACz2B,GAAG,CAACJ,EAAS,CAGG,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKP,GAAQ,EAASQ,GAAOpB,EAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,GAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAef,GAAS,IAAI1B,EAAM,CAACuD,EAAMC,IAAQ,CAAC,IAAIC,EAAIC,EAAKC,EAAKC,EAAK,IAAIC,EAAQL,IAAQ,IAAGK,EAAK1B,EAAY,CAAC,GAAMqB,IAAQxD,EAAM,OAAO,IAAG6D,EAAK1B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMlB,GAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,GAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,IAAID,EAAK,MAAMvB,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,GAAGrB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACrC,EAAU,QAAQ0C,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAI1B,EAAM,CAACuD,EAAMW,IAAa,CAAC,IAAIT,EAAIC,EAAKC,EAAKC,EAAKC,GAAKM,GAAK,IAAM7B,GAAK,CAAC,MAAMlB,GAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,GAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAMxB,GAAK,cAAc,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,MAAMvC,GAAWwC,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,MAAM,OAAO,OAAOvC,GAAYwC,GAAKN,EAAM,SAAS,MAAMM,KAAO,OAAO,OAAOA,GAAK,OAAO,OAAO,WAAW,EAAE,GAAGX,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGE,GAAKZ,EAAM,SAAS,MAAMY,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,EAAEF,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAE,EAAI,IAAME,EAAe9B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ+B,GAAYnC,EAAO,IAAI,EAAQoC,GAASpC,EAAO,IAAI,EAAQqC,EAAKrC,EAAO,CAAC,EAAQsC,GAAQtC,EAAO,EAAK,EAAQuC,GAAgBC,GAAiB,EAAQC,EAAQzC,EAAO,IAAI,EAAQ0C,GAAa1C,EAAO,IAAI,EAE7rE,GAAG,CAACX,EAAS,CAAC,IAAMsD,EAASC,GAAU7C,CAAS,EAEzCpC,GAA+BuD,GAAU,IAAI,CAAC,GAAG,EAAAqB,IAAiB,CAACL,GAAgB,CAAC5D,GAAe,OAAAoE,GAAa,QAAQD,EAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC7C,EAAY,CAAC,EAAEA,EAAYsC,CAAc,CAAE,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE5D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIoE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACnE,EAAY2D,EAAe5D,CAAK,CAAC,EAGxWuE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB5E,GAA+B,OAKnFwE,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6B9D,EAAM,KAAQgE,GAAQ,UAASS,GAAOxE,GAAa8D,EAAK,SAASU,EAAMV,EAAK,QAAQW,GAAK,EAAEd,EAAeG,EAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBjF,GAAO,IAAI2E,EAAK,OAAO,CAAE,CAAC,CAAG,CAAa,IAAMY,GAAcvD,EAAa,WAAW,YAAkBwD,GAAenE,EAAU,EAAQoE,GAAa,IAAIpE,EAAU,EAAQqE,GAAeC,GAAMrE,EAAU,EAAEkE,EAAc,EAAQI,GAAa,IAAItE,EAAgBuE,GAAS,mBAAmBN,EAAa,mBAAmBhE,CAAS,KAAKmE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBlE,CAAS,KAAKqE,EAAY,KAAuB,OAAI7D,EAAuWmC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG4B,GAAe,QAAQ9C,GAAQ,gBAAgB7B,EAAY0E,GAAS,OAAU,aAAa1E,EAAY0E,GAAS,OAAU,UAAU1E,EAAY0E,GAAS,OAAU,SAASzE,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIW,EAAU,SAAuB0D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,EAAQ,MAAM,CAAC,GAAGe,GAAe,IAAIzF,EAAI,IAAIS,IAAY,UAAUmF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK1D,IAAY,SAASmF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWzD,EAAU,SAAS,WAAW,cAAciB,EAAa,MAAM,SAAS,GAAGd,EAAM,UAAUjB,GAA8B,OAAUkC,GAAU,WAAW,WAAW,EAAE,aAAa,IAAI,CAACyC,GAAQ,QAAQ,GAAQI,GAAa,SAASA,GAAa,QAAQ,mBAAmBnE,CAAW,CAAG,EAAE,aAAa,IAAI,CAAC+D,GAAQ,QAAQ,GAASI,GAAa,SAASA,GAAa,QAAQ,mBAAmB,CAAC,CAAG,EAAE,SAAS,CAACnC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAArwCiD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAehC,EAAK,MAAM,CAAC,MAAMiC,GAAY,SAAS,QAAG,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAY,SAAS,oBAAoB,CAAC,EAAgBlC,EAAK,IAAI,CAAC,MAAMmC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAA09B,CAA2BnG,EAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAA0BoG,GAAoBpG,EAAO,CAAC,MAAM,CAAC,KAAKqG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAiDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECzBh/J,IAAMC,GAAcC,GAASC,EAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,eAAe,YAAY,cAAc,YAAY,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,KAAAC,EAAK,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKN,GAAgCK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,QAAQ,UAAUJ,GAAmCG,EAAM,UAAU,SAASG,GAAOD,EAAuCV,GAAwBQ,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMN,GAAmCE,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,UAAU,CAAE,EAAQC,GAAuB,CAACL,EAAM1B,IAAWA,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAuBM,GAA6BC,GAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASO,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,WAAAvD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBpB,GAAuBL,EAAM1B,CAAQ,EAAQoD,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAAST,CAAW,EAAmCU,EAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASV,CAAW,EAAmCW,EAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsB1C,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsB2D,EAAM9C,EAAO,IAAI,CAAC,GAAG4B,EAAU,UAAUmB,GAAGnE,GAAkB,GAAG8D,GAAsB,iBAAiBnB,EAAUO,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAId,GAA6BkB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGd,CAAK,EAAE,GAAGxC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE+C,EAAYE,CAAc,EAAE,SAAS,CAACO,EAAY,GAAgBxC,EAAKkD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAG5D,GAAkBsC,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBS,EAAiB,SAAS,YAAY,GAAGrD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAGM,GAAkBsC,CAAS,CAAC,CAAC,CAAC,EAAEG,EAAYE,CAAc,CAAC,CAAC,EAAejC,EAAKmD,EAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKV,EAAU,kBAAkB,SAAS,mBAAmB,GAAK,GAAG3C,GAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,EAAYE,CAAc,CAAC,CAAC,EAAEQ,EAAa,GAAgBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,EAAE,SAAsBrC,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBmC,EAAiB,SAAS,sBAAsB,SAAsBrC,EAAKpB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAWiD,EAAU,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwB,GAAI,CAAC,kFAAkF,gFAAgF,0TAA0T,2KAA2K,qKAAqK,wQAAwQ,yGAAyG,goBAAgoB,wKAAwK,qHAAqH,kEAAkE,ibAAib,8DAA8D,8DAA8D,4EAA4E,0FAA0F,0FAA0F,ibAAib,+bAA+b,EASjuWC,GAAgBC,GAAQrC,GAAUmC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,eAAe,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,QAAQ,YAAY,wBAAmB,MAAM,OAAO,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,wHAAwH,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG5E,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT2P,IAAMkF,GAASC,GAASC,EAAG,EAAQC,GAAqFC,GAAqBC,GAAuDH,EAAG,EAAEI,EAAO,EAAQC,GAAoFH,GAAqBI,GAAsDN,EAAG,EAAEI,EAAO,EAAQG,GAA8EL,GAAqBM,GAAgDR,EAAG,EAAEI,EAAO,EAAQK,GAAuFP,GAAqBQ,GAAyDV,EAAG,EAAEI,EAAO,EAAQO,GAAUZ,GAASa,CAAI,EAAQC,GAAYd,GAASe,CAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,EAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,qBAAqB,YAAY,YAAY,YAAY,sBAAsB,YAAY,aAAa,YAAY,wBAAwB,YAAY,qBAAqB,YAAY,aAAa,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM1B,IAAWA,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAuBE,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,GAAGmC,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1C,CAAQ,EAAE2C,GAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBjB,GAAuBD,EAAM1B,CAAQ,EAAO,CAAC,sBAAA6C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBT,CAAW,EAAQU,EAAgBH,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQQ,EAAgBL,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQS,EAAgBN,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQU,EAAgBP,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQW,EAAgBR,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQY,GAAgBT,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQa,EAAgBV,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQc,GAAeX,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQe,EAAgBZ,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,EAAgBb,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,GAAiBd,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQkB,EAAiBf,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQmB,GAAiBhB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQoB,EAAgBjB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQqB,EAAgBlB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQsB,EAAiBnB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAEuB,GAAmB3B,EAAY,CAAC,UAAUa,EAAgB,QAAQH,EAAgB,UAAUQ,GAAe,UAAUH,EAAgB,UAAUC,GAAgB,UAAUJ,EAAgB,UAAUK,EAAgB,UAAUH,CAAe,CAAC,EAAE,IAAMc,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ9B,IAAc,YAA6C+B,GAAa,IAAQ/B,IAAc,YAA6CgC,GAAa,IAAQhC,IAAc,YAA6CiC,GAAa,IAAQjC,IAAc,YAA6CkC,GAAa,IAAQlC,IAAc,YAA6CmC,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASnC,CAAW,EAAmCoC,EAAa,IAAQpC,IAAc,YAA6CqC,GAAa,IAAQrC,IAAc,YAA6CsC,GAAa,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAStC,CAAW,EAAmCuC,EAAsBC,GAAM,EAAQC,GAAsB,CAAa5C,EAAS,EAAQ6C,GAAkBC,GAAqB,EAAE,OAAoBhE,EAAKiE,EAAY,CAAC,GAAG9C,GAAUyC,EAAgB,SAAsB5D,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKT,GAAW,CAAC,MAAML,GAAY,GAAGL,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAEkC,EAAYE,CAAc,EAAE,SAAsB2C,EAAMhE,EAAO,IAAI,CAAC,GAAGkB,EAAU,UAAU+C,GAAGxF,GAAkB,GAAGmF,GAAsB,iBAAiB5C,EAAUI,CAAU,EAAE,mBAAmB,aAAa,iBAAiB,GAAK,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAAKoC,GAAK,MAAM,CAAC,GAAGhC,CAAK,EAAE,GAAGpC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,uBAAuB,EAAE,UAAU,CAAC,mBAAmB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAS,CAAc2C,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAc3B,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKpC,GAAqF,CAAC,UAAU,OAAO,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU4E,EAAgB,MAAM,OAAO,UAAU,aAAa,GAAG3D,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,aAAa,QAAQ,YAAY,UAAU4D,CAAe,EAAE,UAAU,CAAC,UAAU,aAAa,QAAQ,YAAY,UAAUA,CAAe,EAAE,UAAU,CAAC,UAAU,aAAa,QAAQ,YAAY,UAAUA,CAAe,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,aAAa,QAAQ,YAAY,UAAUA,CAAe,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEpB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKhC,GAAoF,CAAC,UAAU,OAAO,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU0E,GAAiB,MAAM,OAAO,UAAU,YAAY,GAAG7D,EAAqB,CAAC,UAAU,CAAC,UAAU,eAAe,QAAQ,YAAY,UAAU8D,CAAgB,EAAE,UAAU,CAAC,UAAU,eAAe,QAAQ,YAAY,UAAUA,CAAgB,EAAE,UAAU,CAAC,UAAU,eAAe,QAAQ,YAAY,UAAUA,CAAgB,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,eAAe,QAAQ,YAAY,UAAUA,CAAgB,CAAC,EAAEtB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAK9B,GAA8E,CAAC,UAAU,OAAO,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU0E,GAAiB,MAAM,OAAO,UAAU,YAAY,GAAG/D,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUgE,CAAe,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,CAAe,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,CAAe,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,CAAe,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAK5B,GAAuF,CAAC,UAAU,OAAO,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU0E,EAAgB,MAAM,OAAO,UAAU,eAAe,GAAGjE,EAAqB,CAAC,UAAU,CAAC,UAAU,SAAS,QAAQ,YAAY,UAAUkE,CAAgB,EAAE,UAAU,CAAC,UAAU,SAAS,QAAQ,YAAY,UAAUA,CAAgB,EAAE,UAAU,CAAC,UAAU,SAAS,QAAQ,YAAY,UAAUA,CAAgB,EAAE,UAAU,CAAC,UAAU,SAAS,QAAQ,YAAY,UAAUA,CAAgB,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE1B,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,GAAY,GAAgBnD,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKvB,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcyF,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAc3B,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,eAAe,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,eAAe,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,oEAAoE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,mBAAmB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgE,GAAa,GAAgBc,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAc3B,EAAKoE,EAA0B,CAAC,GAAGvF,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAsBvB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,GAAGvF,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAsBvB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,GAAGvF,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAsBvB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,SAAS,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,GAAGvF,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAsBvB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,QAAQ,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,GAAGvF,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAsBvB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,GAAGvF,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAEwC,EAAYE,CAAc,EAAE,SAAsBvB,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,SAAS,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiE,GAAa,GAAgBa,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAc3B,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,eAAe,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,eAAe,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkE,GAAa,GAAgBY,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAc3B,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,gBAAgB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,MAAM,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,eAAe,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,cAAc,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,iBAAiB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,kBAAkB,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,cAAc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,aAAa,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,MAAM,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,QAAQ,YAAY,UAAU,aAAa,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmE,GAAa,GAAgBW,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAcuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA2qF,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAyzB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAg5C,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAkP,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA8N,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAy/B,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,GAAa,GAAgBxD,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKvB,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcyF,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAcuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA2qF,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAyzB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAg5C,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAkP,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA8N,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiByB,EAAiB,SAAS,YAAY,SAAsB3B,EAAKqE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB1C,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAy/B,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,EAAa,GAAgBzD,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKvB,EAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcyF,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAc3B,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,SAAS,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,QAAQ,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,SAAS,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,GAAa,GAAgB1D,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKvB,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcyF,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiByB,EAAiB,SAAS,YAAY,SAAS,CAAc3B,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,gBAAgB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,MAAM,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,eAAe,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,cAAc,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,iBAAiB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,kBAAkB,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,cAAc,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,aAAa,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKoE,EAA0B,CAAC,MAAM,QAAQ,SAAsBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByB,EAAiB,SAAS,sBAAsB,SAAsB3B,EAAKzB,EAAK,CAAC,OAAO,OAAO,UAAU,MAAM,GAAG,YAAY,SAAS,YAAY,UAAUa,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,aAAa,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuE,GAAa,GAAgB3D,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiByB,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgD,GAAI,CAAC,kFAAkF,kFAAkF,qQAAqQ,wRAAwR,iOAAiO,kOAAkO,4VAA4V,s0BAAs0B,0UAA0U,yVAAyV,kTAAkT,mlBAAmlB,sSAAsS,qhBAAqhB,iaAAia,qUAAqU,iJAAiJ,8TAA8T,gJAAgJ,gJAAgJ,gJAAgJ,gJAAgJ,gJAAgJ,geAAge,+ZAA+Z,sUAAsU,4TAA4T,iHAAiH,8pKAA8pK,uEAAuE,kQAAkQ,oHAAoH,qHAAqH,4NAA4N,kQAAkQ,8DAA8D,+aAA+a,8DAA8D,+aAA+a,+aAA+a,+aAA+a,GAAeA,GAAI,+bAA+b,EAQnmwFC,GAAgBC,GAAQ9D,GAAU4D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,aAAa,YAAY,YAAY,eAAe,sBAAsB,qBAAqB,qBAAqB,uBAAuB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,wHAAwH,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG/G,GAAS,GAAGa,GAAU,GAAGE,GAAY,GAAGsG,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["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", "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", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "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", "PhosphorFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "image", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vMhFkomIZ", "qLZmhBfkK", "hPDXsni7y", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerDgw9bOaD6", "withCSS", "Dgw9bOaD6_default", "addPropertyControls", "ControlType", "addFonts", "TabFonts", "getFonts", "oFIKAFfzp_default", "TabWithAnalytics_button_homepage_nodes_toggle__flow_nodesWithMappedReactProps1ehzghf", "withMappedReactProps", "withAnalytics_button_homepage_nodes_toggle__flow_nodes", "oFIKAFfzp_exports", "TabWithAnalytics_button_homepage_nodes_toggle__utilitiesWithMappedReactProps1ehzghf", "withAnalytics_button_homepage_nodes_toggle__utilities", "TabWithAnalytics_button_homepage_nodes_toggle__allWithMappedReactProps1ehzghf", "withAnalytics_button_homepage_nodes_toggle__all", "TabWithAnalytics_button_homepage_nodes_toggle__integrationsWithMappedReactProps1ehzghf", "withAnalytics_button_homepage_nodes_toggle__integrations", "APIsFonts", "Dgw9bOaD6_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1bd5pb3", "args", "onAppear1ch9gcq", "onAppear1pmi900", "onAppear16hqrsm", "onAppear1ri1x37", "onAppear1vyg48u", "onAppear1jhu4k1", "onAppearc2ywk3", "VrNk23cEGxuwh8z", "VrNk23cEGital02", "VrNk23cEG1ustvi8", "VrNk23cEG1vlrig4", "VrNk23cEG1mwmmys", "VrNk23cEGita1mp", "VrNk23cEG4e7099", "VrNk23cEG19iqaic", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "SVG", "RichText2", "css", "FramerkvK3FpllA", "withCSS", "kvK3FpllA_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
