{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.14.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/easing@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/animation@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:tslib@2.4.0/tslib.es6.js", "ssg:https://ga.jspm.io/npm:hey-listen@1.0.8/dist/index.js", "ssg:https://ga.jspm.io/npm:@motionone/generators@10.12.0/dist/index.es.js", "ssg:https://ga.jspm.io/npm:@motionone/dom@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/cdcEbyGWhXAzastexUFy/IVb7ejwiASkP4qSBmF3Z/NvxvGQ_NK.js", "ssg:https://framerusercontent.com/modules/pdnYi4LWpDdVXERIThqK/69ftFzyoCkmI4al8Ckze/x73r41dbx.js", "ssg:https://framerusercontent.com/modules/k1IVClm12pdVaZRa3au9/FnvoqnZcWzQjdPCws8Dz/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let f=0;for(;f<o-2;f++)if(s<e[f+1])break;let r=clamp(0,1,progress(e[f],e[f+1],s));const c=getEasingForSegment(n,f);r=c(r);return mix(t[f],t[f+1],r)}}const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isFunction=t=>\"function\"===typeof t;const isString=t=>\"string\"===typeof t;const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isFunction,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,clamp as n}from\"@motionone/utils\";const calcBezier=(t,n,e)=>(((1-3*e+3*n)*t+(3*e-6*n))*t+3*n)*t;const e=1e-7;const i=12;function binarySubdivide(t,n,o,r,c){let u;let a;let s=0;do{a=n+(o-n)/2;u=calcBezier(a,r,c)-t;u>0?o=a:n=a}while(Math.abs(u)>e&&++s<i);return a}function cubicBezier(n,e,i,o){if(n===e&&i===o)return t;const getTForX=t=>binarySubdivide(t,0,1,n,i);return t=>0===t||1===t?t:calcBezier(getTForX(t),e,o)}const steps=(t,e=\"end\")=>i=>{i=\"end\"===e?Math.min(i,.999):Math.max(i,.001);const o=i*t;const r=\"end\"===e?Math.floor(o):Math.ceil(o);return n(0,1,r/t)};export{cubicBezier,steps};\n\n//# sourceMappingURL=index.es.js.map", "import{noopReturn as t,defaults as i,isEasingGenerator as e,isEasingList as s,interpolate as a}from\"@motionone/utils\";import{cubicBezier as n,steps as r}from\"@motionone/easing\";const o={ease:n(.25,.1,.25,1),\"ease-in\":n(.42,0,1,1),\"ease-in-out\":n(.42,0,.58,1),\"ease-out\":n(0,0,.58,1)};const h=/\\((.*?)\\)/;function getEasingFunction(i){if(\"function\"===typeof i)return i;if(Array.isArray(i))return n(...i);if(o[i])return o[i];if(i.startsWith(\"steps\")){const t=h.exec(i);if(t){const i=t[1].split(\",\");return r(parseFloat(i[0]),i[1].trim())}}return t}class Animation{constructor(n,r=[0,1],{easing:o,duration:h=i.duration,delay:u=i.delay,endDelay:l=i.endDelay,repeat:m=i.repeat,offset:c,direction:p=\"normal\"}={}){this.startTime=null;this.rate=1;this.t=0;this.cancelTimestamp=null;this.easing=t;this.duration=0;this.totalDuration=0;this.repeat=0;this.playState=\"idle\";this.finished=new Promise(((t,i)=>{this.resolve=t;this.reject=i}));o=o||i.easing;if(e(o)){const t=o.createAnimation(r,(()=>\"0\"),true);o=t.easing;void 0!==t.keyframes&&(r=t.keyframes);void 0!==t.duration&&(h=t.duration)}this.repeat=m;this.easing=s(o)?t:getEasingFunction(o);this.updateDuration(h);const d=a(r,c,s(o)?o.map(getEasingFunction):t);this.tick=t=>{var i;u=u;let e=0;e=void 0!==this.pauseTime?this.pauseTime:(t-this.startTime)*this.rate;this.t=e;e/=1e3;e=Math.max(e-u,0);\"finished\"===this.playState&&void 0===this.pauseTime&&(e=this.totalDuration);const s=e/this.duration;let a=Math.floor(s);let r=s%1;!r&&s>=1&&(r=1);1===r&&a--;const o=a%2;(\"reverse\"===p||\"alternate\"===p&&o||\"alternate-reverse\"===p&&!o)&&(r=1-r);const h=e>=this.totalDuration?1:Math.min(r,1);const m=d(this.easing(h));n(m);const c=void 0===this.pauseTime&&(\"finished\"===this.playState||e>=this.totalDuration+l);if(c){this.playState=\"finished\";null===(i=this.resolve)||void 0===i?void 0:i.call(this,m)}else\"idle\"!==this.playState&&(this.frameRequestId=requestAnimationFrame(this.tick))};this.play()}play(){const t=performance.now();this.playState=\"running\";void 0!==this.pauseTime?this.startTime=t-this.pauseTime:this.startTime||(this.startTime=t);this.cancelTimestamp=this.startTime;this.pauseTime=void 0;this.frameRequestId=requestAnimationFrame(this.tick)}pause(){this.playState=\"paused\";this.pauseTime=this.t}finish(){this.playState=\"finished\";this.tick(0)}stop(){var t;this.playState=\"idle\";void 0!==this.frameRequestId&&cancelAnimationFrame(this.frameRequestId);null===(t=this.reject)||void 0===t?void 0:t.call(this,false)}cancel(){this.stop();this.tick(this.cancelTimestamp)}reverse(){this.rate*=-1}commitStyles(){}updateDuration(t){this.duration=t;this.totalDuration=t*(this.repeat+1)}get currentTime(){return this.t}set currentTime(t){void 0!==this.pauseTime||0===this.rate?this.pauseTime=t:this.startTime=performance.now()-t/this.rate}get playbackRate(){return this.rate}set playbackRate(t){this.rate=t}}export{Animation,getEasingFunction};\n\n//# sourceMappingURL=index.es.js.map", "var extendStatics=function(e,t){extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r])};return extendStatics(e,t)};function __extends(e,t){if(\"function\"!==typeof t&&null!==t)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}var __assign=function(){__assign=Object.assign||function __assign(e){for(var t,r=1,n=arguments.length;r<n;r++){t=arguments[r];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e};return __assign.apply(this,arguments)};function __rest(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"===typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}function __decorate(e,t,r,n){var o,a=arguments.length,i=a<3?t:null===n?n=Object.getOwnPropertyDescriptor(t,r):n;if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.decorate)i=Reflect.decorate(e,t,r,n);else for(var c=e.length-1;c>=0;c--)(o=e[c])&&(i=(a<3?o(i):a>3?o(t,r,i):o(t,r))||i);return a>3&&i&&Object.defineProperty(t,r,i),i}function __param(e,t){return function(r,n){t(r,n,e)}}function __metadata(e,t){if(\"object\"===typeof Reflect&&\"function\"===typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,r,n){function adopt(e){return e instanceof r?e:new r((function(t){t(e)}))}return new(r||(r=Promise))((function(r,o){function fulfilled(e){try{step(n.next(e))}catch(e){o(e)}}function rejected(e){try{step(n.throw(e))}catch(e){o(e)}}function step(e){e.done?r(e.value):adopt(e.value).then(fulfilled,rejected)}step((n=n.apply(e,t||[])).next())}))}function __generator(e,t){var r,n,o,a,i={label:0,sent:function(){if(1&o[0])throw o[1];return o[1]},trys:[],ops:[]};return a={next:verb(0),throw:verb(1),return:verb(2)},\"function\"===typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function verb(e){return function(t){return step([e,t])}}function step(a){if(r)throw new TypeError(\"Generator is already executing.\");while(i)try{if(r=1,n&&(o=2&a[0]?n.return:a[0]?n.throw||((o=n.return)&&o.call(n),0):n.next)&&!(o=o.call(n,a[1])).done)return o;(n=0,o)&&(a=[2&a[0],o.value]);switch(a[0]){case 0:case 1:o=a;break;case 4:i.label++;return{value:a[1],done:false};case 5:i.label++;n=a[1];a=[0];continue;case 7:a=i.ops.pop();i.trys.pop();continue;default:if(!(o=i.trys,o=o.length>0&&o[o.length-1])&&(6===a[0]||2===a[0])){i=0;continue}if(3===a[0]&&(!o||a[1]>o[0]&&a[1]<o[3])){i.label=a[1];break}if(6===a[0]&&i.label<o[1]){i.label=o[1];o=a;break}if(o&&i.label<o[2]){i.label=o[2];i.ops.push(a);break}o[2]&&i.ops.pop();i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e];n=0}finally{r=o=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:true}}}var e=Object.create?function(e,t,r,n){void 0===n&&(n=r);var o=Object.getOwnPropertyDescriptor(t,r);o&&!(\"get\"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:true,get:function(){return t[r]}});Object.defineProperty(e,n,o)}:function(e,t,r,n){void 0===n&&(n=r);e[n]=t[r]};function __exportStar(t,r){for(var n in t)\"default\"===n||Object.prototype.hasOwnProperty.call(r,n)||e(r,t,n)}function __values(e){var t=\"function\"===typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&\"number\"===typeof e.length)return{next:function(){e&&n>=e.length&&(e=void 0);return{value:e&&e[n++],done:!e}}};throw new TypeError(t?\"Object is not iterable.\":\"Symbol.iterator is not defined.\")}function __read(e,t){var r=\"function\"===typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,a=r.call(e),i=[];try{while((void 0===t||t-- >0)&&!(n=a.next()).done)i.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=a.return)&&r.call(a)}finally{if(o)throw o.error}}return i}\n/** @deprecated */function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}\n/** @deprecated */function __spreadArrays(){for(var e=0,t=0,r=arguments.length;t<r;t++)e+=arguments[t].length;var n=Array(e),o=0;for(t=0;t<r;t++)for(var a=arguments[t],i=0,c=a.length;i<c;i++,o++)n[o]=a[i];return n}function __spreadArray(e,t,r){if(r||2===arguments.length)for(var n,o=0,a=t.length;o<a;o++)if(n||!(o in t)){n||(n=Array.prototype.slice.call(t,0,o));n[o]=t[o]}return e.concat(n||Array.prototype.slice.call(t))}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,r){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var n,o=r.apply(e,t||[]),a=[];return n={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),n[Symbol.asyncIterator]=function(){return this},n;function verb(e){o[e]&&(n[e]=function(t){return new Promise((function(r,n){a.push([e,t,r,n])>1||resume(e,t)}))})}function resume(e,t){try{step(o[e](t))}catch(e){settle(a[0][3],e)}}function step(e){e.value instanceof __await?Promise.resolve(e.value.v).then(fulfill,reject):settle(a[0][2],e)}function fulfill(e){resume(\"next\",e)}function reject(e){resume(\"throw\",e)}function settle(e,t){(e(t),a.shift(),a.length)&&resume(a[0][0],a[0][1])}}function __asyncDelegator(e){var t,r;return t={},verb(\"next\"),verb(\"throw\",(function(e){throw e})),verb(\"return\"),t[Symbol.iterator]=function(){return this},t;function verb(n,o){t[n]=e[n]?function(t){return(r=!r)?{value:__await(e[n](t)),done:\"return\"===n}:o?o(t):t}:o}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t,r=e[Symbol.asyncIterator];return r?r.call(e):(e=\"function\"===typeof __values?__values(e):e[Symbol.iterator](),t={},verb(\"next\"),verb(\"throw\"),verb(\"return\"),t[Symbol.asyncIterator]=function(){return this},t);function verb(r){t[r]=e[r]&&function(t){return new Promise((function(n,o){t=e[r](t),settle(n,o,t.done,t.value)}))}}function settle(e,t,r,n){Promise.resolve(n).then((function(t){e({value:t,done:r})}),t)}}function __makeTemplateObject(e,t){Object.defineProperty?Object.defineProperty(e,\"raw\",{value:t}):e.raw=t;return e}var t=Object.create?function(e,t){Object.defineProperty(e,\"default\",{enumerable:true,value:t})}:function(e,t){e.default=t};function __importStar(r){if(r&&r.__esModule)return r;var n={};if(null!=r)for(var o in r)\"default\"!==o&&Object.prototype.hasOwnProperty.call(r,o)&&e(n,r,o);t(n,r);return n}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,r,n){if(\"a\"===r&&!n)throw new TypeError(\"Private accessor was defined without a getter\");if(\"function\"===typeof t?e!==t||!n:!t.has(e))throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");return\"m\"===r?n:\"a\"===r?n.call(e):n?n.value:t.get(e)}function __classPrivateFieldSet(e,t,r,n,o){if(\"m\"===n)throw new TypeError(\"Private method is not writable\");if(\"a\"===n&&!o)throw new TypeError(\"Private accessor was defined without a setter\");if(\"function\"===typeof t?e!==t||!o:!t.has(e))throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");return\"a\"===n?o.call(e,r):o?o.value=r:t.set(e,r),r}function __classPrivateFieldIn(e,t){if(null===t||\"object\"!==typeof t&&\"function\"!==typeof t)throw new TypeError(\"Cannot use 'in' operator on non-object\");return\"function\"===typeof e?t===e:e.has(t)}export{__assign,__asyncDelegator,__asyncGenerator,__asyncValues,__await,__awaiter,__classPrivateFieldGet,__classPrivateFieldIn,__classPrivateFieldSet,e as __createBinding,__decorate,__exportStar,__extends,__generator,__importDefault,__importStar,__makeTemplateObject,__metadata,__param,__read,__rest,__spread,__spreadArray,__spreadArrays,__values};\n\n//# sourceMappingURL=tslib.es6.js.map", "var n={};Object.defineProperty(n,\"__esModule\",{value:true});n.warning=function(){};n.invariant=function(){};const e=n.__esModule,t=n.warning,r=n.invariant;export default n;export{e as __esModule,r as invariant,t as warning};\n\n//# sourceMappingURL=index.js.map", "import{velocityPerSecond as e,time as t}from\"@motionone/utils\";const s=5;function calcGeneratorVelocity(t,n,r){const a=Math.max(n-s,0);return e(r-t(a),n-a)}const n={stiffness:100,damping:10,mass:1};const calcDampingRatio=(e=n.stiffness,t=n.damping,s=n.mass)=>t/(2*Math.sqrt(e*s));function hasReachedTarget(e,t,s){return e<t&&s>=t||e>t&&s<=t}const spring=({stiffness:e=n.stiffness,damping:s=n.damping,mass:r=n.mass,from:a=0,to:o=1,velocity:c=0,restSpeed:i=2,restDistance:h=.5}={})=>{c=c?t.s(c):0;const u={done:false,hasReachedTarget:false,current:a,target:o};const d=o-a;const f=Math.sqrt(e/r)/1e3;const l=calcDampingRatio(e,s,r);let g;if(l<1){const e=f*Math.sqrt(1-l*l);g=t=>o-Math.exp(-l*f*t)*((l*f*d-c)/e*Math.sin(e*t)+d*Math.cos(e*t))}else g=e=>o-Math.exp(-f*e)*(d+(f*d-c)*e);return e=>{u.current=g(e);const t=0===e?c:calcGeneratorVelocity(g,e,u.current);const s=Math.abs(t)<=i;const n=Math.abs(o-u.current)<=h;u.done=s&&n;u.hasReachedTarget=hasReachedTarget(a,o,u.current);return u}};const glide=({from:e=0,velocity:s=0,power:n=.8,decay:r=.325,bounceDamping:a,bounceStiffness:o,changeTarget:c,min:i,max:h,restDistance:u=.5,restSpeed:d})=>{r=t.ms(r);const f={hasReachedTarget:false,done:false,current:e,target:e};const isOutOfBounds=e=>void 0!==i&&e<i||void 0!==h&&e>h;const nearestBoundary=e=>void 0===i?h:void 0===h||Math.abs(i-e)<Math.abs(h-e)?i:h;let l=n*s;const g=e+l;const m=void 0===c?g:c(g);f.target=m;m!==g&&(l=m-e);const calcDelta=e=>-l*Math.exp(-e/r);const calcLatest=e=>m+calcDelta(e);const applyFriction=e=>{const t=calcDelta(e);const s=calcLatest(e);f.done=Math.abs(t)<=u;f.current=f.done?m:s};let p;let M;const checkCatchBoundary=e=>{if(isOutOfBounds(f.current)){p=e;M=spring({from:f.current,to:nearestBoundary(f.current),velocity:calcGeneratorVelocity(calcLatest,e,f.current),damping:a,stiffness:o,restDistance:u,restSpeed:d})}};checkCatchBoundary(0);return e=>{let t=false;if(!M&&void 0===p){t=true;applyFriction(e);checkCatchBoundary(e)}if(void 0!==p&&e>p){f.hasReachedTarget=true;return M(e-p)}f.hasReachedTarget=false;!t&&applyFriction(e);return f}};const r=10;const a=1e4;function pregenerateKeyframes(e){let t;let s=r;let n=e(0);const o=[n.current];while(!n.done&&s<a){n=e(s);o.push(n.done?n.target:n.current);void 0===t&&n.hasReachedTarget&&(t=s);s+=r}const c=s-r;1===o.length&&o.push(n.current);return{keyframes:o,duration:c/1e3,overshootDuration:(null!==t&&void 0!==t?t:c)/1e3}}export{calcGeneratorVelocity,glide,pregenerateKeyframes,spring};\n\n//# sourceMappingURL=index.es.js.map", "import{MotionValue as e}from\"@motionone/types\";import{noopReturn as t,addUniqueItem as n,isCubicBezier as o,defaults as i,isEasingGenerator as s,isNumber as r,time as a,isEasingList as c,noop as l,removeItem as f,mix as u,getEasingForSegment as d,isString as g,defaultOffset as m,fillOffset as h,progress as p,velocityPerSecond as v,interpolate as y}from\"@motionone/utils\";import{Animation as w,getEasingFunction as E}from\"@motionone/animation\";import{__rest as b}from\"tslib\";import{invariant as S}from\"hey-listen\";import{pregenerateKeyframes as A,calcGeneratorVelocity as O,spring as x,glide as V}from\"@motionone/generators\";const z=new WeakMap;function getAnimationData(e){z.has(e)||z.set(e,{transforms:[],values:new Map});return z.get(e)}function getMotionValue(t,n){t.has(n)||t.set(n,new e);return t.get(n)}const W=[\"\",\"X\",\"Y\",\"Z\"];const L=[\"translate\",\"scale\",\"rotate\",\"skew\"];const T={x:\"translateX\",y:\"translateY\",z:\"translateZ\"};const D={syntax:\"<angle>\",initialValue:\"0deg\",toDefaultUnit:e=>e+\"deg\"};const M={translate:{syntax:\"<length-percentage>\",initialValue:\"0px\",toDefaultUnit:e=>e+\"px\"},rotate:D,scale:{syntax:\"<number>\",initialValue:1,toDefaultUnit:t},skew:D};const k=new Map;const asTransformCssVar=e=>`--motion-${e}`;const B=[\"x\",\"y\",\"z\"];L.forEach((e=>{W.forEach((t=>{B.push(e+t);k.set(asTransformCssVar(e+t),M[e])}))}));const compareTransformOrder=(e,t)=>B.indexOf(e)-B.indexOf(t);const j=new Set(B);const isTransform=e=>j.has(e);const addTransformToElement=(e,t)=>{T[t]&&(t=T[t]);const{transforms:o}=getAnimationData(e);n(o,t);e.style.transform=buildTransformTemplate(o)};const buildTransformTemplate=e=>e.sort(compareTransformOrder).reduce(transformListToString,\"\").trim();const transformListToString=(e,t)=>`${e} ${t}(var(${asTransformCssVar(t)}))`;const isCssVar=e=>e.startsWith(\"--\");const P=new Set;function registerCssVariable(e){if(!P.has(e)){P.add(e);try{const{syntax:t,initialValue:n}=k.has(e)?k.get(e):{};CSS.registerProperty({name:e,inherits:false,syntax:t,initialValue:n})}catch(e){}}}const convertEasing=e=>o(e)?cubicBezierAsString(e):e;const cubicBezierAsString=([e,t,n,o])=>`cubic-bezier(${e}, ${t}, ${n}, ${o})`;const testAnimation=e=>document.createElement(\"div\").animate(e,{duration:.001});const C={cssRegisterProperty:()=>\"undefined\"!==typeof CSS&&Object.hasOwnProperty.call(CSS,\"registerProperty\"),waapi:()=>Object.hasOwnProperty.call(Element.prototype,\"animate\"),partialKeyframes:()=>{try{testAnimation({opacity:[1]})}catch(e){return false}return true},finished:()=>Boolean(testAnimation({opacity:[0,1]}).finished)};const $={};const R={};for(const e in C)R[e]=()=>{void 0===$[e]&&($[e]=C[e]());return $[e]};function hydrateKeyframes(e,t){for(let n=0;n<e.length;n++)null===e[n]&&(e[n]=n?e[n-1]:t());return e}const keyframesList=e=>Array.isArray(e)?e:[e];function getStyleName(e){T[e]&&(e=T[e]);return isTransform(e)?asTransformCssVar(e):e}const H={get:(e,t)=>{t=getStyleName(t);let n=isCssVar(t)?e.style.getPropertyValue(t):getComputedStyle(e)[t];if(!n&&0!==n){const e=k.get(t);e&&(n=e.initialValue)}return n},set:(e,t,n)=>{t=getStyleName(t);isCssVar(t)?e.style.setProperty(t,n):e.style[t]=n}};function stopAnimation(e,t=true){if(e&&\"finished\"!==e.playState)try{if(e.stop)e.stop();else{t&&e.commitStyles();e.cancel()}}catch(e){}}function getDevToolsRecord(){return window.__MOTION_DEV_TOOLS_RECORD}function animateStyle(e,t,n,o={}){const f=getDevToolsRecord();const u=false!==o.record&&f;let d;let{duration:g=i.duration,delay:m=i.delay,endDelay:h=i.endDelay,repeat:p=i.repeat,easing:v=i.easing,direction:y,offset:E,allowWebkitAcceleration:b=false}=o;const S=getAnimationData(e);let A=R.waapi();const O=isTransform(t);O&&addTransformToElement(e,t);const x=getStyleName(t);const V=getMotionValue(S.values,x);const z=k.get(x);stopAnimation(V.animation,!(s(v)&&V.generator)&&false!==o.record);return()=>{const readInitialValue=()=>{var t,n;return null!==(n=null!==(t=H.get(e,x))&&void 0!==t?t:null===z||void 0===z?void 0:z.initialValue)&&void 0!==n?n:0};let i=hydrateKeyframes(keyframesList(n),readInitialValue);if(s(v)){const e=v.createAnimation(i,readInitialValue,O,x,V);v=e.easing;void 0!==e.keyframes&&(i=e.keyframes);void 0!==e.duration&&(g=e.duration)}isCssVar(x)&&(R.cssRegisterProperty()?registerCssVariable(x):A=false);if(A){z&&(i=i.map((e=>r(e)?z.toDefaultUnit(e):e)));1!==i.length||R.partialKeyframes()&&!u||i.unshift(readInitialValue());const t={delay:a.ms(m),duration:a.ms(g),endDelay:a.ms(h),easing:c(v)?void 0:convertEasing(v),direction:y,iterations:p+1,fill:\"both\"};d=e.animate({[x]:i,offset:E,easing:c(v)?v.map(convertEasing):void 0},t);d.finished||(d.finished=new Promise(((e,t)=>{d.onfinish=e;d.oncancel=t})));const n=i[i.length-1];d.finished.then((()=>{H.set(e,x,n);d.cancel()})).catch(l);b||(d.playbackRate=1.000001)}else if(O){i=i.map((e=>\"string\"===typeof e?parseFloat(e):e));1===i.length&&i.unshift(parseFloat(readInitialValue()));const render=t=>{z&&(t=z.toDefaultUnit(t));H.set(e,x,t)};d=new w(render,i,Object.assign(Object.assign({},o),{duration:g,easing:v}))}else{const t=i[i.length-1];H.set(e,x,z&&r(t)?z.toDefaultUnit(t):t)}u&&f(e,t,i,{duration:g,delay:m,easing:v,repeat:p,offset:E},\"motion-one\");V.setAnimation(d);return d}}const getOptions=(e,t)=>e[t]?Object.assign(Object.assign({},e),e[t]):Object.assign({},e);function resolveElements(e,t){var n;if(\"string\"===typeof e)if(t){null!==(n=t[e])&&void 0!==n?n:t[e]=document.querySelectorAll(e);e=t[e]}else e=document.querySelectorAll(e);else e instanceof Element&&(e=[e]);return Array.from(e||[])}const createAnimation=e=>e();const withControls=(e,t,n=i.duration)=>new Proxy({animations:e.map(createAnimation).filter(Boolean),duration:n,options:t},I);const getActiveAnimation=e=>e.animations[0];const I={get:(e,t)=>{const n=getActiveAnimation(e);switch(t){case\"duration\":return e.duration;case\"currentTime\":return a.s((null===n||void 0===n?void 0:n[t])||0);case\"playbackRate\":case\"playState\":return null===n||void 0===n?void 0:n[t];case\"finished\":e.finished||(e.finished=Promise.all(e.animations.map(selectFinished)).catch(l));return e.finished;case\"stop\":return()=>{e.animations.forEach((e=>stopAnimation(e)))};case\"forEachNative\":return t=>{e.animations.forEach((n=>t(n,e)))};default:return\"undefined\"===typeof(null===n||void 0===n?void 0:n[t])?void 0:()=>e.animations.forEach((e=>e[t]()))}},set:(e,t,n)=>{switch(t){case\"currentTime\":n=a.ms(n);case\"currentTime\":case\"playbackRate\":for(let o=0;o<e.animations.length;o++)e.animations[o][t]=n;return true}return false}};const selectFinished=e=>e.finished;function stagger(e=.1,{start:t=0,from:n=0,easing:o}={}){return(i,s)=>{const a=r(n)?n:getFromIndex(n,s);const c=Math.abs(a-i);let l=e*c;if(o){const t=s*e;const n=E(o);l=n(l/t)*t}return t+l}}function getFromIndex(e,t){if(\"first\"===e)return 0;{const n=t-1;return\"last\"===e?n:n/2}}function resolveOption(e,t,n){return\"function\"===typeof e?e(t,n):e}function animate(e,t,n={}){e=resolveElements(e);const o=e.length;const i=[];for(let s=0;s<o;s++){const r=e[s];for(const e in t){const a=getOptions(n,e);a.delay=resolveOption(a.delay,s,o);const c=animateStyle(r,e,t[e],a);i.push(c)}}return withControls(i,n,n.duration)}function calcNextTime(e,t,n,o){var i;return r(t)?t:t.startsWith(\"-\")||t.startsWith(\"+\")?Math.max(0,e+parseFloat(t)):\"<\"===t?n:null!==(i=o.get(t))&&void 0!==i?i:e}function eraseKeyframes(e,t,n){for(let o=0;o<e.length;o++){const i=e[o];if(i.at>t&&i.at<n){f(e,i);o--}}}function addKeyframes(e,t,n,o,i,s){eraseKeyframes(e,i,s);for(let r=0;r<t.length;r++)e.push({value:t[r],at:u(i,s,o[r]),easing:d(n,r)})}function compareByTime(e,t){return e.at===t.at?null===e.value?1:-1:e.at-t.at}function timeline(e,t={}){var n;const o=createAnimationsFromTimeline(e,t);const i=o.map((e=>animateStyle(...e))).filter(Boolean);return withControls(i,t,null===(n=o[0])||void 0===n?void 0:n[3].duration)}function createAnimationsFromTimeline(e,t={}){var{defaultOptions:n={}}=t,o=b(t,[\"defaultOptions\"]);const r=[];const a=new Map;const c={};const l=new Map;let f=0;let u=0;let d=0;for(let t=0;t<e.length;t++){const o=e[t];if(g(o)){l.set(o,u);continue}if(!Array.isArray(o)){l.set(o.name,calcNextTime(u,o.at,f,l));continue}const[r,p,v={}]=o;void 0!==v.at&&(u=calcNextTime(u,v.at,f,l));let y=0;const w=resolveElements(r,c);const E=w.length;for(let e=0;e<E;e++){const t=w[e];const o=getElementSequence(t,a);for(const t in p){const r=getValueSequence(t,o);let a=keyframesList(p[t]);const c=getOptions(v,t);let{duration:l=n.duration||i.duration,easing:f=n.easing||i.easing}=c;if(s(f)){const e=isTransform(t);S(2===a.length||!e,\"spring must be provided 2 keyframes within timeline\");const n=f.createAnimation(a,(()=>\"0\"),e);f=n.easing;void 0!==n.keyframes&&(a=n.keyframes);void 0!==n.duration&&(l=n.duration)}const g=resolveOption(v.delay,e,E)||0;const w=u+g;const b=w+l;let{offset:A=m(a.length)}=c;1===A.length&&0===A[0]&&(A[1]=1);const O=length-a.length;O>0&&h(A,O);1===a.length&&a.unshift(null);addKeyframes(r,a,f,A,w,b);y=Math.max(g+l,y);d=Math.max(b,d)}}f=u;u+=y}a.forEach(((e,t)=>{for(const s in e){const a=e[s];a.sort(compareByTime);const c=[];const l=[];const f=[];for(let e=0;e<a.length;e++){const{at:t,value:n,easing:o}=a[e];c.push(n);l.push(p(0,d,t));f.push(o||i.easing)}if(0!==l[0]){l.unshift(0);c.unshift(c[0]);f.unshift(\"linear\")}if(1!==l[l.length-1]){l.push(1);c.push(null)}r.push([t,s,c,Object.assign(Object.assign(Object.assign({},n),{duration:d,easing:f,offset:l}),o)])}}));return r}function getElementSequence(e,t){!t.has(e)&&t.set(e,{});return t.get(e)}function getValueSequence(e,t){t[e]||(t[e]=[]);return t[e]}function createGeneratorEasing(e){const t=new WeakMap;return(n={})=>{const o=new Map;const getGenerator=(t=0,i=100,s=0,r=false)=>{const a=`${t}-${i}-${s}-${r}`;o.has(a)||o.set(a,e(Object.assign({from:t,to:i,velocity:s,restSpeed:r?.05:2,restDistance:r?.01:.5},n)));return o.get(a)};const getKeyframes=e=>{t.has(e)||t.set(e,A(e));return t.get(e)};return{createAnimation:(e,t,n,o,i)=>{var s,r;let a;const c=e.length;let l=n&&c<=2&&e.every(isNumberOrNull);if(l){const n=e[c-1];const l=1===c?null:e[0];let f=0;let u=0;const d=null===i||void 0===i?void 0:i.generator;if(d){const{animation:t,generatorStartTime:n}=i;const o=(null===t||void 0===t?void 0:t.startTime)||n||0;const r=(null===t||void 0===t?void 0:t.currentTime)||performance.now()-o;const a=d(r).current;u=null!==(s=l)&&void 0!==s?s:a;(1===c||2===c&&null===e[0])&&(f=O((e=>d(e).current),r,a))}else u=null!==(r=l)&&void 0!==r?r:parseFloat(t());const g=getGenerator(u,n,f,null===o||void 0===o?void 0:o.includes(\"scale\"));const m=getKeyframes(g);a=Object.assign(Object.assign({},m),{easing:\"linear\"});if(i){i.generator=g;i.generatorStartTime=performance.now()}}else{const e=getKeyframes(getGenerator(0,100));a={easing:\"ease\",duration:e.overshootDuration}}return a}}}}const isNumberOrNull=e=>\"string\"!==typeof e;const N=createGeneratorEasing(x);const F=createGeneratorEasing(V);const U={any:0,all:1};function inView$1(e,t,{root:n,margin:o,amount:i=\"any\"}={}){if(\"undefined\"===typeof IntersectionObserver)return()=>{};const s=resolveElements(e);const r=new WeakMap;const onIntersectionChange=e=>{e.forEach((e=>{const n=r.get(e.target);if(e.isIntersecting!==Boolean(n))if(e.isIntersecting){const n=t(e);\"function\"===typeof n?r.set(e.target,n):a.unobserve(e.target)}else if(n){n(e);r.delete(e.target)}}))};const a=new IntersectionObserver(onIntersectionChange,{root:n,rootMargin:o,threshold:\"number\"===typeof i?i:U[i]});s.forEach((e=>a.observe(e)));return()=>a.disconnect()}const q=new WeakMap;let K;function getElementSize(e,t){if(t){const{inlineSize:e,blockSize:n}=t[0];return{width:e,height:n}}return e instanceof SVGElement&&\"getBBox\"in e?e.getBBox():{width:e.offsetWidth,height:e.offsetHeight}}function notifyTarget({target:e,contentRect:t,borderBoxSize:n}){var o;null===(o=q.get(e))||void 0===o?void 0:o.forEach((o=>{o({target:e,contentSize:t,get size(){return getElementSize(e,n)}})}))}function notifyAll(e){e.forEach(notifyTarget)}function createResizeObserver(){\"undefined\"!==typeof ResizeObserver&&(K=new ResizeObserver(notifyAll))}function resizeElement(e,t){K||createResizeObserver();const n=resolveElements(e);n.forEach((e=>{let n=q.get(e);if(!n){n=new Set;q.set(e,n)}n.add(t);null===K||void 0===K?void 0:K.observe(e)}));return()=>{n.forEach((e=>{const n=q.get(e);null===n||void 0===n?void 0:n.delete(t);(null===n||void 0===n?void 0:n.size)||(null===K||void 0===K?void 0:K.unobserve(e))}))}}const G=new Set;let _;function createWindowResizeHandler(){_=()=>{const e={width:window.innerWidth,height:window.innerHeight};const t={target:window,size:e,contentSize:e};G.forEach((e=>e(t)))};window.addEventListener(\"resize\",_)}function resizeWindow(e){G.add(e);_||createWindowResizeHandler();return()=>{G.delete(e);!G.size&&_&&(_=void 0)}}function resize(e,t){return\"function\"===typeof e?resizeWindow(e):resizeElement(e,t)}const Z=50;const createAxisInfo=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0});const createScrollInfo=()=>({time:0,x:createAxisInfo(),y:createAxisInfo()});const X={x:{length:\"Width\",position:\"Left\"},y:{length:\"Height\",position:\"Top\"}};function updateAxisInfo(e,t,n,o){const i=n[t];const{length:s,position:r}=X[t];const a=i.current;const c=n.time;i.current=e[\"scroll\"+r];i.scrollLength=e[\"scroll\"+s]-e[\"client\"+s];i.offset.length=0;i.offset[0]=0;i.offset[1]=i.scrollLength;i.progress=p(0,i.scrollLength,i.current);const l=o-c;i.velocity=l>Z?0:v(i.current-a,l)}function updateScrollInfo(e,t,n){updateAxisInfo(e,\"x\",t,n);updateAxisInfo(e,\"y\",t,n);t.time=n}function calcInset(e,t){let n={x:0,y:0};let o=e;while(o&&o!==t)if(o instanceof HTMLElement){n.x+=o.offsetLeft;n.y+=o.offsetTop;o=o.offsetParent}else if(o instanceof SVGGraphicsElement&&\"getBBox\"in o){const{top:e,left:t}=o.getBBox();n.x+=t;n.y+=e;while(o&&\"svg\"!==o.tagName)o=o.parentNode}return n}const Y={Enter:[[0,1],[1,1]],Exit:[[0,0],[1,0]],Any:[[1,0],[0,1]],All:[[0,0],[1,1]]};const J={start:0,center:.5,end:1};function resolveEdge(e,t,n=0){let o=0;void 0!==J[e]&&(e=J[e]);if(g(e)){const t=parseFloat(e);e.endsWith(\"px\")?o=t:e.endsWith(\"%\")?e=t/100:e.endsWith(\"vw\")?o=t/100*document.documentElement.clientWidth:e.endsWith(\"vh\")?o=t/100*document.documentElement.clientHeight:e=t}r(e)&&(o=t*e);return n+o}const Q=[0,0];function resolveOffset(e,t,n,o){let i=Array.isArray(e)?e:Q;let s=0;let a=0;if(r(e))i=[e,e];else if(g(e)){e=e.trim();i=e.includes(\" \")?e.split(\" \"):[e,J[e]?e:\"0\"]}s=resolveEdge(i[0],n,o);a=resolveEdge(i[1],t);return s-a}const ee={x:0,y:0};function resolveOffsets(e,t,n){let{offset:o=Y.All}=n;const{target:i=e,axis:s=\"y\"}=n;const r=\"y\"===s?\"height\":\"width\";const a=i!==e?calcInset(i,e):ee;const c=i===e?{width:e.scrollWidth,height:e.scrollHeight}:{width:i.clientWidth,height:i.clientHeight};const l={width:e.clientWidth,height:e.clientHeight};t[s].offset.length=0;let f=!t[s].interpolate;const u=o.length;for(let e=0;e<u;e++){const n=resolveOffset(o[e],l[r],c[r],a[s]);f||n===t[s].interpolatorOffsets[e]||(f=true);t[s].offset[e]=n}if(f){t[s].interpolate=y(m(u),t[s].offset);t[s].interpolatorOffsets=[...t[s].offset]}t[s].progress=t[s].interpolate(t[s].current)}function measure(e,t=e,n){n.x.targetOffset=0;n.y.targetOffset=0;if(t!==e){let o=t;while(o&&o!=e){n.x.targetOffset+=o.offsetLeft;n.y.targetOffset+=o.offsetTop;o=o.offsetParent}}n.x.targetLength=t===e?t.scrollWidth:t.clientWidth;n.y.targetLength=t===e?t.scrollHeight:t.clientHeight;n.x.containerLength=e.clientWidth;n.y.containerLength=e.clientHeight}function createOnScrollHandler(e,t,n,o={}){const i=o.axis||\"y\";return{measure:()=>measure(e,o.target,n),update:t=>{updateScrollInfo(e,n,t);(o.offset||o.target)&&resolveOffsets(e,n,o)},notify:\"function\"===typeof t?()=>t(n):scrubAnimation(t,n[i])}}function scrubAnimation(e,n){e.pause();e.forEachNative(((e,{easing:n})=>{var o,i;if(e.updateDuration){n||(e.easing=t);e.updateDuration(1)}else{const t={duration:1e3};n||(t.easing=\"linear\");null===(i=null===(o=e.effect)||void 0===o?void 0:o.updateTiming)||void 0===i?void 0:i.call(o,t)}}));return()=>{e.currentTime=n.progress}}const te=new WeakMap;const ne=new WeakMap;const oe=new WeakMap;const getEventTarget=e=>e===document.documentElement?window:e;function scroll(e,t={}){var{container:n=document.documentElement}=t,o=b(t,[\"container\"]);let i=oe.get(n);if(!i){i=new Set;oe.set(n,i)}const s=createScrollInfo();const r=createOnScrollHandler(n,e,s,o);i.add(r);if(!te.has(n)){const listener=()=>{const e=performance.now();for(const e of i)e.measure();for(const t of i)t.update(e);for(const e of i)e.notify()};te.set(n,listener);const e=getEventTarget(n);window.addEventListener(\"resize\",listener,{passive:true});n!==document.documentElement&&ne.set(n,resize(n,listener));e.addEventListener(\"scroll\",listener,{passive:true})}const a=te.get(n);const c=requestAnimationFrame(a);return()=>{var t;\"function\"!==typeof e&&e.stop();cancelAnimationFrame(c);const o=oe.get(n);if(!o)return;o.delete(r);if(o.size)return;const i=te.get(n);te.delete(n);if(i){getEventTarget(n).removeEventListener(\"scroll\",i);null===(t=ne.get(n))||void 0===t?void 0:t();window.removeEventListener(\"resize\",i)}}}function hasChanged(e,t){return typeof e!==typeof t||(Array.isArray(e)&&Array.isArray(t)?!shallowCompare(e,t):e!==t)}function shallowCompare(e,t){const n=t.length;if(n!==e.length)return false;for(let o=0;o<n;o++)if(t[o]!==e[o])return false;return true}function isVariant(e){return\"object\"===typeof e}function resolveVariant(e,t){return isVariant(e)?e:e&&t?t[e]:void 0}let ie;function processScheduledAnimations(){if(!ie)return;const e=ie.sort(compareByDepth).map(fireAnimateUpdates);e.forEach(fireNext);e.forEach(fireNext);ie=void 0}function scheduleAnimation(e){if(ie)n(ie,e);else{ie=[e];requestAnimationFrame(processScheduledAnimations)}}function unscheduleAnimation(e){ie&&f(ie,e)}const compareByDepth=(e,t)=>e.getDepth()-t.getDepth();const fireAnimateUpdates=e=>e.animateUpdates();const fireNext=e=>e.next();const motionEvent=(e,t)=>new CustomEvent(e,{detail:{target:t}});function dispatchPointerEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEvent:n}}))}function dispatchViewEvent(e,t,n){e.dispatchEvent(new CustomEvent(t,{detail:{originalEntry:n}}))}const se={isActive:e=>Boolean(e.inView),subscribe:(e,{enable:t,disable:n},{inViewOptions:o={}})=>{const{once:i}=o,s=b(o,[\"once\"]);return inView$1(e,(o=>{t();dispatchViewEvent(e,\"viewenter\",o);if(!i)return t=>{n();dispatchViewEvent(e,\"viewleave\",t)}}),s)}};const mouseEvent=(e,t,n)=>o=>{if(!o.pointerType||\"mouse\"===o.pointerType){n();dispatchPointerEvent(e,t,o)}};const re={isActive:e=>Boolean(e.hover),subscribe:(e,{enable:t,disable:n})=>{const o=mouseEvent(e,\"hoverstart\",t);const i=mouseEvent(e,\"hoverend\",n);e.addEventListener(\"pointerenter\",o);e.addEventListener(\"pointerleave\",i);return()=>{e.removeEventListener(\"pointerenter\",o);e.removeEventListener(\"pointerleave\",i)}}};const ae={isActive:e=>Boolean(e.press),subscribe:(e,{enable:t,disable:n})=>{const onPointerUp=t=>{n();dispatchPointerEvent(e,\"pressend\",t);window.removeEventListener(\"pointerup\",onPointerUp)};const onPointerDown=n=>{t();dispatchPointerEvent(e,\"pressstart\",n);window.addEventListener(\"pointerup\",onPointerUp)};e.addEventListener(\"pointerdown\",onPointerDown);return()=>{e.removeEventListener(\"pointerdown\",onPointerDown);window.removeEventListener(\"pointerup\",onPointerUp)}}};const ce={inView:se,hover:re,press:ae};const le=[\"initial\",\"animate\",...Object.keys(ce),\"exit\"];const fe=new WeakMap;function createMotionState(e={},t){let n;let o=t?t.getDepth()+1:0;const i={initial:true,animate:true};const s={};const r={};for(const n of le)r[n]=\"string\"===typeof e[n]?e[n]:null===t||void 0===t?void 0:t.getContext()[n];const a=false===e.initial?\"animate\":\"initial\";let c=resolveVariant(e[a]||r[a],e.variants)||{},f=b(c,[\"transition\"]);const u=Object.assign({},f);function*animateUpdates(){var t,o;const s=f;f={};const r={};for(const n of le){if(!i[n])continue;const s=resolveVariant(e[n]);if(s)for(const n in s)if(\"transition\"!==n){f[n]=s[n];r[n]=getOptions(null!==(o=null!==(t=s.transition)&&void 0!==t?t:e.transition)&&void 0!==o?o:{},n)}}const a=new Set([...Object.keys(f),...Object.keys(s)]);const c=[];a.forEach((e=>{var t;void 0===f[e]&&(f[e]=u[e]);if(hasChanged(s[e],f[e])){null!==(t=u[e])&&void 0!==t?t:u[e]=H.get(n,e);c.push(animateStyle(n,e,f[e],r[e]))}}));yield;const d=c.map((e=>e())).filter(Boolean);if(!d.length)return;const g=f;n.dispatchEvent(motionEvent(\"motionstart\",g));Promise.all(d.map((e=>e.finished))).then((()=>{n.dispatchEvent(motionEvent(\"motioncomplete\",g))})).catch(l)}const setGesture=(e,t)=>()=>{i[e]=t;scheduleAnimation(d)};const updateGestureSubscriptions=()=>{for(const t in ce){const o=ce[t].isActive(e);const i=s[t];if(o&&!i)s[t]=ce[t].subscribe(n,{enable:setGesture(t,true),disable:setGesture(t,false)},e);else if(!o&&i){i();delete s[t]}}};const d={update:t=>{if(n){e=t;updateGestureSubscriptions();scheduleAnimation(d)}},setActive:(e,t)=>{if(n){i[e]=t;scheduleAnimation(d)}},animateUpdates:animateUpdates,getDepth:()=>o,getTarget:()=>f,getOptions:()=>e,getContext:()=>r,mount:e=>{S(Boolean(e),\"Animation state must be mounted with valid Element\");n=e;fe.set(n,d);updateGestureSubscriptions();return()=>{fe.delete(n);unscheduleAnimation(d);for(const e in s)s[e]()}},isMounted:()=>Boolean(n)};return d}function createStyles(e){const t={};const n=[];for(let o in e){const i=e[o];if(isTransform(o)){T[o]&&(o=T[o]);n.push(o);o=asTransformCssVar(o)}let s=Array.isArray(i)?i[0]:i;const a=k.get(o);a&&(s=r(i)?a.toDefaultUnit(i):i);t[o]=s}n.length&&(t.transform=buildTransformTemplate(n));return t}const camelLetterToPipeLetter=e=>`-${e.toLowerCase()}`;const camelToPipeCase=e=>e.replace(/[A-Z]/g,camelLetterToPipeLetter);function createStyleString(e={}){const t=createStyles(e);let n=\"\";for(const e in t){n+=e.startsWith(\"--\")?e:camelToPipeCase(e);n+=`: ${t[e]}; `}return n}export{Y as ScrollOffset,animate,animateStyle,createMotionState,createStyleString,createStyles,getAnimationData,getStyleName,F as glide,inView$1 as inView,fe as mountedStates,resize,scroll,N as spring,stagger,H as style,timeline,withControls};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-ec3Wx\";const variantClassNames={uwQE9gLbk:\"framer-v-naoxsd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};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,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uwQE9gLbk\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-naoxsd\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uwQE9gLbk\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xpv499\",\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"Ru3W37Xue\",style:{backgroundColor:\"rgb(151, 72, 255)\",borderBottomLeftRadius:3,borderBottomRightRadius:3,borderTopLeftRadius:3,borderTopRightRadius:3},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, rgb(255, 255, 255)))\"},children:\"Anonymous\"})}),className:\"framer-1auqzfy\",fonts:[\"FR;InterDisplay-Medium\"],layoutDependency:layoutDependency,layoutId:\"u1CyO9xLO\",style:{\"--extracted-r6o4lv\":\"var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wmpewo\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"IK5rqkzAu\",svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><path d=\"M24.788 12.444 7.298 6.253c-.917-.325-1.792.577-1.439 1.484l6.495 16.684c.37.952 1.711.97 2.108.03l2.625-6.23c.115-.273.33-.49.602-.605l7.165-3.054c.954-.406.911-1.772-.066-2.118Z\" fill=\"#9748FF\"/><path d=\"M25.042 11.726 7.552 5.534c-1.53-.542-2.992.966-2.402 2.48l6.495 16.684c.62 1.59 2.858 1.62 3.52.048l2.625-6.23a.375.375 0 0 1 .199-.2l7.165-3.053c1.593-.678 1.521-2.96-.11-3.537Z\" stroke=\"#fff\" stroke-width=\"1.524\"/></g><defs><filter id=\"a\" x=\".252\" y=\"1.658\" width=\"30.818\" height=\"30.012\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"1\"/><feGaussianBlur stdDeviation=\"2\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_675_1360\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_675_1360\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ec3Wx.framer-1xb38tj, .framer-ec3Wx .framer-1xb38tj { display: block; }\",\".framer-ec3Wx.framer-naoxsd { height: 200px; position: relative; width: 200px; }\",\".framer-ec3Wx .framer-xpv499 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; left: 118px; overflow: hidden; padding: 0px 4px 0px 4px; position: absolute; top: 118px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ec3Wx .framer-1auqzfy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ec3Wx .framer-1wmpewo { aspect-ratio: 1 / 1; bottom: 76px; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: absolute; right: 76px; width: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ec3Wx .framer-xpv499 { gap: 0px; } .framer-ec3Wx .framer-xpv499 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ec3Wx .framer-xpv499 > :first-child { margin-left: 0px; } .framer-ec3Wx .framer-xpv499 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNvxvGQ_NK=withCSS(Component,css,\"framer-ec3Wx\");export default FramerNvxvGQ_NK;FramerNvxvGQ_NK.displayName=\"Cursor\";FramerNvxvGQ_NK.defaultProps={height:200,width:200};addFonts(FramerNvxvGQ_NK,[{explicitInter:true,fonts:[{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNvxvGQ_NK\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NvxvGQ_NK.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={vzRLNKLnL:{hover:true}};const serializationHash=\"framer-8rXzN\";const variantClassNames={vzRLNKLnL:\"framer-v-vhjvm8\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"vzRLNKLnL\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Lt3jAYb3V\"},motionChild:true,nodeId:\"vzRLNKLnL\",scopeId:\"x73r41dbx\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-vhjvm8\",className,classNames)} framer-1l1f5ug`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vzRLNKLnL\",ref:refBinding,style:{background:\"linear-gradient(180deg, rgb(36, 36, 36) 0%, rgb(36, 36, 36) 100%)\",backgroundColor:\"rgb(36, 36, 36)\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,boxShadow:\"0px 16px 32px 0px rgba(19, 19, 24, 0.3), 0px 8px 16px 0px rgba(19, 19, 24, 0.3), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.20000000298023224), inset 0px -2px 0px 0px rgba(102, 102, 102, 0.1)\",...style},variants:{\"vzRLNKLnL-hover\":{background:\"linear-gradient(180deg, rgb(136, 85, 255) 0%, rgb(120, 61, 255) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"0px 16px 32px 0px rgba(32, 8, 73, 0.3), 0px 8px 16px 0px rgba(137, 59, 247, 0.30000001192092896), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.20000000298023224), inset 0px -2px 0px 0px rgba(0, 0, 0, 0.2)\"}},...addPropertyOverrides({\"vzRLNKLnL-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fpn7fy\",\"data-framer-name\":\"Glow\",layoutDependency:layoutDependency,layoutId:\"m6yxIEvqv\",style:{background:\"radial-gradient(50% 50% at 50.000000000000014% 50.00000194948607%, rgba(193, 130, 252, 1) 0%, rgba(118, 58, 254, 0) 100%)\",borderBottomLeftRadius:62,borderBottomRightRadius:62,borderTopLeftRadius:62,borderTopRightRadius:62,opacity:0},variants:{\"vzRLNKLnL-hover\":{opacity:1}}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, rgb(255, 255, 255)))\"},children:\"Get Landify UI\"})}),className:\"framer-jvdzms\",\"data-framer-name\":\"Get Landify UI\",fonts:[\"FR;InterDisplay-Medium\"],layoutDependency:layoutDependency,layoutId:\"RzmgY3_8H\",style:{\"--extracted-r6o4lv\":\"var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8rXzN.framer-1l1f5ug, .framer-8rXzN .framer-1l1f5ug { display: block; }\",\".framer-8rXzN.framer-vhjvm8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 62px; justify-content: center; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-8rXzN .framer-fpn7fy { flex: none; height: 124px; left: -30px; position: absolute; right: -29px; top: 48px; z-index: 0; }\",\".framer-8rXzN .framer-jvdzms { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8rXzN.framer-vhjvm8 { gap: 0px; } .framer-8rXzN.framer-vhjvm8 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-8rXzN.framer-vhjvm8 > :first-child { margin-left: 0px; } .framer-8rXzN.framer-vhjvm8 > :last-child { margin-right: 0px; } }\",\".framer-8rXzN.framer-v-vhjvm8.hover .framer-fpn7fy { top: 8px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 62\n * @framerIntrinsicWidth 190.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"v4UJwCGd3\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerx73r41dbx=withCSS(Component,css,\"framer-8rXzN\");export default Framerx73r41dbx;Framerx73r41dbx.displayName=\"Galaxy Button\";Framerx73r41dbx.defaultProps={height:62,width:190.5};addFonts(Framerx73r41dbx,[{explicitInter:true,fonts:[{family:\"Inter Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx73r41dbx\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"190.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"v4UJwCGd3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"62\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./x73r41dbx.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import Footer from\"#framer/local/canvasComponent/B2G3VYLkg/B2G3VYLkg.js\";import Plans from\"#framer/local/canvasComponent/d1uWCjIzP/d1uWCjIzP.js\";import Button from\"#framer/local/canvasComponent/d97_0FBQa/d97_0FBQa.js\";import Navbar from\"#framer/local/canvasComponent/IBNvBnuTr/IBNvBnuTr.js\";import Cursor from\"#framer/local/canvasComponent/NvxvGQ_NK/NvxvGQ_NK.js\";import Badge from\"#framer/local/canvasComponent/oGN7_S61Q/oGN7_S61Q.js\";import Customers from\"#framer/local/canvasComponent/TAg8dwHYs/TAg8dwHYs.js\";import BasicFAQs from\"#framer/local/canvasComponent/WHcn1sDhv/WHcn1sDhv.js\";import GalaxyButton from\"#framer/local/canvasComponent/x73r41dbx/x73r41dbx.js\";import*as sharedStyle1 from\"#framer/local/css/CUKdji9kc/CUKdji9kc.js\";import*as sharedStyle4 from\"#framer/local/css/czw6GaUH6/czw6GaUH6.js\";import*as sharedStyle from\"#framer/local/css/D7OUPS41f/D7OUPS41f.js\";import*as sharedStyle6 from\"#framer/local/css/fSExazEod/fSExazEod.js\";import*as sharedStyle5 from\"#framer/local/css/KDaSnfBZb/KDaSnfBZb.js\";import*as sharedStyle3 from\"#framer/local/css/prK2pqIjD/prK2pqIjD.js\";import*as sharedStyle2 from\"#framer/local/css/Ved7LOBe3/Ved7LOBe3.js\";import*as sharedStyle8 from\"#framer/local/css/wI06qTsuh/wI06qTsuh.js\";import*as sharedStyle7 from\"#framer/local/css/zeZoiKmTW/zeZoiKmTW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const ButtonFonts=getFonts(Button);const CustomersFonts=getFonts(Customers);const BadgeFonts=getFonts(Badge);const TickerFonts=getFonts(Ticker);const GalaxyButtonFonts=getFonts(GalaxyButton);const ImageWithFX=withFX(Image);const PlansFonts=getFonts(Plans);const BasicFAQsFonts=getFonts(BasicFAQs);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={tFGbu65Yl:\"(min-width: 810px) and (max-width: 1199px)\",vrBY0TbM6:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-M5s7L\";const variantClassNames={tFGbu65Yl:\"framer-v-13d3i8j\",vrBY0TbM6:\"framer-v-1aejyhi\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:40,y:40};const transition1={delay:0,duration:.7,ease:[.17,.84,.44,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:40,y:40};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={delay:.2,duration:.7,ease:[.17,.84,.44,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:40,y:40};const transition3={delay:.4,duration:.7,ease:[.17,.84,.44,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:40,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"vrBY0TbM6\",Tablet:\"tFGbu65Yl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition4={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={component:Cursor,transition:transition4,variant:\"uwQE9gLbk\"};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,...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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();useCustomCursors({\"1iwgday\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sf627l\",\"data-framer-name\":\"Nav Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1asrurk-container\",nodeId:\"vLckaiq45\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tFGbu65Yl:{variant:\"Zwk15zUT6\"},vrBY0TbM6:{variant:\"Io7vsvGVM\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"vLckaiq45\",layoutId:\"vLckaiq45\",style:{width:\"100%\"},variant:\"VhUr6iIzo\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-114p2sj\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aocdlc\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pgw98p\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eofwju\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vj77z\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1qka4nt\",\"data-styles-preset\":\"D7OUPS41f\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(45deg, rgb(17, 2, 59) 0%, rgb(135, 21, 173) 100%)\"},children:\"Figma Landing Page UI Kit\"})})}),className:\"framer-kt2hy\",\"data-framer-name\":\"Figma Landing Page UI Kit\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-7mkdah\",\"data-styles-preset\":\"CUKdji9kc\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6454c2f1-06c9-47f3-bec0-d659890c38cb, rgb(56, 56, 56))\"},children:\"Design your landing page in minutes, not weeks. Landify UI helps you build high-converting websites effortlessly with Figma Variables.\"})}),className:\"framer-1ig1qlq\",\"data-framer-name\":\"Design your landing page in minutes, not weeks. Landify UI helps you build high-converting websites effortlessly with Figma Variables.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1atb1eg\",\"data-framer-name\":\"CTAs\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Lt3jAYb3V\"},implicitPathVariables:undefined},{href:{webPageId:\"Lt3jAYb3V\"},implicitPathVariables:undefined},{href:{webPageId:\"Lt3jAYb3V\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{y:(componentViewport?.y||0)+0+80+40+0+0+0+0+294+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+80+80+0+0+0+0+294+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12omy0o-container\",nodeId:\"hXTXTBJAO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tFGbu65Yl:{ZJKPrlr0b:resolvedLinks[1]},vrBY0TbM6:{ZJKPrlr0b:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"hXTXTBJAO\",layoutId:\"hXTXTBJAO\",tKn1nkEBO:\"Get Landify UI\",tx0j3bc06:false,variant:\"lGdmEo5XJ\",width:\"100%\",ZJKPrlr0b:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{y:(componentViewport?.y||0)+0+80+40+0+0+0+0+294+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+80+80+0+0+0+0+294+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ul1lwc-container\",nodeId:\"mqysoV55I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"mqysoV55I\",layoutId:\"mqysoV55I\",tKn1nkEBO:\"Preview in Figma\",tx0j3bc06:true,variant:\"Xz7atuqvR\",width:\"100%\",ZJKPrlr0b:\"https://fig.page/lui-preview-3\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-100ul85\",\"data-framer-cursor\":\"1iwgday\",\"data-framer-name\":\"Custom (1440x900)\",tabIndex:1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"Landify - Figma Landing Page Kit\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+40+0+0+398+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png\",srcSet:\"https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Figma Landing Page Kit\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+398+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 64px, 1216px)`,src:\"https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png\",srcSet:\"https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png?scale-down-to=512 512w,https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/tgguttWD7AG8XHXU7SjjFKOqjQI.png 2880w\"},className:\"framer-7ognl7\",\"data-framer-name\":\"Image\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tgy6k1\",\"data-framer-name\":\"Fader\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{y:(componentViewport?.y||0)+0+1278}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:364,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1318,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sm8oz4-container\",nodeId:\"tGjU2yH5g\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tFGbu65Yl:{variant:\"CRQkKu1MZ\"},vrBY0TbM6:{variant:\"FHAWEHK3C\"}},children:/*#__PURE__*/_jsx(Customers,{height:\"100%\",id:\"tGjU2yH5g\",layoutId:\"tGjU2yH5g\",style:{width:\"100%\"},variant:\"aiYwmciOw\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zxmr20\",\"data-framer-name\":\"Components\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13k5f69\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-198ydxx\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{y:(componentViewport?.y||0)+0+1642+64+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+1682+120+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x0ccz6-container\",nodeId:\"jCYLQ50uz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"jCYLQ50uz\",layoutId:\"jCYLQ50uz\",Sj0pDf2FY:\"Over 350 Sections\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1aew7mt\",\"data-styles-preset\":\"Ved7LOBe3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, rgb(255, 255, 255))\"},children:\"Build Stunning Pages with Pre-Designed Sections\"})}),className:\"framer-d9gy2w\",\"data-framer-name\":\"Build Stunning Pages with Pre-Designed Sections\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dpcg7u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TztS4J3MF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:20,height:\"100%\",hoverFactor:1,id:\"TztS4J3MF\",layoutId:\"TztS4J3MF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5drt9z\",\"data-framer-name\":\"Column 1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Hero Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/uHeyAfGvH4ZGsI8xn1XurIQBu9o.png\",srcSet:\"https://framerusercontent.com/images/uHeyAfGvH4ZGsI8xn1XurIQBu9o.png?scale-down-to=1024 1021w,https://framerusercontent.com/images/uHeyAfGvH4ZGsI8xn1XurIQBu9o.png?scale-down-to=2048 2043w,https://framerusercontent.com/images/uHeyAfGvH4ZGsI8xn1XurIQBu9o.png 2400w\"},className:\"framer-1aw6b8v\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Team Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/5yaIXzASOc9KHYVhdxoLOWBb5Gk.png\",srcSet:\"https://framerusercontent.com/images/5yaIXzASOc9KHYVhdxoLOWBb5Gk.png?scale-down-to=512 512w,https://framerusercontent.com/images/5yaIXzASOc9KHYVhdxoLOWBb5Gk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5yaIXzASOc9KHYVhdxoLOWBb5Gk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5yaIXzASOc9KHYVhdxoLOWBb5Gk.png 2400w\"},className:\"framer-1k1zy2m\",\"data-framer-name\":\"image\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yoec4v\",\"data-framer-name\":\"Column 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Footer Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/WOeWaAzd2ico023GnB81M0oHTaU.png\",srcSet:\"https://framerusercontent.com/images/WOeWaAzd2ico023GnB81M0oHTaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/WOeWaAzd2ico023GnB81M0oHTaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WOeWaAzd2ico023GnB81M0oHTaU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WOeWaAzd2ico023GnB81M0oHTaU.png 2400w\"},className:\"framer-6sa9p5\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Pricing Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/Fl3hpyKllGm4GUiyvBMPJgiOw.png\",srcSet:\"https://framerusercontent.com/images/Fl3hpyKllGm4GUiyvBMPJgiOw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Fl3hpyKllGm4GUiyvBMPJgiOw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fl3hpyKllGm4GUiyvBMPJgiOw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Fl3hpyKllGm4GUiyvBMPJgiOw.png 2400w\"},className:\"framer-cvrf3g\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Testimonial Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/q4FhowSvisjo8zrx76tyfsr3PQQ.png\",srcSet:\"https://framerusercontent.com/images/q4FhowSvisjo8zrx76tyfsr3PQQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/q4FhowSvisjo8zrx76tyfsr3PQQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/q4FhowSvisjo8zrx76tyfsr3PQQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/q4FhowSvisjo8zrx76tyfsr3PQQ.png 2400w\"},className:\"framer-1ig3t2m\",\"data-framer-name\":\"image\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1opcggi\",\"data-framer-name\":\"Column 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Navbar\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"420px\",src:\"https://framerusercontent.com/images/MV5iNPBo6APiKPJDjT7PWrGzxg.png\",srcSet:\"https://framerusercontent.com/images/MV5iNPBo6APiKPJDjT7PWrGzxg.png?scale-down-to=512 512w,https://framerusercontent.com/images/MV5iNPBo6APiKPJDjT7PWrGzxg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MV5iNPBo6APiKPJDjT7PWrGzxg.png 1680w\"},className:\"framer-o31td3\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Feature Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/eni0mtoR1zLL5tak7ZPVy7Nck.png\",srcSet:\"https://framerusercontent.com/images/eni0mtoR1zLL5tak7ZPVy7Nck.png?scale-down-to=512 512w,https://framerusercontent.com/images/eni0mtoR1zLL5tak7ZPVy7Nck.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eni0mtoR1zLL5tak7ZPVy7Nck.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eni0mtoR1zLL5tak7ZPVy7Nck.png 2400w\"},className:\"framer-12g7ekg\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Footer Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/gZbjof5m6RIOc2aYivWuhctWaU.png\",srcSet:\"https://framerusercontent.com/images/gZbjof5m6RIOc2aYivWuhctWaU.png?scale-down-to=512 512w,https://framerusercontent.com/images/gZbjof5m6RIOc2aYivWuhctWaU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gZbjof5m6RIOc2aYivWuhctWaU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gZbjof5m6RIOc2aYivWuhctWaU.png 2400w\"},className:\"framer-7g9pbb\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Integration Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/5KrLEfqYLachLSGirO37Ku5VTx0.png\",srcSet:\"https://framerusercontent.com/images/5KrLEfqYLachLSGirO37Ku5VTx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/5KrLEfqYLachLSGirO37Ku5VTx0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KrLEfqYLachLSGirO37Ku5VTx0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/5KrLEfqYLachLSGirO37Ku5VTx0.png 2400w\"},className:\"framer-14p076t\",\"data-framer-name\":\"image\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bphwqo\",\"data-framer-name\":\"Column 4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Stats Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/kUBFpH3s05CwDSsWRwbDVkDUU.png\",srcSet:\"https://framerusercontent.com/images/kUBFpH3s05CwDSsWRwbDVkDUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/kUBFpH3s05CwDSsWRwbDVkDUU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kUBFpH3s05CwDSsWRwbDVkDUU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kUBFpH3s05CwDSsWRwbDVkDUU.png 2400w\"},className:\"framer-1w3yjze\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - CTA Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/nSJcWVJsehvXlWfjOzP7zQMh6OQ.png\",srcSet:\"https://framerusercontent.com/images/nSJcWVJsehvXlWfjOzP7zQMh6OQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/nSJcWVJsehvXlWfjOzP7zQMh6OQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nSJcWVJsehvXlWfjOzP7zQMh6OQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nSJcWVJsehvXlWfjOzP7zQMh6OQ.png 2400w\"},className:\"framer-n7cdju\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - FAQ Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/LKxw52bvTn1lAyGjN2HHqPztM.png\",srcSet:\"https://framerusercontent.com/images/LKxw52bvTn1lAyGjN2HHqPztM.png?scale-down-to=512 512w,https://framerusercontent.com/images/LKxw52bvTn1lAyGjN2HHqPztM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LKxw52bvTn1lAyGjN2HHqPztM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LKxw52bvTn1lAyGjN2HHqPztM.png 2400w\"},className:\"framer-1jdslp3\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Landify - Logo Clouds Section\",fit:\"fill\",sizes:\"420px\",src:\"https://framerusercontent.com/images/gUC3ivxH6Mymv8U649e1kZwwr30.png\",srcSet:\"https://framerusercontent.com/images/gUC3ivxH6Mymv8U649e1kZwwr30.png?scale-down-to=512 512w,https://framerusercontent.com/images/gUC3ivxH6Mymv8U649e1kZwwr30.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gUC3ivxH6Mymv8U649e1kZwwr30.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gUC3ivxH6Mymv8U649e1kZwwr30.png 2400w\"},className:\"framer-1vqzpem\",\"data-framer-name\":\"image\"})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wt9bor\",\"data-framer-name\":\"Fader\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{y:(componentViewport?.y||0)+0+1642+775.7674}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+1682+825.7442,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uikxi9-container\",nodeId:\"dnVaz95Eu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(GalaxyButton,{height:\"100%\",id:\"dnVaz95Eu\",layoutId:\"dnVaz95Eu\",style:{height:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nseb7n\",\"data-framer-name\":\"Variables\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bpqh65\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1aew7mt\",\"data-styles-preset\":\"Ved7LOBe3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Easy Customization with Figma Variables\"})}),className:\"framer-doo58t\",\"data-framer-name\":\"Easy Customization with Figma Variables\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-msmx7w\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aw12gb\",\"data-framer-name\":\"Theme A\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-sox6sj\",\"data-framer-name\":\"Mask\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"Landify - Theme A\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2546+64+0+0+112+0+0+0+-80),positionX:\"center\",positionY:\"center\",sizes:\"825px\",src:\"https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png\",srcSet:\"https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png?scale-down-to=512 512w,https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png 3295w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Landify - Theme A\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2642+160+0+0+136+0+0+-80),positionX:\"center\",positionY:\"center\",sizes:\"825px\",src:\"https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png\",srcSet:\"https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png?scale-down-to=512 512w,https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/kdxz2lqgF0hYwlyKTxyNpsC3DA.png 3295w\"},className:\"framer-wuqhh\",\"data-framer-name\":\"Mockup\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sn40pl\",\"data-styles-preset\":\"prK2pqIjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b6da7bc4-84f9-4cf3-975f-f195a9341b2c, rgb(82, 82, 82))\"},children:\"Theme A\"})}),className:\"framer-c0ojjp\",\"data-framer-name\":\"Theme A\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y0sml\",\"data-framer-name\":\"Theme B\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l2ua30\",\"data-framer-name\":\"Mask\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"Landify - Theme B\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2546+64+0+0+112+0+720+0+-80),positionX:\"center\",positionY:\"center\",sizes:\"825px\",src:\"https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png\",srcSet:\"https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png 3295w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Landify - Theme B\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2642+160+0+0+136+0+0+-80),positionX:\"center\",positionY:\"center\",sizes:\"825px\",src:\"https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png\",srcSet:\"https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png?scale-down-to=512 512w,https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GIbjKjUMrggJk4ybc162NXKbq3s.png 3295w\"},className:\"framer-1nn94oq\",\"data-framer-name\":\"Mockup\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sn40pl\",\"data-styles-preset\":\"prK2pqIjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, rgb(255, 255, 255))\"},children:\"Theme B\"})}),className:\"framer-1prjbyo\",\"data-framer-name\":\"Theme B\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ue22mq\",\"data-framer-name\":\"Theme C\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v0uak7\",\"data-framer-name\":\"Mask\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"Landify - Theme C\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2546+64+0+0+112+0+1440+0+-80),positionX:\"center\",positionY:\"center\",sizes:\"825px\",src:\"https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png\",srcSet:\"https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png 3295w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Landify - Theme C\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2642+160+0+0+136+0+0+-80),positionX:\"center\",positionY:\"center\",sizes:\"825px\",src:\"https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png\",srcSet:\"https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ueyZ4EK8Deb4Tn84I1Lw6FtcWvc.png 3295w\"},className:\"framer-1awo68v\",\"data-framer-name\":\"Mockup\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1sn40pl\",\"data-styles-preset\":\"prK2pqIjD\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b6da7bc4-84f9-4cf3-975f-f195a9341b2c, rgb(82, 82, 82))\"},children:\"Theme C\"})}),className:\"framer-56s4v1\",\"data-framer-name\":\"Theme C\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vh1in2\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ndu1qe\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1aew7mt\",\"data-styles-preset\":\"Ved7LOBe3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Designed for Flexibility, Built for Speed\"})}),className:\"framer-1ispjj0\",\"data-framer-name\":\"Designed for Flexibility, Built for Speed\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-49w69o\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14hoelh\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k30zhf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rucvtn\",\"data-styles-preset\":\"czw6GaUH6\",style:{\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Phone & Tablet Mockup\"})}),className:\"framer-1w6vdvj\",\"data-framer-name\":\"Phone & Tablet Mockup\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-167ecfa\",\"data-styles-preset\":\"KDaSnfBZb\",style:{\"--framer-text-color\":\"var(--token-b6da7bc4-84f9-4cf3-975f-f195a9341b2c, rgb(82, 82, 82))\"},children:\"Contains iPhone and iPad mockups in multiple colors for showcasing mobile apps.\"})}),className:\"framer-8rdp19\",\"data-framer-name\":\"Contains iPhone and iPad mockups in multiple colors for showcasing mobile apps.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kpu35g\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbixnw\",\"data-framer-name\":\"iPad Pro 11 - M4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+0+0+206+20+0),sizes:\"728px\",src:\"https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png\",srcSet:\"https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png 2640w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+20+0),sizes:\"728px\",src:\"https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png\",srcSet:\"https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png?scale-down-to=512 512w,https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ET9siNQ8NewRqVDmZW8ngaMYNWw.png 2640w\"},className:\"framer-72pu7d\",\"data-framer-name\":\"Bezel\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+0+0+206+20+28.9999),positionX:\"center\",positionY:\"center\",sizes:\"667.3334px\",src:\"https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png\",srcSet:\"https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png?scale-down-to=512 512w,https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png 2670w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+20+28.9999),positionX:\"center\",positionY:\"center\",sizes:\"667.3334px\",src:\"https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png\",srcSet:\"https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png?scale-down-to=512 512w,https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/gM2qCDS8C2ptpZ1YN2u2GooNzY.png 2670w\"},className:\"framer-lbpnyg\",\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z4ba4u\",\"data-framer-name\":\"iPhone 16\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+0+0+206+176+0),sizes:\"200.1744px\",src:\"https://framerusercontent.com/images/HsnECFbE2COYSwvtJBJQnJ7xk.png\",srcSet:\"https://framerusercontent.com/images/HsnECFbE2COYSwvtJBJQnJ7xk.png?scale-down-to=2048 1017w,https://framerusercontent.com/images/HsnECFbE2COYSwvtJBJQnJ7xk.png 1359w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+176+0),sizes:\"200.1744px\",src:\"https://framerusercontent.com/images/HsnECFbE2COYSwvtJBJQnJ7xk.png\",srcSet:\"https://framerusercontent.com/images/HsnECFbE2COYSwvtJBJQnJ7xk.png?scale-down-to=2048 1017w,https://framerusercontent.com/images/HsnECFbE2COYSwvtJBJQnJ7xk.png 1359w\"},className:\"framer-z92p8j\",\"data-framer-name\":\"Bezel\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+0+0+206+176+13),positionX:\"center\",positionY:\"center\",sizes:\"173.6612px\",src:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png\",srcSet:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png 695w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+176+13),positionX:\"center\",positionY:\"center\",sizes:\"173.6612px\",src:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png\",srcSet:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png 695w\"},className:\"framer-bk68ay\",\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pg8l5p\",\"data-framer-name\":\"iPhone 16\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+0+0+206+224+0),sizes:\"200.1744px\",src:\"https://framerusercontent.com/images/IKczfJZzDwKDAhhVDBzeM8fTDkg.png\",srcSet:\"https://framerusercontent.com/images/IKczfJZzDwKDAhhVDBzeM8fTDkg.png?scale-down-to=2048 1017w,https://framerusercontent.com/images/IKczfJZzDwKDAhhVDBzeM8fTDkg.png 1359w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+224+0),sizes:\"200.1744px\",src:\"https://framerusercontent.com/images/IKczfJZzDwKDAhhVDBzeM8fTDkg.png\",srcSet:\"https://framerusercontent.com/images/IKczfJZzDwKDAhhVDBzeM8fTDkg.png?scale-down-to=2048 1017w,https://framerusercontent.com/images/IKczfJZzDwKDAhhVDBzeM8fTDkg.png 1359w\"},className:\"framer-1e5egq8\",\"data-framer-name\":\"Bezel\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+0+0+206+224+13),positionX:\"center\",positionY:\"center\",sizes:\"173.6612px\",src:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png\",srcSet:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png 695w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+224+13),positionX:\"center\",positionY:\"center\",sizes:\"173.6612px\",src:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png\",srcSet:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png 695w\"},className:\"framer-kranc9\",\"data-framer-name\":\"image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7wdu7g\",\"data-framer-name\":\"iPhone 16\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+0+0+206+272+0),sizes:\"200.1744px\",src:\"https://framerusercontent.com/images/4Q62lHdYLUVdeakXLVUPSIsoxxo.png\",srcSet:\"https://framerusercontent.com/images/4Q62lHdYLUVdeakXLVUPSIsoxxo.png?scale-down-to=2048 1017w,https://framerusercontent.com/images/4Q62lHdYLUVdeakXLVUPSIsoxxo.png 1359w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+272+0),sizes:\"200.1744px\",src:\"https://framerusercontent.com/images/4Q62lHdYLUVdeakXLVUPSIsoxxo.png\",srcSet:\"https://framerusercontent.com/images/4Q62lHdYLUVdeakXLVUPSIsoxxo.png?scale-down-to=2048 1017w,https://framerusercontent.com/images/4Q62lHdYLUVdeakXLVUPSIsoxxo.png 1359w\"},className:\"framer-1txhqqf\",\"data-framer-name\":\"Bezel\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+0+0+206+272+13),positionX:\"center\",positionY:\"center\",sizes:\"173.6612px\",src:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png\",srcSet:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png 695w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+272+13),positionX:\"center\",positionY:\"center\",sizes:\"173.6612px\",src:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png\",srcSet:\"https://framerusercontent.com/images/ThyV4ch9UWHLkxxpG20ydMKHiLU.png 695w\"},className:\"framer-14tdff8\",\"data-framer-name\":\"image\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azmpp8\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wjsr7a\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rucvtn\",\"data-styles-preset\":\"czw6GaUH6\",style:{\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Browser Mockup\"})}),className:\"framer-1dokws0\",\"data-framer-name\":\"Browser Mockup\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-167ecfa\",\"data-styles-preset\":\"KDaSnfBZb\",style:{\"--framer-text-color\":\"var(--token-b6da7bc4-84f9-4cf3-975f-f195a9341b2c, rgb(82, 82, 82))\"},children:\"Customizable Arc, Safari, and Google Chrome mockups for showcasing web apps.\"})}),className:\"framer-v4a2qe\",\"data-framer-name\":\"Customizable Arc, Safari, and Google Chrome browser mockups for showcasing web apps.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nzf6x\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gbeqgg\",\"data-framer-name\":\"Browser\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dou3zc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lwp0vx\",\"data-border\":true,\"data-framer-name\":\"Bar\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tsosvo\",\"data-framer-name\":\"Left\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:138,svg:'<svg width=\"138\" height=\"24\" viewBox=\"0 0 138 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.24219 18.7627C5.50391 18.7627 4.94564 18.5736 4.56738 18.1953C4.18913 17.8216 4 17.2702 4 16.541V8.22168C4 7.48796 4.18913 6.93424 4.56738 6.56055C4.94564 6.18685 5.50391 6 6.24219 6H17.9453C18.6882 6 19.2487 6.18685 19.627 6.56055C20.0052 6.93424 20.1943 7.48796 20.1943 8.22168V16.541C20.1943 17.2702 20.0052 17.8216 19.627 18.1953C19.2487 18.5736 18.6882 18.7627 17.9453 18.7627H6.24219ZM6.32422 17.416H17.8701C18.1846 17.416 18.4261 17.334 18.5947 17.1699C18.7633 17.0059 18.8477 16.7575 18.8477 16.4248V8.33105C18.8477 8.00293 18.7633 7.75684 18.5947 7.59277C18.4261 7.42871 18.1846 7.34668 17.8701 7.34668H6.32422C6.00521 7.34668 5.76139 7.42871 5.59277 7.59277C5.42871 7.75684 5.34668 8.00293 5.34668 8.33105V16.4248C5.34668 16.7575 5.42871 17.0059 5.59277 17.1699C5.76139 17.334 6.00521 17.416 6.32422 17.416ZM9.43457 17.6348V7.11426H10.7129V17.6348H9.43457ZM8.09473 9.84863H6.69336C6.57487 9.84863 6.47005 9.80306 6.37891 9.71191C6.29232 9.62077 6.24902 9.52051 6.24902 9.41113C6.24902 9.29264 6.29232 9.1901 6.37891 9.10352C6.47005 9.01693 6.57487 8.97363 6.69336 8.97363H8.09473C8.21777 8.97363 8.32259 9.01693 8.40918 9.10352C8.50033 9.1901 8.5459 9.29264 8.5459 9.41113C8.5459 9.52051 8.50033 9.62077 8.40918 9.71191C8.32259 9.80306 8.21777 9.84863 8.09473 9.84863ZM8.09473 11.6807H6.69336C6.57487 11.6807 6.47005 11.6374 6.37891 11.5508C6.29232 11.4596 6.24902 11.3548 6.24902 11.2363C6.24902 11.1224 6.29232 11.0221 6.37891 10.9355C6.47005 10.849 6.57487 10.8057 6.69336 10.8057H8.09473C8.21777 10.8057 8.32259 10.849 8.40918 10.9355C8.50033 11.0221 8.5459 11.1224 8.5459 11.2363C8.5459 11.3548 8.50033 11.4596 8.40918 11.5508C8.32259 11.6374 8.21777 11.6807 8.09473 11.6807ZM8.09473 13.5059H6.69336C6.57487 13.5059 6.47005 13.4626 6.37891 13.376C6.29232 13.2894 6.24902 13.1891 6.24902 13.0752C6.24902 12.9567 6.29232 12.8542 6.37891 12.7676C6.47005 12.681 6.57487 12.6377 6.69336 12.6377H8.09473C8.21777 12.6377 8.32259 12.681 8.40918 12.7676C8.50033 12.8542 8.5459 12.9567 8.5459 13.0752C8.5459 13.1891 8.50033 13.2894 8.40918 13.376C8.32259 13.4626 8.21777 13.5059 8.09473 13.5059Z\" fill=\"black\" fill-opacity=\"0.55\"/>\\n<path d=\"M44 12.2979C44 12.0837 44.082 11.8968 44.2461 11.7373L48.7441 7.24609C48.8262 7.16406 48.9128 7.10254 49.0039 7.06152C49.0951 7.02051 49.1908 7 49.291 7C49.5007 7 49.6761 7.06836 49.8174 7.20508C49.9587 7.3418 50.0293 7.5127 50.0293 7.71777C50.0293 7.82715 50.0088 7.92741 49.9678 8.01855C49.9268 8.10514 49.8721 8.18262 49.8037 8.25098L48.2725 9.80273L45.7295 12.1338L45.4834 11.6895L47.8555 11.5459H56.1611C56.389 11.5459 56.5713 11.6165 56.708 11.7578C56.8493 11.8945 56.9199 12.0745 56.9199 12.2979C56.9199 12.5166 56.8493 12.6966 56.708 12.8379C56.5713 12.9746 56.389 13.043 56.1611 13.043H47.8555L45.4834 12.9062L45.7295 12.4688L48.2725 14.793L49.8037 16.3379C49.8721 16.4062 49.9268 16.486 49.9678 16.5771C50.0088 16.6683 50.0293 16.7663 50.0293 16.8711C50.0293 17.0762 49.9587 17.2471 49.8174 17.3838C49.6761 17.5205 49.5007 17.5889 49.291 17.5889C49.0905 17.5889 48.9105 17.5114 48.751 17.3564L44.2461 12.8584C44.082 12.6989 44 12.512 44 12.2979Z\" fill=\"black\" fill-opacity=\"0.55\"/>\\n<path d=\"M94.9199 12.2979C94.9199 12.512 94.8402 12.6989 94.6807 12.8584L90.1689 17.3564C90.0094 17.5114 89.8294 17.5889 89.6289 17.5889C89.4193 17.5889 89.2438 17.5205 89.1025 17.3838C88.9658 17.2471 88.8975 17.0762 88.8975 16.8711C88.8975 16.7663 88.9157 16.6683 88.9521 16.5771C88.9932 16.486 89.0479 16.4062 89.1162 16.3379L90.6475 14.793L93.1973 12.4688L93.4365 12.9062L91.0645 13.043H82.7588C82.5309 13.043 82.3464 12.9746 82.2051 12.8379C82.0684 12.6966 82 12.5166 82 12.2979C82 12.0745 82.0684 11.8945 82.2051 11.7578C82.3464 11.6165 82.5309 11.5459 82.7588 11.5459H91.0645L93.4365 11.6895L93.1973 12.1338L90.6475 9.80273L89.1162 8.25098C89.0479 8.18262 88.9932 8.10514 88.9521 8.01855C88.9157 7.92741 88.8975 7.82715 88.8975 7.71777C88.8975 7.5127 88.9658 7.3418 89.1025 7.20508C89.2438 7.06836 89.4193 7 89.6289 7C89.7292 7 89.8249 7.02051 89.916 7.06152C90.0072 7.10254 90.0938 7.16406 90.1758 7.24609L94.6807 11.7373C94.8402 11.8968 94.9199 12.0837 94.9199 12.2979Z\" fill=\"black\" fill-opacity=\"0.3\"/>\\n<path d=\"M120 12.7705C120 11.9274 120.157 11.1367 120.472 10.3984C120.791 9.66016 121.228 9.01074 121.784 8.4502C122.345 7.88965 122.994 7.45215 123.732 7.1377C124.471 6.82324 125.261 6.66602 126.104 6.66602C126.278 6.66602 126.446 6.67513 126.61 6.69336C126.779 6.70703 126.936 6.72982 127.082 6.76172L125.435 5.12793C125.375 5.06868 125.33 5.00033 125.298 4.92285C125.266 4.84538 125.25 4.76335 125.25 4.67676C125.25 4.48535 125.312 4.32585 125.435 4.19824C125.562 4.06608 125.717 4 125.899 4C126.095 4 126.255 4.0638 126.378 4.19141L129.181 7.04883C129.322 7.1901 129.393 7.35417 129.393 7.54102C129.393 7.63216 129.374 7.71875 129.338 7.80078C129.306 7.88281 129.254 7.96029 129.181 8.0332L126.371 10.8633C126.243 10.9863 126.086 11.0479 125.899 11.0479C125.717 11.0479 125.562 10.984 125.435 10.8564C125.312 10.7288 125.25 10.5716 125.25 10.3848C125.25 10.2982 125.264 10.2184 125.291 10.1455C125.323 10.068 125.373 9.9974 125.441 9.93359L127.28 8.1084C127.112 8.07194 126.927 8.0446 126.727 8.02637C126.531 8.00814 126.323 7.99902 126.104 7.99902C125.448 7.99902 124.831 8.12207 124.252 8.36816C123.678 8.61426 123.172 8.95605 122.734 9.39355C122.301 9.83105 121.96 10.3392 121.709 10.918C121.463 11.4922 121.34 12.1074 121.34 12.7637C121.34 13.4199 121.463 14.0374 121.709 14.6162C121.96 15.1904 122.301 15.6963 122.734 16.1338C123.172 16.5667 123.678 16.9062 124.252 17.1523C124.831 17.3984 125.448 17.5215 126.104 17.5215C126.761 17.5215 127.376 17.3984 127.95 17.1523C128.529 16.9062 129.035 16.5667 129.468 16.1338C129.905 15.6963 130.247 15.1904 130.493 14.6162C130.739 14.0374 130.862 13.4199 130.862 12.7637C130.862 12.5586 130.922 12.3923 131.04 12.2646C131.163 12.137 131.323 12.0732 131.519 12.0732C131.724 12.0732 131.89 12.137 132.018 12.2646C132.145 12.3923 132.209 12.5609 132.209 12.7705C132.209 13.6136 132.049 14.4043 131.73 15.1426C131.416 15.8763 130.979 16.5234 130.418 17.084C129.857 17.6445 129.208 18.082 128.47 18.3965C127.736 18.7109 126.948 18.8682 126.104 18.8682C125.261 18.8682 124.471 18.7109 123.732 18.3965C122.994 18.082 122.345 17.6445 121.784 17.084C121.228 16.5234 120.791 15.8763 120.472 15.1426C120.157 14.4043 120 13.6136 120 12.7705Z\" fill=\"black\" fill-opacity=\"0.55\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lvwa0o\",\"data-framer-name\":\"URL\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-k1inqp\",\"data-framer-name\":\"Link\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"20\" viewBox=\"0 0 21 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.7496 7.65127C11.0731 7.71071 11.3482 7.79987 11.5751 7.91874C11.8056 8.03762 12.0027 8.18064 12.1663 8.34781C12.6274 8.80474 12.9341 9.30996 13.0866 9.86348C13.239 10.417 13.2372 10.9705 13.081 11.524C12.9285 12.0738 12.6255 12.5772 12.1719 13.0341L10.2309 14.9733C9.77725 15.4265 9.27341 15.7293 8.71938 15.8816C8.16907 16.0376 7.6169 16.0395 7.06286 15.8871C6.50883 15.7348 5.99942 15.4265 5.53463 14.9621C5.07727 14.5052 4.77051 14 4.61434 13.4465C4.46189 12.893 4.46189 12.3413 4.61434 11.7915C4.77051 11.238 5.07541 10.7328 5.52905 10.2758L7.13537 8.68215C7.08331 8.90133 7.0703 9.12979 7.09633 9.36754C7.12236 9.60158 7.17999 9.8189 7.26923 10.0195L6.31548 10.9724C6.00314 11.2844 5.79491 11.6299 5.6908 12.0088C5.58668 12.3877 5.58668 12.7667 5.6908 13.1456C5.79491 13.5245 6.005 13.8718 6.32106 14.1876C6.6334 14.5034 6.9792 14.7114 7.35847 14.8117C7.73774 14.9157 8.11701 14.9157 8.49628 14.8117C8.87555 14.7077 9.22136 14.4996 9.5337 14.1876L11.391 12.3376C11.7033 12.0255 11.9097 11.6801 12.0101 11.3011C12.1142 10.9222 12.1142 10.5433 12.0101 10.1644C11.906 9.78547 11.6959 9.43813 11.3799 9.12236C11.2125 8.95148 11.008 8.81403 10.7663 8.71001C10.5246 8.60599 10.2365 8.53913 9.90181 8.50941L10.7496 7.65127ZM10.2532 12.3487C9.9297 12.2893 9.65268 12.2001 9.42215 12.0813C9.19533 11.9624 9.00198 11.8212 8.84209 11.6578C8.37729 11.1971 8.06867 10.69 7.91622 10.1365C7.76377 9.58301 7.76377 9.03135 7.91622 8.48155C8.07239 7.92803 8.37915 7.42281 8.83651 6.96588L10.7663 5.03229C11.2237 4.57536 11.7275 4.27074 12.2778 4.11843C12.8319 3.9624 13.3859 3.96055 13.9399 4.11286C14.494 4.26517 15.0034 4.5735 15.4682 5.03786C15.9255 5.49479 16.2304 6.00001 16.3829 6.55353C16.539 7.10704 16.539 7.66056 16.3829 8.21408C16.2304 8.76759 15.9274 9.27096 15.4737 9.72417L13.873 11.3179C13.9213 11.1024 13.9325 10.8776 13.9065 10.6436C13.8804 10.4058 13.8228 10.1848 13.7336 9.9805L14.6873 9.02763C14.9997 8.71558 15.2079 8.37196 15.312 7.99675C15.4198 7.61784 15.4198 7.23892 15.312 6.86C15.2079 6.47737 14.9997 6.13003 14.6873 5.81798C14.3675 5.4985 14.018 5.28861 13.6387 5.18831C13.2632 5.0843 12.8858 5.0843 12.5065 5.18831C12.131 5.29233 11.7833 5.50222 11.4635 5.81798L9.61736 7.66242C9.3013 7.97447 9.09122 8.31995 8.9871 8.69887C8.88299 9.07778 8.88299 9.4567 8.9871 9.83562C9.09122 10.2145 9.30316 10.5637 9.62294 10.8832C9.79398 11.0504 9.99849 11.186 10.2365 11.29C10.4782 11.394 10.7663 11.4627 11.101 11.4962L10.2532 12.3487Z\" fill=\"black\" fill-opacity=\"0.55\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgba(10, 10, 10, 0.6)\"},children:\"landify.design\"})}),className:\"framer-19bimze\",\"data-framer-name\":\"landify.design\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1epbzrc\",\"data-framer-name\":\"Right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:62,svg:'<svg width=\"62\" height=\"24\" viewBox=\"0 0 62 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.66406 10.6953C8.5026 10.6953 8.36458 10.6406 8.25 10.5312C8.14062 10.4167 8.08594 10.2812 8.08594 10.125C8.08594 9.96875 8.14062 9.83594 8.25 9.72656C8.36458 9.61719 8.5026 9.5625 8.66406 9.5625H12.5V10.6953H8.66406ZM13.5391 11.7422C13.2422 11.7422 12.9714 11.6693 12.7266 11.5234C12.4818 11.3776 12.2865 11.1823 12.1406 10.9375C11.9948 10.6927 11.9219 10.4193 11.9219 10.1172C11.9219 9.82031 11.9948 9.55208 12.1406 9.3125C12.2865 9.06771 12.4818 8.8724 12.7266 8.72656C12.9714 8.58073 13.2422 8.50781 13.5391 8.50781C13.8359 8.50781 14.1068 8.58073 14.3516 8.72656C14.5964 8.8724 14.7917 9.06771 14.9375 9.3125C15.0833 9.55208 15.1562 9.82031 15.1562 10.1172C15.1562 10.4193 15.0833 10.6927 14.9375 10.9375C14.7917 11.1823 14.5964 11.3776 14.3516 11.5234C14.1068 11.6693 13.8359 11.7422 13.5391 11.7422ZM13.5391 10.8516C13.7422 10.8516 13.9115 10.7812 14.0469 10.6406C14.1875 10.5 14.2578 10.3255 14.2578 10.1172C14.2578 9.91406 14.1875 9.74479 14.0469 9.60938C13.9115 9.46875 13.7422 9.39844 13.5391 9.39844C13.3359 9.39844 13.1641 9.46875 13.0234 9.60938C12.888 9.74479 12.8203 9.91406 12.8203 10.1172C12.8203 10.3255 12.888 10.5 13.0234 10.6406C13.1641 10.7812 13.3359 10.8516 13.5391 10.8516ZM14.5156 10.6953V9.5625H15.9531C16.1042 9.5625 16.2344 9.61719 16.3438 9.72656C16.4531 9.83594 16.5078 9.96875 16.5078 10.125C16.5078 10.2812 16.4531 10.4167 16.3438 10.5312C16.2344 10.6406 16.1042 10.6953 15.9531 10.6953H14.5156ZM15.9219 13.7578C16.0885 13.7578 16.2266 13.8125 16.3359 13.9219C16.4505 14.0312 16.5078 14.1667 16.5078 14.3281C16.5078 14.4844 16.4505 14.6172 16.3359 14.7266C16.2266 14.8359 16.0885 14.8906 15.9219 14.8906H12.0938V13.7578H15.9219ZM11.0469 12.7031C11.349 12.7031 11.6224 12.776 11.8672 12.9219C12.112 13.0677 12.3047 13.2656 12.4453 13.5156C12.5911 13.7604 12.6641 14.0339 12.6641 14.3359C12.6641 14.6276 12.5911 14.8958 12.4453 15.1406C12.3047 15.3854 12.112 15.5807 11.8672 15.7266C11.6224 15.8724 11.349 15.9453 11.0469 15.9453C10.75 15.9453 10.4792 15.8724 10.2344 15.7266C9.99479 15.5807 9.79948 15.3854 9.64844 15.1406C9.5026 14.8958 9.42969 14.6276 9.42969 14.3359C9.42969 14.0339 9.5026 13.7604 9.64844 13.5156C9.79948 13.2656 9.99479 13.0677 10.2344 12.9219C10.4792 12.776 10.75 12.7031 11.0469 12.7031ZM11.0469 13.6016C10.849 13.6016 10.6797 13.6719 10.5391 13.8125C10.3984 13.9531 10.3281 14.1276 10.3281 14.3359C10.3281 14.5391 10.3984 14.7109 10.5391 14.8516C10.6797 14.987 10.849 15.0547 11.0469 15.0547C11.25 15.0547 11.4219 14.987 11.5625 14.8516C11.7031 14.7109 11.7734 14.5391 11.7734 14.3359C11.7734 14.1276 11.7031 13.9531 11.5625 13.8125C11.4219 13.6719 11.25 13.6016 11.0469 13.6016ZM10.0781 13.7578V14.8906H8.63281C8.49219 14.8906 8.36458 14.8359 8.25 14.7266C8.14062 14.6172 8.08594 14.4844 8.08594 14.3281C8.08594 14.1667 8.14062 14.0312 8.25 13.9219C8.36458 13.8125 8.49219 13.7578 8.63281 13.7578H10.0781ZM7.5625 19.5859C6.71875 19.5859 6.08073 19.3698 5.64844 18.9375C5.21615 18.5104 5 17.8828 5 17.0547V7.53906C5 6.70052 5.21615 6.06771 5.64844 5.64062C6.08073 5.21354 6.71875 5 7.5625 5H17.0234C17.8672 5 18.5052 5.21615 18.9375 5.64844C19.3698 6.07552 19.5859 6.70573 19.5859 7.53906V17.0547C19.5859 17.8828 19.3698 18.5104 18.9375 18.9375C18.5052 19.3698 17.8672 19.5859 17.0234 19.5859H7.5625ZM7.65625 18.0469H16.9297C17.2891 18.0469 17.5651 17.9531 17.7578 17.7656C17.9505 17.5781 18.0469 17.2943 18.0469 16.9141V7.67188C18.0469 7.29167 17.9505 7.00781 17.7578 6.82031C17.5651 6.63281 17.2891 6.53906 16.9297 6.53906H7.65625C7.29167 6.53906 7.01302 6.63281 6.82031 6.82031C6.63281 7.00781 6.53906 7.29167 6.53906 7.67188V16.9141C6.53906 17.2943 6.63281 17.5781 6.82031 17.7656C7.01302 17.9531 7.29167 18.0469 7.65625 18.0469Z\" fill=\"black\" fill-opacity=\"0.55\"/>\\n<path d=\"M49.7217 18.0039V6.75195H51.041V18.0039H49.7217ZM46.2422 18.7627C45.5039 18.7627 44.9456 18.5736 44.5674 18.1953C44.1891 17.8216 44 17.2725 44 16.5479V8.22168C44 7.48796 44.1891 6.93424 44.5674 6.56055C44.9456 6.18685 45.5039 6 46.2422 6H54.5205C55.2588 6 55.8171 6.18913 56.1953 6.56738C56.5736 6.94108 56.7627 7.49251 56.7627 8.22168V16.5479C56.7627 17.2725 56.5736 17.8216 56.1953 18.1953C55.8171 18.5736 55.2588 18.7627 54.5205 18.7627H46.2422ZM46.3242 17.416H54.4385C54.7529 17.416 54.9945 17.334 55.1631 17.1699C55.3317 17.0059 55.416 16.7575 55.416 16.4248V8.33789C55.416 8.00521 55.3317 7.75684 55.1631 7.59277C54.9945 7.42871 54.7529 7.34668 54.4385 7.34668H46.3242C46.0052 7.34668 45.7614 7.42871 45.5928 7.59277C45.4287 7.75684 45.3467 8.00521 45.3467 8.33789V16.4248C45.3467 16.7575 45.4287 17.0059 45.5928 17.1699C45.7614 17.334 46.0052 17.416 46.3242 17.416Z\" fill=\"black\" fill-opacity=\"0.55\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zeij6o\",\"data-framer-name\":\"Custom (1440x900)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+716+0+206+24+10+0+0+32+0+0),sizes:\"1420px\",src:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png\",srcSet:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png?scale-down-to=512 512w,https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+24+10+0+0+32+0+0),sizes:\"1420px\",src:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png\",srcSet:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png?scale-down-to=512 512w,https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png 800w\"},className:\"framer-k1hik3\",\"data-framer-name\":\"image\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19maplh\",\"data-framer-name\":\"Browser\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12yx92a\",\"data-framer-name\":\"Bar\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jvb22i\",\"data-framer-name\":\"Left\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:199,svg:'<svg width=\"199\" height=\"24\" viewBox=\"0 0 199 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"12\" r=\"5.75\" fill=\"#EC6A5E\" stroke=\"#B0534A\" stroke-width=\"0.5\"/>\\n<circle cx=\"26\" cy=\"12\" r=\"5.75\" fill=\"#F4BE4F\" stroke=\"#AE8C4E\" stroke-width=\"0.5\"/>\\n<circle cx=\"46\" cy=\"12\" r=\"5.75\" fill=\"#62C554\" stroke=\"#69945F\" stroke-width=\"0.5\"/>\\n<path d=\"M81.3086 19.293C80.4648 19.293 79.8268 19.0768 79.3945 18.6445C78.9622 18.2174 78.7461 17.5872 78.7461 16.7539V7.24609C78.7461 6.40755 78.9622 5.77474 79.3945 5.34766C79.8268 4.92057 80.4648 4.70703 81.3086 4.70703H94.6836C95.5326 4.70703 96.1732 4.92057 96.6055 5.34766C97.0378 5.77474 97.2539 6.40755 97.2539 7.24609V16.7539C97.2539 17.5872 97.0378 18.2174 96.6055 18.6445C96.1732 19.0768 95.5326 19.293 94.6836 19.293H81.3086ZM81.4023 17.7539H94.5977C94.957 17.7539 95.2331 17.6602 95.4258 17.4727C95.6185 17.2852 95.7148 17.0013 95.7148 16.6211V7.37109C95.7148 6.99609 95.6185 6.71484 95.4258 6.52734C95.2331 6.33984 94.957 6.24609 94.5977 6.24609H81.4023C81.0378 6.24609 80.7591 6.33984 80.5664 6.52734C80.3789 6.71484 80.2852 6.99609 80.2852 7.37109V16.6211C80.2852 17.0013 80.3789 17.2852 80.5664 17.4727C80.7591 17.6602 81.0378 17.7539 81.4023 17.7539ZM84.957 18.0039V5.98047H86.418V18.0039H84.957ZM83.4258 9.10547H81.8242C81.6888 9.10547 81.569 9.05339 81.4648 8.94922C81.3659 8.84505 81.3164 8.73047 81.3164 8.60547C81.3164 8.47005 81.3659 8.35286 81.4648 8.25391C81.569 8.15495 81.6888 8.10547 81.8242 8.10547H83.4258C83.5664 8.10547 83.6862 8.15495 83.7852 8.25391C83.8893 8.35286 83.9414 8.47005 83.9414 8.60547C83.9414 8.73047 83.8893 8.84505 83.7852 8.94922C83.6862 9.05339 83.5664 9.10547 83.4258 9.10547ZM83.4258 11.1992H81.8242C81.6888 11.1992 81.569 11.1497 81.4648 11.0508C81.3659 10.9466 81.3164 10.8268 81.3164 10.6914C81.3164 10.5612 81.3659 10.4466 81.4648 10.3477C81.569 10.2487 81.6888 10.1992 81.8242 10.1992H83.4258C83.5664 10.1992 83.6862 10.2487 83.7852 10.3477C83.8893 10.4466 83.9414 10.5612 83.9414 10.6914C83.9414 10.8268 83.8893 10.9466 83.7852 11.0508C83.6862 11.1497 83.5664 11.1992 83.4258 11.1992ZM83.4258 13.2852H81.8242C81.6888 13.2852 81.569 13.2357 81.4648 13.1367C81.3659 13.0378 81.3164 12.9232 81.3164 12.793C81.3164 12.6576 81.3659 12.5404 81.4648 12.4414C81.569 12.3424 81.6888 12.293 81.8242 12.293H83.4258C83.5664 12.293 83.6862 12.3424 83.7852 12.4414C83.8893 12.5404 83.9414 12.6576 83.9414 12.793C83.9414 12.9232 83.8893 13.0378 83.7852 13.1367C83.6862 13.2357 83.5664 13.2852 83.4258 13.2852Z\" fill=\"black\" fill-opacity=\"0.5\"/>\\n<path d=\"M106 4V20\" stroke=\"black\" stroke-opacity=\"0.08\"/>\\n<path d=\"M119.004 14.3884C118.793 14.3884 118.6 14.302 118.424 14.1292L115.172 10.8025C115.108 10.7351 115.058 10.6619 115.023 10.5828C114.991 10.5007 114.975 10.4128 114.975 10.3191C114.975 10.1873 115.005 10.0686 115.067 9.96313C115.131 9.85474 115.216 9.76978 115.322 9.70825C115.427 9.6438 115.544 9.61157 115.673 9.61157C115.87 9.61157 116.042 9.68628 116.192 9.83569L119.185 12.9163H118.829L121.812 9.83569C121.962 9.68628 122.133 9.61157 122.327 9.61157C122.456 9.61157 122.573 9.6438 122.678 9.70825C122.784 9.76978 122.867 9.85474 122.929 9.96313C122.993 10.0686 123.025 10.1873 123.025 10.3191C123.025 10.5095 122.959 10.6707 122.828 10.8025L119.58 14.1292C119.492 14.217 119.401 14.2815 119.308 14.3225C119.214 14.3635 119.113 14.3855 119.004 14.3884Z\" fill=\"black\" fill-opacity=\"0.5\"/>\\n<path d=\"M146.023 11.9961C146.023 11.8607 146.047 11.7357 146.094 11.6211C146.146 11.5065 146.224 11.3971 146.328 11.293L152.414 5.33984C152.591 5.16797 152.805 5.08203 153.055 5.08203C153.227 5.08203 153.38 5.1237 153.516 5.20703C153.656 5.28516 153.768 5.39193 153.852 5.52734C153.935 5.66276 153.977 5.81641 153.977 5.98828C153.977 6.23307 153.88 6.45182 153.688 6.64453L148.203 11.9961L153.688 17.3477C153.88 17.5404 153.977 17.7617 153.977 18.0117C153.977 18.1784 153.935 18.3294 153.852 18.4648C153.768 18.6055 153.656 18.7148 153.516 18.793C153.38 18.8763 153.227 18.918 153.055 18.918C152.805 18.918 152.591 18.8294 152.414 18.6523L146.328 12.6992C146.224 12.5951 146.146 12.4857 146.094 12.3711C146.047 12.2565 146.023 12.1315 146.023 11.9961Z\" fill=\"black\" fill-opacity=\"0.5\"/>\\n<path d=\"M190.977 11.9961C190.977 12.1315 190.951 12.2565 190.898 12.3711C190.846 12.4857 190.768 12.5951 190.664 12.6992L184.578 18.6523C184.406 18.8294 184.193 18.918 183.938 18.918C183.771 18.918 183.617 18.8763 183.477 18.793C183.336 18.7148 183.224 18.6055 183.141 18.4648C183.062 18.3294 183.023 18.1784 183.023 18.0117C183.023 17.7617 183.117 17.5404 183.305 17.3477L188.789 11.9961L183.305 6.64453C183.117 6.45182 183.023 6.23307 183.023 5.98828C183.023 5.81641 183.062 5.66276 183.141 5.52734C183.224 5.39193 183.336 5.28516 183.477 5.20703C183.617 5.1237 183.771 5.08203 183.938 5.08203C184.193 5.08203 184.406 5.16797 184.578 5.33984L190.664 11.293C190.768 11.3971 190.846 11.5065 190.898 11.6211C190.951 11.7357 190.977 11.8607 190.977 11.9961Z\" fill=\"black\" fill-opacity=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jvard3\",\"data-framer-name\":\"Right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:100,svg:'<svg width=\"100\" height=\"24\" viewBox=\"0 0 100 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.5 20.957C6.65625 20.957 6.01823 20.7435 5.58594 20.3164C5.15365 19.8893 4.9375 19.2565 4.9375 18.418V10.7695C4.9375 9.93099 5.15365 9.29818 5.58594 8.87109C6.01823 8.44401 6.65625 8.23047 7.5 8.23047H9.79688V9.76172H7.59375C7.22917 9.76172 6.95052 9.85547 6.75781 10.043C6.57031 10.2305 6.47656 10.5143 6.47656 10.8945V18.2852C6.47656 18.6654 6.57031 18.9492 6.75781 19.1367C6.95052 19.3294 7.22917 19.4258 7.59375 19.4258H16.3984C16.7578 19.4258 17.0339 19.3294 17.2266 19.1367C17.4245 18.9492 17.5234 18.6654 17.5234 18.2852V10.8945C17.5234 10.5143 17.4245 10.2305 17.2266 10.043C17.0339 9.85547 16.7578 9.76172 16.3984 9.76172H14.1953V8.23047H16.5C17.3438 8.23047 17.9818 8.44401 18.4141 8.87109C18.8464 9.29818 19.0625 9.93099 19.0625 10.7695V18.418C19.0625 19.2565 18.8464 19.8893 18.4141 20.3164C17.9818 20.7435 17.3438 20.957 16.5 20.957H7.5ZM12 14.6523C11.8021 14.6523 11.6302 14.582 11.4844 14.4414C11.3438 14.3008 11.2734 14.1367 11.2734 13.9492V6.10547L11.3359 4.94922L10.9219 5.44141L9.80469 6.62891C9.67969 6.77474 9.51562 6.84766 9.3125 6.84766C9.13542 6.84766 8.98438 6.79036 8.85938 6.67578C8.73438 6.55599 8.67188 6.40495 8.67188 6.22266C8.67188 6.05078 8.74219 5.89714 8.88281 5.76172L11.4453 3.28516C11.5443 3.19141 11.638 3.12891 11.7266 3.09766C11.8151 3.0612 11.9062 3.04297 12 3.04297C12.0938 3.04297 12.1849 3.0612 12.2734 3.09766C12.362 3.12891 12.4531 3.19141 12.5469 3.28516L15.1172 5.76172C15.2526 5.89714 15.3203 6.05078 15.3203 6.22266C15.3203 6.40495 15.2552 6.55599 15.125 6.67578C15 6.79036 14.849 6.84766 14.6719 6.84766C14.4792 6.84766 14.3177 6.77474 14.1875 6.62891L13.0781 5.44141L12.6641 4.94922L12.7266 6.10547V13.9492C12.7266 14.1367 12.6536 14.3008 12.5078 14.4414C12.3672 14.582 12.1979 14.6523 12 14.6523Z\" fill=\"black\" fill-opacity=\"0.5\"/>\\n<path d=\"M43.4609 12C43.4609 11.7604 43.5469 11.5547 43.7188 11.3828C43.8906 11.2057 44.0964 11.1172 44.3359 11.1172H49.125V6.33594C49.125 6.09635 49.2109 5.89062 49.3828 5.71875C49.5547 5.54688 49.7604 5.46094 50 5.46094C50.2448 5.46094 50.4531 5.54688 50.625 5.71875C50.7969 5.89062 50.8828 6.09635 50.8828 6.33594V11.1172H55.6641C55.9036 11.1172 56.1094 11.2057 56.2812 11.3828C56.4531 11.5547 56.5391 11.7604 56.5391 12C56.5391 12.2448 56.4531 12.4531 56.2812 12.625C56.1094 12.7917 55.9036 12.875 55.6641 12.875H50.8828V17.6719C50.8828 17.9062 50.7969 18.1094 50.625 18.2812C50.4531 18.4531 50.2448 18.5391 50 18.5391C49.7604 18.5391 49.5547 18.4531 49.3828 18.2812C49.2109 18.1094 49.125 17.9062 49.125 17.6719V12.875H44.3359C44.0964 12.875 43.8906 12.7917 43.7188 12.625C43.5469 12.4531 43.4609 12.2448 43.4609 12Z\" fill=\"black\" fill-opacity=\"0.5\"/>\\n<path d=\"M82.0977 16.6602C81.2539 16.6602 80.6159 16.4466 80.1836 16.0195C79.7513 15.5924 79.5352 14.9596 79.5352 14.1211V6.16016C79.5352 5.32161 79.7513 4.6888 80.1836 4.26172C80.6159 3.83464 81.2539 3.62109 82.0977 3.62109H90.0117C90.8555 3.62109 91.4935 3.83724 91.9258 4.26953C92.3581 4.69661 92.5742 5.32682 92.5742 6.16016V7.99609H91.0352V6.29297C91.0352 5.91276 90.9388 5.62891 90.7461 5.44141C90.5534 5.2487 90.2773 5.15234 89.918 5.15234H82.1914C81.8268 5.15234 81.5482 5.2487 81.3555 5.44141C81.168 5.62891 81.0742 5.91276 81.0742 6.29297V13.9883C81.0742 14.3685 81.168 14.6549 81.3555 14.8477C81.5482 15.0352 81.8268 15.1289 82.1914 15.1289H84.1836V16.6602H82.0977ZM85.9883 20.3789C85.1445 20.3789 84.5065 20.1654 84.0742 19.7383C83.6419 19.3112 83.4258 18.6784 83.4258 17.8398V9.87109C83.4258 9.03776 83.6419 8.40755 84.0742 7.98047C84.5065 7.54818 85.1445 7.33203 85.9883 7.33203H93.9023C94.7461 7.33203 95.3841 7.54818 95.8164 7.98047C96.2487 8.41276 96.4648 9.04297 96.4648 9.87109V17.8398C96.4648 18.6732 96.2487 19.3034 95.8164 19.7305C95.3841 20.1628 94.7461 20.3789 93.9023 20.3789H85.9883ZM86.082 18.8477H93.8086C94.168 18.8477 94.444 18.7513 94.6367 18.5586C94.8294 18.3711 94.9258 18.0872 94.9258 17.707V10.0117C94.9258 9.63151 94.8294 9.34766 94.6367 9.16016C94.444 8.96745 94.168 8.87109 93.8086 8.87109H86.082C85.7174 8.87109 85.4388 8.96745 85.2461 9.16016C85.0534 9.34766 84.957 9.63151 84.957 10.0117V17.707C84.957 18.0872 85.0534 18.3711 85.2461 18.5586C85.4388 18.7513 85.7174 18.8477 86.082 18.8477Z\" fill=\"black\" fill-opacity=\"0.5\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-65oe0b\",\"data-framer-name\":\"Address Bar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kmrz99\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1im0pcz\",\"data-framer-name\":\"url\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+716+0+206+98+0+0+12+4+2),src:\"https://framerusercontent.com/images/PNy1GkqlsBqHDJ7SeAjEZWu3akk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+98+0+0+12+4+2),src:\"https://framerusercontent.com/images/PNy1GkqlsBqHDJ7SeAjEZWu3akk.png\"},className:\"framer-vde2ms\",\"data-framer-name\":\"Landify-Logomark-52\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"rgb(24, 25, 25)\"},children:\"landify.design\"})}),className:\"framer-1dxn17p\",\"data-framer-name\":\"landify.design\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19z8z7z\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:11,svg:'<svg width=\"11\" height=\"20\" viewBox=\"0 0 11 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.30078 16.812C1.78125 16.812 1.38704 16.6707 1.11816 16.3882C0.849284 16.1102 0.714844 15.6909 0.714844 15.1304V10.2837C0.714844 9.7277 0.849284 9.31071 1.11816 9.03271C1.38704 8.75472 1.78125 8.61572 2.30078 8.61572H8.69922C9.21875 8.61572 9.61296 8.75472 9.88184 9.03271C10.1507 9.31071 10.2852 9.7277 10.2852 10.2837V15.1304C10.2852 15.6909 10.1507 16.1102 9.88184 16.3882C9.61296 16.6707 9.21875 16.812 8.69922 16.812H2.30078ZM1.96582 9.18994V7.01611C1.96582 6.17301 2.12988 5.46891 2.45801 4.90381C2.79069 4.33415 3.22591 3.90576 3.76367 3.61865C4.30143 3.33154 4.88021 3.18799 5.5 3.18799C6.11979 3.18799 6.69857 3.33154 7.23633 3.61865C7.77409 3.90576 8.20703 4.33415 8.53516 4.90381C8.86784 5.46891 9.03418 6.17301 9.03418 7.01611V9.18994H7.75586V6.88623C7.75586 6.35303 7.65104 5.90413 7.44141 5.53955C7.23633 5.17041 6.96289 4.89014 6.62109 4.69873C6.2793 4.50732 5.9056 4.41162 5.5 4.41162C5.0944 4.41162 4.7207 4.50732 4.37891 4.69873C4.03711 4.89014 3.76367 5.17041 3.55859 5.53955C3.35352 5.90413 3.25098 6.35303 3.25098 6.88623V9.18994H1.96582Z\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y6yv0x\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5 13L15 13M5 16H12M6 10H14C14.5523 10 15 9.55228 15 9V5C15 4.44772 14.5523 4 14 4H6C5.44772 4 5 4.44772 5 5V9C5 9.55228 5.44772 10 6 10Z\" stroke=\"black\" stroke-opacity=\"0.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1scx2my\",\"data-framer-name\":\"Custom (1440x900)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+716+0+206+98+0+52+0+0),sizes:\"1440px\",src:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png\",srcSet:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png?scale-down-to=512 512w,https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+98+0+52+0+0),sizes:\"1440px\",src:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png\",srcSet:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png?scale-down-to=512 512w,https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png 800w\"},className:\"framer-zhnt8l\",\"data-framer-name\":\"image\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j0sop4\",\"data-framer-name\":\"Browser\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifsc5f\",\"data-border\":true,\"data-framer-name\":\"Bar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fethyz\",\"data-framer-name\":\"Tab bar\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mm9f31\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xo963c\",\"data-framer-name\":\"Dots\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-131qd4a\",\"data-border\":true,\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-elovxg\",\"data-border\":true,\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yn6t5g\",\"data-border\":true,\"data-framer-name\":\"Dot\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aekt0h\",\"data-framer-name\":\"Tabs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nijq1f\",\"data-framer-name\":\"Tab 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mlq977\",\"data-framer-name\":\"Tab\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o7lgam\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+716+0+206+182+0+0+0+0+0+0+0+0+6+6+0),src:\"https://framerusercontent.com/images/PNy1GkqlsBqHDJ7SeAjEZWu3akk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+182+0+0+0+0+0+0+0+0+6+6+0),src:\"https://framerusercontent.com/images/PNy1GkqlsBqHDJ7SeAjEZWu3akk.png\"},className:\"framer-1onqgxe\",\"data-framer-name\":\"Favicon\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-31zzmj\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-k06s17\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16px\"},children:\"Landify\"})}),className:\"framer-am7s4f\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r1y2l3\",\"data-framer-name\":\"Close\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.00006 6.9394L11.4697 3.46973L12.5304 4.53039L9.06072 8.00006L12.5304 11.4697L11.4697 12.5304L8.00006 9.06072L4.53039 12.5304L3.46973 11.4697L6.9394 8.00006L3.46973 4.53039L4.53039 3.46973L8.00006 6.9394Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uriijl\",\"data-framer-name\":\"Curve Right\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0V12H12C5.37258 12 0 6.62742 0 0Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wymtdx\",\"data-framer-name\":\"Curve Left\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0V12H9.53674e-07C6.62742 12 12 6.62742 12 0Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b1as4f\",\"data-framer-name\":\"Tab 2\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bu8jgm\",\"data-framer-name\":\"Tab\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1d96xi5\",\"data-framer-name\":\"Wrap\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:220,svg:'<svg width=\"220\" height=\"28\" viewBox=\"0 0 220 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.6904 9.4387C13.9446 5.65148 19.9782 6.39906 22.2339 10.8229C20.6461 10.8235 18.1596 10.8225 16.813 10.8229C15.8363 10.8233 15.2058 10.8011 14.5228 11.1606C13.72 11.5832 13.1142 12.3666 12.9028 13.2867L10.6904 9.4387Z\" fill=\"#5F6368\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.6714 13.9997C13.6714 15.2832 14.715 16.3275 15.9979 16.3275C17.2807 16.3275 18.3243 15.2833 18.3243 13.9997C18.3243 12.7162 17.2807 11.6719 15.9979 11.6719C14.715 11.6719 13.6714 12.7162 13.6714 13.9997Z\" fill=\"#5F6368\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.9005 17.0467C15.5947 17.4347 14.0666 17.0043 13.2296 15.5595C12.5906 14.4567 10.9024 11.5157 10.1352 10.1785C7.44781 14.2974 9.76394 19.9104 14.6427 20.8684L16.9005 17.0467Z\" fill=\"#5F6368\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18.1589 11.6719C19.2465 12.6834 19.4834 14.3214 18.7466 15.5914C18.1916 16.5484 16.4201 19.5382 15.5615 20.986C20.5882 21.2959 24.2526 16.3694 22.5974 11.6719H18.1589Z\" fill=\"#5F6368\"/>\\n<mask id=\"mask0_616_432\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"32\" y=\"6\" width=\"156\" height=\"16\">\\n<rect x=\"32\" y=\"6\" width=\"156\" height=\"16\" fill=\"url(#paint0_linear_616_432)\"/>\\n</mask>\\n<g mask=\"url(#mask0_616_432)\">\\n<path d=\"M40.0028 9.27273V18H38.7926L34.3565 11.5994H34.2756V18H32.9588V9.27273H34.1776L38.6179 15.6818H38.6989V9.27273H40.0028ZM44.6424 18.1321C43.9975 18.1321 43.4421 17.9943 42.9762 17.7188C42.5131 17.4403 42.1552 17.0497 41.9023 16.5469C41.6523 16.0412 41.5273 15.4489 41.5273 14.7699C41.5273 14.0994 41.6523 13.5085 41.9023 12.9972C42.1552 12.4858 42.5075 12.0866 42.9592 11.7997C43.4137 11.5128 43.945 11.3693 44.5529 11.3693C44.9222 11.3693 45.2802 11.4304 45.6268 11.5526C45.9734 11.6747 46.2844 11.8665 46.56 12.1278C46.8356 12.3892 47.0529 12.7287 47.212 13.1463C47.3711 13.5611 47.4506 14.0653 47.4506 14.6591V15.1108H42.2475V14.1562H46.2021C46.2021 13.821 46.1339 13.5241 45.9975 13.2656C45.8612 13.0043 45.6694 12.7983 45.4222 12.6477C45.1779 12.4972 44.891 12.4219 44.5614 12.4219C44.2035 12.4219 43.891 12.5099 43.6239 12.6861C43.3597 12.8594 43.1552 13.0866 43.0103 13.3679C42.8683 13.6463 42.7972 13.9489 42.7972 14.2756V15.0213C42.7972 15.4588 42.8739 15.831 43.0273 16.1378C43.1836 16.4446 43.4009 16.679 43.6793 16.8409C43.9577 17 44.283 17.0795 44.6552 17.0795C44.8967 17.0795 45.1168 17.0455 45.3157 16.9773C45.5146 16.9062 45.6864 16.8011 45.8313 16.6619C45.9762 16.5227 46.087 16.3509 46.1637 16.1463L47.3697 16.3636C47.2731 16.7187 47.0998 17.0298 46.8498 17.2969C46.6026 17.5611 46.2915 17.767 45.9165 17.9148C45.5444 18.0597 45.1197 18.1321 44.6424 18.1321ZM50.2717 18L48.3455 11.4545H49.6623L50.945 16.2614H51.0089L52.2958 11.4545H53.6126L54.891 16.2401H54.9549L56.229 11.4545H57.5458L55.6239 18H54.3242L52.9947 13.2741H52.8967L51.5671 18H50.2717ZM61.6026 10.4062V9.27273H68.3569V10.4062H65.6339V18H64.3214V10.4062H61.6026ZM70.7614 18.1449C70.3466 18.1449 69.9716 18.0682 69.6364 17.9148C69.3011 17.7585 69.0355 17.5327 68.8395 17.2372C68.6463 16.9418 68.5497 16.5795 68.5497 16.1506C68.5497 15.7812 68.6207 15.4773 68.7628 15.2386C68.9048 15 69.0966 14.8111 69.3381 14.6719C69.5795 14.5327 69.8494 14.4276 70.1477 14.3565C70.446 14.2855 70.75 14.2315 71.0597 14.1946C71.4517 14.1491 71.7699 14.1122 72.0142 14.0838C72.2585 14.0526 72.4361 14.0028 72.5469 13.9347C72.6577 13.8665 72.7131 13.7557 72.7131 13.6023V13.5724C72.7131 13.2003 72.608 12.9119 72.3977 12.7074C72.1903 12.5028 71.8807 12.4006 71.4688 12.4006C71.0398 12.4006 70.7017 12.4957 70.4545 12.6861C70.2102 12.8736 70.0412 13.0824 69.9474 13.3125L68.75 13.0398C68.892 12.642 69.0994 12.321 69.3722 12.0767C69.6477 11.8295 69.9645 11.6506 70.3224 11.5398C70.6804 11.4261 71.0568 11.3693 71.4517 11.3693C71.7131 11.3693 71.9901 11.4006 72.2827 11.4631C72.5781 11.5227 72.8537 11.6335 73.1094 11.7955C73.3679 11.9574 73.5795 12.1889 73.7443 12.4901C73.9091 12.7884 73.9915 13.1761 73.9915 13.6534V18H72.7472V17.1051H72.696C72.6136 17.2699 72.4901 17.4318 72.3253 17.5909C72.1605 17.75 71.9489 17.8821 71.6903 17.9872C71.4318 18.0923 71.1222 18.1449 70.7614 18.1449ZM71.0384 17.1222C71.3906 17.1222 71.6918 17.0526 71.9418 16.9134C72.1946 16.7741 72.3864 16.5923 72.517 16.3679C72.6506 16.1406 72.7173 15.8977 72.7173 15.6392V14.7955C72.6719 14.8409 72.5838 14.8835 72.4531 14.9233C72.3253 14.9602 72.179 14.9929 72.0142 15.0213C71.8494 15.0469 71.6889 15.071 71.5327 15.0938C71.3764 15.1136 71.2457 15.1307 71.1406 15.1449C70.8935 15.1761 70.6676 15.2287 70.4631 15.3026C70.2614 15.3764 70.0994 15.483 69.9773 15.6222C69.858 15.7585 69.7983 15.9403 69.7983 16.1676C69.7983 16.483 69.9148 16.7216 70.1477 16.8835C70.3807 17.0426 70.6776 17.1222 71.0384 17.1222ZM75.7908 18V9.27273H77.065V12.5156H77.1417C77.2156 12.3793 77.3221 12.2216 77.4613 12.0426C77.6005 11.8636 77.7937 11.7074 78.0408 11.5739C78.288 11.4375 78.6147 11.3693 79.021 11.3693C79.5494 11.3693 80.021 11.5028 80.4357 11.7699C80.8505 12.0369 81.1758 12.4219 81.4116 12.9247C81.6502 13.4276 81.7695 14.0327 81.7695 14.7401C81.7695 15.4474 81.6516 16.054 81.4158 16.5597C81.18 17.0625 80.8562 17.4503 80.4442 17.723C80.0323 17.9929 79.5621 18.1278 79.0337 18.1278C78.636 18.1278 78.3107 18.0611 78.0579 17.9276C77.8079 17.794 77.6119 17.6378 77.4698 17.4588C77.3278 17.2798 77.2184 17.1207 77.1417 16.9815H77.0352V18H75.7908ZM77.0394 14.7273C77.0394 15.1875 77.1062 15.5909 77.2397 15.9375C77.3732 16.2841 77.5664 16.5554 77.8192 16.7514C78.0721 16.9446 78.3817 17.0412 78.7482 17.0412C79.1289 17.0412 79.4471 16.9403 79.7028 16.7386C79.9585 16.5341 80.1516 16.2571 80.2823 15.9077C80.4158 15.5582 80.4826 15.1648 80.4826 14.7273C80.4826 14.2955 80.4173 13.9077 80.2866 13.5639C80.1587 13.2202 79.9656 12.9489 79.707 12.75C79.4513 12.5511 79.1317 12.4517 78.7482 12.4517C78.3789 12.4517 78.0664 12.5469 77.8107 12.7372C77.5579 12.9276 77.3661 13.1932 77.2354 13.5341C77.1048 13.875 77.0394 14.2727 77.0394 14.7273Z\" fill=\"black\" fill-opacity=\"0.6\"/>\\n</g>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M204 12.9394L207.47 9.46973L208.53 10.5304L205.061 14.0001L208.53 17.4697L207.47 18.5304L204 15.0607L200.53 18.5304L199.47 17.4697L202.939 14.0001L199.47 10.5304L200.53 9.46973L204 12.9394Z\" fill=\"#5F6368\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_616_432\" x1=\"32\" y1=\"14\" x2=\"177.364\" y2=\"14\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.859011\" stop-color=\"#D9D9D9\"/>\\n<stop offset=\"0.984553\" stop-color=\"#737373\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1atprpf\",\"data-framer-name\":\"New Tab\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.25 19.25V15H20.75V19.25L25 19.25L25 20.75H20.75V25H19.25V20.75H15V19.25L19.25 19.25Z\" fill=\"#5F6368\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hkbvu2\",\"data-framer-name\":\"Button\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"6\" y=\"6\" width=\"28\" height=\"28\" rx=\"10\" fill=\"white\" fill-opacity=\"0.6\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.4697 18.2652L16.5304 17.2046L20.0001 20.6743L23.4697 17.2046L24.5304 18.2652L20.0001 22.7956L15.4697 18.2652Z\" fill=\"#5F6368\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1babio4\",\"data-framer-name\":\"Navigation Bar\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1j1vbkr\",\"data-framer-name\":\"Nav Icons\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:90,svg:'<svg width=\"90\" height=\"18\" viewBox=\"0 0 90 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.86875 9.75H15V8.25H5.86875L10.0687 4.05L9 3L3 9L9 15L10.0687 13.95L5.86875 9.75Z\" fill=\"#5F6368\"/>\\n<path d=\"M48.1313 9.75H39V8.25H48.1313L43.9313 4.05L45 3L51 9L45 15L43.9313 13.95L48.1313 9.75Z\" fill=\"#5F6368\" fill-opacity=\"0.5\"/>\\n<path d=\"M81 15C79.325 15 77.9062 14.4188 76.7438 13.2563C75.5813 12.0938 75 10.675 75 9C75 7.325 75.5813 5.90625 76.7438 4.74375C77.9062 3.58125 79.325 3 81 3C81.8625 3 82.6875 3.17813 83.475 3.53438C84.2625 3.89063 84.9375 4.4 85.5 5.0625V3H87V8.25H81.75V6.75H84.9C84.5 6.05 83.9531 5.5 83.2594 5.1C82.5656 4.7 81.8125 4.5 81 4.5C79.75 4.5 78.6875 4.9375 77.8125 5.8125C76.9375 6.6875 76.5 7.75 76.5 9C76.5 10.25 76.9375 11.3125 77.8125 12.1875C78.6875 13.0625 79.75 13.5 81 13.5C81.9625 13.5 82.8313 13.225 83.6063 12.675C84.3813 12.125 84.925 11.4 85.2375 10.5H86.8125C86.4625 11.825 85.75 12.9062 84.675 13.7438C83.6 14.5813 82.375 15 81 15Z\" fill=\"#5F6368\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+716+0+206+182+0+0+0+40+6),positionX:\"center\",positionY:\"center\",sizes:\"1190px\",src:\"https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png\",srcSet:\"https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png?scale-down-to=512 512w,https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png 3570w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+182+0+0+0+40+6),positionX:\"center\",positionY:\"center\",sizes:\"1190px\",src:\"https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png\",srcSet:\"https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png?scale-down-to=512 512w,https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iFYbLB7qDaU3jJ1roO65mGjlc.png 3570w\"},className:\"framer-1m4wlfb\",\"data-framer-name\":\"Address Bar\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18nrzwe\",\"data-framer-name\":\"Site Information\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"24\" height=\"24\" rx=\"12\" fill=\"white\"/>\\n<path d=\"M15.6316 17.2106C14.9684 17.2106 14.4079 16.9817 13.95 16.5238C13.4921 16.0659 13.2632 15.5053 13.2632 14.8422C13.2632 14.179 13.4921 13.6185 13.95 13.1606C14.4079 12.7027 14.9684 12.4738 15.6316 12.4738C16.2947 12.4738 16.8553 12.7027 17.3132 13.1606C17.7711 13.6185 18 14.179 18 14.8422C18 15.5053 17.7711 16.0659 17.3132 16.5238C16.8553 16.9817 16.2947 17.2106 15.6316 17.2106ZM15.6316 15.9474C15.9368 15.9474 16.1974 15.8396 16.4132 15.6238C16.6289 15.408 16.7368 15.1474 16.7368 14.8422C16.7368 14.5369 16.6289 14.2764 16.4132 14.0606C16.1974 13.8448 15.9368 13.7369 15.6316 13.7369C15.3263 13.7369 15.0658 13.8448 14.85 14.0606C14.6342 14.2764 14.5263 14.5369 14.5263 14.8422C14.5263 15.1474 14.6342 15.408 14.85 15.6238C15.0658 15.8396 15.3263 15.9474 15.6316 15.9474ZM6.94737 15.4738V14.2106H12V15.4738H6.94737ZM8.36842 11.5264C7.70526 11.5264 7.14474 11.2974 6.68684 10.8396C6.22895 10.3817 6 9.82113 6 9.15797C6 8.49481 6.22895 7.93429 6.68684 7.47639C7.14474 7.0185 7.70526 6.78955 8.36842 6.78955C9.03158 6.78955 9.59211 7.0185 10.05 7.47639C10.5079 7.93429 10.7368 8.49481 10.7368 9.15797C10.7368 9.82113 10.5079 10.3817 10.05 10.8396C9.59211 11.2974 9.03158 11.5264 8.36842 11.5264ZM8.36842 10.2632C8.67368 10.2632 8.93421 10.1553 9.15 9.93955C9.36579 9.72376 9.47368 9.46323 9.47368 9.15797C9.47368 8.85271 9.36579 8.59218 9.15 8.37639C8.93421 8.1606 8.67368 8.05271 8.36842 8.05271C8.06316 8.05271 7.80263 8.1606 7.58684 8.37639C7.37105 8.59218 7.26316 8.85271 7.26316 9.15797C7.26316 9.46323 7.37105 9.72376 7.58684 9.93955C7.80263 10.1553 8.06316 10.2632 8.36842 10.2632ZM12 9.78955V8.52639H17.0526V9.78955H12Z\" fill=\"#5F6368\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ggkosd\",\"data-framer-name\":\"URL\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"16px\"},children:\"landify.design\"})}),className:\"framer-1lduuv\",\"data-framer-name\":\"landify.design\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5t1c2n\",\"data-framer-name\":\"Actions\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"18\" viewBox=\"0 0 48 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.5 15.75V14.25L5.25 13.5H3C2.5875 13.5 2.23437 13.3531 1.94062 13.0594C1.64687 12.7656 1.5 12.4125 1.5 12V3.75C1.5 3.3375 1.64687 2.98438 1.94062 2.69063C2.23437 2.39687 2.5875 2.25 3 2.25H9V3.75H3V12H15V9.75H16.5V12C16.5 12.4125 16.3531 12.7656 16.0594 13.0594C15.7656 13.3531 15.4125 13.5 15 13.5H12.75L13.5 14.25V15.75H4.5ZM11.25 11.25L7.5 7.5L8.55 6.45L10.5 8.38125V2.25H12V8.38125L13.95 6.45L15 7.5L11.25 11.25Z\" fill=\"#5F6368\"/>\\n<path d=\"M36.6375 12.6188L39 11.1938L41.3625 12.6375L40.7437 9.9375L42.825 8.1375L40.0875 7.89375L39 5.34375L37.9125 7.875L35.175 8.11875L37.2562 9.9375L36.6375 12.6188ZM34.3687 15.75L35.5875 10.4813L31.5 6.9375L36.9 6.46875L39 1.5L41.1 6.46875L46.5 6.9375L42.4125 10.4813L43.6312 15.75L39 12.9563L34.3687 15.75Z\" fill=\"#5F6368\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+716+0+206+182+0+0+0+40+13),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vL33tR3YKYyZA7m085er6m2l1k.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+182+0+0+0+40+13),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/vL33tR3YKYyZA7m085er6m2l1k.png\"},className:\"framer-xzb20k\",\"data-framer-name\":\"Others\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9u9ko3\",\"data-framer-name\":\"Custom (1440x900)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+716+0+206+182+0+86+0+0),sizes:\"1440px\",src:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png\",srcSet:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png?scale-down-to=512 512w,https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+182+0+86+0+0),sizes:\"1440px\",src:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png\",srcSet:\"https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png?scale-down-to=512 512w,https://framerusercontent.com/images/4CUxxNMR9davgKZJpbvPtQzrI44.png 800w\"},className:\"framer-uh2mvl\",\"data-framer-name\":\"image\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6lvpiw\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uvjzf0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rucvtn\",\"data-styles-preset\":\"czw6GaUH6\",style:{\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Responsive Layouts\"})}),className:\"framer-1am9c9q\",\"data-framer-name\":\"Responsive Layouts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-167ecfa\",\"data-styles-preset\":\"KDaSnfBZb\",style:{\"--framer-text-color\":\"var(--token-b6da7bc4-84f9-4cf3-975f-f195a9341b2c, rgb(82, 82, 82))\"},children:\"All sections are responsive to any screen size, saving you time on adjustments.\"})}),className:\"framer-45ngwy\",\"data-framer-name\":\"All sections are responsive to any screen size, saving you time on adjustments.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tnh8ki\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"Theme - Desktop\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+1432+0+206+20),sizes:\"264px\",src:\"https://framerusercontent.com/images/fDfuuerryzMGJOv4W6mNMuOUqiA.png\",srcSet:\"https://framerusercontent.com/images/fDfuuerryzMGJOv4W6mNMuOUqiA.png 1013w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Theme - Desktop\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+20),sizes:\"264px\",src:\"https://framerusercontent.com/images/fDfuuerryzMGJOv4W6mNMuOUqiA.png\",srcSet:\"https://framerusercontent.com/images/fDfuuerryzMGJOv4W6mNMuOUqiA.png 1013w\"},className:\"framer-1jgkazs\",\"data-framer-name\":\"Desktop\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"Theme - Tablet\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+1432+0+206+20),sizes:\"200px\",src:\"https://framerusercontent.com/images/4hh02MR1OCpaw8zg53X16mG9N2E.png\",srcSet:\"https://framerusercontent.com/images/4hh02MR1OCpaw8zg53X16mG9N2E.png 520w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Theme - Tablet\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+20),sizes:\"200px\",src:\"https://framerusercontent.com/images/4hh02MR1OCpaw8zg53X16mG9N2E.png\",srcSet:\"https://framerusercontent.com/images/4hh02MR1OCpaw8zg53X16mG9N2E.png 520w\"},className:\"framer-12melqk\",\"data-framer-name\":\"Tablet\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mgpi0p\",\"data-framer-name\":\"iPhone 16\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+1432+0+206+224+0),sizes:\"160px\",src:\"https://framerusercontent.com/images/p37fIIh89tLSgr7fyGv6ptIHWaU.png\",srcSet:\"https://framerusercontent.com/images/p37fIIh89tLSgr7fyGv6ptIHWaU.png?scale-down-to=2048 1017w,https://framerusercontent.com/images/p37fIIh89tLSgr7fyGv6ptIHWaU.png 1359w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+224+0),sizes:\"160px\",src:\"https://framerusercontent.com/images/p37fIIh89tLSgr7fyGv6ptIHWaU.png\",srcSet:\"https://framerusercontent.com/images/p37fIIh89tLSgr7fyGv6ptIHWaU.png?scale-down-to=2048 1017w,https://framerusercontent.com/images/p37fIIh89tLSgr7fyGv6ptIHWaU.png 1359w\"},className:\"framer-ci8689\",\"data-framer-name\":\"Bezel\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{background:{alt:\"Theme - Phone\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4930+48+0+0+112+0+1432+0+206+224+10.4999),positionX:\"center\",positionY:\"center\",sizes:\"138.808px\",src:\"https://framerusercontent.com/images/d35Y6TrnBbWB9SwdQn9mVR0Pbg.png\",srcSet:\"https://framerusercontent.com/images/d35Y6TrnBbWB9SwdQn9mVR0Pbg.png 556w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Theme - Phone\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3794+96+0+0+136+0+0+206+224+10.4999),positionX:\"center\",positionY:\"center\",sizes:\"138.808px\",src:\"https://framerusercontent.com/images/d35Y6TrnBbWB9SwdQn9mVR0Pbg.png\",srcSet:\"https://framerusercontent.com/images/d35Y6TrnBbWB9SwdQn9mVR0Pbg.png 556w\"},className:\"framer-rfivo9\",\"data-framer-name\":\"image\"})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-183gut4\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pesire\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-td5xtn\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f6v8q5\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qvwtt3\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.5732 5.07322L10.1768 2.67678C10.0791 2.57915 9.92085 2.57915 9.82322 2.67678L7.42678 5.07322C7.32915 5.17085 7.32915 5.32915 7.42678 5.42678L9.82322 7.82322C9.92085 7.92085 10.0791 7.92085 10.1768 7.82322L12.5732 5.42678C12.6709 5.32915 12.6709 5.17085 12.5732 5.07322Z\" stroke=\"#7C3AED\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\\n<path d=\"M12.5732 14.5732L10.1768 12.1768C10.0791 12.0791 9.92085 12.0791 9.82322 12.1768L7.42678 14.5732C7.32915 14.6709 7.32915 14.8291 7.42678 14.9268L9.82322 17.3232C9.92085 17.4209 10.0791 17.4209 10.1768 17.3232L12.5732 14.9268C12.6709 14.8291 12.6709 14.6709 12.5732 14.5732Z\" stroke=\"#7C3AED\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\\n<path d=\"M17.3232 9.82322L14.9268 7.42678C14.8291 7.32915 14.6709 7.32915 14.5732 7.42678L12.1768 9.82322C12.0791 9.92085 12.0791 10.0791 12.1768 10.1768L14.5732 12.5732C14.6709 12.6709 14.8291 12.6709 14.9268 12.5732L17.3232 10.1768C17.4209 10.0791 17.4209 9.92085 17.3232 9.82322Z\" stroke=\"#7C3AED\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.82322 9.82322L5.42678 7.42678C5.32915 7.32915 5.17085 7.32915 5.07322 7.42678L2.67678 9.82322C2.57915 9.92085 2.57915 10.0791 2.67678 10.1768L5.07322 12.5732C5.17085 12.6709 5.32915 12.6709 5.42678 12.5732L7.82322 10.1768C7.92085 10.0791 7.92085 9.92085 7.82322 9.82322Z\" stroke=\"#7C3AED\" stroke-width=\"1.25\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-drr16h\",\"data-styles-preset\":\"fSExazEod\",style:{\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"UI Components\"})}),className:\"framer-1ufqmim\",\"data-framer-name\":\"UI Components\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-167ecfa\",\"data-styles-preset\":\"KDaSnfBZb\",style:{\"--framer-text-color\":\"var(--token-6454c2f1-06c9-47f3-bec0-d659890c38cb, rgb(56, 56, 56))\"},children:\"Well organized components like button, input, badge and more, to simplify building your website.\"})}),className:\"framer-oqbdiu\",\"data-framer-name\":\"Well organized components like button, input, badge and more, to simplify building your website.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kif4ez\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jgtvfl\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11xnqd1\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.17301 17.2764L4.173 14.3674C3.65373 14.0652 3.33325 13.503 3.33325 12.894V7.106C3.33325 6.49705 3.65373 5.9348 4.173 5.63266L9.17301 2.72358C9.68541 2.42547 10.3144 2.42547 10.8268 2.72358L15.8268 5.63266C16.3461 5.9348 16.6666 6.49705 16.6666 7.106V12.894C16.6666 13.5029 16.3461 14.0652 15.8268 14.3673L10.8268 17.2764C10.3144 17.5745 9.68541 17.5745 9.17301 17.2764Z\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.99967 9.89588C9.94218 9.89612 9.89573 9.94287 9.89588 10.0004C9.89603 10.0579 9.94273 10.1044 10.0002 10.1043C10.0577 10.1042 10.1043 10.0576 10.1043 10.0001C10.1045 9.97234 10.0935 9.94567 10.0738 9.92609C10.0541 9.9065 10.0274 9.89562 9.99967 9.89588\" stroke=\"#7C3AED\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-drr16h\",\"data-styles-preset\":\"fSExazEod\",style:{\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Figma Variables\"})}),className:\"framer-1pvsnsv\",\"data-framer-name\":\"Figma Variables\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-167ecfa\",\"data-styles-preset\":\"KDaSnfBZb\",style:{\"--framer-text-color\":\"var(--token-6454c2f1-06c9-47f3-bec0-d659890c38cb, rgb(56, 56, 56))\"},children:\"Easily manage the website theme color, and typography seamlessly with minimal effort.\"})}),className:\"framer-y5bgrg\",\"data-framer-name\":\"Easily manage the website theme color, and typography seamlessly with minimal effort.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ode312\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4h1vhv\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5rd41y\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.66667 17.5H4.16667C3.24583 17.5 2.5 16.7542 2.5 15.8333V4.16667C2.5 3.24583 3.24583 2.5 4.16667 2.5H6.66667C7.5875 2.5 8.33333 3.24583 8.33333 4.16667V15.8333C8.33333 16.7542 7.5875 17.5 6.66667 17.5Z\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.8332 8.33333H13.3332C12.4123 8.33333 11.6665 7.5875 11.6665 6.66667V4.16667C11.6665 3.24583 12.4123 2.5 13.3332 2.5H15.8332C16.754 2.5 17.4998 3.24583 17.4998 4.16667V6.66667C17.4998 7.5875 16.754 8.33333 15.8332 8.33333Z\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M14.5832 12.5V16.6667\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M16.6667 14.5834H12.5\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-drr16h\",\"data-styles-preset\":\"fSExazEod\",style:{\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Auto Layout 5.0\"})}),className:\"framer-125qanp\",\"data-framer-name\":\"Auto Layout 5.0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-167ecfa\",\"data-styles-preset\":\"KDaSnfBZb\",style:{\"--framer-text-color\":\"var(--token-6454c2f1-06c9-47f3-bec0-d659890c38cb, rgb(56, 56, 56))\"},children:\"Every component are responsive and adapt well to different screen sizes or content variations.\"})}),className:\"framer-a381n1\",\"data-framer-name\":\"Every component are responsive and adapt well to different screen sizes or content variations.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13t99il\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-br9uss\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pddmfd\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.99951 3.99766C9.55221 3.44558 10.4477 3.44558 11.0003 3.99766C10.4483 3.44496 10.4483 2.54952 11.0003 1.99683C10.4477 2.54891 9.55221 2.54891 8.99951 1.99683C9.55159 2.54952 9.55159 3.44496 8.99951 3.99766Z\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.0024 3.99766C16.5551 3.44558 17.4506 3.44558 18.0033 3.99766C17.4512 3.44496 17.4512 2.54952 18.0033 1.99683C17.4506 2.54891 16.5551 2.54891 16.0024 1.99683C16.5545 2.54952 16.5545 3.44496 16.0024 3.99766Z\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.0014 7.87682C10.5871 7.29104 11.5373 7.29148 12.1231 7.87726V7.87726C12.7089 8.46305 12.7093 9.41324 12.1236 9.99903L4.55914 17.5634C3.97335 18.1492 3.02316 18.1488 2.43737 17.563V17.563C1.85159 16.9772 1.85115 16.027 2.43693 15.4412L10.0014 7.87682Z\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.0024 11.0006C16.5551 10.4485 17.4506 10.4485 18.0033 11.0006C17.4512 10.4479 17.4512 9.55245 18.0033 8.99976C17.4506 9.55184 16.5551 9.55184 16.0024 8.99976C16.5545 9.55245 16.5545 10.4479 16.0024 11.0006Z\" stroke=\"#7C3AED\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-drr16h\",\"data-styles-preset\":\"fSExazEod\",style:{\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Easy to use\"})}),className:\"framer-1w8v40f\",\"data-framer-name\":\"Easy to use\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-167ecfa\",\"data-styles-preset\":\"KDaSnfBZb\",style:{\"--framer-text-color\":\"var(--token-6454c2f1-06c9-47f3-bec0-d659890c38cb, rgb(56, 56, 56))\"},children:\"A simple file structure lets you quickly build a page, making your design process easier.\"})}),className:\"framer-qn6fqc\",\"data-framer-name\":\"A simple file structure lets you quickly build a page, making your design process easier.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sd9x2h\",\"data-framer-name\":\"Pricing\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3nnmxa\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11yxkwe\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{y:(componentViewport?.y||0)+0+7675+48+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+5095+96+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1os92co-container\",nodeId:\"ImyeODsoR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Badge,{height:\"100%\",id:\"ImyeODsoR\",layoutId:\"ImyeODsoR\",Sj0pDf2FY:\"Pricing\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1aew7mt\",\"data-styles-preset\":\"Ved7LOBe3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-5759f3a4-b34c-4161-8b40-44cbe07ad33d, rgb(22, 22, 22))\"},children:\"Buy Once, Use Forever\"})}),className:\"framer-16x652s\",\"data-framer-name\":\"Buy Once, Use Forever\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1216px), 800px)`,y:(componentViewport?.y||0)+0+7675+48+0+0+168}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:492,width:`min(min(${componentViewport?.width||\"100vw\"} - 64px, 1216px), 800px)`,y:(componentViewport?.y||0)+0+5095+96+0+0+168,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1onxz8h-container\",nodeId:\"TZWV_WmUy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{variant:\"TCm9_QD7i\"}},children:/*#__PURE__*/_jsx(Plans,{height:\"100%\",id:\"TZWV_WmUy\",layoutId:\"TZWV_WmUy\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Dd8rcoqX6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19pzk0l\",\"data-framer-name\":\"Sudent Discount\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11n3a83\",\"data-framer-name\":\"Gift Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_iii_541_520)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16667 3.36293C4.16667 2.08085 5.20601 1.0415 6.48809 1.0415H6.78572C8.09563 1.0415 9.26025 1.66375 10 2.62879C10.7398 1.66375 11.9043 1.0415 13.2143 1.0415H13.5119C14.794 1.0415 15.8333 2.08085 15.8333 3.36293C15.8333 4.03981 15.6418 4.67196 15.3101 5.20817H15.4392C15.8094 5.20816 16.1206 5.20816 16.3743 5.22655C16.6377 5.24565 16.8934 5.2872 17.1371 5.39975C17.4131 5.52721 17.6597 5.71845 17.8393 5.96742C18.0091 6.20266 18.0725 6.45609 18.1001 6.69951C18.125 6.91915 18.125 7.18237 18.125 7.46699V7.53269C18.125 7.81732 18.125 8.08053 18.1001 8.30016C18.0725 8.54359 18.0091 8.797 17.8393 9.03225C17.6597 9.28125 17.4131 9.47242 17.1371 9.59992C16.8934 9.7125 16.6377 9.754 16.3743 9.77309C16.1206 9.7915 15.8094 9.7915 15.4391 9.7915H4.5609C4.19059 9.7915 3.87942 9.7915 3.62569 9.77309C3.36233 9.754 3.10661 9.7125 2.86293 9.59992C2.58695 9.47242 2.34034 9.28125 2.16067 9.03225C1.99089 8.797 1.92749 8.54359 1.89991 8.30016C1.87495 8.07988 1.87498 7.81575 1.875 7.53016V7.46986C1.87498 7.18427 1.87495 6.9198 1.89991 6.69951C1.92749 6.45609 1.99089 6.20266 2.16067 5.96742C2.34034 5.71845 2.58695 5.52721 2.86293 5.39975C3.10661 5.2872 3.36233 5.24565 3.62569 5.22655C3.87939 5.20816 4.19052 5.20816 4.56079 5.20817H4.68993C4.35816 4.67196 4.16667 4.03981 4.16667 3.36293ZM7.67858 5.20817H9.16667V5.08912C9.16667 3.77416 8.10068 2.70817 6.78572 2.70817H6.48809C6.12648 2.70817 5.83333 3.00132 5.83333 3.36293C5.83333 4.38203 6.65947 5.20817 7.67858 5.20817ZM10.8333 5.20817H12.3214C13.3405 5.20817 14.1667 4.38203 14.1667 3.36293C14.1667 3.00132 13.8735 2.70817 13.5119 2.70817H13.2143C11.8993 2.70817 10.8333 3.77416 10.8333 5.08912V5.20817Z\" fill=\"url(#paint0_linear_541_520)\"/>\\n<path d=\"M3.15565 10.7666C3.29632 10.7903 3.4292 10.8037 3.55034 10.8125C3.84213 10.8336 4.18538 10.8336 4.53259 10.8336H8.83333C8.9905 10.8336 9.069 10.8336 9.11783 10.8824C9.16667 10.9312 9.16667 11.0098 9.16667 11.167V18.9121C9.16667 18.9378 9.14583 18.9586 9.12025 18.9586C7.78472 18.9586 6.71892 18.9586 5.88301 18.8462C5.01946 18.7301 4.30828 18.4839 3.74567 17.9213C3.18305 17.3586 2.93679 16.6475 2.82069 15.7839C2.70831 14.9481 2.70832 13.8822 2.70833 12.5467V11.1181C2.70833 10.9133 2.70833 10.811 2.76738 10.7611C2.82639 10.7112 2.93647 10.7297 3.15565 10.7666Z\" fill=\"url(#paint1_linear_541_520)\"/>\\n<path d=\"M11.1667 10.8336C11.0095 10.8336 10.931 10.8336 10.8822 10.8824C10.8333 10.9312 10.8333 11.0098 10.8333 11.167V18.9121C10.8333 18.9378 10.8542 18.9586 10.8798 18.9586C12.2153 18.9586 13.2811 18.9586 14.117 18.8462C14.9806 18.7301 15.6917 18.4839 16.2543 17.9213C16.8169 17.3586 17.0632 16.6475 17.1793 15.7839C17.2917 14.9481 17.2917 13.8822 17.2917 12.5467V11.1181C17.2917 10.9133 17.2917 10.811 17.2326 10.7611C17.1736 10.7112 17.064 10.7296 16.8448 10.7665C16.7041 10.7902 16.5708 10.8037 16.4497 10.8125C16.1578 10.8336 15.8147 10.8336 15.4674 10.8336H11.1667Z\" fill=\"url(#paint2_linear_541_520)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_iii_541_520\" x=\"1.54167\" y=\"0.708171\" width=\"16.9167\" height=\"18.5837\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"-0.333333\" dy=\"0.333333\"/>\\n<feGaussianBlur stdDeviation=\"0.166667\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 0.9 0 0 0 0 0.943902 0 0 0 0.7 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_541_520\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dx=\"0.333333\" dy=\"-0.333333\"/>\\n<feGaussianBlur stdDeviation=\"0.166667\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.568235 0 0 0 0 0.227451 0 0 0 0 0.847059 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_541_520\" result=\"effect2_innerShadow_541_520\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"0.166667\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.568627 0 0 0 0 0.227451 0 0 0 0 0.847059 0 0 0 1 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect2_innerShadow_541_520\" result=\"effect3_innerShadow_541_520\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_541_520\" x1=\"14.5139\" y1=\"1.0415\" x2=\"4.55549\" y2=\"18.1544\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FCCAF1\"/>\\n<stop offset=\"0.511431\" stop-color=\"#C250EC\"/>\\n<stop offset=\"1\" stop-color=\"#A150E0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_541_520\" x1=\"14.5139\" y1=\"1.0415\" x2=\"4.55549\" y2=\"18.1544\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FCCAF1\"/>\\n<stop offset=\"0.511431\" stop-color=\"#C250EC\"/>\\n<stop offset=\"1\" stop-color=\"#A150E0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_541_520\" x1=\"14.5139\" y1=\"1.0415\" x2=\"4.55549\" y2=\"18.1544\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FCCAF1\"/>\\n<stop offset=\"0.511431\" stop-color=\"#C250EC\"/>\\n<stop offset=\"1\" stop-color=\"#A150E0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-znaohd\",\"data-styles-preset\":\"zeZoiKmTW\",style:{\"--framer-text-color\":\"var(--token-b6da7bc4-84f9-4cf3-975f-f195a9341b2c, rgb(82, 82, 82))\"},children:[\"We offer a 50% discount for Students. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@landify.design\",motionChild:true,nodeId:\"VXl2m7GOc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1e2jnvo\",\"data-styles-preset\":\"wI06qTsuh\",children:\"Contact us\"})}),\" for more details.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-znaohd\",\"data-styles-preset\":\"zeZoiKmTW\",style:{\"--framer-text-color\":\"var(--token-b6da7bc4-84f9-4cf3-975f-f195a9341b2c, rgb(82, 82, 82))\"},children:[\"We offer a 50% discount for Students. \",/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@landify.design\",motionChild:true,nodeId:\"VXl2m7GOc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1e2jnvo\",\"data-styles-preset\":\"wI06qTsuh\",children:\"Contact us\"})}),\" for more details.\"]})}),className:\"framer-1qww2f1\",\"data-framer-name\":\"We offer a 50% discount for Students. Contact us for more details.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{y:(componentViewport?.y||0)+0+8499}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:704,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6015,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ks73ay-container\",nodeId:\"QkCsBumrM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tFGbu65Yl:{variant:\"Q1ttCrHTN\"},vrBY0TbM6:{variant:\"Zs3Rxy7DQ\"}},children:/*#__PURE__*/_jsx(BasicFAQs,{height:\"100%\",id:\"QkCsBumrM\",layoutId:\"QkCsBumrM\",style:{width:\"100%\"},variant:\"Zfu8XdVmL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vrBY0TbM6:{y:(componentViewport?.y||0)+0+9203}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:974,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6719,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r876gv-container\",nodeId:\"ML9WEDhur\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tFGbu65Yl:{variant:\"jzdqwtVXN\"},vrBY0TbM6:{variant:\"eYgWcQ2v_\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ML9WEDhur\",layoutId:\"ML9WEDhur\",pRA0Yscoa:true,style:{width:\"100%\"},variant:\"oi8MKcwec\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M5s7L.framer-lux5qc, .framer-M5s7L .framer-lux5qc { display: block; }\",\".framer-M5s7L.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-M5s7L .framer-1sf627l { flex: none; height: 80px; overflow: visible; position: relative; width: 100%; z-index: 5; }\",\".framer-M5s7L .framer-1asrurk-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-M5s7L .framer-114p2sj { 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; overflow: hidden; padding: 80px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1aocdlc { aspect-ratio: 1.3392857142857142 / 1; background: radial-gradient(64.51705890292799% 99.99999999999997% at 49.999996947922256% 99.99999895911012%, rgba(132, 38, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%); bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 896px); left: 0px; position: absolute; right: 0px; z-index: 0; }\",\".framer-M5s7L .framer-1pgw98p, .framer-M5s7L .framer-bpqh65, .framer-M5s7L .framer-1ndu1qe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-eofwju { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1vj77z { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-kt2hy, .framer-M5s7L .framer-1ig1qlq, .framer-M5s7L .framer-d9gy2w, .framer-M5s7L .framer-1w6vdvj, .framer-M5s7L .framer-1dokws0, .framer-M5s7L .framer-1am9c9q, .framer-M5s7L .framer-16x652s { --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-M5s7L .framer-1atb1eg { align-content: flex-start; align-items: flex-start; 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: min-content; }\",\".framer-M5s7L .framer-12omy0o-container, .framer-M5s7L .framer-ul1lwc-container, .framer-M5s7L .framer-x0ccz6-container, .framer-M5s7L .framer-1os92co-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-M5s7L .framer-100ul85 { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.6 / 1; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 2px 4px 0px rgba(19, 19, 22, 0.04), 0px 8px 12px -4px rgba(19, 19, 22, 0.029999999329447746), 0px 16px 24px 0px rgba(19, 19, 24, 0.05999999865889549), 0px 0px 0px 1px rgba(209, 196, 215, 0.5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 710px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5s7L .framer-7ognl7, .framer-M5s7L .framer-k1hik3, .framer-M5s7L .framer-zhnt8l, .framer-M5s7L .framer-uh2mvl { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-tgy6k1 { -webkit-user-select: none; aspect-ratio: 6 / 1; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%); bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 0px; pointer-events: none; position: absolute; right: 0px; user-select: none; z-index: 0; }\",\".framer-M5s7L .framer-sm8oz4-container, .framer-M5s7L .framer-1ks73ay-container, .framer-M5s7L .framer-1r876gv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-M5s7L .framer-zxmr20 { align-content: center; align-items: center; background-color: var(--token-8bfbacda-f7bb-44be-9737-ec3daa5420d2, #090909); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-13k5f69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-198ydxx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1dpcg7u-container { flex: none; height: 640px; position: relative; width: 110%; }\",\".framer-M5s7L .framer-5drt9z, .framer-M5s7L .framer-yoec4v, .framer-M5s7L .framer-1opcggi, .framer-M5s7L .framer-bphwqo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5s7L .framer-1aw6b8v { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 424px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-1k1zy2m { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 324px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-6sa9p5 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 113px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-cvrf3g { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 243px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-1ig3t2m { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 277px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-o31td3 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 32px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-12g7ekg { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 120px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-7g9pbb, .framer-M5s7L .framer-n7cdju { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 196px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-14p076t { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 260px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-1w3yjze { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 96px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-1jdslp3 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 224px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-1vqzpem { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(41, 39, 39, 0.02), 0px 4px 20px 0px rgba(41, 39, 39, 0.07999999821186066); flex: none; height: 112px; position: relative; width: 420px; }\",\".framer-M5s7L .framer-1wt9bor { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%); bottom: 0px; flex: none; height: 240px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-M5s7L .framer-uikxi9-container { flex: none; height: 62px; left: 50%; position: absolute; top: 89%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-M5s7L .framer-nseb7n { 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; overflow: visible; padding: 160px 32px 96px 32px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-doo58t, .framer-M5s7L .framer-1ispjj0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 720px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5s7L .framer-msmx7w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 760px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1aw12gb { background-color: #f4f4f4; border-bottom-left-radius: 16px; border-top-left-radius: 16px; flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-M5s7L .framer-sox6sj, .framer-M5s7L .framer-1l2ua30, .framer-M5s7L .framer-v0uak7 { -webkit-mask: linear-gradient(330deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 30.074436228864805%, rgba(0,0,0,1) 100%) add; flex: none; height: 100%; mask: linear-gradient(330deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 30.074436228864805%, rgba(0,0,0,1) 100%) add; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 119%; }\",\".framer-M5s7L .framer-wuqhh, .framer-M5s7L .framer-1nn94oq, .framer-M5s7L .framer-1awo68v { aspect-ratio: 0.7926829268292683 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1041px); left: 0px; position: absolute; top: -80px; width: 825px; }\",\".framer-M5s7L .framer-c0ojjp, .framer-M5s7L .framer-56s4v1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 16px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-M5s7L .framer-y0sml { background-color: #383838; flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-M5s7L .framer-1prjbyo { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; opacity: 0.6; position: absolute; top: 16px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-M5s7L .framer-1ue22mq { background-color: #f4f4f4; border-bottom-right-radius: 16px; border-top-right-radius: 16px; flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-M5s7L .framer-1vh1in2, .framer-M5s7L .framer-sd9x2h { 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; overflow: visible; padding: 96px 32px 96px 32px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-49w69o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-14hoelh, .framer-M5s7L .framer-1azmpp8, .framer-M5s7L .framer-6lvpiw { align-content: flex-start; align-items: flex-start; background-color: var(--token-3fe8795d-c30f-4847-ae4b-551c6d2d61d1, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 0px 1px rgba(19, 19, 24, 0.1), 0px 1px 3px 0px rgba(19, 19, 24, 0.07999999821186066), 0px 6px 12px 0px rgba(19, 19, 24, 0.07999999821186066); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-width: 320px; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5s7L .framer-1k30zhf, .framer-M5s7L .framer-1wjsr7a, .framer-M5s7L .framer-1uvjzf0 { 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: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-8rdp19, .framer-M5s7L .framer-v4a2qe, .framer-M5s7L .framer-45ngwy, .framer-M5s7L .framer-oqbdiu, .framer-M5s7L .framer-y5bgrg, .framer-M5s7L .framer-a381n1, .framer-M5s7L .framer-qn6fqc { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-M5s7L .framer-kpu35g { aspect-ratio: 0.8000000498246205 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 457px); overflow: hidden; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1qbixnw { aspect-ratio: 1.4054054054054055 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 518px); left: 20px; overflow: visible; position: absolute; top: 20px; width: 728px; }\",\".framer-M5s7L .framer-72pu7d { aspect-ratio: 1.4042552840798115 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 518px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-M5s7L .framer-lbpnyg { bottom: 29px; flex: none; left: 30px; position: absolute; right: 31px; top: 29px; }\",\".framer-M5s7L .framer-z4ba4u { aspect-ratio: 0.4967105761355265 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 403px); left: 172px; overflow: visible; position: absolute; top: 176px; width: 200px; }\",\".framer-M5s7L .framer-z92p8j, .framer-M5s7L .framer-1e5egq8, .framer-M5s7L .framer-1txhqqf, .framer-M5s7L .framer-ci8689 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-M5s7L .framer-bk68ay, .framer-M5s7L .framer-kranc9, .framer-M5s7L .framer-14tdff8 { bottom: 14px; flex: none; left: 13px; position: absolute; right: 13px; top: 13px; }\",\".framer-M5s7L .framer-1pg8l5p { aspect-ratio: 0.4967105761355265 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 403px); left: 124px; overflow: visible; position: absolute; top: 224px; width: 200px; }\",\".framer-M5s7L .framer-7wdu7g { aspect-ratio: 0.4967105761355265 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 403px); left: 76px; overflow: visible; position: absolute; top: 272px; width: 200px; }\",\".framer-M5s7L .framer-19nzf6x, .framer-M5s7L .framer-1tnh8ki { aspect-ratio: 0.8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 457px); overflow: hidden; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1gbeqgg { align-content: center; align-items: center; background: linear-gradient(180deg, #f1e3fd 0%, rgba(228, 222, 253, 1) 100%); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 1.3006105422973633px 1.4666459560394287px 0px rgba(0, 0, 0, 0.02), 0px 3.1255478858947754px 3.5245540142059326px 0px rgba(0, 0, 0, 0.028272492811083794), 0px 5.885129451751709px 6.636422634124756px 0px rgba(0, 0, 0, 0.03500000014901161), 0px 10.498064994812012px 11.83824348449707px 0px rgba(0, 0, 0, 0.04172750562429428), 0px 19.63547706604004px 22.142133712768555px 0px rgba(0, 0, 0, 0.05031980574131012), 0px 47px 53px 0px rgba(0, 0, 0, 0.07000000029802322), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 24px; overflow: hidden; padding: 10px; position: absolute; top: 24px; width: 1440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5s7L .framer-dou3zc { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.05000000074505806), 0px 6px 6px 0px rgba(0, 0, 0, 0.05000000074505806); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5s7L .framer-lwp0vx { --border-bottom-width: 0.5px; --border-color: rgba(10, 10, 10, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 32px; justify-content: space-between; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1tsosvo { flex: none; height: 24px; position: relative; width: 138px; }\",\".framer-M5s7L .framer-lvwa0o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5s7L .framer-k1inqp { flex: none; height: 20px; position: relative; width: 21px; }\",\".framer-M5s7L .framer-19bimze, .framer-M5s7L .framer-1dxn17p, .framer-M5s7L .framer-1lduuv, .framer-M5s7L .framer-1ufqmim, .framer-M5s7L .framer-1pvsnsv, .framer-M5s7L .framer-125qanp, .framer-M5s7L .framer-1w8v40f, .framer-M5s7L .framer-1qww2f1 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-M5s7L .framer-1epbzrc { flex: none; height: 24px; position: relative; width: 62px; }\",\".framer-M5s7L .framer-zeij6o { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.6 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 888px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-19maplh { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1.3006105422973633px 1.4666459560394287px 0px rgba(0, 0, 0, 0.02), 0px 3.1255478858947754px 3.5245540142059326px 0px rgba(0, 0, 0, 0.028272492811083794), 0px 5.885129451751709px 6.636422634124756px 0px rgba(0, 0, 0, 0.03500000014901161), 0px 10.498064994812012px 11.83824348449707px 0px rgba(0, 0, 0, 0.04172750562429428), 0px 19.63547706604004px 22.142133712768555px 0px rgba(0, 0, 0, 0.05031980574131012), 0px 47px 53px 0px rgba(0, 0, 0, 0.07000000029802322), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 66px; overflow: hidden; padding: 0px; position: absolute; top: 98px; width: 1440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5s7L .framer-12yx92a { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 52px; justify-content: space-between; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-jvb22i { flex: none; height: 24px; position: relative; width: 199px; }\",\".framer-M5s7L .framer-jvard3 { flex: none; height: 24px; position: relative; width: 100px; }\",\".framer-M5s7L .framer-65oe0b { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 28px; justify-content: space-between; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 388px; }\",\".framer-M5s7L .framer-1kmrz99 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 20px; }\",\".framer-M5s7L .framer-1im0pcz, .framer-M5s7L .framer-xo963c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5s7L .framer-vde2ms, .framer-M5s7L .framer-1onqgxe, .framer-M5s7L .framer-r1y2l3 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-M5s7L .framer-19z8z7z { flex: none; height: 20px; position: relative; width: 11px; }\",\".framer-M5s7L .framer-1y6yv0x, .framer-M5s7L .framer-qvwtt3, .framer-M5s7L .framer-11xnqd1, .framer-M5s7L .framer-5rd41y, .framer-M5s7L .framer-1pddmfd, .framer-M5s7L .framer-11n3a83 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-M5s7L .framer-1scx2my, .framer-M5s7L .framer-9u9ko3 { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.6 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 900px); justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-j0sop4 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1.3006105422973633px 1.4666459560394287px 0px rgba(0, 0, 0, 0.02), 0px 3.1255478858947754px 3.5245540142059326px 0px rgba(0, 0, 0, 0.028272492811083794), 0px 5.885129451751709px 6.636422634124756px 0px rgba(0, 0, 0, 0.03500000014901161), 0px 10.498064994812012px 11.83824348449707px 0px rgba(0, 0, 0, 0.04172750562429428), 0px 19.63547706604004px 22.142133712768555px 0px rgba(0, 0, 0, 0.05031980574131012), 0px 47px 53px 0px rgba(0, 0, 0, 0.07000000029802322), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 98px; overflow: hidden; padding: 0px; position: absolute; top: 182px; width: 1440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M5s7L .framer-1ifsc5f { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; background-color: #d6e3fb; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1fethyz { align-content: center; align-items: center; background-color: #d6e3fb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 0px 0px 20px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1mm9f31 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5s7L .framer-131qd4a { --border-bottom-width: 0.5px; --border-color: #b0534a; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; background-color: #ec6a5e; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-M5s7L .framer-elovxg { --border-bottom-width: 0.5px; --border-color: #ae8c4e; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; background-color: #f4be4f; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-M5s7L .framer-1yn6t5g { --border-bottom-width: 0.5px; --border-color: #69945f; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; background-color: #62c554; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-M5s7L .framer-1aekt0h { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5s7L .framer-1nijq1f, .framer-M5s7L .framer-b1as4f { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M5s7L .framer-mlq977 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 34px; justify-content: center; max-height: 34px; max-width: 220px; overflow: visible; padding: 6px 8px 0px 8px; position: relative; width: 220px; }\",\".framer-M5s7L .framer-o7lgam { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-M5s7L .framer-31zzmj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 16px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-M5s7L .framer-k06s17 { flex: none; height: 16px; overflow: hidden; position: relative; width: 156px; }\",\".framer-M5s7L .framer-am7s4f { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-M5s7L .framer-1uriijl, .framer-M5s7L .framer-1wymtdx { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-M5s7L .framer-1bu8jgm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 34px; justify-content: flex-start; max-height: 34px; overflow: visible; padding: 0px 4px 4px 4px; position: relative; width: 228px; }\",\".framer-M5s7L .framer-1d96xi5 { flex: none; height: 28px; position: relative; width: 220px; }\",\".framer-M5s7L .framer-1atprpf, .framer-M5s7L .framer-1hkbvu2 { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-M5s7L .framer-1babio4 { align-content: center; align-items: center; background-color: #ffffff; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 12px 6px 12px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1j1vbkr { flex: none; height: 18px; position: relative; width: 90px; }\",\".framer-M5s7L .framer-1m4wlfb { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 5px 14px 5px 5px; position: relative; width: 1px; }\",\".framer-M5s7L .framer-18nrzwe { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-M5s7L .framer-ggkosd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-M5s7L .framer-5t1c2n { flex: none; height: 18px; position: relative; width: 48px; }\",\".framer-M5s7L .framer-xzb20k { flex: none; height: 20px; position: relative; width: 104px; }\",\".framer-M5s7L .framer-1jgkazs { aspect-ratio: 0.24742268041237114 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1067px); left: 20px; position: absolute; top: 20px; width: 264px; }\",\".framer-M5s7L .framer-12melqk { aspect-ratio: 0.12698412698412698 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1575px); left: 296px; position: absolute; top: 20px; width: 200px; }\",\".framer-M5s7L .framer-1mgpi0p { aspect-ratio: 0.4968944099378882 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 322px); left: 192px; overflow: visible; position: absolute; top: 224px; width: 160px; }\",\".framer-M5s7L .framer-rfivo9 { bottom: 11px; flex: none; left: 11px; position: absolute; right: 11px; top: 10px; }\",\".framer-M5s7L .framer-183gut4 { background-color: var(--token-e1825323-4a26-434a-9972-b6871c28e8f9, #dedede); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1pesire { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-td5xtn, .framer-M5s7L .framer-1kif4ez, .framer-M5s7L .framer-1ode312, .framer-M5s7L .framer-13t99il { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1f6v8q5, .framer-M5s7L .framer-jgtvfl, .framer-M5s7L .framer-4h1vhv, .framer-M5s7L .framer-br9uss { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-3nnmxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1216px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-11yxkwe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 720px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-1onxz8h-container { flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-M5s7L .framer-19pzk0l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-M5s7L.framer-72rtr7, .framer-M5s7L .framer-114p2sj, .framer-M5s7L .framer-1pgw98p, .framer-M5s7L .framer-eofwju, .framer-M5s7L .framer-1vj77z, .framer-M5s7L .framer-1atb1eg, .framer-M5s7L .framer-100ul85, .framer-M5s7L .framer-zxmr20, .framer-M5s7L .framer-13k5f69, .framer-M5s7L .framer-198ydxx, .framer-M5s7L .framer-5drt9z, .framer-M5s7L .framer-yoec4v, .framer-M5s7L .framer-1opcggi, .framer-M5s7L .framer-bphwqo, .framer-M5s7L .framer-nseb7n, .framer-M5s7L .framer-bpqh65, .framer-M5s7L .framer-msmx7w, .framer-M5s7L .framer-1vh1in2, .framer-M5s7L .framer-1ndu1qe, .framer-M5s7L .framer-49w69o, .framer-M5s7L .framer-14hoelh, .framer-M5s7L .framer-1k30zhf, .framer-M5s7L .framer-1azmpp8, .framer-M5s7L .framer-1wjsr7a, .framer-M5s7L .framer-1gbeqgg, .framer-M5s7L .framer-dou3zc, .framer-M5s7L .framer-lvwa0o, .framer-M5s7L .framer-zeij6o, .framer-M5s7L .framer-19maplh, .framer-M5s7L .framer-1kmrz99, .framer-M5s7L .framer-1im0pcz, .framer-M5s7L .framer-1scx2my, .framer-M5s7L .framer-j0sop4, .framer-M5s7L .framer-1ifsc5f, .framer-M5s7L .framer-1mm9f31, .framer-M5s7L .framer-xo963c, .framer-M5s7L .framer-1aekt0h, .framer-M5s7L .framer-1nijq1f, .framer-M5s7L .framer-mlq977, .framer-M5s7L .framer-o7lgam, .framer-M5s7L .framer-31zzmj, .framer-M5s7L .framer-b1as4f, .framer-M5s7L .framer-1bu8jgm, .framer-M5s7L .framer-1babio4, .framer-M5s7L .framer-1m4wlfb, .framer-M5s7L .framer-ggkosd, .framer-M5s7L .framer-9u9ko3, .framer-M5s7L .framer-6lvpiw, .framer-M5s7L .framer-1uvjzf0, .framer-M5s7L .framer-td5xtn, .framer-M5s7L .framer-1f6v8q5, .framer-M5s7L .framer-1kif4ez, .framer-M5s7L .framer-jgtvfl, .framer-M5s7L .framer-1ode312, .framer-M5s7L .framer-4h1vhv, .framer-M5s7L .framer-13t99il, .framer-M5s7L .framer-br9uss, .framer-M5s7L .framer-sd9x2h, .framer-M5s7L .framer-3nnmxa, .framer-M5s7L .framer-11yxkwe, .framer-M5s7L .framer-19pzk0l { gap: 0px; } .framer-M5s7L.framer-72rtr7 > *, .framer-M5s7L .framer-114p2sj > *, .framer-M5s7L .framer-100ul85 > *, .framer-M5s7L .framer-nseb7n > *, .framer-M5s7L .framer-1vh1in2 > *, .framer-M5s7L .framer-14hoelh > *, .framer-M5s7L .framer-1azmpp8 > *, .framer-M5s7L .framer-1gbeqgg > *, .framer-M5s7L .framer-dou3zc > *, .framer-M5s7L .framer-zeij6o > *, .framer-M5s7L .framer-19maplh > *, .framer-M5s7L .framer-1scx2my > *, .framer-M5s7L .framer-j0sop4 > *, .framer-M5s7L .framer-1ifsc5f > *, .framer-M5s7L .framer-1bu8jgm > *, .framer-M5s7L .framer-9u9ko3 > *, .framer-M5s7L .framer-6lvpiw > *, .framer-M5s7L .framer-sd9x2h > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-M5s7L.framer-72rtr7 > :first-child, .framer-M5s7L .framer-114p2sj > :first-child, .framer-M5s7L .framer-1pgw98p > :first-child, .framer-M5s7L .framer-eofwju > :first-child, .framer-M5s7L .framer-1vj77z > :first-child, .framer-M5s7L .framer-100ul85 > :first-child, .framer-M5s7L .framer-zxmr20 > :first-child, .framer-M5s7L .framer-13k5f69 > :first-child, .framer-M5s7L .framer-198ydxx > :first-child, .framer-M5s7L .framer-5drt9z > :first-child, .framer-M5s7L .framer-yoec4v > :first-child, .framer-M5s7L .framer-1opcggi > :first-child, .framer-M5s7L .framer-bphwqo > :first-child, .framer-M5s7L .framer-nseb7n > :first-child, .framer-M5s7L .framer-bpqh65 > :first-child, .framer-M5s7L .framer-1vh1in2 > :first-child, .framer-M5s7L .framer-1ndu1qe > :first-child, .framer-M5s7L .framer-14hoelh > :first-child, .framer-M5s7L .framer-1k30zhf > :first-child, .framer-M5s7L .framer-1azmpp8 > :first-child, .framer-M5s7L .framer-1wjsr7a > :first-child, .framer-M5s7L .framer-1gbeqgg > :first-child, .framer-M5s7L .framer-dou3zc > :first-child, .framer-M5s7L .framer-zeij6o > :first-child, .framer-M5s7L .framer-19maplh > :first-child, .framer-M5s7L .framer-1scx2my > :first-child, .framer-M5s7L .framer-j0sop4 > :first-child, .framer-M5s7L .framer-1ifsc5f > :first-child, .framer-M5s7L .framer-1bu8jgm > :first-child, .framer-M5s7L .framer-9u9ko3 > :first-child, .framer-M5s7L .framer-6lvpiw > :first-child, .framer-M5s7L .framer-1uvjzf0 > :first-child, .framer-M5s7L .framer-td5xtn > :first-child, .framer-M5s7L .framer-1kif4ez > :first-child, .framer-M5s7L .framer-1ode312 > :first-child, .framer-M5s7L .framer-13t99il > :first-child, .framer-M5s7L .framer-sd9x2h > :first-child, .framer-M5s7L .framer-3nnmxa > :first-child, .framer-M5s7L .framer-11yxkwe > :first-child { margin-top: 0px; } .framer-M5s7L.framer-72rtr7 > :last-child, .framer-M5s7L .framer-114p2sj > :last-child, .framer-M5s7L .framer-1pgw98p > :last-child, .framer-M5s7L .framer-eofwju > :last-child, .framer-M5s7L .framer-1vj77z > :last-child, .framer-M5s7L .framer-100ul85 > :last-child, .framer-M5s7L .framer-zxmr20 > :last-child, .framer-M5s7L .framer-13k5f69 > :last-child, .framer-M5s7L .framer-198ydxx > :last-child, .framer-M5s7L .framer-5drt9z > :last-child, .framer-M5s7L .framer-yoec4v > :last-child, .framer-M5s7L .framer-1opcggi > :last-child, .framer-M5s7L .framer-bphwqo > :last-child, .framer-M5s7L .framer-nseb7n > :last-child, .framer-M5s7L .framer-bpqh65 > :last-child, .framer-M5s7L .framer-1vh1in2 > :last-child, .framer-M5s7L .framer-1ndu1qe > :last-child, .framer-M5s7L .framer-14hoelh > :last-child, .framer-M5s7L .framer-1k30zhf > :last-child, .framer-M5s7L .framer-1azmpp8 > :last-child, .framer-M5s7L .framer-1wjsr7a > :last-child, .framer-M5s7L .framer-1gbeqgg > :last-child, .framer-M5s7L .framer-dou3zc > :last-child, .framer-M5s7L .framer-zeij6o > :last-child, .framer-M5s7L .framer-19maplh > :last-child, .framer-M5s7L .framer-1scx2my > :last-child, .framer-M5s7L .framer-j0sop4 > :last-child, .framer-M5s7L .framer-1ifsc5f > :last-child, .framer-M5s7L .framer-1bu8jgm > :last-child, .framer-M5s7L .framer-9u9ko3 > :last-child, .framer-M5s7L .framer-6lvpiw > :last-child, .framer-M5s7L .framer-1uvjzf0 > :last-child, .framer-M5s7L .framer-td5xtn > :last-child, .framer-M5s7L .framer-1kif4ez > :last-child, .framer-M5s7L .framer-1ode312 > :last-child, .framer-M5s7L .framer-13t99il > :last-child, .framer-M5s7L .framer-sd9x2h > :last-child, .framer-M5s7L .framer-3nnmxa > :last-child, .framer-M5s7L .framer-11yxkwe > :last-child { margin-bottom: 0px; } .framer-M5s7L .framer-1pgw98p > *, .framer-M5s7L .framer-bpqh65 > *, .framer-M5s7L .framer-1ndu1qe > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-M5s7L .framer-eofwju > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-M5s7L .framer-1vj77z > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-M5s7L .framer-1atb1eg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-M5s7L .framer-1atb1eg > :first-child, .framer-M5s7L .framer-msmx7w > :first-child, .framer-M5s7L .framer-49w69o > :first-child, .framer-M5s7L .framer-lvwa0o > :first-child, .framer-M5s7L .framer-1kmrz99 > :first-child, .framer-M5s7L .framer-1im0pcz > :first-child, .framer-M5s7L .framer-1mm9f31 > :first-child, .framer-M5s7L .framer-xo963c > :first-child, .framer-M5s7L .framer-1aekt0h > :first-child, .framer-M5s7L .framer-1nijq1f > :first-child, .framer-M5s7L .framer-mlq977 > :first-child, .framer-M5s7L .framer-o7lgam > :first-child, .framer-M5s7L .framer-31zzmj > :first-child, .framer-M5s7L .framer-b1as4f > :first-child, .framer-M5s7L .framer-1babio4 > :first-child, .framer-M5s7L .framer-1m4wlfb > :first-child, .framer-M5s7L .framer-ggkosd > :first-child, .framer-M5s7L .framer-1f6v8q5 > :first-child, .framer-M5s7L .framer-jgtvfl > :first-child, .framer-M5s7L .framer-4h1vhv > :first-child, .framer-M5s7L .framer-br9uss > :first-child, .framer-M5s7L .framer-19pzk0l > :first-child { margin-left: 0px; } .framer-M5s7L .framer-1atb1eg > :last-child, .framer-M5s7L .framer-msmx7w > :last-child, .framer-M5s7L .framer-49w69o > :last-child, .framer-M5s7L .framer-lvwa0o > :last-child, .framer-M5s7L .framer-1kmrz99 > :last-child, .framer-M5s7L .framer-1im0pcz > :last-child, .framer-M5s7L .framer-1mm9f31 > :last-child, .framer-M5s7L .framer-xo963c > :last-child, .framer-M5s7L .framer-1aekt0h > :last-child, .framer-M5s7L .framer-1nijq1f > :last-child, .framer-M5s7L .framer-mlq977 > :last-child, .framer-M5s7L .framer-o7lgam > :last-child, .framer-M5s7L .framer-31zzmj > :last-child, .framer-M5s7L .framer-b1as4f > :last-child, .framer-M5s7L .framer-1babio4 > :last-child, .framer-M5s7L .framer-1m4wlfb > :last-child, .framer-M5s7L .framer-ggkosd > :last-child, .framer-M5s7L .framer-1f6v8q5 > :last-child, .framer-M5s7L .framer-jgtvfl > :last-child, .framer-M5s7L .framer-4h1vhv > :last-child, .framer-M5s7L .framer-br9uss > :last-child, .framer-M5s7L .framer-19pzk0l > :last-child { margin-right: 0px; } .framer-M5s7L .framer-zxmr20 > *, .framer-M5s7L .framer-13k5f69 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-M5s7L .framer-198ydxx > *, .framer-M5s7L .framer-5drt9z > *, .framer-M5s7L .framer-yoec4v > *, .framer-M5s7L .framer-1opcggi > *, .framer-M5s7L .framer-bphwqo > *, .framer-M5s7L .framer-11yxkwe > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-M5s7L .framer-msmx7w > *, .framer-M5s7L .framer-1kmrz99 > *, .framer-M5s7L .framer-1aekt0h > *, .framer-M5s7L .framer-1nijq1f > *, .framer-M5s7L .framer-31zzmj > *, .framer-M5s7L .framer-b1as4f > *, .framer-M5s7L .framer-ggkosd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-M5s7L .framer-49w69o > *, .framer-M5s7L .framer-1mm9f31 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-M5s7L .framer-1k30zhf > *, .framer-M5s7L .framer-1wjsr7a > *, .framer-M5s7L .framer-1uvjzf0 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-M5s7L .framer-lvwa0o > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-M5s7L .framer-1im0pcz > *, .framer-M5s7L .framer-xo963c > *, .framer-M5s7L .framer-mlq977 > *, .framer-M5s7L .framer-o7lgam > *, .framer-M5s7L .framer-1m4wlfb > *, .framer-M5s7L .framer-1f6v8q5 > *, .framer-M5s7L .framer-jgtvfl > *, .framer-M5s7L .framer-4h1vhv > *, .framer-M5s7L .framer-br9uss > *, .framer-M5s7L .framer-19pzk0l > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-M5s7L .framer-1babio4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-M5s7L .framer-td5xtn > *, .framer-M5s7L .framer-1kif4ez > *, .framer-M5s7L .framer-1ode312 > *, .framer-M5s7L .framer-13t99il > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-M5s7L .framer-3nnmxa > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-M5s7L[data-border=\"true\"]::after, .framer-M5s7L [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-M5s7L.framer-72rtr7 { width: 810px; } .framer-M5s7L .framer-1aocdlc { height: var(--framer-aspect-ratio-supported, 605px); } .framer-M5s7L .framer-100ul85 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 467px); } .framer-M5s7L .framer-tgy6k1 { height: var(--framer-aspect-ratio-supported, 135px); } .framer-M5s7L .framer-kpu35g, .framer-M5s7L .framer-19nzf6x, .framer-M5s7L .framer-1tnh8ki { height: var(--framer-aspect-ratio-supported, 400px); } .framer-M5s7L .framer-72pu7d { height: var(--framer-aspect-ratio-supported, 519px); }}\",\"@media (max-width: 809px) { .framer-M5s7L.framer-72rtr7 { overflow: visible; width: 390px; } .framer-M5s7L .framer-1sf627l { order: 0; } .framer-M5s7L .framer-1asrurk-container { z-index: 5; } .framer-M5s7L .framer-114p2sj { order: 1; padding: 40px 20px 0px 20px; } .framer-M5s7L .framer-1aocdlc { height: var(--framer-aspect-ratio-supported, 292px); } .framer-M5s7L .framer-100ul85 { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; height: var(--framer-aspect-ratio-supported, 219px); } .framer-M5s7L .framer-tgy6k1 { height: var(--framer-aspect-ratio-supported, 65px); } .framer-M5s7L .framer-sm8oz4-container { order: 2; } .framer-M5s7L .framer-zxmr20 { order: 3; padding: 64px 20px 0px 20px; } .framer-M5s7L .framer-nseb7n { order: 4; padding: 64px 32px 48px 32px; } .framer-M5s7L .framer-bpqh65, .framer-M5s7L .framer-1ndu1qe { gap: 40px; } .framer-M5s7L .framer-msmx7w { flex-direction: column; height: min-content; } .framer-M5s7L .framer-1aw12gb { border-top-right-radius: 16px; flex: none; height: 720px; width: 100%; } .framer-M5s7L .framer-y0sml, .framer-M5s7L .framer-1ue22mq { flex: none; height: 720px; width: 100%; } .framer-M5s7L .framer-1vh1in2 { order: 5; padding: 48px 20px 48px 20px; } .framer-M5s7L .framer-49w69o { flex-direction: column; } .framer-M5s7L .framer-14hoelh, .framer-M5s7L .framer-1azmpp8, .framer-M5s7L .framer-6lvpiw { flex: none; width: 100%; } .framer-M5s7L .framer-kpu35g, .framer-M5s7L .framer-19nzf6x, .framer-M5s7L .framer-1tnh8ki { height: var(--framer-aspect-ratio-supported, 438px); } .framer-M5s7L .framer-72pu7d { height: var(--framer-aspect-ratio-supported, 519px); } .framer-M5s7L .framer-1pesire { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-M5s7L .framer-sd9x2h { order: 6; padding: 48px 20px 48px 20px; } .framer-M5s7L .framer-19pzk0l { align-content: flex-start; align-items: flex-start; width: 100%; } .framer-M5s7L .framer-1ks73ay-container { order: 7; } .framer-M5s7L .framer-1r876gv-container { order: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-M5s7L .framer-bpqh65, .framer-M5s7L .framer-msmx7w, .framer-M5s7L .framer-1ndu1qe, .framer-M5s7L .framer-49w69o { gap: 0px; } .framer-M5s7L .framer-bpqh65 > *, .framer-M5s7L .framer-1ndu1qe > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-M5s7L .framer-bpqh65 > :first-child, .framer-M5s7L .framer-msmx7w > :first-child, .framer-M5s7L .framer-1ndu1qe > :first-child, .framer-M5s7L .framer-49w69o > :first-child { margin-top: 0px; } .framer-M5s7L .framer-bpqh65 > :last-child, .framer-M5s7L .framer-msmx7w > :last-child, .framer-M5s7L .framer-1ndu1qe > :last-child, .framer-M5s7L .framer-49w69o > :last-child { margin-bottom: 0px; } .framer-M5s7L .framer-msmx7w > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-M5s7L .framer-49w69o > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7712.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"tFGbu65Yl\":{\"layout\":[\"fixed\",\"auto\"]},\"vrBY0TbM6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-M5s7L\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7712.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavbarFonts,...ButtonFonts,...CustomersFonts,...BadgeFonts,...TickerFonts,...GalaxyButtonFonts,...PlansFonts,...BasicFAQsFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tFGbu65Yl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vrBY0TbM6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7712.5\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "sqCAAigB,IAAMA,GAAWC,GAAGA,EAA6sB,IAAMC,GAAE,CAAC,GAAGC,GAAG,IAAIA,EAAE,EAAEA,GAAGA,EAAE,GAAG,EAM/vC,SAASC,GAAkBD,EAAED,EAAE,CAAC,OAAOA,EAAEC,GAAG,IAAID,GAAG,CAAC,CCNG,IAAMG,GAAW,CAACC,EAAEC,EAAEC,OAAO,EAAE,EAAEA,EAAE,EAAED,GAAGD,GAAG,EAAEE,EAAE,EAAED,IAAID,EAAE,EAAEC,GAAGD,EAAQE,GAAE,KAAWC,GAAE,GAAG,SAASC,GAAgBJ,EAAEC,EAAEI,EAAEC,EAAEC,EAAE,CAAC,IAAIC,EAAMC,EAAMC,EAAE,EAAE,GAAGD,EAAER,GAAGI,EAAEJ,GAAG,EAAEO,EAAET,GAAWU,EAAEH,EAAEC,CAAC,EAAEP,EAAEQ,EAAE,EAAEH,EAAEI,EAAER,EAAEQ,QAAQ,KAAK,IAAID,CAAC,EAAEN,IAAG,EAAEQ,EAAEP,IAAG,OAAOM,CAAC,CAAC,SAASE,GAAYV,EAAEC,EAAE,EAAEG,EAAE,CAAC,GAAGJ,IAAIC,GAAG,IAAIG,EAAE,OAAOO,GAAE,IAAMC,EAASb,GAAGI,GAAgBJ,EAAE,EAAE,EAAEC,EAAE,CAAC,EAAE,OAAOD,GAAOA,IAAJ,GAAWA,IAAJ,EAAMA,EAAED,GAAWc,EAASb,CAAC,EAAEE,EAAEG,CAAC,CAAC,CCApQ,IAAMS,GAAE,CAAC,KAAKC,GAAE,IAAI,GAAG,IAAI,CAAC,EAAE,UAAUA,GAAE,IAAI,EAAE,EAAE,CAAC,EAAE,cAAcA,GAAE,IAAI,EAAE,IAAI,CAAC,EAAE,WAAWA,GAAE,EAAE,EAAE,IAAI,CAAC,CAAC,ECA2d,SAASC,GAAOC,EAAE,EAAE,CAAC,IAAIC,EAAE,CAAC,EAAE,QAAQ,KAAKD,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAE,CAAC,GAAG,EAAE,QAAQ,CAAC,EAAE,IAAIC,EAAE,CAAC,EAAED,EAAE,CAAC,GAAG,GAASA,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAI,EAAE,EAAE,IAAI,EAAE,OAAO,sBAAsBA,CAAC,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAKA,EAAE,EAAE,CAAC,CAAC,IAAIC,EAAE,EAAE,CAAC,CAAC,EAAED,EAAE,EAAE,CAAC,CAAC,GAAG,OAAOC,CAAC,CCArkC,IAAIC,GAAE,CAAC,EAAE,OAAO,eAAeA,GAAE,aAAa,CAAC,MAAM,EAAI,CAAC,EAAEA,GAAE,QAAQ,UAAU,CAAC,EAAEA,GAAE,UAAU,UAAU,CAAC,EAAE,IAAMC,GAAED,GAAE,WAAWE,GAAEF,GAAE,QAAQG,GAAEH,GAAE,UCAlF,IAAMI,GAAE,EAAE,SAASC,GAAsBC,EAAEC,EAAEC,EAAE,CAAC,IAAMC,EAAE,KAAK,IAAIF,EAAEH,GAAE,CAAC,EAAE,OAAOM,GAAEF,EAAEF,EAAEG,CAAC,EAAEF,EAAEE,CAAC,CAAC,CAAC,IAAMF,GAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAC,EAAQI,GAAiB,CAACC,EAAEL,GAAE,UAAU,EAAEA,GAAE,QAAQH,EAAEG,GAAE,OAAO,GAAG,EAAE,KAAK,KAAKK,EAAER,CAAC,GAAG,SAASS,GAAiBD,EAAE,EAAER,EAAE,CAAC,OAAOQ,EAAE,GAAGR,GAAG,GAAGQ,EAAE,GAAGR,GAAG,CAAC,CAAC,IAAMU,GAAO,CAAC,CAAC,UAAUF,EAAEL,GAAE,UAAU,QAAQH,EAAEG,GAAE,QAAQ,KAAKC,EAAED,GAAE,KAAK,KAAKE,EAAE,EAAE,GAAG,EAAE,EAAE,SAASM,EAAE,EAAE,UAAUC,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAACF,EAAEA,EAAEH,GAAE,EAAEG,CAAC,EAAE,EAAE,IAAMG,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQT,EAAE,OAAO,CAAC,EAAQU,EAAE,EAAEV,EAAQW,EAAE,KAAK,KAAKR,EAAEJ,CAAC,EAAE,IAAUa,EAAEV,GAAiBC,EAAER,EAAEI,CAAC,EAAMc,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMT,EAAEQ,EAAE,KAAK,KAAK,EAAEC,EAAEA,CAAC,EAAEC,EAAEhB,GAAG,EAAE,KAAK,IAAI,CAACe,EAAED,EAAEd,CAAC,IAAIe,EAAED,EAAED,EAAEJ,GAAGH,EAAE,KAAK,IAAIA,EAAEN,CAAC,EAAEa,EAAE,KAAK,IAAIP,EAAEN,CAAC,QAAQgB,EAAEV,GAAG,EAAE,KAAK,IAAI,CAACQ,EAAER,CAAC,GAAGO,GAAGC,EAAED,EAAEJ,GAAGH,GAAG,OAAOA,GAAG,CAACM,EAAE,QAAQI,EAAEV,CAAC,EAAE,IAAMN,EAAMM,IAAJ,EAAMG,EAAEV,GAAsBiB,EAAEV,EAAEM,EAAE,OAAO,EAAQd,EAAE,KAAK,IAAIE,CAAC,GAAGU,EAAQT,EAAE,KAAK,IAAI,EAAEW,EAAE,OAAO,GAAGD,EAAE,OAAAC,EAAE,KAAKd,GAAGG,EAAEW,EAAE,iBAAiBL,GAAiBJ,EAAE,EAAES,EAAE,OAAO,EAASA,CAAC,CAAC,EAAQK,GAAM,CAAC,CAAC,KAAKX,EAAE,EAAE,SAASR,EAAE,EAAE,MAAMG,EAAE,GAAG,MAAMC,EAAE,KAAK,cAAcC,EAAE,gBAAgBe,EAAE,aAAaT,EAAE,IAAIC,EAAE,IAAIC,EAAE,aAAaC,EAAE,GAAG,UAAU,CAAC,IAAI,CAACV,EAAEI,GAAE,GAAGJ,CAAC,EAAE,IAAMY,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQR,EAAE,OAAOA,CAAC,EAAQa,EAAcb,GAAYI,IAAT,QAAYJ,EAAEI,GAAYC,IAAT,QAAYL,EAAEK,EAAQS,EAAgBd,GAAYI,IAAT,OAAWC,EAAWA,IAAT,QAAY,KAAK,IAAID,EAAEJ,CAAC,EAAE,KAAK,IAAIK,EAAEL,CAAC,EAAEI,EAAEC,EAAMI,EAAEd,EAAEH,EAAQkB,EAAEV,EAAES,EAAQM,EAAWZ,IAAT,OAAWO,EAAEP,EAAEO,CAAC,EAAEF,EAAE,OAAOO,EAAEA,IAAIL,IAAID,EAAEM,EAAEf,GAAG,IAAMgB,EAAUhB,GAAG,CAACS,EAAE,KAAK,IAAI,CAACT,EAAEJ,CAAC,EAAQqB,EAAWjB,GAAGe,EAAEC,EAAUhB,CAAC,EAAQkB,EAAclB,GAAG,CAAC,IAAMN,EAAEsB,EAAUhB,CAAC,EAAQR,EAAEyB,EAAWjB,CAAC,EAAEQ,EAAE,KAAK,KAAK,IAAId,CAAC,GAAGY,EAAEE,EAAE,QAAQA,EAAE,KAAKO,EAAEvB,CAAC,EAAM2B,EAAMC,EAAQC,EAAmBrB,GAAG,CAAIa,EAAcL,EAAE,OAAO,IAAGW,EAAEnB,EAAEoB,EAAElB,GAAO,CAAC,KAAKM,EAAE,QAAQ,GAAGM,EAAgBN,EAAE,OAAO,EAAE,SAASf,GAAsBwB,EAAWjB,EAAEQ,EAAE,OAAO,EAAE,QAAQX,EAAE,UAAUe,EAAE,aAAaN,EAAE,UAAU,CAAC,CAAC,EAAE,EAAE,OAAAe,EAAmB,CAAC,EAASrB,GAAG,CAAC,IAAIN,EAAE,GAAuE,MAA9D,CAAC0B,GAAYD,IAAT,SAAYzB,EAAE,GAAKwB,EAAclB,CAAC,EAAEqB,EAAmBrB,CAAC,GAAcmB,IAAT,QAAYnB,EAAEmB,GAAGX,EAAE,iBAAiB,GAAYY,EAAEpB,EAAEmB,CAAC,IAAEX,EAAE,iBAAiB,GAAM,CAACd,GAAGwB,EAAclB,CAAC,EAASQ,EAAC,CAAC,EAAQZ,GAAE,GAASC,GAAE,IAAI,SAASyB,GAAqBtB,EAAE,CAAC,IAAI,EAAMR,EAAEI,GAAM,EAAEI,EAAE,CAAC,EAAQ,EAAE,CAAC,EAAE,OAAO,EAAE,KAAM,CAAC,EAAE,MAAMR,EAAEK,IAAG,EAAEG,EAAER,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,OAAO,EAAE,OAAO,EAAW,IAAT,QAAY,EAAE,mBAAmB,EAAEA,GAAGA,GAAGI,GAAE,IAAMO,EAAEX,EAAEI,GAAE,OAAI,EAAE,SAAN,GAAc,EAAE,KAAK,EAAE,OAAO,EAAQ,CAAC,UAAU,EAAE,SAASO,EAAE,IAAI,mBAA0B,GAAgBA,GAAG,GAAG,CAAC,CCA1jD,IAAMoB,GAAE,CAAC,GAAG,IAAI,IAAI,GAAG,EAAQC,GAAE,CAAC,YAAY,QAAQ,SAAS,MAAM,EAAyD,IAAMC,GAAE,CAAC,OAAO,UAAU,aAAa,OAAO,cAAcC,GAAGA,EAAE,KAAK,EAAQC,GAAE,CAAC,UAAU,CAAC,OAAO,sBAAsB,aAAa,MAAM,cAAcD,GAAGA,EAAE,IAAI,EAAE,OAAOD,GAAE,MAAM,CAAC,OAAO,WAAW,aAAa,EAAE,cAAcG,EAAC,EAAE,KAAKH,EAAC,EAAQI,GAAE,IAAI,IAAUC,GAAkBJ,GAAG,YAAYA,IAAUK,GAAE,CAAC,IAAI,IAAI,GAAG,EAAEC,GAAE,QAASN,GAAG,CAACO,GAAE,QAAS,GAAG,CAACF,GAAE,KAAKL,EAAE,CAAC,EAAEG,GAAE,IAAIC,GAAkBJ,EAAE,CAAC,EAAEC,GAAED,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,EAA+D,IAAMQ,GAAE,IAAI,IAAIC,EAAC,EAA2tB,IAAMC,GAAcC,GAAG,SAAS,cAAc,KAAK,EAAE,QAAQA,EAAE,CAAC,SAAS,IAAI,CAAC,EAAQC,GAAE,CAAC,oBAAoB,IAAkB,OAAO,IAArB,KAA0B,OAAO,eAAe,KAAK,IAAI,kBAAkB,EAAE,MAAM,IAAI,OAAO,eAAe,KAAK,QAAQ,UAAU,SAAS,EAAE,iBAAiB,IAAI,CAAC,GAAG,CAACF,GAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,MAAC,CAAS,MAAO,EAAK,CAAC,MAAO,EAAI,EAAE,SAAS,IAAI,EAAQA,GAAc,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC,CAAC,EAAE,QAAS,EAAQG,GAAE,CAAC,EAAQC,GAAE,CAAC,EAAE,QAAUH,KAAKC,GAAEE,GAAEH,CAAC,EAAE,KAAcE,GAAEF,CAAC,IAAZ,SAAgBE,GAAEF,CAAC,EAAEC,GAAED,CAAC,EAAE,GAAUE,GAAEF,CAAC,GAA2kF,SAASI,GAAgBC,EAAE,EAAE,CAAC,IAAIC,EAAE,OAAc,OAAOD,GAAlB,SAAuB,IAAWC,EAAE,EAAED,CAAC,KAAb,MAA0BC,IAAT,SAAa,EAAED,CAAC,EAAE,SAAS,iBAAiBA,CAAC,GAAEA,EAAE,EAAEA,CAAC,GAAOA,EAAE,SAAS,iBAAiBA,CAAC,EAAOA,aAAa,UAAUA,EAAE,CAACA,CAAC,GAAU,MAAM,KAAKA,GAAG,CAAC,CAAC,CAAC,CAAo7H,SAASE,GAAsBC,EAAE,CAAC,IAAM,EAAE,IAAI,QAAQ,MAAM,CAACC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACC,EAAE,EAAEC,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGJ,KAAKC,KAAKC,KAAKC,IAAI,OAAAL,EAAE,IAAIM,CAAC,GAAGN,EAAE,IAAIM,EAAER,EAAE,OAAO,OAAO,CAAC,KAAKI,EAAE,GAAGC,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAEN,CAAC,CAAC,CAAC,EAASC,EAAE,IAAIM,CAAC,CAAC,EAAQC,EAAaT,IAAI,EAAE,IAAIA,CAAC,GAAG,EAAE,IAAIA,EAAEU,GAAEV,CAAC,CAAC,EAAS,EAAE,IAAIA,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEI,EAAEH,EAAEC,EAAEG,IAAI,CAAC,IAAIC,EAAEC,EAAE,IAAIC,EAAQG,EAAEX,EAAE,OAA8C,GAAjCC,GAAGU,GAAG,GAAGX,EAAE,MAAMY,EAAc,EAAO,CAAC,IAAMX,EAAED,EAAEW,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKX,EAAE,CAAC,EAAMc,EAAE,EAAMC,EAAE,EAAQC,EAA8BX,GAAE,UAAU,GAAGW,EAAE,CAAC,GAAK,CAAC,UAAUZ,EAAE,mBAAmBH,CAAC,EAAEI,EAAQH,EAA+BE,GAAE,WAAYH,GAAG,EAAQM,EAA+BH,GAAE,aAAc,YAAY,IAAI,EAAEF,EAAQM,GAAEQ,EAAET,CAAC,EAAE,QAAQQ,GAAUT,EAAEO,KAAV,MAAuBP,IAAT,OAAWA,EAAEE,IAAOG,IAAJ,GAAWA,IAAJ,GAAcX,EAAE,CAAC,IAAV,QAAec,EAAEG,GAAGjB,IAAGgB,EAAEhB,EAAC,EAAE,QAASO,EAAEC,EAAC,QAAQO,GAAUR,EAAEM,KAAV,MAAuBN,IAAT,OAAWA,EAAE,WAAWH,EAAE,CAAC,EAAE,IAAMc,EAAEf,EAAaY,EAAEd,EAAEa,EAA8BZ,GAAE,SAAS,OAAO,CAAC,EAAQiB,EAAEV,EAAaS,CAAC,EAAEV,EAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEW,CAAC,EAAE,CAAC,OAAO,QAAQ,CAAC,EAAKd,IAAGA,EAAE,UAAUa,EAAEb,EAAE,mBAAmB,YAAY,IAAI,QAAkDG,EAAE,CAAC,OAAO,OAAO,SAAnDC,EAAaN,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMI,GAAeZ,GAAc,OAAOA,GAAlB,SAA0BoB,GAAErB,GAAsBsB,EAAC,EAAQC,GAAEvB,GAAsBwB,EAAC,EAAQC,GAAE,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,SAASC,GAASzB,EAAE,EAAE,CAAC,KAAKC,EAAE,OAAOC,EAAE,OAAOG,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,GAAiB,OAAO,qBAArB,IAA0C,MAAM,IAAI,CAAC,EAAE,IAAMC,EAAEoB,GAAgB1B,CAAC,EAAQO,EAAE,IAAI,QAAcoB,EAAqB3B,GAAG,CAACA,EAAE,QAASA,GAAG,CAAC,IAAMC,EAAEM,EAAE,IAAIP,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,EAAQC,EAAG,GAAGD,EAAE,eAAe,CAAC,IAAMC,EAAE,EAAED,CAAC,EAAe,OAAOC,GAApB,WAAsBM,EAAE,IAAIP,EAAE,OAAOC,CAAC,EAAEO,EAAE,UAAUR,EAAE,MAAM,OAAUC,IAAGA,EAAED,CAAC,EAAEO,EAAE,OAAOP,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQQ,EAAE,IAAI,qBAAqBmB,EAAqB,CAAC,KAAK1B,EAAE,WAAWC,EAAE,UAAqB,OAAOG,GAAlB,SAAoBA,EAAEmB,GAAEnB,CAAC,CAAC,CAAC,EAAE,OAAAC,EAAE,QAASN,GAAGQ,EAAE,QAAQR,CAAC,CAAE,EAAQ,IAAIQ,EAAE,WAAW,CAAC,CAAC,IAAMoB,GAAE,IAAI,QAAYC,EAAE,SAASC,GAAe9B,EAAE,EAAE,CAAC,GAAG,EAAE,CAAC,GAAK,CAAC,WAAWA,EAAE,UAAU,CAAC,EAAE,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMA,EAAE,OAAO,CAAC,EAAE,OAAOA,aAAa,YAAY,YAAYA,EAAEA,EAAE,QAAQ,EAAE,CAAC,MAAMA,EAAE,YAAY,OAAOA,EAAE,YAAY,CAAC,CAAC,SAAS+B,GAAa,CAAC,OAAO/B,EAAE,YAAY,EAAE,cAAcC,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE0B,GAAE,IAAI5B,CAAC,KAAjB,MAA8BE,IAAT,QAAkBA,EAAE,QAAS,GAAG,CAAC,EAAE,CAAC,OAAOF,EAAE,YAAY,EAAE,IAAI,MAAM,CAAC,OAAO8B,GAAe9B,EAAEC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAAS+B,GAAUhC,EAAE,CAACA,EAAE,QAAQ+B,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,EAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAclC,EAAE,EAAE,CAAC6B,GAAGI,GAAqB,EAAE,IAAMhC,EAAEyB,GAAgB1B,CAAC,EAAE,OAAAC,EAAE,QAASD,GAAG,CAAC,IAAIC,EAAE2B,GAAE,IAAI5B,CAAC,EAAMC,IAAGA,EAAE,IAAI,IAAI2B,GAAE,IAAI5B,EAAEC,CAAC,GAAEA,EAAE,IAAI,CAAC,EAA8B4B,GAAE,QAAQ7B,CAAC,CAAC,CAAE,EAAQ,IAAI,CAACC,EAAE,QAASD,GAAG,CAAC,IAAMC,EAAE2B,GAAE,IAAI5B,CAAC,EAA8BC,GAAE,OAAO,CAAC,EAA+BA,GAAE,MAAoC4B,GAAE,UAAU7B,CAAC,CAAE,CAAE,CAAC,CAAC,CAAC,IAAMmC,GAAE,IAAI,IAAQC,GAAE,SAASC,IAA2B,CAACD,GAAE,IAAI,CAAC,IAAMpC,EAAE,CAAC,MAAMsC,EAAO,WAAW,OAAOA,EAAO,WAAW,EAAQ,EAAE,CAAC,OAAOA,EAAO,KAAKtC,EAAE,YAAYA,CAAC,EAAEmC,GAAE,QAASnC,GAAGA,EAAE,CAAC,CAAE,CAAC,EAAEsC,EAAO,iBAAiB,SAASF,EAAC,CAAC,CAAC,SAASG,GAAavC,EAAE,CAAC,OAAAmC,GAAE,IAAInC,CAAC,EAAEoC,IAAGC,GAA0B,EAAQ,IAAI,CAACF,GAAE,OAAOnC,CAAC,EAAE,CAACmC,GAAE,MAAMC,KAAIA,GAAE,OAAO,CAAC,CAAC,SAASI,GAAOxC,EAAE,EAAE,CAAC,OAAmB,OAAOA,GAApB,WAAsBuC,GAAavC,CAAC,EAAEkC,GAAclC,EAAE,CAAC,CAAC,CAA+hK,SAASyC,GAAqBC,EAAE,EAAEC,EAAE,CAACD,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAcC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkBF,EAAE,EAAEC,EAAE,CAACD,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAcC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAASH,GAAG,EAAQA,EAAE,OAAQ,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAKC,CAAC,EAAED,EAAEE,EAAEC,GAAEH,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOI,GAASR,EAAGI,GAAG,CAAwC,GAAvC,EAAE,EAAEF,GAAkBF,EAAE,YAAYI,CAAC,EAAK,CAACC,EAAE,OAAOI,GAAG,CAACR,EAAE,EAAEC,GAAkBF,EAAE,YAAYS,CAAC,CAAC,CAAC,EAAGH,CAAC,CAAC,CAAC,EAAQI,GAAW,CAACV,EAAE,EAAEC,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyBH,EAAE,EAAEF,GAAqBC,EAAE,EAAEI,CAAC,EAAE,EAAQO,GAAG,CAAC,SAASX,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,IAAI,CAAC,IAAMG,EAAEM,GAAWV,EAAE,aAAa,CAAC,EAAQK,EAAEK,GAAWV,EAAE,WAAWC,CAAC,EAAE,OAAAD,EAAE,iBAAiB,eAAeI,CAAC,EAAEJ,EAAE,iBAAiB,eAAeK,CAAC,EAAQ,IAAI,CAACL,EAAE,oBAAoB,eAAeI,CAAC,EAAEJ,EAAE,oBAAoB,eAAeK,CAAC,CAAC,CAAC,CAAC,EAAQO,GAAG,CAAC,SAASZ,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQC,CAAC,IAAI,CAAC,IAAMY,EAAYJ,GAAG,CAACR,EAAE,EAAEF,GAAqBC,EAAE,WAAWS,CAAC,EAAEK,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcd,GAAG,CAAC,EAAE,EAAEF,GAAqBC,EAAE,aAAaC,CAAC,EAAEa,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,OAAAb,EAAE,iBAAiB,cAAce,CAAa,EAAQ,IAAI,CAACf,EAAE,oBAAoB,cAAce,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQG,GAAG,CAAC,OAAOb,GAAG,MAAMQ,GAAG,MAAMC,EAAE,EAAQK,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECA7llB,IAAME,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,EASxjB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,CAAC,EAAE,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA8BqB,EAAcC,GAAa,QAAQ,EAAQC,EAASF,IAAgBC,GAAa,QAAQD,IAAgBC,GAAa,OACtkBE,EAAc1B,EAAM,OAAO,OAAO,EAAQ2B,GAAYC,GAAS,MAAMF,CAAa,EAAQG,GAAYF,GAAY,EAAKjB,IAAY,KAAMA,EAAU,QAAQ,IAAMoB,GAAapB,IAAY,QAAQA,IAAY,QAAcb,GAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBc,CAAS,EAAQuB,GAAUC,GAAarC,GAAOmC,EAAW,EAA4BG,GAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAC,CAAC,QAAQ,IAAI,EAAE,CAAC,QAAQ,IAAI,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,GAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,KAASC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKpB,IAAUmB,GAAYjB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEkB,GAAQ,GAAM,CAACpB,GAAUI,IAAaU,GAAK,SAAQK,GAAY,KAAK,MAAML,GAAK,OAAOA,GAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYjD,EAAoB,EAAEkD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGlB,IAAaM,GAAU,QAAQ,CAAC,IAAMa,EAAalB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBc,EAAMZ,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMa,IAAtLb,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2BY,EAAMhD,EAAIkD,GAAgB,IAAIX,GAAQ,CAAC,OAAOQ,EAAa,SAASE,EAAc,CAAC,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQE,GAAe3B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGI,GAAY,CACnkD,GAAG,CAACJ,EAAS,CAGE,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKC,GAAM,KAAKT,EAAO,EAASU,GAAOrB,GAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKT,EAAO,EAAGO,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGX,GAAed,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,EAAOD,IAAQ,IAAGC,EAAIvB,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGkC,EAAIvB,EAAY,CAAC,GAAG,IAAME,GAAK,CAAC,MAAMnB,EAAUsC,EAAM,OAAO,MAAM,OAAO,OAAOrC,EAAWqC,EAAM,OAAO,OAAO,MAAM,EAAE,OAAoBG,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMrB,GAAK,SAAsBwB,GAAaL,EAAM,CAAC,MAAM,CAAC,GAAGA,EAAM,OAAO,MAAM,GAAGnB,GAAK,WAAW,EAAE,GAAGa,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,EAAED,EAAM,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,IAAMM,GAASvC,EAAS,GAAKwC,GAAU9B,EAAS,EAAE,GAAG,CAACV,EAAU,QAAQyC,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAcA,GAAc,OAAOf,GAAS,IAAIF,EAAc,CAACgC,EAAMS,IAAa,CAAC,IAAM5B,GAAK,CAAC,MAAMnB,EAAUsC,EAAM,OAAO,MAAM,OAAO,OAAOrC,EAAWqC,EAAM,OAAO,OAAO,OAAO,WAAYM,GAAmB,YAAV,MAAqB,EAAE,OAAoBH,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMtB,GAAK,cAAc,GAAK,SAAsBwB,GAAaL,EAAM,CAAC,IAAIQ,EAAE,IAAIC,EAAW,MAAM,CAAC,GAAGT,EAAM,OAAO,MAAM,MAAMtC,EAAUsC,EAAM,OAAO,MAAM,OAAO,OAAOrC,EAAWqC,EAAM,OAAO,OAAO,OAAO,WAAW,EAAE,GAAGN,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASQ,EAAE,MAAS,EAAER,EAAM,OAAO,QAAQ,CAAC,EAAEQ,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMC,EAAe7B,GAAK,SAASA,GAAK,SAAS,KAAK,MAAMA,GAAK,OAAOA,GAAK,QAAQ,EAAQ8B,GAAYjC,EAAO,IAAI,EAAQkC,GAASlC,EAAO,IAAI,EAAQmC,GAAKnC,EAAO,CAAC,EAAQoC,GAAQpC,EAAO,EAAK,EAAQqC,GAAgBC,GAAiB,EAAQC,GAAQvC,EAAO,IAAI,EAAQwC,EAAaxC,EAAO,IAAI,EAEz3D,GAAG,CAACX,EAAS,CAAC6B,GAAU,IAAI,CAAC,GAAG,EAAAmB,IAAiB,CAACL,GAAgB,CAAC5D,GAAe,OAAAoE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC3C,GAAY,CAAC,EAAEA,GAAYoC,CAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE5D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIoE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACnE,EAAY2D,EAAe5D,CAAK,CAAC,EAAE,IAAMqE,EAAY9B,GAAY,IAAI,CAAC,GAAG,CAAC6B,EAAa,QAAQ,OAAO,IAAME,EAAO,SAAS,OAAUd,IAAU,CAACc,GAAQF,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,GAAY,CAACZ,IAAUc,IAASF,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,CAAG,EAAE,CAACZ,EAAQ,CAAC,EAAEV,GAAU,IAAI,CAACuB,EAAY,CAAE,EAAE,CAACb,EAAQ,CAAC,EAAEV,GAAU,KAAK,SAAS,iBAAiB,mBAAmBuB,CAAW,EAAQ,IAAI,CAAC,SAAS,oBAAoB,mBAAmBA,CAAW,CAAE,GAAI,CAACA,CAAW,CAAC,EAAc,IAAME,GAAcjD,GAAa,WAAW,YAAkBkD,GAAe/D,EAAU,EAAQgE,GAAa,IAAIhE,EAAU,EAAQiE,GAAeC,GAAMjE,EAAU,EAAE8D,EAAc,EAAQI,GAAa,IAAIlE,EAAgBmE,GAAS,mBAAmBN,qBAAgC5D,MAAc+D,yBAAqCF,yBAAqCC,sBAAgC9D,MAAciE,OAAkC,OAAIvD,GAAkWgC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAGyB,GAAe,QAAQzC,GAAQ,gBAAgB9B,EAAYsE,GAAS,OAAU,UAAUtE,EAAYsE,GAAS,OAAU,SAASrE,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIa,GAAU,SAAsBoD,EAAMC,EAAO,GAAG,CAAC,IAAIb,GAAQ,MAAM,CAAC,GAAGW,GAAe,IAAIrF,EAAI,IAAIS,IAAY,UAAU+E,GAAcrB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK1D,IAAY,SAAS+E,GAAcrB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWzD,EAAU,SAAS,WAAW,cAAcmB,GAAa,MAAM,SAAS,GAAGhB,EAAM,WAAWW,GAAU,CAACuC,GAAS,OAAO,YAAY,UAAUhC,GAAY,CAAC,CAAC,EAAE,aAAa,IAAI,CAACwC,GAAQ,QAAQ,GAAQI,EAAa,UACn0EA,EAAa,QAAQ,aAAanE,EAAa,EAAE,aAAa,IAAI,CAAC+D,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAAClC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAFgwC4C,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAc7B,EAAK,MAAM,CAAC,MAAM8B,GAAY,SAAS,QAAG,CAAC,EAAe9B,EAAK,IAAI,CAAC,MAAM+B,GAAY,SAAS,oBAAoB,CAAC,EAAe/B,EAAK,IAAI,CAAC,MAAMgC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAExiD,CAAyB/F,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBgG,GAAoBhG,GAAO,CAAC,MAAM,CAAC,KAAKiG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECjBvnG,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAyL,IAAMC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,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,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAExB,GAASI,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1B,CAAQ,EAAE2B,GAAgB,CAAC,eAAe,YAAY,IAAIrB,EAAW,QAAAW,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiB9B,GAAuBD,EAAME,CAAQ,EAAuC8B,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoB1C,EAAK2C,EAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBsD,EAAM1C,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,UAAUS,EAAGD,EAAkB,gBAAgBf,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAIvB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcxB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBvC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAevC,EAAK8C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBP,EAAiB,SAAS,YAAY,IAAI,gmCAAgmC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQQ,GAAI,CAAC,kFAAkF,kFAAkF,mFAAmF,6WAA6W,iHAAiH,qLAAqL,8WAA8W,EAQrgMC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRhlD,IAAMI,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,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,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUuB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,GAAGqC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/C,CAAQ,EAAEgD,GAAgB,CAAC,eAAe,YAAY,gBAAArD,GAAgB,IAAIiC,EAAW,QAAA1B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiB3B,GAAuBD,EAAMrB,CAAQ,EAAuCkD,EAAkBC,EAAGvD,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAKuC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKwC,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBC,EAAMvC,EAAO,EAAE,CAAC,GAAGwB,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,EAAkB,gBAAgBb,EAAUI,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,WAAW,oEAAoE,gBAAgB,kBAAkB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,mMAAmM,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,WAAW,wEAAwE,gBAAgB,mBAAmB,UAAU,6MAA6M,CAAC,EAAE,GAAGtC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAS,CAAc/B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,4HAA4H,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,CAAC,EAAE,SAAS,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAK0C,EAAS,CAAC,sBAAsB,GAAK,SAAsB1C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,wBAAwB,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQO,GAAI,CAAC,kFAAkF,kFAAkF,gXAAgX,oIAAoI,gHAAgH,yWAAyW,kEAAkE,EAQ52LC,GAAgBC,GAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,KAAK,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR2E,IAAMI,GAAYC,EAASC,EAAM,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAeJ,EAASK,EAAS,EAAQC,GAAWN,EAASO,EAAK,EAAQC,GAAYR,EAASS,EAAM,EAAQC,GAAkBV,EAASW,EAAY,EAAQC,GAAYC,GAAOC,CAAK,EAAQC,GAAWf,EAASgB,EAAK,EAAQC,GAAejB,EAASkB,EAAS,EAAQC,GAAYnB,EAASoB,EAAM,EAAQC,GAAYrB,EAASsB,EAAM,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,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,GAAG,EAAE,EAAE,EAAQE,GAAmB,CAACC,EAAE,IAAI,oBAAoB,IAAUC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,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,GAAG,EAAE,EAAE,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,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,GAAG,EAAE,EAAE,EAAQE,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,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,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAO,CAAC,UAAUC,GAAO,WAAWF,GAAY,QAAQ,WAAW,EAAQG,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEzB,GAASI,CAAK,EAAQsB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,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,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQS,GAAY,EAAK,EAAQC,EAAe,OAA4PC,EAAkBC,EAAGpD,GAAkB,GAA7P,CAAasC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQe,EAAOC,GAAU,EAAE,OAAAC,GAAiB,CAAC,UAAUjC,EAAM,CAAC,EAAsBR,EAAK0C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAvD,EAAiB,EAAE,SAAsBwD,EAAMC,EAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAS,CAAchB,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAe8C,EAAME,EAAO,IAAI,CAAC,GAAGlB,EAAU,UAAUW,EAAGD,EAAkB,gBAAgBb,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcvB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsBA,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAMzB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBhC,EAAKiD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc3C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc3C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,cAAc,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,mEAAmE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,4BAA4B,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,wIAAwI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yIAAyI,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc3C,EAAKoD,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,SAASC,GAA4BrD,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGzB,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqB,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBrD,EAAKsD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAUD,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerD,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGzB,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAKsD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mBAAmB,UAAU,GAAK,QAAQ,YAAY,MAAM,OAAO,UAAU,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetD,EAAK,MAAM,CAAC,UAAU,iBAAiB,qBAAqB,UAAU,mBAAmB,oBAAoB,SAAS,EAAE,SAAsBA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,mCAAmC,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,MAAM,OAAOA,GAAmB,OAAO,0BAA0B,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,mCAAmC,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,MAAM,OAAOA,GAAmB,OAAO,0BAA0B,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAMzB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBhC,EAAKyD,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGzB,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAK0D,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,oBAAoB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kDAAkD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAK2D,GAAO,CAAC,UAAU,aAAa,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAchB,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc7C,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wQAAwQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,yBAAyB,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc7C,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,4BAA4B,IAAI,OAAO,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,gCAAgC,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc7C,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,4BAA4B,IAAI,OAAO,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,gCAAgC,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc7C,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,OAAO,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,wBAAwB,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,wBAAwB,IAAI,OAAO,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAexD,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,gCAAgC,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAeA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,QAAQ,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGzB,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAS,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAK4D,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB2C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc3C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0CAA0C,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc3C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBrB,EAAK6D,GAAY,CAAC,kBAAkB,CAAC,WAAWxE,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQiE,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,eAAe,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkBT,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,UAAU,SAAS,CAAc3C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBrB,EAAK6D,GAAY,CAAC,kBAAkB,CAAC,WAAWpE,EAAW,EAAE,sBAAsB,GAAM,gBAAgBL,GAAU,eAAeM,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ6D,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkBT,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc3C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBrB,EAAK6D,GAAY,CAAC,kBAAkB,CAAC,WAAWlE,EAAW,EAAE,sBAAsB,GAAM,gBAAgBP,GAAU,eAAeQ,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,oBAAoB,IAAI,MAAM,QAAQ2D,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkBT,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsB2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc3C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4CAA4C,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc3C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wBAAwB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iFAAiF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kFAAkF,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,GAAG,CAAC,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,CAAC,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAerB,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,GAAG,OAAO,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,OAAO,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,IAAI,CAAC,EAAE,MAAM,aAAa,IAAI,qEAAqE,OAAO,sKAAsK,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,CAAC,EAAE,MAAM,aAAa,IAAI,qEAAqE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAerB,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,IAAI,CAAC,EAAE,MAAM,aAAa,IAAI,uEAAuE,OAAO,0KAA0K,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,CAAC,EAAE,MAAM,aAAa,IAAI,uEAAuE,OAAO,0KAA0K,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAerB,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,IAAI,CAAC,EAAE,MAAM,aAAa,IAAI,uEAAuE,OAAO,0KAA0K,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,CAAC,EAAE,MAAM,aAAa,IAAI,uEAAuE,OAAO,0KAA0K,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAerB,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc3C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,8EAA8E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uFAAuF,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc3C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB2C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,MAAM,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA81M,mBAAmB,EAAI,CAAC,EAAenB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAwiF,mBAAmB,EAAI,CAAC,EAAe9D,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uBAAuB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA,EAA8pJ,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAsBA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,MAAM,SAAS,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,MAAM,SAAS,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA24J,mBAAmB,EAAI,CAAC,EAAe9D,EAAK8D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAA6uI,mBAAmB,EAAI,CAAC,EAAenB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc3C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,CAAC,CAAC,CAAC,EAAerB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAA+rC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAsV,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,SAAsBA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,MAAM,SAAS,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,MAAM,SAAS,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,MAAM,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc3C,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,KAAK,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,KAAK,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,KAAK,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc3C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsB2C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,CAAC,CAAC,EAAerB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK8D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAA6X,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAA2K,mBAAmB,EAAI,CAAC,EAAe9D,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAuL,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAsBA,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAi+M,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAyQ,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA,EAAsX,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4/B,mBAAmB,EAAI,CAAC,EAAe9D,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBsB,EAAMa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcrB,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA,EAA0xD,mBAAmB,EAAI,CAAC,EAAe9D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK8D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA,EAAu3B,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAsBA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,MAAM,SAAS,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,EAAE,GAAG,EAAE,CAAC,EAAE,MAAM,SAAS,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc3C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iFAAiF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kFAAkF,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,4EAA4E,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,4EAA4E,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,CAAC,CAAC,EAAerB,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,0KAA0K,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,CAAC,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,0KAA0K,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAerB,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQuB,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,IAAI,OAAO,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,YAAY,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBrB,EAAKwD,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQD,GAA2BlC,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,IAAI,OAAO,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,YAAY,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA49C,mBAAmB,EAAI,CAAC,EAAe9D,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,kGAAkG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mGAAmG,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA,EAAu8B,mBAAmB,EAAI,CAAC,EAAe9D,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,uFAAuF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,wFAAwF,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAshC,mBAAmB,EAAI,CAAC,EAAe9D,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,gGAAgG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iGAAiG,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAigD,mBAAmB,EAAI,CAAC,EAAe9D,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4FAA4F,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB2C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAc3C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGzB,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAK0D,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBnD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wBAAwB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,kCAAkC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWzB,GAAmB,OAAO,kCAAkC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBhC,EAAK+D,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAc3C,EAAK8D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAk+K,mBAAmB,EAAI,CAAC,EAAe9D,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBhC,EAAWmD,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,yCAAsD3C,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAKgE,GAAK,CAAC,KAAK,8BAA8B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhE,EAAK6C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsB7C,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWmD,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,yCAAsD3C,EAAKgE,GAAK,CAAC,KAAK,8BAA8B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhE,EAAK6C,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qEAAqE,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAMzB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBhC,EAAKiE,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,SAAsBrB,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAMzB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBrB,EAAK+C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB/C,EAAKgD,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBhC,EAAKkE,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelE,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmE,GAAI,CAAC,kFAAkF,gFAAgF,qVAAqV,8HAA8H,6HAA6H,kSAAkS,sXAAsX,qWAAqW,sSAAsS,oRAAoR,6XAA6X,6RAA6R,kOAAkO,0vBAA0vB,0LAA0L,8VAA8V,0LAA0L,iXAAiX,wSAAwS,uSAAuS,0GAA0G,0WAA0W,yUAAyU,yUAAyU,wUAAwU,wUAAwU,yUAAyU,uUAAuU,yUAAyU,sWAAsW,yUAAyU,wUAAwU,yUAAyU,yUAAyU,gOAAgO,2KAA2K,oSAAoS,sPAAsP,kRAAkR,8MAA8M,uaAAua,iQAAiQ,kOAAkO,6IAA6I,mNAAmN,gNAAgN,kUAAkU,yRAAyR,wxBAAwxB,2VAA2V,yXAAyX,6LAA6L,uNAAuN,+LAA+L,qHAAqH,wNAAwN,6MAA6M,kLAAkL,yNAAyN,uNAAuN,8MAA8M,wjCAAwjC,2mBAA2mB,kdAAkd,gGAAgG,uRAAuR,8FAA8F,0WAA0W,+FAA+F,iVAAiV,4gCAA4gC,2SAA2S,+FAA+F,+FAA+F,ibAAib,sQAAsQ,sTAAsT,2JAA2J,+FAA+F,wPAAwP,gXAAgX,4gCAA4gC,2dAA2d,kTAAkT,yRAAyR,4ZAA4Z,2ZAA2Z,4ZAA4Z,wRAAwR,+SAA+S,sZAAsZ,kRAAkR,2QAA2Q,iHAAiH,sKAAsK,8HAA8H,oTAAoT,gGAAgG,8HAA8H,wXAAwX,+FAA+F,gaAAga,+FAA+F,kRAAkR,8FAA8F,+FAA+F,sMAAsM,uMAAuM,yNAAyN,qHAAqH,8LAA8L,8TAA8T,gaAAga,2WAA2W,uSAAuS,uSAAuS,2HAA2H,oRAAoR,s/UAAs/U,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,mtBAAmtB,o9FAAo9F,EAWluqKC,GAAgBC,GAAQ3D,GAAUyD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,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,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAY,GAAGC,GAAY,GAAGC,GAAe,GAAGC,GAAW,GAAGC,GAAY,GAAGC,GAAkB,GAAGC,GAAW,GAAGC,GAAe,GAAGC,GAAY,GAAGC,GAAY,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACl5H,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,6BAA+B,OAAO,oCAAsC,4JAA0L,qBAAuB,OAAO,yBAA2B,OAAO,yBAA2B,QAAQ,4BAA8B,OAAO,sBAAwB,IAAI,sBAAwB,SAAS,qBAAuB,2BAA2B,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["noopReturn", "t", "e", "t", "velocityPerSecond", "calcBezier", "t", "n", "e", "i", "binarySubdivide", "o", "r", "c", "u", "a", "s", "cubicBezier", "noopReturn", "getTForX", "o", "cubicBezier", "__rest", "e", "r", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "a", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "c", "i", "h", "u", "d", "f", "l", "g", "glide", "o", "isOutOfBounds", "nearestBoundary", "m", "calcDelta", "calcLatest", "applyFriction", "p", "M", "checkCatchBoundary", "pregenerateKeyframes", "W", "L", "D", "e", "M", "noopReturn", "k", "asTransformCssVar", "B", "L", "W", "j", "B", "testAnimation", "e", "C", "$", "R", "resolveElements", "e", "n", "createGeneratorEasing", "e", "n", "o", "getGenerator", "t", "i", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "c", "isNumberOrNull", "l", "f", "u", "d", "calcGeneratorVelocity", "g", "m", "N", "spring", "F", "glide", "U", "inView$1", "resolveElements", "onIntersectionChange", "q", "K", "getElementSize", "notifyTarget", "notifyAll", "createResizeObserver", "resizeElement", "G", "_", "createWindowResizeHandler", "window", "resizeWindow", "resize", "dispatchPointerEvent", "e", "n", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "SVG", "css", "FramerNvxvGQ_NK", "withCSS", "NvxvGQ_NK_default", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "css", "Framerx73r41dbx", "withCSS", "x73r41dbx_default", "addFonts", "NavbarFonts", "getFonts", "IBNvBnuTr_default", "ButtonFonts", "d97_0FBQa_default", "CustomersFonts", "TAg8dwHYs_default", "BadgeFonts", "oGN7_S61Q_default", "TickerFonts", "Ticker", "GalaxyButtonFonts", "x73r41dbx_default", "ImageWithFX", "withFX", "Image2", "PlansFonts", "d1uWCjIzP_default", "BasicFAQsFonts", "WHcn1sDhv_default", "FooterFonts", "B2G3VYLkg_default", "CursorFonts", "NvxvGQ_NK_default", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transformTemplate1", "_", "transition2", "animation2", "transition3", "animation3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition4", "cursor", "NvxvGQ_NK_default", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "IBNvBnuTr_default", "RichText2", "x", "ResolveLinks", "resolvedLinks", "d97_0FBQa_default", "getLoadingLazyAtYPosition", "Image2", "TAg8dwHYs_default", "oGN7_S61Q_default", "Ticker", "x73r41dbx_default", "ImageWithFX", "SVG", "d1uWCjIzP_default", "Link", "WHcn1sDhv_default", "B2G3VYLkg_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavbarFonts", "ButtonFonts", "CustomersFonts", "BadgeFonts", "TickerFonts", "GalaxyButtonFonts", "PlansFonts", "BasicFAQsFonts", "FooterFonts", "CursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
