{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@vimeo/player@2.16.4/dist/player.es.js", "ssg:https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js", "ssg:https://framerusercontent.com/modules/A315bPxXGiQjqKTGYfMY/AwUYim32HyId1lcNdRN1/bnagblXJQ.js", "ssg:https://framerusercontent.com/modules/4kOj5ZeOhHL7szg1l1DL/CEY9hEC2o4cIqkEwk9uT/FHseVXr8s.js", "ssg:https://framerusercontent.com/modules/kHeUZlRLu6t0d0MHPWG2/VQssy4FnRw17KE2ICKdG/GmJX9wZ_Z-0.js", "ssg:https://framerusercontent.com/modules/kHeUZlRLu6t0d0MHPWG2/VQssy4FnRw17KE2ICKdG/GmJX9wZ_Z.js", "ssg:https://framerusercontent.com/modules/QXpWOnTYAtAH2i3QylHw/oH7jK6it0gujFEKa9JMd/GmJX9wZ_Z.js", "ssg:https://framerusercontent.com/modules/BMdaZ4ixi4RSgXloGYgE/2VHVfGaBm5UzBw7of9wh/GyKJqP2Z6-0.js", "ssg:https://framerusercontent.com/modules/BMdaZ4ixi4RSgXloGYgE/2VHVfGaBm5UzBw7of9wh/GyKJqP2Z6.js", "ssg:https://framerusercontent.com/modules/2MomtB1qIRyTiVI7qQ9M/MXeYwrMcLOVrPHImqPX7/GyKJqP2Z6.js", "ssg:https://framerusercontent.com/modules/ZbWSm0LQxJuc1g0IV9cD/FHkWUkkTTtOtQMmMeWQK/y2aW366zJ-0.js", "ssg:https://framerusercontent.com/modules/ZbWSm0LQxJuc1g0IV9cD/FHkWUkkTTtOtQMmMeWQK/y2aW366zJ.js", "ssg:https://framerusercontent.com/modules/wXgIV6x963c27fYzuQfn/rwKY4DI2U9eSvIEROaNp/G2PcQjA9C.js", "ssg:https://framerusercontent.com/modules/hA20zyetYO7uCLelM1Dx/01H7GNOasSbbtwZ7APEE/eIuM0M4EB.js", "ssg:https://framerusercontent.com/modules/tYa6eYbK2a0J1SF6bQMW/hcYyF6nuyfK6PlshX5fp/y2aW366zJ.js", "ssg:https://framer.com/m/material-icons/Home.js@0.0.32", "ssg:https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js", "ssg:https://framerusercontent.com/modules/x3ZE1e3VCGBGWkLRRF0z/f8fMN6PZJbFa1orUPGOZ/ywmfPg6Td.js", "ssg:https://framerusercontent.com/modules/6Rm1Rui2RlKH8zJBdmHc/EL5km5XHtfDyd0ru9jdu/Counter.js", "ssg:https://framerusercontent.com/modules/JAZIx2dxFJHRElrjAOPd/dwEH3o80UdvYnMzfmngp/pNHeRDjTh.js", "ssg:https://framerusercontent.com/modules/kIIWTJegPNITcHXEfCN8/MPlqpOQDwluYMrQ5HLPw/pNHeRDjTh.js"],
  "sourcesContent": ["function _classCallCheck(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}function _defineProperties(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||false;r.configurable=true;\"value\"in r&&(r.writable=true);Object.defineProperty(e,r.key,r)}}function _createClass(e,t,n){t&&_defineProperties(e.prototype,t);n&&_defineProperties(e,n);return e}\n/**\n * Check to see this is a node environment.\n * @type {Boolean}\n */var e=\"undefined\"!==typeof global&&\"[object global]\"==={}.toString.call(global);\n/**\n * Get the name of the method for a given getter or setter.\n *\n * @param {string} prop The name of the property.\n * @param {string} type Either \u201Cget\u201D or \u201Cset\u201D.\n * @return {string}\n */function getMethodName(e,t){return 0===e.indexOf(t.toLowerCase())?e:\"\".concat(t.toLowerCase()).concat(e.substr(0,1).toUpperCase()).concat(e.substr(1))}\n/**\n * Check to see if the object is a DOM Element.\n *\n * @param {*} element The object to check.\n * @return {boolean}\n */function isDomElement(e){return Boolean(e&&1===e.nodeType&&\"nodeName\"in e&&e.ownerDocument&&e.ownerDocument.defaultView)}\n/**\n * Check to see whether the value is a number.\n *\n * @see http://dl.dropboxusercontent.com/u/35146/js/tests/isNumber.html\n * @param {*} value The value to check.\n * @param {boolean} integer Check if the value is an integer.\n * @return {boolean}\n */function isInteger(e){return!isNaN(parseFloat(e))&&isFinite(e)&&Math.floor(e)==e}\n/**\n * Check to see if the URL is a Vimeo url.\n *\n * @param {string} url The url string.\n * @return {boolean}\n */function isVimeoUrl(e){return/^(https?:)?\\/\\/((player|www)\\.)?vimeo\\.com(?=$|\\/)/.test(e)}\n/**\n * Get the Vimeo URL from an element.\n * The element must have either a data-vimeo-id or data-vimeo-url attribute.\n *\n * @param {object} oEmbedParameters The oEmbed parameters.\n * @return {string}\n */function getVimeoUrl(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};var t=e.id;var n=e.url;var r=t||n;if(!r)throw new Error(\"An id or url must be passed, either in an options object or as a data-vimeo-id or data-vimeo-url attribute.\");if(isInteger(r))return\"https://vimeo.com/\".concat(r);if(isVimeoUrl(r))return r.replace(\"http:\",\"https:\");if(t)throw new TypeError(\"\u201C\".concat(t,\"\u201D is not a valid video id.\"));throw new TypeError(\"\u201C\".concat(r,\"\u201D is not a vimeo.com url.\"))}var t=\"undefined\"!==typeof Array.prototype.indexOf;var n=\"undefined\"!==typeof window&&\"undefined\"!==typeof window.postMessage;if(!e&&(!t||!n))throw new Error(\"Sorry, the Vimeo Player API is not available in this browser.\");var r=\"undefined\"!==typeof globalThis?globalThis:\"undefined\"!==typeof window?window:\"undefined\"!==typeof global?global:\"undefined\"!==typeof self?self:{};function createCommonjsModule(e,t){return t={exports:{}},e(t,t.exports),t.exports\n/*!\n * weakmap-polyfill v2.0.1 - ECMAScript6 WeakMap polyfill\n * https://github.com/polygonplanet/weakmap-polyfill\n * Copyright (c) 2015-2020 Polygon Planet <polygon.planet.aqua@gmail.com>\n * @license MIT\n */}(function(e){if(!e.WeakMap){var t=Object.prototype.hasOwnProperty;var defineProperty=function(e,t,n){Object.defineProperty?Object.defineProperty(e,t,{configurable:true,writable:true,value:n}):e[t]=n};e.WeakMap=function(){function WeakMap(){if(void 0===this)throw new TypeError(\"Constructor WeakMap requires 'new'\");defineProperty(this,\"_id\",genId(\"_WeakMap\"));if(arguments.length>0)throw new TypeError(\"WeakMap iterable is not supported\")}defineProperty(WeakMap.prototype,\"delete\",(function(e){checkInstance(this,\"delete\");if(!isObject(e))return false;var t=e[this._id];if(t&&t[0]===e){delete e[this._id];return true}return false}));defineProperty(WeakMap.prototype,\"get\",(function(e){checkInstance(this,\"get\");if(isObject(e)){var t=e[this._id];return t&&t[0]===e?t[1]:void 0}}));defineProperty(WeakMap.prototype,\"has\",(function(e){checkInstance(this,\"has\");if(!isObject(e))return false;var t=e[this._id];return!(!t||t[0]!==e)}));defineProperty(WeakMap.prototype,\"set\",(function(e,t){checkInstance(this,\"set\");if(!isObject(e))throw new TypeError(\"Invalid value used as weak map key\");var n=e[this._id];if(n&&n[0]===e){n[1]=t;return this}defineProperty(e,this._id,[e,t]);return this}));function checkInstance(e,n){if(!isObject(e)||!t.call(e,\"_id\"))throw new TypeError(n+\" method called on incompatible receiver \"+typeof e)}function genId(e){return e+\"_\"+rand()+\".\"+rand()}function rand(){return Math.random().toString().substring(2)}defineProperty(WeakMap,\"_polyfill\",true);return WeakMap}()}function isObject(e){return Object(e)===e}})(\"undefined\"!==typeof self?self:\"undefined\"!==typeof window?window:(\"undefined\"!==typeof r,r));var o=createCommonjsModule((function(e){(function UMD(t,n,r){n[t]=n[t]||r();e.exports&&(e.exports=n[t])})(\"Promise\",(\"undefined\"!=typeof r,r),(function DEF(){var e,t,n,r=Object.prototype.toString,o=\"undefined\"!=typeof setImmediate?function timer(e){return setImmediate(e)}:setTimeout;try{Object.defineProperty({},\"x\",{});e=function builtInProp(e,t,n,r){return Object.defineProperty(e,t,{value:n,writable:true,configurable:false!==r})}}catch(t){e=function builtInProp(e,t,n){e[t]=n;return e}}n=function Queue(){var e,n,r;function Item(e,t){this.fn=e;this.self=t;this.next=void 0}return{add:function add(t,o){r=new Item(t,o);n?n.next=r:e=r;n=r;r=void 0},drain:function drain(){var r=e;e=n=t=void 0;while(r){r.fn.call(r.self);r=r.next}}}}();function schedule(e,r){n.add(e,r);t||(t=o(n.drain))}function isThenable(e){var t,n=typeof e;null==e||\"object\"!=n&&\"function\"!=n||(t=e.then);return\"function\"==typeof t&&t}function notify(){for(var e=0;e<this.chain.length;e++)notifyIsolated(this,1===this.state?this.chain[e].success:this.chain[e].failure,this.chain[e]);this.chain.length=0}function notifyIsolated(e,t,n){var r,o;try{if(false===t)n.reject(e.msg);else{r=true===t?e.msg:t.call(void 0,e.msg);r===n.promise?n.reject(TypeError(\"Promise-chain cycle\")):(o=isThenable(r))?o.call(r,n.resolve,n.reject):n.resolve(r)}}catch(e){n.reject(e)}}function resolve(e){var t,n=this;if(!n.triggered){n.triggered=true;n.def&&(n=n.def);try{if(t=isThenable(e))schedule((function(){var r=new MakeDefWrapper(n);try{t.call(e,(function $resolve$(){resolve.apply(r,arguments)}),(function $reject$(){reject.apply(r,arguments)}))}catch(e){reject.call(r,e)}}));else{n.msg=e;n.state=1;n.chain.length>0&&schedule(notify,n)}}catch(e){reject.call(new MakeDefWrapper(n),e)}}}function reject(e){var t=this;if(!t.triggered){t.triggered=true;t.def&&(t=t.def);t.msg=e;t.state=2;t.chain.length>0&&schedule(notify,t)}}function iteratePromises(e,t,n,r){for(var o=0;o<t.length;o++)(function IIFE(o){e.resolve(t[o]).then((function $resolver$(e){n(o,e)}),r)})(o)}function MakeDefWrapper(e){this.def=e;this.triggered=false}function MakeDef(e){this.promise=e;this.state=0;this.triggered=false;this.chain=[];this.msg=void 0}function Promise(e){if(\"function\"!=typeof e)throw TypeError(\"Not a function\");if(0!==this.__NPO__)throw TypeError(\"Not a promise\");this.__NPO__=1;var t=new MakeDef(this);this.then=function then(e,n){var r={success:\"function\"!=typeof e||e,failure:\"function\"==typeof n&&n};r.promise=new this.constructor((function extractChain(e,t){if(\"function\"!=typeof e||\"function\"!=typeof t)throw TypeError(\"Not a function\");r.resolve=e;r.reject=t}));t.chain.push(r);0!==t.state&&schedule(notify,t);return r.promise};this.catch=function $catch$(e){return this.then(void 0,e)};try{e.call(void 0,(function publicResolve(e){resolve.call(t,e)}),(function publicReject(e){reject.call(t,e)}))}catch(e){reject.call(t,e)}}var i=e({},\"constructor\",Promise,false);Promise.prototype=i;e(i,\"__NPO__\",0,false);e(Promise,\"resolve\",(function Promise$resolve(e){var t=this;return e&&\"object\"==typeof e&&1===e.__NPO__?e:new t((function executor(t,n){if(\"function\"!=typeof t||\"function\"!=typeof n)throw TypeError(\"Not a function\");t(e)}))}));e(Promise,\"reject\",(function Promise$reject(e){return new this((function executor(t,n){if(\"function\"!=typeof t||\"function\"!=typeof n)throw TypeError(\"Not a function\");n(e)}))}));e(Promise,\"all\",(function Promise$all(e){var t=this;return\"[object Array]\"!=r.call(e)?t.reject(TypeError(\"Not an array\")):0===e.length?t.resolve([]):new t((function executor(n,r){if(\"function\"!=typeof n||\"function\"!=typeof r)throw TypeError(\"Not a function\");var o=e.length,i=Array(o),a=0;iteratePromises(t,e,(function resolver(e,t){i[e]=t;++a===o&&n(i)}),r)}))}));e(Promise,\"race\",(function Promise$race(e){var t=this;return\"[object Array]\"!=r.call(e)?t.reject(TypeError(\"Not an array\")):new t((function executor(n,r){if(\"function\"!=typeof n||\"function\"!=typeof r)throw TypeError(\"Not a function\");iteratePromises(t,e,(function resolver(e,t){n(t)}),r)}))}));return Promise}))}));var i=new WeakMap;\n/**\n * Store a callback for a method or event for a player.\n *\n * @param {Player} player The player object.\n * @param {string} name The method or event name.\n * @param {(function(this:Player, *): void|{resolve: function, reject: function})} callback\n *        The callback to call or an object with resolve and reject functions for a promise.\n * @return {void}\n */function storeCallback(e,t,n){var r=i.get(e.element)||{};t in r||(r[t]=[]);r[t].push(n);i.set(e.element,r)}\n/**\n * Get the callbacks for a player and event or method.\n *\n * @param {Player} player The player object.\n * @param {string} name The method or event name\n * @return {function[]}\n */function getCallbacks(e,t){var n=i.get(e.element)||{};return n[t]||[]}\n/**\n * Remove a stored callback for a method or event for a player.\n *\n * @param {Player} player The player object.\n * @param {string} name The method or event name\n * @param {function} [callback] The specific callback to remove.\n * @return {boolean} Was this the last callback?\n */function removeCallback(e,t,n){var r=i.get(e.element)||{};if(!r[t])return true;if(!n){r[t]=[];i.set(e.element,r);return true}var o=r[t].indexOf(n);-1!==o&&r[t].splice(o,1);i.set(e.element,r);return r[t]&&0===r[t].length}\n/**\n * Return the first stored callback for a player and event or method.\n *\n * @param {Player} player The player object.\n * @param {string} name The method or event name.\n * @return {function} The callback, or false if there were none\n */function shiftCallbacks(e,t){var n=getCallbacks(e,t);if(n.length<1)return false;var r=n.shift();removeCallback(e,t,r);return r}\n/**\n * Move callbacks associated with an element to another element.\n *\n * @param {HTMLElement} oldElement The old element.\n * @param {HTMLElement} newElement The new element.\n * @return {void}\n */function swapCallbacks(e,t){var n=i.get(e);i.set(t,n);i.delete(e)}var a=[\"autopause\",\"autoplay\",\"background\",\"byline\",\"color\",\"controls\",\"dnt\",\"height\",\"id\",\"interactive_params\",\"keyboard\",\"loop\",\"maxheight\",\"maxwidth\",\"muted\",\"playsinline\",\"portrait\",\"responsive\",\"speed\",\"texttrack\",\"title\",\"transparent\",\"url\",\"width\"];\n/**\n * Get the 'data-vimeo'-prefixed attributes from an element as an object.\n *\n * @param {HTMLElement} element The element.\n * @param {Object} [defaults={}] The default values to use.\n * @return {Object<string, string>}\n */function getOEmbedParameters(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return a.reduce((function(t,n){var r=e.getAttribute(\"data-vimeo-\".concat(n));(r||\"\"===r)&&(t[n]=\"\"===r?1:r);return t}),t)}\n/**\n * Create an embed from oEmbed data inside an element.\n *\n * @param {object} data The oEmbed data.\n * @param {HTMLElement} element The element to put the iframe in.\n * @return {HTMLIFrameElement} The iframe embed.\n */function createEmbed(e,t){var n=e.html;if(!t)throw new TypeError(\"An element must be provided\");if(null!==t.getAttribute(\"data-vimeo-initialized\"))return t.querySelector(\"iframe\");var r=document.createElement(\"div\");r.innerHTML=n;t.appendChild(r.firstChild);t.setAttribute(\"data-vimeo-initialized\",\"true\");return t.querySelector(\"iframe\")}\n/**\n * Make an oEmbed call for the specified URL.\n *\n * @param {string} videoUrl The vimeo.com url for the video.\n * @param {Object} [params] Parameters to pass to oEmbed.\n * @param {HTMLElement} element The element.\n * @return {Promise}\n */function getOEmbedData(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};var n=arguments.length>2?arguments[2]:void 0;return new Promise((function(r,o){if(!isVimeoUrl(e))throw new TypeError(\"\u201C\".concat(e,\"\u201D is not a vimeo.com url.\"));var i=\"https://vimeo.com/api/oembed.json?url=\".concat(encodeURIComponent(e));for(var a in t)t.hasOwnProperty(a)&&(i+=\"&\".concat(a,\"=\").concat(encodeURIComponent(t[a])));var u=\"XDomainRequest\"in window?new XDomainRequest:new XMLHttpRequest;u.open(\"GET\",i,true);u.onload=function(){if(404!==u.status)if(403!==u.status)try{var t=JSON.parse(u.responseText);if(403===t.domain_status_code){createEmbed(t,n);o(new Error(\"\u201C\".concat(e,\"\u201D is not embeddable.\")));return}r(t)}catch(e){o(e)}else o(new Error(\"\u201C\".concat(e,\"\u201D is not embeddable.\")));else o(new Error(\"\u201C\".concat(e,\"\u201D was not found.\")))};u.onerror=function(){var e=u.status?\" (\".concat(u.status,\")\"):\"\";o(new Error(\"There was an error fetching the embed code from Vimeo\".concat(e,\".\")))};u.send()}))}\n/**\n * Initialize all embeds within a specific element\n *\n * @param {HTMLElement} [parent=document] The parent element.\n * @return {void}\n */function initializeEmbeds(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document;var t=[].slice.call(e.querySelectorAll(\"[data-vimeo-id], [data-vimeo-url]\"));var n=function handleError(e){\"console\"in window&&console.error&&console.error(\"There was an error creating an embed: \".concat(e))};t.forEach((function(e){try{if(null!==e.getAttribute(\"data-vimeo-defer\"))return;var t=getOEmbedParameters(e);var r=getVimeoUrl(t);getOEmbedData(r,t,e).then((function(t){return createEmbed(t,e)})).catch(n)}catch(e){n(e)}}))}\n/**\n * Resize embeds when messaged by the player.\n *\n * @param {HTMLElement} [parent=document] The parent element.\n * @return {void}\n */function resizeEmbeds(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document;if(!window.VimeoPlayerResizeEmbeds_){window.VimeoPlayerResizeEmbeds_=true;var t=function onMessage(t){if(isVimeoUrl(t.origin)&&t.data&&\"spacechange\"===t.data.event){var n=e.querySelectorAll(\"iframe\");for(var r=0;r<n.length;r++)if(n[r].contentWindow===t.source){var o=n[r].parentElement;o.style.paddingBottom=\"\".concat(t.data.data[0].bottom,\"px\");break}}};window.addEventListener(\"message\",t)}}\n/**\n * Parse a message received from postMessage.\n *\n * @param {*} data The data received from postMessage.\n * @return {object}\n */function parseMessageData(e){if(\"string\"===typeof e)try{e=JSON.parse(e)}catch(e){console.warn(e);return{}}return e}\n/**\n * Post a message to the specified target.\n *\n * @param {Player} player The player object to use.\n * @param {string} method The API method to call.\n * @param {object} params The parameters to send to the player.\n * @return {void}\n */function postMessage(e,t,n){if(e.element.contentWindow&&e.element.contentWindow.postMessage){var r={method:t};void 0!==n&&(r.value=n);var o=parseFloat(navigator.userAgent.toLowerCase().replace(/^.*msie (\\d+).*$/,\"$1\"));o>=8&&o<10&&(r=JSON.stringify(r));e.element.contentWindow.postMessage(r,e.origin)}}\n/**\n * Parse the data received from a message event.\n *\n * @param {Player} player The player that received the message.\n * @param {(Object|string)} data The message data. Strings will be parsed into JSON.\n * @return {void}\n */function processData(e,t){t=parseMessageData(t);var n=[];var r;if(t.event){if(\"error\"===t.event){var o=getCallbacks(e,t.data.method);o.forEach((function(n){var r=new Error(t.data.message);r.name=t.data.name;n.reject(r);removeCallback(e,t.data.method,n)}))}n=getCallbacks(e,\"event:\".concat(t.event));r=t.data}else if(t.method){var i=shiftCallbacks(e,t.method);if(i){n.push(i);r=t.value}}n.forEach((function(t){try{if(\"function\"===typeof t){t.call(e,r);return}t.resolve(r)}catch(e){}}))}function initializeScreenfull(){var e=function(){var e;var t=[[\"requestFullscreen\",\"exitFullscreen\",\"fullscreenElement\",\"fullscreenEnabled\",\"fullscreenchange\",\"fullscreenerror\"],[\"webkitRequestFullscreen\",\"webkitExitFullscreen\",\"webkitFullscreenElement\",\"webkitFullscreenEnabled\",\"webkitfullscreenchange\",\"webkitfullscreenerror\"],[\"webkitRequestFullScreen\",\"webkitCancelFullScreen\",\"webkitCurrentFullScreenElement\",\"webkitCancelFullScreen\",\"webkitfullscreenchange\",\"webkitfullscreenerror\"],[\"mozRequestFullScreen\",\"mozCancelFullScreen\",\"mozFullScreenElement\",\"mozFullScreenEnabled\",\"mozfullscreenchange\",\"mozfullscreenerror\"],[\"msRequestFullscreen\",\"msExitFullscreen\",\"msFullscreenElement\",\"msFullscreenEnabled\",\"MSFullscreenChange\",\"MSFullscreenError\"]];var n=0;var r=t.length;var o={};for(;n<r;n++){e=t[n];if(e&&e[1]in document){for(n=0;n<e.length;n++)o[t[0][n]]=e[n];return o}}return false}();var t={fullscreenchange:e.fullscreenchange,fullscreenerror:e.fullscreenerror};var n={request:function request(t){return new Promise((function(r,o){var i=function onFullScreenEntered(){n.off(\"fullscreenchange\",onFullScreenEntered);r()};n.on(\"fullscreenchange\",i);t=t||document.documentElement;var a=t[e.requestFullscreen]();a instanceof Promise&&a.then(i).catch(o)}))},exit:function exit(){return new Promise((function(t,r){if(n.isFullscreen){var o=function onFullScreenExit(){n.off(\"fullscreenchange\",onFullScreenExit);t()};n.on(\"fullscreenchange\",o);var i=document[e.exitFullscreen]();i instanceof Promise&&i.then(o).catch(r)}else t()}))},on:function on(e,n){var r=t[e];r&&document.addEventListener(r,n)},off:function off(e,n){var r=t[e];r&&document.removeEventListener(r,n)}};Object.defineProperties(n,{isFullscreen:{get:function get(){return Boolean(document[e.fullscreenElement])}},element:{enumerable:true,get:function get(){return document[e.fullscreenElement]}},isEnabled:{enumerable:true,get:function get(){return Boolean(document[e.fullscreenEnabled])}}});return n}var u=new WeakMap;var l=new WeakMap;var s={};var c=function(){\n/**\n   * Create a Player.\n   *\n   * @param {(HTMLIFrameElement|HTMLElement|string|jQuery)} element A reference to the Vimeo\n   *        player iframe, and id, or a jQuery object.\n   * @param {object} [options] oEmbed parameters to use when creating an embed in the element.\n   * @return {Player}\n   */\nfunction Player(e){var t=this;var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};_classCallCheck(this,Player);if(window.jQuery&&e instanceof jQuery){e.length>1&&window.console&&console.warn&&console.warn(\"A jQuery object with multiple elements was passed, using the first element.\");e=e[0]}\"undefined\"!==typeof document&&\"string\"===typeof e&&(e=document.getElementById(e));if(!isDomElement(e))throw new TypeError(\"You must pass either a valid element or a valid id.\");if(\"IFRAME\"!==e.nodeName){var r=e.querySelector(\"iframe\");r&&(e=r)}if(\"IFRAME\"===e.nodeName&&!isVimeoUrl(e.getAttribute(\"src\")||\"\"))throw new Error(\"The player element passed isn\u2019t a Vimeo embed.\");if(u.has(e))return u.get(e);this._window=e.ownerDocument.defaultView;this.element=e;this.origin=\"*\";var i=new o((function(r,o){t._onMessage=function(e){if(isVimeoUrl(e.origin)&&t.element.contentWindow===e.source){\"*\"===t.origin&&(t.origin=e.origin);var n=parseMessageData(e.data);var i=n&&\"error\"===n.event;var a=i&&n.data&&\"ready\"===n.data.method;if(a){var u=new Error(n.data.message);u.name=n.data.name;o(u)}else{var l=n&&\"ready\"===n.event;var s=n&&\"ping\"===n.method;if(l||s){t.element.setAttribute(\"data-ready\",\"true\");r()}else processData(t,n)}}};t._window.addEventListener(\"message\",t._onMessage);if(\"IFRAME\"!==t.element.nodeName){var i=getOEmbedParameters(e,n);var a=getVimeoUrl(i);getOEmbedData(a,i,e).then((function(n){var r=createEmbed(n,e);t.element=r;t._originalElement=e;swapCallbacks(e,r);u.set(t.element,t);return n})).catch(o)}}));l.set(this,i);u.set(this.element,this);\"IFRAME\"===this.element.nodeName&&postMessage(this,\"ping\");if(s.isEnabled){var a=function exitFullscreen(){return s.exit()};this.fullscreenchangeHandler=function(){s.isFullscreen?storeCallback(t,\"event:exitFullscreen\",a):removeCallback(t,\"event:exitFullscreen\",a);t.ready().then((function(){postMessage(t,\"fullscreenchange\",s.isFullscreen)}))};s.on(\"fullscreenchange\",this.fullscreenchangeHandler)}return this}\n/**\n   * Get a promise for a method.\n   *\n   * @param {string} name The API method to call.\n   * @param {Object} [args={}] Arguments to send via postMessage.\n   * @return {Promise}\n   */_createClass(Player,[{key:\"callMethod\",value:function callMethod(e){var t=this;var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return new o((function(r,o){return t.ready().then((function(){storeCallback(t,e,{resolve:r,reject:o});postMessage(t,e,n)})).catch(o)}))}\n/**\n     * Get a promise for the value of a player property.\n     *\n     * @param {string} name The property name\n     * @return {Promise}\n     */},{key:\"get\",value:function get(e){var t=this;return new o((function(n,r){e=getMethodName(e,\"get\");return t.ready().then((function(){storeCallback(t,e,{resolve:n,reject:r});postMessage(t,e)})).catch(r)}))}\n/**\n     * Get a promise for setting the value of a player property.\n     *\n     * @param {string} name The API method to call.\n     * @param {mixed} value The value to set.\n     * @return {Promise}\n     */},{key:\"set\",value:function set(e,t){var n=this;return new o((function(r,o){e=getMethodName(e,\"set\");if(void 0===t||null===t)throw new TypeError(\"There must be a value to set.\");return n.ready().then((function(){storeCallback(n,e,{resolve:r,reject:o});postMessage(n,e,t)})).catch(o)}))}\n/**\n     * Add an event listener for the specified event. Will call the\n     * callback with a single parameter, `data`, that contains the data for\n     * that event.\n     *\n     * @param {string} eventName The name of the event.\n     * @param {function(*)} callback The function to call when the event fires.\n     * @return {void}\n     */},{key:\"on\",value:function on(e,t){if(!e)throw new TypeError(\"You must pass an event name.\");if(!t)throw new TypeError(\"You must pass a callback function.\");if(\"function\"!==typeof t)throw new TypeError(\"The callback must be a function.\");var n=getCallbacks(this,\"event:\".concat(e));0===n.length&&this.callMethod(\"addEventListener\",e).catch((function(){}));storeCallback(this,\"event:\".concat(e),t)}\n/**\n     * Remove an event listener for the specified event. Will remove all\n     * listeners for that event if a `callback` isn\u2019t passed, or only that\n     * specific callback if it is passed.\n     *\n     * @param {string} eventName The name of the event.\n     * @param {function} [callback] The specific callback to remove.\n     * @return {void}\n     */},{key:\"off\",value:function off(e,t){if(!e)throw new TypeError(\"You must pass an event name.\");if(t&&\"function\"!==typeof t)throw new TypeError(\"The callback must be a function.\");var n=removeCallback(this,\"event:\".concat(e),t);n&&this.callMethod(\"removeEventListener\",e).catch((function(e){}))}\n/**\n     * Load a new video into this embed. The promise will be resolved if\n     * the video is successfully loaded, or it will be rejected if it could\n     * not be loaded.\n     *\n     * @param {number|string|object} options The id of the video, the url of the video, or an object with embed options.\n     * @return {LoadVideoPromise}\n     */},{key:\"loadVideo\",value:function loadVideo(e){return this.callMethod(\"loadVideo\",e)}},{key:\"ready\",value:function ready(){var e=l.get(this)||new o((function(e,t){t(new Error(\"Unknown player. Probably unloaded.\"))}));return o.resolve(e)}\n/**\n     * Add a cue point to the player.\n     *\n     * @param {number} time The time for the cue point.\n     * @param {object} [data] Arbitrary data to be returned with the cue point.\n     * @return {AddCuePointPromise}\n     */},{key:\"addCuePoint\",value:function addCuePoint(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return this.callMethod(\"addCuePoint\",{time:e,data:t})}\n/**\n     * Remove a cue point from the video.\n     *\n     * @param {string} id The id of the cue point to remove.\n     * @return {RemoveCuePointPromise}\n     */},{key:\"removeCuePoint\",value:function removeCuePoint(e){return this.callMethod(\"removeCuePoint\",e)}\n/**\n     * A representation of a text track on a video.\n     *\n     * @typedef {Object} VimeoTextTrack\n     * @property {string} language The ISO language code.\n     * @property {string} kind The kind of track it is (captions or subtitles).\n     * @property {string} label The human\u2010readable label for the track.\n     */\n/**\n     * Enable the text track with the specified language, and optionally the\n     * specified kind (captions or subtitles).\n     *\n     * When set via the API, the track language will not change the viewer\u2019s\n     * stored preference.\n     *\n     * @param {string} language The two\u2010letter language code.\n     * @param {string} [kind] The kind of track to enable (captions or subtitles).\n     * @return {EnableTextTrackPromise}\n     */},{key:\"enableTextTrack\",value:function enableTextTrack(e,t){if(!e)throw new TypeError(\"You must pass a language.\");return this.callMethod(\"enableTextTrack\",{language:e,kind:t})}},{key:\"disableTextTrack\",value:function disableTextTrack(){return this.callMethod(\"disableTextTrack\")}},{key:\"pause\",value:function pause(){return this.callMethod(\"pause\")}},{key:\"play\",value:function play(){return this.callMethod(\"play\")}},{key:\"requestFullscreen\",value:function requestFullscreen(){return s.isEnabled?s.request(this.element):this.callMethod(\"requestFullscreen\")}},{key:\"exitFullscreen\",value:function exitFullscreen(){return s.isEnabled?s.exit():this.callMethod(\"exitFullscreen\")}},{key:\"getFullscreen\",value:function getFullscreen(){return s.isEnabled?o.resolve(s.isFullscreen):this.get(\"fullscreen\")}},{key:\"requestPictureInPicture\",value:function requestPictureInPicture(){return this.callMethod(\"requestPictureInPicture\")}},{key:\"exitPictureInPicture\",value:function exitPictureInPicture(){return this.callMethod(\"exitPictureInPicture\")}},{key:\"getPictureInPicture\",value:function getPictureInPicture(){return this.get(\"pictureInPicture\")}},{key:\"unload\",value:function unload(){return this.callMethod(\"unload\")}},{key:\"destroy\",value:function destroy(){var e=this;return new o((function(t){l.delete(e);u.delete(e.element);if(e._originalElement){u.delete(e._originalElement);e._originalElement.removeAttribute(\"data-vimeo-initialized\")}e.element&&\"IFRAME\"===e.element.nodeName&&e.element.parentNode&&(e.element.parentNode.parentNode&&e._originalElement&&e._originalElement!==e.element.parentNode?e.element.parentNode.parentNode.removeChild(e.element.parentNode):e.element.parentNode.removeChild(e.element));if(e.element&&\"DIV\"===e.element.nodeName&&e.element.parentNode){e.element.removeAttribute(\"data-vimeo-initialized\");var n=e.element.querySelector(\"iframe\");n&&n.parentNode&&(n.parentNode.parentNode&&e._originalElement&&e._originalElement!==n.parentNode?n.parentNode.parentNode.removeChild(n.parentNode):n.parentNode.removeChild(n))}e._window.removeEventListener(\"message\",e._onMessage);s.isEnabled&&s.off(\"fullscreenchange\",e.fullscreenchangeHandler);t()}))}},{key:\"getAutopause\",value:function getAutopause(){return this.get(\"autopause\")}\n/**\n     * Enable or disable the autopause behavior of this player.\n     *\n     * By default, when another video is played in the same browser, this\n     * player will automatically pause. Unless you have a specific reason\n     * for doing so, we recommend that you leave autopause set to the\n     * default (`true`).\n     *\n     * @param {boolean} autopause\n     * @return {SetAutopausePromise}\n     */},{key:\"setAutopause\",value:function setAutopause(e){return this.set(\"autopause\",e)}},{key:\"getBuffered\",value:function getBuffered(){return this.get(\"buffered\")}\n/**\n     * @typedef {Object} CameraProperties\n     * @prop {number} props.yaw - Number between 0 and 360.\n     * @prop {number} props.pitch - Number between -90 and 90.\n     * @prop {number} props.roll - Number between -180 and 180.\n     * @prop {number} props.fov - The field of view in degrees.\n     */},{key:\"getCameraProps\",value:function getCameraProps(){return this.get(\"cameraProps\")}\n/**\n     * For 360\u00B0 videos set the camera properties for this player.\n     *\n     * @param {CameraProperties} camera The camera properties\n     * @return {SetCameraPromise}\n     */},{key:\"setCameraProps\",value:function setCameraProps(e){return this.set(\"cameraProps\",e)}\n/**\n     * A representation of a chapter.\n     *\n     * @typedef {Object} VimeoChapter\n     * @property {number} startTime The start time of the chapter.\n     * @property {object} title The title of the chapter.\n     * @property {number} index The place in the order of Chapters. Starts at 1.\n     */},{key:\"getChapters\",value:function getChapters(){return this.get(\"chapters\")}},{key:\"getCurrentChapter\",value:function getCurrentChapter(){return this.get(\"currentChapter\")}},{key:\"getColor\",value:function getColor(){return this.get(\"color\")}\n/**\n     * Set the color of this player to a hex or rgb string. Setting the\n     * color may fail if the owner of the video has set their embed\n     * preferences to force a specific color.\n     *\n     * @param {string} color The hex or rgb color string to set.\n     * @return {SetColorPromise}\n     */},{key:\"setColor\",value:function setColor(e){return this.set(\"color\",e)}\n/**\n     * A representation of a cue point.\n     *\n     * @typedef {Object} VimeoCuePoint\n     * @property {number} time The time of the cue point.\n     * @property {object} data The data passed when adding the cue point.\n     * @property {string} id The unique id for use with removeCuePoint.\n     */},{key:\"getCuePoints\",value:function getCuePoints(){return this.get(\"cuePoints\")}},{key:\"getCurrentTime\",value:function getCurrentTime(){return this.get(\"currentTime\")}\n/**\n     * Set the current playback position in seconds. If the player was\n     * paused, it will remain paused. Likewise, if the player was playing,\n     * it will resume playing once the video has buffered.\n     *\n     * You can provide an accurate time and the player will attempt to seek\n     * to as close to that time as possible. The exact time will be the\n     * fulfilled value of the promise.\n     *\n     * @param {number} currentTime\n     * @return {SetCurrentTimePromise}\n     */},{key:\"setCurrentTime\",value:function setCurrentTime(e){return this.set(\"currentTime\",e)}},{key:\"getDuration\",value:function getDuration(){return this.get(\"duration\")}},{key:\"getEnded\",value:function getEnded(){return this.get(\"ended\")}},{key:\"getLoop\",value:function getLoop(){return this.get(\"loop\")}\n/**\n     * Set the loop state of the player. When set to `true`, the player\n     * will start over immediately once playback ends.\n     *\n     * @param {boolean} loop\n     * @return {SetLoopPromise}\n     */},{key:\"setLoop\",value:function setLoop(e){return this.set(\"loop\",e)}\n/**\n     * Set the muted state of the player. When set to `true`, the player\n     * volume will be muted.\n     *\n     * @param {boolean} muted\n     * @return {SetMutedPromise}\n     */},{key:\"setMuted\",value:function setMuted(e){return this.set(\"muted\",e)}},{key:\"getMuted\",value:function getMuted(){return this.get(\"muted\")}},{key:\"getPaused\",value:function getPaused(){return this.get(\"paused\")}},{key:\"getPlaybackRate\",value:function getPlaybackRate(){return this.get(\"playbackRate\")}\n/**\n     * Set the playback rate of the player on a scale from `0.5` to `2`. When set\n     * via the API, the playback rate will not be synchronized to other\n     * players or stored as the viewer's preference.\n     *\n     * @param {number} playbackRate\n     * @return {SetPlaybackRatePromise}\n     */},{key:\"setPlaybackRate\",value:function setPlaybackRate(e){return this.set(\"playbackRate\",e)}},{key:\"getPlayed\",value:function getPlayed(){return this.get(\"played\")}},{key:\"getQualities\",value:function getQualities(){return this.get(\"qualities\")}},{key:\"getQuality\",value:function getQuality(){return this.get(\"quality\")}\n/**\n     * Set a video quality.\n     *\n     * @param {string} quality\n     * @return {SetQualityPromise}\n     */},{key:\"setQuality\",value:function setQuality(e){return this.set(\"quality\",e)}},{key:\"getSeekable\",value:function getSeekable(){return this.get(\"seekable\")}},{key:\"getSeeking\",value:function getSeeking(){return this.get(\"seeking\")}},{key:\"getTextTracks\",value:function getTextTracks(){return this.get(\"textTracks\")}},{key:\"getVideoEmbedCode\",value:function getVideoEmbedCode(){return this.get(\"videoEmbedCode\")}},{key:\"getVideoId\",value:function getVideoId(){return this.get(\"videoId\")}},{key:\"getVideoTitle\",value:function getVideoTitle(){return this.get(\"videoTitle\")}},{key:\"getVideoWidth\",value:function getVideoWidth(){return this.get(\"videoWidth\")}},{key:\"getVideoHeight\",value:function getVideoHeight(){return this.get(\"videoHeight\")}},{key:\"getVideoUrl\",value:function getVideoUrl(){return this.get(\"videoUrl\")}},{key:\"getVolume\",value:function getVolume(){return this.get(\"volume\")}\n/**\n     * Set the volume of the player on a scale from `0` to `1`. When set\n     * via the API, the volume level will not be synchronized to other\n     * players or stored as the viewer\u2019s preference.\n     *\n     * Most mobile devices do not support setting the volume. An error will\n     * *not* be triggered in that situation.\n     *\n     * @param {number} volume\n     * @return {SetVolumePromise}\n     */},{key:\"setVolume\",value:function setVolume(e){return this.set(\"volume\",e)}}]);return Player}();if(!e){s=initializeScreenfull();initializeEmbeds();resizeEmbeds()}export{c as default};\n\n//# sourceMappingURL=player.es.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import Player from\"@vimeo/player\";import{useEffect,useRef,useState}from\"react\";import{useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";const vimeoRegex=/^https?:\\/\\/vimeo\\.com\\/(\\d+)/;/**\n * VIMEO\n *\n * @framerIntrinsicWidth 480\n * @framerIntrinsicHeight 270\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps borderRadius, backgroundColor\n */ const Vimeo=withCSS(function Vimeo({video,autoplay,mute,controls,loop,titles,backgroundColor,onPlay=()=>{},onEnd=()=>{},style,...props}){const[key,setKey]=useState(0);const player=useRef();const borderRadius=useRadius(props);useEffect(()=>{if(!player.current)return;const[,id]=video.match(vimeoRegex)?video.match(vimeoRegex):[null,0];const embeddedPlayer=new Player(player.current,{id,autopause:false,autoplay:RenderTarget.current()===RenderTarget.canvas?false:autoplay,byline:titles,controls:controls,loop:loop,title:titles,muted:mute,responsive:true});embeddedPlayer.on(\"play\",onPlay);embeddedPlayer.on(\"ended\",onEnd);},[player,key]);useEffect(()=>{setKey(key=>key+1);},[video,autoplay,mute,controls,loop,titles]);return /*#__PURE__*/ _jsx(motion.div,{style:{background:backgroundColor,...style,borderRadius,position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",overflow:\"hidden\"},...props,children:/*#__PURE__*/ _jsx(\"div\",{className:\"framer-vimeo\",ref:player,style:{width:\"100%\",height:\"100%\"}},key)});},[\".framer-vimeo > div { padding: 0 !important; width: 100%; height: 100%; }\",]);Vimeo.defaultProps={video:\"https://vimeo.com/642263700\",autoplay:false,loop:false,mute:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0};addPropertyControls(Vimeo,{video:{title:\"URL\",type:ControlType.String},...borderRadiusControl,controls:{title:\"Controls\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\"},autoplay:{title:\"Autoplay\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// playOnCanvas: {\n//     title: \"On Canvas\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Play\",\n//     disabledTitle: \"Pause\",\n// },\nloop:{title:\"Loop\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},mute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\"},// titles: {\n//     title: \"Titles\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n// },\nbackgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0, 0, 0, 0)\"},onPlay:{type:ControlType.EventHandler},onEnd:{type:ControlType.EventHandler}});export default Vimeo;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Vimeo\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"270\",\"framerIntrinsicWidth\":\"480\",\"framerComponentPresetProps\":\"borderRadius, backgroundColor\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vimeo.map", "// Generated by Framer (f318921)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xXA2q59L1vL2ErLvS4rF/s5fZkRVWYNI9ZERL1oSL/rWBnQ01qE.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sJQw5QdEU0SaN875jxVh/CEHT4L1joyLklXTZNlgL/SJt7fXVzX.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/FpgeBqxKP3U05gfxSELd/qfRZVd2WQbbXXCyxz8HH/xxobpGKc2.js\";const VideoFonts=getFonts(Video);const serializationHash=\"framer-cwdVz\";const variantClassNames={mgQpaY7KC:\"framer-v-1621ah3\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,number,paragraph,title,videoURL,width,...props})=>{return{...props,kB1rNTf7X:paragraph??props.kB1rNTf7X??\"Based on the research, strategic designs solutions will be explored. Multiple route will be presented and the selected will be further developed. This includes low, mid and high fidelity wireframes and animations.\",Mz0wvNH6v:title??props.Mz0wvNH6v??\"Refinement\",rFExBnb6h:number??props.rFExBnb6h??\"03\",y33fYjAOj:videoURL??props.y33fYjAOj??\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",ZLxZW1prj:image??props.ZLxZW1prj??{src:\"https://framerusercontent.com/images/cqfVQIgw5jhzxuDXnMuX2ze2kI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cqfVQIgw5jhzxuDXnMuX2ze2kI.png?scale-down-to=1024 885w,https://framerusercontent.com/images/cqfVQIgw5jhzxuDXnMuX2ze2kI.png?scale-down-to=2048 1771w,https://framerusercontent.com/images/cqfVQIgw5jhzxuDXnMuX2ze2kI.png 1844w\"}};};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,rFExBnb6h,Mz0wvNH6v,kB1rNTf7X,ZLxZW1prj,y33fYjAOj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"mgQpaY7KC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(y33fYjAOj);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1621ah3\",className,classNames),\"data-framer-name\":\"Approach Card\",layoutDependency:layoutDependency,layoutId:\"mgQpaY7KC\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jkagpy\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"cLDG28XAX\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ZLxZW1prj)},className:\"framer-emzotn\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"inemSwkGC\"}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d1oic0-container\",layoutDependency:layoutDependency,layoutId:\"KRYZ678sy-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"KRYZ678sy\",isMixedBorderRadius:false,layoutId:\"KRYZ678sy\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:y33fYjAOj,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pe1wlw\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"amutuyNbq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fvq5o5\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"xA4BKTU4F\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-edoz5b\",\"data-framer-name\":\"Tag\",layoutDependency:layoutDependency,layoutId:\"A4IU27TsG\",style:{backgroundColor:\"rgb(225, 225, 225)\",borderBottomLeftRadius:55,borderBottomRightRadius:55,borderTopLeftRadius:55,borderTopRightRadius:55},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",style:{\"--framer-text-alignment\":\"center\"},children:\"03\"})}),className:\"framer-69j1gw\",\"data-framer-name\":\"03\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rFIsEqTVa\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:rFExBnb6h,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nid3ne\",\"data-styles-preset\":\"rWBnQ01qE\",style:{\"--framer-text-alignment\":\"left\"},children:\"Refinement\"})}),className:\"framer-1ria88n\",\"data-framer-name\":\"Refinement\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k6cbYd_ZA\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:Mz0wvNH6v,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Based on the research, strategic designs solutions will be explored. Multiple route will be presented and the selected will be further developed. This includes low, mid and high fidelity wireframes and animations.\"})}),className:\"framer-tujbi1\",\"data-framer-name\":\"Based on the research, strategic designs solutions will be explored. Multiple route will be presented and the selected will be further developed. This includes low, mid and high fidelity wireframes and animations.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PIQQv4SNF\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:kB1rNTf7X,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cwdVz.framer-a6ks7o, .framer-cwdVz .framer-a6ks7o { display: block; }\",\".framer-cwdVz.framer-1621ah3 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 384px; }\",\".framer-cwdVz .framer-jkagpy { align-content: center; align-items: center; aspect-ratio: 0.9365853658536586 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 214px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-cwdVz .framer-emzotn { flex: none; height: 100%; position: relative; width: 100%; z-index: 2; }\",\".framer-cwdVz .framer-d1oic0-container { flex: none; height: 100%; left: 0px; position: absolute; top: calc(49.81684981684984% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-cwdVz .framer-pe1wlw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cwdVz .framer-1fvq5o5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cwdVz .framer-edoz5b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 9px 20px 9px 20px; position: relative; width: min-content; }\",\".framer-cwdVz .framer-69j1gw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cwdVz .framer-1ria88n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cwdVz .framer-tujbi1 { flex: none; height: auto; max-width: 580px; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cwdVz.framer-1621ah3, .framer-cwdVz .framer-jkagpy, .framer-cwdVz .framer-pe1wlw, .framer-cwdVz .framer-1fvq5o5, .framer-cwdVz .framer-edoz5b { gap: 0px; } .framer-cwdVz.framer-1621ah3 > *, .framer-cwdVz .framer-pe1wlw > *, .framer-cwdVz .framer-1fvq5o5 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-cwdVz.framer-1621ah3 > :first-child, .framer-cwdVz .framer-pe1wlw > :first-child, .framer-cwdVz .framer-1fvq5o5 > :first-child { margin-top: 0px; } .framer-cwdVz.framer-1621ah3 > :last-child, .framer-cwdVz .framer-pe1wlw > :last-child, .framer-cwdVz .framer-1fvq5o5 > :last-child { margin-bottom: 0px; } .framer-cwdVz .framer-jkagpy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-cwdVz .framer-jkagpy > :first-child, .framer-cwdVz .framer-edoz5b > :first-child { margin-left: 0px; } .framer-cwdVz .framer-jkagpy > :last-child, .framer-cwdVz .framer-edoz5b > :last-child { margin-right: 0px; } .framer-cwdVz .framer-edoz5b > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 595\n * @framerIntrinsicWidth 383\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"rFExBnb6h\":\"number\",\"Mz0wvNH6v\":\"title\",\"kB1rNTf7X\":\"paragraph\",\"ZLxZW1prj\":\"image\",\"y33fYjAOj\":\"videoURL\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbnagblXJQ=withCSS(Component,css,\"framer-cwdVz\");export default FramerbnagblXJQ;FramerbnagblXJQ.displayName=\"About / Core Value\";FramerbnagblXJQ.defaultProps={height:595,width:383};addPropertyControls(FramerbnagblXJQ,{rFExBnb6h:{defaultValue:\"03\",displayTextArea:false,title:\"Number\",type:ControlType.String},Mz0wvNH6v:{defaultValue:\"Refinement\",displayTextArea:false,title:\"Title\",type:ControlType.String},kB1rNTf7X:{defaultValue:\"Based on the research, strategic designs solutions will be explored. Multiple route will be presented and the selected will be further developed. This includes low, mid and high fidelity wireframes and animations.\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String},ZLxZW1prj:{__defaultAssetReference:\"data:framer/asset-reference,cqfVQIgw5jhzxuDXnMuX2ze2kI.png?originalFilename=Rectangle+747814387.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},y33fYjAOj:{defaultValue:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",placeholder:\"../example.mp4\",title:\"Video URL\",type:ControlType.String}});addFonts(FramerbnagblXJQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbnagblXJQ\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"rFExBnb6h\\\":\\\"number\\\",\\\"Mz0wvNH6v\\\":\\\"title\\\",\\\"kB1rNTf7X\\\":\\\"paragraph\\\",\\\"ZLxZW1prj\\\":\\\"image\\\",\\\"y33fYjAOj\\\":\\\"videoURL\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"595\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"383\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (06534cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/FpgeBqxKP3U05gfxSELd/qfRZVd2WQbbXXCyxz8HH/xxobpGKc2.js\";const cycleOrder=[\"dYN0Jt4JR\",\"QZJILP3_7\"];const serializationHash=\"framer-vOv9w\";const variantClassNames={dYN0Jt4JR:\"framer-v-98m2ys\",QZJILP3_7:\"framer-v-jh1s5f\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Team Card - Hover\":\"QZJILP3_7\",\"Team Card\":\"dYN0Jt4JR\"};const getProps=({height,id,image1,link,name1,position,width,...props})=>{return{...props,pRhVbW3Up:image1??props.pRhVbW3Up??{src:\"https://framerusercontent.com/images/hvFwxEkvVbSPu0GdYDWDHwTwbY.jpg\"},QbsbPhov5:name1??props.QbsbPhov5??\"Ava Patel\",TOJFCrtjK:link??props.TOJFCrtjK,uNFLaBT4L:position??props.uNFLaBT4L??\"Partner\",variant:humanReadableVariantMap[props.variant]??props.variant??\"dYN0Jt4JR\"};};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,pRhVbW3Up,QbsbPhov5,uNFLaBT4L,TOJFCrtjK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dYN0Jt4JR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter14vcm07=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"QZJILP3_7\");});const onMouseLeave18b9cpk=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"dYN0Jt4JR\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:TOJFCrtjK,motionChild:true,nodeId:\"dYN0Jt4JR\",scopeId:\"FHseVXr8s\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-98m2ys\",className,classNames)} framer-1mzz0op`,\"data-framer-name\":\"Team Card\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dYN0Jt4JR\",onMouseEnter:onMouseEnter14vcm07,ref:refBinding,style:{...style},...addPropertyOverrides({QZJILP3_7:{\"data-framer-name\":\"Team Card - Hover\",onMouseLeave:onMouseLeave18b9cpk}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19oar2m\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"Nnh7fNJTG\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||439)-0-596)/2+0+0)+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(pRhVbW3Up)},className:\"framer-1nkkmad\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QZUMnl0mP\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\"},variants:{QZJILP3_7:{filter:\"brightness(1.1)\",WebkitFilter:\"brightness(1.1)\"}}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12r4e6l\",\"data-framer-name\":\"Details\",layoutDependency:layoutDependency,layoutId:\"E8RnkPkDj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1smya65\",layoutDependency:layoutDependency,layoutId:\"vRmuXaazM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Ava Patel\"})}),className:\"framer-utw1n4\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bEZEViLeB\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:QbsbPhov5,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Partner\"})}),className:\"framer-scbpss\",\"data-framer-name\":\"Partner\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"d8dx3zUMk\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.4},text:uNFLaBT4L,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vOv9w.framer-1mzz0op, .framer-vOv9w .framer-1mzz0op { display: block; }\",\".framer-vOv9w.framer-98m2ys { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 285px; }\",\".framer-vOv9w .framer-19oar2m { align-content: center; align-items: center; aspect-ratio: 0.7307692307692307 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 390px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vOv9w .framer-1nkkmad { flex: none; height: 100%; position: relative; width: 100%; z-index: 2; }\",\".framer-vOv9w .framer-12r4e6l { 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: 100%; }\",\".framer-vOv9w .framer-1smya65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vOv9w .framer-utw1n4 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-vOv9w .framer-scbpss { flex: none; height: auto; position: relative; 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-vOv9w.framer-98m2ys, .framer-vOv9w .framer-19oar2m, .framer-vOv9w .framer-12r4e6l, .framer-vOv9w .framer-1smya65 { gap: 0px; } .framer-vOv9w.framer-98m2ys > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vOv9w.framer-98m2ys > :first-child, .framer-vOv9w .framer-12r4e6l > :first-child { margin-top: 0px; } .framer-vOv9w.framer-98m2ys > :last-child, .framer-vOv9w .framer-12r4e6l > :last-child { margin-bottom: 0px; } .framer-vOv9w .framer-19oar2m > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vOv9w .framer-19oar2m > :first-child, .framer-vOv9w .framer-1smya65 > :first-child { margin-left: 0px; } .framer-vOv9w .framer-19oar2m > :last-child, .framer-vOv9w .framer-1smya65 > :last-child { margin-right: 0px; } .framer-vOv9w .framer-12r4e6l > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vOv9w .framer-1smya65 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-vOv9w.framer-v-jh1s5f .framer-1smya65 { gap: 5px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vOv9w.framer-v-jh1s5f .framer-1smya65 { gap: 0px; } .framer-vOv9w.framer-v-jh1s5f .framer-1smya65 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-vOv9w.framer-v-jh1s5f .framer-1smya65 > :first-child { margin-left: 0px; } .framer-vOv9w.framer-v-jh1s5f .framer-1smya65 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 439\n * @framerIntrinsicWidth 285\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QZJILP3_7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pRhVbW3Up\":\"image1\",\"QbsbPhov5\":\"name1\",\"uNFLaBT4L\":\"position\",\"TOJFCrtjK\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFHseVXr8s=withCSS(Component,css,\"framer-vOv9w\");export default FramerFHseVXr8s;FramerFHseVXr8s.displayName=\"About / Team Card\";FramerFHseVXr8s.defaultProps={height:439,width:285};addPropertyControls(FramerFHseVXr8s,{variant:{options:[\"dYN0Jt4JR\",\"QZJILP3_7\"],optionTitles:[\"Team Card\",\"Team Card - Hover\"],title:\"Variant\",type:ControlType.Enum},pRhVbW3Up:{__defaultAssetReference:\"data:framer/asset-reference,hvFwxEkvVbSPu0GdYDWDHwTwbY.jpg?originalFilename=image+1295.jpg&preferredSize=full\",title:\"Image 1\",type:ControlType.ResponsiveImage},QbsbPhov5:{defaultValue:\"Ava Patel\",displayTextArea:false,title:\"Name\",type:ControlType.String},uNFLaBT4L:{defaultValue:\"Partner\",displayTextArea:false,title:\"Position\",type:ControlType.String},TOJFCrtjK:{title:\"Link\",type:ControlType.Link}});addFonts(FramerFHseVXr8s,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFHseVXr8s\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"439\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"285\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QZJILP3_7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"pRhVbW3Up\\\":\\\"image1\\\",\\\"QbsbPhov5\\\":\\\"name1\\\",\\\"uNFLaBT4L\\\":\\\"position\\\",\\\"TOJFCrtjK\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FHseVXr8s.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CFrom the very first training session, I felt the creative and quite challenging exercises being conducted. They are demanding because they require mental and physical readiness. I have gone through various corrective exercises and relaxation techniques at other centers because, two years ago, while engaging in athletics, knee problems began. However, at PBS, training with Kre\u0161o, each visit is a new experience, and we perform exercises I've never seen in my life. To sum it up beautifully in one sentence: \u2018I see no reason why anyone would not go to PBS.'\u201D\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CFrom the very first training session, I felt the creative and quite challenging exercises being conducted. They are demanding because they require mental and physical readiness. I have gone through various corrective exercises and relaxation techniques at other centers because, two years ago, while engaging in athletics, knee problems began. However, at PBS, training with Kre\u0161o, each visit is a new experience, and we perform exercises I've never seen in my life. To sum it up beautifully in one sentence: \u2018I see no reason why anyone would not go to PBS.'\u201D\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CI entrusted my body and health care to Ana-Marija 22 years ago, and I have been loyally practicing at PBS since the center's inception. I initially participated in group classes, but over time, we focused my training on an individual level, where gradually, with a trainer who recognizes my capabilities and needs, we achieve the desired results. The years spent with Ana-Marija and her team are sufficient proof of how satisfied I am with the approach and work.\u201D\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CI entrusted my body and health care to Ana-Marija 22 years ago, and I have been loyally practicing at PBS since the center's inception. I initially participated in group classes, but over time, we focused my training on an individual level, where gradually, with a trainer who recognizes my capabilities and needs, we achieve the desired results. The years spent with Ana-Marija and her team are sufficient proof of how satisfied I am with the approach and work.\u201D\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CBody technique is my technique, a technique for me. It supports me through all phases and conditions of my life. Whether I have an abundance of energy or a shortage, my beloved instructors recognize this and adapt the training accordingly. After training, I am filled with good energy, good will, and a sense of fulfillment. Body technique has been my choice for over 12 years.\u201D\"})});export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"I discovered the Body technique in Hvar, at the summer PBS camp in Jelsa, which I attended based on a recommendation. Due to issues with lymphoma, I had previously tried various massages, but none had a significant effect. At PBS, I noticed great improvement after just a few treatments combining massage, exercises, and an energetic approach. I am extremely satisfied with the people working at PBS and will continue coming since I feel considerably better.\"'})});export const v6=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"I discovered the Body technique in Hvar, at the summer PBS camp in Jelsa, which I attended based on a recommendation. Due to issues with lymphoma, I had previously tried various massages, but none had a significant effect. At PBS, I noticed great improvement after just a few treatments combining massage, exercises, and an energetic approach. I am extremely satisfied with the people working at PBS and will continue coming since I feel considerably better.\"'})});export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"I discovered the Body technique in Hvar, at the summer PBS camp in Jelsa, which I attended based on a recommendation. Due to issues with lymphoma, I had previously tried various massages, but none had a significant effect. At PBS, I noticed great improvement after just a few treatments combining massage, exercises, and an energetic approach. I am extremely satisfied with the people working at PBS and will continue coming since I feel considerably better.\"'})});\nexport const __FramerMetadata__ = {\"exports\":{\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport*as localizedValues from\"./GmJX9wZ_Z-0.js\";const valuesByLocaleId={uUeO_Znc6:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/aUzGbyoYyzjduqvOeuWY/Yv626sTYk5w0YJOis44r/bUU3wN9fx.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/FpgeBqxKP3U05gfxSELd/qfRZVd2WQbbXXCyxz8HH/xxobpGKc2.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/kHeUZlRLu6t0d0MHPWG2/VQssy4FnRw17KE2ICKdG/GmJX9wZ_Z.js\";const cycleOrder=[\"OGufm1PK7\",\"gZrR_wNEe\",\"Nz4MOnU5b\",\"UyPUKQvBu\",\"u8lbWYdKm\",\"Pct_HBONR\",\"nfIH1Lex6\",\"X49Pc4fS1\"];const serializationHash=\"framer-ZSjmT\";const variantClassNames={gZrR_wNEe:\"framer-v-p7k4a7\",nfIH1Lex6:\"framer-v-1p4kj45\",Nz4MOnU5b:\"framer-v-i5zk0u\",OGufm1PK7:\"framer-v-o7ut5h\",Pct_HBONR:\"framer-v-yra54q\",u8lbWYdKm:\"framer-v-1jv3kvc\",UyPUKQvBu:\"framer-v-1xkgne\",X49Pc4fS1:\"framer-v-1m3mjdh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const transition2={delay:.2,duration:.4,ease:[0,0,1,1],type:\"tween\"};const transition3={delay:0,duration:.4,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Slide 1\":\"OGufm1PK7\",\"Slide 2\":\"gZrR_wNEe\",\"Slide 3\":\"Nz4MOnU5b\",\"Slide 4\":\"UyPUKQvBu\",\"Tablet 1\":\"u8lbWYdKm\",\"Tablet 2\":\"Pct_HBONR\",\"Tablet 3\":\"nfIH1Lex6\",\"Tablet 4\":\"X49Pc4fS1\"};const getProps=({cursorEndLeft,cursorEndRight,cursorLeft,cursorRight,height,id,width,...props})=>{return{...props,bYHp0vTOv:cursorEndRight??props.bYHp0vTOv,kBM7Fv7NS:cursorEndLeft??props.kBM7Fv7NS,ObBlL2Bkk:cursorLeft??props.ObBlL2Bkk,variant:humanReadableVariantMap[props.variant]??props.variant??\"OGufm1PK7\",xSoFtQf1E:cursorRight??props.xSoFtQf1E};};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,ObBlL2Bkk,xSoFtQf1E,kBM7Fv7NS,bYHp0vTOv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OGufm1PK7\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearsrd0iv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"gZrR_wNEe\"),5e3);});const onAppearjdwcya=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Nz4MOnU5b\"),5e3);});const onAppear17iwfzs=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"UyPUKQvBu\"),5e3);});const onAppear1fnafab=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"OGufm1PK7\"),5e3);});const onAppearwptwzl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Pct_HBONR\"),5e3);});const onAppear1gda7rf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"nfIH1Lex6\"),5e3);});const onAppear1htt72s=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"X49Pc4fS1\"),5e3);});const onAppeargjzfwm=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"u8lbWYdKm\"),5e3);});const onTap1i3ppsl=activeVariantCallback(async(...args)=>{setVariant(\"OGufm1PK7\");});const onTap24r2x6=activeVariantCallback(async(...args)=>{setVariant(\"u8lbWYdKm\");});const onTap1updlcu=activeVariantCallback(async(...args)=>{setVariant(\"gZrR_wNEe\");});const onTap1hx5aqe=activeVariantCallback(async(...args)=>{setVariant(\"Pct_HBONR\");});const onTaprycw1u=activeVariantCallback(async(...args)=>{setVariant(\"Nz4MOnU5b\");});const onTap13hko33=activeVariantCallback(async(...args)=>{setVariant(\"nfIH1Lex6\");});const onTap1grkh1x=activeVariantCallback(async(...args)=>{setVariant(\"UyPUKQvBu\");});const onTapbza0uy=activeVariantCallback(async(...args)=>{setVariant(\"X49Pc4fS1\");});useOnVariantChange(baseVariant,{default:onAppearsrd0iv,gZrR_wNEe:onAppearjdwcya,nfIH1Lex6:onAppear1htt72s,Nz4MOnU5b:onAppear17iwfzs,Pct_HBONR:onAppear1gda7rf,u8lbWYdKm:onAppearwptwzl,UyPUKQvBu:onAppear1fnafab,X49Pc4fS1:onAppeargjzfwm});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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-o7ut5h\",className,classNames),\"data-framer-name\":\"Slide 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OGufm1PK7\",ref:refBinding,style:{...style},...addPropertyOverrides({gZrR_wNEe:{\"data-framer-name\":\"Slide 2\"},nfIH1Lex6:{\"data-framer-name\":\"Tablet 3\"},Nz4MOnU5b:{\"data-framer-name\":\"Slide 3\"},Pct_HBONR:{\"data-framer-name\":\"Tablet 2\"},u8lbWYdKm:{\"data-framer-name\":\"Tablet 1\"},UyPUKQvBu:{\"data-framer-name\":\"Slide 4\"},X49Pc4fS1:{\"data-framer-name\":\"Tablet 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1etietn\",\"data-framer-name\":\"Slider Wrapper\",layoutDependency:layoutDependency,layoutId:\"gJ2nQFnw7\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c3lh1w\",\"data-framer-name\":\"Testimonial Container\",layoutDependency:layoutDependency,layoutId:\"S9pjJZzuE\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k7iiuj\",\"data-framer-name\":\"Testimonial 1\",layoutDependency:layoutDependency,layoutId:\"rfm2lbuPz\",style:{opacity:1},variants:{gZrR_wNEe:{opacity:0},nfIH1Lex6:{opacity:0},Nz4MOnU5b:{opacity:0},Pct_HBONR:{opacity:0},u8lbWYdKm:{opacity:1},UyPUKQvBu:{opacity:0},X49Pc4fS1:{opacity:0}},children:[/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({gZrR_wNEe:{value:transition3},nfIH1Lex6:{value:transition3},Nz4MOnU5b:{value:transition3},Pct_HBONR:{value:transition3},UyPUKQvBu:{value:transition3},X49Pc4fS1:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CVe\u0107 na prvom treningu osjetio sam kakve se kreativne i nimalo lagane vje\u017Ebe provode. Te\u0161ke su jer zahtijevaju psihi\u010Dku i fizi\u010Dku spremnost. Pro\u0161ao sam razne korekcijske vje\u017Ebe i opu\u0161tanja u drugim centrima jer su prije 2 godine, bave\u0107i se atletikom, po\u010Deli problemi s koljenima, ali u PBS-u, treniraju\u0107i s Kre\u0161om, svaki dolazak je novo iskustvo i radimo vje\u017Ebe koje nisam nikad u \u017Eivotu ni vidio. Da sve ka\u017Eem lijepo u jednoj re\u010Denici: \u2018Ne vidim niti jedan razlog za\u0161to netko ne bi i\u0161ao u PBS.\u201D\"})}),className:\"framer-1l68bh2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hZ5kM15y1\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{gZrR_wNEe:{opacity:0},nfIH1Lex6:{opacity:1},Nz4MOnU5b:{opacity:1},Pct_HBONR:{opacity:0},u8lbWYdKm:{opacity:1},UyPUKQvBu:{opacity:0},X49Pc4fS1:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nz4MOnU5b:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"Brigu o svom tijelu i zdravlju povjerila sam Ana-Mariji prije 22 godine te u PBS-u odano vje\u017Ebam od osnivanja Centra. U po\u010Detku sam vje\u017Ebala u grupnim terminima, ali smo s vremenom moje treninge usmjerili na individualnu razinu u kojoj postepeno, uz trenera koji prepoznaje moje mogu\u0107nosti i potrebe, dosti\u017Eemo \u017Eeljene rezultate. Godine koje sam provela uz Ana-Mariju i njezin tim su dovoljan dokaz koliko sam zadovoljna pristupom i radom.\"'})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition2,...addPropertyOverrides({gZrR_wNEe:{value:transition3},nfIH1Lex6:{value:transition3},Nz4MOnU5b:{value:transition3},Pct_HBONR:{value:transition3},UyPUKQvBu:{value:transition3},X49Pc4fS1:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p6y29k\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"PQ9FHePpU\",style:{opacity:1},variants:{gZrR_wNEe:{opacity:0},nfIH1Lex6:{opacity:1},Nz4MOnU5b:{opacity:1},Pct_HBONR:{opacity:0},u8lbWYdKm:{opacity:1},UyPUKQvBu:{opacity:0},X49Pc4fS1:{opacity:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"David Beck\"})}),className:\"framer-102xsdz\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fV3W41mDy\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nz4MOnU5b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Rina Debak\"})})}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s3jcf\",\"data-framer-name\":\"Testimonial 2\",layoutDependency:layoutDependency,layoutId:\"deTqwMNHu\",style:{opacity:1},variants:{nfIH1Lex6:{opacity:0},Nz4MOnU5b:{opacity:0},Pct_HBONR:{opacity:1},u8lbWYdKm:{opacity:1},UyPUKQvBu:{opacity:0},X49Pc4fS1:{opacity:0}},children:[/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({gZrR_wNEe:{value:transition2},Pct_HBONR:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CBrigu o svom tijelu i zdravlju povjerila sam Ana-Mariji prije 22 godine te u PBS-u odano vje\u017Ebam od osnivanja centra. U po\u010Detku sam vje\u017Ebala u grupnim terminima, ali smo s vremenom moje treninge usmjerili na individualnu razinu, u kojoj postepeno, uz trenera koji prepoznaje moje mogu\u0107nosti i potrebe, dosti\u017Eemo \u017Eeljene rezultate. Godine koje sam provela uz Ana-Mariju i njezin tim su dovoljan dokaz koliko sam zadovoljna pristupom i radom.\u201D\"})}),className:\"framer-1ym10j7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nz7qZBLph\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{gZrR_wNEe:{opacity:1},Pct_HBONR:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nz4MOnU5b:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"Body tehnika je moja tehnika, tehnika za mene. I to u svim mojim \u017Eivotnim fazama i stanjima. Kada imam vi\u0161ka energije ili pak manjka energije, moje drage trenerice to prepoznaju i prilagode se treningom, a nakon treninga puna sam dobre energije, dobre volje i ispunjena\u2026 Body tehnika je moj odabir ve\u0107 vi\u0161e od 12 godina.\"'})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({gZrR_wNEe:{value:transition2},Pct_HBONR:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10evknl\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"SKOvDWa02\",style:{opacity:0},variants:{gZrR_wNEe:{opacity:1},Pct_HBONR:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Rina Debak\"})}),className:\"framer-uhlaxp\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qvFfbVBGa\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nz4MOnU5b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Slavenka Martinovi\u0107\"})})}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13hwg0x\",\"data-framer-name\":\"Testimonial 3\",layoutDependency:layoutDependency,layoutId:\"nccruNJML\",style:{opacity:0},variants:{nfIH1Lex6:{opacity:1},Nz4MOnU5b:{opacity:1}},children:[/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({nfIH1Lex6:{value:transition2},Nz4MOnU5b:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CBody tehnika je moja tehnika, tehnika za mene. I to u svim mojim \u017Eivotnim fazama i stanjima. Kada imam vi\u0161ka energije ili pak manjka energije, moje drage trenerice to prepoznaju i prilagode se treningom, a nakon treninga puna sam dobre energije, dobre volje i ispunjena. Body tehnika je moj odabir ve\u0107 vi\u0161e od 12 godina.\u201D\"})}),className:\"framer-xcbvnq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uinqHECRD\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{nfIH1Lex6:{opacity:1},Nz4MOnU5b:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({nfIH1Lex6:{value:transition2},Nz4MOnU5b:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fsuedj\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"jCfQ4aM9s\",style:{opacity:0},variants:{nfIH1Lex6:{opacity:1},Nz4MOnU5b:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Slavenka Martinovi\u0107\"})}),className:\"framer-1nl7c9o\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jTSQzIPAA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-drocc1\",\"data-framer-name\":\"Testimonial 4\",layoutDependency:layoutDependency,layoutId:\"jFZjM32Vv\",style:{opacity:1},variants:{gZrR_wNEe:{opacity:0},nfIH1Lex6:{opacity:0},Nz4MOnU5b:{opacity:0},Pct_HBONR:{opacity:0},u8lbWYdKm:{opacity:1},UyPUKQvBu:{opacity:1},X49Pc4fS1:{opacity:1}},children:[/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({UyPUKQvBu:{value:transition2},X49Pc4fS1:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"Body tehniku sam upoznala na Hvaru, na ljetnom PBS kampu u Jelsi, u koji sam do\u0161la po preporuci. Zbog problema s limfom, ranije sam isprobala razne masa\u017Ee, ali nisu imale zna\u010Dajnijeg u\u010Dinka. U PBS-u sam vidjela velik napredak ve\u0107 nakon par dolazaka na tretmane kombinirane masa\u017Eom, vje\u017Ebama i energetskim pristupom. Prezadovoljna sam ljudima koji rade u PBS-u i nastavit \u0107u dolaziti s obzirom da se osje\u0107am znatno bolje.\"'})}),className:\"framer-1ard1ys\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QlymaJRfc\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:0},variants:{UyPUKQvBu:{opacity:1},X49Pc4fS1:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nz4MOnU5b:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:\"\u201CVe\u0107 na prvom treningu u ljetnom kampu PBS-a na Hvaru osjetio sam kakve se kreativne i nimalo lagane vje\u017Ebe provode. Te\u0161ke su jer zahtijevaju psihi\u010Dku i fizi\u010Dku spremnost. Pro\u0161ao sam razne korekcijske vje\u017Ebe i opu\u0161tanja u drugim centrima jer su prije 2 godine, bave\u0107i se atletikom, po\u010Deli problemi s koljenima, ali u PBS-u, treniraju\u0107i s Kre\u0161om, svaki dolazak je novo iskustvo i radimo vje\u017Ebe koje nisam nikad u \u017Eivotu ni vidio. Da sve ka\u017Eem lijepo u jednoj re\u010Denici: \u2018Ne vidim niti jedan razlog za\u0161to netko ne bi i\u0161ao u PBS.\u201D\"})})},UyPUKQvBu:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ksqq7f\",\"data-styles-preset\":\"bUU3wN9fx\",children:'\"Body tehniku sam upoznala na Hvaru, u Jelsi, u koji sam do\u0161la po preporuci. Zbog problema s limfom, ranije sam isprobala razne masa\u017Ee, ali nisu imale zna\u010Dajnijeg u\u010Dinka. U PBS-u sam vidjela velik napredak ve\u0107 nakon par dolazaka na tretmane kombinirane masa\u017Eom, vje\u017Ebama i energetskim pristupom. Prezadovoljna sam ljudima koji rade u PBS-u i nastavit \u0107u dolaziti s obzirom da se osje\u0107am znatno bolje.\"'})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({UyPUKQvBu:{value:transition2},X49Pc4fS1:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eum4kx\",\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"T7OjdSwYv\",style:{opacity:0},variants:{UyPUKQvBu:{opacity:1},X49Pc4fS1:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Lisa Kudrow\"})}),className:\"framer-1ew62ir\",\"data-framer-name\":\"Tommy Jacobson\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bpz_GguK7\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nz4MOnU5b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"S\"})})},UyPUKQvBu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"\u017Deljka Anzulovi\u0107\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Head of Design, Sony\"})}),className:\"framer-1dkup9p\",\"data-framer-name\":\"Partner\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AUkqa_KKG\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({UyPUKQvBu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\"})})}},baseVariant,gestureVariant)})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k6bnj9\",\"data-framer-name\":\"Controls\",layoutDependency:layoutDependency,layoutId:\"SrJLdRhgx\",style:{backgroundColor:\"rgb(243, 243, 245)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8co0s3\",\"data-framer-name\":\"Dot 1\",layoutDependency:layoutDependency,layoutId:\"x__zR5Mv7\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{gZrR_wNEe:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"},nfIH1Lex6:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"},Nz4MOnU5b:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"},Pct_HBONR:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"},UyPUKQvBu:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"},X49Pc4fS1:{backgroundColor:\"rgba(0, 0, 0, 0.1)\"}},...addPropertyOverrides({gZrR_wNEe:{\"data-highlight\":true,onTap:onTap1i3ppsl},nfIH1Lex6:{\"data-highlight\":true,onTap:onTap24r2x6},Nz4MOnU5b:{\"data-highlight\":true,onTap:onTap1i3ppsl},Pct_HBONR:{\"data-highlight\":true,onTap:onTap24r2x6},UyPUKQvBu:{\"data-highlight\":true,onTap:onTap1i3ppsl},X49Pc4fS1:{\"data-highlight\":true,onTap:onTap24r2x6}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tr9v6p\",\"data-framer-name\":\"Dot 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PPfNR46yO\",onTap:onTap1updlcu,style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{gZrR_wNEe:{backgroundColor:\"rgb(0, 0, 0)\"},Pct_HBONR:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({nfIH1Lex6:{onTap:onTap1hx5aqe},Pct_HBONR:{\"data-highlight\":undefined,onTap:undefined},u8lbWYdKm:{onTap:onTap1hx5aqe},X49Pc4fS1:{onTap:onTap1hx5aqe}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hnw8x2\",\"data-framer-name\":\"Dot 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qM2X1YpdG\",onTap:onTaprycw1u,style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{nfIH1Lex6:{backgroundColor:\"rgb(0, 0, 0)\"},Nz4MOnU5b:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({nfIH1Lex6:{\"data-highlight\":undefined,onTap:undefined},Pct_HBONR:{onTap:onTap13hko33},u8lbWYdKm:{onTap:onTap13hko33},X49Pc4fS1:{onTap:onTap13hko33}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jgi5bo\",\"data-framer-name\":\"Dot 4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zdeiw6Yuj\",onTap:onTap1grkh1x,style:{backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},variants:{UyPUKQvBu:{backgroundColor:\"rgb(0, 0, 0)\"},X49Pc4fS1:{backgroundColor:\"rgb(0, 0, 0)\"}},...addPropertyOverrides({nfIH1Lex6:{onTap:onTapbza0uy},Pct_HBONR:{onTap:onTapbza0uy},u8lbWYdKm:{onTap:onTapbza0uy},X49Pc4fS1:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant)})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eepakn\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"KysWqqsra\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-itkka9\",\"data-framer-cursor\":xSoFtQf1E,\"data-framer-name\":\"Cursor Hover - Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ogppCplnb\",onTap:onTap1updlcu,...addPropertyOverrides({gZrR_wNEe:{onTap:onTaprycw1u},nfIH1Lex6:{onTap:onTapbza0uy},Nz4MOnU5b:{onTap:onTap1grkh1x},Pct_HBONR:{onTap:onTap13hko33},u8lbWYdKm:{onTap:onTap1hx5aqe},UyPUKQvBu:{\"data-framer-cursor\":bYHp0vTOv,\"data-highlight\":undefined,onTap:undefined},X49Pc4fS1:{\"data-framer-cursor\":undefined,\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w51wj2\",\"data-framer-cursor\":kBM7Fv7NS,\"data-framer-name\":\"Cursor Hover - Left\",layoutDependency:layoutDependency,layoutId:\"BZ9W_HTFn\",...addPropertyOverrides({gZrR_wNEe:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap1i3ppsl},nfIH1Lex6:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap1hx5aqe},Nz4MOnU5b:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap1updlcu},Pct_HBONR:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap24r2x6},UyPUKQvBu:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTaprycw1u},X49Pc4fS1:{\"data-framer-cursor\":ObBlL2Bkk,\"data-highlight\":true,onTap:onTap13hko33}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZSjmT.framer-dfgu2y, .framer-ZSjmT .framer-dfgu2y { display: block; }\",\".framer-ZSjmT.framer-o7ut5h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1170px; }\",\".framer-ZSjmT .framer-1etietn { 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: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZSjmT .framer-1c3lh1w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 252px; overflow: visible; padding: 0px; position: relative; width: 420px; }\",\".framer-ZSjmT .framer-1k7iiuj, .framer-ZSjmT .framer-1s3jcf, .framer-ZSjmT .framer-13hwg0x, .framer-ZSjmT .framer-drocc1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 1px; width: 420px; z-index: 1; }\",\".framer-ZSjmT .framer-1l68bh2, .framer-ZSjmT .framer-1ym10j7, .framer-ZSjmT .framer-xcbvnq, .framer-ZSjmT .framer-1ard1ys, .framer-ZSjmT .framer-1ew62ir, .framer-ZSjmT .framer-1dkup9p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZSjmT .framer-p6y29k, .framer-ZSjmT .framer-10evknl, .framer-ZSjmT .framer-fsuedj { 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-ZSjmT .framer-102xsdz, .framer-ZSjmT .framer-uhlaxp, .framer-ZSjmT .framer-1nl7c9o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ZSjmT .framer-1eum4kx { 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: 100%; }\",\".framer-ZSjmT .framer-k6bnj9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 7px 10px 7px 10px; position: absolute; top: -32px; width: min-content; z-index: 9; }\",\".framer-ZSjmT .framer-8co0s3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 7px); position: relative; width: 7px; }\",\".framer-ZSjmT .framer-tr9v6p, .framer-ZSjmT .framer-1hnw8x2, .framer-ZSjmT .framer-jgi5bo { aspect-ratio: 1 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 7px); position: relative; width: 7px; }\",\".framer-ZSjmT .framer-1eepakn { align-content: center; align-items: center; aspect-ratio: 1.183673469387755 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 490px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZSjmT .framer-itkka9 { bottom: 0px; cursor: pointer; flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; width: 49%; z-index: 2; }\",\".framer-ZSjmT .framer-1w51wj2 { bottom: 0px; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; width: 51%; z-index: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZSjmT.framer-o7ut5h, .framer-ZSjmT .framer-1etietn, .framer-ZSjmT .framer-1c3lh1w, .framer-ZSjmT .framer-1k7iiuj, .framer-ZSjmT .framer-p6y29k, .framer-ZSjmT .framer-1s3jcf, .framer-ZSjmT .framer-10evknl, .framer-ZSjmT .framer-13hwg0x, .framer-ZSjmT .framer-fsuedj, .framer-ZSjmT .framer-drocc1, .framer-ZSjmT .framer-1eum4kx, .framer-ZSjmT .framer-k6bnj9, .framer-ZSjmT .framer-1eepakn { gap: 0px; } .framer-ZSjmT.framer-o7ut5h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZSjmT.framer-o7ut5h > :first-child, .framer-ZSjmT .framer-1c3lh1w > :first-child, .framer-ZSjmT .framer-k6bnj9 > :first-child, .framer-ZSjmT .framer-1eepakn > :first-child { margin-left: 0px; } .framer-ZSjmT.framer-o7ut5h > :last-child, .framer-ZSjmT .framer-1c3lh1w > :last-child, .framer-ZSjmT .framer-k6bnj9 > :last-child, .framer-ZSjmT .framer-1eepakn > :last-child { margin-right: 0px; } .framer-ZSjmT .framer-1etietn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZSjmT .framer-1etietn > :first-child, .framer-ZSjmT .framer-1k7iiuj > :first-child, .framer-ZSjmT .framer-p6y29k > :first-child, .framer-ZSjmT .framer-1s3jcf > :first-child, .framer-ZSjmT .framer-10evknl > :first-child, .framer-ZSjmT .framer-13hwg0x > :first-child, .framer-ZSjmT .framer-fsuedj > :first-child, .framer-ZSjmT .framer-drocc1 > :first-child, .framer-ZSjmT .framer-1eum4kx > :first-child { margin-top: 0px; } .framer-ZSjmT .framer-1etietn > :last-child, .framer-ZSjmT .framer-1k7iiuj > :last-child, .framer-ZSjmT .framer-p6y29k > :last-child, .framer-ZSjmT .framer-1s3jcf > :last-child, .framer-ZSjmT .framer-10evknl > :last-child, .framer-ZSjmT .framer-13hwg0x > :last-child, .framer-ZSjmT .framer-fsuedj > :last-child, .framer-ZSjmT .framer-drocc1 > :last-child, .framer-ZSjmT .framer-1eum4kx > :last-child { margin-bottom: 0px; } .framer-ZSjmT .framer-1c3lh1w > *, .framer-ZSjmT .framer-1eepakn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZSjmT .framer-1k7iiuj > *, .framer-ZSjmT .framer-1s3jcf > *, .framer-ZSjmT .framer-13hwg0x > *, .framer-ZSjmT .framer-drocc1 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-ZSjmT .framer-p6y29k > *, .framer-ZSjmT .framer-10evknl > *, .framer-ZSjmT .framer-fsuedj > *, .framer-ZSjmT .framer-1eum4kx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZSjmT .framer-k6bnj9 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-ZSjmT.framer-v-p7k4a7 .framer-1c3lh1w, .framer-ZSjmT.framer-v-i5zk0u .framer-1c3lh1w, .framer-ZSjmT.framer-v-1xkgne .framer-1c3lh1w { order: 0; }\",\".framer-ZSjmT.framer-v-p7k4a7 .framer-8co0s3, .framer-ZSjmT.framer-v-p7k4a7 .framer-1w51wj2, .framer-ZSjmT.framer-v-i5zk0u .framer-8co0s3, .framer-ZSjmT.framer-v-i5zk0u .framer-1w51wj2, .framer-ZSjmT.framer-v-1xkgne .framer-8co0s3, .framer-ZSjmT.framer-v-1xkgne .framer-1w51wj2, .framer-ZSjmT.framer-v-yra54q .framer-8co0s3, .framer-ZSjmT.framer-v-yra54q .framer-1w51wj2, .framer-ZSjmT.framer-v-1p4kj45 .framer-8co0s3, .framer-ZSjmT.framer-v-1p4kj45 .framer-1w51wj2, .framer-ZSjmT.framer-v-1m3mjdh .framer-8co0s3, .framer-ZSjmT.framer-v-1m3mjdh .framer-1w51wj2 { cursor: pointer; }\",\".framer-ZSjmT.framer-v-1xkgne .framer-itkka9, .framer-ZSjmT.framer-v-yra54q .framer-tr9v6p, .framer-ZSjmT.framer-v-1p4kj45 .framer-1hnw8x2, .framer-ZSjmT.framer-v-1m3mjdh .framer-jgi5bo, .framer-ZSjmT.framer-v-1m3mjdh .framer-itkka9 { cursor: unset; }\",\".framer-ZSjmT.framer-v-1jv3kvc.framer-o7ut5h, .framer-ZSjmT.framer-v-yra54q.framer-o7ut5h, .framer-ZSjmT.framer-v-1p4kj45.framer-o7ut5h, .framer-ZSjmT.framer-v-1m3mjdh.framer-o7ut5h { gap: 0px; width: 780px; }\",\".framer-ZSjmT.framer-v-1jv3kvc .framer-1c3lh1w, .framer-ZSjmT.framer-v-1jv3kvc .framer-1k7iiuj, .framer-ZSjmT.framer-v-1jv3kvc .framer-1s3jcf, .framer-ZSjmT.framer-v-1jv3kvc .framer-13hwg0x, .framer-ZSjmT.framer-v-1jv3kvc .framer-drocc1, .framer-ZSjmT.framer-v-yra54q .framer-1k7iiuj, .framer-ZSjmT.framer-v-yra54q .framer-1s3jcf, .framer-ZSjmT.framer-v-yra54q .framer-13hwg0x, .framer-ZSjmT.framer-v-yra54q .framer-drocc1, .framer-ZSjmT.framer-v-1p4kj45 .framer-1k7iiuj, .framer-ZSjmT.framer-v-1p4kj45 .framer-1s3jcf, .framer-ZSjmT.framer-v-1p4kj45 .framer-13hwg0x, .framer-ZSjmT.framer-v-1p4kj45 .framer-drocc1, .framer-ZSjmT.framer-v-1m3mjdh .framer-1k7iiuj, .framer-ZSjmT.framer-v-1m3mjdh .framer-1s3jcf, .framer-ZSjmT.framer-v-1m3mjdh .framer-13hwg0x, .framer-ZSjmT.framer-v-1m3mjdh .framer-drocc1 { width: 320px; }\",\".framer-ZSjmT.framer-v-1jv3kvc .framer-1eepakn { aspect-ratio: 1.2037037037037037 / 1; height: var(--framer-aspect-ratio-supported, 166px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZSjmT.framer-v-1jv3kvc.framer-o7ut5h { gap: 0px; } .framer-ZSjmT.framer-v-1jv3kvc.framer-o7ut5h > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZSjmT.framer-v-1jv3kvc.framer-o7ut5h > :first-child { margin-left: 0px; } .framer-ZSjmT.framer-v-1jv3kvc.framer-o7ut5h > :last-child { margin-right: 0px; } }\",\".framer-ZSjmT.framer-v-yra54q .framer-1c3lh1w, .framer-ZSjmT.framer-v-1p4kj45 .framer-1c3lh1w, .framer-ZSjmT.framer-v-1m3mjdh .framer-1c3lh1w { order: 0; width: 320px; }\",\".framer-ZSjmT.framer-v-yra54q .framer-1eepakn { aspect-ratio: 1.203125 / 1; height: var(--framer-aspect-ratio-supported, 166px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZSjmT.framer-v-yra54q.framer-o7ut5h { gap: 0px; } .framer-ZSjmT.framer-v-yra54q.framer-o7ut5h > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZSjmT.framer-v-yra54q.framer-o7ut5h > :first-child { margin-left: 0px; } .framer-ZSjmT.framer-v-yra54q.framer-o7ut5h > :last-child { margin-right: 0px; } }\",\".framer-ZSjmT.framer-v-1p4kj45 .framer-1eepakn, .framer-ZSjmT.framer-v-1m3mjdh .framer-1eepakn { aspect-ratio: 1.203125 / 1; height: var(--framer-aspect-ratio-supported, 324px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZSjmT.framer-v-1p4kj45.framer-o7ut5h { gap: 0px; } .framer-ZSjmT.framer-v-1p4kj45.framer-o7ut5h > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZSjmT.framer-v-1p4kj45.framer-o7ut5h > :first-child { margin-left: 0px; } .framer-ZSjmT.framer-v-1p4kj45.framer-o7ut5h > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZSjmT.framer-v-1m3mjdh.framer-o7ut5h { gap: 0px; } .framer-ZSjmT.framer-v-1m3mjdh.framer-o7ut5h > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ZSjmT.framer-v-1m3mjdh.framer-o7ut5h > :first-child { margin-left: 0px; } .framer-ZSjmT.framer-v-1m3mjdh.framer-o7ut5h > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 490\n * @framerIntrinsicWidth 1170\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gZrR_wNEe\":{\"layout\":[\"fixed\",\"auto\"]},\"Nz4MOnU5b\":{\"layout\":[\"fixed\",\"auto\"]},\"UyPUKQvBu\":{\"layout\":[\"fixed\",\"auto\"]},\"u8lbWYdKm\":{\"layout\":[\"fixed\",\"auto\"]},\"Pct_HBONR\":{\"layout\":[\"fixed\",\"auto\"]},\"nfIH1Lex6\":{\"layout\":[\"fixed\",\"auto\"]},\"X49Pc4fS1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ObBlL2Bkk\":\"cursorLeft\",\"xSoFtQf1E\":\"cursorRight\",\"kBM7Fv7NS\":\"cursorEndLeft\",\"bYHp0vTOv\":\"cursorEndRight\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGmJX9wZ_Z=withCSS(Component,css,\"framer-ZSjmT\");export default FramerGmJX9wZ_Z;FramerGmJX9wZ_Z.displayName=\"About / Testimonial Slider\";FramerGmJX9wZ_Z.defaultProps={height:490,width:1170};addPropertyControls(FramerGmJX9wZ_Z,{variant:{options:[\"OGufm1PK7\",\"gZrR_wNEe\",\"Nz4MOnU5b\",\"UyPUKQvBu\",\"u8lbWYdKm\",\"Pct_HBONR\",\"nfIH1Lex6\",\"X49Pc4fS1\"],optionTitles:[\"Slide 1\",\"Slide 2\",\"Slide 3\",\"Slide 4\",\"Tablet 1\",\"Tablet 2\",\"Tablet 3\",\"Tablet 4\"],title:\"Variant\",type:ControlType.Enum},ObBlL2Bkk:{title:\"Cursor Left\",type:ControlType.CustomCursor},xSoFtQf1E:{title:\"Cursor - Right\",type:ControlType.CustomCursor},kBM7Fv7NS:{title:\"Cursor End - Left\",type:ControlType.CustomCursor},bYHp0vTOv:{title:\"Cursor End - Right\",type:ControlType.CustomCursor}});addFonts(FramerGmJX9wZ_Z,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGmJX9wZ_Z\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"490\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ObBlL2Bkk\\\":\\\"cursorLeft\\\",\\\"xSoFtQf1E\\\":\\\"cursorRight\\\",\\\"kBM7Fv7NS\\\":\\\"cursorEndLeft\\\",\\\"bYHp0vTOv\\\":\\\"cursorEndRight\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gZrR_wNEe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nz4MOnU5b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UyPUKQvBu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u8lbWYdKm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pct_HBONR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nfIH1Lex6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X49Pc4fS1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1170\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Leading institution of\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",children:\"Leading institution of\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",children:\"of holistic and\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ac30n9\",\"data-styles-preset\":\"NSHp39t7X\",children:\"holistic and functional exercise.\"})});export const v4=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",children:\"fukctional exercise\"})});export const v5=\"More about us\";\nexport const __FramerMetadata__ = {\"exports\":{\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport*as localizedValues from\"./GyKJqP2Z6-0.js\";const valuesByLocaleId={uUeO_Znc6:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/2dkoqQwXulWpFTrVD5rA/oKh3cZ863uaFuj8NlRBw/NSHp39t7X.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6Ebc1Ucmdbx94ou3x9Ej/NKfC3fFGx5eP5UNsWwg3/sA1pdkMlu.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/BMdaZ4ixi4RSgXloGYgE/2VHVfGaBm5UzBw7of9wh/GyKJqP2Z6.js\";import UtilitiesScrollMore from\"https://framerusercontent.com/modules/28xUGaFdlzqVFcH7n0UN/O4iuopV2v8repOJfNdZV/YjypPLli_.js\";const VideoFonts=getFonts(Video);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const UtilitiesScrollMoreFonts=getFonts(UtilitiesScrollMore);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const cycleOrder=[\"UhIJ8NjKA\",\"O2CEwdnyD\",\"CY1W0rQc5\"];const serializationHash=\"framer-dFnqN\";const variantClassNames={CY1W0rQc5:\"framer-v-i2l6lo\",O2CEwdnyD:\"framer-v-1tleehh\",UhIJ8NjKA:\"framer-v-102r04k\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const transition2={delay:.5,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:4,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:67};const transition3={delay:.6,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.7,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.8,duration:1.4,ease:[.25,1,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,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:0};const transition6={delay:.9,duration:1.4,ease:[.25,1,.5,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};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={\"Header Active\":\"O2CEwdnyD\",\"Header Mobile\":\"CY1W0rQc5\",Header:\"UhIJ8NjKA\"};const getProps=({height,id,poster,uRL,width,...props})=>{return{...props,Q9MpMF_yE:poster??props.Q9MpMF_yE,twBEjiRp1:uRL??props.twBEjiRp1??\"https://ena-supply.b-cdn.net/Ora/740047_Woman%20Model%20Projection%20Vj_By_Ira_Belsky_Artlist_HD%20comp.mp4\",variant:humanReadableVariantMap[props.variant]??props.variant??\"UhIJ8NjKA\"};};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,twBEjiRp1,Q9MpMF_yE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UhIJ8NjKA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapdi4leu=activeVariantCallback(async(...args)=>{setVariant(\"CY1W0rQc5\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"CY1W0rQc5\")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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-102r04k\",className,classNames),\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"UhIJ8NjKA\",ref:refBinding,style:{...style},...addPropertyOverrides({CY1W0rQc5:{\"data-framer-name\":\"Header Mobile\"},O2CEwdnyD:{\"data-framer-name\":\"Header Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||600)-0-((componentViewport?.height||600)-0)*1)/2)),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Q9MpMF_yE)},className:\"framer-ihis5g\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"E_ldIFrah\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0},variants:{CY1W0rQc5:{borderBottomLeftRadius:0,borderBottomRightRadius:0},O2CEwdnyD:{borderBottomLeftRadius:10,borderBottomRightRadius:10}},...addPropertyOverrides({CY1W0rQc5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||900)-0-((componentViewport?.height||900)-0)*1)/2)),sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(Q9MpMF_yE)}},O2CEwdnyD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||600)-15-((componentViewport?.height||600)-15)*1)/2)),sizes:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,...toResponsiveImage(Q9MpMF_yE)}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-smvxe9-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"eoQBk8NNN-container\",nodeId:\"eoQBk8NNN\",rendersWithMotion:true,scopeId:\"GyKJqP2Z6\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"eoQBk8NNN\",isMixedBorderRadius:false,layoutId:\"eoQBk8NNN\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(Q9MpMF_yE),posterEnabled:true,srcType:\"URL\",srcUrl:twBEjiRp1,startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bpk6fc\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"c_hPyxslH\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, rgba(0, 0, 0, 0.39) 100%)\",borderBottomLeftRadius:0,borderBottomRightRadius:0},variants:{CY1W0rQc5:{borderBottomLeftRadius:0,borderBottomRightRadius:0},O2CEwdnyD:{borderBottomLeftRadius:10,borderBottomRightRadius:10}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uw3a9b\",\"data-framer-name\":\"stack\",layoutDependency:layoutDependency,layoutId:\"gRcdkm57M\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13kbdxb\",layoutDependency:layoutDependency,layoutId:\"OmBF2T5hQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d7ts96\",layoutDependency:layoutDependency,layoutId:\"TDO7XsU1y\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(255, 255, 255))\"},children:\"Vode\u0107a institucija\"})}),className:\"framer-2tf9dt\",\"data-framer-appear-id\":\"2tf9dt\",\"data-framer-name\":\"Designing brands today for tomorrow.\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"GT4pyaXj1\",optimized:true,style:{\"--extracted-gdpscs\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CY1W0rQc5:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",children:\"Vode\u0107a institucija\"})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ifea99\",layoutDependency:layoutDependency,layoutId:\"JOpr6_12W\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",children:\"holisti\u010Dke i\"})}),className:\"framer-jhj0v9\",\"data-framer-appear-id\":\"jhj0v9\",\"data-framer-name\":\"Designing brands today for tomorrow.\",\"data-highlight\":true,fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"MFKbTcJIE\",onTap:onTapdi4leu,optimized:true,style:{\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tqocwm\",layoutDependency:layoutDependency,layoutId:\"U_wj4MhLa\",children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ac30n9\",\"data-styles-preset\":\"NSHp39t7X\",children:\"holisti\u010Dke i funkcionalne tjelovje\u017Ebe.\"})}),className:\"framer-i8k6sp\",\"data-framer-appear-id\":\"i8k6sp\",\"data-framer-name\":\"Designing brands today for tomorrow.\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"nnRvfjww1\",optimized:true,style:{\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CY1W0rQc5:{animate:animation3,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-13f2fhd\",\"data-styles-preset\":\"sA1pdkMlu\",children:\"funkcionalne tjelovje\u017Ebe\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:17,y:(componentViewport?.y||0)+(0+((componentViewport?.height||600)-0-((componentViewport?.height||600)-0)*1)/2)+((componentViewport?.height||600)-0)*1-228.48+45+121.48,...addPropertyOverrides({CY1W0rQc5:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||900)-0-((componentViewport?.height||900)-0)*1)/2)+((componentViewport?.height||900)-0)*1-221.72+0+174.72},O2CEwdnyD:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||600)-15-((componentViewport?.height||600)-15)*1)/2)+((componentViewport?.height||600)-15)*1-208.48+35+121.48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-49oxbq-container\",\"data-framer-appear-id\":\"49oxbq\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"DKNemfgJb-container\",nodeId:\"DKNemfgJb\",optimized:true,rendersWithMotion:true,scopeId:\"GyKJqP2Z6\",style:{transformPerspective:1200},...addPropertyOverrides({CY1W0rQc5:{animate:animation6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(UtilitiesScrollMore,{height:\"100%\",id:\"DKNemfgJb\",layoutId:\"DKNemfgJb\",TWVH1Vrqk:getLocalizedValue(\"v5\",activeLocale)??\"Vi\u0161e o nama\",variant:\"l9jXd55vl\",width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dFnqN.framer-sg1z7c, .framer-dFnqN .framer-sg1z7c { display: block; }\",\".framer-dFnqN.framer-102r04k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-dFnqN .framer-ihis5g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dFnqN .framer-smvxe9-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; z-index: 1; }\",\".framer-dFnqN .framer-1bpk6fc { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 3; }\",\".framer-dFnqN .framer-1uw3a9b { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 45px; position: absolute; width: 100%; z-index: 3; }\",\".framer-dFnqN .framer-13kbdxb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dFnqN .framer-d7ts96, .framer-dFnqN .framer-1ifea99, .framer-dFnqN .framer-tqocwm { 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: min-content; }\",\".framer-dFnqN .framer-2tf9dt, .framer-dFnqN .framer-i8k6sp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dFnqN .framer-jhj0v9 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dFnqN .framer-49oxbq-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dFnqN.framer-102r04k, .framer-dFnqN .framer-ihis5g, .framer-dFnqN .framer-1uw3a9b, .framer-dFnqN .framer-13kbdxb, .framer-dFnqN .framer-d7ts96, .framer-dFnqN .framer-1ifea99, .framer-dFnqN .framer-tqocwm { gap: 0px; } .framer-dFnqN.framer-102r04k > *, .framer-dFnqN .framer-d7ts96 > *, .framer-dFnqN .framer-1ifea99 > *, .framer-dFnqN .framer-tqocwm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dFnqN.framer-102r04k > :first-child, .framer-dFnqN .framer-d7ts96 > :first-child, .framer-dFnqN .framer-1ifea99 > :first-child, .framer-dFnqN .framer-tqocwm > :first-child { margin-left: 0px; } .framer-dFnqN.framer-102r04k > :last-child, .framer-dFnqN .framer-d7ts96 > :last-child, .framer-dFnqN .framer-1ifea99 > :last-child, .framer-dFnqN .framer-tqocwm > :last-child { margin-right: 0px; } .framer-dFnqN .framer-ihis5g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-dFnqN .framer-ihis5g > :first-child, .framer-dFnqN .framer-1uw3a9b > :first-child, .framer-dFnqN .framer-13kbdxb > :first-child { margin-top: 0px; } .framer-dFnqN .framer-ihis5g > :last-child, .framer-dFnqN .framer-1uw3a9b > :last-child, .framer-dFnqN .framer-13kbdxb > :last-child { margin-bottom: 0px; } .framer-dFnqN .framer-1uw3a9b > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-dFnqN .framer-13kbdxb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-dFnqN.framer-v-1tleehh.framer-102r04k { padding: 0px 15px 15px 15px; }\",\".framer-dFnqN.framer-v-1tleehh .framer-ihis5g { order: 0; will-change: var(--framer-will-change-override, transform); }\",\".framer-dFnqN.framer-v-1tleehh .framer-1uw3a9b { padding: 35px; }\",\".framer-dFnqN.framer-v-i2l6lo.framer-102r04k { height: 900px; width: 320px; }\",\".framer-dFnqN.framer-v-i2l6lo .framer-1uw3a9b { padding: 0px 15px 30px 15px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"O2CEwdnyD\":{\"layout\":[\"fixed\",\"fixed\"]},\"CY1W0rQc5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"twBEjiRp1\":\"uRL\",\"Q9MpMF_yE\":\"poster\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGyKJqP2Z6=withCSS(Component,css,\"framer-dFnqN\");export default FramerGyKJqP2Z6;FramerGyKJqP2Z6.displayName=\"About / About Header\";FramerGyKJqP2Z6.defaultProps={height:600,width:1200};addPropertyControls(FramerGyKJqP2Z6,{variant:{options:[\"UhIJ8NjKA\",\"O2CEwdnyD\",\"CY1W0rQc5\"],optionTitles:[\"Header\",\"Header Active\",\"Header Mobile\"],title:\"Variant\",type:ControlType.Enum},twBEjiRp1:{defaultValue:\"https://ena-supply.b-cdn.net/Ora/740047_Woman%20Model%20Projection%20Vj_By_Ira_Belsky_Artlist_HD%20comp.mp4\",placeholder:\"../example.mp4\",title:\"URL\",type:ControlType.String},Q9MpMF_yE:{title:\"Poster\",type:ControlType.ResponsiveImage}});addFonts(FramerGyKJqP2Z6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...VideoFonts,...UtilitiesScrollMoreFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGyKJqP2Z6\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O2CEwdnyD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CY1W0rQc5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"600\",\"framerVariables\":\"{\\\"twBEjiRp1\\\":\\\"uRL\\\",\\\"Q9MpMF_yE\\\":\\\"poster\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Innovation\";export const v1=\"The innovativeness of Body technique stems from its unique approach that:\\n\\n- Merges Western science and Eastern philosophies \u2013 combining contemporary kinesiology research with ancient Eastern methods.\\n\\n- Contributes to scientific knowledge \u2013 not only applying existing findings, but through practice and results, opens new research areas, particularly in the domain of vitality, deep muscles, organic functioning, and fascial systems.\\n\\n- Adapts training to the actual needs of the individual \u2013 instead of universal protocols, it relies on precise body observations, recognizing when and to what extent the body is out of balance, and individually adjusts the intensity and extent of each exercise.\\n\\n- Works in harmony with the body's natural laws \u2013 avoids forced and isolated movement patterns because our modern body has forgotten the potential it possesses, instead utilizing natural principles to make movement effective, safe, and sustainable.\\n\\n- Connects physical, emotional, mental, and energetic balance \u2013 focusing not only on physical performance but also on the neurological and energetic aspects of movement, achieving holistic well-being.\\n\\n- This combination makes Body tehnika a revolutionary system that not only enhances exercise for modern living but also changes the paradigm of working with the body in a scientifically grounded, yet intuitive way.\";export const v2=\"Research\";export const v3=\"Body technique represents an innovative and interdisciplinary approach to the study of movement, connecting kinesiology, medicine, psychology, and holistic systems to deepen the understanding of its impact on the body, mind, and energy processes. Body tehnika, through its interdisciplinary actions, not only enhances quality of life but also actively contributes to scientific research on the integration of body, mind, and energy through movement. A team of specialists and Body technique instructors, guided by the mentoring work of its innovator, continually opens new horizons in bodywork. Through research and development, they continually advance measurement methods, introduce innovative tools, and develop specific approaches for different ailments, populations, and physiological processes. This dynamic process, woven into 25 years of work, allows the system to constantly evolve, ensuring an individualized, safe, and scientifically grounded approach that pushes the boundaries of physical awareness and functionality.\\n\\nJoin the research and be part of the evolution of conscious movement!\";export const v4=\"Implementation\";export const v5='The goal of implementing Body technique is to enhance understanding and application of holistic kinesiology that connects body, mind, and energetic processes. Over 25 years of development, Body tehnika has become a platform for integrating scientific insights with a holistic approach, providing users with powerful tools to achieve balance, vitality, and optimal health.\\n\\nThis innovative approach has been implemented in various books, manuals, and scientific works, with specific examples including:\\n\\n\"Body technique: A Unique Exercise Method\" (2006) \u2013 This book implements the core principles of Body tehnika, explaining how the methodology of these exercises impacts body balance, improves posture, and boosts vitality through the integration of breathing, movement, and concentration.\\n\\nThe series \"Body technique for a Perfect Body\" (2010) \u2013 This series of manuals implements specific Body technique exercises for body shaping, focusing on strengthening abdominal muscles, sculpting legs and buttocks. It employs a holistic approach to body shaping, which includes mindfulness in exercise.\\n\\n\"Body technique \u2013 Learn to Listen to Your Body\" (2019) \u2013 This book implements the concept of recognizing and listening to body signals, leading to better health and longevity. The foundational principle of Body technique, \"listening to the body,\" enables users to recognize when the body is in homeostasis and how they can address various needs, from pelvic floor work, spine, stress release, better breathing, and lymph activation.\\n\\n\"Body technique\u2013 Introduction to a Unique Method of Exercise for All Generations\" (2021) \u2013 This e-manual implements Body tehnika as a methodology applicable to all generations. It covers fundamental exercises and techniques that help improve flexibility, balance, and strength in people of all ages.\\n\\n\"Vitality: The Life Force that Drives You\" (2024) \u2013 This book implements the concept of vitality in the context of Body technique, analyzing how properly aligned movements can activate internal energy processes in the body and improve quality of life.\\n\\n1. Jagodi\u0107 Rukavina, A.-M., Mavrin, M., Vu\u010Deti\u0107, V. (2002). Specificities and differences in heart rate values related to the Pilates and medical yoga classes. In: 3rd International Scientific Conference \u201CKinesiology - New Perspective\u201D : proceedings book / Milanovi\u0107, D., Prot, F. (eds.), 419\u2013423.\\n2. Jagodi\u0107 Rukavina, A.-M. (2004). Methodology of individual and group work of Pilates exercises. Unpublished Master\u2019s thesis. Faculty of Physical Culture, University of Zagreb, Zagreb.\\n3. Jagodi\u0107 Rukavina, A.-M. (2005). Interpretation of exercise intensity in classical Pilates and Pilates Body technique. In: 4th International Scientific Conference on Kinesiology \u201CScience and Profession - Challenge for the Future\u201D. Zagreb: Faculty of Kinesiology, Zagreb, 285\u2013289.\\n4. Jagodi\u0107 Rukavina, A.-M. (2006). Body technique: A Unique Exercise Method. Zagreb: Planetopija.\\n5. Jagodi\u0107 Rukavina, A.-M. (2010). Body tehnikom do savr\u0161enog tijela 01: Exercises for a Flat and Irresistible Abdomen. 24sata.\\n6. Jagodi\u0107 Rukavina, A.-M. (2010). Body tehnikom do savr\u0161enog tijela 02: Exercises for Attractive and Slim Legs. 24sata.\\n7. Jagodi\u0107 Rukavina, A.-M. (2010). Body tehnikom do savr\u0161enog tijela 03: Exercises for a Firm Buttocks. 24sata.\\n8. Furjan-Mandi\u0107, G., Begonja, A., Jagodi\u0107 Rukavina A.-M. (2017). Impact of Body technique in physiotherapy process on increased patient mobility with cervicobrachial syndrome. In: International Scientific Conference Effects of Physical Activity Application to Anthropological Status with Children, Youth and Adults: Conference Proceedings / Savovi\u0107, B., Mandi\u0107, R., Radenovi\u0107, S. (eds.), 281\u2013287.\\n9. Furjan-Mandi\u0107, G., Begonja, A.; Jagodi\u0107 Rukavina, A.-M.; Rada\u0161, J. (2017). Differences in foot and leg flexibility and balance between trainees of classical Pilates and Body technique. In: International Scientific Conference Effects of Applying Physical Activity on Anthropological Status of Children, Adolescents and Adults. Belgrade, Serbia, 49\u201352.\\n10. Jagodi\u0107 Rukavina, A.-M. (2019). Body technique - Learn to Listen to Your Body. Zagreb: PBS Center of Sports Excellence Ltd.\\n11. Jagodi\u0107 Rukavina, A.-M. (2021). The Body technique \u2013 Introduction to a Unique Workout Method for All Generations. Ebook. PBS Center of Sports Excellence Ltd.\\n12. Luli\u0107-Karapetri\u0107, LJ., Jagodi\u0107 Rukavina, A.-M. (2021). It\\'s No Longer a Secret. Brochure with Exercises to Strengthen Pelvic Floor Muscles. Zagreb: PBS Center of Sports Excellence.\\n13. Luli\u0107-Karapetri\u0107, LJ., Jagodi\u0107 Rukavina, A.-M. (2022). It\\'s No Longer a Secret. Brochure with Exercises to Strengthen Pelvic Floor Muscles, Re-Issue [Online]. Zagreb: PBS Center of Sports Excellence. Available at: https://tena-images.essity.com/images-c5/88/395088/original/body-tehnika-exercises-for-strengthening-pelvic-floor-muscles-tena.pdf\\n14. Jagodi\u0107 Rukavina, A.-M. (2022). Differences between Body tehnika and some other sports and recreational programs in health effects shown through motor abilities. In: Kinesiology in Europe; Challenges of Change: Proceedings. 30th Summer School of Kinesiologists of the Republic of Croatia, 29th June \u2013 2nd July 2022, Zadar, 1516\u20131525. Available at: https://www.hrks.hr/ljetna-skola/zborniciradova/197-proceedings-30-summer-school-2022.\\n15. Jagodi\u0107 Rukavina, A.-M., Nemet Petra\u010Di\u0107, M. (2022). Acute effects of 7 Body tehnika exercises on self-assessment of selected vitality indicators. In: Kinesiology in Europe; Challenges of Change: Proceedings. 30th Summer School of Kinesiologists of the Republic of Croatia, 29th June \u2013 2nd July 2022, Zadar, 1526\u20131535. Available at: https://www.hrks.hr/ljetna-skola/zborniciradova/197-proceedings-30-summer-school-2022.\\n16. Jagodi\u0107 Rukavina, A.-M., Nemet Petra\u010Di\u0107, M. (2023). Validation of the Croatian version of the subjective vitality scale questionnaire (SVS - HR). Croatian Sports Medicine Journal, 37(2), 113\u2013118.\\n17. \u0160imanovi\u0107, K., Jagodi\u0107 Rukavina, A.-M. (2023). Influence of specific preventive Body technique exercises on the functionality of the cardiovascular and respiratory systems under demanding training loads. In: International Congress \u201C15th \u0160tampar Days\u201D Pleternica, Croatia 5th - 7th May 2023. Andrija \u0160tampar Health Association. [Book of Abstracts]\\n18. Jagodi\u0107 Rukavina, A.-M. (2024). Vitality: The Life Force that Moves You. Zagreb: PBS Center of Sports Excellence.\\n19. Jagodi\u0107 Rukavina, A.-M., Andrija\u0161evi\u0107, M., Banai, B., Skelin, A., Pavi\u010Di\u0107 Baldani, D., Kalafati\u0107, D. (2024). The impact of a single \u201CBody technique vitality protocol\u201D treatment on vitality restoration: a randomized trial in urban women. Acta Kinesiologica. 18(2), 77\u201386.\\n20. Jagodi\u0107 Rukavina, A.-M., Raos, D., Rada\u0161, J., Furjan-Mandi\u0107, G., Zaletel, P. (2024). Elevating athletic performance: The Body technique protocol\\'s effect on vitality and respiratory wellness. Kinesiologia Slovenica, 30(2), 56\u201370.\\n21. Jagodi\u0107 Rukavina, A.-M., \u0160imanovi\u0107, K. (2024). \u201CHealth Improvement Intervention at the Workplace: Analysis of the Perception of Body technique as a Physical Activity within the Work Environment\u201D. In: Abstracts from the 6th International Scientific Conference on Exercise and Quality of Life. BMC Proceedings 18(11). Global Impact of Sport Science: 6th International Scientific Conference, Novi Sad, Serbia, April 11th \u2013 13th 2024. Available at: https://doi.org/10.1186/s12919-024-00297-y\\n\\nThrough these publications, Body technique provides concrete tools for all generations wishing to learn about the body and discover a new relationship with life through the body, from basic exercises for physical enhancement and vitality to scientific research confirming its effectiveness in various health aspects. The implementation of holistic kinesiology through Body technique enables everyone to recognize and apply principles that are essential for long-term preservation of vitality and balance in life.';\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport*as localizedValues from\"./y2aW366zJ-0.js\";const valuesByLocaleId={uUeO_Znc6:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"G17o5Sr6E\",\"KeyWnLI_S\"];const serializationHash=\"framer-UzDh9\";const variantClassNames={G17o5Sr6E:\"framer-v-1cc29hu\",KeyWnLI_S:\"framer-v-5ok06p\"};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 transition2={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Minus:\"KeyWnLI_S\",Plus:\"G17o5Sr6E\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"G17o5Sr6E\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"G17o5Sr6E\",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,...addPropertyOverrides({KeyWnLI_S:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1cc29hu\",className,classNames),\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"G17o5Sr6E\",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:{...style},...addPropertyOverrides({KeyWnLI_S:{\"data-framer-name\":\"Minus\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18gkozr\",layoutDependency:layoutDependency,layoutId:\"PQpUtNJCQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ro21h\",layoutDependency:layoutDependency,layoutId:\"AvC95IURt\",style:{backgroundColor:\"rgb(0, 0, 0)\",rotate:0},variants:{KeyWnLI_S:{rotate:180}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11rmt1n\",layoutDependency:layoutDependency,layoutId:\"ef87vUvh_\",style:{backgroundColor:\"rgb(0, 0, 0)\",rotate:90},variants:{KeyWnLI_S:{rotate:180}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UzDh9.framer-1h0wdea, .framer-UzDh9 .framer-1h0wdea { display: block; }\",\".framer-UzDh9.framer-1cc29hu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 22px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 22px; }\",\".framer-UzDh9 .framer-18gkozr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UzDh9 .framer-ro21h { flex: none; height: 1px; overflow: hidden; position: relative; width: 15px; }\",\".framer-UzDh9 .framer-11rmt1n { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UzDh9.framer-1cc29hu, .framer-UzDh9 .framer-18gkozr { gap: 0px; } .framer-UzDh9.framer-1cc29hu > *, .framer-UzDh9 .framer-18gkozr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UzDh9.framer-1cc29hu > :first-child, .framer-UzDh9 .framer-18gkozr > :first-child { margin-left: 0px; } .framer-UzDh9.framer-1cc29hu > :last-child, .framer-UzDh9 .framer-18gkozr > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 22\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KeyWnLI_S\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG2PcQjA9C=withCSS(Component,css,\"framer-UzDh9\");export default FramerG2PcQjA9C;FramerG2PcQjA9C.displayName=\"Accordion / Accordion plus\";FramerG2PcQjA9C.defaultProps={height:22,width:22};addPropertyControls(FramerG2PcQjA9C,{variant:{options:[\"G17o5Sr6E\",\"KeyWnLI_S\"],optionTitles:[\"Plus\",\"Minus\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerG2PcQjA9C,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG2PcQjA9C\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KeyWnLI_S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"22\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"22\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G2PcQjA9C.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/xXA2q59L1vL2ErLvS4rF/s5fZkRVWYNI9ZERL1oSL/rWBnQ01qE.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/FpgeBqxKP3U05gfxSELd/qfRZVd2WQbbXXCyxz8HH/xxobpGKc2.js\";import AccordionAccordionPlus from\"https://framerusercontent.com/modules/wXgIV6x963c27fYzuQfn/rwKY4DI2U9eSvIEROaNp/G2PcQjA9C.js\";const AccordionAccordionPlusFonts=getFonts(AccordionAccordionPlus);const enabledGestures={OUeYHcKWQ:{hover:true}};const cycleOrder=[\"OUeYHcKWQ\",\"mmF4yyMK8\",\"eKFjHFTvK\",\"XBNQ5qCBP\",\"k0Zzq91kB\",\"GyuKgksKB\"];const serializationHash=\"framer-b7Cxa\";const variantClassNames={eKFjHFTvK:\"framer-v-1bamxmb\",GyuKgksKB:\"framer-v-pn4avj\",k0Zzq91kB:\"framer-v-623g2l\",mmF4yyMK8:\"framer-v-191iv29\",OUeYHcKWQ:\"framer-v-1o0e764\",XBNQ5qCBP:\"framer-v-cibicv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop -  Closed\":\"OUeYHcKWQ\",\"Desktop - Open\":\"GyuKgksKB\",\"Mobile - Closed\":\"XBNQ5qCBP\",\"Mobile - Open\":\"k0Zzq91kB\",\"Tablet - Closed\":\"mmF4yyMK8\",\"Tablet - Open\":\"eKFjHFTvK\"};const getProps=({height,id,number,paragraph,title,width,...props})=>{return{...props,h1ZthYPRp:number??props.h1ZthYPRp??\"01\",T8rQFvSBR:paragraph??props.T8rQFvSBR??\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"OUeYHcKWQ\",W88zB8mIG:title??props.W88zB8mIG??\"Art Direction\"};};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,W88zB8mIG,T8rQFvSBR,h1ZthYPRp,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OUeYHcKWQ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1u83njm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"eKFjHFTvK\");});const onTapwtfasj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"mmF4yyMK8\");});const onTap1tceenb=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"k0Zzq91kB\");});const onTapkeboek=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"XBNQ5qCBP\");});const onTap1jfs64k=activeVariantCallback(async(...args)=>{setVariant(\"GyuKgksKB\");});const onTap65t8tl=activeVariantCallback(async(...args)=>{setVariant(\"eKFjHFTvK\");});const onTap18iix5v=activeVariantCallback(async(...args)=>{setVariant(\"mmF4yyMK8\");});const onTap1jfzh66=activeVariantCallback(async(...args)=>{setVariant(\"k0Zzq91kB\");});const onTapz3k2f4=activeVariantCallback(async(...args)=>{setVariant(\"XBNQ5qCBP\");});const onTapgmkdcg=activeVariantCallback(async(...args)=>{setVariant(\"OUeYHcKWQ\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1o0e764\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop -  Closed\",layoutDependency:layoutDependency,layoutId:\"OUeYHcKWQ\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.2)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({\"OUeYHcKWQ-hover\":{\"data-framer-name\":undefined},eKFjHFTvK:{\"data-framer-name\":\"Tablet - Open\",\"data-highlight\":true,onTap:onTapwtfasj},GyuKgksKB:{\"data-framer-name\":\"Desktop - Open\"},k0Zzq91kB:{\"data-framer-name\":\"Mobile - Open\",\"data-highlight\":true,onTap:onTapkeboek},mmF4yyMK8:{\"data-framer-name\":\"Tablet - Closed\",\"data-highlight\":true,onTap:onTap1u83njm},XBNQ5qCBP:{\"data-framer-name\":\"Mobile - Closed\",\"data-highlight\":true,onTap:onTap1tceenb}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ee1f8h\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UCRnaMxM_\",onTap:onTap1jfs64k,...addPropertyOverrides({eKFjHFTvK:{onTap:onTap18iix5v},GyuKgksKB:{onTap:onTapgmkdcg},k0Zzq91kB:{onTap:onTapz3k2f4},mmF4yyMK8:{onTap:onTap65t8tl},XBNQ5qCBP:{onTap:onTap1jfzh66}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-41olmt\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"RulvIcv0u\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nid3ne\",\"data-styles-preset\":\"rWBnQ01qE\",style:{\"--framer-text-alignment\":\"left\"},children:\"01\"})}),className:\"framer-2986qs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xqLYjL1Ik\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.4},text:h1ZthYPRp,variants:{\"OUeYHcKWQ-hover\":{opacity:1},eKFjHFTvK:{opacity:1},GyuKgksKB:{opacity:1},k0Zzq91kB:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-nid3ne\",\"data-styles-preset\":\"rWBnQ01qE\",style:{\"--framer-text-alignment\":\"left\"},children:\"Art Direction\"})}),className:\"framer-a96rl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FcSkR7tng\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"22px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yboem3-container\",layoutDependency:layoutDependency,layoutId:\"PuO7ZA4Ty-container\",style:{opacity:.4},children:/*#__PURE__*/_jsx(AccordionAccordionPlus,{height:\"100%\",id:\"PuO7ZA4Ty\",layoutId:\"PuO7ZA4Ty\",style:{height:\"100%\",width:\"100%\"},variant:\"G17o5Sr6E\",width:\"100%\",...addPropertyOverrides({eKFjHFTvK:{variant:\"KeyWnLI_S\"},GyuKgksKB:{variant:\"KeyWnLI_S\"},k0Zzq91kB:{variant:\"KeyWnLI_S\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sjqlwn\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"H7KWdGZXC\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tant9h\",\"data-framer-name\":\"Spacer\",layoutDependency:layoutDependency,layoutId:\"SwEOrlBcm\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-opttsd\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"l4p7q2Amp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\"})}),className:\"framer-1cowc6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"by6uq9KNS\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:T8rQFvSBR,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b7Cxa.framer-wz17gf, .framer-b7Cxa .framer-wz17gf { display: block; }\",\".framer-b7Cxa.framer-1o0e764 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 61px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-b7Cxa .framer-ee1f8h { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 15px 0px; position: relative; user-select: none; width: 100%; }\",\".framer-b7Cxa .framer-41olmt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-b7Cxa .framer-2986qs { flex: 0.2 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-b7Cxa .framer-a96rl { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-b7Cxa .framer-1yboem3-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-b7Cxa .framer-1sjqlwn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-b7Cxa .framer-1tant9h { flex: 0.2 0 0px; height: 26px; overflow: hidden; position: relative; width: 1px; }\",\".framer-b7Cxa .framer-opttsd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 15px 0px; position: relative; width: 1px; }\",\".framer-b7Cxa .framer-1cowc6 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b7Cxa.framer-1o0e764, .framer-b7Cxa .framer-ee1f8h, .framer-b7Cxa .framer-41olmt, .framer-b7Cxa .framer-1sjqlwn, .framer-b7Cxa .framer-opttsd { gap: 0px; } .framer-b7Cxa.framer-1o0e764 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-b7Cxa.framer-1o0e764 > :first-child, .framer-b7Cxa .framer-opttsd > :first-child { margin-top: 0px; } .framer-b7Cxa.framer-1o0e764 > :last-child, .framer-b7Cxa .framer-opttsd > :last-child { margin-bottom: 0px; } .framer-b7Cxa .framer-ee1f8h > *, .framer-b7Cxa .framer-41olmt > *, .framer-b7Cxa .framer-1sjqlwn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-b7Cxa .framer-ee1f8h > :first-child, .framer-b7Cxa .framer-41olmt > :first-child, .framer-b7Cxa .framer-1sjqlwn > :first-child { margin-left: 0px; } .framer-b7Cxa .framer-ee1f8h > :last-child, .framer-b7Cxa .framer-41olmt > :last-child, .framer-b7Cxa .framer-1sjqlwn > :last-child { margin-right: 0px; } .framer-b7Cxa .framer-opttsd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-b7Cxa.framer-v-191iv29 .framer-1cowc6, .framer-b7Cxa.framer-v-1bamxmb .framer-1cowc6, .framer-b7Cxa.framer-v-cibicv .framer-1cowc6, .framer-b7Cxa.framer-v-623g2l .framer-1cowc6 { width: 90%; }\",\".framer-b7Cxa.framer-v-1bamxmb.framer-1o0e764 { height: min-content; }\",\".framer-b7Cxa.framer-v-1bamxmb .framer-opttsd { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b7Cxa.framer-v-1bamxmb .framer-opttsd { gap: 0px; } .framer-b7Cxa.framer-v-1bamxmb .framer-opttsd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-b7Cxa.framer-v-1bamxmb .framer-opttsd > :first-child { margin-top: 0px; } .framer-b7Cxa.framer-v-1bamxmb .framer-opttsd > :last-child { margin-bottom: 0px; } }\",\".framer-b7Cxa.framer-v-cibicv.framer-1o0e764 { height: 57px; width: 390px; }\",\".framer-b7Cxa.framer-v-623g2l.framer-1o0e764 { height: min-content; padding: 0px 0px 20px 0px; width: 390px; }\",\".framer-b7Cxa.framer-v-pn4avj.framer-1o0e764 { cursor: unset; height: min-content; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-b7Cxa[data-border=\"true\"]::after, .framer-b7Cxa [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 61\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"mmF4yyMK8\":{\"layout\":[\"fixed\",\"fixed\"]},\"eKFjHFTvK\":{\"layout\":[\"fixed\",\"auto\"]},\"XBNQ5qCBP\":{\"layout\":[\"fixed\",\"fixed\"]},\"k0Zzq91kB\":{\"layout\":[\"fixed\",\"auto\"]},\"GyuKgksKB\":{\"layout\":[\"fixed\",\"auto\"]},\"wWYqwg9lu\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"title\",\"T8rQFvSBR\":\"paragraph\",\"h1ZthYPRp\":\"number\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereIuM0M4EB=withCSS(Component,css,\"framer-b7Cxa\");export default FramereIuM0M4EB;FramereIuM0M4EB.displayName=\"Accordion / Accordion Row\";FramereIuM0M4EB.defaultProps={height:61,width:600};addPropertyControls(FramereIuM0M4EB,{variant:{options:[\"OUeYHcKWQ\",\"mmF4yyMK8\",\"eKFjHFTvK\",\"XBNQ5qCBP\",\"k0Zzq91kB\",\"GyuKgksKB\"],optionTitles:[\"Desktop -  Closed\",\"Tablet - Closed\",\"Tablet - Open\",\"Mobile - Closed\",\"Mobile - Open\",\"Desktop - Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Art Direction\",displayTextArea:true,title:\"Title\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",displayTextArea:true,title:\"Paragraph\",type:ControlType.String},h1ZthYPRp:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String}});addFonts(FramereIuM0M4EB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...AccordionAccordionPlusFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereIuM0M4EB\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"title\\\",\\\"T8rQFvSBR\\\":\\\"paragraph\\\",\\\"h1ZthYPRp\\\":\\\"number\\\"}\",\"framerIntrinsicHeight\":\"61\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mmF4yyMK8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eKFjHFTvK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XBNQ5qCBP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k0Zzq91kB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GyuKgksKB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wWYqwg9lu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/ZbWSm0LQxJuc1g0IV9cD/FHkWUkkTTtOtQMmMeWQK/y2aW366zJ.js\";import AccordionAccordionRow from\"https://framerusercontent.com/modules/hA20zyetYO7uCLelM1Dx/01H7GNOasSbbtwZ7APEE/eIuM0M4EB.js\";const AccordionAccordionRowFonts=getFonts(AccordionAccordionRow);const cycleOrder=[\"xg9ucDTK2\",\"mUInUr0Cu\",\"dMgW5If7b\"];const serializationHash=\"framer-OFbcC\";const variantClassNames={dMgW5If7b:\"framer-v-13rmgic\",mUInUr0Cu:\"framer-v-1hnp2bp\",xg9ucDTK2:\"framer-v-1txrvcx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.16,1,.3,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"FAQ Mobile\":\"dMgW5If7b\",\"FAQ Tablet\":\"mUInUr0Cu\",FAQ:\"xg9ucDTK2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"xg9ucDTK2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xg9ucDTK2\",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-1txrvcx\",className,classNames),\"data-framer-name\":\"FAQ\",layoutDependency:layoutDependency,layoutId:\"xg9ucDTK2\",ref:refBinding,style:{...style},...addPropertyOverrides({dMgW5If7b:{\"data-framer-name\":\"FAQ Mobile\"},mUInUr0Cu:{\"data-framer-name\":\"FAQ Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zvaaiw-container\",\"data-framer-name\":\"Accordion Row\",layoutDependency:layoutDependency,layoutId:\"IzO0LZjyG-container\",name:\"Accordion Row\",nodeId:\"IzO0LZjyG\",rendersWithMotion:true,scopeId:\"y2aW366zJ\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{h1ZthYPRp:\"01\",height:\"100%\",id:\"IzO0LZjyG\",layoutId:\"IzO0LZjyG\",name:\"Accordion Row\",style:{width:\"100%\"},T8rQFvSBR:getLocalizedValue(\"v1\",activeLocale)??\"Inovativnost Body tehnike proizlazi iz njezinog jedinstvenog pristupa koji:\\n\\n- Spaja znanost Zapada i filozofije Istoka \u2013 kombinira suvremena kineziolo\u0161ka istra\u017Eivanja s drevnim isto\u010Dnja\u010Dkim metodama. \\n\\n- Doprinosi znanstvenim spoznajama \u2013 ne samo da primjenjuje postoje\u0107a, ve\u0107 kroz praksu i rezultate otvara nova podru\u010Dja istra\u017Eivanja, posebno u domeni vitalnosti, dubokih mi\u0161i\u0107a, organskog funkcioniranja i fascijalnih sustava.\\n\\n- Prilago\u0111ava vje\u017Ebanje stvarnim potrebama pojedinca \u2013 umjesto univerzalnih protokola, temelji se na preciznom opa\u017Eanju tijela, prepoznaju\u0107i kada i koliko je tijelo iza\u0161lo iz balansa te individualno prilago\u0111ava intenzitet i ekstenzitet svake vje\u017Ebe.\\n\\n- Radi u skladu s prirodnim zakonima tijela \u2013 ne forsira umjetne i izolirane obrasce kretanja jer je na\u0161e tijelo modernog doba zaboravilo potencijale kojeg posjeduje, ve\u0107 koristi prirodne principe kako bi pokret bio u\u010Dinkovit, siguran i odr\u017Eiv.\\n\\n- Povezuje tjelesnu, emocionalnu, mentalnu i energetsku ravnote\u017Eu \u2013 ne fokusira se samo na fizi\u010Dku izvedbu, ve\u0107 i na neurolo\u0161ke i energetske aspekte pokreta, \u010Dime se posti\u017Ee cjelovita dobrobit.\\n\\n- Ova kombinacija \u010Dini Body tehniku revolucionarnim sustavom koji ne samo da unapre\u0111uje tjelovje\u017Ebu modernog doba \u017Eivljenja, ve\u0107 i mijenja paradigmu pristupa radu s tijelom na znanstveno utemeljen, ali intuitivan na\u010Din.\",variant:\"OUeYHcKWQ\",W88zB8mIG:getLocalizedValue(\"v0\",activeLocale)??\"Inovativnost\",width:\"100%\",...addPropertyOverrides({dMgW5If7b:{variant:\"XBNQ5qCBP\"},mUInUr0Cu:{variant:\"mmF4yyMK8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+61,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mrukm3-container\",layoutDependency:layoutDependency,layoutId:\"oIl2_gvhp-container\",nodeId:\"oIl2_gvhp\",rendersWithMotion:true,scopeId:\"y2aW366zJ\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{h1ZthYPRp:\"02\",height:\"100%\",id:\"oIl2_gvhp\",layoutId:\"oIl2_gvhp\",style:{width:\"100%\"},T8rQFvSBR:getLocalizedValue(\"v3\",activeLocale)??\"Body tehnika predstavlja inovativan i interdisciplinaran pristup istra\u017Eivanju pokreta, povezuju\u0107i kineziologiju, medicinu, psihologiju i holisti\u010Dke sustave kako bi produbila razumijevanje njegovog utjecaja na tijelo, um i energetske procese. Body tehnika svojim interdisciplinarnim djelovanjem ne samo da pobolj\u0161ava kvalitetu \u017Eivota, ve\u0107 aktivno doprinosi znanstvenim istra\u017Eivanjima o integraciji tijela, uma i energije kroz pokret. Tim stru\u010Dnjaka i specijalista Body tehnike, uz mentorski rad njezine inovatorice, neprestano otvara nove horizonte u radu s tijelom. Kroz istra\u017Eivanje i razvoj, kontinuirano unapre\u0111uju metode mjerenja, uvode inovativne rekvizite te razvijaju specifi\u010Dne pristupe za razli\u010Dite tegobe, populacije i fiziolo\u0161ke procese. Ovaj dinami\u010Dan proces, utkan u 25 godina rada, omogu\u0107uje stalnu evoluciju sustava, osiguravaju\u0107i individualiziran, siguran i znanstveno utemeljen pristup koji pomi\u010De granice tjelesne svijesti i funkcionalnosti.\\n\\nPridru\u017Eite se istra\u017Eivanju i budite dio evolucije svjesnog pokreta!\",variant:\"OUeYHcKWQ\",W88zB8mIG:getLocalizedValue(\"v2\",activeLocale)??\"Istra\u017Eivanje\",width:\"100%\",...addPropertyOverrides({dMgW5If7b:{variant:\"XBNQ5qCBP\"},mUInUr0Cu:{variant:\"mmF4yyMK8\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+122,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jvj3kh-container\",layoutDependency:layoutDependency,layoutId:\"cqPnO3m30-container\",nodeId:\"cqPnO3m30\",rendersWithMotion:true,scopeId:\"y2aW366zJ\",children:/*#__PURE__*/_jsx(AccordionAccordionRow,{h1ZthYPRp:\"03\",height:\"100%\",id:\"cqPnO3m30\",layoutId:\"cqPnO3m30\",style:{width:\"100%\"},T8rQFvSBR:getLocalizedValue(\"v5\",activeLocale)??'Cilj implementacije Body tehnike je unaprijediti razumijevanje i primjenu holisti\u010Dke kineziologije koja spaja tijelo, um i energetske procese. Kroz 25 godina razvoja, Body tehnika postala je platforma za integraciju znanstvenih spoznaja s holisti\u010Dkim pristupom, pru\u017Eaju\u0107i korisnicima u\u010Dinkovite alate za postizanje ravnote\u017Ee, vitalnosti i optimalnog zdravlja.\\n\\nOvaj inovativni pristup implementiran je u razli\u010Dite knjige, priru\u010Dnike i znanstvene radove, a konkretni primjeri uklju\u010Duju:\\n\\n\"Body tehnika: Jedinstven na\u010Din vje\u017Ebanja\" (2006.) \u2013 ova knjiga implementira osnovne principe Body tehnike, obja\u0161njavaju\u0107i kako metodologija tih vje\u017Ebi utje\u010De na ravnote\u017Eu tijela, pobolj\u0161ava posturu i pove\u0107ava vitalnost kroz integraciju disanja, pokreta i koncentracije.\\n\\nSerija \"Body tehnika za savr\u0161eno tijelo\" (2010.) \u2013 ova serija priru\u010Dnika implementira specifi\u010Dne vje\u017Ebe Body tehnike za oblikovanje tijela, s naglaskom na ja\u010Danje trbu\u0161nih mi\u0161i\u0107a, oblikovanje nogu i stra\u017Enjice. Ovdje se koristi holisti\u010Dki pristup za oblikovanje tijela, koji uklju\u010Duje svjesnost u vje\u017Ebanju.\\n\\n\"Body tehnika \u2013 Nau\u010Dite slu\u0161ati svoje tijelo\" (2019.) \u2013 ova knjiga implementira koncept prepoznavanja i slu\u0161anja signala tijela, \u0161to dovodi do boljeg zdravlja i dugovje\u010Dnosti. Temeljni princip Body tehnike, \"slu\u0161anje tijela\", omogu\u0107uje korisnicima prepoznati kada je tijelo u homeostazi i kako mogu pristupiti razli\u010Ditim potrebama od rada na zdjeli\u010Dnom dnu, kralje\u017Enici, otpu\u0161tanju stresa, pravilnijeg disanja i aktiviranja limfe.\\n\\n\"Body tehnika\u2013 Uvod u jedinstvenu metodu vje\u017Ebanja za sve generacije\" (2021.) \u2013 Ovaj e-priru\u010Dnik implementira Body tehniku kao metodologiju koja je primjenjiva na sve generacije. Obra\u0111uje temeljne vje\u017Ebe i tehnike koje poma\u017Eu u pobolj\u0161anju fleksibilnosti, ravnote\u017Ee i snage kod ljudi svih dobi.\\n\\n\"Vitalnost: \u017Divotna sila koja vas pokre\u0107e\" (2024.) \u2013 Ova knjiga implementira pojam vitalnosti u kontekstu Body tehnike, analiziraju\u0107i kako pravilno uskla\u0111eni pokreti mogu aktivirati unutarnje energetske procese u tijelu i pobolj\u0161ati kvalitetu \u017Eivota.\\n\\n1. Jagodi\u0107 Rukavina, A.-M., Mavrin, M., Vu\u010Deti\u0107, V . (2002). Specificities and differences in\\nheart rate values related to the pilates and medical yoga classes. U: 3rd International\\nScientific Conference \u201CKinesiology - new perspective\u201D : proceedings book / Milanovi\u0107,\\nD., Prot, F. (ur.), 419\u2013423.\\n2. Jagodi\u0107 Rukavina, A.-M. (2004). Metodika individualnog i grupnog rada pilates\\nvje\u017Ebanja. (Magistarski rad). [Methodology of individual and group work of Pilates\\nexercises. In Croatian. Unpublished Master\u2019s thesis]. Fakultet za fizi\u010Dku kulturu\\nSveu\u010Dili\u0161ta u Zagrebu, Zagreb.\\n3. Jagodi\u0107 Rukavina, A.-M. (2005). Interpretation of exercise intensity in classical pilates\\nand pilates body technique. U: 4th International Scientific Conference on Kinesiology\\n\u201CScience and profession - challenge for the future\u201D. Zagreb: Kineziolo\u0161ki fakultet\\nZagreb, 285\u2013289.\\n4. Jagodi\u0107 Rukavina, A.-M. (2006). Body tehnika : jedinstven na\u010Din tjelovje\u017Ebe. Zagreb :\\nPlanetopija.\\n5. Jagodi\u0107 Rukavina, A.-M. (2010). Body tehnikom do savr\u0161enog tijela 01 : vje\u017Ebe za ravan\\ni neodoljiv trbuh. 24sata.\\n6. Jagodi\u0107 Rukavina, A.-M. (2010). Body tehnikom do savr\u0161enog tijela 02 : vje\u017Ebe za\\nprivla\u010Dne i vitke noge. 24sata.\\n7. Jagodi\u0107 Rukavina, A.-M. (2010). Body tehnikom do savr\u0161enog tijela 03 : vje\u017Ebe za \u010Dvrstu\\nstra\u017Enjicu. 24sata.\\n8. Furjan-Mandi\u0107, G., Begonja, A., Jagodi\u0107 Rukavina A.-M. (2017). Impact of body\\ntechniques in physiotherapy process on increase patients\u2019 mobility with cervicobrachial\\nsyndrome. U: International Scientific Conference Effects of Physical Activity Application\\nto Anthropological Status with Children, Youth and Adults: Conference Proceedings /\\nSavovi\u0107, B., Mandi\u0107, R., Radenovi\u0107, S. (ur.), 281\u2013287.\\n9. Furjan-Mandi\u0107, G., Begonja, A.; Jagodi\u0107 Rukavina, A.-M.; Rada\u0161, J. (2017). Differences\\nin foot and leg flexibility and balance between trainees of classical Pilates and Body\\nTechnique. U: International Scientific Conference Effects of Applying Physical Activity\\non Anthropological Status of Children, Adolescents and Adults. Belgrade, Serbia, 49\u201352.\\n10. Jagodi\u0107 Rukavina, A.-M. (2019). Body tehnika - nau\u010Dite slu\u0161ati svoje tijelo. Zagreb: PBS\\nCentar sportske izvrsnosti d.o.o.\\n11. Jagodi\u0107 Rukavina, A.-M. (2021). The Body Technique \u2013 introduction to a unique workout\\nmethod for all generations. E-book. PBS Centar sportske izvrsnosti d.o.o.\\n12. Luli\u0107-Karapetri\u0107, LJ., Jagodi\u0107 Rukavina, A.-M. (2021). Nije vi\u0161e tajna. Bro\u0161ura s\\nvje\u017Ebama za ja\u010Danje mi\u0161i\u0107a dna zdjelice. Zagreb: PBS centar sportske izvrsnosti.\\n13. Luli\u0107-Karapetri\u0107, LJ., Jagodi\u0107 Rukavina, A.-M. (2022). Nije vi\u0161e tajna. Bro\u0161ura s\\nvje\u017Ebama za ja\u010Danje mi\u0161i\u0107a dna zdjelice, reizdanje [online]. Zagreb: PBS centar sportske\\nizvrsnosti. Dostupno na:\\nhttps://tena-images.essity.com/images-c5/88/395088/original/body-tehnika-vjezbe-za-aca\\nnje-misica-dna-zdjelice-tena.pdf\\n14. Jagodi\u0107 Rukavina, A.-M. (2022). Razlike izme\u0111u Body tehnike i nekih drugih sportskih i\\nrekreativnih programa u zdravstvenim u\u010Dincima prikazanim preko motori\u010Dkih\\nsposobnosti. U: Kineziologija u Europi; Izazovi promjena: Zbornik radova. 30. ljetna\\n\u0161kola kineziologa Republike Hrvatske, 29. lipanj \u2013 2. srpanj 2022., Zadar. 1516\u20131525.\\nDostupno na: https://www.hrks.hr/ljetna-skola/zborniciradova/\\n197-zbornik-radova-30-ljetne-skole-2022.\\n15. Jagodi\u0107 Rukavina, A.-M., Nemet Petra\u010Di\u0107, M. (2022). Akutni u\u010Dinci 7 vje\u017Ebi Body\\ntehnike na samoprocjenu izabranih pokazatelja vitalnosti. U: Kineziologija u Europi;\\nIzazovi promjena: Zbornik radova. 30. ljetna \u0161kola kineziologa Republike Hrvatske, 29.\\nlipanj \u2013 2. srpanj 2022., Zadar. 1526\u20131535. Dostupno na:\\nhttps://www.hrks.hr/ljetna-skola/zborniciradova/197-zbornik-radova-30-ljetne-skole-202\\n2.\\n16. Jagodi\u0107 Rukavina, A.-M., Nemet Petra\u010Di\u0107, M. (2023). Validation of the Croatian version\\nof the subjective vitality scale questionnaire (SVS - HR). Hrvatski \u0161portskomedicinski\\nvjesnik, 37(2), 113\u2013118.\\n17. \u0160imanovi\u0107, K., Jagodi\u0107 Rukavina, A.-M. (2023). Utjecaj specifi\u010Dnih prevencijskih vje\u017Ebi\\nBody tehnike na funkcionalnost krvo\u017Eilnog i respiratornog sustava pri zahtjevnim\\ntrena\u017Enim optere\u0107enjima. U: Me\u0111unarodni kongres \u201C15. \u0160tamparovi dani\u201D Pleternica,\\nHrvatska 5. - 7. svibnja 2023. Udruga narodnog zdravlja Andrija \u0160tampar. [Knji\u017Eica\\nsa\u017Eetaka]\\n18. Jagodi\u0107 Rukavina, A.-M. (2024). Vitalnost: \u017Eivotna sila koja te pokre\u0107e. Zagreb: PBS\\nCentar sportske izvrsnosti.\\n19. Jagodi\u0107 Rukavina, A.-M., Andrija\u0161evi\u0107, M., Banai, B., Skelin, A., Pavi\u010Di\u0107 Baldani, D.,\\nKalafati\u0107, D. (2024). The impact of a single \u201CBody technique vitality protocol\u201D treatment\\non vitality restoration: a randomized trial in urban women. Acta Kinesiologica. 18(2),\\n77\u201386.\\n20. Jagodi\u0107 Rukavina, A.-M., Raos, D., Rada\u0161, J., Furjan-Mandi\u0107, G., Zaletel, P. (2024).\\nElevating athletic performance: the body technique protocol\\'s effect on vitality and\\nrespiratory wellness. Kinesiologia Slovenica, 30(2), 56\u201370.\\n21. Jagodi\u0107 Rukavina, A.-M., \u0160imanovi\u0107, K. (2024). \u201CHealth improvement intervention at\\nthe workplace: Analysis of the perception of body technique as a physical activity within\\nthe work environment\u201D. U: Abstracts from the 6th International Scientific Conference on\\nExercise and Quality of Life. BMC Proceedings 18(11). Global impact of sport science :\\n6th International Scientific Conference, Novi Sad, Serbia, April 11th \u2013 13th 2024.\\nDostupno na: https://doi.org/10.1186/s12919-024-00297-y\\n\\nKroz ove publikacije, Body tehnika nudi konkretne alate za sve generacije koje \u017Eele u\u010Diti o tijelu i kroz tijelo spoznati novi odnos prema \u017Eivotu, od osnovnih vje\u017Ebi za fizi\u010Dko unaprije\u0111enje i vitalnost do znanstvenih istra\u017Eivanja koja potvr\u0111uju njezinu u\u010Dinkovitost u razli\u010Ditim aspektima zdravlja. Implementacija holisti\u010Dke kineziologije kroz Body tehniku omogu\u0107uje svakome da prepozna i primijeni principe koji su klju\u010Dni za dugoro\u010Dno o\u010Duvanje vitalnosti i ravnote\u017Ee u \u017Eivotu.',variant:\"OUeYHcKWQ\",W88zB8mIG:getLocalizedValue(\"v4\",activeLocale)??\"Implementacija\",width:\"100%\",...addPropertyOverrides({dMgW5If7b:{variant:\"XBNQ5qCBP\"},mUInUr0Cu:{variant:\"mmF4yyMK8\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OFbcC.framer-16n4jht, .framer-OFbcC .framer-16n4jht { display: block; }\",\".framer-OFbcC.framer-1txrvcx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-OFbcC .framer-zvaaiw-container, .framer-OFbcC .framer-mrukm3-container, .framer-OFbcC .framer-1jvj3kh-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OFbcC.framer-1txrvcx { gap: 0px; } .framer-OFbcC.framer-1txrvcx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-OFbcC.framer-1txrvcx > :first-child { margin-top: 0px; } .framer-OFbcC.framer-1txrvcx > :last-child { margin-bottom: 0px; } }\",\".framer-OFbcC.framer-v-1hnp2bp.framer-1txrvcx { width: 810px; }\",\".framer-OFbcC.framer-v-13rmgic.framer-1txrvcx { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 183\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mUInUr0Cu\":{\"layout\":[\"fixed\",\"auto\"]},\"dMgW5If7b\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framery2aW366zJ=withCSS(Component,css,\"framer-OFbcC\");export default Framery2aW366zJ;Framery2aW366zJ.displayName=\"Accordion / Accordion\";Framery2aW366zJ.defaultProps={height:183,width:1e3};addPropertyControls(Framery2aW366zJ,{variant:{options:[\"xg9ucDTK2\",\"mUInUr0Cu\",\"dMgW5If7b\"],optionTitles:[\"FAQ\",\"FAQ Tablet\",\"FAQ Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framery2aW366zJ,[{explicitInter:true,fonts:[]},...AccordionAccordionRowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery2aW366zJ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mUInUr0Cu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dMgW5If7b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"183\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "const o=e=>e;let t;var h=e=>(t||(t=o(e.createElement(\"path\",{d:\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z\"}),\"Home\")),t);export{h as default};\n", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useMemo,useRef}from\"react\";import{addPropertyControls,ControlType,motion,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/material-icons/Home.js@0.0.32\";import{defaultEvents,useIconSelection,getIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const moduleBaseUrl=\"https://framer.com/m/material-icons/\";const icons={AcUnit:15,AccessAlarm:15,AccessAlarms:15,AccessTime:15,AccessTimeFilled:0,Accessibility:7,AccessibilityNew:0,Accessible:15,AccessibleForward:0,AccountBalance:2,AccountBalanceWallet:0,AccountBox:15,AccountCircle:7,AccountTree:15,AdUnits:15,Adb:15,Add:15,AddAPhoto:15,AddAlarm:15,AddAlert:15,AddBox:15,AddBusiness:15,AddCircle:15,AddCircleOutline:0,AddComment:15,AddIcCall:15,AddLink:15,AddLocation:15,AddLocationAlt:2,AddModerator:15,AddPhotoAlternate:0,AddReaction:15,AddRoad:15,AddShoppingCart:2,AddTask:15,AddToDrive:15,AddToHomeScreen:2,AddToPhotos:15,AddToQueue:15,Addchart:15,Adjust:15,AdminPanelSettings:0,Agriculture:15,Air:15,AirlineSeatFlat:2,AirplaneTicket:2,AirplanemodeActive:0,AirplanemodeInactive:0,Airplay:15,AirportShuttle:2,Alarm:15,AlarmAdd:15,AlarmOff:15,AlarmOn:15,Album:15,AlignHorizontalLeft:0,AlignHorizontalRight:0,AlignVerticalBottom:0,AlignVerticalCenter:0,AlignVerticalTop:0,AllInbox:15,AllInclusive:15,AllOut:15,AltRoute:15,AlternateEmail:2,Analytics:15,Anchor:15,Android:15,Animation:15,Announcement:15,Aod:15,Apartment:15,Api:15,AppBlocking:15,AppRegistration:2,AppSettingsAlt:2,Apple:0,Approval:15,Apps:15,Architecture:15,Archive:15,ArrowBack:15,ArrowBackIos:15,ArrowBackIosNew:2,ArrowCircleDown:2,ArrowCircleUp:7,ArrowDownward:7,ArrowDropDown:7,ArrowDropDownCircle:0,ArrowDropUp:15,ArrowForward:15,ArrowForwardIos:2,ArrowLeft:15,ArrowRight:15,ArrowRightAlt:7,ArrowUpward:15,ArtTrack:15,Article:15,AspectRatio:15,Assessment:15,Assignment:15,AssignmentInd:7,AssignmentLate:2,AssignmentReturn:0,AssignmentReturned:0,AssignmentTurnedIn:0,Assistant:15,AssistantDirection:0,AssistantPhoto:2,Atm:15,AttachEmail:15,AttachFile:15,AttachMoney:15,Attachment:15,Attractions:15,Attribution:15,Audiotrack:15,AutoAwesome:15,AutoAwesomeMosaic:0,AutoAwesomeMotion:0,AutoDelete:15,AutoFixHigh:15,AutoFixNormal:7,AutoFixOff:15,AutoGraph:15,AutoStories:15,AutofpsSelect:7,Autorenew:15,AvTimer:15,BabyChangingStation:0,Backpack:15,Backspace:15,Backup:15,BackupTable:15,Badge:15,BakeryDining:15,Balcony:15,Ballot:15,BarChart:15,BatchPrediction:2,Bathroom:15,Bathtub:15,Battery20:15,Battery30:15,Battery50:15,Battery60:15,Battery80:15,Battery90:15,BatteryAlert:15,BatteryCharging20:0,BatteryCharging30:0,BatteryCharging50:0,BatteryCharging60:0,BatteryCharging80:0,BatteryCharging90:0,BatteryChargingFull:0,BatteryFull:15,BatterySaver:15,BatteryStd:15,BatteryUnknown:2,BeachAccess:15,Bed:15,BedroomBaby:15,BedroomChild:15,BedroomParent:7,Bedtime:15,Beenhere:15,Bento:15,BikeScooter:15,Biotech:15,Blender:15,Block:15,Bloodtype:15,Bluetooth:15,BluetoothAudio:2,BluetoothConnected:0,BluetoothDisabled:0,BluetoothDrive:2,BluetoothSearching:0,BlurCircular:15,BlurLinear:15,BlurOff:15,BlurOn:15,Bolt:15,Book:15,BookOnline:15,Bookmark:15,BookmarkAdd:15,BookmarkAdded:7,BookmarkBorder:2,BookmarkRemove:2,Bookmarks:15,BorderAll:15,BorderBottom:15,BorderClear:15,BorderColor:15,BorderHorizontal:0,BorderInner:15,BorderLeft:15,BorderOuter:15,BorderRight:15,BorderStyle:15,BorderTop:15,BorderVertical:2,BrandingWatermark:0,BreakfastDining:2,Brightness1:15,Brightness2:15,Brightness3:15,Brightness4:15,Brightness5:15,Brightness6:15,Brightness7:15,BrightnessAuto:2,BrightnessHigh:2,BrightnessLow:7,BrightnessMedium:0,BrokenImage:15,BrowserNotSupported:0,BrunchDining:15,Brush:15,BubbleChart:15,BugReport:15,Build:15,BuildCircle:15,Bungalow:15,BurstMode:15,BusAlert:15,Business:15,BusinessCenter:2,Cabin:15,Cable:15,Cached:15,Cake:15,Calculate:15,CalendarToday:7,CalendarViewDay:2,CalendarViewMonth:0,CalendarViewWeek:0,Call:15,CallEnd:15,CallMade:15,CallMerge:15,CallMissed:15,CallMissedOutgoing:0,CallReceived:15,CallSplit:15,CallToAction:15,Camera:15,CameraAlt:15,CameraEnhance:7,CameraFront:15,CameraIndoor:15,CameraOutdoor:7,CameraRear:15,CameraRoll:15,Cameraswitch:15,Campaign:15,Cancel:15,CancelPresentation:0,CancelScheduleSend:0,CarRental:15,CarRepair:15,CardGiftcard:15,CardMembership:2,CardTravel:15,Carpenter:15,Cases:15,Casino:15,Cast:15,CastConnected:7,CastForEducation:0,CatchingPokemon:2,Category:15,Celebration:15,CellWifi:15,CenterFocusStrong:0,CenterFocusWeak:2,Chair:15,ChairAlt:15,Chalet:15,ChangeCircle:15,ChangeHistory:7,ChargingStation:2,Chat:15,ChatBubble:15,ChatBubbleOutline:0,Check:15,CheckBox:15,CheckBoxOutlineBlank:0,CheckCircle:15,CheckCircleOutline:0,Checkroom:15,ChevronLeft:15,ChevronRight:15,ChildCare:15,ChildFriendly:7,ChromeReaderMode:0,Circle:15,CircleNotifications:0,Class:15,CleanHands:15,CleaningServices:0,Clear:15,ClearAll:15,Close:15,CloseFullscreen:2,ClosedCaption:7,ClosedCaptionOff:0,Cloud:15,CloudCircle:15,CloudDone:15,CloudDownload:7,CloudOff:15,CloudQueue:15,CloudUpload:15,Code:15,CodeOff:15,Coffee:15,CoffeeMaker:15,Collections:15,CollectionsBookmark:0,ColorLens:15,Colorize:15,Comment:15,CommentBank:15,Commute:15,Compare:15,CompareArrows:7,CompassCalibration:0,Compress:15,Computer:15,ConfirmationNumber:0,ConnectedTv:15,Construction:15,ContactMail:15,ContactPage:15,ContactPhone:15,ContactSupport:2,Contactless:15,Contacts:15,ContentCopy:15,ContentCut:15,ContentPaste:15,ContentPasteOff:2,ControlCamera:7,ControlPoint:15,CopyAll:15,Copyright:15,Coronavirus:15,CorporateFare:7,Cottage:15,Countertops:15,Create:15,CreateNewFolder:2,CreditCard:15,CreditCardOff:7,CreditScore:15,Crib:15,Crop:15,Crop169:15,Crop32:15,Crop54:15,Crop75:15,CropDin:15,CropFree:15,CropLandscape:7,CropOriginal:15,CropPortrait:15,CropRotate:15,CropSquare:15,Dangerous:15,DarkMode:15,Dashboard:15,DashboardCustomize:0,DataSaverOff:15,DataSaverOn:15,DataUsage:15,DateRange:15,Deck:15,Dehaze:15,Delete:15,DeleteForever:7,DeleteOutline:7,DeleteSweep:15,DeliveryDining:2,DepartureBoard:2,Description:15,DesignServices:2,DesktopMac:15,DesktopWindows:2,Details:15,DeveloperBoard:2,DeveloperBoardOff:0,DeveloperMode:7,DeviceHub:15,DeviceThermostat:0,DeviceUnknown:7,Devices:15,DevicesOther:15,DialerSip:15,Dialpad:15,Dining:15,DinnerDining:15,Directions:15,DirectionsBike:2,DirectionsBoat:2,DirectionsBoatFilled:0,DirectionsBus:7,DirectionsBusFilled:0,DirectionsCar:7,DirectionsCarFilled:0,DirectionsOff:7,DirectionsRailway:0,DirectionsRun:7,DirectionsSubway:0,DirectionsTransit:0,DirectionsWalk:2,DirtyLens:15,DisabledByDefault:0,DiscFull:15,Dns:15,DoDisturb:15,DoDisturbAlt:15,DoDisturbOff:15,DoDisturbOn:15,DoNotDisturb:15,DoNotDisturbAlt:2,DoNotDisturbOff:2,DoNotDisturbOn:2,DoNotStep:15,DoNotTouch:15,Dock:15,DocumentScanner:2,Domain:15,DomainDisabled:2,DomainVerification:0,Done:15,DoneAll:15,DoneOutline:15,DonutLarge:15,DonutSmall:15,DoorBack:15,DoorFront:15,DoorSliding:15,Doorbell:15,DoubleArrow:15,DownhillSkiing:2,Download:15,DownloadDone:15,DownloadForOffline:0,Downloading:15,Drafts:15,DragHandle:15,DragIndicator:7,DriveEta:15,DriveFileMove:7,DriveFolderUpload:0,Dry:15,DryCleaning:15,Duo:15,Dvr:15,DynamicFeed:15,DynamicForm:15,EMobiledata:15,Earbuds:15,EarbudsBattery:2,East:15,Eco:15,EdgesensorHigh:2,EdgesensorLow:7,Edit:15,EditAttributes:2,EditLocation:15,EditLocationAlt:2,EditNotifications:0,EditOff:15,EditRoad:15,EightK:15,EightKPlus:15,EightMp:15,EightteenMp:15,Eject:15,Elderly:15,ElectricBike:15,ElectricCar:15,ElectricMoped:7,ElectricRickshaw:0,ElectricScooter:2,ElectricalServices:0,Elevator:15,ElevenMp:15,Email:15,EmojiEmotions:7,EmojiEvents:15,EmojiFlags:15,EmojiFoodBeverage:0,EmojiNature:15,EmojiObjects:15,EmojiPeople:15,EmojiSymbols:15,EmojiTransportation:0,Engineering:15,EnhancedEncryption:0,Equalizer:15,Error:15,ErrorOutline:15,Escalator:15,EscalatorWarning:0,Euro:15,EuroSymbol:15,EvStation:15,Event:15,EventAvailable:2,EventBusy:15,EventNote:15,EventSeat:15,ExitToApp:15,Expand:15,ExpandLess:15,ExpandMore:15,Explicit:15,Explore:15,ExploreOff:15,Exposure:15,Extension:15,ExtensionOff:15,Face:15,FaceRetouchingOff:0,Facebook:15,FactCheck:15,FamilyRestroom:2,FastForward:15,FastRewind:15,Fastfood:15,Favorite:15,FavoriteBorder:2,FeaturedPlayList:0,FeaturedVideo:7,Feed:15,Feedback:15,Female:15,Fence:15,Festival:15,FiberDvr:15,FiberManualRecord:0,FiberNew:15,FiberPin:15,FiberSmartRecord:0,FileCopy:15,FileDownload:15,FileDownloadDone:0,FileDownloadOff:2,FilePresent:15,FileUpload:15,Filter:15,Filter1:15,Filter2:15,Filter3:15,Filter4:15,Filter5:15,Filter6:15,Filter7:15,Filter8:15,Filter9:15,Filter9Plus:15,FilterAlt:15,FilterBAndW:15,FilterCenterFocus:0,FilterDrama:15,FilterFrames:15,FilterHdr:15,FilterList:15,FilterNone:15,FilterTiltShift:2,FilterVintage:7,FindInPage:15,FindReplace:15,Fingerprint:15,FireExtinguisher:0,Fireplace:15,FirstPage:15,FitScreen:15,FitnessCenter:7,FiveG:15,FiveK:15,FiveKPlus:15,FiveMp:15,FivteenMp:15,Flag:15,Flaky:15,Flare:15,FlashAuto:15,FlashOff:15,FlashOn:15,FlashlightOff:7,FlashlightOn:15,Flatware:15,Flight:15,FlightLand:15,FlightTakeoff:7,Flip:15,FlipCameraAndroid:0,FlipCameraIos:7,FlipToBack:15,FlipToFront:15,Flourescent:15,FlutterDash:15,FmdBad:15,FmdGood:15,Folder:15,FolderOpen:15,FolderShared:15,FolderSpecial:7,FollowTheSigns:2,FontDownload:15,FontDownloadOff:2,FoodBank:15,FormatAlignCenter:0,FormatAlignJustify:0,FormatAlignLeft:2,FormatAlignRight:0,FormatBold:15,FormatClear:15,FormatColorFill:2,FormatColorReset:0,FormatColorText:2,FormatIndentDecrease:0,FormatIndentIncrease:0,FormatItalic:15,FormatLineSpacing:0,FormatListBulleted:0,FormatListNumbered:0,FormatPaint:15,FormatQuote:15,FormatShapes:15,FormatSize:15,FormatStrikethrough:0,FormatUnderlined:0,Forum:15,Forward:15,Forward10:15,Forward30:15,Forward5:15,ForwardToInbox:2,Foundation:15,FourGMobiledata:2,FourGPlusMobiledata:0,FourK:15,FourKPlus:15,FourMp:15,FourteenMp:15,FreeBreakfast:7,Fullscreen:15,FullscreenExit:2,Functions:15,GMobiledata:15,GTranslate:15,Gamepad:15,Games:15,Garage:15,Gavel:15,Gesture:15,GetApp:15,Gif:15,GitHub:0,Gite:15,GolfCourse:15,Google:0,GppBad:15,GppGood:15,GppMaybe:15,GpsFixed:15,GpsNotFixed:15,GpsOff:15,Grade:15,Gradient:15,Grading:15,Grain:15,GraphicEq:15,Grass:15,Grid3x3:15,Grid4x4:15,GridGoldenratio:2,GridOff:15,GridOn:15,GridView:15,Group:15,GroupAdd:15,GroupWork:15,Groups:15,HMobiledata:15,HPlusMobiledata:2,Hail:15,Handyman:15,Hardware:15,Hd:15,HdrAuto:15,HdrAutoSelect:7,HdrEnhancedSelect:0,HdrOff:15,HdrOffSelect:15,HdrOn:15,HdrOnSelect:15,HdrPlus:15,HdrStrong:15,HdrWeak:15,Headphones:15,HeadphonesBattery:0,Headset:15,HeadsetMic:15,HeadsetOff:15,Healing:15,HealthAndSafety:2,Hearing:15,HearingDisabled:2,Height:15,Help:15,HelpCenter:15,HelpOutline:15,Hevc:15,HideImage:15,HideSource:15,HighQuality:15,Highlight:15,HighlightAlt:15,HighlightOff:15,Hiking:15,History:15,HistoryEdu:15,HistoryToggleOff:0,HolidayVillage:2,Home:15,HomeMax:15,HomeMini:15,HomeRepairService:0,HomeWork:15,HorizontalRule:2,HorizontalSplit:2,HotTub:15,Hotel:15,HourglassBottom:2,HourglassDisabled:0,HourglassEmpty:2,HourglassFull:7,HourglassTop:15,House:15,HouseSiding:15,Houseboat:15,HowToReg:15,HowToVote:15,Http:15,Https:15,Hvac:15,IceSkating:15,Icecream:15,Image:15,ImageAspectRatio:0,ImageNotSupported:0,ImageSearch:15,ImagesearchRoller:0,ImportContacts:2,ImportExport:15,ImportantDevices:0,Inbox:15,Info:15,Input:15,InsertChart:15,InsertComment:7,InsertDriveFile:2,InsertEmoticon:2,InsertInvitation:0,InsertLink:15,InsertPhoto:15,Insights:15,Instagram:0,Inventory:15,Inventory2:15,InvertColors:15,InvertColorsOff:2,IosShare:15,Iron:15,Iso:15,Kayaking:15,Keyboard:15,KeyboardAlt:15,KeyboardArrowDown:0,KeyboardArrowLeft:0,KeyboardArrowRight:0,KeyboardArrowUp:2,KeyboardBackspace:0,KeyboardCapslock:0,KeyboardHide:15,KeyboardReturn:2,KeyboardTab:15,KeyboardVoice:7,KingBed:15,Kitchen:15,Kitesurfing:15,Label:15,LabelImportant:2,LabelOff:15,Landscape:15,Language:15,Laptop:15,LaptopChromebook:0,LaptopMac:15,LaptopWindows:7,LastPage:15,Launch:15,Layers:15,LayersClear:15,Leaderboard:15,LeakAdd:15,LeakRemove:15,LegendToggle:15,Lens:15,LensBlur:15,LibraryAdd:15,LibraryAddCheck:2,LibraryBooks:15,LibraryMusic:15,Light:15,LightMode:15,Lightbulb:15,LineStyle:15,LineWeight:15,LinearScale:15,Link:15,LinkOff:15,LinkedCamera:15,LinkedIn:0,Liquor:15,List:15,ListAlt:15,LiveHelp:15,LiveTv:15,Living:15,LocalActivity:7,LocalAirport:15,LocalAtm:15,LocalBar:15,LocalCafe:15,LocalCarWash:15,LocalDining:15,LocalDrink:15,LocalFireDepartment:0,LocalFlorist:15,LocalGasStation:2,LocalGroceryStore:0,LocalHospital:7,LocalHotel:15,LocalLaundryService:0,LocalLibrary:15,LocalMall:15,LocalMovies:15,LocalOffer:15,LocalParking:15,LocalPharmacy:7,LocalPhone:15,LocalPizza:15,LocalPlay:15,LocalPolice:15,LocalPostOffice:2,LocalPrintshop:2,LocalSee:15,LocalShipping:7,LocalTaxi:15,LocationCity:15,LocationDisabled:0,LocationOff:15,LocationOn:15,LocationSearching:0,Lock:15,LockClock:15,LockOpen:15,Login:15,Logout:15,Looks:15,Looks3:15,Looks4:15,Looks5:15,Looks6:15,LooksOne:15,LooksTwo:15,Loop:15,Loupe:15,LowPriority:15,Loyalty:15,LteMobiledata:7,LtePlusMobiledata:0,Luggage:15,LunchDining:15,Mail:15,MailOutline:15,Male:15,ManageAccounts:2,ManageSearch:15,Map:15,MapsHomeWork:15,MapsUgc:15,Margin:15,MarkAsUnread:15,MarkChatRead:15,MarkChatUnread:2,MarkEmailRead:7,MarkEmailUnread:2,Markunread:15,MarkunreadMailbox:0,Masks:15,Maximize:15,MediaBluetoothOff:0,MediaBluetoothOn:0,Mediation:15,MedicalServices:2,Medication:15,MeetingRoom:15,Memory:15,Menu:15,MenuBook:15,MenuOpen:15,MergeType:15,Message:15,Mic:15,MicExternalOff:2,MicExternalOn:7,MicNone:15,MicOff:15,Microwave:15,MilitaryTech:15,Minimize:15,MissedVideoCall:2,Mms:15,MobileFriendly:2,MobileOff:15,MobileScreenShare:0,MobiledataOff:7,Mode:15,ModeComment:15,ModeEdit:15,ModeEditOutline:2,ModeNight:15,ModeStandby:15,ModelTraining:7,MonetizationOn:2,Money:15,MoneyOff:15,MoneyOffCsred:7,Monitor:15,MonitorWeight:7,MonochromePhotos:0,Mood:15,MoodBad:15,Moped:15,More:15,MoreHoriz:15,MoreTime:15,MoreVert:15,MotionPhotosAuto:0,MotionPhotosOff:2,Mouse:15,MoveToInbox:15,Movie:15,MovieCreation:7,MovieFilter:15,Moving:15,Mp:15,MultilineChart:2,MultipleStop:15,Museum:15,MusicNote:15,MusicOff:15,MusicVideo:15,MyLocation:15,Nat:15,Nature:15,NaturePeople:15,NavigateBefore:2,NavigateNext:15,Navigation:15,NearMe:15,NearMeDisabled:2,NearbyError:15,NearbyOff:15,NetworkCell:15,NetworkCheck:15,NetworkLocked:7,NetworkWifi:15,NewReleases:15,NextPlan:15,NextWeek:15,Nfc:15,NightShelter:15,Nightlife:15,Nightlight:15,NightlightRound:2,NightsStay:15,NineK:15,NineKPlus:15,NineMp:15,NineteenMp:15,NoAccounts:15,NoBackpack:15,NoCell:15,NoDrinks:15,NoEncryption:15,NoFlash:15,NoFood:15,NoLuggage:15,NoMeals:15,NoMeetingRoom:7,NoPhotography:7,NoSim:15,NoStroller:15,NoTransfer:15,NordicWalking:7,North:15,NorthEast:15,NorthWest:15,NotAccessible:7,NotInterested:7,NotListedLocation:0,NotStarted:15,Note:15,NoteAdd:15,NoteAlt:15,Notes:15,NotificationAdd:2,Notifications:7,NotificationsActive:0,NotificationsNone:0,NotificationsOff:0,NotificationsPaused:0,OfflineBolt:15,OfflinePin:15,OfflineShare:15,OndemandVideo:7,OneK:15,OneKPlus:15,OneKk:15,OnlinePrediction:0,Opacity:15,OpenInBrowser:7,OpenInFull:15,OpenInNew:15,OpenInNewOff:15,OpenWith:15,OtherHouses:15,Outbound:15,Outbox:15,OutdoorGrill:15,Outlet:15,Padding:15,Pages:15,Pageview:15,Paid:15,Palette:15,PanTool:15,Panorama:15,PanoramaFishEye:2,PanoramaHorizontal:0,PanoramaPhotosphere:0,PanoramaVertical:0,PanoramaWideAngle:0,Paragliding:15,Park:15,PartyMode:15,Password:15,Pattern:15,Pause:15,PauseCircle:15,PauseCircleFilled:0,PauseCircleOutline:0,PausePresentation:0,Payment:15,Payments:15,PedalBike:15,Pending:15,PendingActions:2,People:15,PeopleAlt:15,PeopleOutline:7,PermCameraMic:7,PermContactCalendar:0,PermDataSetting:2,PermIdentity:15,PermMedia:15,PermPhoneMsg:15,PermScanWifi:15,Person:15,PersonAdd:15,PersonAddAlt:15,PersonAddAlt1:7,PersonAddDisabled:0,PersonOff:15,PersonOutline:7,PersonPin:15,PersonPinCircle:2,PersonRemove:15,PersonRemoveAlt1:0,PersonSearch:15,PersonalVideo:7,PestControl:15,PestControlRodent:0,Pets:15,Phone:15,PhoneAndroid:15,PhoneCallback:7,PhoneDisabled:7,PhoneEnabled:15,PhoneForwarded:2,PhoneInTalk:15,PhoneIphone:15,PhoneLocked:15,PhoneMissed:15,PhonePaused:15,Phonelink:15,PhonelinkErase:2,PhonelinkLock:7,PhonelinkOff:15,PhonelinkRing:7,PhonelinkSetup:2,Photo:15,PhotoAlbum:15,PhotoCamera:15,PhotoCameraBack:2,PhotoCameraFront:0,PhotoFilter:15,PhotoLibrary:15,PhotoSizeSelectLarge:0,PhotoSizeSelectSmall:0,Piano:15,PianoOff:15,PictureAsPdf:15,PictureInPicture:0,PictureInPictureAlt:0,PieChart:15,PieChartOutline:2,Pin:15,PinDrop:15,Pinterest:0,PivotTableChart:2,Place:15,Plagiarism:15,PlayArrow:15,PlayCircle:15,PlayCircleFilled:0,PlayCircleOutline:0,PlayDisabled:15,PlayForWork:15,PlayLesson:15,PlaylistAdd:15,PlaylistAddCheck:0,PlaylistPlay:15,Plumbing:15,PlusOne:15,Podcasts:15,PointOfSale:15,Policy:15,Poll:15,Pool:15,PortableWifiOff:2,Portrait:15,PostAdd:15,Power:15,PowerInput:15,PowerOff:15,PowerSettingsNew:0,PregnantWoman:7,PresentToAll:15,Preview:15,PriceChange:15,PriceCheck:15,Print:15,PrintDisabled:7,PriorityHigh:15,PrivacyTip:15,Psychology:15,Public:15,PublicOff:15,Publish:15,PublishedWithChanges:0,PushPin:15,QrCode:15,QrCode2:15,QrCodeScanner:7,QueryBuilder:15,QueryStats:15,QuestionAnswer:2,Queue:15,QueueMusic:15,QueuePlayNext:7,Quickreply:15,Quiz:15,RMobiledata:15,Radar:15,Radio:15,RadioButtonChecked:0,RadioButtonUnchecked:0,RailwayAlert:15,RamenDining:15,RateReview:15,RawOff:15,RawOn:15,ReadMore:15,Receipt:15,ReceiptLong:15,RecentActors:15,Recommend:15,RecordVoiceOver:2,Reddit:0,Redeem:15,Redo:15,ReduceCapacity:2,Refresh:15,RememberMe:15,Remove:15,RemoveCircle:15,RemoveCircleOutline:0,RemoveDone:15,RemoveFromQueue:2,RemoveModerator:2,RemoveRedEye:15,RemoveShoppingCart:0,Reorder:15,Repeat:15,RepeatOn:15,RepeatOne:15,RepeatOneOn:15,Replay:15,Replay10:15,Replay30:15,Replay5:15,ReplayCircleFilled:0,Reply:15,ReplyAll:15,Report:15,ReportGmailerrorred:0,ReportOff:15,ReportProblem:7,RequestPage:15,RequestQuote:15,ResetTv:15,RestartAlt:15,Restaurant:15,RestaurantMenu:2,Restore:15,RestoreFromTrash:0,RestorePage:15,Reviews:15,RiceBowl:15,RingVolume:15,Roofing:15,Room:15,RoomPreferences:2,RoomService:15,Rotate90DegreesCcw:0,RotateLeft:15,RotateRight:15,Router:15,Rowing:15,RssFeed:15,Rsvp:15,Rtt:15,Rule:15,RuleFolder:15,RunCircle:15,RunningWithErrors:0,RvHookup:15,SafetyDivider:7,Sailing:15,Sanitizer:15,Satellite:15,Save:15,SaveAlt:15,SavedSearch:15,Savings:15,Scanner:15,ScatterPlot:15,Schedule:15,ScheduleSend:15,Schema:15,School:15,Science:15,Score:15,ScreenLockLandscape:0,ScreenLockPortrait:0,ScreenLockRotation:0,ScreenRotation:2,ScreenSearchDesktop:0,ScreenShare:15,Screenshot:15,Sd:15,SdCard:15,SdCardAlert:15,SdStorage:15,Search:15,SearchOff:15,Security:15,SecurityUpdate:2,SecurityUpdateGood:0,Segment:15,SelectAll:15,SelfImprovement:2,Sell:15,Send:15,SendAndArchive:2,SendToMobile:15,SensorDoor:15,SensorWindow:15,Sensors:15,SensorsOff:15,SentimentNeutral:0,SentimentSatisfied:0,SetMeal:15,Settings:15,SettingsApplications:0,SettingsBluetooth:0,SettingsBrightness:0,SettingsCell:15,SettingsEthernet:0,SettingsInputAntenna:0,SettingsInputHdmi:0,SettingsInputSvideo:0,SettingsOverscan:0,SettingsPhone:7,SettingsPower:7,SettingsRemote:2,SettingsSuggest:2,SettingsVoice:7,SevenK:15,SevenKPlus:15,SevenMp:15,SeventeenMp:15,Share:15,ShareLocation:7,Shield:15,Shop:15,Shop2:15,ShopTwo:15,ShoppingBag:15,ShoppingBasket:2,ShoppingCart:15,ShortText:15,Shortcut:15,ShowChart:15,Shower:15,Shuffle:15,ShuffleOn:15,ShutterSpeed:15,Sick:15,SignalCellular0Bar:0,SignalCellular1Bar:0,SignalCellular2Bar:0,SignalCellular3Bar:0,SignalCellular4Bar:0,SignalCellularAlt:0,SignalCellularNoSim:0,SignalCellularNodata:0,SignalCellularNull:0,SignalCellularOff:0,SignalWifi0Bar:2,SignalWifi1Bar:2,SignalWifi1BarLock:0,SignalWifi2Bar:2,SignalWifi2BarLock:0,SignalWifi3Bar:2,SignalWifi3BarLock:0,SignalWifi4Bar:2,SignalWifi4BarLock:0,SignalWifiBad:7,SignalWifiOff:7,SimCard:15,SimCardAlert:15,SimCardDownload:2,SingleBed:15,Sip:15,SixK:15,SixKPlus:15,SixMp:15,SixteenMp:15,SixtyFps:15,SixtyFpsSelect:2,Skateboarding:7,SkipNext:15,SkipPrevious:15,Sledding:15,Slideshow:15,SlowMotionVideo:2,SmartButton:15,SmartDisplay:15,SmartScreen:15,SmartToy:15,Smartphone:15,SmokeFree:15,SmokingRooms:15,Sms:15,SmsFailed:15,SnippetFolder:7,Snooze:15,Snowboarding:15,Snowmobile:15,Snowshoeing:15,Soap:15,SocialDistance:2,Sort:15,SortByAlpha:15,Source:15,South:15,SouthEast:15,SouthWest:15,Spa:15,SpaceBar:15,Speaker:15,SpeakerGroup:15,SpeakerNotes:15,SpeakerNotesOff:2,SpeakerPhone:15,Speed:15,Spellcheck:15,Splitscreen:15,Sports:15,SportsBar:15,SportsBaseball:2,SportsBasketball:0,SportsCricket:7,SportsEsports:7,SportsFootball:2,SportsGolf:15,SportsHandball:2,SportsHockey:15,SportsKabaddi:7,SportsMma:15,SportsMotorsports:0,SportsRugby:15,SportsScore:15,SportsSoccer:15,SportsTennis:15,SportsVolleyball:0,SquareFoot:15,StackedBarChart:2,StackedLineChart:0,Stairs:15,Star:15,StarBorder:15,StarBorderPurple500:0,StarHalf:15,StarOutline:15,StarPurple500:7,StarRate:15,Stars:15,StayCurrentLandscape:0,StayCurrentPortrait:0,StayPrimaryLandscape:0,StayPrimaryPortrait:0,StickyNote2:15,Stop:15,StopCircle:15,StopScreenShare:2,Storage:15,Store:15,StoreMallDirectory:0,Storefront:15,Storm:15,Straighten:15,Stream:15,Streetview:15,StrikethroughS:2,Stroller:15,Style:15,Subject:15,Subscript:15,Subscriptions:7,Subtitles:15,SubtitlesOff:15,Subway:15,Summarize:15,Superscript:15,SupervisedUserCircle:0,SupervisorAccount:0,Support:15,SupportAgent:15,Surfing:15,SurroundSound:7,SwapCalls:15,SwapHoriz:15,SwapHorizontalCircle:0,SwapVert:15,SwapVerticalCircle:0,Swipe:15,SwitchAccount:7,SwitchCamera:15,SwitchLeft:15,SwitchRight:15,SwitchVideo:15,Sync:15,SyncAlt:15,SyncDisabled:15,SyncProblem:15,SystemSecurityUpdate:0,SystemUpdate:15,SystemUpdateAlt:2,Tab:15,TabUnselected:7,TableChart:15,TableRows:15,TableView:15,Tablet:15,TabletAndroid:7,TabletMac:15,Tag:15,TagFaces:15,TakeoutDining:7,TapAndPlay:15,Tapas:15,Task:15,TaskAlt:15,TaxiAlert:15,Telegram:0,TenMp:15,Terrain:15,TextFields:15,TextFormat:15,TextRotateUp:15,TextRotateVertical:0,TextRotationAngleup:0,TextRotationDown:0,TextRotationNone:0,TextSnippet:15,Textsms:15,Texture:15,TheaterComedy:7,Theaters:15,Thermostat:15,ThermostatAuto:2,ThirteenMp:15,ThirtyFps:15,ThirtyFpsSelect:2,ThreeDRotation:2,ThreeGMobiledata:0,ThreeK:15,ThreeKPlus:15,ThreeMp:15,ThreeP:15,ThreeSixty:15,ThumbDown:15,ThumbDownAlt:15,ThumbDownOffAlt:2,ThumbUp:15,ThumbUpAlt:15,ThumbUpOffAlt:7,ThumbsUpDown:15,TimeToLeave:15,Timelapse:15,Timeline:15,Timer:15,Timer10:15,Timer10Select:7,Timer3:15,Timer3Select:15,TimerOff:15,TimesOneMobiledata:0,Title:15,Toc:15,Today:15,ToggleOff:15,ToggleOn:15,Toll:15,Tonality:15,Topic:15,TouchApp:15,Tour:15,Toys:15,TrackChanges:15,Traffic:15,Train:15,Tram:15,Transform:15,Transgender:15,TransitEnterexit:0,Translate:15,TravelExplore:7,TrendingDown:15,TrendingFlat:15,TrendingUp:15,TripOrigin:15,Try:15,Tty:15,Tune:15,Tungsten:15,TurnedIn:15,TurnedInNot:15,Tv:15,TvOff:15,TwelveMp:15,TwentyFourMp:15,TwentyOneMp:15,TwentyThreeMp:7,TwentyTwoMp:15,TwentyZeroMp:15,Twitter:0,TwoK:15,TwoKPlus:15,TwoMp:15,TwoWheeler:15,Umbrella:15,Unarchive:15,Undo:15,UnfoldLess:15,UnfoldMore:15,Unpublished:15,Unsubscribe:15,Upcoming:15,Update:15,UpdateDisabled:2,Upgrade:15,Upload:15,UploadFile:15,Usb:15,UsbOff:15,Verified:15,VerifiedUser:15,VerticalAlignBottom:0,VerticalAlignCenter:0,VerticalAlignTop:0,VerticalSplit:7,Vibration:15,VideoCall:15,VideoCameraBack:2,VideoCameraFront:0,VideoLabel:15,VideoLibrary:15,VideoSettings:7,VideoStable:15,Videocam:15,VideocamOff:15,VideogameAsset:2,VideogameAssetOff:0,ViewAgenda:15,ViewArray:15,ViewCarousel:15,ViewColumn:15,ViewComfy:15,ViewCompact:15,ViewDay:15,ViewHeadline:15,ViewInAr:15,ViewList:15,ViewModule:15,ViewQuilt:15,ViewSidebar:15,ViewStream:15,ViewWeek:15,Vignette:15,Villa:15,Visibility:15,VisibilityOff:7,VoiceChat:15,VoiceOverOff:15,Voicemail:15,VolumeDown:15,VolumeMute:15,VolumeOff:15,VolumeUp:15,VolunteerActivism:0,VpnKey:15,VpnLock:15,Vrpano:15,Wallpaper:15,Warning:15,WarningAmber:15,Wash:15,Watch:15,WatchLater:15,Water:15,WaterDamage:15,WaterfallChart:2,Waves:15,WbAuto:15,WbCloudy:15,WbIncandescent:2,WbIridescent:15,WbShade:15,WbSunny:15,WbTwilight:15,Wc:15,Web:15,WebAsset:15,WebAssetOff:15,Weekend:15,West:15,WhatsApp:0,Whatshot:15,WheelchairPickup:0,WhereToVote:15,Widgets:15,Wifi:15,WifiCalling:15,WifiCalling3:15,WifiLock:15,WifiOff:15,WifiProtectedSetup:0,WifiTethering:7,WifiTetheringOff:0,Window:15,WineBar:15,Work:15,WorkOff:15,WorkOutline:15,Workspaces:15,WrapText:15,WrongLocation:7,Wysiwyg:15,Yard:15,YouTube:0,YoutubeSearchedFor:0,ZoomIn:15,ZoomOut:15,ZoomOutMap:15};const iconKeys=Object.keys(icons);const weightOptions=[\"Filled\",\"TwoTone\",\"Sharp\",\"Rounded\",\"Outlined\",];const styleKeyOptions={15:[...weightOptions],7:[\"Filled\",\"TwoTone\",\"Sharp\",\"Rounded\"],2:[\"Filled\",\"Sharp\"]};const styleOptionPropKeys=Object.keys(styleKeyOptions).map(optionKey=>`iconStyle${optionKey}`);const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * MATERIAL\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored,style}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Get props to use for deps array\nconst styleOptionProps=styleOptionPropKeys.map(prop=>props[prop]);// Get style of icon\nconst iconStyle=useMemo(()=>{const iconStyleKey=icons[iconKey];if(!iconStyleKey)return;const activeStyle=props[`iconStyle${iconStyleKey}`];if(activeStyle===\"Filled\")return;return activeStyle;},[...styleOptionProps]);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){// If bad search or doesn't exist, show null state\nif(typeof icons[iconKey]!==\"number\"){setSelectedIcon(null);return;}// Get the selected module\ntry{const style=iconStyle?iconStyle:\"\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}${style}.js@0.0.32`;// console.log(iconModuleUrl)\nconst module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch{if(isMounted.current)setSelectedIcon(null);}}// Import module when new style or icon is selected\nuseEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey,...styleOptionProps]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined,...style},focusable:\"false\",viewBox:\"0 0 24 24\",color:color,children:SelectedIcon}):emptyState});}Icon.displayName=\"Material\";Icon.defaultProps={width:24,height:24,iconSelection:\"Home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,weight:\"Filled\",mirrored:false};function hideStyleOptions(props,styleOptions){const{selectByList,iconSearch,iconSelection}=props;const styleOptionsNumber=parseInt(styleOptions);const name=getIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const icon=icons[name];if(!icon||styleOptionsNumber===0)return true;if(icon===styleOptionsNumber)return false;else return true;}addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Material site](https://fonts.google.com/icons)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...Object.keys(styleKeyOptions).reduce((result,optionKey)=>{result[`iconStyle${optionKey}`]={type:ControlType.Enum,title:\"Style\",defaultValue:\"Filled\",options:styleKeyOptions[optionKey],hidden:props=>hideStyleOptions(props,optionKey)};return result;},{}),...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Material.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"WyDMT5Sl5\",\"to3SJuATP\",\"xC9s5IZFQ\",\"lezFB8hJw\"];const serializationHash=\"framer-5BCj5\";const variantClassNames={lezFB8hJw:\"framer-v-nblr08\",to3SJuATP:\"framer-v-1bzjmg5\",WyDMT5Sl5:\"framer-v-cuxx36\",xC9s5IZFQ:\"framer-v-1hgqc4t\"};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 humanReadableVariantMap={\"Cursor Grey Left\":\"lezFB8hJw\",\"Cursor Grey Right\":\"xC9s5IZFQ\",\"Cursor Left\":\"to3SJuATP\",\"Cursor Right\":\"WyDMT5Sl5\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,C1aHFofEm:tap!==null&&tap!==void 0?tap:props.C1aHFofEm,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WyDMT5Sl5\"};};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,C1aHFofEm,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WyDMT5Sl5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1j0b5pp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(C1aHFofEm){const res=await C1aHFofEm(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cuxx36\",className,classNames),\"data-framer-name\":\"Cursor Right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WyDMT5Sl5\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap1j0b5pp,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:\"blur(50px)\",backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,rotate:0,WebkitBackdropFilter:\"blur(50px)\",...style},variants:{lezFB8hJw:{rotate:180},to3SJuATP:{rotate:180}},...addPropertyOverrides({lezFB8hJw:{\"data-framer-name\":\"Cursor Grey Left\"},to3SJuATP:{\"data-framer-name\":\"Cursor Left\"},xC9s5IZFQ:{\"data-framer-name\":\"Cursor Grey Right\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vs30ro-container\",layoutDependency:layoutDependency,layoutId:\"hRmy59VjY-container\",style:{opacity:1,rotate:180},variants:{lezFB8hJw:{opacity:.25},xC9s5IZFQ:{opacity:.25}},children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c3a55a0f-d2a0-4565-bb3a-bbd6f1087b74, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Chevron\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"hRmy59VjY\",layoutId:\"hRmy59VjY\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5BCj5.framer-1dylxdt, .framer-5BCj5 .framer-1dylxdt { display: block; }\",\".framer-5BCj5.framer-cuxx36 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5BCj5 .framer-vs30ro-container { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-5BCj5.framer-cuxx36 { gap: 0px; } .framer-5BCj5.framer-cuxx36 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5BCj5.framer-cuxx36 > :first-child { margin-left: 0px; } .framer-5BCj5.framer-cuxx36 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 30\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"to3SJuATP\":{\"layout\":[\"fixed\",\"fixed\"]},\"xC9s5IZFQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"lezFB8hJw\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"C1aHFofEm\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerywmfPg6Td=withCSS(Component,css,\"framer-5BCj5\");export default FramerywmfPg6Td;FramerywmfPg6Td.displayName=\"Utilities / Chevron - Cursor\";FramerywmfPg6Td.defaultProps={height:30,width:30};addPropertyControls(FramerywmfPg6Td,{variant:{options:[\"WyDMT5Sl5\",\"to3SJuATP\",\"xC9s5IZFQ\",\"lezFB8hJw\"],optionTitles:[\"Cursor Right\",\"Cursor Left\",\"Cursor Grey Right\",\"Cursor Grey Left\"],title:\"Variant\",type:ControlType.Enum},C1aHFofEm:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerywmfPg6Td,[{explicitInter:true,fonts:[]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerywmfPg6Td\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"to3SJuATP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xC9s5IZFQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lezFB8hJw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"C1aHFofEm\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"30\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"30\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ywmfPg6Td.map", "import{jsxs as _jsxs}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";export function NumberCounter(props){const{startNumber,endNumber,fontColor,fontSize,fontWeight,fontFamily,speed,prefix,suffix,loop}=props;const[count,setCount]=useState(startNumber);const[isVisible,setIsVisible]=useState(false);const ref=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(ref.current){observer.observe(ref.current);}return()=>{if(ref.current){observer.unobserve(ref.current);}};},[]);useEffect(()=>{if(isVisible&&startNumber!==endNumber){const intervalId=setInterval(()=>{if(count<endNumber){setCount(prevCount=>prevCount+1);}else if(loop){setCount(startNumber);}},speed);return()=>{clearInterval(intervalId);};}},[count,startNumber,endNumber,loop,isVisible]);return /*#__PURE__*/_jsxs(motion.div,{ref:ref,style:{color:fontColor,fontSize:fontSize,fontWeight:fontWeight,fontFamily:fontFamily},children:[prefix,count,suffix]});}NumberCounter.defaultProps={startNumber:0,endNumber:10,fontColor:\"#000\",fontSize:\"16px\",fontWeight:\"normal\",fontFamily:\"Arial\",speed:100,prefix:\"\",suffix:\"\",loop:false};addPropertyControls(NumberCounter,{startNumber:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},endNumber:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},fontColor:{type:ControlType.Color,title:\"Font Color\",defaultValue:\"#000\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:16,min:0,max:100,step:1},fontWeight:{type:ControlType.Enum,title:\"Font Weight\",defaultValue:\"normal\",options:[\"light\",\"normal\",\"italic\",\"medium\",\"semibold\",\"bold\"],optionTitles:[\"Light\",\"Regular\",\"Medium\",\"Semibold\",\"Bold\"]},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Arial\"},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:1e3,step:10},prefix:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},suffix:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"NumberCounter\":{\"type\":\"reactComponent\",\"name\":\"NumberCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "// Generated by Framer (47ebf4a)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={uUeO_Znc6:new LazyValue(()=>import(\"./pNHeRDjTh-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import GlobalSectionCTA from\"#framer/local/canvasComponent/bDuMp2cg2/bDuMp2cg2.js\";import AboutCoreValue from\"#framer/local/canvasComponent/bnagblXJQ/bnagblXJQ.js\";import NavigationNavigationMobile from\"#framer/local/canvasComponent/CA2UVAOBt/CA2UVAOBt.js\";import FooterFooter from\"#framer/local/canvasComponent/CPt2kErNr/CPt2kErNr.js\";import NavigationNavigationDesktop from\"#framer/local/canvasComponent/F0lbt84nG/F0lbt84nG.js\";import AboutTeamCard from\"#framer/local/canvasComponent/FHseVXr8s/FHseVXr8s.js\";import AboutTestimonialSlider from\"#framer/local/canvasComponent/GmJX9wZ_Z/GmJX9wZ_Z.js\";import AboutAboutHeader from\"#framer/local/canvasComponent/GyKJqP2Z6/GyKJqP2Z6.js\";import GlobalLineAnimationGlobal from\"#framer/local/canvasComponent/lw0LfyniE/lw0LfyniE.js\";import NavigationMobileFullNavigation from\"#framer/local/canvasComponent/uL6YOTdAZ/uL6YOTdAZ.js\";import AccordionAccordion from\"#framer/local/canvasComponent/y2aW366zJ/y2aW366zJ.js\";import UtilitiesChevronCursor from\"#framer/local/canvasComponent/ywmfPg6Td/ywmfPg6Td.js\";import{NumberCounter}from\"#framer/local/codeFile/qnAbXCH/Counter.js\";import*as sharedStyle from\"#framer/local/css/SJt7fXVzX/SJt7fXVzX.js\";import*as sharedStyle1 from\"#framer/local/css/xxobpGKc2/xxobpGKc2.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/pNHeRDjTh/pNHeRDjTh.js\";import metadataProvider from\"#framer/local/webPageMetadata/pNHeRDjTh/pNHeRDjTh.js\";const NavigationNavigationDesktopFonts=getFonts(NavigationNavigationDesktop);const NavigationNavigationDesktopWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigationDesktop);const NavigationNavigationMobileFonts=getFonts(NavigationNavigationMobile);const NavigationNavigationMobileWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigationMobile);const NavigationMobileFullNavigationFonts=getFonts(NavigationMobileFullNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const AboutAboutHeaderFonts=getFonts(AboutAboutHeader);const AboutAboutHeaderWithVariantAppearEffect=withVariantAppearEffect(AboutAboutHeader);const GlobalLineAnimationGlobalFonts=getFonts(GlobalLineAnimationGlobal);const GlobalLineAnimationGlobalWithVariantAppearEffect=withVariantAppearEffect(GlobalLineAnimationGlobal);const VimeoFonts=getFonts(Vimeo);const AboutCoreValueFonts=getFonts(AboutCoreValue);const AccordionAccordionFonts=getFonts(AccordionAccordion);const AboutTeamCardFonts=getFonts(AboutTeamCard);const ContainerWithFX=withFX(Container);const NumberCounterFonts=getFonts(NumberCounter);const AboutTestimonialSliderFonts=getFonts(AboutTestimonialSlider);const GlobalSectionCTAFonts=getFonts(GlobalSectionCTA);const GlobalSectionCTAWithVariantAppearEffect=withVariantAppearEffect(GlobalSectionCTA);const FooterFooterFonts=getFonts(FooterFooter);const UtilitiesChevronCursorFonts=getFonts(UtilitiesChevronCursor);const breakpoints={aklxOWTlU:\"(min-width: 1200px)\",AwhOnpHay:\"(max-width: 809px)\",JWlDAB7wN:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-sG02M\";const variantClassNames={aklxOWTlU:\"framer-v-cnf1rz\",AwhOnpHay:\"framer-v-xctdjl\",JWlDAB7wN:\"framer-v-hjt3b8\"};const transition1={delay:0,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={delay:.2,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition4={delay:.1,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition5={delay:.3,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const transition6={delay:.4,duration:2,ease:[.16,1,.3,1],type:\"tween\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"aklxOWTlU\",Phone:\"AwhOnpHay\",Tablet:\"JWlDAB7wN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aklxOWTlU\"};};const cursor={component:UtilitiesChevronCursor,variant:\"to3SJuATP\"};const cursor1={component:UtilitiesChevronCursor,variant:\"WyDMT5Sl5\"};const cursor2={component:UtilitiesChevronCursor,variant:\"lezFB8hJw\"};const cursor3={component:UtilitiesChevronCursor,variant:\"xC9s5IZFQ\"};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const EHMhKGDpT3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const wCQM1JsQO1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"AwhOnpHay\")return false;return true;};const ref1=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"AwhOnpHay\")return true;return false;};const elementId=useRouteElementId(\"SwVjGceLR\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"WpGM4Tu3O\");usePreloadLocalizedValues(activeLocale);const elementId2=useRouteElementId(\"tjYrbNY12\");const router=useRouter();const ref3=React.useRef(null);useCustomCursors({\"11fwz63\":cursor3,\"1gxl120\":cursor2,\"1q54p9j\":cursor1,\"1xsxq08\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"aklxOWTlU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-cnf1rz\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rj2wfk\",\"data-framer-name\":\"Buy Template Module\"}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ag4w9u-container hidden-xctdjl\",layoutScroll:true,nodeId:\"dwIjkdJ33\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(NavigationNavigationDesktopWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:400,ref:ref1,target:\"lQ7T5v16X\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"dwIjkdJ33\",layoutId:\"dwIjkdJ33\",style:{width:\"100%\"},variant:\"glROJL_vL\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{height:108,width:componentViewport?.width||\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1mkd901-container hidden-cnf1rz hidden-hjt3b8\",\"data-framer-appear-id\":\"1mkd901\",\"data-framer-name\":\"Navigation Mobile\",id:\"1mkd901\",initial:animation1,layoutScroll:true,name:\"Navigation Mobile\",nodeId:\"ptm10zKYh\",optimized:true,rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:overlay.visible?\"PPFOyo3m8\":\"BrEWvSRFO\"}},children:/*#__PURE__*/_jsx(NavigationNavigationMobileWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:400,ref:ref1,target:\"DEBd6oizS\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,EHMhKGDpT:EHMhKGDpT3bnx0g({overlay}),height:\"100%\",id:\"ptm10zKYh\",layoutId:\"ptm10zKYh\",name:\"Navigation Mobile\",style:{width:\"100%\"},variant:overlay.visible?\"xFNqp1zcf\":\"BrEWvSRFO\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},className:cx(scopingClassNames,\"framer-16kqe9u\"),\"data-framer-portal-id\":\"1mkd901\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"JDZHARKlT\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{animate:animation3,className:cx(scopingClassNames,\"framer-kswl8i-container\"),\"data-framer-portal-id\":\"1mkd901\",exit:animation2,inComponentSlot:true,initial:animation4,nodeId:\"sGrNivHhm\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(NavigationMobileFullNavigation,{height:\"100%\",id:\"sGrNivHhm\",layoutId:\"sGrNivHhm\",style:{height:\"100%\",width:\"100%\"},wCQM1JsQO:wCQM1JsQO1wnntms({overlay}),width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-5s77dq\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-19w6r52\",\"data-framer-name\":\"Section Hero\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{height:900,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17y77xv-container\",nodeId:\"z76TOsBuO\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{__framer__variantAppearEffectEnabled:undefined,variant:\"CY1W0rQc5\"}},children:/*#__PURE__*/_jsx(AboutAboutHeaderWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:400,ref:ref1,target:\"O2CEwdnyD\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"z76TOsBuO\",layoutId:\"z76TOsBuO\",Q9MpMF_yE:addImageAlt({src:\"https://framerusercontent.com/images/DgdGg4NQFsVJI2wSxq9pprT1u2Q.jpg\",srcSet:\"https://framerusercontent.com/images/DgdGg4NQFsVJI2wSxq9pprT1u2Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DgdGg4NQFsVJI2wSxq9pprT1u2Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DgdGg4NQFsVJI2wSxq9pprT1u2Q.jpg 1920w\"},\"\"),style:{height:\"100%\",width:\"100%\"},twBEjiRp1:\"https://player.vimeo.com/progressive_redirect/download/1070761448/container/efce1ff9-74be-4b58-8fe7-c04643fbc258/fd666498-84faa731/trening_hero_4000kbs_%281%29%20%281080p%29.mp4?expires=1743754677&loc=external&signature=352d714230996ee7503725eaed5d188a00ccfc6c475b1f5ea8c7f2216b725632&user_id=112517791\",variant:\"UhIJ8NjKA\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b9kv4b\",\"data-framer-name\":\"Section Header - Trigger\",id:elementId1,ref:ref1}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-glf5ib\",\"data-framer-name\":\"Section Intro\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+1001+45+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aya5zp-container\",nodeId:\"Krqw2otnI\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"Krqw2otnI\",layoutId:\"Krqw2otnI\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nkf3jp\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qgfui4\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Uvod\"})}),className:\"framer-1cz5488\",\"data-framer-name\":\"Introduction\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vntaum\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Od na\u0161eg otvorenja po\u010Detkom 2003. godine te kroz vi\u0161edesetljetni iskustveni rad s na\u0161im prekrasnim klijentima, usu\u0111ujemo se re\u0107i da smo postali vode\u0107a institucija holisti\u010Dke i funkcionalne tjelovje\u017Ebe na ovim prostorima. Na\u0161a filozofija temelji se na Body tehnici \u2013 inovativnoj metodi vje\u017Ebanja koju je osmislila i znanstveno potvrdila dr. sc. Ana-Marija Jagodi\u0107 Rukavina. Body tehnika nije samo metoda vje\u017Ebanja \u2013 ona je holisti\u010Dki sustav za pove\u0107anje vitalnosti, otpornosti i dugovje\u010Dnosti. Odgovara na rastu\u0107u potra\u017Enju za inovativnim rje\u0161enjima u podru\u010Dju zdravlja, wellnessa i anti-age industrije. Ne fokusira se isklju\u010Divo na snagu ili fleksibilnost, ve\u0107 na stvaranje energetske, fiziolo\u0161ke i funkcionalne ravnote\u017Ee koja korisnicima donosi opipljive i dugoro\u010Dne rezultate u pove\u0107anju energije, otpornosti i dugovje\u010Dnosti.\"})}),className:\"framer-px28gr\",\"data-framer-name\":\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts. In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Uz holisti\u010Dku i funkcionalnu tjelovje\u017Ebu prilago\u0111enu trenutnim fizi\u010Dkim, mentalnim i energetskim potrebama klijenta, holizam i vitalnost njegujemo kroz \u0161irok spektar usluga prilago\u0111enih suvremenom \u010Dovjeku \u2013 poput individualnih konzultacija, matrice zdravlja, coachinga, izokineti\u010Dke dijagnostike, raznovrsnih masa\u017Ea i tretmana tijela, te vrhunskih wellness i SPA usluga. Za va\u0161 rast i napredak na svim razinama brinu instruktori Body tehnike \u2013 stru\u010Dnjaci s vi\u0161egodi\u0161njom praksom i bogatim iskustvom u predmetnom podru\u010Dju. Osim stru\u010Dnosti, sve na\u0161e instruktore krasi pozitivna i neiscrpna energija koju nesebi\u010Dno dijele sa svakim klijentom, od prvog do zadnjeg trenutka. Stoga vas pozivamo da nas posjetite, otkrijete mo\u0107 pokreta i na\u0161e energije \u2013 i zauvijek si promijenite \u017Eivot.\"})}),className:\"framer-eeufri\",\"data-framer-name\":\"In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts. In January 2013 Spring/Summer came to life with a clear idea of how a modern design agency could be run. Gathering the best talent fuelled by high ambitions and projects run in a way where quality is the last thing to be sacrificed, we design online shops, corporate websites and brand identities with a strong root in the Scandinavian design philosophies where functionality meets aesthetics and the whole becomes greater than the sum of its parts.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qdkp9e\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13440i7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cbE280c2_\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:false,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,controls:true,height:\"100%\",id:\"cbE280c2_\",isMixedBorderRadius:true,layoutId:\"cbE280c2_\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,video:\"https://vimeo.com/1070609493\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-wvbo1t\",\"data-framer-name\":\"Section Approach\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13m96o2\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mrcw9b\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+2397+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lczjkp-container\",nodeId:\"gXHuQ1Inn\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"gXHuQ1Inn\",layoutId:\"gXHuQ1Inn\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Usluge\"})}),className:\"framer-1wa3c4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cc03mr\",\"data-framer-name\":\"Value Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:595,width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 45px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+2397+0+0+131+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11y984a-container\",nodeId:\"tJwWqwL5p\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(AboutCoreValue,{height:\"100%\",id:\"tJwWqwL5p\",kB1rNTf7X:getLocalizedValue(\"v5\",activeLocale)??\"U PBS Centru nudimo precizirane dijagnostike prilago\u0111ene va\u0161im potrebama. Biodex i lokomotorni pregled analizira mi\u0161i\u0107nu snagu i funkcionalnost pokreta, idealno za postoperativne i predoperativne faze. Holisti\u010Dki kineziolo\u0161ki pregled procjenjuje dr\u017Eanje, pokret, disanje, sastav tijela i energiju, otkrivaju\u0107i uzroke kroni\u010Dnih i akutnih tegoba. Matrica zdravlja kombinira fizi\u010Dke, energetske, emocionalne i mentalne aspekte zdravlja, omogu\u0107uju\u0107i dublje razumijevanje va\u0161eg stanja i temelj je za trajne promjene. Va\u0161 put do zdravlja po\u010Dinje s pravom dijagnostikom i razumijevanjem.\",layoutId:\"tJwWqwL5p\",Mz0wvNH6v:getLocalizedValue(\"v4\",activeLocale)??\"Pregled i dijagnostika\",rFExBnb6h:\"01\",style:{width:\"100%\"},width:\"100%\",y33fYjAOj:\"\",ZLxZW1prj:addImageAlt({src:\"https://framerusercontent.com/images/oDtKsGMS4t78TAPATBCC56YkA.jpg\",srcSet:\"https://framerusercontent.com/images/oDtKsGMS4t78TAPATBCC56YkA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/oDtKsGMS4t78TAPATBCC56YkA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/oDtKsGMS4t78TAPATBCC56YkA.jpg 1920w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:595,width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 45px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+2397+0+0+131+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-86hxk9-container\",nodeId:\"e3X2xyixM\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(AboutCoreValue,{height:\"100%\",id:\"e3X2xyixM\",kB1rNTf7X:getLocalizedValue(\"v7\",activeLocale)??\"PBS Centar nudi terapijske sate, rehabilitaciju i programe vitalnosti, prilago\u0111ene individualnim potrebama. Uz edukativni pristup, specifi\u010Dne asistenciju i manipulacije, polaznici stje\u010Du dublje razumijevanje pokreta te posti\u017Eu cjelokupno bolje stanje zdravlje i ravnote\u017Eu. Od oporavka do snage iznutra i izvana \u2013 va\u0161e tijelo je va\u0161 put sretnog i vitalnog \u017Eivljenja.\",layoutId:\"e3X2xyixM\",Mz0wvNH6v:getLocalizedValue(\"v6\",activeLocale)??\"Terapija i vitalnost\",rFExBnb6h:\"02\",style:{width:\"100%\"},width:\"100%\",y33fYjAOj:\"\",ZLxZW1prj:addImageAlt({positionX:\"50.8%\",positionY:\"69.5%\",src:\"https://framerusercontent.com/images/YyweQCecjIN6vLabhiKYWfFF8w.jpg\",srcSet:\"https://framerusercontent.com/images/YyweQCecjIN6vLabhiKYWfFF8w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YyweQCecjIN6vLabhiKYWfFF8w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YyweQCecjIN6vLabhiKYWfFF8w.jpg 1920w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:595,width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 45px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+2397+0+0+131+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-169rezr-container\",nodeId:\"cey5LCl0t\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(AboutCoreValue,{height:\"100%\",id:\"cey5LCl0t\",kB1rNTf7X:getLocalizedValue(\"v9\",activeLocale)??\"Treninzi Body tehnike pru\u017Eaju jedinstveno iskustvo u kojem svaki sat donosi novu harmoniju kretanja i unutarnje ravnote\u017Ee, koriste\u0107i bogatstvo od preko 3,000 vje\u017Ebi  Body tehnike prilago\u0111enih va\u0161im trenutnim potrebama \u2013 jer harmonija tijela stvara snagu \u017Eivota.\",layoutId:\"cey5LCl0t\",Mz0wvNH6v:getLocalizedValue(\"v8\",activeLocale)??\"Trening\",rFExBnb6h:\"03\",style:{width:\"100%\"},width:\"100%\",y33fYjAOj:\"\",ZLxZW1prj:addImageAlt({src:\"https://framerusercontent.com/images/VlRb1TAPiLD0BDy0yrm0zOj02s.jpg\",srcSet:\"https://framerusercontent.com/images/VlRb1TAPiLD0BDy0yrm0zOj02s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VlRb1TAPiLD0BDy0yrm0zOj02s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VlRb1TAPiLD0BDy0yrm0zOj02s.jpg 1920w\"},\"\")})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:595,width:`max((max(${componentViewport?.width||\"100vw\"} - 30px, 1px) - 45px) / 4, 1px)`,y:(componentViewport?.y||0)+0+0+0+2397+0+0+131+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-slg6ha-container\",nodeId:\"DBMsA5XAM\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(AboutCoreValue,{height:\"100%\",id:\"DBMsA5XAM\",kB1rNTf7X:getLocalizedValue(\"v11\",activeLocale)??\"Na\u0161a ponuda stru\u010Dnih masa\u017Ea i tretmana prati standarde kvalitete Body tehnike a stvorena je kako bi pru\u017Eila optimalne uvjete za opu\u0161tanje i regeneraciju, s posebnim fokusom na oporavak neurolo\u0161kog sustava. Tretmani su izvedeni u na\u0161em posebno dizajniranom SPA prostoru, gdje umiruju\u0107a atmosfera, prilago\u0111ena rasvjeta, zvukovi i tri vrste sauna ostvaruju idealne uvjete za detox i duboko opu\u0161tanje. Kori\u0161tenjem masa\u017Ea i terapijskih tehnika, stimuliramo regeneraciju \u017Eiv\u010Danog sustava, smanjujemo stres i napetost, te poti\u010Demo tijelo na br\u017Ei oporavak i obnovu.\",layoutId:\"DBMsA5XAM\",Mz0wvNH6v:getLocalizedValue(\"v10\",activeLocale)??\"Masa\u017Ee i tretmani\",rFExBnb6h:\"04\",style:{width:\"100%\"},width:\"100%\",y33fYjAOj:\"\",ZLxZW1prj:addImageAlt({src:\"https://framerusercontent.com/images/wc71lffvzgCbumTRoH5qHNtaY.jpg\",srcSet:\"https://framerusercontent.com/images/wc71lffvzgCbumTRoH5qHNtaY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wc71lffvzgCbumTRoH5qHNtaY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wc71lffvzgCbumTRoH5qHNtaY.jpg 1920w\"},\"\")})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-3m7hrf\",\"data-framer-name\":\"Section Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fpnxid\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qfbyyd\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+3243+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qb4kvx-container\",nodeId:\"beBHfKOni\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"beBHfKOni\",layoutId:\"beBHfKOni\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",style:{\"--framer-text-color\":\"var(--token-274613e3-dea5-4eb6-b10b-d1ac30a5853d, rgb(0, 0, 0))\"},children:\"Za\u0161to je Body tehnika jedinstvena?\"})}),className:\"framer-4449xu\",\"data-framer-name\":\"Introduction\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",style:{\"--framer-text-alignment\":\"left\"},children:\"Body tehnika je revolucionarni, znanstveno utemeljen sustav vje\u017Ebanja koji holisti\u010Dkim pristupom prou\u010Dava tijelo kao cjelinu, donosi brze i dugotrajne rezultate kroz svjesnu aktivaciju klju\u010Dnih tjelesnih sustava, prilago\u0111ava se svim uzrastima i stanjima vitalnosti te djeluje u skladu s prirodnim zakonima pokreta, omogu\u0107uju\u0107i individualiziran i siguran povratak tijela u ravnote\u017Eu.\"})}),className:\"framer-1b175wl\",\"data-framer-name\":\"Based on the research, strategic designs solutions will be explored. Multiple route will be presented and the selected will be further developed. This includes low, mid and high fidelity wireframes and animations.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dsw670\",\"data-framer-name\":\"Services Wraper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:183,width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+0+0+3243+0+0+0+274+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mpfxo9-container\",nodeId:\"djrH_db0k\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:\"dMgW5If7b\"},JWlDAB7wN:{variant:\"mUInUr0Cu\"}},children:/*#__PURE__*/_jsx(AccordionAccordion,{height:\"100%\",id:\"djrH_db0k\",layoutId:\"djrH_db0k\",style:{width:\"100%\"},variant:\"xg9ucDTK2\",width:\"100%\"})})})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-120o5k3 hidden-xctdjl\",\"data-framer-name\":\"Section Team\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m7eh0e\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-akl4ip-container\",nodeId:\"ncO_EolUl\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"ncO_EolUl\",layoutId:\"ncO_EolUl\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Na\u0161 tim\"})}),className:\"framer-ro1ygi\",\"data-framer-name\":\"Our team\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g1wxyb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5m8q6y\",\"data-framer-name\":\"Team Row\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xmpr7b-container\",nodeId:\"gxwkJwukL\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"gxwkJwukL\",layoutId:\"gxwkJwukL\",pRhVbW3Up:addImageAlt({positionX:\"47%\",positionY:\"20.2%\",src:\"https://framerusercontent.com/images/LTRuWStcUUWXQD1HDo1NbBjN9ZA.png\",srcSet:\"https://framerusercontent.com/images/LTRuWStcUUWXQD1HDo1NbBjN9ZA.png?scale-down-to=1024 921w,https://framerusercontent.com/images/LTRuWStcUUWXQD1HDo1NbBjN9ZA.png 962w\"},\"\"),QbsbPhov5:\"Ana-Marija Jagodi\u0107 Rukavina\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v15\",activeLocale)??\"Osniva\u010D, Direktor\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oidozf-container\",nodeId:\"ZRnOWtq_y\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"ZRnOWtq_y\",layoutId:\"ZRnOWtq_y\",pRhVbW3Up:addImageAlt({positionX:\"51.6%\",positionY:\"27.3%\",src:\"https://framerusercontent.com/images/fJu9C4tu8N9PPmhkyCyrymMjark.jpg\",srcSet:\"https://framerusercontent.com/images/fJu9C4tu8N9PPmhkyCyrymMjark.jpg?scale-down-to=1024 687w,https://framerusercontent.com/images/fJu9C4tu8N9PPmhkyCyrymMjark.jpg 1153w\"},\"\"),QbsbPhov5:getLocalizedValue(\"v16\",activeLocale)??\"Tomislav Rukavina\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v17\",activeLocale)??\"Direktor\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j54fpg\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h4gyw1\",\"data-framer-name\":\"Spacer\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17485nb\",\"data-framer-name\":\"Spacer\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6nrjve\",\"data-framer-name\":\"Team Row\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+484+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16msg6p-container\",nodeId:\"Vpa054Ths\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"Vpa054Ths\",layoutId:\"Vpa054Ths\",pRhVbW3Up:addImageAlt({positionX:\"50%\",positionY:\"18.4%\",src:\"https://framerusercontent.com/images/FEsqunB6kklg5dHEp2qhdumdVQ.jpg\",srcSet:\"https://framerusercontent.com/images/FEsqunB6kklg5dHEp2qhdumdVQ.jpg?scale-down-to=1024 691w,https://framerusercontent.com/images/FEsqunB6kklg5dHEp2qhdumdVQ.jpg?scale-down-to=2048 1383w,https://framerusercontent.com/images/FEsqunB6kklg5dHEp2qhdumdVQ.jpg?scale-down-to=4096 2767w,https://framerusercontent.com/images/FEsqunB6kklg5dHEp2qhdumdVQ.jpg 5620w\"},\"\"),QbsbPhov5:\"Karlo \u0160imanovi\u0107\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v18\",activeLocale)??\"Voditelj, Master instruktor Body tehnike\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+484+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i99r2y-container\",nodeId:\"Vl1eBjPrp\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"Vl1eBjPrp\",layoutId:\"Vl1eBjPrp\",pRhVbW3Up:addImageAlt({src:\"https://framerusercontent.com/images/wK4bA7FgA9N4nVKj8fisUvIE6vc.jpg\",srcSet:\"https://framerusercontent.com/images/wK4bA7FgA9N4nVKj8fisUvIE6vc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/wK4bA7FgA9N4nVKj8fisUvIE6vc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/wK4bA7FgA9N4nVKj8fisUvIE6vc.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/wK4bA7FgA9N4nVKj8fisUvIE6vc.jpg 5082w\"},\"\"),QbsbPhov5:\"Atja Begonja Habazin\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v19\",activeLocale)??\"Instruktor Body tehnike, Specijalist\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+484+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ubzl58-container\",nodeId:\"i5GrfsunM\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"i5GrfsunM\",layoutId:\"i5GrfsunM\",pRhVbW3Up:addImageAlt({src:\"https://framerusercontent.com/images/LyQC8XjqOyenl9wRxaemJSUhVyY.jpg\",srcSet:\"https://framerusercontent.com/images/LyQC8XjqOyenl9wRxaemJSUhVyY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/LyQC8XjqOyenl9wRxaemJSUhVyY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/LyQC8XjqOyenl9wRxaemJSUhVyY.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/LyQC8XjqOyenl9wRxaemJSUhVyY.jpg 6081w\"},\"\"),QbsbPhov5:\"Sara Carevi\u0107\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v20\",activeLocale)??\"Maser\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+484+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gy2a4n-container\",nodeId:\"yqrvYuGiv\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"yqrvYuGiv\",layoutId:\"yqrvYuGiv\",pRhVbW3Up:addImageAlt({src:\"https://framerusercontent.com/images/Zy3a3T7nRYqkD0979xfAdYyVZk.jpg\",srcSet:\"https://framerusercontent.com/images/Zy3a3T7nRYqkD0979xfAdYyVZk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/Zy3a3T7nRYqkD0979xfAdYyVZk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/Zy3a3T7nRYqkD0979xfAdYyVZk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/Zy3a3T7nRYqkD0979xfAdYyVZk.jpg 6336w\"},\"\"),QbsbPhov5:\"Janja Glavina Mitrovi\u0107\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v21\",activeLocale)??\"Instruktor Body tehnike\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+484+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qm01cr-container\",nodeId:\"syS_tQHMX\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"syS_tQHMX\",layoutId:\"syS_tQHMX\",pRhVbW3Up:addImageAlt({src:\"https://framerusercontent.com/images/HKs34FRIDtYRNsa2cC61kBEIds.jpg\",srcSet:\"https://framerusercontent.com/images/HKs34FRIDtYRNsa2cC61kBEIds.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HKs34FRIDtYRNsa2cC61kBEIds.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/HKs34FRIDtYRNsa2cC61kBEIds.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/HKs34FRIDtYRNsa2cC61kBEIds.jpg 6224w\"},\"\"),QbsbPhov5:\"Gordana Novakovi\u0107\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v21\",activeLocale)??\"Instruktor Body tehnike\",variant:\"dYN0Jt4JR\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a735bb\",\"data-framer-name\":\"Team Row\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+968+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xl968y-container\",nodeId:\"ZOilOSOKL\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"ZOilOSOKL\",layoutId:\"ZOilOSOKL\",pRhVbW3Up:addImageAlt({positionX:\"52.5%\",positionY:\"21.9%\",src:\"https://framerusercontent.com/images/tqWOlk6sAdvFOTe5WGtYfV6hWv8.jpg\",srcSet:\"https://framerusercontent.com/images/tqWOlk6sAdvFOTe5WGtYfV6hWv8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/tqWOlk6sAdvFOTe5WGtYfV6hWv8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/tqWOlk6sAdvFOTe5WGtYfV6hWv8.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/tqWOlk6sAdvFOTe5WGtYfV6hWv8.jpg 5381w\"},\"\"),QbsbPhov5:\"Sini\u0161a Petrovi\u0107\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v19\",activeLocale)??\"Instruktor Body tehnike, Specijalist\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+968+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xmd9ex-container\",nodeId:\"DZtuibTj5\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"DZtuibTj5\",layoutId:\"DZtuibTj5\",pRhVbW3Up:addImageAlt({src:\"https://framerusercontent.com/images/vQEIMkEdmzS7Ky74kfReQL8o3lw.jpg\",srcSet:\"https://framerusercontent.com/images/vQEIMkEdmzS7Ky74kfReQL8o3lw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/vQEIMkEdmzS7Ky74kfReQL8o3lw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/vQEIMkEdmzS7Ky74kfReQL8o3lw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/vQEIMkEdmzS7Ky74kfReQL8o3lw.jpg 5776w\"},\"\"),QbsbPhov5:\"Kre\u0161imir Schiel\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v22\",activeLocale)??\"Istruktor Body tehnike\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+968+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d0r06u-container\",nodeId:\"BvJnMWzlU\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"BvJnMWzlU\",layoutId:\"BvJnMWzlU\",pRhVbW3Up:addImageAlt({src:\"https://framerusercontent.com/images/4mkOAouWOmvo8JpK8Rl1Kdp5mSw.jpg\",srcSet:\"https://framerusercontent.com/images/4mkOAouWOmvo8JpK8Rl1Kdp5mSw.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/4mkOAouWOmvo8JpK8Rl1Kdp5mSw.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/4mkOAouWOmvo8JpK8Rl1Kdp5mSw.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/4mkOAouWOmvo8JpK8Rl1Kdp5mSw.jpg 4989w\"},\"\"),QbsbPhov5:\"Tomislav \u0160trk\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v21\",activeLocale)??\"Instruktor Body tehnike\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+968+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19p3va9-container\",nodeId:\"pI5yPEGCZ\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"pI5yPEGCZ\",layoutId:\"pI5yPEGCZ\",pRhVbW3Up:addImageAlt({positionX:\"48.6%\",positionY:\"32.1%\",src:\"https://framerusercontent.com/images/udIChlmfzDAZz9OsoxSGtliDc98.jpg\",srcSet:\"https://framerusercontent.com/images/udIChlmfzDAZz9OsoxSGtliDc98.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/udIChlmfzDAZz9OsoxSGtliDc98.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/udIChlmfzDAZz9OsoxSGtliDc98.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/udIChlmfzDAZz9OsoxSGtliDc98.jpg 5573w\"},\"\"),QbsbPhov5:\"Zdravka \u0160krinjar\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v21\",activeLocale)??\"Instruktor Body tehnike\",variant:\"dYN0Jt4JR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:`max((${componentViewport?.width||\"100vw\"} - 90px) / 5, 1px)`,y:(componentViewport?.y||0)+0+0+0+3820+0+131+0+968+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e9g85d-container\",nodeId:\"FRrNB57jO\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AboutTeamCard,{height:\"100%\",id:\"FRrNB57jO\",layoutId:\"FRrNB57jO\",pRhVbW3Up:addImageAlt({src:\"https://framerusercontent.com/images/oRW1NXxItlUewS4jG19DWK3td8.jpg\",srcSet:\"https://framerusercontent.com/images/oRW1NXxItlUewS4jG19DWK3td8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/oRW1NXxItlUewS4jG19DWK3td8.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/oRW1NXxItlUewS4jG19DWK3td8.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/oRW1NXxItlUewS4jG19DWK3td8.jpg 6090w\"},\"\"),QbsbPhov5:\"Maja Tomljenovi\u0107\",style:{width:\"100%\"},uNFLaBT4L:getLocalizedValue(\"v21\",activeLocale)??\"Instruktor Body tehnike\",variant:\"dYN0Jt4JR\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ughlnn\",\"data-framer-name\":\"Section Numbers\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19etvtz\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+5478+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-davqlr-container\",nodeId:\"bjlEuwJUW\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"bjlEuwJUW\",layoutId:\"bjlEuwJUW\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Na\u0161e brojke\"})}),className:\"framer-3a15al\",\"data-framer-name\":\"Our numbers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11tm5w7\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y3d0f1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iibg2g\",\"data-framer-name\":\"Projects\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f2h6sx\",\"data-framer-name\":\"Number Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1us3kq-container\",isAuthoredByUser:true,nodeId:\"zhQxGxBft\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(NumberCounter,{endNumber:5e3,fontColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",fontFamily:\"inter\",fontSize:44,fontWeight:\"medium\",height:\"100%\",id:\"zhQxGxBft\",layoutId:\"zhQxGxBft\",loop:false,prefix:\"\",speed:10,startNumber:4500,suffix:\"+\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wbk9vn\",\"data-framer-name\":\"Lozenge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Klijenata\"})}),className:\"framer-6x5ngf\",\"data-framer-name\":\"Projects\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Vi\u0161e od 5,000 klijenata pro\u0161lo je kroz na\u0161e ruke tijekom dosada\u0161njeg rada. Hvala svima na ukazanom povjerenju \u2013 zajedno smo u\u010Dili, rasli, stjecali dragocjena iskustva i postajali sve bolji. Upravo zahvaljuju\u0107i njima danas smo tu gdje jesmo.\"})}),className:\"framer-3ho12v\",\"data-framer-name\":\"lorem ipsum orem ipsum ergot furia del west. lorem ipsum orem ipsum ergot furia del west.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ezollv\",\"data-framer-name\":\"Countries\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zlmxs5\",\"data-framer-name\":\"Number Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-163nzzv-container\",isAuthoredByUser:true,nodeId:\"poBKsDJzI\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(NumberCounter,{endNumber:4,fontColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",fontFamily:\"inter\",fontSize:44,fontWeight:\"medium\",height:\"100%\",id:\"poBKsDJzI\",layoutId:\"poBKsDJzI\",loop:false,prefix:\"\",speed:100,startNumber:1,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1io3wjx\",\"data-framer-name\":\"Lozenge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Lokacije\"})}),className:\"framer-1rf2abx\",\"data-framer-name\":\"Countries\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Uz na\u0161 glavni centar u Zagrebu, djelujemo i na lokacijama u Puli, Rijeci te tijekom ljetnog perioda u Jelsi na otoku Hvaru.\"})}),className:\"framer-10qpebu\",\"data-framer-name\":\"lorem ipsum orem ipsum ergot furia del west. lorem ipsum orem ipsum ergot furia del west.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12vevgc\",\"data-framer-name\":\"Awards\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y48s9z\",\"data-framer-name\":\"Number Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ekgh40-container\",isAuthoredByUser:true,nodeId:\"si2AXqHd4\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(NumberCounter,{endNumber:1e5,fontColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",fontFamily:\"inter\",fontSize:44,fontWeight:\"medium\",height:\"100%\",id:\"si2AXqHd4\",layoutId:\"si2AXqHd4\",loop:false,prefix:\"\",speed:0,startNumber:1e5,suffix:\"+\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13e4u0h\",\"data-framer-name\":\"Lozenge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"Sati treninga\"})}),className:\"framer-1bkrgp5\",\"data-framer-name\":\"Awwards\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Za automobil s 100,000 kilometara ka\u017Eu da je spreman za dodatna ulaganja \u2013 ili za prodaju. Mi, s vi\u0161e od 100,000 odra\u0111enih sati treninga, tek smo se zagrijali i punom snagom nastavljamo na\u0161e zajedni\u010Dko putovanje \u2013 zajedno s vama.\"})}),className:\"framer-lao2yk\",\"data-framer-name\":\"lorem ipsum orem ipsum ergot furia del west. lorem ipsum orem ipsum ergot furia del west.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x7ay54\",\"data-framer-name\":\"Team Member\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vs6iqd\",\"data-framer-name\":\"Number Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hxxg3g-container\",isAuthoredByUser:true,nodeId:\"ZzFHelF7y\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(NumberCounter,{endNumber:20,fontColor:\"var(--token-0e64c98e-2e3d-4034-8a86-e95f1a065f27, rgb(1, 1, 3))\",fontFamily:\"inter\",fontSize:44,fontWeight:\"medium\",height:\"100%\",id:\"ZzFHelF7y\",layoutId:\"ZzFHelF7y\",loop:false,prefix:\"\",speed:100,startNumber:16,suffix:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11srmwt\",\"data-framer-name\":\"Lozenge\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"\u010Clana tima\"})}),className:\"framer-1kdih7t\",\"data-framer-name\":\"Team mebers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11mlu8b\",\"data-styles-preset\":\"xxobpGKc2\",children:\"Na\u0161 vrhunski tim od 20 stru\u010Dnjaka stoji vam na raspolaganju na tri lokacije u Hrvatskoj \u2013 13 instruktora Body tehnike u Zagrebu, 4 u Puli i 3 u Rijeci, dok smo u Jelsi na Hvaru prisutni sezonski, prema potrebi.\"})}),className:\"framer-3t1sgm\",\"data-framer-name\":\"lorem ipsum orem ipsum ergot furia del west. lorem ipsum orem ipsum ergot furia del west.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-gr9axu hidden-xctdjl\",\"data-framer-name\":\"Section Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hesjha\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+6494+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aw4akt-container\",nodeId:\"tDS6LCEQ7\",rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(GlobalLineAnimationGlobalWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"nPpQfRvF3\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"V1IOI6Ysj\",height:\"100%\",id:\"tDS6LCEQ7\",layoutId:\"tDS6LCEQ7\",sjMku05M0:\"var(--token-98dd2e4b-2534-4771-a0e9-0adcb7a05c7c, rgba(0, 0, 0, 0.2))\",style:{height:\"100%\",width:\"100%\"},variant:\"V1IOI6Ysj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-towgad\",\"data-styles-preset\":\"SJt7fXVzX\",children:\"\u0160to ka\u017Eu na\u0161i klijenti\"})}),className:\"framer-k6gisf\",\"data-framer-name\":\"What our clients say\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:490,width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+0+0+6494+0+131,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xu6hfi-container\",nodeId:\"isddOqNqx\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JWlDAB7wN:{bYHp0vTOv:undefined,kBM7Fv7NS:undefined,ObBlL2Bkk:undefined,variant:\"u8lbWYdKm\",xSoFtQf1E:undefined}},children:/*#__PURE__*/_jsx(AboutTestimonialSlider,{bYHp0vTOv:\"11fwz63\",height:\"100%\",id:\"isddOqNqx\",kBM7Fv7NS:\"1gxl120\",layoutId:\"isddOqNqx\",ObBlL2Bkk:\"1xsxq08\",style:{width:\"100%\"},variant:\"OGufm1PK7\",width:\"100%\",xSoFtQf1E:\"1q54p9j\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vjpjEwsC4\"},implicitPathVariables:undefined},{href:{webPageId:\"vjpjEwsC4\"},implicitPathVariables:undefined},{href:{webPageId:\"vjpjEwsC4\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:620,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+7235,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rm84nt-container\",id:elementId2,nodeId:\"tjYrbNY12\",ref:ref3,rendersWithMotion:true,scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{__framer__variantAppearEffectEnabled:undefined,fayx_WUJb:resolvedLinks[2],variant:\"GGP0N56ps\"},JWlDAB7wN:{fayx_WUJb:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(GlobalSectionCTAWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref3,target:\"AdZfLnaLO\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,bJdYDnmQo:getLocalizedValue(\"v34\",activeLocale)??\"Budi dio tima\",fayx_WUJb:resolvedLinks[0],height:\"100%\",id:\"tjYrbNY12\",layoutId:\"tjYrbNY12\",style:{width:\"100%\"},variant:\"vpK9OOtl5\",width:\"100%\",ZDfZwYuPj:getLocalizedValue(\"v33\",activeLocale)??\"Pridru\u017Ei nam se\",zKDm7Bppc:\"https://player.vimeo.com/progressive_redirect/download/1070759762/container/65e9c5bd-9d87-4dee-9f84-8d4f401b345d/4234ecc4-35ef664e/timeline_10%20%281080p%29.mp4?expires=1743754677&loc=external&signature=c6d40ef7554ea9a310102319e0c01d0e1741b7c5c797ca0d7542eb906c64b5b7&user_id=112517791\",zow_NcOKW:getLocalizedValue(\"v35\",activeLocale)??\"Otvorene pozicije\"})})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:728,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7855,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vc90bs-container\",nodeId:\"QbYNrz2Hd\",scopeId:\"pNHeRDjTh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AwhOnpHay:{variant:\"In5qJquLm\"},JWlDAB7wN:{variant:\"Wkpy7bZw9\"}},children:/*#__PURE__*/_jsx(FooterFooter,{height:\"100%\",id:\"QbYNrz2Hd\",layoutId:\"QbYNrz2Hd\",style:{width:\"100%\"},variant:\"tNEqhl1aI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sG02M.framer-1swyn8x, .framer-sG02M .framer-1swyn8x { display: block; }\",\".framer-sG02M.framer-cnf1rz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-sG02M .framer-rj2wfk { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 0px; justify-content: flex-end; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: fixed; width: 100%; z-index: 10; }\",\".framer-sG02M .framer-1ag4w9u-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-sG02M .framer-1mkd901-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-sG02M.framer-16kqe9u { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 6; }\",\".framer-sG02M.framer-kswl8i-container { flex: none; height: 100vh; left: 0px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-sG02M .framer-5s77dq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 8; }\",\".framer-sG02M .framer-19w6r52 { align-content: center; align-items: center; background: linear-gradient(180deg, #545454 0%, rgb(255, 255, 255) 5%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-17y77xv-container { flex: 1 0 0px; height: 100vh; position: relative; width: 1px; z-index: 1; }\",\".framer-sG02M .framer-1b9kv4b { flex: none; height: 1px; overflow: visible; position: relative; scroll-margin-top: 400px; width: 100%; }\",\".framer-sG02M .framer-glf5ib { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 45px 15px 120px 15px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1aya5zp-container, .framer-sG02M .framer-1lczjkp-container, .framer-sG02M .framer-qb4kvx-container, .framer-sG02M .framer-akl4ip-container, .framer-sG02M .framer-davqlr-container, .framer-sG02M .framer-aw4akt-container { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-sG02M .framer-nkf3jp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1qgfui4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1cz5488, .framer-sG02M .framer-1wa3c4, .framer-sG02M .framer-4449xu, .framer-sG02M .framer-ro1ygi, .framer-sG02M .framer-3a15al, .framer-sG02M .framer-k6gisf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sG02M .framer-1vntaum { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-sG02M .framer-px28gr, .framer-sG02M .framer-eeufri { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; max-width: 460px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-sG02M .framer-1qdkp9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: 800px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-13440i7-container { flex: none; height: 100vh; position: relative; width: 1170px; }\",\".framer-sG02M .framer-wvbo1t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-sG02M .framer-13m96o2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-sG02M .framer-mrcw9b, .framer-sG02M .framer-qfbyyd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1cc03mr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-11y984a-container, .framer-sG02M .framer-86hxk9-container, .framer-sG02M .framer-169rezr-container, .framer-sG02M .framer-slg6ha-container, .framer-sG02M .framer-1mpfxo9-container, .framer-sG02M .framer-1xmpr7b-container, .framer-sG02M .framer-oidozf-container, .framer-sG02M .framer-16msg6p-container, .framer-sG02M .framer-1i99r2y-container, .framer-sG02M .framer-ubzl58-container, .framer-sG02M .framer-gy2a4n-container, .framer-sG02M .framer-qm01cr-container, .framer-sG02M .framer-1xl968y-container, .framer-sG02M .framer-1xmd9ex-container, .framer-sG02M .framer-1d0r06u-container, .framer-sG02M .framer-19p3va9-container, .framer-sG02M .framer-e9g85d-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-sG02M .framer-3m7hrf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1fpnxid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1b175wl { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 580px; opacity: 0.6; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-sG02M .framer-dsw670 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-120o5k3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 15px 120px 15px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1m7eh0e, .framer-sG02M .framer-19etvtz, .framer-sG02M .framer-hesjha { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-g1wxyb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-5m8q6y, .framer-sG02M .framer-6nrjve, .framer-sG02M .framer-1a735bb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-j54fpg, .framer-sG02M .framer-1h4gyw1, .framer-sG02M .framer-17485nb { align-self: stretch; background-color: #ffffff; flex: 1 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-sG02M .framer-ughlnn, .framer-sG02M .framer-gr9axu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 15px 120px 15px; position: relative; width: 100%; }\",\".framer-sG02M .framer-11tm5w7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1y3d0f1 { display: grid; flex: 0.5 0 0px; gap: 45px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-sG02M .framer-iibg2g, .framer-sG02M .framer-1ezollv, .framer-sG02M .framer-12vevgc, .framer-sG02M .framer-1x7ay54 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-sG02M .framer-1f2h6sx, .framer-sG02M .framer-zlmxs5, .framer-sG02M .framer-y48s9z, .framer-sG02M .framer-1vs6iqd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-sG02M .framer-1us3kq-container, .framer-sG02M .framer-163nzzv-container, .framer-sG02M .framer-ekgh40-container, .framer-sG02M .framer-hxxg3g-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-sG02M .framer-wbk9vn, .framer-sG02M .framer-1io3wjx, .framer-sG02M .framer-13e4u0h, .framer-sG02M .framer-11srmwt { align-content: center; align-items: center; background-color: #e1e1e1; border-bottom-left-radius: 55px; border-bottom-right-radius: 55px; border-top-left-radius: 55px; border-top-right-radius: 55px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 9px 20px 9px 20px; position: relative; width: min-content; }\",\".framer-sG02M .framer-6x5ngf, .framer-sG02M .framer-1rf2abx, .framer-sG02M .framer-1bkrgp5, .framer-sG02M .framer-1kdih7t { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-sG02M .framer-3ho12v, .framer-sG02M .framer-10qpebu, .framer-sG02M .framer-lao2yk, .framer-sG02M .framer-3t1sgm { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sG02M .framer-1xu6hfi-container, .framer-sG02M .framer-rm84nt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-sG02M .framer-1vc90bs-container { flex: none; height: auto; position: sticky; width: 100%; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sG02M.framer-cnf1rz, .framer-sG02M .framer-rj2wfk, .framer-sG02M .framer-5s77dq, .framer-sG02M .framer-19w6r52, .framer-sG02M .framer-glf5ib, .framer-sG02M .framer-nkf3jp, .framer-sG02M .framer-1qgfui4, .framer-sG02M .framer-1vntaum, .framer-sG02M .framer-1qdkp9e, .framer-sG02M .framer-wvbo1t, .framer-sG02M .framer-13m96o2, .framer-sG02M .framer-mrcw9b, .framer-sG02M .framer-1cc03mr, .framer-sG02M .framer-3m7hrf, .framer-sG02M .framer-1fpnxid, .framer-sG02M .framer-qfbyyd, .framer-sG02M .framer-dsw670, .framer-sG02M .framer-120o5k3, .framer-sG02M .framer-1m7eh0e, .framer-sG02M .framer-g1wxyb, .framer-sG02M .framer-5m8q6y, .framer-sG02M .framer-6nrjve, .framer-sG02M .framer-1a735bb, .framer-sG02M .framer-ughlnn, .framer-sG02M .framer-19etvtz, .framer-sG02M .framer-11tm5w7, .framer-sG02M .framer-iibg2g, .framer-sG02M .framer-1f2h6sx, .framer-sG02M .framer-wbk9vn, .framer-sG02M .framer-1ezollv, .framer-sG02M .framer-zlmxs5, .framer-sG02M .framer-1io3wjx, .framer-sG02M .framer-12vevgc, .framer-sG02M .framer-y48s9z, .framer-sG02M .framer-13e4u0h, .framer-sG02M .framer-1x7ay54, .framer-sG02M .framer-1vs6iqd, .framer-sG02M .framer-11srmwt, .framer-sG02M .framer-gr9axu, .framer-sG02M .framer-hesjha { gap: 0px; } .framer-sG02M.framer-cnf1rz > *, .framer-sG02M .framer-5s77dq > *, .framer-sG02M .framer-3m7hrf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-sG02M.framer-cnf1rz > :first-child, .framer-sG02M .framer-5s77dq > :first-child, .framer-sG02M .framer-glf5ib > :first-child, .framer-sG02M .framer-nkf3jp > :first-child, .framer-sG02M .framer-1qgfui4 > :first-child, .framer-sG02M .framer-1qdkp9e > :first-child, .framer-sG02M .framer-13m96o2 > :first-child, .framer-sG02M .framer-mrcw9b > :first-child, .framer-sG02M .framer-3m7hrf > :first-child, .framer-sG02M .framer-1fpnxid > :first-child, .framer-sG02M .framer-qfbyyd > :first-child, .framer-sG02M .framer-120o5k3 > :first-child, .framer-sG02M .framer-1m7eh0e > :first-child, .framer-sG02M .framer-g1wxyb > :first-child, .framer-sG02M .framer-ughlnn > :first-child, .framer-sG02M .framer-19etvtz > :first-child, .framer-sG02M .framer-iibg2g > :first-child, .framer-sG02M .framer-1f2h6sx > :first-child, .framer-sG02M .framer-1ezollv > :first-child, .framer-sG02M .framer-zlmxs5 > :first-child, .framer-sG02M .framer-12vevgc > :first-child, .framer-sG02M .framer-y48s9z > :first-child, .framer-sG02M .framer-1x7ay54 > :first-child, .framer-sG02M .framer-1vs6iqd > :first-child, .framer-sG02M .framer-gr9axu > :first-child, .framer-sG02M .framer-hesjha > :first-child { margin-top: 0px; } .framer-sG02M.framer-cnf1rz > :last-child, .framer-sG02M .framer-5s77dq > :last-child, .framer-sG02M .framer-glf5ib > :last-child, .framer-sG02M .framer-nkf3jp > :last-child, .framer-sG02M .framer-1qgfui4 > :last-child, .framer-sG02M .framer-1qdkp9e > :last-child, .framer-sG02M .framer-13m96o2 > :last-child, .framer-sG02M .framer-mrcw9b > :last-child, .framer-sG02M .framer-3m7hrf > :last-child, .framer-sG02M .framer-1fpnxid > :last-child, .framer-sG02M .framer-qfbyyd > :last-child, .framer-sG02M .framer-120o5k3 > :last-child, .framer-sG02M .framer-1m7eh0e > :last-child, .framer-sG02M .framer-g1wxyb > :last-child, .framer-sG02M .framer-ughlnn > :last-child, .framer-sG02M .framer-19etvtz > :last-child, .framer-sG02M .framer-iibg2g > :last-child, .framer-sG02M .framer-1f2h6sx > :last-child, .framer-sG02M .framer-1ezollv > :last-child, .framer-sG02M .framer-zlmxs5 > :last-child, .framer-sG02M .framer-12vevgc > :last-child, .framer-sG02M .framer-y48s9z > :last-child, .framer-sG02M .framer-1x7ay54 > :last-child, .framer-sG02M .framer-1vs6iqd > :last-child, .framer-sG02M .framer-gr9axu > :last-child, .framer-sG02M .framer-hesjha > :last-child { margin-bottom: 0px; } .framer-sG02M .framer-rj2wfk > *, .framer-sG02M .framer-19w6r52 > *, .framer-sG02M .framer-dsw670 > *, .framer-sG02M .framer-11tm5w7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sG02M .framer-rj2wfk > :first-child, .framer-sG02M .framer-19w6r52 > :first-child, .framer-sG02M .framer-1vntaum > :first-child, .framer-sG02M .framer-wvbo1t > :first-child, .framer-sG02M .framer-1cc03mr > :first-child, .framer-sG02M .framer-dsw670 > :first-child, .framer-sG02M .framer-5m8q6y > :first-child, .framer-sG02M .framer-6nrjve > :first-child, .framer-sG02M .framer-1a735bb > :first-child, .framer-sG02M .framer-11tm5w7 > :first-child, .framer-sG02M .framer-wbk9vn > :first-child, .framer-sG02M .framer-1io3wjx > :first-child, .framer-sG02M .framer-13e4u0h > :first-child, .framer-sG02M .framer-11srmwt > :first-child { margin-left: 0px; } .framer-sG02M .framer-rj2wfk > :last-child, .framer-sG02M .framer-19w6r52 > :last-child, .framer-sG02M .framer-1vntaum > :last-child, .framer-sG02M .framer-wvbo1t > :last-child, .framer-sG02M .framer-1cc03mr > :last-child, .framer-sG02M .framer-dsw670 > :last-child, .framer-sG02M .framer-5m8q6y > :last-child, .framer-sG02M .framer-6nrjve > :last-child, .framer-sG02M .framer-1a735bb > :last-child, .framer-sG02M .framer-11tm5w7 > :last-child, .framer-sG02M .framer-wbk9vn > :last-child, .framer-sG02M .framer-1io3wjx > :last-child, .framer-sG02M .framer-13e4u0h > :last-child, .framer-sG02M .framer-11srmwt > :last-child { margin-right: 0px; } .framer-sG02M .framer-glf5ib > *, .framer-sG02M .framer-mrcw9b > *, .framer-sG02M .framer-qfbyyd > *, .framer-sG02M .framer-1m7eh0e > *, .framer-sG02M .framer-19etvtz > *, .framer-sG02M .framer-iibg2g > *, .framer-sG02M .framer-1f2h6sx > *, .framer-sG02M .framer-1ezollv > *, .framer-sG02M .framer-zlmxs5 > *, .framer-sG02M .framer-12vevgc > *, .framer-sG02M .framer-y48s9z > *, .framer-sG02M .framer-1x7ay54 > *, .framer-sG02M .framer-1vs6iqd > *, .framer-sG02M .framer-hesjha > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-sG02M .framer-nkf3jp > *, .framer-sG02M .framer-13m96o2 > *, .framer-sG02M .framer-1fpnxid > *, .framer-sG02M .framer-120o5k3 > *, .framer-sG02M .framer-g1wxyb > *, .framer-sG02M .framer-ughlnn > *, .framer-sG02M .framer-gr9axu > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-sG02M .framer-1qgfui4 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sG02M .framer-1vntaum > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-sG02M .framer-1qdkp9e > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-sG02M .framer-wvbo1t > *, .framer-sG02M .framer-wbk9vn > *, .framer-sG02M .framer-1io3wjx > *, .framer-sG02M .framer-13e4u0h > *, .framer-sG02M .framer-11srmwt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sG02M .framer-1cc03mr > *, .framer-sG02M .framer-5m8q6y > *, .framer-sG02M .framer-6nrjve > *, .framer-sG02M .framer-1a735bb > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-sG02M.framer-cnf1rz { width: 810px; } .framer-sG02M .framer-glf5ib { justify-content: center; } .framer-sG02M .framer-1vntaum { width: 100%; } .framer-sG02M .framer-11tm5w7 { gap: 0px; } .framer-sG02M .framer-1y3d0f1 { flex: 0.66 0 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sG02M .framer-11tm5w7 { gap: 0px; } .framer-sG02M .framer-11tm5w7 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sG02M .framer-11tm5w7 > :first-child { margin-left: 0px; } .framer-sG02M .framer-11tm5w7 > :last-child { margin-right: 0px; } }}\",\"@media (max-width: 809px) { .framer-sG02M.framer-cnf1rz { width: 390px; } .framer-sG02M .framer-rj2wfk { flex-direction: column; order: 4; } .framer-sG02M .framer-1mkd901-container, .framer-sG02M .framer-19w6r52 { order: 0; } .framer-sG02M.framer-16kqe9u { background-color: unset; } .framer-sG02M .framer-5s77dq, .framer-sG02M .framer-glf5ib { order: 2; } .framer-sG02M .framer-17y77xv-container { height: 90vh; } .framer-sG02M .framer-1b9kv4b { height: auto; order: 1; } .framer-sG02M .framer-nkf3jp { gap: 30px; height: min-content; } .framer-sG02M .framer-1vntaum { flex-direction: column; height: 658px; overflow: visible; width: 100%; } .framer-sG02M .framer-px28gr, .framer-sG02M .framer-eeufri { flex: none; max-width: unset; width: 100%; } .framer-sG02M .framer-1qdkp9e { gap: 30px; height: 391px; } .framer-sG02M .framer-13440i7-container { height: 100%; width: 100%; } .framer-sG02M .framer-wvbo1t { order: 3; padding: 0px 15px 120px 15px; } .framer-sG02M .framer-13m96o2 { gap: 30px; padding: 0px; } .framer-sG02M .framer-1cc03mr { flex-direction: column; gap: 45px; } .framer-sG02M .framer-11y984a-container, .framer-sG02M .framer-86hxk9-container, .framer-sG02M .framer-169rezr-container, .framer-sG02M .framer-slg6ha-container { flex: none; width: 100%; } .framer-sG02M .framer-3m7hrf { gap: 30px; order: 4; } .framer-sG02M .framer-ughlnn { order: 7; } .framer-sG02M .framer-1y3d0f1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; justify-content: center; } .framer-sG02M .framer-iibg2g, .framer-sG02M .framer-1ezollv, .framer-sG02M .framer-12vevgc, .framer-sG02M .framer-1x7ay54 { align-self: unset; height: min-content; } .framer-sG02M .framer-1f2h6sx, .framer-sG02M .framer-zlmxs5, .framer-sG02M .framer-y48s9z, .framer-sG02M .framer-1vs6iqd { gap: 8px; } .framer-sG02M .framer-3ho12v, .framer-sG02M .framer-10qpebu, .framer-sG02M .framer-lao2yk { width: 80%; } .framer-sG02M .framer-3t1sgm { width: 75%; } .framer-sG02M .framer-rm84nt-container { order: 10; } .framer-sG02M .framer-1vc90bs-container { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-sG02M .framer-rj2wfk, .framer-sG02M .framer-nkf3jp, .framer-sG02M .framer-1vntaum, .framer-sG02M .framer-1qdkp9e, .framer-sG02M .framer-13m96o2, .framer-sG02M .framer-1cc03mr, .framer-sG02M .framer-3m7hrf, .framer-sG02M .framer-1y3d0f1, .framer-sG02M .framer-1f2h6sx, .framer-sG02M .framer-zlmxs5, .framer-sG02M .framer-y48s9z, .framer-sG02M .framer-1vs6iqd { gap: 0px; } .framer-sG02M .framer-rj2wfk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-sG02M .framer-rj2wfk > :first-child, .framer-sG02M .framer-nkf3jp > :first-child, .framer-sG02M .framer-1vntaum > :first-child, .framer-sG02M .framer-1qdkp9e > :first-child, .framer-sG02M .framer-13m96o2 > :first-child, .framer-sG02M .framer-1cc03mr > :first-child, .framer-sG02M .framer-3m7hrf > :first-child, .framer-sG02M .framer-1y3d0f1 > :first-child, .framer-sG02M .framer-1f2h6sx > :first-child, .framer-sG02M .framer-zlmxs5 > :first-child, .framer-sG02M .framer-y48s9z > :first-child, .framer-sG02M .framer-1vs6iqd > :first-child { margin-top: 0px; } .framer-sG02M .framer-rj2wfk > :last-child, .framer-sG02M .framer-nkf3jp > :last-child, .framer-sG02M .framer-1vntaum > :last-child, .framer-sG02M .framer-1qdkp9e > :last-child, .framer-sG02M .framer-13m96o2 > :last-child, .framer-sG02M .framer-1cc03mr > :last-child, .framer-sG02M .framer-3m7hrf > :last-child, .framer-sG02M .framer-1y3d0f1 > :last-child, .framer-sG02M .framer-1f2h6sx > :last-child, .framer-sG02M .framer-zlmxs5 > :last-child, .framer-sG02M .framer-y48s9z > :last-child, .framer-sG02M .framer-1vs6iqd > :last-child { margin-bottom: 0px; } .framer-sG02M .framer-nkf3jp > *, .framer-sG02M .framer-1vntaum > *, .framer-sG02M .framer-1qdkp9e > *, .framer-sG02M .framer-13m96o2 > *, .framer-sG02M .framer-3m7hrf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-sG02M .framer-1cc03mr > *, .framer-sG02M .framer-1y3d0f1 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-sG02M .framer-1f2h6sx > *, .framer-sG02M .framer-zlmxs5 > *, .framer-sG02M .framer-y48s9z > *, .framer-sG02M .framer-1vs6iqd > * { margin: 0px; margin-bottom: calc(7.5px / 2); margin-top: calc(7.5px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7930\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JWlDAB7wN\":{\"layout\":[\"fixed\",\"auto\"]},\"AwhOnpHay\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"SwVjGceLR\":{\"pattern\":\":SwVjGceLR\",\"name\":\"hero\"},\"WpGM4Tu3O\":{\"pattern\":\":WpGM4Tu3O\",\"name\":\"section-header\"},\"tjYrbNY12\":{\"pattern\":\":tjYrbNY12\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FramerpNHeRDjTh=withCSS(Component,css,\"framer-sG02M\");export default FramerpNHeRDjTh;FramerpNHeRDjTh.displayName=\"Legacy\";FramerpNHeRDjTh.defaultProps={height:7930,width:1200};addFonts(FramerpNHeRDjTh,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavigationNavigationDesktopFonts,...NavigationNavigationMobileFonts,...NavigationMobileFullNavigationFonts,...AboutAboutHeaderFonts,...GlobalLineAnimationGlobalFonts,...VimeoFonts,...AboutCoreValueFonts,...AccordionAccordionFonts,...AboutTeamCardFonts,...NumberCounterFonts,...AboutTestimonialSliderFonts,...GlobalSectionCTAFonts,...FooterFooterFonts,...UtilitiesChevronCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpNHeRDjTh\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7930\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"SwVjGceLR\\\":{\\\"pattern\\\":\\\":SwVjGceLR\\\",\\\"name\\\":\\\"hero\\\"},\\\"WpGM4Tu3O\\\":{\\\"pattern\\\":\\\":WpGM4Tu3O\\\",\\\"name\\\":\\\"section-header\\\"},\\\"tjYrbNY12\\\":{\\\"pattern\\\":\\\":tjYrbNY12\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JWlDAB7wN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AwhOnpHay\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "gsCAAA,SAASA,GAAgBC,EAAEC,EAAE,CAAC,GAAG,EAAED,aAAaC,GAAG,MAAM,IAAI,UAAU,mCAAmC,CAAC,CAAC,SAASC,GAAkBF,EAAEC,EAAE,CAAC,QAAQE,EAAE,EAAEA,EAAEF,EAAE,OAAOE,IAAI,CAAC,IAAIC,EAAEH,EAAEE,CAAC,EAAEC,EAAE,WAAWA,EAAE,YAAY,GAAMA,EAAE,aAAa,GAAK,UAAUA,IAAIA,EAAE,SAAS,IAAM,OAAO,eAAeJ,EAAEI,EAAE,IAAIA,CAAC,EAAE,CAAC,SAASC,GAAaL,EAAEC,EAAEE,EAAE,CAAC,OAAAF,GAAGC,GAAkBF,EAAE,UAAUC,CAAC,EAAEE,GAAGD,GAAkBF,EAAEG,CAAC,EAASH,CAAC,CAIzY,IAAIA,GAAgB,OAAOM,EAArB,KAAiD,CAAC,EAAE,SAAS,KAAKA,CAAM,IAA3C,kBAOnC,SAASC,GAAcP,EAAEC,EAAE,CAAC,OAAWD,EAAE,QAAQC,EAAE,YAAY,CAAC,IAA7B,EAA+BD,EAAE,GAAG,OAAOC,EAAE,YAAY,CAAC,EAAE,OAAOD,EAAE,OAAO,EAAE,CAAC,EAAE,YAAY,CAAC,EAAE,OAAOA,EAAE,OAAO,CAAC,CAAC,CAAC,CAMtJ,SAASQ,GAAaR,EAAE,CAAC,MAAO,GAAQA,GAAOA,EAAE,WAAN,GAAgB,aAAaA,GAAGA,EAAE,eAAeA,EAAE,cAAc,YAAY,CAQxH,SAASS,GAAUT,EAAE,CAAC,MAAM,CAAC,MAAM,WAAWA,CAAC,CAAC,GAAG,SAASA,CAAC,GAAG,KAAK,MAAMA,CAAC,GAAGA,CAAC,CAMhF,SAASU,GAAWV,EAAE,CAAC,MAAM,qDAAqD,KAAKA,CAAC,CAAC,CAOzF,SAASW,IAAa,CAAC,IAAIX,EAAE,UAAU,OAAO,GAAY,UAAU,CAAC,IAApB,OAAsB,UAAU,CAAC,EAAE,CAAC,EAAMC,EAAED,EAAE,GAAOG,EAAEH,EAAE,IAAQI,EAAEH,GAAGE,EAAE,GAAG,CAACC,EAAE,MAAM,IAAI,MAAM,6GAA6G,EAAE,GAAGK,GAAUL,CAAC,EAAE,MAAM,qBAAqB,OAAOA,CAAC,EAAE,GAAGM,GAAWN,CAAC,EAAE,OAAOA,EAAE,QAAQ,QAAQ,QAAQ,EAAE,MAAGH,EAAQ,IAAI,UAAU,SAAI,OAAOA,EAAE,iCAA4B,CAAC,EAAQ,IAAI,UAAU,SAAI,OAAOG,EAAE,gCAA2B,CAAC,CAAC,CAAC,IAAIH,GAAgB,OAAO,MAAM,UAAU,QAArC,IAAiDE,GAAgB,OAAOS,EAArB,KAA2C,OAAOA,EAAO,YAA5B,IAAwC,GAAG,CAACZ,KAAI,CAACC,IAAG,CAACE,IAAG,MAAM,IAAI,MAAM,+DAA+D,EAAE,IAAIC,GAAgB,OAAO,WAArB,IAAgC,WAAyB,OAAOQ,EAArB,IAA4BA,EAAqB,OAAON,EAArB,IAA4BA,EAAqB,OAAO,KAArB,IAA0B,KAAK,CAAC,EAAE,SAASO,GAAqBb,EAAEC,EAAE,CAAC,OAAOA,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAED,EAAEC,EAAEA,EAAE,OAAO,EAAEA,EAAE,QACh7B;AAAA;AAAA;AAAA;AAAA;AAAA,GAKG,EAAE,SAASD,EAAE,CAAC,GAAG,CAACA,EAAE,QAAQ,CAAC,IAAIC,EAAE,OAAO,UAAU,eAAmBa,EAAe,SAASd,EAAEC,EAAEE,EAAE,CAAC,OAAO,eAAe,OAAO,eAAeH,EAAEC,EAAE,CAAC,aAAa,GAAK,SAAS,GAAK,MAAME,CAAC,CAAC,EAAEH,EAAEC,CAAC,EAAEE,CAAC,EAAEH,EAAE,QAAQ,UAAU,CAAC,SAASe,GAAS,CAAC,GAAY,OAAT,OAAc,MAAM,IAAI,UAAU,oCAAoC,EAA+C,GAA7CD,EAAe,KAAK,MAAME,EAAM,UAAU,CAAC,EAAK,UAAU,OAAO,EAAE,MAAM,IAAI,UAAU,mCAAmC,CAAC,CAACF,EAAeC,EAAQ,UAAU,SAAU,SAASf,EAAE,CAA8B,GAA7BiB,EAAc,KAAK,QAAQ,EAAK,CAACC,EAASlB,CAAC,EAAE,MAAO,GAAM,IAAIC,EAAED,EAAE,KAAK,GAAG,EAAE,OAAGC,GAAGA,EAAE,CAAC,IAAID,GAAG,OAAOA,EAAE,KAAK,GAAG,EAAS,IAAY,EAAK,CAAE,EAAEc,EAAeC,EAAQ,UAAU,MAAO,SAASf,EAAE,CAA2B,GAA1BiB,EAAc,KAAK,KAAK,EAAKC,EAASlB,CAAC,EAAE,CAAC,IAAIC,EAAED,EAAE,KAAK,GAAG,EAAE,OAAOC,GAAGA,EAAE,CAAC,IAAID,EAAEC,EAAE,CAAC,EAAE,OAAO,CAAE,EAAEa,EAAeC,EAAQ,UAAU,MAAO,SAASf,EAAE,CAA2B,GAA1BiB,EAAc,KAAK,KAAK,EAAK,CAACC,EAASlB,CAAC,EAAE,MAAO,GAAM,IAAIC,EAAED,EAAE,KAAK,GAAG,EAAE,MAAM,EAAE,CAACC,GAAGA,EAAE,CAAC,IAAID,EAAE,CAAE,EAAEc,EAAeC,EAAQ,UAAU,MAAO,SAASf,EAAEC,EAAE,CAA2B,GAA1BgB,EAAc,KAAK,KAAK,EAAK,CAACC,EAASlB,CAAC,EAAE,MAAM,IAAI,UAAU,oCAAoC,EAAE,IAAIG,EAAEH,EAAE,KAAK,GAAG,EAAE,OAAGG,GAAGA,EAAE,CAAC,IAAIH,GAAGG,EAAE,CAAC,EAAEF,EAAS,OAAKa,EAAed,EAAE,KAAK,IAAI,CAACA,EAAEC,CAAC,CAAC,EAAS,KAAI,CAAE,EAAE,SAASgB,EAAcjB,EAAEG,EAAE,CAAC,GAAG,CAACe,EAASlB,CAAC,GAAG,CAACC,EAAE,KAAKD,EAAE,KAAK,EAAE,MAAM,IAAI,UAAUG,EAAE,2CAA2C,OAAOH,CAAC,CAAC,CAAC,SAASgB,EAAMhB,EAAE,CAAC,OAAOA,EAAE,IAAImB,EAAK,EAAE,IAAIA,EAAK,CAAC,CAAC,SAASA,GAAM,CAAC,OAAO,KAAK,OAAO,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC,CAAC,OAAAL,EAAeC,EAAQ,YAAY,EAAI,EAASA,CAAO,EAAE,EAAE,SAASG,EAASlB,EAAE,CAAC,OAAO,OAAOA,CAAC,IAAIA,CAAC,CAAC,GAAiB,OAAO,KAArB,IAA0B,KAAmB,OAAOY,EAArB,IAA4BA,GAAsB,OAAOR,GAArB,IAAuBA,GAAE,EAAE,IAAIgB,GAAEP,GAAsB,SAASb,EAAE,EAAE,SAAaC,EAAE,EAAEG,EAAE,CAAC,EAAEH,CAAC,EAAE,EAAEA,CAAC,GAAGG,EAAE,EAAEJ,EAAE,UAAUA,EAAE,QAAQ,EAAEC,CAAC,EAAE,GAAG,WAAwB,OAAOG,GAApB,IAAsBA,IAAI,UAAc,CAAC,IAAIJ,EAAEC,EAAEE,EAAEC,EAAE,OAAO,UAAU,SAASgB,EAAe,OAAO,aAApB,IAAiC,SAAepB,EAAE,CAAC,OAAO,aAAaA,CAAC,CAAC,EAAE,WAAW,GAAG,CAAC,OAAO,eAAe,CAAC,EAAE,IAAI,CAAC,CAAC,EAAEA,EAAE,SAAqBA,EAAEC,EAAEE,EAAEC,EAAE,CAAC,OAAO,OAAO,eAAeJ,EAAEC,EAAE,CAAC,MAAME,EAAE,SAAS,GAAK,aAAqBC,IAAR,EAAS,CAAC,CAAC,CAAC,MAAC,CAASJ,EAAE,SAAqBA,EAAEC,EAAEE,EAAE,CAAC,OAAAH,EAAEC,CAAC,EAAEE,EAASH,CAAC,CAAC,CAACG,EAAE,UAAgB,CAAC,IAAIH,EAAEG,EAAEC,EAAE,SAASiB,EAAKrB,EAAEC,EAAE,CAAC,KAAK,GAAGD,EAAE,KAAK,KAAKC,EAAE,KAAK,KAAK,MAAM,CAAC,MAAM,CAAC,IAAI,SAAaA,EAAEmB,EAAE,CAAChB,EAAE,IAAIiB,EAAKpB,EAAEmB,CAAC,EAAEjB,EAAEA,EAAE,KAAKC,EAAEJ,EAAEI,EAAED,EAAEC,EAAEA,EAAE,MAAM,EAAE,MAAM,UAAgB,CAAC,IAAIA,EAAEJ,EAAe,IAAbA,EAAEG,EAAEF,EAAE,OAAaG,GAAGA,EAAE,GAAG,KAAKA,EAAE,IAAI,EAAEA,EAAEA,EAAE,IAAK,CAAC,CAAC,EAAE,EAAE,SAASkB,EAAStB,EAAEI,EAAE,CAACD,EAAE,IAAIH,EAAEI,CAAC,EAAEH,IAAIA,EAAEmB,EAAEjB,EAAE,KAAK,EAAE,CAAC,SAASoB,EAAWvB,EAAE,CAAC,IAAIC,EAAEE,EAAE,OAAOH,EAAE,OAAMA,GAAN,MAAmBG,GAAV,UAAyBA,GAAZ,aAAgBF,EAAED,EAAE,MAAwB,OAAOC,GAAnB,YAAsBA,CAAC,CAAC,SAASuB,GAAQ,CAAC,QAAQxB,EAAE,EAAEA,EAAE,KAAK,MAAM,OAAOA,IAAIyB,EAAe,KAAS,KAAK,QAAT,EAAe,KAAK,MAAMzB,CAAC,EAAE,QAAQ,KAAK,MAAMA,CAAC,EAAE,QAAQ,KAAK,MAAMA,CAAC,CAAC,EAAE,KAAK,MAAM,OAAO,CAAC,CAAC,SAASyB,EAAezB,EAAEC,EAAEE,EAAE,CAAC,IAAIC,EAAEgB,EAAE,GAAG,CAAYnB,IAAR,GAAUE,EAAE,OAAOH,EAAE,GAAG,GAAOI,EAASH,IAAP,GAASD,EAAE,IAAIC,EAAE,KAAK,OAAOD,EAAE,GAAG,EAAEI,IAAID,EAAE,QAAQA,EAAE,OAAO,UAAU,qBAAqB,CAAC,GAAGiB,EAAEG,EAAWnB,CAAC,GAAGgB,EAAE,KAAKhB,EAAED,EAAE,QAAQA,EAAE,MAAM,EAAEA,EAAE,QAAQC,CAAC,EAAE,OAAOJ,EAAN,CAASG,EAAE,OAAOH,CAAC,CAAC,CAAC,CAAC,SAAS0B,EAAQ1B,EAAE,CAAC,IAAIC,EAAEE,EAAE,KAAK,GAAG,CAACA,EAAE,UAAU,CAACA,EAAE,UAAU,GAAKA,EAAE,MAAMA,EAAEA,EAAE,KAAK,GAAG,EAAIF,EAAEsB,EAAWvB,CAAC,GAAEsB,EAAU,UAAU,CAAC,IAAIlB,EAAE,IAAIuB,EAAexB,CAAC,EAAE,GAAG,CAACF,EAAE,KAAKD,EAAG,UAAoB,CAAC0B,EAAQ,MAAMtB,EAAE,SAAS,CAAC,EAAI,UAAmB,CAACwB,EAAO,MAAMxB,EAAE,SAAS,CAAC,CAAE,CAAC,OAAOJ,EAAN,CAAS4B,EAAO,KAAKxB,EAAEJ,CAAC,CAAC,CAAC,CAAE,GAAOG,EAAE,IAAIH,EAAEG,EAAE,MAAM,EAAEA,EAAE,MAAM,OAAO,GAAGmB,EAASE,EAAOrB,CAAC,EAAE,OAAOH,EAAN,CAAS4B,EAAO,KAAK,IAAID,EAAexB,CAAC,EAAEH,CAAC,CAAC,EAAE,CAAC,SAAS4B,EAAO5B,EAAE,CAAC,IAAIC,EAAE,KAASA,EAAE,YAAWA,EAAE,UAAU,GAAKA,EAAE,MAAMA,EAAEA,EAAE,KAAKA,EAAE,IAAID,EAAEC,EAAE,MAAM,EAAEA,EAAE,MAAM,OAAO,GAAGqB,EAASE,EAAOvB,CAAC,EAAE,CAAC,SAAS4B,EAAgB7B,EAAEC,EAAEE,EAAEC,EAAE,CAAC,QAAQgB,EAAE,EAAEA,EAAEnB,EAAE,OAAOmB,KAAK,SAAcA,EAAE,CAACpB,EAAE,QAAQC,EAAEmB,CAAC,CAAC,EAAE,KAAM,SAAoBpB,EAAE,CAACG,EAAEiB,EAAEpB,CAAC,CAAC,EAAGI,CAAC,CAAC,GAAGgB,CAAC,CAAC,CAAC,SAASO,EAAe3B,EAAE,CAAC,KAAK,IAAIA,EAAE,KAAK,UAAU,EAAK,CAAC,SAAS8B,EAAQ9B,EAAE,CAAC,KAAK,QAAQA,EAAE,KAAK,MAAM,EAAE,KAAK,UAAU,GAAM,KAAK,MAAM,CAAC,EAAE,KAAK,IAAI,MAAM,CAAC,SAAS+B,EAAQ/B,EAAE,CAAC,GAAe,OAAOA,GAAnB,WAAqB,MAAM,UAAU,gBAAgB,EAAE,GAAO,KAAK,UAAT,EAAiB,MAAM,UAAU,eAAe,EAAE,KAAK,QAAQ,EAAE,IAAIC,EAAE,IAAI6B,EAAQ,IAAI,EAAE,KAAK,KAAK,SAAc9B,EAAEG,EAAE,CAAC,IAAIC,EAAE,CAAC,QAAoB,OAAOJ,GAAnB,YAAsBA,EAAE,QAAoB,OAAOG,GAAnB,YAAsBA,CAAC,EAAE,OAAAC,EAAE,QAAQ,IAAI,KAAK,YAAa,SAAsBJ,EAAEC,EAAE,CAAC,GAAe,OAAOD,GAAnB,YAAkC,OAAOC,GAAnB,WAAqB,MAAM,UAAU,gBAAgB,EAAEG,EAAE,QAAQJ,EAAEI,EAAE,OAAOH,CAAC,CAAE,EAAEA,EAAE,MAAM,KAAKG,CAAC,EAAMH,EAAE,QAAN,GAAaqB,EAASE,EAAOvB,CAAC,EAASG,EAAE,OAAO,EAAE,KAAK,MAAM,SAAiBJ,EAAE,CAAC,OAAO,KAAK,KAAK,OAAOA,CAAC,CAAC,EAAE,GAAG,CAACA,EAAE,KAAK,OAAQ,SAAuBA,EAAE,CAAC0B,EAAQ,KAAKzB,EAAED,CAAC,CAAC,EAAI,SAAsBA,EAAE,CAAC4B,EAAO,KAAK3B,EAAED,CAAC,CAAC,CAAE,CAAC,OAAOA,EAAN,CAAS4B,EAAO,KAAK3B,EAAED,CAAC,CAAC,CAAC,CAAC,IAAIgC,EAAEhC,EAAE,CAAC,EAAE,cAAc+B,EAAQ,EAAK,EAAE,OAAAA,EAAQ,UAAUC,EAAEhC,EAAEgC,EAAE,UAAU,EAAE,EAAK,EAAEhC,EAAE+B,EAAQ,UAAW,SAAyB/B,EAAE,CAAC,IAAIC,EAAE,KAAK,OAAOD,GAAa,OAAOA,GAAjB,UAAwBA,EAAE,UAAN,EAAcA,EAAE,IAAIC,EAAG,SAAkBA,EAAEE,EAAE,CAAC,GAAe,OAAOF,GAAnB,YAAkC,OAAOE,GAAnB,WAAqB,MAAM,UAAU,gBAAgB,EAAEF,EAAED,CAAC,CAAC,CAAE,CAAC,CAAE,EAAEA,EAAE+B,EAAQ,SAAU,SAAwB/B,EAAE,CAAC,OAAO,IAAI,KAAM,SAAkBC,EAAEE,EAAE,CAAC,GAAe,OAAOF,GAAnB,YAAkC,OAAOE,GAAnB,WAAqB,MAAM,UAAU,gBAAgB,EAAEA,EAAEH,CAAC,CAAC,CAAE,CAAC,CAAE,EAAEA,EAAE+B,EAAQ,MAAO,SAAqB/B,EAAE,CAAC,IAAIC,EAAE,KAAK,OAAwBG,EAAE,KAAKJ,CAAC,GAA1B,iBAA4BC,EAAE,OAAO,UAAU,cAAc,CAAC,EAAMD,EAAE,SAAN,EAAaC,EAAE,QAAQ,CAAC,CAAC,EAAE,IAAIA,EAAG,SAAkBE,EAAEC,EAAE,CAAC,GAAe,OAAOD,GAAnB,YAAkC,OAAOC,GAAnB,WAAqB,MAAM,UAAU,gBAAgB,EAAE,IAAIgB,EAAEpB,EAAE,OAAOgC,EAAE,MAAMZ,CAAC,EAAEa,EAAE,EAAEJ,EAAgB5B,EAAED,EAAG,SAAkBA,EAAEC,GAAE,CAAC+B,EAAEhC,CAAC,EAAEC,GAAE,EAAEgC,IAAIb,GAAGjB,EAAE6B,CAAC,CAAC,EAAG5B,CAAC,CAAC,CAAE,CAAC,CAAE,EAAEJ,EAAE+B,EAAQ,OAAQ,SAAsB/B,EAAE,CAAC,IAAIC,EAAE,KAAK,OAAwBG,EAAE,KAAKJ,CAAC,GAA1B,iBAA4BC,EAAE,OAAO,UAAU,cAAc,CAAC,EAAE,IAAIA,EAAG,SAAkBE,EAAEC,EAAE,CAAC,GAAe,OAAOD,GAAnB,YAAkC,OAAOC,GAAnB,WAAqB,MAAM,UAAU,gBAAgB,EAAEyB,EAAgB5B,EAAED,EAAG,SAAkBA,EAAEC,EAAE,CAACE,EAAEF,CAAC,CAAC,EAAGG,CAAC,CAAC,CAAE,CAAC,CAAE,EAAS2B,CAAO,CAAE,CAAC,CAAE,EAAMC,GAAE,IAAI,QASpjL,SAASE,GAAclC,EAAEC,EAAEE,EAAE,CAAC,IAAIC,EAAE4B,GAAE,IAAIhC,EAAE,OAAO,GAAG,CAAC,EAAEC,KAAKG,IAAIA,EAAEH,CAAC,EAAE,CAAC,GAAGG,EAAEH,CAAC,EAAE,KAAKE,CAAC,EAAE6B,GAAE,IAAIhC,EAAE,QAAQI,CAAC,CAAC,CAO1G,SAAS+B,GAAanC,EAAEC,EAAE,CAAC,IAAIE,EAAE6B,GAAE,IAAIhC,EAAE,OAAO,GAAG,CAAC,EAAE,OAAOG,EAAEF,CAAC,GAAG,CAAC,CAAC,CAQrE,SAASmC,GAAepC,EAAEC,EAAEE,EAAE,CAAC,IAAIC,EAAE4B,GAAE,IAAIhC,EAAE,OAAO,GAAG,CAAC,EAAE,GAAG,CAACI,EAAEH,CAAC,EAAE,MAAO,GAAK,GAAG,CAACE,EAAG,OAAAC,EAAEH,CAAC,EAAE,CAAC,EAAE+B,GAAE,IAAIhC,EAAE,QAAQI,CAAC,EAAS,GAAK,IAAIgB,EAAEhB,EAAEH,CAAC,EAAE,QAAQE,CAAC,EAAE,OAAKiB,IAAL,IAAQhB,EAAEH,CAAC,EAAE,OAAOmB,EAAE,CAAC,EAAEY,GAAE,IAAIhC,EAAE,QAAQI,CAAC,EAASA,EAAEH,CAAC,GAAOG,EAAEH,CAAC,EAAE,SAAT,CAAe,CAO3N,SAASoC,GAAerC,EAAEC,EAAE,CAAC,IAAIE,EAAEgC,GAAanC,EAAEC,CAAC,EAAE,GAAGE,EAAE,OAAO,EAAE,MAAO,GAAM,IAAIC,EAAED,EAAE,MAAM,EAAE,OAAAiC,GAAepC,EAAEC,EAAEG,CAAC,EAASA,CAAC,CAO9H,SAASkC,GAActC,EAAEC,EAAE,CAAC,IAAIE,EAAE6B,GAAE,IAAIhC,CAAC,EAAEgC,GAAE,IAAI/B,EAAEE,CAAC,EAAE6B,GAAE,OAAOhC,CAAC,CAAC,CAAC,IAAIiC,GAAE,CAAC,YAAY,WAAW,aAAa,SAAS,QAAQ,WAAW,MAAM,SAAS,KAAK,qBAAqB,WAAW,OAAO,YAAY,WAAW,QAAQ,cAAc,WAAW,aAAa,QAAQ,YAAY,QAAQ,cAAc,MAAM,OAAO,EAOhU,SAASM,GAAoBvC,EAAE,CAAC,IAAIC,EAAE,UAAU,OAAO,GAAY,UAAU,CAAC,IAApB,OAAsB,UAAU,CAAC,EAAE,CAAC,EAAE,OAAOgC,GAAE,OAAQ,SAAShC,EAAE,EAAE,CAAC,IAAIG,EAAEJ,EAAE,aAAa,cAAc,OAAO,CAAC,CAAC,EAAE,OAACI,GAAQA,IAAL,MAAUH,EAAE,CAAC,EAAOG,IAAL,GAAO,EAAEA,GAAUH,CAAC,EAAGA,CAAC,CAAC,CAOzN,SAASuC,GAAYxC,EAAEC,EAAE,CAAC,IAAIE,EAAEH,EAAE,KAAK,GAAG,CAACC,EAAE,MAAM,IAAI,UAAU,6BAA6B,EAAE,GAAUA,EAAE,aAAa,wBAAwB,IAA9C,KAAgD,OAAOA,EAAE,cAAc,QAAQ,EAAE,IAAIG,EAAE,SAAS,cAAc,KAAK,EAAE,OAAAA,EAAE,UAAUD,EAAEF,EAAE,YAAYG,EAAE,UAAU,EAAEH,EAAE,aAAa,yBAAyB,MAAM,EAASA,EAAE,cAAc,QAAQ,CAAC,CAQlV,SAASwC,GAAczC,EAAE,CAAC,IAAIC,EAAE,UAAU,OAAO,GAAY,UAAU,CAAC,IAApB,OAAsB,UAAU,CAAC,EAAE,CAAC,EAAME,EAAE,UAAU,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO,OAAO,IAAI,QAAS,SAASC,EAAEgB,EAAE,CAAC,GAAG,CAACV,GAAWV,CAAC,EAAE,MAAM,IAAI,UAAU,SAAI,OAAOA,EAAE,gCAA2B,CAAC,EAAE,IAAIgC,EAAE,yCAAyC,OAAO,mBAAmBhC,CAAC,CAAC,EAAE,QAAQiC,KAAKhC,EAAEA,EAAE,eAAegC,CAAC,IAAID,GAAG,IAAI,OAAOC,EAAE,GAAG,EAAE,OAAO,mBAAmBhC,EAAEgC,CAAC,CAAC,CAAC,GAAG,IAAIS,EAAE,mBAAmB9B,EAAO,IAAI,eAAe,IAAI,eAAe8B,EAAE,KAAK,MAAMV,EAAE,EAAI,EAAEU,EAAE,OAAO,UAAU,CAAC,GAASA,EAAE,SAAR,IAAe,GAASA,EAAE,SAAR,IAAe,GAAG,CAAC,IAAIzC,EAAE,KAAK,MAAMyC,EAAE,YAAY,EAAE,GAASzC,EAAE,qBAAR,IAA2B,CAACuC,GAAYvC,EAAEE,CAAC,EAAEiB,EAAE,IAAI,MAAM,SAAI,OAAOpB,EAAE,2BAAsB,CAAC,CAAC,EAAE,OAAOI,EAAEH,CAAC,CAAC,OAAOD,EAAN,CAASoB,EAAEpB,CAAC,CAAC,MAAMoB,EAAE,IAAI,MAAM,SAAI,OAAOpB,EAAE,2BAAsB,CAAC,CAAC,OAAOoB,EAAE,IAAI,MAAM,SAAI,OAAOpB,EAAE,uBAAkB,CAAC,CAAC,CAAC,EAAE0C,EAAE,QAAQ,UAAU,CAAC,IAAI1C,EAAE0C,EAAE,OAAO,KAAK,OAAOA,EAAE,OAAO,GAAG,EAAE,GAAGtB,EAAE,IAAI,MAAM,wDAAwD,OAAOpB,EAAE,GAAG,CAAC,CAAC,CAAC,EAAE0C,EAAE,KAAK,CAAC,CAAE,CAAC,CAMt+B,SAASC,IAAkB,CAAC,IAAI3C,EAAE,UAAU,OAAO,GAAY,UAAU,CAAC,IAApB,OAAsB,UAAU,CAAC,EAAE,SAAaC,EAAE,CAAC,EAAE,MAAM,KAAKD,EAAE,iBAAiB,mCAAmC,CAAC,EAAMG,EAAE,SAAqBH,EAAE,CAAC,YAAYY,GAAQ,QAAQ,OAAO,QAAQ,MAAM,yCAAyC,OAAOZ,CAAC,CAAC,CAAC,EAAEC,EAAE,QAAS,SAASD,EAAE,CAAC,GAAG,CAAC,GAAUA,EAAE,aAAa,kBAAkB,IAAxC,KAA0C,OAAO,IAAIC,EAAEsC,GAAoBvC,CAAC,EAAMI,EAAEO,GAAYV,CAAC,EAAEwC,GAAcrC,EAAEH,EAAED,CAAC,EAAE,KAAM,SAASC,EAAE,CAAC,OAAOuC,GAAYvC,EAAED,CAAC,CAAC,CAAE,EAAE,MAAMG,CAAC,CAAC,OAAOH,EAAN,CAASG,EAAEH,CAAC,CAAC,CAAC,CAAE,CAAC,CAMhhB,SAAS4C,IAAc,CAAC,IAAI5C,EAAE,UAAU,OAAO,GAAY,UAAU,CAAC,IAApB,OAAsB,UAAU,CAAC,EAAE,SAAS,GAAG,CAACY,EAAO,yBAAyB,CAACA,EAAO,yBAAyB,GAAK,IAAIX,EAAE,SAAmBA,EAAE,CAAC,GAAGS,GAAWT,EAAE,MAAM,GAAGA,EAAE,MAAsBA,EAAE,KAAK,QAAvB,eAAiE,QAA/BE,EAAEH,EAAE,iBAAiB,QAAQ,EAAUI,EAAE,EAAEA,EAAED,EAAE,OAAOC,IAAI,GAAGD,EAAEC,CAAC,EAAE,gBAAgBH,EAAE,OAAO,CAAC,IAAImB,EAAEjB,EAAEC,CAAC,EAAE,cAAcgB,EAAE,MAAM,cAAc,GAAG,OAAOnB,EAAE,KAAK,KAAK,CAAC,EAAE,OAAO,IAAI,EAAE,OAAO,EAAEW,EAAO,iBAAiB,UAAUX,CAAC,EAAE,CAMte,SAAS4C,GAAiB7C,EAAE,CAAC,GAAc,OAAOA,GAAlB,SAAoB,GAAG,CAACA,EAAE,KAAK,MAAMA,CAAC,CAAC,OAAOA,EAAN,CAAS,eAAQ,KAAKA,CAAC,EAAQ,CAAC,CAAC,CAAC,OAAOA,CAAC,CAQlH,SAAS8C,GAAY9C,EAAEC,EAAEE,EAAE,CAAC,GAAGH,EAAE,QAAQ,eAAeA,EAAE,QAAQ,cAAc,YAAY,CAAC,IAAII,EAAE,CAAC,OAAOH,CAAC,EAAWE,IAAT,SAAaC,EAAE,MAAMD,GAAG,IAAIiB,EAAE,WAAW2B,EAAU,UAAU,YAAY,EAAE,QAAQ,mBAAmB,IAAI,CAAC,EAAE3B,GAAG,GAAGA,EAAE,KAAKhB,EAAE,KAAK,UAAUA,CAAC,GAAGJ,EAAE,QAAQ,cAAc,YAAYI,EAAEJ,EAAE,MAAM,EAAE,CAO7S,SAASgD,GAAYhD,EAAEC,EAAE,CAACA,EAAE4C,GAAiB5C,CAAC,EAAE,IAAIE,EAAE,CAAC,EAAMC,EAAE,GAAGH,EAAE,MAAM,CAAC,GAAaA,EAAE,QAAZ,QAAkB,CAAC,IAAImB,EAAEe,GAAanC,EAAEC,EAAE,KAAK,MAAM,EAAEmB,EAAE,QAAS,SAASjB,EAAE,CAAC,IAAIC,EAAE,IAAI,MAAMH,EAAE,KAAK,OAAO,EAAEG,EAAE,KAAKH,EAAE,KAAK,KAAKE,EAAE,OAAOC,CAAC,EAAEgC,GAAepC,EAAEC,EAAE,KAAK,OAAOE,CAAC,CAAC,CAAE,EAAEA,EAAEgC,GAAanC,EAAE,SAAS,OAAOC,EAAE,KAAK,CAAC,EAAEG,EAAEH,EAAE,aAAaA,EAAE,OAAO,CAAC,IAAI+B,EAAEK,GAAerC,EAAEC,EAAE,MAAM,EAAK+B,IAAG7B,EAAE,KAAK6B,CAAC,EAAE5B,EAAEH,EAAE,OAAOE,EAAE,QAAS,SAASF,EAAE,CAAC,GAAG,CAAC,GAAgB,OAAOA,GAApB,WAAsB,CAACA,EAAE,KAAKD,EAAEI,CAAC,EAAE,OAAOH,EAAE,QAAQG,CAAC,CAAC,MAAC,CAAS,CAAC,CAAE,CAAC,CAAC,SAAS6C,IAAsB,CAAC,IAAIjD,EAAE,UAAU,CAAmuB,QAA9tBA,EAAMC,EAAE,CAAC,CAAC,oBAAoB,iBAAiB,oBAAoB,oBAAoB,mBAAmB,iBAAiB,EAAE,CAAC,0BAA0B,uBAAuB,0BAA0B,0BAA0B,yBAAyB,uBAAuB,EAAE,CAAC,0BAA0B,yBAAyB,iCAAiC,yBAAyB,yBAAyB,uBAAuB,EAAE,CAAC,uBAAuB,sBAAsB,uBAAuB,uBAAuB,sBAAsB,oBAAoB,EAAE,CAAC,sBAAsB,mBAAmB,sBAAsB,sBAAsB,qBAAqB,mBAAmB,CAAC,EAAME,EAAE,EAAMC,EAAEH,EAAE,OAAWmB,EAAE,CAAC,EAAOjB,EAAEC,EAAED,IAAY,GAAPH,EAAEC,EAAEE,CAAC,EAAKH,GAAGA,EAAE,CAAC,IAAI,SAAS,CAAC,IAAIG,EAAE,EAAEA,EAAEH,EAAE,OAAOG,IAAIiB,EAAEnB,EAAE,CAAC,EAAEE,CAAC,CAAC,EAAEH,EAAEG,CAAC,EAAE,OAAOiB,EAAG,MAAO,EAAK,EAAE,EAAMnB,EAAE,CAAC,iBAAiBD,EAAE,iBAAiB,gBAAgBA,EAAE,eAAe,EAAMG,EAAE,CAAC,QAAQ,SAAiBF,EAAE,CAAC,OAAO,IAAI,QAAS,SAASG,EAAEgB,EAAE,CAAC,IAAI,EAAE,SAAS8B,GAAqB,CAAC/C,EAAE,IAAI,mBAAmB+C,CAAmB,EAAE9C,EAAE,CAAC,EAAED,EAAE,GAAG,mBAAmB,CAAC,EAAEF,EAAEA,GAAG,SAAS,gBAAgB,IAAIgC,EAAEhC,EAAED,EAAE,iBAAiB,EAAE,EAAEiC,aAAa,SAASA,EAAE,KAAK,CAAC,EAAE,MAAMb,CAAC,CAAC,CAAE,CAAC,EAAE,KAAK,UAAe,CAAC,OAAO,IAAI,QAAS,SAASnB,EAAEG,EAAE,CAAC,GAAGD,EAAE,aAAa,CAAC,IAAIiB,EAAE,SAAS+B,GAAkB,CAAChD,EAAE,IAAI,mBAAmBgD,CAAgB,EAAElD,EAAE,CAAC,EAAEE,EAAE,GAAG,mBAAmBiB,CAAC,EAAE,IAAI,EAAE,SAASpB,EAAE,cAAc,EAAE,EAAE,aAAa,SAAS,EAAE,KAAKoB,CAAC,EAAE,MAAMhB,CAAC,OAAOH,EAAE,CAAC,CAAE,CAAC,EAAE,GAAG,SAAYD,EAAEG,EAAE,CAAC,IAAIC,EAAEH,EAAED,CAAC,EAAEI,GAAG,SAAS,iBAAiBA,EAAED,CAAC,CAAC,EAAE,IAAI,SAAaH,EAAEG,EAAE,CAAC,IAAIC,EAAEH,EAAED,CAAC,EAAEI,GAAG,SAAS,oBAAoBA,EAAED,CAAC,CAAC,CAAC,EAAE,cAAO,iBAAiBA,EAAE,CAAC,aAAa,CAAC,IAAI,UAAc,CAAC,MAAO,EAAQ,SAASH,EAAE,iBAAiB,CAAE,CAAC,EAAE,QAAQ,CAAC,WAAW,GAAK,IAAI,UAAc,CAAC,OAAO,SAASA,EAAE,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,GAAK,IAAI,UAAc,CAAC,MAAO,EAAQ,SAASA,EAAE,iBAAiB,CAAE,CAAC,CAAC,CAAC,EAASG,CAAC,CAAC,IAAIuC,GAAE,IAAI,QAAYU,GAAE,IAAI,QAAYC,GAAE,CAAC,EAAMC,GAAE,UAAU,CASv9E,SAASC,EAAOvD,EAAE,CAAC,IAAIC,EAAE,KAAS,EAAE,UAAU,OAAO,GAAY,UAAU,CAAC,IAApB,OAAsB,UAAU,CAAC,EAAE,CAAC,EAAsS,GAApSF,GAAgB,KAAKwD,CAAM,EAAK3C,EAAO,QAAQZ,aAAa,SAAQA,EAAE,OAAO,GAAGY,EAAO,SAAS,QAAQ,MAAM,QAAQ,KAAK,6EAA6E,EAAEZ,EAAEA,EAAE,CAAC,GAAgB,OAAO,SAArB,KAA0C,OAAOA,GAAlB,WAAsBA,EAAE,SAAS,eAAeA,CAAC,GAAM,CAACQ,GAAaR,CAAC,EAAE,MAAM,IAAI,UAAU,qDAAqD,EAAE,GAAcA,EAAE,WAAb,SAAsB,CAAC,IAAII,EAAEJ,EAAE,cAAc,QAAQ,EAAEI,IAAIJ,EAAEI,GAAG,GAAcJ,EAAE,WAAb,UAAuB,CAACU,GAAWV,EAAE,aAAa,KAAK,GAAG,EAAE,EAAE,MAAM,IAAI,MAAM,qDAAgD,EAAE,GAAG0C,GAAE,IAAI1C,CAAC,EAAE,OAAO0C,GAAE,IAAI1C,CAAC,EAAE,KAAK,QAAQA,EAAE,cAAc,YAAY,KAAK,QAAQA,EAAE,KAAK,OAAO,IAAI,IAAIgC,EAAE,IAAIZ,GAAG,SAAShB,EAAEgB,EAAE,CAA4d,GAA3dnB,EAAE,WAAW,SAASD,EAAE,CAAC,GAAGU,GAAWV,EAAE,MAAM,GAAGC,EAAE,QAAQ,gBAAgBD,EAAE,OAAO,CAAOC,EAAE,SAAR,MAAiBA,EAAE,OAAOD,EAAE,QAAQ,IAAIG,EAAE0C,GAAiB7C,EAAE,IAAI,EAAMgC,EAAE7B,GAAaA,EAAE,QAAZ,QAAsB8B,EAAED,GAAG7B,EAAE,MAAgBA,EAAE,KAAK,SAAjB,QAAwB,GAAG8B,EAAE,CAAC,IAAIS,EAAE,IAAI,MAAMvC,EAAE,KAAK,OAAO,EAAEuC,EAAE,KAAKvC,EAAE,KAAK,KAAKiB,EAAEsB,CAAC,MAAM,CAAC,IAAIU,EAAEjD,GAAaA,EAAE,QAAZ,QAAsBkD,EAAElD,GAAYA,EAAE,SAAX,OAAqBiD,GAAGC,GAAGpD,EAAE,QAAQ,aAAa,aAAa,MAAM,EAAEG,EAAE,GAAO4C,GAAY/C,EAAEE,CAAC,GAAG,EAAEF,EAAE,QAAQ,iBAAiB,UAAUA,EAAE,UAAU,EAAgBA,EAAE,QAAQ,WAArB,SAA8B,CAAC,IAAI+B,EAAEO,GAAoBvC,EAAE,CAAC,EAAMiC,EAAEtB,GAAYqB,CAAC,EAAES,GAAcR,EAAED,EAAEhC,CAAC,EAAE,KAAM,SAASG,EAAE,CAAC,IAAIC,EAAEoC,GAAYrC,EAAEH,CAAC,EAAE,OAAAC,EAAE,QAAQG,EAAEH,EAAE,iBAAiBD,EAAEsC,GAActC,EAAEI,CAAC,EAAEsC,GAAE,IAAIzC,EAAE,QAAQA,CAAC,EAASE,CAAC,CAAE,EAAE,MAAMiB,CAAC,EAAE,CAAE,EAAoG,GAAlGgC,GAAE,IAAI,KAAKpB,CAAC,EAAEU,GAAE,IAAI,KAAK,QAAQ,IAAI,EAAa,KAAK,QAAQ,WAAxB,UAAkCI,GAAY,KAAK,MAAM,EAAKO,GAAE,UAAU,CAAC,IAAIpB,EAAE,UAAyB,CAAC,OAAOoB,GAAE,KAAK,CAAC,EAAE,KAAK,wBAAwB,UAAU,CAACA,GAAE,aAAanB,GAAcjC,EAAE,uBAAuBgC,CAAC,EAAEG,GAAenC,EAAE,uBAAuBgC,CAAC,EAAEhC,EAAE,MAAM,EAAE,KAAM,UAAU,CAAC6C,GAAY7C,EAAE,mBAAmBoD,GAAE,YAAY,CAAC,CAAE,CAAC,EAAEA,GAAE,GAAG,mBAAmB,KAAK,uBAAuB,EAAE,OAAO,IAAI,CAOh7D,OAAAhD,GAAakD,EAAO,CAAC,CAAC,IAAI,aAAa,MAAM,SAAoBvD,EAAE,CAAC,IAAIC,EAAE,KAASE,EAAE,UAAU,OAAO,GAAY,UAAU,CAAC,IAApB,OAAsB,UAAU,CAAC,EAAE,CAAC,EAAE,OAAO,IAAIiB,GAAG,SAAShB,EAAEgB,EAAE,CAAC,OAAOnB,EAAE,MAAM,EAAE,KAAM,UAAU,CAACiC,GAAcjC,EAAED,EAAE,CAAC,QAAQI,EAAE,OAAOgB,CAAC,CAAC,EAAE0B,GAAY7C,EAAED,EAAEG,CAAC,CAAC,CAAE,EAAE,MAAMiB,CAAC,CAAC,CAAE,CAAC,CAMpR,EAAE,CAAC,IAAI,MAAM,MAAM,SAAapB,EAAE,CAAC,IAAIC,EAAE,KAAK,OAAO,IAAImB,GAAG,SAASjB,EAAEC,EAAE,CAAC,OAAAJ,EAAEO,GAAcP,EAAE,KAAK,EAASC,EAAE,MAAM,EAAE,KAAM,UAAU,CAACiC,GAAcjC,EAAED,EAAE,CAAC,QAAQG,EAAE,OAAOC,CAAC,CAAC,EAAE0C,GAAY7C,EAAED,CAAC,CAAC,CAAE,EAAE,MAAMI,CAAC,CAAC,CAAE,CAAC,CAO5M,EAAE,CAAC,IAAI,MAAM,MAAM,SAAaJ,EAAEC,EAAE,CAAC,IAAIE,EAAE,KAAK,OAAO,IAAIiB,GAAG,SAAShB,EAAEgB,EAAE,CAA0B,GAAzBpB,EAAEO,GAAcP,EAAE,KAAK,EAAwBC,GAAP,KAAS,MAAM,IAAI,UAAU,+BAA+B,EAAE,OAAOE,EAAE,MAAM,EAAE,KAAM,UAAU,CAAC+B,GAAc/B,EAAEH,EAAE,CAAC,QAAQI,EAAE,OAAOgB,CAAC,CAAC,EAAE0B,GAAY3C,EAAEH,EAAEC,CAAC,CAAC,CAAE,EAAE,MAAMmB,CAAC,CAAC,CAAE,CAAC,CAS7R,EAAE,CAAC,IAAI,KAAK,MAAM,SAAYpB,EAAEC,EAAE,CAAC,GAAG,CAACD,EAAE,MAAM,IAAI,UAAU,8BAA8B,EAAE,GAAG,CAACC,EAAE,MAAM,IAAI,UAAU,oCAAoC,EAAE,GAAgB,OAAOA,GAApB,WAAsB,MAAM,IAAI,UAAU,kCAAkC,EAAE,IAAIE,EAAEgC,GAAa,KAAK,SAAS,OAAOnC,CAAC,CAAC,EAAMG,EAAE,SAAN,GAAc,KAAK,WAAW,mBAAmBH,CAAC,EAAE,MAAO,UAAU,CAAC,CAAE,EAAEkC,GAAc,KAAK,SAAS,OAAOlC,CAAC,EAAEC,CAAC,CAAC,CAS5Y,EAAE,CAAC,IAAI,MAAM,MAAM,SAAaD,EAAEC,EAAE,CAAC,GAAG,CAACD,EAAE,MAAM,IAAI,UAAU,8BAA8B,EAAE,GAAGC,GAAgB,OAAOA,GAApB,WAAsB,MAAM,IAAI,UAAU,kCAAkC,EAAE,IAAIE,EAAEiC,GAAe,KAAK,SAAS,OAAOpC,CAAC,EAAEC,CAAC,EAAEE,GAAG,KAAK,WAAW,sBAAsBH,CAAC,EAAE,MAAO,SAASA,EAAE,CAAC,CAAE,CAAC,CAQrS,EAAE,CAAC,IAAI,YAAY,MAAM,SAAmBA,EAAE,CAAC,OAAO,KAAK,WAAW,YAAYA,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,QAAQ,MAAM,UAAgB,CAAC,IAAIA,EAAEoD,GAAE,IAAI,IAAI,GAAG,IAAIhC,GAAG,SAASpB,EAAEC,EAAE,CAACA,EAAE,IAAI,MAAM,oCAAoC,CAAC,CAAC,CAAE,EAAE,OAAOmB,GAAE,QAAQpB,CAAC,CAAC,CAO5O,EAAE,CAAC,IAAI,cAAc,MAAM,SAAqBA,EAAE,CAAC,IAAIC,EAAE,UAAU,OAAO,GAAY,UAAU,CAAC,IAApB,OAAsB,UAAU,CAAC,EAAE,CAAC,EAAE,OAAO,KAAK,WAAW,cAAc,CAAC,KAAKD,EAAE,KAAKC,CAAC,CAAC,CAAC,CAMxK,EAAE,CAAC,IAAI,iBAAiB,MAAM,SAAwBD,EAAE,CAAC,OAAO,KAAK,WAAW,iBAAiBA,CAAC,CAAC,CAmBnG,EAAE,CAAC,IAAI,kBAAkB,MAAM,SAAyBA,EAAEC,EAAE,CAAC,GAAG,CAACD,EAAE,MAAM,IAAI,UAAU,2BAA2B,EAAE,OAAO,KAAK,WAAW,kBAAkB,CAAC,SAASA,EAAE,KAAKC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,mBAAmB,MAAM,UAA2B,CAAC,OAAO,KAAK,WAAW,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI,QAAQ,MAAM,UAAgB,CAAC,OAAO,KAAK,WAAW,OAAO,CAAC,CAAC,EAAE,CAAC,IAAI,OAAO,MAAM,UAAe,CAAC,OAAO,KAAK,WAAW,MAAM,CAAC,CAAC,EAAE,CAAC,IAAI,oBAAoB,MAAM,UAA4B,CAAC,OAAOoD,GAAE,UAAUA,GAAE,QAAQ,KAAK,OAAO,EAAE,KAAK,WAAW,mBAAmB,CAAC,CAAC,EAAE,CAAC,IAAI,iBAAiB,MAAM,UAAyB,CAAC,OAAOA,GAAE,UAAUA,GAAE,KAAK,EAAE,KAAK,WAAW,gBAAgB,CAAC,CAAC,EAAE,CAAC,IAAI,gBAAgB,MAAM,UAAwB,CAAC,OAAOA,GAAE,UAAUjC,GAAE,QAAQiC,GAAE,YAAY,EAAE,KAAK,IAAI,YAAY,CAAC,CAAC,EAAE,CAAC,IAAI,0BAA0B,MAAM,UAAkC,CAAC,OAAO,KAAK,WAAW,yBAAyB,CAAC,CAAC,EAAE,CAAC,IAAI,uBAAuB,MAAM,UAA+B,CAAC,OAAO,KAAK,WAAW,sBAAsB,CAAC,CAAC,EAAE,CAAC,IAAI,sBAAsB,MAAM,UAA8B,CAAC,OAAO,KAAK,IAAI,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI,SAAS,MAAM,UAAiB,CAAC,OAAO,KAAK,WAAW,QAAQ,CAAC,CAAC,EAAE,CAAC,IAAI,UAAU,MAAM,UAAkB,CAAC,IAAIrD,EAAE,KAAK,OAAO,IAAIoB,GAAG,SAASnB,EAAE,CAAia,GAAhamD,GAAE,OAAOpD,CAAC,EAAE0C,GAAE,OAAO1C,EAAE,OAAO,EAAKA,EAAE,mBAAkB0C,GAAE,OAAO1C,EAAE,gBAAgB,EAAEA,EAAE,iBAAiB,gBAAgB,wBAAwB,GAAEA,EAAE,SAAoBA,EAAE,QAAQ,WAArB,UAA+BA,EAAE,QAAQ,aAAaA,EAAE,QAAQ,WAAW,YAAYA,EAAE,kBAAkBA,EAAE,mBAAmBA,EAAE,QAAQ,WAAWA,EAAE,QAAQ,WAAW,WAAW,YAAYA,EAAE,QAAQ,UAAU,EAAEA,EAAE,QAAQ,WAAW,YAAYA,EAAE,OAAO,GAAMA,EAAE,SAAiBA,EAAE,QAAQ,WAAlB,OAA4BA,EAAE,QAAQ,WAAW,CAACA,EAAE,QAAQ,gBAAgB,wBAAwB,EAAE,IAAIG,EAAEH,EAAE,QAAQ,cAAc,QAAQ,EAAEG,GAAGA,EAAE,aAAaA,EAAE,WAAW,YAAYH,EAAE,kBAAkBA,EAAE,mBAAmBG,EAAE,WAAWA,EAAE,WAAW,WAAW,YAAYA,EAAE,UAAU,EAAEA,EAAE,WAAW,YAAYA,CAAC,GAAGH,EAAE,QAAQ,oBAAoB,UAAUA,EAAE,UAAU,EAAEqD,GAAE,WAAWA,GAAE,IAAI,mBAAmBrD,EAAE,uBAAuB,EAAEC,EAAE,CAAC,CAAE,CAAC,CAAC,EAAE,CAAC,IAAI,eAAe,MAAM,UAAuB,CAAC,OAAO,KAAK,IAAI,WAAW,CAAC,CAWvsE,EAAE,CAAC,IAAI,eAAe,MAAM,SAAsBD,EAAE,CAAC,OAAO,KAAK,IAAI,YAAYA,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,cAAc,MAAM,UAAsB,CAAC,OAAO,KAAK,IAAI,UAAU,CAAC,CAOjK,EAAE,CAAC,IAAI,iBAAiB,MAAM,UAAyB,CAAC,OAAO,KAAK,IAAI,aAAa,CAAC,CAMtF,EAAE,CAAC,IAAI,iBAAiB,MAAM,SAAwBA,EAAE,CAAC,OAAO,KAAK,IAAI,cAAcA,CAAC,CAAC,CAQzF,EAAE,CAAC,IAAI,cAAc,MAAM,UAAsB,CAAC,OAAO,KAAK,IAAI,UAAU,CAAC,CAAC,EAAE,CAAC,IAAI,oBAAoB,MAAM,UAA4B,CAAC,OAAO,KAAK,IAAI,gBAAgB,CAAC,CAAC,EAAE,CAAC,IAAI,WAAW,MAAM,UAAmB,CAAC,OAAO,KAAK,IAAI,OAAO,CAAC,CAQlP,EAAE,CAAC,IAAI,WAAW,MAAM,SAAkBA,EAAE,CAAC,OAAO,KAAK,IAAI,QAAQA,CAAC,CAAC,CAQvE,EAAE,CAAC,IAAI,eAAe,MAAM,UAAuB,CAAC,OAAO,KAAK,IAAI,WAAW,CAAC,CAAC,EAAE,CAAC,IAAI,iBAAiB,MAAM,UAAyB,CAAC,OAAO,KAAK,IAAI,aAAa,CAAC,CAYvK,EAAE,CAAC,IAAI,iBAAiB,MAAM,SAAwBA,EAAE,CAAC,OAAO,KAAK,IAAI,cAAcA,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,cAAc,MAAM,UAAsB,CAAC,OAAO,KAAK,IAAI,UAAU,CAAC,CAAC,EAAE,CAAC,IAAI,WAAW,MAAM,UAAmB,CAAC,OAAO,KAAK,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,IAAI,UAAU,MAAM,UAAkB,CAAC,OAAO,KAAK,IAAI,MAAM,CAAC,CAO9S,EAAE,CAAC,IAAI,UAAU,MAAM,SAAiBA,EAAE,CAAC,OAAO,KAAK,IAAI,OAAOA,CAAC,CAAC,CAOpE,EAAE,CAAC,IAAI,WAAW,MAAM,SAAkBA,EAAE,CAAC,OAAO,KAAK,IAAI,QAAQA,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,WAAW,MAAM,UAAmB,CAAC,OAAO,KAAK,IAAI,OAAO,CAAC,CAAC,EAAE,CAAC,IAAI,YAAY,MAAM,UAAoB,CAAC,OAAO,KAAK,IAAI,QAAQ,CAAC,CAAC,EAAE,CAAC,IAAI,kBAAkB,MAAM,UAA0B,CAAC,OAAO,KAAK,IAAI,cAAc,CAAC,CAQ9S,EAAE,CAAC,IAAI,kBAAkB,MAAM,SAAyBA,EAAE,CAAC,OAAO,KAAK,IAAI,eAAeA,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,YAAY,MAAM,UAAoB,CAAC,OAAO,KAAK,IAAI,QAAQ,CAAC,CAAC,EAAE,CAAC,IAAI,eAAe,MAAM,UAAuB,CAAC,OAAO,KAAK,IAAI,WAAW,CAAC,CAAC,EAAE,CAAC,IAAI,aAAa,MAAM,UAAqB,CAAC,OAAO,KAAK,IAAI,SAAS,CAAC,CAMhU,EAAE,CAAC,IAAI,aAAa,MAAM,SAAoBA,EAAE,CAAC,OAAO,KAAK,IAAI,UAAUA,CAAC,CAAC,CAAC,EAAE,CAAC,IAAI,cAAc,MAAM,UAAsB,CAAC,OAAO,KAAK,IAAI,UAAU,CAAC,CAAC,EAAE,CAAC,IAAI,aAAa,MAAM,UAAqB,CAAC,OAAO,KAAK,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,IAAI,gBAAgB,MAAM,UAAwB,CAAC,OAAO,KAAK,IAAI,YAAY,CAAC,CAAC,EAAE,CAAC,IAAI,oBAAoB,MAAM,UAA4B,CAAC,OAAO,KAAK,IAAI,gBAAgB,CAAC,CAAC,EAAE,CAAC,IAAI,aAAa,MAAM,UAAqB,CAAC,OAAO,KAAK,IAAI,SAAS,CAAC,CAAC,EAAE,CAAC,IAAI,gBAAgB,MAAM,UAAwB,CAAC,OAAO,KAAK,IAAI,YAAY,CAAC,CAAC,EAAE,CAAC,IAAI,gBAAgB,MAAM,UAAwB,CAAC,OAAO,KAAK,IAAI,YAAY,CAAC,CAAC,EAAE,CAAC,IAAI,iBAAiB,MAAM,UAAyB,CAAC,OAAO,KAAK,IAAI,aAAa,CAAC,CAAC,EAAE,CAAC,IAAI,cAAc,MAAM,UAAsB,CAAC,OAAO,KAAK,IAAI,UAAU,CAAC,CAAC,EAAE,CAAC,IAAI,YAAY,MAAM,UAAoB,CAAC,OAAO,KAAK,IAAI,QAAQ,CAAC,CAW13B,EAAE,CAAC,IAAI,YAAY,MAAM,SAAmBA,EAAE,CAAC,OAAO,KAAK,IAAI,SAASA,CAAC,CAAC,CAAC,CAAC,CAAC,EAASuD,CAAM,EAAE,EAAMvD,KAAGqD,GAAEJ,GAAqB,EAAEN,GAAiB,EAAEC,GAAa,GCnU8J,IAAMY,GAAW,gCAU5UC,GAAMC,EAAQ,SAAe,CAAC,MAAAC,EAAM,SAAAC,EAAS,KAAAC,EAAK,SAAAC,EAAS,KAAAC,EAAK,OAAAC,EAAO,gBAAAC,EAAgB,OAAAC,EAAO,IAAI,CAAC,EAAE,MAAAC,EAAM,IAAI,CAAC,EAAE,MAAAC,EAAM,GAAGC,CAAK,EAAE,CAAC,GAAK,CAACC,EAAIC,CAAM,EAAEC,GAAS,CAAC,EAAQC,EAAOC,EAAO,EAAQC,EAAaC,GAAUP,CAAK,EAAE,OAAAQ,GAAU,IAAI,CAAC,GAAG,CAACJ,EAAO,QAAQ,OAAO,GAAK,CAAC,CAACK,CAAE,EAAEnB,EAAM,MAAMH,EAAU,EAAEG,EAAM,MAAMH,EAAU,EAAE,CAAC,KAAK,CAAC,EAAQuB,EAAe,IAAIC,GAAOP,EAAO,QAAQ,CAAC,GAAAK,EAAG,UAAU,GAAM,SAASG,GAAa,QAAQ,IAAIA,GAAa,OAAO,GAAMrB,EAAS,OAAOI,EAAO,SAASF,EAAS,KAAKC,EAAK,MAAMC,EAAO,MAAMH,EAAK,WAAW,EAAI,CAAC,EAAEkB,EAAe,GAAG,OAAOb,CAAM,EAAEa,EAAe,GAAG,QAAQZ,CAAK,CAAE,EAAE,CAACM,EAAOH,CAAG,CAAC,EAAEO,GAAU,IAAI,CAACN,EAAOD,GAAKA,EAAI,CAAC,CAAE,EAAE,CAACX,EAAMC,EAASC,EAAKC,EAASC,EAAKC,CAAM,CAAC,EAAuBkB,EAAKC,EAAO,IAAI,CAAC,MAAM,CAAC,WAAWlB,EAAgB,GAAGG,EAAM,aAAAO,EAAa,SAAS,WAAW,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,SAAS,QAAQ,EAAE,GAAGN,EAAM,SAAuBa,EAAK,MAAM,CAAC,UAAU,eAAe,IAAIT,EAAO,MAAM,CAAC,MAAM,OAAO,OAAO,MAAM,CAAC,EAAEH,CAAG,CAAC,CAAC,CAAE,EAAE,CAAC,2EAA4E,CAAC,EAAEb,GAAM,aAAa,CAAC,MAAM,8BAA8B,SAAS,GAAM,KAAK,GAAM,KAAK,GAAM,gBAAgB,mBAAmB,aAAa,CAAC,EAAE2B,EAAoB3B,GAAM,CAAC,MAAM,CAAC,MAAM,MAAM,KAAK4B,EAAY,MAAM,EAAE,GAAGC,GAAoB,SAAS,CAAC,MAAM,WAAW,KAAKD,EAAY,QAAQ,aAAa,OAAO,cAAc,MAAM,EAAE,SAAS,CAAC,MAAM,WAAW,KAAKA,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAM7hD,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,QAAQ,aAAa,MAAM,cAAc,IAAI,EAMpK,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,aAAa,kBAAkB,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,MAAM,CAAC,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAE,IAAOE,GAAQ9B,GCrBqpB,IAAM+B,GAAWC,EAASC,EAAK,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAMD,GAAW,MAAM,QAAQA,CAAK,EAAUA,EAAM,OAAO,EAA6BA,GAAQ,MAAMA,IAAQ,GAAWE,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWP,GAAOI,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,OAAAC,EAAO,UAAAC,EAAU,MAAAC,EAAM,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAWI,EAAM,WAAW,wNAAwN,UAAUH,GAAOG,EAAM,WAAW,aAAa,UAAUL,GAAQK,EAAM,WAAW,KAAK,UAAUF,GAAUE,EAAM,WAAW,oHAAoH,UAAUN,GAAOM,EAAM,WAAW,CAAC,IAAI,yFAAyF,OAAO,oQAAoQ,CAAC,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6B,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASS,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAvB,CAAQ,EAAEwB,GAAgB,CAAC,eAAe,YAAY,QAAAf,EAAQ,kBAAAgB,EAAiB,CAAC,EAAQC,EAAiB3B,GAAuBD,EAAME,CAAQ,EAAQ2B,EAAWC,EAAO,IAAI,EAAQC,EAAQrD,GAAMsC,CAAS,EAAQgB,EAAsBC,EAAM,EAAQC,EAAsB,CAAazB,GAAuBA,GAAuBA,EAAS,EAAQ0B,EAAkBC,GAAqB,EAAE,OAAoBjD,EAAKkD,EAAY,CAAC,GAAG3B,GAAUsB,EAAgB,SAAsB7C,EAAKC,GAAS,CAAC,QAAQc,EAAS,QAAQ,GAAM,SAAsBf,EAAKR,GAAW,CAAC,MAAMJ,GAAY,SAAsB+D,EAAMjD,EAAO,IAAI,CAAC,GAAG4B,EAAU,GAAGI,EAAgB,UAAUkB,EAAGC,GAAkB,GAAGN,EAAsB,iBAAiBzB,EAAUU,CAAU,EAAE,mBAAmB,gBAAgB,iBAAiBS,EAAiB,SAAS,YAAY,IAAIxB,GAAKyB,EAAK,MAAM,CAAC,GAAGrB,CAAK,EAAE,SAAS,CAAc8B,EAAMjD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAczC,EAAKsD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2BP,GAAmB,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAMA,GAAmB,OAAO,QAAQ,GAAG3D,GAAkBuC,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBa,EAAiB,SAAS,WAAW,CAAC,EAAEG,GAAsB5C,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBuC,EAAiB,SAAS,sBAAsB,SAAsBzC,EAAKyD,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,OAAO5B,EAAU,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,EAAesB,EAAMjD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAMjD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBzC,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKhB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezB,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,uNAAuN,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,wNAAwN,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgC,GAAI,CAAC,kFAAkF,gFAAgF,gRAAgR,8YAA8Y,0GAA0G,yKAAyK,wRAAwR,6RAA6R,iSAAiS,gHAAgH,qKAAqK,qLAAqL,spCAAspC,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EASt4WC,GAAgBC,EAAQ7C,GAAU2C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,KAAK,gBAAgB,GAAM,MAAM,SAAS,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,aAAa,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,wNAAwN,gBAAgB,GAAK,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,yHAAyH,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,oHAAoH,YAAY,iBAAiB,MAAM,YAAY,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAW,GAAGC,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTx4E,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,oBAAoB,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,KAAAC,EAAK,MAAAC,EAAM,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUL,GAAQK,EAAM,WAAW,CAAC,IAAI,qEAAqE,EAAE,UAAUH,GAAOG,EAAM,WAAW,YAAY,UAAUJ,GAAMI,EAAM,UAAU,UAAUF,GAAUE,EAAM,WAAW,UAAU,QAAQT,GAAwBS,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAU6B,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,UAAA0C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE7B,GAASQ,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxD,CAAQ,EAAEyD,GAAgB,CAAC,WAAA9D,GAAW,eAAe,YAAY,IAAIsC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6D,EAAiB9B,GAAuBD,EAAM3B,CAAQ,EAAO,CAAC,sBAAA2D,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAoBH,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAoBL,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAA4DS,GAAkBC,EAAGtE,GAAkB,GAArE,CAAa8C,EAAS,CAAuE,EAAE,OAAoB5B,EAAKqD,EAAY,CAAC,GAAGxB,GAAUT,EAAgB,SAAsBpB,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAKsD,GAAK,CAAC,KAAKrB,EAAU,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsB,EAAMrD,EAAO,EAAE,CAAC,GAAGgC,EAAU,GAAGI,EAAgB,UAAU,GAAGc,EAAGD,GAAkB,gBAAgBvB,EAAUQ,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,GAAoB,IAAI7B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG3C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,oBAAoB,aAAakE,EAAmB,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB0C,EAAiB,SAAS,YAAY,SAAsB5C,EAAKwD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2BhC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,CAAC,EAAE,MAAMA,GAAmB,OAAO,QAAQ,GAAGnC,GAAkBwC,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBc,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,gBAAgB,aAAa,eAAe,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB0C,EAAiB,SAAS,YAAY,SAAS,CAAc5C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB0C,EAAiB,SAAS,YAAY,SAAsB5C,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK0D,EAAS,CAAC,sBAAsB,GAAK,SAAsB1D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2B,GAAI,CAAC,kFAAkF,kFAAkF,mSAAmS,oVAAoV,2GAA2G,wRAAwR,6QAA6Q,sKAAsK,oKAAoK,0kCAA0kC,8DAA8D,ibAAib,GAAeA,EAAG,EASpqSC,GAAgBC,EAAQ9C,GAAU4C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,mBAAmB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,gHAAgH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,YAAY,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVz8E,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,skBAAkjB,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,skBAAkjB,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4dAAkd,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4dAAkd,CAAC,CAAC,CAAC,EAAeI,GAAgBN,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uYAA6X,CAAC,CAAC,CAAC,EAAeK,GAAgBP,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8cAA8c,CAAC,CAAC,CAAC,EAAeM,GAAgBR,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8cAA8c,CAAC,CAAC,CAAC,EAAeO,GAAgBT,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8cAA8c,CAAC,CAAC,CAAC,EACzrKQ,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECA9kB,IAAMC,GAAiB,CAAC,UAAUC,EAAe,EAAiB,SAARC,GAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CCAqc,IAAMG,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,WAAW,EAAQC,GAAS,CAAC,CAAC,cAAAC,EAAc,eAAAC,EAAe,WAAAC,EAAW,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUN,GAAgBM,EAAM,UAAU,UAAUP,GAAeO,EAAM,UAAU,UAAUL,GAAYK,EAAM,UAAU,QAAQT,GAAwBS,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUJ,GAAaI,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU8B,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA1C,EAAQ,UAAA2C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE7B,GAASQ,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzD,CAAQ,EAAE0D,GAAgB,CAAC,WAAA/D,GAAW,eAAe,YAAY,IAAIuC,EAAW,QAAAhC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiB9B,GAAuBD,EAAM5B,CAAQ,EAAO,CAAC,sBAAA4D,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAeH,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQQ,GAAeL,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQS,EAAgBN,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQU,GAAgBP,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQW,GAAeR,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQY,GAAgBT,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQa,GAAgBV,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQc,GAAeX,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQe,GAAaZ,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,GAAYb,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,GAAad,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQkB,GAAaf,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQmB,GAAYhB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQoB,GAAajB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQqB,GAAalB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQsB,GAAYnB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAEuB,GAAmB9B,EAAY,CAAC,QAAQa,GAAe,UAAUE,GAAe,UAAUK,GAAgB,UAAUJ,EAAgB,UAAUG,GAAgB,UAAUD,GAAe,UAAUD,GAAgB,UAAUI,EAAc,CAAC,EAA6E,IAAMU,GAAkBC,EAAGtF,GAAkB,GAA5F,CAAa+C,GAAuBA,EAAS,CAAuE,EAAE,OAAoB5B,EAAKoE,EAAY,CAAC,GAAGvC,GAAUT,EAAgB,SAAsBpB,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKT,GAAW,CAAC,MAAMH,GAAY,SAAsBiF,EAAMnE,EAAO,IAAI,CAAC,GAAGgC,EAAU,GAAGI,EAAgB,UAAU6B,EAAGD,GAAkB,gBAAgBtC,EAAUQ,CAAU,EAAE,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIzB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG5C,EAAqB,CAAC,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiB0C,EAAiB,SAAS,YAAY,SAAsByB,EAAMnE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,wBAAwB,iBAAiB0C,EAAiB,SAAS,YAAY,SAAS,CAAcyB,EAAMnE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAS,CAAc5C,EAAKT,GAAW,CAAC,MAAMF,GAAY,GAAGN,EAAqB,CAAC,UAAU,CAAC,MAAMO,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAsBvC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAASC,GAAkB,KAAKjD,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0lBAAif,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,EAAqB,CAAC,UAAU,CAAC,SAASwF,GAAkB,KAAKjD,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,ydAA2b,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKT,GAAW,CAAC,MAAMF,GAAY,GAAGN,EAAqB,CAAC,UAAU,CAAC,MAAMO,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,EAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAMnE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAS,CAAc5C,EAAKT,GAAW,CAAC,MAAMD,GAAY,GAAGP,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBvC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAASC,GAAkB,KAAKjD,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oeAA4b,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,EAAqB,CAAC,UAAU,CAAC,SAASwF,GAAkB,KAAKjD,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,6VAAoU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKT,GAAW,CAAC,MAAMD,GAAY,GAAGP,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,EAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0BAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAMnE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAS,CAAc5C,EAAKT,GAAW,CAAC,MAAMD,GAAY,GAAGP,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBvC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAASC,GAAkB,KAAKjD,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,kWAAoU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe5C,EAAKT,GAAW,CAAC,MAAMD,GAAY,GAAGP,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsB5C,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0BAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAMnE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAS,CAAc5C,EAAKT,GAAW,CAAC,MAAMD,GAAY,GAAGP,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBvC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAASC,GAAkB,KAAKjD,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qdAAwa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,EAAqB,CAAC,UAAU,CAAC,SAASwF,GAAkB,KAAKjD,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,ynBAAghB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASqE,GAAkB,KAAKjD,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gcAAmZ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKT,GAAW,CAAC,MAAMD,GAAY,GAAGP,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsB8B,EAAMnE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAS,CAAc5C,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,EAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4BAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,EAAevC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,EAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAMnE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAc5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,gBAAgB,oBAAoB,CAAC,EAAE,GAAG7D,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAM0E,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMC,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMD,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMC,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMD,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMC,EAAW,CAAC,EAAEvB,EAAYI,CAAc,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB,GAAK,iBAAiB0C,EAAiB,SAAS,YAAY,MAAMe,GAAa,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,cAAc,EAAE,UAAU,CAAC,gBAAgB,cAAc,CAAC,EAAE,GAAG5E,EAAqB,CAAC,UAAU,CAAC,MAAM6E,EAAY,EAAE,UAAU,CAAC,iBAAiB,OAAU,MAAM,MAAS,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,CAAC,EAAEzB,EAAYI,CAAc,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB,GAAK,iBAAiB0C,EAAiB,SAAS,YAAY,MAAMiB,GAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,cAAc,EAAE,UAAU,CAAC,gBAAgB,cAAc,CAAC,EAAE,GAAG9E,EAAqB,CAAC,UAAU,CAAC,iBAAiB,OAAU,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM+E,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,EAAE,UAAU,CAAC,MAAMA,EAAY,CAAC,EAAE3B,EAAYI,CAAc,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB,GAAK,iBAAiB0C,EAAiB,SAAS,YAAY,MAAMmB,GAAa,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,cAAc,EAAE,UAAU,CAAC,gBAAgB,cAAc,CAAC,EAAE,GAAGhF,EAAqB,CAAC,UAAU,CAAC,MAAMiF,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,iBAAiB,OAAU,MAAM,MAAS,CAAC,EAAE7B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAMnE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB0C,EAAiB,SAAS,YAAY,SAAS,CAAc5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,qBAAqB6B,EAAU,mBAAmB,uBAAuB,iBAAiB,GAAK,iBAAiBa,EAAiB,SAAS,YAAY,MAAMe,GAAa,GAAG5E,EAAqB,CAAC,UAAU,CAAC,MAAM8E,EAAW,EAAE,UAAU,CAAC,MAAMG,EAAW,EAAE,UAAU,CAAC,MAAMD,EAAY,EAAE,UAAU,CAAC,MAAMD,EAAY,EAAE,UAAU,CAAC,MAAMF,EAAY,EAAE,UAAU,CAAC,qBAAqB3B,EAAU,iBAAiB,OAAU,MAAM,MAAS,EAAE,UAAU,CAAC,qBAAqB,OAAU,iBAAiB,OAAU,MAAM,MAAS,CAAC,EAAEE,EAAYI,CAAc,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,qBAAqB8B,EAAU,mBAAmB,sBAAsB,iBAAiBY,EAAiB,SAAS,YAAY,GAAG7D,EAAqB,CAAC,UAAU,CAAC,qBAAqB+C,EAAU,iBAAiB,GAAK,MAAM2B,EAAY,EAAE,UAAU,CAAC,qBAAqB3B,EAAU,iBAAiB,GAAK,MAAM8B,EAAY,EAAE,UAAU,CAAC,qBAAqB9B,EAAU,iBAAiB,GAAK,MAAM6B,EAAY,EAAE,UAAU,CAAC,qBAAqB7B,EAAU,iBAAiB,GAAK,MAAM4B,EAAW,EAAE,UAAU,CAAC,qBAAqB5B,EAAU,iBAAiB,GAAK,MAAM+B,EAAW,EAAE,UAAU,CAAC,qBAAqB/B,EAAU,iBAAiB,GAAK,MAAMgC,EAAY,CAAC,EAAE3B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiC,GAAI,CAAC,kFAAkF,gFAAgF,kQAAkQ,mRAAmR,6SAA6S,0ZAA0Z,+TAA+T,2VAA2V,8KAA8K,wRAAwR,gVAAgV,uJAAuJ,qOAAqO,oVAAoV,qKAAqK,oJAAoJ,+kFAA+kF,4JAA4J,wkBAAwkB,8PAA8P,oNAAoN,uzBAAuzB,gJAAgJ,6aAA6a,4KAA4K,qIAAqI,yaAAya,sLAAsL,6aAA6a,6aAA6a,GAAeA,GAAI,GAAgBA,EAAG,EASxsmCC,GAAgBC,EAAQ3D,GAAUyD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,6BAA6BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,UAAU,UAAU,UAAU,WAAW,WAAW,WAAW,UAAU,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,cAAc,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,iBAAiB,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,oBAAoB,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,qBAAqB,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVh9E,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAeI,GAAgBN,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAeK,GAAG,gBAChqCC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECApc,IAAMC,GAAiB,CAAC,UAAUC,EAAe,EAAiB,SAARC,GAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CCA8xB,IAAMG,GAAWC,EAASC,EAAK,EAAQC,GAAwCC,GAA0BC,GAAOC,CAAQ,CAAC,EAAQC,GAAyBN,EAASO,EAAmB,EAAQC,GAA6DL,GAA0BC,GAAOK,EAA6B,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAWD,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAM,IAAY,OAAOA,GAAQ,SAASA,EAAM,OAAkBE,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,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,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,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,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,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,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,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,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,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,CAAC,MAAAd,EAAM,SAAAe,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWnB,GAAOgB,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,gBAAgB,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAQG,EAAM,UAAU,UAAUF,GAAKE,EAAM,WAAW,8GAA8G,QAAQP,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMtC,IAAesC,EAAM,iBAAwBtC,EAAS,KAAK,GAAG,EAAEsC,EAAM,iBAAwBtC,EAAS,KAAK,GAAG,EAAUwC,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApD,EAAQ,UAAAqD,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASM,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjE,CAAQ,EAAEkE,GAAgB,CAAC,WAAAvE,GAAW,eAAe,YAAY,IAAIiD,EAAW,QAAA1C,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsE,EAAiB5B,GAAuBD,EAAMtC,CAAQ,EAAO,CAAC,sBAAAoE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAmFQ,GAAkBC,EAAG9E,GAAkB,GAA5F,CAAayD,GAAuBA,EAAS,CAAuE,EAAQsB,GAAY,IAAQjB,IAAc,YAAuC,OAAoB/B,EAAKiD,EAAY,CAAC,GAAGtB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQ5B,EAAS,QAAQ,GAAM,SAAsB2B,EAAKR,GAAW,CAAC,MAAMhB,GAAY,SAAsBwB,EAAKE,EAAO,IAAI,CAAC,GAAG4B,EAAU,GAAGI,EAAgB,UAAUa,EAAGD,GAAkB,iBAAiBpB,EAAUM,CAAU,EAAE,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIvB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGtD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,eAAe,CAAC,EAAE4D,EAAYI,CAAc,EAAE,SAAsBe,EAAMC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2B7B,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAIA,GAAmB,QAAQ,KAAK,GAAG,GAAG,EAAE,EAAE,MAAM,OAAOA,GAAmB,OAAO,gBAAgB,GAAG9C,GAAkBoD,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBW,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,EAAE,CAAC,EAAE,GAAGrE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiF,IAA2B7B,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAIA,GAAmB,QAAQ,KAAK,GAAG,GAAG,EAAE,EAAE,MAAM,OAAOA,GAAmB,OAAO,gBAAgB,GAAG9C,GAAkBoD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,IAA2B7B,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,KAAKA,GAAmB,QAAQ,KAAK,IAAI,GAAG,EAAE,EAAE,MAAM,OAAOA,GAAmB,OAAO,uBAAuB,GAAG9C,GAAkBoD,CAAS,CAAC,CAAC,CAAC,EAAEE,EAAYI,CAAc,EAAE,SAAS,CAAcnC,EAAKqD,EAA0B,CAAC,SAAsBrD,EAAKjC,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiByE,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxC,EAAKzC,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,OAAOoB,GAAWkD,CAAS,EAAE,cAAc,GAAK,QAAQ,MAAM,OAAOD,EAAU,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,gFAAgF,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,EAAE,CAAC,CAAC,CAAC,EAAeU,EAAMhD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBsC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAMhD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBsC,EAAiB,SAAS,YAAY,SAAS,CAAcxC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBsC,EAAiB,SAAS,YAAY,SAAsBxC,EAAKxC,GAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQqB,GAAU,SAASyE,GAAkB,KAAKlC,CAAY,GAAgBpB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6CAA6C,EAAE,SAAS,yBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,uCAAuC,MAAM,CAAC,OAAO,EAAE,QAAQpB,GAAW,iBAAiB0D,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrE,GAAqB,CAAC,UAAU,CAAC,SAASmF,GAAkB,KAAKlC,CAAY,GAAgBpB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEa,GAAY,GAAgBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBsC,EAAiB,SAAS,YAAY,SAAsBxC,EAAKxC,GAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQwB,GAAW,SAASsE,GAAkB,KAAKlC,CAAY,GAAgBpB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,uCAAuC,iBAAiB,GAAK,MAAM,CAAC,OAAO,EAAE,QAAQpB,GAAW,iBAAiB0D,EAAiB,SAAS,YAAY,MAAMI,EAAY,UAAU,GAAK,MAAM,CAAC,6BAA6B,MAAM,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBsC,EAAiB,SAAS,YAAY,SAAsBxC,EAAKxC,GAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQwB,GAAW,SAASsE,GAAkB,KAAKlC,CAAY,GAAgBpB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kDAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,uCAAuC,MAAM,CAAC,OAAO,EAAE,QAAQpB,GAAW,iBAAiB0D,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,6BAA6B,MAAM,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrE,GAAqB,CAAC,UAAU,CAAC,QAAQe,GAAW,SAASoE,GAAkB,KAAKlC,CAAY,GAAgBpB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenC,EAAKqD,EAA0B,CAAC,OAAO,GAAG,GAAG9B,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAIA,GAAmB,QAAQ,KAAK,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,GAAG,EAAE,OAAO,GAAG,OAAO,GAAGpD,GAAqB,CAAC,UAAU,CAAC,GAAGoD,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,IAAIA,GAAmB,QAAQ,KAAK,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,GAAG,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,KAAKA,GAAmB,QAAQ,KAAK,IAAI,GAAG,KAAKA,GAAmB,QAAQ,KAAK,IAAI,EAAE,OAAO,GAAG,MAAM,CAAC,EAAEQ,EAAYI,CAAc,EAAE,SAAsBnC,EAAKlC,GAA6D,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQsB,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,iBAAiBmD,EAAiB,SAAS,sBAAsB,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,GAAGrE,GAAqB,CAAC,UAAU,CAAC,QAAQoB,EAAU,CAAC,EAAEwC,EAAYI,CAAc,EAAE,SAAsBnC,EAAKnC,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUyF,GAAkB,KAAKlC,CAAY,GAAG,mBAAc,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmC,GAAI,CAAC,kFAAkF,gFAAgF,4PAA4P,0QAA0Q,sHAAsH,mNAAmN,kUAAkU,kSAAkS,oVAAoV,8IAA8I,iIAAiI,wGAAwG,2hDAA2hD,iFAAiF,0HAA0H,oEAAoE,gFAAgF,iFAAiF,GAAeA,GAAI,GAAgBA,EAAG,EASv8iBC,GAAgBC,EAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,uBAAuBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,gBAAgB,eAAe,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,8GAA8G,YAAY,iBAAiB,MAAM,MAAM,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,SAAS,KAAKA,EAAY,eAAe,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGnG,GAAW,GAAGO,GAAyB,GAAGkG,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVz4E,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAO,IAAMC,GAAG,aAA0BC,GAAG;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,wNAAi3CC,GAAG,WAAwBC,GAAG;AAAA;AAAA,uEAA+lCC,GAAG,iBAA8BC,GAAG;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kgBACljFC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECApc,IAAMC,GAAiB,CAAC,UAAUC,EAAe,EAAiB,SAARC,GAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CCAjB,IAAMG,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMvB,IAAWA,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAuBI,GAA6B,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEhB,GAASI,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,GAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBhB,GAAuBH,EAAMvB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBnC,EAAKoC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsB/B,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKT,GAAW,CAAC,MAAMF,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,CAAC,EAAEgC,EAAYE,CAAc,EAAE,SAAsBxB,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,OAAO,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMpC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB0B,EAAiB,SAAS,YAAY,SAAS,CAAc5B,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,iBAAiB0B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,EAAe5B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB0B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,OAAO,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,kFAAkF,kFAAkF,0PAA0P,qRAAqR,8GAA8G,gJAAgJ,2gBAA2gB,EAQ1kKC,GAAgBC,EAAQ5B,GAAU0B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,6BAA6BA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRuS,IAAMM,GAA4BC,EAASC,EAAsB,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,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,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,oBAAoB,YAAY,iBAAiB,YAAY,kBAAkB,YAAY,gBAAgB,YAAY,kBAAkB,YAAY,gBAAgB,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,UAAAC,EAAU,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAQI,EAAM,WAAW,KAAK,UAAUH,GAAWG,EAAM,WAAW,ocAAoc,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAOE,EAAM,WAAW,eAAe,GAAUC,GAAuB,CAACD,EAAMzB,IAAWA,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAuBE,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,UAAAiC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEpB,GAASO,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,GAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBnB,GAAuBD,EAAMzB,CAAQ,EAAO,CAAC,sBAAA8C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBT,CAAW,EAAQU,EAAaH,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAaN,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAYP,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAaR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAYT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,EAAaV,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,EAAaX,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQe,GAAYZ,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,GAAYb,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAa/B,GAAuBA,EAAS,EAAQgC,GAAkBC,GAAqB,EAAE,OAAoBrD,EAAKsD,EAAY,CAAC,GAAGjC,GAAU4B,GAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBiE,EAAMrD,EAAO,IAAI,CAAC,GAAGuB,EAAU,UAAU+B,EAAGzE,GAAkB,GAAGoE,GAAsB,iBAAiB/B,EAAUO,CAAU,EAAE,cAAc,GAAK,mBAAmB,oBAAoB,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAId,GAAKgC,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,GAAG5B,CAAK,EAAE,GAAGlC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,iBAAiB,GAAK,MAAMqD,CAAW,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,iBAAiB,GAAK,MAAME,CAAW,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,iBAAiB,GAAK,MAAMJ,CAAY,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,iBAAiB,GAAK,MAAMG,CAAY,CAAC,EAAEb,EAAYE,CAAc,EAAE,SAAS,CAAc2B,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB,GAAK,iBAAiB8B,EAAiB,SAAS,YAAY,MAAMS,EAAa,GAAGxD,GAAqB,CAAC,UAAU,CAAC,MAAM0D,CAAY,EAAE,UAAU,CAAC,MAAMG,EAAW,EAAE,UAAU,CAAC,MAAMD,EAAW,EAAE,UAAU,CAAC,MAAMH,CAAW,EAAE,UAAU,CAAC,MAAME,CAAY,CAAC,EAAElB,EAAYE,CAAc,EAAE,SAAS,CAAc2B,EAAMrD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKR,EAAU,SAAS,CAAC,kBAAkB,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexB,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKV,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAetB,EAAK0D,EAA0B,CAAC,MAAM,OAAO,SAAsB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAsBhC,EAAKpB,GAAuB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGK,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEyC,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAMrD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,WAAW,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mcAAmc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKT,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoC,GAAI,CAAC,kFAAkF,gFAAgF,yRAAyR,6VAA6V,kRAAkR,wKAAwK,qKAAqK,yGAAyG,iRAAiR,qHAAqH,4SAA4S,iNAAiN,opCAAopC,2MAA2M,yEAAyE,8DAA8D,ibAAib,+EAA+E,iHAAiH,uFAAuF,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASt6cC,GAAgBC,EAAQ/C,GAAU6C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,4BAA4BA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,oBAAoB,kBAAkB,gBAAgB,kBAAkB,gBAAgB,gBAAgB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,gBAAgB,gBAAgB,GAAK,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,ocAAoc,gBAAgB,GAAK,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,KAAK,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlF,GAA4B,GAAGwF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTh0E,IAAMC,GAA2BC,EAASC,EAAqB,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,aAAa,YAAY,IAAI,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6B,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,GAAGqC,CAAS,EAAErB,GAASI,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/C,CAAQ,EAAEgD,GAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,IAAIiC,EAAW,QAAA1B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiB1B,GAAuBD,EAAMtB,CAAQ,EAAuCkD,EAAkBC,EAAGvD,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAKuC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBkD,EAAMtC,EAAO,IAAI,CAAC,GAAGwB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,MAAM,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGtC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,YAAY,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAS,CAAc/B,EAAKyC,EAA0B,CAAC,OAAO,GAAG,MAAMpB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBrB,EAAK0C,GAA8B,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,iBAAiBN,EAAiB,SAAS,sBAAsB,KAAK,gBAAgB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKnB,GAAsB,CAAC,UAAU,KAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU8D,GAAkB,KAAKzB,CAAY,GAAG;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,2PAA60C,QAAQ,YAAY,UAAUyB,GAAkB,KAAKzB,CAAY,GAAG,eAAe,MAAM,OAAO,GAAGjC,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE0C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKyC,EAA0B,CAAC,OAAO,GAAG,MAAMpB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,SAAsBrB,EAAK0C,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKnB,GAAsB,CAAC,UAAU,KAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU8D,GAAkB,KAAKzB,CAAY,GAAG;AAAA;AAAA,+EAAygC,QAAQ,YAAY,UAAUyB,GAAkB,KAAKzB,CAAY,GAAG,oBAAe,MAAM,OAAO,GAAGjC,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE0C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKyC,EAA0B,CAAC,OAAO,GAAG,MAAMpB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBrB,EAAK0C,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKnB,GAAsB,CAAC,UAAU,KAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU8D,GAAkB,KAAKzB,CAAY,GAAG;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sjBAAwxP,QAAQ,YAAY,UAAUyB,GAAkB,KAAKzB,CAAY,GAAG,iBAAiB,MAAM,OAAO,GAAGjC,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE0C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,kFAAkF,gRAAgR,yLAAyL,6WAA6W,kEAAkE,iEAAiE,EAQvohBC,GAAgBC,EAAQnC,GAAUiC,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,WAAW,EAAE,aAAa,CAAC,MAAM,aAAa,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGlE,EAA0B,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTpf,IAAMwE,GAAEC,GAAGA,EAAMC,GAAMC,GAAEF,IAAIC,KAAIA,GAAEF,GAAEC,EAAE,cAAc,OAAO,CAAC,EAAE,qCAAqC,CAAC,EAAE,MAAM,GAAGC,ICAiY,IAAME,GAAc,uCAA6CC,GAAM,CAAC,OAAO,GAAG,YAAY,GAAG,aAAa,GAAG,WAAW,GAAG,iBAAiB,EAAE,cAAc,EAAE,iBAAiB,EAAE,WAAW,GAAG,kBAAkB,EAAE,eAAe,EAAE,qBAAqB,EAAE,WAAW,GAAG,cAAc,EAAE,YAAY,GAAG,QAAQ,GAAG,IAAI,GAAG,IAAI,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,YAAY,GAAG,UAAU,GAAG,iBAAiB,EAAE,WAAW,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,eAAe,EAAE,aAAa,GAAG,kBAAkB,EAAE,YAAY,GAAG,QAAQ,GAAG,gBAAgB,EAAE,QAAQ,GAAG,WAAW,GAAG,gBAAgB,EAAE,YAAY,GAAG,WAAW,GAAG,SAAS,GAAG,OAAO,GAAG,mBAAmB,EAAE,YAAY,GAAG,IAAI,GAAG,gBAAgB,EAAE,eAAe,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,QAAQ,GAAG,eAAe,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,GAAG,oBAAoB,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,SAAS,GAAG,aAAa,GAAG,OAAO,GAAG,SAAS,GAAG,eAAe,EAAE,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,GAAG,aAAa,GAAG,IAAI,GAAG,UAAU,GAAG,IAAI,GAAG,YAAY,GAAG,gBAAgB,EAAE,eAAe,EAAE,MAAM,EAAE,SAAS,GAAG,KAAK,GAAG,aAAa,GAAG,QAAQ,GAAG,UAAU,GAAG,aAAa,GAAG,gBAAgB,EAAE,gBAAgB,EAAE,cAAc,EAAE,cAAc,EAAE,cAAc,EAAE,oBAAoB,EAAE,YAAY,GAAG,aAAa,GAAG,gBAAgB,EAAE,UAAU,GAAG,WAAW,GAAG,cAAc,EAAE,YAAY,GAAG,SAAS,GAAG,QAAQ,GAAG,YAAY,GAAG,WAAW,GAAG,WAAW,GAAG,cAAc,EAAE,eAAe,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,UAAU,GAAG,mBAAmB,EAAE,eAAe,EAAE,IAAI,GAAG,YAAY,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,YAAY,GAAG,kBAAkB,EAAE,kBAAkB,EAAE,WAAW,GAAG,YAAY,GAAG,cAAc,EAAE,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,cAAc,EAAE,UAAU,GAAG,QAAQ,GAAG,oBAAoB,EAAE,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,YAAY,GAAG,MAAM,GAAG,aAAa,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,GAAG,gBAAgB,EAAE,SAAS,GAAG,QAAQ,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,aAAa,GAAG,kBAAkB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,YAAY,GAAG,aAAa,GAAG,WAAW,GAAG,eAAe,EAAE,YAAY,GAAG,IAAI,GAAG,YAAY,GAAG,aAAa,GAAG,cAAc,EAAE,QAAQ,GAAG,SAAS,GAAG,MAAM,GAAG,YAAY,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,GAAG,UAAU,GAAG,eAAe,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,eAAe,EAAE,mBAAmB,EAAE,aAAa,GAAG,WAAW,GAAG,QAAQ,GAAG,OAAO,GAAG,KAAK,GAAG,KAAK,GAAG,WAAW,GAAG,SAAS,GAAG,YAAY,GAAG,cAAc,EAAE,eAAe,EAAE,eAAe,EAAE,UAAU,GAAG,UAAU,GAAG,aAAa,GAAG,YAAY,GAAG,YAAY,GAAG,iBAAiB,EAAE,YAAY,GAAG,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,UAAU,GAAG,eAAe,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,eAAe,EAAE,eAAe,EAAE,cAAc,EAAE,iBAAiB,EAAE,YAAY,GAAG,oBAAoB,EAAE,aAAa,GAAG,MAAM,GAAG,YAAY,GAAG,UAAU,GAAG,MAAM,GAAG,YAAY,GAAG,SAAS,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,eAAe,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,UAAU,GAAG,cAAc,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,KAAK,GAAG,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,WAAW,GAAG,mBAAmB,EAAE,aAAa,GAAG,UAAU,GAAG,aAAa,GAAG,OAAO,GAAG,UAAU,GAAG,cAAc,EAAE,YAAY,GAAG,aAAa,GAAG,cAAc,EAAE,WAAW,GAAG,WAAW,GAAG,aAAa,GAAG,SAAS,GAAG,OAAO,GAAG,mBAAmB,EAAE,mBAAmB,EAAE,UAAU,GAAG,UAAU,GAAG,aAAa,GAAG,eAAe,EAAE,WAAW,GAAG,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,KAAK,GAAG,cAAc,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,SAAS,GAAG,YAAY,GAAG,SAAS,GAAG,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,aAAa,GAAG,cAAc,EAAE,gBAAgB,EAAE,KAAK,GAAG,WAAW,GAAG,kBAAkB,EAAE,MAAM,GAAG,SAAS,GAAG,qBAAqB,EAAE,YAAY,GAAG,mBAAmB,EAAE,UAAU,GAAG,YAAY,GAAG,aAAa,GAAG,UAAU,GAAG,cAAc,EAAE,iBAAiB,EAAE,OAAO,GAAG,oBAAoB,EAAE,MAAM,GAAG,WAAW,GAAG,iBAAiB,EAAE,MAAM,GAAG,SAAS,GAAG,MAAM,GAAG,gBAAgB,EAAE,cAAc,EAAE,iBAAiB,EAAE,MAAM,GAAG,YAAY,GAAG,UAAU,GAAG,cAAc,EAAE,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,YAAY,GAAG,YAAY,GAAG,oBAAoB,EAAE,UAAU,GAAG,SAAS,GAAG,QAAQ,GAAG,YAAY,GAAG,QAAQ,GAAG,QAAQ,GAAG,cAAc,EAAE,mBAAmB,EAAE,SAAS,GAAG,SAAS,GAAG,mBAAmB,EAAE,YAAY,GAAG,aAAa,GAAG,YAAY,GAAG,YAAY,GAAG,aAAa,GAAG,eAAe,EAAE,YAAY,GAAG,SAAS,GAAG,YAAY,GAAG,WAAW,GAAG,aAAa,GAAG,gBAAgB,EAAE,cAAc,EAAE,aAAa,GAAG,QAAQ,GAAG,UAAU,GAAG,YAAY,GAAG,cAAc,EAAE,QAAQ,GAAG,YAAY,GAAG,OAAO,GAAG,gBAAgB,EAAE,WAAW,GAAG,cAAc,EAAE,YAAY,GAAG,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,cAAc,EAAE,aAAa,GAAG,aAAa,GAAG,WAAW,GAAG,WAAW,GAAG,UAAU,GAAG,SAAS,GAAG,UAAU,GAAG,mBAAmB,EAAE,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,UAAU,GAAG,KAAK,GAAG,OAAO,GAAG,OAAO,GAAG,cAAc,EAAE,cAAc,EAAE,YAAY,GAAG,eAAe,EAAE,eAAe,EAAE,YAAY,GAAG,eAAe,EAAE,WAAW,GAAG,eAAe,EAAE,QAAQ,GAAG,eAAe,EAAE,kBAAkB,EAAE,cAAc,EAAE,UAAU,GAAG,iBAAiB,EAAE,cAAc,EAAE,QAAQ,GAAG,aAAa,GAAG,UAAU,GAAG,QAAQ,GAAG,OAAO,GAAG,aAAa,GAAG,WAAW,GAAG,eAAe,EAAE,eAAe,EAAE,qBAAqB,EAAE,cAAc,EAAE,oBAAoB,EAAE,cAAc,EAAE,oBAAoB,EAAE,cAAc,EAAE,kBAAkB,EAAE,cAAc,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,eAAe,EAAE,UAAU,GAAG,kBAAkB,EAAE,SAAS,GAAG,IAAI,GAAG,UAAU,GAAG,aAAa,GAAG,aAAa,GAAG,YAAY,GAAG,aAAa,GAAG,gBAAgB,EAAE,gBAAgB,EAAE,eAAe,EAAE,UAAU,GAAG,WAAW,GAAG,KAAK,GAAG,gBAAgB,EAAE,OAAO,GAAG,eAAe,EAAE,mBAAmB,EAAE,KAAK,GAAG,QAAQ,GAAG,YAAY,GAAG,WAAW,GAAG,WAAW,GAAG,SAAS,GAAG,UAAU,GAAG,YAAY,GAAG,SAAS,GAAG,YAAY,GAAG,eAAe,EAAE,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,YAAY,GAAG,OAAO,GAAG,WAAW,GAAG,cAAc,EAAE,SAAS,GAAG,cAAc,EAAE,kBAAkB,EAAE,IAAI,GAAG,YAAY,GAAG,IAAI,GAAG,IAAI,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,QAAQ,GAAG,eAAe,EAAE,KAAK,GAAG,IAAI,GAAG,eAAe,EAAE,cAAc,EAAE,KAAK,GAAG,eAAe,EAAE,aAAa,GAAG,gBAAgB,EAAE,kBAAkB,EAAE,QAAQ,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,QAAQ,GAAG,YAAY,GAAG,MAAM,GAAG,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,cAAc,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,cAAc,EAAE,YAAY,GAAG,WAAW,GAAG,kBAAkB,EAAE,YAAY,GAAG,aAAa,GAAG,YAAY,GAAG,aAAa,GAAG,oBAAoB,EAAE,YAAY,GAAG,mBAAmB,EAAE,UAAU,GAAG,MAAM,GAAG,aAAa,GAAG,UAAU,GAAG,iBAAiB,EAAE,KAAK,GAAG,WAAW,GAAG,UAAU,GAAG,MAAM,GAAG,eAAe,EAAE,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,GAAG,WAAW,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,WAAW,GAAG,SAAS,GAAG,UAAU,GAAG,aAAa,GAAG,KAAK,GAAG,kBAAkB,EAAE,SAAS,GAAG,UAAU,GAAG,eAAe,EAAE,YAAY,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,eAAe,EAAE,iBAAiB,EAAE,cAAc,EAAE,KAAK,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,kBAAkB,EAAE,SAAS,GAAG,SAAS,GAAG,iBAAiB,EAAE,SAAS,GAAG,aAAa,GAAG,iBAAiB,EAAE,gBAAgB,EAAE,YAAY,GAAG,WAAW,GAAG,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,GAAG,YAAY,GAAG,UAAU,GAAG,YAAY,GAAG,kBAAkB,EAAE,YAAY,GAAG,aAAa,GAAG,UAAU,GAAG,WAAW,GAAG,WAAW,GAAG,gBAAgB,EAAE,cAAc,EAAE,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,iBAAiB,EAAE,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,cAAc,EAAE,MAAM,GAAG,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,UAAU,GAAG,KAAK,GAAG,MAAM,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,GAAG,QAAQ,GAAG,cAAc,EAAE,aAAa,GAAG,SAAS,GAAG,OAAO,GAAG,WAAW,GAAG,cAAc,EAAE,KAAK,GAAG,kBAAkB,EAAE,cAAc,EAAE,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,WAAW,GAAG,aAAa,GAAG,cAAc,EAAE,eAAe,EAAE,aAAa,GAAG,gBAAgB,EAAE,SAAS,GAAG,kBAAkB,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,WAAW,GAAG,YAAY,GAAG,gBAAgB,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,qBAAqB,EAAE,aAAa,GAAG,kBAAkB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,YAAY,GAAG,YAAY,GAAG,aAAa,GAAG,WAAW,GAAG,oBAAoB,EAAE,iBAAiB,EAAE,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,UAAU,GAAG,SAAS,GAAG,eAAe,EAAE,WAAW,GAAG,gBAAgB,EAAE,oBAAoB,EAAE,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,WAAW,GAAG,cAAc,EAAE,WAAW,GAAG,eAAe,EAAE,UAAU,GAAG,YAAY,GAAG,WAAW,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,QAAQ,GAAG,OAAO,GAAG,IAAI,GAAG,OAAO,EAAE,KAAK,GAAG,WAAW,GAAG,OAAO,EAAE,OAAO,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,YAAY,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,GAAG,UAAU,GAAG,MAAM,GAAG,QAAQ,GAAG,QAAQ,GAAG,gBAAgB,EAAE,QAAQ,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,YAAY,GAAG,gBAAgB,EAAE,KAAK,GAAG,SAAS,GAAG,SAAS,GAAG,GAAG,GAAG,QAAQ,GAAG,cAAc,EAAE,kBAAkB,EAAE,OAAO,GAAG,aAAa,GAAG,MAAM,GAAG,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,WAAW,GAAG,kBAAkB,EAAE,QAAQ,GAAG,WAAW,GAAG,WAAW,GAAG,QAAQ,GAAG,gBAAgB,EAAE,QAAQ,GAAG,gBAAgB,EAAE,OAAO,GAAG,KAAK,GAAG,WAAW,GAAG,YAAY,GAAG,KAAK,GAAG,UAAU,GAAG,WAAW,GAAG,YAAY,GAAG,UAAU,GAAG,aAAa,GAAG,aAAa,GAAG,OAAO,GAAG,QAAQ,GAAG,WAAW,GAAG,iBAAiB,EAAE,eAAe,EAAE,KAAK,GAAG,QAAQ,GAAG,SAAS,GAAG,kBAAkB,EAAE,SAAS,GAAG,eAAe,EAAE,gBAAgB,EAAE,OAAO,GAAG,MAAM,GAAG,gBAAgB,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,aAAa,GAAG,MAAM,GAAG,YAAY,GAAG,UAAU,GAAG,SAAS,GAAG,UAAU,GAAG,KAAK,GAAG,MAAM,GAAG,KAAK,GAAG,WAAW,GAAG,SAAS,GAAG,MAAM,GAAG,iBAAiB,EAAE,kBAAkB,EAAE,YAAY,GAAG,kBAAkB,EAAE,eAAe,EAAE,aAAa,GAAG,iBAAiB,EAAE,MAAM,GAAG,KAAK,GAAG,MAAM,GAAG,YAAY,GAAG,cAAc,EAAE,gBAAgB,EAAE,eAAe,EAAE,iBAAiB,EAAE,WAAW,GAAG,YAAY,GAAG,SAAS,GAAG,UAAU,EAAE,UAAU,GAAG,WAAW,GAAG,aAAa,GAAG,gBAAgB,EAAE,SAAS,GAAG,KAAK,GAAG,IAAI,GAAG,SAAS,GAAG,SAAS,GAAG,YAAY,GAAG,kBAAkB,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,aAAa,GAAG,eAAe,EAAE,YAAY,GAAG,cAAc,EAAE,QAAQ,GAAG,QAAQ,GAAG,YAAY,GAAG,MAAM,GAAG,eAAe,EAAE,SAAS,GAAG,UAAU,GAAG,SAAS,GAAG,OAAO,GAAG,iBAAiB,EAAE,UAAU,GAAG,cAAc,EAAE,SAAS,GAAG,OAAO,GAAG,OAAO,GAAG,YAAY,GAAG,YAAY,GAAG,QAAQ,GAAG,WAAW,GAAG,aAAa,GAAG,KAAK,GAAG,SAAS,GAAG,WAAW,GAAG,gBAAgB,EAAE,aAAa,GAAG,aAAa,GAAG,MAAM,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,WAAW,GAAG,YAAY,GAAG,KAAK,GAAG,QAAQ,GAAG,aAAa,GAAG,SAAS,EAAE,OAAO,GAAG,KAAK,GAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,GAAG,OAAO,GAAG,cAAc,EAAE,aAAa,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,aAAa,GAAG,YAAY,GAAG,WAAW,GAAG,oBAAoB,EAAE,aAAa,GAAG,gBAAgB,EAAE,kBAAkB,EAAE,cAAc,EAAE,WAAW,GAAG,oBAAoB,EAAE,aAAa,GAAG,UAAU,GAAG,YAAY,GAAG,WAAW,GAAG,aAAa,GAAG,cAAc,EAAE,WAAW,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,gBAAgB,EAAE,eAAe,EAAE,SAAS,GAAG,cAAc,EAAE,UAAU,GAAG,aAAa,GAAG,iBAAiB,EAAE,YAAY,GAAG,WAAW,GAAG,kBAAkB,EAAE,KAAK,GAAG,UAAU,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,KAAK,GAAG,MAAM,GAAG,YAAY,GAAG,QAAQ,GAAG,cAAc,EAAE,kBAAkB,EAAE,QAAQ,GAAG,YAAY,GAAG,KAAK,GAAG,YAAY,GAAG,KAAK,GAAG,eAAe,EAAE,aAAa,GAAG,IAAI,GAAG,aAAa,GAAG,QAAQ,GAAG,OAAO,GAAG,aAAa,GAAG,aAAa,GAAG,eAAe,EAAE,cAAc,EAAE,gBAAgB,EAAE,WAAW,GAAG,kBAAkB,EAAE,MAAM,GAAG,SAAS,GAAG,kBAAkB,EAAE,iBAAiB,EAAE,UAAU,GAAG,gBAAgB,EAAE,WAAW,GAAG,YAAY,GAAG,OAAO,GAAG,KAAK,GAAG,SAAS,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,GAAG,IAAI,GAAG,eAAe,EAAE,cAAc,EAAE,QAAQ,GAAG,OAAO,GAAG,UAAU,GAAG,aAAa,GAAG,SAAS,GAAG,gBAAgB,EAAE,IAAI,GAAG,eAAe,EAAE,UAAU,GAAG,kBAAkB,EAAE,cAAc,EAAE,KAAK,GAAG,YAAY,GAAG,SAAS,GAAG,gBAAgB,EAAE,UAAU,GAAG,YAAY,GAAG,cAAc,EAAE,eAAe,EAAE,MAAM,GAAG,SAAS,GAAG,cAAc,EAAE,QAAQ,GAAG,cAAc,EAAE,iBAAiB,EAAE,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,UAAU,GAAG,SAAS,GAAG,SAAS,GAAG,iBAAiB,EAAE,gBAAgB,EAAE,MAAM,GAAG,YAAY,GAAG,MAAM,GAAG,cAAc,EAAE,YAAY,GAAG,OAAO,GAAG,GAAG,GAAG,eAAe,EAAE,aAAa,GAAG,OAAO,GAAG,UAAU,GAAG,SAAS,GAAG,WAAW,GAAG,WAAW,GAAG,IAAI,GAAG,OAAO,GAAG,aAAa,GAAG,eAAe,EAAE,aAAa,GAAG,WAAW,GAAG,OAAO,GAAG,eAAe,EAAE,YAAY,GAAG,UAAU,GAAG,YAAY,GAAG,aAAa,GAAG,cAAc,EAAE,YAAY,GAAG,YAAY,GAAG,SAAS,GAAG,SAAS,GAAG,IAAI,GAAG,aAAa,GAAG,UAAU,GAAG,WAAW,GAAG,gBAAgB,EAAE,WAAW,GAAG,MAAM,GAAG,UAAU,GAAG,OAAO,GAAG,WAAW,GAAG,WAAW,GAAG,WAAW,GAAG,OAAO,GAAG,SAAS,GAAG,aAAa,GAAG,QAAQ,GAAG,OAAO,GAAG,UAAU,GAAG,QAAQ,GAAG,cAAc,EAAE,cAAc,EAAE,MAAM,GAAG,WAAW,GAAG,WAAW,GAAG,cAAc,EAAE,MAAM,GAAG,UAAU,GAAG,UAAU,GAAG,cAAc,EAAE,cAAc,EAAE,kBAAkB,EAAE,WAAW,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,MAAM,GAAG,gBAAgB,EAAE,cAAc,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,YAAY,GAAG,WAAW,GAAG,aAAa,GAAG,cAAc,EAAE,KAAK,GAAG,SAAS,GAAG,MAAM,GAAG,iBAAiB,EAAE,QAAQ,GAAG,cAAc,EAAE,WAAW,GAAG,UAAU,GAAG,aAAa,GAAG,SAAS,GAAG,YAAY,GAAG,SAAS,GAAG,OAAO,GAAG,aAAa,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,SAAS,GAAG,gBAAgB,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,YAAY,GAAG,KAAK,GAAG,UAAU,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,GAAG,YAAY,GAAG,kBAAkB,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,QAAQ,GAAG,SAAS,GAAG,UAAU,GAAG,QAAQ,GAAG,eAAe,EAAE,OAAO,GAAG,UAAU,GAAG,cAAc,EAAE,cAAc,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,aAAa,GAAG,UAAU,GAAG,aAAa,GAAG,aAAa,GAAG,OAAO,GAAG,UAAU,GAAG,aAAa,GAAG,cAAc,EAAE,kBAAkB,EAAE,UAAU,GAAG,cAAc,EAAE,UAAU,GAAG,gBAAgB,EAAE,aAAa,GAAG,iBAAiB,EAAE,aAAa,GAAG,cAAc,EAAE,YAAY,GAAG,kBAAkB,EAAE,KAAK,GAAG,MAAM,GAAG,aAAa,GAAG,cAAc,EAAE,cAAc,EAAE,aAAa,GAAG,eAAe,EAAE,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,YAAY,GAAG,UAAU,GAAG,eAAe,EAAE,cAAc,EAAE,aAAa,GAAG,cAAc,EAAE,eAAe,EAAE,MAAM,GAAG,WAAW,GAAG,YAAY,GAAG,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,GAAG,aAAa,GAAG,qBAAqB,EAAE,qBAAqB,EAAE,MAAM,GAAG,SAAS,GAAG,aAAa,GAAG,iBAAiB,EAAE,oBAAoB,EAAE,SAAS,GAAG,gBAAgB,EAAE,IAAI,GAAG,QAAQ,GAAG,UAAU,EAAE,gBAAgB,EAAE,MAAM,GAAG,WAAW,GAAG,UAAU,GAAG,WAAW,GAAG,iBAAiB,EAAE,kBAAkB,EAAE,aAAa,GAAG,YAAY,GAAG,WAAW,GAAG,YAAY,GAAG,iBAAiB,EAAE,aAAa,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,GAAG,YAAY,GAAG,OAAO,GAAG,KAAK,GAAG,KAAK,GAAG,gBAAgB,EAAE,SAAS,GAAG,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,SAAS,GAAG,iBAAiB,EAAE,cAAc,EAAE,aAAa,GAAG,QAAQ,GAAG,YAAY,GAAG,WAAW,GAAG,MAAM,GAAG,cAAc,EAAE,aAAa,GAAG,WAAW,GAAG,WAAW,GAAG,OAAO,GAAG,UAAU,GAAG,QAAQ,GAAG,qBAAqB,EAAE,QAAQ,GAAG,OAAO,GAAG,QAAQ,GAAG,cAAc,EAAE,aAAa,GAAG,WAAW,GAAG,eAAe,EAAE,MAAM,GAAG,WAAW,GAAG,cAAc,EAAE,WAAW,GAAG,KAAK,GAAG,YAAY,GAAG,MAAM,GAAG,MAAM,GAAG,mBAAmB,EAAE,qBAAqB,EAAE,aAAa,GAAG,YAAY,GAAG,WAAW,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,QAAQ,GAAG,YAAY,GAAG,aAAa,GAAG,UAAU,GAAG,gBAAgB,EAAE,OAAO,EAAE,OAAO,GAAG,KAAK,GAAG,eAAe,EAAE,QAAQ,GAAG,WAAW,GAAG,OAAO,GAAG,aAAa,GAAG,oBAAoB,EAAE,WAAW,GAAG,gBAAgB,EAAE,gBAAgB,EAAE,aAAa,GAAG,mBAAmB,EAAE,QAAQ,GAAG,OAAO,GAAG,SAAS,GAAG,UAAU,GAAG,YAAY,GAAG,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,mBAAmB,EAAE,MAAM,GAAG,SAAS,GAAG,OAAO,GAAG,oBAAoB,EAAE,UAAU,GAAG,cAAc,EAAE,YAAY,GAAG,aAAa,GAAG,QAAQ,GAAG,WAAW,GAAG,WAAW,GAAG,eAAe,EAAE,QAAQ,GAAG,iBAAiB,EAAE,YAAY,GAAG,QAAQ,GAAG,SAAS,GAAG,WAAW,GAAG,QAAQ,GAAG,KAAK,GAAG,gBAAgB,EAAE,YAAY,GAAG,mBAAmB,EAAE,WAAW,GAAG,YAAY,GAAG,OAAO,GAAG,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,IAAI,GAAG,KAAK,GAAG,WAAW,GAAG,UAAU,GAAG,kBAAkB,EAAE,SAAS,GAAG,cAAc,EAAE,QAAQ,GAAG,UAAU,GAAG,UAAU,GAAG,KAAK,GAAG,QAAQ,GAAG,YAAY,GAAG,QAAQ,GAAG,QAAQ,GAAG,YAAY,GAAG,SAAS,GAAG,aAAa,GAAG,OAAO,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,GAAG,oBAAoB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,eAAe,EAAE,oBAAoB,EAAE,YAAY,GAAG,WAAW,GAAG,GAAG,GAAG,OAAO,GAAG,YAAY,GAAG,UAAU,GAAG,OAAO,GAAG,UAAU,GAAG,SAAS,GAAG,eAAe,EAAE,mBAAmB,EAAE,QAAQ,GAAG,UAAU,GAAG,gBAAgB,EAAE,KAAK,GAAG,KAAK,GAAG,eAAe,EAAE,aAAa,GAAG,WAAW,GAAG,aAAa,GAAG,QAAQ,GAAG,WAAW,GAAG,iBAAiB,EAAE,mBAAmB,EAAE,QAAQ,GAAG,SAAS,GAAG,qBAAqB,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,aAAa,GAAG,iBAAiB,EAAE,qBAAqB,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,cAAc,EAAE,cAAc,EAAE,eAAe,EAAE,gBAAgB,EAAE,cAAc,EAAE,OAAO,GAAG,WAAW,GAAG,QAAQ,GAAG,YAAY,GAAG,MAAM,GAAG,cAAc,EAAE,OAAO,GAAG,KAAK,GAAG,MAAM,GAAG,QAAQ,GAAG,YAAY,GAAG,eAAe,EAAE,aAAa,GAAG,UAAU,GAAG,SAAS,GAAG,UAAU,GAAG,OAAO,GAAG,QAAQ,GAAG,UAAU,GAAG,aAAa,GAAG,KAAK,GAAG,mBAAmB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,kBAAkB,EAAE,eAAe,EAAE,eAAe,EAAE,mBAAmB,EAAE,eAAe,EAAE,mBAAmB,EAAE,eAAe,EAAE,mBAAmB,EAAE,eAAe,EAAE,mBAAmB,EAAE,cAAc,EAAE,cAAc,EAAE,QAAQ,GAAG,aAAa,GAAG,gBAAgB,EAAE,UAAU,GAAG,IAAI,GAAG,KAAK,GAAG,SAAS,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,GAAG,eAAe,EAAE,cAAc,EAAE,SAAS,GAAG,aAAa,GAAG,SAAS,GAAG,UAAU,GAAG,gBAAgB,EAAE,YAAY,GAAG,aAAa,GAAG,YAAY,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,aAAa,GAAG,IAAI,GAAG,UAAU,GAAG,cAAc,EAAE,OAAO,GAAG,aAAa,GAAG,WAAW,GAAG,YAAY,GAAG,KAAK,GAAG,eAAe,EAAE,KAAK,GAAG,YAAY,GAAG,OAAO,GAAG,MAAM,GAAG,UAAU,GAAG,UAAU,GAAG,IAAI,GAAG,SAAS,GAAG,QAAQ,GAAG,aAAa,GAAG,aAAa,GAAG,gBAAgB,EAAE,aAAa,GAAG,MAAM,GAAG,WAAW,GAAG,YAAY,GAAG,OAAO,GAAG,UAAU,GAAG,eAAe,EAAE,iBAAiB,EAAE,cAAc,EAAE,cAAc,EAAE,eAAe,EAAE,WAAW,GAAG,eAAe,EAAE,aAAa,GAAG,cAAc,EAAE,UAAU,GAAG,kBAAkB,EAAE,YAAY,GAAG,YAAY,GAAG,aAAa,GAAG,aAAa,GAAG,iBAAiB,EAAE,WAAW,GAAG,gBAAgB,EAAE,iBAAiB,EAAE,OAAO,GAAG,KAAK,GAAG,WAAW,GAAG,oBAAoB,EAAE,SAAS,GAAG,YAAY,GAAG,cAAc,EAAE,SAAS,GAAG,MAAM,GAAG,qBAAqB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,oBAAoB,EAAE,YAAY,GAAG,KAAK,GAAG,WAAW,GAAG,gBAAgB,EAAE,QAAQ,GAAG,MAAM,GAAG,mBAAmB,EAAE,WAAW,GAAG,MAAM,GAAG,WAAW,GAAG,OAAO,GAAG,WAAW,GAAG,eAAe,EAAE,SAAS,GAAG,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,cAAc,EAAE,UAAU,GAAG,aAAa,GAAG,OAAO,GAAG,UAAU,GAAG,YAAY,GAAG,qBAAqB,EAAE,kBAAkB,EAAE,QAAQ,GAAG,aAAa,GAAG,QAAQ,GAAG,cAAc,EAAE,UAAU,GAAG,UAAU,GAAG,qBAAqB,EAAE,SAAS,GAAG,mBAAmB,EAAE,MAAM,GAAG,cAAc,EAAE,aAAa,GAAG,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,KAAK,GAAG,QAAQ,GAAG,aAAa,GAAG,YAAY,GAAG,qBAAqB,EAAE,aAAa,GAAG,gBAAgB,EAAE,IAAI,GAAG,cAAc,EAAE,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,OAAO,GAAG,cAAc,EAAE,UAAU,GAAG,IAAI,GAAG,SAAS,GAAG,cAAc,EAAE,WAAW,GAAG,MAAM,GAAG,KAAK,GAAG,QAAQ,GAAG,UAAU,GAAG,SAAS,EAAE,MAAM,GAAG,QAAQ,GAAG,WAAW,GAAG,WAAW,GAAG,aAAa,GAAG,mBAAmB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,YAAY,GAAG,QAAQ,GAAG,QAAQ,GAAG,cAAc,EAAE,SAAS,GAAG,WAAW,GAAG,eAAe,EAAE,WAAW,GAAG,UAAU,GAAG,gBAAgB,EAAE,eAAe,EAAE,iBAAiB,EAAE,OAAO,GAAG,WAAW,GAAG,QAAQ,GAAG,OAAO,GAAG,WAAW,GAAG,UAAU,GAAG,aAAa,GAAG,gBAAgB,EAAE,QAAQ,GAAG,WAAW,GAAG,cAAc,EAAE,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,SAAS,GAAG,MAAM,GAAG,QAAQ,GAAG,cAAc,EAAE,OAAO,GAAG,aAAa,GAAG,SAAS,GAAG,mBAAmB,EAAE,MAAM,GAAG,IAAI,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,GAAG,KAAK,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,KAAK,GAAG,KAAK,GAAG,aAAa,GAAG,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,UAAU,GAAG,YAAY,GAAG,iBAAiB,EAAE,UAAU,GAAG,cAAc,EAAE,aAAa,GAAG,aAAa,GAAG,WAAW,GAAG,WAAW,GAAG,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,SAAS,GAAG,SAAS,GAAG,YAAY,GAAG,GAAG,GAAG,MAAM,GAAG,SAAS,GAAG,aAAa,GAAG,YAAY,GAAG,cAAc,EAAE,YAAY,GAAG,aAAa,GAAG,QAAQ,EAAE,KAAK,GAAG,SAAS,GAAG,MAAM,GAAG,WAAW,GAAG,SAAS,GAAG,UAAU,GAAG,KAAK,GAAG,WAAW,GAAG,WAAW,GAAG,YAAY,GAAG,YAAY,GAAG,SAAS,GAAG,OAAO,GAAG,eAAe,EAAE,QAAQ,GAAG,OAAO,GAAG,WAAW,GAAG,IAAI,GAAG,OAAO,GAAG,SAAS,GAAG,aAAa,GAAG,oBAAoB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,cAAc,EAAE,UAAU,GAAG,UAAU,GAAG,gBAAgB,EAAE,iBAAiB,EAAE,WAAW,GAAG,aAAa,GAAG,cAAc,EAAE,YAAY,GAAG,SAAS,GAAG,YAAY,GAAG,eAAe,EAAE,kBAAkB,EAAE,WAAW,GAAG,UAAU,GAAG,aAAa,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,QAAQ,GAAG,aAAa,GAAG,SAAS,GAAG,SAAS,GAAG,WAAW,GAAG,UAAU,GAAG,YAAY,GAAG,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,WAAW,GAAG,cAAc,EAAE,UAAU,GAAG,aAAa,GAAG,UAAU,GAAG,WAAW,GAAG,WAAW,GAAG,UAAU,GAAG,SAAS,GAAG,kBAAkB,EAAE,OAAO,GAAG,QAAQ,GAAG,OAAO,GAAG,UAAU,GAAG,QAAQ,GAAG,aAAa,GAAG,KAAK,GAAG,MAAM,GAAG,WAAW,GAAG,MAAM,GAAG,YAAY,GAAG,eAAe,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,eAAe,EAAE,aAAa,GAAG,QAAQ,GAAG,QAAQ,GAAG,WAAW,GAAG,GAAG,GAAG,IAAI,GAAG,SAAS,GAAG,YAAY,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,EAAE,SAAS,GAAG,iBAAiB,EAAE,YAAY,GAAG,QAAQ,GAAG,KAAK,GAAG,YAAY,GAAG,aAAa,GAAG,SAAS,GAAG,QAAQ,GAAG,mBAAmB,EAAE,cAAc,EAAE,iBAAiB,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,QAAQ,GAAG,YAAY,GAAG,WAAW,GAAG,SAAS,GAAG,cAAc,EAAE,QAAQ,GAAG,KAAK,GAAG,QAAQ,EAAE,mBAAmB,EAAE,OAAO,GAAG,QAAQ,GAAG,WAAW,EAAE,EAAQC,GAAS,OAAO,KAAKD,EAAK,EAAQE,GAAc,CAAC,SAAS,UAAU,QAAQ,UAAU,UAAW,EAAQC,GAAgB,CAAC,GAAG,CAAC,GAAGD,EAAa,EAAE,EAAE,CAAC,SAAS,UAAU,QAAQ,SAAS,EAAE,EAAE,CAAC,SAAS,OAAO,CAAC,EAAQE,GAAoB,OAAO,KAAKD,EAAe,EAAE,IAAIE,GAAW,YAAYA,GAAW,EAAQC,GAAsBL,GAAS,OAAO,CAACM,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQ1kxB,SAASE,GAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,SAAAC,EAAS,MAAAC,CAAK,EAAEX,EAAYY,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBxB,GAASW,EAAaC,EAAWC,EAAcR,EAAqB,EAC3RoB,EAAiBtB,GAAoB,IAAIuB,GAAMjB,EAAMiB,CAAI,CAAC,EAC1DC,EAAUC,EAAQ,IAAI,CAAC,IAAMC,EAAa9B,GAAMwB,CAAO,EAAE,GAAG,CAACM,EAAa,OAAO,IAAMC,EAAYrB,EAAM,YAAYoB,GAAc,EAAE,GAAGC,IAAc,SAAgB,OAAOA,CAAY,EAAE,CAAC,GAAGL,CAAgB,CAAC,EACjN,CAACM,EAAaC,CAAe,EAAEC,GAASV,IAAU,OAAOW,GAAYC,EAAK,EAAE,IAAI,EACrF,eAAeC,GAAc,CAC7B,GAAG,OAAOrC,GAAMwB,CAAO,GAAI,SAAS,CAACS,EAAgB,IAAI,EAAE,OAC3D,GAAG,CACH,IAAMK,EAAO,MAAM,OADwC,GAAGvC,KAAgByB,IAA9DI,GAAoB,gBACkCN,EAAU,SAAQW,EAAgBK,EAAO,QAAQF,EAAK,CAAC,CAAE,MAAC,CAASd,EAAU,SAAQW,EAAgB,IAAI,CAAE,CAAC,CAClLM,GAAU,KAAKjB,EAAU,QAAQ,GAAKe,EAAa,EAAQ,IAAI,CAACf,EAAU,QAAQ,EAAM,GAAI,CAACE,EAAQ,GAAGE,CAAgB,CAAC,EAAgE,IAAMc,EAAnDC,GAAa,QAAQ,IAAIA,GAAa,OAAiDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAqBD,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAA7B,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASe,EAA2BU,EAAK,MAAM,CAAC,MAAM,6BAA6B,MAAM,CAAC,WAAW,OAAO,MAAM,OAAO,OAAO,OAAO,QAAQ,eAAe,KAAK/B,EAAM,WAAW,EAAE,UAAUS,EAAS,eAAe,OAAU,GAAGC,CAAK,EAAE,UAAU,QAAQ,QAAQ,YAAY,MAAMV,EAAM,SAASqB,CAAY,CAAC,EAAEQ,CAAU,CAAC,CAAE,CAAC/B,GAAK,YAAY,WAAWA,GAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,OAAO,WAAW,OAAO,MAAM,OAAO,aAAa,GAAK,OAAO,SAAS,SAAS,EAAK,EAAE,SAASoC,GAAiBnC,EAAMoC,EAAa,CAAC,GAAK,CAAC,aAAAlC,EAAa,WAAAC,EAAW,cAAAC,CAAa,EAAEJ,EAAYqC,EAAmB,SAASD,CAAY,EAAQE,EAAKC,GAAiBhD,GAASW,EAAaC,EAAWC,EAAcR,EAAqB,EAAQ4C,EAAKlD,GAAMgD,CAAI,EAAE,MAAG,CAACE,GAAMH,IAAqB,EAAS,GAAQG,IAAOH,CAAiD,CAACI,EAAoB1C,GAAK,CAAC,aAAa,CAAC,KAAK2C,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa3C,GAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK2C,EAAY,KAAK,QAAQnD,GAAS,aAAaQ,GAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,6EAA6E,EAAE,WAAW,CAAC,KAAKwC,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAAxC,CAAY,IAAIA,CAAY,EAAE,SAAS,CAAC,KAAKwC,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa3C,GAAK,aAAa,QAAQ,EAAE,MAAM,CAAC,KAAK2C,EAAY,MAAM,MAAM,QAAQ,aAAa3C,GAAK,aAAa,KAAK,EAAE,GAAG,OAAO,KAAKN,EAAe,EAAE,OAAO,CAACkD,EAAOhD,KAAagD,EAAO,YAAYhD,GAAW,EAAE,CAAC,KAAK+C,EAAY,KAAK,MAAM,QAAQ,aAAa,SAAS,QAAQjD,GAAgBE,CAAS,EAAE,OAAOK,GAAOmC,GAAiBnC,EAAML,CAAS,CAAC,EAASgD,GAAS,CAAC,CAAC,EAAE,GAAGC,EAAa,CAAC,ECf9vD,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,mBAAmB,YAAY,oBAAoB,YAAY,cAAc,YAAY,eAAe,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,UAAUF,GAA6BE,EAAM,UAAU,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMvB,IAAWA,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAuBI,GAA6B,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,UAAAiC,EAAU,GAAGC,CAAS,EAAElB,GAASK,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzC,CAAQ,EAAE0C,GAAgB,CAAC,WAAA/C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8C,EAAiBjB,GAAuBH,EAAMvB,CAAQ,EAAO,CAAC,sBAAA4C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBT,CAAW,EAAQU,EAAaH,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKL,GAAqB,MAAMA,EAAU,GAAGa,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB1C,EAAK2C,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGqB,EAAU,UAAUqB,EAAG7D,GAAkB,GAAGyD,EAAsB,gBAAgBpB,EAAUK,CAAU,EAAE,mBAAmB,eAAe,iBAAiB,GAAK,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAMO,EAAa,YAAY,IAAIP,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIZ,GAA6BqB,EAAK,MAAM,CAAC,eAAe,aAAa,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,EAAE,qBAAqB,aAAa,GAAGjB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,CAAC,EAAEuC,EAAYE,CAAc,EAAE,SAAsB1B,EAAK6C,EAA0B,CAAC,SAAsB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4B,EAAiB,SAAS,sBAAsB,MAAM,CAAC,QAAQ,EAAE,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,GAAG,EAAE,UAAU,CAAC,QAAQ,GAAG,CAAC,EAAE,SAAsB9B,EAAKnB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,UAAU,cAAc,OAAO,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiE,GAAI,CAAC,kFAAkF,kFAAkF,qUAAqU,wGAAwG,0WAA0W,EASnkLC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,+BAA+BA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,eAAe,cAAc,oBAAoB,kBAAkB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGpE,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV3Z,SAAS0E,GAAcC,EAAM,CAAC,GAAK,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,SAAAC,EAAS,WAAAC,EAAW,WAAAC,EAAW,MAAAC,EAAM,OAAAC,EAAO,OAAAC,EAAO,KAAAC,CAAI,EAAEV,EAAW,CAACW,EAAMC,CAAQ,EAAEC,GAASZ,CAAW,EAAO,CAACa,EAAUC,CAAY,EAAEF,GAAS,EAAK,EAAQG,EAAIC,EAAO,IAAI,EAAE,OAAAC,GAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqBC,GAAS,CAAC,IAAMC,EAAMD,EAAQ,CAAC,EAAEL,EAAaM,EAAM,cAAc,CAAE,CAAC,EAAE,OAAGL,EAAI,SAASG,EAAS,QAAQH,EAAI,OAAO,EAAS,IAAI,CAAIA,EAAI,SAASG,EAAS,UAAUH,EAAI,OAAO,CAAG,CAAE,EAAE,CAAC,CAAC,EAAEE,GAAU,IAAI,CAAC,GAAGJ,GAAWb,IAAcC,EAAU,CAAC,IAAMoB,EAAW,YAAY,IAAI,CAAIX,EAAMT,EAAWU,EAASW,GAAWA,EAAU,CAAC,EAAWb,GAAME,EAASX,CAAW,CAAG,EAAEM,CAAK,EAAE,MAAM,IAAI,CAAC,cAAce,CAAU,CAAE,EAAG,EAAE,CAACX,EAAMV,EAAYC,EAAUQ,EAAKI,CAAS,CAAC,EAAsBU,EAAMC,EAAO,IAAI,CAAC,IAAIT,EAAI,MAAM,CAAC,MAAMb,EAAU,SAASC,EAAS,WAAWC,EAAW,WAAWC,CAAU,EAAE,SAAS,CAACE,EAAOG,EAAMF,CAAM,CAAC,CAAC,CAAE,CAACV,GAAc,aAAa,CAAC,YAAY,EAAE,UAAU,GAAG,UAAU,OAAO,SAAS,OAAO,WAAW,SAAS,WAAW,QAAQ,MAAM,IAAI,OAAO,GAAG,OAAO,GAAG,KAAK,EAAK,EAAE2B,EAAoB3B,GAAc,CAAC,YAAY,CAAC,KAAK4B,EAAY,OAAO,MAAM,eAAe,aAAa,EAAE,eAAe,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,GAAG,eAAe,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,aAAa,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,MAAM,cAAc,aAAa,SAAS,QAAQ,CAAC,QAAQ,SAAS,SAAS,SAAS,WAAW,MAAM,EAAE,aAAa,CAAC,QAAQ,UAAU,SAAS,WAAW,MAAM,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,aAAa,OAAO,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,IAAI,IAAI,EAAE,IAAI,IAAI,KAAK,EAAE,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,iBAAiB,aAAa,GAAM,aAAa,KAAK,cAAc,KAAK,CAAC,CAAC,ECCjsE,IAAMC,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,EAAGL,EAAOA,EAAO,SAAU,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCA29C,IAAMC,GAAiCC,EAASC,EAA2B,EAAQC,GAAmDC,GAAwBF,EAA2B,EAAQG,GAAgCJ,EAASK,EAA0B,EAAQC,GAAkDH,GAAwBE,EAA0B,EAAQE,GAAoCP,EAASQ,EAA8B,EAAQC,GAAmCC,GAA0BC,CAAS,EAAQC,GAAsBZ,EAASa,EAAgB,EAAQC,GAAwCX,GAAwBU,EAAgB,EAAQE,GAA+Bf,EAASgB,EAAyB,EAAQC,GAAiDd,GAAwBa,EAAyB,EAAQE,GAAWlB,EAASmB,EAAK,EAAQC,GAAoBpB,EAASqB,EAAc,EAAQC,GAAwBtB,EAASuB,EAAkB,EAAQC,GAAmBxB,EAASyB,EAAa,EAAQC,GAAgBC,GAAOhB,CAAS,EAAQiB,GAAmB5B,EAAS6B,EAAa,EAAQC,GAA4B9B,EAAS+B,EAAsB,EAAQC,GAAsBhC,EAASiC,EAAgB,EAAQC,GAAwC/B,GAAwB8B,EAAgB,EAAQE,GAAkBnC,EAASoC,EAAY,EAAQC,GAA4BrC,EAASsC,EAAsB,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,qBAAqB,UAAU,4CAA4C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,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,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,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,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAa,IAAY,SAAS,cAAc,mBAAmB,GAAG,SAAS,cAAc,UAAU,GAAG,SAAS,KAAaC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAO,CAAC,UAAUtC,GAAuB,QAAQ,WAAW,EAAQuC,GAAQ,CAAC,UAAUvC,GAAuB,QAAQ,WAAW,EAAQwC,GAAQ,CAAC,UAAUxC,GAAuB,QAAQ,WAAW,EAAQyC,GAAQ,CAAC,UAAUzC,GAAuB,QAAQ,WAAW,EAAQ0C,GAA6B,EAAW,SAASL,EAAMM,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEzB,GAASI,CAAK,EAAQsB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,GAAI,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQxD,GAAY,EAAK,EAAQiE,EAAe,OAAe,CAAC,sBAAAC,EAAsB,MAAAC,CAAK,EAAEC,GAAyB,MAAS,EAAQC,EAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,EAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAQG,EAAiB,CAAC,CAAC,QAAAH,EAAQ,SAAAC,EAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,KAAK,CAAE,CAAC,EAAmFI,EAAkBC,EAAGzE,GAAkB,GAA5F,CAAaoD,GAAuBA,EAAS,CAAuE,EAAQsB,EAAY,IAAS3E,GAAU,EAAiB6D,IAAc,YAAtB,GAAmEe,EAAWjC,EAAO,IAAI,EAAQkC,EAAa,IAAQ,CAAC7E,GAAU,GAAiB6D,IAAc,YAA6CiB,EAAUC,GAAkB,WAAW,EAAQC,EAAWrC,EAAO,IAAI,EAAQsC,EAAWF,GAAkB,WAAW,EAAEG,GAA0BnC,CAAY,EAAE,IAAMoC,EAAWJ,GAAkB,WAAW,EAAQK,GAAOC,GAAU,EAAQC,GAAW3C,EAAO,IAAI,EAAE,OAAA4C,GAAiB,CAAC,UAAUhD,GAAQ,UAAUD,GAAQ,UAAUD,GAAQ,UAAUD,EAAM,CAAC,EAAsBP,EAAK2D,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAtF,EAAiB,EAAE,SAAsBuF,EAAMC,EAAY,CAAC,GAAGpC,GAAUT,EAAgB,SAAS,CAAchB,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAe+D,EAAME,EAAO,IAAI,CAAC,GAAGnC,EAAU,UAAUkB,EAAGD,EAAkB,gBAAgBpB,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcvB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,CAAC,EAAE8C,EAAY,GAAgB9C,EAAK+D,EAA0B,CAAC,OAAO,GAAG,MAAM1C,GAAmB,OAAO,QAAQ,EAAE,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,yCAAyC,aAAa,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB0D,EAAKnE,GAAmD,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIkH,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,EAAEC,EAAa,GAAgBhD,EAAKlB,GAAQ,CAAC,SAAS0D,GAAsBxC,EAAKgE,GAAU,CAAC,SAAsBhE,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAMX,GAAmB,OAAO,QAAQ,EAAE,CAAC,CAAC,EAAE,SAAsBrB,EAAK+D,EAA0B,CAAC,SAAsBH,EAAMxH,GAAmC,CAAC,QAAQmC,GAAU,UAAU,uDAAuD,wBAAwB,UAAU,mBAAmB,oBAAoB,GAAG,UAAU,QAAQC,GAAW,aAAa,GAAK,KAAK,oBAAoB,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcwB,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQQ,EAAQ,QAAQ,YAAY,WAAW,CAAC,EAAE,SAAsBxC,EAAK/D,GAAkD,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI8G,EAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,EAAE,qCAAqC,GAAK,UAAUR,EAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,oBAAoB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQA,EAAQ,QAAQ,YAAY,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAexC,EAAKkE,GAAgB,CAAC,SAAS1B,EAAQ,SAAsBxC,EAAKgE,GAAU,CAAC,SAA+BG,GAA0BP,EAAYQ,EAAS,CAAC,SAAS,CAAcpE,EAAK8D,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,UAAUjB,EAAGD,EAAkB,gBAAgB,EAAE,wBAAwB,UAAU,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIJ,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAexC,EAAK+D,EAA0B,CAAC,MAAM,QAAQ,SAAsB/D,EAAK1D,EAAU,CAAC,QAAQqC,GAAW,UAAUkE,EAAGD,EAAkB,yBAAyB,EAAE,wBAAwB,UAAU,KAAKlE,GAAW,gBAAgB,GAAK,QAAQE,GAAW,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBoB,EAAK7D,GAA+B,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUwG,EAAiB,CAAC,QAAAH,CAAO,CAAC,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE3D,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,OAAO,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc5D,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,GAAGiD,EAAU,IAAIE,EAAK,SAAsBnD,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,EAAE,MAAS,CAAC,EAAE,SAAsBhC,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO1C,GAAmB,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB0D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,qCAAqC,OAAU,QAAQ,WAAW,CAAC,EAAE,SAAsBhC,EAAKvD,GAAwC,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIsG,EAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,GAAG,qCAAqC,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU1D,GAAY,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iTAAiT,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,GAAGoD,EAAW,IAAIL,CAAI,CAAC,EAAea,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAc5D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhC,EAAK+D,EAA0B,CAAC,OAAO,EAAE,MAAM,QAAQ1C,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB0D,EAAKpD,GAAiD,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc5D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc5D,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,88BAA6zB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,s4BAAs4B,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,g4BAA6wB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,s4BAAs4B,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAK+D,EAA0B,CAAC,SAAsB/D,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKlD,GAAM,CAAC,SAAS,GAAM,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAK,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAK,SAAS,YAAY,KAAK,GAAM,KAAK,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,MAAM,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekD,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAsB4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc5D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhC,EAAK+D,EAA0B,CAAC,OAAO,EAAE,MAAM,OAAO1C,GAAmB,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB0D,EAAKpD,GAAiD,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAc5D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,uBAAuB,EAAE,MAAS,CAAC,EAAE,SAAsBrB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY1C,GAAmB,OAAO,yCAAyC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKhD,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUsH,EAAkB,KAAKpD,CAAY,GAAG,kpBAAukB,SAAS,YAAY,UAAUoD,EAAkB,KAAKpD,CAAY,GAAG,yBAAyB,UAAU,KAAK,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,GAAG,UAAU7B,GAAY,CAAC,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,uBAAuB,EAAE,MAAS,CAAC,EAAE,SAAsBrB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY1C,GAAmB,OAAO,yCAAyC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKhD,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUsH,EAAkB,KAAKpD,CAAY,GAAG,6ZAAgX,SAAS,YAAY,UAAUoD,EAAkB,KAAKpD,CAAY,GAAG,uBAAuB,UAAU,KAAK,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,GAAG,UAAU7B,GAAY,CAAC,UAAU,QAAQ,UAAU,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,uBAAuB,EAAE,MAAS,CAAC,EAAE,SAAsBrB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY1C,GAAmB,OAAO,yCAAyC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKhD,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUsH,EAAkB,KAAKpD,CAAY,GAAG,gTAAwQ,SAAS,YAAY,UAAUoD,EAAkB,KAAKpD,CAAY,GAAG,UAAU,UAAU,KAAK,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,GAAG,UAAU7B,GAAY,CAAC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,uBAAuB,EAAE,MAAS,CAAC,EAAE,SAAsBrB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY1C,GAAmB,OAAO,yCAAyC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKhD,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUsH,EAAkB,MAAMpD,CAAY,GAAG,goBAAgjB,SAAS,YAAY,UAAUoD,EAAkB,MAAMpD,CAAY,GAAG,yBAAoB,UAAU,KAAK,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,GAAG,UAAU7B,GAAY,CAAC,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAsB4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc5D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhC,EAAK+D,EAA0B,CAAC,OAAO,EAAE,MAAM,QAAQ1C,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB0D,EAAKpD,GAAiD,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iEAAiE,EAAE,SAAS,yCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,waAAgY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wNAAwN,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsBA,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhC,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO1C,GAAmB,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBhC,EAAK9C,GAAmB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4F,EAAY,GAAgBc,EAAM,UAAU,CAAC,UAAU,+BAA+B,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,OAAO,EAAE,MAAM,QAAQ1C,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB0D,EAAKpD,GAAiD,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBkB,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,UAAU,MAAM,UAAU,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,UAAU,mCAA8B,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,yBAAoB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBkB,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,UAAU,QAAQ,UAAU,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,EAAE,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,oBAAoB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUoD,EAAkB,MAAMpD,CAAY,GAAG,WAAW,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWoC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,UAAU,MAAM,UAAU,QAAQ,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,EAAE,EAAE,UAAU,4BAAkB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,2CAA2C,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWqC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBF,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,EAAE,EAAE,UAAU,uBAAuB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,uCAAuC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWsC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,EAAE,EAAE,UAAU,oBAAe,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,QAAQ,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWuC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,EAAE,EAAE,UAAU,8BAAyB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWuC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,EAAE,EAAE,UAAU,yBAAoB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWsC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,UAAU,QAAQ,UAAU,QAAQ,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,EAAE,EAAE,UAAU,4BAAkB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,uCAAuC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWqC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBF,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,EAAE,EAAE,UAAU,uBAAkB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,yBAAyB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWuC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,EAAE,EAAE,UAAU,qBAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWuC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,UAAU,QAAQ,UAAU,QAAQ,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,EAAE,EAAE,UAAU,wBAAmB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,SAAsBrB,EAAK3C,GAAgB,CAAC,kBAAkB,CAAC,WAAWsC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBQ,EAAK5C,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiC,GAAY,CAAC,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,EAAE,EAAE,UAAU,wBAAmB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUiF,EAAkB,MAAMpD,CAAY,GAAG,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc5D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhC,EAAK+D,EAA0B,CAAC,OAAO,EAAE,MAAM,QAAQ1C,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB0D,EAAKpD,GAAiD,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,kBAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,SAAsB/D,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKxC,GAAc,CAAC,UAAU,IAAI,UAAU,kEAAkE,WAAW,QAAQ,SAAS,GAAG,WAAW,SAAS,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,GAAM,OAAO,GAAG,MAAM,GAAG,YAAY,KAAK,OAAO,IAAI,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qRAAkP,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4FAA4F,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,SAAsB/D,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKxC,GAAc,CAAC,UAAU,EAAE,UAAU,kEAAkE,WAAW,QAAQ,SAAS,GAAG,WAAW,SAAS,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,GAAM,OAAO,GAAG,MAAM,IAAI,YAAY,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kIAA6H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4FAA4F,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,SAAsB/D,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKxC,GAAc,CAAC,UAAU,IAAI,UAAU,kEAAkE,WAAW,QAAQ,SAAS,GAAG,WAAW,SAAS,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,GAAM,OAAO,GAAG,MAAM,EAAE,YAAY,IAAI,OAAO,IAAI,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0QAAuO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4FAA4F,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,SAAsB/D,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKxC,GAAc,CAAC,UAAU,GAAG,UAAU,kEAAkE,WAAW,QAAQ,SAAS,GAAG,WAAW,SAAS,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,GAAM,OAAO,GAAG,MAAM,IAAI,YAAY,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iBAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mOAAoN,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4FAA4F,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8C,EAAY,GAAgBc,EAAM,UAAU,CAAC,UAAU,8BAA8B,mBAAmB,uBAAuB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc5D,EAAK+D,EAA0B,CAAC,OAAO,EAAE,MAAM,QAAQ1C,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB0D,EAAKpD,GAAiD,CAAC,sBAAsB,GAAK,4BAA4B,YAAY,oBAAoB,GAAG,qCAAqC,GAAK,2BAA2B,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAKqE,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMpD,CAAY,GAAgBlB,EAAWoE,EAAS,CAAC,SAAsBpE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uCAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ1C,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,OAAU,UAAU,OAAU,UAAU,OAAU,QAAQ,YAAY,UAAU,MAAS,CAAC,EAAE,SAAsBhC,EAAKtC,GAAuB,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAKuE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BxE,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhC,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM1C,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,0BAA0B,GAAGgH,EAAW,OAAO,YAAY,IAAIG,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,qCAAqC,OAAU,UAAUwC,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBxE,EAAKnC,GAAwC,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,OAAO,EAAE,IAAI4F,GAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,GAAG,qCAAqC,GAAK,UAAUa,EAAkB,MAAMpD,CAAY,GAAG,gBAAgB,UAAUsD,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUF,EAAkB,MAAMpD,CAAY,GAAG,uBAAkB,UAAU,gSAAgS,UAAUoD,EAAkB,MAAMpD,CAAY,GAAG,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhC,EAAK+D,EAA0B,CAAC,OAAO,IAAI,MAAM1C,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBrB,EAAK1D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB0D,EAAKiE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBhC,EAAKjC,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyE,GAAI,CAAC,kFAAkF,kFAAkF,mSAAmS,6UAA6U,uIAAuI,yMAAyM,qIAAqI,wMAAwM,yTAAyT,qVAAqV,wHAAwH,2IAA2I,4SAA4S,iTAAiT,qRAAqR,gRAAgR,4VAA4V,wRAAwR,uPAAuP,0QAA0Q,4GAA4G,yRAAyR,4SAA4S,6SAA6S,yRAAyR,ovBAAovB,gSAAgS,2SAA2S,qOAAqO,6QAA6Q,gSAAgS,yVAAyV,4RAA4R,0UAA0U,gOAAgO,yUAAyU,mRAAmR,0TAA0T,sZAAsZ,2XAA2X,iOAAiO,yhBAAyhB,8OAA8O,8SAA8S,iJAAiJ,mHAAmH,+3NAA+3N,GAAeA,GAAI,GAAgBA,GAAI,mpBAAmpB,+yIAA+yI,EAW3oqFC,GAAgBC,EAAQhE,GAAU8D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhJ,GAAiC,GAAGK,GAAgC,GAAGG,GAAoC,GAAGK,GAAsB,GAAGG,GAA+B,GAAGG,GAAW,GAAGE,GAAoB,GAAGE,GAAwB,GAAGE,GAAmB,GAAGI,GAAmB,GAAGE,GAA4B,GAAGE,GAAsB,GAAGG,GAAkB,GAAGE,GAA4B,GAAG8G,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC3wE,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,6BAA+B,OAAO,sBAAwB,OAAO,qBAAuB,OAAO,qBAAuB,sKAAoM,sBAAwB,IAAI,yBAA2B,OAAO,4BAA8B,OAAO,oCAAsC,4JAA0L,uBAAyB,GAAG,yBAA2B,OAAO,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["_classCallCheck", "e", "t", "_defineProperties", "n", "r", "_createClass", "global", "getMethodName", "isDomElement", "isInteger", "isVimeoUrl", "getVimeoUrl", "window", "createCommonjsModule", "defineProperty", "WeakMap", "genId", "checkInstance", "isObject", "rand", "o", "Item", "schedule", "isThenable", "notify", "notifyIsolated", "resolve", "MakeDefWrapper", "reject", "iteratePromises", "MakeDef", "Promise", "i", "a", "storeCallback", "getCallbacks", "removeCallback", "shiftCallbacks", "swapCallbacks", "getOEmbedParameters", "createEmbed", "getOEmbedData", "u", "initializeEmbeds", "resizeEmbeds", "parseMessageData", "postMessage", "navigator", "processData", "initializeScreenfull", "onFullScreenEntered", "onFullScreenExit", "l", "s", "c", "Player", "vimeoRegex", "Vimeo", "withCSS", "video", "autoplay", "mute", "controls", "loop", "titles", "backgroundColor", "onPlay", "onEnd", "style", "props", "key", "setKey", "ye", "player", "pe", "borderRadius", "useRadius", "ue", "id", "embeddedPlayer", "c", "RenderTarget", "p", "motion", "addPropertyControls", "ControlType", "borderRadiusControl", "Vimeo_default", "VideoFonts", "getFonts", "Video", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "number", "paragraph", "title", "videoURL", "width", "props", "createLayoutDependency", "variants", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "rFExBnb6h", "Mz0wvNH6v", "kB1rNTf7X", "ZLxZW1prj", "y33fYjAOj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "visible", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Video", "RichText2", "css", "FramerbnagblXJQ", "withCSS", "bnagblXJQ_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "link", "name1", "position", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pRhVbW3Up", "QbsbPhov5", "uNFLaBT4L", "TOJFCrtjK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter14vcm07", "args", "onMouseLeave18b9cpk", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerFHseVXr8s", "withCSS", "FHseVXr8s_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "GmJX9wZ_Z_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "__FramerMetadata__", "valuesByLocaleId", "GmJX9wZ_Z_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cursorEndLeft", "cursorEndRight", "cursorLeft", "cursorRight", "height", "id", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ObBlL2Bkk", "xSoFtQf1E", "kBM7Fv7NS", "bYHp0vTOv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearsrd0iv", "args", "onAppearjdwcya", "onAppear17iwfzs", "onAppear1fnafab", "onAppearwptwzl", "onAppear1gda7rf", "onAppear1htt72s", "onAppeargjzfwm", "onTap1i3ppsl", "onTap24r2x6", "onTap1updlcu", "onTap1hx5aqe", "onTaprycw1u", "onTap13hko33", "onTap1grkh1x", "onTapbza0uy", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "getLocalizedValue", "css", "FramerGmJX9wZ_Z", "withCSS", "GmJX9wZ_Z_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "GyKJqP2Z6_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "__FramerMetadata__", "valuesByLocaleId", "GyKJqP2Z6_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "VideoFonts", "getFonts", "Video", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText2", "UtilitiesScrollMoreFonts", "YjypPLli_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "toImageSrc", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "animation5", "transition6", "animation6", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "poster", "uRL", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "twBEjiRp1", "Q9MpMF_yE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapdi4leu", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "getLocalizedValue", "css", "FramerGyKJqP2Z6", "withCSS", "GyKJqP2Z6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "y2aW366zJ_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v0", "v1", "v2", "v3", "v4", "v5", "__FramerMetadata__", "valuesByLocaleId", "y2aW366zJ_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "css", "FramerG2PcQjA9C", "withCSS", "G2PcQjA9C_default", "addPropertyControls", "ControlType", "addFonts", "AccordionAccordionPlusFonts", "getFonts", "G2PcQjA9C_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "number", "paragraph", "title", "width", "props", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "h1ZthYPRp", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1u83njm", "args", "onTapwtfasj", "onTap1tceenb", "onTapkeboek", "onTap1jfs64k", "onTap65t8tl", "onTap18iix5v", "onTap1jfzh66", "onTapz3k2f4", "onTapgmkdcg", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramereIuM0M4EB", "withCSS", "eIuM0M4EB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AccordionAccordionRowFonts", "getFonts", "eIuM0M4EB_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "css", "Framery2aW366zJ", "withCSS", "y2aW366zJ_default", "addPropertyControls", "ControlType", "addFonts", "o", "e", "t", "h", "moduleBaseUrl", "icons", "iconKeys", "weightOptions", "styleKeyOptions", "styleOptionPropKeys", "optionKey", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "style", "isMounted", "pe", "iconKey", "useIconSelection", "styleOptionProps", "prop", "iconStyle", "se", "iconStyleKey", "activeStyle", "SelectedIcon", "setSelectedIcon", "ye", "h", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "hideStyleOptions", "styleOptions", "styleOptionsNumber", "name", "getIconSelection", "icon", "addPropertyControls", "ControlType", "result", "defaultEvents", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "C1aHFofEm", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1j0b5pp", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerywmfPg6Td", "withCSS", "ywmfPg6Td_default", "addPropertyControls", "ControlType", "addFonts", "NumberCounter", "props", "startNumber", "endNumber", "fontColor", "fontSize", "fontWeight", "fontFamily", "speed", "prefix", "suffix", "loop", "count", "setCount", "ye", "isVisible", "setIsVisible", "ref", "pe", "ue", "observer", "entries", "entry", "intervalId", "prevCount", "u", "motion", "addPropertyControls", "ControlType", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationNavigationDesktopFonts", "getFonts", "F0lbt84nG_default", "NavigationNavigationDesktopWithVariantAppearEffect", "withVariantAppearEffect", "NavigationNavigationMobileFonts", "CA2UVAOBt_default", "NavigationNavigationMobileWithVariantAppearEffect", "NavigationMobileFullNavigationFonts", "uL6YOTdAZ_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "AboutAboutHeaderFonts", "GyKJqP2Z6_default", "AboutAboutHeaderWithVariantAppearEffect", "GlobalLineAnimationGlobalFonts", "lw0LfyniE_default", "GlobalLineAnimationGlobalWithVariantAppearEffect", "VimeoFonts", "Vimeo_default", "AboutCoreValueFonts", "bnagblXJQ_default", "AccordionAccordionFonts", "y2aW366zJ_default", "AboutTeamCardFonts", "FHseVXr8s_default", "ContainerWithFX", "withFX", "NumberCounterFonts", "NumberCounter", "AboutTestimonialSliderFonts", "GmJX9wZ_Z_default", "GlobalSectionCTAFonts", "bDuMp2cg2_default", "GlobalSectionCTAWithVariantAppearEffect", "FooterFooterFonts", "CPt2kErNr_default", "UtilitiesChevronCursorFonts", "ywmfPg6Td_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "animation5", "transition3", "transition4", "transition5", "transition6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "cursor1", "cursor2", "cursor3", "Component", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "EHMhKGDpT3bnx0g", "overlay", "loadMore", "args", "wCQM1JsQO1wnntms", "scopingClassNames", "cx", "isDisplayed", "ref1", "isDisplayed1", "elementId", "useRouteElementId", "ref2", "elementId1", "usePreloadLocalizedValues", "elementId2", "router", "useRouter", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "RichText2", "getLocalizedValue", "ResolveLinks", "resolvedLinks", "css", "FramerpNHeRDjTh", "withCSS", "pNHeRDjTh_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
