{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4glTZ9FrvbfMkt2srp5I/OWKmN71HCysGLI7ekQcg/Custom_scrollbar.js", "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/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/uvb8Au2v2WQ10RsN81i8/9du18xITJRo0aySBza6k/FHan9TuX7.js", "ssg:https://framerusercontent.com/modules/41anhJfNDl1kc3TII3Aq/uZtHNxyjFFN4GSa3evbz/Advanced_Number_Counter.js", "ssg:https://framerusercontent.com/modules/A0RMhtJ49NPlOntYXJOl/Abo0zez5rTgIsVXSoPHU/FadeIt.js", "ssg:https://framerusercontent.com/modules/oNqVel6jWFMQ3XOAZVrp/rEWaACvbB15wE3s3QjJG/tDERwoxqv.js", "ssg:https://framerusercontent.com/modules/4k1xXoD5R0ymPXIUe3UV/wG4Klae73uktqFMIYx0z/LhzcKnvdP.js", "ssg:https://framerusercontent.com/modules/8TtjecrrZM6688kaKB5n/UqCgMDXzAldaZoDF64gD/Gradient_ease.js", "ssg:https://framerusercontent.com/modules/5Q6pNNxJQylEx0MA6udr/2tmS2Ck0R3xzk1evn4fS/oHHGnuSU0.js", "ssg:https://framerusercontent.com/modules/fMWIvOcu9Vh5vQWlR7bg/oFXzdZpF2oeMGdbjWQkc/m5NX1jlU4.js", "ssg:https://framerusercontent.com/modules/qH3D3QSWPYavkOr21dPA/u2qPduBZsDW9BCaNLk4d/tz2RGqDgb.js", "ssg:https://framerusercontent.com/modules/nePO8Z00V2EvdvFExLoH/hznc4E2zWZNtcZjq3GdR/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";// @framerDisableUnlink\nexport default function CustomScrollBar(props){const{color,trackColor,enabled}=props;const[isScrolling,setIsScrolling]=React.useState(false);React.useEffect(()=>{let scrollTimeout;const onScroll=()=>{setIsScrolling(true);clearTimeout(scrollTimeout);scrollTimeout=setTimeout(()=>{setIsScrolling(false);},1e3);};document.addEventListener(\"scroll\",onScroll);return()=>{clearTimeout(scrollTimeout);document.removeEventListener(\"scroll\",onScroll);};},[]);const enableScrollbar=enabled?`\n        ::-webkit-scrollbar {\n          width: 8px;\n        }\n        ::-webkit-scrollbar-track {\n          background: ${isScrolling?trackColor:\"transparent\"};\n          transition: background 0.5s ease; /* Attempt to soften the appearance/disappearance */\n        }\n        ::-webkit-scrollbar-thumb {\n          background: ${isScrolling?color:\"transparent\"};\n          border-radius: 4px;\n          transition: background 0.5s ease; /* Soften the thumb appearance/disappearance */\n        }\n        ::-webkit-scrollbar-thumb:hover {\n          background: ${color};\n        }\n      `:`\n        ::-webkit-scrollbar {\n          display: none;\n        }\n      `;return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:\"100%\",overflow:\"auto\"},children:[/*#__PURE__*/_jsx(\"style\",{children:enableScrollbar}),/*#__PURE__*/_jsx(\"div\",{style:{height:\"200%\"}})]});}CustomScrollBar.defaultProps={color:\"#FF00FF\",trackColor:\"#f1f1f1\",enabled:true};addPropertyControls(CustomScrollBar,{color:{type:ControlType.Color,title:\"Thumb Color\"},trackColor:{type:ControlType.Color,title:\"Track Color\"},enabled:{type:ControlType.Boolean,title:\"Enable Scroll\",enabledTitle:\"Yes\",disabledTitle:\"No\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CustomScrollBar\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Custom_scrollbar.map", "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,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (81a45be)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"pxNOjIOp6\",\"EGGWnbfTQ\",\"aKEskWTJ2\",\"ivpFP0_Dc\",\"e9eCROdq4\",\"iHnK68P4m\",\"er9eZlR6R\"];const serializationHash=\"framer-7HETd\";const variantClassNames={aKEskWTJ2:\"framer-v-1hvluh2\",e9eCROdq4:\"framer-v-1k6waws\",EGGWnbfTQ:\"framer-v-lv7eld\",er9eZlR6R:\"framer-v-1pufg13\",iHnK68P4m:\"framer-v-wtr70u\",ivpFP0_Dc:\"framer-v-10kzrb5\",pxNOjIOp6:\"framer-v-gqc65y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:950,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"1\":\"EGGWnbfTQ\",\"2\":\"aKEskWTJ2\",\"3\":\"ivpFP0_Dc\",\"4\":\"e9eCROdq4\",\"5\":\"iHnK68P4m\",\"6\":\"er9eZlR6R\",Default:\"pxNOjIOp6\"};const getProps=({answer1,answer2,answer3,answer4,answer5,answer6,height,id,question1,question2,question3,question4,question5,question6,width,...props})=>{return{...props,F6lM4exSR:answer5??props.F6lM4exSR??\"Don\u2019t worry\u2014we\u2019ll work with you to revise the design until it meets your expectations completely.\",IFjQjdWql:question4??props.IFjQjdWql??\"Is there a maximum number of design requests I can submit?\",JuxOgtiro:answer4??props.JuxOgtiro??\"Not at all! When we say \u201Cunlimited,\u201D we truly mean it. Once you\u2019re subscribed, feel free to add as many design tasks as you like, and they\u2019ll be processed sequentially.\",kao3Z3l7k:answer6??props.kao3Z3l7k??\"Once a project has begun, refunds are not issued. We remain dedicated to perfecting our work and will keep refining the design until it fully meets your expectations.\",KjHOx49kL:answer1??props.KjHOx49kL??\"We integrate with Slack to streamline communication and organization. By utilizing Slack lists as dynamic Trello-like boards, we track every project step transparently. This setup not only keeps you updated with real-time progress but also fosters seamless collaboration and immediate feedback throughout the design process.\",mDV6PtA6K:question5??props.mDV6PtA6K??\"What if I\u2019m not satisfied with the design?\",oRIOycR3Y:answer2??props.oRIOycR3Y??\"That\u2019s a valid point. A full-time senior designer typically costs around $100,000 annually plus benefits, and recruiting one can be quite challenging. Additionally, if your workload varies, you might end up paying for downtime. With our monthly plan, you can start and pause your subscription whenever necessary, ensuring you\u2019re only paying for active work.\",pj8TaM0YQ:question3??props.pj8TaM0YQ??\"How quickly will my designs be delivered?\",pOWJFdPGf:question6??props.pOWJFdPGf??\"Are refunds available if I\u2019m unhappy with the service?\",rawvYUUzX:question1??props.rawvYUUzX??\"How does Neuship's collaborative process work?\",Tiiziaej8:answer3??props.Tiiziaej8??\"For our standard monthly plan, you can expect the majority of projects to be completed within 2-3 days. More complex designs might take a bit longer, while our custom plans typically offer a faster turnaround.\",tvNxOx7cw:question2??props.tvNxOx7cw??\"Why not simply employ a full-time designer?\",variant:humanReadableVariantMap[props.variant]??props.variant??\"pxNOjIOp6\"};};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,rawvYUUzX,KjHOx49kL,tvNxOx7cw,oRIOycR3Y,pj8TaM0YQ,Tiiziaej8,IFjQjdWql,JuxOgtiro,mDV6PtA6K,F6lM4exSR,pOWJFdPGf,kao3Z3l7k,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pxNOjIOp6\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapxn2w2d=activeVariantCallback(async(...args)=>{setVariant(\"EGGWnbfTQ\");});const onTapygefag=activeVariantCallback(async(...args)=>{setVariant(\"pxNOjIOp6\");});const onTap1apn1hx=activeVariantCallback(async(...args)=>{setVariant(\"aKEskWTJ2\");});const onTap1nwki7c=activeVariantCallback(async(...args)=>{setVariant(\"ivpFP0_Dc\");});const onTap1j49vyf=activeVariantCallback(async(...args)=>{setVariant(\"e9eCROdq4\");});const onTap1x32xg0=activeVariantCallback(async(...args)=>{setVariant(\"iHnK68P4m\");});const onTap15bdsy1=activeVariantCallback(async(...args)=>{setVariant(\"er9eZlR6R\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"EGGWnbfTQ\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"aKEskWTJ2\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"ivpFP0_Dc\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"e9eCROdq4\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"iHnK68P4m\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"er9eZlR6R\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,\"aria-label\":\"Footer\",className:cx(scopingClassNames,\"framer-gqc65y\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"pxNOjIOp6\",ref:refBinding,style:{...style},...addPropertyOverrides({aKEskWTJ2:{\"data-framer-name\":\"2\"},e9eCROdq4:{\"data-framer-name\":\"4\"},EGGWnbfTQ:{\"data-framer-name\":\"1\"},er9eZlR6R:{\"data-framer-name\":\"6\"},iHnK68P4m:{\"data-framer-name\":\"5\"},ivpFP0_Dc:{\"data-framer-name\":\"3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qaczgi\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Zprffp9R2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16vg8kg\",\"data-border\":true,\"data-framer-name\":\"Question 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Lk3x_o90D\",onTap:onTapxn2w2d,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({EGGWnbfTQ:{onTap:onTapygefag}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fenasf\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"TtH3ykGt8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Why wouldn't I just hire a full-time designer?\"})}),className:\"framer-1wds3oj\",\"data-framer-name\":\"Question\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"YelDYgmbt\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:rawvYUUzX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ewqdxr\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"lFWRC7uXz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15c606w\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"ufNq3pDab\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{EGGWnbfTQ:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hosjwp\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"V1oCsafLs\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{EGGWnbfTQ:{rotate:90}}})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"Good question. For starters, the annual cost of a full-time senior-level designer is around $100,000 plus benefits. (And trying to find one available is a hassle in itself.) Aside from that, you may not always have enough work to keep them busy all the time, so you;re stuck paying for time you aren't able to utilize.   With the monthly plan, you can pause and resume your subscription as often as you need to ensure you're only paying your designer when you have work available for them.  \"})}),className:\"framer-tqyyc\",\"data-framer-name\":\"Answer\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"nLikpdgKG\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:KjHOx49kL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gf7sgt\",\"data-border\":true,\"data-framer-name\":\"Question 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"P6rto1bpG\",onTap:onTap1apn1hx,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({aKEskWTJ2:{onTap:onTapygefag}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qft1iv\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"TTpKkanLr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Is there a limit to how many requests I can have?\"})}),className:\"framer-1xoncgf\",\"data-framer-name\":\"Question\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"QLt1e9zPd\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:tvNxOx7cw,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pw22ph\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Zs0WXQudc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wp40xy\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"ernBcsBuB\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{aKEskWTJ2:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16r9uyh\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"TKqCCSAvM\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{aKEskWTJ2:{rotate:90}}})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"Nope! When we say unlimited, we mean unlimited. Once you've susbcribed, you can add as many design requests to your queue as you'd like and they'll be delivered one by one. \"})}),className:\"framer-b7jrs8\",\"data-framer-name\":\"Answer\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Zmb8BRTq7\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-paragraph-spacing\":\"0px\"},text:oRIOycR3Y,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iijkdr\",\"data-border\":true,\"data-framer-name\":\"Question 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mw6yorzpZ\",onTap:onTap1nwki7c,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({ivpFP0_Dc:{onTap:onTapygefag}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p7oqsa\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"yDBHXgsO3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"How fast will I receive my designs?\"})}),className:\"framer-fz7b7z\",\"data-framer-name\":\"Question\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"vDbcW8z3E\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:pj8TaM0YQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mc3fwu\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"OYgz9wLCG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yzbi9w\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"dksbN0H4i\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{ivpFP0_Dc:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ebvy15\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"aca6sMYe_\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{ivpFP0_Dc:{rotate:90}}})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"On average, most requests are completed in 2-3 days. However, mroe complex requests can take longer. \"})}),className:\"framer-1mfck5c\",\"data-framer-name\":\"Answer\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"IYmVNukqW\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:Tiiziaej8,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h4zh7h\",\"data-border\":true,\"data-framer-name\":\"Question 4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ARs_MSjfx\",onTap:onTap1j49vyf,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({e9eCROdq4:{onTap:onTapygefag}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ey29k7\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"UOdNFjauf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Who are the designers?\"})}),className:\"framer-3imya\",\"data-framer-name\":\"Question\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Hmdjsk06g\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:IFjQjdWql,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ivco0h\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"kw99HnEDH\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l289bc\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"HbDhoZMDS\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{e9eCROdq4:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yzw4o5\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"WRV_3ShYU\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{e9eCROdq4:{rotate:90}}})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"You'll be working directly with me, Hamza Ehsan, founder of Productize. However, special requests such as animations or custom illustrations are provided by partner designers. \"})}),className:\"framer-me84p0\",\"data-framer-name\":\"Answer\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"U2NS17YbA\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:JuxOgtiro,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-190no88\",\"data-border\":true,\"data-framer-name\":\"Question 5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RKTc3oh7L\",onTap:onTap1x32xg0,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({iHnK68P4m:{onTap:onTapygefag}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-he0vj4\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"zSCtAYbZL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"What if I don't like the design?\"})}),className:\"framer-108smqc\",\"data-framer-name\":\"Question\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"bku2iWin8\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:mDV6PtA6K,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bv0jb6\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"FUyznjJw7\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ir3rd7\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"haIgykNDL\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{iHnK68P4m:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ros22y\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"hojK0Zxu3\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{iHnK68P4m:{rotate:90}}})]})]}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"No worries! We'll continue to revise the design until you're 100% satisfied. \"})}),className:\"framer-m3zcx0\",\"data-framer-name\":\"Answer\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"ZqImXzqvg\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:F6lM4exSR,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rl0ylc\",\"data-border\":true,\"data-framer-name\":\"Question 6\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"n9DzEiy6i\",onTap:onTap15bdsy1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(10px)\"},...addPropertyOverrides({er9eZlR6R:{onTap:onTapygefag}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m1m329\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"r2oaPbYjC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Are there any refunds if I don't like the service?\"})}),className:\"framer-1pc8iql\",\"data-framer-name\":\"Question\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"dJRTfJsZC\",style:{\"--extracted-r6o4lv\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:pOWJFdPGf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ayof0n\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"vCfcQ6WQv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kea76a\",\"data-framer-name\":\"horizontal\",layoutDependency:layoutDependency,layoutId:\"cP3_MO4RJ\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-90},variants:{er9eZlR6R:{rotate:90}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xhorvh\",\"data-framer-name\":\"vertical\",layoutDependency:layoutDependency,layoutId:\"CjwCkzp7i\",style:{backgroundColor:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:-180},variants:{er9eZlR6R:{rotate:90}}})]})]}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"Due to the high-quality nature of the work, there will be no refunds issued. \"})}),className:\"framer-4xyoba\",\"data-framer-name\":\"Answer\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"BF3RkYzyK\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:kao3Z3l7k,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7HETd.framer-ustp3k, .framer-7HETd .framer-ustp3k { display: block; }\",\".framer-7HETd.framer-gqc65y { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 1100px; }\",\".framer-7HETd .framer-qaczgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7HETd .framer-16vg8kg, .framer-7HETd .framer-gf7sgt, .framer-7HETd .framer-1iijkdr, .framer-7HETd .framer-h4zh7h, .framer-7HETd .framer-190no88, .framer-7HETd .framer-rl0ylc { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 18px 20px 18px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7HETd .framer-1fenasf, .framer-7HETd .framer-1qft1iv, .framer-7HETd .framer-p7oqsa, .framer-7HETd .framer-1ey29k7, .framer-7HETd .framer-he0vj4, .framer-7HETd .framer-m1m329 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7HETd .framer-1wds3oj, .framer-7HETd .framer-1xoncgf, .framer-7HETd .framer-fz7b7z, .framer-7HETd .framer-3imya, .framer-7HETd .framer-108smqc, .framer-7HETd .framer-1pc8iql { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7HETd .framer-1ewqdxr, .framer-7HETd .framer-1pw22ph, .framer-7HETd .framer-1mc3fwu, .framer-7HETd .framer-ivco0h, .framer-7HETd .framer-bv0jb6, .framer-7HETd .framer-ayof0n { flex: none; height: 12px; overflow: hidden; position: relative; width: 12px; }\",\".framer-7HETd .framer-15c606w, .framer-7HETd .framer-hosjwp, .framer-7HETd .framer-1wp40xy, .framer-7HETd .framer-16r9uyh, .framer-7HETd .framer-yzbi9w, .framer-7HETd .framer-1ebvy15, .framer-7HETd .framer-l289bc, .framer-7HETd .framer-yzw4o5, .framer-7HETd .framer-1ir3rd7, .framer-7HETd .framer-ros22y, .framer-7HETd .framer-1kea76a, .framer-7HETd .framer-1xhorvh { bottom: 0px; flex: none; left: calc(50.00000000000002% - 2px / 2); overflow: hidden; position: absolute; top: 0px; width: 2px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7HETd .framer-tqyyc, .framer-7HETd .framer-b7jrs8, .framer-7HETd .framer-1mfck5c, .framer-7HETd .framer-me84p0, .framer-7HETd .framer-m3zcx0, .framer-7HETd .framer-4xyoba { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7HETd.framer-gqc65y, .framer-7HETd .framer-qaczgi, .framer-7HETd .framer-16vg8kg, .framer-7HETd .framer-1fenasf, .framer-7HETd .framer-gf7sgt, .framer-7HETd .framer-1qft1iv, .framer-7HETd .framer-1iijkdr, .framer-7HETd .framer-p7oqsa, .framer-7HETd .framer-h4zh7h, .framer-7HETd .framer-1ey29k7, .framer-7HETd .framer-190no88, .framer-7HETd .framer-he0vj4, .framer-7HETd .framer-rl0ylc, .framer-7HETd .framer-m1m329 { gap: 0px; } .framer-7HETd.framer-gqc65y > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-7HETd.framer-gqc65y > :first-child, .framer-7HETd .framer-qaczgi > :first-child, .framer-7HETd .framer-16vg8kg > :first-child, .framer-7HETd .framer-gf7sgt > :first-child, .framer-7HETd .framer-1iijkdr > :first-child, .framer-7HETd .framer-h4zh7h > :first-child, .framer-7HETd .framer-190no88 > :first-child, .framer-7HETd .framer-rl0ylc > :first-child { margin-top: 0px; } .framer-7HETd.framer-gqc65y > :last-child, .framer-7HETd .framer-qaczgi > :last-child, .framer-7HETd .framer-16vg8kg > :last-child, .framer-7HETd .framer-gf7sgt > :last-child, .framer-7HETd .framer-1iijkdr > :last-child, .framer-7HETd .framer-h4zh7h > :last-child, .framer-7HETd .framer-190no88 > :last-child, .framer-7HETd .framer-rl0ylc > :last-child { margin-bottom: 0px; } .framer-7HETd .framer-qaczgi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7HETd .framer-16vg8kg > *, .framer-7HETd .framer-gf7sgt > *, .framer-7HETd .framer-1iijkdr > *, .framer-7HETd .framer-h4zh7h > *, .framer-7HETd .framer-190no88 > *, .framer-7HETd .framer-rl0ylc > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7HETd .framer-1fenasf > *, .framer-7HETd .framer-1qft1iv > *, .framer-7HETd .framer-p7oqsa > *, .framer-7HETd .framer-1ey29k7 > *, .framer-7HETd .framer-he0vj4 > *, .framer-7HETd .framer-m1m329 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-7HETd .framer-1fenasf > :first-child, .framer-7HETd .framer-1qft1iv > :first-child, .framer-7HETd .framer-p7oqsa > :first-child, .framer-7HETd .framer-1ey29k7 > :first-child, .framer-7HETd .framer-he0vj4 > :first-child, .framer-7HETd .framer-m1m329 > :first-child { margin-left: 0px; } .framer-7HETd .framer-1fenasf > :last-child, .framer-7HETd .framer-1qft1iv > :last-child, .framer-7HETd .framer-p7oqsa > :last-child, .framer-7HETd .framer-1ey29k7 > :last-child, .framer-7HETd .framer-he0vj4 > :last-child, .framer-7HETd .framer-m1m329 > :last-child { margin-right: 0px; } }\",'.framer-7HETd[data-border=\"true\"]::after, .framer-7HETd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 458\n * @framerIntrinsicWidth 1100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"EGGWnbfTQ\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"aKEskWTJ2\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"ivpFP0_Dc\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"e9eCROdq4\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"iHnK68P4m\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]},\"er9eZlR6R\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1100px\",null,null]}}}\n * @framerVariables {\"rawvYUUzX\":\"question1\",\"KjHOx49kL\":\"answer1\",\"tvNxOx7cw\":\"question2\",\"oRIOycR3Y\":\"answer2\",\"pj8TaM0YQ\":\"question3\",\"Tiiziaej8\":\"answer3\",\"IFjQjdWql\":\"question4\",\"JuxOgtiro\":\"answer4\",\"mDV6PtA6K\":\"question5\",\"F6lM4exSR\":\"answer5\",\"pOWJFdPGf\":\"question6\",\"kao3Z3l7k\":\"answer6\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFHan9TuX7=withCSS(Component,css,\"framer-7HETd\");export default FramerFHan9TuX7;FramerFHan9TuX7.displayName=\"Elements/FAQ\";FramerFHan9TuX7.defaultProps={height:458,width:1100};addPropertyControls(FramerFHan9TuX7,{variant:{options:[\"pxNOjIOp6\",\"EGGWnbfTQ\",\"aKEskWTJ2\",\"ivpFP0_Dc\",\"e9eCROdq4\",\"iHnK68P4m\",\"er9eZlR6R\"],optionTitles:[\"Default\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\"],title:\"Variant\",type:ControlType.Enum},rawvYUUzX:{defaultValue:\"How does Neuship's collaborative process work?\",displayTextArea:false,title:\"Question 1\",type:ControlType.String},KjHOx49kL:{defaultValue:\"We integrate with Slack to streamline communication and organization. By utilizing Slack lists as dynamic Trello-like boards, we track every project step transparently. This setup not only keeps you updated with real-time progress but also fosters seamless collaboration and immediate feedback throughout the design process.\",displayTextArea:false,title:\"Answer 1\",type:ControlType.String},tvNxOx7cw:{defaultValue:\"Why not simply employ a full-time designer?\",displayTextArea:false,title:\"Question 2\",type:ControlType.String},oRIOycR3Y:{defaultValue:\"That\u2019s a valid point. A full-time senior designer typically costs around $100,000 annually plus benefits, and recruiting one can be quite challenging. Additionally, if your workload varies, you might end up paying for downtime. With our monthly plan, you can start and pause your subscription whenever necessary, ensuring you\u2019re only paying for active work.\",displayTextArea:false,title:\"Answer 2\",type:ControlType.String},pj8TaM0YQ:{defaultValue:\"How quickly will my designs be delivered?\",displayTextArea:false,title:\"Question 3\",type:ControlType.String},Tiiziaej8:{defaultValue:\"For our standard monthly plan, you can expect the majority of projects to be completed within 2-3 days. More complex designs might take a bit longer, while our custom plans typically offer a faster turnaround.\",displayTextArea:false,title:\"Answer 3\",type:ControlType.String},IFjQjdWql:{defaultValue:\"Is there a maximum number of design requests I can submit?\",displayTextArea:false,title:\"Question 4\",type:ControlType.String},JuxOgtiro:{defaultValue:\"Not at all! When we say \u201Cunlimited,\u201D we truly mean it. Once you\u2019re subscribed, feel free to add as many design tasks as you like, and they\u2019ll be processed sequentially.\",displayTextArea:false,title:\"Answer 4\",type:ControlType.String},mDV6PtA6K:{defaultValue:\"What if I\u2019m not satisfied with the design?\",displayTextArea:false,title:\"Question 5\",type:ControlType.String},F6lM4exSR:{defaultValue:\"Don\u2019t worry\u2014we\u2019ll work with you to revise the design until it meets your expectations completely.\",displayTextArea:false,title:\"Answer 5\",type:ControlType.String},pOWJFdPGf:{defaultValue:\"Are refunds available if I\u2019m unhappy with the service?\",displayTextArea:false,title:\"Question 6\",type:ControlType.String},kao3Z3l7k:{defaultValue:\"Once a project has begun, refunds are not issued. We remain dedicated to perfecting our work and will keep refining the design until it fully meets your expectations.\",displayTextArea:false,title:\"Answer 6\",type:ControlType.String}});addFonts(FramerFHan9TuX7,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFHan9TuX7\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1100\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"EGGWnbfTQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"aKEskWTJ2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"ivpFP0_Dc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"e9eCROdq4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"iHnK68P4m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]},\\\"er9eZlR6R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1100px\\\",null,null]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"rawvYUUzX\\\":\\\"question1\\\",\\\"KjHOx49kL\\\":\\\"answer1\\\",\\\"tvNxOx7cw\\\":\\\"question2\\\",\\\"oRIOycR3Y\\\":\\\"answer2\\\",\\\"pj8TaM0YQ\\\":\\\"question3\\\",\\\"Tiiziaej8\\\":\\\"answer3\\\",\\\"IFjQjdWql\\\":\\\"question4\\\",\\\"JuxOgtiro\\\":\\\"answer4\\\",\\\"mDV6PtA6K\\\":\\\"question5\\\",\\\"F6lM4exSR\\\":\\\"answer5\\\",\\\"pOWJFdPGf\\\":\\\"question6\\\",\\\"kao3Z3l7k\\\":\\\"answer6\\\"}\",\"framerIntrinsicHeight\":\"458\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FHan9TuX7.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";const containerStyle={height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",overflow:\"hidden\"};// @framerDisableUnlink\nexport default function AdvancedNumberCounter({startNumber,endNumber,duration,color,prefix,suffix,font,fontSize,lineHeight,letterSpacing,prefixFontSize,suffixFontSize,prefixAlignment,suffixAlignment,decimalSeparator,countDirection,text}){const[count,setCount]=React.useState(startNumber);const formatNumber=num=>{switch(decimalSeparator){case\"comma\":return num.toLocaleString(\"en-US\");case\"period\":return num.toLocaleString(\"de-DE\");default:return num.toString();}};React.useEffect(()=>{const totalSteps=Math.abs(endNumber-startNumber);const stepTime=duration*1e3/totalSteps;const step=countDirection===\"up\"?1:-1;const timer=setInterval(()=>{setCount(prevCount=>{if(countDirection===\"up\"&&prevCount<endNumber){return prevCount+step;}else if(countDirection===\"down\"&&prevCount>endNumber){return prevCount+step;}else{clearInterval(timer);return prevCount;}});},stepTime);return()=>clearInterval(timer);},[startNumber,endNumber,duration,countDirection]);const dynamicStyle={...containerStyle,color:typeof color===\"string\"?color:undefined,fontFamily:font.fontFamily,fontWeight:font.fontWeight,fontSize:`${fontSize}px`,lineHeight:lineHeight.toString(),letterSpacing:`${letterSpacing}px`,background:typeof color===\"object\"?`linear-gradient(${color.angle}deg, ${color.start} 0%, ${color.end} 100%)`:undefined};const prefixStyle={fontSize:`${prefixFontSize}px`,alignSelf:prefixAlignment===\"top\"?\"flex-start\":prefixAlignment===\"middle\"?\"center\":\"flex-end\"};const suffixStyle={fontSize:`${suffixFontSize}px`,alignSelf:suffixAlignment===\"top\"?\"flex-start\":suffixAlignment===\"middle\"?\"center\":\"flex-end\"};return /*#__PURE__*/_jsxs(\"div\",{style:dynamicStyle,children:[/*#__PURE__*/_jsx(\"span\",{style:prefixStyle,children:prefix}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:suffixStyle,children:suffix})]});}AdvancedNumberCounter.defaultProps={startNumber:0,endNumber:1e3,duration:5,color:\"#121212\",prefix:\"\",suffix:\"\",font:{fontFamily:\"Inter\",fontWeight:400,systemFont:true},fontSize:100,lineHeight:1.2,letterSpacing:0,prefixFontSize:100,suffixFontSize:100,prefixAlignment:\"middle\",suffixAlignment:\"middle\",decimalSeparator:\"comma\",countDirection:\"up\",text:\"\"};addPropertyControls(AdvancedNumberCounter,{startNumber:{type:ControlType.Number,title:\"Start Number\",defaultValue:AdvancedNumberCounter.defaultProps.startNumber,displayStepper:true},endNumber:{type:ControlType.Number,title:\"End Number\",defaultValue:AdvancedNumberCounter.defaultProps.endNumber,displayStepper:true},duration:{type:ControlType.Number,title:\"Duration\",min:0,max:3600,unit:\"s\",defaultValue:AdvancedNumberCounter.defaultProps.duration},color:{title:\"Color\",type:ControlType.Color,defaultValue:AdvancedNumberCounter.defaultProps.color},prefix:{type:ControlType.String,title:\"Prefix\",defaultValue:AdvancedNumberCounter.defaultProps.prefix},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:AdvancedNumberCounter.defaultProps.suffix},font:{title:\"Font\",type:ControlType.Font,defaultValue:AdvancedNumberCounter.defaultProps.font},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:AdvancedNumberCounter.defaultProps.fontSize,min:1},lineHeight:{type:ControlType.Number,title:\"Line Height\",defaultValue:AdvancedNumberCounter.defaultProps.lineHeight,min:0},letterSpacing:{type:ControlType.Number,title:\"Letter Spacing\",defaultValue:AdvancedNumberCounter.defaultProps.letterSpacing,min:-5,max:20,step:.1},prefixFontSize:{type:ControlType.Number,title:\"Prefix Font Size\",defaultValue:AdvancedNumberCounter.defaultProps.prefixFontSize,min:1},suffixFontSize:{type:ControlType.Number,title:\"Suffix Font Size\",defaultValue:AdvancedNumberCounter.defaultProps.suffixFontSize,min:1},prefixAlignment:{type:ControlType.Enum,title:\"Prefix Alignment\",options:[\"top\",\"middle\",\"bottom\"],optionTitles:[\"Top\",\"Middle\",\"Bottom\"],defaultValue:AdvancedNumberCounter.defaultProps.prefixAlignment},suffixAlignment:{type:ControlType.Enum,title:\"Suffix Alignment\",options:[\"top\",\"middle\",\"bottom\"],optionTitles:[\"Top\",\"Middle\",\"Bottom\"],defaultValue:AdvancedNumberCounter.defaultProps.suffixAlignment},decimalSeparator:{type:ControlType.Enum,title:\"Decimal Separator\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Period (1.000)\",\"None\"],defaultValue:AdvancedNumberCounter.defaultProps.decimalSeparator},countDirection:{type:ControlType.SegmentedEnum,title:\"Direction\",options:[\"up\",\"down\"],optionTitles:[\"Up\",\"Down\"],defaultValue:AdvancedNumberCounter.defaultProps.countDirection}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AdvancedNumberCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Advanced_Number_Counter.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";// Code component provided by Eleveight Supply. All rights reserved 2024.\nfunction generateMaskImage(easing,direction){let cssDirection;switch(direction){case\"to right\":cssDirection=\"to left\";break;case\"to left\":cssDirection=\"to right\";break;case\"to top\":cssDirection=\"to bottom\";break;case\"to bottom\":cssDirection=\"to top\";break;default:cssDirection=\"to bottom\";}switch(easing){case\"linear\":return`linear-gradient(${cssDirection}, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,1) 100%)`;case\"ease-in\":return`linear-gradient(${cssDirection}, rgba(0,0,0,0) 10%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,1) 90%)`;case\"ease-out\":return`linear-gradient(${cssDirection}, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 80%)`;case\"ease-in-out\":return`linear-gradient(${cssDirection}, rgba(0,0,0,0) 0%, rgba(0,0,0,0.05) 15%, rgba(0,0,0,0.2) 25%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 70%, rgba(0,0,0,1) 100%)`;}}/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fit\n * @framerSupportedLayoutHeight any-prefer-fit\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n */export default function FadeIt({children,type,image,gradientDirection,maskEasing,isMixed,topLeft,topRight,bottomRight,bottomLeft}){const borderRadius=isMixed?`${topLeft}px ${topRight}px ${bottomRight}px ${bottomLeft}px`:`${topLeft}px`;const contentStyle={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",position:\"relative\",WebkitMaskImage:generateMaskImage(maskEasing,gradientDirection),maskImage:generateMaskImage(maskEasing,gradientDirection),objectFit:\"cover\",borderRadius:type===\"image\"?borderRadius:\"0px\"};return /*#__PURE__*/_jsxs(Frame,{background:null,style:contentStyle,children:[type===\"component\"&&React.Children.count(children)===0&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"200px\",height:\"200px\",background:\"#333\",color:\"#FFFFFF\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",textAlign:\"center\"},children:\"Connect to a frame\"}),type===\"component\"&&React.Children.count(children)>0&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\"},children:children}),type===\"image\"&&!image&&/*#__PURE__*/_jsx(\"div\",{style:{...contentStyle,background:\"#555\",width:\"250px\",height:\"200px\",display:\"flex\",color:\"#FFFFFF\",textAlign:\"center\"},children:\"Upload an image\"}),type===\"image\"&&image&&/*#__PURE__*/_jsx(\"img\",{style:contentStyle,src:image.src,alt:\"Uploaded image\"})]});}FadeIt.defaultProps={type:\"image\",maskDirection:180,maskEasing:\"linear\",isMixed:false,topLeft:0,topRight:0,bottomRight:0,bottomLeft:0};addPropertyControls(FadeIt,{type:{type:ControlType.Enum,options:[\"image\",\"component\"],optionTitles:[\"Image\",\"Frame\"],defaultValue:\"image\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\"},gradientDirection:{type:ControlType.Enum,title:\"Direction\",options:[\"to left\",\"to right\",\"to top\",\"to bottom\"],optionTitles:[\"Left\",\"Right\",\"Up\",\"Down\"],displaySegmentedControl:true,optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],defaultValue:\"to bottom\"},maskEasing:{type:ControlType.Enum,title:\"Mask Easing\",options:[\"linear\",\"ease-in\",\"ease-out\",\"ease-in-out\"],optionTitles:[\"Linear\",\"Ease-In\",\"Ease-Out\",\"Ease-In-Out\"],defaultValue:\"linear\"},radius:{type:ControlType.FusedNumber,title:\"Radius\",defaultValue:0,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,hidden:({type})=>type!==\"image\"},children:{type:ControlType.ComponentInstance,hidden:({type})=>type===\"image\"},image:{type:ControlType.ResponsiveImage,title:\"Image\",hidden:({type})=>type===\"component\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FadeIt\",\"slots\":[\"children\"],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fit\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-fit\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FadeIt.map", "// Generated by Framer (81a45be)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const serializationHash=\"framer-KAXy1\";const variantClassNames={dIiMPqeFC:\"framer-v-19xpuhi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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=({color,height,icon,iconColor,id,title,width,...props})=>{return{...props,AoWx0Fyus:iconColor??props.AoWx0Fyus??\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",gvOGYrGGc:color??props.gvOGYrGGc??\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",mzKpE2hfI:title??props.mzKpE2hfI??\"Submit Unlimited Requests\",TyFhmBkMH:icon??props.TyFhmBkMH??\"CheckCircle\"};};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,mzKpE2hfI,gvOGYrGGc,TyFhmBkMH,AoWx0Fyus,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"dIiMPqeFC\",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-19xpuhi\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dIiMPqeFC\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gyp420-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"lBGIbzSuM-container\",nodeId:\"lBGIbzSuM\",rendersWithMotion:true,scopeId:\"tDERwoxqv\",children:/*#__PURE__*/_jsx(Phosphor,{color:AoWx0Fyus,height:\"100%\",iconSearch:\"House\",iconSelection:TyFhmBkMH,id:\"lBGIbzSuM\",layoutId:\"lBGIbzSuM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--variable-reference-gvOGYrGGc-tDERwoxqv))\"},children:\"Submit Unlimited Requests\"})}),className:\"framer-wewzir\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"NBOvWDw9i\",style:{\"--extracted-gdpscs\":\"var(--variable-reference-gvOGYrGGc-tDERwoxqv)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-gvOGYrGGc-tDERwoxqv\":gvOGYrGGc},text:mzKpE2hfI,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KAXy1.framer-1dno556, .framer-KAXy1 .framer-1dno556 { display: block; }\",\".framer-KAXy1.framer-19xpuhi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KAXy1 .framer-gyp420-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-KAXy1 .framer-wewzir { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KAXy1.framer-19xpuhi { gap: 0px; } .framer-KAXy1.framer-19xpuhi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KAXy1.framer-19xpuhi > :first-child { margin-left: 0px; } .framer-KAXy1.framer-19xpuhi > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 230\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"mzKpE2hfI\":\"title\",\"gvOGYrGGc\":\"color\",\"TyFhmBkMH\":\"icon\",\"AoWx0Fyus\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertDERwoxqv=withCSS(Component,css,\"framer-KAXy1\");export default FramertDERwoxqv;FramertDERwoxqv.displayName=\"Elements/Feature\";FramertDERwoxqv.defaultProps={height:20,width:230};addPropertyControls(FramertDERwoxqv,{mzKpE2hfI:{defaultValue:\"Submit Unlimited Requests\",displayTextArea:false,title:\"Title\",type:ControlType.String},gvOGYrGGc:{defaultValue:'var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)) /* {\"name\":\"Heading\"} */',title:\"Color\",type:ControlType.Color},TyFhmBkMH:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"CheckCircle\",description:undefined,hidden:undefined,title:\"Icon\"},AoWx0Fyus:{defaultValue:'var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)) /* {\"name\":\"Heading\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(FramertDERwoxqv,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertDERwoxqv\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"230\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"mzKpE2hfI\\\":\\\"title\\\",\\\"gvOGYrGGc\\\":\\\"color\\\",\\\"TyFhmBkMH\\\":\\\"icon\\\",\\\"AoWx0Fyus\\\":\\\"iconColor\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tDERwoxqv.map", "// Generated by Framer (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AdvancedNumberCounter from\"https://framerusercontent.com/modules/41anhJfNDl1kc3TII3Aq/uZtHNxyjFFN4GSa3evbz/Advanced_Number_Counter.js\";import FadeIt from\"https://framerusercontent.com/modules/A0RMhtJ49NPlOntYXJOl/Abo0zez5rTgIsVXSoPHU/FadeIt.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import ElementsBadge from\"https://framerusercontent.com/modules/JJLZDRUyeqLttnV76TZN/Gyi1hdL19qAJeJWnQKb0/F5zSwZv4k.js\";import ButtonsButton from\"https://framerusercontent.com/modules/k1Q4QkHXeT1cKf90Q6KU/xzLmORZqKkEkP8PcLDdl/h9up4_pFN.js\";import ElementsFeature from\"https://framerusercontent.com/modules/oNqVel6jWFMQ3XOAZVrp/rEWaACvbB15wE3s3QjJG/tDERwoxqv.js\";const ElementsBadgeFonts=getFonts(ElementsBadge);const AdvancedNumberCounterFonts=getFonts(AdvancedNumberCounter);const ButtonsButtonFonts=getFonts(ButtonsButton);const ElementsFeatureFonts=getFonts(ElementsFeature);const VideoFonts=getFonts(Video);const FadeItFonts=getFonts(FadeIt);const cycleOrder=[\"dspS3xlx8\",\"sZMU0kDxl\",\"miyN0DMhG\",\"m7BN_LB8h\"];const serializationHash=\"framer-ZW5fF\";const variantClassNames={dspS3xlx8:\"framer-v-1bgi5c5\",m7BN_LB8h:\"framer-v-1lknejl\",miyN0DMhG:\"framer-v-146d2dl\",sZMU0kDxl:\"framer-v-dlj49q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Custom\":\"miyN0DMhG\",\"Mobile Custom\":\"m7BN_LB8h\",Desktop:\"dspS3xlx8\",Mobile:\"sZMU0kDxl\"};const getProps=({endNumber,height,id,label,spotsLeft,startNumber,width,...props})=>{return{...props,fmRLPX2Nk:label??props.fmRLPX2Nk??\"One request at a time. Pause or cancel anytime.\",iSYhn5PdV:spotsLeft??props.iSYhn5PdV??\"2 spots left\",IXYLBigdk:startNumber??props.IXYLBigdk??2999,variant:humanReadableVariantMap[props.variant]??props.variant??\"dspS3xlx8\",wYbL98Ds0:endNumber??props.wYbL98Ds0??2999};};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,IXYLBigdk,wYbL98Ds0,iSYhn5PdV,fmRLPX2Nk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dspS3xlx8\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"miyN0DMhG\",\"m7BN_LB8h\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"miyN0DMhG\",\"m7BN_LB8h\"].includes(baseVariant))return true;return false;};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-1bgi5c5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"dspS3xlx8\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(13, 13, 13)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},...addPropertyOverrides({m7BN_LB8h:{\"data-framer-name\":\"Mobile Custom\"},miyN0DMhG:{\"data-framer-name\":\"Desktop Custom\"},sZMU0kDxl:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10b6hni\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"EOzoQ5HoQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rpi4hc\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"CKKYHpX4y\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-703)/2+0+0)+0+0+0+0,...addPropertyOverrides({m7BN_LB8h:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||540)-128-736)/2+0+0)+0+0+0+0},miyN0DMhG:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-791)/2+0+0)+0+0+0+0},sZMU0kDxl:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||631)-128-781)/2+0+0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hzftqp-container\",layoutDependency:layoutDependency,layoutId:\"c6badh4oK-container\",nodeId:\"c6badh4oK\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(ElementsBadge,{crA6wBj3k:true,dI2V912ba:\"rgba(13, 13, 13, 0.6)\",height:\"100%\",id:\"c6badh4oK\",kdP_WncMn:false,layoutId:\"c6badh4oK\",nQWOpC8zj:8,variant:\"DW9fRBOfw\",width:\"100%\",YbsaeEF4R:iSYhn5PdV})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6ilv6z-container\",\"data-framer-name\":\"Number Counter (Old)\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"udccPAshI-container\",name:\"Number Counter (Old)\",nodeId:\"udccPAshI\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(AdvancedNumberCounter,{color:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",countDirection:\"down\",decimalSeparator:\"comma\",duration:.25,endNumber:wYbL98Ds0,font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},fontSize:48,height:\"100%\",id:\"udccPAshI\",layoutId:\"udccPAshI\",letterSpacing:-.4,lineHeight:1.2,name:\"Number Counter (Old)\",prefix:\"$\",prefixAlignment:\"bottom\",prefixFontSize:48,startNumber:IXYLBigdk,suffix:\"/month\",suffixAlignment:\"bottom\",suffixFontSize:24,width:\"100%\",...addPropertyOverrides({sZMU0kDxl:{fontSize:40}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"One request at a time. Pause or cancel anytime.\"})}),className:\"framer-yxxlo\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"QL20ndO6y\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fmRLPX2Nk,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({m7BN_LB8h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"One request at a time. Pause or cancel anytime.\"})})},sZMU0kDxl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"One request at a time. Pause or cancel anytime.\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Custom Plan\"})}),className:\"framer-1o3748t\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"VoVrngoMG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({m7BN_LB8h:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Custom Plan\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19wl6s6\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jV7OPer2Z\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fyr8pk\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"bXqT8votR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-703)/2+0+0)+0+430+0+0+0,...addPropertyOverrides({m7BN_LB8h:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||540)-128-736)/2+0+0)+0+463+0+0+0},miyN0DMhG:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-791)/2+0+0)+0+518+0+0+0},sZMU0kDxl:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||631)-128-781)/2+0+0)+0+423+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m0hoeo-container\",layoutDependency:layoutDependency,layoutId:\"aDDA5Rn_n-container\",nodeId:\"aDDA5Rn_n\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"aDDA5Rn_n\",kTynE2FQc:\"regular\",layoutId:\"aDDA5Rn_n\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"https://buy.stripe.com/3cs2bXd27fjEgO46ox\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",style:{width:\"100%\"},tipS0P7cJ:\"Subscribe\",Ud3HdUmNm:true,variant:\"q2rCK5lhb\",width:\"100%\",...addPropertyOverrides({m7BN_LB8h:{odb0bWURU:\"cal.com/calicastle/intro-call\",tipS0P7cJ:\"Contact Us\",variant:\"ke7By49HW\"},miyN0DMhG:{odb0bWURU:\"cal.com/calicastle/intro-call\",tipS0P7cJ:\"Contact Us\"},sZMU0kDxl:{variant:\"ke7By49HW\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,width:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 1px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-703)/2+0+0)+0+430+0+0+0,...addPropertyOverrides({sZMU0kDxl:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+64+(((componentViewport?.height||631)-128-781)/2+0+0)+0+423+0+0+0+85}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rf1xjl-container\",layoutDependency:layoutDependency,layoutId:\"FXkiTGzys-container\",nodeId:\"FXkiTGzys\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"FXkiTGzys\",kTynE2FQc:\"regular\",layoutId:\"FXkiTGzys\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"cal.com/calicastle/intro-call\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",style:{width:\"100%\"},tipS0P7cJ:\"Book a call\",Ud3HdUmNm:true,variant:\"fyaazp7pn\",width:\"100%\",...addPropertyOverrides({sZMU0kDxl:{variant:\"QUTH27_ce\"}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vicka8\",\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"g3hA6RrNn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-703)/2+0+0)+0+539+0+0,...addPropertyOverrides({m7BN_LB8h:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||540)-128-736)/2+0+0)+0+572+0+0},miyN0DMhG:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-791)/2+0+0)+0+627+0+0},sZMU0kDxl:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||631)-128-781)/2+0+0)+0+617+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bvz3up-container\",layoutDependency:layoutDependency,layoutId:\"CH3YLL33Z-container\",nodeId:\"CH3YLL33Z\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(ElementsFeature,{AoWx0Fyus:\"rgba(251, 250, 252, 0.85)\",gvOGYrGGc:\"rgba(251, 250, 252, 0.85)\",height:\"100%\",id:\"CH3YLL33Z\",layoutId:\"CH3YLL33Z\",mzKpE2hfI:\"Unlimited design requests\",TyFhmBkMH:\"Stack\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-703)/2+0+0)+0+539+0+36,...addPropertyOverrides({m7BN_LB8h:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||540)-128-736)/2+0+0)+0+572+0+36},miyN0DMhG:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-791)/2+0+0)+0+627+0+36},sZMU0kDxl:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||631)-128-781)/2+0+0)+0+617+0+36}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9exg8a-container\",layoutDependency:layoutDependency,layoutId:\"ilVMWhEJZ-container\",nodeId:\"ilVMWhEJZ\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(ElementsFeature,{AoWx0Fyus:\"rgba(251, 250, 252, 0.85)\",gvOGYrGGc:\"rgba(251, 250, 252, 0.85)\",height:\"100%\",id:\"ilVMWhEJZ\",layoutId:\"ilVMWhEJZ\",mzKpE2hfI:\"One request at a time\",TyFhmBkMH:\"StarHalf\",width:\"100%\",...addPropertyOverrides({m7BN_LB8h:{mzKpE2hfI:\"Many requests at a time\",TyFhmBkMH:\"Star\"},miyN0DMhG:{mzKpE2hfI:\"Many requests at a time\",TyFhmBkMH:\"Star\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-703)/2+0+0)+0+539+0+72,...addPropertyOverrides({m7BN_LB8h:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||540)-128-736)/2+0+0)+0+572+0+72},miyN0DMhG:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-791)/2+0+0)+0+627+0+72},sZMU0kDxl:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||631)-128-781)/2+0+0)+0+617+0+72}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u96e5-container\",layoutDependency:layoutDependency,layoutId:\"Jol6f6AtE-container\",nodeId:\"Jol6f6AtE\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(ElementsFeature,{AoWx0Fyus:\"rgba(251, 250, 252, 0.85)\",gvOGYrGGc:\"rgba(251, 250, 252, 0.85)\",height:\"100%\",id:\"Jol6f6AtE\",layoutId:\"Jol6f6AtE\",mzKpE2hfI:\"48 hours delivery\",TyFhmBkMH:\"Clock\",width:\"100%\",...addPropertyOverrides({m7BN_LB8h:{mzKpE2hfI:\"24 hours delivery or quicker\"},miyN0DMhG:{mzKpE2hfI:\"24 hours delivery or quicker\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-703)/2+0+0)+0+539+0+108,...addPropertyOverrides({m7BN_LB8h:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||540)-128-736)/2+0+0)+0+572+0+108},miyN0DMhG:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-791)/2+0+0)+0+627+0+108},sZMU0kDxl:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||631)-128-781)/2+0+0)+0+617+0+108}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-w3fo1z-container\",layoutDependency:layoutDependency,layoutId:\"LMFnxdV4x-container\",nodeId:\"LMFnxdV4x\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(ElementsFeature,{AoWx0Fyus:\"rgba(251, 250, 252, 0.85)\",gvOGYrGGc:\"rgba(251, 250, 252, 0.85)\",height:\"100%\",id:\"LMFnxdV4x\",layoutId:\"LMFnxdV4x\",mzKpE2hfI:\"Unlimited revisions\",TyFhmBkMH:\"Stamp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-703)/2+0+0)+0+539+0+144,...addPropertyOverrides({m7BN_LB8h:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||540)-128-736)/2+0+0)+0+572+0+144},miyN0DMhG:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||577)-128-791)/2+0+0)+0+627+0+144},sZMU0kDxl:{y:(componentViewport?.y||0)+64+(((componentViewport?.height||631)-128-781)/2+0+0)+0+617+0+144}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-55gj8q-container\",layoutDependency:layoutDependency,layoutId:\"OYoCoifuG-container\",nodeId:\"OYoCoifuG\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(ElementsFeature,{AoWx0Fyus:\"rgba(251, 250, 252, 0.85)\",gvOGYrGGc:\"rgba(251, 250, 252, 0.85)\",height:\"100%\",id:\"OYoCoifuG\",layoutId:\"OYoCoifuG\",mzKpE2hfI:\"1 brand at a time\",TyFhmBkMH:\"Rainbow\",width:\"100%\",...addPropertyOverrides({m7BN_LB8h:{mzKpE2hfI:\"Unlimited brands\"},miyN0DMhG:{mzKpE2hfI:\"Unlimited brands\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hbiwrq-container\",\"data-framer-name\":\"Video\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"c1Djri_z8-container\",name:\"Video\",nodeId:\"c1Djri_z8\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(FadeIt,{bottomLeft:0,bottomRight:0,gradientDirection:\"to top\",height:\"100%\",id:\"c1Djri_z8\",image:addImageAlt({src:\"https://framerusercontent.com/images/7pYW9WJIR3c9T32SVSHNggw0.jpg\",srcSet:\"https://framerusercontent.com/images/7pYW9WJIR3c9T32SVSHNggw0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7pYW9WJIR3c9T32SVSHNggw0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7pYW9WJIR3c9T32SVSHNggw0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7pYW9WJIR3c9T32SVSHNggw0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/7pYW9WJIR3c9T32SVSHNggw0.jpg 6000w\"},\"\"),isMixed:false,layoutId:\"c1Djri_z8\",maskEasing:\"ease-in\",name:\"Video\",radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,type:\"component\",width:\"100%\",...addPropertyOverrides({m7BN_LB8h:{gradientDirection:\"to bottom\"},miyN0DMhG:{gradientDirection:\"to bottom\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-78v2pd-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zDTtxAZFa-container\",nodeId:\"zDTtxAZFa\",rendersWithMotion:true,scopeId:\"LhzcKnvdP\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"zDTtxAZFa\",isMixedBorderRadius:false,layoutId:\"zDTtxAZFa\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://cdn.neuship.co/neuship_sphere.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZW5fF.framer-rzmqn, .framer-ZW5fF .framer-rzmqn { display: block; }\",\".framer-ZW5fF.framer-1bgi5c5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 450px; overflow: hidden; padding: 64px 32px 64px 32px; position: relative; width: 450px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ZW5fF .framer-10b6hni { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-ZW5fF .framer-1rpi4hc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZW5fF .framer-hzftqp-container, .framer-ZW5fF .framer-6ilv6z-container, .framer-ZW5fF .framer-bvz3up-container, .framer-ZW5fF .framer-9exg8a-container, .framer-ZW5fF .framer-u96e5-container, .framer-ZW5fF .framer-w3fo1z-container, .framer-ZW5fF .framer-55gj8q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZW5fF .framer-yxxlo, .framer-ZW5fF .framer-1o3748t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZW5fF .framer-19wl6s6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZW5fF .framer-fyr8pk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZW5fF .framer-1m0hoeo-container, .framer-ZW5fF .framer-1rf1xjl-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-ZW5fF .framer-1vicka8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-ZW5fF .framer-1hbiwrq-container { bottom: -30px; flex: none; height: 684px; left: 0px; position: absolute; width: 450px; z-index: 0; }\",\".framer-ZW5fF .framer-78v2pd-container { height: 727px; position: relative; width: 1144px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZW5fF.framer-1bgi5c5, .framer-ZW5fF .framer-10b6hni, .framer-ZW5fF .framer-1rpi4hc, .framer-ZW5fF .framer-19wl6s6, .framer-ZW5fF .framer-fyr8pk, .framer-ZW5fF .framer-1vicka8 { gap: 0px; } .framer-ZW5fF.framer-1bgi5c5 > *, .framer-ZW5fF .framer-10b6hni > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-ZW5fF.framer-1bgi5c5 > :first-child, .framer-ZW5fF .framer-10b6hni > :first-child, .framer-ZW5fF .framer-1rpi4hc > :first-child, .framer-ZW5fF .framer-19wl6s6 > :first-child, .framer-ZW5fF .framer-1vicka8 > :first-child { margin-top: 0px; } .framer-ZW5fF.framer-1bgi5c5 > :last-child, .framer-ZW5fF .framer-10b6hni > :last-child, .framer-ZW5fF .framer-1rpi4hc > :last-child, .framer-ZW5fF .framer-19wl6s6 > :last-child, .framer-ZW5fF .framer-1vicka8 > :last-child { margin-bottom: 0px; } .framer-ZW5fF .framer-1rpi4hc > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZW5fF .framer-19wl6s6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ZW5fF .framer-fyr8pk > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-ZW5fF .framer-fyr8pk > :first-child { margin-left: 0px; } .framer-ZW5fF .framer-fyr8pk > :last-child { margin-right: 0px; } .framer-ZW5fF .framer-1vicka8 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-ZW5fF.framer-v-dlj49q.framer-1bgi5c5 { align-content: center; align-items: center; max-width: unset; width: 360px; }\",\".framer-ZW5fF.framer-v-dlj49q .framer-fyr8pk { flex-direction: column; }\",\".framer-ZW5fF.framer-v-dlj49q .framer-1m0hoeo-container, .framer-ZW5fF.framer-v-dlj49q .framer-1rf1xjl-container { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZW5fF.framer-v-dlj49q .framer-fyr8pk { gap: 0px; } .framer-ZW5fF.framer-v-dlj49q .framer-fyr8pk > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ZW5fF.framer-v-dlj49q .framer-fyr8pk > :first-child { margin-top: 0px; } .framer-ZW5fF.framer-v-dlj49q .framer-fyr8pk > :last-child { margin-bottom: 0px; } }\",\".framer-ZW5fF.framer-v-146d2dl .framer-10b6hni, .framer-ZW5fF.framer-v-146d2dl .framer-hzftqp-container, .framer-ZW5fF.framer-v-1lknejl .framer-10b6hni, .framer-ZW5fF.framer-v-1lknejl .framer-hzftqp-container { order: 0; }\",\".framer-ZW5fF.framer-v-146d2dl .framer-yxxlo, .framer-ZW5fF.framer-v-1lknejl .framer-yxxlo { order: 3; }\",\".framer-ZW5fF.framer-v-146d2dl .framer-1o3748t, .framer-ZW5fF.framer-v-1lknejl .framer-1o3748t { order: 1; }\",\".framer-ZW5fF.framer-v-146d2dl .framer-1hbiwrq-container, .framer-ZW5fF.framer-v-1lknejl .framer-1hbiwrq-container { bottom: -99px; height: 734px; left: -33px; order: 1; width: 483px; }\",'.framer-ZW5fF[data-border=\"true\"]::after, .framer-ZW5fF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 577\n * @framerIntrinsicWidth 450\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"450px\",null,null]},\"sZMU0kDxl\":{\"layout\":[\"fixed\",\"auto\"]},\"miyN0DMhG\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"450px\",null,null]},\"m7BN_LB8h\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"450px\",null,null]}}}\n * @framerVariables {\"IXYLBigdk\":\"startNumber\",\"wYbL98Ds0\":\"endNumber\",\"iSYhn5PdV\":\"spotsLeft\",\"fmRLPX2Nk\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLhzcKnvdP=withCSS(Component,css,\"framer-ZW5fF\");export default FramerLhzcKnvdP;FramerLhzcKnvdP.displayName=\"Elements/Pricing Card\";FramerLhzcKnvdP.defaultProps={height:577,width:450};addPropertyControls(FramerLhzcKnvdP,{variant:{options:[\"dspS3xlx8\",\"sZMU0kDxl\",\"miyN0DMhG\",\"m7BN_LB8h\"],optionTitles:[\"Desktop\",\"Mobile\",\"Desktop Custom\",\"Mobile Custom\"],title:\"Variant\",type:ControlType.Enum},IXYLBigdk:{defaultValue:2999,displayStepper:true,title:\"Start Number\",type:ControlType.Number},wYbL98Ds0:{defaultValue:2999,displayStepper:true,title:\"End Number\",type:ControlType.Number},iSYhn5PdV:{defaultValue:\"2 spots left\",displayTextArea:false,title:\"Spots Left\",type:ControlType.String},fmRLPX2Nk:{defaultValue:\"One request at a time. Pause or cancel anytime.\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(FramerLhzcKnvdP,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...ElementsBadgeFonts,...AdvancedNumberCounterFonts,...ButtonsButtonFonts,...ElementsFeatureFonts,...VideoFonts,...FadeItFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLhzcKnvdP\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"IXYLBigdk\\\":\\\"startNumber\\\",\\\"wYbL98Ds0\\\":\\\"endNumber\\\",\\\"iSYhn5PdV\\\":\\\"spotsLeft\\\",\\\"fmRLPX2Nk\\\":\\\"label\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"450px\\\",null,null]},\\\"sZMU0kDxl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"miyN0DMhG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"450px\\\",null,null]},\\\"m7BN_LB8h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"450px\\\",null,null]}}}\",\"framerIntrinsicWidth\":\"450\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"577\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LhzcKnvdP.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";// Easing functions\nconst easings={linear:t=>t,easeIn:t=>t*t,easeInOut:t=>t<.5?2*t*t:-1+(4-2*t)*t,exponential:t=>t===0?0:Math.pow(1024,t-1)};/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Gradientease(props){const{gradientDirection,cornerRadius,easing,grayScale}=props;// Generate gradient stops\nconst generateGradientStops=(easingFunc,numberOfStops=30)=>{return Array.from({length:numberOfStops},(_,i)=>{const t=i/(numberOfStops-1);const easedT=easingFunc(t);return`hsla(0, 0%, ${grayScale}%, ${easedT}) ${t*100}%`;}).join(\", \");};const gradient=`linear-gradient(${gradientDirection}, ${generateGradientStops(easings[easing])})`;const style={width:\"100%\",height:\"100%\",background:gradient,borderRadius:cornerRadius};return /*#__PURE__*/_jsx(motion.div,{style:style});}Gradientease.defaultProps={gradientDirection:\"to bottom\",cornerRadius:0,easing:\"easeInOut\",grayScale:0};addPropertyControls(Gradientease,{gradientDirection:{type:ControlType.Enum,title:\"Direction\",options:[\"to left\",\"to right\",\"to top\",\"to bottom\"],optionTitles:[\"Left\",\"Right\",\"Up\",\"Down\"],displaySegmentedControl:true,optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],defaultValue:\"to bottom\"},cornerRadius:{type:ControlType.Number,title:\"Corner Radius\",min:0,max:100,step:1,unit:\"px\"},easing:{type:ControlType.Enum,title:\"Easing\",options:[\"linear\",\"easeIn\",\"easeInOut\",\"exponential\"],optionTitles:[\"Linear\",\"Ease In\",\"Ease In-Out\",\"Exponential\"],defaultValue:\"easeInOut\"},grayScale:{type:ControlType.Number,title:\"Gray Scale\",min:0,max:100,defaultValue:0,unit:\"%\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Gradientease\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Gradient_ease.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-lZW8G .framer-styles-preset-zy3tiq:not(.rich-text-wrapper), .framer-lZW8G .framer-styles-preset-zy3tiq.rich-text-wrapper a { --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-a0b108d1-905f-48b6-9b39-89b275654751, #fcfcfa) /* {\"name\":\"Heading\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, #999999); --framer-link-text-decoration: none; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }'];export const className=\"framer-lZW8G\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b6cf623)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Gradientease from\"https://framerusercontent.com/modules/8TtjecrrZM6688kaKB5n/UqCgMDXzAldaZoDF64gD/Gradient_ease.js\";import FadeIt from\"https://framerusercontent.com/modules/A0RMhtJ49NPlOntYXJOl/Abo0zez5rTgIsVXSoPHU/FadeIt.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5Q6pNNxJQylEx0MA6udr/2tmS2Ck0R3xzk1evn4fS/oHHGnuSU0.js\";import ElementsBadge from\"https://framerusercontent.com/modules/JJLZDRUyeqLttnV76TZN/Gyi1hdL19qAJeJWnQKb0/F5zSwZv4k.js\";import ButtonsButton from\"https://framerusercontent.com/modules/k1Q4QkHXeT1cKf90Q6KU/xzLmORZqKkEkP8PcLDdl/h9up4_pFN.js\";const VideoFonts=getFonts(Video);const FadeItFonts=getFonts(FadeIt);const ElementsBadgeFonts=getFonts(ElementsBadge);const ButtonsButtonFonts=getFonts(ButtonsButton);const GradienteaseFonts=getFonts(Gradientease);const cycleOrder=[\"xaQambtGJ\",\"dQ3SCtTDl\"];const serializationHash=\"framer-vdaCJ\";const variantClassNames={dQ3SCtTDl:\"framer-v-15tavs\",xaQambtGJ:\"framer-v-1jr3jbr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"xaQambtGJ\",Phone:\"dQ3SCtTDl\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xaQambtGJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xaQambtGJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1jr3jbr\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xaQambtGJ\",ref:ref??ref1,style:{backgroundColor:\"var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10))\",...style},...addPropertyOverrides({dQ3SCtTDl:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3w2q29-container\",\"data-framer-name\":\"Fade\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xukbbsHoI-container\",name:\"Fade\",nodeId:\"xukbbsHoI\",rendersWithMotion:true,scopeId:\"m5NX1jlU4\",children:/*#__PURE__*/_jsx(FadeIt,{bottomLeft:0,bottomRight:0,gradientDirection:\"to top\",height:\"100%\",id:\"xukbbsHoI\",isMixed:false,layoutId:\"xukbbsHoI\",maskEasing:\"ease-in\",name:\"Fade\",radius:0,style:{height:\"100%\",width:\"100%\"},topLeft:0,topRight:0,type:\"component\",width:\"100%\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kmo8z-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Hd1tA5be7-container\",nodeId:\"Hd1tA5be7\",rendersWithMotion:true,scopeId:\"m5NX1jlU4\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Hd1tA5be7\",isMixedBorderRadius:false,layoutId:\"Hd1tA5be7\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://cdn.neuship.co/neuship_footer.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-siy6us\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"c06kkZ4I6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+64+(((componentViewport?.height||622)-128-(Math.max(0,((componentViewport?.height||622)-128-0)/1)*1+0))/2+0+0)+0+((Math.max(0,((componentViewport?.height||622)-128-0)/1)*1-0-433.79999999999995)/2+0+0),...addPropertyOverrides({dQ3SCtTDl:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ukjnfa-container\",layoutDependency:layoutDependency,layoutId:\"hrzq4Z6L6-container\",nodeId:\"hrzq4Z6L6\",rendersWithMotion:true,scopeId:\"m5NX1jlU4\",children:/*#__PURE__*/_jsx(ElementsBadge,{crA6wBj3k:true,dI2V912ba:\"rgba(13, 13, 13, 0.4)\",height:\"100%\",id:\"hrzq4Z6L6\",kdP_WncMn:false,layoutId:\"hrzq4Z6L6\",nQWOpC8zj:8,variant:\"aRB94otF7\",width:\"100%\",YbsaeEF4R:\"Only 2 spots left.\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lq4yz3\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"C3uusdkcm\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Ready to ship gold?\"})}),className:\"framer-pe4fsh\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"wqkdyzZAo\",style:{\"--extracted-gdpscs\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dQ3SCtTDl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"76px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Ready to ship gold?\"})}),viewBox:\"0 0 639.8 96\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"Let's make something wonderful, together.\"})}),className:\"framer-6t15g5\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"VbG3X7jRe\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dQ3SCtTDl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:\"Let's make something wonderful, together.\"})}),viewBox:\"0 0 335.54 25\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7nnfjm\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"bILcwirSu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,y:(componentViewport?.y||0)+64+(((componentViewport?.height||622)-128-(Math.max(0,((componentViewport?.height||622)-128-0)/1)*1+0))/2+0+0)+0+((Math.max(0,((componentViewport?.height||622)-128-0)/1)*1-0-433.79999999999995)/2+268.79999999999995+96)+0,...addPropertyOverrides({dQ3SCtTDl:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q96x4p-container\",layoutDependency:layoutDependency,layoutId:\"Mt4qPFoLm-container\",nodeId:\"Mt4qPFoLm\",rendersWithMotion:true,scopeId:\"m5NX1jlU4\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"Mt4qPFoLm\",kTynE2FQc:\"regular\",layoutId:\"Mt4qPFoLm\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"https://cal.com/calicastle/neuship-intro-call\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Book a call\",Ud3HdUmNm:true,variant:\"q2rCK5lhb\",width:\"100%\",...addPropertyOverrides({dQ3SCtTDl:{variant:\"ke7By49HW\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":vzqjjoVps\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vzqjjoVps\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,y:(componentViewport?.y||0)+64+(((componentViewport?.height||622)-128-(Math.max(0,((componentViewport?.height||622)-128-0)/1)*1+0))/2+0+0)+0+((Math.max(0,((componentViewport?.height||622)-128-0)/1)*1-0-433.79999999999995)/2+268.79999999999995+96)+0,...addPropertyOverrides({dQ3SCtTDl:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bhsq2a-container\",layoutDependency:layoutDependency,layoutId:\"uov_ktu0z-container\",nodeId:\"uov_ktu0z\",rendersWithMotion:true,scopeId:\"m5NX1jlU4\",children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"uov_ktu0z\",kTynE2FQc:\"regular\",layoutId:\"uov_ktu0z\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:resolvedLinks[0],QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"See plans\",Ud3HdUmNm:false,variant:\"fyaazp7pn\",width:\"100%\",...addPropertyOverrides({dQ3SCtTDl:{odb0bWURU:resolvedLinks[1],variant:\"QUTH27_ce\"}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13b04j2\",\"data-framer-name\":\"Footer/Copyright\",layoutDependency:layoutDependency,layoutId:\"Su7AxNeOJ\",transformTemplate:transformTemplate1,...addPropertyOverrides({dQ3SCtTDl:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k3duib\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"wKNITQMtL\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153)))\"},children:[\"\\xa9\uFE0F\",/*#__PURE__*/_jsx(Link,{href:\"https://zolplay.com\",motionChild:true,nodeId:\"nieZKNCtH\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-zy3tiq\",\"data-styles-preset\":\"oHHGnuSU0\",children:\" 2025\"})}),\" Neu Ship Limited.\"]})}),className:\"framer-yzc0zy\",fonts:[\"GF;DM Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"nieZKNCtH\",style:{\"--extracted-r6o4lv\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4htux5-container\",\"data-framer-name\":\"Gradient\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mowGuTN4J-container\",name:\"Gradient\",nodeId:\"mowGuTN4J\",rendersWithMotion:true,scopeId:\"m5NX1jlU4\",children:/*#__PURE__*/_jsx(Gradientease,{cornerRadius:0,easing:\"linear\",gradientDirection:\"to bottom\",grayScale:0,height:\"100%\",id:\"mowGuTN4J\",layoutId:\"mowGuTN4J\",name:\"Gradient\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vdaCJ.framer-1os0v0c, .framer-vdaCJ .framer-1os0v0c { display: block; }\",\".framer-vdaCJ.framer-1jr3jbr { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: 622px; justify-content: center; overflow: hidden; padding: 64px; position: relative; width: 1200px; }\",\".framer-vdaCJ .framer-3w2q29-container { bottom: -100px; flex: none; height: 100%; left: 0px; position: absolute; right: 0px; z-index: 0; }\",\".framer-vdaCJ .framer-1kmo8z-container { aspect-ratio: 1.7841845140032948 / 1; height: var(--framer-aspect-ratio-supported, 1435px); position: relative; width: 2560px; }\",\".framer-vdaCJ .framer-siy6us { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vdaCJ .framer-ukjnfa-container, .framer-vdaCJ .framer-q96x4p-container, .framer-vdaCJ .framer-1bhsq2a-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-vdaCJ .framer-lq4yz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vdaCJ .framer-pe4fsh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vdaCJ .framer-6t15g5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vdaCJ .framer-7nnfjm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vdaCJ .framer-13b04j2 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 32px 64px 32px 64px; position: absolute; width: 100%; z-index: 1; }\",\".framer-vdaCJ .framer-k3duib { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-vdaCJ .framer-yzc0zy { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-vdaCJ .framer-4htux5-container { bottom: 0px; flex: none; height: 26%; left: calc(50.00000000000002% - 100% / 2); position: absolute; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vdaCJ.framer-1jr3jbr, .framer-vdaCJ .framer-siy6us, .framer-vdaCJ .framer-lq4yz3, .framer-vdaCJ .framer-7nnfjm, .framer-vdaCJ .framer-13b04j2, .framer-vdaCJ .framer-k3duib { gap: 0px; } .framer-vdaCJ.framer-1jr3jbr > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-vdaCJ.framer-1jr3jbr > :first-child, .framer-vdaCJ .framer-siy6us > :first-child, .framer-vdaCJ .framer-13b04j2 > :first-child { margin-top: 0px; } .framer-vdaCJ.framer-1jr3jbr > :last-child, .framer-vdaCJ .framer-siy6us > :last-child, .framer-vdaCJ .framer-13b04j2 > :last-child { margin-bottom: 0px; } .framer-vdaCJ .framer-siy6us > *, .framer-vdaCJ .framer-13b04j2 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vdaCJ .framer-lq4yz3 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-vdaCJ .framer-lq4yz3 > :first-child, .framer-vdaCJ .framer-7nnfjm > :first-child, .framer-vdaCJ .framer-k3duib > :first-child { margin-left: 0px; } .framer-vdaCJ .framer-lq4yz3 > :last-child, .framer-vdaCJ .framer-7nnfjm > :last-child, .framer-vdaCJ .framer-k3duib > :last-child { margin-right: 0px; } .framer-vdaCJ .framer-7nnfjm > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-vdaCJ .framer-k3duib > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-vdaCJ.framer-v-15tavs.framer-1jr3jbr { gap: 32px; height: min-content; padding: 64px 24px 0px 24px; width: 370px; }\",\".framer-vdaCJ.framer-v-15tavs .framer-siy6us { flex: none; gap: 24px; height: min-content; }\",\".framer-vdaCJ.framer-v-15tavs .framer-lq4yz3 { width: 100%; }\",\".framer-vdaCJ.framer-v-15tavs .framer-pe4fsh { flex: 1 0 0px; width: 1px; }\",\".framer-vdaCJ.framer-v-15tavs .framer-6t15g5 { white-space: pre; }\",\".framer-vdaCJ.framer-v-15tavs .framer-7nnfjm { gap: 16px; width: 100%; }\",\".framer-vdaCJ.framer-v-15tavs .framer-13b04j2 { bottom: unset; left: unset; padding: 24px; position: relative; }\",\".framer-vdaCJ.framer-v-15tavs .framer-k3duib { flex-direction: column; gap: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vdaCJ.framer-v-15tavs.framer-1jr3jbr, .framer-vdaCJ.framer-v-15tavs .framer-siy6us, .framer-vdaCJ.framer-v-15tavs .framer-7nnfjm, .framer-vdaCJ.framer-v-15tavs .framer-k3duib { gap: 0px; } .framer-vdaCJ.framer-v-15tavs.framer-1jr3jbr > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vdaCJ.framer-v-15tavs.framer-1jr3jbr > :first-child, .framer-vdaCJ.framer-v-15tavs .framer-siy6us > :first-child, .framer-vdaCJ.framer-v-15tavs .framer-k3duib > :first-child { margin-top: 0px; } .framer-vdaCJ.framer-v-15tavs.framer-1jr3jbr > :last-child, .framer-vdaCJ.framer-v-15tavs .framer-siy6us > :last-child, .framer-vdaCJ.framer-v-15tavs .framer-k3duib > :last-child { margin-bottom: 0px; } .framer-vdaCJ.framer-v-15tavs .framer-siy6us > *, .framer-vdaCJ.framer-v-15tavs .framer-k3duib > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-vdaCJ.framer-v-15tavs .framer-7nnfjm > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-vdaCJ.framer-v-15tavs .framer-7nnfjm > :first-child { margin-left: 0px; } .framer-vdaCJ.framer-v-15tavs .framer-7nnfjm > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 622\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dQ3SCtTDl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerm5NX1jlU4=withCSS(Component,css,\"framer-vdaCJ\");export default Framerm5NX1jlU4;Framerm5NX1jlU4.displayName=\"Footer/Footer\";Framerm5NX1jlU4.defaultProps={height:622,width:1200};addPropertyControls(Framerm5NX1jlU4,{variant:{options:[\"xaQambtGJ\",\"dQ3SCtTDl\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerm5NX1jlU4,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"}]},...VideoFonts,...FadeItFonts,...ElementsBadgeFonts,...ButtonsButtonFonts,...GradienteaseFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerm5NX1jlU4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dQ3SCtTDl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"622\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./m5NX1jlU4.map", "// Generated by Framer (e074804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"WwcXOU5nG\"];const serializationHash=\"framer-XfSqU\";const variantClassNames={WwcXOU5nG:\"framer-v-rns1tw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,name1,title,width,...props})=>{var _ref,_ref1;return{...props,wKmwyMQI0:(_ref=title!==null&&title!==void 0?title:props.wKmwyMQI0)!==null&&_ref!==void 0?_ref:\"Logos\",ZUyAXbAM4:(_ref1=name1!==null&&name1!==void 0?name1:props.ZUyAXbAM4)!==null&&_ref1!==void 0?_ref1:\"MagicWand\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,wKmwyMQI0,ZUyAXbAM4,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WwcXOU5nG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rns1tw\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WwcXOU5nG\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, rgb(13, 13, 13))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j3jtbh-container\",layoutDependency:layoutDependency,layoutId:\"eNvZOg6bP-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",height:\"100%\",iconSearch:\"House\",iconSelection:ZUyAXbAM4,id:\"eNvZOg6bP\",layoutId:\"eNvZOg6bP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250)))\"},children:\"Logos\"})}),className:\"framer-7nbuno\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"HTfEb0tSo\",style:{\"--extracted-gdpscs\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:wKmwyMQI0,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XfSqU.framer-qxrdxb, .framer-XfSqU .framer-qxrdxb { display: block; }\",\".framer-XfSqU.framer-rns1tw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: auto; will-change: var(--framer-will-change-override, transform); }\",\".framer-XfSqU .framer-j3jtbh-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-XfSqU .framer-7nbuno { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XfSqU.framer-rns1tw { gap: 0px; } .framer-XfSqU.framer-rns1tw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XfSqU.framer-rns1tw > :first-child { margin-left: 0px; } .framer-XfSqU.framer-rns1tw > :last-child { margin-right: 0px; } }\",'.framer-XfSqU[data-border=\"true\"]::after, .framer-XfSqU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 161\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"wKmwyMQI0\":\"title\",\"ZUyAXbAM4\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framertz2RGqDgb=withCSS(Component,css,\"framer-XfSqU\");export default Framertz2RGqDgb;Framertz2RGqDgb.displayName=\"Elements/Category\";Framertz2RGqDgb.defaultProps={height:78,width:161};addPropertyControls(Framertz2RGqDgb,{wKmwyMQI0:{defaultValue:\"Logos\",displayTextArea:false,title:\"Title\",type:ControlType.String},ZUyAXbAM4:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"MagicWand\",description:undefined,hidden:undefined,title:\"Name\"}});addFonts(Framertz2RGqDgb,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framertz2RGqDgb\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"wKmwyMQI0\\\":\\\"title\\\",\\\"ZUyAXbAM4\\\":\\\"name1\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"78\",\"framerIntrinsicWidth\":\"161\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tz2RGqDgb.map", "// Generated by Framer (7e4cc89)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CustomScrollBar from\"https://framerusercontent.com/modules/4glTZ9FrvbfMkt2srp5I/OWKmN71HCysGLI7ekQcg/Custom_scrollbar.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import ElementsBadge from\"#framer/local/canvasComponent/F5zSwZv4k/F5zSwZv4k.js\";import ElementsFAQ from\"#framer/local/canvasComponent/FHan9TuX7/FHan9TuX7.js\";import ButtonsButton from\"#framer/local/canvasComponent/h9up4_pFN/h9up4_pFN.js\";import ElementsPricingCard from\"#framer/local/canvasComponent/LhzcKnvdP/LhzcKnvdP.js\";import FooterFooter from\"#framer/local/canvasComponent/m5NX1jlU4/m5NX1jlU4.js\";import ElementsCategory from\"#framer/local/canvasComponent/tz2RGqDgb/tz2RGqDgb.js\";import NavigationNavigation from\"#framer/local/canvasComponent/vf5tqoe0G/vf5tqoe0G.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FooterFooterFonts=getFonts(FooterFooter);const ElementsBadgeFonts=getFonts(ElementsBadge);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonsButtonFonts=getFonts(ButtonsButton);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const ElementsCategoryFonts=getFonts(ElementsCategory);const ElementsPricingCardFonts=getFonts(ElementsPricingCard);const ElementsFAQFonts=getFonts(ElementsFAQ);const ContainerWithFX=withFX(Container);const SmoothScrollFonts=getFonts(SmoothScroll);const CustomScrollBarFonts=getFonts(CustomScrollBar);const breakpoints={JXMPRkVjQ:\"(max-width: 809px)\",tp6FehdyR:\"(min-width: 1440px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1439px)\",xSFMhnjU5:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-DK6rB\";const variantClassNames={JXMPRkVjQ:\"framer-v-1n0tk8m\",tp6FehdyR:\"framer-v-1gdt437\",WQLkyLRf1:\"framer-v-72rtr7\",xSFMhnjU5:\"framer-v-1ehords\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const transition2={damping:60,delay:.1,mass:1,stiffness:320,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition3={damping:60,delay:.3,mass:1,stiffness:320,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition4={damping:60,delay:.5,mass:1,stiffness:320,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:60,delay:.7,mass:1,stiffness:320,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:60,delay:.9,mass:1,stiffness:320,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,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 (1440)\":\"tp6FehdyR\",Desktop:\"WQLkyLRf1\",Phone:\"JXMPRkVjQ\",Tablet:\"xSFMhnjU5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const elementId=useRouteElementId(\"NcRLDjO38\");const ref5=React.useRef(null);const elementId1=useRouteElementId(\"tNWWiM9f7\");const ref6=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"sH03vZiyc\");const ref7=React.useRef(null);const ref8=React.useRef(null);const elementId3=useRouteElementId(\"Zp_d2rpRg\");const elementId4=useRouteElementId(\"w6tIg5e9w\");const elementId5=useRouteElementId(\"cBz9f0JtT\");const ref9=React.useRef(null);const elementId6=useRouteElementId(\"mJeB6o98Z\");const elementId7=useRouteElementId(\"vzqjjoVps\");const ref10=React.useRef(null);const elementId8=useRouteElementId(\"eciUXGjOE\");const ref11=React.useRef(null);const elementId9=useRouteElementId(\"COsAcqurM\");const ref12=React.useRef(null);const elementId10=useRouteElementId(\"NRGvXOAZn\");const ref13=React.useRef(null);const elementId11=useRouteElementId(\"S2KL5GHnJ\");const ref14=React.useRef(null);const elementId12=useRouteElementId(\"ho_0dLFJW\");const elementId13=useRouteElementId(\"cgwUUhfuU\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(10, 10, 10); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:114,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-oiko23-container\",\"data-framer-appear-id\":\"oiko23\",initial:animation1,layoutScroll:true,nodeId:\"ouEh6gth8\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__variantAppearEffectEnabled:undefined,variant:\"fri8OpIN6\"},xSFMhnjU5:{__framer__variantAppearEffectEnabled:undefined,variant:\"fri8OpIN6\"}},children:/*#__PURE__*/_jsx(NavigationNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref1,target:\"Gxmmznmp6\"},{offset:150,ref:ref2,target:\"j3ExP_Bk5\"},{offset:150,ref:ref3,target:\"otKFPO4SY\"},{offset:-150,ref:ref4,target:\"xtA9ZIlcg\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"ouEh6gth8\",layoutId:\"ouEh6gth8\",style:{width:\"100%\"},variant:\"xtA9ZIlcg\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oyybpj-container\",layoutScroll:true,nodeId:\"EERYScDMo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"dQ3SCtTDl\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"EERYScDMo\",layoutId:\"EERYScDMo\",style:{height:\"100%\",width:\"100%\"},variant:\"xaQambtGJ\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d4k7jm\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:20,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vi1zhz\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-he1c7i\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dyvgcl\",\"data-framer-name\":\"Scroll Effect Activate\",id:elementId1,ref:ref6}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-pz5jso-container\",\"data-framer-appear-id\":\"pz5jso\",initial:animation3,nodeId:\"EBGIPu010\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"DW9fRBOfw\"}},children:/*#__PURE__*/_jsx(ElementsBadge,{crA6wBj3k:true,dI2V912ba:\"rgba(13, 13, 13, 0.4)\",height:\"100%\",id:\"EBGIPu010\",kdP_WncMn:false,layoutId:\"EBGIPu010\",nQWOpC8zj:8,variant:\"aRB94otF7\",width:\"100%\",YbsaeEF4R:\"2 spots left\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{viewBoxScale:.98}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0zMDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"91.43473342906543px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Design bold. Ship gold.\"})}),className:\"framer-qy4pf0\",\"data-framer-appear-id\":\"qy4pf0\",fonts:[\"GF;DM Sans-300\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",viewBox:\"0 0 849.5717366714533 110\",viewBoxScale:.95,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"We are launching our design service\u2014Neuship, dedicated to helping founders ship their gold ideas.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"We are launching our design service\u2014Neuship, dedicated to helping founders ship their gold ideas.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"We are launching our design service\u2014Neuship, dedicated to helping founders ship their gold ideas.\"})}),className:\"framer-nqkn6i\",\"data-framer-appear-id\":\"nqkn6i\",fonts:[\"GF;DM Sans-regular\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1ffmjq9\",\"data-framer-appear-id\":\"1ffmjq9\",\"data-framer-name\":\"Buttons\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dssxbw-container\",nodeId:\"i1g_Of0JF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"ke7By49HW\"}},children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"i1g_Of0JF\",kTynE2FQc:\"regular\",layoutId:\"i1g_Of0JF\",LdEuC589O:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"https://cal.com/calicastle/neuship-intro-call\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Book a call\",Ud3HdUmNm:false,variant:\"q2rCK5lhb\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":vzqjjoVps\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vzqjjoVps\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vzqjjoVps\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":vzqjjoVps\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,children:/*#__PURE__*/_jsx(Container,{className:\"framer-udco55-container\",nodeId:\"Y4VgKe4ME\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{odb0bWURU:resolvedLinks[2],variant:\"QUTH27_ce\"},tp6FehdyR:{odb0bWURU:resolvedLinks[3]},xSFMhnjU5:{odb0bWURU:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"Y4VgKe4ME\",kTynE2FQc:\"regular\",layoutId:\"Y4VgKe4ME\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:resolvedLinks[0],QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"See plans\",Ud3HdUmNm:false,variant:\"fyaazp7pn\",width:\"100%\"})})})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-iadp4w\",\"data-framer-name\":\"Video\",id:elementId2,ref:ref7,children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-dv3td6\",\"data-framer-appear-id\":\"dv3td6\",\"data-framer-name\":\"Video\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12v7cda-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ElhESzwAU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{borderRadius:25,bottomLeftRadius:25,bottomRightRadius:25,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:25,topRightRadius:25},xSFMhnjU5:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:48,bottomLeftRadius:48,bottomRightRadius:48,controls:false,height:\"100%\",id:\"ElhESzwAU\",isMixedBorderRadius:false,layoutId:\"ElhESzwAU\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/XAYNPBhTDcXzUuLU1eyXMYgse5E.mp4\",srcType:\"URL\",srcUrl:\"https://cdn.neuship.co/neuship_banner.mp4\",startTime:12.8,style:{maxWidth:\"100%\",width:\"100%\"},topLeftRadius:48,topRightRadius:48,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:320,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:-150,ref:ref7,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9r87wk\",\"data-framer-name\":\"Logo\",style:{transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{viewBox:\"0 0 382.5 110\"},xSFMhnjU5:{viewBox:\"0 0 382.5 110\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"110px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Neuship\"})}),className:\"framer-160yt3v\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8346gp\",\"data-framer-name\":\"Logos\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref8,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13fft3k\",\"data-framer-name\":\"Container\",id:elementId3,ref:ref8,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Our designs are trusted by:\"})}),className:\"framer-1cukwhl\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18vmn4v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"s5rIpMb5T\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"s5rIpMb5T\",layoutId:\"s5rIpMb5T\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dnb876\",\"data-framer-name\":\"Logo/LAL\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c64b23\",\"data-framer-name\":\"Live Aware Labs\",fill:\"black\",intrinsicHeight:120,intrinsicWidth:755,svg:'<svg width=\"755\" height=\"120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M124.936 74.963 90.344 15.412C85 6.257 75.203.524 64.517.524 53.83.524 44.033 6.276 38.69 15.431L12.746 60.095 4.088 74.963c-5.342 9.155-5.342 20.61 0 29.766 5.343 9.154 15.142 14.887 25.827 14.887H99.11c10.685 0 20.484-5.723 25.827-14.887 5.342-9.155 5.342-20.602 0-29.766Zm-62.33 17.812-4.836 8.268c-1.267 2.291-3.685 3.686-6.357 3.686H29.79c-5.343 0-10.18-2.799-12.85-7.508a14.83 14.83 0 0 1 0-14.887l4.328-7.38L47.211 30.29l6.484-11.193c1.267-2.29 3.685-3.685 6.356-3.685h9.545c1.531 0 2.418 1.657 1.658 2.925L64.38 30.29 38.437 74.953l-5.85 10.179c-1.268 2.164.253 4.709 2.798 4.709h25.564c1.53.01 2.417 1.657 1.657 2.934Zm1.492-11.436c-6.25 0-11.32-5.07-11.32-11.32 0-6.249 5.07-11.319 11.32-11.319s11.319 5.07 11.319 11.32-5.07 11.32-11.32 11.32Zm47.48 16.019c-2.671 4.582-7.634 7.38-12.85 7.38H76.217c-1.531 0-2.418-1.657-1.658-2.925l4.836-8.267c1.267-2.292 3.685-3.686 6.357-3.686h7.38c2.418 0 3.939-2.671 2.798-4.709l-5.85-10.178-8.647-14.888-6.484-11.193a7.638 7.638 0 0 1 0-7.38l4.836-8.268c.76-1.267 2.671-1.267 3.305 0l6.864 11.953 17.296 29.776 4.328 7.507c2.672 4.572 2.672 10.295 0 14.878Zm82.3-11.42c-1.612 0-2.86-.442-3.744-1.326-.884-.936-1.326-2.21-1.326-3.822V35.784c0-1.664.416-2.912 1.248-3.744.884-.884 2.132-1.326 3.744-1.326s2.834.442 3.666 1.326c.884.832 1.326 2.08 1.326 3.744v41.652h22.62c1.404 0 2.47.364 3.198 1.092.78.728 1.17 1.768 1.17 3.12s-.39 2.418-1.17 3.198c-.728.728-1.794 1.092-3.198 1.092h-27.534Zm41.069.546c-1.56 0-2.756-.468-3.588-1.404-.832-.936-1.248-2.236-1.248-3.9V52.554c0-1.716.416-3.016 1.248-3.9.832-.936 2.028-1.404 3.588-1.404s2.756.468 3.588 1.404c.884.884 1.326 2.184 1.326 3.9V81.18c0 1.664-.416 2.964-1.248 3.9-.832.936-2.054 1.404-3.666 1.404Zm0-46.488c-1.82 0-3.25-.442-4.29-1.326-.988-.936-1.482-2.21-1.482-3.822 0-1.664.494-2.938 1.482-3.822 1.04-.884 2.47-1.326 4.29-1.326 1.872 0 3.302.442 4.29 1.326.988.884 1.482 2.158 1.482 3.822 0 1.612-.494 2.886-1.482 3.822-.988.884-2.418 1.326-4.29 1.326Zm28.929 46.566c-1.3 0-2.444-.338-3.432-1.014-.936-.676-1.716-1.716-2.34-3.12l-12.402-28.782c-.468-1.144-.65-2.21-.546-3.198.156-.988.624-1.768 1.404-2.34.832-.624 1.95-.936 3.354-.936 1.196 0 2.158.286 2.886.858.728.52 1.378 1.534 1.95 3.042l10.53 26.286h-2.34l10.842-26.364c.572-1.456 1.222-2.444 1.95-2.964.78-.572 1.82-.858 3.12-.858 1.144 0 2.054.312 2.73.936.676.572 1.092 1.352 1.248 2.34.156.936-.026 1.976-.546 3.12l-12.636 28.86c-.572 1.404-1.352 2.444-2.34 3.12-.936.676-2.08 1.014-3.432 1.014Zm42.165.156c-4.316 0-8.034-.806-11.154-2.418-3.12-1.612-5.538-3.9-7.254-6.864-1.664-2.964-2.496-6.474-2.496-10.53 0-3.952.806-7.41 2.418-10.374 1.664-2.964 3.926-5.278 6.786-6.942 2.912-1.716 6.214-2.574 9.906-2.574 2.704 0 5.122.442 7.254 1.326 2.184.884 4.03 2.158 5.538 3.822 1.56 1.664 2.73 3.692 3.51 6.084.832 2.34 1.248 4.992 1.248 7.956 0 .936-.338 1.664-1.014 2.184-.624.468-1.534.702-2.73.702h-25.038v-5.616h21.918l-1.248 1.17c0-2.392-.364-4.394-1.092-6.006-.676-1.612-1.69-2.834-3.042-3.666-1.3-.884-2.938-1.326-4.914-1.326-2.184 0-4.056.52-5.616 1.56-1.508.988-2.678 2.418-3.51 4.29-.78 1.82-1.17 4.004-1.17 6.552v.546c0 4.264.988 7.462 2.964 9.594 2.028 2.08 4.992 3.12 8.892 3.12 1.352 0 2.86-.156 4.524-.468a17.446 17.446 0 0 0 4.836-1.794c1.092-.624 2.054-.884 2.886-.78.832.052 1.482.338 1.95.858.52.52.832 1.17.936 1.95.104.728-.052 1.482-.468 2.262-.364.78-1.014 1.456-1.95 2.028-1.82 1.144-3.926 2.002-6.318 2.574-2.34.52-4.524.78-6.552.78Zm43.015-.156c-1.248 0-2.262-.286-3.042-.858-.728-.572-1.17-1.326-1.326-2.262-.156-.988.026-2.08.546-3.276l20.592-45.63c.676-1.508 1.482-2.574 2.418-3.198.988-.676 2.106-1.014 3.354-1.014 1.196 0 2.262.338 3.198 1.014.988.624 1.82 1.69 2.496 3.198l20.67 45.63c.572 1.196.78 2.288.624 3.276-.156.988-.598 1.768-1.326 2.34-.728.52-1.69.78-2.886.78-1.456 0-2.6-.338-3.432-1.014-.78-.728-1.482-1.82-2.106-3.276l-5.07-11.778 4.212 2.73h-32.916l4.212-2.73-4.992 11.778c-.676 1.508-1.378 2.6-2.106 3.276-.728.676-1.768 1.014-3.12 1.014Zm22.386-44.772-10.92 25.974-2.028-2.496h26.052l-1.95 2.496-10.998-25.974h-.156Zm45.148 44.772c-1.3 0-2.418-.312-3.354-.936-.936-.676-1.69-1.716-2.262-3.12l-11.31-28.86c-.468-1.248-.624-2.34-.468-3.276.208-.988.702-1.768 1.482-2.34.78-.572 1.82-.858 3.12-.858 1.144 0 2.08.286 2.808.858.728.52 1.352 1.534 1.872 3.042l9.438 25.974h-1.794l9.75-26.598c.416-1.144.962-1.976 1.638-2.496.728-.52 1.664-.78 2.808-.78s2.08.286 2.808.858c.728.52 1.274 1.326 1.638 2.418l9.594 26.598h-1.638l9.516-26.208c.52-1.404 1.17-2.366 1.95-2.886a5.052 5.052 0 0 1 2.73-.78c1.248 0 2.21.312 2.886.936.676.624 1.066 1.43 1.17 2.418.104.936-.078 1.976-.546 3.12l-11.232 28.86c-.52 1.352-1.274 2.366-2.262 3.042-.936.676-2.054 1.014-3.354 1.014-1.3 0-2.444-.338-3.432-1.014-.936-.676-1.664-1.69-2.184-3.042L427.744 55.44h4.446l-9.984 26.988c-.52 1.404-1.248 2.444-2.184 3.12-.936.676-2.08 1.014-3.432 1.014Zm61.992.156c-2.756 0-5.226-.52-7.41-1.56-2.132-1.092-3.822-2.548-5.07-4.368-1.196-1.82-1.794-3.874-1.794-6.162 0-2.808.728-5.018 2.184-6.63 1.456-1.664 3.822-2.86 7.098-3.588 3.276-.728 7.67-1.092 13.182-1.092h3.9v5.616h-3.822c-3.224 0-5.798.156-7.722.468-1.924.312-3.302.858-4.134 1.638-.78.728-1.17 1.768-1.17 3.12 0 1.716.598 3.12 1.794 4.212 1.196 1.092 2.86 1.638 4.992 1.638 1.716 0 3.224-.39 4.524-1.17a9.004 9.004 0 0 0 3.198-3.354c.78-1.404 1.17-3.016 1.17-4.836v-8.97c0-2.6-.572-4.472-1.716-5.616-1.144-1.144-3.068-1.716-5.772-1.716-1.508 0-3.146.182-4.914.546-1.716.364-3.536.988-5.46 1.872-.988.468-1.872.598-2.652.39a2.984 2.984 0 0 1-1.716-1.248 4.093 4.093 0 0 1-.624-2.184c0-.78.208-1.534.624-2.262.416-.78 1.118-1.352 2.106-1.716 2.392-.988 4.68-1.69 6.864-2.106 2.236-.416 4.264-.624 6.084-.624 3.744 0 6.812.572 9.204 1.716 2.444 1.144 4.264 2.886 5.46 5.226 1.196 2.288 1.794 5.252 1.794 8.892v18.72c0 1.612-.39 2.86-1.17 3.744-.78.832-1.898 1.248-3.354 1.248-1.456 0-2.6-.416-3.432-1.248-.78-.884-1.17-2.132-1.17-3.744v-3.744h.624c-.364 1.82-1.092 3.406-2.184 4.758-1.04 1.3-2.366 2.314-3.978 3.042-1.612.728-3.458 1.092-5.538 1.092Zm33.531-.156c-1.612 0-2.86-.416-3.744-1.248-.832-.884-1.248-2.132-1.248-3.744V52.086c0-1.612.416-2.834 1.248-3.666.832-.832 2.002-1.248 3.51-1.248s2.678.416 3.51 1.248c.832.832 1.248 2.054 1.248 3.666V57h-.78c.728-3.12 2.158-5.486 4.29-7.098s4.966-2.574 8.502-2.886c1.092-.104 1.95.182 2.574.858.676.624 1.066 1.612 1.17 2.964.104 1.3-.208 2.366-.936 3.198-.676.78-1.716 1.248-3.12 1.404l-1.716.156c-3.172.312-5.564 1.3-7.176 2.964-1.612 1.612-2.418 3.9-2.418 6.864V81.57c0 1.612-.416 2.86-1.248 3.744-.832.832-2.054 1.248-3.666 1.248Zm42.181.156c-4.316 0-8.034-.806-11.154-2.418-3.12-1.612-5.538-3.9-7.254-6.864-1.664-2.964-2.496-6.474-2.496-10.53 0-3.952.806-7.41 2.418-10.374 1.664-2.964 3.926-5.278 6.786-6.942 2.912-1.716 6.214-2.574 9.906-2.574 2.704 0 5.122.442 7.254 1.326 2.184.884 4.03 2.158 5.538 3.822 1.56 1.664 2.73 3.692 3.51 6.084.832 2.34 1.248 4.992 1.248 7.956 0 .936-.338 1.664-1.014 2.184-.624.468-1.534.702-2.73.702h-25.038v-5.616h21.918l-1.248 1.17c0-2.392-.364-4.394-1.092-6.006-.676-1.612-1.69-2.834-3.042-3.666-1.3-.884-2.938-1.326-4.914-1.326-2.184 0-4.056.52-5.616 1.56-1.508.988-2.678 2.418-3.51 4.29-.78 1.82-1.17 4.004-1.17 6.552v.546c0 4.264.988 7.462 2.964 9.594 2.028 2.08 4.992 3.12 8.892 3.12 1.352 0 2.86-.156 4.524-.468a17.446 17.446 0 0 0 4.836-1.794c1.092-.624 2.054-.884 2.886-.78.832.052 1.482.338 1.95.858.52.52.832 1.17.936 1.95.104.728-.052 1.482-.468 2.262-.364.78-1.014 1.456-1.95 2.028-1.82 1.144-3.926 2.002-6.318 2.574-2.34.52-4.524.78-6.552.78Zm47.539-.78c-1.612 0-2.86-.442-3.744-1.326-.884-.936-1.326-2.21-1.326-3.822V35.784c0-1.664.416-2.912 1.248-3.744.884-.884 2.132-1.326 3.744-1.326s2.834.442 3.666 1.326c.884.832 1.326 2.08 1.326 3.744v41.652h22.62c1.404 0 2.47.364 3.198 1.092.78.728 1.17 1.768 1.17 3.12s-.39 2.418-1.17 3.198c-.728.728-1.794 1.092-3.198 1.092h-27.534Zm48.791.78c-2.756 0-5.226-.52-7.41-1.56-2.132-1.092-3.822-2.548-5.07-4.368-1.196-1.82-1.794-3.874-1.794-6.162 0-2.808.728-5.018 2.184-6.63 1.456-1.664 3.822-2.86 7.098-3.588 3.276-.728 7.67-1.092 13.182-1.092h3.9v5.616h-3.822c-3.224 0-5.798.156-7.722.468-1.924.312-3.302.858-4.134 1.638-.78.728-1.17 1.768-1.17 3.12 0 1.716.598 3.12 1.794 4.212 1.196 1.092 2.86 1.638 4.992 1.638 1.716 0 3.224-.39 4.524-1.17a9.004 9.004 0 0 0 3.198-3.354c.78-1.404 1.17-3.016 1.17-4.836v-8.97c0-2.6-.572-4.472-1.716-5.616-1.144-1.144-3.068-1.716-5.772-1.716-1.508 0-3.146.182-4.914.546-1.716.364-3.536.988-5.46 1.872-.988.468-1.872.598-2.652.39a2.984 2.984 0 0 1-1.716-1.248 4.093 4.093 0 0 1-.624-2.184c0-.78.208-1.534.624-2.262.416-.78 1.118-1.352 2.106-1.716 2.392-.988 4.68-1.69 6.864-2.106 2.236-.416 4.264-.624 6.084-.624 3.744 0 6.812.572 9.204 1.716 2.444 1.144 4.264 2.886 5.46 5.226 1.196 2.288 1.794 5.252 1.794 8.892v18.72c0 1.612-.39 2.86-1.17 3.744-.78.832-1.898 1.248-3.354 1.248-1.456 0-2.6-.416-3.432-1.248-.78-.884-1.17-2.132-1.17-3.744v-3.744h.624c-.364 1.82-1.092 3.406-2.184 4.758-1.04 1.3-2.366 2.314-3.978 3.042-1.612.728-3.458 1.092-5.538 1.092Zm50.534 0c-3.224 0-6.057-.806-8.501-2.418-2.392-1.612-3.979-3.77-4.759-6.474l.858-1.95v5.694c0 1.612-.416 2.86-1.248 3.744-.832.832-2.002 1.248-3.51 1.248-1.56 0-2.756-.416-3.588-1.248-.832-.884-1.248-2.132-1.248-3.744V35.238c0-1.612.416-2.834 1.248-3.666.832-.832 2.028-1.248 3.588-1.248s2.757.416 3.589 1.248c.884.832 1.325 2.054 1.325 3.666v20.28h-.936c.832-2.548 2.444-4.602 4.836-6.162 2.392-1.56 5.174-2.34 8.346-2.34 3.38 0 6.318.806 8.814 2.418 2.496 1.612 4.446 3.9 5.85 6.864 1.404 2.912 2.106 6.422 2.106 10.53 0 4.056-.702 7.592-2.106 10.608-1.404 2.964-3.38 5.252-5.928 6.864-2.496 1.612-5.408 2.418-8.736 2.418Zm-2.73-7.41c1.924 0 3.614-.468 5.07-1.404 1.456-.936 2.574-2.314 3.354-4.134.832-1.872 1.248-4.186 1.248-6.942 0-4.16-.883-7.254-2.651-9.282-1.768-2.08-4.109-3.12-7.021-3.12-1.924 0-3.614.468-5.07 1.404-1.456.884-2.6 2.262-3.432 4.134-.78 1.82-1.17 4.108-1.17 6.864 0 4.108.884 7.228 2.652 9.36 1.768 2.08 4.108 3.12 7.02 3.12Zm39.906 7.41c-2.236 0-4.602-.234-7.098-.702-2.496-.468-4.732-1.274-6.708-2.418-.832-.52-1.43-1.118-1.794-1.794-.312-.728-.442-1.43-.39-2.106.104-.728.364-1.352.78-1.872a3.238 3.238 0 0 1 1.716-1.014c.728-.156 1.508-.026 2.34.39 2.08.988 4.03 1.69 5.85 2.106 1.82.364 3.614.546 5.382.546 2.496 0 4.342-.416 5.538-1.248 1.248-.884 1.872-2.028 1.872-3.432 0-1.196-.416-2.106-1.248-2.73-.78-.676-1.976-1.17-3.588-1.482l-7.8-1.482c-3.224-.624-5.694-1.794-7.41-3.51-1.664-1.768-2.496-4.03-2.496-6.786 0-2.496.676-4.654 2.028-6.474 1.404-1.82 3.328-3.224 5.772-4.212 2.444-.988 5.252-1.482 8.424-1.482 2.288 0 4.42.26 6.396.78a22.344 22.344 0 0 1 5.85 2.262c.78.416 1.3.962 1.56 1.638.312.676.39 1.378.234 2.106a4.545 4.545 0 0 1-.936 1.872c-.468.52-1.066.858-1.794 1.014-.676.104-1.456-.052-2.34-.468-1.612-.832-3.172-1.43-4.68-1.794-1.456-.364-2.86-.546-4.212-.546-2.548 0-4.446.442-5.694 1.326-1.196.884-1.794 2.054-1.794 3.51 0 1.092.364 2.002 1.092 2.73.728.728 1.846 1.222 3.354 1.482l7.8 1.482c3.38.624 5.928 1.768 7.644 3.432 1.768 1.664 2.652 3.9 2.652 6.708 0 3.796-1.482 6.786-4.446 8.97-2.964 2.132-6.916 3.198-11.856 3.198Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yaec6w\",\"data-framer-name\":\"Logo/BenchFlow\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yvrm4i\",\"data-framer-name\":\"BenchFlow\",fill:\"black\",intrinsicHeight:119,intrinsicWidth:559,svg:'<svg width=\"559\" height=\"119\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M102.248 15.447 117.504 0 89.301 68.324 67.748 90.147 0 118.972l15.909-16.107 2.687 2.72 1.847-1.869-2.687-2.721L29.99 88.607l7.304 7.395 1.847-1.87-7.304-7.395 12.235-12.388 2.687 2.72 1.847-1.87-2.687-2.72L58.155 60.09l7.304 7.395 1.847-1.87-7.304-7.395 12.235-12.388 2.687 2.72 1.847-1.87-2.687-2.72 12.235-12.388 7.304 7.395 1.847-1.87-7.304-7.395L100.4 17.317l2.687 2.72 1.847-1.87-2.687-2.72ZM91.621 90.613V69.58l26.185-63.436v110.982L91.621 90.613Zm-1.852 1.875L115.954 119H6.694l62.31-26.512H89.77Z\" fill=\"#EEE\"/><path d=\"m504.047 86.435-6.598-41.037v-.137h9.485l5.292 33.488h1.581l6.117-33.488h16.29l6.117 33.488h1.581l5.292-33.488h8.866v.137l-6.598 41.037h-16.633l-6.255-33.694h-1.718l-6.186 33.694h-16.633Zm-29.594 1.029c-6.69 0-11.684-1.944-14.983-5.833-3.254-3.934-4.88-9.196-4.88-15.784 0-6.587 1.626-11.826 4.88-15.714 3.299-3.935 8.293-5.902 14.983-5.902 6.69 0 11.685 1.967 14.984 5.902 3.299 3.888 4.949 9.127 4.949 15.714 0 6.588-1.65 11.85-4.949 15.784-3.299 3.889-8.294 5.833-14.984 5.833Zm0-7.068c3.254 0 5.613-1.236 7.08-3.706 1.512-2.47 2.268-6.085 2.268-10.843 0-4.757-.756-8.372-2.268-10.842-1.467-2.47-3.826-3.706-7.08-3.706-3.207 0-5.567 1.236-7.079 3.706-1.512 2.47-2.268 6.085-2.268 10.842 0 4.758.756 8.373 2.268 10.843 1.512 2.47 3.872 3.706 7.079 3.706Zm-32.695 6.039a13.091 13.091 0 0 1-2.68-4.804c-.55-1.83-.825-4.323-.825-7.48V31.536h10.241v41.517c0 3.523.389 6.245 1.168 8.166.779 1.922 1.787 3.523 3.025 4.804v.412h-10.929Zm-43.64-.001V32.908h35.191v8.372h-24.743v13.04h18.97v7.754h-18.97v24.361h-10.448Zm-44.297.001v-54.9h10.173V50.34h1.649c.963-1.83 2.269-3.294 3.918-4.392 1.65-1.144 3.895-1.716 6.736-1.716 4.628 0 8.064 1.464 10.31 4.392 2.245 2.882 3.368 6.748 3.368 11.598v26.214h-10.173v-24.43c0-3.02-.55-5.33-1.649-6.931-1.054-1.647-2.773-2.47-5.155-2.47-2.841 0-5.064 1.12-6.667 3.362-1.558 2.196-2.337 4.94-2.337 8.235v22.234h-10.173Zm-23.555 1.029c-6.278 0-11.043-1.944-14.297-5.833-3.253-3.934-4.88-9.196-4.88-15.784 0-6.908 1.696-12.237 5.087-15.989 3.436-3.751 8.156-5.627 14.159-5.627 5.315 0 9.507 1.418 12.578 4.255 3.07 2.836 4.902 6.725 5.498 11.666h-10.035c-.321-2.745-1.168-4.85-2.543-6.314-1.375-1.51-3.162-2.264-5.361-2.264-2.933 0-5.155 1.258-6.667 3.774-1.466 2.47-2.2 5.97-2.2 10.5 0 4.529.734 8.051 2.2 10.567 1.512 2.471 3.711 3.706 6.598 3.706 2.245 0 4.055-.755 5.43-2.264 1.375-1.51 2.222-3.615 2.543-6.314h10.035c-.641 4.895-2.52 8.784-5.636 11.666-3.07 2.837-7.24 4.255-12.509 4.255Zm-60.518-1.029V45.26h9.347v6.177h1.65c.825-2.105 2.108-3.82 3.849-5.147 1.787-1.373 4.307-2.059 7.561-2.059 4.673 0 8.133 1.464 10.378 4.392 2.245 2.882 3.368 6.748 3.368 11.597v26.215h-10.172v-24.43c0-3.02-.55-5.33-1.65-6.931-1.054-1.647-2.772-2.47-5.155-2.47-2.841 0-5.063 1.12-6.667 3.362-1.558 2.196-2.337 4.94-2.337 8.235v22.234h-10.172Zm-24.03 1.029c-6.369 0-11.226-1.944-14.571-5.833-3.345-3.934-5.017-9.219-5.017-15.852 0-4.438.733-8.258 2.199-11.46 1.512-3.203 3.712-5.673 6.598-7.412 2.933-1.784 6.484-2.676 10.654-2.676 6.048 0 10.653 1.853 13.815 5.558 3.208 3.66 4.811 9.059 4.811 16.196v2.264h-28.18c.229 3.66 1.168 6.565 2.818 8.716 1.65 2.104 3.941 3.156 6.873 3.156 2.291 0 4.124-.663 5.499-1.99s2.314-2.95 2.818-4.872h9.691c-.458 2.608-1.397 4.987-2.818 7.137-1.42 2.104-3.391 3.82-5.911 5.147-2.474 1.28-5.567 1.92-9.279 1.92Zm-9.622-25.734h18.214c-.183-3.34-1.031-5.924-2.543-7.754-1.467-1.83-3.551-2.745-6.255-2.745-2.703 0-4.857.892-6.461 2.676-1.604 1.738-2.589 4.346-2.955 7.823Zm-54.565 24.704V32.908h20.345c6.598 0 11.363 1.212 14.296 3.637 2.978 2.379 4.468 5.604 4.468 9.676 0 2.608-.642 4.78-1.925 6.52-1.283 1.692-3.23 2.904-5.842 3.636v1.647c3.436.732 6.048 2.128 7.835 4.186 1.833 2.013 2.75 4.873 2.75 8.578 0 4.712-1.558 8.51-4.674 11.392-3.116 2.836-8.179 4.254-15.19 4.254h-22.063Zm10.104-7.685h10.791c3.665 0 6.323-.732 7.972-2.196 1.65-1.51 2.475-3.569 2.475-6.177 0-2.79-.894-4.872-2.681-6.244-1.741-1.373-4.307-2.059-7.698-2.059h-10.859v16.676Zm0-24.225h9.622c2.887 0 5.109-.549 6.667-1.647 1.604-1.143 2.406-2.905 2.406-5.284 0-4.666-3.024-7-9.073-7h-9.622v13.931Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wjop3o\",\"data-framer-name\":\"Logo/VVS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tkxqk0\",\"data-framer-name\":\"VVS\",fill:\"black\",intrinsicHeight:147,intrinsicWidth:941,svg:'<svg width=\"941\" height=\"147\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M106.523 65.783c-7.563 0-14.341 4.71-16.98 11.772L63.5 146.763h20.477c7.563 0 14.341-4.709 16.981-11.772L127 65.783h-20.477Zm-86.046 0H0l26.042 69.208c2.64 7.063 9.418 11.772 16.981 11.772H63.5L37.458 77.555c-2.64-7.063-9.418-11.772-16.981-11.772ZM59.22 48.017l4.28 57.65 4.21-57.65 19.977 7.563L70.92 40.17l7.42-6.207-10.773.142L63.5 0l-4.067 34.104-10.773-.142 7.42 6.207L39.313 55.58l19.906-7.563ZM198.4 90.82l10.92-33.15h11.622l-15.99 43.212h-13.26L175.78 57.67h11.7l10.92 33.15Zm67.285-12.48c0 1.56-.104 2.964-.312 4.212h-31.59c.26 3.12 1.352 5.564 3.276 7.332 1.924 1.768 4.29 2.652 7.098 2.652 4.056 0 6.942-1.742 8.658-5.226h11.778c-1.248 4.16-3.64 7.592-7.176 10.296-3.536 2.652-7.878 3.978-13.026 3.978-4.16 0-7.904-.91-11.232-2.73-3.276-1.872-5.85-4.498-7.722-7.878-1.82-3.38-2.73-7.28-2.73-11.7 0-4.472.91-8.398 2.73-11.778 1.82-3.38 4.368-5.98 7.644-7.8 3.276-1.82 7.046-2.73 11.31-2.73 4.108 0 7.774.884 10.998 2.652 3.276 1.768 5.798 4.29 7.566 7.566 1.82 3.224 2.73 6.942 2.73 11.154Zm-11.31-3.12c-.052-2.808-1.066-5.044-3.042-6.708-1.976-1.716-4.394-2.574-7.254-2.574-2.704 0-4.992.832-6.864 2.496-1.82 1.612-2.938 3.874-3.354 6.786h20.514Zm28.641-10.842c1.404-2.288 3.224-4.082 5.46-5.382 2.288-1.3 4.888-1.95 7.8-1.95v11.466h-2.886c-3.432 0-6.032.806-7.8 2.418-1.716 1.612-2.574 4.42-2.574 8.424v21.528h-10.92V57.67h10.92v6.708Zm60.395-6.708-26.754 63.648h-11.622l9.36-21.528-17.316-42.12h12.246l11.154 30.186 11.31-30.186h11.622Zm39.371 33.15 10.92-33.15h11.622l-15.99 43.212h-13.26L360.162 57.67h11.7l10.92 33.15Zm67.285-12.48c0 1.56-.104 2.964-.312 4.212h-31.59c.26 3.12 1.352 5.564 3.276 7.332 1.924 1.768 4.29 2.652 7.098 2.652 4.056 0 6.942-1.742 8.658-5.226h11.778c-1.248 4.16-3.64 7.592-7.176 10.296-3.536 2.652-7.878 3.978-13.026 3.978-4.16 0-7.904-.91-11.232-2.73-3.276-1.872-5.85-4.498-7.722-7.878-1.82-3.38-2.73-7.28-2.73-11.7 0-4.472.91-8.398 2.73-11.778 1.82-3.38 4.368-5.98 7.644-7.8 3.276-1.82 7.046-2.73 11.31-2.73 4.108 0 7.774.884 10.998 2.652 3.276 1.768 5.798 4.29 7.566 7.566 1.82 3.224 2.73 6.942 2.73 11.154Zm-11.31-3.12c-.052-2.808-1.066-5.044-3.042-6.708-1.976-1.716-4.394-2.574-7.254-2.574-2.704 0-4.992.832-6.864 2.496-1.82 1.612-2.938 3.874-3.354 6.786h20.514Zm28.641-10.842c1.404-2.288 3.224-4.082 5.46-5.382 2.288-1.3 4.888-1.95 7.8-1.95v11.466h-2.886c-3.432 0-6.032.806-7.8 2.418-1.716 1.612-2.574 4.42-2.574 8.424v21.528h-10.92V57.67h10.92v6.708Zm60.395-6.708-26.754 63.648h-11.622l9.36-21.528-17.316-42.12h12.246l11.154 30.186 11.31-30.186h11.622Zm37.888 43.914c-3.536 0-6.708-.624-9.516-1.872-2.808-1.3-5.044-3.042-6.708-5.226-1.612-2.184-2.496-4.602-2.652-7.254h10.998c.208 1.664 1.014 3.042 2.418 4.134 1.456 1.092 3.25 1.638 5.382 1.638 2.08 0 3.692-.416 4.836-1.248 1.196-.832 1.794-1.898 1.794-3.198 0-1.404-.728-2.444-2.184-3.12-1.404-.728-3.666-1.508-6.786-2.34-3.224-.78-5.876-1.586-7.956-2.418-2.028-.832-3.796-2.106-5.304-3.822-1.456-1.716-2.184-4.03-2.184-6.942 0-2.392.676-4.576 2.028-6.552 1.404-1.976 3.38-3.536 5.928-4.68 2.6-1.144 5.642-1.716 9.126-1.716 5.148 0 9.256 1.3 12.324 3.9 3.068 2.548 4.758 6.006 5.07 10.374h-10.452c-.156-1.716-.884-3.068-2.184-4.056-1.248-1.04-2.938-1.56-5.07-1.56-1.976 0-3.51.364-4.602 1.092-1.04.728-1.56 1.742-1.56 3.042 0 1.456.728 2.574 2.184 3.354 1.456.728 3.718 1.482 6.786 2.262 3.12.78 5.694 1.586 7.722 2.418 2.028.832 3.77 2.132 5.226 3.9 1.508 1.716 2.288 4.004 2.34 6.864 0 2.496-.702 4.732-2.106 6.708-1.352 1.976-3.328 3.536-5.928 4.68-2.548 1.092-5.538 1.638-8.97 1.638Zm35.328-37.674c1.404-1.976 3.328-3.614 5.772-4.914 2.496-1.352 5.33-2.028 8.502-2.028 3.692 0 7.02.91 9.984 2.73 3.016 1.82 5.382 4.42 7.098 7.8 1.768 3.328 2.652 7.202 2.652 11.622s-.884 8.346-2.652 11.778c-1.716 3.38-4.082 6.006-7.098 7.878-2.964 1.872-6.292 2.808-9.984 2.808-3.172 0-5.98-.65-8.424-1.95-2.392-1.3-4.342-2.938-5.85-4.914v26.754h-10.92V57.67h10.92v6.24Zm22.854 15.21c0-2.6-.546-4.836-1.638-6.708-1.04-1.924-2.444-3.38-4.212-4.368-1.716-.988-3.588-1.482-5.616-1.482-1.976 0-3.848.52-5.616 1.56-1.716.988-3.12 2.444-4.212 4.368-1.04 1.924-1.56 4.186-1.56 6.786 0 2.6.52 4.862 1.56 6.786 1.092 1.924 2.496 3.406 4.212 4.446 1.768.988 3.64 1.482 5.616 1.482 2.028 0 3.9-.52 5.616-1.56 1.768-1.04 3.172-2.522 4.212-4.446 1.092-1.924 1.638-4.212 1.638-6.864Zm14.721 0c0-4.368.858-8.242 2.574-11.622 1.768-3.38 4.134-5.98 7.098-7.8 3.016-1.82 6.37-2.73 10.062-2.73 3.224 0 6.032.65 8.424 1.95 2.444 1.3 4.394 2.938 5.85 4.914V57.67h10.998v43.212h-10.998v-6.318c-1.404 2.028-3.354 3.718-5.85 5.07-2.444 1.3-5.278 1.95-8.502 1.95-3.64 0-6.968-.936-9.984-2.808-2.964-1.872-5.33-4.498-7.098-7.878-1.716-3.432-2.574-7.358-2.574-11.778Zm34.008.156c0-2.652-.52-4.914-1.56-6.786-1.04-1.924-2.444-3.38-4.212-4.368a11.042 11.042 0 0 0-5.694-1.56c-2.028 0-3.9.494-5.616 1.482-1.716.988-3.12 2.444-4.212 4.368-1.04 1.872-1.56 4.108-1.56 6.708 0 2.6.52 4.888 1.56 6.864 1.092 1.924 2.496 3.406 4.212 4.446 1.768 1.04 3.64 1.56 5.616 1.56 2.028 0 3.926-.494 5.694-1.482 1.768-1.04 3.172-2.496 4.212-4.368 1.04-1.924 1.56-4.212 1.56-6.864Zm17.296 0c0-4.472.91-8.372 2.73-11.7 1.82-3.38 4.342-5.98 7.566-7.8 3.224-1.872 6.916-2.808 11.076-2.808 5.356 0 9.776 1.352 13.26 4.056 3.536 2.652 5.902 6.396 7.098 11.232H719.84c-.624-1.872-1.69-3.328-3.198-4.368-1.456-1.092-3.276-1.638-5.46-1.638-3.12 0-5.59 1.144-7.41 3.432-1.82 2.236-2.73 5.434-2.73 9.594 0 4.108.91 7.306 2.73 9.594 1.82 2.236 4.29 3.354 7.41 3.354 4.42 0 7.306-1.976 8.658-5.928h11.778c-1.196 4.68-3.562 8.398-7.098 11.154-3.536 2.756-7.956 4.134-13.26 4.134-4.16 0-7.852-.91-11.076-2.73-3.224-1.872-5.746-4.472-7.566-7.8-1.82-3.38-2.73-7.306-2.73-11.778Zm88.34-.936c0 1.56-.104 2.964-.312 4.212h-31.59c.26 3.12 1.352 5.564 3.276 7.332 1.924 1.768 4.29 2.652 7.098 2.652 4.056 0 6.942-1.742 8.658-5.226h11.778c-1.248 4.16-3.64 7.592-7.176 10.296-3.536 2.652-7.878 3.978-13.026 3.978-4.16 0-7.904-.91-11.232-2.73-3.276-1.872-5.85-4.498-7.722-7.878-1.82-3.38-2.73-7.28-2.73-11.7 0-4.472.91-8.398 2.73-11.778 1.82-3.38 4.368-5.98 7.644-7.8 3.276-1.82 7.046-2.73 11.31-2.73 4.108 0 7.774.884 10.998 2.652 3.276 1.768 5.798 4.29 7.566 7.566 1.82 3.224 2.73 6.942 2.73 11.154Zm-11.31-3.12c-.052-2.808-1.066-5.044-3.042-6.708-1.976-1.716-4.394-2.574-7.254-2.574-2.704 0-4.992.832-6.864 2.496-1.82 1.612-2.938 3.874-3.354 6.786h20.514Zm34.256 26.364c-3.536 0-6.708-.624-9.516-1.872-2.808-1.3-5.044-3.042-6.708-5.226-1.612-2.184-2.496-4.602-2.652-7.254h10.998c.208 1.664 1.014 3.042 2.418 4.134 1.456 1.092 3.25 1.638 5.382 1.638 2.08 0 3.692-.416 4.836-1.248 1.196-.832 1.794-1.898 1.794-3.198 0-1.404-.728-2.444-2.184-3.12-1.404-.728-3.666-1.508-6.786-2.34-3.224-.78-5.876-1.586-7.956-2.418-2.028-.832-3.796-2.106-5.304-3.822-1.456-1.716-2.184-4.03-2.184-6.942 0-2.392.676-4.576 2.028-6.552 1.404-1.976 3.38-3.536 5.928-4.68 2.6-1.144 5.642-1.716 9.126-1.716 5.148 0 9.256 1.3 12.324 3.9 3.068 2.548 4.758 6.006 5.07 10.374h-10.452c-.156-1.716-.884-3.068-2.184-4.056-1.248-1.04-2.938-1.56-5.07-1.56-1.976 0-3.51.364-4.602 1.092-1.04.728-1.56 1.742-1.56 3.042 0 1.456.728 2.574 2.184 3.354 1.456.728 3.718 1.482 6.786 2.262 3.12.78 5.694 1.586 7.722 2.418 2.028.832 3.77 2.132 5.226 3.9 1.508 1.716 2.288 4.004 2.34 6.864 0 2.496-.702 4.732-2.106 6.708-1.352 1.976-3.328 3.536-5.928 4.68-2.548 1.092-5.538 1.638-8.97 1.638Zm48.744-44.538c3.276 0 6.188.728 8.736 2.184 2.548 1.404 4.524 3.51 5.928 6.318 1.456 2.756 2.184 6.084 2.184 9.984v25.35h-10.92V77.014c0-3.432-.858-6.058-2.574-7.878-1.716-1.872-4.056-2.808-7.02-2.808-3.016 0-5.408.936-7.176 2.808-1.716 1.82-2.574 4.446-2.574 7.878v23.868h-10.92v-57.72h10.92v19.89c1.404-1.872 3.276-3.328 5.616-4.368 2.34-1.092 4.94-1.638 7.8-1.638Zm31.21-4.524c-1.924 0-3.536-.598-4.836-1.794-1.248-1.248-1.872-2.782-1.872-4.602 0-1.82.624-3.328 1.872-4.524 1.3-1.248 2.912-1.872 4.836-1.872 1.924 0 3.51.624 4.758 1.872 1.3 1.196 1.95 2.704 1.95 4.524 0 1.82-.65 3.354-1.95 4.602-1.248 1.196-2.834 1.794-4.758 1.794Zm5.382 5.148v43.212h-10.919V57.67h10.919Zm20.149 6.24c1.404-1.976 3.328-3.614 5.772-4.914 2.496-1.352 5.33-2.028 8.502-2.028 3.692 0 7.02.91 9.984 2.73 3.016 1.82 5.383 4.42 7.099 7.8 1.768 3.328 2.651 7.202 2.651 11.622s-.883 8.346-2.651 11.778c-1.716 3.38-4.083 6.006-7.099 7.878-2.964 1.872-6.292 2.808-9.984 2.808-3.172 0-5.98-.65-8.424-1.95-2.392-1.3-4.342-2.938-5.85-4.914v26.754H895.74V57.67h10.919v6.24Zm22.854 15.21c0-2.6-.546-4.836-1.638-6.708-1.04-1.924-2.443-3.38-4.211-4.368-1.716-.988-3.589-1.482-5.617-1.482-1.976 0-3.848.52-5.616 1.56-1.716.988-3.12 2.444-4.212 4.368-1.04 1.924-1.56 4.186-1.56 6.786 0 2.6.52 4.862 1.56 6.786 1.092 1.924 2.496 3.406 4.212 4.446 1.768.988 3.64 1.482 5.616 1.482 2.028 0 3.901-.52 5.617-1.56 1.768-1.04 3.171-2.522 4.211-4.446 1.092-1.924 1.638-4.212 1.638-6.864Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7xqimz\",\"data-framer-name\":\"Logo/Bird Cartel\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-185mxnf\",\"data-framer-name\":\"Bird Cartel\",fill:\"black\",intrinsicHeight:133,intrinsicWidth:692,svg:'<svg width=\"692\" height=\"133\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M41.171.243c-1.15.397-1.587 1.468-1.587 3.729 0 1.944.318 2.896 1.984 6.387 1.11 2.26 2.261 4.363 2.578 4.68.556.516 3.57.715 4.047.239.317-.318-.714-6.982-1.35-8.767C46.012 4.05 43.909.878 42.878.4c-.516-.237-.992-.436-1.031-.396-.04 0-.357.12-.675.238Zm13.607 12.853c-1.27 1.309-.635 1.983 11.305 12.813 3.332 3.015 6.268 5.91 6.506 6.386.555 1.23-.04 2.896-1.388 3.888-.992.794-1.31.794-12.496.278-6.307-.278-11.702-.397-11.94-.238-1.19.754-.318 1.825 3.332 4.205 3.372 2.142 5.157 3.094 9.005 4.68.595.239 1.348.913 1.745 1.468.635.952.595 1.111-1.547 5.475-2.698 5.434-4.126 10.234-4.76 15.828l-.437 4.244-2.499.595c-5.395 1.388-9.282 3.65-14.717 8.648-4.641 4.284-7.775 5.99-13.448 7.22-5.434 1.23-9.243 2.578-14.003 5.038C5.43 95.686.431 99.177.035 100.129c-.12.318.079 1.032.436 1.587l.635.992h9.957c8.052 0 10.194.119 11.385.634 1.864.754 3.49 2.301 4.561 4.324.794 1.468.873 2.42 1.111 12.694.159 6.109.278 11.227.317 11.385.199 1.27.913 1.309 23.881 1.23 35.147-.119 61.804-.436 68.588-.873 3.372-.238 11.662-.515 18.366-.634 6.744-.159 12.496-.357 12.774-.437.277-.119.634-.476.753-.793.556-1.428.278-23.246-.357-30.307-.753-8.29-.595-9.798 1.429-12.06.634-.753 1.983-1.745 2.935-2.22 1.626-.794 2.539-.873 12.377-1.032 13.566-.238 13.804-.357 8.37-4.92-5.276-4.442-12.059-7.735-20.39-9.916-5.712-1.508-7.815-2.658-12.297-6.784-5.594-5.077-9.124-7.1-15.035-8.648-1.666-.436-3.134-.872-3.332-.991-.159-.12-.436-1.349-.555-2.698-.278-3.054-2.063-8.211-3.888-11.226-3.015-5.038-8.727-10.155-14.439-12.892-3.967-1.944-7.418-2.777-11.504-2.777-6.506 0-8.807-.754-17.336-5.475-5.633-3.094-12.495-5.038-19.675-5.474-2.896-.198-3.967-.119-4.324.278Zm45.103 20.27c2.38 1.23 3.57 3.055 3.57 5.554 0 2.5-.674 3.73-3.213 6.03-2.221 1.983-3.768 2.34-5.831 1.27-1.23-.675-3.729-3.214-4.403-4.483-1.071-2.142-.08-7.022 1.705-8.172 2.023-1.349 5.752-1.428 8.172-.198Zm34.036 31.815c1.23.635 3.332 2.817 4.007 4.086.238.476.436 1.944.436 3.292 0 2.262-.119 2.579-1.349 3.809-1.348 1.348-1.388 1.348-4.958 1.348-5.475 0-7.18-1.309-7.18-5.434.039-5.276 5.038-9.203 9.044-7.101ZM52.874 84.222c2.102.913 2.776 2.3 2.776 5.831 0 3.412-.555 4.562-2.935 6.189-2.46 1.666-7.1 1.666-8.965 0-2.023-1.825-2.261-6.784-.476-9.481 1.467-2.182 3.252-3.094 5.91-3.094 1.27 0 2.936.238 3.69.555Z\" fill=\"#EEE\"/><path d=\"M95.517 36.58c-2.102 1.07-2.3 4.403-.396 5.434 3.253 1.746 6.585-2.856 3.729-5.117-1.23-.952-1.944-1.031-3.333-.317Zm35.028 32.608c-2.459 1.03-2.34 4.76.199 5.672 1.348.476 3.371-.238 3.808-1.309 1.11-2.975-1.19-5.554-4.007-4.364ZM47.637 88.03c-1.944.794-2.34 3.809-.674 5.118 1.428 1.11 2.975 1.07 4.125-.159 1.31-1.389 1.23-3.213-.158-4.443-1.15-.952-1.865-1.071-3.293-.516Zm-21.54-73.506c-.436.595-.714 1.309-.595 1.626.119.278.198.714.198.913 0 .198 3.015 1.864 6.665 3.689l6.704 3.372 1.23-.754c1.388-.873 1.943-2.182 1.269-2.975-.278-.318-1.23-.794-2.103-1.032-2.023-.515-4.601-1.824-8.33-4.165-1.547-.952-3.134-1.745-3.53-1.745-.358 0-1.032.476-1.508 1.07Zm4.998 16.343c-3.054 1.032-5.712 2.143-5.95 2.5-.555.912.317 2.618 1.587 3.134.872.317 2.023.079 6.585-1.468 3.292-1.071 5.633-2.063 5.831-2.46.198-.396.159-1.23-.159-2.063-.357-1.03-.714-1.428-1.428-1.467-.515-.04-3.45.793-6.466 1.825Zm397.909 9.784c-11.937 5.649-17.053 20.25-12.577 35.492 4.37 14.816 23.662 22.596 36.558 14.709 3.731-2.238 3.731-3.73.213-10.019-1.811-3.09-2.131-3.198-7.887-2.878-7.354.533-10.871-1.385-13.216-6.928-2.025-4.903-1.066-9.912 2.345-13.11 2.877-2.664 6.821-3.197 13.536-1.705 3.837.853 3.943.746 5.542-2.984.853-2.132 2.132-3.837 2.665-3.837.639 0 1.172-1.386 1.172-3.198 0-4.476-4.689-6.715-15.454-7.14-6.715-.32-9.38 0-12.897 1.598Zm-151.456-.107c-4.05.533-6.182 3.518-5.009 7.035.426 1.279 1.066 11.937 1.385 23.662l.64 21.316h13.856l.32-23.981c.106-13.216 0-25.047-.32-26.433-.64-2.451-2.132-2.664-10.872-1.599Zm30.057 0c-4.05.214-8.1.96-8.846 1.706-1.279 1.066-1.386 5.116-.747 25.26.533 16.094 1.173 24.194 2.026 24.727 1.918 1.28 11.83.96 13.749-.532 1.172-.853 1.812-3.198 2.025-7.674l.32-6.396 1.812 3.73c.959 2.026 2.344 5.224 2.984 7.142.746 1.918 2.238 3.73 3.304 4.05 2.984.96 16.947-.64 16.947-1.918 0-.64-2.132-4.583-4.796-8.847-2.665-4.157-4.797-8.313-4.797-9.166 0-.853.96-2.451 2.239-3.624 3.943-3.517 5.542-7.78 5.009-13.43-1.172-12.15-9.699-16.307-31.229-15.028Zm15.241 14.39c.747.745 1.279 2.237 1.279 3.516 0 3.198-2.025 4.797-6.075 4.797-3.41 0-3.517-.107-3.517-4.797 0-4.69.107-4.796 3.517-4.796 1.919 0 4.05.533 4.796 1.28Zm26.114-13.857c-1.279 2.026-1.066 48.496.213 49.775.639.64 6.075 1.386 12.257 1.812 13.003.853 16.201-.107 23.448-6.715 6.182-5.436 8.527-10.871 8.527-19.611 0-13.43-7.248-22.276-20.571-25.154-8.633-1.812-22.702-1.812-23.874-.107Zm25.793 15.349c2.238 2.344 2.664 3.943 2.664 9.06 0 3.41-.532 7.46-1.279 8.952-1.918 4.157-9.272 7.461-10.871 4.903-.32-.533-.853-6.502-1.279-13.323l-.533-12.364h4.37c3.304 0 5.009.64 6.928 2.771Zm104.772-15.349c-2.772 2.132-16.841 44.446-16.841 50.521 0 1.386 1.173 1.492 7.781.853 8.846-.853 9.273-.96 9.273-3.518 0-3.304 2.664-4.476 9.166-4.156 4.476.213 6.288.746 6.928 2.131.533 1.066 1.386 2.772 1.918 3.73.64 1.493 2.452 2.026 7.568 2.239 3.73.213 7.141-.107 7.567-.533.533-.533-1.172-7.141-3.624-14.709-2.558-7.674-5.755-18.332-7.141-23.768-1.279-5.435-3.091-10.658-3.943-11.51-.853-.747-3.304-1.493-5.436-1.493s-5.649-.32-7.674-.64c-2.345-.32-4.37 0-5.542.853Zm11.297 22.383c2.132 10.552 1.386 13.11-3.837 12.364-3.09-.427-3.623-3.73-1.918-10.02 1.492-5.222 4.903-6.608 5.755-2.344Zm34.001-22.916c-6.182.64-6.821 2.132-5.649 14.283.533 5.542.639 15.774.32 22.915-.427 7.994-.213 13.11.426 13.536.533.32 4.263.96 8.1 1.386l7.142.746v-6.928c0-3.837.319-7.248.746-7.567.319-.427 2.664 2.558 5.116 6.501l4.476 7.141 7.141.96c5.756.746 7.568.64 8.74-.64 1.279-1.279.746-2.664-3.837-9.912-2.878-4.69-5.329-9.06-5.329-9.913 0-.852 1.599-3.41 3.624-5.755 2.025-2.238 3.943-5.755 4.263-7.567 1.279-6.822-2.558-13.963-9.273-17.48-3.197-1.599-17.906-2.558-26.006-1.706Zm18.226 13.75c2.025 1.918 2.238 5.862.426 7.674-.746.746-2.878 1.279-4.796 1.279-3.411 0-3.517-.107-3.517-4.583 0-2.558.319-5.01.746-5.33 1.279-1.385 5.435-.746 7.141.96Zm37.411-13.536-13.856.64-.32 4.156c-.213 2.345-.106 5.33.213 6.715.64 2.238 1.279 2.451 6.395 2.451 3.411 0 6.182.533 6.928 1.386.64.852 1.279 8.207 1.386 18.972l.32 17.48h6.927c8.101 0 8.207-.214 8.421-13.857.106-4.69.426-11.724.746-15.56l.746-7.142 4.157-.533c6.288-.852 7.354-2.238 7.034-9.166l-.32-5.969-7.461-.106c-4.05 0-13.642.213-21.316.533Zm36.451.639c-.426.96-.746 12.684-.746 26.113 0 21.21.213 24.408 1.705 24.94.96.32 8.74.64 17.48.64 11.298 0 15.988-.426 16.84-1.385 1.706-2.239 2.665-11.085 1.173-12.044-.746-.427-5.543-.64-10.765-.533l-9.486.213.32-3.517c.319-3.518.319-3.518 6.714-3.837 6.928-.32 7.994-1.173 7.994-6.395 0-3.198-.213-3.411-3.943-3.518-8.314-.32-10.446-1.172-10.446-4.69v-3.197h19.079l.959-3.41c1.492-5.01.213-8.527-3.197-9.273-1.706-.32-9.7-.853-18.013-1.28-13.536-.639-15.135-.532-15.668 1.173Zm46.045.746c-1.812 3.41-1.812 46.364.106 49.775 1.279 2.451 1.492 2.451 13.643 1.705 6.928-.426 12.79-1.066 13.216-1.386.427-.426.853-3.623 1.066-7.14l.32-6.396-12.79-1.066-.32-17.586c-.107-9.592-.64-17.8-1.066-18.226-.426-.426-3.517-1.065-6.821-1.385-5.543-.746-6.182-.533-7.354 1.705Zm-438.7-.107c-1.065 1.066-1.385 7.568-1.385 25.048 0 19.93.213 23.874 1.599 24.94 2.664 2.239 29.523.746 33.893-1.812 7.141-4.156 9.593-16.413 4.477-22.489-2.345-2.771-2.452-3.197-.853-4.69 2.665-2.77 2.878-10.445.426-14.388-3.623-5.862-7.46-7.035-23.022-7.568-10.338-.32-14.175-.106-15.135.96Zm22.49 11.938c1.172.853 1.812 2.451 1.492 4.05-.32 2.238-.853 2.558-5.116 2.558-4.157 0-4.796-.32-5.116-2.451-.746-4.797 4.476-7.248 8.74-4.157Zm1.492 18.013c1.812 1.812 1.599 5.862-.427 6.608-4.689 1.812-10.018.213-10.018-2.985 0-3.304 2.025-4.902 5.862-4.902 1.812 0 3.837.532 4.583 1.279Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rgkoko\",\"data-framer-name\":\"Logo/Vivgrid\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rq2ky7\",\"data-framer-name\":\"Vivgrid\",fill:\"black\",intrinsicHeight:139,intrinsicWidth:452,svg:'<svg width=\"452\" height=\"139\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.026 7.675C52.135 21.65 21.73 41.465 23.416 57.582c1.154 11.028 12.085 14.44 22.594 17.72 18.224 5.69 35.177 10.982-2.343 54.909L6.345 108.663A11.69 11.69 0 0 1 .5 98.539V41.14a11.69 11.69 0 0 1 5.845-10.124l49.71-28.7a11.69 11.69 0 0 1 11.69 0l9.28 5.359Z\" fill=\"#EEE\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m49.63 133.749 6.373 3.679a11.687 11.687 0 0 0 11.69 0l49.71-28.699a11.692 11.692 0 0 0 5.845-10.124v-57.4a11.69 11.69 0 0 0-5.845-10.124l-32.84-18.96c-32.01 18.79-40.917 36.428-2.217 47.837 33.818 9.97 4.12 38.443-24.987 66.351-2.596 2.489-5.188 4.973-7.729 7.44Z\" fill=\"#EEE\"/><path d=\"M181.248 48.033h12.515l11.615 42.206 11.614-42.206h12.433l-12.678 44.414h-22.821l-12.678-44.414Zm52.625 0h12.514v44.414h-12.514V48.033Zm-.164-17.75h12.923v11.78h-12.923v-11.78Zm17.195 17.75h12.515l11.615 42.206 11.614-42.206h12.433l-12.678 44.414h-22.821l-12.678-44.414Zm73.579 61.428c-3.653 0-7.034-.546-10.142-1.636-3.108-1.036-5.699-2.672-7.771-4.908-2.072-2.181-3.299-4.908-3.68-8.18h12.596c.436 2.018 1.472 3.545 3.108 4.581 1.636 1.091 3.599 1.636 5.889 1.636 2.781 0 5.044-.763 6.789-2.29 1.745-1.527 2.617-3.79 2.617-6.79v-9.487c-1.254 2.89-3.189 5.234-5.807 7.034-2.617 1.745-5.589 2.617-8.915 2.617-3.599 0-6.789-.927-9.57-2.78-2.781-1.91-4.935-4.554-6.462-7.935-1.527-3.435-2.29-7.361-2.29-11.778 0-4.417.763-8.316 2.29-11.697 1.527-3.435 3.681-6.08 6.462-7.934 2.781-1.908 5.971-2.862 9.57-2.862 3.708 0 6.816 1.008 9.324 3.026 2.563 2.018 4.362 4.608 5.398 7.77v-9.815h12.433V91.63c0 4.2-1.063 7.634-3.19 10.306-2.072 2.672-4.771 4.581-8.097 5.726-3.272 1.2-6.789 1.8-10.552 1.8Zm-10.878-39.916c0 4.417.872 7.852 2.617 10.306 1.799 2.454 4.39 3.68 7.77 3.68 3.327 0 5.89-1.226 7.689-3.68 1.8-2.454 2.699-5.89 2.699-10.306 0-4.417-.899-7.852-2.699-10.306-1.799-2.454-4.362-3.68-7.689-3.68-3.38 0-5.971 1.226-7.77 3.68-1.745 2.454-2.617 5.89-2.617 10.306Zm41.406-21.512h12.433v11.615c.927-3.763 2.617-6.789 5.071-9.08 2.454-2.344 5.698-3.516 9.733-3.516V59.32h-3.19c-3.98 0-6.898.79-8.752 2.372-1.854 1.527-2.781 4.117-2.781 7.77v22.984h-12.514V48.033Zm32.312 0h12.514v44.414h-12.514V48.033Zm-.164-17.75h12.924v11.78h-12.924v-11.78Zm37.726 63.146c-3.599 0-6.789-.982-9.57-2.945-2.781-2.017-4.935-4.771-6.462-8.26-1.527-3.545-2.29-7.526-2.29-11.943s.763-8.37 2.29-11.86c1.527-3.544 3.681-6.325 6.462-8.343 2.781-2.018 5.971-3.026 9.57-3.026 2.508 0 4.744.518 6.707 1.554 2.018.981 3.681 2.317 4.989 4.008a17.3 17.3 0 0 1 3.027 5.562V30.284h12.351v62.163h-12.351V83.45c-1.2 3-3.108 5.426-5.726 7.28-2.617 1.8-5.616 2.699-8.997 2.699Zm-5.562-23.148c0 4.58.872 8.18 2.617 10.797 1.8 2.563 4.363 3.844 7.689 3.844 3.326 0 5.889-1.281 7.689-3.844 1.854-2.617 2.781-6.216 2.781-10.797 0-4.58-.9-8.18-2.7-10.797-1.799-2.617-4.389-3.926-7.77-3.926-3.326 0-5.889 1.309-7.689 3.926-1.745 2.563-2.617 6.162-2.617 10.797Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-110ixpg\",\"data-framer-name\":\"Process\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hsk2wj\",\"data-border\":true,\"data-framer-name\":\"Container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dhb65\",\"data-framer-name\":\"Inner Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u8pi1e\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3upmz\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Set sail for effortless designs\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Set sail for effortless designs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Set sail for effortless designs\"})}),className:\"framer-ahdyf3\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Embark on your design journey by telling us your needs.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Embark on your design journey by telling us your needs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Embark on your design journey by telling us your needs.\"})}),className:\"framer-1o8bex8\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11yoqds-container\",nodeId:\"no0iySGZS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"ke7By49HW\"}},children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"no0iySGZS\",kTynE2FQc:\"regular\",layoutId:\"no0iySGZS\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"https://cal.com/calicastle/neuship-intro-call\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Book a free call\",Ud3HdUmNm:false,variant:\"q2rCK5lhb\",width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6uucmi\",\"data-framer-name\":\"Demo\",id:elementId4,ref:ref1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1utf7x5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TJhjis3N4\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{skewX:4,skewY:4,transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"TJhjis3N4\",layoutId:\"TJhjis3N4\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1914,intrinsicWidth:3422,pixelHeight:2166,pixelWidth:3174,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/KIp44dC8AjHhdHUvOhA3jeez4xQ.png?scale-down-to=1024\"},className:\"framer-zijqqm\",\"data-border\":true,\"data-framer-name\":\"Mockup 1 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1820,intrinsicWidth:3418,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/EPOooDc9OpZEv5VFwpN4lrWTQE0.png?scale-down-to=1024\"},className:\"framer-txszx0\",\"data-border\":true,\"data-framer-name\":\"Mockup 2 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1910,intrinsicWidth:3416,pixelHeight:1394,pixelWidth:1954,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/QZyyQsgpu38e9OVSIgi5teunuQ.webp?scale-down-to=1024\"},className:\"framer-1v4to7s\",\"data-border\":true,\"data-framer-name\":\"Mockup 3 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1986,intrinsicWidth:3426,pixelHeight:653,pixelWidth:1572,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/LgvTiAyNlcQHoXbtT09EzZdgSY.webp?scale-down-to=1024\"},className:\"framer-4ommwj\",\"data-border\":true,\"data-framer-name\":\"Mockup 4 (EXAMPLE ONLY)\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1legju3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"q1_LJ7oFR\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{skewX:4,skewY:4,transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"q1_LJ7oFR\",layoutId:\"q1_LJ7oFR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1984,intrinsicWidth:3411,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/iJSNpZAI5Wfphc92KcfMNpIZ00.png?scale-down-to=1024\"},className:\"framer-1gg8b21\",\"data-border\":true,\"data-framer-name\":\"Mockup 5 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:479,pixelWidth:900,src:\"https://framerusercontent.com/images/SYaZamCF5YBDEhyKPAFJ5Pj6tE.gif?scale-down-to=512\"},className:\"framer-3xqh0x\",\"data-border\":true,\"data-framer-name\":\"Mockup 6 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:526,pixelWidth:800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/tDANc1xb7lKZMnmOsetTFmwgrU.gif?scale-down-to=512\"},className:\"framer-1ay6eln\",\"data-border\":true,\"data-framer-name\":\"Mockup 7 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:2e3,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/mdrWwPn3jQiFbeCmkWgtWzGQ3k.png?scale-down-to=1024\"},className:\"framer-1xjlbpn\",\"data-border\":true,\"data-framer-name\":\"Mockup 8 (EXAMPLE ONLY)\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ho2k7b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GD4ovtuAB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{skewX:4,skewY:4,transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"GD4ovtuAB\",layoutId:\"GD4ovtuAB\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1832,intrinsicWidth:3418,pixelHeight:1080,pixelWidth:1920,src:\"https://framerusercontent.com/images/nUlLd0c5JIBld8i2TpUZzpvlo6g.png?scale-down-to=1024\"},className:\"framer-yjdz6\",\"data-border\":true,\"data-framer-name\":\"Mockup 9 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1828,intrinsicWidth:3422,pixelHeight:2194,pixelWidth:3174,src:\"https://framerusercontent.com/images/CcBG7IrwWdjBdWv85lXqZ0cWJM.jpg?scale-down-to=1024\"},className:\"framer-jnk2xw\",\"data-border\":true,\"data-framer-name\":\"Mockup 10 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1800,intrinsicWidth:2880,pixelHeight:2194,pixelWidth:3174,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9MELAxmJCn91ZWAcyBW2HTUG7yQ.png?scale-down-to=1024\"},className:\"framer-n4dk59\",\"data-border\":true,\"data-framer-name\":\"Mockup 11 (EXAMPLE ONLY)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1832,intrinsicWidth:3422,pixelHeight:1080,pixelWidth:1920,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/KUpdkUkJSknJt1xzeWrFCPJ9BE4.png?scale-down-to=1024\"},className:\"framer-1iyow1e\",\"data-border\":true,\"data-framer-name\":\"Mockup 12 (EXAMPLE ONLY)\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-skephz\",\"data-framer-name\":\"Attitude\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref2,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mhwl1p\",\"data-framer-name\":\"Container\",id:elementId5,ref:ref2,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m0sf4h\",\"data-framer-name\":\"Inner Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b9n7rm\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dj5i62-container\",nodeId:\"spTyZrkcu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"DW9fRBOfw\"}},children:/*#__PURE__*/_jsx(ElementsBadge,{crA6wBj3k:false,dI2V912ba:\"rgba(13, 13, 13, 0.4)\",height:\"100%\",id:\"spTyZrkcu\",kdP_WncMn:false,layoutId:\"spTyZrkcu\",nQWOpC8zj:8,variant:\"aRB94otF7\",width:\"100%\",YbsaeEF4R:\"Our Attitude\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-48qkl0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Design that delivers results\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Design that delivers results\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Design that delivers results\"})}),className:\"framer-ubrd2e\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Neuship ditches unreliable freelancers and pricey agencies\u2014just one flat monthly fee for high-converting designs delivered at lightning speed.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Neuship ditches unreliable freelancers and pricey agencies\u2014just one flat monthly fee for high-converting designs delivered at lightning speed.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Neuship ditches unreliable freelancers and pricey agencies\u2014just one flat monthly fee for high-converting designs delivered at lightning speed.\"})}),className:\"framer-250we9\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-182kdtz\",\"data-framer-name\":\"Testimonial + Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t15uo1\",\"data-framer-name\":\"Benefits\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e09niz\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Custom-Tailored Designs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Custom-Tailored Designs\"})}),className:\"framer-1p6qfjf\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Every project is unique. We chart a course that reflects your brand\u2019s personality and goals, ensuring your design stands out in a crowded market.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Every project is unique. We chart a course that reflects your brand\u2019s personality and goals, ensuring your design stands out in a crowded market.\"})}),className:\"framer-1xpqfqp\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgy8wp\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Fast Turnaround\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Fast Turnaround\"})}),className:\"framer-o236jq\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"We deliver quality designs in just a few business days, helping you seize opportunities and keep your project moving at high tide.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"We deliver quality designs in just a few business days, helping you seize opportunities and keep your project moving at high tide.\"})}),className:\"framer-13tlwcl\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1osn1u8\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Collaborative Partnership\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Collaborative Partnership\"})}),className:\"framer-o76hds\",\"data-framer-name\":\"Subscribe & request\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Consider us your co-captain. We work closely with you throughout the process, refining every detail until your design is shipshape and ready to launch.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Consider us your co-captain. We work closely with you throughout the process, refining every detail until your design is shipshape and ready to launch.\"})}),className:\"framer-184r68d\",\"data-framer-name\":\"Invite your entire team, so anyone can submit requests and track their progress.\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b1go8t\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Results-Driven Approach\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Results-Driven Approach\"})}),className:\"framer-1xfaelg\",\"data-framer-name\":\"Subscribe & request\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Our designs don\u2019t just look good\u2014they\u2019re engineered to convert, boosting user engagement and driving business success.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Our designs don\u2019t just look good\u2014they\u2019re engineered to convert, boosting user engagement and driving business success.\"})}),className:\"framer-50pgfx\",\"data-framer-name\":\"Invite your entire team, so anyone can submit requests and track their progress.\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k8p3mv\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e15lv5\",\"data-border\":true,\"data-framer-name\":\"Cards/Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/BjvHApcJg6HXb8bVrwpwFtE5r8.jpg\"},className:\"framer-1d5w81m\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g4xmv9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k75n4u\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fzejrv\",\"data-framer-name\":\"Information\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\"We're consistently impressed by their work quality and speed. They often suggest optimizations that have saved us significant development time and cost. We wouldn't have reached the market so quickly with such a high-quality product without Neuship.\"})}),className:\"framer-b0h9fa\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w8j5ue\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:384,pixelHeight:1024,pixelWidth:768,sizes:\"38px\",src:\"https://framerusercontent.com/images/CbGg0OLGb4DmYZ9J8Cw6NQjI0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CbGg0OLGb4DmYZ9J8Cw6NQjI0.jpg 768w\"},className:\"framer-rxwbph\",\"data-border\":true,\"data-framer-name\":\"VsbbRoWRiDsFRtYkTcE2LC9D0rY\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tvm5ah\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-db045c8d-82bf-47c4-8c5a-9446a159a946, rgb(252, 252, 250))\"},children:\"Nathan Wheeler\"})}),className:\"framer-t97wt\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"Head of Product, Live Aware\"})}),className:\"framer-3vs885\",\"data-framer-name\":\"Category\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qyykk\",\"data-border\":true,\"data-framer-name\":\"Cards/Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/BjvHApcJg6HXb8bVrwpwFtE5r8.jpg\"},className:\"framer-1ngdixn\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b3f9p2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xwpzul\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2kn4qq\",\"data-framer-name\":\"Information\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(176, 176, 176)\"},children:\"Design used to be such a hassle, but I\u2019m so glad we found Neuship. The work is amazing, and the whole process is so easy and stress-free.\"})}),className:\"framer-tviqq0\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1re3yhd\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:384,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/WZDPr4Xtv4w3TVWruK7LjxhiZu8.png\"},className:\"framer-2vq7rf\",\"data-border\":true,\"data-framer-name\":\"VsbbRoWRiDsFRtYkTcE2LC9D0rY\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-en0uc5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-db045c8d-82bf-47c4-8c5a-9446a159a946, rgb(252, 252, 250))\"},children:\"Xiangyi Li\"})}),className:\"framer-12zbovj\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"CEO, BenchFlow\"})}),className:\"framer-14j2cml\",\"data-framer-name\":\"Category\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lmb2wj\",\"data-framer-name\":\"What We Offer\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref9,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cpht7g\",\"data-framer-name\":\"Container\",id:elementId6,ref:ref9,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7md027\",\"data-framer-name\":\"Inner Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xca420\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lzdi56-container\",nodeId:\"WzwS_8Rsi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"DW9fRBOfw\"}},children:/*#__PURE__*/_jsx(ElementsBadge,{crA6wBj3k:false,dI2V912ba:\"rgba(13, 13, 13, 0.4)\",height:\"100%\",id:\"WzwS_8Rsi\",kdP_WncMn:false,layoutId:\"WzwS_8Rsi\",nQWOpC8zj:8,variant:\"aRB94otF7\",width:\"100%\",YbsaeEF4R:\"What We Offer\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujqgg0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"All your design needs.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"All your design needs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"All your design needs.\"})}),className:\"framer-5np5kh\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"A successful business goes beyond just having a website. That\u2019s why we handle all your design needs, so you don't worry about finding other help.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"A successful business goes beyond just having a website. That\u2019s why we handle all your design needs, so you don't worry about finding other help.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"A successful business goes beyond just having a website. That\u2019s why we handle all your design needs, so you don't worry about finding other help.\"})}),className:\"framer-tgspxs\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bpvgwv\",\"data-framer-name\":\"Categories\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17wy01c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xDXVJIIlO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:24,height:\"100%\",hoverFactor:.5,id:\"xDXVJIIlO\",layoutId:\"xDXVJIIlO\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"161.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kypk3j-container\",\"data-framer-name\":\"Category 1\",inComponentSlot:true,name:\"Category 1\",nodeId:\"IOvXwNUlp\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"IOvXwNUlp\",layoutId:\"IOvXwNUlp\",name:\"Category 1\",width:\"100%\",wKmwyMQI0:\"Logos\",ZUyAXbAM4:\"MagicWand\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"266.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ewcju7-container\",\"data-framer-name\":\"Category 2\",inComponentSlot:true,name:\"Category 2\",nodeId:\"f6iZccTvk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"f6iZccTvk\",layoutId:\"f6iZccTvk\",name:\"Category 2\",width:\"100%\",wKmwyMQI0:\"Landing Pages\",ZUyAXbAM4:\"Desktop\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"197.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vtxqzr-container\",\"data-framer-name\":\"Category 3\",inComponentSlot:true,name:\"Category 3\",nodeId:\"yUTxjsyg0\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"yUTxjsyg0\",layoutId:\"yUTxjsyg0\",name:\"Category 3\",width:\"100%\",wKmwyMQI0:\"Websites\",ZUyAXbAM4:\"Laptop\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"223px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-eow8d7-container\",\"data-framer-name\":\"Category 5\",inComponentSlot:true,name:\"Category 5\",nodeId:\"IWd8m1y9u\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"IWd8m1y9u\",layoutId:\"IWd8m1y9u\",name:\"Category 5\",width:\"100%\",wKmwyMQI0:\"Illustrations\",ZUyAXbAM4:\"Pinwheel\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18xe2y2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GHoefdyKL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:24,height:\"100%\",hoverFactor:.5,id:\"GHoefdyKL\",layoutId:\"GHoefdyKL\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"230.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-txcj27-container\",\"data-framer-name\":\"Category 6\",inComponentSlot:true,name:\"Category 6\",nodeId:\"An28tLRL6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"An28tLRL6\",layoutId:\"An28tLRL6\",name:\"Category 6\",width:\"100%\",wKmwyMQI0:\"Pitch Decks\",ZUyAXbAM4:\"Presentation\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"239.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q93dl5-container\",\"data-framer-name\":\"Category 7\",inComponentSlot:true,name:\"Category 7\",nodeId:\"uh7CLo_G_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"uh7CLo_G_\",layoutId:\"uh7CLo_G_\",name:\"Category 7\",width:\"100%\",wKmwyMQI0:\"Mobile Apps\",ZUyAXbAM4:\"DeviceMobile\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"316.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18vsbqi-container\",\"data-framer-name\":\"Category 8\",inComponentSlot:true,name:\"Category 8\",nodeId:\"km1F5ShSZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"km1F5ShSZ\",layoutId:\"km1F5ShSZ\",name:\"Category 8\",width:\"100%\",wKmwyMQI0:\"SaaS Development\",ZUyAXbAM4:\"Drop\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"275px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t2ezid-container\",\"data-framer-name\":\"Category 9\",inComponentSlot:true,name:\"Category 9\",nodeId:\"Eu7NPjVuT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"Eu7NPjVuT\",layoutId:\"Eu7NPjVuT\",name:\"Category 9\",width:\"100%\",wKmwyMQI0:\"Product Design\",ZUyAXbAM4:\"ChartLine\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:\"241.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-k7nf0g-container\",\"data-framer-name\":\"Category 10\",inComponentSlot:true,name:\"Category 10\",nodeId:\"UYsOrbZDO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ElementsCategory,{height:\"100%\",id:\"UYsOrbZDO\",layoutId:\"UYsOrbZDO\",name:\"Category 10\",width:\"100%\",wKmwyMQI0:\"Social Media\",ZUyAXbAM4:\"IceCream\"})})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lkxobu\",\"data-framer-name\":\"Pricing\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1186zzq\",\"data-framer-name\":\"Container\",id:elementId7,ref:ref3,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mf5qe2\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gdbjw3-container\",nodeId:\"Em70rMTEa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"DW9fRBOfw\"}},children:/*#__PURE__*/_jsx(ElementsBadge,{crA6wBj3k:false,dI2V912ba:\"rgba(13, 13, 13, 0.4)\",height:\"100%\",id:\"Em70rMTEa\",kdP_WncMn:false,layoutId:\"Em70rMTEa\",nQWOpC8zj:8,variant:\"aRB94otF7\",width:\"100%\",YbsaeEF4R:\"Plans\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19j0b8m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Small prices, big value\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Small prices, big value\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Small prices, big value\"})}),className:\"framer-1wt8e51\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"We keep our designs affordable without compromising on quality.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"We keep our designs affordable without compromising on quality.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"We keep our designs affordable without compromising on quality.\"})}),className:\"framer-jfrm6\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sw58pd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 24px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:577,width:\"450px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1db4ifi-container\",nodeId:\"lvoIp6jP8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"sZMU0kDxl\"}},children:/*#__PURE__*/_jsx(ElementsPricingCard,{fmRLPX2Nk:\"One request at a time. Pause or cancel anytime.\",height:\"100%\",id:\"lvoIp6jP8\",iSYhn5PdV:\"2 spots left\",IXYLBigdk:2500,layoutId:\"lvoIp6jP8\",style:{width:\"100%\"},variant:\"dspS3xlx8\",width:\"100%\",wYbL98Ds0:2500})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1200px) - 24px) / 2, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:577,width:\"450px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-q4p3im-container\",nodeId:\"fb6Zmb9Yp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"m7BN_LB8h\"}},children:/*#__PURE__*/_jsx(ElementsPricingCard,{fmRLPX2Nk:\"A custom plan for your needs. Talk to us.\",height:\"100%\",id:\"fb6Zmb9Yp\",iSYhn5PdV:\"Priority support\",IXYLBigdk:2999,layoutId:\"fb6Zmb9Yp\",style:{width:\"100%\"},variant:\"miyN0DMhG\",width:\"100%\",wYbL98Ds0:2999})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qo4v69\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-af401efc-9628-428f-bfa1-a5e362ba0ec5, rgb(153, 153, 153))\"},children:\"Designs trusted by companies like:\"})}),className:\"framer-u26itp\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-itfvcw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yD_D_Pv09\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"yD_D_Pv09\",layoutId:\"yD_D_Pv09\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dnb876\",\"data-framer-name\":\"Logo/LAL\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c64b23\",\"data-framer-name\":\"Live Aware Labs\",fill:\"black\",intrinsicHeight:120,intrinsicWidth:755,svg:'<svg width=\"755\" height=\"120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M124.936 74.963 90.344 15.412C85 6.257 75.203.524 64.517.524 53.83.524 44.033 6.276 38.69 15.431L12.746 60.095 4.088 74.963c-5.342 9.155-5.342 20.61 0 29.766 5.343 9.154 15.142 14.887 25.827 14.887H99.11c10.685 0 20.484-5.723 25.827-14.887 5.342-9.155 5.342-20.602 0-29.766Zm-62.33 17.812-4.836 8.268c-1.267 2.291-3.685 3.686-6.357 3.686H29.79c-5.343 0-10.18-2.799-12.85-7.508a14.83 14.83 0 0 1 0-14.887l4.328-7.38L47.211 30.29l6.484-11.193c1.267-2.29 3.685-3.685 6.356-3.685h9.545c1.531 0 2.418 1.657 1.658 2.925L64.38 30.29 38.437 74.953l-5.85 10.179c-1.268 2.164.253 4.709 2.798 4.709h25.564c1.53.01 2.417 1.657 1.657 2.934Zm1.492-11.436c-6.25 0-11.32-5.07-11.32-11.32 0-6.249 5.07-11.319 11.32-11.319s11.319 5.07 11.319 11.32-5.07 11.32-11.32 11.32Zm47.48 16.019c-2.671 4.582-7.634 7.38-12.85 7.38H76.217c-1.531 0-2.418-1.657-1.658-2.925l4.836-8.267c1.267-2.292 3.685-3.686 6.357-3.686h7.38c2.418 0 3.939-2.671 2.798-4.709l-5.85-10.178-8.647-14.888-6.484-11.193a7.638 7.638 0 0 1 0-7.38l4.836-8.268c.76-1.267 2.671-1.267 3.305 0l6.864 11.953 17.296 29.776 4.328 7.507c2.672 4.572 2.672 10.295 0 14.878Zm82.3-11.42c-1.612 0-2.86-.442-3.744-1.326-.884-.936-1.326-2.21-1.326-3.822V35.784c0-1.664.416-2.912 1.248-3.744.884-.884 2.132-1.326 3.744-1.326s2.834.442 3.666 1.326c.884.832 1.326 2.08 1.326 3.744v41.652h22.62c1.404 0 2.47.364 3.198 1.092.78.728 1.17 1.768 1.17 3.12s-.39 2.418-1.17 3.198c-.728.728-1.794 1.092-3.198 1.092h-27.534Zm41.069.546c-1.56 0-2.756-.468-3.588-1.404-.832-.936-1.248-2.236-1.248-3.9V52.554c0-1.716.416-3.016 1.248-3.9.832-.936 2.028-1.404 3.588-1.404s2.756.468 3.588 1.404c.884.884 1.326 2.184 1.326 3.9V81.18c0 1.664-.416 2.964-1.248 3.9-.832.936-2.054 1.404-3.666 1.404Zm0-46.488c-1.82 0-3.25-.442-4.29-1.326-.988-.936-1.482-2.21-1.482-3.822 0-1.664.494-2.938 1.482-3.822 1.04-.884 2.47-1.326 4.29-1.326 1.872 0 3.302.442 4.29 1.326.988.884 1.482 2.158 1.482 3.822 0 1.612-.494 2.886-1.482 3.822-.988.884-2.418 1.326-4.29 1.326Zm28.929 46.566c-1.3 0-2.444-.338-3.432-1.014-.936-.676-1.716-1.716-2.34-3.12l-12.402-28.782c-.468-1.144-.65-2.21-.546-3.198.156-.988.624-1.768 1.404-2.34.832-.624 1.95-.936 3.354-.936 1.196 0 2.158.286 2.886.858.728.52 1.378 1.534 1.95 3.042l10.53 26.286h-2.34l10.842-26.364c.572-1.456 1.222-2.444 1.95-2.964.78-.572 1.82-.858 3.12-.858 1.144 0 2.054.312 2.73.936.676.572 1.092 1.352 1.248 2.34.156.936-.026 1.976-.546 3.12l-12.636 28.86c-.572 1.404-1.352 2.444-2.34 3.12-.936.676-2.08 1.014-3.432 1.014Zm42.165.156c-4.316 0-8.034-.806-11.154-2.418-3.12-1.612-5.538-3.9-7.254-6.864-1.664-2.964-2.496-6.474-2.496-10.53 0-3.952.806-7.41 2.418-10.374 1.664-2.964 3.926-5.278 6.786-6.942 2.912-1.716 6.214-2.574 9.906-2.574 2.704 0 5.122.442 7.254 1.326 2.184.884 4.03 2.158 5.538 3.822 1.56 1.664 2.73 3.692 3.51 6.084.832 2.34 1.248 4.992 1.248 7.956 0 .936-.338 1.664-1.014 2.184-.624.468-1.534.702-2.73.702h-25.038v-5.616h21.918l-1.248 1.17c0-2.392-.364-4.394-1.092-6.006-.676-1.612-1.69-2.834-3.042-3.666-1.3-.884-2.938-1.326-4.914-1.326-2.184 0-4.056.52-5.616 1.56-1.508.988-2.678 2.418-3.51 4.29-.78 1.82-1.17 4.004-1.17 6.552v.546c0 4.264.988 7.462 2.964 9.594 2.028 2.08 4.992 3.12 8.892 3.12 1.352 0 2.86-.156 4.524-.468a17.446 17.446 0 0 0 4.836-1.794c1.092-.624 2.054-.884 2.886-.78.832.052 1.482.338 1.95.858.52.52.832 1.17.936 1.95.104.728-.052 1.482-.468 2.262-.364.78-1.014 1.456-1.95 2.028-1.82 1.144-3.926 2.002-6.318 2.574-2.34.52-4.524.78-6.552.78Zm43.015-.156c-1.248 0-2.262-.286-3.042-.858-.728-.572-1.17-1.326-1.326-2.262-.156-.988.026-2.08.546-3.276l20.592-45.63c.676-1.508 1.482-2.574 2.418-3.198.988-.676 2.106-1.014 3.354-1.014 1.196 0 2.262.338 3.198 1.014.988.624 1.82 1.69 2.496 3.198l20.67 45.63c.572 1.196.78 2.288.624 3.276-.156.988-.598 1.768-1.326 2.34-.728.52-1.69.78-2.886.78-1.456 0-2.6-.338-3.432-1.014-.78-.728-1.482-1.82-2.106-3.276l-5.07-11.778 4.212 2.73h-32.916l4.212-2.73-4.992 11.778c-.676 1.508-1.378 2.6-2.106 3.276-.728.676-1.768 1.014-3.12 1.014Zm22.386-44.772-10.92 25.974-2.028-2.496h26.052l-1.95 2.496-10.998-25.974h-.156Zm45.148 44.772c-1.3 0-2.418-.312-3.354-.936-.936-.676-1.69-1.716-2.262-3.12l-11.31-28.86c-.468-1.248-.624-2.34-.468-3.276.208-.988.702-1.768 1.482-2.34.78-.572 1.82-.858 3.12-.858 1.144 0 2.08.286 2.808.858.728.52 1.352 1.534 1.872 3.042l9.438 25.974h-1.794l9.75-26.598c.416-1.144.962-1.976 1.638-2.496.728-.52 1.664-.78 2.808-.78s2.08.286 2.808.858c.728.52 1.274 1.326 1.638 2.418l9.594 26.598h-1.638l9.516-26.208c.52-1.404 1.17-2.366 1.95-2.886a5.052 5.052 0 0 1 2.73-.78c1.248 0 2.21.312 2.886.936.676.624 1.066 1.43 1.17 2.418.104.936-.078 1.976-.546 3.12l-11.232 28.86c-.52 1.352-1.274 2.366-2.262 3.042-.936.676-2.054 1.014-3.354 1.014-1.3 0-2.444-.338-3.432-1.014-.936-.676-1.664-1.69-2.184-3.042L427.744 55.44h4.446l-9.984 26.988c-.52 1.404-1.248 2.444-2.184 3.12-.936.676-2.08 1.014-3.432 1.014Zm61.992.156c-2.756 0-5.226-.52-7.41-1.56-2.132-1.092-3.822-2.548-5.07-4.368-1.196-1.82-1.794-3.874-1.794-6.162 0-2.808.728-5.018 2.184-6.63 1.456-1.664 3.822-2.86 7.098-3.588 3.276-.728 7.67-1.092 13.182-1.092h3.9v5.616h-3.822c-3.224 0-5.798.156-7.722.468-1.924.312-3.302.858-4.134 1.638-.78.728-1.17 1.768-1.17 3.12 0 1.716.598 3.12 1.794 4.212 1.196 1.092 2.86 1.638 4.992 1.638 1.716 0 3.224-.39 4.524-1.17a9.004 9.004 0 0 0 3.198-3.354c.78-1.404 1.17-3.016 1.17-4.836v-8.97c0-2.6-.572-4.472-1.716-5.616-1.144-1.144-3.068-1.716-5.772-1.716-1.508 0-3.146.182-4.914.546-1.716.364-3.536.988-5.46 1.872-.988.468-1.872.598-2.652.39a2.984 2.984 0 0 1-1.716-1.248 4.093 4.093 0 0 1-.624-2.184c0-.78.208-1.534.624-2.262.416-.78 1.118-1.352 2.106-1.716 2.392-.988 4.68-1.69 6.864-2.106 2.236-.416 4.264-.624 6.084-.624 3.744 0 6.812.572 9.204 1.716 2.444 1.144 4.264 2.886 5.46 5.226 1.196 2.288 1.794 5.252 1.794 8.892v18.72c0 1.612-.39 2.86-1.17 3.744-.78.832-1.898 1.248-3.354 1.248-1.456 0-2.6-.416-3.432-1.248-.78-.884-1.17-2.132-1.17-3.744v-3.744h.624c-.364 1.82-1.092 3.406-2.184 4.758-1.04 1.3-2.366 2.314-3.978 3.042-1.612.728-3.458 1.092-5.538 1.092Zm33.531-.156c-1.612 0-2.86-.416-3.744-1.248-.832-.884-1.248-2.132-1.248-3.744V52.086c0-1.612.416-2.834 1.248-3.666.832-.832 2.002-1.248 3.51-1.248s2.678.416 3.51 1.248c.832.832 1.248 2.054 1.248 3.666V57h-.78c.728-3.12 2.158-5.486 4.29-7.098s4.966-2.574 8.502-2.886c1.092-.104 1.95.182 2.574.858.676.624 1.066 1.612 1.17 2.964.104 1.3-.208 2.366-.936 3.198-.676.78-1.716 1.248-3.12 1.404l-1.716.156c-3.172.312-5.564 1.3-7.176 2.964-1.612 1.612-2.418 3.9-2.418 6.864V81.57c0 1.612-.416 2.86-1.248 3.744-.832.832-2.054 1.248-3.666 1.248Zm42.181.156c-4.316 0-8.034-.806-11.154-2.418-3.12-1.612-5.538-3.9-7.254-6.864-1.664-2.964-2.496-6.474-2.496-10.53 0-3.952.806-7.41 2.418-10.374 1.664-2.964 3.926-5.278 6.786-6.942 2.912-1.716 6.214-2.574 9.906-2.574 2.704 0 5.122.442 7.254 1.326 2.184.884 4.03 2.158 5.538 3.822 1.56 1.664 2.73 3.692 3.51 6.084.832 2.34 1.248 4.992 1.248 7.956 0 .936-.338 1.664-1.014 2.184-.624.468-1.534.702-2.73.702h-25.038v-5.616h21.918l-1.248 1.17c0-2.392-.364-4.394-1.092-6.006-.676-1.612-1.69-2.834-3.042-3.666-1.3-.884-2.938-1.326-4.914-1.326-2.184 0-4.056.52-5.616 1.56-1.508.988-2.678 2.418-3.51 4.29-.78 1.82-1.17 4.004-1.17 6.552v.546c0 4.264.988 7.462 2.964 9.594 2.028 2.08 4.992 3.12 8.892 3.12 1.352 0 2.86-.156 4.524-.468a17.446 17.446 0 0 0 4.836-1.794c1.092-.624 2.054-.884 2.886-.78.832.052 1.482.338 1.95.858.52.52.832 1.17.936 1.95.104.728-.052 1.482-.468 2.262-.364.78-1.014 1.456-1.95 2.028-1.82 1.144-3.926 2.002-6.318 2.574-2.34.52-4.524.78-6.552.78Zm47.539-.78c-1.612 0-2.86-.442-3.744-1.326-.884-.936-1.326-2.21-1.326-3.822V35.784c0-1.664.416-2.912 1.248-3.744.884-.884 2.132-1.326 3.744-1.326s2.834.442 3.666 1.326c.884.832 1.326 2.08 1.326 3.744v41.652h22.62c1.404 0 2.47.364 3.198 1.092.78.728 1.17 1.768 1.17 3.12s-.39 2.418-1.17 3.198c-.728.728-1.794 1.092-3.198 1.092h-27.534Zm48.791.78c-2.756 0-5.226-.52-7.41-1.56-2.132-1.092-3.822-2.548-5.07-4.368-1.196-1.82-1.794-3.874-1.794-6.162 0-2.808.728-5.018 2.184-6.63 1.456-1.664 3.822-2.86 7.098-3.588 3.276-.728 7.67-1.092 13.182-1.092h3.9v5.616h-3.822c-3.224 0-5.798.156-7.722.468-1.924.312-3.302.858-4.134 1.638-.78.728-1.17 1.768-1.17 3.12 0 1.716.598 3.12 1.794 4.212 1.196 1.092 2.86 1.638 4.992 1.638 1.716 0 3.224-.39 4.524-1.17a9.004 9.004 0 0 0 3.198-3.354c.78-1.404 1.17-3.016 1.17-4.836v-8.97c0-2.6-.572-4.472-1.716-5.616-1.144-1.144-3.068-1.716-5.772-1.716-1.508 0-3.146.182-4.914.546-1.716.364-3.536.988-5.46 1.872-.988.468-1.872.598-2.652.39a2.984 2.984 0 0 1-1.716-1.248 4.093 4.093 0 0 1-.624-2.184c0-.78.208-1.534.624-2.262.416-.78 1.118-1.352 2.106-1.716 2.392-.988 4.68-1.69 6.864-2.106 2.236-.416 4.264-.624 6.084-.624 3.744 0 6.812.572 9.204 1.716 2.444 1.144 4.264 2.886 5.46 5.226 1.196 2.288 1.794 5.252 1.794 8.892v18.72c0 1.612-.39 2.86-1.17 3.744-.78.832-1.898 1.248-3.354 1.248-1.456 0-2.6-.416-3.432-1.248-.78-.884-1.17-2.132-1.17-3.744v-3.744h.624c-.364 1.82-1.092 3.406-2.184 4.758-1.04 1.3-2.366 2.314-3.978 3.042-1.612.728-3.458 1.092-5.538 1.092Zm50.534 0c-3.224 0-6.057-.806-8.501-2.418-2.392-1.612-3.979-3.77-4.759-6.474l.858-1.95v5.694c0 1.612-.416 2.86-1.248 3.744-.832.832-2.002 1.248-3.51 1.248-1.56 0-2.756-.416-3.588-1.248-.832-.884-1.248-2.132-1.248-3.744V35.238c0-1.612.416-2.834 1.248-3.666.832-.832 2.028-1.248 3.588-1.248s2.757.416 3.589 1.248c.884.832 1.325 2.054 1.325 3.666v20.28h-.936c.832-2.548 2.444-4.602 4.836-6.162 2.392-1.56 5.174-2.34 8.346-2.34 3.38 0 6.318.806 8.814 2.418 2.496 1.612 4.446 3.9 5.85 6.864 1.404 2.912 2.106 6.422 2.106 10.53 0 4.056-.702 7.592-2.106 10.608-1.404 2.964-3.38 5.252-5.928 6.864-2.496 1.612-5.408 2.418-8.736 2.418Zm-2.73-7.41c1.924 0 3.614-.468 5.07-1.404 1.456-.936 2.574-2.314 3.354-4.134.832-1.872 1.248-4.186 1.248-6.942 0-4.16-.883-7.254-2.651-9.282-1.768-2.08-4.109-3.12-7.021-3.12-1.924 0-3.614.468-5.07 1.404-1.456.884-2.6 2.262-3.432 4.134-.78 1.82-1.17 4.108-1.17 6.864 0 4.108.884 7.228 2.652 9.36 1.768 2.08 4.108 3.12 7.02 3.12Zm39.906 7.41c-2.236 0-4.602-.234-7.098-.702-2.496-.468-4.732-1.274-6.708-2.418-.832-.52-1.43-1.118-1.794-1.794-.312-.728-.442-1.43-.39-2.106.104-.728.364-1.352.78-1.872a3.238 3.238 0 0 1 1.716-1.014c.728-.156 1.508-.026 2.34.39 2.08.988 4.03 1.69 5.85 2.106 1.82.364 3.614.546 5.382.546 2.496 0 4.342-.416 5.538-1.248 1.248-.884 1.872-2.028 1.872-3.432 0-1.196-.416-2.106-1.248-2.73-.78-.676-1.976-1.17-3.588-1.482l-7.8-1.482c-3.224-.624-5.694-1.794-7.41-3.51-1.664-1.768-2.496-4.03-2.496-6.786 0-2.496.676-4.654 2.028-6.474 1.404-1.82 3.328-3.224 5.772-4.212 2.444-.988 5.252-1.482 8.424-1.482 2.288 0 4.42.26 6.396.78a22.344 22.344 0 0 1 5.85 2.262c.78.416 1.3.962 1.56 1.638.312.676.39 1.378.234 2.106a4.545 4.545 0 0 1-.936 1.872c-.468.52-1.066.858-1.794 1.014-.676.104-1.456-.052-2.34-.468-1.612-.832-3.172-1.43-4.68-1.794-1.456-.364-2.86-.546-4.212-.546-2.548 0-4.446.442-5.694 1.326-1.196.884-1.794 2.054-1.794 3.51 0 1.092.364 2.002 1.092 2.73.728.728 1.846 1.222 3.354 1.482l7.8 1.482c3.38.624 5.928 1.768 7.644 3.432 1.768 1.664 2.652 3.9 2.652 6.708 0 3.796-1.482 6.786-4.446 8.97-2.964 2.132-6.916 3.198-11.856 3.198Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wjop3o\",\"data-framer-name\":\"Logo/VVS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tkxqk0\",\"data-framer-name\":\"VVS\",fill:\"black\",intrinsicHeight:147,intrinsicWidth:941,svg:'<svg width=\"941\" height=\"147\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M106.523 65.783c-7.563 0-14.341 4.71-16.98 11.772L63.5 146.763h20.477c7.563 0 14.341-4.709 16.981-11.772L127 65.783h-20.477Zm-86.046 0H0l26.042 69.208c2.64 7.063 9.418 11.772 16.981 11.772H63.5L37.458 77.555c-2.64-7.063-9.418-11.772-16.981-11.772ZM59.22 48.017l4.28 57.65 4.21-57.65 19.977 7.563L70.92 40.17l7.42-6.207-10.773.142L63.5 0l-4.067 34.104-10.773-.142 7.42 6.207L39.313 55.58l19.906-7.563ZM198.4 90.82l10.92-33.15h11.622l-15.99 43.212h-13.26L175.78 57.67h11.7l10.92 33.15Zm67.285-12.48c0 1.56-.104 2.964-.312 4.212h-31.59c.26 3.12 1.352 5.564 3.276 7.332 1.924 1.768 4.29 2.652 7.098 2.652 4.056 0 6.942-1.742 8.658-5.226h11.778c-1.248 4.16-3.64 7.592-7.176 10.296-3.536 2.652-7.878 3.978-13.026 3.978-4.16 0-7.904-.91-11.232-2.73-3.276-1.872-5.85-4.498-7.722-7.878-1.82-3.38-2.73-7.28-2.73-11.7 0-4.472.91-8.398 2.73-11.778 1.82-3.38 4.368-5.98 7.644-7.8 3.276-1.82 7.046-2.73 11.31-2.73 4.108 0 7.774.884 10.998 2.652 3.276 1.768 5.798 4.29 7.566 7.566 1.82 3.224 2.73 6.942 2.73 11.154Zm-11.31-3.12c-.052-2.808-1.066-5.044-3.042-6.708-1.976-1.716-4.394-2.574-7.254-2.574-2.704 0-4.992.832-6.864 2.496-1.82 1.612-2.938 3.874-3.354 6.786h20.514Zm28.641-10.842c1.404-2.288 3.224-4.082 5.46-5.382 2.288-1.3 4.888-1.95 7.8-1.95v11.466h-2.886c-3.432 0-6.032.806-7.8 2.418-1.716 1.612-2.574 4.42-2.574 8.424v21.528h-10.92V57.67h10.92v6.708Zm60.395-6.708-26.754 63.648h-11.622l9.36-21.528-17.316-42.12h12.246l11.154 30.186 11.31-30.186h11.622Zm39.371 33.15 10.92-33.15h11.622l-15.99 43.212h-13.26L360.162 57.67h11.7l10.92 33.15Zm67.285-12.48c0 1.56-.104 2.964-.312 4.212h-31.59c.26 3.12 1.352 5.564 3.276 7.332 1.924 1.768 4.29 2.652 7.098 2.652 4.056 0 6.942-1.742 8.658-5.226h11.778c-1.248 4.16-3.64 7.592-7.176 10.296-3.536 2.652-7.878 3.978-13.026 3.978-4.16 0-7.904-.91-11.232-2.73-3.276-1.872-5.85-4.498-7.722-7.878-1.82-3.38-2.73-7.28-2.73-11.7 0-4.472.91-8.398 2.73-11.778 1.82-3.38 4.368-5.98 7.644-7.8 3.276-1.82 7.046-2.73 11.31-2.73 4.108 0 7.774.884 10.998 2.652 3.276 1.768 5.798 4.29 7.566 7.566 1.82 3.224 2.73 6.942 2.73 11.154Zm-11.31-3.12c-.052-2.808-1.066-5.044-3.042-6.708-1.976-1.716-4.394-2.574-7.254-2.574-2.704 0-4.992.832-6.864 2.496-1.82 1.612-2.938 3.874-3.354 6.786h20.514Zm28.641-10.842c1.404-2.288 3.224-4.082 5.46-5.382 2.288-1.3 4.888-1.95 7.8-1.95v11.466h-2.886c-3.432 0-6.032.806-7.8 2.418-1.716 1.612-2.574 4.42-2.574 8.424v21.528h-10.92V57.67h10.92v6.708Zm60.395-6.708-26.754 63.648h-11.622l9.36-21.528-17.316-42.12h12.246l11.154 30.186 11.31-30.186h11.622Zm37.888 43.914c-3.536 0-6.708-.624-9.516-1.872-2.808-1.3-5.044-3.042-6.708-5.226-1.612-2.184-2.496-4.602-2.652-7.254h10.998c.208 1.664 1.014 3.042 2.418 4.134 1.456 1.092 3.25 1.638 5.382 1.638 2.08 0 3.692-.416 4.836-1.248 1.196-.832 1.794-1.898 1.794-3.198 0-1.404-.728-2.444-2.184-3.12-1.404-.728-3.666-1.508-6.786-2.34-3.224-.78-5.876-1.586-7.956-2.418-2.028-.832-3.796-2.106-5.304-3.822-1.456-1.716-2.184-4.03-2.184-6.942 0-2.392.676-4.576 2.028-6.552 1.404-1.976 3.38-3.536 5.928-4.68 2.6-1.144 5.642-1.716 9.126-1.716 5.148 0 9.256 1.3 12.324 3.9 3.068 2.548 4.758 6.006 5.07 10.374h-10.452c-.156-1.716-.884-3.068-2.184-4.056-1.248-1.04-2.938-1.56-5.07-1.56-1.976 0-3.51.364-4.602 1.092-1.04.728-1.56 1.742-1.56 3.042 0 1.456.728 2.574 2.184 3.354 1.456.728 3.718 1.482 6.786 2.262 3.12.78 5.694 1.586 7.722 2.418 2.028.832 3.77 2.132 5.226 3.9 1.508 1.716 2.288 4.004 2.34 6.864 0 2.496-.702 4.732-2.106 6.708-1.352 1.976-3.328 3.536-5.928 4.68-2.548 1.092-5.538 1.638-8.97 1.638Zm35.328-37.674c1.404-1.976 3.328-3.614 5.772-4.914 2.496-1.352 5.33-2.028 8.502-2.028 3.692 0 7.02.91 9.984 2.73 3.016 1.82 5.382 4.42 7.098 7.8 1.768 3.328 2.652 7.202 2.652 11.622s-.884 8.346-2.652 11.778c-1.716 3.38-4.082 6.006-7.098 7.878-2.964 1.872-6.292 2.808-9.984 2.808-3.172 0-5.98-.65-8.424-1.95-2.392-1.3-4.342-2.938-5.85-4.914v26.754h-10.92V57.67h10.92v6.24Zm22.854 15.21c0-2.6-.546-4.836-1.638-6.708-1.04-1.924-2.444-3.38-4.212-4.368-1.716-.988-3.588-1.482-5.616-1.482-1.976 0-3.848.52-5.616 1.56-1.716.988-3.12 2.444-4.212 4.368-1.04 1.924-1.56 4.186-1.56 6.786 0 2.6.52 4.862 1.56 6.786 1.092 1.924 2.496 3.406 4.212 4.446 1.768.988 3.64 1.482 5.616 1.482 2.028 0 3.9-.52 5.616-1.56 1.768-1.04 3.172-2.522 4.212-4.446 1.092-1.924 1.638-4.212 1.638-6.864Zm14.721 0c0-4.368.858-8.242 2.574-11.622 1.768-3.38 4.134-5.98 7.098-7.8 3.016-1.82 6.37-2.73 10.062-2.73 3.224 0 6.032.65 8.424 1.95 2.444 1.3 4.394 2.938 5.85 4.914V57.67h10.998v43.212h-10.998v-6.318c-1.404 2.028-3.354 3.718-5.85 5.07-2.444 1.3-5.278 1.95-8.502 1.95-3.64 0-6.968-.936-9.984-2.808-2.964-1.872-5.33-4.498-7.098-7.878-1.716-3.432-2.574-7.358-2.574-11.778Zm34.008.156c0-2.652-.52-4.914-1.56-6.786-1.04-1.924-2.444-3.38-4.212-4.368a11.042 11.042 0 0 0-5.694-1.56c-2.028 0-3.9.494-5.616 1.482-1.716.988-3.12 2.444-4.212 4.368-1.04 1.872-1.56 4.108-1.56 6.708 0 2.6.52 4.888 1.56 6.864 1.092 1.924 2.496 3.406 4.212 4.446 1.768 1.04 3.64 1.56 5.616 1.56 2.028 0 3.926-.494 5.694-1.482 1.768-1.04 3.172-2.496 4.212-4.368 1.04-1.924 1.56-4.212 1.56-6.864Zm17.296 0c0-4.472.91-8.372 2.73-11.7 1.82-3.38 4.342-5.98 7.566-7.8 3.224-1.872 6.916-2.808 11.076-2.808 5.356 0 9.776 1.352 13.26 4.056 3.536 2.652 5.902 6.396 7.098 11.232H719.84c-.624-1.872-1.69-3.328-3.198-4.368-1.456-1.092-3.276-1.638-5.46-1.638-3.12 0-5.59 1.144-7.41 3.432-1.82 2.236-2.73 5.434-2.73 9.594 0 4.108.91 7.306 2.73 9.594 1.82 2.236 4.29 3.354 7.41 3.354 4.42 0 7.306-1.976 8.658-5.928h11.778c-1.196 4.68-3.562 8.398-7.098 11.154-3.536 2.756-7.956 4.134-13.26 4.134-4.16 0-7.852-.91-11.076-2.73-3.224-1.872-5.746-4.472-7.566-7.8-1.82-3.38-2.73-7.306-2.73-11.778Zm88.34-.936c0 1.56-.104 2.964-.312 4.212h-31.59c.26 3.12 1.352 5.564 3.276 7.332 1.924 1.768 4.29 2.652 7.098 2.652 4.056 0 6.942-1.742 8.658-5.226h11.778c-1.248 4.16-3.64 7.592-7.176 10.296-3.536 2.652-7.878 3.978-13.026 3.978-4.16 0-7.904-.91-11.232-2.73-3.276-1.872-5.85-4.498-7.722-7.878-1.82-3.38-2.73-7.28-2.73-11.7 0-4.472.91-8.398 2.73-11.778 1.82-3.38 4.368-5.98 7.644-7.8 3.276-1.82 7.046-2.73 11.31-2.73 4.108 0 7.774.884 10.998 2.652 3.276 1.768 5.798 4.29 7.566 7.566 1.82 3.224 2.73 6.942 2.73 11.154Zm-11.31-3.12c-.052-2.808-1.066-5.044-3.042-6.708-1.976-1.716-4.394-2.574-7.254-2.574-2.704 0-4.992.832-6.864 2.496-1.82 1.612-2.938 3.874-3.354 6.786h20.514Zm34.256 26.364c-3.536 0-6.708-.624-9.516-1.872-2.808-1.3-5.044-3.042-6.708-5.226-1.612-2.184-2.496-4.602-2.652-7.254h10.998c.208 1.664 1.014 3.042 2.418 4.134 1.456 1.092 3.25 1.638 5.382 1.638 2.08 0 3.692-.416 4.836-1.248 1.196-.832 1.794-1.898 1.794-3.198 0-1.404-.728-2.444-2.184-3.12-1.404-.728-3.666-1.508-6.786-2.34-3.224-.78-5.876-1.586-7.956-2.418-2.028-.832-3.796-2.106-5.304-3.822-1.456-1.716-2.184-4.03-2.184-6.942 0-2.392.676-4.576 2.028-6.552 1.404-1.976 3.38-3.536 5.928-4.68 2.6-1.144 5.642-1.716 9.126-1.716 5.148 0 9.256 1.3 12.324 3.9 3.068 2.548 4.758 6.006 5.07 10.374h-10.452c-.156-1.716-.884-3.068-2.184-4.056-1.248-1.04-2.938-1.56-5.07-1.56-1.976 0-3.51.364-4.602 1.092-1.04.728-1.56 1.742-1.56 3.042 0 1.456.728 2.574 2.184 3.354 1.456.728 3.718 1.482 6.786 2.262 3.12.78 5.694 1.586 7.722 2.418 2.028.832 3.77 2.132 5.226 3.9 1.508 1.716 2.288 4.004 2.34 6.864 0 2.496-.702 4.732-2.106 6.708-1.352 1.976-3.328 3.536-5.928 4.68-2.548 1.092-5.538 1.638-8.97 1.638Zm48.744-44.538c3.276 0 6.188.728 8.736 2.184 2.548 1.404 4.524 3.51 5.928 6.318 1.456 2.756 2.184 6.084 2.184 9.984v25.35h-10.92V77.014c0-3.432-.858-6.058-2.574-7.878-1.716-1.872-4.056-2.808-7.02-2.808-3.016 0-5.408.936-7.176 2.808-1.716 1.82-2.574 4.446-2.574 7.878v23.868h-10.92v-57.72h10.92v19.89c1.404-1.872 3.276-3.328 5.616-4.368 2.34-1.092 4.94-1.638 7.8-1.638Zm31.21-4.524c-1.924 0-3.536-.598-4.836-1.794-1.248-1.248-1.872-2.782-1.872-4.602 0-1.82.624-3.328 1.872-4.524 1.3-1.248 2.912-1.872 4.836-1.872 1.924 0 3.51.624 4.758 1.872 1.3 1.196 1.95 2.704 1.95 4.524 0 1.82-.65 3.354-1.95 4.602-1.248 1.196-2.834 1.794-4.758 1.794Zm5.382 5.148v43.212h-10.919V57.67h10.919Zm20.149 6.24c1.404-1.976 3.328-3.614 5.772-4.914 2.496-1.352 5.33-2.028 8.502-2.028 3.692 0 7.02.91 9.984 2.73 3.016 1.82 5.383 4.42 7.099 7.8 1.768 3.328 2.651 7.202 2.651 11.622s-.883 8.346-2.651 11.778c-1.716 3.38-4.083 6.006-7.099 7.878-2.964 1.872-6.292 2.808-9.984 2.808-3.172 0-5.98-.65-8.424-1.95-2.392-1.3-4.342-2.938-5.85-4.914v26.754H895.74V57.67h10.919v6.24Zm22.854 15.21c0-2.6-.546-4.836-1.638-6.708-1.04-1.924-2.443-3.38-4.211-4.368-1.716-.988-3.589-1.482-5.617-1.482-1.976 0-3.848.52-5.616 1.56-1.716.988-3.12 2.444-4.212 4.368-1.04 1.924-1.56 4.186-1.56 6.786 0 2.6.52 4.862 1.56 6.786 1.092 1.924 2.496 3.406 4.212 4.446 1.768.988 3.64 1.482 5.616 1.482 2.028 0 3.901-.52 5.617-1.56 1.768-1.04 3.171-2.522 4.211-4.446 1.092-1.924 1.638-4.212 1.638-6.864Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yaec6w\",\"data-framer-name\":\"Logo/BenchFlow\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yvrm4i\",\"data-framer-name\":\"BenchFlow\",fill:\"black\",intrinsicHeight:119,intrinsicWidth:559,svg:'<svg width=\"559\" height=\"119\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M102.248 15.447 117.504 0 89.301 68.324 67.748 90.147 0 118.972l15.909-16.107 2.687 2.72 1.847-1.869-2.687-2.721L29.99 88.607l7.304 7.395 1.847-1.87-7.304-7.395 12.235-12.388 2.687 2.72 1.847-1.87-2.687-2.72L58.155 60.09l7.304 7.395 1.847-1.87-7.304-7.395 12.235-12.388 2.687 2.72 1.847-1.87-2.687-2.72 12.235-12.388 7.304 7.395 1.847-1.87-7.304-7.395L100.4 17.317l2.687 2.72 1.847-1.87-2.687-2.72ZM91.621 90.613V69.58l26.185-63.436v110.982L91.621 90.613Zm-1.852 1.875L115.954 119H6.694l62.31-26.512H89.77Z\" fill=\"#EEE\"/><path d=\"m504.047 86.435-6.598-41.037v-.137h9.485l5.292 33.488h1.581l6.117-33.488h16.29l6.117 33.488h1.581l5.292-33.488h8.866v.137l-6.598 41.037h-16.633l-6.255-33.694h-1.718l-6.186 33.694h-16.633Zm-29.594 1.029c-6.69 0-11.684-1.944-14.983-5.833-3.254-3.934-4.88-9.196-4.88-15.784 0-6.587 1.626-11.826 4.88-15.714 3.299-3.935 8.293-5.902 14.983-5.902 6.69 0 11.685 1.967 14.984 5.902 3.299 3.888 4.949 9.127 4.949 15.714 0 6.588-1.65 11.85-4.949 15.784-3.299 3.889-8.294 5.833-14.984 5.833Zm0-7.068c3.254 0 5.613-1.236 7.08-3.706 1.512-2.47 2.268-6.085 2.268-10.843 0-4.757-.756-8.372-2.268-10.842-1.467-2.47-3.826-3.706-7.08-3.706-3.207 0-5.567 1.236-7.079 3.706-1.512 2.47-2.268 6.085-2.268 10.842 0 4.758.756 8.373 2.268 10.843 1.512 2.47 3.872 3.706 7.079 3.706Zm-32.695 6.039a13.091 13.091 0 0 1-2.68-4.804c-.55-1.83-.825-4.323-.825-7.48V31.536h10.241v41.517c0 3.523.389 6.245 1.168 8.166.779 1.922 1.787 3.523 3.025 4.804v.412h-10.929Zm-43.64-.001V32.908h35.191v8.372h-24.743v13.04h18.97v7.754h-18.97v24.361h-10.448Zm-44.297.001v-54.9h10.173V50.34h1.649c.963-1.83 2.269-3.294 3.918-4.392 1.65-1.144 3.895-1.716 6.736-1.716 4.628 0 8.064 1.464 10.31 4.392 2.245 2.882 3.368 6.748 3.368 11.598v26.214h-10.173v-24.43c0-3.02-.55-5.33-1.649-6.931-1.054-1.647-2.773-2.47-5.155-2.47-2.841 0-5.064 1.12-6.667 3.362-1.558 2.196-2.337 4.94-2.337 8.235v22.234h-10.173Zm-23.555 1.029c-6.278 0-11.043-1.944-14.297-5.833-3.253-3.934-4.88-9.196-4.88-15.784 0-6.908 1.696-12.237 5.087-15.989 3.436-3.751 8.156-5.627 14.159-5.627 5.315 0 9.507 1.418 12.578 4.255 3.07 2.836 4.902 6.725 5.498 11.666h-10.035c-.321-2.745-1.168-4.85-2.543-6.314-1.375-1.51-3.162-2.264-5.361-2.264-2.933 0-5.155 1.258-6.667 3.774-1.466 2.47-2.2 5.97-2.2 10.5 0 4.529.734 8.051 2.2 10.567 1.512 2.471 3.711 3.706 6.598 3.706 2.245 0 4.055-.755 5.43-2.264 1.375-1.51 2.222-3.615 2.543-6.314h10.035c-.641 4.895-2.52 8.784-5.636 11.666-3.07 2.837-7.24 4.255-12.509 4.255Zm-60.518-1.029V45.26h9.347v6.177h1.65c.825-2.105 2.108-3.82 3.849-5.147 1.787-1.373 4.307-2.059 7.561-2.059 4.673 0 8.133 1.464 10.378 4.392 2.245 2.882 3.368 6.748 3.368 11.597v26.215h-10.172v-24.43c0-3.02-.55-5.33-1.65-6.931-1.054-1.647-2.772-2.47-5.155-2.47-2.841 0-5.063 1.12-6.667 3.362-1.558 2.196-2.337 4.94-2.337 8.235v22.234h-10.172Zm-24.03 1.029c-6.369 0-11.226-1.944-14.571-5.833-3.345-3.934-5.017-9.219-5.017-15.852 0-4.438.733-8.258 2.199-11.46 1.512-3.203 3.712-5.673 6.598-7.412 2.933-1.784 6.484-2.676 10.654-2.676 6.048 0 10.653 1.853 13.815 5.558 3.208 3.66 4.811 9.059 4.811 16.196v2.264h-28.18c.229 3.66 1.168 6.565 2.818 8.716 1.65 2.104 3.941 3.156 6.873 3.156 2.291 0 4.124-.663 5.499-1.99s2.314-2.95 2.818-4.872h9.691c-.458 2.608-1.397 4.987-2.818 7.137-1.42 2.104-3.391 3.82-5.911 5.147-2.474 1.28-5.567 1.92-9.279 1.92Zm-9.622-25.734h18.214c-.183-3.34-1.031-5.924-2.543-7.754-1.467-1.83-3.551-2.745-6.255-2.745-2.703 0-4.857.892-6.461 2.676-1.604 1.738-2.589 4.346-2.955 7.823Zm-54.565 24.704V32.908h20.345c6.598 0 11.363 1.212 14.296 3.637 2.978 2.379 4.468 5.604 4.468 9.676 0 2.608-.642 4.78-1.925 6.52-1.283 1.692-3.23 2.904-5.842 3.636v1.647c3.436.732 6.048 2.128 7.835 4.186 1.833 2.013 2.75 4.873 2.75 8.578 0 4.712-1.558 8.51-4.674 11.392-3.116 2.836-8.179 4.254-15.19 4.254h-22.063Zm10.104-7.685h10.791c3.665 0 6.323-.732 7.972-2.196 1.65-1.51 2.475-3.569 2.475-6.177 0-2.79-.894-4.872-2.681-6.244-1.741-1.373-4.307-2.059-7.698-2.059h-10.859v16.676Zm0-24.225h9.622c2.887 0 5.109-.549 6.667-1.647 1.604-1.143 2.406-2.905 2.406-5.284 0-4.666-3.024-7-9.073-7h-9.622v13.931Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rgkoko\",\"data-framer-name\":\"Logo/Vivgrid\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1rq2ky7\",\"data-framer-name\":\"Vivgrid\",fill:\"black\",intrinsicHeight:139,intrinsicWidth:452,svg:'<svg width=\"452\" height=\"139\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M77.026 7.675C52.135 21.65 21.73 41.465 23.416 57.582c1.154 11.028 12.085 14.44 22.594 17.72 18.224 5.69 35.177 10.982-2.343 54.909L6.345 108.663A11.69 11.69 0 0 1 .5 98.539V41.14a11.69 11.69 0 0 1 5.845-10.124l49.71-28.7a11.69 11.69 0 0 1 11.69 0l9.28 5.359Z\" fill=\"#EEE\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m49.63 133.749 6.373 3.679a11.687 11.687 0 0 0 11.69 0l49.71-28.699a11.692 11.692 0 0 0 5.845-10.124v-57.4a11.69 11.69 0 0 0-5.845-10.124l-32.84-18.96c-32.01 18.79-40.917 36.428-2.217 47.837 33.818 9.97 4.12 38.443-24.987 66.351-2.596 2.489-5.188 4.973-7.729 7.44Z\" fill=\"#EEE\"/><path d=\"M181.248 48.033h12.515l11.615 42.206 11.614-42.206h12.433l-12.678 44.414h-22.821l-12.678-44.414Zm52.625 0h12.514v44.414h-12.514V48.033Zm-.164-17.75h12.923v11.78h-12.923v-11.78Zm17.195 17.75h12.515l11.615 42.206 11.614-42.206h12.433l-12.678 44.414h-22.821l-12.678-44.414Zm73.579 61.428c-3.653 0-7.034-.546-10.142-1.636-3.108-1.036-5.699-2.672-7.771-4.908-2.072-2.181-3.299-4.908-3.68-8.18h12.596c.436 2.018 1.472 3.545 3.108 4.581 1.636 1.091 3.599 1.636 5.889 1.636 2.781 0 5.044-.763 6.789-2.29 1.745-1.527 2.617-3.79 2.617-6.79v-9.487c-1.254 2.89-3.189 5.234-5.807 7.034-2.617 1.745-5.589 2.617-8.915 2.617-3.599 0-6.789-.927-9.57-2.78-2.781-1.91-4.935-4.554-6.462-7.935-1.527-3.435-2.29-7.361-2.29-11.778 0-4.417.763-8.316 2.29-11.697 1.527-3.435 3.681-6.08 6.462-7.934 2.781-1.908 5.971-2.862 9.57-2.862 3.708 0 6.816 1.008 9.324 3.026 2.563 2.018 4.362 4.608 5.398 7.77v-9.815h12.433V91.63c0 4.2-1.063 7.634-3.19 10.306-2.072 2.672-4.771 4.581-8.097 5.726-3.272 1.2-6.789 1.8-10.552 1.8Zm-10.878-39.916c0 4.417.872 7.852 2.617 10.306 1.799 2.454 4.39 3.68 7.77 3.68 3.327 0 5.89-1.226 7.689-3.68 1.8-2.454 2.699-5.89 2.699-10.306 0-4.417-.899-7.852-2.699-10.306-1.799-2.454-4.362-3.68-7.689-3.68-3.38 0-5.971 1.226-7.77 3.68-1.745 2.454-2.617 5.89-2.617 10.306Zm41.406-21.512h12.433v11.615c.927-3.763 2.617-6.789 5.071-9.08 2.454-2.344 5.698-3.516 9.733-3.516V59.32h-3.19c-3.98 0-6.898.79-8.752 2.372-1.854 1.527-2.781 4.117-2.781 7.77v22.984h-12.514V48.033Zm32.312 0h12.514v44.414h-12.514V48.033Zm-.164-17.75h12.924v11.78h-12.924v-11.78Zm37.726 63.146c-3.599 0-6.789-.982-9.57-2.945-2.781-2.017-4.935-4.771-6.462-8.26-1.527-3.545-2.29-7.526-2.29-11.943s.763-8.37 2.29-11.86c1.527-3.544 3.681-6.325 6.462-8.343 2.781-2.018 5.971-3.026 9.57-3.026 2.508 0 4.744.518 6.707 1.554 2.018.981 3.681 2.317 4.989 4.008a17.3 17.3 0 0 1 3.027 5.562V30.284h12.351v62.163h-12.351V83.45c-1.2 3-3.108 5.426-5.726 7.28-2.617 1.8-5.616 2.699-8.997 2.699Zm-5.562-23.148c0 4.58.872 8.18 2.617 10.797 1.8 2.563 4.363 3.844 7.689 3.844 3.326 0 5.889-1.281 7.689-3.844 1.854-2.617 2.781-6.216 2.781-10.797 0-4.58-.9-8.18-2.7-10.797-1.799-2.617-4.389-3.926-7.77-3.926-3.326 0-5.889 1.309-7.689 3.926-1.745 2.563-2.617 6.162-2.617 10.797Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7xqimz\",\"data-framer-name\":\"Logo/Bird Cartel\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-185mxnf\",\"data-framer-name\":\"Bird Cartel\",fill:\"black\",intrinsicHeight:133,intrinsicWidth:692,svg:'<svg width=\"692\" height=\"133\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M41.171.243c-1.15.397-1.587 1.468-1.587 3.729 0 1.944.318 2.896 1.984 6.387 1.11 2.26 2.261 4.363 2.578 4.68.556.516 3.57.715 4.047.239.317-.318-.714-6.982-1.35-8.767C46.012 4.05 43.909.878 42.878.4c-.516-.237-.992-.436-1.031-.396-.04 0-.357.12-.675.238Zm13.607 12.853c-1.27 1.309-.635 1.983 11.305 12.813 3.332 3.015 6.268 5.91 6.506 6.386.555 1.23-.04 2.896-1.388 3.888-.992.794-1.31.794-12.496.278-6.307-.278-11.702-.397-11.94-.238-1.19.754-.318 1.825 3.332 4.205 3.372 2.142 5.157 3.094 9.005 4.68.595.239 1.348.913 1.745 1.468.635.952.595 1.111-1.547 5.475-2.698 5.434-4.126 10.234-4.76 15.828l-.437 4.244-2.499.595c-5.395 1.388-9.282 3.65-14.717 8.648-4.641 4.284-7.775 5.99-13.448 7.22-5.434 1.23-9.243 2.578-14.003 5.038C5.43 95.686.431 99.177.035 100.129c-.12.318.079 1.032.436 1.587l.635.992h9.957c8.052 0 10.194.119 11.385.634 1.864.754 3.49 2.301 4.561 4.324.794 1.468.873 2.42 1.111 12.694.159 6.109.278 11.227.317 11.385.199 1.27.913 1.309 23.881 1.23 35.147-.119 61.804-.436 68.588-.873 3.372-.238 11.662-.515 18.366-.634 6.744-.159 12.496-.357 12.774-.437.277-.119.634-.476.753-.793.556-1.428.278-23.246-.357-30.307-.753-8.29-.595-9.798 1.429-12.06.634-.753 1.983-1.745 2.935-2.22 1.626-.794 2.539-.873 12.377-1.032 13.566-.238 13.804-.357 8.37-4.92-5.276-4.442-12.059-7.735-20.39-9.916-5.712-1.508-7.815-2.658-12.297-6.784-5.594-5.077-9.124-7.1-15.035-8.648-1.666-.436-3.134-.872-3.332-.991-.159-.12-.436-1.349-.555-2.698-.278-3.054-2.063-8.211-3.888-11.226-3.015-5.038-8.727-10.155-14.439-12.892-3.967-1.944-7.418-2.777-11.504-2.777-6.506 0-8.807-.754-17.336-5.475-5.633-3.094-12.495-5.038-19.675-5.474-2.896-.198-3.967-.119-4.324.278Zm45.103 20.27c2.38 1.23 3.57 3.055 3.57 5.554 0 2.5-.674 3.73-3.213 6.03-2.221 1.983-3.768 2.34-5.831 1.27-1.23-.675-3.729-3.214-4.403-4.483-1.071-2.142-.08-7.022 1.705-8.172 2.023-1.349 5.752-1.428 8.172-.198Zm34.036 31.815c1.23.635 3.332 2.817 4.007 4.086.238.476.436 1.944.436 3.292 0 2.262-.119 2.579-1.349 3.809-1.348 1.348-1.388 1.348-4.958 1.348-5.475 0-7.18-1.309-7.18-5.434.039-5.276 5.038-9.203 9.044-7.101ZM52.874 84.222c2.102.913 2.776 2.3 2.776 5.831 0 3.412-.555 4.562-2.935 6.189-2.46 1.666-7.1 1.666-8.965 0-2.023-1.825-2.261-6.784-.476-9.481 1.467-2.182 3.252-3.094 5.91-3.094 1.27 0 2.936.238 3.69.555Z\" fill=\"#EEE\"/><path d=\"M95.517 36.58c-2.102 1.07-2.3 4.403-.396 5.434 3.253 1.746 6.585-2.856 3.729-5.117-1.23-.952-1.944-1.031-3.333-.317Zm35.028 32.608c-2.459 1.03-2.34 4.76.199 5.672 1.348.476 3.371-.238 3.808-1.309 1.11-2.975-1.19-5.554-4.007-4.364ZM47.637 88.03c-1.944.794-2.34 3.809-.674 5.118 1.428 1.11 2.975 1.07 4.125-.159 1.31-1.389 1.23-3.213-.158-4.443-1.15-.952-1.865-1.071-3.293-.516Zm-21.54-73.506c-.436.595-.714 1.309-.595 1.626.119.278.198.714.198.913 0 .198 3.015 1.864 6.665 3.689l6.704 3.372 1.23-.754c1.388-.873 1.943-2.182 1.269-2.975-.278-.318-1.23-.794-2.103-1.032-2.023-.515-4.601-1.824-8.33-4.165-1.547-.952-3.134-1.745-3.53-1.745-.358 0-1.032.476-1.508 1.07Zm4.998 16.343c-3.054 1.032-5.712 2.143-5.95 2.5-.555.912.317 2.618 1.587 3.134.872.317 2.023.079 6.585-1.468 3.292-1.071 5.633-2.063 5.831-2.46.198-.396.159-1.23-.159-2.063-.357-1.03-.714-1.428-1.428-1.467-.515-.04-3.45.793-6.466 1.825Zm397.909 9.784c-11.937 5.649-17.053 20.25-12.577 35.492 4.37 14.816 23.662 22.596 36.558 14.709 3.731-2.238 3.731-3.73.213-10.019-1.811-3.09-2.131-3.198-7.887-2.878-7.354.533-10.871-1.385-13.216-6.928-2.025-4.903-1.066-9.912 2.345-13.11 2.877-2.664 6.821-3.197 13.536-1.705 3.837.853 3.943.746 5.542-2.984.853-2.132 2.132-3.837 2.665-3.837.639 0 1.172-1.386 1.172-3.198 0-4.476-4.689-6.715-15.454-7.14-6.715-.32-9.38 0-12.897 1.598Zm-151.456-.107c-4.05.533-6.182 3.518-5.009 7.035.426 1.279 1.066 11.937 1.385 23.662l.64 21.316h13.856l.32-23.981c.106-13.216 0-25.047-.32-26.433-.64-2.451-2.132-2.664-10.872-1.599Zm30.057 0c-4.05.214-8.1.96-8.846 1.706-1.279 1.066-1.386 5.116-.747 25.26.533 16.094 1.173 24.194 2.026 24.727 1.918 1.28 11.83.96 13.749-.532 1.172-.853 1.812-3.198 2.025-7.674l.32-6.396 1.812 3.73c.959 2.026 2.344 5.224 2.984 7.142.746 1.918 2.238 3.73 3.304 4.05 2.984.96 16.947-.64 16.947-1.918 0-.64-2.132-4.583-4.796-8.847-2.665-4.157-4.797-8.313-4.797-9.166 0-.853.96-2.451 2.239-3.624 3.943-3.517 5.542-7.78 5.009-13.43-1.172-12.15-9.699-16.307-31.229-15.028Zm15.241 14.39c.747.745 1.279 2.237 1.279 3.516 0 3.198-2.025 4.797-6.075 4.797-3.41 0-3.517-.107-3.517-4.797 0-4.69.107-4.796 3.517-4.796 1.919 0 4.05.533 4.796 1.28Zm26.114-13.857c-1.279 2.026-1.066 48.496.213 49.775.639.64 6.075 1.386 12.257 1.812 13.003.853 16.201-.107 23.448-6.715 6.182-5.436 8.527-10.871 8.527-19.611 0-13.43-7.248-22.276-20.571-25.154-8.633-1.812-22.702-1.812-23.874-.107Zm25.793 15.349c2.238 2.344 2.664 3.943 2.664 9.06 0 3.41-.532 7.46-1.279 8.952-1.918 4.157-9.272 7.461-10.871 4.903-.32-.533-.853-6.502-1.279-13.323l-.533-12.364h4.37c3.304 0 5.009.64 6.928 2.771Zm104.772-15.349c-2.772 2.132-16.841 44.446-16.841 50.521 0 1.386 1.173 1.492 7.781.853 8.846-.853 9.273-.96 9.273-3.518 0-3.304 2.664-4.476 9.166-4.156 4.476.213 6.288.746 6.928 2.131.533 1.066 1.386 2.772 1.918 3.73.64 1.493 2.452 2.026 7.568 2.239 3.73.213 7.141-.107 7.567-.533.533-.533-1.172-7.141-3.624-14.709-2.558-7.674-5.755-18.332-7.141-23.768-1.279-5.435-3.091-10.658-3.943-11.51-.853-.747-3.304-1.493-5.436-1.493s-5.649-.32-7.674-.64c-2.345-.32-4.37 0-5.542.853Zm11.297 22.383c2.132 10.552 1.386 13.11-3.837 12.364-3.09-.427-3.623-3.73-1.918-10.02 1.492-5.222 4.903-6.608 5.755-2.344Zm34.001-22.916c-6.182.64-6.821 2.132-5.649 14.283.533 5.542.639 15.774.32 22.915-.427 7.994-.213 13.11.426 13.536.533.32 4.263.96 8.1 1.386l7.142.746v-6.928c0-3.837.319-7.248.746-7.567.319-.427 2.664 2.558 5.116 6.501l4.476 7.141 7.141.96c5.756.746 7.568.64 8.74-.64 1.279-1.279.746-2.664-3.837-9.912-2.878-4.69-5.329-9.06-5.329-9.913 0-.852 1.599-3.41 3.624-5.755 2.025-2.238 3.943-5.755 4.263-7.567 1.279-6.822-2.558-13.963-9.273-17.48-3.197-1.599-17.906-2.558-26.006-1.706Zm18.226 13.75c2.025 1.918 2.238 5.862.426 7.674-.746.746-2.878 1.279-4.796 1.279-3.411 0-3.517-.107-3.517-4.583 0-2.558.319-5.01.746-5.33 1.279-1.385 5.435-.746 7.141.96Zm37.411-13.536-13.856.64-.32 4.156c-.213 2.345-.106 5.33.213 6.715.64 2.238 1.279 2.451 6.395 2.451 3.411 0 6.182.533 6.928 1.386.64.852 1.279 8.207 1.386 18.972l.32 17.48h6.927c8.101 0 8.207-.214 8.421-13.857.106-4.69.426-11.724.746-15.56l.746-7.142 4.157-.533c6.288-.852 7.354-2.238 7.034-9.166l-.32-5.969-7.461-.106c-4.05 0-13.642.213-21.316.533Zm36.451.639c-.426.96-.746 12.684-.746 26.113 0 21.21.213 24.408 1.705 24.94.96.32 8.74.64 17.48.64 11.298 0 15.988-.426 16.84-1.385 1.706-2.239 2.665-11.085 1.173-12.044-.746-.427-5.543-.64-10.765-.533l-9.486.213.32-3.517c.319-3.518.319-3.518 6.714-3.837 6.928-.32 7.994-1.173 7.994-6.395 0-3.198-.213-3.411-3.943-3.518-8.314-.32-10.446-1.172-10.446-4.69v-3.197h19.079l.959-3.41c1.492-5.01.213-8.527-3.197-9.273-1.706-.32-9.7-.853-18.013-1.28-13.536-.639-15.135-.532-15.668 1.173Zm46.045.746c-1.812 3.41-1.812 46.364.106 49.775 1.279 2.451 1.492 2.451 13.643 1.705 6.928-.426 12.79-1.066 13.216-1.386.427-.426.853-3.623 1.066-7.14l.32-6.396-12.79-1.066-.32-17.586c-.107-9.592-.64-17.8-1.066-18.226-.426-.426-3.517-1.065-6.821-1.385-5.543-.746-6.182-.533-7.354 1.705Zm-438.7-.107c-1.065 1.066-1.385 7.568-1.385 25.048 0 19.93.213 23.874 1.599 24.94 2.664 2.239 29.523.746 33.893-1.812 7.141-4.156 9.593-16.413 4.477-22.489-2.345-2.771-2.452-3.197-.853-4.69 2.665-2.77 2.878-10.445.426-14.388-3.623-5.862-7.46-7.035-23.022-7.568-10.338-.32-14.175-.106-15.135.96Zm22.49 11.938c1.172.853 1.812 2.451 1.492 4.05-.32 2.238-.853 2.558-5.116 2.558-4.157 0-4.796-.32-5.116-2.451-.746-4.797 4.476-7.248 8.74-4.157Zm1.492 18.013c1.812 1.812 1.599 5.862-.427 6.608-4.689 1.812-10.018.213-10.018-2.985 0-3.304 2.025-4.902 5.862-4.902 1.812 0 3.837.532 4.583 1.279Z\" fill=\"#EEE\"/></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k1koqx\",\"data-framer-name\":\"Tutorials\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref10,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-p7hhgb\",\"data-border\":true,\"data-framer-name\":\"Container\",id:elementId8,ref:ref10,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jclgpb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rxtzu\",\"data-framer-name\":\"Information\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ez71h1\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Live Aware\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Live Aware\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Live Aware\"})}),className:\"framer-m9bhgk\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"$4.8M raised. We partnered with Live Aware Labs to help game developers build exceptional games.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"$4.8M raised. We partnered with Live Aware Labs to help game developers build exceptional games.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"$4.8M raised. We partnered with Live Aware Labs to help game developers build exceptional games.\"})}),className:\"framer-odvu7x\",\"data-framer-name\":\"Category\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-saav1q\",\"data-framer-appear-id\":\"saav1q\",\"data-framer-name\":\"Buttons\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g6phwy-container\",nodeId:\"MRSIHMfoP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"MRSIHMfoP\",kTynE2FQc:\"regular\",layoutId:\"MRSIHMfoP\",LdEuC589O:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"https://liveaware.io\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Check it out\",Ud3HdUmNm:true,variant:\"ke7By49HW\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nubay7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"f8955QG88\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"f8955QG88\",isMixedBorderRadius:false,layoutId:\"f8955QG88\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://cdn.neuship.co/demo-vid/liveaware-demo.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref11,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wfhp8m\",\"data-border\":true,\"data-framer-name\":\"Container\",id:elementId9,ref:ref11,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oatn47\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n0vs1w\",\"data-framer-name\":\"Information\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-cnom53\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"moimoi\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"moimoi\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"moimoi\"})}),className:\"framer-49fkvr\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We whipped up a playful IP and branding for our lil\u2019 app experiment\u2014personal cards for creators!\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We whipped up a playful IP and branding for our lil\u2019 app experiment\u2014personal cards for creators!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We whipped up a playful IP and branding for our lil\u2019 app experiment\u2014personal cards for creators!\"})}),className:\"framer-1i22har\",\"data-framer-name\":\"Category\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-qmjzpi\",\"data-framer-appear-id\":\"qmjzpi\",\"data-framer-name\":\"Buttons\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yl8wvd-container\",nodeId:\"ECUWy2__l\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"ECUWy2__l\",kTynE2FQc:\"regular\",layoutId:\"ECUWy2__l\",LdEuC589O:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"https://moimoi.app\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Check it out\",Ud3HdUmNm:true,variant:\"ke7By49HW\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yztwal-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LWDPhg5p3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"LWDPhg5p3\",isMixedBorderRadius:false,layoutId:\"LWDPhg5p3\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://cdn.neuship.co/demo-vid/moimoi-demo.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref12,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u3din8\",\"data-border\":true,\"data-framer-name\":\"Container\",id:elementId10,ref:ref12,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k6cs5f\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l635mu\",\"data-framer-name\":\"Information\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rb7if6\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Vivgrid\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Vivgrid\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"Vivgrid\"})}),className:\"framer-168ka2k\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We\u2019ve shipped branding + design system, a complete SaaS app dashboard and landing page.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We\u2019ve shipped branding + design system, a complete SaaS app dashboard and landing page.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We\u2019ve shipped branding + design system, a complete SaaS app dashboard and landing page.\"})}),className:\"framer-1y6pxzn\",\"data-framer-name\":\"Category\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-97t5tp\",\"data-framer-appear-id\":\"97t5tp\",\"data-framer-name\":\"Buttons\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q37t8p-container\",nodeId:\"midD5ZwAE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"midD5ZwAE\",kTynE2FQc:\"regular\",layoutId:\"midD5ZwAE\",LdEuC589O:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"https://vivgrid.com\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Check it out\",Ud3HdUmNm:true,variant:\"ke7By49HW\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16lcw3r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UmHR1aflH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"UmHR1aflH\",isMixedBorderRadius:false,layoutId:\"UmHR1aflH\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://cdn.neuship.co/demo-vid/vivgrid-demo.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref13,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wlk2pe\",\"data-border\":true,\"data-framer-name\":\"Container\",id:elementId11,ref:ref13,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jbj9j6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17pjfmv\",\"data-framer-name\":\"Information\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-68syal\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"BenchFlow\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"BenchFlow\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\"},children:\"BenchFlow\"})}),className:\"framer-dx3wl5\",fonts:[\"GF;DM Sans-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We\u2019ve partnered with them and designed the entire system, branding, SaaS app and landing page.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We\u2019ve partnered with them and designed the entire system, branding, SaaS app and landing page.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-7525b78a-2f50-4d1b-b609-39a2e89b5d83, rgb(153, 153, 153))\"},children:\"We\u2019ve partnered with them and designed the entire system, branding, SaaS app and landing page.\"})}),className:\"framer-1bxb10a\",\"data-framer-name\":\"Category\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation7,className:\"framer-1813tpv\",\"data-framer-appear-id\":\"1813tpv\",\"data-framer-name\":\"Buttons\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1000px) - 96px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:69,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1noda0q-container\",nodeId:\"PjQPg9Dsd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(ButtonsButton,{GLWImmBy_:false,HBR9r6Wzz:false,height:\"100%\",id:\"PjQPg9Dsd\",kTynE2FQc:\"regular\",layoutId:\"PjQPg9Dsd\",LdEuC589O:\"var(--token-a0b108d1-905f-48b6-9b39-89b275654751, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"Lightning\",odb0bWURU:\"https://benchflow.ai\",QQq_dHjj6:\"fill\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Check it out\",Ud3HdUmNm:true,variant:\"ke7By49HW\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7zfv24-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WNDM4Nizb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"WNDM4Nizb\",isMixedBorderRadius:false,layoutId:\"WNDM4Nizb\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcType:\"URL\",srcUrl:\"https://cdn.neuship.co/demo-vid/benchflow-demo.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7hu5uh\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:458,width:\"800px\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:150,ref:ref14,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17jgz3n-container\",id:elementId12,nodeId:\"ho_0dLFJW\",ref:ref14,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsFAQ,{F6lM4exSR:\"Don\u2019t worry\u2014we\u2019ll work with you to revise the design until it meets your expectations completely.\",height:\"100%\",id:\"ho_0dLFJW\",IFjQjdWql:\"Is there a maximum number of design requests I can submit?\",JuxOgtiro:\"Not at all! When we say \u201Cunlimited,\u201D we truly mean it. Once you\u2019re subscribed, feel free to add as many design tasks as you like, and they\u2019ll be processed sequentially.\",kao3Z3l7k:\"Once a project has begun, refunds are not issued. We remain dedicated to perfecting our work and will keep refining the design until it fully meets your expectations.\",KjHOx49kL:\"We integrate with Slack to streamline communication and organization. By utilizing Slack lists as dynamic Trello-like boards, we track every project step transparently. This setup not only keeps you updated with real-time progress but also fosters seamless collaboration and immediate feedback throughout the design process.\",layoutId:\"ho_0dLFJW\",mDV6PtA6K:\"What if I\u2019m not satisfied with the design?\",oRIOycR3Y:\"That\u2019s a valid point. A full-time senior designer typically costs around $100,000 annually plus benefits, and recruiting one can be quite challenging. Additionally, if your workload varies, you might end up paying for downtime. With our monthly plan, you can start and pause your subscription whenever necessary, ensuring you\u2019re only paying for active work.\",pj8TaM0YQ:\"How quickly will my designs be delivered?\",pOWJFdPGf:\"Are refunds available if I\u2019m unhappy with the service?\",rawvYUUzX:\"How does Neuship's collaborative process work?\",style:{width:\"100%\"},Tiiziaej8:\"For our standard monthly plan, you can expect the majority of projects to be completed within 2-3 days. More complex designs might take a bit longer, while our custom plans typically offer a faster turnaround.\",tvNxOx7cw:\"Why not simply employ a full-time designer?\",variant:\"pxNOjIOp6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ii45jg\",\"data-framer-name\":\"Footer Reveal Section (Do Not Touch)\",id:elementId13,ref:ref4})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5iqsch-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jZP1ml4YA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"jZP1ml4YA\",intensity:5,layoutId:\"jZP1ml4YA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vvax3v-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eDI1QSeT2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CustomScrollBar,{color:\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",enabled:true,height:\"100%\",id:\"eDI1QSeT2\",layoutId:\"eDI1QSeT2\",trackColor:\"var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10))\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DK6rB.framer-lux5qc, .framer-DK6rB .framer-lux5qc { display: block; }\",\".framer-DK6rB.framer-72rtr7 { align-content: center; align-items: center; background-color: #0a0a0a; 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-DK6rB .framer-oiko23-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-DK6rB .framer-1oyybpj-container { bottom: 0px; flex: none; height: 80vh; left: 0px; position: fixed; right: 0px; z-index: 1; }\",\".framer-DK6rB .framer-d4k7jm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; pointer-events: none; position: relative; width: 100%; z-index: 2; }\",\".framer-DK6rB .framer-vi1zhz { align-content: center; align-items: center; background-color: var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 150px 64px 64px 64px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-DK6rB .framer-he1c7i { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DK6rB .framer-1dyvgcl { bottom: 93px; flex: none; height: 8px; left: calc(49.90671641791047% - 326px / 2); overflow: hidden; position: absolute; width: 326px; z-index: 1; }\",\".framer-DK6rB .framer-pz5jso-container, .framer-DK6rB .framer-1dssxbw-container, .framer-DK6rB .framer-udco55-container, .framer-DK6rB .framer-11yoqds-container, .framer-DK6rB .framer-1dj5i62-container, .framer-DK6rB .framer-1lzdi56-container, .framer-DK6rB .framer-gdbjw3-container, .framer-DK6rB .framer-g6phwy-container, .framer-DK6rB .framer-1yl8wvd-container, .framer-DK6rB .framer-q37t8p-container, .framer-DK6rB .framer-1noda0q-container, .framer-DK6rB .framer-5iqsch-container, .framer-DK6rB .framer-1vvax3v-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DK6rB .framer-qy4pf0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 850px; position: relative; white-space: pre; width: 100%; }\",\".framer-DK6rB .framer-nqkn6i { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-DK6rB .framer-1ffmjq9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-iadp4w { align-content: center; align-items: center; background-color: var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 64px 64px 64px; pointer-events: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-DK6rB .framer-dv3td6 { border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; flex: none; height: 603px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-DK6rB .framer-12v7cda-container { flex: none; height: auto; left: 50%; max-width: 1200px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-DK6rB .framer-9r87wk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-DK6rB .framer-160yt3v, .framer-DK6rB .framer-1cukwhl, .framer-DK6rB .framer-ahdyf3, .framer-DK6rB .framer-1o8bex8, .framer-DK6rB .framer-ubrd2e, .framer-DK6rB .framer-o76hds, .framer-DK6rB .framer-1xfaelg, .framer-DK6rB .framer-t97wt, .framer-DK6rB .framer-3vs885, .framer-DK6rB .framer-12zbovj, .framer-DK6rB .framer-14j2cml, .framer-DK6rB .framer-5np5kh, .framer-DK6rB .framer-1wt8e51, .framer-DK6rB .framer-u26itp, .framer-DK6rB .framer-m9bhgk, .framer-DK6rB .framer-49fkvr, .framer-DK6rB .framer-168ka2k, .framer-DK6rB .framer-dx3wl5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DK6rB .framer-8346gp { align-content: center; align-items: center; background-color: var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 64px 64px 64px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-DK6rB .framer-13fft3k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; }\",\".framer-DK6rB .framer-18vmn4v-container, .framer-DK6rB .framer-itfvcw-container { flex: none; height: 55px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-1dnb876 { height: 42px; overflow: hidden; position: relative; width: 264px; }\",\".framer-DK6rB .framer-c64b23 { aspect-ratio: 6.291666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-DK6rB .framer-1yaec6w { aspect-ratio: 4.702127659574468 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 197px; }\",\".framer-DK6rB .framer-yvrm4i { aspect-ratio: 4.697478991596639 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 1px; top: 0px; }\",\".framer-DK6rB .framer-1wjop3o { height: 42px; overflow: hidden; position: relative; width: 269px; }\",\".framer-DK6rB .framer-1tkxqk0 { aspect-ratio: 6.401360544217687 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-DK6rB .framer-7xqimz { height: 42px; overflow: hidden; position: relative; width: 219px; }\",\".framer-DK6rB .framer-185mxnf { aspect-ratio: 5.203007518796992 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-DK6rB .framer-1rgkoko { height: 42px; overflow: hidden; position: relative; width: 137px; }\",\".framer-DK6rB .framer-1rq2ky7 { aspect-ratio: 3.2517985611510793 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-DK6rB .framer-110ixpg { align-content: center; align-items: center; background-color: var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 64px 64px 0px 64px; pointer-events: auto; position: relative; width: 100%; }\",'.framer-DK6rB .framer-hsk2wj { --border-bottom-width: 0px; --border-color: var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-0412433a-5882-4fae-9632-beb8eb5b7b5b, #0d0d0d) /* {\"name\":\"UI\"} */ 0%, var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, rgb(10, 10, 10)) /* {\"name\":\"Background\"} */ 100%); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 64px 48px 64px 48px; position: relative; width: 100%; z-index: 1; }',\".framer-DK6rB .framer-dhb65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-1u8pi1e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-o3upmz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-6uucmi { align-content: center; align-items: center; background-color: var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 64px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-DK6rB .framer-1utf7x5-container, .framer-DK6rB .framer-1legju3-container, .framer-DK6rB .framer-1ho2k7b-container { flex: none; height: 300px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-zijqqm, .framer-DK6rB .framer-4ommwj { --border-bottom-width: 0px; --border-color: var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 250px; overflow: visible; position: relative; width: 442px; }\",\".framer-DK6rB .framer-txszx0, .framer-DK6rB .framer-1v4to7s { --border-bottom-width: 0px; --border-color: var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.768 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 250px); overflow: visible; position: relative; width: 442px; }\",\".framer-DK6rB .framer-1gg8b21, .framer-DK6rB .framer-3xqh0x, .framer-DK6rB .framer-1ay6eln, .framer-DK6rB .framer-jnk2xw, .framer-DK6rB .framer-n4dk59, .framer-DK6rB .framer-1iyow1e { --border-bottom-width: 0px; --border-color: var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 251px; overflow: visible; position: relative; width: 442px; }\",\".framer-DK6rB .framer-1xjlbpn, .framer-DK6rB .framer-yjdz6 { --border-bottom-width: 0px; --border-color: var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.7609561752988048 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: var(--framer-aspect-ratio-supported, 251px); overflow: visible; position: relative; width: 442px; }\",\".framer-DK6rB .framer-skephz, .framer-DK6rB .framer-lmb2wj, .framer-DK6rB .framer-1lkxobu { align-content: center; align-items: center; background-color: var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 64px; pointer-events: auto; position: relative; width: 100%; }\",\".framer-DK6rB .framer-mhwl1p { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; z-index: 1; }\",\".framer-DK6rB .framer-1m0sf4h, .framer-DK6rB .framer-7md027 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-1b9n7rm, .framer-DK6rB .framer-1xca420 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-DK6rB .framer-48qkl0, .framer-DK6rB .framer-ujqgg0, .framer-DK6rB .framer-19j0b8m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-250we9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 840px; position: relative; white-space: pre-wrap; width: 840px; word-break: break-word; word-wrap: break-word; }\",\".framer-DK6rB .framer-182kdtz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-t15uo1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DK6rB .framer-1e09niz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-1p6qfjf, .framer-DK6rB .framer-1xpqfqp, .framer-DK6rB .framer-o236jq, .framer-DK6rB .framer-13tlwcl, .framer-DK6rB .framer-184r68d, .framer-DK6rB .framer-50pgfx, .framer-DK6rB .framer-b0h9fa, .framer-DK6rB .framer-tviqq0, .framer-DK6rB .framer-odvu7x, .framer-DK6rB .framer-1i22har, .framer-DK6rB .framer-1y6pxzn, .framer-DK6rB .framer-1bxb10a { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DK6rB .framer-cgy8wp, .framer-DK6rB .framer-1osn1u8, .framer-DK6rB .framer-b1go8t, .framer-DK6rB .framer-fzejrv, .framer-DK6rB .framer-2kn4qq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-1k8p3mv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-DK6rB .framer-1e15lv5, .framer-DK6rB .framer-16qyykk { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.59); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(0px); align-content: center; align-items: center; backdrop-filter: blur(0px); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 64px 48px 64px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-DK6rB .framer-1d5w81m, .framer-DK6rB .framer-1ngdixn { -webkit-filter: blur(0px); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 9px; filter: blur(0px); flex: none; left: 8px; overflow: hidden; position: absolute; right: 8px; top: 9px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-DK6rB .framer-g4xmv9 { -webkit-filter: blur(0px); background: linear-gradient(153deg, rgba(0, 0, 0, 0.82) 9%, rgb(15, 15, 15) 89%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; filter: blur(0px); flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-DK6rB .framer-k75n4u, .framer-DK6rB .framer-1xwpzul { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-DK6rB .framer-1w8j5ue, .framer-DK6rB .framer-1re3yhd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-rxwbph, .framer-DK6rB .framer-2vq7rf { --border-bottom-width: 1px; --border-color: #757575; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 38px; }\",\".framer-DK6rB .framer-1tvm5ah, .framer-DK6rB .framer-en0uc5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-1b3f9p2 { -webkit-filter: blur(0px); background: linear-gradient(153deg, rgba(0, 0, 0, 0.86) 15%, rgb(15, 15, 15) 89%); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; bottom: 0px; filter: blur(0px); flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-DK6rB .framer-cpht7g, .framer-DK6rB .framer-1186zzq { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 150px; width: 100%; z-index: 1; }\",\".framer-DK6rB .framer-tgspxs, .framer-DK6rB .framer-jfrm6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 725px; word-break: break-word; word-wrap: break-word; }\",\".framer-DK6rB .framer-1bpvgwv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-17wy01c-container, .framer-DK6rB .framer-18xe2y2-container { flex: none; height: 78px; position: relative; width: 1072px; }\",\".framer-DK6rB .framer-1kypk3j-container, .framer-DK6rB .framer-1ewcju7-container, .framer-DK6rB .framer-vtxqzr-container, .framer-DK6rB .framer-eow8d7-container, .framer-DK6rB .framer-txcj27-container, .framer-DK6rB .framer-q93dl5-container, .framer-DK6rB .framer-18vsbqi-container, .framer-DK6rB .framer-t2ezid-container, .framer-DK6rB .framer-k7nf0g-container { height: auto; position: relative; width: auto; }\",\".framer-DK6rB .framer-1mf5qe2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-1sw58pd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-1db4ifi-container, .framer-DK6rB .framer-q4p3im-container { flex: none; height: auto; position: relative; width: 450px; }\",\".framer-DK6rB .framer-1qo4v69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DK6rB .framer-1k1koqx { align-content: center; align-items: center; background-color: var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 64px; pointer-events: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-DK6rB .framer-p7hhgb, .framer-DK6rB .framer-wfhp8m, .framer-DK6rB .framer-1u3din8, .framer-DK6rB .framer-wlk2pe { --border-bottom-width: 0px; --border-color: var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2c8e730a-6f7f-4e7f-b0a6-e316cb419f8d, #0d0d0d); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 64px 48px 64px 48px; position: relative; scroll-margin-top: 150px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-DK6rB .framer-1jclgpb, .framer-DK6rB .framer-1oatn47, .framer-DK6rB .framer-1k6cs5f, .framer-DK6rB .framer-jbj9j6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-1rxtzu, .framer-DK6rB .framer-1n0vs1w, .framer-DK6rB .framer-l635mu, .framer-DK6rB .framer-17pjfmv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 470px; }\",\".framer-DK6rB .framer-ez71h1, .framer-DK6rB .framer-cnom53, .framer-DK6rB .framer-rb7if6, .framer-DK6rB .framer-68syal { 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; }\",\".framer-DK6rB .framer-saav1q, .framer-DK6rB .framer-qmjzpi, .framer-DK6rB .framer-97t5tp, .framer-DK6rB .framer-1813tpv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DK6rB .framer-1nubay7-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 5.005982545045045%, rgba(0,0,0,1) 50.31320382882883%) add; flex: none; height: 100%; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 5.005982545045045%, rgba(0,0,0,1) 50.31320382882883%) add; position: absolute; right: 0px; top: 0px; width: 50%; z-index: 0; }\",\".framer-DK6rB .framer-yztwal-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 5.005982545045045%, rgba(0,0,0,1) 56.418918918918926%, rgba(0, 0, 0, 0.5) 85.13513513513513%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 100%; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 5.005982545045045%, rgba(0,0,0,1) 56.418918918918926%, rgba(0, 0, 0, 0.5) 85.13513513513513%, rgba(0, 0, 0, 0) 100%) add; position: absolute; right: 0px; top: 0px; width: 50%; z-index: 0; }\",\".framer-DK6rB .framer-16lcw3r-container, .framer-DK6rB .framer-7zfv24-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 5.005982545045045%, rgba(0,0,0,1) 56.418918918918926%, rgba(0, 0, 0, 0.5) 86.03603603603604%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 100%; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 5.005982545045045%, rgba(0,0,0,1) 56.418918918918926%, rgba(0, 0, 0, 0.5) 86.03603603603604%, rgba(0, 0, 0, 0) 100%) add; position: absolute; right: 0px; top: 0px; width: 50%; z-index: 0; }\",\".framer-DK6rB .framer-7hu5uh { -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); border-bottom-left-radius: 96px; border-bottom-right-radius: 96px; box-shadow: 0px 32px 64px 24px var(--token-6b2be53b-6817-448e-b133-cd93fd6651c5, #0a0a0a); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px; pointer-events: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-DK6rB .framer-17jgz3n-container { flex: none; height: auto; position: relative; scroll-margin-top: 150px; width: 800px; z-index: 1; }\",\".framer-DK6rB .framer-1ii45jg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 80vh; justify-content: center; overflow: hidden; padding: 0px; pointer-events: none; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DK6rB.framer-72rtr7, .framer-DK6rB .framer-d4k7jm, .framer-DK6rB .framer-vi1zhz, .framer-DK6rB .framer-he1c7i, .framer-DK6rB .framer-1ffmjq9, .framer-DK6rB .framer-iadp4w, .framer-DK6rB .framer-9r87wk, .framer-DK6rB .framer-8346gp, .framer-DK6rB .framer-13fft3k, .framer-DK6rB .framer-110ixpg, .framer-DK6rB .framer-hsk2wj, .framer-DK6rB .framer-dhb65, .framer-DK6rB .framer-1u8pi1e, .framer-DK6rB .framer-o3upmz, .framer-DK6rB .framer-6uucmi, .framer-DK6rB .framer-skephz, .framer-DK6rB .framer-mhwl1p, .framer-DK6rB .framer-1m0sf4h, .framer-DK6rB .framer-1b9n7rm, .framer-DK6rB .framer-48qkl0, .framer-DK6rB .framer-182kdtz, .framer-DK6rB .framer-t15uo1, .framer-DK6rB .framer-1e09niz, .framer-DK6rB .framer-cgy8wp, .framer-DK6rB .framer-1osn1u8, .framer-DK6rB .framer-b1go8t, .framer-DK6rB .framer-1k8p3mv, .framer-DK6rB .framer-1e15lv5, .framer-DK6rB .framer-k75n4u, .framer-DK6rB .framer-fzejrv, .framer-DK6rB .framer-1w8j5ue, .framer-DK6rB .framer-1tvm5ah, .framer-DK6rB .framer-16qyykk, .framer-DK6rB .framer-1xwpzul, .framer-DK6rB .framer-2kn4qq, .framer-DK6rB .framer-1re3yhd, .framer-DK6rB .framer-en0uc5, .framer-DK6rB .framer-lmb2wj, .framer-DK6rB .framer-cpht7g, .framer-DK6rB .framer-7md027, .framer-DK6rB .framer-1xca420, .framer-DK6rB .framer-ujqgg0, .framer-DK6rB .framer-1bpvgwv, .framer-DK6rB .framer-1lkxobu, .framer-DK6rB .framer-1186zzq, .framer-DK6rB .framer-1mf5qe2, .framer-DK6rB .framer-19j0b8m, .framer-DK6rB .framer-1sw58pd, .framer-DK6rB .framer-1qo4v69, .framer-DK6rB .framer-1k1koqx, .framer-DK6rB .framer-p7hhgb, .framer-DK6rB .framer-1jclgpb, .framer-DK6rB .framer-1rxtzu, .framer-DK6rB .framer-ez71h1, .framer-DK6rB .framer-saav1q, .framer-DK6rB .framer-wfhp8m, .framer-DK6rB .framer-1oatn47, .framer-DK6rB .framer-1n0vs1w, .framer-DK6rB .framer-cnom53, .framer-DK6rB .framer-qmjzpi, .framer-DK6rB .framer-1u3din8, .framer-DK6rB .framer-1k6cs5f, .framer-DK6rB .framer-l635mu, .framer-DK6rB .framer-rb7if6, .framer-DK6rB .framer-97t5tp, .framer-DK6rB .framer-wlk2pe, .framer-DK6rB .framer-jbj9j6, .framer-DK6rB .framer-17pjfmv, .framer-DK6rB .framer-68syal, .framer-DK6rB .framer-1813tpv, .framer-DK6rB .framer-7hu5uh, .framer-DK6rB .framer-1ii45jg { gap: 0px; } .framer-DK6rB.framer-72rtr7 > *, .framer-DK6rB .framer-d4k7jm > *, .framer-DK6rB .framer-6uucmi > *, .framer-DK6rB .framer-1tvm5ah > *, .framer-DK6rB .framer-en0uc5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DK6rB.framer-72rtr7 > :first-child, .framer-DK6rB .framer-d4k7jm > :first-child, .framer-DK6rB .framer-he1c7i > :first-child, .framer-DK6rB .framer-iadp4w > :first-child, .framer-DK6rB .framer-8346gp > :first-child, .framer-DK6rB .framer-13fft3k > :first-child, .framer-DK6rB .framer-110ixpg > :first-child, .framer-DK6rB .framer-hsk2wj > :first-child, .framer-DK6rB .framer-dhb65 > :first-child, .framer-DK6rB .framer-1u8pi1e > :first-child, .framer-DK6rB .framer-o3upmz > :first-child, .framer-DK6rB .framer-6uucmi > :first-child, .framer-DK6rB .framer-skephz > :first-child, .framer-DK6rB .framer-mhwl1p > :first-child, .framer-DK6rB .framer-1m0sf4h > :first-child, .framer-DK6rB .framer-1b9n7rm > :first-child, .framer-DK6rB .framer-48qkl0 > :first-child, .framer-DK6rB .framer-t15uo1 > :first-child, .framer-DK6rB .framer-1e09niz > :first-child, .framer-DK6rB .framer-cgy8wp > :first-child, .framer-DK6rB .framer-1osn1u8 > :first-child, .framer-DK6rB .framer-b1go8t > :first-child, .framer-DK6rB .framer-1k8p3mv > :first-child, .framer-DK6rB .framer-k75n4u > :first-child, .framer-DK6rB .framer-fzejrv > :first-child, .framer-DK6rB .framer-1tvm5ah > :first-child, .framer-DK6rB .framer-1xwpzul > :first-child, .framer-DK6rB .framer-2kn4qq > :first-child, .framer-DK6rB .framer-en0uc5 > :first-child, .framer-DK6rB .framer-lmb2wj > :first-child, .framer-DK6rB .framer-cpht7g > :first-child, .framer-DK6rB .framer-7md027 > :first-child, .framer-DK6rB .framer-1xca420 > :first-child, .framer-DK6rB .framer-ujqgg0 > :first-child, .framer-DK6rB .framer-1bpvgwv > :first-child, .framer-DK6rB .framer-1lkxobu > :first-child, .framer-DK6rB .framer-1186zzq > :first-child, .framer-DK6rB .framer-1mf5qe2 > :first-child, .framer-DK6rB .framer-19j0b8m > :first-child, .framer-DK6rB .framer-1qo4v69 > :first-child, .framer-DK6rB .framer-1k1koqx > :first-child, .framer-DK6rB .framer-1jclgpb > :first-child, .framer-DK6rB .framer-1rxtzu > :first-child, .framer-DK6rB .framer-1oatn47 > :first-child, .framer-DK6rB .framer-1n0vs1w > :first-child, .framer-DK6rB .framer-1k6cs5f > :first-child, .framer-DK6rB .framer-l635mu > :first-child, .framer-DK6rB .framer-jbj9j6 > :first-child, .framer-DK6rB .framer-17pjfmv > :first-child, .framer-DK6rB .framer-7hu5uh > :first-child, .framer-DK6rB .framer-1ii45jg > :first-child { margin-top: 0px; } .framer-DK6rB.framer-72rtr7 > :last-child, .framer-DK6rB .framer-d4k7jm > :last-child, .framer-DK6rB .framer-he1c7i > :last-child, .framer-DK6rB .framer-iadp4w > :last-child, .framer-DK6rB .framer-8346gp > :last-child, .framer-DK6rB .framer-13fft3k > :last-child, .framer-DK6rB .framer-110ixpg > :last-child, .framer-DK6rB .framer-hsk2wj > :last-child, .framer-DK6rB .framer-dhb65 > :last-child, .framer-DK6rB .framer-1u8pi1e > :last-child, .framer-DK6rB .framer-o3upmz > :last-child, .framer-DK6rB .framer-6uucmi > :last-child, .framer-DK6rB .framer-skephz > :last-child, .framer-DK6rB .framer-mhwl1p > :last-child, .framer-DK6rB .framer-1m0sf4h > :last-child, .framer-DK6rB .framer-1b9n7rm > :last-child, .framer-DK6rB .framer-48qkl0 > :last-child, .framer-DK6rB .framer-t15uo1 > :last-child, .framer-DK6rB .framer-1e09niz > :last-child, .framer-DK6rB .framer-cgy8wp > :last-child, .framer-DK6rB .framer-1osn1u8 > :last-child, .framer-DK6rB .framer-b1go8t > :last-child, .framer-DK6rB .framer-1k8p3mv > :last-child, .framer-DK6rB .framer-k75n4u > :last-child, .framer-DK6rB .framer-fzejrv > :last-child, .framer-DK6rB .framer-1tvm5ah > :last-child, .framer-DK6rB .framer-1xwpzul > :last-child, .framer-DK6rB .framer-2kn4qq > :last-child, .framer-DK6rB .framer-en0uc5 > :last-child, .framer-DK6rB .framer-lmb2wj > :last-child, .framer-DK6rB .framer-cpht7g > :last-child, .framer-DK6rB .framer-7md027 > :last-child, .framer-DK6rB .framer-1xca420 > :last-child, .framer-DK6rB .framer-ujqgg0 > :last-child, .framer-DK6rB .framer-1bpvgwv > :last-child, .framer-DK6rB .framer-1lkxobu > :last-child, .framer-DK6rB .framer-1186zzq > :last-child, .framer-DK6rB .framer-1mf5qe2 > :last-child, .framer-DK6rB .framer-19j0b8m > :last-child, .framer-DK6rB .framer-1qo4v69 > :last-child, .framer-DK6rB .framer-1k1koqx > :last-child, .framer-DK6rB .framer-1jclgpb > :last-child, .framer-DK6rB .framer-1rxtzu > :last-child, .framer-DK6rB .framer-1oatn47 > :last-child, .framer-DK6rB .framer-1n0vs1w > :last-child, .framer-DK6rB .framer-1k6cs5f > :last-child, .framer-DK6rB .framer-l635mu > :last-child, .framer-DK6rB .framer-jbj9j6 > :last-child, .framer-DK6rB .framer-17pjfmv > :last-child, .framer-DK6rB .framer-7hu5uh > :last-child, .framer-DK6rB .framer-1ii45jg > :last-child { margin-bottom: 0px; } .framer-DK6rB .framer-vi1zhz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DK6rB .framer-vi1zhz > :first-child, .framer-DK6rB .framer-1ffmjq9 > :first-child, .framer-DK6rB .framer-9r87wk > :first-child, .framer-DK6rB .framer-182kdtz > :first-child, .framer-DK6rB .framer-1e15lv5 > :first-child, .framer-DK6rB .framer-1w8j5ue > :first-child, .framer-DK6rB .framer-16qyykk > :first-child, .framer-DK6rB .framer-1re3yhd > :first-child, .framer-DK6rB .framer-1sw58pd > :first-child, .framer-DK6rB .framer-p7hhgb > :first-child, .framer-DK6rB .framer-ez71h1 > :first-child, .framer-DK6rB .framer-saav1q > :first-child, .framer-DK6rB .framer-wfhp8m > :first-child, .framer-DK6rB .framer-cnom53 > :first-child, .framer-DK6rB .framer-qmjzpi > :first-child, .framer-DK6rB .framer-1u3din8 > :first-child, .framer-DK6rB .framer-rb7if6 > :first-child, .framer-DK6rB .framer-97t5tp > :first-child, .framer-DK6rB .framer-wlk2pe > :first-child, .framer-DK6rB .framer-68syal > :first-child, .framer-DK6rB .framer-1813tpv > :first-child { margin-left: 0px; } .framer-DK6rB .framer-vi1zhz > :last-child, .framer-DK6rB .framer-1ffmjq9 > :last-child, .framer-DK6rB .framer-9r87wk > :last-child, .framer-DK6rB .framer-182kdtz > :last-child, .framer-DK6rB .framer-1e15lv5 > :last-child, .framer-DK6rB .framer-1w8j5ue > :last-child, .framer-DK6rB .framer-16qyykk > :last-child, .framer-DK6rB .framer-1re3yhd > :last-child, .framer-DK6rB .framer-1sw58pd > :last-child, .framer-DK6rB .framer-p7hhgb > :last-child, .framer-DK6rB .framer-ez71h1 > :last-child, .framer-DK6rB .framer-saav1q > :last-child, .framer-DK6rB .framer-wfhp8m > :last-child, .framer-DK6rB .framer-cnom53 > :last-child, .framer-DK6rB .framer-qmjzpi > :last-child, .framer-DK6rB .framer-1u3din8 > :last-child, .framer-DK6rB .framer-rb7if6 > :last-child, .framer-DK6rB .framer-97t5tp > :last-child, .framer-DK6rB .framer-wlk2pe > :last-child, .framer-DK6rB .framer-68syal > :last-child, .framer-DK6rB .framer-1813tpv > :last-child { margin-right: 0px; } .framer-DK6rB .framer-he1c7i > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-DK6rB .framer-1ffmjq9 > *, .framer-DK6rB .framer-1e15lv5 > *, .framer-DK6rB .framer-16qyykk > *, .framer-DK6rB .framer-1sw58pd > *, .framer-DK6rB .framer-p7hhgb > *, .framer-DK6rB .framer-wfhp8m > *, .framer-DK6rB .framer-1u3din8 > *, .framer-DK6rB .framer-wlk2pe > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-DK6rB .framer-iadp4w > *, .framer-DK6rB .framer-1k8p3mv > *, .framer-DK6rB .framer-1ii45jg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DK6rB .framer-9r87wk > *, .framer-DK6rB .framer-1w8j5ue > *, .framer-DK6rB .framer-1re3yhd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DK6rB .framer-8346gp > *, .framer-DK6rB .framer-110ixpg > *, .framer-DK6rB .framer-hsk2wj > *, .framer-DK6rB .framer-skephz > *, .framer-DK6rB .framer-1m0sf4h > *, .framer-DK6rB .framer-k75n4u > *, .framer-DK6rB .framer-1xwpzul > *, .framer-DK6rB .framer-lmb2wj > *, .framer-DK6rB .framer-7md027 > *, .framer-DK6rB .framer-1bpvgwv > *, .framer-DK6rB .framer-1lkxobu > *, .framer-DK6rB .framer-1jclgpb > *, .framer-DK6rB .framer-1oatn47 > *, .framer-DK6rB .framer-1k6cs5f > *, .framer-DK6rB .framer-jbj9j6 > *, .framer-DK6rB .framer-7hu5uh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-DK6rB .framer-13fft3k > *, .framer-DK6rB .framer-1qo4v69 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-DK6rB .framer-dhb65 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-DK6rB .framer-1u8pi1e > *, .framer-DK6rB .framer-1b9n7rm > *, .framer-DK6rB .framer-1xca420 > *, .framer-DK6rB .framer-1mf5qe2 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-DK6rB .framer-o3upmz > *, .framer-DK6rB .framer-48qkl0 > *, .framer-DK6rB .framer-cgy8wp > *, .framer-DK6rB .framer-1osn1u8 > *, .framer-DK6rB .framer-b1go8t > *, .framer-DK6rB .framer-fzejrv > *, .framer-DK6rB .framer-2kn4qq > *, .framer-DK6rB .framer-ujqgg0 > *, .framer-DK6rB .framer-19j0b8m > *, .framer-DK6rB .framer-1rxtzu > *, .framer-DK6rB .framer-1n0vs1w > *, .framer-DK6rB .framer-l635mu > *, .framer-DK6rB .framer-17pjfmv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-DK6rB .framer-mhwl1p > *, .framer-DK6rB .framer-t15uo1 > *, .framer-DK6rB .framer-cpht7g > *, .framer-DK6rB .framer-1186zzq > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-DK6rB .framer-182kdtz > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-DK6rB .framer-1e09niz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-DK6rB .framer-1k1koqx > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-DK6rB .framer-ez71h1 > *, .framer-DK6rB .framer-cnom53 > *, .framer-DK6rB .framer-rb7if6 > *, .framer-DK6rB .framer-68syal > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-DK6rB .framer-saav1q > *, .framer-DK6rB .framer-qmjzpi > *, .framer-DK6rB .framer-97t5tp > *, .framer-DK6rB .framer-1813tpv > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",'.framer-DK6rB[data-border=\"true\"]::after, .framer-DK6rB [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-DK6rB.framer-72rtr7 { width: 810px; } .framer-DK6rB .framer-vi1zhz { padding: 150px 32px 64px 32px; } .framer-DK6rB .framer-he1c7i, .framer-DK6rB .framer-mhwl1p, .framer-DK6rB .framer-cpht7g { gap: 24px; } .framer-DK6rB .framer-qy4pf0 { max-width: 658px; } .framer-DK6rB .framer-nqkn6i, .framer-DK6rB .framer-dhb65, .framer-DK6rB .framer-1bpvgwv, .framer-DK6rB .framer-17wy01c-container, .framer-DK6rB .framer-18xe2y2-container, .framer-DK6rB .framer-1rxtzu, .framer-DK6rB .framer-1n0vs1w, .framer-DK6rB .framer-l635mu, .framer-DK6rB .framer-17pjfmv, .framer-DK6rB .framer-17jgz3n-container { width: 100%; } .framer-DK6rB .framer-iadp4w, .framer-DK6rB .framer-8346gp { padding: 0px 32px 64px 32px; } .framer-DK6rB .framer-dv3td6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-DK6rB .framer-12v7cda-container { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 466px); left: unset; position: relative; top: unset; transform: unset; } .framer-DK6rB .framer-9r87wk { aspect-ratio: 4.916666666666667 / 1; height: var(--framer-aspect-ratio-supported, 70px); top: 50%; width: 241px; z-index: 1; } .framer-DK6rB .framer-160yt3v, .framer-DK6rB .framer-1e15lv5, .framer-DK6rB .framer-16qyykk, .framer-DK6rB .framer-1db4ifi-container, .framer-DK6rB .framer-q4p3im-container { flex: 1 0 0px; width: 1px; } .framer-DK6rB .framer-110ixpg { padding: 64px 32px 0px 32px; } .framer-DK6rB .framer-1u8pi1e { overflow: visible; width: 100%; } .framer-DK6rB .framer-1o8bex8 { align-self: stretch; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-DK6rB .framer-6uucmi, .framer-DK6rB .framer-skephz, .framer-DK6rB .framer-lmb2wj, .framer-DK6rB .framer-1lkxobu { padding: 64px 32px 64px 32px; } .framer-DK6rB .framer-250we9, .framer-DK6rB .framer-tgspxs, .framer-DK6rB .framer-jfrm6 { align-self: stretch; width: auto; } .framer-DK6rB .framer-182kdtz { flex-direction: column; padding: 32px; } .framer-DK6rB .framer-t15uo1 { flex: none; order: 0; width: 100%; } .framer-DK6rB .framer-1k8p3mv { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: row; order: 1; width: 100%; } .framer-DK6rB .framer-1sw58pd { overflow: auto; } .framer-DK6rB .framer-1jclgpb { width: 335px; } .framer-DK6rB .framer-1nubay7-container, .framer-DK6rB .framer-yztwal-container, .framer-DK6rB .framer-16lcw3r-container, .framer-DK6rB .framer-7zfv24-container { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 13.29004786036036%, rgba(0,0,0,1) 51.50971283783784%) add; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 13.29004786036036%, rgba(0,0,0,1) 51.50971283783784%) add; } .framer-DK6rB .framer-1oatn47 { width: 337px; } .framer-DK6rB .framer-1k6cs5f { width: 332px; } .framer-DK6rB .framer-jbj9j6 { width: 333px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DK6rB .framer-he1c7i, .framer-DK6rB .framer-dv3td6, .framer-DK6rB .framer-mhwl1p, .framer-DK6rB .framer-182kdtz, .framer-DK6rB .framer-1k8p3mv, .framer-DK6rB .framer-cpht7g { gap: 0px; } .framer-DK6rB .framer-he1c7i > *, .framer-DK6rB .framer-mhwl1p > *, .framer-DK6rB .framer-cpht7g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-DK6rB .framer-he1c7i > :first-child, .framer-DK6rB .framer-dv3td6 > :first-child, .framer-DK6rB .framer-mhwl1p > :first-child, .framer-DK6rB .framer-182kdtz > :first-child, .framer-DK6rB .framer-cpht7g > :first-child { margin-top: 0px; } .framer-DK6rB .framer-he1c7i > :last-child, .framer-DK6rB .framer-dv3td6 > :last-child, .framer-DK6rB .framer-mhwl1p > :last-child, .framer-DK6rB .framer-182kdtz > :last-child, .framer-DK6rB .framer-cpht7g > :last-child { margin-bottom: 0px; } .framer-DK6rB .framer-dv3td6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DK6rB .framer-182kdtz > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-DK6rB .framer-1k8p3mv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DK6rB .framer-1k8p3mv > :first-child { margin-left: 0px; } .framer-DK6rB .framer-1k8p3mv > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-DK6rB.framer-72rtr7 { width: 390px; } .framer-DK6rB .framer-vi1zhz { padding: 150px 24px 64px 24px; } .framer-DK6rB .framer-he1c7i, .framer-DK6rB .framer-13fft3k, .framer-DK6rB .framer-cpht7g, .framer-DK6rB .framer-1qo4v69 { gap: 24px; } .framer-DK6rB .framer-1dyvgcl { height: unset; left: calc(50.00000000000002% - 326px / 2); top: -90px; } .framer-DK6rB .framer-nqkn6i { max-width: 315px; } .framer-DK6rB .framer-1ffmjq9 { gap: 16px; } .framer-DK6rB .framer-iadp4w, .framer-DK6rB .framer-8346gp, .framer-DK6rB .framer-6uucmi { padding: 24px; } .framer-DK6rB .framer-dv3td6 { align-content: center; align-items: center; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-DK6rB .framer-12v7cda-container { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 214px); left: unset; position: relative; top: unset; transform: unset; } .framer-DK6rB .framer-9r87wk { aspect-ratio: 4.916666666666667 / 1; height: var(--framer-aspect-ratio-supported, 46px); left: 50%; top: 50%; width: 158px; z-index: 1; } .framer-DK6rB .framer-160yt3v { flex: 1 0 0px; width: 1px; } .framer-DK6rB .framer-1cukwhl, .framer-DK6rB .framer-u26itp { white-space: pre-wrap; width: 277px; word-break: break-word; word-wrap: break-word; } .framer-DK6rB .framer-110ixpg { padding: 64px 24px 0px 24px; } .framer-DK6rB .framer-hsk2wj, .framer-DK6rB .framer-skephz, .framer-DK6rB .framer-lmb2wj, .framer-DK6rB .framer-1lkxobu, .framer-DK6rB .framer-1k1koqx, .framer-DK6rB .framer-7hu5uh { padding: 64px 24px 64px 24px; } .framer-DK6rB .framer-dhb65, .framer-DK6rB .framer-1u8pi1e, .framer-DK6rB .framer-o3upmz, .framer-DK6rB .framer-1m0sf4h, .framer-DK6rB .framer-48qkl0, .framer-DK6rB .framer-250we9, .framer-DK6rB .framer-7md027, .framer-DK6rB .framer-ujqgg0, .framer-DK6rB .framer-tgspxs, .framer-DK6rB .framer-1bpvgwv, .framer-DK6rB .framer-17wy01c-container, .framer-DK6rB .framer-18xe2y2-container, .framer-DK6rB .framer-19j0b8m, .framer-DK6rB .framer-jfrm6, .framer-DK6rB .framer-1db4ifi-container, .framer-DK6rB .framer-q4p3im-container, .framer-DK6rB .framer-1jclgpb, .framer-DK6rB .framer-1rxtzu, .framer-DK6rB .framer-ez71h1, .framer-DK6rB .framer-g6phwy-container, .framer-DK6rB .framer-1oatn47, .framer-DK6rB .framer-1n0vs1w, .framer-DK6rB .framer-cnom53, .framer-DK6rB .framer-1yl8wvd-container, .framer-DK6rB .framer-1k6cs5f, .framer-DK6rB .framer-l635mu, .framer-DK6rB .framer-rb7if6, .framer-DK6rB .framer-q37t8p-container, .framer-DK6rB .framer-jbj9j6, .framer-DK6rB .framer-17pjfmv, .framer-DK6rB .framer-68syal, .framer-DK6rB .framer-1noda0q-container, .framer-DK6rB .framer-17jgz3n-container { width: 100%; } .framer-DK6rB .framer-ahdyf3, .framer-DK6rB .framer-ubrd2e, .framer-DK6rB .framer-o76hds, .framer-DK6rB .framer-1xfaelg, .framer-DK6rB .framer-5np5kh, .framer-DK6rB .framer-1wt8e51 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-DK6rB .framer-1o8bex8 { max-width: 226px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-DK6rB .framer-1b9n7rm, .framer-DK6rB .framer-1xca420 { align-self: unset; width: 100%; } .framer-DK6rB .framer-182kdtz, .framer-DK6rB .framer-1sw58pd { flex-direction: column; } .framer-DK6rB .framer-t15uo1 { flex: none; order: 0; width: 100%; } .framer-DK6rB .framer-1k8p3mv { flex: none; order: 1; width: 100%; } .framer-DK6rB .framer-1e15lv5, .framer-DK6rB .framer-16qyykk { flex-direction: column; justify-content: flex-end; } .framer-DK6rB .framer-k75n4u, .framer-DK6rB .framer-1xwpzul { flex: none; width: 100%; } .framer-DK6rB .framer-1186zzq { max-width: unset; } .framer-DK6rB .framer-p7hhgb, .framer-DK6rB .framer-wfhp8m, .framer-DK6rB .framer-1u3din8, .framer-DK6rB .framer-wlk2pe { flex-direction: column; height: 650px; } .framer-DK6rB .framer-m9bhgk, .framer-DK6rB .framer-49fkvr, .framer-DK6rB .framer-168ka2k, .framer-DK6rB .framer-dx3wl5 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-DK6rB .framer-saav1q, .framer-DK6rB .framer-qmjzpi, .framer-DK6rB .framer-97t5tp, .framer-DK6rB .framer-1813tpv { flex-direction: column; width: 100%; } .framer-DK6rB .framer-1nubay7-container { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.959318693693694%, rgba(0,0,0,1) 53.67222691441441%) add; bottom: 0px; height: 43%; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.959318693693694%, rgba(0,0,0,1) 53.67222691441441%) add; top: unset; width: unset; } .framer-DK6rB .framer-yztwal-container { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.959318693693694%, rgba(0,0,0,1) 53.67222691441441%, rgba(0, 0, 0, 0) 100%) add; bottom: 0px; height: 43%; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.959318693693694%, rgba(0,0,0,1) 53.67222691441441%, rgba(0, 0, 0, 0) 100%) add; top: unset; width: unset; } .framer-DK6rB .framer-16lcw3r-container { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.959318693693694%, rgba(0,0,0,1) 53.67222691441441%, rgba(0, 0, 0, 0) 100%) add; bottom: 0px; height: 45%; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.959318693693694%, rgba(0,0,0,1) 53.67222691441441%, rgba(0, 0, 0, 0) 100%) add; top: unset; width: unset; } .framer-DK6rB .framer-7zfv24-container { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.959318693693694%, rgba(0,0,0,1) 53.67222691441441%) add; bottom: 0px; height: 49%; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.959318693693694%, rgba(0,0,0,1) 53.67222691441441%) add; top: unset; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DK6rB .framer-he1c7i, .framer-DK6rB .framer-1ffmjq9, .framer-DK6rB .framer-dv3td6, .framer-DK6rB .framer-13fft3k, .framer-DK6rB .framer-182kdtz, .framer-DK6rB .framer-1e15lv5, .framer-DK6rB .framer-16qyykk, .framer-DK6rB .framer-cpht7g, .framer-DK6rB .framer-1sw58pd, .framer-DK6rB .framer-1qo4v69, .framer-DK6rB .framer-p7hhgb, .framer-DK6rB .framer-saav1q, .framer-DK6rB .framer-wfhp8m, .framer-DK6rB .framer-qmjzpi, .framer-DK6rB .framer-1u3din8, .framer-DK6rB .framer-97t5tp, .framer-DK6rB .framer-wlk2pe, .framer-DK6rB .framer-1813tpv { gap: 0px; } .framer-DK6rB .framer-he1c7i > *, .framer-DK6rB .framer-13fft3k > *, .framer-DK6rB .framer-1e15lv5 > *, .framer-DK6rB .framer-16qyykk > *, .framer-DK6rB .framer-cpht7g > *, .framer-DK6rB .framer-1sw58pd > *, .framer-DK6rB .framer-1qo4v69 > *, .framer-DK6rB .framer-p7hhgb > *, .framer-DK6rB .framer-wfhp8m > *, .framer-DK6rB .framer-1u3din8 > *, .framer-DK6rB .framer-wlk2pe > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-DK6rB .framer-he1c7i > :first-child, .framer-DK6rB .framer-dv3td6 > :first-child, .framer-DK6rB .framer-13fft3k > :first-child, .framer-DK6rB .framer-182kdtz > :first-child, .framer-DK6rB .framer-1e15lv5 > :first-child, .framer-DK6rB .framer-16qyykk > :first-child, .framer-DK6rB .framer-cpht7g > :first-child, .framer-DK6rB .framer-1sw58pd > :first-child, .framer-DK6rB .framer-1qo4v69 > :first-child, .framer-DK6rB .framer-p7hhgb > :first-child, .framer-DK6rB .framer-saav1q > :first-child, .framer-DK6rB .framer-wfhp8m > :first-child, .framer-DK6rB .framer-qmjzpi > :first-child, .framer-DK6rB .framer-1u3din8 > :first-child, .framer-DK6rB .framer-97t5tp > :first-child, .framer-DK6rB .framer-wlk2pe > :first-child, .framer-DK6rB .framer-1813tpv > :first-child { margin-top: 0px; } .framer-DK6rB .framer-he1c7i > :last-child, .framer-DK6rB .framer-dv3td6 > :last-child, .framer-DK6rB .framer-13fft3k > :last-child, .framer-DK6rB .framer-182kdtz > :last-child, .framer-DK6rB .framer-1e15lv5 > :last-child, .framer-DK6rB .framer-16qyykk > :last-child, .framer-DK6rB .framer-cpht7g > :last-child, .framer-DK6rB .framer-1sw58pd > :last-child, .framer-DK6rB .framer-1qo4v69 > :last-child, .framer-DK6rB .framer-p7hhgb > :last-child, .framer-DK6rB .framer-saav1q > :last-child, .framer-DK6rB .framer-wfhp8m > :last-child, .framer-DK6rB .framer-qmjzpi > :last-child, .framer-DK6rB .framer-1u3din8 > :last-child, .framer-DK6rB .framer-97t5tp > :last-child, .framer-DK6rB .framer-wlk2pe > :last-child, .framer-DK6rB .framer-1813tpv > :last-child { margin-bottom: 0px; } .framer-DK6rB .framer-1ffmjq9 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-DK6rB .framer-1ffmjq9 > :first-child { margin-left: 0px; } .framer-DK6rB .framer-1ffmjq9 > :last-child { margin-right: 0px; } .framer-DK6rB .framer-dv3td6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DK6rB .framer-182kdtz > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-DK6rB .framer-saav1q > *, .framer-DK6rB .framer-qmjzpi > *, .framer-DK6rB .framer-97t5tp > *, .framer-DK6rB .framer-1813tpv > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\",\"@media (min-width: 1440px) { .framer-DK6rB.framer-72rtr7 { width: 1440px; } .framer-DK6rB .framer-dv3td6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; } .framer-DK6rB .framer-12v7cda-container { left: unset; position: relative; top: unset; transform: unset; } .framer-DK6rB .framer-9r87wk { top: 50%; z-index: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-DK6rB .framer-dv3td6 { gap: 0px; } .framer-DK6rB .framer-dv3td6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DK6rB .framer-dv3td6 > :first-child { margin-top: 0px; } .framer-DK6rB .framer-dv3td6 > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8279\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xSFMhnjU5\":{\"layout\":[\"fixed\",\"auto\"]},\"JXMPRkVjQ\":{\"layout\":[\"fixed\",\"auto\"]},\"tp6FehdyR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"NcRLDjO38\":{\"pattern\":\":NcRLDjO38\",\"name\":\"hero\"},\"tNWWiM9f7\":{\"pattern\":\":tNWWiM9f7\",\"name\":\"nav-activation\"},\"sH03vZiyc\":{\"pattern\":\":sH03vZiyc\",\"name\":\"video\"},\"Zp_d2rpRg\":{\"pattern\":\":Zp_d2rpRg\",\"name\":\"logos\"},\"w6tIg5e9w\":{\"pattern\":\":w6tIg5e9w\",\"name\":\"demo\"},\"cBz9f0JtT\":{\"pattern\":\":cBz9f0JtT\",\"name\":\"attitude\"},\"mJeB6o98Z\":{\"pattern\":\":mJeB6o98Z\",\"name\":\"offers\"},\"vzqjjoVps\":{\"pattern\":\":vzqjjoVps\",\"name\":\"pricing\"},\"eciUXGjOE\":{\"pattern\":\":eciUXGjOE\",\"name\":\"work\"},\"COsAcqurM\":{\"pattern\":\":COsAcqurM\",\"name\":\"work\"},\"NRGvXOAZn\":{\"pattern\":\":NRGvXOAZn\",\"name\":\"work\"},\"S2KL5GHnJ\":{\"pattern\":\":S2KL5GHnJ\",\"name\":\"work\"},\"ho_0dLFJW\":{\"pattern\":\":ho_0dLFJW\",\"name\":\"faq\"},\"cgwUUhfuU\":{\"pattern\":\":cgwUUhfuU\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-DK6rB\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8279,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwA_JxhS2f3ZGMZpg.woff2\",weight:\"300\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...NavigationNavigationFonts,...FooterFooterFonts,...ElementsBadgeFonts,...ButtonsButtonFonts,...VideoFonts,...TickerFonts,...ElementsCategoryFonts,...ElementsPricingCardFonts,...ElementsFAQFonts,...SmoothScrollFonts,...CustomScrollBarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"8279\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"NcRLDjO38\\\":{\\\"pattern\\\":\\\":NcRLDjO38\\\",\\\"name\\\":\\\"hero\\\"},\\\"tNWWiM9f7\\\":{\\\"pattern\\\":\\\":tNWWiM9f7\\\",\\\"name\\\":\\\"nav-activation\\\"},\\\"sH03vZiyc\\\":{\\\"pattern\\\":\\\":sH03vZiyc\\\",\\\"name\\\":\\\"video\\\"},\\\"Zp_d2rpRg\\\":{\\\"pattern\\\":\\\":Zp_d2rpRg\\\",\\\"name\\\":\\\"logos\\\"},\\\"w6tIg5e9w\\\":{\\\"pattern\\\":\\\":w6tIg5e9w\\\",\\\"name\\\":\\\"demo\\\"},\\\"cBz9f0JtT\\\":{\\\"pattern\\\":\\\":cBz9f0JtT\\\",\\\"name\\\":\\\"attitude\\\"},\\\"mJeB6o98Z\\\":{\\\"pattern\\\":\\\":mJeB6o98Z\\\",\\\"name\\\":\\\"offers\\\"},\\\"vzqjjoVps\\\":{\\\"pattern\\\":\\\":vzqjjoVps\\\",\\\"name\\\":\\\"pricing\\\"},\\\"eciUXGjOE\\\":{\\\"pattern\\\":\\\":eciUXGjOE\\\",\\\"name\\\":\\\"work\\\"},\\\"COsAcqurM\\\":{\\\"pattern\\\":\\\":COsAcqurM\\\",\\\"name\\\":\\\"work\\\"},\\\"NRGvXOAZn\\\":{\\\"pattern\\\":\\\":NRGvXOAZn\\\",\\\"name\\\":\\\"work\\\"},\\\"S2KL5GHnJ\\\":{\\\"pattern\\\":\\\":S2KL5GHnJ\\\",\\\"name\\\":\\\"work\\\"},\\\"ho_0dLFJW\\\":{\\\"pattern\\\":\\\":ho_0dLFJW\\\",\\\"name\\\":\\\"faq\\\"},\\\"cgwUUhfuU\\\":{\\\"pattern\\\":\\\":cgwUUhfuU\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xSFMhnjU5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JXMPRkVjQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tp6FehdyR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "kvBACe,SAARA,GAAiCC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,WAAAC,EAAW,QAAAC,CAAO,EAAEH,EAAW,CAACI,EAAYC,CAAc,EAAQC,GAAS,EAAK,EAAQC,EAAU,IAAI,CAAC,IAAIC,EAAoBC,EAAS,IAAI,CAACJ,EAAe,EAAI,EAAE,aAAaG,CAAa,EAAEA,EAAc,WAAW,IAAI,CAACH,EAAe,EAAK,CAAE,EAAE,GAAG,CAAE,EAAE,gBAAS,iBAAiB,SAASI,CAAQ,EAAQ,IAAI,CAAC,aAAaD,CAAa,EAAE,SAAS,oBAAoB,SAASC,CAAQ,CAAE,CAAE,EAAE,CAAC,CAAC,EAAE,IAAMC,EAAgBP,EAAQ;AAAA;AAAA;AAAA;AAAA;AAAA,wBAKxcC,EAAYF,EAAW;AAAA;AAAA;AAAA;AAAA,wBAIvBE,EAAYH,EAAM;AAAA;AAAA;AAAA;AAAA;AAAA,wBAKlBA;AAAA;AAAA,QAEhB;AAAA;AAAA;AAAA;AAAA,QAIA,OAAoBU,EAAM,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,SAAS,MAAM,EAAE,SAAS,CAAcC,EAAK,QAAQ,CAAC,SAASF,CAAe,CAAC,EAAeE,EAAK,MAAM,CAAC,MAAM,CAAC,OAAO,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAACb,GAAgB,aAAa,CAAC,MAAM,UAAU,WAAW,UAAU,QAAQ,EAAI,EAAEc,EAAoBd,GAAgB,CAAC,MAAM,CAAC,KAAKe,EAAY,MAAM,MAAM,aAAa,EAAE,WAAW,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,EAAE,QAAQ,CAAC,KAAKA,EAAY,QAAQ,MAAM,gBAAgB,aAAa,MAAM,cAAc,IAAI,CAAC,CAAC,ECrBhB,IAAMC,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,EAAEC,EAAEE,EAAE,CAAC,GAAGJ,IAAIC,GAAGC,IAAIE,EAAE,OAAOO,GAAE,IAAMC,EAASb,GAAGI,GAAgBJ,EAAE,EAAE,EAAEC,EAAEE,CAAC,EAAE,OAAOH,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,QAAQC,KAAKF,EAAE,OAAO,UAAU,eAAe,KAAKA,EAAEE,CAAC,GAAG,EAAE,QAAQA,CAAC,EAAE,IAAID,EAAEC,CAAC,EAAEF,EAAEE,CAAC,GAAG,GAASF,GAAN,MAAsB,OAAO,OAAO,uBAA3B,WAAiD,CAAC,IAAIG,EAAE,EAAE,IAAID,EAAE,OAAO,sBAAsBF,CAAC,EAAEG,EAAED,EAAE,OAAOC,IAAI,EAAE,QAAQD,EAAEC,CAAC,CAAC,EAAE,GAAG,OAAO,UAAU,qBAAqB,KAAKH,EAAEE,EAAEC,CAAC,CAAC,IAAIF,EAAEC,EAAEC,CAAC,CAAC,EAAEH,EAAEE,EAAEC,CAAC,CAAC,GAAG,OAAOF,CAAC,CCArkC,IAAIG,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,IAAM,EAAE,KAAK,IAAID,EAAEH,GAAE,CAAC,EAAE,OAAOK,GAAED,EAAEF,EAAE,CAAC,EAAEC,EAAE,CAAC,CAAC,CAAC,IAAMA,GAAE,CAAC,UAAU,IAAI,QAAQ,GAAG,KAAK,CAAC,EAAQG,GAAiB,CAACC,EAAEJ,GAAE,UAAU,EAAEA,GAAE,QAAQH,EAAEG,GAAE,OAAO,GAAG,EAAE,KAAK,KAAKI,EAAEP,CAAC,GAAG,SAASQ,GAAiBD,EAAE,EAAEP,EAAE,CAAC,OAAOO,EAAE,GAAGP,GAAG,GAAGO,EAAE,GAAGP,GAAG,CAAC,CAAC,IAAMS,GAAO,CAAC,CAAC,UAAUF,EAAEJ,GAAE,UAAU,QAAQH,EAAEG,GAAE,QAAQ,KAAKC,EAAED,GAAE,KAAK,KAAK,EAAE,EAAE,GAAGO,EAAE,EAAE,SAAS,EAAE,EAAE,UAAUC,EAAE,EAAE,aAAaC,EAAE,EAAE,EAAE,CAAC,IAAI,CAAC,EAAE,EAAEL,GAAE,EAAE,CAAC,EAAE,EAAE,IAAMM,EAAE,CAAC,KAAK,GAAM,iBAAiB,GAAM,QAAQ,EAAE,OAAOH,CAAC,EAAQI,EAAEJ,EAAE,EAAQK,EAAE,KAAK,KAAKR,EAAEH,CAAC,EAAE,IAAUY,EAAEV,GAAiBC,EAAEP,EAAEI,CAAC,EAAMa,EAAE,GAAGD,EAAE,EAAE,CAAC,IAAMT,EAAEQ,EAAE,KAAK,KAAK,EAAEC,EAAEA,CAAC,EAAEC,EAAEf,GAAGQ,EAAE,KAAK,IAAI,CAACM,EAAED,EAAEb,CAAC,IAAIc,EAAED,EAAED,EAAE,GAAGP,EAAE,KAAK,IAAIA,EAAEL,CAAC,EAAEY,EAAE,KAAK,IAAIP,EAAEL,CAAC,QAAQe,EAAEV,GAAGG,EAAE,KAAK,IAAI,CAACK,EAAER,CAAC,GAAGO,GAAGC,EAAED,EAAE,GAAGP,GAAG,OAAOA,GAAG,CAACM,EAAE,QAAQI,EAAEV,CAAC,EAAE,IAAML,EAAMK,IAAJ,EAAM,EAAEN,GAAsBgB,EAAEV,EAAEM,EAAE,OAAO,EAAQb,EAAE,KAAK,IAAIE,CAAC,GAAGS,EAAQR,EAAE,KAAK,IAAIO,EAAEG,EAAE,OAAO,GAAGD,EAAE,OAAAC,EAAE,KAAKb,GAAGG,EAAEU,EAAE,iBAAiBL,GAAiB,EAAEE,EAAEG,EAAE,OAAO,EAASA,CAAC,CAAC,EAAQK,GAAM,CAAC,CAAC,KAAKX,EAAE,EAAE,SAASP,EAAE,EAAE,MAAM,EAAE,GAAG,MAAMI,EAAE,KAAK,cAAce,EAAE,gBAAgBT,EAAE,aAAaU,EAAE,IAAI,EAAE,IAAIR,EAAE,aAAaC,EAAE,GAAG,UAAUC,CAAC,IAAI,CAACV,EAAEG,GAAE,GAAGH,CAAC,EAAE,IAAMW,EAAE,CAAC,iBAAiB,GAAM,KAAK,GAAM,QAAQR,EAAE,OAAOA,CAAC,EAAQc,EAAcd,GAAY,IAAT,QAAYA,EAAE,GAAYK,IAAT,QAAYL,EAAEK,EAAQU,EAAgBf,GAAY,IAAT,OAAWK,EAAWA,IAAT,QAAY,KAAK,IAAI,EAAEL,CAAC,EAAE,KAAK,IAAIK,EAAEL,CAAC,EAAE,EAAEK,EAAMI,EAAE,EAAEhB,EAAQiB,EAAEV,EAAES,EAAQO,EAAWH,IAAT,OAAWH,EAAEG,EAAEH,CAAC,EAAEF,EAAE,OAAOQ,EAAEA,IAAIN,IAAID,EAAEO,EAAEhB,GAAG,IAAMiB,EAAUjB,GAAG,CAACS,EAAE,KAAK,IAAI,CAACT,EAAEH,CAAC,EAAQqB,EAAWlB,GAAGgB,EAAEC,EAAUjB,CAAC,EAAQmB,EAAcnB,GAAG,CAAC,IAAML,EAAEsB,EAAUjB,CAAC,EAAQP,EAAEyB,EAAWlB,CAAC,EAAEQ,EAAE,KAAK,KAAK,IAAIb,CAAC,GAAGW,EAAEE,EAAE,QAAQA,EAAE,KAAKQ,EAAEvB,CAAC,EAAM2B,EAAMC,EAAQC,EAAmBtB,GAAG,CAAIc,EAAcN,EAAE,OAAO,IAAGY,EAAEpB,EAAEqB,EAAEnB,GAAO,CAAC,KAAKM,EAAE,QAAQ,GAAGO,EAAgBP,EAAE,OAAO,EAAE,SAASd,GAAsBwB,EAAWlB,EAAEQ,EAAE,OAAO,EAAE,QAAQI,EAAE,UAAUT,EAAE,aAAaG,EAAE,UAAUC,CAAC,CAAC,EAAE,EAAE,OAAAe,EAAmB,CAAC,EAAStB,GAAG,CAAC,IAAIL,EAAE,GAAuE,MAA9D,CAAC0B,GAAYD,IAAT,SAAYzB,EAAE,GAAKwB,EAAcnB,CAAC,EAAEsB,EAAmBtB,CAAC,GAAcoB,IAAT,QAAYpB,EAAEoB,GAAGZ,EAAE,iBAAiB,GAAYa,EAAErB,EAAEoB,CAAC,IAAEZ,EAAE,iBAAiB,GAAM,CAACb,GAAGwB,EAAcnB,CAAC,EAASQ,EAAC,CAAC,EAAQX,GAAE,GAASe,GAAE,IAAI,SAASW,GAAqBvB,EAAE,CAAC,IAAI,EAAMP,EAAEI,GAAMD,EAAEI,EAAE,CAAC,EAAQG,EAAE,CAACP,EAAE,OAAO,EAAE,KAAM,CAACA,EAAE,MAAMH,EAAEmB,IAAGhB,EAAEI,EAAEP,CAAC,EAAEU,EAAE,KAAKP,EAAE,KAAKA,EAAE,OAAOA,EAAE,OAAO,EAAW,IAAT,QAAYA,EAAE,mBAAmB,EAAEH,GAAGA,GAAGI,GAAE,IAAM,EAAEJ,EAAEI,GAAE,OAAIM,EAAE,SAAN,GAAcA,EAAE,KAAKP,EAAE,OAAO,EAAQ,CAAC,UAAUO,EAAE,SAAS,EAAE,IAAI,mBAA0B,GAAgB,GAAG,GAAG,CAAC,CCA1jD,IAAMqB,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,IAAI,EAAE,OAAc,OAAOA,GAAlB,SAAuB,IAAW,EAAE,EAAEA,CAAC,KAAb,MAA0B,IAAT,SAAa,EAAEA,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,SAASC,GAAsBC,EAAE,CAAC,IAAM,EAAE,IAAI,QAAQ,MAAM,CAAC,EAAE,CAAC,IAAI,CAAC,IAAMC,EAAE,IAAI,IAAUC,EAAa,CAACC,EAAE,EAAE,EAAE,IAAIC,EAAE,EAAEC,EAAE,KAAQ,CAAC,IAAMC,EAAE,GAAGH,KAAK,KAAKC,KAAKC,IAAI,OAAAJ,EAAE,IAAIK,CAAC,GAAGL,EAAE,IAAIK,EAAEN,EAAE,OAAO,OAAO,CAAC,KAAKG,EAAE,GAAG,EAAE,SAASC,EAAE,UAAUC,EAAE,IAAI,EAAE,aAAaA,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC,EAASJ,EAAE,IAAIK,CAAC,CAAC,EAAQC,EAAaP,IAAI,EAAE,IAAIA,CAAC,GAAG,EAAE,IAAIA,EAAEQ,GAAER,CAAC,CAAC,EAAS,EAAE,IAAIA,CAAC,GAAG,MAAM,CAAC,gBAAgB,CAACA,EAAEG,EAAEM,EAAER,EAAES,IAAI,CAAC,IAAIN,EAAEC,EAAE,IAAIC,EAAQK,EAAEX,EAAE,OAA8C,GAAjCS,GAAGE,GAAG,GAAGX,EAAE,MAAMY,EAAc,EAAO,CAAC,IAAMH,EAAET,EAAEW,EAAE,CAAC,EAAQE,EAAMF,IAAJ,EAAM,KAAKX,EAAE,CAAC,EAAMc,EAAE,EAAMC,EAAE,EAAQC,EAA8BN,GAAE,UAAU,GAAGM,EAAE,CAAC,GAAK,CAAC,UAAUb,EAAE,mBAAmBM,CAAC,EAAEC,EAAQT,EAA+BE,GAAE,WAAYM,GAAG,EAAQJ,EAA+BF,GAAE,aAAc,YAAY,IAAI,EAAEF,EAAQK,EAAEU,EAAEX,CAAC,EAAE,QAAQU,GAAUX,EAAES,KAAV,MAAuBT,IAAT,OAAWA,EAAEE,GAAOK,IAAJ,GAAWA,IAAJ,GAAcX,EAAE,CAAC,IAAV,QAAec,EAAEG,GAAGjB,GAAGgB,EAAEhB,CAAC,EAAE,QAASK,EAAEC,CAAC,QAAQS,GAAUV,EAAEQ,KAAV,MAAuBR,IAAT,OAAWA,EAAE,WAAWF,EAAE,CAAC,EAAE,IAAMe,EAAEhB,EAAaa,EAAEN,EAAEK,EAA8Bb,GAAE,SAAS,OAAO,CAAC,EAAQkB,EAAEZ,EAAaW,CAAC,EAAEZ,EAAE,OAAO,OAAO,OAAO,OAAO,CAAC,EAAEa,CAAC,EAAE,CAAC,OAAO,QAAQ,CAAC,EAAKT,IAAGA,EAAE,UAAUQ,EAAER,EAAE,mBAAmB,YAAY,IAAI,QAAkDJ,EAAE,CAAC,OAAO,OAAO,SAAnDC,EAAaL,EAAa,EAAE,GAAG,CAAC,EAA8B,iBAAiB,EAAE,OAAOI,CAAC,CAAC,CAAC,CAAC,CAAC,IAAMM,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,KAAK,EAAE,OAAOC,EAAE,OAAOS,EAAE,KAAK,EAAE,CAAC,EAAE,CAAC,GAAiB,OAAO,qBAArB,IAA0C,MAAM,IAAI,CAAC,EAAE,IAAMN,EAAEsB,GAAgB1B,CAAC,EAAQK,EAAE,IAAI,QAAcsB,EAAqB3B,GAAG,CAACA,EAAE,QAASA,GAAG,CAAC,IAAMS,EAAEJ,EAAE,IAAIL,EAAE,MAAM,EAAE,GAAGA,EAAE,iBAAiB,EAAQS,EAAG,GAAGT,EAAE,eAAe,CAAC,IAAMS,EAAE,EAAET,CAAC,EAAe,OAAOS,GAApB,WAAsBJ,EAAE,IAAIL,EAAE,OAAOS,CAAC,EAAEH,EAAE,UAAUN,EAAE,MAAM,OAAUS,IAAGA,EAAET,CAAC,EAAEK,EAAE,OAAOL,EAAE,MAAM,EAAE,CAAE,CAAC,EAAQM,EAAE,IAAI,qBAAqBqB,EAAqB,CAAC,KAAK,EAAE,WAAW1B,EAAE,UAAqB,OAAOS,GAAlB,SAAoBA,EAAEc,GAAEd,CAAC,CAAC,CAAC,EAAE,OAAAN,EAAE,QAASJ,GAAGM,EAAE,QAAQN,CAAC,CAAE,EAAQ,IAAIM,EAAE,WAAW,CAAC,CAAC,IAAMsB,GAAE,IAAI,QAAYC,GAAE,SAASC,GAAe9B,EAAE,EAAE,CAAC,GAAG,EAAE,CAAC,GAAK,CAAC,WAAWA,EAAE,UAAUS,CAAC,EAAE,EAAE,CAAC,EAAE,MAAM,CAAC,MAAMT,EAAE,OAAOS,CAAC,EAAE,OAAOT,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,cAAc,CAAC,EAAE,CAAC,IAAIC,GAAUA,EAAE2B,GAAE,IAAI5B,CAAC,KAAjB,MAA8BC,IAAT,QAAkBA,EAAE,QAASA,GAAG,CAACA,EAAE,CAAC,OAAOD,EAAE,YAAY,EAAE,IAAI,MAAM,CAAC,OAAO8B,GAAe9B,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,SAASgC,GAAUhC,EAAE,CAACA,EAAE,QAAQ+B,EAAY,CAAC,CAAC,SAASE,IAAsB,CAAe,OAAO,eAArB,MAAsCJ,GAAE,IAAI,eAAeG,EAAS,EAAE,CAAC,SAASE,GAAclC,EAAE,EAAE,CAAC6B,IAAGI,GAAqB,EAAE,IAAM,EAAEP,GAAgB1B,CAAC,EAAE,SAAE,QAASA,GAAG,CAAC,IAAIS,EAAEmB,GAAE,IAAI5B,CAAC,EAAMS,IAAGA,EAAE,IAAI,IAAImB,GAAE,IAAI5B,EAAES,CAAC,GAAEA,EAAE,IAAI,CAAC,EAA8BoB,IAAE,QAAQ7B,CAAC,CAAC,CAAE,EAAQ,IAAI,CAAC,EAAE,QAASA,GAAG,CAAC,IAAMS,EAAEmB,GAAE,IAAI5B,CAAC,EAA8BS,GAAE,OAAO,CAAC,EAA+BA,GAAE,MAAoCoB,IAAE,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,EAAE,EAAE,CAACA,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAASC,GAAkBD,EAAE,EAAE,EAAE,CAACA,EAAE,cAAc,IAAI,YAAY,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAME,GAAG,CAAC,SAASF,GAAG,EAAQA,EAAE,OAAQ,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,EAAE,CAAC,cAAcG,EAAE,CAAC,CAAC,IAAI,CAAC,GAAK,CAAC,KAAKC,CAAC,EAAED,EAAEE,EAAEC,GAAEH,EAAE,CAAC,MAAM,CAAC,EAAE,OAAOI,GAASP,EAAGG,GAAG,CAAwC,GAAvC,EAAE,EAAEF,GAAkBD,EAAE,YAAYG,CAAC,EAAK,CAACC,EAAE,OAAOI,GAAG,CAAC,EAAE,EAAEP,GAAkBD,EAAE,YAAYQ,CAAC,CAAC,CAAC,EAAGH,CAAC,CAAC,CAAC,EAAQI,GAAW,CAACT,EAAE,EAAE,IAAIG,GAAG,EAAI,CAACA,EAAE,aAAuBA,EAAE,cAAZ,WAAyB,EAAE,EAAEJ,GAAqBC,EAAE,EAAEG,CAAC,EAAE,EAAQO,GAAG,CAAC,SAASV,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMG,EAAEM,GAAWT,EAAE,aAAa,CAAC,EAAQI,EAAEK,GAAWT,EAAE,WAAW,CAAC,EAAE,OAAAA,EAAE,iBAAiB,eAAeG,CAAC,EAAEH,EAAE,iBAAiB,eAAeI,CAAC,EAAQ,IAAI,CAACJ,EAAE,oBAAoB,eAAeG,CAAC,EAAEH,EAAE,oBAAoB,eAAeI,CAAC,CAAC,CAAC,CAAC,EAAQO,GAAG,CAAC,SAASX,GAAG,EAAQA,EAAE,MAAO,UAAU,CAACA,EAAE,CAAC,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,IAAMY,EAAYJ,GAAG,CAAC,EAAE,EAAET,GAAqBC,EAAE,WAAWQ,CAAC,EAAEK,EAAO,oBAAoB,YAAYD,CAAW,CAAC,EAAQE,EAAcC,GAAG,CAAC,EAAE,EAAEhB,GAAqBC,EAAE,aAAae,CAAC,EAAEF,EAAO,iBAAiB,YAAYD,CAAW,CAAC,EAAE,OAAAZ,EAAE,iBAAiB,cAAcc,CAAa,EAAQ,IAAI,CAACd,EAAE,oBAAoB,cAAcc,CAAa,EAAED,EAAO,oBAAoB,YAAYD,CAAW,CAAC,CAAC,CAAC,EAAQI,GAAG,CAAC,OAAOd,GAAG,MAAMQ,GAAG,MAAMC,EAAE,EAAQM,GAAG,CAAC,UAAU,UAAU,GAAG,OAAO,KAAKD,EAAE,EAAE,MAAM,ECA5klB,IAAME,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA8BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,EAAYF,EAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcd,EAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,EAAOmC,EAAW,EAA4BG,EAAUC,EAAO,IAAI,EAAQC,GAAYC,EAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,GAAYlB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,GAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,IAAMC,EAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,EAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,GAAY,CAAC,EAAE,QAAQP,EAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,IAAtLd,GAAY,CAAC,EAAE,QAAQP,EAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,YAAYA,GAAY,CAAC,EAAE,QAAQ,UAAUA,GAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,EAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQC,GAAe5B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,EAAY,CAChkD,GAAG,CAACL,EAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,EAAU,KAAKC,GAAM,KAAKR,CAAO,EAASS,GAAOrB,EAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,CAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGV,GAAef,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,GAAaC,GAAcC,GAAcC,GAAc,IAAIC,GAAOL,IAAQ,IAAGK,GAAI3B,GAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,GAAI3B,GAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMnB,GAAWuC,GAAaF,EAAM,SAAS,MAAME,KAAe,OAAO,OAAOA,GAAa,MAAM,OAAO,OAAOtC,GAAYuC,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,GAAI,MAAMxB,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,GAAGtB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,GAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,EAAc,CAACgC,EAAMW,KAAa,CAAC,IAAIT,GAAaC,GAAcC,GAAcC,GAAcO,GAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,GAAaF,EAAM,SAAS,MAAME,KAAe,OAAO,OAAOA,GAAa,MAAM,OAAO,OAAOtC,GAAYuC,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,GAAW,MAAM,CAAC,IAAIP,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,MAAMzC,GAAW0C,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,MAAM,OAAO,OAAOzC,GAAYgD,GAAcZ,EAAM,SAAS,MAAMY,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,EAAU,CAAC,EAAED,EAAE,KAAKC,EAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,GAAehC,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,GAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,GAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,EAAS,CAAC,IAAMyD,EAASC,GAAU/C,CAAS,EAEzCrC,IAA+BwD,EAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,IAAgB,CAAC/D,GAAe,OAAAuE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,GAAY,CAAC,EAAEA,GAAYwC,EAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,EAAc,EAAE/D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIuE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,GAAe/D,CAAK,CAAC,EACtX6C,EAAU,IAAI,CAAK0B,GAAa,UAAkBC,GAAUD,GAAa,QAAQ,YAAY,SAAUA,GAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,GAAa,QAAQ,YAAY,WAAWA,GAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,IAAgBK,IAAiB/E,GAA+B,OAKnF2E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,IAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,IAAO3E,GAAaiE,GAAK,SAASU,GAAMV,GAAK,QAAQW,GAAK,EAAEd,GAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,EAAO,IAAI8E,GAAK,OAAO,CAAE,CAAC,EAAe,IAAMY,GAAczD,EAAa,WAAW,YAAkB0D,GAAetE,EAAU,EAAQuE,GAAa,IAAIvE,EAAU,EAAQwE,GAAeC,GAAMxE,EAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,EAAgB0E,GAAS,mBAAmBN,qBAAgCnE,MAAcsE,yBAAqCF,yBAAqCC,sBAAgCrE,MAAcwE,OAAkC,OAAI/D,EAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB9B,EAAY6E,GAAS,OAAU,aAAa7E,EAAY6E,GAAS,OAAU,UAAU7E,EAAY6E,GAAS,OAAU,SAAS5E,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIY,EAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI5F,EAAI,IAAIS,IAAY,UAAUsF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,KAAK7D,IAAY,SAASsF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,WAAW5D,EAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,GAAa,UACz5DA,GAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,GAAa,UACzGA,GAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBtG,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,EAAyBuG,EAAoBvG,GAAO,CAAC,MAAM,CAAC,KAAKwG,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,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKuG,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,EC3Bz4G,IAAMC,GAAkB,CAC3B,SAAU,WACV,MAAO,OACP,OAAQ,OACR,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EACaC,GAAkB,CAC3B,GAAGD,GACH,aAAc,EACd,WAAY,0BACZ,MAAO,OACP,OAAQ,kBACR,cAAe,QACnB,EACaE,GAAgB,CACzB,QAAS,CACL,KAAMC,EAAY,YACtB,EACA,aAAc,CACV,KAAMA,EAAY,YACtB,EACA,aAAc,CACV,KAAMA,EAAY,YACtB,CACJ,EACaC,GAAkB,CAC3B,KAAMD,EAAY,OAClB,MAAO,YACP,IAAK,EACL,IAAK,IACL,KAAM,EACN,eAAgB,EACpB,EACaE,GAAe,CACxB,KAAM,CACF,KAAMF,EAAY,QAClB,MAAO,OACP,aAAc,GACd,cAAe,UACf,aAAc,QAClB,EACA,WAAY,CACR,KAAMA,EAAY,OAClB,MAAO,SACP,YAAa,QACb,OAAQ,CAAC,CAAE,KAAAG,CAAM,IAAI,CAACA,CAC1B,EACA,WAAY,CACR,KAAMH,EAAY,KAClB,MAAO,SACP,QAAS,CACL,IACA,IACA,IACA,IACA,IACA,IACA,IACA,IACA,GACJ,EACA,aAAc,CACV,OACA,cACA,QACA,UACA,SACA,YACA,OACA,aACA,OACJ,EACA,OAAQ,CAAC,CAAE,KAAAG,CAAM,IAAI,CAACA,CAC1B,CACJ,EC5EO,SAASC,GAAWC,EAASC,EAAS,CACzC,OAAOC,GAA0B,GAAMF,EAASC,CAAO,CAC3D,CACO,SAASE,GAAUC,EAAQH,EAAS,CACvC,OAAOC,GAA0B,GAAOE,EAAQH,CAAO,CAC3D,CACA,SAASC,GAA0BG,EAAMC,EAAUL,EAAU,GAAM,CAC/D,IAAMM,EAAaC,GAA+B,EAClDC,EAAU,IAAI,CACNR,GAAWM,IAAeF,GAAMC,EAAS,CACjD,EAAG,CACCC,CACJ,CAAC,CACL,CCdO,IAAMG,GAAkB,IAAI,CAC/B,GAAI,OAAOC,EAAc,IAAa,CAClC,IAAMC,EAAYD,EAAU,UAAU,YAAY,EAElD,OADkBC,EAAU,QAAQ,QAAQ,EAAI,IAAMA,EAAU,QAAQ,cAAc,EAAI,IAAMA,EAAU,QAAQ,SAAS,EAAI,KAAOA,EAAU,QAAQ,QAAQ,EAAI,MAEjK,OAAO,EAClB,EACaC,GAAqB,IAAIC,EAAQ,IAAIJ,GAAgB,EAC5D,CAAC,CAAC,ECGD,SAASK,IAAgB,CAG5B,OAFiBC,EAAQ,IAAIC,GAAa,QAAQ,IAAMA,GAAa,OACnE,CAAC,CAAC,CAER,CCdO,SAASC,GAAUC,EAAO,CAC7B,GAAM,CAAE,aAAAC,EAAe,oBAAAC,EAAsB,cAAAC,EAAgB,eAAAC,EAAiB,kBAAAC,EAAoB,iBAAAC,CAAoB,EAAIN,EAU1H,OAToBO,EAAQ,IAAIL,EAAsB,GAAGC,OAAmBC,OAAoBC,OAAuBC,MAAuB,GAAGL,MAC/I,CACEA,EACAC,EACAC,EACAC,EACAC,EACAC,CACJ,CAAC,CAEL,CACO,IAAME,GAAsB,CAC/B,aAAc,CACV,MAAO,SACP,KAAMC,EAAY,YAClB,UAAW,sBACX,aAAc,CACV,SACA,mBACJ,EACA,UAAW,CACP,gBACA,iBACA,oBACA,kBACJ,EACA,YAAa,CACT,KACA,KACA,KACA,IACJ,EACA,IAAK,CACT,CACJ,EAcO,IAAMC,GAAiB,CAC1B,QAAS,CACL,KAAMC,EAAY,YAClB,UAAW,iBACX,aAAc,CACV,UACA,kBACJ,EACA,UAAW,CACP,aACA,eACA,gBACA,aACJ,EACA,YAAa,CACT,IACA,IACA,IACA,GACJ,EACA,IAAK,EACL,MAAO,SACX,CACJ,EC3E2Z,IAAIC,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EACtvB,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQjH,SAASC,GAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACP,EAAS,QAAQ,OAAO,IAAMQ,GAAaD,IAAc,EAAE,KAAKA,GAAaP,EAAS,QAAQ,SAAeS,EAAa,KAAK,IAAIT,EAAS,QAAQ,YAAYQ,CAAW,EAAE,GAAMR,EAAS,QAAQ,SAAS,GAAG,CAACS,IAAcT,EAAS,QAAQ,YAAYQ,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAkM,EAAjLN,EAAS,QAAQ,YAAY,GAAGA,EAAS,QAAQ,WAAW,CAACA,EAAS,QAAQ,QAAQ,CAACA,EAAS,QAAQ,OAAOA,EAAS,QAAQ,WAAWA,EAAS,QAAQ,oBAAiCA,EAAS,SAAS,CAACG,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKH,EAAS,QAAQ,KAAK,EAAE,MAAMW,GAAG,CAAC,CAAC,EAC76B,QAAQ,IAAIR,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQS,EAAMN,GAAY,IAAI,CAAI,CAACN,EAAS,SAASG,EAAe,SAAeH,EAAS,QAAQ,MAAM,CAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAU,EAAK,MAAAE,EAAM,YAAAP,CAAW,CAAE,CAAC,SAASQ,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE3eJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAOnK,IAAIC,GAAoC,GAAY3B,GAAuB4B,GAAK,SAAoBzC,EAAM,CAAC,GAAK,CAAC,QAAA0C,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,QAAQf,EAAY,MAAAC,EAAM,YAAAE,EAAY,SAAAC,EAAS,SAAAY,EAAS,UAAAC,EAAU,gBAAAC,EAAgB,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,OAAAC,EAAO,cAAAC,EAAc,UAAUC,EAAc,OAAAC,EAAO,KAAA7B,CAAI,EAAE/B,EAAYe,EAASI,EAAO,EAAQ0C,EAASC,GAAmB,EAAQC,EAAiB5C,EAAO,IAAI,EAAQ6C,EAAgB7C,EAAO,IAAI,EAAQ8C,GAAWC,GAAc,EAAQC,GAAaC,GAAUpE,CAAK,EAGnjBqE,EAAiBJ,GAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,GAAaL,GAAW,GAAKM,GAAUxD,CAAQ,EAClKyD,EAAUb,IAAgB,IAAI,KAAKA,EAAmB,CAAC,KAAAlC,GAAK,MAAAE,GAAM,YAAAP,EAAW,EAAEN,GAAoBC,CAAQ,EACjH0D,EAAU,IAAI,CAAIR,KAAqBpC,EAAYJ,GAAK,EAAOE,GAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF4C,EAAU,IAAI,CAAIR,IAAqBI,IAAmB,gBAAwBC,GAAa7C,GAAK,EAAOE,GAAM,EAAE,EAAE,CAAC0C,EAAiBC,EAAY,CAAC,EAEpJG,EAAU,IAAI,CAAC,GAAG,CAACjC,GAAoC,CAACA,GAAoC,GAAK,OAAQ,IAAMkC,EAAiBC,GAAc9B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAIzB,IAK1NsD,GAAoE,KAOpEF,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAU7B,EAAQC,EAAOC,CAAQ,CAAC,EAC7F4B,EAAU,IAAI,CAAC,GAAIE,GAAc9B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAAS+B,GAAOxD,GAAYwD,CAAK,CAAC,CAAE,EAAE,CAAC/B,CAAQ,CAAC,EACrHgC,GAAW,IAAI,CAAId,EAAiB,UAAU,MAAehD,EAAS,UACnE,CAACiD,GAAiBjC,GAAM,CAACgC,EAAiB,UAAQtC,GAAK,CAAG,CAAC,EAC9DqD,GAAU,IAAI,CAAI/D,EAAS,UAASiD,EAAgB,QAAQjD,EAAS,QAAQ,MAAMgD,EAAiB,QAAQhD,EAAS,QAAQ,OAAOY,GAAM,EAAG,CAAC,EAAE,IAAMoD,GAAIC,EAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGvC,IAAU,MAAM,OAAOE,EAAOqC,EAAS,GAAGvC,IAAU,SAAS,OAAOC,EAAQsC,CAAS,EAAE,CAACvC,EAAQC,EAAQC,EAAO4B,CAAS,CAAC,EAC5H,OAAAC,EAAU,IAAI,CAAIZ,GAAU9C,EAAS,SAASsD,IAAmB,YAAY,WAAW,IAAI5C,GAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GgD,EAAU,IAAI,CAAI1D,EAAS,SAAS,CAACe,IAAMf,EAAS,QAAQ,QAAQ6C,GAAsC,GAAG,IAAI,EAAE,CAACA,CAAM,CAAC,EAC6FhD,EAAK,QAAQ,CAAC,QAAAwC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,IAAIuB,GAAI,KAAKhD,EAAK,IAAIhB,EAAS,SAASW,GAA6CsB,IAAStB,CAAC,EAAE,QAAQA,GAA2CuB,IAAQvB,CAAC,EAAE,OAAOA,GAAyCwB,IAAOxB,CAAC,EAAE,QAAQA,GAAuCyB,IAAMzB,CAAC,EAAE,SAAS2C,IAAmB,WAAW,OAAOX,EAAcD,EAAO,OAAU,aAA1mB,IAAI,CAAK1C,EAAS,UAAkBA,EAAS,QAAQ,YAAY,IAAGK,IAAaoD,GAA+C,GAAG,GAAG,EAAKH,IAAmB,YAAW5C,GAAK,EAAE,EAAmd,SAASQ,EAAS,MAAMgC,GAAW,GAAKnC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAASoB,EAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,GAAa,QAAQ,QAAQ,UAAUrB,EAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAErC,GAAM,YAAY,QAAQA,GAAM,aAAa,CAAC,QAAQ,MAAM,OAAO,oHAAoH,QAAQ,GAAG,cAAc,GAAM,SAAS,GAAM,QAAQ,GAAK,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,eAAe,GAAM,UAAU,QAAQ,gBAAgB,gBAAgB,OAAO,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,IAAMwE,GAAY,2CAA2C,SAASC,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA2C,OAA7BA,EAAM,MAAMM,EAAW,GAAG,CAAC,GAAgB,IAAIC,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,EAAoB5E,GAAM,CAAC,QAAQ,CAAC,KAAK6E,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,YAAY,iBAAiB,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,EAAE,YAAY,gEAAgE,EAAE,QAAQ,CAAC,KAAKuF,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKuF,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAA7B,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAK6B,EAAY,MAAM,MAAM,YAAY,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAMpqF,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAAzD,CAAK,IAAIA,CAAK,EAAE,MAAM,CAAC,KAAKyD,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,ECpEpG,IAAMC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,EAAI,YAAY,EAAI,YAAY,EAAI,YAAY,EAAI,YAAY,EAAI,YAAY,EAAI,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,QAAAC,EAAQ,QAAAC,EAAQ,QAAAC,EAAQ,QAAAC,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUX,GAASW,EAAM,WAAW,mHAAoG,UAAUJ,GAAWI,EAAM,WAAW,6DAA6D,UAAUZ,GAASY,EAAM,WAAW,+LAA2K,UAAUV,GAASU,EAAM,WAAW,yKAAyK,UAAUf,GAASe,EAAM,WAAW,uUAAuU,UAAUH,GAAWG,EAAM,WAAW,kDAA6C,UAAUd,GAASc,EAAM,WAAW,kXAAwW,UAAUL,GAAWK,EAAM,WAAW,4CAA4C,UAAUF,GAAWE,EAAM,WAAW,8DAAyD,UAAUP,GAAWO,EAAM,WAAW,iDAAiD,UAAUb,GAASa,EAAM,WAAW,oNAAoN,UAAUN,GAAWM,EAAM,WAAW,8CAA8C,QAAQjB,GAAwBiB,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMlC,IAAekC,EAAM,iBAAwBlC,EAAS,KAAK,GAAG,EAAEkC,EAAM,iBAAwBlC,EAAS,KAAK,GAAG,EAAUoC,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,QAAAjD,EAAQ,UAAAkD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE9C,GAASgB,CAAK,EAAO,CAAC,YAAA+B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAxE,EAAQ,EAAEyE,GAAgB,CAAC,WAAA9E,GAAW,eAAe,YAAY,IAAI8C,EAAW,QAAAvC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6E,EAAiBvC,GAAuBD,EAAMlC,EAAQ,EAAO,CAAC,sBAAA2E,GAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAYH,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAYL,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAaN,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAaP,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAaR,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAaT,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAaV,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAuCc,GAAkBC,GAAG3F,GAAkB,GAAhD,CAAC,CAAuE,EAAQ4F,GAAY,IAAQvB,IAAc,YAA6CwB,GAAa,IAAQxB,IAAc,YAA6CyB,GAAa,IAAQzB,IAAc,YAA6C0B,GAAa,IAAQ1B,IAAc,YAA6C2B,GAAa,IAAQ3B,IAAc,YAA6C4B,GAAa,IAAQ5B,IAAc,YAAuC,OAAoBpD,EAAKiF,GAAY,CAAC,GAAG3C,GAAUT,EAAgB,SAAsB7B,EAAKC,GAAS,CAAC,QAAQd,GAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,OAAO,CAAC,GAAGiD,EAAU,GAAGI,EAAgB,aAAa,SAAS,UAAUmB,GAAGD,GAAkB,gBAAgBpC,EAAUgB,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjC,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGnD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,GAAG,EAAE,UAAU,CAAC,mBAAmB,GAAG,EAAE,UAAU,CAAC,mBAAmB,GAAG,EAAE,UAAU,CAAC,mBAAmB,GAAG,EAAE,UAAU,CAAC,mBAAmB,GAAG,EAAE,UAAU,CAAC,mBAAmB,GAAG,CAAC,EAAEmE,EAAYI,CAAc,EAAE,SAAsB0B,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAcqB,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAMI,GAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGhF,GAAqB,CAAC,UAAU,CAAC,MAAMkF,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc0B,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKtB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe2C,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAe7D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEc,GAAY,GAAgB3E,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,6eAA6e,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKrB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAMO,GAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,EAAE,GAAGnF,GAAqB,CAAC,UAAU,CAAC,MAAMkF,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc0B,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKpB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeyC,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAe7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,GAAa,GAAgB5E,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,+KAA+K,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKnB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAMQ,EAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,EAAE,GAAGpF,GAAqB,CAAC,UAAU,CAAC,MAAMkF,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc0B,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKlB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeuC,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAe7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgB,GAAa,GAAgB7E,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,uGAAuG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKjB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAMS,GAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,EAAE,GAAGrF,GAAqB,CAAC,UAAU,CAAC,MAAMkF,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc0B,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKhB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeqC,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAe7D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiB,GAAa,GAAgB9E,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,kLAAkL,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeoC,EAAMhF,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAMU,GAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,EAAE,GAAGtF,GAAqB,CAAC,UAAU,CAAC,MAAMkF,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc0B,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemC,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAe7D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkB,GAAa,GAAgB/E,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,+EAA+E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiB,GAAK,iBAAiB2D,EAAiB,SAAS,YAAY,MAAMW,GAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,EAAE,GAAGvF,GAAqB,CAAC,UAAU,CAAC,MAAMkF,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc0B,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,oDAAoD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiC,EAAMhF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAc7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAe7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,IAAI,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmB,GAAa,GAAgBhF,EAAKmF,EAAS,CAAC,sBAAsB,GAAK,SAAsBnF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,+EAA+E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,EAAE,iBAAiB2D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkC,GAAI,CAAC,kFAAkF,gFAAgF,wRAAwR,gRAAgR,6hBAA6hB,0aAA0a,6WAA6W,yQAAyQ,+iBAA+iB,wWAAwW,olFAAolF,+bAA+b,EAS5mnCC,GAAgBC,GAAQ/D,GAAU6D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,IAAI,IAAI,IAAI,IAAI,IAAI,GAAG,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,iDAAiD,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,uUAAuU,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,8CAA8C,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kXAAwW,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4CAA4C,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,oNAAoN,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,6DAA6D,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,+LAA2K,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kDAA6C,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,mHAAoG,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,8DAAyD,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,yKAAyK,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV5rG,IAAMM,GAAe,CAAC,OAAO,OAAO,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,SAAS,QAAQ,EAC1O,SAARC,EAAuC,CAAC,YAAAC,EAAY,UAAAC,EAAU,SAAAC,EAAS,MAAAC,EAAM,OAAAC,EAAO,OAAAC,EAAO,KAAAC,EAAK,SAAAC,EAAS,WAAAC,EAAW,cAAAC,EAAc,eAAAC,EAAe,eAAAC,EAAe,gBAAAC,EAAgB,gBAAAC,EAAgB,iBAAAC,EAAiB,eAAAC,EAAe,KAAAC,CAAI,EAAE,CAAC,GAAK,CAACC,EAAMC,CAAQ,EAAQC,GAASnB,CAAW,EAAQoB,EAAaC,GAAK,CAAC,OAAOP,EAAiB,CAAC,IAAI,QAAQ,OAAOO,EAAI,eAAe,OAAO,EAAE,IAAI,SAAS,OAAOA,EAAI,eAAe,OAAO,EAAE,QAAQ,OAAOA,EAAI,SAAS,CAAE,CAAC,EAAQC,EAAU,IAAI,CAAC,IAAMC,EAAW,KAAK,IAAItB,EAAUD,CAAW,EAAQwB,EAAStB,EAAS,IAAIqB,EAAiBE,EAAKV,IAAiB,KAAK,EAAE,GAASW,EAAM,YAAY,IAAI,CAACR,EAASS,GAAeZ,IAAiB,MAAMY,EAAU1B,GAA0Cc,IAAiB,QAAQY,EAAU1B,EAA3D0B,EAAUF,GAAwF,cAAcC,CAAK,EAASC,EAAY,CAAE,EAAEH,CAAQ,EAAE,MAAM,IAAI,cAAcE,CAAK,CAAE,EAAE,CAAC1B,EAAYC,EAAUC,EAASa,CAAc,CAAC,EAAE,IAAMa,EAAa,CAAC,GAAG9B,GAAe,MAAM,OAAOK,GAAQ,SAASA,EAAM,OAAU,WAAWG,EAAK,WAAW,WAAWA,EAAK,WAAW,SAAS,GAAGC,MAAa,WAAWC,EAAW,SAAS,EAAE,cAAc,GAAGC,MAAkB,WAAW,OAAON,GAAQ,SAAS,mBAAmBA,EAAM,aAAaA,EAAM,aAAaA,EAAM,YAAY,MAAS,EAAQ0B,EAAY,CAAC,SAAS,GAAGnB,MAAmB,UAAUE,IAAkB,MAAM,aAAaA,IAAkB,SAAS,SAAS,UAAU,EAAQkB,EAAY,CAAC,SAAS,GAAGnB,MAAmB,UAAUE,IAAkB,MAAM,aAAaA,IAAkB,SAAS,SAAS,UAAU,EAAE,OAAoBkB,EAAM,MAAM,CAAC,MAAMH,EAAa,SAAS,CAAcI,EAAK,OAAO,CAAC,MAAMH,EAAY,SAASzB,CAAM,CAAC,EAAe4B,EAAK,OAAO,CAAC,SAASZ,EAAaH,CAAK,CAAC,CAAC,EAAee,EAAK,OAAO,CAAC,MAAMF,EAAY,SAASzB,CAAM,CAAC,CAAC,CAAC,CAAC,CAAE,CAACN,EAAsB,aAAa,CAAC,YAAY,EAAE,UAAU,IAAI,SAAS,EAAE,MAAM,UAAU,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,EAAE,SAAS,IAAI,WAAW,IAAI,cAAc,EAAE,eAAe,IAAI,eAAe,IAAI,gBAAgB,SAAS,gBAAgB,SAAS,iBAAiB,QAAQ,eAAe,KAAK,KAAK,EAAE,EAAEkC,EAAoBlC,EAAsB,CAAC,YAAY,CAAC,KAAKmC,EAAY,OAAO,MAAM,eAAe,aAAanC,EAAsB,aAAa,YAAY,eAAe,EAAI,EAAE,UAAU,CAAC,KAAKmC,EAAY,OAAO,MAAM,aAAa,aAAanC,EAAsB,aAAa,UAAU,eAAe,EAAI,EAAE,SAAS,CAAC,KAAKmC,EAAY,OAAO,MAAM,WAAW,IAAI,EAAE,IAAI,KAAK,KAAK,IAAI,aAAanC,EAAsB,aAAa,QAAQ,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKmC,EAAY,MAAM,aAAanC,EAAsB,aAAa,KAAK,EAAE,OAAO,CAAC,KAAKmC,EAAY,OAAO,MAAM,SAAS,aAAanC,EAAsB,aAAa,MAAM,EAAE,OAAO,CAAC,KAAKmC,EAAY,OAAO,MAAM,SAAS,aAAanC,EAAsB,aAAa,MAAM,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKmC,EAAY,KAAK,aAAanC,EAAsB,aAAa,IAAI,EAAE,SAAS,CAAC,KAAKmC,EAAY,OAAO,MAAM,YAAY,aAAanC,EAAsB,aAAa,SAAS,IAAI,CAAC,EAAE,WAAW,CAAC,KAAKmC,EAAY,OAAO,MAAM,cAAc,aAAanC,EAAsB,aAAa,WAAW,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKmC,EAAY,OAAO,MAAM,iBAAiB,aAAanC,EAAsB,aAAa,cAAc,IAAI,GAAG,IAAI,GAAG,KAAK,EAAE,EAAE,eAAe,CAAC,KAAKmC,EAAY,OAAO,MAAM,mBAAmB,aAAanC,EAAsB,aAAa,eAAe,IAAI,CAAC,EAAE,eAAe,CAAC,KAAKmC,EAAY,OAAO,MAAM,mBAAmB,aAAanC,EAAsB,aAAa,eAAe,IAAI,CAAC,EAAE,gBAAgB,CAAC,KAAKmC,EAAY,KAAK,MAAM,mBAAmB,QAAQ,CAAC,MAAM,SAAS,QAAQ,EAAE,aAAa,CAAC,MAAM,SAAS,QAAQ,EAAE,aAAanC,EAAsB,aAAa,eAAe,EAAE,gBAAgB,CAAC,KAAKmC,EAAY,KAAK,MAAM,mBAAmB,QAAQ,CAAC,MAAM,SAAS,QAAQ,EAAE,aAAa,CAAC,MAAM,SAAS,QAAQ,EAAE,aAAanC,EAAsB,aAAa,eAAe,EAAE,iBAAiB,CAAC,KAAKmC,EAAY,KAAK,MAAM,oBAAoB,QAAQ,CAAC,QAAQ,SAAS,MAAM,EAAE,aAAa,CAAC,gBAAgB,iBAAiB,MAAM,EAAE,aAAanC,EAAsB,aAAa,gBAAgB,EAAE,eAAe,CAAC,KAAKmC,EAAY,cAAc,MAAM,YAAY,QAAQ,CAAC,KAAK,MAAM,EAAE,aAAa,CAAC,KAAK,MAAM,EAAE,aAAanC,EAAsB,aAAa,cAAc,CAAC,CAAC,ECAp5I,SAASoC,GAAkBC,EAAOC,EAAU,CAAC,IAAIC,EAAa,OAAOD,EAAU,CAAC,IAAI,WAAWC,EAAa,UAAU,MAAM,IAAI,UAAUA,EAAa,WAAW,MAAM,IAAI,SAASA,EAAa,YAAY,MAAM,IAAI,YAAYA,EAAa,SAAS,MAAM,QAAQA,EAAa,WAAY,CAAC,OAAOF,EAAO,CAAC,IAAI,SAAS,MAAM,mBAAmBE,0GAAqH,IAAI,UAAU,MAAM,mBAAmBA,qFAAgG,IAAI,WAAW,MAAM,mBAAmBA,0CAAqD,IAAI,cAAc,MAAM,mBAAmBA,+HAA2I,CAAC,CAQr1B,SAARC,GAAwB,CAAC,SAAAC,EAAS,KAAAC,EAAK,MAAAC,EAAM,kBAAAC,EAAkB,WAAAC,EAAW,QAAAC,EAAQ,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,CAAU,EAAE,CAAC,IAAMC,EAAaL,EAAQ,GAAGC,OAAaC,OAAcC,OAAiBC,MAAe,GAAGH,MAAkBK,EAAa,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,SAAS,WAAW,gBAAgBhB,GAAkBS,EAAWD,CAAiB,EAAE,UAAUR,GAAkBS,EAAWD,CAAiB,EAAE,UAAU,QAAQ,aAAaF,IAAO,QAAQS,EAAa,KAAK,EAAE,OAAoBE,EAAMC,GAAM,CAAC,WAAW,KAAK,MAAMF,EAAa,SAAS,CAACV,IAAO,aAAmBa,GAAS,MAAMd,CAAQ,IAAI,GAAgBe,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,QAAQ,OAAO,QAAQ,WAAW,OAAO,MAAM,UAAU,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,UAAU,QAAQ,EAAE,SAAS,oBAAoB,CAAC,EAAEd,IAAO,aAAmBa,GAAS,MAAMd,CAAQ,EAAE,GAAgBe,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,MAAM,EAAE,SAASf,CAAQ,CAAC,EAAEC,IAAO,SAAS,CAACC,GAAoBa,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGJ,EAAa,WAAW,OAAO,MAAM,QAAQ,OAAO,QAAQ,QAAQ,OAAO,MAAM,UAAU,UAAU,QAAQ,EAAE,SAAS,iBAAiB,CAAC,EAAEV,IAAO,SAASC,GAAoBa,EAAK,MAAM,CAAC,MAAMJ,EAAa,IAAIT,EAAM,IAAI,IAAI,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAE,CAACH,GAAO,aAAa,CAAC,KAAK,QAAQ,cAAc,IAAI,WAAW,SAAS,QAAQ,GAAM,QAAQ,EAAE,SAAS,EAAE,YAAY,EAAE,WAAW,CAAC,EAAEiB,EAAoBjB,GAAO,CAAC,KAAK,CAAC,KAAKkB,EAAY,KAAK,QAAQ,CAAC,QAAQ,WAAW,EAAE,aAAa,CAAC,QAAQ,OAAO,EAAE,aAAa,QAAQ,wBAAwB,GAAK,0BAA0B,YAAY,EAAE,kBAAkB,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,UAAU,WAAW,SAAS,WAAW,EAAE,aAAa,CAAC,OAAO,QAAQ,KAAK,MAAM,EAAE,wBAAwB,GAAK,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,WAAW,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,MAAM,cAAc,QAAQ,CAAC,SAAS,UAAU,WAAW,aAAa,EAAE,aAAa,CAAC,SAAS,UAAU,WAAW,aAAa,EAAE,aAAa,QAAQ,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,MAAM,SAAS,aAAa,EAAE,UAAU,UAAU,aAAa,CAAC,MAAM,YAAY,EAAE,UAAU,CAAC,UAAU,WAAW,cAAc,YAAY,EAAE,YAAY,CAAC,KAAK,KAAK,KAAK,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,KAAAhB,CAAI,IAAIA,IAAO,OAAO,EAAE,SAAS,CAAC,KAAKgB,EAAY,kBAAkB,OAAO,CAAC,CAAC,KAAAhB,CAAI,IAAIA,IAAO,OAAO,EAAE,MAAM,CAAC,KAAKgB,EAAY,gBAAgB,MAAM,QAAQ,OAAO,CAAC,CAAC,KAAAhB,CAAI,IAAIA,IAAO,WAAW,CAAC,CAAC,ECR7gE,IAAMiB,GAAcC,EAASC,EAAQ,EAAQC,GAAiBC,GAAoBF,EAAQ,EAAQG,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,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,MAAAC,EAAM,OAAAC,EAAO,KAAAC,EAAK,UAAAC,EAAU,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAWI,EAAM,WAAW,wEAAwE,UAAUP,GAAOO,EAAM,WAAW,wEAAwE,UAAUF,GAAOE,EAAM,WAAW,4BAA4B,UAAUL,GAAMK,EAAM,WAAW,aAAa,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,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEhC,GAASQ,CAAK,EAAO,CAAC,YAAAyB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9B,CAAQ,EAAE+B,GAAgB,CAAC,eAAe,YAAY,IAAIzB,EAAW,QAAAW,EAAQ,kBAAAe,EAAiB,CAAC,EAAQC,EAAiBlC,GAAuBD,EAAME,CAAQ,EAAuCkC,EAAkBC,GAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBlD,EAAKmD,GAAY,CAAC,GAAGrB,GAAUT,EAAgB,SAAsBrB,EAAKC,GAAS,CAAC,QAAQa,EAAS,QAAQ,GAAM,SAAsBd,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB8D,EAAMlD,EAAO,IAAI,CAAC,GAAGkC,EAAU,GAAGI,EAAgB,UAAUS,GAAGD,EAAkB,iBAAiBnB,EAAUS,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAI3B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAc5B,EAAKqD,EAA0B,CAAC,SAAsBrD,EAAKsD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB/C,EAAKuD,GAAS,CAAC,MAAMpB,EAAU,OAAO,OAAO,WAAW,QAAQ,cAAcD,EAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2Cd,CAAS,EAAE,KAAKD,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyB,GAAI,CAAC,kFAAkF,kFAAkF,uQAAuQ,wGAAwG,gHAAgH,8WAA8W,EAS59KC,GAAgBC,GAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,4BAA4B,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iGAAiG,MAAM,QAAQ,KAAKA,EAAY,KAAK,EAAE,UAAUC,IAAmB,eAAkB,CAAC,GAAGA,GAAiB,cAAiB,aAAa,cAAc,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,EAAE,UAAU,CAAC,aAAa,iGAAiG,MAAM,aAAa,KAAKD,EAAY,KAAK,CAAC,CAAC,EAAEE,GAASN,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGO,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTrB,IAAMC,GAAmBC,EAASC,EAAa,EAAQC,GAA2BF,EAASG,CAAqB,EAAQC,GAAmBJ,EAASK,EAAa,EAAQC,GAAqBN,EAASO,EAAe,EAAQC,GAAWR,EAASS,EAAK,EAAQC,GAAYV,EAASW,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,iBAAiB,YAAY,gBAAgB,YAAY,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,UAAAC,EAAU,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,YAAAC,EAAY,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAOI,EAAM,WAAW,kDAAkD,UAAUH,GAAWG,EAAM,WAAW,eAAe,UAAUF,GAAaE,EAAM,WAAW,KAAK,QAAQT,GAAwBS,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUP,GAAWO,EAAM,WAAW,IAAI,GAAUC,GAAuB,CAACD,EAAM7B,IAAe6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAE6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAU+B,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,QAAA5C,EAAQ,UAAA6C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE9B,GAASQ,CAAK,EAAO,CAAC,YAAAuB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3D,CAAQ,EAAE4D,GAAgB,CAAC,WAAAjE,GAAW,eAAe,YAAY,IAAIyC,EAAW,QAAAlC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgE,EAAiB/B,GAAuBD,EAAM7B,CAAQ,EAAuC8D,EAAkBC,GAAGnE,GAAkB,GAAhD,CAAC,CAAuE,EAAQoE,EAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASb,CAAW,EAA6B,OAAoBpC,EAAKkD,GAAY,CAAC,GAAGpB,GAAUT,EAAgB,SAAsBrB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBgE,EAAMjD,EAAO,IAAI,CAAC,GAAGiC,EAAU,GAAGI,EAAgB,UAAUQ,GAAGD,EAAkB,iBAAiBjB,EAAUQ,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIzB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,kBAAkB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAG9C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEsD,EAAYI,CAAc,EAAE,SAAS,CAAcW,EAAMjD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB2C,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAMjD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB2C,EAAiB,SAAS,YAAY,SAAS,CAAc7C,EAAKoD,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG5C,GAAqB,CAAC,UAAU,CAAC,GAAG4C,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEU,EAAYI,CAAc,EAAE,SAAsBxC,EAAKqD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAKhC,GAAc,CAAC,UAAU,GAAK,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUiE,CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,EAAY,GAAgBhD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,uBAAuB,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBR,EAAiB,SAAS,sBAAsB,KAAK,uBAAuB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAK9B,EAAsB,CAAC,MAAM,wEAAwE,eAAe,OAAO,iBAAiB,QAAQ,SAAS,IAAI,UAAU8D,EAAU,KAAK,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,SAAS,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,cAAc,IAAI,WAAW,IAAI,KAAK,uBAAuB,OAAO,IAAI,gBAAgB,SAAS,eAAe,GAAG,YAAYD,EAAU,OAAO,SAAS,gBAAgB,SAAS,eAAe,GAAG,MAAM,OAAO,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAS,EAAE,CAAC,EAAEsD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,gBAAgB,EAAE,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkC,EAAYI,CAAc,CAAC,CAAC,EAAES,GAAa,GAAgBjD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/D,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,SAAsBM,EAAMjD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,SAAS,CAAc7C,EAAKoD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ1B,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG5C,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAO4C,GAAmB,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEU,EAAYI,CAAc,EAAE,SAAsBxC,EAAKqD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAK5B,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,4CAA4C,UAAU,OAAO,UAAU,qEAAqE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,YAAY,UAAU,GAAK,QAAQ,YAAY,MAAM,OAAO,GAAGU,GAAqB,CAAC,UAAU,CAAC,UAAU,gCAAgC,UAAU,aAAa,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,gCAAgC,UAAU,YAAY,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEsD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEQ,EAAY,GAAgBhD,EAAKoD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ1B,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG5C,GAAqB,CAAC,UAAU,CAAC,MAAM,QAAQ4C,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,EAAEU,EAAYI,CAAc,EAAE,SAAsBxC,EAAKqD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAK5B,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,gCAAgC,UAAU,OAAO,UAAU,qEAAqE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,cAAc,UAAU,GAAK,QAAQ,YAAY,MAAM,OAAO,GAAGU,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEsD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAMjD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB2C,EAAiB,SAAS,YAAY,SAAS,CAAc7C,EAAKoD,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG5C,GAAqB,CAAC,UAAU,CAAC,GAAG4C,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,CAAC,EAAEU,EAAYI,CAAc,EAAE,SAAsBxC,EAAKqD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAK1B,GAAgB,CAAC,UAAU,4BAA4B,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4BAA4B,UAAU,QAAQ,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAKoD,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,GAAG5C,GAAqB,CAAC,UAAU,CAAC,GAAG4C,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,EAAEU,EAAYI,CAAc,EAAE,SAAsBxC,EAAKqD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAK1B,GAAgB,CAAC,UAAU,4BAA4B,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wBAAwB,UAAU,WAAW,MAAM,OAAO,GAAGQ,GAAqB,CAAC,UAAU,CAAC,UAAU,0BAA0B,UAAU,MAAM,EAAE,UAAU,CAAC,UAAU,0BAA0B,UAAU,MAAM,CAAC,EAAEsD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKoD,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,GAAG5C,GAAqB,CAAC,UAAU,CAAC,GAAG4C,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,EAAEU,EAAYI,CAAc,EAAE,SAAsBxC,EAAKqD,EAA8B,CAAC,UAAU,yBAAyB,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAK1B,GAAgB,CAAC,UAAU,4BAA4B,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,oBAAoB,UAAU,QAAQ,MAAM,OAAO,GAAGQ,GAAqB,CAAC,UAAU,CAAC,UAAU,8BAA8B,EAAE,UAAU,CAAC,UAAU,8BAA8B,CAAC,EAAEsD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKoD,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,GAAG5C,GAAqB,CAAC,UAAU,CAAC,GAAG4C,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,EAAEU,EAAYI,CAAc,EAAE,SAAsBxC,EAAKqD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAK1B,GAAgB,CAAC,UAAU,4BAA4B,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sBAAsB,UAAU,QAAQ,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAKoD,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,IAAI,GAAG5C,GAAqB,CAAC,UAAU,CAAC,GAAG4C,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,EAAEU,EAAYI,CAAc,EAAE,SAAsBxC,EAAKqD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAK1B,GAAgB,CAAC,UAAU,4BAA4B,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,oBAAoB,UAAU,UAAU,MAAM,OAAO,GAAGQ,GAAqB,CAAC,UAAU,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,UAAU,kBAAkB,CAAC,EAAEsD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,QAAQ,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBR,EAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAKtB,GAAO,CAAC,WAAW,EAAE,YAAY,EAAE,kBAAkB,SAAS,OAAO,OAAO,GAAG,YAAY,MAAMU,GAAY,CAAC,IAAI,oEAAoE,OAAO,mbAAmb,EAAE,EAAE,EAAE,QAAQ,GAAM,SAAS,YAAY,WAAW,UAAU,KAAK,QAAQ,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,KAAK,YAAY,MAAM,OAAO,GAAGN,GAAqB,CAAC,UAAU,CAAC,kBAAkB,WAAW,EAAE,UAAU,CAAC,kBAAkB,WAAW,CAAC,EAAEsD,EAAYI,CAAc,EAAE,SAAsBxC,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7C,EAAKxB,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,MAAM,OAAO,4CAA4C,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ+E,GAAI,CAAC,kFAAkF,8EAA8E,0WAA0W,qSAAqS,yRAAyR,uVAAuV,kMAAkM,iRAAiR,6QAA6Q,oJAAoJ,mSAAmS,iJAAiJ,+FAA+F,m9CAAm9C,+HAA+H,2EAA2E,gJAAgJ,+aAA+a,iOAAiO,2GAA2G,+GAA+G,4LAA4L,+bAA+b,EASrt2BC,GAAgBC,GAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,wBAAwBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,iBAAiB,eAAe,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,KAAK,eAAe,GAAK,MAAM,eAAe,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,KAAK,eAAe,GAAK,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kDAAkD,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG1F,GAAmB,GAAGG,GAA2B,GAAGE,GAAmB,GAAGE,GAAqB,GAAGE,GAAW,GAAGE,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTjtC,IAAMqF,GAAQ,CAAC,OAAOC,GAAGA,EAAE,OAAOA,GAAGA,EAAEA,EAAE,UAAUA,GAAGA,EAAE,GAAG,EAAEA,EAAEA,EAAE,IAAI,EAAE,EAAEA,GAAGA,EAAE,YAAYA,GAAGA,IAAI,EAAE,EAAE,KAAK,IAAI,KAAKA,EAAE,CAAC,CAAC,EAQrG,SAARC,GAA8BC,EAAM,CAAC,GAAK,CAAC,kBAAAC,EAAkB,aAAAC,EAAa,OAAAC,EAAO,UAAAC,CAAS,EAAEJ,EAC8OK,EAAM,CAAC,MAAM,OAAO,OAAO,OAAO,WAA3H,mBAAmBJ,OAAlP,CAACK,EAAWC,EAAc,KAAa,MAAM,KAAK,CAAC,OAAOA,CAAa,EAAE,CAACC,EAAEC,IAAI,CAAC,IAAMX,EAAEW,GAAGF,EAAc,GAASG,EAAOJ,EAAWR,CAAC,EAAE,MAAM,eAAeM,OAAeM,MAAWZ,EAAE,MAAO,CAAC,EAAE,KAAK,IAAI,GAAkFD,GAAQM,CAAM,CAAC,KAAiE,aAAaD,CAAY,EAAE,OAAoBS,EAAKC,EAAO,IAAI,CAAC,MAAMP,CAAK,CAAC,CAAE,CAACN,GAAa,aAAa,CAAC,kBAAkB,YAAY,aAAa,EAAE,OAAO,YAAY,UAAU,CAAC,EAAEc,EAAoBd,GAAa,CAAC,kBAAkB,CAAC,KAAKe,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,UAAU,WAAW,SAAS,WAAW,EAAE,aAAa,CAAC,OAAO,QAAQ,KAAK,MAAM,EAAE,wBAAwB,GAAK,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,WAAW,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,gBAAgB,IAAI,EAAE,IAAI,IAAI,KAAK,EAAE,KAAK,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,SAAS,SAAS,YAAY,aAAa,EAAE,aAAa,CAAC,SAAS,UAAU,cAAc,aAAa,EAAE,aAAa,WAAW,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,KAAK,GAAG,CAAC,CAAC,ECV1tCC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,0gBAA0gB,EAAeC,GAAU,eCCgb,IAAMC,GAAWC,EAASC,EAAK,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAmBJ,EAASK,EAAa,EAAQC,GAAmBN,EAASO,EAAa,EAAQC,GAAkBR,EAASS,EAAY,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAE,IAAI,oBAAoB,IAAUC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,GAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBpB,GAAuBD,EAAMxB,CAAQ,EAA4D8C,EAAkBC,GAAGnD,GAAkB,GAArE,CAAaqC,EAAS,CAAuE,EAAQe,EAAWC,EAAO,IAAI,EAAQC,EAAOC,GAAU,EAAQC,EAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBxC,EAAKyC,GAAY,CAAC,GAAGtB,GAAUkB,EAAgB,SAAsBrC,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKT,GAAW,CAAC,MAAMH,GAAY,SAAsBsD,EAAMxC,EAAO,OAAO,CAAC,GAAGkB,EAAU,GAAGI,EAAgB,UAAUQ,GAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKoB,EAAK,MAAM,CAAC,gBAAgB,qEAAqE,GAAGhB,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAS,CAAczB,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAK4C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBd,EAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9B,EAAK3B,GAAO,CAAC,WAAW,EAAE,YAAY,EAAE,kBAAkB,SAAS,OAAO,OAAO,GAAG,YAAY,QAAQ,GAAM,SAAS,YAAY,WAAW,UAAU,KAAK,OAAO,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,KAAK,YAAY,MAAM,OAAO,SAAsB2B,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAK4C,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBd,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9B,EAAK7B,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,MAAM,OAAO,4CAA4C,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuE,EAAMxC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAI,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,IAAI,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAI,GAAG,CAAC,EAAE,EAAE,EAAE,oBAAoB,EAAE,EAAE,GAAG,GAAGxD,GAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsBzB,EAAK4C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBd,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9B,EAAKzB,GAAc,CAAC,UAAU,GAAK,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/C,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,QAAQ,cAAc,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/C,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAE,QAAQ,eAAe,CAAC,EAAEmB,EAAYI,CAAc,CAAC,CAAC,EAAeiB,EAAMxC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAI,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,IAAI,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAI,GAAG,CAAC,EAAE,EAAE,EAAE,oBAAoB,EAAE,mBAAmB,IAAI,EAAE,GAAGxD,GAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsBzB,EAAK4C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBd,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9B,EAAKvB,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,gDAAgD,UAAU,OAAO,UAAU,qEAAqE,UAAU,cAAc,UAAU,GAAK,QAAQ,YAAY,MAAM,OAAO,GAAGM,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAK8C,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B/C,EAAK2C,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,KAAK,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAI,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,IAAI,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAI,GAAG,CAAC,EAAE,EAAE,EAAE,oBAAoB,EAAE,mBAAmB,IAAI,EAAE,GAAGxD,GAAqB,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsBzB,EAAK4C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBd,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9B,EAAKvB,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAUsE,EAAc,CAAC,EAAE,UAAU,OAAO,UAAU,qEAAqE,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,GAAGhE,GAAqB,CAAC,UAAU,CAAC,UAAUgE,EAAc,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE1B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB4B,EAAiB,SAAS,YAAY,kBAAkBzC,GAAmB,GAAGN,GAAqB,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsBzB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBuC,EAAMxC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,CAAC,aAAqBF,EAAKgD,GAAK,CAAC,KAAK,sBAAsB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,aAAa,GAAM,SAAsBhD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB4B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9B,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAK4C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,WAAW,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBd,EAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9B,EAAKrB,GAAa,CAAC,aAAa,EAAE,OAAO,SAAS,kBAAkB,YAAY,UAAU,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsE,GAAI,CAAC,kFAAkF,kFAAkF,gQAAgQ,8IAA8I,4KAA4K,8RAA8R,yLAAyL,oRAAoR,gHAAgH,oKAAoK,oRAAoR,oUAAoU,2SAA2S,8JAA8J,2KAA2K,q8CAAq8C,8HAA8H,+FAA+F,gEAAgE,8EAA8E,qEAAqE,2EAA2E,mHAAmH,sFAAsF,2vCAA2vC,GAAeA,EAAG,EAQjvoBC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjF,GAAW,GAAGG,GAAY,GAAGE,GAAmB,GAAGE,GAAmB,GAAGE,GAAkB,GAAG8E,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRrS,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAiBC,GAAoBF,EAAQ,EAAQG,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAM,MAAM,CAAC,GAAGF,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,QAAQ,WAAWC,EAAML,GAAmCG,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMI,IAAWA,EAAS,KAAK,GAAG,EAAEJ,EAAM,iBAAuBK,GAA6BC,GAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASM,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlB,CAAQ,EAAEmB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBH,EAAMI,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB3C,EAAK4C,GAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBvC,EAAKC,GAAS,CAAC,QAAQa,EAAS,QAAQ,GAAM,SAAsBd,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBuD,EAAM3C,EAAO,IAAI,CAAC,GAAGyB,EAAU,UAAUmB,GAAGC,GAAkB,GAAGN,EAAsB,gBAAgBnB,EAAUO,CAAU,EAAE,cAAc,GAAK,mBAAmB,YAAY,iBAAiBO,EAAiB,SAAS,YAAY,WAAW,IAAIL,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAId,GAA6BoB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGhB,CAAK,EAAE,SAAS,CAAcrB,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBkC,EAAiB,SAAS,sBAAsB,SAAsBpC,EAAKiD,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAcvB,EAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,gFAAgF,qTAAqT,wGAAwG,gHAAgH,2WAA2W,+bAA+b,EAS3zMC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAqEC,IAAiB,eAAmB,CAAC,GAAGA,GAAiB,cAAiB,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,CAAC,CAAC,EAAEC,GAASN,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGO,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTkuB,IAAMC,GAA0BC,EAASC,EAAoB,EAAQC,GAA4CC,GAAwBF,EAAoB,EAAQG,GAAmCC,GAA0BC,CAAS,EAAQC,GAAkBP,EAASQ,EAAY,EAAQC,GAAmBT,EAASU,EAAa,EAAQC,GAAkCN,GAA0BO,CAAQ,EAAQC,GAAmBb,EAASc,EAAa,EAAQC,GAAmCV,GAA0BW,EAAO,GAAG,EAAQC,GAAgBC,GAAOF,EAAO,GAAG,EAAQG,GAAWnB,EAASoB,EAAK,EAAQC,GAAYrB,EAASsB,EAAM,EAAQC,GAAsBvB,EAASwB,EAAgB,EAAQC,GAAyBzB,EAAS0B,EAAmB,EAAQC,GAAiB3B,EAAS4B,EAAW,EAAQC,GAAgBX,GAAOZ,CAAS,EAAQwB,GAAkB9B,EAAS+B,EAAY,EAAQC,GAAqBhC,EAASiC,EAAe,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,8CAA8C,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAmB,CAACC,EAAE,IAAI,oBAAoB,IAAUC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAmB,CAAChB,EAAE,IAAI,yBAAyB,IAAUiB,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,iBAAiB,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,EAAU,IAAI,CAAC,IAAMC,GAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,GAAS,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,GAAS,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,GAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,GAAI,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,GAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,GAAS,OAAO,GAAMA,GAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,GAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQS,GAAY,EAAK,EAAQC,EAAe,OAA+CC,EAAkBC,GAAG3D,GAAkB,GAAhD,CAAC,CAAuE,EAAQ4D,EAAWzB,EAAO,IAAI,EAAQ0B,EAAW1B,EAAO,IAAI,EAAQ2B,EAAW3B,EAAO,IAAI,EAAQ4B,EAAW5B,EAAO,IAAI,EAAQ6B,EAAUC,GAAkB,WAAW,EAAQC,EAAW/B,EAAO,IAAI,EAAQgC,EAAWF,GAAkB,WAAW,EAAQG,EAAWjC,EAAO,IAAI,EAAQkC,EAAOC,GAAU,EAAQC,EAAWN,GAAkB,WAAW,EAAQO,EAAWrC,EAAO,IAAI,EAAQsC,EAAWtC,EAAO,IAAI,EAAQuC,GAAWT,GAAkB,WAAW,EAAQU,GAAWV,GAAkB,WAAW,EAAQW,EAAWX,GAAkB,WAAW,EAAQY,GAAW1C,EAAO,IAAI,EAAQ2C,EAAWb,GAAkB,WAAW,EAAQc,GAAWd,GAAkB,WAAW,EAAQe,GAAY7C,EAAO,IAAI,EAAQ8C,GAAWhB,GAAkB,WAAW,EAAQiB,GAAY/C,EAAO,IAAI,EAAQgD,GAAWlB,GAAkB,WAAW,EAAQmB,EAAYjD,EAAO,IAAI,EAAQkD,GAAYpB,GAAkB,WAAW,EAAQqB,GAAYnD,EAAO,IAAI,EAAQoD,GAAYtB,GAAkB,WAAW,EAAQuB,GAAYrD,EAAO,IAAI,EAAQsD,GAAYxB,GAAkB,WAAW,EAAQyB,GAAYzB,GAAkB,WAAW,EAAE,OAAA0B,GAAiB,CAAC,CAAC,EAAsBnE,EAAKoE,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA3F,EAAiB,EAAE,SAAsB4F,EAAMC,GAAY,CAAC,GAAGhD,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,4CAA4C,CAAC,EAAewE,EAAME,EAAO,IAAI,CAAC,GAAG/C,EAAU,UAAUW,GAAGD,EAAkB,gBAAgBb,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,EAAE,SAAsBxE,EAAKyE,GAAmC,CAAC,QAAQ5F,GAAU,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,aAAa,GAAK,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBJ,GAAmB,SAAsBsB,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,qCAAqC,OAAU,QAAQ,WAAW,EAAE,UAAU,CAAC,qCAAqC,OAAU,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK2E,GAA4C,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,OAAO,EAAE,IAAIvC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,IAAI,IAAIC,EAAK,OAAO,WAAW,EAAE,CAAC,OAAO,KAAK,IAAIC,EAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,GAAG,qCAAqC,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAMtD,GAAmB,OAAO,QAAQ,EAAE,IAAI,SAAsBlB,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK6E,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE,SAAsB7B,EAAK8E,GAAgB,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,GAAGtC,EAAU,IAAIE,EAAK,SAAsB2B,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,GAAG2C,EAAW,IAAIC,CAAI,CAAC,EAAe5C,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAKyE,GAAmC,CAAC,QAAQzF,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsBe,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK+E,GAAc,CAAC,UAAU,GAAK,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,GAAG,CAAC,EAAE,SAAsB7B,EAAKgF,GAAkC,CAAC,sBAAsB,GAAK,QAAQ7F,GAAW,SAAsBa,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,sBAAsB,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,gBAAgB,EAAE,QAAQZ,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,QAAQ,4BAA4B,aAAa,IAAI,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeY,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wGAAmG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wGAAmG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKgF,GAAkC,CAAC,sBAAsB,GAAK,QAAQ1F,GAAW,SAAsBU,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wGAAmG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,oBAAoB,EAAE,QAAQZ,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeiF,EAAMa,GAAmC,CAAC,QAAQ1F,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,UAAU,QAAQP,GAAW,UAAU,GAAK,SAAS,CAAce,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKmF,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,gDAAgD,UAAU,OAAO,UAAU,qEAAqE,UAAU,cAAc,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKoF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,IAA4BrF,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwD,GAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,GAAc,CAAC,CAAC,CAAC,EAAE,SAAsBrF,EAAKmF,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAUE,GAAc,CAAC,EAAE,UAAU,OAAO,UAAU,qEAAqE,UAAU,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,GAAG+C,EAAW,IAAIC,EAAK,SAAsBqB,EAAMa,GAAmC,CAAC,QAAQxF,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,QAAQ,QAAQN,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcY,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,EAAE,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKsF,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,MAAM,OAAO,4CAA4C,UAAU,KAAK,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetF,EAAK8E,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,KAAK,IAAI9B,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBrD,GAAmB,SAAsBK,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,eAAe,EAAE,UAAU,CAAC,QAAQ,eAAe,CAAC,EAAE,SAAsB7B,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,QAAQ,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBqE,EAAMS,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIqD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,GAAGC,GAAW,IAAID,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcjD,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKwF,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,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,CAAcxF,EAAKuE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,45VAA45V,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezF,EAAKuE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,knIAAknI,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezF,EAAKuE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,unRAAunR,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezF,EAAKuE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,+uPAA+uP,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezF,EAAKuE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,o6FAAo6F,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAK8E,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsByE,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,kBAAkB,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKmF,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,gDAAgD,UAAU,OAAO,UAAU,qEAAqE,UAAU,mBAAmB,UAAU,GAAM,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,GAAGlB,GAAW,IAAIf,EAAK,SAAS,CAAcpC,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,qBAAqB,IAAI,EAAE,SAAsB5E,EAAKwF,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,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,CAAcxF,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,IAAI,yFAAyF,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,yFAAyF,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,IAAI,yFAAyF,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,IAAI,yFAAyF,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1F,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,qBAAqB,IAAI,EAAE,SAAsB5E,EAAKwF,GAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,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,CAAcxF,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,IAAI,wFAAwF,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uFAAuF,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,uFAAuF,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,IAAI,wFAAwF,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1F,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,qBAAqB,IAAI,EAAE,SAAsB5E,EAAKwF,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,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,CAAcxF,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,yFAAyF,EAAE,UAAU,eAAe,cAAc,GAAK,mBAAmB,yBAAyB,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,wFAAwF,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,0BAA0B,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,IAAI,yFAAyF,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,0BAA0B,CAAC,EAAe1F,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,IAAI,yFAAyF,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,0BAA0B,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1F,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBqE,EAAMS,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIyC,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,GAAGe,EAAW,IAAIf,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcrC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcrE,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK+E,GAAc,CAAC,UAAU,GAAM,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qJAAgJ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qJAAgJ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qJAAgJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,wJAAmJ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,wJAAmJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,oIAAoI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,oIAAoI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,yJAAyJ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,yJAAyJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mFAAmF,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,sBAAsB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,uIAAwH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,uIAAwH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mFAAmF,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,oBAAoB,SAAS,CAAcrE,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,EAAe1F,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcrE,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,2PAA2P,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,OAAO,IAAI,uFAAuF,OAAO,yEAAyE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,6BAA6B,CAAC,EAAerB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,oBAAoB,SAAS,CAAcrE,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,EAAe1F,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcrE,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,gJAA2I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAK0F,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,6BAA6B,CAAC,EAAerB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrE,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsBqE,EAAMS,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIyD,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,GAAGC,EAAW,IAAID,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcrE,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK+E,GAAc,CAAC,UAAU,GAAM,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wJAAmJ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wJAAmJ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wJAAmJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAcrE,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKwF,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcxF,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,aAAa,gBAAgB,GAAK,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,OAAO,UAAU,QAAQ,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,aAAa,gBAAgB,GAAK,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,OAAO,UAAU,gBAAgB,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,aAAa,gBAAgB,GAAK,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,OAAO,UAAU,WAAW,UAAU,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,aAAa,gBAAgB,GAAK,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,OAAO,UAAU,gBAAgB,UAAU,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKwF,GAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcxF,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,aAAa,gBAAgB,GAAK,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,OAAO,UAAU,cAAc,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,aAAa,gBAAgB,GAAK,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,OAAO,UAAU,cAAc,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,aAAa,gBAAgB,GAAK,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,OAAO,UAAU,mBAAmB,UAAU,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,aAAa,gBAAgB,GAAK,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,aAAa,MAAM,OAAO,UAAU,iBAAiB,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,cAAc,gBAAgB,GAAK,KAAK,cAAc,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5E,EAAK2F,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,cAAc,MAAM,OAAO,UAAU,eAAe,UAAU,UAAU,CAAC,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,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3F,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBqE,EAAMS,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI0C,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,GAAGiB,GAAW,IAAIjB,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+B,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcrE,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK+E,GAAc,CAAC,UAAU,GAAM,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iEAAiE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iEAAiE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iEAAiE,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,iBAAiB,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,2CAA2C,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK4F,GAAoB,CAAC,UAAU,kDAAkD,OAAO,OAAO,GAAG,YAAY,UAAU,eAAe,UAAU,KAAK,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5F,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,iBAAiB,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,2CAA2C,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK4F,GAAoB,CAAC,UAAU,4CAA4C,OAAO,OAAO,GAAG,YAAY,UAAU,mBAAmB,UAAU,KAAK,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcrE,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKwF,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,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,CAAcxF,EAAKuE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,45VAA45V,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezF,EAAKuE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,unRAAunR,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezF,EAAKuE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,knIAAknI,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezF,EAAKuE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,o6FAAo6F,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezF,EAAKuE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAsBvE,EAAKyF,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,+uPAA+uP,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAMS,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI4D,GAAM,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,GAAGC,GAAW,IAAID,GAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAca,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,kGAAkG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,kGAAkG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,kGAAkG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkF,GAAmC,CAAC,QAAQ1F,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQP,GAAW,UAAU,GAAK,SAAsBe,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,iCAAiC,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKmF,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,uBAAuB,UAAU,OAAO,UAAU,qEAAqE,UAAU,eAAe,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKsF,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,MAAM,OAAO,qDAAqD,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAMS,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI8D,GAAM,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,GAAGC,GAAW,IAAID,GAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcW,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,4GAAkG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,4GAAkG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,4GAAkG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkF,GAAmC,CAAC,QAAQ1F,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQP,GAAW,UAAU,GAAK,SAAsBe,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,iCAAiC,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKmF,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,qBAAqB,UAAU,OAAO,UAAU,qEAAqE,UAAU,eAAe,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKsF,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,MAAM,OAAO,kDAAkD,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAMS,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIgE,EAAM,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,GAAGC,GAAY,IAAID,EAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcS,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,8FAAyF,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,8FAAyF,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,8FAAyF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkF,GAAmC,CAAC,QAAQ1F,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQP,GAAW,UAAU,GAAK,SAAsBe,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,iCAAiC,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKmF,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,sBAAsB,UAAU,OAAO,UAAU,qEAAqE,UAAU,eAAe,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKsF,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,MAAM,OAAO,mDAAmD,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAMS,GAAgB,CAAC,kBAAkB,CAAC,WAAWlG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIkE,GAAM,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,GAAGC,GAAY,IAAID,GAAM,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,qGAAgG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,qGAAgG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuF,EAAS,CAAC,sBAAsB,GAAK,SAAsBvF,EAAWiF,EAAS,CAAC,SAAsBjF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,qGAAgG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkF,GAAmC,CAAC,QAAQ1F,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,UAAU,QAAQP,GAAW,UAAU,GAAK,SAAsBe,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,iCAAiC,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKmF,GAAc,CAAC,UAAU,GAAM,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,YAAY,UAAU,uBAAuB,UAAU,OAAO,UAAU,qEAAqE,UAAU,eAAe,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKsF,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,MAAM,OAAO,qDAAqD,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAsBA,EAAK0E,EAAkB,CAAC,WAAW7C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,iBAAiB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,kBAAkB,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxE,EAAK6F,GAAgB,CAAC,kBAAkB,CAAC,WAAWjH,EAAW,EAAE,sBAAsB,GAAK,gBAAgBgB,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIoE,GAAM,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,GAAGC,GAAY,OAAO,YAAY,IAAID,GAAM,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBhE,EAAK8F,GAAY,CAAC,UAAU,mHAAoG,OAAO,OAAO,GAAG,YAAY,UAAU,6DAA6D,UAAU,+LAA2K,UAAU,yKAAyK,UAAU,uUAAuU,SAAS,YAAY,UAAU,kDAA6C,UAAU,kXAAwW,UAAU,4CAA4C,UAAU,8DAAyD,UAAU,iDAAiD,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,oNAAoN,UAAU,8CAA8C,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9F,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,uCAAuC,GAAGkE,GAAY,IAAI3B,CAAI,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAK+F,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAE,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/F,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAK4E,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5E,EAAKgG,GAAgB,CAAC,MAAM,8EAA8E,QAAQ,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,WAAW,qEAAqE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehG,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiG,GAAI,CAAC,kFAAkF,gFAAgF,kSAAkS,oKAAoK,yIAAyI,gTAAgT,iYAAiY,qSAAqS,uLAAuL,+kBAA+kB,+MAA+M,gPAAgP,qRAAqR,8YAA8Y,6SAA6S,mLAAmL,2UAA2U,ksBAAksB,kYAAkY,8TAA8T,iJAAiJ,sGAAsG,6LAA6L,iLAAiL,6LAA6L,sGAAsG,8LAA8L,qGAAqG,8LAA8L,sGAAsG,+LAA+L,oYAAoY,03BAA03B,ySAAyS,sRAAsR,uRAAuR,oXAAoX,4LAA4L,meAAme,miBAAmiB,8lBAA8lB,+iBAA+iB,kbAAkb,ycAAyc,yUAAyU,mUAAmU,mVAAmV,oQAAoQ,gSAAgS,kRAAkR,yRAAyR,kkBAAkkB,iZAAiZ,kRAAkR,2vBAA2vB,yZAAyZ,2cAA2c,oUAAoU,gTAAgT,weAAwe,6TAA6T,6cAA6c,weAAwe,+QAA+Q,uRAAuR,oJAAoJ,+ZAA+Z,+QAA+Q,6QAA6Q,kJAAkJ,kSAAkS,iYAAiY,g5BAAg5B,4XAA4X,qXAAqX,6WAA6W,+WAA+W,oWAAoW,ieAAie,0gBAA0gB,qmBAAqmB,gJAAgJ,+RAA+R,myYAAmyY,gcAAgc,8wIAA8wI,g8RAAg8R,iyBAAiyB,EAWvi9NC,GAAgBC,GAAQ5F,GAAU0F,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAA0B,GAAGC,GAAkB,GAAGC,GAAmB,GAAGC,GAAmB,GAAGC,GAAW,GAAGC,GAAY,GAAGC,GAAsB,GAAGC,GAAyB,GAAGC,GAAiB,GAAGC,GAAkB,GAAGC,EAAoB,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC9vC,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,uBAAyB,GAAG,6BAA+B,OAAO,qBAAuB,OAAO,sBAAwB,OAAO,sBAAwB,IAAI,yBAA2B,QAAQ,qBAAuB,ouBAAg3B,yBAA2B,OAAO,oCAAsC,oMAA0O,4BAA8B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["CustomScrollBar", "props", "color", "trackColor", "enabled", "isScrolling", "setIsScrolling", "ye", "ue", "scrollTimeout", "onScroll", "enableScrollbar", "u", "p", "addPropertyControls", "ControlType", "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", "o", "n", "e", "t", "r", "s", "calcGeneratorVelocity", "t", "n", "r", "velocityPerSecond", "calcDampingRatio", "e", "hasReachedTarget", "spring", "o", "i", "h", "u", "d", "f", "l", "g", "glide", "a", "c", "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", "createGeneratorEasing", "e", "o", "getGenerator", "t", "s", "r", "a", "getKeyframes", "pregenerateKeyframes", "n", "i", "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", "dispatchViewEvent", "se", "o", "i", "s", "__rest", "inView$1", "t", "mouseEvent", "re", "ae", "onPointerUp", "window", "onPointerDown", "n", "ce", "le", "MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer1", "answer2", "answer3", "answer4", "answer5", "answer6", "height", "id", "question1", "question2", "question3", "question4", "question5", "question6", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "rawvYUUzX", "KjHOx49kL", "tvNxOx7cw", "oRIOycR3Y", "pj8TaM0YQ", "Tiiziaej8", "IFjQjdWql", "JuxOgtiro", "mDV6PtA6K", "F6lM4exSR", "pOWJFdPGf", "kao3Z3l7k", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapxn2w2d", "args", "onTapygefag", "onTap1apn1hx", "onTap1nwki7c", "onTap1j49vyf", "onTap1x32xg0", "onTap15bdsy1", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "LayoutGroup", "u", "RichText2", "css", "FramerFHan9TuX7", "withCSS", "FHan9TuX7_default", "addPropertyControls", "ControlType", "addFonts", "containerStyle", "AdvancedNumberCounter", "startNumber", "endNumber", "duration", "color", "prefix", "suffix", "font", "fontSize", "lineHeight", "letterSpacing", "prefixFontSize", "suffixFontSize", "prefixAlignment", "suffixAlignment", "decimalSeparator", "countDirection", "text", "count", "setCount", "ye", "formatNumber", "num", "ue", "totalSteps", "stepTime", "step", "timer", "prevCount", "dynamicStyle", "prefixStyle", "suffixStyle", "u", "p", "addPropertyControls", "ControlType", "generateMaskImage", "easing", "direction", "cssDirection", "FadeIt", "children", "type", "image", "gradientDirection", "maskEasing", "isMixed", "topLeft", "topRight", "bottomRight", "bottomLeft", "borderRadius", "contentStyle", "u", "Frame", "j", "p", "addPropertyControls", "ControlType", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "color", "height", "icon", "iconColor", "id", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "mzKpE2hfI", "gvOGYrGGc", "TyFhmBkMH", "AoWx0Fyus", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "Icon", "RichText2", "css", "FramertDERwoxqv", "withCSS", "tDERwoxqv_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "ElementsBadgeFonts", "getFonts", "F5zSwZv4k_default", "AdvancedNumberCounterFonts", "AdvancedNumberCounter", "ButtonsButtonFonts", "h9up4_pFN_default", "ElementsFeatureFonts", "tDERwoxqv_default", "VideoFonts", "Video", "FadeItFonts", "FadeIt", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "endNumber", "height", "id", "label", "spotsLeft", "startNumber", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "IXYLBigdk", "wYbL98Ds0", "iSYhn5PdV", "fmRLPX2Nk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerLhzcKnvdP", "withCSS", "LhzcKnvdP_default", "addPropertyControls", "ControlType", "addFonts", "easings", "t", "Gradientease", "props", "gradientDirection", "cornerRadius", "easing", "grayScale", "style", "easingFunc", "numberOfStops", "_", "i", "easedT", "p", "motion", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "VideoFonts", "getFonts", "Video", "FadeItFonts", "FadeIt", "ElementsBadgeFonts", "F5zSwZv4k_default", "ButtonsButtonFonts", "h9up4_pFN_default", "GradienteaseFonts", "Gradientease", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "ResolveLinks", "resolvedLinks", "Link", "css", "Framerm5NX1jlU4", "withCSS", "m5NX1jlU4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "name1", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "wKmwyMQI0", "ZUyAXbAM4", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText2", "css", "Framertz2RGqDgb", "withCSS", "tz2RGqDgb_default", "addPropertyControls", "ControlType", "PhosphorControls", "addFonts", "PhosphorFonts", "NavigationNavigationFonts", "getFonts", "vf5tqoe0G_default", "NavigationNavigationWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "FooterFooterFonts", "m5NX1jlU4_default", "ElementsBadgeFonts", "F5zSwZv4k_default", "RichTextWithOptimizedAppearEffect", "RichText2", "ButtonsButtonFonts", "h9up4_pFN_default", "MotionDivWithOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "VideoFonts", "Video", "TickerFonts", "Ticker", "ElementsCategoryFonts", "tz2RGqDgb_default", "ElementsPricingCardFonts", "LhzcKnvdP_default", "ElementsFAQFonts", "FHan9TuX7_default", "ContainerWithFX", "SmoothScrollFonts", "SmoothScroll", "CustomScrollBarFonts", "CustomScrollBar", "breakpoints", "serializationHash", "variantClassNames", "transformTemplate1", "_", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "transition4", "animation6", "transition5", "animation7", "transition6", "animation8", "transformTemplate2", "animation9", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "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", "ref1", "ref2", "ref3", "ref4", "elementId", "useRouteElementId", "ref5", "elementId1", "ref6", "router", "useRouter", "elementId2", "ref7", "ref8", "elementId3", "elementId4", "elementId5", "ref9", "elementId6", "elementId7", "ref10", "elementId8", "ref11", "elementId9", "ref12", "elementId10", "ref13", "elementId11", "ref14", "elementId12", "elementId13", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "PropertyOverrides2", "NavigationNavigationWithVariantAppearEffect", "Container", "m5NX1jlU4_default", "MotionDivWithFX", "F5zSwZv4k_default", "RichTextWithOptimizedAppearEffect", "x", "MotionDivWithOptimizedAppearEffect", "h9up4_pFN_default", "ResolveLinks", "resolvedLinks", "Video", "RichText2", "Ticker", "SVG", "Image2", "tz2RGqDgb_default", "LhzcKnvdP_default", "ContainerWithFX", "FHan9TuX7_default", "SmoothScroll", "CustomScrollBar", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationNavigationFonts", "FooterFooterFonts", "ElementsBadgeFonts", "ButtonsButtonFonts", "VideoFonts", "TickerFonts", "ElementsCategoryFonts", "ElementsPricingCardFonts", "ElementsFAQFonts", "SmoothScrollFonts", "CustomScrollBarFonts", "__FramerMetadata__"]
}
