{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/itgi9RK8CLwe9MFuhYeS/SlideShow.js", "ssg:https://framerusercontent.com/modules/dxBJmL6S9JA9WPe2U734/yQmjrXfslX8NvE588lOf/NlUs8l0kt.js", "ssg:https://framerusercontent.com/modules/brecopAQfMqah5xsAAAH/rt0KjOQpOfYK3aKfcSMg/RQsu3EUnk.js", "ssg:https://framerusercontent.com/modules/LjNrx7vLjA3fIOiQdEsx/TyroCTGSuquesyysXZqc/ttlCZeYUv.js", "ssg:https://framerusercontent.com/modules/tut6Uds7gzgZ4BN8GKZR/gFSmhmTDx63w5dlknVXK/ZNoiBJ0af.js", "ssg:https://framerusercontent.com/modules/yzzgJd97a0jA0F37kWTE/eCvwepnH9mziJQJ3GEVu/Kd_pkASvP.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (af04cc1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;SF Arabic Variable\",\"CUSTOM;SF Arabic VariableVF=IndnaHQiIDUwMCwgIm9wc3oiIDI4\",\"CUSTOM;SF Arabic VariableVF=IndnaHQiIDUwMCwgIm9wc3oiIDI4\",\"CUSTOM;SF Arabic VariableVF=IndnaHQiIDUwMCwgIm9wc3oiIDI4\"]);const variationAxes=[{defaultValue:400,maxValue:1e3,minValue:1,name:\"Weight\",tag:\"wght\"},{defaultValue:28,maxValue:80,minValue:17,name:\"Optical Size\",tag:\"opsz\"}];export const fonts=[{explicitInter:true,fonts:[{family:\"SF Arabic Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/GNlbGCossHvpL514iPSOTyMcvq8.woff2\",variationAxes}]}];export const css=['.framer-z4Epk .framer-styles-preset-h327ya:not(.rich-text-wrapper), .framer-z4Epk .framer-styles-preset-h327ya.rich-text-wrapper h3 { --framer-font-family: \"SF Arabic Variable\", \"SF Arabic Placeholder\", sans-serif; --framer-font-family-bold: \"SF Arabic Variable\", \"SF Arabic Placeholder\", sans-serif; --framer-font-family-bold-italic: \"SF Arabic Variable\", \"SF Arabic Placeholder\", sans-serif; --framer-font-family-italic: \"SF Arabic Variable\", \"SF Arabic Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-variation-axes: \"wght\" 500, \"opsz\" 28; --framer-font-variation-axes-bold: \"wght\" 500, \"opsz\" 28; --framer-font-variation-axes-bold-italic: \"wght\" 500, \"opsz\" 28; --framer-font-variation-axes-italic: \"wght\" 500, \"opsz\" 28; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 40px; --framer-text-alignment: right; --framer-text-color: var(--token-fc2aaa7e-84bd-43df-bf51-0f883e8ac3de, #161616); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-z4Epk\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (90417e1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/dxBJmL6S9JA9WPe2U734/yQmjrXfslX8NvE588lOf/NlUs8l0kt.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sCtXcdwqoarcvRPhcoeF/Meq0ubuwt0UtVGf4xoUN/sMxccLUAI.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const enabledGestures={G2_L0TUot:{hover:true,pressed:true}};const cycleOrder=[\"G2_L0TUot\",\"odFImgJdh\"];const serializationHash=\"framer-zH4oC\";const variantClassNames={G2_L0TUot:\"framer-v-1mpwrvm\",odFImgJdh:\"framer-v-1fv43sz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.28,1],type:\"tween\"};const transition2={delay:.1,duration:.3,ease:[.44,0,.24,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:12};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:\"G2_L0TUot\",Mobile:\"odFImgJdh\"};const getProps=({description,height,id,image,imageVisible,link,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3;return{...props,eyij5FR9y:(_ref=imageVisible!==null&&imageVisible!==void 0?imageVisible:props.eyij5FR9y)!==null&&_ref!==void 0?_ref:true,FD40T9ewa:(_ref1=description!==null&&description!==void 0?description:props.FD40T9ewa)!==null&&_ref1!==void 0?_ref1:\"Description\",u2OGD4R7M:link!==null&&link!==void 0?link:props.u2OGD4R7M,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"G2_L0TUot\",X3OgCk8xH:(_ref3=title!==null&&title!==void 0?title:props.X3OgCk8xH)!==null&&_ref3!==void 0?_ref3:\"Title\",ZHFqT4Lbc:image!==null&&image!==void 0?image:props.ZHFqT4Lbc};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,X3OgCk8xH,FD40T9ewa,ZHFqT4Lbc,eyij5FR9y,u2OGD4R7M,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"G2_L0TUot\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:u2OGD4R7M,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1mpwrvm\",className,classNames)} framer-1y2sd8d`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"G2_L0TUot\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({\"G2_L0TUot-hover\":{\"data-framer-name\":undefined},\"G2_L0TUot-pressed\":{\"data-framer-name\":undefined},odFImgJdh:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c43ey8\",\"data-framer-name\":\"Frame 68\",layoutDependency:layoutDependency,layoutId:\"wMB72926_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-h327ya\",\"data-styles-preset\":\"NlUs8l0kt\",children:\"Title\"})}),className:\"framer-p2n8ef\",\"data-framer-name\":\"Overthink.ing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jQvRE6JC4\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:X3OgCk8xH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-29gpqg\",\"data-styles-preset\":\"sMxccLUAI\",children:\"Description\"})}),className:\"framer-v83omt\",\"data-framer-appear-id\":\"v83omt\",\"data-framer-name\":\"Fit-check for your wondering mind during overwhelming circumstances.\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"eIV0zamSO\",optimized:true,style:{\"--framer-paragraph-spacing\":\"0px\"},text:FD40T9ewa,variants:{\"G2_L0TUot-hover\":{\"--extracted-r6o4lv\":\"var(--token-fc2aaa7e-84bd-43df-bf51-0f883e8ac3de, rgb(22, 22, 22))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"G2_L0TUot-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-29gpqg\",\"data-styles-preset\":\"sMxccLUAI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fc2aaa7e-84bd-43df-bf51-0f883e8ac3de, rgb(22, 22, 22)))\"},children:\"Description\"})})}},baseVariant,gestureVariant)})]}),eyij5FR9y&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+16),sizes:\"72px\",...toResponsiveImage(ZHFqT4Lbc)},className:\"framer-13fzy3j\",\"data-border\":true,\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"kd0BT1J_5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sua1er\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"IiMEAV4sT\",style:{backgroundColor:\"var(--token-216297a2-05e6-47b9-b0ef-6231c4058816, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{\"G2_L0TUot-hover\":{backgroundColor:\"var(--token-44cd65e8-5ad1-421f-98eb-8062760b982a, rgb(232, 232, 232))\"},\"G2_L0TUot-pressed\":{backgroundColor:\"var(--token-e657ee59-1ab4-449f-8722-a7fff6c95774, rgb(198, 198, 198))\"}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zH4oC.framer-1y2sd8d, .framer-zH4oC .framer-1y2sd8d { display: block; }\",\".framer-zH4oC.framer-1mpwrvm { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 32px 16px 32px; position: relative; text-decoration: none; width: 560px; }\",\".framer-zH4oC .framer-c43ey8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-zH4oC .framer-p2n8ef, .framer-zH4oC .framer-v83omt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zH4oC .framer-13fzy3j { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-zH4oC .framer-1sua1er { bottom: 8px; flex: none; left: 8px; overflow: hidden; position: absolute; right: 8px; top: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zH4oC.framer-1mpwrvm, .framer-zH4oC .framer-c43ey8 { gap: 0px; } .framer-zH4oC.framer-1mpwrvm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-zH4oC.framer-1mpwrvm > :first-child { margin-left: 0px; } .framer-zH4oC.framer-1mpwrvm > :last-child { margin-right: 0px; } .framer-zH4oC .framer-c43ey8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zH4oC .framer-c43ey8 > :first-child { margin-top: 0px; } .framer-zH4oC .framer-c43ey8 > :last-child { margin-bottom: 0px; } }\",\".framer-zH4oC.framer-v-1fv43sz.framer-1mpwrvm { cursor: unset; gap: 16px; padding: 16px 24px 16px 24px; width: 342px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zH4oC.framer-v-1fv43sz.framer-1mpwrvm { gap: 0px; } .framer-zH4oC.framer-v-1fv43sz.framer-1mpwrvm > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-zH4oC.framer-v-1fv43sz.framer-1mpwrvm > :first-child { margin-left: 0px; } .framer-zH4oC.framer-v-1fv43sz.framer-1mpwrvm > :last-child { margin-right: 0px; } }\",\".framer-zH4oC.framer-v-1mpwrvm.hover .framer-1sua1er, .framer-zH4oC.framer-v-1mpwrvm.pressed .framer-1sua1er { bottom: 0px; left: 0px; right: 0px; top: 0px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-zH4oC[data-border=\"true\"]::after, .framer-zH4oC [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 104\n * @framerIntrinsicWidth 560\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"odFImgJdh\":{\"layout\":[\"fixed\",\"auto\"]},\"mkkZilRIP\":{\"layout\":[\"fixed\",\"auto\"]},\"QsgmtTUHV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"X3OgCk8xH\":\"title\",\"FD40T9ewa\":\"description\",\"ZHFqT4Lbc\":\"image\",\"eyij5FR9y\":\"imageVisible\",\"u2OGD4R7M\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRQsu3EUnk=withCSS(Component,css,\"framer-zH4oC\");export default FramerRQsu3EUnk;FramerRQsu3EUnk.displayName=\"05 Cards / project\";FramerRQsu3EUnk.defaultProps={height:104,width:560};addPropertyControls(FramerRQsu3EUnk,{variant:{options:[\"G2_L0TUot\",\"odFImgJdh\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},X3OgCk8xH:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},FD40T9ewa:{defaultValue:\"Description\",displayTextArea:true,title:\"Description\",type:ControlType.String},ZHFqT4Lbc:{title:\"Image\",type:ControlType.ResponsiveImage},eyij5FR9y:{defaultValue:true,title:\"Image Visible\",type:ControlType.Boolean},u2OGD4R7M:{title:\"Link\",type:ControlType.Link}});addFonts(FramerRQsu3EUnk,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRQsu3EUnk\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"104\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"X3OgCk8xH\\\":\\\"title\\\",\\\"FD40T9ewa\\\":\\\"description\\\",\\\"ZHFqT4Lbc\\\":\\\"image\\\",\\\"eyij5FR9y\\\":\\\"imageVisible\\\",\\\"u2OGD4R7M\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"560\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"odFImgJdh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mkkZilRIP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QsgmtTUHV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,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/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bWxaIRMtfeRuCf73j2HR/rHuVcMfubZJIwxYS96s7/oY2OFoNyv.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/l3j7uzl02rJdLbIs9Fwl/gV9O5Jc2lGcsV5FLCGQh/uMVEOKZ0v.js\";import Buttons00Primary from\"https://framerusercontent.com/modules/e6wTSEwjJDeJRPBtVsY4/3iBCit0eKuypXMpwkX3e/HHaIDZQa0.js\";const PhosphorFonts=getFonts(Phosphor);const Buttons00PrimaryFonts=getFonts(Buttons00Primary);const cycleOrder=[\"oHXL1kHLo\",\"fUr0WdrgA\"];const serializationHash=\"framer-YcYXE\";const variantClassNames={fUr0WdrgA:\"framer-v-15rtbu6\",oHXL1kHLo:\"framer-v-1l8juhc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop-Open\":\"fUr0WdrgA\",Desktop:\"oHXL1kHLo\"};const getProps=({buttonLabel,details,height,id,link,price,title,width,...props})=>{return{...props,nbVe_mlMs:price??props.nbVe_mlMs??\"\u0662\u0664\u0660\u0660 / \u0634\u0647\u0631\u064A\u0651\u0627\u064B\",nYWxVHYLp:buttonLabel??props.nYWxVHYLp??\"\u0627\u0644\u062A\u0641\u0627\u0635\u064A\u0644\",pcHhnOKaU:link??props.pcHhnOKaU,RAVTHRVoy:title??props.RAVTHRVoy??\"\u0627\u0644\u0645\u0631\u0627\u0641\u0642\u0629 \u0627\u0644\u0634\u062E\u0635\u064A\u0651\u0629 / Mentornship\",RDeJ7KkQ8:details??props.RDeJ7KkQ8??\"\u0645\u0646\u0627\u0633\u0628 \u0644\u062E\u0628\u064A\u0631\u0627\u062A \u0627\u0644\u062A\u062C\u0645\u064A\u0644 \u0627\u0644\u0631\u0627\u063A\u0628\u0627\u062A \u0641\u064A \u062A\u0623\u0633\u064A\u0633 \u0623\u0633\u0627\u0633 \u0642\u0648\u064A \u0644\u0623\u0639\u0645\u0627\u0644\u0647\u0646 \u0642\u0628\u0644 \u0627\u0644\u062A\u0648\u0633\u0639. \u064A\u0633\u0627\u0639\u062F\u0643 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062C \u0639\u0644\u0649 \u062A\u062D\u0642\u064A\u0642 \u0623\u0647\u062F\u0627\u0641\u0643 \u0628\u062B\u0642\u0629 \u0645\u0646 \u062E\u0644\u0627\u0644 \u0625\u0631\u0634\u0627\u062F \u0634\u062E\u0635\u064A \u0648\u062E\u0637\u0629 \u0645\u062F\u0631\u0648\u0633\u0629\",variant:humanReadableVariantMap[props.variant]??props.variant??\"oHXL1kHLo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,RAVTHRVoy,pcHhnOKaU,nbVe_mlMs,RDeJ7KkQ8,nYWxVHYLp,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oHXL1kHLo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap18p0dhb=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"fUr0WdrgA\");});const onTap1jlpw4x=activeVariantCallback(async(...args)=>{setVariant(\"oHXL1kHLo\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"fUr0WdrgA\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1l8juhc\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oHXL1kHLo\",onTap:onTap18p0dhb,ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-eee00141-5f91-4f5e-8917-6a7d2a9a166e, rgb(239, 239, 239))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-35392d7f-121d-44a9-bca2-b59803721434, rgb(255, 255, 255))\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",...style},...addPropertyOverrides({fUr0WdrgA:{\"data-framer-name\":\"Desktop-Open\",\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yc1z2g\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"yM_j7E8l2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hk6m1d\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"nssNonai5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3h5n0j\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"AGMfK3c7h\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x5q9tp\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"r8BdeeWZB\",style:{backgroundColor:\"var(--token-beda2479-5a50-4731-a8e8-05d71ddde985, rgb(245, 245, 245))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},...addPropertyOverrides({fUr0WdrgA:{\"data-highlight\":true,onTap:onTap1jlpw4x}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hhdtoy-container\",layoutDependency:layoutDependency,layoutId:\"DkltzSaga-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-c1d39f76-9bff-4d3e-b6c6-5115aebb1e0e, rgb(5, 5, 5))\",height:\"100%\",iconSearch:\"plus\",iconSelection:\"House\",id:\"DkltzSaga\",layoutId:\"DkltzSaga\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({fUr0WdrgA:{iconSearch:\"minus\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r614mt\",\"data-styles-preset\":\"oY2OFoNyv\",style:{direction:\"rtl\"},children:\"\u0662\u0664\u0660\u0660 / \u0634\u0647\u0631\u064A\u0651\u0627\u064B\"})}),className:\"framer-h6wgdl\",\"data-framer-name\":\"Price\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zzsNpVsq2\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:nbVe_mlMs,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-y1dtqh\",\"data-styles-preset\":\"uMVEOKZ0v\",style:{direction:\"rtl\"},children:\"\u0627\u0644\u0645\u0631\u0627\u0641\u0642\u0629 \u0627\u0644\u0634\u062E\u0635\u064A\u0651\u0629 / Mentornship\"})}),className:\"framer-1mhnrdx\",\"data-framer-name\":\"Framer Web Design\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KrR3im90l\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:RAVTHRVoy,verticalAlignment:\"center\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7m5qt7\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"uxNoDxrVv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-r614mt\",\"data-styles-preset\":\"oY2OFoNyv\",style:{direction:\"rtl\"},children:\"\u0645\u0646\u0627\u0633\u0628 \u0644\u062E\u0628\u064A\u0631\u0627\u062A \u0627\u0644\u062A\u062C\u0645\u064A\u0644 \u0627\u0644\u0631\u0627\u063A\u0628\u0627\u062A \u0641\u064A \u062A\u0623\u0633\u064A\u0633 \u0623\u0633\u0627\u0633 \u0642\u0648\u064A \u0644\u0623\u0639\u0645\u0627\u0644\u0647\u0646 \u0642\u0628\u0644 \u0627\u0644\u062A\u0648\u0633\u0639. \u064A\u0633\u0627\u0639\u062F\u0643 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062C \u0639\u0644\u0649 \u062A\u062D\u0642\u064A\u0642 \u0623\u0647\u062F\u0627\u0641\u0643 \u0628\u062B\u0642\u0629 \u0645\u0646 \u062E\u0644\u0627\u0644 \u0625\u0631\u0634\u0627\u062F \u0634\u062E\u0635\u064A \u0648\u062E\u0637\u0629 \u0645\u062F\u0631\u0648\u0633\u0629\"})}),className:\"framer-1no6dfq\",\"data-framer-name\":\"Framer Web Design\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"skdbYRpBE\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:RDeJ7KkQ8,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({fUr0WdrgA:{y:(componentViewport?.y||0)+32+0+58+0+176}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wi0x44-container\",layoutDependency:layoutDependency,layoutId:\"rwCDbg2PI-container\",children:/*#__PURE__*/_jsx(Buttons00Primary,{AUw2p3U4w:true,Eah1Nfzjr:nYWxVHYLp,fsCdu1NW4:pcHhnOKaU,height:\"100%\",id:\"rwCDbg2PI\",iDPzCKNp1:false,layoutId:\"rwCDbg2PI\",lI5Abhbh1:\"arrow-left\",style:{height:\"100%\"},variant:\"Zwc6onV32\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YcYXE.framer-6wsoqd, .framer-YcYXE .framer-6wsoqd { display: block; }\",\".framer-YcYXE.framer-1l8juhc { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 16px 32px 16px; position: relative; width: 1000px; }\",\".framer-YcYXE .framer-1yc1z2g { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-YcYXE .framer-1hk6m1d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YcYXE .framer-3h5n0j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-YcYXE .framer-1x5q9tp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: relative; width: min-content; }\",\".framer-YcYXE .framer-hhdtoy-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-YcYXE .framer-h6wgdl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-YcYXE .framer-1mhnrdx { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-YcYXE .framer-7m5qt7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YcYXE .framer-1no6dfq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-YcYXE .framer-wi0x44-container { flex: none; height: 40px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YcYXE.framer-1l8juhc, .framer-YcYXE .framer-1yc1z2g, .framer-YcYXE .framer-1hk6m1d, .framer-YcYXE .framer-3h5n0j, .framer-YcYXE .framer-1x5q9tp, .framer-YcYXE .framer-7m5qt7 { gap: 0px; } .framer-YcYXE.framer-1l8juhc > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-YcYXE.framer-1l8juhc > :first-child, .framer-YcYXE .framer-1hk6m1d > :first-child, .framer-YcYXE .framer-3h5n0j > :first-child, .framer-YcYXE .framer-1x5q9tp > :first-child { margin-left: 0px; } .framer-YcYXE.framer-1l8juhc > :last-child, .framer-YcYXE .framer-1hk6m1d > :last-child, .framer-YcYXE .framer-3h5n0j > :last-child, .framer-YcYXE .framer-1x5q9tp > :last-child { margin-right: 0px; } .framer-YcYXE .framer-1yc1z2g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-YcYXE .framer-1yc1z2g > :first-child, .framer-YcYXE .framer-7m5qt7 > :first-child { margin-top: 0px; } .framer-YcYXE .framer-1yc1z2g > :last-child, .framer-YcYXE .framer-7m5qt7 > :last-child { margin-bottom: 0px; } .framer-YcYXE .framer-1hk6m1d > *, .framer-YcYXE .framer-1x5q9tp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-YcYXE .framer-3h5n0j > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-YcYXE .framer-7m5qt7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-YcYXE.framer-v-15rtbu6.framer-1l8juhc { cursor: unset; }\",\".framer-YcYXE.framer-v-15rtbu6 .framer-1x5q9tp { cursor: pointer; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-YcYXE[data-border=\"true\"]::after, .framer-YcYXE [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 98\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fUr0WdrgA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"RAVTHRVoy\":\"title\",\"pcHhnOKaU\":\"link\",\"nbVe_mlMs\":\"price\",\"RDeJ7KkQ8\":\"details\",\"nYWxVHYLp\":\"buttonLabel\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerttlCZeYUv=withCSS(Component,css,\"framer-YcYXE\");export default FramerttlCZeYUv;FramerttlCZeYUv.displayName=\"Service Card 2\";FramerttlCZeYUv.defaultProps={height:98,width:1e3};addPropertyControls(FramerttlCZeYUv,{variant:{options:[\"oHXL1kHLo\",\"fUr0WdrgA\"],optionTitles:[\"Desktop\",\"Desktop-Open\"],title:\"Variant\",type:ControlType.Enum},RAVTHRVoy:{defaultValue:\"\u0627\u0644\u0645\u0631\u0627\u0641\u0642\u0629 \u0627\u0644\u0634\u062E\u0635\u064A\u0651\u0629 / Mentornship\",displayTextArea:false,title:\"Title\",type:ControlType.String},pcHhnOKaU:{title:\"Link\",type:ControlType.Link},nbVe_mlMs:{defaultValue:\"\u0662\u0664\u0660\u0660 / \u0634\u0647\u0631\u064A\u0651\u0627\u064B\",displayTextArea:false,title:\"Price\",type:ControlType.String},RDeJ7KkQ8:{defaultValue:\"\u0645\u0646\u0627\u0633\u0628 \u0644\u062E\u0628\u064A\u0631\u0627\u062A \u0627\u0644\u062A\u062C\u0645\u064A\u0644 \u0627\u0644\u0631\u0627\u063A\u0628\u0627\u062A \u0641\u064A \u062A\u0623\u0633\u064A\u0633 \u0623\u0633\u0627\u0633 \u0642\u0648\u064A \u0644\u0623\u0639\u0645\u0627\u0644\u0647\u0646 \u0642\u0628\u0644 \u0627\u0644\u062A\u0648\u0633\u0639. \u064A\u0633\u0627\u0639\u062F\u0643 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062C \u0639\u0644\u0649 \u062A\u062D\u0642\u064A\u0642 \u0623\u0647\u062F\u0627\u0641\u0643 \u0628\u062B\u0642\u0629 \u0645\u0646 \u062E\u0644\u0627\u0644 \u0625\u0631\u0634\u0627\u062F \u0634\u062E\u0635\u064A \u0648\u062E\u0637\u0629 \u0645\u062F\u0631\u0648\u0633\u0629\",displayTextArea:false,title:\"Details\",type:ControlType.String},nYWxVHYLp:{defaultValue:\"\u0627\u0644\u062A\u0641\u0627\u0635\u064A\u0644\",displayTextArea:false,title:\"Button Label\",type:ControlType.String}});addFonts(FramerttlCZeYUv,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...Buttons00PrimaryFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerttlCZeYUv\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"98\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fUr0WdrgA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"RAVTHRVoy\\\":\\\"title\\\",\\\"pcHhnOKaU\\\":\\\"link\\\",\\\"nbVe_mlMs\\\":\\\"price\\\",\\\"RDeJ7KkQ8\\\":\\\"details\\\",\\\"nYWxVHYLp\\\":\\\"buttonLabel\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (552ec80)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/hSpt3xkkIagSc2rA89y6/ppbfQE2HzEBsL8DA6Xmw/IhUv8dVmQ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sCtXcdwqoarcvRPhcoeF/Meq0ubuwt0UtVGf4xoUN/sMxccLUAI.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const enabledGestures={QhvFNoEAS:{hover:true,pressed:true}};const serializationHash=\"framer-DSMaa\";const variantClassNames={QhvFNoEAS:\"framer-v-139og00\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.28,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition2={delay:.1,duration:.3,ease:[.44,0,.24,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:12};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,link,subTitle,title,width,...props})=>{return{...props,Ed6NI6cHd:title??props.Ed6NI6cHd??\"Title\",olped3gAP:image??props.olped3gAP,TVSv2ZuyI:subTitle??props.TVSv2ZuyI??\"49$\",YGtkDxhwK:link??props.YGtkDxhwK};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,olped3gAP,Ed6NI6cHd,TVSv2ZuyI,YGtkDxhwK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"QhvFNoEAS\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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,children:/*#__PURE__*/_jsx(Link,{href:YGtkDxhwK,nodeId:\"QhvFNoEAS\",openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-139og00\",className,classNames)} framer-1oarexk`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QhvFNoEAS\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"QhvFNoEAS-hover\":{\"data-framer-name\":undefined},\"QhvFNoEAS-pressed\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+(((componentViewport?.height||285.5)-32-420)/2+0+0)),pixelHeight:1080,pixelWidth:1920,sizes:\"200px\",...toResponsiveImage(olped3gAP)},className:\"framer-ufjqyc\",\"data-border\":true,\"data-framer-name\":\"img\",layoutDependency:layoutDependency,layoutId:\"dvuT7_x2b\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 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}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4rvfik\",\"data-framer-name\":\"Frame 68\",layoutDependency:layoutDependency,layoutId:\"qnjUTg1Xb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7rbruh\",\"data-styles-preset\":\"IhUv8dVmQ\",children:\"Roadmap\"})}),className:\"framer-1crlhj8\",\"data-framer-name\":\"Overthink.ing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QFJqrSk77\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Ed6NI6cHd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-29gpqg\",\"data-styles-preset\":\"sMxccLUAI\",children:\"Cardinal\"})}),className:\"framer-h9n0ng\",\"data-framer-appear-id\":\"h9n0ng\",\"data-framer-name\":\"Fit-check for your wondering mind during overwhelming circumstances.\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"xIxAqMIJ5\",optimized:true,style:{\"--framer-paragraph-spacing\":\"0px\"},text:TVSv2ZuyI,variants:{\"QhvFNoEAS-hover\":{\"--extracted-r6o4lv\":\"var(--token-fc2aaa7e-84bd-43df-bf51-0f883e8ac3de, rgb(22, 22, 22))\"},\"QhvFNoEAS-pressed\":{\"--extracted-r6o4lv\":\"var(--token-fc2aaa7e-84bd-43df-bf51-0f883e8ac3de, rgb(22, 22, 22))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"QhvFNoEAS-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-29gpqg\",\"data-styles-preset\":\"sMxccLUAI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fc2aaa7e-84bd-43df-bf51-0f883e8ac3de, rgb(22, 22, 22)))\"},children:\"Cardinal\"})})},\"QhvFNoEAS-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-29gpqg\",\"data-styles-preset\":\"sMxccLUAI\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fc2aaa7e-84bd-43df-bf51-0f883e8ac3de, rgb(22, 22, 22)))\"},children:\"Cardinal\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-oizndz\",\"data-framer-name\":\"bg\",layoutDependency:layoutDependency,layoutId:\"ACRSAPT54\",style:{backgroundColor:\"var(--token-216297a2-05e6-47b9-b0ef-6231c4058816, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{\"QhvFNoEAS-hover\":{backgroundColor:\"var(--token-44cd65e8-5ad1-421f-98eb-8062760b982a, rgb(232, 232, 232))\"},\"QhvFNoEAS-pressed\":{backgroundColor:\"var(--token-e657ee59-1ab4-449f-8722-a7fff6c95774, rgb(198, 198, 198))\"}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DSMaa.framer-1oarexk, .framer-DSMaa .framer-1oarexk { display: block; }\",\".framer-DSMaa.framer-139og00 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DSMaa .framer-ufjqyc { flex: none; height: 200px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-DSMaa .framer-4rvfik { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; z-index: 2; }\",\".framer-DSMaa .framer-1crlhj8, .framer-DSMaa .framer-h9n0ng { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DSMaa .framer-oizndz { bottom: 8px; flex: none; left: 8px; overflow: hidden; position: absolute; right: 8px; top: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DSMaa.framer-139og00, .framer-DSMaa .framer-4rvfik { gap: 0px; } .framer-DSMaa.framer-139og00 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-DSMaa.framer-139og00 > :first-child, .framer-DSMaa .framer-4rvfik > :first-child { margin-top: 0px; } .framer-DSMaa.framer-139og00 > :last-child, .framer-DSMaa .framer-4rvfik > :last-child { margin-bottom: 0px; } .framer-DSMaa .framer-4rvfik > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-DSMaa.framer-v-139og00.hover .framer-oizndz, .framer-DSMaa.framer-v-139og00.pressed .framer-oizndz { bottom: 0px; left: 0px; right: 0px; top: 0px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-DSMaa[data-border=\"true\"]::after, .framer-DSMaa [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 285.5\n * @framerIntrinsicWidth 232\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"AcMYaFQae\":{\"layout\":[\"auto\",\"auto\"]},\"Q86Tv3g1R\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"olped3gAP\":\"image\",\"Ed6NI6cHd\":\"title\",\"TVSv2ZuyI\":\"subTitle\",\"YGtkDxhwK\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZNoiBJ0af=withCSS(Component,css,\"framer-DSMaa\");export default FramerZNoiBJ0af;FramerZNoiBJ0af.displayName=\"05 Cards / work\";FramerZNoiBJ0af.defaultProps={height:285.5,width:232};addPropertyControls(FramerZNoiBJ0af,{olped3gAP:{title:\"Image\",type:ControlType.ResponsiveImage},Ed6NI6cHd:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},TVSv2ZuyI:{defaultValue:\"49$\",displayTextArea:false,title:\"Sub-title\",type:ControlType.String},YGtkDxhwK:{title:\"Link\",type:ControlType.Link}});addFonts(FramerZNoiBJ0af,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZNoiBJ0af\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"olped3gAP\\\":\\\"image\\\",\\\"Ed6NI6cHd\\\":\\\"title\\\",\\\"TVSv2ZuyI\\\":\\\"subTitle\\\",\\\"YGtkDxhwK\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"232\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"285.5\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AcMYaFQae\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Q86Tv3g1R\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/itgi9RK8CLwe9MFuhYeS/SlideShow.js\";import Buttons00Secondary from\"#framer/local/canvasComponent/bvw3vo5mW/bvw3vo5mW.js\";import ConsultingCTA from\"#framer/local/canvasComponent/Hb5HfPnYC/Hb5HfPnYC.js\";import Buttons00Primary from\"#framer/local/canvasComponent/HHaIDZQa0/HHaIDZQa0.js\";import CardsArticle from\"#framer/local/canvasComponent/HIj1uCZMk/HIj1uCZMk.js\";import ClientsLogos from\"#framer/local/canvasComponent/olVrW0fd1/olVrW0fd1.js\";import CardsQuote from\"#framer/local/canvasComponent/pwViGjpKu/pwViGjpKu.js\";import Navigation from\"#framer/local/canvasComponent/r28Wzxwez/r28Wzxwez.js\";import CardsProject from\"#framer/local/canvasComponent/RQsu3EUnk/RQsu3EUnk.js\";import CardsEmail from\"#framer/local/canvasComponent/SB4nQopiu/SB4nQopiu.js\";import ServiceCard2 from\"#framer/local/canvasComponent/ttlCZeYUv/ttlCZeYUv.js\";import FooterGroup from\"#framer/local/canvasComponent/TYJvFr7rv/TYJvFr7rv.js\";import Project from\"#framer/local/canvasComponent/U4hq2QTvo/U4hq2QTvo.js\";import CardsWork from\"#framer/local/canvasComponent/ZNoiBJ0af/ZNoiBJ0af.js\";import Blog from\"#framer/local/collection/gaPE7dRf7/gaPE7dRf7.js\";import Services from\"#framer/local/collection/NBBINxJuE/NBBINxJuE.js\";import Products from\"#framer/local/collection/Qjhf0AoPK/Qjhf0AoPK.js\";import Projects from\"#framer/local/collection/tcFNAF3wI/tcFNAF3wI.js\";import*as sharedStyle from\"#framer/local/css/jXthp20cH/jXthp20cH.js\";import*as sharedStyle1 from\"#framer/local/css/uMVEOKZ0v/uMVEOKZ0v.js\";import metadataProvider from\"#framer/local/webPageMetadata/Kd_pkASvP/Kd_pkASvP.js\";const ConsultingCTAFonts=getFonts(ConsultingCTA);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const Buttons00PrimaryFonts=getFonts(Buttons00Primary);const CardsEmailFonts=getFonts(CardsEmail);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ClientsLogosFonts=getFonts(ClientsLogos);const CardsWorkFonts=getFonts(CardsWork);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const ServiceCard2Fonts=getFonts(ServiceCard2);const ProjectFonts=getFonts(Project);const Buttons00SecondaryFonts=getFonts(Buttons00Secondary);const CardsArticleFonts=getFonts(CardsArticle);const CardsProjectFonts=getFonts(CardsProject);const CardsQuoteFonts=getFonts(CardsQuote);const SlideshowFonts=getFonts(Slideshow);const YouTubeFonts=getFonts(YouTube);const FooterGroupFonts=getFonts(FooterGroup);const NavigationFonts=getFonts(Navigation);const breakpoints={C0tAbFwq2:\"(max-width: 809px)\",naeUx1UQm:\"(min-width: 1200px)\",ZXjaAXjHr:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sxTae\";const variantClassNames={C0tAbFwq2:\"framer-v-12jr6by\",naeUx1UQm:\"framer-v-s35loq\",ZXjaAXjHr:\"framer-v-ge2dr6\"};const transition1={delay:0,duration:.3,ease:[.44,0,.24,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:12};const transition2={delay:.2,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition3={delay:.3,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"VRE2CI92y\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"naeUx1UQm\",Phone:\"C0tAbFwq2\",Tablet:\"ZXjaAXjHr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"naeUx1UQm\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,qONU8xSidg2WeXp9TT,aCpwvqMVHg2WeXp9TT,TnAWmEa6Sg2WeXp9TT,JLZ5V1z3Mg2WeXp9TT,dCMN7FTcsg2WeXp9TT,idg2WeXp9TT,mDZB0Pa5aJkGhbPnnQ,FuNp7t1FIJkGhbPnnQ,ntnwGB1DpJkGhbPnnQ,rYjgmzJs6JkGhbPnnQ,idJkGhbPnnQ,NPxtAkr0nSw7z4Ydjy,v1TaSfUujSw7z4Ydjy,byg0hv_RBSw7z4Ydjy,pN_Btkza_Sw7z4Ydjy,idSw7z4Ydjy,vYScKvA01VRE2CI92y,kfz8ZsHYyVRE2CI92y,fwIhkQ15OVRE2CI92y,Jmva_ICcQVRE2CI92y,Mcz4c5gH7VRE2CI92y,idVRE2CI92y,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const QrJBV1Wzl3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"ndne2qT_H\");const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId1=useRouteElementId(\"SRUmO8WMN\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"QZu7W6aoe\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"MvHrJbtC6\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"GxBi87FEV\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"s1o9I7xmk\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"Zdxf4VJzK\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"agRj0m6d6\");const ref8=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"naeUx1UQm\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-35392d7f-121d-44a9-bca2-b59803721434, rgb(253, 250, 247)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-s35loq\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1siklor\",\"data-framer-name\":\"main\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-11zkf46\",\"data-framer-name\":\"bio\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11o2d3y-container\",nodeId:\"Sj0cCZdII\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(ConsultingCTA,{height:\"100%\",id:\"Sj0cCZdII\",layoutId:\"Sj0cCZdII\",style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ck724\",\"data-framer-name\":\"Paragraph\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Fkb2JlIEFyYWJpYyBSZWd1bGFy\",\"--framer-font-family\":'\"Adobe Arabic Regular\", \"Adobe Arabic Regular Placeholder\", sans-serif',\"--framer-font-size\":\"34px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-51dac8ae-2c77-432a-8518-cf185739eb1b, rgb(111, 111, 111))\",direction:\"rtl\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-fc2aaa7e-84bd-43df-bf51-0f883e8ac3de, rgb(13, 13, 13))\"},children:\"\u0627\u0644\u0645\u0631\u062C\u0639 \u0641\u064A \u0631\u064A\u0627\u062F\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u0644\u0623\u0646\u062C\u062D \u062E\u0628\u0631\u0627\u0621 \u0627\u0644\u0639\u0627\u0644\u0645 \u0627\u0644\u0639\u0631\u0628\u064A. \"}),\"\u0623\u0633\u0627\u0639\u062F\u0647\u0645 \u0628\u062E\u062F\u0645\u0627\u062A \u0645\u062B\u0644 \u0627\u0633\u062A\u0631\u0627\u062A\u064A\u062C\u064A\u0651\u0629 \u0627\u0644\u062A\u0645\u0631\u0643\u0632\u060C \u0639\u0645\u0644 \u0627\u0644\u0645\u0648\u0642\u0639\u060C \u062A\u0633\u0648\u064A\u0642 \u0627\u0644\u062E\u0628\u0631\u0627\u062A.\"]})}),className:\"framer-qqg1fh\",\"data-framer-appear-id\":\"qqg1fh\",\"data-framer-name\":\"Inventing ideas and building calm-focused businesses\",fonts:[\"CUSTOM;Adobe Arabic Regular\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qapsxn\",\"data-framer-name\":\"buttons\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{height:48,width:`calc(min(${componentViewport?.width||\"100vw\"}, 560px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-hq9b24-container\",\"data-framer-appear-id\":\"hq9b24\",id:\"hq9b24\",initial:animation1,nodeId:\"v5SaTWkhW\",optimized:true,rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Buttons00Primary,{AUw2p3U4w:true,Eah1Nfzjr:\"\u0627\u0646\u0636\u0645 \u0644\u062A\u0635\u0644\u0643 \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062A\",height:\"100%\",id:\"v5SaTWkhW\",iDPzCKNp1:false,layoutId:\"v5SaTWkhW\",lI5Abhbh1:\"envelope-open\",QrJBV1Wzl:QrJBV1Wzl3bnx0g({overlay}),style:{height:\"100%\"},variant:overlay.visible?\"CJB4Hd28S\":\"Zwc6onV32\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1mdgwvo\"),\"data-framer-portal-id\":\"hq9b24\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"hUNorjeok\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"336px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-rprs41-container\"),\"data-framer-name\":\"email input\",\"data-framer-portal-id\":\"hq9b24\",inComponentSlot:true,name:\"email input\",nodeId:\"ZA8N857cQ\",rendersWithMotion:true,scopeId:\"Kd_pkASvP\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CardsEmail,{ABMklF431:\"\u0627\u0646\u0636\u0640\u0640\u0645 \u0644 4800+ \u062E\u0628\u064A\u0631 \u0639\u0631\u0628\u064A \u062A\u0635\u0644\u0647\u0645 \u0645\u0642\u0627\u0644\u0627\u062A\u064A \u0639\u0644\u0649 \u0627\u0644\u0625\u064A\u0645\u064A\u0644\",height:\"100%\",id:\"ZA8N857cQ\",layoutId:\"ZA8N857cQ\",name:\"email input\",style:{width:\"100%\"},tdLQbfF8x:\"\u062A\u0631\u0643\u0651\u0640\u0640\u0632 \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062A \u0639\u0644\u0649 \u0631\u064A\u0627\u062F\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u0641\u064A \u0628\u064A\u0639 \u0627\u0644\u062E\u0628\u0631\u0627\u062A. \u0645\u0646 \u0627\u0644\u062A\u0633\u0648\u064A\u0642 \u0648\u0627\u0644\u0628\u064A\u0639 \u0627\u0644\u0649 \u0627\u0644\u062A\u0645\u0631\u0643\u0632 \u0648\u0627\u0644\u062A\u0633\u0639\u064A\u0631\",variant:\"pMtAI6l_h\",width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SRUmO8WMN\",webPageId:\"Kd_pkASvP\"},implicitPathVariables:undefined},{href:{hash:\":SRUmO8WMN\",webPageId:\"Kd_pkASvP\"},implicitPathVariables:undefined},{href:{hash:\":SRUmO8WMN\",webPageId:\"Kd_pkASvP\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{height:48,width:`calc(min(${componentViewport?.width||\"100vw\"}, 560px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-gz3ula-container\",\"data-framer-appear-id\":\"gz3ula\",initial:animation1,nodeId:\"YaFd1NzrI\",optimized:true,rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{fsCdu1NW4:resolvedLinks[2],style:{height:\"100%\",width:\"100%\"}},ZXjaAXjHr:{fsCdu1NW4:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Buttons00Primary,{AUw2p3U4w:false,Eah1Nfzjr:\"\u0627\u0644\u062E\u062F\u0645\u0627\u062A\",fsCdu1NW4:resolvedLinks[0],height:\"100%\",id:\"YaFd1NzrI\",iDPzCKNp1:true,layoutId:\"YaFd1NzrI\",lI5Abhbh1:\"\",style:{height:\"100%\"},variant:\"CJB4Hd28S\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 560px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`calc(min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px), 560px) - 64px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4393q-container\",nodeId:\"wzUocfp0a\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(ClientsLogos,{height:\"100%\",id:\"wzUocfp0a\",layoutId:\"wzUocfp0a\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1sbx11y\",\"data-framer-appear-id\":\"1sbx11y\",\"data-framer-name\":\"Products\",id:elementId,initial:animation1,optimized:true,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mr5pv2\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ga01i1\",\"data-styles-preset\":\"jXthp20cH\",style:{direction:\"rtl\"},children:\" \u0627\u0644\u0645\u0646\u062A\u062C\u0627\u062A\"})}),className:\"framer-w2z8l9\",\"data-framer-name\":\"Projects & Experiments\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0rfi1\",\"data-border\":true,\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rty0mw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"g2WeXp9TT\",data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"g2WeXp9TT\",name:\"qONU8xSid\",type:\"Identifier\"},{collection:\"g2WeXp9TT\",name:\"aCpwvqMVH\",type:\"Identifier\"},{collection:\"g2WeXp9TT\",name:\"TnAWmEa6S\",type:\"Identifier\"},{collection:\"g2WeXp9TT\",name:\"JLZ5V1z3M\",type:\"Identifier\"},{collection:\"g2WeXp9TT\",name:\"dCMN7FTcs\",type:\"Identifier\"},{collection:\"g2WeXp9TT\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({aCpwvqMVH:aCpwvqMVHg2WeXp9TT,dCMN7FTcs:dCMN7FTcsg2WeXp9TT,id:idg2WeXp9TT,JLZ5V1z3M:JLZ5V1z3Mg2WeXp9TT,qONU8xSid:qONU8xSidg2WeXp9TT,TnAWmEa6S:TnAWmEa6Sg2WeXp9TT},index)=>{aCpwvqMVHg2WeXp9TT??=\"\";TnAWmEa6Sg2WeXp9TT??=0;JLZ5V1z3Mg2WeXp9TT??=\"\";dCMN7FTcsg2WeXp9TT??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`g2WeXp9TT-${idg2WeXp9TT}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{dCMN7FTcs:dCMN7FTcsg2WeXp9TT},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:JLZ5V1z3Mg2WeXp9TT,implicitPathVariables:{dCMN7FTcs:dCMN7FTcsg2WeXp9TT}},{href:JLZ5V1z3Mg2WeXp9TT,implicitPathVariables:{dCMN7FTcs:dCMN7FTcsg2WeXp9TT}},{href:JLZ5V1z3Mg2WeXp9TT,implicitPathVariables:{dCMN7FTcs:dCMN7FTcsg2WeXp9TT}}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:285,children:/*#__PURE__*/_jsx(Container,{className:\"framer-44v43v-container\",\"data-framer-name\":\"item 1\",name:\"item 1\",nodeId:\"SS5VtvNCM\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{YGtkDxhwK:resolvedLinks1[2]},ZXjaAXjHr:{YGtkDxhwK:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(CardsWork,{Ed6NI6cHd:aCpwvqMVHg2WeXp9TT,height:\"100%\",id:\"SS5VtvNCM\",layoutId:\"SS5VtvNCM\",name:\"item 1\",olped3gAP:toResponsiveImage(qONU8xSidg2WeXp9TT),TVSv2ZuyI:numberToString(TnAWmEa6Sg2WeXp9TT,{compactDisplay:\"short\",currency:\"USD\",currencyDisplay:\"symbol\",locale:\"en-GB\",notation:\"compact\",style:\"currency\"},activeLocaleCode),width:\"100%\",YGtkDxhwK:resolvedLinks1[0]})})})})})})},idg2WeXp9TT);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-phg3v\",\"data-border\":true,\"data-framer-name\":\"border\"})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-l3ejpv\",\"data-framer-name\":\"services\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h54poy\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ga01i1\",\"data-styles-preset\":\"jXthp20cH\",style:{direction:\"rtl\"},children:\"\u0627\u0644\u062E\u062F\u0645\u0627\u062A\"})}),className:\"framer-ml5zdg\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fufidi\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ew7cvi\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JkGhbPnnQ\",data:Services,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"JkGhbPnnQ\",name:\"mDZB0Pa5a\",type:\"Identifier\"},{collection:\"JkGhbPnnQ\",name:\"FuNp7t1FI\",type:\"Identifier\"},{collection:\"JkGhbPnnQ\",name:\"ntnwGB1Dp\",type:\"Identifier\"},{collection:\"JkGhbPnnQ\",name:\"rYjgmzJs6\",type:\"Identifier\"},{collection:\"JkGhbPnnQ\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({FuNp7t1FI:FuNp7t1FIJkGhbPnnQ,id:idJkGhbPnnQ,mDZB0Pa5a:mDZB0Pa5aJkGhbPnnQ,ntnwGB1Dp:ntnwGB1DpJkGhbPnnQ,rYjgmzJs6:rYjgmzJs6JkGhbPnnQ},index1)=>{mDZB0Pa5aJkGhbPnnQ??=\"\";FuNp7t1FIJkGhbPnnQ??=\"\";ntnwGB1DpJkGhbPnnQ??=\"\";rYjgmzJs6JkGhbPnnQ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JkGhbPnnQ-${idJkGhbPnnQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FuNp7t1FI:FuNp7t1FIJkGhbPnnQ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{FuNp7t1FI:FuNp7t1FIJkGhbPnnQ},webPageId:\"Zu78JX9fI\"},implicitPathVariables:undefined},{href:{pathVariables:{FuNp7t1FI:FuNp7t1FIJkGhbPnnQ},webPageId:\"Zu78JX9fI\"},implicitPathVariables:undefined},{href:{pathVariables:{FuNp7t1FI:FuNp7t1FIJkGhbPnnQ},webPageId:\"Zu78JX9fI\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 560px) - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:98,width:\"528px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kttmgc-container\",nodeId:\"GIOdYxrJG\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{pcHhnOKaU:resolvedLinks2[2]},ZXjaAXjHr:{pcHhnOKaU:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(ServiceCard2,{height:\"100%\",id:\"GIOdYxrJG\",layoutId:\"GIOdYxrJG\",nbVe_mlMs:ntnwGB1DpJkGhbPnnQ,nYWxVHYLp:\"\u0627\u0644\u062A\u0641\u0627\u0635\u064A\u0644\",pcHhnOKaU:resolvedLinks2[0],RAVTHRVoy:mDZB0Pa5aJkGhbPnnQ,RDeJ7KkQ8:rYjgmzJs6JkGhbPnnQ,style:{width:\"100%\"},variant:\"oHXL1kHLo\",width:\"100%\"})})})})})})})},idJkGhbPnnQ);})})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1jv6ird\",\"data-framer-name\":\"services\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o23crm\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ga01i1\",\"data-styles-preset\":\"jXthp20cH\",style:{direction:\"rtl\"},children:\"\u0623\u062D\u062F\u062B \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \"})}),className:\"framer-uq0zxv\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kxa158\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wej5fk\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Sw7z4Ydjy\",data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"Sw7z4Ydjy\",name:\"NPxtAkr0n\",type:\"Identifier\"},{collection:\"Sw7z4Ydjy\",name:\"v1TaSfUuj\",type:\"Identifier\"},{collection:\"Sw7z4Ydjy\",name:\"byg0hv_RB\",type:\"Identifier\"},{collection:\"Sw7z4Ydjy\",name:\"pN_Btkza_\",type:\"Identifier\"},{collection:\"Sw7z4Ydjy\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({byg0hv_RB:byg0hv_RBSw7z4Ydjy,id:idSw7z4Ydjy,NPxtAkr0n:NPxtAkr0nSw7z4Ydjy,pN_Btkza_:pN_Btkza_Sw7z4Ydjy,v1TaSfUuj:v1TaSfUujSw7z4Ydjy},index2)=>{v1TaSfUujSw7z4Ydjy??=\"\";byg0hv_RBSw7z4Ydjy??=\"\";pN_Btkza_Sw7z4Ydjy??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Sw7z4Ydjy-${idSw7z4Ydjy}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{pN_Btkza_:pN_Btkza_Sw7z4Ydjy},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:byg0hv_RBSw7z4Ydjy,implicitPathVariables:{pN_Btkza_:pN_Btkza_Sw7z4Ydjy}},{href:byg0hv_RBSw7z4Ydjy,implicitPathVariables:{pN_Btkza_:pN_Btkza_Sw7z4Ydjy}},{href:byg0hv_RBSw7z4Ydjy,implicitPathVariables:{pN_Btkza_:pN_Btkza_Sw7z4Ydjy}}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{height:265,width:`calc(min(${componentViewport?.width||\"100vw\"}, 560px) - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:318,width:\"528px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fawy37-container\",nodeId:\"LMHsAaNLX\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{pmdnGVItq:resolvedLinks3[2]},ZXjaAXjHr:{pmdnGVItq:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Project,{aCb6fd8iD:v1TaSfUujSw7z4Ydjy,height:\"100%\",id:\"LMHsAaNLX\",ijhmAPBvT:toResponsiveImage(NPxtAkr0nSw7z4Ydjy),layoutId:\"LMHsAaNLX\",pmdnGVItq:resolvedLinks3[0],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})},idSw7z4Ydjy);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hdvvje\",\"data-framer-name\":\"bottom space\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"A38Loo2Gs\"},implicitPathVariables:undefined},{href:{webPageId:\"A38Loo2Gs\"},implicitPathVariables:undefined},{href:{webPageId:\"A38Loo2Gs\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k5t7l7-container\",\"data-framer-name\":\"view all articles button\",name:\"view all articles button\",nodeId:\"dGdSgB2Y6\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{yD3e2n5Nz:resolvedLinks4[2]},ZXjaAXjHr:{yD3e2n5Nz:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Buttons00Secondary,{aKiJxfa8K:\"\u062C\u0645\u064A\u0639 \u0627\u0644\u0623\u0639\u0645\u0627\u0644\",CX6OpC_lW:\"arrow-left\",height:\"100%\",id:\"dGdSgB2Y6\",layoutId:\"dGdSgB2Y6\",name:\"view all articles button\",style:{width:\"100%\"},width:\"100%\",yD3e2n5Nz:resolvedLinks4[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-12kvzf\",\"data-framer-name\":\"Blog\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cl9oh3\",\"data-framer-name\":\"Newsletter\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bro09u\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ga01i1\",\"data-styles-preset\":\"jXthp20cH\",style:{direction:\"rtl\"},children:\"\u0627\u0644\u0646\u0634\u0640\u0640\u0631\u0629 \u0627\u0644\u0628\u0631\u064A\u062F\u064A\u0651\u0629 \u0648\u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062A\"})}),className:\"framer-1y6kh6g\",\"data-framer-name\":\"Newsletter\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lv3d2q\",\"data-framer-name\":\"articles\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wwxhr2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:4,query:{from:{alias:\"VRE2CI92y\",data:Blog,type:\"Collection\"},select:[{collection:\"VRE2CI92y\",name:\"vYScKvA01\",type:\"Identifier\"},{collection:\"VRE2CI92y\",name:\"kfz8ZsHYy\",type:\"Identifier\"},{collection:\"VRE2CI92y\",name:\"fwIhkQ15O\",type:\"Identifier\"},{collection:\"VRE2CI92y\",name:\"Jmva_ICcQ\",type:\"Identifier\"},{collection:\"VRE2CI92y\",name:\"Mcz4c5gH7\",type:\"Identifier\"},{collection:\"VRE2CI92y\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({fwIhkQ15O:fwIhkQ15OVRE2CI92y,id:idVRE2CI92y,Jmva_ICcQ:Jmva_ICcQVRE2CI92y,kfz8ZsHYy:kfz8ZsHYyVRE2CI92y,Mcz4c5gH7:Mcz4c5gH7VRE2CI92y,vYScKvA01:vYScKvA01VRE2CI92y},index3)=>{vYScKvA01VRE2CI92y??=\"\";kfz8ZsHYyVRE2CI92y??=\"\";fwIhkQ15OVRE2CI92y??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`VRE2CI92y-${idVRE2CI92y}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{vYScKvA01:vYScKvA01VRE2CI92y},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{vYScKvA01:vYScKvA01VRE2CI92y},webPageId:\"D_d6t_3YC\"},motionChild:true,nodeId:\"iWHr3TBkW\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wrhoeu framer-1ses4rs\",\"data-framer-name\":\"article\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{width:`min(${componentViewport?.width||\"100vw\"}, 560px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:160,width:\"560px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rq0s35-container\",nodeId:\"ZH0w843Ja\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsArticle,{height:\"100%\",id:\"ZH0w843Ja\",layoutId:\"ZH0w843Ja\",mcuGqIKl4:kfz8ZsHYyVRE2CI92y,nv4cTPV7V:toResponsiveImage(Mcz4c5gH7VRE2CI92y),style:{width:\"100%\"},TsUY9yLhj:fwIhkQ15OVRE2CI92y,variant:\"CBCllQIz0\",vCuuIsIQv:toDateString(Jmva_ICcQVRE2CI92y,{dateStyle:\"medium\",locale:\"en-GB\"},activeLocaleCode),width:\"100%\"})})})})})})})},idVRE2CI92y);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sobxey\",\"data-framer-name\":\"bottom space\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eRA07IsjL\"},implicitPathVariables:undefined},{href:{webPageId:\"eRA07IsjL\"},implicitPathVariables:undefined},{href:{webPageId:\"eRA07IsjL\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rakjmi-container\",\"data-framer-name\":\"view all articles button\",name:\"view all articles button\",nodeId:\"j2GSpOZTz\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{yD3e2n5Nz:resolvedLinks5[2]},ZXjaAXjHr:{yD3e2n5Nz:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Buttons00Secondary,{aKiJxfa8K:\"\u062C\u0645\u064A\u0639 \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062A\",CX6OpC_lW:\"arrow-left\",height:\"100%\",id:\"j2GSpOZTz\",layoutId:\"j2GSpOZTz\",name:\"view all articles button\",style:{width:\"100%\"},width:\"100%\",yD3e2n5Nz:resolvedLinks5[0]})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h35ra7\",\"data-framer-name\":\"sign up\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 560px) - 24px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:236,width:\"536px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ovhti-container\",\"data-framer-name\":\"email input\",name:\"email input\",nodeId:\"KWOt0LxZh\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsEmail,{ABMklF431:\"\u0627\u0646\u0636\u0640\u0640\u0645 \u0644 4800+ \u062E\u0628\u064A\u0631 \u0639\u0631\u0628\u064A \u062A\u0635\u0644\u0647\u0645 \u0645\u0642\u0627\u0644\u0627\u062A\u064A \u0639\u0644\u0649 \u0627\u0644\u0625\u064A\u0645\u064A\u0644\",height:\"100%\",id:\"KWOt0LxZh\",layoutId:\"KWOt0LxZh\",name:\"email input\",style:{width:\"100%\"},tdLQbfF8x:\"\u062A\u0631\u0643\u0651\u0640\u0640\u0632 \u0627\u0644\u0645\u0642\u0627\u0644\u0627\u062A \u0639\u0644\u0649 \u0631\u064A\u0627\u062F\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u0641\u064A \u0628\u064A\u0639 \u0627\u0644\u062E\u0628\u0631\u0627\u062A. \u0645\u0646 \u0627\u0644\u062A\u0633\u0648\u064A\u0642 \u0648\u0627\u0644\u0628\u064A\u0639 \u0627\u0644\u0649 \u0627\u0644\u062A\u0645\u0631\u0643\u0632 \u0648\u0627\u0644\u062A\u0633\u0639\u064A\u0631\",variant:\"pMtAI6l_h\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1clia3p\",\"data-framer-appear-id\":\"1clia3p\",\"data-framer-name\":\"Projects\",id:elementId4,initial:animation1,optimized:true,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wpeyf0\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ga01i1\",\"data-styles-preset\":\"jXthp20cH\",style:{direction:\"rtl\"},children:\"\u0645\u0634\u0627\u0631\u064A\u0639\u064A \u0627\u0644\u062D\u0627\u0644\u064A\u0651\u0640\u0640\u0640\u0629\"})}),className:\"framer-14oy2ni\",\"data-framer-name\":\"Projects & Experiments\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ur4gy\",\"data-framer-name\":\"projects\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{width:`min(${componentViewport?.width||\"100vw\"}, 560px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px), 560px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y51kb9-container\",\"data-framer-name\":\"project 2\",name:\"project 2\",nodeId:\"TOb_2QUtP\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsProject,{eyij5FR9y:true,FD40T9ewa:\"\u062A\u062C\u0631\u0628\u0629 \u0645\u062E\u062A\u0644\u0641\u0629 \u0641\u064A \u0625\u062F\u0627\u0631\u0629 \u0646\u0634\u0631\u062A\u0643 \u0627\u0644\u0628\u0631\u064A\u062F\u064A\u0651\u0629 \u0648\u0645\u062F\u0648\u0651\u0646\u062A\u0643\",height:\"100%\",id:\"TOb_2QUtP\",layoutId:\"TOb_2QUtP\",name:\"project 2\",style:{width:\"100%\"},u2OGD4R7M:\"nashra.ai\",variant:\"G2_L0TUot\",width:\"100%\",X3OgCk8xH:\"\u0646\u0634\u0631\u0629\",ZHFqT4Lbc:addImageAlt({src:\"https://framerusercontent.com/images/Fo7WiWzQUzhnjgJZ0eDjl5wKt4.svg\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{width:`min(${componentViewport?.width||\"100vw\"}, 560px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px), 560px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jw2q0d-container\",\"data-framer-name\":\"project 1\",name:\"project 1\",nodeId:\"jIll1L4_p\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsProject,{eyij5FR9y:true,FD40T9ewa:\"\u062D\u0648\u0627\u0631\u0627\u062A \u0639\u0646 \u0631\u064A\u0627\u062F\u0629 \u0627\u0644\u0623\u0639\u0645\u0627\u0644 \u0648\u0628\u064A\u0639 \u0627\u0644\u062E\u0628\u0631\u0627\u062A \u0641\u064A \u0627\u0644\u0639\u0627\u0644\u0645 \u0627\u0644\u0627\u0628\u062F\u0627\u0639\u064A. \u0645\u0639 \u0645\u062D\u0645\u0651\u062F \u0627\u0644\u062D\u0643\u064A\u0645\",height:\"100%\",id:\"jIll1L4_p\",layoutId:\"jIll1L4_p\",name:\"project 1\",style:{width:\"100%\"},u2OGD4R7M:\"https://www.youtube.com/@hakeem.podcast\",variant:\"G2_L0TUot\",width:\"100%\",X3OgCk8xH:\"\u0628\u0648\u062F\u0643\u0627\u0633\u062A \u062D\u0643\u064A\u0640\u0640\u0640\u0645\",ZHFqT4Lbc:addImageAlt({src:\"https://framerusercontent.com/images/VPNqcqpXmFweob5Kyqa0C53KI.png\",srcSet:\"https://framerusercontent.com/images/VPNqcqpXmFweob5Kyqa0C53KI.png?scale-down-to=1024 545w,https://framerusercontent.com/images/VPNqcqpXmFweob5Kyqa0C53KI.png 879w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{width:`min(${componentViewport?.width||\"100vw\"}, 560px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:`min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px), 560px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k0pgw4-container\",\"data-framer-name\":\"project 3\",name:\"project 3\",nodeId:\"PsAJA4LHT\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsProject,{eyij5FR9y:true,FD40T9ewa:\"\u062A\u0634\u0643\u064A\u0644\u0629 \u0645\u062E\u062A\u0627\u0631\u0629 \u0645\u0646 \u0646\u064F\u062E\u0628\u0629 \u062A\u0635\u0627\u0645\u064A\u0645 \u0627\u0644\u0645\u0648\u0627\u0642\u0639 \u0627\u0644\u0639\u0631\u0628\u064A\u0651\u0640\u0640\u0629. \u0628\u0627\u0644\u0625\u0636\u0627\u0641\u0629 \u0627\u0644\u0649 \u0623\u062F\u0648\u0627\u062A \u0648\u0645\u0631\u0627\u062C\u0639 \u0644\u062A\u0635\u0645\u064A\u0645 \u0627\u0644\u0645\u0648\u0627\u0642\u0639\",height:\"100%\",id:\"PsAJA4LHT\",layoutId:\"PsAJA4LHT\",name:\"project 3\",style:{width:\"100%\"},u2OGD4R7M:\"ilham.io\",variant:\"G2_L0TUot\",width:\"100%\",X3OgCk8xH:\"\u0625\u0644\u0647\u0640\u0640\u0640\u0627\u0645\",ZHFqT4Lbc:addImageAlt({src:\"https://framerusercontent.com/images/Z57NOFpJxLwzuCZ75lo3wHyxJ8.png\"},\"\")})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-z18pio\",\"data-framer-name\":\"Testimonies\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11j7hly\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y1dtqh\",\"data-styles-preset\":\"uMVEOKZ0v\",style:{direction:\"rtl\"},children:\"\u0643\u0644\u0645\u0627\u062A \u0645\u0646 \u0623\u0635\u062F\u0642\u0627\u0626\u064A..\"})}),className:\"framer-1idbrsn\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gby6s\",\"data-framer-name\":\"quotes\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12aid7o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kEd1KU1AQ\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"kEd1KU1AQ\",intervalControl:3,itemAmount:1,layoutId:\"kEd1KU1AQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:\"560px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-164wl9e-container\",\"data-framer-name\":\"quote 1\",inComponentSlot:true,name:\"quote 1\",nodeId:\"AHROf6ODB\",rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsQuote,{height:\"100%\",id:\"AHROf6ODB\",layoutId:\"AHROf6ODB\",name:\"quote 1\",o9U2Acj96:\"\u062F\u064A\u0645\u0627 \u0646\u062C\u0651\u0627\u0631\",style:{height:\"100%\",width:\"100%\"},variant:\"Ub77OA1Sk\",width:\"100%\",zrJOZ6MA8:\"\u0645\u0633\u062A\u0634\u0627\u0631 \u0646\u0641\u0633\u064A\",zyYw0Fbcr:\" \u0627\u0644\u0639\u0645\u0644 \u0645\u0639 \u0627\u0644\u0627\u0633\u062A\u0627\u0630 \u0645\u062D\u0645\u062F \u0641\u064A\u0647 \u062D\u0631\u0641\u064A\u0629 \u0639\u0627\u0644\u064A\u0629 \u0648 \u0627\u0647\u062A\u0645\u0627\u0645 \u0639\u0645\u064A\u0642 \u0628\u0623\u0647\u062F\u0627\u0641 \u0627\u0644\u0645\u0648\u0642\u0639 \u0648 \u0628\u0646\u0627\u0621\u0647 \u0628\u0627\u0644\u0634\u0643\u0644 \u0627\u0644\u0645\u0646\u0627\u0633\u0628 . \u0645\u0627 \u064A\u0645\u064A\u0632 \u0627\u0644\u0639\u0645\u0644 \u0645\u0639\u0647 \u0647\u0648 \u0642\u062F\u0631\u062A\u0647 \u0639\u0644\u0649 \u062A\u062D\u062F\u064A\u062F \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u0648 \u0628\u0646\u0627\u0621 \u0627\u0633\u062A\u0631\u0627\u062A\u064A\u062C\u0629 \u0648\u0627\u0636\u062D\u0629 \u0648 \u0645\u0645\u0646\u0647\u062C\u0629 \u0644\u062D\u0644\u0647\u0627 \u0628\u0623\u0633\u0644\u0648\u0628 \u0641\u064A\u0647 \u0628\u0633\u0627\u0637\u0629 \u0648 \u0639\u0645\u0642\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"560px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vc6q0u-container\",\"data-framer-name\":\"quote 3\",inComponentSlot:true,name:\"quote 3\",nodeId:\"WXcrF93XU\",rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsQuote,{height:\"100%\",id:\"WXcrF93XU\",layoutId:\"WXcrF93XU\",name:\"quote 3\",o9U2Acj96:\"\u0639\u062F\u0646\u0627\u0646 \u0648\u0627\u0636\u062D\u0629\",style:{height:\"100%\",width:\"100%\"},variant:\"AwGsqdMfx\",width:\"100%\",zrJOZ6MA8:\"\u0623\u062F\u0631 - \u062F\u0628\u064A\",zyYw0Fbcr:\"\u062A\u0627\u0628\u0639\u062A \u0645\u062D\u0645\u062F \u0639\u0644\u0649 \u0627\u0644\u0627\u0646\u0633\u062A\u062C\u0631\u0627\u0645 \u0644\u0623\u0643\u062B\u0631 \u0645\u0646 \u0639\u0627\u0645\u060C \u062B\u0645 \u062A\u0648\u0627\u0635\u0644\u062A \u0645\u0639\u0647 \u0644\u0639\u0645\u0644 \u0645\u0648\u0642\u0639 \u0644\u0634\u0631\u0643\u062A\u064A\u060C \u0635\u062F\u0645\u0646\u064A \u0628\u0637\u0631\u064A\u0642\u0629 \u062A\u0646\u0641\u064A\u0630\u0647 \u0627\u0644\u0631\u0627\u0626\u0639\u0629 \u0648\u062A\u0639\u0644\u0645\u062A \u0645\u0646\u0647 \u0627\u0644\u0643\u062B\u064A\u0631 \u0648\u0627\u0644\u0622\u0646 \u0623\u0635\u0628\u062D \u0645\u0631\u062C\u0639 \u0644\u064A \u0628\u0643\u0644 \u0645\u0627 \u0627\u062D\u062A\u0627\u062C\u0647 \u0645\u0646 \u0628\u0631\u0627\u0646\u062F \u0627\u0648 \u0645\u0648\u0642\u0639 \u0648\u0643\u0627\u0646 \u0627\u0641\u0636\u0644 \u0627\u0633\u062A\u0634\u0645\u0627\u0631 \u0644\u0644\u0645\u0627\u0644 \u0641\u064A \u0634\u0631\u0643\u062A\u064A. \u0623\u0646\u0627 \u0641\u062E\u0648\u0631 \u0628\u0627\u0644\u0639\u0645\u0644 \u0645\u0639\u0647 \u0648\u0623\u0646\u0635\u062D \u0643\u0644 \u0645\u0646 \u064A\u0631\u064A\u062F \u0645\u0627 \u0647\u0648 \u0645\u062E\u062A\u0644\u0641 \u0648\u062E\u0627\u0631\u062C \u0639\u0646 \u0627\u0644\u0635\u0646\u062F\u0648\u0642 \u0627\u0644\u0645\u0645\u0644 \u0648\u0627\u0644\u062A\u0642\u0644\u064A\u062F\u064A \u0628\u0645\u062A\u0627\u0628\u0639\u062A\u0647 \u0648\u0627\u0644\u062A\u0648\u0627\u0635\u0644 \u0645\u0639\u0647 \u0648\u0644\u0648 \u0639\u0644\u0649 \u0627\u0644\u0623\u0642\u0644 \u0644\u0627\u0633\u062A\u0634\u0627\u0631\u0629.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:317,width:\"560px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vyldr8-container\",\"data-framer-name\":\"quote 4\",inComponentSlot:true,name:\"quote 4\",nodeId:\"aWGiXSTYu\",rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsQuote,{height:\"100%\",id:\"aWGiXSTYu\",layoutId:\"aWGiXSTYu\",name:\"quote 4\",o9U2Acj96:\"\u0623\u0645\u0640\u0640\u0644 \u0639\u062B\u0645\u0627\u0646\",style:{height:\"100%\",width:\"100%\"},variant:\"Ub77OA1Sk\",width:\"100%\",zrJOZ6MA8:\"\u0631\u0627\u0626\u062F \u0623\u0639\u0645\u0627\u0644 / \u0645\u062A\u062D\u062F\u0651\u062B\",zyYw0Fbcr:\"\u0645\u062D\u0645\u062F \u0634\u062E\u0635 \u0627\u0633\u062A\u062B\u0646\u0627\u0626\u064A \u0641\u064A \u0637\u0631\u064A\u0642\u0629 \u062A\u0641\u0643\u064A\u0631\u0647 \u0648\u0639\u0645\u0644\u0647. \u062E\u0628\u0631\u062A\u0647 \u0641\u064A \u0627\u0644\u062A\u0633\u0648\u064A\u0642 \u0648\u0633\u064A\u0643\u0648\u0644\u0648\u062C\u064A\u0629 \u0627\u0644\u0645\u0633\u062A\u0647\u0644\u0643 \u0648\u0627\u0633\u062A\u0631\u0627\u062A\u064A\u062C\u064A\u0627\u062A \u0627\u0644\u0628\u064A\u0639 \u062F\u0639\u0645\u062A\u0646\u0627 \u0639\u0644\u0649 \u062A\u062D\u062F\u064A \u0645\u0639\u062A\u0642\u062F\u0627\u062A\u0646\u0627\u060C \u0648\u062A\u0635\u0645\u064A\u0645 \u062E\u062F\u0645\u0627\u062A\u0646\u0627 \u0641\u064A \u0634\u0631\u0643\u0629 \u0646\u0642\u0637\u062A\u064A\u0646 \u0628\u0637\u0631\u064A\u0642\u0629 \u062A\u062A\u0645\u062D\u0648\u0631 \u062D\u0648\u0644 \u0627\u062D\u062A\u064A\u0627\u062C\u0627\u062A \u0639\u0645\u0644\u0627\u0626\u0646\u0627\u060C \u062B\u0645 \u062A\u0637\u0648\u064A\u0631 \u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0627\u0644\u0643\u062A\u0631\u0648\u0646\u064A \u0628\u0634\u0643\u0644 \u0641\u0639\u0627\u0644 \u0648\u062C\u0630\u0627\u0628. \u062D\u062A\u0649 \u0639\u0646\u062F\u0645\u0627 \u0648\u0627\u062C\u0647\u062A\u0646\u0627 \u0645\u0634\u0627\u0643\u0644 \u0645\u0639\u064A\u0646\u0629 (\u062A\u062D\u0648\u064A\u0644 \u0644\u063A\u0629 \u0627\u0644\u0645\u0648\u0642\u0639 \u0625\u0644\u0649 \u0627\u0644\u0627\u0646\u062C\u0644\u064A\u0632\u064A\u0629\u060C \u0627\u062E\u062A\u0631\u0627\u0642 \u0627\u0644\u0645\u0648\u0642\u0639 \u0645\u0646 \u062C\u0647\u0627\u062A \u062E\u0627\u0631\u062C\u064A\u0629)\u060C \u0645\u062D\u0645\u062F \u062B\u0627\u0628\u0631 \u0645\u0639\u0646\u0627 \u0639\u0644\u0649 \u062A\u062D\u062F\u064A \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u0648\u0625\u064A\u062C\u0627\u062F \u062D\u0644\u0648\u0644 \u0645\u0646\u0627\u0633\u0628\u0629 \u0628\u0648\u0642\u062A \u0642\u064A\u0627\u0633\u064A.\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:317,width:\"560px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yhxxjp-container\",\"data-framer-name\":\"quote 4\",inComponentSlot:true,name:\"quote 4\",nodeId:\"bpQJGrk3N\",rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(CardsQuote,{height:\"100%\",id:\"bpQJGrk3N\",layoutId:\"bpQJGrk3N\",name:\"quote 4\",o9U2Acj96:\"\u0639\u0628\u062F \u0627\u0644\u0644\u0647 \u0645\u0642\u0628\u0648\u0644\",style:{height:\"100%\",width:\"100%\"},variant:\"Ub77OA1Sk\",width:\"100%\",zrJOZ6MA8:\"\u0634\u0627\u0631\u0643 \u0647\u0628\",zyYw0Fbcr:\"\u0646\u062B\u0645\u0651\u0646 \u062A\u0639\u0627\u0648\u0646\u0646\u0627 \u0645\u0639 \u0627\u0644\u0623\u0633\u062A\u0627\u0630: \u0645\u062D\u0645\u062F \u0627\u0644\u062D\u0643\u064A\u0645 \u0644\u062A\u0635\u0645\u064A\u0645 \u0645\u0648\u0642\u0639\u0646\u0627 \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A \u0648\u0627\u0644\u0639\u0645\u0644 \u0639\u0644\u0649 \u0625\u062E\u0631\u0627\u062C\u0647 \u0628\u0623\u0641\u0636\u0644 \u0637\u0631\u064A\u0642\u0629 \u0641\u0646\u064A\u0627\u064B \u0648\u062A\u0642\u0646\u064A\u0627\u064B \u0641\u064A \u0641\u062A\u0631\u0629 \u0648\u062C\u064A\u0632\u0629 \u0648\u062C\u062F\u0646\u0627 \u0628\u0647\u0627 \u0627\u0644\u0627\u0647\u062A\u0645\u0627\u0645 \u0628\u0623\u062F\u0642 \u0627\u0644\u062A\u0641\u0627\u0635\u064A\u0644\u060C \u0648\u062D\u0633\u0646 \u0627\u0644\u062A\u0648\u0627\u0635\u0644 \u0648\u0633\u0631\u0639\u0629 \u0627\u0644\u062A\u062C\u0627\u0648\u0628.\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-pisq2e\",\"data-framer-name\":\"Podcast\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-qw2sjj\",\"data-framer-name\":\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-y1dtqh\",\"data-styles-preset\":\"uMVEOKZ0v\",style:{direction:\"rtl\"},children:\"\u0627\u0644\u0638\u0647\u0648\u0631 \u0627\u0644\u0625\u0639\u0644\u0627\u0645\u064A\"})}),className:\"framer-12ca0l0\",\"data-framer-name\":\"Services\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h0krde\",\"data-framer-name\":\"Podcast\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2msej2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IaYgzRupR\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:-50,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"IaYgzRupR\",intervalControl:1.5,itemAmount:1,layoutId:\"IaYgzRupR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k6fs7l-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"i9KTMg4qx\",rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"i9KTMg4qx\",isMixedBorderRadius:false,isRed:true,layoutId:\"i9KTMg4qx\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=scRPKJSot_M&t=3648s\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cgny3v-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XMgKqiXwP\",rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"XMgKqiXwP\",isMixedBorderRadius:false,isRed:true,layoutId:\"XMgKqiXwP\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=DQwYTUYI2tU&pp=ygUg2YXYrdmF2K8g2KfZhNit2YPZitmFINi32KjZgtin2Ko%3D\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m3nepk-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yson861gj\",rendersWithMotion:true,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"yson861gj\",isMixedBorderRadius:false,isRed:true,layoutId:\"yson861gj\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://www.youtube.com/watch?v=VXrEIqx7Je0&pp=ygUp2YXYrdmF2K8g2KfZhNit2YPZitmFINmF2LQg2KjZiNiv2YPYp9iz2Ko%3D\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{width:`min(${componentViewport?.width||\"100vw\"}, 560px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:`min(max(${componentViewport?.width||\"100vw\"} - 280px, 1px), 560px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rt2b6v-container\",\"data-framer-name\":\"footer\",id:elementId7,name:\"footer\",nodeId:\"agRj0m6d6\",ref:ref8,scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{variant:\"RrrfI9Imy\"}},children:/*#__PURE__*/_jsx(FooterGroup,{height:\"100%\",id:\"agRj0m6d6\",layoutId:\"agRj0m6d6\",name:\"footer\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"QpCGfQ3gH\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{height:800,width:componentViewport?.width||\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"216px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dvdcj8-container\",\"data-framer-name\":\"nav\",name:\"nav\",nodeId:\"g91cq0Szr\",scopeId:\"Kd_pkASvP\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C0tAbFwq2:{style:{width:\"100%\"},variant:\"KkgDzDn_9\"}},children:/*#__PURE__*/_jsx(Navigation,{cpu7nTS3K:ref6,DbDSZ9vMW:ref3,Eiz10KnKW:ref4,height:\"100%\",id:\"g91cq0Szr\",KVBetCWug:ref5,layoutId:\"g91cq0Szr\",name:\"nav\",style:{height:\"100%\",width:\"100%\"},uyusWkWy6:ref1,variant:\"uwBFmZmL3\",VKDbpPU4r:ref7,width:\"100%\",YrUoHo6HC:ref2})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sxTae.framer-1ses4rs, .framer-sxTae .framer-1ses4rs { display: block; }\",\".framer-sxTae.framer-s35loq { align-content: flex-start; align-items: flex-start; background-color: var(--token-35392d7f-121d-44a9-bca2-b59803721434, #fdfaf7); display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1200px; }\",\".framer-sxTae .framer-1siklor { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 64px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-sxTae .framer-11zkf46 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-sxTae .framer-11o2d3y-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-sxTae .framer-4ck724 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-qqg1fh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-sxTae .framer-qapsxn { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-hq9b24-container, .framer-sxTae .framer-gz3ula-container { flex: none; height: 36px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sxTae.framer-1mdgwvo { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-sxTae.framer-rprs41-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 336px; z-index: 10; }\",\".framer-sxTae .framer-s4393q-container, .framer-sxTae .framer-kttmgc-container, .framer-sxTae .framer-y51kb9-container, .framer-sxTae .framer-1jw2q0d-container, .framer-sxTae .framer-k0pgw4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sxTae .framer-1sbx11y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 64px; width: 560px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sxTae .framer-1mr5pv2, .framer-sxTae .framer-wpeyf0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 32px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-sxTae .framer-w2z8l9, .framer-sxTae .framer-ml5zdg, .framer-sxTae .framer-1y6kh6g, .framer-sxTae .framer-14oy2ni, .framer-sxTae .framer-1idbrsn, .framer-sxTae .framer-12ca0l0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sxTae .framer-n0rfi1 { --border-bottom-width: 1px; --border-color: var(--token-eee00141-5f91-4f5e-8917-6a7d2a9a166e, #efefef); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-1rty0mw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: auto; padding: 16px; position: relative; width: min-content; z-index: 1; }\",\".framer-sxTae .framer-44v43v-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sxTae .framer-phg3v { --border-bottom-width: 1px; --border-color: var(--token-eee00141-5f91-4f5e-8917-6a7d2a9a166e, #efefef); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-user-select: none; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-sxTae .framer-l3ejpv, .framer-sxTae .framer-1jv6ird { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 64px; width: 560px; }\",\".framer-sxTae .framer-1h54poy, .framer-sxTae .framer-1bro09u, .framer-sxTae .framer-11j7hly, .framer-sxTae .framer-qw2sjj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 32px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-sxTae .framer-fufidi, .framer-sxTae .framer-1kxa158 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-1ew7cvi, .framer-sxTae .framer-1wej5fk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: auto; padding: 16px; position: relative; width: 100%; z-index: 1; }\",\".framer-sxTae .framer-o23crm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: visible; padding: 32px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-sxTae .framer-uq0zxv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sxTae .framer-1fawy37-container { flex: none; height: 318px; position: relative; width: 100%; }\",\".framer-sxTae .framer-1hdvvje, .framer-sxTae .framer-sobxey { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-k5t7l7-container, .framer-sxTae .framer-rakjmi-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-sxTae .framer-12kvzf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 64px; width: 560px; }\",\".framer-sxTae .framer-1cl9oh3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-lv3d2q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-1wwxhr2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-1wrhoeu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-sxTae .framer-rq0s35-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sxTae .framer-h35ra7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: 100%; }\",\".framer-sxTae .framer-16ovhti-container { flex: none; height: auto; position: relative; width: 100%; z-index: 0; }\",\".framer-sxTae .framer-1clia3p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 560px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 64px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-sxTae .framer-17ur4gy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-z18pio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; scroll-margin-top: 64px; width: 560px; }\",\".framer-sxTae .framer-gby6s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sxTae .framer-12aid7o-container { flex: none; height: 280px; position: relative; width: 100%; }\",\".framer-sxTae .framer-164wl9e-container { height: 250px; position: relative; width: 560px; }\",\".framer-sxTae .framer-vc6q0u-container { height: 280px; position: relative; width: 560px; }\",\".framer-sxTae .framer-1vyldr8-container, .framer-sxTae .framer-yhxxjp-container { height: 317px; position: relative; width: 560px; }\",\".framer-sxTae .framer-pisq2e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 64px; width: 560px; }\",\".framer-sxTae .framer-1h0krde { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-sxTae .framer-2msej2-container { aspect-ratio: 1.6423841059602649 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 302px); position: relative; width: 100%; }\",\".framer-sxTae .framer-1k6fs7l-container, .framer-sxTae .framer-cgny3v-container, .framer-sxTae .framer-1m3nepk-container { height: 270px; position: relative; width: 496px; }\",\".framer-sxTae .framer-1rt2b6v-container { flex: none; height: auto; max-width: 560px; position: relative; width: 100%; }\",\".framer-sxTae .framer-dvdcj8-container { flex: none; height: 100vh; position: sticky; top: 0px; width: 216px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sxTae.framer-s35loq, .framer-sxTae .framer-1siklor, .framer-sxTae .framer-11zkf46, .framer-sxTae .framer-4ck724, .framer-sxTae .framer-qapsxn, .framer-sxTae .framer-1sbx11y, .framer-sxTae .framer-1mr5pv2, .framer-sxTae .framer-n0rfi1, .framer-sxTae .framer-1rty0mw, .framer-sxTae .framer-phg3v, .framer-sxTae .framer-l3ejpv, .framer-sxTae .framer-1h54poy, .framer-sxTae .framer-fufidi, .framer-sxTae .framer-1ew7cvi, .framer-sxTae .framer-1jv6ird, .framer-sxTae .framer-o23crm, .framer-sxTae .framer-1kxa158, .framer-sxTae .framer-1wej5fk, .framer-sxTae .framer-1hdvvje, .framer-sxTae .framer-12kvzf, .framer-sxTae .framer-1cl9oh3, .framer-sxTae .framer-1bro09u, .framer-sxTae .framer-lv3d2q, .framer-sxTae .framer-1wwxhr2, .framer-sxTae .framer-1wrhoeu, .framer-sxTae .framer-sobxey, .framer-sxTae .framer-h35ra7, .framer-sxTae .framer-1clia3p, .framer-sxTae .framer-wpeyf0, .framer-sxTae .framer-17ur4gy, .framer-sxTae .framer-z18pio, .framer-sxTae .framer-11j7hly, .framer-sxTae .framer-gby6s, .framer-sxTae .framer-pisq2e, .framer-sxTae .framer-qw2sjj, .framer-sxTae .framer-1h0krde { gap: 0px; } .framer-sxTae.framer-s35loq > *, .framer-sxTae .framer-n0rfi1 > *, .framer-sxTae .framer-1rty0mw > *, .framer-sxTae .framer-phg3v > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sxTae.framer-s35loq > :first-child, .framer-sxTae .framer-qapsxn > :first-child, .framer-sxTae .framer-n0rfi1 > :first-child, .framer-sxTae .framer-1rty0mw > :first-child, .framer-sxTae .framer-phg3v > :first-child, .framer-sxTae .framer-o23crm > :first-child, .framer-sxTae .framer-1hdvvje > :first-child, .framer-sxTae .framer-1wrhoeu > :first-child, .framer-sxTae .framer-sobxey > :first-child { margin-left: 0px; } .framer-sxTae.framer-s35loq > :last-child, .framer-sxTae .framer-qapsxn > :last-child, .framer-sxTae .framer-n0rfi1 > :last-child, .framer-sxTae .framer-1rty0mw > :last-child, .framer-sxTae .framer-phg3v > :last-child, .framer-sxTae .framer-o23crm > :last-child, .framer-sxTae .framer-1hdvvje > :last-child, .framer-sxTae .framer-1wrhoeu > :last-child, .framer-sxTae .framer-sobxey > :last-child { margin-right: 0px; } .framer-sxTae .framer-1siklor > *, .framer-sxTae .framer-12kvzf > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-sxTae .framer-1siklor > :first-child, .framer-sxTae .framer-11zkf46 > :first-child, .framer-sxTae .framer-4ck724 > :first-child, .framer-sxTae .framer-1sbx11y > :first-child, .framer-sxTae .framer-1mr5pv2 > :first-child, .framer-sxTae .framer-l3ejpv > :first-child, .framer-sxTae .framer-1h54poy > :first-child, .framer-sxTae .framer-fufidi > :first-child, .framer-sxTae .framer-1ew7cvi > :first-child, .framer-sxTae .framer-1jv6ird > :first-child, .framer-sxTae .framer-1kxa158 > :first-child, .framer-sxTae .framer-1wej5fk > :first-child, .framer-sxTae .framer-12kvzf > :first-child, .framer-sxTae .framer-1cl9oh3 > :first-child, .framer-sxTae .framer-1bro09u > :first-child, .framer-sxTae .framer-lv3d2q > :first-child, .framer-sxTae .framer-1wwxhr2 > :first-child, .framer-sxTae .framer-h35ra7 > :first-child, .framer-sxTae .framer-1clia3p > :first-child, .framer-sxTae .framer-wpeyf0 > :first-child, .framer-sxTae .framer-17ur4gy > :first-child, .framer-sxTae .framer-z18pio > :first-child, .framer-sxTae .framer-11j7hly > :first-child, .framer-sxTae .framer-gby6s > :first-child, .framer-sxTae .framer-pisq2e > :first-child, .framer-sxTae .framer-qw2sjj > :first-child, .framer-sxTae .framer-1h0krde > :first-child { margin-top: 0px; } .framer-sxTae .framer-1siklor > :last-child, .framer-sxTae .framer-11zkf46 > :last-child, .framer-sxTae .framer-4ck724 > :last-child, .framer-sxTae .framer-1sbx11y > :last-child, .framer-sxTae .framer-1mr5pv2 > :last-child, .framer-sxTae .framer-l3ejpv > :last-child, .framer-sxTae .framer-1h54poy > :last-child, .framer-sxTae .framer-fufidi > :last-child, .framer-sxTae .framer-1ew7cvi > :last-child, .framer-sxTae .framer-1jv6ird > :last-child, .framer-sxTae .framer-1kxa158 > :last-child, .framer-sxTae .framer-1wej5fk > :last-child, .framer-sxTae .framer-12kvzf > :last-child, .framer-sxTae .framer-1cl9oh3 > :last-child, .framer-sxTae .framer-1bro09u > :last-child, .framer-sxTae .framer-lv3d2q > :last-child, .framer-sxTae .framer-1wwxhr2 > :last-child, .framer-sxTae .framer-h35ra7 > :last-child, .framer-sxTae .framer-1clia3p > :last-child, .framer-sxTae .framer-wpeyf0 > :last-child, .framer-sxTae .framer-17ur4gy > :last-child, .framer-sxTae .framer-z18pio > :last-child, .framer-sxTae .framer-11j7hly > :last-child, .framer-sxTae .framer-gby6s > :last-child, .framer-sxTae .framer-pisq2e > :last-child, .framer-sxTae .framer-qw2sjj > :last-child, .framer-sxTae .framer-1h0krde > :last-child { margin-bottom: 0px; } .framer-sxTae .framer-11zkf46 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-sxTae .framer-4ck724 > *, .framer-sxTae .framer-1ew7cvi > *, .framer-sxTae .framer-1wej5fk > *, .framer-sxTae .framer-1cl9oh3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-sxTae .framer-qapsxn > *, .framer-sxTae .framer-o23crm > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-sxTae .framer-1sbx11y > *, .framer-sxTae .framer-l3ejpv > *, .framer-sxTae .framer-1jv6ird > *, .framer-sxTae .framer-1clia3p > *, .framer-sxTae .framer-z18pio > *, .framer-sxTae .framer-gby6s > *, .framer-sxTae .framer-pisq2e > *, .framer-sxTae .framer-1h0krde > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-sxTae .framer-1mr5pv2 > *, .framer-sxTae .framer-1h54poy > *, .framer-sxTae .framer-1bro09u > *, .framer-sxTae .framer-wpeyf0 > *, .framer-sxTae .framer-11j7hly > *, .framer-sxTae .framer-qw2sjj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-sxTae .framer-fufidi > *, .framer-sxTae .framer-1kxa158 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sxTae .framer-1hdvvje > *, .framer-sxTae .framer-sobxey > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sxTae .framer-lv3d2q > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-sxTae .framer-1wwxhr2 > *, .framer-sxTae .framer-17ur4gy > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sxTae .framer-1wrhoeu > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-sxTae .framer-h35ra7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-sxTae[data-border=\"true\"]::after, .framer-sxTae [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-sxTae.framer-s35loq { width: 810px; }}\",\"@media (max-width: 809px) { .framer-sxTae.framer-s35loq { flex-direction: column; gap: 16px; justify-content: flex-start; padding: 0px; width: 390px; } .framer-sxTae .framer-1siklor { flex: none; gap: 16px; max-width: unset; order: 1; padding: 0px; width: 100%; } .framer-sxTae .framer-11zkf46 { gap: 32px; justify-content: center; padding: 0px 24px 24px 24px; } .framer-sxTae .framer-11o2d3y-container { order: 0; } .framer-sxTae .framer-4ck724 { order: 1; } .framer-sxTae .framer-qapsxn { flex-direction: column; gap: 16px; order: 2; padding: 16px 0px 0px 0px; } .framer-sxTae .framer-hq9b24-container { height: 48px; order: 1; width: 100%; } .framer-sxTae .framer-gz3ula-container { height: 48px; order: 0; width: 100%; } .framer-sxTae .framer-s4393q-container { order: 3; } .framer-sxTae .framer-1sbx11y, .framer-sxTae .framer-l3ejpv, .framer-sxTae .framer-1jv6ird, .framer-sxTae .framer-12kvzf, .framer-sxTae .framer-z18pio, .framer-sxTae .framer-pisq2e { width: 100%; } .framer-sxTae .framer-1rty0mw { flex: 1 0 0px; width: 1px; } .framer-sxTae .framer-1fawy37-container { height: 265px; } .framer-sxTae .framer-2msej2-container { height: var(--framer-aspect-ratio-supported, 199px); } .framer-sxTae .framer-dvdcj8-container { height: auto; order: 0; width: 100%; z-index: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sxTae.framer-s35loq, .framer-sxTae .framer-1siklor, .framer-sxTae .framer-11zkf46, .framer-sxTae .framer-qapsxn { gap: 0px; } .framer-sxTae.framer-s35loq > *, .framer-sxTae .framer-1siklor > *, .framer-sxTae .framer-qapsxn > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-sxTae.framer-s35loq > :first-child, .framer-sxTae .framer-1siklor > :first-child, .framer-sxTae .framer-11zkf46 > :first-child, .framer-sxTae .framer-qapsxn > :first-child { margin-top: 0px; } .framer-sxTae.framer-s35loq > :last-child, .framer-sxTae .framer-1siklor > :last-child, .framer-sxTae .framer-11zkf46 > :last-child, .framer-sxTae .framer-qapsxn > :last-child { margin-bottom: 0px; } .framer-sxTae .framer-11zkf46 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5513\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZXjaAXjHr\":{\"layout\":[\"fixed\",\"auto\"]},\"C0tAbFwq2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate false\n * @framerScrollSections {\"ndne2qT_H\":{\"pattern\":\":ndne2qT_H\",\"name\":\"products\"},\"SRUmO8WMN\":{\"pattern\":\":SRUmO8WMN\",\"name\":\"Services\"},\"QZu7W6aoe\":{\"pattern\":\":QZu7W6aoe\",\"name\":\"work\"},\"MvHrJbtC6\":{\"pattern\":\":MvHrJbtC6\",\"name\":\"blog\"},\"GxBi87FEV\":{\"pattern\":\":GxBi87FEV\",\"name\":\"projects\"},\"s1o9I7xmk\":{\"pattern\":\":s1o9I7xmk\",\"name\":\"testimonies\"},\"Zdxf4VJzK\":{\"pattern\":\":Zdxf4VJzK\",\"name\":\"podcast\"},\"agRj0m6d6\":{\"pattern\":\":agRj0m6d6\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerKd_pkASvP=withCSS(Component,css,\"framer-sxTae\");export default FramerKd_pkASvP;FramerKd_pkASvP.displayName=\"Page\";FramerKd_pkASvP.defaultProps={height:5513,width:1200};addFonts(FramerKd_pkASvP,[{explicitInter:true,fonts:[{family:\"Adobe Arabic Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/fiU7799tILf0Gpr0TLTQzzVaw.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ConsultingCTAFonts,...Buttons00PrimaryFonts,...CardsEmailFonts,...ClientsLogosFonts,...CardsWorkFonts,...ServiceCard2Fonts,...ProjectFonts,...Buttons00SecondaryFonts,...CardsArticleFonts,...CardsProjectFonts,...CardsQuoteFonts,...SlideshowFonts,...YouTubeFonts,...FooterGroupFonts,...NavigationFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKd_pkASvP\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"ndne2qT_H\\\":{\\\"pattern\\\":\\\":ndne2qT_H\\\",\\\"name\\\":\\\"products\\\"},\\\"SRUmO8WMN\\\":{\\\"pattern\\\":\\\":SRUmO8WMN\\\",\\\"name\\\":\\\"Services\\\"},\\\"QZu7W6aoe\\\":{\\\"pattern\\\":\\\":QZu7W6aoe\\\",\\\"name\\\":\\\"work\\\"},\\\"MvHrJbtC6\\\":{\\\"pattern\\\":\\\":MvHrJbtC6\\\",\\\"name\\\":\\\"blog\\\"},\\\"GxBi87FEV\\\":{\\\"pattern\\\":\\\":GxBi87FEV\\\",\\\"name\\\":\\\"projects\\\"},\\\"s1o9I7xmk\\\":{\\\"pattern\\\":\\\":s1o9I7xmk\\\",\\\"name\\\":\\\"testimonies\\\"},\\\"Zdxf4VJzK\\\":{\\\"pattern\\\":\\\":Zdxf4VJzK\\\",\\\"name\\\":\\\"podcast\\\"},\\\"agRj0m6d6\\\":{\\\"pattern\\\":\\\":agRj0m6d6\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicHeight\":\"5513\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZXjaAXjHr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C0tAbFwq2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "iqDAA6C,IAAMA,GAAU,IAAI,OAAO,UAAW,SAAgB,SAASC,IAAmB,CAAC,GAAG,CAACD,GAAU,EAAE,OAAO,GAAK,CAACE,EAAUC,CAAY,EAAEC,GAAS,CAAC,SAAS,MAAM,EAAE,OAAAC,GAAU,IAAI,CAAC,IAAMC,EAAmB,IAAIH,EAAa,CAAC,SAAS,MAAM,EAAE,gBAAS,iBAAiB,mBAAmBG,EAAmB,EAAK,EAAQ,IAAI,CAAC,SAAS,oBAAoB,mBAAmBA,CAAkB,CAAE,CAAE,EAAE,CAAC,CAAC,EAASJ,CAAU,CCE1c,IAAMK,GAAU,KAAK,SAASC,GAAiBC,EAAQC,EAAW,CAAC,IAAIC,EAAyBC,EAAmB,IAAI,QAAQ,CAACC,EAAQC,IAAS,CAACH,EAAmBE,EAAQH,EAAW,OAAO,iBAAiB,QAAQ,IAAII,CAAM,EAClO,IAAMC,EAAQN,EAAQ,QAAWM,GAAQF,EAAQE,CAAO,CAAE,CAAC,EAAE,MAAM,IAAI,CAAC,CAAC,EACrEA,EAAQN,EAAQ,QAAQ,cAAO,eAAeA,EAAQ,UAAU,CAAC,KAAK,CAAC,OAAOM,CAAQ,EAAE,IAAIC,EAAK,CAAc,GAAbD,EAAQC,EAAQA,IAAO,KAAK,CAClIN,EAAW,MAAM,EAAE,OAAQC,EAAmBK,CAAI,CAAE,EAAE,aAAa,EAAI,CAAC,EAASJ,CAAmB,CAalF,SAARK,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,GAAa,aAAAC,GAAa,gBAAAC,EAAgB,MAAAC,CAAK,EAAEtB,EAAW,CAAC,eAAAuB,EAAe,aAAAC,EAAa,cAAAC,GAAc,mBAAAC,EAAmB,aAAAC,CAAY,EAAEvB,EAAoB,CAAC,YAAAwB,GAAY,SAAAC,EAAS,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEhB,EAAiB,CAAC,kBAAAiB,GAAkB,UAAAC,GAAU,YAAAC,EAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,GAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,EAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,GAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE5B,GAAkB,CAAC,iBAAA6B,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAErC,EAAsBsC,GAAajD,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAE16BmD,EAASC,GAAa,QAAQ,IAAIA,GAAa,OACtDC,EAAc7D,EAAM,OAAO,OAAO,EAAQ8D,EAAYC,GAAS,MAAMF,CAAa,EAAE,EAAQG,EAAa9D,IAAY,QAAQA,IAAY,QAAc+D,EAAW/D,IAAY,SAASA,IAAY,SAElM,GAAG,CAAC4D,EAAa,OAAoBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAYd,EAAc,IAAIe,IAAQ,CAAC,QAAQ,IAAI,EAAE,EAAI,CAACf,CAAa,CAAC,EAAQgB,EAAWJ,EAAO,MAAS,EAAO,CAACK,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,KAAK,eAAe,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,GAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,GAAS5E,CAAe,EAA+B,CAACiF,GAAYC,EAAc,EAAEN,GAAS,EAAK,EAA8B,CAACO,GAAWC,EAAa,EAAER,GAAS,EAAK,EAEtjBS,GAAc,CAAC,EAAMC,GAAY,EAAK/B,IAAU+B,GAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAAC,IAAMC,EAAWnB,EAAY,CAAC,EAAE,QAAcoB,EAAUpB,EAAYb,EAAc,OAAO,CAAC,EAAE,QAAQ,GAAGC,GAAaU,EAAU,QAAQ,CAAC,IAAMuB,EAAa/B,EAAaQ,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBwB,GAAMH,EAAW7B,EAAa6B,EAAW,WAAWA,EAAW,UAAU,EAAiII,IAArHH,EAAU9B,EAAa8B,EAAU,WAAWA,EAAU,YAAYA,EAAU,UAAUA,EAAU,aAAa,GAA2BE,GAAMzF,EAAU2F,GAASL,EAAW7B,EAAa6B,EAAW,YAAYA,EAAW,aAAa,EAAQM,GAAUN,EAAWA,EAAW,YAAY,EAAQO,GAAWP,EAAWA,EAAW,aAAa,EAAQQ,GAAerC,EAAa,KAAK,IAAI,SAAS,gBAAgB,aAAa,EAAEsC,GAAO,YAAY,EAAE9B,EAAU,QAAQ,WAAW,EAAE,KAAK,IAAI,SAAS,gBAAgB,cAAc,EAAE8B,GAAO,aAAa,EAAE9B,EAAU,QAAQ,YAAY,EAAE+B,GAAgB,IAAIxB,GAAQ,CAAC,OAAOgB,EAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,GAAW,eAAAC,EAAc,CAAC,CAAC,EAAG,EAAE,CAACvC,CAAW,CAAC,EAAQ0C,GAAgBZ,GAAY,SAAS,CAAC,IAAMrG,EAAW,IAAI,gBAGxmCsG,EAAWnB,EAAY,CAAC,EAAQoB,EAAUpB,EAAYb,EAAc,OAAO,CAAC,EAAE,GAAG,CAACF,IAAW,CAACkC,EAAW,SAAS,CAACC,EAAU,SAAS,GAAG,CAAC,MAAM,QAAQ,IAAI,CAACzG,GAAiBwG,EAAWtG,CAAU,EAAEF,GAAiByG,EAAUvG,CAAU,CAAC,CAAC,CAAE,MAAC,CAAMA,EAAW,MAAM,CAAE,CAACkH,GAAM,KAAKd,EAAO,CAAE,EAAE,CAACA,EAAO,CAAC,EAGlTe,GAAgB,IAAI,CAAI5C,GAAY0C,GAAgB,CAAE,EAAE,CAAC1C,EAAYhD,CAAU,CAAC,EAGhF,IAAM6F,GAAclC,EAAO,EAAI,EAAEmC,GAAU,IAAYC,GAAOrC,EAAU,QAAQ,CAAC,CAAC,YAAAsC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASN,GAAgB,EAAEhB,GAAc,EAAI,GAAGmB,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGrB,GAAW,CAAC,IAAMwB,EAAM,WAAW,IAAIvB,GAAc,EAAK,EAAE,GAAG,EAAE,MAAM,IAAI,aAAauB,CAAK,EAAG,EAAE,CAACxB,EAAU,CAAC,EAElX,IAAMyB,GAAWnD,GAAe,OAAaoD,GAAatD,EAAS,EAAEmB,GAAM,SAAeoC,GAAYpC,GAAM,KAAKvE,EAAU4G,GAAWlH,EAAUiH,GAAiB,CAACE,GAAYC,EAAc,EAAErC,GAAS/E,EAAU+G,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAEvC,GAAS,EAAK,EAAyGwC,GAAc/C,EAAO,IAAI,EAAQgD,GAASC,GAAUF,EAAa,EAAQG,GAAUC,GAAkB,GAAGH,GAAeI,GAAO5D,EAAW,EAAE,GAA+C6D,GAAKC,GAAed,EAAY,EAAuEe,GAAehE,EAAa,CAAC/D,GAAW6E,GAAM,UAAUvE,GAAK,CAACN,GAAW6E,GAAM,WAAWvE,GAAsD0H,GAAY,IAAIJ,GAAOT,GAAYF,GAAwIgB,GAAcvE,EAA8H,EAArHwE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,EAAQC,GAAK,CAACrB,GAAa,CAACA,GAAa,EAAEmB,CAAK,EAAE,OAAO,MAAMC,CAAO,EAAE,EAAEA,CAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEtB,GAAWI,EAAW,EAAQoB,GAAqBF,GAAK,EAAE,CAACtB,GAAWI,EAAW,EAAqHV,GAAgB,IAAI,CAAI5B,GAAM,WAAW,MAG94C,CAAC6B,GAAc,SAASpB,IAAYuC,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAACnD,EAAKmC,GAAaY,GAAOV,GAAWC,GAAYF,GAAY3B,EAAU,CAAC,EAG3G,IAAMkD,GAAY,IAAI,CAAI9E,GAAU,CAACG,GAAa,CAACgB,EAAK,QAAQwC,KAAqBQ,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAEhH,CAAiB,EAAMb,GAAiB+E,KAAmBN,EAAW,QAAQ,WAAW,IAAI,CAACwC,GAAeD,GAAY,CAAC,EAAEqB,GAAY,CAAE,EAAEzH,EAAgB,GAAG,GAAG,EAAuC2H,GAASC,GAAO,CAAyDvB,GAApDpD,EAAmEmD,GAAYwB,EAApDxB,GAAYwB,CAA6C,CAAG,EAAQC,GAAQjE,GAAO,CAAC,IAAMkE,EAAmBR,GAAK,EAAEtB,GAAWI,EAAW,EAAQ2B,EAAyBT,GAAK,EAAE,CAACtB,GAAWI,EAAW,EAAQ4B,GAAKpE,EAAMkE,EAAyBG,GAAarE,EAAM,KAAK,IAAImE,CAAwB,EAAyD1B,GAAnDpD,EAAkEmD,GAAY6B,GAAnD7B,GAAY4B,EAAmD,CAAG,EAE3zBE,GAAgB,IAAI,CAAC3B,GAAc,EAAI,CAAE,EAAQ4B,GAAc,CAACC,EAAM,CAAC,OAAAC,EAAO,SAAAC,CAAQ,IAAI,CAAC/B,GAAc,EAAK,EAAE,IAAMgC,GAAWvF,EAAaqF,EAAO,EAAEA,EAAO,EAAQG,GAAkB,IAC9LC,GAAazF,EAAasF,EAAS,EAAEA,EAAS,EAAQI,GAAaH,GAAW,CAACzE,EAAK,KAAK,EAAQ6E,GAAaJ,GAAWzE,EAAK,KAAK,EAA6D8E,GAAiB,KAAK,IAAIL,EAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiB9E,EAAK,IAAI,EAAqFgF,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,GAAaD,GAAmBb,GAAS,CAACmB,EAAgB,EAAWL,GAAa,CAACD,GAAmBb,GAASmB,EAAgB,GAA2EJ,IAAcf,GAASkB,EAAS,EAAMF,IAAchB,GAAS,CAACkB,EAAS,EAAI,EAAgEjD,GAAU,IAAI,CAAC,GAAG,GAACe,IAAWpC,IAAkB,OAAAkD,GAAY,EAAQ,IAAI5D,EAAW,SAAS,aAAaA,EAAW,OAAO,CAAE,EAAE,CAACY,GAAckC,GAAUpC,EAAU,CAAC,EAA8D,IAAIwE,GAAa,EAE1gCC,GAAiB,QAAQ,IAAIlJ,QAAiBP,SAAWA,EAAIO,OAIrE,QAAQ8D,EAAM,EAAEA,EAAMc,GAAYd,IAASa,GAAc,KAAK,GAAG1B,GAAS,IAAIF,EAAc,CAACoG,EAAMC,IAAa,CAAC,IAAIC,GAAI,OAAGD,IAAa,IAAGC,GAAIzF,EAAY,CAAC,GAAMwF,IAAarG,EAAc,OAAO,IAAGsG,GAAIzF,EAAY,CAAC,GAAuBN,EAAKgG,GAAM,CAAC,IAAI1F,EAAYwF,CAAU,EAAE,SAAStF,EAAMsF,EAAW,KAAK,MAAMtF,EAAM,MAAMZ,GAAalD,EAAW,EAAEkJ,GAAwB,OAAO,OAAQhG,EAAkD,OAArClD,EAAW,EAAEkJ,GAAiB,OAAc,KAAKlF,EAAK,MAAMmF,EAAM,YAAYpG,GAAe,OAAO,aAAaqE,GAAa,aAAa6B,KAAe,IAAIxJ,EAAI,SAASoD,EAAS,aAAaK,EAAa,eAAe1C,EAAe,aAAaC,EAAa,cAAcC,GAAc,SAASoD,EAAMsF,CAAU,EAAEtF,EAAMsF,EAAW,IAAI,CAAE,CAAC,CAAC,EAE7uB,IAAMG,GAAcrG,EAAa,WAAW,YAAkBsG,GAAezI,GAAU,EAAQ0I,GAAa,IAAI1I,GAAU,EAAQ2I,GAAeC,GAAM3I,GAAU,EAAEwI,EAAc,EAAQI,GAAa,IAAI5I,GAAgB6I,GAAS,mBAAmBN,qBAAgCtI,OAAcyI,yBAAqCF,yBAAqCC,sBAAgCxI,OAAc2I,OAEtZE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAG9H,GAAiB,CAAC,QAAQ+H,EAAE,EAAEA,EAAEjH,GAAe,OAAOiH,IAAKF,GAAK,KAAkBxG,EAAK2G,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMhI,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY4H,GAAiB,gBAAgB1H,GAAkB,QAAQC,GAAY,QAAQ,IAAIqF,GAAQiC,CAAC,EAAE,aAAavC,GAAa,qBAAqBC,GAAqB,MAAMxB,GAAW,MAAM8D,EAAE,IAAI1H,GAAQ,QAAQD,GAAY,aAAaa,EAAa,WAAWC,CAAU,EAAE6G,CAAC,CAAC,EAAMrH,GAAS,IAAGoH,GAAc,eAAeA,GAAc,qBAAqB,QAAQpH,SAAgB,IAAMyH,GAAU7K,EAAY,CAAC,KAAK2D,EAAa,IAAI,IAAI,YAAYkF,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAErB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQqD,GAAY3I,IAAgB,YAAYA,IAAgB,WAAWA,IAAgB,YAAkB4I,GAAe5I,IAAgB,eAAeA,IAAgB,cAAcA,IAAgB,eAAqB6I,GAAa7I,IAAgB,YAAYA,IAAgB,cAAoB8I,GAAc9I,IAAgB,aAAaA,IAAgB,eAAqB+I,GAAY/I,IAAgB,WAAWA,IAAgB,cAAcA,IAAgB,OAAO,OAAoB0B,EAAM,UAAU,CAAC,MAAM,CAAC,GAAGsH,GAAe,QAAQ9H,GAAa,gBAAgB/B,GAAYgJ,GAAS,OAAU,UAAUhJ,GAAYgJ,GAAS,OAAU,QAAQ7F,GAAM,OAAO,KAAK,EAAE1F,GAAU,WAAW,MAAM,EAAE,aAAa,IAAI,CAAC8F,GAAc,EAAI,EAAMxD,GAAa0D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMxD,GAAa0D,GAAqB,EAAI,CAAE,EAAE,YAAYgE,GAAO,CACloDA,EAAM,eAAe,EAAE9D,GAAe,EAAI,CAAE,EAAE,UAAU,IAAIA,GAAe,EAAK,EAAE,IAAIkC,GAAc,SAAS,CAAcpD,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASxC,EAAS,UAAU,SAAS,aAAaT,GAAa,WAAW,OAAO,YAAYwC,EAAS,OAAOlC,CAAkB,EAAE,SAAsB2C,EAAKqH,EAAO,GAAG,CAAC,IAAIjH,EAAU,GAAG0G,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAIjL,EAAI,WAAWD,EAAU,EAAE0D,EAAaL,EAASqE,GAAeE,GAAa,EAAE,EAAGlE,EAAkD,EAArCL,EAASqE,GAAeE,GAAe,cAAclE,EAAa,MAAM,SAAS,eAAexC,KAAgB,GAAG,CAACmC,EAAS,cAAc,OAAU,OAAOtD,EAAYgF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGhE,CAAK,EAAE,SAASoE,EAAa,CAAC,CAAC,CAAC,EAAevB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGwH,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAcxH,EAAMuH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAczH,EAAa,MAAM,SAAS,eAAe1B,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkBnD,GAAU,EAAE,WAAW,SAAS,MAAMqD,GAAa,IAAIH,GAAiBG,GAAa0I,GAAYxI,GAAgB,QAAQ,KAAKL,GAAiBG,GAAa4I,GAAavI,GAAiByI,GAAY,EAAE,QAAQ,MAAMjJ,GAAiBG,GAAa6I,GAAc1I,GAAkB2I,GAAY,EAAE,QAAQ,OAAOjJ,GAAiBG,GAAa2I,GAAevI,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ0C,GAAW,EAAE7F,EAAS,EAAE,WAAW6B,EAAkB,SAAS,CAAcmD,EAAKqH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB9I,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,EAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI2G,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBvE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAegC,EAAKqH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB9I,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,EAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI2G,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBvE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuI,GAAK,OAAO,EAAexG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGuH,GAAmB,KAAK3H,EAAa,MAAMf,GAAU,IAAKe,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAaf,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAGuH,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyB9K,EAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAAyB8L,GAAoB9L,EAAU,CAAC,MAAM,CAAC,KAAK+L,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAa/L,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAK+L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAO9L,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAK8L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa/L,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAK+L,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa/L,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAK+L,EAAY,OAAO,MAAM,QAAQ,aAAa/L,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAK+L,EAAY,OAAO,MAAM,cAAc,aAAa/L,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAK+L,EAAY,OAAO,MAAM,SAAS,aAAa/L,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAK+L,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAa/L,EAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK+L,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,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa/L,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAK+L,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAa/L,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAK+L,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAO9L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAK8L,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO9L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK8L,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO9L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK8L,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAO9L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAK8L,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa/L,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAK+L,EAAY,MAAM,MAAM,OAAO,OAAO9L,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAK+L,EAAY,MAAM,MAAM,WAAW,OAAO9L,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK8L,EAAY,MAAM,MAAM,OAAO,OAAO9L,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK8L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa/L,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK8L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO9L,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAK8L,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAO9L,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAK8L,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAa/L,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAK8L,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAO9L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAK8L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAK8L,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAK8L,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAK8L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAK8L,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAK8L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAK8L,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK8L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK8L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK8L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK8L,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK8L,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK8L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK8L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK8L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK8L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO9L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAMyL,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8BrH,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,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,EAA4B0G,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAgDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B5B,GAAmB6B,GAAW,SAAmBlM,EAAMoK,EAAI,CAAC,GAAK,CAAC,SAAA+B,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAAnC,EAAM,KAAAnF,EAAK,IAAAvE,EAAI,aAAA2H,EAAa,YAAAmE,EAAY,aAAAtC,EAAa,SAAApG,EAAS,QAAA2I,EAAQ,eAAAhL,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAAwC,EAAa,OAAAuI,EAAO,MAAA3H,EAAK,EAAE7E,EAE1kayM,IAAa1H,GAAM,KAAKvE,GAAKwJ,EAAmB0C,EAAY,CAAC,CAAC3H,GAAM,KAAK,EAAEA,GAAM,OAAOA,GAAM,KAAKvE,EAAIuE,GAAM,MAAM,EAAE,IAAI4H,GAAKA,EAAIF,EAAW,EAE7IG,EAAQ,CAAChJ,GAAUwE,GAAaD,EAAauE,EAAY,CAAC,CAACjL,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQoL,EAAQ,CAACjJ,GAAUwE,GAAaD,EAAauE,EAAY,CAACjL,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQqL,EAAQ,CAAClJ,GAAUwE,GAAaD,EAAauE,EAAY,CAACnL,EAAe,EAAE,EAAEA,CAAc,CAAC,EAAQwL,GAAM,CAACnJ,GAAUwE,GAAaD,EAAauE,EAAY,CAAClL,EAAa,EAAE,EAAEA,CAAY,CAAC,EAAQwL,EAAW,CAACpJ,GAAUwE,GAAaD,EAAauE,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQ9E,EAAU,CAAChE,GAAUwE,GAAaD,EAAa8E,GAAQA,GAAQP,EAAY,CAAC,GAAGO,GAAQP,EAAY,CAAC,CAAC,EAAE7F,GAAU,IAAI,CAAC,GAAIe,EAAiB,OAAOA,EAAU,GAAG,SAASsF,GAAU,CAAC9C,EAAI,SAAS,aAAa,cAAc,CAAC8C,CAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAE,IAAMC,GAAWvJ,EAAS,UAAUwE,GAAaD,EAAa,CAACuE,EAAY,CAAC,EAAE3H,EAAK,eAAeqI,GAAIV,EAAY,CAAC,EAAEA,EAAY,CAAC,EAAE,EAAE,EAAEA,EAAY,CAAC,EAAE3H,EAAK,cAAc,EAAE,CAAC,SAAS,UAAU,QAAQ,CAAC,EAAE,OAAoBV,EAAKgJ,EAAY,CAAC,QAAQ,KAAK,SAAsBhJ,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,KAAQ,EAAa,SAAsByI,GAAapD,EAAM,CAAC,IAAIE,EAAI,IAAI+B,EAAS,QAAQ,MAAM,CAAC,GAAGjC,EAAM,OAAO,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAkC,EAAM,OAAAC,EAAO,QAAQS,EAAQ,MAAMC,GAAM,QAAQ9I,EAAa+I,EAAW,GAAG,QAAS/I,EAAwB,GAAX+I,EAAc,QAAQ/I,EAAa2I,EAAQ,EAAE,QAAS3I,EAAqB,EAAR4I,EAAU,WAAAM,EAAU,EAAE,SAASjD,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAarF,GAAM,MAAS,EAAEqF,EAAM,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASc,GAAI,CAAC,gBAAAuC,EAAgB,QAAAT,EAAQ,MAAAU,EAAM,MAAA3I,EAAM,aAAA2D,EAAa,qBAAAC,EAAqB,SAAAwC,EAAS,YAAAwC,EAAY,IAAAjN,EAAI,QAAAC,EAAQ,aAAAwD,EAAa,WAAAC,EAAW,GAAGlE,CAAK,EAAE,CAA8C,IAAI0N,EAAWlF,IAAe3D,EAAuDX,IAAYwJ,EAAW,KAAK,IAAIjF,CAAoB,IAAI5D,GAAO,IAAM8I,EAAcnN,EAAI,EAAQoN,EAAI,CAAC3J,GAAcY,EAAM,EAAE8I,EAAclN,EAAcoN,EAAO,CAAC5J,GAAcY,IAAQ2I,EAAM,EAAEG,EAAclN,EAAcqN,EAAM7J,GAAcY,IAAQ2I,EAAM,EAAEG,EAAclN,EAAcsN,EAAK9J,GAAcY,EAAM,EAAE8I,EAAclN,EAAQ,OAAoB4D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,IAAI,KAAK,SAAS,GAAG7E,EAAM,MAAM,CAAC,GAAGyN,EAAY,QAAQ,GAAGG,OAASE,OAAWD,OAAYE,KAAQ,EAAE,SAAsB1J,EAAKqH,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQyC,EAAWH,EAAgBT,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAiB,IAAMlB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECjEjpF+C,GAAU,UAAU,CAAC,4BAA4B,2DAA2D,2DAA2D,0DAA0D,CAAC,EAAE,IAAMC,GAAc,CAAC,CAAC,aAAa,IAAI,SAAS,IAAI,SAAS,EAAE,KAAK,SAAS,IAAI,MAAM,EAAE,CAAC,aAAa,GAAG,SAAS,GAAG,SAAS,GAAG,KAAK,eAAe,IAAI,MAAM,CAAC,EAAeC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,qBAAqB,OAAO,SAAS,IAAI,yEAAyE,cAAAD,EAAa,CAAC,CAAC,CAAC,EAAeE,GAAI,CAAC,23CAA23C,EAAeC,GAAU,eCA15C,IAAMC,GAAwCC,GAA0BC,GAAOC,CAAQ,CAAC,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,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,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,aAAAC,EAAa,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGL,EAAM,WAAWC,EAAKL,GAAwDI,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,GAAK,WAAWC,EAAMV,GAAqDQ,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,cAAc,UAAUL,GAAgCG,EAAM,UAAU,SAASI,GAAOD,EAAuCb,GAAwBU,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMP,GAAmCE,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,QAAQ,UAAUV,GAAmCK,EAAM,SAAS,CAAE,EAAQM,GAAuB,CAACN,EAAM/B,IAAe+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAE+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAUsC,GAA6BC,GAAW,SAASR,EAAMS,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA5C,EAAQ,UAAA6C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE9B,GAASS,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA5D,CAAQ,EAAE6D,GAAgB,CAAC,WAAAlE,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQiE,EAAiBzB,GAAuBN,EAAM/B,CAAQ,EAAQ+D,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,GAAM,EAAQC,EAAsB,CAAatB,GAAuBA,EAAS,EAAQuB,EAAkBC,GAAqB,EAAE,OAAoBpD,EAAKqD,EAAY,CAAC,GAAGxB,GAA4CmB,GAAgB,SAAsBhD,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBc,EAAKsD,GAAK,CAAC,KAAKpB,EAAU,aAAa,GAAM,aAAa,GAAK,SAAsBqB,EAAMrD,EAAO,EAAE,CAAC,GAAGiC,EAAU,GAAGI,EAAgB,UAAU,GAAGiB,GAAG7E,GAAkB,GAAGuE,EAAsB,iBAAiBtB,EAAUS,CAAU,mBAAmB,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,GAA6BuB,EAAK,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGnB,CAAK,EAAE,GAAG9C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEuD,EAAYI,CAAc,EAAE,SAAS,CAAce,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB2C,EAAiB,SAAS,YAAY,SAAS,CAAc7C,EAAKxB,EAAS,CAAC,sBAAsB,GAAK,SAAsBwB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9B,EAAK3B,GAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQe,GAAU,SAAsBY,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,uEAAuE,MAAM,CAAC,OAAO,EAAE,QAAQb,GAAW,iBAAiBwD,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKd,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlD,GAAqB,CAAC,kBAAkB,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEP,GAAwBjC,EAAKyD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFP,GAAkB,GAAI,GAAG,EAAE,EAAE,MAAM,OAAO,GAAG7D,GAAkB0C,CAAS,CAAC,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,MAAM,iBAAiBa,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAe7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,EAAE,oBAAoB,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,sUAAsU,ySAAyS,kMAAkM,oPAAoP,4MAA4M,4nBAA4nB,0HAA0H,mbAAmb,iKAAiK,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASv5VC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAK,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,gBAAgB,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT3lD,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAsBF,EAASG,EAAgB,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,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,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,eAAe,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAOG,EAAM,WAAW,wEAAiB,UAAUR,GAAaQ,EAAM,WAAW,mDAAW,UAAUJ,GAAMI,EAAM,UAAU,UAAUF,GAAOE,EAAM,WAAW,kHAAkC,UAAUP,GAASO,EAAM,WAAW,4sBAA6I,QAAQV,GAAwBU,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASS,CAAK,EAAO,CAAC,YAAAiB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnD,CAAQ,EAAEoD,GAAgB,CAAC,WAAAzD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwD,EAAiBzB,GAAuBD,EAAM3B,CAAQ,EAAO,CAAC,sBAAAsD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,KAAO,CAACR,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQlB,IAAc,YAA6CmB,GAAsBC,GAAM,EAAQC,GAAsB,CAAa7B,GAAuBA,EAAS,EAAQ8B,GAAkBC,GAAqB,EAAE,OAAoBtD,EAAKuD,EAAY,CAAC,GAAG/B,GAAU0B,GAAgB,SAAsBlD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAG4B,EAAU,GAAGI,EAAgB,UAAUsB,GAAGzE,GAAkB,GAAGqE,GAAsB,iBAAiB7B,EAAUS,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAI1B,GAAK6B,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,UAAU,uMAAuM,GAAGzB,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,eAAe,iBAAiB,OAAU,MAAM,MAAS,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBsB,EAAMvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBsC,EAAiB,SAAS,YAAY,SAAS,CAAciB,EAAMvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBsC,EAAiB,SAAS,YAAY,SAAS,CAAciB,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBsC,EAAiB,SAAS,YAAY,SAAS,CAAcxC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGvD,GAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAM6D,CAAY,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsBnC,EAAK0D,EAA0B,CAAC,SAAsB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBsC,EAAiB,SAAS,sBAAsB,SAAsBxC,EAAKrB,GAAS,CAAC,MAAM,kEAAkE,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,OAAO,GAAGM,GAAqB,CAAC,UAAU,CAAC,WAAW,OAAO,CAAC,EAAE8C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,uEAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,iHAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKf,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAY,GAAgBQ,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBsC,EAAiB,SAAS,YAAY,SAAS,CAAcxC,EAAK2D,EAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,2sBAA4I,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAe5B,EAAK0D,EAA0B,CAAC,OAAO,GAAG,GAAGzE,GAAqB,CAAC,UAAU,CAAC,GAAGoE,IAAmB,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAEtB,EAAYI,CAAc,EAAE,SAAsBnC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBsC,EAAiB,SAAS,sBAAsB,SAAsBxC,EAAKnB,GAAiB,CAAC,UAAU,GAAK,UAAUgD,EAAU,UAAUH,EAAU,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,aAAa,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkC,GAAI,CAAC,kFAAkF,gFAAgF,2SAA2S,uRAAuR,8QAA8Q,oRAAoR,qRAAqR,wGAAwG,gHAAgH,uKAAuK,oRAAoR,qKAAqK,wGAAwG,+8CAA+8C,mEAAmE,sEAAsE,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASp8ZC,GAAgBC,GAAQ9C,GAAU4C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,cAAc,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,kHAAkC,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,wEAAiB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4sBAA6I,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,mDAAW,gBAAgB,GAAM,MAAM,eAAe,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGpF,GAAc,GAAGG,GAAsB,GAAGuF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT5kE,IAAMC,GAAwCC,GAA0BC,GAAOC,CAAQ,CAAC,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,CAAC,MAAAJ,EAAM,SAAAK,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWT,GAAOM,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,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,SAAAC,EAAS,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAOE,EAAM,WAAW,QAAQ,UAAUL,GAAOK,EAAM,UAAU,UAAUH,GAAUG,EAAM,WAAW,MAAM,UAAUJ,GAAMI,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAM7B,IAAe6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAE6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAU+B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,UAAAsC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASQ,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAApD,CAAQ,EAAEqD,GAAgB,CAAC,eAAe,YAAY,gBAAA1D,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiBxB,GAAuBD,EAAM7B,CAAQ,EAAQuD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,GAAsB,CAAarB,GAAuBA,EAAS,EAAQsB,EAAkBC,GAAqB,EAAE,OAAoB5C,EAAK6C,EAAY,CAAC,GAAGvB,GAAUkB,EAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBc,EAAK8C,GAAK,CAAC,KAAKpB,EAAU,OAAO,YAAY,aAAa,GAAK,aAAa,GAAK,SAAsBqB,EAAM7C,EAAO,EAAE,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAU,GAAGiB,GAAGrE,GAAkB,GAAG+D,GAAsB,iBAAiBrB,EAAUQ,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,GAAKsB,EAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,GAAGvC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,CAAC,EAAE+C,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKiD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2BP,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,OAAO,GAAG,KAAK,EAAE,EAAE,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,GAAGxD,GAAkBoC,CAAS,CAAC,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,MAAM,iBAAiBc,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wBAAwB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAeU,EAAM7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKvB,EAAS,CAAC,sBAAsB,GAAK,SAAsBuB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexB,EAAK1B,GAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQgB,GAAU,SAAsBU,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,uEAAuE,MAAM,CAAC,OAAO,EAAE,QAAQX,GAAW,iBAAiB8C,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oEAAoE,EAAE,oBAAoB,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,kBAAkB,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,oBAAoB,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,EAAE,oBAAoB,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,mTAAmT,0LAA0L,4TAA4T,mMAAmM,2MAA2M,ilBAAilB,+JAA+J,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAS/pTC,GAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,MAAM,QAAQ,KAAKI,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,MAAM,gBAAgB,GAAM,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTqL,IAAMC,GAAmBC,EAASC,EAAa,EAAQC,GAAkCC,GAA0BC,CAAQ,EAAQC,GAAsBL,EAASM,EAAgB,EAAQC,GAAgBP,EAASQ,EAAU,EAAQC,GAAmCN,GAA0BO,CAAS,EAAQC,GAAkBX,EAASY,EAAY,EAAQC,GAAeb,EAASc,EAAS,EAAQC,GAAuCZ,GAA0Ba,EAAO,OAAO,EAAQC,GAAkBjB,EAASkB,EAAY,EAAQC,GAAanB,EAASoB,EAAO,EAAQC,GAAwBrB,EAASsB,EAAkB,EAAQC,GAAkBvB,EAASwB,EAAY,EAAQC,GAAkBzB,EAAS0B,EAAY,EAAQC,GAAgB3B,EAAS4B,EAAU,EAAQC,GAAe7B,EAAS8B,CAAS,EAAQC,GAAa/B,EAASgC,EAAO,EAAQC,GAAiBjC,EAASkC,EAAW,EAAQC,GAAgBnC,EAASoC,EAAU,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,IAAUC,GAAa,IAAY,SAAS,cAAc,mBAAmB,GAAG,SAAS,cAAc,UAAU,GAAG,SAAS,KAAaC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAe,CAACD,EAAME,EAAQ,CAAC,EAAEC,IAAe,CAAC,IAAMC,EAAe,QAAcC,EAAOH,EAAQ,QAAQC,GAAcC,EAAoB,CAAC,YAAAE,EAAY,SAAAC,EAAS,eAAAC,EAAe,MAAAC,EAAM,SAAAC,EAAS,gBAAAC,EAAgB,KAAAC,EAAK,YAAAC,EAAY,sBAAAC,EAAsB,sBAAAC,EAAsB,qBAAAC,CAAoB,EAAEd,EAAce,EAAc,CAAC,YAAAX,EAAY,SAAAC,EAAS,eAAAC,EAAe,MAAAC,EAAM,SAAAC,EAAS,gBAAAC,EAAgB,KAAAC,EAAK,YAAAC,EAAY,sBAAAC,EAAsB,sBAAAC,EAAsB,qBAAAC,CAAoB,EAAQE,EAAO,OAAOlB,CAAK,EAAE,GAAG,CAAC,OAAOkB,EAAO,eAAeb,EAAOY,CAAa,CAAE,MAAC,CAAM,GAAG,CAAC,OAAOC,EAAO,eAAed,EAAea,CAAa,CAAE,MAAC,CAAM,OAAOC,EAAO,eAAe,CAAE,CAAC,CAAC,EAAQC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAA9B,CAAQ,IAAI,CAAC,IAAM+B,EAAKC,GAAaH,CAAK,EAAE,OAAO7B,EAAS+B,CAAI,CAAE,EAAQE,GAAa,CAACxB,EAAME,EAAQ,CAAC,EAAEC,IAAe,CAAC,GAAG,OAAOH,GAAQ,SAAS,MAAM,GAAG,IAAMyB,EAAK,IAAI,KAAKzB,CAAK,EAAE,GAAG,MAAMyB,EAAK,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAMC,EAAQxB,EAAQ,QAAQA,EAAQ,QAAQ,OAAayB,EAAY,CAAC,UAAUD,IAAU,OAAOxB,EAAQ,UAAU,OAAU,UAAUwB,IAAU,OAAO,OAAU,QAAQ,SAAS,KAAK,EAAQtB,EAAe,QAAcC,EAAOH,EAAQ,QAAQC,GAAcC,EACjiM,GAAG,CAAC,OAAOqB,EAAK,eAAepB,EAAOsB,CAAW,CAAE,MAAC,CAAM,OAAOF,EAAK,eAAerB,EAAeuB,CAAW,CAAE,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAR,EAAM,SAAAC,EAAS,SAAA9B,CAAQ,IAAI,CAAC,GAAK,CAAC,eAAAsC,EAAe,eAAAC,EAAe,SAAAC,CAAQ,EAAEC,GAA0BZ,EAAMC,EAAS,WAAW,EAAQC,EAAKC,GAAaM,CAAc,EAAE,OAAOtC,EAAS+B,EAAKQ,EAAeC,CAAQ,CAAE,EAAQE,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAU,CAAC,CAAC,MAAApC,CAAK,IAAoBqC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOtC,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUuC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,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,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAjD,EAAa,UAAAkD,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAA/C,EAAM,UAAAgD,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAE1C,GAASI,CAAK,EAAQuC,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUjF,CAAY,EAAE,GAAGiF,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUlF,CAAY,CAAC,EAAQmF,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUjF,CAAY,EAAE,SAAS,MAAMiF,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUjF,CAAY,CAAC,EAAE,GAAK,CAACoF,EAAYC,EAAmB,EAAEC,GAA8B9B,EAAQ+B,GAAY,EAAK,EAAQC,GAAe,OAAe,CAAC,sBAAAC,GAAsB,MAAAC,EAAK,EAAEC,GAAyB,MAAS,EAAQC,GAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAjE,CAAQ,IAAI6D,GAAsB,SAASK,IAAO,CAACD,EAAQ,OAAO,CAAE,CAAC,EAAmFE,GAAkBC,GAAGxH,GAAkB,GAA5F,CAAa8E,GAAuBA,EAAS,CAAuE,EAAQ2C,GAAOC,GAAU,EAAQC,GAAUC,GAAkB,WAAW,EAAQC,GAAWvD,EAAO,IAAI,EAAQwD,GAAiBC,GAAc,EAAQC,GAAWJ,GAAkB,WAAW,EAAQK,GAAW3D,EAAO,IAAI,EAAQ4D,GAAWN,GAAkB,WAAW,EAAQO,GAAW7D,EAAO,IAAI,EAAQ8D,GAAWR,GAAkB,WAAW,EAAQS,GAAW/D,EAAO,IAAI,EAAQgE,GAAWV,GAAkB,WAAW,EAAQW,GAAWjE,EAAO,IAAI,EAAQkE,GAAWZ,GAAkB,WAAW,EAAQa,GAAWnE,EAAO,IAAI,EAAQoE,GAAWd,GAAkB,WAAW,EAAQe,GAAWrE,EAAO,IAAI,EAAQsE,GAAWhB,GAAkB,WAAW,EAAQiB,EAAWvE,EAAO,IAAI,EAAE,OAAAwE,GAAiB,CAAC,CAAC,EAAsBnF,EAAKoF,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA9I,EAAiB,EAAE,SAAsB+I,EAAMC,EAAY,CAAC,GAAGlE,GAAUP,EAAgB,SAAS,CAAcb,EAAKF,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAeuF,EAAME,EAAO,IAAI,CAAC,GAAG3C,GAAU,UAAUiB,GAAGD,GAAkB,gBAAgBzC,CAAS,EAAE,IAAIP,EAAW,MAAM,CAAC,GAAGzC,CAAK,EAAE,SAAS,CAAckH,EAAM,OAAO,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAcrF,EAAKwF,EAA0B,CAAC,OAAO,GAAG,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAK0F,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1F,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBA,EAAK2F,GAAkC,CAAC,sBAAsB,GAAK,QAAQnJ,GAAU,SAAsBwD,EAAW4F,EAAS,CAAC,SAAsBP,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,yEAAyE,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,wEAAwE,UAAU,KAAK,EAAE,SAAS,CAAcrF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,uQAAqD,CAAC,EAAE,iWAAoE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,uDAAuD,MAAM,CAAC,6BAA6B,EAAE,QAAQvD,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe4I,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrF,EAAKhD,GAAQ,CAAC,SAAS0G,GAAsB1D,EAAK6F,GAAU,CAAC,SAAsB7F,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,YAAYhC,GAAmB,OAAO,yBAAyB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,GAAG,SAAsBH,EAAMU,GAAmC,CAAC,QAAQpJ,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,GAAG,SAAS,QAAQF,GAAW,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAS,CAAcuD,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsBjD,EAAKgG,GAAiB,CAAC,UAAU,GAAK,UAAU,2GAAsB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,gBAAgB,UAAUvC,GAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQA,EAAQ,QAAQ,YAAY,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAe1D,EAAKiG,GAAgB,CAAC,SAASvC,EAAQ,SAAsB1D,EAAK6F,GAAU,CAAC,SAA+BK,GAA0Bb,EAAYO,EAAS,CAAC,SAAS,CAAc5F,EAAKuF,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAU1B,GAAGD,GAAkB,gBAAgB,EAAE,wBAAwB,SAAS,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIF,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAe1D,EAAKwF,EAA0B,CAAC,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU5B,GAAGD,GAAkB,yBAAyB,EAAE,mBAAmB,cAAc,wBAAwB,SAAS,gBAAgB,GAAK,KAAK,cAAc,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBhH,GAAmB,SAAsBoD,EAAKmG,GAAW,CAAC,UAAU,8OAAqD,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,cAAc,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,mdAA4F,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEpJ,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiD,EAAKoG,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BrG,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,YAAYhC,GAAmB,OAAO,yBAAyB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,GAAG,SAAsBxF,EAAK+F,GAAmC,CAAC,QAAQpJ,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,QAAQF,GAAW,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsBuD,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoD,EAAc,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBrG,EAAKgG,GAAiB,CAAC,UAAU,GAAM,UAAU,6CAAU,UAAUK,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAU,GAAG,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerG,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYhC,GAAmB,OAAO,yBAAyB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,GAAG,MAAM,gBAAgBvE,GAAmB,OAAO,wCAAwC,SAAsBjB,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAKsG,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAMkB,GAAuC,CAAC,QAAQ/I,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,WAAW,GAAGwG,GAAU,QAAQvH,GAAW,UAAU,GAAK,IAAIyH,GAAK,SAAS,CAAclE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsBA,EAAKwG,EAAS,CAAC,sBAAsB,GAAK,SAAsBxG,EAAW4F,EAAS,CAAC,SAAsB5F,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,mDAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yBAAyB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeqF,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,SAAS,CAAcrF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKyG,GAAmB,CAAC,SAAsBzG,EAAKnB,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6H,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWnH,EAAeC,IAAwBO,EAAK6F,GAAU,CAAC,SAASc,GAAY,IAAI,CAAC,CAAC,UAAUpF,EAAmB,UAAUG,EAAmB,GAAGC,EAAY,UAAUF,EAAmB,UAAUH,EAAmB,UAAUE,EAAkB,EAAEoF,MAASrF,IAAqB,GAAGC,KAAqB,EAAEC,IAAqB,GAAGC,IAAqB,GAAuB1B,EAAKsF,EAAY,CAAC,GAAG,aAAa3D,IAAc,SAAsB3B,EAAK6G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUnF,CAAkB,EAAE,SAAsB1B,EAAKoG,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK3E,EAAmB,sBAAsB,CAAC,UAAUC,CAAkB,CAAC,EAAE,CAAC,KAAKD,EAAmB,sBAAsB,CAAC,UAAUC,CAAkB,CAAC,EAAE,CAAC,KAAKD,EAAmB,sBAAsB,CAAC,UAAUC,CAAkB,CAAC,CAAC,EAAE,SAASoF,IAA6B9G,EAAKwF,EAA0B,CAAC,OAAO,IAAI,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,SAAS,KAAK,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6D,GAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,GAAe,CAAC,CAAC,CAAC,EAAE,SAAsB9G,EAAK+G,GAAU,CAAC,UAAUxF,EAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,UAAU9D,GAAkB6D,CAAkB,EAAE,UAAU3D,GAAe6D,GAAmB,CAAC,eAAe,QAAQ,SAAS,MAAM,gBAAgB,SAAS,OAAO,QAAQ,SAAS,UAAU,MAAM,UAAU,EAAE2C,EAAgB,EAAE,MAAM,OAAO,UAAU2C,GAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEnF,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAK,MAAM,CAAC,UAAU,eAAe,cAAc,GAAK,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqF,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAGhB,GAAW,IAAIC,GAAK,SAAS,CAActE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsBA,EAAKwG,EAAS,CAAC,sBAAsB,GAAK,SAAsBxG,EAAW4F,EAAS,CAAC,SAAsB5F,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,4CAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKyG,GAAmB,CAAC,SAAsBzG,EAAKnB,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKmI,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAYC,EAAgBC,IAAyBnH,EAAK6F,GAAU,CAAC,SAASoB,GAAa,IAAI,CAAC,CAAC,UAAUpF,EAAmB,GAAGG,EAAY,UAAUJ,EAAmB,UAAUE,EAAmB,UAAUC,CAAkB,EAAEqF,MAAUxF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuB/B,EAAKsF,EAAY,CAAC,GAAG,aAAatD,IAAc,SAAsBhC,EAAK6G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUhF,CAAkB,EAAE,SAAsB7B,EAAKoG,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUvE,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASwF,IAA6BrH,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYhC,GAAmB,OAAO,yBAAyB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoE,GAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,GAAe,CAAC,CAAC,CAAC,EAAE,SAAsBrH,EAAKsH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUxF,EAAmB,UAAU,mDAAW,UAAUuF,GAAe,CAAC,EAAE,UAAUzF,EAAmB,UAAUG,EAAmB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,GAAGd,GAAW,IAAIC,GAAK,SAAS,CAAcxE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKwG,EAAS,CAAC,sBAAsB,GAAK,SAAsBxG,EAAW4F,EAAS,CAAC,SAAsB5F,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,sEAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKyG,GAAmB,CAAC,SAAsBzG,EAAKnB,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK0I,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAYC,EAAgBC,IAAyB1H,EAAK6F,GAAU,CAAC,SAAS2B,GAAa,IAAI,CAAC,CAAC,UAAUrF,EAAmB,GAAGE,EAAY,UAAUJ,EAAmB,UAAUG,EAAmB,UAAUF,CAAkB,EAAEyF,MAAUzF,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBpC,EAAKsF,EAAY,CAAC,GAAG,aAAajD,IAAc,SAAsBrC,EAAK6G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUzE,CAAkB,EAAE,SAAsBpC,EAAKoG,GAAa,CAAC,MAAM,CAAC,CAAC,KAAKjE,EAAmB,sBAAsB,CAAC,UAAUC,CAAkB,CAAC,EAAE,CAAC,KAAKD,EAAmB,sBAAsB,CAAC,UAAUC,CAAkB,CAAC,EAAE,CAAC,KAAKD,EAAmB,sBAAsB,CAAC,UAAUC,CAAkB,CAAC,CAAC,EAAE,SAASwF,IAA6B5H,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,yBAAyB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2E,GAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,GAAe,CAAC,CAAC,CAAC,EAAE,SAAsB5H,EAAK6H,GAAQ,CAAC,UAAU3F,EAAmB,OAAO,OAAO,GAAG,YAAY,UAAUzE,GAAkBwE,CAAkB,EAAE,SAAS,YAAY,UAAU2F,GAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEvF,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBA,EAAKoG,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS0B,GAA6B9H,EAAKwF,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,2BAA2B,KAAK,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6E,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB9H,EAAK+H,GAAmB,CAAC,UAAU,sEAAe,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,2BAA2B,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAUD,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezC,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,GAAGZ,GAAW,IAAIC,GAAK,SAAS,CAAc1E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsBA,EAAKwG,EAAS,CAAC,sBAAsB,GAAK,SAAsBxG,EAAW4F,EAAS,CAAC,SAAsB5F,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,gKAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcrF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKyG,GAAmB,CAAC,SAAsBzG,EAAKV,GAAW,CAAC,SAAS,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK0I,GAAK,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAYC,EAAgBC,IAAyBnI,EAAK6F,GAAU,CAAC,SAASoC,GAAa,IAAI,CAAC,CAAC,UAAUzF,EAAmB,GAAGG,EAAY,UAAUF,EAAmB,UAAUF,EAAmB,UAAUG,EAAmB,UAAUJ,EAAkB,EAAE8F,MAAU9F,KAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBxC,EAAKsF,EAAY,CAAC,GAAG,aAAa3C,IAAc,SAAsB3C,EAAK6G,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUvE,EAAkB,EAAE,SAAsBtC,EAAKqI,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU/F,EAAkB,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBtC,EAAKuF,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,UAAU,SAAsBvF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhC,GAAmB,OAAO,iBAAiB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAKsI,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU/F,EAAmB,UAAU9E,GAAkBiF,CAAkB,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUF,EAAmB,QAAQ,YAAY,UAAUtD,GAAauD,EAAmB,CAAC,UAAU,SAAS,OAAO,OAAO,EAAE0B,EAAgB,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBA,EAAKoG,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASmC,GAA6BvI,EAAKwF,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,2BAA2B,KAAK,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsF,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBvI,EAAK+H,GAAmB,CAAC,UAAU,4EAAgB,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,2BAA2B,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAUQ,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevI,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYhC,GAAmB,OAAO,yBAAyB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,cAAc,KAAK,cAAc,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAKmG,GAAW,CAAC,UAAU,8OAAqD,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,cAAc,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,mdAA4F,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAMkB,GAAuC,CAAC,QAAQ/I,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,WAAW,GAAGmH,GAAW,QAAQlI,GAAW,UAAU,GAAK,IAAImI,GAAK,SAAS,CAAc5E,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKwG,EAAS,CAAC,sBAAsB,GAAK,SAAsBxG,EAAW4F,EAAS,CAAC,SAAsB5F,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,+GAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeqF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAcrF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhC,GAAmB,OAAO,iBAAiB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWvE,GAAmB,OAAO,gCAAgC,SAAsBjB,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,YAAY,KAAK,YAAY,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAKwI,GAAa,CAAC,UAAU,GAAK,UAAU,yPAAiD,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,2BAAO,UAAU7I,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeK,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhC,GAAmB,OAAO,iBAAiB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWvE,GAAmB,OAAO,gCAAgC,SAAsBjB,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,YAAY,KAAK,YAAY,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAKwI,GAAa,CAAC,UAAU,GAAK,UAAU,uXAA2E,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,0CAA0C,QAAQ,YAAY,MAAM,OAAO,UAAU,wFAAkB,UAAU7I,GAAY,CAAC,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeK,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhC,GAAmB,OAAO,iBAAiB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWvE,GAAmB,OAAO,gCAAgC,SAAsBjB,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,YAAY,KAAK,YAAY,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAKwI,GAAa,CAAC,UAAU,GAAK,UAAU,8dAA6F,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,UAAU,mDAAW,UAAU7I,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0F,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,GAAGR,GAAW,IAAIC,GAAK,SAAS,CAAc9E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsBA,EAAKwG,EAAS,CAAC,sBAAsB,GAAK,SAAsBxG,EAAW4F,EAAS,CAAC,SAAsB5F,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,0FAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,SAAS,SAAsBA,EAAKwF,EAA0B,CAAC,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAKyI,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAK,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAczI,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,UAAU,gBAAgB,GAAK,KAAK,UAAU,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzF,EAAK0I,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,UAAU,UAAU,0DAAa,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,gEAAc,UAAU,69BAAuM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1I,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,UAAU,gBAAgB,GAAK,KAAK,UAAU,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzF,EAAK0I,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,UAAU,UAAU,gEAAc,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,0CAAY,UAAU,uoDAA2U,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1I,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,UAAU,gBAAgB,GAAK,KAAK,UAAU,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzF,EAAK0I,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,UAAU,UAAU,gEAAc,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,iGAAsB,UAAU,u+DAAyY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1I,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,UAAU,gBAAgB,GAAK,KAAK,UAAU,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzF,EAAK0I,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,UAAU,UAAU,6EAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,wCAAU,UAAU,q7BAAwL,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerD,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,GAAGN,GAAW,IAAIC,GAAK,SAAS,CAAchF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKwG,EAAS,CAAC,sBAAsB,GAAK,SAAsBxG,EAAW4F,EAAS,CAAC,SAAsB5F,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,UAAU,KAAK,EAAE,SAAS,uFAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKwF,EAA0B,CAAC,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAKyI,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,IAAI,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,eAAe,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAczI,EAAKwF,EAA0B,CAAC,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzF,EAAK2I,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,sDAAsD,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3I,EAAKwF,EAA0B,CAAC,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzF,EAAK2I,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,oGAAoG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3I,EAAKwF,EAA0B,CAAC,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzF,EAAK2I,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,gHAAgH,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3I,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhC,GAAmB,OAAO,iBAAiB,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWvE,GAAmB,OAAO,gCAAgC,SAAsBjB,EAAKyF,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,SAAS,GAAGR,GAAW,KAAK,SAAS,OAAO,YAAY,IAAIC,EAAK,QAAQ,YAAY,SAAsBlF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBjD,EAAK4I,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5I,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,OAAO,CAAC,EAAE,SAAsBjB,EAAKwF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxF,EAAKyF,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,MAAM,KAAK,MAAM,OAAO,YAAY,QAAQ,YAAY,SAAsBzF,EAAK8F,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBjD,EAAK6I,GAAW,CAAC,UAAU/D,GAAK,UAAUN,GAAK,UAAUE,GAAK,OAAO,OAAO,GAAG,YAAY,UAAUE,GAAK,SAAS,YAAY,KAAK,MAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUV,GAAK,QAAQ,YAAY,UAAUc,GAAK,MAAM,OAAO,UAAUV,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8I,GAAI,CAAC,kFAAkF,kFAAkF,qWAAqW,sTAAsT,0TAA0T,yGAAyG,2RAA2R,wQAAwQ,kRAAkR,mNAAmN,qIAAqI,yKAAyK,yQAAyQ,oYAAoY,qUAAqU,+VAA+V,kmBAAkmB,kSAAkS,wGAAwG,2vBAA2vB,+VAA+V,2XAA2X,oTAAoT,8TAA8T,6RAA6R,iJAAiJ,0GAA0G,+SAA+S,iJAAiJ,wUAAwU,gRAAgR,4RAA4R,iQAAiQ,oRAAoR,0GAA0G,6RAA6R,qHAAqH,mYAAmY,4RAA4R,6SAA6S,0RAA0R,0GAA0G,+FAA+F,8FAA8F,uIAAuI,8SAA8S,0RAA0R,qLAAqL,gLAAgL,2HAA2H,8HAA8H,ujNAAujN,GAAeA,GAAI,GAAgBA,GAAI,gcAAgc,qGAAqG,ooEAAooE,EAWto3DC,GAAgBC,GAAQzI,GAAUuI,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,uBAAuB,OAAO,SAAS,IAAI,sEAAsE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAmB,GAAGC,GAAsB,GAAGC,GAAgB,GAAGC,GAAkB,GAAGC,GAAe,GAAGC,GAAkB,GAAGC,GAAa,GAAGC,GAAwB,GAAGC,GAAkB,GAAGC,GAAkB,GAAGC,GAAgB,GAAGC,GAAe,GAAGC,GAAa,GAAGC,GAAiB,GAAGC,GAAgB,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAClzE,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,uBAAyB,GAAG,sBAAwB,IAAI,qBAAuB,obAAogB,sBAAwB,OAAO,yBAA2B,OAAO,yBAA2B,QAAQ,6BAA+B,OAAO,qBAAuB,OAAO,oCAAsC,4JAA0L,4BAA8B,OAAO,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "variationAxes", "fonts", "css", "className", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "image", "imageVisible", "link", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "X3OgCk8xH", "FD40T9ewa", "ZHFqT4Lbc", "eyij5FR9y", "u2OGD4R7M", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramerRQsu3EUnk", "withCSS", "RQsu3EUnk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "Buttons00PrimaryFonts", "HHaIDZQa0_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonLabel", "details", "height", "id", "link", "price", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "RAVTHRVoy", "pcHhnOKaU", "nbVe_mlMs", "RDeJ7KkQ8", "nYWxVHYLp", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap18p0dhb", "args", "onTap1jlpw4x", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "RichText2", "css", "FramerttlCZeYUv", "withCSS", "ttlCZeYUv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "subTitle", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "olped3gAP", "Ed6NI6cHd", "TVSv2ZuyI", "YGtkDxhwK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "css", "FramerZNoiBJ0af", "withCSS", "ZNoiBJ0af_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ConsultingCTAFonts", "getFonts", "Hb5HfPnYC_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "Buttons00PrimaryFonts", "HHaIDZQa0_default", "CardsEmailFonts", "SB4nQopiu_default", "ContainerWithOptimizedAppearEffect", "Container", "ClientsLogosFonts", "olVrW0fd1_default", "CardsWorkFonts", "ZNoiBJ0af_default", "MotionSectionWithOptimizedAppearEffect", "motion", "ServiceCard2Fonts", "ttlCZeYUv_default", "ProjectFonts", "U4hq2QTvo_default", "Buttons00SecondaryFonts", "bvw3vo5mW_default", "CardsArticleFonts", "HIj1uCZMk_default", "CardsProjectFonts", "RQsu3EUnk_default", "CardsQuoteFonts", "pwViGjpKu_default", "SlideshowFonts", "Slideshow", "YouTubeFonts", "Youtube", "FooterGroupFonts", "TYJvFr7rv_default", "NavigationFonts", "r28Wzxwez_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition3", "animation3", "toResponsiveImage", "value", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "QueryData", "query", "pageSize", "data", "useQueryData", "toDateString", "date", "display", "dateOptions", "QueryData1", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "addImageAlt", "image", "alt", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "className", "layoutId", "variant", "qONU8xSidg2WeXp9TT", "aCpwvqMVHg2WeXp9TT", "TnAWmEa6Sg2WeXp9TT", "JLZ5V1z3Mg2WeXp9TT", "dCMN7FTcsg2WeXp9TT", "idg2WeXp9TT", "mDZB0Pa5aJkGhbPnnQ", "FuNp7t1FIJkGhbPnnQ", "ntnwGB1DpJkGhbPnnQ", "rYjgmzJs6JkGhbPnnQ", "idJkGhbPnnQ", "NPxtAkr0nSw7z4Ydjy", "v1TaSfUujSw7z4Ydjy", "byg0hv_RBSw7z4Ydjy", "pN_Btkza_Sw7z4Ydjy", "idSw7z4Ydjy", "vYScKvA01VRE2CI92y", "kfz8ZsHYyVRE2CI92y", "fwIhkQ15OVRE2CI92y", "Jmva_ICcQVRE2CI92y", "Mcz4c5gH7VRE2CI92y", "idVRE2CI92y", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "QrJBV1Wzl3bnx0g", "overlay", "args", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "activeLocaleCode", "useLocaleCode", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "Hb5HfPnYC_default", "RichTextWithOptimizedAppearEffect", "x", "l", "PropertyOverrides2", "ContainerWithOptimizedAppearEffect", "HHaIDZQa0_default", "AnimatePresence", "Ga", "SB4nQopiu_default", "ResolveLinks", "resolvedLinks", "olVrW0fd1_default", "MotionSectionWithOptimizedAppearEffect", "RichText2", "ChildrenCanSuspend", "Qjhf0AoPK_default", "collection", "index", "PathVariablesContext", "resolvedLinks1", "ZNoiBJ0af_default", "NBBINxJuE_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "ttlCZeYUv_default", "tcFNAF3wI_default", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks3", "U4hq2QTvo_default", "resolvedLinks4", "bvw3vo5mW_default", "gaPE7dRf7_default", "collection3", "paginationInfo3", "loadMore3", "index3", "Link", "HIj1uCZMk_default", "resolvedLinks5", "RQsu3EUnk_default", "Slideshow", "pwViGjpKu_default", "Youtube", "TYJvFr7rv_default", "r28Wzxwez_default", "css", "FramerKd_pkASvP", "withCSS", "Kd_pkASvP_default", "addFonts", "ConsultingCTAFonts", "Buttons00PrimaryFonts", "CardsEmailFonts", "ClientsLogosFonts", "CardsWorkFonts", "ServiceCard2Fonts", "ProjectFonts", "Buttons00SecondaryFonts", "CardsArticleFonts", "CardsProjectFonts", "CardsQuoteFonts", "SlideshowFonts", "YouTubeFonts", "FooterGroupFonts", "NavigationFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
