@gravity-ui/page-constructor 3.10.3 → 3.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -11
- package/build/cjs/components/Media/Image/Image.js +3 -2
- package/build/cjs/editor/components/ControlPanel/ControlPanel.js +4 -1
- package/build/cjs/editor/components/DeviceEmulation/DeviceEmulation.d.ts +7 -0
- package/build/cjs/editor/components/DeviceEmulation/DeviceEmulation.js +10 -0
- package/build/cjs/editor/components/DeviceEmulation/DeviceEmulationMobile/DeviceEmulationMobile.css +33 -0
- package/build/cjs/editor/components/DeviceEmulation/DeviceEmulationMobile/DeviceEmulationMobile.d.ts +8 -0
- package/build/cjs/editor/components/DeviceEmulation/DeviceEmulationMobile/DeviceEmulationMobile.js +41 -0
- package/build/cjs/editor/components/DeviceEmulation/utils.d.ts +4 -0
- package/build/cjs/editor/components/DeviceEmulation/utils.js +7 -0
- package/build/cjs/editor/components/Layout/Layout.js +3 -1
- package/build/cjs/editor/containers/Editor/Editor.d.ts +1 -1
- package/build/cjs/editor/containers/Editor/Editor.js +34 -9
- package/build/cjs/editor/containers/Form/Form.js +2 -2
- package/build/cjs/editor/context.d.ts +9 -0
- package/build/cjs/editor/context.js +6 -0
- package/build/cjs/editor/icons/Tablet.d.ts +2 -0
- package/build/cjs/editor/icons/Tablet.js +9 -0
- package/build/cjs/editor/types/index.d.ts +14 -5
- package/build/cjs/editor/types/index.js +3 -1
- package/build/cjs/editor/utils/index.d.ts +2 -0
- package/build/cjs/editor/utils/index.js +4 -1
- package/build/cjs/editor/widget/constants.d.ts +4 -0
- package/build/cjs/editor/widget/constants.js +8 -0
- package/build/cjs/editor/widget/index.d.ts +21 -0
- package/build/cjs/editor/widget/index.js +76 -0
- package/build/cjs/editor/widget/utils.d.ts +1 -0
- package/build/cjs/editor/widget/utils.js +19 -0
- package/build/cjs/hooks/useHeightCalculator.js +1 -1
- package/build/cjs/models/navigation.d.ts +3 -2
- package/build/{esm/navigation/components/Header/Header.css → cjs/navigation/components/DesktopNavigation/DesktopNavigation.css} +28 -36
- package/build/cjs/navigation/components/DesktopNavigation/DesktopNavigation.d.ts +4 -0
- package/build/cjs/navigation/components/DesktopNavigation/DesktopNavigation.js +21 -0
- package/build/cjs/navigation/components/MobileMenuButton/MobileMenuButton.css +7 -0
- package/build/cjs/navigation/components/MobileMenuButton/MobileMenuButton.d.ts +3 -0
- package/build/cjs/navigation/components/MobileMenuButton/MobileMenuButton.js +15 -0
- package/build/cjs/navigation/components/MobileNavigation/MobileNavigation.css +10 -5
- package/build/cjs/navigation/components/MobileNavigation/MobileNavigation.d.ts +1 -10
- package/build/cjs/navigation/components/MobileNavigation/MobileNavigation.js +7 -30
- package/build/cjs/navigation/components/Navigation/Navigation.css +8 -13
- package/build/cjs/navigation/components/Navigation/Navigation.d.ts +4 -7
- package/build/cjs/navigation/components/Navigation/Navigation.js +37 -15
- package/build/cjs/navigation/components/NavigationItem/NavigationItem.css +28 -0
- package/build/cjs/navigation/components/NavigationItem/NavigationItem.d.ts +3 -9
- package/build/cjs/navigation/components/NavigationItem/NavigationItem.js +15 -6
- package/build/cjs/navigation/components/NavigationItem/components/GithubButton/GithubButton.d.ts +1 -1
- package/build/cjs/navigation/components/NavigationItem/components/NavigationButton/NavigationButton.d.ts +1 -1
- package/build/cjs/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.d.ts +5 -4
- package/build/cjs/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.js +12 -7
- package/build/cjs/navigation/components/NavigationItem/components/NavigationLink/NavigationLink.d.ts +1 -1
- package/build/cjs/navigation/components/NavigationList/NavigationList.d.ts +3 -0
- package/build/cjs/navigation/components/NavigationList/NavigationList.js +11 -0
- package/build/cjs/navigation/components/NavigationListItem/NavigationListItem.d.ts +4 -13
- package/build/cjs/navigation/components/NavigationListItem/NavigationListItem.js +6 -13
- package/build/cjs/navigation/components/NavigationPopup/NavigationPopup.css +5 -4
- package/build/cjs/navigation/components/NavigationPopup/NavigationPopup.d.ts +1 -8
- package/build/cjs/navigation/components/NavigationPopup/NavigationPopup.js +6 -6
- package/build/cjs/navigation/containers/Layout/Layout.js +2 -2
- package/build/cjs/navigation/models.d.ts +63 -0
- package/build/cjs/navigation/{constants.js → models.js} +7 -1
- package/build/cjs/navigation/utils.d.ts +11 -1
- package/build/cjs/navigation/utils.js +19 -1
- package/build/esm/components/Media/Image/Image.js +3 -2
- package/build/esm/editor/components/ControlPanel/ControlPanel.js +6 -3
- package/build/esm/editor/components/DeviceEmulation/DeviceEmulation.d.ts +7 -0
- package/build/esm/editor/components/DeviceEmulation/DeviceEmulation.js +7 -0
- package/build/esm/editor/components/DeviceEmulation/DeviceEmulationMobile/DeviceEmulationMobile.css +33 -0
- package/build/esm/editor/components/DeviceEmulation/DeviceEmulationMobile/DeviceEmulationMobile.d.ts +9 -0
- package/build/esm/editor/components/DeviceEmulation/DeviceEmulationMobile/DeviceEmulationMobile.js +40 -0
- package/build/esm/editor/components/DeviceEmulation/utils.d.ts +4 -0
- package/build/esm/editor/components/DeviceEmulation/utils.js +3 -0
- package/build/esm/editor/components/Layout/Layout.js +3 -1
- package/build/esm/editor/containers/Editor/Editor.d.ts +1 -1
- package/build/esm/editor/containers/Editor/Editor.js +35 -10
- package/build/esm/editor/containers/Form/Form.js +2 -2
- package/build/esm/editor/context.d.ts +9 -0
- package/build/esm/editor/context.js +2 -0
- package/build/esm/editor/icons/Tablet.d.ts +2 -0
- package/build/esm/editor/icons/Tablet.js +4 -0
- package/build/esm/editor/types/index.d.ts +14 -5
- package/build/esm/editor/types/index.js +3 -1
- package/build/esm/editor/utils/index.d.ts +2 -0
- package/build/esm/editor/utils/index.js +2 -0
- package/build/esm/editor/widget/constants.d.ts +4 -0
- package/build/esm/editor/widget/constants.js +5 -0
- package/build/esm/editor/widget/index.d.ts +21 -0
- package/build/esm/editor/widget/index.js +71 -0
- package/build/esm/editor/widget/utils.d.ts +1 -0
- package/build/esm/editor/widget/utils.js +15 -0
- package/build/esm/hooks/useHeightCalculator.js +1 -1
- package/build/esm/models/navigation.d.ts +3 -2
- package/build/{cjs/navigation/components/Header/Header.css → esm/navigation/components/DesktopNavigation/DesktopNavigation.css} +28 -36
- package/build/esm/navigation/components/DesktopNavigation/DesktopNavigation.d.ts +5 -0
- package/build/esm/navigation/components/DesktopNavigation/DesktopNavigation.js +19 -0
- package/build/esm/navigation/components/MobileMenuButton/MobileMenuButton.css +7 -0
- package/build/esm/navigation/components/MobileMenuButton/MobileMenuButton.d.ts +4 -0
- package/build/esm/navigation/components/MobileMenuButton/MobileMenuButton.js +11 -0
- package/build/esm/navigation/components/MobileNavigation/MobileNavigation.css +10 -5
- package/build/esm/navigation/components/MobileNavigation/MobileNavigation.d.ts +1 -10
- package/build/esm/navigation/components/MobileNavigation/MobileNavigation.js +9 -31
- package/build/esm/navigation/components/Navigation/Navigation.css +8 -13
- package/build/esm/navigation/components/Navigation/Navigation.d.ts +4 -7
- package/build/esm/navigation/components/Navigation/Navigation.js +35 -15
- package/build/esm/navigation/components/NavigationItem/NavigationItem.css +28 -0
- package/build/esm/navigation/components/NavigationItem/NavigationItem.d.ts +4 -9
- package/build/esm/navigation/components/NavigationItem/NavigationItem.js +16 -6
- package/build/esm/navigation/components/NavigationItem/components/GithubButton/GithubButton.d.ts +1 -1
- package/build/esm/navigation/components/NavigationItem/components/NavigationButton/NavigationButton.d.ts +1 -1
- package/build/esm/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.d.ts +5 -4
- package/build/esm/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.js +12 -7
- package/build/esm/navigation/components/NavigationItem/components/NavigationLink/NavigationLink.d.ts +1 -1
- package/build/esm/navigation/components/NavigationList/NavigationList.d.ts +3 -0
- package/build/esm/navigation/components/NavigationList/NavigationList.js +7 -0
- package/build/esm/navigation/components/NavigationListItem/NavigationListItem.d.ts +4 -14
- package/build/esm/navigation/components/NavigationListItem/NavigationListItem.js +5 -10
- package/build/esm/navigation/components/NavigationPopup/NavigationPopup.css +5 -4
- package/build/esm/navigation/components/NavigationPopup/NavigationPopup.d.ts +1 -8
- package/build/esm/navigation/components/NavigationPopup/NavigationPopup.js +6 -6
- package/build/esm/navigation/containers/Layout/Layout.js +2 -2
- package/build/esm/navigation/models.d.ts +63 -0
- package/build/esm/navigation/{constants.js → models.js} +6 -0
- package/build/esm/navigation/utils.d.ts +11 -1
- package/build/esm/navigation/utils.js +17 -0
- package/package.json +39 -16
- package/server/models/navigation.d.ts +3 -2
- package/widget/index.js +1 -0
- package/CHANGELOG.md +0 -1469
- package/build/cjs/navigation/components/Header/Header.d.ts +0 -8
- package/build/cjs/navigation/components/Header/Header.js +0 -86
- package/build/cjs/navigation/components/NavigationDropdownItem/NavigationDropdownItem.d.ts +0 -11
- package/build/cjs/navigation/components/NavigationDropdownItem/NavigationDropdownItem.js +0 -15
- package/build/cjs/navigation/components/NavigationListItem/NavigationListItem.css +0 -27
- package/build/cjs/navigation/constants.d.ts +0 -6
- package/build/esm/navigation/components/Header/Header.d.ts +0 -9
- package/build/esm/navigation/components/Header/Header.js +0 -82
- package/build/esm/navigation/components/NavigationDropdownItem/NavigationDropdownItem.d.ts +0 -11
- package/build/esm/navigation/components/NavigationDropdownItem/NavigationDropdownItem.js +0 -13
- package/build/esm/navigation/components/NavigationListItem/NavigationListItem.css +0 -27
- package/build/esm/navigation/constants.d.ts +0 -6
package/widget/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default "(()=>{var e={9703:(e,t,r)=>{var n,o;n=function(){\"use strict\";var e={exports:{}};!function(e){function t(e){return\"object\"==typeof e&&Boolean(e.composed)?r(this):n(this)}function r(e){var t=n(e);return o(t)?r(t.host):t}function n(e){return null!=e.parentNode?n(e.parentNode):e}function o(e){return\"#document-fragment\"===e.nodeName&&\"ShadowRoot\"===e.constructor.name}e.exports&&(e.exports=t)}(e);var t,r,n=e.exports;\"undefined\"!=typeof document&&(t=Element.prototype,r=t.matches||t.matchesSelector||t.webkitMatchesSelector||t.mozMatchesSelector||t.msMatchesSelector||t.oMatchesSelector,t.matches=t.matchesSelector=r||function(e){var r=(t.getRootNode?t.getRootNode():n.call(t)).querySelectorAll(e),o=this;return Array.prototype.some.call(r,(function(e){return e===o}))});const o=e=>{const t=e.composedPath();return Array.isArray(t)&&t.length>0?t[0]:e.target},i=e=>{const t=o(e);return!t||!t.matches},a={TABS:\".yfm .yfm-tabs\",TAB_LIST:\".yfm .yfm-tab-list\",TAB:\".yfm .yfm-tab\",TAB_PANEL:\".yfm .yfm-tab-panel\"},c={ACTIVE:\"active\"};function l(e){const t=e.parentNode;if(!t||!t.matches(a.TAB_LIST)||!t.parentNode||!t.parentNode.matches(a.TABS)||e.classList.contains(c.ACTIVE))return;const r=e,n=r.parentNode,o=null==n?void 0:n.parentNode,i=Array.from((null==o?void 0:o.querySelectorAll(a.TAB))||[]),l=Array.from((null==o?void 0:o.querySelectorAll(a.TAB_PANEL))||[]),s=i.indexOf(r);for(let e=0;e<i.length;e++){const t=i[e],r=l[e];e===s?(t.classList.toggle(c.ACTIVE,!0),t.setAttribute(\"aria-selected\",\"true\"),t.setAttribute(\"tabindex\",\"0\"),r.classList.toggle(c.ACTIVE,!0)):(t.classList.toggle(c.ACTIVE,!1),t.setAttribute(\"aria-selected\",\"false\"),t.setAttribute(\"tabindex\",\"-1\"),r.classList.toggle(c.ACTIVE,!1))}}\"undefined\"!=typeof document&&document.addEventListener(\"click\",(e=>{const t=o(e);!i(e)&&t.matches(a.TAB)&&l(t)}));const s=\".yfm-clipboard-button\";function u(e){if(!e)return Promise.resolve();if(navigator.clipboard&&(navigator.clipboard.writeText,1))return navigator.clipboard.writeText(e);const t=document.createElement(\"textarea\");return t.setAttribute(\"style\",\"position: absolute; left: 1000%\"),t.textContent=e,document.body.append(t),t.select(),document.execCommand(\"copy\"),document.body.removeChild(t),Promise.resolve()}function p(e){if(!e)return;const t=e.getAttribute(\"data-animation\"),r=e.getRootNode().getElementById(`visibileAnimation-${t}`);r&&r.beginElement()}\"undefined\"!=typeof document&&document.addEventListener(\"click\",(e=>{const t=o(e);if(i(e)||!t.matches(s))return;const r=t.parentNode;if(!r)return;const n=r.querySelector(\"pre code\");n&&u(n.innerText).then((()=>{p(r.querySelector(\".yfm-clipboard-button\"))}))}));const d={CUT:\".yfm .yfm-cut\",TITLE:\".yfm .yfm-cut-title\",CONTENT:\".yfm .yfm-cut-content\"},f={OPEN:\"open\"};function m(e){const t=e.parentNode;t instanceof HTMLElement&&t.classList.toggle(f.OPEN)}function y(e){var t;return e instanceof HTMLElement&&(null===(t=null==e?void 0:e.matches)||void 0===t?void 0:t.call(e,d.TITLE))}function h(e){var t;const r=o(e);if(y(r))return r;const n=null===(t=e.composedPath)||void 0===t?void 0:t.call(e);return null==n?void 0:n.find(y)}\"undefined\"!=typeof document&&document.addEventListener(\"click\",(e=>{if(i(e))return;const t=h(e);t&&m(t)}))},void 0===(o=\"function\"==typeof n?n.call(t,r,t,e):n)||(e.exports=o)},2406:(e,t,r)=>{\"use strict\";var n=r(2175),o=n.setup();function i(e){var t=o(e);function r(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var n,o=e.shift(),i=e[0],a=e[1];return\"string\"==typeof o&&\"string\"!=typeof i||(a=i,i=null),n=t(o,i),a&&(n=n.mix(a)),n.toString()}return r.builder=function(){return t},r}i.setup=function(e){o=n.setup(e)},i.reset=function(){o=n.setup()},t.Z=i},2853:(e,t,r)=>{\"use strict\";var n=r(2175),o=(0,n.setup)();function i(e){return\"string\"==typeof e}function a(e){var t=o(e);function r(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var n,o,a=e.shift(),c=e[0],l=e[1];return(\"string\"!=typeof a||(i(o=c)||Array.isArray(o)&&o.every(i)))&&(l=c,c=null),n=t(a,c),l&&(n=n.mix(l)),n.toString()}return r.builder=function(){return t},r}a.setup=function(e){o=(0,n.setup)(e)},a.reset=function(){o=(0,n.setup)()},t.Z=a},2175:function(e){e.exports=function(e){var t={};function r(n){if(t[n])return t[n].exports;var o=t[n]={i:n,l:!1,exports:{}};return e[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&t&&\"string\"!=typeof e)for(var o in e)r.d(n,o,function(t){return e[t]}.bind(null,o));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,\"a\",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p=\"\",r(r.s=0)}([function(e,t,r){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0});var n=r(1);t.ERROR_BLOCK_NAME_TYPE=\"Block name should be a string\",t.ERROR_BLOCK_NAME_EMPTY=\"Block name should be non-empty\";var o={ns:\"\",el:\"__\",mod:\"_\",modValue:\"_\"},i=function(e){return\"string\"==typeof e},a=function(e){return\"string\"!=typeof e},c=function(e,t){for(var r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];var i=n.assign({},t);return i.mixes=i.mixes.concat(r),p(i,e)},l=function(e,t,r){for(var o=[],i=3;i<arguments.length;i++)o[i-3]=arguments[i];var a=n.assign({},t),c=n.assign({},a.states||{});return c[r]=n.assign.apply(void 0,[{},c[r]||{}].concat(o)),a.states=c,p(a,e)},s=function(e,t,r,n){return String.prototype.split.call(u(e,t),r,n)},u=function(e,t){var r=t.name,n=t.mods,o=t.mixes,i=t.states,a=[r];if(n&&(a=a.concat(Object.keys(n).filter((function(e){return n[e]})).map((function(t){var o=n[t];return!0===o?r+e.mod+t:r+e.mod+t+e.modValue+o})))),i&&Object.keys(i).forEach((function(e){var t=i[e];a=a.concat(Object.keys(t).filter((function(e){return t[e]})).map((function(t){return e+t})))})),e.ns&&(a=a.map((function(t){return e.ns+t}))),o&&(a=a.concat(function(e){return void 0===e&&(e=[]),e.map((function(e){return Array.isArray(e)?e.join(\" \"):\"object\"==typeof e&&null!==e||\"function\"==typeof e?e.toString():\"string\"==typeof e?e:\"\"})).filter((function(e){return!!e}))}(o))),e.classMap){var c=e.classMap;a=a.map((function(e){return c[e]||e}))}return a.join(\" \")},p=function(e,t){return{mix:c.bind(null,t,e),split:s.bind(null,t,e),is:l.bind(null,t,e,\"is-\"),has:l.bind(null,t,e,\"has-\"),state:l.bind(null,t,e,\"is-\"),toString:u.bind(null,t,e)}},d=function(e,t){var r={name:e,mods:{},mixes:[],states:{\"is-\":{},\"has-\":{}}},o=function(e,t){for(var r=[],o=2;o<arguments.length;o++)r[o-2]=arguments[o];if(!r.length)return u(e,t);var c=n.assign({},t),l=r.filter(i).reduce((function(t,r){return t+e.el+r}),\"\");l&&(c.name=c.name+l);var s=r.filter(a).reduce((function(e,t){return n.assign(e,t)}),{});return c.mods=n.assign({},c.mods,s),p(c,e)}.bind(null,t,r);return o.mix=c.bind(null,t,r),o.split=s.bind(null,t,r),o.is=l.bind(null,t,r,\"is-\"),o.has=l.bind(null,t,r,\"has-\"),o.state=l.bind(null,t,r,\"is-\"),o.toString=u.bind(null,t,r),o};t.setup=function(e){return void 0===e&&(e={}),function(r){if(\"string\"!=typeof r)throw new Error(t.ERROR_BLOCK_NAME_TYPE);var i=r.trim();if(!i)throw new Error(t.ERROR_BLOCK_NAME_EMPTY);return d(i,n.assign({},o,e))}},t.block=t.setup(),t.default=t.block},function(e,t,r){\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.assign=function(e){for(var t=[],r=1;r<arguments.length;r++)t[r-1]=arguments[r];for(var n=0;n<t.length;n++){var o=t[n];for(var i in o)o.hasOwnProperty(i)&&(e[i]=o[i])}return e}}])},4184:(e,t)=>{var r;!function(){\"use strict\";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var i=typeof r;if(\"string\"===i||\"number\"===i)e.push(r);else if(Array.isArray(r)){if(r.length){var a=o.apply(null,r);a&&e.push(a)}}else if(\"object\"===i){if(r.toString!==Object.prototype.toString&&!r.toString.toString().includes(\"[native code]\")){e.push(r.toString());continue}for(var c in r)n.call(r,c)&&r[c]&&e.push(c)}}}return e.join(\" \")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},8173:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'.yfm {\\n font-family: \\'YS Text\\', \\'Segoe UI\\', Arial, Helvetica, sans-serif, \\'Apple Color Emoji\\', \\'Segoe UI Emoji\\', \\'Segoe UI Symbol\\';\\n font-size: 15px;\\n line-height: 20px;\\n word-wrap: break-word;\\n color: rgba(0, 0, 0, 0.7);\\n --yfm-color-hljs-background: rgba(107, 132, 153, 0.12);\\n --yfm-color-hljs-subst: #444;\\n --yfm-color-hljs-comment: #888888;\\n --yfm-color-hljs-deletion: #880000;\\n --yfm-color-hljs-section: #880000;\\n --yfm-color-hljs-pseudo: #BC6060;\\n --yfm-color-hljs-literal: #78A960;\\n --yfm-color-hljs-addition: #397300;\\n --yfm-color-hljs-meta: #1f7199;\\n --yfm-color-hljs-meta-string: #4d99bf; }\\n .yfm * {\\n box-sizing: border-box; }\\n .yfm > *:not(h2):not(h3):not(h4):not(h5):not(h6):first-child {\\n margin-top: 0 !important; }\\n .yfm > *:last-child {\\n margin-bottom: 0 !important; }\\n .yfm h1, .yfm h2, .yfm h3, .yfm h4, .yfm h5, .yfm h6 {\\n margin-bottom: 15px;\\n font-weight: 500; }\\n .yfm h1 {\\n font-size: 32px;\\n line-height: 40px; }\\n .yfm h2 {\\n font-size: 24px;\\n line-height: 28px; }\\n .yfm h3 {\\n font-size: 20px;\\n line-height: 24px; }\\n .yfm h4 {\\n font-size: 17px;\\n line-height: 24px; }\\n .yfm h5 {\\n font-size: 15px;\\n line-height: 20px; }\\n .yfm h6 {\\n font-size: 13px;\\n line-height: 18px; }\\n .yfm a {\\n background-color: transparent;\\n color: #027bf3;\\n text-decoration: none; }\\n .yfm a:hover, .yfm a:active {\\n color: #004080; }\\n .yfm a:not([href]) {\\n color: inherit; }\\n .yfm strong {\\n font-weight: 700; }\\n .yfm img, .yfm svg {\\n box-sizing: content-box;\\n max-width: 100%;\\n border: none;\\n vertical-align: middle; }\\n .yfm img[align=right], .yfm svg[align=right] {\\n padding-left: 20px; }\\n .yfm img[align=left], .yfm svg[align=left] {\\n padding-right: 20px; }\\n .yfm img {\\n background-color: #ffffff; }\\n .yfm svg {\\n height: auto; }\\n .yfm .katex svg {\\n height: initial; }\\n .yfm img + small {\\n display: block; }\\n .yfm p,\\n .yfm blockquote,\\n .yfm ul,\\n .yfm ol,\\n .yfm dl,\\n .yfm table,\\n .yfm pre {\\n margin: 0 0 15px 0; }\\n .yfm ul pre, .yfm ol pre, .yfm dl pre {\\n margin-top: 15px; }\\n .yfm code,\\n .yfm kbd,\\n .yfm pre {\\n font-family: \\'SF Mono\\', \\'Monaco\\', \\'Menlo\\', \\'Consolas\\', \\'Ubuntu Mono\\', \\'Liberation Mono\\', \\'DejaVu Sans Mono\\', \\'Courier New\\', \\'Courier\\', monospace;\\n font-size: 1em;\\n font-feature-settings: normal; }\\n .yfm input {\\n margin: 0;\\n overflow: visible;\\n font-family: inherit;\\n font-size: inherit;\\n line-height: inherit; }\\n .yfm input[type=\\'checkbox\\'] {\\n box-sizing: border-box;\\n padding: 0; }\\n .yfm table {\\n color: #333333;\\n display: inline-block;\\n max-width: 100%;\\n width: auto;\\n overflow: auto;\\n position: relative;\\n z-index: 1;\\n border: 1px solid rgba(0, 0, 0, 0.07);\\n box-sizing: border-box;\\n border-radius: 8px;\\n border-collapse: collapse;\\n border-spacing: 0;\\n background: #ffffff; }\\n .yfm table thead, .yfm table tr:nth-child(2n) {\\n background-color: rgba(0, 0, 0, 0.02); }\\n .yfm table th, .yfm table td {\\n padding: 10px 15px;\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis; }\\n .yfm table th {\\n font-weight: 500;\\n text-align: left; }\\n .yfm table td {\\n white-space: normal;\\n vertical-align: baseline; }\\n .yfm hr {\\n box-sizing: content-box;\\n height: 0.25em;\\n padding: 0;\\n margin: 1.5em 0;\\n overflow: hidden;\\n background-color: rgba(0, 0, 0, 0.07);\\n border: none; }\\n .yfm hr::before {\\n content: \\'\\';\\n display: table; }\\n .yfm hr::after {\\n content: \\'\\';\\n display: table;\\n clear: both; }\\n .yfm blockquote {\\n position: relative;\\n padding-left: 12px;\\n border-left: 3px solid #027bf3; }\\n .yfm blockquote > *:first-child {\\n margin-top: 0; }\\n .yfm blockquote > *:last-child {\\n margin-bottom: 0; }\\n .yfm dl {\\n padding: 0; }\\n .yfm dl > *:first-child {\\n margin-top: 0; }\\n .yfm dl > *:last-child {\\n margin-bottom: 0; }\\n .yfm dl dt {\\n margin-bottom: 5px;\\n font-size: 1em;\\n font-weight: 500;\\n font-style: italic; }\\n .yfm dl dd {\\n margin-bottom: 15px;\\n padding: 0 15px; }\\n .yfm dd {\\n margin-left: 0; }\\n .yfm dd > ol:first-child,\\n .yfm dd > ul:first-child,\\n .yfm dd > dd:first-child {\\n padding-left: 0; }\\n .yfm ul, .yfm ol {\\n padding-left: 2.2em; }\\n .yfm ul ul,\\n .yfm ul ol,\\n .yfm ol ol,\\n .yfm ol ul {\\n margin-top: 0;\\n margin-bottom: 0; }\\n .yfm:not(.yfm_no-list-reset) ol {\\n list-style-type: none;\\n counter-reset: list; }\\n .yfm:not(.yfm_no-list-reset) ol > li {\\n position: relative;\\n counter-increment: list; }\\n .yfm:not(.yfm_no-list-reset) ol > li::before {\\n position: absolute;\\n right: 100%;\\n margin-right: 4px;\\n content: counters(list, \".\") \". \"; }\\n .yfm li {\\n word-wrap: break-word; }\\n .yfm li + li {\\n margin-top: 0.33em; }\\n .yfm li p,\\n .yfm li blockquote {\\n margin-top: 15px; }\\n .yfm code {\\n padding: 0.1em 0.4em 0.15em;\\n background-color: rgba(107, 132, 153, 0.12);\\n border-radius: 4px;\\n font-size: 0.875em;\\n white-space: normal;\\n color: #3b6080; }\\n .yfm pre {\\n word-wrap: normal; }\\n .yfm table code {\\n white-space: nowrap; }\\n .yfm pre * code {\\n display: inline;\\n padding: 0;\\n margin: 0;\\n overflow: visible;\\n word-wrap: normal;\\n background-color: transparent;\\n border: 0;\\n color: rgba(0, 0, 0, 0.7); }\\n .yfm pre > code {\\n display: block;\\n padding: 16px;\\n overflow: auto;\\n background-color: rgba(107, 132, 153, 0.12);\\n color: rgba(0, 0, 0, 0.7);\\n white-space: pre; }\\n\\n.yfm .yfm-note {\\n max-width: 1296px;\\n margin: 20px 0;\\n padding: 20px 20px 20px 64px;\\n border-radius: 10px; }\\n .yfm .yfm-note .yfm-note-title {\\n font-weight: 700; }\\n .yfm .yfm-note > p {\\n margin: 0 0 10px 0; }\\n .yfm .yfm-note > p:first-child::before {\\n box-sizing: content-box;\\n display: block;\\n width: 24px;\\n height: 24px;\\n margin-top: -2px;\\n margin-left: -44px;\\n padding-right: 20px;\\n float: left; }\\n .yfm .yfm-note > p:last-child {\\n margin-bottom: 0; }\\n .yfm .yfm-note.yfm-accent-info > p:first-child::before {\\n content: url(\\'data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 16 16\"%3E%3Ccircle cx=\"8\" cy=\"8\" r=\"8\" fill=\"rgb(2,123,243)\"/%3E%3Crect width=\"1\" height=\"5\" x=\"7.5\" y=\"6.5\" stroke=\"%23fff\" rx=\".5\"/%3E%3Ccircle cx=\"8\" cy=\"4\" r=\"1\" fill=\"%23fff\"/%3E%3C/svg%3E\\'); }\\n .yfm .yfm-note.yfm-accent-tip > p:first-child::before {\\n content: url(\\'data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 16 16\"%3E%3Ccircle cx=\"8\" cy=\"8\" r=\"8\" fill=\"rgb(86,189,103)\"/%3E%3Crect width=\"1\" height=\"5\" x=\"7.5\" y=\"6.5\" stroke=\"%23fff\" rx=\".5\"/%3E%3Ccircle cx=\"8\" cy=\"4\" r=\"1\" fill=\"%23fff\"/%3E%3C/svg%3E\\'); }\\n .yfm .yfm-note.yfm-accent-alert > p:first-child::before {\\n content: url(\\'data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 16 16\"%3E%3Ccircle cx=\"8\" cy=\"8\" r=\"8\" fill=\"rgb(255,70,69)\"/%3E%3Crect width=\"1\" height=\"5\" x=\"7.5\" y=\"6.5\" stroke=\"%23fff\" rx=\".5\"/%3E%3Ccircle cx=\"8\" cy=\"4\" r=\"1\" fill=\"%23fff\"/%3E%3C/svg%3E\\'); }\\n .yfm .yfm-note.yfm-accent-warning > p:first-child::before {\\n content: url(\\'data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 16 16\"%3E%3Ccircle cx=\"8\" cy=\"8\" r=\"8\" fill=\"rgb(241,149,24)\"/%3E%3Crect width=\"1\" height=\"5\" x=\"7.5\" y=\"6.5\" stroke=\"%23fff\" rx=\".5\"/%3E%3Ccircle cx=\"8\" cy=\"4\" r=\"1\" fill=\"%23fff\"/%3E%3C/svg%3E\\'); }\\n .yfm .yfm-note.yfm-accent-info {\\n background: rgba(2, 123, 243, 0.08); }\\n .yfm .yfm-note.yfm-accent-tip {\\n background: rgba(63, 201, 46, 0.1); }\\n .yfm .yfm-note.yfm-accent-alert {\\n background: rgba(235, 50, 38, 0.08); }\\n .yfm .yfm-note.yfm-accent-warning {\\n background: rgba(255, 136, 0, 0.15); }\\n\\n.yfm h1 .yfm-anchor, .yfm h2 .yfm-anchor, .yfm h3 .yfm-anchor, .yfm h4 .yfm-anchor, .yfm h5 .yfm-anchor, .yfm h6 .yfm-anchor {\\n display: inline-block;\\n width: 24px;\\n padding-right: 4px;\\n margin-left: -24px;\\n float: left;\\n text-align: center;\\n font-size: 18px; }\\n\\n.yfm h1 .yfm-anchor::before, .yfm h2 .yfm-anchor::before, .yfm h3 .yfm-anchor::before, .yfm h4 .yfm-anchor::before, .yfm h5 .yfm-anchor::before, .yfm h6 .yfm-anchor::before {\\n content: \\'#\\';\\n visibility: hidden; }\\n\\n.yfm h1:hover .yfm-anchor::before, .yfm h2:hover .yfm-anchor::before, .yfm h3:hover .yfm-anchor::before, .yfm h4:hover .yfm-anchor::before, .yfm h5:hover .yfm-anchor::before, .yfm h6:hover .yfm-anchor::before {\\n visibility: visible; }\\n\\n.yfm .yfm-tabs {\\n margin-bottom: 15px; }\\n .yfm .yfm-tabs ol {\\n counter-reset: tabs-list; }\\n .yfm .yfm-tabs ol > li {\\n counter-increment: tabs-list; }\\n .yfm .yfm-tabs ol > li::before {\\n content: counters(tabs-list, \".\") \". \"; }\\n\\n.yfm .yfm-tab-list {\\n display: flex;\\n margin-bottom: 15px;\\n border-bottom: 1px solid rgba(0, 0, 0, 0.07); }\\n\\n.yfm .yfm-tab {\\n margin-bottom: -1px;\\n margin-right: 20px;\\n border-bottom: 2px solid transparent;\\n padding: 6px 0 7px 0;\\n font-weight: 700;\\n outline: none;\\n cursor: pointer;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n white-space: break-spaces; }\\n .yfm .yfm-tab:last-child {\\n margin-right: 0; }\\n .yfm .yfm-tab:hover, .yfm .yfm-tab:active {\\n color: #004080; }\\n .yfm .yfm-tab.active {\\n border-bottom-color: #027bf3; }\\n\\n.yfm .yfm-tab-panel {\\n display: none; }\\n .yfm .yfm-tab-panel:first-child {\\n margin-top: 0 !important; }\\n .yfm .yfm-tab-panel:last-child {\\n margin-bottom: 0 !important; }\\n .yfm .yfm-tab-panel.active {\\n display: block; }\\n\\n.yfm .hljs {\\n display: block;\\n overflow-x: auto;\\n padding: 16px;\\n background: rgba(107, 132, 153, 0.12);\\n background: var(--yfm-color-hljs-background); }\\n\\n.yfm .hljs,\\n.yfm .hljs-subst {\\n color: #444;\\n color: var(--yfm-color-hljs-subst); }\\n\\n.yfm .hljs-comment {\\n color: #888888;\\n color: var(--yfm-color-hljs-comment); }\\n\\n.yfm .hljs-keyword,\\n.yfm .hljs-attribute,\\n.yfm .hljs-selector-tag,\\n.yfm .hljs-meta-keyword,\\n.yfm .hljs-doctag,\\n.yfm .hljs-name {\\n font-weight: bold; }\\n\\n.yfm .hljs-type,\\n.yfm .hljs-string,\\n.yfm .hljs-number,\\n.yfm .hljs-selector-id,\\n.yfm .hljs-selector-class,\\n.yfm .hljs-quote,\\n.yfm .hljs-template-tag,\\n.yfm .hljs-deletion {\\n color: #880000;\\n color: var(--yfm-color-hljs-deletion); }\\n\\n.yfm .hljs-title,\\n.yfm .hljs-section {\\n color: #880000;\\n color: var(--yfm-color-hljs-section);\\n font-weight: bold; }\\n\\n.yfm .hljs-regexp,\\n.yfm .hljs-symbol,\\n.yfm .hljs-variable,\\n.yfm .hljs-template-variable,\\n.yfm .hljs-link,\\n.yfm .hljs-selector-attr,\\n.yfm .hljs-selector-pseudo {\\n color: #BC6060;\\n color: var(--yfm-color-hljs-pseudo); }\\n\\n.yfm .hljs-literal {\\n color: #78A960;\\n color: var(--yfm-color-hljs-literal); }\\n\\n.yfm .hljs-built_in,\\n.yfm .hljs-bullet,\\n.yfm .hljs-code,\\n.yfm .hljs-addition {\\n color: #397300;\\n color: var(--yfm-color-hljs-addition); }\\n\\n.yfm .hljs-meta {\\n color: #1f7199;\\n color: var(--yfm-color-hljs-meta); }\\n\\n.yfm .hljs-meta-string {\\n color: #4d99bf;\\n color: var(--yfm-color-hljs-meta-string); }\\n\\n.yfm .hljs-emphasis {\\n font-style: italic; }\\n\\n.yfm .hljs-strong {\\n font-weight: bold; }\\n\\n.yfm-clipboard {\\n position: relative; }\\n .yfm-clipboard:hover .yfm-clipboard-button {\\n display: block; }\\n .yfm-clipboard > pre {\\n border-radius: 10px;\\n overflow: hidden; }\\n\\n.yfm-clipboard-button {\\n display: none;\\n position: absolute;\\n cursor: pointer;\\n top: 16px;\\n right: 16px;\\n z-index: 1; }\\n\\n@media print {\\n .tab-list {\\n display: none !important; }\\n .tab-panel:before {\\n content: attr(data-title);\\n margin-bottom: -1px;\\n margin-right: 20px;\\n border-bottom: 2px solid transparent;\\n line-height: 33px;\\n font-weight: 700;\\n outline: 0;\\n cursor: pointer; }\\n .tab-panel {\\n display: block !important; } }\\n\\n.yfm-cut-title {\\n cursor: pointer;\\n position: relative;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n padding: 5px 0 5px 30px; }\\n .yfm-cut-title:before {\\n content: \\'\\';\\n z-index: 100;\\n left: 0;\\n top: 50%;\\n background-image: url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+CiAgICA8cGF0aCBzdHJva2U9ImN1cnJlbnRDb2xvciIgZmlsbD0ibm9uZSIgZD0iTTMgNmw1IDUgNS01Ii8+Cjwvc3ZnPgo=\");\\n transform: translateY(-50%) rotate(-90deg);\\n transition: transform 0.3s ease;\\n height: 20px;\\n width: 20px;\\n position: absolute; }\\n\\n.yfm-cut-content {\\n height: 0;\\n overflow: hidden;\\n transition: height 0.3s ease-in-out; }\\n\\n.yfm-cut.open > .yfm-cut-content {\\n padding: 5px 0 15px 30px;\\n height: auto; }\\n\\n.yfm-cut.open > .yfm-cut-title:before {\\n transform: translateY(-50%); }\\n\\n/**\\n Public CSS variables:\\n --yfm-file-icon sets file icon image\\n --yfm-file-icon-color sets file icon color\\n*/\\n.yfm-file__icon {\\n ---yfm-file-icon-img: var(--yfm-file-icon, url(\"data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzODQgNTEyIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0zNjkuOSA5Ny45TDI4NiAxNEMyNzcgNSAyNjQuOC0uMSAyNTIuMS0uMUg0OEMyMS41IDAgMCAyMS41IDAgNDh2NDE2YzAgMjYuNSAyMS41IDQ4IDQ4IDQ4aDI4OGMyNi41IDAgNDgtMjEuNSA0OC00OFYxMzEuOWMwLTEyLjctNS4xLTI1LTE0LjEtMzR6bS0yMi42IDIyLjdjMi4xIDIuMSAzLjUgNC42IDQuMiA3LjRIMjU2VjMyLjVjMi44LjcgNS4zIDIuMSA3LjQgNC4ybDgzLjkgODMuOXpNMzM2IDQ4MEg0OGMtOC44IDAtMTYtNy4yLTE2LTE2VjQ4YzAtOC44IDcuMi0xNiAxNi0xNmgxNzZ2MTA0YzAgMTMuMyAxMC43IDI0IDI0IDI0aDEwNHYzMDRjMCA4LjgtNy4yIDE2LTE2IDE2em0tNDgtMjQ0djhjMCA2LjYtNS40IDEyLTEyIDEySDEwOGMtNi42IDAtMTItNS40LTEyLTEydi04YzAtNi42IDUuNC0xMiAxMi0xMmgxNjhjNi42IDAgMTIgNS40IDEyIDEyem0wIDY0djhjMCA2LjYtNS40IDEyLTEyIDEySDEwOGMtNi42IDAtMTItNS40LTEyLTEydi04YzAtNi42IDUuNC0xMiAxMi0xMmgxNjhjNi42IDAgMTIgNS40IDEyIDEyem0wIDY0djhjMCA2LjYtNS40IDEyLTEyIDEySDEwOGMtNi42IDAtMTItNS40LTEyLTEydi04YzAtNi42IDUuNC0xMiAxMi0xMmgxNjhjNi42IDAgMTIgNS40IDEyIDEyeiIvPjwvc3ZnPg==\"));\\n display: inline-block;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n user-select: none;\\n width: 16px;\\n margin: 0 2px;\\n color: var(--yfm-file-icon-color, rgba(0, 0, 0, 0.7));\\n background-color: currentColor;\\n background-repeat: no-repeat;\\n background-position: 50%;\\n background-size: 100%;\\n -webkit-mask-image: var(---yfm-file-icon-img);\\n mask-image: var(---yfm-file-icon-img);\\n -webkit-mask-position: center;\\n mask-position: center;\\n -webkit-mask-repeat: no-repeat;\\n mask-repeat: no-repeat; }\\n .yfm-file__icon::before {\\n content: \\'\\\\a0\\'; }\\n',\"\"]);const i=o},707:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'@charset \"UTF-8\";\\n.yc-root {\\n --yc-font-family-sans: \"Helvetica Neue\", \"Arial\", \"Helvetica\", sans-serif;\\n --yc-font-family-monospace: \"Menlo\", \"Monaco\", \"Consolas\", \"Ubuntu Mono\", \"Liberation Mono\",\\n \"DejaVu Sans Mono\", \"Courier New\", \"Courier\", monospace;\\n --yc-text-body-font-family: var(--yc-font-family-sans);\\n --yc-text-code-font-family: var(--yc-font-family-monospace);\\n --yc-text-header-font-weight: 900;\\n --yc-text-subheader-font-weight: 900;\\n --yc-text-display-font-weight: 900;\\n --yc-text-code-font-weight: 400;\\n --yc-text-body-font-weight: 400;\\n --yc-text-caption-font-weight: 400;\\n --yc-text-accent-font-weight: 900;\\n --yc-text-body-1-font-size: 13px;\\n --yc-text-body-1-line-height: 18px;\\n --yc-text-body-2-font-size: 15px;\\n --yc-text-body-2-line-height: 20px;\\n --yc-text-body-3-font-size: 17px;\\n --yc-text-body-3-line-height: 24px;\\n --yc-text-body-short-font-size: 13px;\\n --yc-text-body-short-line-height: 16px;\\n --yc-text-caption-1-font-size: 9px;\\n --yc-text-caption-1-line-height: 12px;\\n --yc-text-caption-2-font-size: 11px;\\n --yc-text-caption-2-line-height: 16px;\\n --yc-text-header-1-font-size: 20px;\\n --yc-text-header-1-line-height: 24px;\\n --yc-text-header-2-font-size: 24px;\\n --yc-text-header-2-line-height: 28px;\\n --yc-text-subheader-1-font-size: 13px;\\n --yc-text-subheader-1-line-height: 18px;\\n --yc-text-subheader-2-font-size: 15px;\\n --yc-text-subheader-2-line-height: 20px;\\n --yc-text-subheader-3-font-size: 17px;\\n --yc-text-subheader-3-line-height: 24px;\\n --yc-text-display-1-font-size: 28px;\\n --yc-text-display-1-line-height: 36px;\\n --yc-text-display-2-font-size: 32px;\\n --yc-text-display-2-line-height: 40px;\\n --yc-text-display-3-font-size: 40px;\\n --yc-text-display-3-line-height: 48px;\\n --yc-text-display-4-font-size: 48px;\\n --yc-text-display-4-line-height: 52px;\\n --yc-text-code-1-font-size: 12px;\\n --yc-text-code-1-line-height: 18px;\\n --yc-text-code-2-font-size: 14px;\\n --yc-text-code-2-line-height: 20px;\\n --yc-text-code-3-font-size: 16px;\\n --yc-text-code-3-line-height: 24px;\\n --yc-text-code-inline-1-font-size: 12px;\\n --yc-text-code-inline-1-line-height: 14px;\\n --yc-text-code-inline-2-font-size: 14px;\\n --yc-text-code-inline-2-line-height: 16px;\\n --yc-text-code-inline-3-font-size: 16px;\\n --yc-text-code-inline-3-line-height: 20px;\\n font-family: var(--yc-text-body-font-family);\\n font-size: var(--yc-text-body-1-font-size);\\n line-height: var(--yc-text-body-1-line-height);\\n font-weight: var(--yc-text-body-font-weight);\\n --yc-my-scrollbar-width: 12px;\\n --yc-my-border-radius-xs: 5px;\\n --yc-my-border-radius-s: 5px;\\n --yc-my-border-radius-m: 6px;\\n --yc-my-border-radius-l: 8px;\\n --yc-my-border-radius-xl: 10px;\\n --yc-color-telegram: #51a4db;\\n --yc-color-facebook: #4968ad;\\n --yc-color-twitter: #4aa0eb;\\n --yc-color-vk: #436eab;\\n --yc-color-youtube: #eb3323;\\n --yc-color-github: #25292e;\\n --yc-color-rss: #f29c39;\\n --yc-color-linkedin: #0a66c2;\\n --yc-scrollbar-width: var(--yc-my-scrollbar-width);\\n --yc-border-radius-xs: var(--yc-my-border-radius-xs);\\n --yc-border-radius-s: var(--yc-my-border-radius-s);\\n --yc-border-radius-m: var(--yc-my-border-radius-m);\\n --yc-border-radius-l: var(--yc-my-border-radius-l);\\n --yc-border-radius-xl: var(--yc-my-border-radius-xl);\\n}\\n.yc-root_theme_light {\\n --yc-color-private-white-150: rgba(255, 255, 255, 0.15);\\n --yc-color-private-white-300: rgba(255, 255, 255, 0.3);\\n --yc-color-private-white-500: rgba(255, 255, 255, 0.5);\\n --yc-color-private-white-700: rgba(255, 255, 255, 0.7);\\n --yc-color-private-white-850: rgba(255, 255, 255, 0.85);\\n --yc-color-private-white-950: rgba(255, 255, 255, 0.95);\\n --yc-color-private-white-1000: rgba(255, 255, 255, 1);\\n --yc-color-private-black-50: rgba(0, 0, 0, 0.05);\\n --yc-color-private-black-70: rgba(0, 0, 0, 0.07);\\n --yc-color-private-black-100: rgba(0, 0, 0, 0.1);\\n --yc-color-private-black-150: rgba(0, 0, 0, 0.15);\\n --yc-color-private-black-250: rgba(0, 0, 0, 0.25);\\n --yc-color-private-black-300: rgba(0, 0, 0, 0.3);\\n --yc-color-private-black-500: rgba(0, 0, 0, 0.5);\\n --yc-color-private-black-550: rgba(0, 0, 0, 0.55);\\n --yc-color-private-black-700: rgba(0, 0, 0, 0.7);\\n --yc-color-private-black-850: rgba(0, 0, 0, 0.85);\\n --yc-color-private-black-20-solid: rgba(250, 250, 250, 1);\\n --yc-color-private-black-50-solid: rgba(243, 243, 243, 1);\\n --yc-color-private-black-100-solid: rgba(229, 229, 229, 1);\\n --yc-color-private-black-150-solid: rgba(218, 218, 218, 1);\\n --yc-color-private-black-700-solid: rgb(76, 76, 76, 1);\\n --yc-color-private-blue-50: rgba(82, 130, 255, 0.1);\\n --yc-color-private-blue-100: rgba(82, 130, 255, 0.16);\\n --yc-color-private-blue-300: rgba(82, 130, 255, 0.5);\\n --yc-color-private-blue-450: rgba(82, 130, 255, 0.75);\\n --yc-color-private-blue-500: rgba(82, 130, 255, 0.9);\\n --yc-color-private-blue-550: rgba(82, 130, 255, 1);\\n --yc-color-private-blue-600: rgba(74, 113, 214, 1);\\n --yc-color-private-blue-800: rgba(63, 87, 153, 1);\\n --yc-color-private-blue-50-solid: rgba(238, 243, 255, 1);\\n --yc-color-private-blue-100-solid: rgba(227, 235, 255, 1);\\n --yc-color-private-blue-450-solid: rgba(125, 161, 255, 1);\\n --yc-color-private-green-50: rgba(59, 201, 53, 0.1);\\n --yc-color-private-green-100: rgba(59, 201, 53, 0.14);\\n --yc-color-private-green-150: rgba(59, 201, 53, 0.25);\\n --yc-color-private-green-200: rgba(59, 201, 53, 0.35);\\n --yc-color-private-green-300: rgba(59, 201, 53, 0.5);\\n --yc-color-private-green-450: rgba(63, 201, 46, 0.75);\\n --yc-color-private-green-550: rgba(59, 201, 53, 1);\\n --yc-color-private-green-600: rgba(7, 163, 0, 1);\\n --yc-color-private-green-450-solid: rgba(111, 214, 98, 1);\\n --yc-color-private-yellow-100: rgba(255, 219, 77, 0.3);\\n --yc-color-private-yellow-200: rgba(255, 219, 77, 0.4);\\n --yc-color-private-yellow-550: rgba(255, 219, 77, 1);\\n --yc-color-private-yellow-600: rgba(245, 202, 69, 1);\\n --yc-color-private-yellow-650: rgba(245, 171, 25, 1);\\n --yc-color-private-yellow-700: rgba(224, 181, 9, 1);\\n --yc-color-private-yellow-800: rgba(209, 119, 0, 1);\\n --yc-color-private-red-50: rgba(235, 50, 38, 0.08);\\n --yc-color-private-red-100: rgba(235, 50, 38, 0.17);\\n --yc-color-private-red-300: rgba(255, 4, 0, 0.5);\\n --yc-color-private-red-450: rgba(255, 4, 0, 0.7);\\n --yc-color-private-red-500: rgba(255, 4, 0, 0.8);\\n --yc-color-private-red-550: rgba(255, 4, 0, 1);\\n --yc-color-private-red-450-solid: rgba(255, 80, 77, 1);\\n --yc-color-private-purple-550: rgba(154, 50, 166, 1);\\n --yc-color-private-purple-800: rgba(94, 62, 101, 1);\\n --yc-color-private-cool-grey-50: rgba(107, 132, 153, 0.12);\\n --yc-color-private-cool-grey-100: rgba(107, 132, 153, 0.2);\\n --yc-color-private-cool-grey-300: rgba(107, 132, 153, 0.55);\\n --yc-color-private-cool-grey-450: rgba(107, 132, 153, 0.75);\\n --yc-color-private-cool-grey-550: rgba(107, 132, 153, 1);\\n --yc-color-private-cool-grey-800: rgba(59, 96, 128, 1);\\n --yc-color-private-cool-grey-50-solid: rgba(237, 240, 243, 1);\\n --yc-color-private-cool-grey-450-solid: rgba(144, 163, 178, 1);\\n --yc-color-private-orange-50: rgba(255, 119, 0, 0.15);\\n --yc-color-private-orange-100: rgba(255, 119, 0, 0.2);\\n --yc-color-private-orange-300: rgba(255, 119, 0, 0.5);\\n --yc-color-private-orange-450: rgba(255, 180, 34, 1);\\n --yc-color-private-orange-550: rgba(255, 119, 0, 1);\\n --yc-my-color-brand-normal: var(--yc-color-private-blue-550);\\n --yc-my-color-brand-normal-hover: var(--yc-color-private-blue-600);\\n --yc-my-color-brand-light: var(--yc-color-private-blue-300);\\n --yc-my-color-brand-selection: var(--yc-color-private-blue-50);\\n --yc-my-color-brand-selection-hover: var(--yc-color-private-blue-100);\\n --yc-my-color-brand-link: var(--yc-my-color-brand-normal);\\n --yc-my-color-brand-link-hover: var(--yc-color-private-blue-800);\\n --yc-my-color-brand-text: var(--yc-my-color-brand-normal);\\n --yc-my-color-brand-text-contrast: var(--yc-color-text-light-primary);\\n --yc-my-color-brand-link-visited: var(--yc-color-private-purple-550);\\n --yc-my-color-brand-link-visited-hover: var(--yc-color-private-purple-800);\\n --yc-color-text-primary: var(--yc-color-private-black-850);\\n --yc-color-text-complementary: var(--yc-color-private-black-700);\\n --yc-color-text-secondary: var(--yc-color-private-black-500);\\n --yc-color-text-hint: var(--yc-color-private-black-300);\\n --yc-color-text-info: var(--yc-color-private-blue-550);\\n --yc-color-text-positive: var(--yc-color-private-green-600);\\n --yc-color-text-warning: var(--yc-color-private-yellow-700);\\n --yc-color-text-danger: var(--yc-color-private-red-500);\\n --yc-color-text-utility: var(--yc-color-private-purple-550);\\n --yc-color-text-misc: var(--yc-color-private-cool-grey-800);\\n --yc-color-text-info-heavy: var(--yc-color-private-blue-550);\\n --yc-color-text-positive-heavy: var(--yc-color-private-green-600);\\n --yc-color-text-warning-heavy: var(--yc-color-private-yellow-800);\\n --yc-color-text-danger-heavy: var(--yc-color-private-red-500);\\n --yc-color-text-utility-heavy: var(--yc-color-private-purple-550);\\n --yc-color-text-misc-heavy: var(--yc-color-private-cool-grey-800);\\n --yc-color-text-special: var(--yc-my-color-brand-normal);\\n --yc-color-text-link: var(--yc-my-color-brand-link);\\n --yc-color-text-link-hover: var(--yc-my-color-brand-link-hover);\\n --yc-color-text-link-visited: var(--yc-my-color-brand-link-visited);\\n --yc-color-text-link-visited-hover: var(--yc-my-color-brand-link-visited-hover);\\n --yc-color-text-yandex-red: var(--yc-color-private-red-550);\\n --yc-color-text-dark-primary: var(--yc-color-private-black-850);\\n --yc-color-text-dark-complementary: var(--yc-color-private-black-700);\\n --yc-color-text-dark-secondary: var(--yc-color-private-black-500);\\n --yc-color-text-light-primary: var(--yc-color-private-white-1000);\\n --yc-color-text-light-complementary: var(--yc-color-private-white-850);\\n --yc-color-text-light-secondary: var(--yc-color-private-white-700);\\n --yc-color-text-light-hint: var(--yc-color-private-white-500);\\n --yc-color-text-inverted-primary: var(--yc-color-private-white-1000);\\n --yc-color-text-inverted-complementary: var(--yc-color-private-white-850);\\n --yc-color-text-inverted-secondary: var(--yc-color-private-white-700);\\n --yc-color-text-inverted-hint: var(--yc-color-private-white-500);\\n --yc-color-base-background: var(--yc-color-private-white-1000);\\n --yc-color-base-generic: var(--yc-color-private-black-50);\\n --yc-color-base-generic-hover: var(--yc-color-private-black-150);\\n --yc-color-base-generic-medium: var(--yc-color-private-black-150);\\n --yc-color-base-generic-medium-hover: var(--yc-color-private-black-250);\\n --yc-color-base-generic-accent: var(--yc-color-private-black-150);\\n --yc-color-base-generic-accent-disabled: var(--yc-color-private-black-70);\\n --yc-color-base-generic-ultralight: var(--yc-color-private-black-20-solid);\\n --yc-color-base-simple-hover: var(--yc-color-private-black-50);\\n --yc-color-base-simple-hover-solid: var(--yc-color-private-black-50-solid);\\n --yc-color-base-selection: var(--yc-my-color-brand-selection);\\n --yc-color-base-selection-hover: var(--yc-my-color-brand-selection-hover);\\n --yc-color-base-special: var(--yc-my-color-brand-normal);\\n --yc-color-base-special-hover: var(--yc-my-color-brand-normal-hover);\\n --yc-color-base-action: var(--yc-color-base-special);\\n --yc-color-base-action-hover: var(--yc-color-base-special-hover);\\n --yc-color-base-info: var(--yc-color-private-blue-50);\\n --yc-color-base-info-hover: var(--yc-color-private-blue-100);\\n --yc-color-base-positive: var(--yc-color-private-green-50);\\n --yc-color-base-positive-hover: var(--yc-color-private-green-100);\\n --yc-color-base-warning: var(--yc-color-private-yellow-100);\\n --yc-color-base-warning-hover: var(--yc-color-private-yellow-200);\\n --yc-color-base-danger: var(--yc-color-private-red-50);\\n --yc-color-base-danger-hover: var(--yc-color-private-red-100);\\n --yc-color-base-misc: var(--yc-color-private-cool-grey-50);\\n --yc-color-base-misc-hover: var(--yc-color-private-cool-grey-100);\\n --yc-color-base-neutral: var(--yc-color-private-black-50);\\n --yc-color-base-neutral-hover: var(--yc-color-private-black-150);\\n --yc-color-base-positive-medium: var(--yc-color-private-green-150);\\n --yc-color-base-positive-medium-hover: var(--yc-color-private-green-200);\\n --yc-color-base-info-heavy: var(--yc-color-private-blue-450);\\n --yc-color-base-positive-heavy: var(--yc-color-private-green-450);\\n --yc-color-base-warning-heavy: var(--yc-color-private-yellow-550);\\n --yc-color-base-warning-heavy-hover: var(--yc-color-private-yellow-600);\\n --yc-color-base-danger-heavy: var(--yc-color-private-red-450);\\n --yc-color-base-danger-heavy-hover: var(--yc-color-private-red-500);\\n --yc-color-base-misc-heavy: var(--yc-color-private-cool-grey-450-solid);\\n --yc-color-base-misc-heavy-hover: var(--yc-color-private-cool-grey-550);\\n --yc-color-base-light: var(--yc-color-private-white-1000);\\n --yc-color-base-light-hover: var(--yc-color-private-white-850);\\n --yc-color-base-light-simple-hover: var(--yc-color-private-white-150);\\n --yc-color-base-light-disabled: var(--yc-color-private-white-150);\\n --yc-color-base-light-accent-disabled: var(--yc-color-private-white-300);\\n --yc-color-base-float: var(--yc-color-private-white-1000);\\n --yc-color-base-float-hover: var(--yc-color-private-black-50-solid);\\n --yc-color-base-float-heavy: var(--yc-color-private-black-700-solid);\\n --yc-color-base-float-accent: var(--yc-color-private-white-1000);\\n --yc-color-base-float-accent-hover: var(--yc-color-private-white-850);\\n --yc-color-base-float-announcement: var(--yc-color-private-cool-grey-50-solid);\\n --yc-color-base-modal: var(--yc-color-private-white-1000);\\n --yc-color-line-generic: var(--yc-color-private-black-100);\\n --yc-color-line-generic-hover: var(--yc-color-private-black-150);\\n --yc-color-line-generic-active: var(--yc-color-private-black-300);\\n --yc-color-line-generic-accent: var(--yc-color-private-black-150);\\n --yc-color-line-generic-accent-hover: var(--yc-color-private-black-300);\\n --yc-color-line-solid: var(--yc-color-private-black-100-solid);\\n --yc-color-line-selection-hover: var(--yc-my-color-brand-light);\\n --yc-color-line-selection-active: var(--yc-my-color-brand-normal);\\n --yc-color-line-link: var(--yc-my-color-brand-normal);\\n --yc-color-line-info: var(--yc-color-private-blue-450);\\n --yc-color-line-positive: var(--yc-color-private-green-450);\\n --yc-color-line-warning: var(--yc-color-private-yellow-600);\\n --yc-color-line-danger: var(--yc-color-private-red-450);\\n --yc-color-line-misc: var(--yc-color-private-cool-grey-450);\\n --yc-color-line-hint: var(--yc-color-private-blue-550);\\n --yc-color-line-light: var(--yc-color-private-white-500);\\n --yc-color-infographics-info-light: var(--yc-color-private-blue-50);\\n --yc-color-infographics-positive-light: var(--yc-color-private-green-50);\\n --yc-color-infographics-warning-light: var(--yc-color-private-orange-50);\\n --yc-color-infographics-danger-light: var(--yc-color-private-red-50);\\n --yc-color-infographics-misc-light: var(--yc-color-private-cool-grey-50);\\n --yc-color-infographics-neutral-light: var(--yc-color-private-black-50);\\n --yc-color-infographics-info-medium: var(--yc-color-private-blue-300);\\n --yc-color-infographics-positive-medium: var(--yc-color-private-green-300);\\n --yc-color-infographics-warning-medium: var(--yc-color-private-orange-300);\\n --yc-color-infographics-danger-medium: var(--yc-color-private-red-300);\\n --yc-color-infographics-misc-medium: var(--yc-color-private-cool-grey-300);\\n --yc-color-infographics-neutral-medium: var(--yc-color-private-black-150);\\n --yc-color-infographics-info-heavy: var(--yc-color-private-blue-550);\\n --yc-color-infographics-positive-heavy: var(--yc-color-private-green-550);\\n --yc-color-infographics-warning-heavy: var(--yc-color-private-yellow-550);\\n --yc-color-infographics-danger-heavy: var(--yc-color-private-red-550);\\n --yc-color-infographics-misc-heavy: var(--yc-color-private-cool-grey-550);\\n --yc-color-infographics-neutral-heavy: var(--yc-color-private-black-300);\\n --yc-color-infographics-axis: var(--yc-color-private-black-150-solid);\\n --yc-color-infographics-tooltip-bg: var(--yc-color-private-white-950);\\n --yc-color-sfx-veil: var(--yc-color-private-black-250);\\n --yc-color-sfx-shadow: var(--yc-color-private-black-150);\\n --yc-color-sfx-shadow-heavy: var(--yc-color-private-black-500);\\n --yc-color-sfx-fade: var(--yc-color-private-white-300);\\n --yc-color-promo-base-silver: #eff2f8;\\n --yc-color-promo-base-gold: #ffdb4d;\\n --yc-color-promo-base-asphalt: #313538;\\n --yc-color-promo-base-tomato: #ff5958;\\n --yc-color-promo-base-copper: #ffab3b;\\n --yc-color-promo-base-mint: #5ecf71;\\n --yc-color-promo-base-sky: #49a0f6;\\n --yc-color-promo-base-neon: #9f6fee;\\n --yc-color-promo-highlight-silver: #edf2f7;\\n --yc-color-promo-highlight-gold: #fff1b8;\\n --yc-color-promo-highlight-asphalt: #eaebeb;\\n --yc-color-promo-highlight-tomato: #ffdede;\\n --yc-color-promo-highlight-copper: #ffe6c4;\\n --yc-color-promo-highlight-mint: #ccf0d2;\\n --yc-color-promo-highlight-sky: #d6e9fd;\\n --yc-color-promo-highlight-neon: #ece2fc;\\n --yc-color-promo-accent-silver: #969a9e;\\n --yc-color-promo-accent-gold: #ffdb4d;\\n --yc-color-promo-accent-asphalt: #313538;\\n --yc-color-promo-accent-tomato: #ff5958;\\n --yc-color-promo-accent-copper: #ffab3b;\\n --yc-color-promo-accent-mint: #5ecf71;\\n --yc-color-promo-accent-sky: #49a0f6;\\n --yc-color-promo-accent-neon: #9f6fee;\\n --yc-color-promo-accent-hover-silver: #727578;\\n --yc-color-promo-accent-hover-gold: #edbe28;\\n --yc-color-promo-accent-hover-asphalt: #000000;\\n --yc-color-promo-accent-hover-tomato: #ee4f4e;\\n --yc-color-promo-accent-hover-copper: #f28d04;\\n --yc-color-promo-accent-hover-mint: #3bbc51;\\n --yc-color-promo-accent-hover-sky: #2180de;\\n --yc-color-promo-accent-hover-neon: #7b47cf;\\n --yc-color-promo-text-silver: #969a9e;\\n --yc-color-promo-text-gold: #ebb409;\\n --yc-color-promo-text-asphalt: #313538;\\n --yc-color-promo-text-tomato: #ff5958;\\n --yc-color-promo-text-copper: #ffab3b;\\n --yc-color-promo-text-mint: #5ecf71;\\n --yc-color-promo-text-sky: #49a0f6;\\n --yc-color-promo-text-neon: #9f6fee;\\n --yc-color-scroll-track: var(--yc-color-base-background);\\n --yc-color-scroll-handle: var(--yc-color-private-black-100);\\n --yc-color-scroll-handle-hover: var(--yc-color-private-black-150);\\n --yc-color-scroll-corner: var(--yc-color-private-black-100);\\n background: var(--yc-color-base-background);\\n color: var(--yc-color-text-primary);\\n}\\n.yc-root_theme_dark {\\n --yc-color-private-white-50: rgba(255, 255, 255, 0.05);\\n --yc-color-private-white-70: rgba(255, 255, 255, 0.07);\\n --yc-color-private-white-100: rgba(255, 255, 255, 0.1);\\n --yc-color-private-white-150: rgba(255, 255, 255, 0.15);\\n --yc-color-private-white-250: rgba(255, 255, 255, 0.25);\\n --yc-color-private-white-300: rgba(255, 255, 255, 0.3);\\n --yc-color-private-white-500: rgba(255, 255, 255, 0.5);\\n --yc-color-private-white-700: rgba(255, 255, 255, 0.7);\\n --yc-color-private-white-850: rgba(255, 255, 255, 0.85);\\n --yc-color-private-white-opaque-150: rgba(76, 75, 81, 0.95);\\n --yc-color-private-black-200: rgba(0, 0, 0, 0.2);\\n --yc-color-private-black-300: rgba(0, 0, 0, 0.3);\\n --yc-color-private-black-400: rgba(0, 0, 0, 0.4);\\n --yc-color-private-black-500: rgba(0, 0, 0, 0.5);\\n --yc-color-private-black-600: rgba(0, 0, 0, 0.6);\\n --yc-color-private-black-700: rgba(0, 0, 0, 0.7);\\n --yc-color-private-black-900: rgba(0, 0, 0, 0.9);\\n --yc-color-private-black-rock-850: rgba(45, 44, 51, 1);\\n --yc-color-private-white-20-solid: rgba(49, 48, 55, 1);\\n --yc-color-private-white-100-solid: rgba(66, 65, 71, 1);\\n --yc-color-private-white-150-solid: rgba(76, 76, 82, 1);\\n --yc-color-private-white-200-solid: rgba(87, 86, 92, 1);\\n --yc-color-private-blue-100: rgba(133, 168, 255, 0.15);\\n --yc-color-private-blue-150: rgba(133, 168, 255, 0.25);\\n --yc-color-private-blue-300: rgba(133, 168, 255, 0.5);\\n --yc-color-private-blue-450: rgba(87, 126, 214, 0.8);\\n --yc-color-private-blue-550: rgba(87, 126, 214, 1);\\n --yc-color-private-blue-700: rgba(98, 146, 255, 1);\\n --yc-color-private-blue-850: rgba(133, 168, 255, 1);\\n --yc-color-private-blue-150-solid: rgba(67, 75, 102, 1);\\n --yc-color-private-blue-300-solid: rgba(89, 106, 153, 1);\\n --yc-color-private-blue-450-solid: rgba(79, 110, 181, 1);\\n --yc-color-private-green-100: rgba(59, 201, 53, 0.12);\\n --yc-color-private-green-150: rgba(59, 201, 53, 0.16);\\n --yc-color-private-green-300: rgba(186, 255, 184, 0.6);\\n --yc-color-private-green-350: rgba(186, 255, 184, 0.68);\\n --yc-color-private-green-450: rgba(59, 201, 53, 0.58);\\n --yc-color-private-green-550: rgba(59, 201, 53, 0.75);\\n --yc-color-private-green-450-solid: rgba(53, 135, 52, 1);\\n --yc-color-private-yellow-100: rgba(255, 219, 77, 0.25);\\n --yc-color-private-yellow-150: rgba(255, 219, 77, 0.4);\\n --yc-color-private-yellow-450: rgba(255, 219, 77, 0.64);\\n --yc-color-private-yellow-550: rgba(255, 219, 77, 0.8);\\n --yc-color-private-yellow-700: rgba(224, 189, 52, 1);\\n --yc-color-private-red-100: rgba(191, 50, 48, 0.3);\\n --yc-color-private-red-150: rgba(191, 50, 48, 0.45);\\n --yc-color-private-red-300: rgba(255, 77, 73, 0.5);\\n --yc-color-private-red-450: rgba(208, 71, 69, 0.88);\\n --yc-color-private-red-550: rgba(208, 71, 69, 1);\\n --yc-color-private-red-450-solid: rgba(162, 49, 48, 1);\\n --yc-color-private-purple-550: rgba(166, 62, 178, 1);\\n --yc-color-private-purple-700: rgba(177, 78, 198, 1);\\n --yc-color-private-purple-850: rgba(200, 121, 216, 1);\\n --yc-color-private-cool-grey-100: rgba(95, 115, 133, 0.18);\\n --yc-color-private-cool-grey-150: rgba(107, 132, 153, 0.3);\\n --yc-color-private-cool-grey-300: rgba(95, 115, 133, 0.6);\\n --yc-color-private-cool-grey-450: rgba(95, 115, 133, 0.8);\\n --yc-color-private-cool-grey-550: rgba(95, 115, 133, 1);\\n --yc-color-private-cool-grey-700: rgba(142, 162, 180, 1);\\n --yc-color-private-cool-grey-450-solid: rgba(85, 101, 117, 1);\\n --yc-color-private-orange-50: rgba(204, 104, 16, 0.2);\\n --yc-color-private-orange-100: rgba(204, 104, 16, 0.3);\\n --yc-color-private-orange-150: rgba(204, 104, 16, 0.5);\\n --yc-color-private-orange-300: rgba(255, 160, 66, 0.5);\\n --yc-color-private-orange-450: rgba(204, 104, 16, 0.8);\\n --yc-color-private-orange-550: rgba(204, 104, 16, 1);\\n --yc-color-private-orange-450-solid: rgba(172, 92, 23, 1);\\n --yc-my-color-brand-normal: var(--yc-color-private-blue-550);\\n --yc-my-color-brand-normal-hover: var(--yc-color-private-blue-700);\\n --yc-my-color-brand-light: var(--yc-color-private-blue-300);\\n --yc-my-color-brand-selection: var(--yc-color-private-blue-150);\\n --yc-my-color-brand-selection-hover: var(--yc-color-private-blue-300);\\n --yc-my-color-brand-link: var(--yc-color-private-blue-700);\\n --yc-my-color-brand-link-hover: var(--yc-color-private-blue-850);\\n --yc-my-color-brand-text: var(--yc-color-private-blue-700);\\n --yc-my-color-brand-text-contrast: var(--yc-color-text-light-primary);\\n --yc-my-color-brand-link-visited: var(--yc-color-private-purple-700);\\n --yc-my-color-brand-link-visited-hover: var(--yc-color-private-purple-850);\\n --yc-color-text-primary: var(--yc-color-private-white-850);\\n --yc-color-text-complementary: var(--yc-color-private-white-700);\\n --yc-color-text-secondary: var(--yc-color-private-white-500);\\n --yc-color-text-hint: var(--yc-color-private-white-300);\\n --yc-color-text-info: var(--yc-color-private-blue-700);\\n --yc-color-text-positive: var(--yc-color-private-green-550);\\n --yc-color-text-warning: var(--yc-color-private-yellow-700);\\n --yc-color-text-danger: var(--yc-color-private-red-550);\\n --yc-color-text-utility: var(--yc-color-private-purple-550);\\n --yc-color-text-misc: var(--yc-color-private-cool-grey-700);\\n --yc-color-text-info-heavy: var(--yc-color-private-blue-700);\\n --yc-color-text-positive-heavy: var(--yc-color-private-green-550);\\n --yc-color-text-warning-heavy: var(--yc-color-private-yellow-700);\\n --yc-color-text-danger-heavy: var(--yc-color-private-red-550);\\n --yc-color-text-utility-heavy: var(--yc-color-private-purple-550);\\n --yc-color-text-misc-heavy: var(--yc-color-private-cool-grey-700);\\n --yc-color-text-special: var(--yc-my-color-brand-normal);\\n --yc-color-text-link: var(--yc-my-color-brand-link);\\n --yc-color-text-link-hover: var(--yc-my-color-brand-link-hover);\\n --yc-color-text-link-visited: var(--yc-my-color-brand-link-visited);\\n --yc-color-text-link-visited-hover: var(--yc-my-color-brand-link-visited-hover);\\n --yc-color-text-yandex-red: var(--yc-color-private-red-550);\\n --yc-color-text-dark-primary: var(--yc-color-private-black-900);\\n --yc-color-text-dark-complementary: var(--yc-color-private-black-700);\\n --yc-color-text-dark-secondary: var(--yc-color-private-black-500);\\n --yc-color-text-light-primary: var(--yc-color-private-white-850);\\n --yc-color-text-light-complementary: var(--yc-color-private-white-700);\\n --yc-color-text-light-secondary: var(--yc-color-private-white-500);\\n --yc-color-text-light-hint: var(--yc-color-private-white-300);\\n --yc-color-text-inverted-primary: var(--yc-color-private-black-900);\\n --yc-color-text-inverted-complementary: var(--yc-color-private-black-700);\\n --yc-color-text-inverted-secondary: var(--yc-color-private-black-500);\\n --yc-color-text-inverted-hint: var(--yc-color-private-black-300);\\n --yc-color-base-background: var(--yc-color-private-black-rock-850);\\n --yc-color-base-generic: var(--yc-color-private-white-100);\\n --yc-color-base-generic-hover: var(--yc-color-private-white-150);\\n --yc-color-base-generic-medium: var(--yc-color-private-white-250);\\n --yc-color-base-generic-medium-hover: var(--yc-color-private-white-300);\\n --yc-color-base-generic-accent: var(--yc-color-private-white-150);\\n --yc-color-base-generic-accent-disabled: var(--yc-color-private-white-70);\\n --yc-color-base-generic-ultralight: var(--yc-color-private-white-20-solid);\\n --yc-color-base-simple-hover: var(--yc-color-private-white-100);\\n --yc-color-base-simple-hover-solid: var(--yc-color-private-white-100-solid);\\n --yc-color-base-selection: var(--yc-my-color-brand-selection);\\n --yc-color-base-selection-hover: var(--yc-my-color-brand-selection-hover);\\n --yc-color-base-special: var(--yc-my-color-brand-normal);\\n --yc-color-base-special-hover: var(--yc-my-color-brand-normal-hover);\\n --yc-color-base-action: var(--yc-color-base-special);\\n --yc-color-base-action-hover: var(--yc-color-base-special-hover);\\n --yc-color-base-info: var(--yc-color-private-blue-100);\\n --yc-color-base-info-hover: var(--yc-color-private-blue-150);\\n --yc-color-base-positive: var(--yc-color-private-green-100);\\n --yc-color-base-positive-hover: var(--yc-color-private-green-150);\\n --yc-color-base-warning: var(--yc-color-private-yellow-100);\\n --yc-color-base-warning-hover: var(--yc-color-private-yellow-150);\\n --yc-color-base-danger: var(--yc-color-private-red-100);\\n --yc-color-base-danger-hover: var(--yc-color-private-red-150);\\n --yc-color-base-misc: var(--yc-color-private-cool-grey-100);\\n --yc-color-base-misc-hover: var(--yc-color-private-cool-grey-150);\\n --yc-color-base-neutral: var(--yc-color-private-white-100);\\n --yc-color-base-neutral-hover: var(--yc-color-private-white-150);\\n --yc-color-base-positive-medium: var(--yc-color-private-green-300);\\n --yc-color-base-positive-medium-hover: var(--yc-color-private-green-350);\\n --yc-color-base-info-heavy: var(--yc-color-private-blue-450);\\n --yc-color-base-positive-heavy: var(--yc-color-private-green-450);\\n --yc-color-base-warning-heavy: var(--yc-color-private-yellow-550);\\n --yc-color-base-warning-heavy-hover: var(--yc-color-private-yellow-700);\\n --yc-color-base-danger-heavy: var(--yc-color-private-red-450);\\n --yc-color-base-danger-heavy-hover: var(--yc-color-private-red-550);\\n --yc-color-base-misc-heavy: var(--yc-color-private-cool-grey-450-solid);\\n --yc-color-base-misc-heavy-hover: var(--yc-color-private-cool-grey-550);\\n --yc-color-base-light: var(--yc-color-private-white-850);\\n --yc-color-base-light-hover: var(--yc-color-private-white-700);\\n --yc-color-base-light-simple-hover: var(--yc-color-private-white-150);\\n --yc-color-base-light-disabled: var(--yc-color-private-white-150);\\n --yc-color-base-light-accent-disabled: var(--yc-color-private-white-300);\\n --yc-color-base-float: var(--yc-color-private-white-100-solid);\\n --yc-color-base-float-hover: var(--yc-color-private-white-150-solid);\\n --yc-color-base-float-heavy: var(--yc-color-private-white-150-solid);\\n --yc-color-base-float-accent: var(--yc-color-private-white-150-solid);\\n --yc-color-base-float-accent-hover: var(--yc-color-private-white-200-solid);\\n --yc-color-base-float-announcement: var(--yc-color-private-white-150-solid);\\n --yc-color-base-modal: var(--yc-color-private-black-rock-850);\\n --yc-color-line-generic: var(--yc-color-private-white-150);\\n --yc-color-line-generic-hover: var(--yc-color-private-white-250);\\n --yc-color-line-generic-active: var(--yc-color-private-white-300);\\n --yc-color-line-generic-accent: var(--yc-color-private-white-150);\\n --yc-color-line-generic-accent-hover: var(--yc-color-private-white-300);\\n --yc-color-line-solid: var(--yc-color-private-white-150-solid);\\n --yc-color-line-selection-hover: var(--yc-my-color-brand-light);\\n --yc-color-line-selection-active: var(--yc-my-color-brand-normal);\\n --yc-color-line-link: var(--yc-my-color-brand-normal);\\n --yc-color-line-info: var(--yc-color-private-blue-450);\\n --yc-color-line-positive: var(--yc-color-private-green-450);\\n --yc-color-line-warning: var(--yc-color-private-yellow-150);\\n --yc-color-line-danger: var(--yc-color-private-red-450);\\n --yc-color-line-misc: var(--yc-color-private-cool-grey-450);\\n --yc-color-line-hint: var(--yc-color-private-blue-550);\\n --yc-color-line-light: var(--yc-color-private-white-500);\\n --yc-color-infographics-info-light: var(--yc-color-private-blue-150);\\n --yc-color-infographics-positive-light: var(--yc-color-private-green-150);\\n --yc-color-infographics-warning-light: var(--yc-color-private-orange-150);\\n --yc-color-infographics-danger-light: var(--yc-color-private-red-150);\\n --yc-color-infographics-misc-light: var(--yc-color-private-cool-grey-150);\\n --yc-color-infographics-neutral-light: var(--yc-color-private-white-150);\\n --yc-color-infographics-info-medium: var(--yc-color-private-blue-300);\\n --yc-color-infographics-positive-medium: var(--yc-color-private-green-300);\\n --yc-color-infographics-warning-medium: var(--yc-color-private-orange-300);\\n --yc-color-infographics-danger-medium: var(--yc-color-private-red-300);\\n --yc-color-infographics-misc-medium: var(--yc-color-private-cool-grey-300);\\n --yc-color-infographics-neutral-medium: var(--yc-color-private-white-150);\\n --yc-color-infographics-info-heavy: var(--yc-color-private-blue-550);\\n --yc-color-infographics-positive-heavy: var(--yc-color-private-green-550);\\n --yc-color-infographics-warning-heavy: var(--yc-color-private-yellow-550);\\n --yc-color-infographics-danger-heavy: var(--yc-color-private-red-550);\\n --yc-color-infographics-misc-heavy: var(--yc-color-private-cool-grey-550);\\n --yc-color-infographics-neutral-heavy: var(--yc-color-private-white-300);\\n --yc-color-infographics-axis: var(--yc-color-private-white-150-solid);\\n --yc-color-infographics-tooltip-bg: var(--yc-color-private-white-opaque-150);\\n --yc-color-sfx-veil: var(--yc-color-private-black-600);\\n --yc-color-sfx-shadow: var(--yc-color-private-black-200);\\n --yc-color-sfx-shadow-heavy: var(--yc-color-private-black-500);\\n --yc-color-sfx-fade: var(--yc-color-private-white-250);\\n --yc-color-promo-base-silver: #bcc0c4;\\n --yc-color-promo-base-gold: #ffde5d;\\n --yc-color-promo-base-asphalt: #474d52;\\n --yc-color-promo-base-tomato: #ff6b6a;\\n --yc-color-promo-base-copper: #ffb95a;\\n --yc-color-promo-base-mint: #7fd68e;\\n --yc-color-promo-base-sky: #69b4ff;\\n --yc-color-promo-base-neon: #b384ff;\\n --yc-color-promo-highlight-silver: #616366;\\n --yc-color-promo-highlight-gold: #99832e;\\n --yc-color-promo-highlight-asphalt: #5d656b;\\n --yc-color-promo-highlight-tomato: #998585;\\n --yc-color-promo-highlight-copper: #7f7262;\\n --yc-color-promo-highlight-mint: #758978;\\n --yc-color-promo-highlight-sky: #94a2af;\\n --yc-color-promo-highlight-neon: #aea6ba;\\n --yc-color-scroll-track: var(--yc-color-base-background);\\n --yc-color-scroll-handle: var(--yc-color-private-white-150);\\n --yc-color-scroll-handle-hover: var(--yc-color-private-white-250);\\n --yc-color-scroll-corner: var(--yc-color-private-white-150);\\n background: var(--yc-color-base-background);\\n color: var(--yc-color-text-primary);\\n}\\n.yc-root_theme_light-hc {\\n --yc-color-private-white-50: rgba(255, 255, 255, 0.05);\\n --yc-color-private-white-70: rgba(255, 255, 255, 0.07);\\n --yc-color-private-white-100: rgba(255, 255, 255, 0.1);\\n --yc-color-private-white-150: rgba(255, 255, 255, 0.15);\\n --yc-color-private-white-200: rgba(255, 255, 255, 0.2);\\n --yc-color-private-white-250: rgba(255, 255, 255, 0.25);\\n --yc-color-private-white-300: rgba(255, 255, 255, 0.3);\\n --yc-color-private-white-350: rgba(255, 255, 255, 0.35);\\n --yc-color-private-white-400: rgba(255, 255, 255, 0.4);\\n --yc-color-private-white-450: rgba(255, 255, 255, 0.45);\\n --yc-color-private-white-500: rgba(255, 255, 255, 0.5);\\n --yc-color-private-white-550: rgba(255, 255, 255, 0.55);\\n --yc-color-private-white-600: rgba(255, 255, 255, 0.6);\\n --yc-color-private-white-650: rgba(255, 255, 255, 0.65);\\n --yc-color-private-white-700: rgba(255, 255, 255, 0.7);\\n --yc-color-private-white-750: rgba(255, 255, 255, 0.75);\\n --yc-color-private-white-800: rgba(255, 255, 255, 0.8);\\n --yc-color-private-white-850: rgba(255, 255, 255, 0.85);\\n --yc-color-private-white-900: rgba(255, 255, 255, 0.9);\\n --yc-color-private-white-950: rgba(255, 255, 255, 0.95);\\n --yc-color-private-white-1000: rgba(255, 255, 255, 1);\\n --yc-color-private-black-50: rgba(0, 0, 0, 0.05);\\n --yc-color-private-black-100: rgba(0, 0, 0, 0.1);\\n --yc-color-private-black-150: rgba(0, 0, 0, 0.15);\\n --yc-color-private-black-200: rgba(0, 0, 0, 0.2);\\n --yc-color-private-black-250: rgba(0, 0, 0, 0.25);\\n --yc-color-private-black-300: rgba(0, 0, 0, 0.3);\\n --yc-color-private-black-350: rgba(0, 0, 0, 0.35);\\n --yc-color-private-black-400: rgba(0, 0, 0, 0.4);\\n --yc-color-private-black-450: rgba(0, 0, 0, 0.45);\\n --yc-color-private-black-500: rgba(0, 0, 0, 0.5);\\n --yc-color-private-black-550: rgba(0, 0, 0, 0.55);\\n --yc-color-private-black-600: rgba(0, 0, 0, 0.6);\\n --yc-color-private-black-650: rgba(0, 0, 0, 0.65);\\n --yc-color-private-black-700: rgba(0, 0, 0, 0.7);\\n --yc-color-private-black-750: rgba(0, 0, 0, 0.75);\\n --yc-color-private-black-800: rgba(0, 0, 0, 0.8);\\n --yc-color-private-black-850: rgba(0, 0, 0, 0.85);\\n --yc-color-private-black-900: rgba(0, 0, 0, 0.9);\\n --yc-color-private-black-950: rgba(0, 0, 0, 0.95);\\n --yc-color-private-black-1000: rgba(0, 0, 0, 1);\\n --yc-color-private-black-20-solid: rgba(250, 250, 250, 1);\\n --yc-color-private-black-50-solid: rgba(242, 242, 242, 1);\\n --yc-color-private-black-100-solid: rgba(229, 229, 229, 1);\\n --yc-color-private-black-150-solid: rgba(217, 217, 217, 1);\\n --yc-color-private-black-200-solid: rgba(204, 204, 204, 1);\\n --yc-color-private-black-250-solid: rgba(191, 191, 191, 1);\\n --yc-color-private-black-300-solid: rgba(179, 179, 179, 1);\\n --yc-color-private-black-350-solid: rgba(166, 166, 166, 1);\\n --yc-color-private-black-400-solid: rgba(153, 153, 153, 1);\\n --yc-color-private-black-450-solid: rgba(140, 140, 140, 1);\\n --yc-color-private-black-500-solid: rgba(128, 128, 128, 1);\\n --yc-color-private-black-550-solid: rgba(115, 115, 115, 1);\\n --yc-color-private-black-600-solid: rgba(102, 102, 102, 1);\\n --yc-color-private-black-650-solid: rgba(89, 89, 89, 1);\\n --yc-color-private-black-700-solid: rgba(76, 76, 76, 1);\\n --yc-color-private-black-750-solid: rgba(64, 64, 64, 1);\\n --yc-color-private-black-800-solid: rgba(51, 51, 51, 1);\\n --yc-color-private-black-850-solid: rgba(38, 38, 38, 1);\\n --yc-color-private-black-900-solid: rgba(26, 26, 26, 1);\\n --yc-color-private-black-950-solid: rgba(13, 13, 13, 1);\\n --yc-color-private-black-1000-solid: rgba(0, 0, 0, 1);\\n --yc-color-private-blue-600: #4a71d6;\\n --yc-color-private-blue-800: #3f5799;\\n --yc-color-private-blue-50: rgba(82, 130, 255, 0.05);\\n --yc-color-private-blue-100: rgba(82, 130, 255, 0.1);\\n --yc-color-private-blue-150: rgba(82, 130, 255, 0.2);\\n --yc-color-private-blue-200: rgba(82, 130, 255, 0.3);\\n --yc-color-private-blue-250: rgba(82, 130, 255, 0.4);\\n --yc-color-private-blue-300: rgba(82, 130, 255, 0.5);\\n --yc-color-private-blue-350: rgba(82, 130, 255, 0.6);\\n --yc-color-private-blue-400: rgba(82, 130, 255, 0.7);\\n --yc-color-private-blue-450: rgba(82, 130, 255, 0.8);\\n --yc-color-private-blue-500: rgba(82, 130, 255, 0.9);\\n --yc-color-private-blue-550: rgba(82, 130, 255, 1);\\n --yc-color-private-blue-50-solid: rgba(246, 249, 255, 1);\\n --yc-color-private-blue-100-solid: rgba(238, 243, 255, 1);\\n --yc-color-private-blue-150-solid: rgba(220, 230, 255, 1);\\n --yc-color-private-blue-200-solid: rgba(203, 218, 255, 1);\\n --yc-color-private-blue-250-solid: rgba(186, 205, 255, 1);\\n --yc-color-private-blue-300-solid: rgba(168, 193, 255, 1);\\n --yc-color-private-blue-350-solid: rgba(151, 180, 255, 1);\\n --yc-color-private-blue-400-solid: rgba(134, 168, 255, 1);\\n --yc-color-private-blue-450-solid: rgba(116, 155, 255, 1);\\n --yc-color-private-blue-500-solid: rgba(99, 143, 255, 1);\\n --yc-color-private-blue-550-solid: rgba(82, 130, 255, 1);\\n --yc-color-private-blue-600-solid: rgba(77, 121, 233, 1);\\n --yc-color-private-blue-650-solid: rgba(72, 111, 212, 1);\\n --yc-color-private-blue-700-solid: rgba(67, 102, 190, 1);\\n --yc-color-private-blue-750-solid: rgba(63, 92, 168, 1);\\n --yc-color-private-blue-800-solid: rgba(58, 83, 147, 1);\\n --yc-color-private-blue-850-solid: rgba(53, 73, 125, 1);\\n --yc-color-private-blue-900-solid: rgba(48, 64, 103, 1);\\n --yc-color-private-blue-950-solid: rgba(44, 54, 81, 1);\\n --yc-color-private-blue-1000-solid: rgba(39, 45, 60, 1);\\n --yc-color-private-green-50: rgba(59, 201, 53, 0.05);\\n --yc-color-private-green-100: rgba(59, 201, 53, 0.1);\\n --yc-color-private-green-150: rgba(59, 201, 53, 0.2);\\n --yc-color-private-green-200: rgba(59, 201, 53, 0.3);\\n --yc-color-private-green-250: rgba(59, 201, 53, 0.4);\\n --yc-color-private-green-300: rgba(59, 201, 53, 0.5);\\n --yc-color-private-green-350: rgba(59, 201, 53, 0.6);\\n --yc-color-private-green-400: rgba(59, 201, 53, 0.7);\\n --yc-color-private-green-450: rgba(59, 201, 53, 0.8);\\n --yc-color-private-green-500: rgba(59, 201, 53, 0.9);\\n --yc-color-private-green-550: rgba(59, 201, 53, 1);\\n --yc-color-private-green-50-solid: rgba(245, 252, 245, 1);\\n --yc-color-private-green-100-solid: rgba(235, 250, 235, 1);\\n --yc-color-private-green-150-solid: rgba(216, 244, 215, 1);\\n --yc-color-private-green-200-solid: rgba(196, 239, 194, 1);\\n --yc-color-private-green-250-solid: rgba(177, 233, 174, 1);\\n --yc-color-private-green-300-solid: rgba(157, 228, 154, 1);\\n --yc-color-private-green-350-solid: rgba(137, 223, 134, 1);\\n --yc-color-private-green-400-solid: rgba(118, 217, 114, 1);\\n --yc-color-private-green-450-solid: rgba(98, 212, 93, 1);\\n --yc-color-private-green-500-solid: rgba(79, 206, 73, 1);\\n --yc-color-private-green-550-solid: rgba(59, 201, 53, 1);\\n --yc-color-private-green-600-solid: rgba(56, 184, 51, 1);\\n --yc-color-private-green-650-solid: rgba(54, 168, 50, 1);\\n --yc-color-private-green-700-solid: rgba(51, 151, 48, 1);\\n --yc-color-private-green-750-solid: rgba(49, 135, 47, 1);\\n --yc-color-private-green-800-solid: rgba(47, 118, 46, 1);\\n --yc-color-private-green-850-solid: rgba(44, 101, 44, 1);\\n --yc-color-private-green-900-solid: rgba(41, 85, 43, 1);\\n --yc-color-private-green-950-solid: rgba(39, 68, 41, 1);\\n --yc-color-private-green-1000-solid: rgba(36, 52, 40, 1);\\n --yc-color-private-yellow-50: rgba(255, 219, 77, 0.05);\\n --yc-color-private-yellow-100: rgba(255, 219, 77, 0.1);\\n --yc-color-private-yellow-150: rgba(255, 219, 77, 0.2);\\n --yc-color-private-yellow-200: rgba(255, 219, 77, 0.3);\\n --yc-color-private-yellow-250: rgba(255, 219, 77, 0.4);\\n --yc-color-private-yellow-300: rgba(255, 219, 77, 0.5);\\n --yc-color-private-yellow-350: rgba(255, 219, 77, 0.6);\\n --yc-color-private-yellow-400: rgba(255, 219, 77, 0.7);\\n --yc-color-private-yellow-450: rgba(255, 219, 77, 0.8);\\n --yc-color-private-yellow-500: rgba(255, 219, 77, 0.9);\\n --yc-color-private-yellow-550: rgba(255, 219, 77, 1);\\n --yc-color-private-yellow-50-solid: rgba(255, 253, 246, 1);\\n --yc-color-private-yellow-100-solid: rgba(255, 251, 237, 1);\\n --yc-color-private-yellow-150-solid: rgba(255, 248, 219, 1);\\n --yc-color-private-yellow-200-solid: rgba(255, 244, 202, 1);\\n --yc-color-private-yellow-250-solid: rgba(255, 241, 184, 1);\\n --yc-color-private-yellow-300-solid: rgba(255, 237, 166, 1);\\n --yc-color-private-yellow-350-solid: rgba(255, 233, 148, 1);\\n --yc-color-private-yellow-400-solid: rgba(255, 230, 130, 1);\\n --yc-color-private-yellow-450-solid: rgba(255, 226, 113, 1);\\n --yc-color-private-yellow-500-solid: rgba(255, 223, 95, 1);\\n --yc-color-private-yellow-550-solid: rgba(255, 219, 77, 1);\\n --yc-color-private-yellow-600-solid: rgba(233, 201, 73, 1);\\n --yc-color-private-yellow-650-solid: rgba(211, 182, 69, 1);\\n --yc-color-private-yellow-700-solid: rgba(189, 164, 65, 1);\\n --yc-color-private-yellow-750-solid: rgba(167, 145, 61, 1);\\n --yc-color-private-yellow-800-solid: rgba(144, 127, 58, 1);\\n --yc-color-private-yellow-850-solid: rgba(122, 109, 54, 1);\\n --yc-color-private-yellow-900-solid: rgba(100, 90, 50, 1);\\n --yc-color-private-yellow-950-solid: rgba(78, 72, 46, 1);\\n --yc-color-private-yellow-1000-solid: rgba(56, 53, 42, 1);\\n --yc-color-private-red-50: rgba(255, 4, 0, 0.05);\\n --yc-color-private-red-100: rgba(255, 4, 0, 0.1);\\n --yc-color-private-red-150: rgba(255, 4, 0, 0.2);\\n --yc-color-private-red-200: rgba(255, 4, 0, 0.3);\\n --yc-color-private-red-250: rgba(255, 4, 0, 0.4);\\n --yc-color-private-red-300: rgba(255, 4, 0, 0.5);\\n --yc-color-private-red-350: rgba(255, 4, 0, 0.6);\\n --yc-color-private-red-400: rgba(255, 4, 0, 0.7);\\n --yc-color-private-red-450: rgba(255, 4, 0, 0.8);\\n --yc-color-private-red-500: rgba(255, 4, 0, 0.9);\\n --yc-color-private-red-550: rgba(255, 4, 0, 1);\\n --yc-color-private-red-50-solid: rgba(255, 243, 242, 1);\\n --yc-color-private-red-100-solid: rgba(255, 230, 229, 1);\\n --yc-color-private-red-150-solid: rgba(255, 205, 204, 1);\\n --yc-color-private-red-200-solid: rgba(255, 180, 179, 1);\\n --yc-color-private-red-250-solid: rgba(255, 155, 153, 1);\\n --yc-color-private-red-300-solid: rgba(255, 130, 128, 1);\\n --yc-color-private-red-350-solid: rgba(255, 105, 102, 1);\\n --yc-color-private-red-400-solid: rgba(255, 80, 76, 1);\\n --yc-color-private-red-450-solid: rgba(255, 55, 51, 1);\\n --yc-color-private-red-500-solid: rgba(255, 30, 26, 1);\\n --yc-color-private-red-550-solid: rgba(255, 4, 0, 1);\\n --yc-color-private-red-600-solid: rgba(233, 8, 4, 1);\\n --yc-color-private-red-650-solid: rgba(211, 11, 8, 1);\\n --yc-color-private-red-700-solid: rgba(189, 14, 11, 1);\\n --yc-color-private-red-750-solid: rgba(166, 17, 15, 1);\\n --yc-color-private-red-800-solid: rgba(144, 20, 19, 1);\\n --yc-color-private-red-850-solid: rgba(122, 23, 23, 1);\\n --yc-color-private-red-900-solid: rgba(100, 26, 27, 1);\\n --yc-color-private-red-950-solid: rgba(78, 29, 30, 1);\\n --yc-color-private-red-1000-solid: rgba(56, 32, 34, 1);\\n --yc-color-private-purple-50: rgba(154, 50, 166, 0.05);\\n --yc-color-private-purple-100: rgba(154, 50, 166, 0.1);\\n --yc-color-private-purple-150: rgba(154, 50, 166, 0.2);\\n --yc-color-private-purple-200: rgba(154, 50, 166, 0.3);\\n --yc-color-private-purple-250: rgba(154, 50, 166, 0.4);\\n --yc-color-private-purple-300: rgba(154, 50, 166, 0.5);\\n --yc-color-private-purple-350: rgba(154, 50, 166, 0.6);\\n --yc-color-private-purple-400: rgba(154, 50, 166, 0.7);\\n --yc-color-private-purple-450: rgba(154, 50, 166, 0.8);\\n --yc-color-private-purple-500: rgba(154, 50, 166, 0.9);\\n --yc-color-private-purple-550: rgba(154, 50, 166, 1);\\n --yc-color-private-purple-50-solid: rgba(250, 245, 251, 1);\\n --yc-color-private-purple-100-solid: rgba(245, 234, 246, 1);\\n --yc-color-private-purple-150-solid: rgba(235, 214, 237, 1);\\n --yc-color-private-purple-200-solid: rgba(225, 193, 228, 1);\\n --yc-color-private-purple-250-solid: rgba(215, 173, 219, 1);\\n --yc-color-private-purple-300-solid: rgba(204, 153, 210, 1);\\n --yc-color-private-purple-350-solid: rgba(194, 132, 202, 1);\\n --yc-color-private-purple-400-solid: rgba(184, 111, 193, 1);\\n --yc-color-private-purple-450-solid: rgba(174, 91, 184, 1);\\n --yc-color-private-purple-500-solid: rgba(164, 71, 175, 1);\\n --yc-color-private-purple-550-solid: rgba(154, 50, 166, 1);\\n --yc-color-private-purple-600-solid: rgba(142, 49, 153, 1);\\n --yc-color-private-purple-650-solid: rgba(130, 47, 140, 1);\\n --yc-color-private-purple-700-solid: rgba(118, 45, 128, 1);\\n --yc-color-private-purple-750-solid: rgba(106, 44, 115, 1);\\n --yc-color-private-purple-800-solid: rgba(94, 42, 102, 1);\\n --yc-color-private-purple-850-solid: rgba(82, 41, 89, 1);\\n --yc-color-private-purple-900-solid: rgba(70, 40, 76, 1);\\n --yc-color-private-purple-950-solid: rgba(58, 38, 64, 1);\\n --yc-color-private-purple-1000-solid: rgba(46, 36, 51, 1);\\n --yc-color-private-cool-grey-50: rgba(107, 132, 153, 0.05);\\n --yc-color-private-cool-grey-100: rgba(107, 132, 153, 0.1);\\n --yc-color-private-cool-grey-150: rgba(107, 132, 153, 0.2);\\n --yc-color-private-cool-grey-200: rgba(107, 132, 153, 0.3);\\n --yc-color-private-cool-grey-250: rgba(107, 132, 153, 0.4);\\n --yc-color-private-cool-grey-300: rgba(107, 132, 153, 0.5);\\n --yc-color-private-cool-grey-350: rgba(107, 132, 153, 0.6);\\n --yc-color-private-cool-grey-400: rgba(107, 132, 153, 0.7);\\n --yc-color-private-cool-grey-450: rgba(107, 132, 153, 0.8);\\n --yc-color-private-cool-grey-500: rgba(107, 132, 153, 0.9);\\n --yc-color-private-cool-grey-550: rgba(107, 132, 153, 1);\\n --yc-color-private-cool-grey-50-solid: rgba(248, 249, 250, 1);\\n --yc-color-private-cool-grey-100-solid: rgba(240, 243, 245, 1);\\n --yc-color-private-cool-grey-150-solid: rgba(225, 230, 235, 1);\\n --yc-color-private-cool-grey-200-solid: rgba(211, 218, 224, 1);\\n --yc-color-private-cool-grey-250-solid: rgba(196, 206, 214, 1);\\n --yc-color-private-cool-grey-300-solid: rgba(181, 193, 204, 1);\\n --yc-color-private-cool-grey-350-solid: rgba(166, 181, 194, 1);\\n --yc-color-private-cool-grey-400-solid: rgba(151, 169, 184, 1);\\n --yc-color-private-cool-grey-450-solid: rgba(137, 157, 173, 1);\\n --yc-color-private-cool-grey-500-solid: rgba(122, 144, 163, 1);\\n --yc-color-private-cool-grey-550-solid: rgba(107, 132, 153, 1);\\n --yc-color-private-cool-grey-600-solid: rgba(100, 122, 142, 1);\\n --yc-color-private-cool-grey-650-solid: rgba(92, 113, 130, 1);\\n --yc-color-private-cool-grey-700-solid: rgba(85, 103, 118, 1);\\n --yc-color-private-cool-grey-750-solid: rgba(78, 93, 107, 1);\\n --yc-color-private-cool-grey-800-solid: rgba(70, 83, 96, 1);\\n --yc-color-private-cool-grey-850-solid: rgba(63, 74, 84, 1);\\n --yc-color-private-cool-grey-900-solid: rgba(56, 64, 73, 1);\\n --yc-color-private-cool-grey-950-solid: rgba(49, 54, 61, 1);\\n --yc-color-private-cool-grey-1000-solid: rgba(41, 45, 49, 1);\\n --yc-color-private-orange-50: rgba(255, 119, 0, 0.05);\\n --yc-color-private-orange-100: rgba(255, 119, 0, 0.1);\\n --yc-color-private-orange-150: rgba(255, 119, 0, 0.2);\\n --yc-color-private-orange-200: rgba(255, 119, 0, 0.3);\\n --yc-color-private-orange-250: rgba(255, 119, 0, 0.4);\\n --yc-color-private-orange-300: rgba(255, 119, 0, 0.5);\\n --yc-color-private-orange-350: rgba(255, 119, 0, 0.6);\\n --yc-color-private-orange-400: rgba(255, 119, 0, 0.7);\\n --yc-color-private-orange-450: rgba(255, 119, 0, 0.8);\\n --yc-color-private-orange-500: rgba(255, 119, 0, 0.9);\\n --yc-color-private-orange-550: rgba(255, 119, 0, 1);\\n --yc-color-private-orange-50-solid: rgba(255, 248, 242, 1);\\n --yc-color-private-orange-100-solid: rgba(255, 241, 229, 1);\\n --yc-color-private-orange-150-solid: rgba(255, 228, 204, 1);\\n --yc-color-private-orange-200-solid: rgba(255, 214, 179, 1);\\n --yc-color-private-orange-250-solid: rgba(255, 201, 153, 1);\\n --yc-color-private-orange-300-solid: rgba(255, 187, 128, 1);\\n --yc-color-private-orange-350-solid: rgba(255, 173, 102, 1);\\n --yc-color-private-orange-400-solid: rgba(255, 160, 76, 1);\\n --yc-color-private-orange-450-solid: rgba(255, 146, 51, 1);\\n --yc-color-private-orange-500-solid: rgba(255, 133, 26, 1);\\n --yc-color-private-orange-550-solid: rgba(255, 119, 0, 1);\\n --yc-color-private-orange-600-solid: rgba(233, 111, 4, 1);\\n --yc-color-private-orange-650-solid: rgba(211, 102, 8, 1);\\n --yc-color-private-orange-700-solid: rgba(189, 94, 11, 1);\\n --yc-color-private-orange-750-solid: rgba(167, 85, 15, 1);\\n --yc-color-private-orange-800-solid: rgba(144, 77, 19, 1);\\n --yc-color-private-orange-850-solid: rgba(122, 69, 23, 1);\\n --yc-color-private-orange-900-solid: rgba(100, 60, 27, 1);\\n --yc-color-private-orange-950-solid: rgba(78, 52, 30, 1);\\n --yc-color-private-orange-1000-solid: rgba(56, 43, 34, 1);\\n --yc-my-color-brand-normal: var(--yc-color-private-blue-550);\\n --yc-my-color-brand-normal-hover: var(--yc-color-private-blue-800);\\n --yc-my-color-brand-light: var(--yc-color-private-blue-300);\\n --yc-my-color-brand-selection: var(--yc-color-private-blue-250);\\n --yc-my-color-brand-selection-hover: var(--yc-color-private-blue-450);\\n --yc-my-color-brand-link: var(--yc-color-private-blue-650-solid);\\n --yc-my-color-brand-link-hover: var(--yc-color-private-blue-850-solid);\\n --yc-my-color-brand-text: var(--yc-color-private-blue-900-solid);\\n --yc-my-color-brand-text-contrast: var(--yc-color-text-light-primary);\\n --yc-my-color-brand-link-visited: var(--yc-color-private-purple-600-solid);\\n --yc-my-color-brand-link-visited-hover: var(--yc-color-private-purple-850-solid);\\n --yc-color-text-primary: var(--yc-color-private-black-1000);\\n --yc-color-text-complementary: var(--yc-color-private-black-850);\\n --yc-color-text-secondary: var(--yc-color-private-black-700);\\n --yc-color-text-hint: var(--yc-color-private-black-500);\\n --yc-color-text-info: var(--yc-color-private-blue-600-solid);\\n --yc-color-text-positive: var(--yc-color-private-green-650-solid);\\n --yc-color-text-warning: var(--yc-color-private-yellow-650-solid);\\n --yc-color-text-danger: var(--yc-color-private-red-600-solid);\\n --yc-color-text-utility: var(--yc-color-private-purple-600-solid);\\n --yc-color-text-misc: var(--yc-color-private-cool-grey-650-solid);\\n --yc-color-text-info-heavy: var(--yc-color-private-blue-900-solid);\\n --yc-color-text-positive-heavy: var(--yc-color-private-green-900-solid);\\n --yc-color-text-warning-heavy: var(--yc-color-private-orange-900-solid);\\n --yc-color-text-danger-heavy: var(--yc-color-private-red-900-solid);\\n --yc-color-text-utility-heavy: var(--yc-color-private-purple-900-solid);\\n --yc-color-text-misc-heavy: var(--yc-color-private-cool-grey-950-solid);\\n --yc-color-text-special: var(--yc-my-color-brand-normal);\\n --yc-color-text-link: var(--yc-my-color-brand-link);\\n --yc-color-text-link-hover: var(--yc-my-color-brand-link-hover);\\n --yc-color-text-link-visited: var(--yc-my-color-brand-link-visited);\\n --yc-color-text-link-visited-hover: var(--yc-my-color-brand-link-visited-hover);\\n --yc-color-text-yandex-red: var(--yc-color-private-red-550);\\n --yc-color-text-dark-primary: var(--yc-color-private-black-1000);\\n --yc-color-text-dark-complementary: var(--yc-color-private-black-800);\\n --yc-color-text-dark-secondary: var(--yc-color-private-black-600);\\n --yc-color-text-light-primary: var(--yc-color-private-white-1000);\\n --yc-color-text-light-complementary: var(--yc-color-private-white-850);\\n --yc-color-text-light-secondary: var(--yc-color-private-white-700);\\n --yc-color-text-light-hint: var(--yc-color-private-white-500);\\n --yc-color-text-inverted-primary: var(--yc-color-private-white-1000);\\n --yc-color-text-inverted-complementary: var(--yc-color-private-white-850);\\n --yc-color-text-inverted-secondary: var(--yc-color-private-white-700);\\n --yc-color-text-inverted-hint: var(--yc-color-private-white-500);\\n --yc-color-base-background: var(--yc-color-private-white-1000);\\n --yc-color-base-generic: var(--yc-color-private-black-150);\\n --yc-color-base-generic-hover: var(--yc-color-private-black-300);\\n --yc-color-base-generic-medium: var(--yc-color-private-black-250);\\n --yc-color-base-generic-medium-hover: var(--yc-color-private-black-350);\\n --yc-color-base-generic-accent: var(--yc-color-private-black-250);\\n --yc-color-base-generic-accent-disabled: var(--yc-color-private-black-150);\\n --yc-color-base-generic-ultralight: var(--yc-color-private-black-50-solid);\\n --yc-color-base-simple-hover: var(--yc-color-private-black-150);\\n --yc-color-base-simple-hover-solid: var(--yc-color-private-black-100-solid);\\n --yc-color-base-selection: var(--yc-my-color-brand-selection);\\n --yc-color-base-selection-hover: var(--yc-my-color-brand-selection-hover);\\n --yc-color-base-special: var(--yc-my-color-brand-normal);\\n --yc-color-base-special-hover: var(--yc-my-color-brand-normal-hover);\\n --yc-color-base-action: var(--yc-color-base-special);\\n --yc-color-base-action-hover: var(--yc-color-base-special-hover);\\n --yc-color-base-info: var(--yc-color-private-blue-250);\\n --yc-color-base-info-hover: var(--yc-color-private-blue-350);\\n --yc-color-base-positive: var(--yc-color-private-green-250);\\n --yc-color-base-positive-hover: var(--yc-color-private-green-350);\\n --yc-color-base-warning: var(--yc-color-private-yellow-300);\\n --yc-color-base-warning-hover: var(--yc-color-private-yellow-550);\\n --yc-color-base-danger: var(--yc-color-private-red-250);\\n --yc-color-base-danger-hover: var(--yc-color-private-red-350);\\n --yc-color-base-misc: var(--yc-color-private-cool-grey-250);\\n --yc-color-base-misc-hover: var(--yc-color-private-cool-grey-350);\\n --yc-color-base-neutral: var(--yc-color-private-black-150);\\n --yc-color-base-neutral-hover: var(--yc-color-private-black-300);\\n --yc-color-base-positive-medium: var(--yc-color-private-green-350);\\n --yc-color-base-positive-medium-hover: var(--yc-color-private-green-400);\\n --yc-color-base-info-heavy: var(--yc-color-private-blue-450);\\n --yc-color-base-positive-heavy: var(--yc-color-private-green-450);\\n --yc-color-base-warning-heavy: var(--yc-color-private-yellow-450);\\n --yc-color-base-warning-heavy-hover: var(--yc-color-private-yellow-700);\\n --yc-color-base-danger-heavy: var(--yc-color-private-red-450);\\n --yc-color-base-danger-heavy-hover: var(--yc-color-private-red-450);\\n --yc-color-base-misc-heavy: var(--yc-color-private-cool-grey-450);\\n --yc-color-base-misc-heavy-hover: var(--yc-color-private-cool-grey-550);\\n --yc-color-base-light: var(--yc-color-private-white-1000);\\n --yc-color-base-light-hover: var(--yc-color-private-white-850);\\n --yc-color-base-light-simple-hover: var(--yc-color-private-white-300);\\n --yc-color-base-light-disabled: var(--yc-color-private-white-150);\\n --yc-color-base-light-accent-disabled: var(--yc-color-private-white-300);\\n --yc-color-base-float: var(--yc-color-private-white-1000);\\n --yc-color-base-float-hover: var(--yc-color-private-black-150-solid);\\n --yc-color-base-float-heavy: var(--yc-color-private-black-700-solid);\\n --yc-color-base-float-accent: var(--yc-color-private-white-1000);\\n --yc-color-base-float-accent-hover: var(--yc-color-private-white-850);\\n --yc-color-base-float-announcement: var(--yc-color-private-cool-grey-150-solid);\\n --yc-color-base-modal: var(--yc-color-private-white-1000);\\n --yc-color-line-generic: var(--yc-color-private-black-200);\\n --yc-color-line-generic-hover: var(--yc-color-private-black-400);\\n --yc-color-line-generic-active: var(--yc-color-private-black-700);\\n --yc-color-line-generic-accent: var(--yc-color-private-black-300);\\n --yc-color-line-generic-accent-hover: var(--yc-color-private-black-700);\\n --yc-color-line-solid: var(--yc-color-private-black-200-solid);\\n --yc-color-line-selection-hover: var(--yc-my-color-brand-light);\\n --yc-color-line-selection-active: var(--yc-my-color-brand-normal);\\n --yc-color-line-link: var(--yc-my-color-brand-normal);\\n --yc-color-line-info: var(--yc-color-private-blue-450);\\n --yc-color-line-positive: var(--yc-color-private-green-450);\\n --yc-color-line-warning: var(--yc-color-private-yellow-600-solid);\\n --yc-color-line-danger: var(--yc-color-private-red-450);\\n --yc-color-line-misc: var(--yc-color-private-cool-grey-450);\\n --yc-color-line-hint: var(--yc-color-private-blue-550);\\n --yc-color-line-light: var(--yc-color-private-white-500);\\n --yc-color-infographics-info-light: var(--yc-color-private-blue-50);\\n --yc-color-infographics-positive-light: var(--yc-color-private-green-50);\\n --yc-color-infographics-warning-light: var(--yc-color-private-orange-50);\\n --yc-color-infographics-danger-light: var(--yc-color-private-red-50);\\n --yc-color-infographics-misc-light: var(--yc-color-private-cool-grey-50);\\n --yc-color-infographics-neutral-light: var(--yc-color-private-black-50);\\n --yc-color-infographics-info-medium: var(--yc-color-private-blue-300);\\n --yc-color-infographics-positive-medium: var(--yc-color-private-green-300);\\n --yc-color-infographics-warning-medium: var(--yc-color-private-orange-300);\\n --yc-color-infographics-danger-medium: var(--yc-color-private-red-300);\\n --yc-color-infographics-misc-medium: var(--yc-color-private-cool-grey-300);\\n --yc-color-infographics-neutral-medium: var(--yc-color-private-black-150);\\n --yc-color-infographics-info-heavy: var(--yc-color-private-blue-550);\\n --yc-color-infographics-positive-heavy: var(--yc-color-private-green-550);\\n --yc-color-infographics-warning-heavy: var(--yc-color-private-yellow-550);\\n --yc-color-infographics-danger-heavy: var(--yc-color-private-red-550);\\n --yc-color-infographics-misc-heavy: var(--yc-color-private-cool-grey-550);\\n --yc-color-infographics-neutral-heavy: var(--yc-color-private-black-300);\\n --yc-color-infographics-axis: var(--yc-color-private-black-150-solid);\\n --yc-color-infographics-tooltip-bg: var(--yc-color-private-white-950);\\n --yc-color-sfx-veil: var(--yc-color-private-black-450);\\n --yc-color-sfx-shadow: var(--yc-color-private-black-300);\\n --yc-color-sfx-shadow-heavy: var(--yc-color-private-black-600);\\n --yc-color-sfx-fade: var(--yc-color-private-white-300);\\n --yc-color-promo-base-silver: #edf2f7;\\n --yc-color-promo-base-gold: #ffdb4d;\\n --yc-color-promo-base-asphalt: #313538;\\n --yc-color-promo-base-tomato: #ff5958;\\n --yc-color-promo-base-copper: #ffab3b;\\n --yc-color-promo-base-mint: #5ecf71;\\n --yc-color-promo-base-sky: #49a0f6;\\n --yc-color-promo-base-neon: #9f6fee;\\n --yc-color-promo-highlight-silver: #edf2f7;\\n --yc-color-promo-highlight-gold: #fff1b8;\\n --yc-color-promo-highlight-asphalt: #eaebeb;\\n --yc-color-promo-highlight-tomato: #ffdede;\\n --yc-color-promo-highlight-copper: #ffe6c4;\\n --yc-color-promo-highlight-mint: #ccf0d2;\\n --yc-color-promo-highlight-sky: #d6e9fd;\\n --yc-color-promo-highlight-neon: #ece2fc;\\n --yc-color-promo-accent-silver: #969a9e;\\n --yc-color-promo-accent-gold: #ffdb4d;\\n --yc-color-promo-accent-asphalt: #313538;\\n --yc-color-promo-accent-tomato: #ff5958;\\n --yc-color-promo-accent-copper: #ffab3b;\\n --yc-color-promo-accent-mint: #5ecf71;\\n --yc-color-promo-accent-sky: #49a0f6;\\n --yc-color-promo-accent-neon: #9f6fee;\\n --yc-color-promo-accent-hover-silver: #727578;\\n --yc-color-promo-accent-hover-gold: #edbe28;\\n --yc-color-promo-accent-hover-asphalt: #000;\\n --yc-color-promo-accent-hover-tomato: #ee4f4e;\\n --yc-color-promo-accent-hover-copper: #f28d04;\\n --yc-color-promo-accent-hover-mint: #3bbc51;\\n --yc-color-promo-accent-hover-sky: #2180de;\\n --yc-color-promo-accent-hover-neon: #7b47cf;\\n --yc-color-promo-text-silver: #969a9e;\\n --yc-color-promo-text-gold: #ebb409;\\n --yc-color-promo-text-asphalt: #313538;\\n --yc-color-promo-text-tomato: #ff5958;\\n --yc-color-promo-text-copper: #ffab3b;\\n --yc-color-promo-text-mint: #5ecf71;\\n --yc-color-promo-text-sky: #49a0f6;\\n --yc-color-promo-text-neon: #9f6fee;\\n --yc-color-scroll-track: var(--yc-color-base-background);\\n --yc-color-scroll-handle: var(--yc-color-private-black-100);\\n --yc-color-scroll-handle-hover: var(--yc-color-private-black-150);\\n --yc-color-scroll-corner: var(--yc-color-private-black-100);\\n background: var(--yc-color-base-background);\\n color: var(--yc-color-text-primary);\\n}\\n.yc-root_theme_dark-hc {\\n --yc-color-private-white-50: rgba(255, 255, 255, 0.05);\\n --yc-color-private-white-70: rgba(255, 255, 255, 0.07);\\n --yc-color-private-white-100: rgba(255, 255, 255, 0.1);\\n --yc-color-private-white-150: rgba(255, 255, 255, 0.15);\\n --yc-color-private-white-200: rgba(255, 255, 255, 0.2);\\n --yc-color-private-white-250: rgba(255, 255, 255, 0.25);\\n --yc-color-private-white-300: rgba(255, 255, 255, 0.3);\\n --yc-color-private-white-350: rgba(255, 255, 255, 0.35);\\n --yc-color-private-white-400: rgba(255, 255, 255, 0.4);\\n --yc-color-private-white-450: rgba(255, 255, 255, 0.45);\\n --yc-color-private-white-500: rgba(255, 255, 255, 0.5);\\n --yc-color-private-white-550: rgba(255, 255, 255, 0.55);\\n --yc-color-private-white-600: rgba(255, 255, 255, 0.6);\\n --yc-color-private-white-650: rgba(255, 255, 255, 0.65);\\n --yc-color-private-white-700: rgba(255, 255, 255, 0.7);\\n --yc-color-private-white-750: rgba(255, 255, 255, 0.75);\\n --yc-color-private-white-800: rgba(255, 255, 255, 0.8);\\n --yc-color-private-white-850: rgba(255, 255, 255, 0.85);\\n --yc-color-private-white-900: rgba(255, 255, 255, 0.9);\\n --yc-color-private-white-950: rgba(255, 255, 255, 0.95);\\n --yc-color-private-white-1000: rgba(255, 255, 255, 1);\\n /*————————— To review opaque —————————*/\\n --yc-color-private-white-opaque-150: rgba(56, 57, 60, 0.97);\\n --yc-color-private-black-20: rgba(0, 0, 0, 0.02);\\n --yc-color-private-black-50: rgba(0, 0, 0, 0.05);\\n --yc-color-private-black-100: rgba(0, 0, 0, 0.1);\\n --yc-color-private-black-150: rgba(0, 0, 0, 0.15);\\n --yc-color-private-black-200: rgba(0, 0, 0, 0.2);\\n --yc-color-private-black-250: rgba(0, 0, 0, 0.25);\\n --yc-color-private-black-300: rgba(0, 0, 0, 0.3);\\n --yc-color-private-black-350: rgba(0, 0, 0, 0.35);\\n --yc-color-private-black-400: rgba(0, 0, 0, 0.4);\\n --yc-color-private-black-450: rgba(0, 0, 0, 0.45);\\n --yc-color-private-black-500: rgba(0, 0, 0, 0.5);\\n --yc-color-private-black-550: rgba(0, 0, 0, 0.55);\\n --yc-color-private-black-600: rgba(0, 0, 0, 0.6);\\n --yc-color-private-black-650: rgba(0, 0, 0, 0.65);\\n --yc-color-private-black-700: rgba(0, 0, 0, 0.7);\\n --yc-color-private-black-750: rgba(0, 0, 0, 0.75);\\n --yc-color-private-black-800: rgba(0, 0, 0, 0.8);\\n --yc-color-private-black-850: rgba(0, 0, 0, 0.85);\\n --yc-color-private-black-900: rgba(0, 0, 0, 0.9);\\n --yc-color-private-black-950: rgba(0, 0, 0, 0.95);\\n --yc-color-private-black-1000: rgba(0, 0, 0, 1);\\n --yc-color-private-black-rock-850: #2d2c33;\\n --yc-color-private-black-rock-950: rgba(34, 35, 38, 1);\\n /*————————— To review 20-solid —> should be deleted —————————*/\\n --yc-color-private-white-20-solid: rgba(38, 39, 42, 1);\\n --yc-color-private-white-50-solid: rgba(45, 46, 49, 1);\\n --yc-color-private-white-100-solid: rgba(56, 57, 60, 1);\\n --yc-color-private-white-150-solid: rgba(67, 68, 71, 1);\\n --yc-color-private-white-200-solid: rgba(78, 79, 81, 1);\\n --yc-color-private-white-250-solid: rgba(89, 90, 92, 1);\\n --yc-color-private-white-300-solid: rgba(100, 101, 103, 1);\\n --yc-color-private-white-350-solid: rgba(111, 112, 114, 1);\\n --yc-color-private-white-400-solid: rgba(122, 123, 125, 1);\\n --yc-color-private-white-450-solid: rgba(133, 134, 136, 1);\\n --yc-color-private-white-500-solid: rgba(144, 145, 147, 1);\\n --yc-color-private-white-550-solid: rgba(156, 156, 157, 1);\\n --yc-color-private-white-600-solid: rgba(167, 167, 168, 1);\\n --yc-color-private-white-650-solid: rgba(178, 178, 179, 1);\\n --yc-color-private-white-700-solid: rgba(189, 189, 190, 1);\\n --yc-color-private-white-750-solid: rgba(200, 200, 201, 1);\\n --yc-color-private-white-800-solid: rgba(211, 211, 212, 1);\\n --yc-color-private-white-850-solid: rgba(222, 222, 223, 1);\\n --yc-color-private-white-900-solid: rgba(233, 233, 233, 1);\\n --yc-color-private-white-950-solid: rgba(244, 244, 244, 1);\\n --yc-color-private-white-1000-solid: rgba(255, 255, 255, 1);\\n --yc-color-private-blue-50: rgba(98, 146, 255, 0.05);\\n --yc-color-private-blue-100: rgba(98, 146, 255, 0.1);\\n --yc-color-private-blue-150: rgba(98, 146, 255, 0.2);\\n --yc-color-private-blue-200: rgba(98, 146, 255, 0.3);\\n --yc-color-private-blue-250: rgba(98, 146, 255, 0.5);\\n --yc-color-private-blue-300: rgba(98, 146, 255, 0.5);\\n --yc-color-private-blue-350: rgba(98, 146, 255, 0.6);\\n --yc-color-private-blue-400: rgba(98, 146, 255, 0.7);\\n --yc-color-private-blue-450: rgba(98, 146, 255, 0.8);\\n --yc-color-private-blue-500: rgba(98, 146, 255, 0.9);\\n --yc-color-private-blue-550: rgba(98, 146, 255, 1);\\n --yc-color-private-blue-700: rgba(145, 179, 255, 1);\\n --yc-color-private-blue-850: rgba(192, 211, 255, 1);\\n --yc-color-private-blue-50-solid: rgba(37, 41, 49, 1);\\n --yc-color-private-blue-100-solid: rgba(40, 46, 60, 1);\\n --yc-color-private-blue-150-solid: rgba(47, 57, 81, 1);\\n --yc-color-private-blue-200-solid: rgba(53, 68, 103, 1);\\n --yc-color-private-blue-250-solid: rgba(60, 79, 125, 1);\\n --yc-color-private-blue-300-solid: rgba(66, 91, 147, 1);\\n --yc-color-private-blue-350-solid: rgba(72, 102, 168, 1);\\n --yc-color-private-blue-400-solid: rgba(79, 113, 190, 1);\\n --yc-color-private-blue-450-solid: rgba(85, 124, 212, 1);\\n --yc-color-private-blue-500-solid: rgba(92, 135, 233, 1);\\n --yc-color-private-blue-550-solid: rgba(98, 146, 255, 1);\\n --yc-color-private-blue-600-solid: rgba(114, 157, 255, 1);\\n --yc-color-private-blue-650-solid: rgba(129, 168, 255, 1);\\n --yc-color-private-blue-700-solid: rgba(145, 179, 255, 1);\\n --yc-color-private-blue-750-solid: rgba(161, 190, 255, 1);\\n --yc-color-private-blue-800-solid: rgba(177, 200, 255, 1);\\n --yc-color-private-blue-850-solid: rgba(192, 211, 255, 1);\\n --yc-color-private-blue-900-solid: rgba(208, 222, 255, 1);\\n --yc-color-private-blue-950-solid: rgba(223, 233, 255, 1);\\n --yc-color-private-blue-1000-solid: rgba(239, 244, 255, 1);\\n --yc-color-private-green-50: rgba(91, 181, 87, 0.05);\\n --yc-color-private-green-100: rgba(91, 181, 87, 0.1);\\n --yc-color-private-green-150: rgba(91, 181, 87, 0.2);\\n --yc-color-private-green-200: rgba(91, 181, 87, 0.3);\\n --yc-color-private-green-250: rgba(91, 181, 87, 0.4);\\n --yc-color-private-green-300: rgba(91, 181, 87, 0.5);\\n --yc-color-private-green-350: rgba(91, 181, 87, 0.6);\\n --yc-color-private-green-400: rgba(91, 181, 87, 0.7);\\n --yc-color-private-green-450: rgba(91, 181, 87, 0.8);\\n --yc-color-private-green-500: rgba(91, 181, 87, 0.9);\\n --yc-color-private-green-550: rgba(91, 181, 87, 1);\\n --yc-color-private-green-50-solid: rgba(37, 42, 40, 1);\\n --yc-color-private-green-100-solid: rgba(40, 50, 43, 1);\\n --yc-color-private-green-150-solid: rgba(45, 64, 48, 1);\\n --yc-color-private-green-200-solid: rgba(51, 79, 53, 1);\\n --yc-color-private-green-250-solid: rgba(57, 93, 58, 1);\\n --yc-color-private-green-300-solid: rgba(63, 108, 63, 1);\\n --yc-color-private-green-350-solid: rgba(68, 123, 67, 1);\\n --yc-color-private-green-400-solid: rgba(74, 137, 72, 1);\\n --yc-color-private-green-450-solid: rgba(80, 152, 77, 1);\\n --yc-color-private-green-500-solid: rgba(85, 166, 82, 1);\\n --yc-color-private-green-550-solid: rgba(91, 181, 87, 1);\\n --yc-color-private-green-600-solid: rgba(107, 188, 104, 1);\\n --yc-color-private-green-650-solid: rgba(124, 196, 121, 1);\\n --yc-color-private-green-700-solid: rgba(140, 203, 137, 1);\\n --yc-color-private-green-750-solid: rgba(157, 211, 154, 1);\\n --yc-color-private-green-800-solid: rgba(173, 218, 171, 1);\\n --yc-color-private-green-850-solid: rgba(189, 225, 188, 1);\\n --yc-color-private-green-900-solid: rgba(206, 233, 205, 1);\\n --yc-color-private-green-950-solid: rgba(222, 240, 221, 1);\\n --yc-color-private-green-1000-solid: rgba(239, 248, 238, 1);\\n /*————————— should be deleted and changed with -solid —————————*/\\n --yc-color-private-yellow-700: #e0bd34;\\n --yc-color-private-yellow-50: rgba(255, 203, 0, 0.05);\\n --yc-color-private-yellow-100: rgba(255, 203, 0, 0.1);\\n --yc-color-private-yellow-150: rgba(255, 203, 0, 0.2);\\n --yc-color-private-yellow-200: rgba(255, 203, 0, 0.3);\\n --yc-color-private-yellow-250: rgba(255, 203, 0, 0.4);\\n --yc-color-private-yellow-300: rgba(255, 203, 0, 0.5);\\n --yc-color-private-yellow-350: rgba(255, 203, 0, 0.6);\\n --yc-color-private-yellow-400: rgba(255, 203, 0, 0.7);\\n --yc-color-private-yellow-450: rgba(255, 203, 0, 0.8);\\n --yc-color-private-yellow-500: rgba(255, 203, 0, 0.9);\\n --yc-color-private-yellow-550: rgba(255, 203, 0, 1);\\n --yc-color-private-yellow-50-solid: rgba(45, 43, 36, 1);\\n --yc-color-private-yellow-100-solid: rgba(56, 52, 34, 1);\\n --yc-color-private-yellow-150-solid: rgba(78, 69, 30, 1);\\n --yc-color-private-yellow-200-solid: rgba(100, 85, 27, 1);\\n --yc-color-private-yellow-250-solid: rgba(122, 102, 23, 1);\\n --yc-color-private-yellow-300-solid: rgba(144, 119, 19, 1);\\n --yc-color-private-yellow-350-solid: rgba(167, 136, 15, 1);\\n --yc-color-private-yellow-400-solid: rgba(189, 153, 11, 1);\\n --yc-color-private-yellow-450-solid: rgba(211, 169, 8, 1);\\n --yc-color-private-yellow-500-solid: rgba(233, 186, 4, 1);\\n --yc-color-private-yellow-550-solid: rgba(255, 203, 0, 1);\\n --yc-color-private-yellow-600-solid: rgba(255, 208, 26, 1);\\n --yc-color-private-yellow-650-solid: rgba(255, 213, 51, 1);\\n --yc-color-private-yellow-700-solid: rgba(255, 219, 76, 1);\\n --yc-color-private-yellow-750-solid: rgba(255, 224, 102, 1);\\n --yc-color-private-yellow-800-solid: rgba(255, 229, 128, 1);\\n --yc-color-private-yellow-850-solid: rgba(255, 234, 153, 1);\\n --yc-color-private-yellow-900-solid: rgba(255, 239, 179, 1);\\n --yc-color-private-yellow-950-solid: rgba(255, 245, 204, 1);\\n --yc-color-private-yellow-1000-solid: rgba(255, 250, 229, 1);\\n --yc-color-private-red-50: rgba(232, 73, 69, 0.05);\\n --yc-color-private-red-100: rgba(232, 73, 69, 0.1);\\n --yc-color-private-red-150: rgba(232, 73, 69, 0.2);\\n --yc-color-private-red-200: rgba(232, 73, 69, 0.3);\\n --yc-color-private-red-250: rgba(232, 73, 69, 0.4);\\n --yc-color-private-red-300: rgba(232, 73, 69, 0.5);\\n --yc-color-private-red-350: rgba(232, 73, 69, 0.6);\\n --yc-color-private-red-400: rgba(232, 73, 69, 0.7);\\n --yc-color-private-red-450: rgba(232, 73, 69, 0.8);\\n --yc-color-private-red-500: rgba(232, 73, 69, 0.9);\\n --yc-color-private-red-550: rgba(232, 73, 69, 1);\\n --yc-color-private-red-50-solid: rgba(44, 37, 40, 1);\\n --yc-color-private-red-100-solid: rgba(54, 39, 41, 1);\\n --yc-color-private-red-150-solid: rgba(74, 43, 44, 1);\\n --yc-color-private-red-200-solid: rgba(93, 46, 47, 1);\\n --yc-color-private-red-250-solid: rgba(113, 50, 51, 1);\\n --yc-color-private-red-300-solid: rgba(133, 54, 54, 1);\\n --yc-color-private-red-350-solid: rgba(153, 58, 57, 1);\\n --yc-color-private-red-400-solid: rgba(172, 61, 60, 1);\\n --yc-color-private-red-450-solid: rgba(192, 65, 63, 1);\\n --yc-color-private-red-500-solid: rgba(212, 69, 66, 1);\\n --yc-color-private-red-550-solid: rgba(232, 73, 69, 1);\\n --yc-color-private-red-600-solid: rgba(234, 91, 88, 1);\\n --yc-color-private-red-650-solid: rgba(236, 109, 107, 1);\\n --yc-color-private-red-700-solid: rgba(239, 127, 125, 1);\\n --yc-color-private-red-750-solid: rgba(241, 146, 144, 1);\\n --yc-color-private-red-800-solid: rgba(243, 164, 162, 1);\\n --yc-color-private-red-850-solid: rgba(246, 182, 181, 1);\\n --yc-color-private-red-900-solid: rgba(248, 200, 199, 1);\\n --yc-color-private-red-950-solid: rgba(250, 219, 218, 1);\\n --yc-color-private-red-1000-solid: rgba(253, 237, 236, 1);\\n --yc-color-private-purple-50: rgba(223, 46, 243, 0.05);\\n --yc-color-private-purple-100: rgba(223, 46, 243, 0.1);\\n --yc-color-private-purple-150: rgba(223, 46, 243, 0.2);\\n --yc-color-private-purple-200: rgba(223, 46, 243, 0.3);\\n --yc-color-private-purple-250: rgba(223, 46, 243, 0.4);\\n --yc-color-private-purple-300: rgba(223, 46, 243, 0.5);\\n --yc-color-private-purple-350: rgba(223, 46, 243, 0.6);\\n --yc-color-private-purple-400: rgba(223, 46, 243, 0.7);\\n --yc-color-private-purple-450: rgba(223, 46, 243, 0.8);\\n --yc-color-private-purple-500: rgba(223, 46, 243, 0.9);\\n --yc-color-private-purple-550: rgba(223, 46, 243, 1);\\n --yc-color-private-purple-50-solid: rgba(43, 36, 48, 1);\\n --yc-color-private-purple-100-solid: rgba(53, 36, 59, 1);\\n --yc-color-private-purple-150-solid: rgba(72, 37, 79, 1);\\n --yc-color-private-purple-200-solid: rgba(91, 38, 100, 1);\\n --yc-color-private-purple-250-solid: rgba(110, 39, 120, 1);\\n --yc-color-private-purple-300-solid: rgba(128, 40, 141, 1);\\n --yc-color-private-purple-350-solid: rgba(147, 41, 161, 1);\\n --yc-color-private-purple-400-solid: rgba(166, 42, 182, 1);\\n --yc-color-private-purple-450-solid: rgba(185, 43, 202, 1);\\n --yc-color-private-purple-500-solid: rgba(204, 45, 223, 1);\\n --yc-color-private-purple-550-solid: rgba(223, 46, 243, 1);\\n --yc-color-private-purple-600-solid: rgba(226, 67, 245, 1);\\n --yc-color-private-purple-650-solid: rgba(229, 88, 246, 1);\\n --yc-color-private-purple-700-solid: rgba(232, 108, 247, 1);\\n --yc-color-private-purple-750-solid: rgba(236, 129, 248, 1);\\n --yc-color-private-purple-800-solid: rgba(239, 150, 249, 1);\\n --yc-color-private-purple-850-solid: rgba(242, 171, 250, 1);\\n --yc-color-private-purple-900-solid: rgba(245, 192, 252, 1);\\n --yc-color-private-purple-950-solid: rgba(249, 213, 253, 1);\\n --yc-color-private-purple-1000-solid: rgba(252, 234, 254, 1);\\n --yc-color-private-cool-grey-50: rgba(96, 128, 156, 0.05);\\n --yc-color-private-cool-grey-100: rgba(96, 128, 156, 0.1);\\n --yc-color-private-cool-grey-150: rgba(96, 128, 156, 0.2);\\n --yc-color-private-cool-grey-200: rgba(96, 128, 156, 0.3);\\n --yc-color-private-cool-grey-250: rgba(96, 128, 156, 0.4);\\n --yc-color-private-cool-grey-300: rgba(96, 128, 156, 0.5);\\n --yc-color-private-cool-grey-350: rgba(96, 128, 156, 0.6);\\n --yc-color-private-cool-grey-400: rgba(96, 128, 156, 0.7);\\n --yc-color-private-cool-grey-450: rgba(96, 128, 156, 0.8);\\n --yc-color-private-cool-grey-500: rgba(96, 128, 156, 0.9);\\n --yc-color-private-cool-grey-550: rgba(96, 128, 156, 1);\\n --yc-color-private-cool-grey-50-solid: rgba(37, 40, 44, 1);\\n --yc-color-private-cool-grey-100-solid: rgba(40, 44, 50, 1);\\n --yc-color-private-cool-grey-150-solid: rgba(46, 54, 62, 1);\\n --yc-color-private-cool-grey-200-solid: rgba(53, 63, 73, 1);\\n --yc-color-private-cool-grey-250-solid: rgba(59, 72, 85, 1);\\n --yc-color-private-cool-grey-300-solid: rgba(65, 81, 97, 1);\\n --yc-color-private-cool-grey-350-solid: rgba(71, 91, 109, 1);\\n --yc-color-private-cool-grey-400-solid: rgba(77, 100, 121, 1);\\n --yc-color-private-cool-grey-450-solid: rgba(84, 109, 132, 1);\\n --yc-color-private-cool-grey-500-solid: rgba(90, 119, 144, 1);\\n --yc-color-private-cool-grey-550-solid: rgba(96, 128, 156, 1);\\n --yc-color-private-cool-grey-600-solid: rgba(112, 141, 166, 1);\\n --yc-color-private-cool-grey-650-solid: rgba(128, 153, 176, 1);\\n --yc-color-private-cool-grey-700-solid: rgba(144, 166, 186, 1);\\n --yc-color-private-cool-grey-750-solid: rgba(160, 179, 195, 1);\\n --yc-color-private-cool-grey-800-solid: rgba(176, 191, 205, 1);\\n --yc-color-private-cool-grey-850-solid: rgba(191, 204, 215, 1);\\n --yc-color-private-cool-grey-900-solid: rgba(207, 217, 225, 1);\\n --yc-color-private-cool-grey-950-solid: rgba(223, 230, 235, 1);\\n --yc-color-private-cool-grey-1000-solid: rgba(239, 242, 245, 1);\\n --yc-color-private-orange-50: rgba(200, 99, 12, 0.05);\\n --yc-color-private-orange-100: rgba(200, 99, 12, 0.1);\\n --yc-color-private-orange-150: rgba(200, 99, 12, 0.2);\\n --yc-color-private-orange-200: rgba(200, 99, 12, 0.3);\\n --yc-color-private-orange-250: rgba(200, 99, 12, 0.4);\\n --yc-color-private-orange-300: rgba(200, 99, 12, 0.5);\\n --yc-color-private-orange-350: rgba(200, 99, 12, 0.6);\\n --yc-color-private-orange-400: rgba(200, 99, 12, 0.7);\\n --yc-color-private-orange-450: rgba(200, 99, 12, 0.8);\\n --yc-color-private-orange-500: rgba(200, 99, 12, 0.9);\\n --yc-color-private-orange-550: rgba(200, 99, 12, 1);\\n --yc-color-private-orange-50-solid: rgba(42, 38, 37, 1);\\n --yc-color-private-orange-100-solid: rgba(51, 41, 35, 1);\\n --yc-color-private-orange-150-solid: rgba(67, 48, 33, 1);\\n --yc-color-private-orange-200-solid: rgba(84, 54, 30, 1);\\n --yc-color-private-orange-250-solid: rgba(100, 61, 28, 1);\\n --yc-color-private-orange-300-solid: rgba(117, 67, 25, 1);\\n --yc-color-private-orange-350-solid: rgba(134, 73, 22, 1);\\n --yc-color-private-orange-400-solid: rgba(150, 80, 20, 1);\\n --yc-color-private-orange-450-solid: rgba(167, 86, 17, 1);\\n --yc-color-private-orange-500-solid: rgba(183, 93, 15, 1);\\n --yc-color-private-orange-550-solid: rgba(200, 99, 12, 1);\\n --yc-color-private-orange-600-solid: rgba(206, 115, 36, 1);\\n --yc-color-private-orange-650-solid: rgba(211, 130, 61, 1);\\n --yc-color-private-orange-700-solid: rgba(216, 146, 85, 1);\\n --yc-color-private-orange-750-solid: rgba(222, 161, 109, 1);\\n --yc-color-private-orange-800-solid: rgba(227, 177, 133, 1);\\n --yc-color-private-orange-850-solid: rgba(233, 193, 158, 1);\\n --yc-color-private-orange-900-solid: rgba(239, 208, 182, 1);\\n --yc-color-private-orange-950-solid: rgba(244, 224, 206, 1);\\n --yc-color-private-orange-1000-solid: rgba(250, 239, 231, 1);\\n --yc-my-color-brand-normal: var(--yc-color-private-blue-450-solid);\\n --yc-my-color-brand-normal-hover: var(--yc-color-private-blue-650-solid);\\n --yc-my-color-brand-light: var(--yc-color-private-blue-300);\\n --yc-my-color-brand-selection: var(--yc-color-private-blue-350);\\n --yc-my-color-brand-selection-hover: var(--yc-color-private-blue-600-solid);\\n --yc-my-color-brand-link: var(--yc-color-private-blue-550);\\n --yc-my-color-brand-link-hover: var(--yc-color-private-blue-750-solid);\\n --yc-my-color-brand-text: var(--yc-color-private-blue-850-solid);\\n --yc-my-color-brand-text-contrast: var(--yc-color-text-light-primary);\\n --yc-my-color-brand-link-visited: var(--yc-color-private-purple-650-solid);\\n --yc-my-color-brand-link-visited-hover: var(--yc-color-private-purple-800-solid);\\n --yc-color-text-primary: var(--yc-color-private-white-1000);\\n --yc-color-text-complementary: var(--yc-color-private-white-800);\\n --yc-color-text-secondary: var(--yc-color-private-white-600);\\n --yc-color-text-hint: var(--yc-color-private-white-400);\\n --yc-color-text-info: var(--yc-color-private-blue-600-solid);\\n --yc-color-text-positive: var(--yc-color-private-green-600-solid);\\n --yc-color-text-warning: var(--yc-color-private-yellow-600-solid);\\n --yc-color-text-danger: var(--yc-color-private-red-600-solid);\\n --yc-color-text-utility: var(--yc-color-private-purple-600-solid);\\n --yc-color-text-misc: var(--yc-color-private-cool-grey-600-solid);\\n --yc-color-text-info-heavy: var(--yc-color-private-blue-850-solid);\\n --yc-color-text-positive-heavy: var(--yc-color-private-green-850-solid);\\n --yc-color-text-warning-heavy: var(--yc-color-private-yellow-850-solid);\\n --yc-color-text-danger-heavy: var(--yc-color-private-red-850-solid);\\n --yc-color-text-utility-heavy: var(--yc-color-private-purple-850-solid);\\n --yc-color-text-misc-heavy: var(--yc-color-private-cool-grey-850-solid);\\n --yc-color-text-special: var(--yc-my-color-brand-normal);\\n --yc-color-text-link: var(--yc-my-color-brand-link);\\n --yc-color-text-link-hover: var(--yc-my-color-brand-link-hover);\\n --yc-color-text-link-visited: var(--yc-my-color-brand-link-visited);\\n --yc-color-text-link-visited-hover: var(--yc-my-color-brand-link-visited-hover);\\n --yc-color-text-yandex-red: var(--yc-color-private-red-550);\\n --yc-color-text-dark-primary: var(--yc-color-private-black-1000);\\n --yc-color-text-dark-complementary: var(--yc-color-private-black-800);\\n --yc-color-text-dark-secondary: var(--yc-color-private-black-600);\\n --yc-color-text-light-primary: var(--yc-color-private-white-1000);\\n --yc-color-text-light-complementary: var(--yc-color-private-white-800);\\n --yc-color-text-light-secondary: var(--yc-color-private-white-600);\\n --yc-color-text-light-hint: var(--yc-color-private-white-400);\\n --yc-color-text-inverted-primary: var(--yc-color-private-black-1000);\\n --yc-color-text-inverted-complementary: var(--yc-color-private-black-800);\\n --yc-color-text-inverted-secondary: var(--yc-color-private-black-600);\\n --yc-color-text-inverted-hint: var(--yc-color-private-black-400);\\n --yc-color-base-background: var(--yc-color-private-black-rock-950);\\n --yc-color-base-generic: var(--yc-color-private-white-100);\\n --yc-color-base-generic-hover: var(--yc-color-private-white-250);\\n --yc-color-base-generic-medium: var(--yc-color-private-white-250);\\n --yc-color-base-generic-medium-hover: var(--yc-color-private-white-400);\\n --yc-color-base-generic-accent: var(--yc-color-private-white-200);\\n --yc-color-base-generic-accent-disabled: var(--yc-color-private-white-150);\\n --yc-color-base-generic-ultralight: var(--yc-color-private-white-50);\\n --yc-color-base-simple-hover: var(--yc-color-private-white-250);\\n --yc-color-base-simple-hover-solid: var(--yc-color-private-white-250-solid);\\n --yc-color-base-selection: var(--yc-my-color-brand-selection);\\n --yc-color-base-selection-hover: var(--yc-my-color-brand-selection-hover);\\n --yc-color-base-special: var(--yc-my-color-brand-normal);\\n --yc-color-base-special-hover: var(--yc-my-color-brand-normal-hover);\\n --yc-color-base-action: var(--yc-color-base-special);\\n --yc-color-base-action-hover: var(--yc-color-base-special-hover);\\n --yc-color-base-info: var(--yc-color-private-blue-250);\\n --yc-color-base-info-hover: var(--yc-color-private-blue-400);\\n --yc-color-base-positive: var(--yc-color-private-green-250);\\n --yc-color-base-positive-hover: var(--yc-color-private-green-400);\\n --yc-color-base-warning: var(--yc-color-private-yellow-250);\\n --yc-color-base-warning-hover: var(--yc-color-private-yellow-400);\\n --yc-color-base-danger: var(--yc-color-private-red-250);\\n --yc-color-base-danger-hover: var(--yc-color-private-red-400);\\n --yc-color-base-misc: var(--yc-color-private-cool-grey-250);\\n --yc-color-base-misc-hover: var(--yc-color-private-cool-grey-400);\\n --yc-color-base-neutral: var(--yc-color-private-white-100);\\n --yc-color-base-neutral-hover: var(--yc-color-private-white-250);\\n --yc-color-base-positive-medium: var(--yc-color-private-green-350);\\n --yc-color-base-positive-medium-hover: var(--yc-color-private-green-400);\\n --yc-color-base-info-heavy: var(--yc-color-private-blue-450);\\n --yc-color-base-positive-heavy: var(--yc-color-private-green-450);\\n --yc-color-base-warning-heavy: var(--yc-color-private-yellow-450);\\n --yc-color-base-warning-heavy-hover: var(--yc-color-private-yellow-700);\\n --yc-color-base-danger-heavy: var(--yc-color-private-red-450);\\n --yc-color-base-danger-heavy-hover: var(--yc-color-private-red-450);\\n --yc-color-base-misc-heavy: var(--yc-color-private-cool-grey-450);\\n --yc-color-base-misc-heavy-hover: var(--yc-color-private-cool-grey-550);\\n --yc-color-base-light: var(--yc-color-private-white-850);\\n --yc-color-base-light-hover: var(--yc-color-private-white-700);\\n --yc-color-base-light-simple-hover: var(--yc-color-private-white-150);\\n --yc-color-base-light-disabled: var(--yc-color-private-white-150);\\n --yc-color-base-light-accent-disabled: var(--yc-color-private-white-300);\\n --yc-color-base-float: var(--yc-color-private-white-100-solid);\\n --yc-color-base-float-hover: var(--yc-color-private-white-200-solid);\\n --yc-color-base-float-heavy: var(--yc-color-private-white-200-solid);\\n --yc-color-base-float-accent: var(--yc-color-private-white-300-solid);\\n --yc-color-base-float-accent-hover: var(--yc-color-private-white-400-solid);\\n --yc-color-base-float-announcement: var(--yc-color-private-white-200-solid);\\n --yc-color-base-modal: var(--yc-color-private-black-rock-850);\\n --yc-color-line-generic: var(--yc-color-private-white-150);\\n --yc-color-line-generic-hover: var(--yc-color-private-white-250);\\n --yc-color-line-generic-active: var(--yc-color-private-white-600);\\n --yc-color-line-generic-accent: var(--yc-color-private-white-350);\\n --yc-color-line-generic-accent-hover: var(--yc-color-private-white-800);\\n --yc-color-line-solid: var(--yc-color-private-white-150-solid);\\n --yc-color-line-selection-hover: var(--yc-my-color-brand-light);\\n --yc-color-line-selection-active: var(--yc-my-color-brand-normal);\\n --yc-color-line-link: var(--yc-my-color-brand-normal);\\n --yc-color-line-info: var(--yc-color-private-blue-550);\\n --yc-color-line-positive: var(--yc-color-private-green-550);\\n --yc-color-line-warning: var(--yc-color-private-yellow-100);\\n --yc-color-line-danger: var(--yc-color-private-red-550);\\n --yc-color-line-misc: var(--yc-color-private-cool-grey-550);\\n --yc-color-line-hint: var(--yc-color-private-blue-550);\\n --yc-color-line-light: var(--yc-color-private-white-500);\\n --yc-color-infographics-info-light: var(--yc-color-private-blue-150);\\n --yc-color-infographics-positive-light: var(--yc-color-private-green-150);\\n --yc-color-infographics-warning-light: var(--yc-color-private-orange-150);\\n --yc-color-infographics-danger-light: var(--yc-color-private-red-150);\\n --yc-color-infographics-misc-light: var(--yc-color-private-cool-grey-150);\\n --yc-color-infographics-neutral-light: var(--yc-color-private-white-150);\\n --yc-color-infographics-info-medium: var(--yc-color-private-blue-300);\\n --yc-color-infographics-positive-medium: var(--yc-color-private-green-300);\\n --yc-color-infographics-warning-medium: var(--yc-color-private-orange-300);\\n --yc-color-infographics-danger-medium: var(--yc-color-private-red-300);\\n --yc-color-infographics-misc-medium: var(--yc-color-private-cool-grey-300);\\n --yc-color-infographics-neutral-medium: var(--yc-color-private-white-150);\\n --yc-color-infographics-info-heavy: var(--yc-color-private-blue-550);\\n --yc-color-infographics-positive-heavy: var(--yc-color-private-green-550);\\n --yc-color-infographics-warning-heavy: var(--yc-color-private-yellow-550);\\n --yc-color-infographics-danger-heavy: var(--yc-color-private-red-550);\\n --yc-color-infographics-misc-heavy: var(--yc-color-private-cool-grey-550);\\n --yc-color-infographics-neutral-heavy: var(--yc-color-private-white-300);\\n --yc-color-infographics-axis: var(--yc-color-private-white-150-solid);\\n --yc-color-infographics-tooltip-bg: var(--yc-color-private-white-opaque-150);\\n --yc-color-sfx-veil: var(--yc-color-private-black-700);\\n --yc-color-sfx-shadow: var(--yc-color-private-black-200);\\n --yc-color-sfx-shadow-heavy: var(--yc-color-private-black-400);\\n --yc-color-sfx-fade: var(--yc-color-private-white-250);\\n --yc-color-promo-base-silver: #bcc0c4;\\n --yc-color-promo-base-gold: #ffde5d;\\n --yc-color-promo-base-asphalt: #474d52;\\n --yc-color-promo-base-tomato: #ff6b6a;\\n --yc-color-promo-base-copper: #ffb95a;\\n --yc-color-promo-base-mint: #7fd68e;\\n --yc-color-promo-base-sky: #69b4ff;\\n --yc-color-promo-base-neon: #b384ff;\\n --yc-color-promo-highlight-silver: #616366;\\n --yc-color-promo-highlight-gold: #99832e;\\n --yc-color-promo-highlight-asphalt: #5d656b;\\n --yc-color-promo-highlight-tomato: #998585;\\n --yc-color-promo-highlight-copper: #7f7262;\\n --yc-color-promo-highlight-mint: #758978;\\n --yc-color-promo-highlight-sky: #94a2af;\\n --yc-color-promo-highlight-neon: #aea6ba;\\n --yc-color-scroll-track: var(--yc-color-base-background);\\n --yc-color-scroll-handle: var(--yc-color-private-white-150);\\n --yc-color-scroll-handle-hover: var(--yc-color-private-white-250);\\n --yc-color-scroll-corner: var(--yc-color-private-white-150);\\n background: var(--yc-color-base-background);\\n color: var(--yc-color-text-primary);\\n}\\n\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar) {\\n scrollbar-width: var(--yc-scrollbar-width);\\n scrollbar-color: var(--yc-color-scroll-handle) var(--yc-color-scroll-track);\\n}\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar)::-webkit-scrollbar,\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar) *::-webkit-scrollbar {\\n width: var(--yc-scrollbar-width);\\n height: var(--yc-scrollbar-width);\\n background: var(--yc-color-scroll-track);\\n}\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar)::-webkit-scrollbar-track,\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar) *::-webkit-scrollbar-track {\\n background: var(--yc-color-scroll-track);\\n}\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar)::-webkit-scrollbar-corner,\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar) *::-webkit-scrollbar-corner {\\n background: var(--yc-color-scroll-corner);\\n}\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar)::-webkit-scrollbar-thumb,\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar) *::-webkit-scrollbar-thumb {\\n background: var(--yc-color-scroll-handle);\\n}\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar)::-webkit-scrollbar-thumb:hover,\\nbody.yc-root:not(.yc-root_mobile):not(.yc-root_native-scrollbar) *::-webkit-scrollbar-thumb:hover {\\n background: var(--yc-color-scroll-handle-hover);\\n}',\"\"]);const i=o},7726:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'.yc-button{--yc-button-height: 0;--yc-button-background-color: transparent;--yc-button-background-color-hover: transparent;margin:0;padding:0;font-family:var(--yc-text-body-font-family);font-size:inherit;font-weight:400;color:inherit;background:none;border:none;outline:none;cursor:pointer;display:inline-block;position:relative;overflow:visible;box-sizing:border-box;height:var(--yc-button-height);line-height:var(--yc-button-height);-webkit-user-select:none;-moz-user-select:none;user-select:none;text-align:center;white-space:nowrap;text-decoration:none;background:rgba(0,0,0,0);touch-action:manipulation;-webkit-tap-highlight-color:rgba(0,0,0,0);transition:transform .1s ease-out,color .15s linear;transform:scale(1)}.yc-button::before{content:\"\";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background-color:var(--yc-button-background-color);transition:background-color .15s linear}.yc-button:hover::before{background-color:var(--yc-button-background-color-hover)}.yc-button:focus::before{box-shadow:0 0 0 2px var(--yc-color-line-misc)}.yc-button:focus:not(:focus-visible)::before{box-shadow:none}.yc-button::after{content:\"\";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;transform:scale(1);transition:none}.yc-button:active{transition:none;transform:scale(0.96)}.yc-button:active::after{transform:scale(1.042)}.yc-button_size_s{--yc-button-height: 24px;font-size:13px;--yc-button-border-radius: var(--yc-border-radius-s)}.yc-button_size_s .yc-button__text{margin:0 10px}.yc-button_size_s .yc-button__icon{width:var(--yc-button-height)}.yc-button_size_s .yc-button__icon_side_left~.yc-button__text{margin-left:22px}.yc-button_size_s .yc-button__icon_side_right~.yc-button__text{margin-right:22px}.yc-button_size_m{--yc-button-height: 28px;font-size:13px;--yc-button-border-radius: var(--yc-border-radius-m)}.yc-button_size_m .yc-button__text{margin:0 13px}.yc-button_size_m .yc-button__icon{width:var(--yc-button-height)}.yc-button_size_m .yc-button__icon_side_left~.yc-button__text{margin-left:25px}.yc-button_size_m .yc-button__icon_side_right~.yc-button__text{margin-right:25px}.yc-button_size_l{--yc-button-height: 36px;font-size:13px;--yc-button-border-radius: var(--yc-border-radius-l)}.yc-button_size_l .yc-button__text{margin:0 18px}.yc-button_size_l .yc-button__icon{width:var(--yc-button-height)}.yc-button_size_l .yc-button__icon_side_left~.yc-button__text{margin-left:33px}.yc-button_size_l .yc-button__icon_side_right~.yc-button__text{margin-right:33px}.yc-button_size_xl{--yc-button-height: 44px;font-size:15px;--yc-button-border-radius: var(--yc-border-radius-xl)}.yc-button_size_xl .yc-button__text{margin:0 25px}.yc-button_size_xl .yc-button__icon{width:var(--yc-button-height)}.yc-button_size_xl .yc-button__icon_side_left~.yc-button__text{margin-left:40px}.yc-button_size_xl .yc-button__icon_side_right~.yc-button__text{margin-right:40px}.yc-button_view_normal{--yc-button-background-color: var(--yc-color-base-generic);--yc-button-background-color-hover: var(--yc-color-base-generic-hover)}.yc-button_view_normal,.yc-button_view_normal:link,.yc-button_view_normal:visited,.yc-button_view_normal:active,.yc-button_view_normal:focus{color:var(--yc-color-text-primary)}.yc-button_view_normal:hover{color:var(--yc-color-text-primary)}.yc-button_view_normal.yc-button_loading{--yc-button-loading-color-1: var(--yc-color-base-generic);--yc-button-loading-color-2: var(--yc-color-base-generic-hover)}.yc-button_view_normal.yc-button_selected{--yc-button-background-color: var(--yc-color-base-selection);--yc-button-background-color-hover: var(--yc-color-base-selection-hover)}.yc-button_view_normal.yc-button_selected,.yc-button_view_normal.yc-button_selected:link,.yc-button_view_normal.yc-button_selected:visited,.yc-button_view_normal.yc-button_selected:active,.yc-button_view_normal.yc-button_selected:focus{color:var(--yc-my-color-brand-text, var(--yc-color-text-special))}.yc-button_view_normal.yc-button_selected:hover{color:var(--yc-my-color-brand-text, var(--yc-color-text-special))}.yc-button_view_action{--yc-button-background-color: var(--yc-color-base-special);--yc-button-background-color-hover: var(--yc-color-base-special-hover)}.yc-button_view_action,.yc-button_view_action:link,.yc-button_view_action:visited,.yc-button_view_action:active,.yc-button_view_action:focus{color:var(--yc-my-color-brand-text-contrast)}.yc-button_view_action:hover{color:var(--yc-my-color-brand-text-contrast)}.yc-button_view_action.yc-button_loading{--yc-button-loading-color-1: var(--yc-color-base-special);--yc-button-loading-color-2: var(--yc-color-base-special-hover)}.yc-button_view_outlined,.yc-button_view_outlined-info,.yc-button_view_outlined-danger{--yc-button-background-color: transparent;--yc-button-background-color-hover: var(--yc-color-base-simple-hover)}.yc-button_view_outlined.yc-button_loading,.yc-button_view_outlined-info.yc-button_loading,.yc-button_view_outlined-danger.yc-button_loading{--yc-button-loading-color-1: transparent;--yc-button-loading-color-2: var(--yc-color-base-simple-hover)}.yc-button_view_outlined,.yc-button_view_outlined:link,.yc-button_view_outlined:visited,.yc-button_view_outlined:active,.yc-button_view_outlined:focus{color:var(--yc-color-text-primary)}.yc-button_view_outlined:hover{color:var(--yc-color-text-primary)}.yc-button_view_outlined::before{border:1px solid var(--yc-color-line-generic)}.yc-button_view_outlined-info,.yc-button_view_outlined-info:link,.yc-button_view_outlined-info:visited,.yc-button_view_outlined-info:active,.yc-button_view_outlined-info:focus{color:var(--yc-color-text-info)}.yc-button_view_outlined-info:hover{color:var(--yc-color-text-info)}.yc-button_view_outlined-info::before{border:1px solid var(--yc-color-line-info)}.yc-button_view_outlined-danger,.yc-button_view_outlined-danger:link,.yc-button_view_outlined-danger:visited,.yc-button_view_outlined-danger:active,.yc-button_view_outlined-danger:focus{color:var(--yc-color-text-danger)}.yc-button_view_outlined-danger:hover{color:var(--yc-color-text-danger)}.yc-button_view_outlined-danger::before{border:1px solid var(--yc-color-line-danger)}.yc-button_view_raised{--yc-button-background-color: var(--yc-color-base-float);--yc-button-background-color-hover: var(--yc-color-base-float-hover)}.yc-button_view_raised,.yc-button_view_raised:link,.yc-button_view_raised:visited,.yc-button_view_raised:active,.yc-button_view_raised:focus{color:var(--yc-color-text-primary)}.yc-button_view_raised:hover{color:var(--yc-color-text-primary)}.yc-button_view_raised::before{box-shadow:0 3px 5px var(--yc-color-sfx-shadow)}.yc-button_view_raised:focus:not(:focus-visible)::before{box-shadow:0 3px 5px var(--yc-color-sfx-shadow)}.yc-button_view_raised:active::before{box-shadow:0 1px 2px var(--yc-color-sfx-shadow)}.yc-button_view_raised:active:focus::before{box-shadow:0 0 0 2px var(--yc-color-line-misc)}.yc-button_view_raised:active:focus:not(:focus-visible)::before{box-shadow:0 1px 2px var(--yc-color-sfx-shadow)}.yc-button_view_raised.yc-button_loading{--yc-button-loading-color-1: var(--yc-color-base-float);--yc-button-loading-color-2: var(--yc-color-base-float-hover)}.yc-button_view_flat,.yc-button_view_flat-info,.yc-button_view_flat-danger,.yc-button_view_flat-secondary{--yc-button-background-color: transparent;--yc-button-background-color-hover: var(--yc-color-base-simple-hover)}.yc-button_view_flat.yc-button_loading,.yc-button_view_flat-info.yc-button_loading,.yc-button_view_flat-danger.yc-button_loading,.yc-button_view_flat-secondary.yc-button_loading{--yc-button-loading-color-1: transparent;--yc-button-loading-color-2: var(--yc-color-base-simple-hover)}.yc-button_view_flat,.yc-button_view_flat:link,.yc-button_view_flat:visited,.yc-button_view_flat:active,.yc-button_view_flat:focus{color:var(--yc-color-text-primary)}.yc-button_view_flat:hover{color:var(--yc-color-text-primary)}.yc-button_view_flat-info,.yc-button_view_flat-info:link,.yc-button_view_flat-info:visited,.yc-button_view_flat-info:active,.yc-button_view_flat-info:focus{color:var(--yc-color-text-info)}.yc-button_view_flat-info:hover{color:var(--yc-color-text-info)}.yc-button_view_flat-danger,.yc-button_view_flat-danger:link,.yc-button_view_flat-danger:visited,.yc-button_view_flat-danger:active,.yc-button_view_flat-danger:focus{color:var(--yc-color-text-danger)}.yc-button_view_flat-danger:hover{color:var(--yc-color-text-danger)}.yc-button_view_flat-secondary,.yc-button_view_flat-secondary:link,.yc-button_view_flat-secondary:visited,.yc-button_view_flat-secondary:active,.yc-button_view_flat-secondary:focus{color:var(--yc-color-text-secondary)}.yc-button_view_flat-secondary:hover{color:var(--yc-color-text-primary)}.yc-button_view_normal-contrast{--yc-button-background-color: var(--yc-color-base-light);--yc-button-background-color-hover: var(--yc-color-base-light-hover)}.yc-button_view_normal-contrast,.yc-button_view_normal-contrast:link,.yc-button_view_normal-contrast:visited,.yc-button_view_normal-contrast:active,.yc-button_view_normal-contrast:focus{color:var(--yc-color-text-dark-primary)}.yc-button_view_normal-contrast:hover{color:var(--yc-color-text-dark-primary)}.yc-button_view_normal-contrast.yc-button_loading{--yc-button-loading-color-1: var(--yc-color-base-light);--yc-button-loading-color-2: var(--yc-color-base-light-hover)}.yc-button_view_outlined-contrast{--yc-button-background-color: transparent;--yc-button-background-color-hover: var(--yc-color-base-light-simple-hover)}.yc-button_view_outlined-contrast,.yc-button_view_outlined-contrast:link,.yc-button_view_outlined-contrast:visited,.yc-button_view_outlined-contrast:active,.yc-button_view_outlined-contrast:focus{color:var(--yc-color-text-light-primary)}.yc-button_view_outlined-contrast:hover{color:var(--yc-color-text-light-primary)}.yc-button_view_outlined-contrast::before{border:1px solid var(--yc-color-line-light)}.yc-button_view_outlined-contrast.yc-button_loading{--yc-button-loading-color-1: transparent;--yc-button-loading-color-2: var(--yc-color-base-light-simple-hover)}.yc-button_view_flat-contrast{--yc-button-background-color: transparent;--yc-button-background-color-hover: var(--yc-color-base-light-simple-hover)}.yc-button_view_flat-contrast,.yc-button_view_flat-contrast:link,.yc-button_view_flat-contrast:visited,.yc-button_view_flat-contrast:active,.yc-button_view_flat-contrast:focus{color:var(--yc-color-text-light-primary)}.yc-button_view_flat-contrast:hover{color:var(--yc-color-text-light-primary)}.yc-button_view_flat-contrast.yc-button_loading{--yc-button-loading-color-1: transparent;--yc-button-loading-color-2: var(--yc-color-base-light-simple-hover)}.yc-button_view_flat.yc-button_disabled:not(.yc-button_loading),.yc-button_view_flat.yc-button_disabled:not(.yc-button_loading),.yc-button_view_flat-info.yc-button_disabled:not(.yc-button_loading),.yc-button_view_flat-info.yc-button_disabled:not(.yc-button_loading),.yc-button_view_flat-danger.yc-button_disabled:not(.yc-button_loading),.yc-button_view_flat-danger.yc-button_disabled:not(.yc-button_loading){--yc-button-background-color: transparent;--yc-button-background-color-hover: transparent;color:var(--yc-color-text-hint)}.yc-button_view_flat-contrast.yc-button_disabled:not(.yc-button_loading),.yc-button_view_flat-contrast.yc-button_disabled:not(.yc-button_loading){--yc-button-background-color: transparent;--yc-button-background-color-hover: transparent;color:var(--yc-color-text-light-hint)}.yc-button_view_normal-contrast.yc-button_disabled:not(.yc-button_loading),.yc-button_view_normal-contrast.yc-button_disabled:not(.yc-button_loading),.yc-button_view_outlined-contrast.yc-button_disabled:not(.yc-button_loading),.yc-button_view_outlined-contrast.yc-button_disabled:not(.yc-button_loading){--yc-button-background-color: var(--yc-color-base-light-disabled);--yc-button-background-color-hover: var(--yc-color-base-light-disabled);color:var(--yc-color-text-light-secondary)}.yc-button.yc-button_pin_round-round::before{border-radius:var(--yc-button-border-radius)}.yc-button.yc-button_pin_brick-brick::before{border-radius:0}.yc-button.yc-button_pin_clear-clear::before{border-radius:0;border-left:0;border-right:0}.yc-button.yc-button_pin_circle-circle::before{border-radius:100px}.yc-button.yc-button_pin_round-brick::before{border-radius:var(--yc-button-border-radius) 0 0 var(--yc-button-border-radius)}.yc-button.yc-button_pin_brick-round::before{border-radius:0 var(--yc-button-border-radius) var(--yc-button-border-radius) 0}.yc-button.yc-button_pin_round-clear::before{border-radius:var(--yc-button-border-radius) 0 0 var(--yc-button-border-radius);border-right:0}.yc-button.yc-button_pin_clear-round::before{border-radius:0 var(--yc-button-border-radius) var(--yc-button-border-radius) 0;border-left:0}.yc-button.yc-button_pin_brick-clear::before{border-radius:0;border-right:0}.yc-button.yc-button_pin_clear-brick::before{border-radius:0;border-left:0}.yc-button.yc-button_pin_circle-brick::before{border-radius:100px 0 0 100px}.yc-button.yc-button_pin_brick-circle::before{border-radius:0 100px 100px 0}.yc-button.yc-button_pin_circle-clear::before{border-radius:100px 0 0 100px;border-right:0}.yc-button.yc-button_pin_clear-circle::before{border-radius:0 100px 100px 0;border-left:0}.yc-button.yc-button_pin_round-round::after{border-radius:var(--yc-button-border-radius)}.yc-button.yc-button_pin_brick-brick::after{border-radius:0}.yc-button.yc-button_pin_clear-clear::after{border-radius:0;border-left:0;border-right:0}.yc-button.yc-button_pin_circle-circle::after{border-radius:100px}.yc-button.yc-button_pin_round-brick::after{border-radius:var(--yc-button-border-radius) 0 0 var(--yc-button-border-radius)}.yc-button.yc-button_pin_brick-round::after{border-radius:0 var(--yc-button-border-radius) var(--yc-button-border-radius) 0}.yc-button.yc-button_pin_round-clear::after{border-radius:var(--yc-button-border-radius) 0 0 var(--yc-button-border-radius);border-right:0}.yc-button.yc-button_pin_clear-round::after{border-radius:0 var(--yc-button-border-radius) var(--yc-button-border-radius) 0;border-left:0}.yc-button.yc-button_pin_brick-clear::after{border-radius:0;border-right:0}.yc-button.yc-button_pin_clear-brick::after{border-radius:0;border-left:0}.yc-button.yc-button_pin_circle-brick::after{border-radius:100px 0 0 100px}.yc-button.yc-button_pin_brick-circle::after{border-radius:0 100px 100px 0}.yc-button.yc-button_pin_circle-clear::after{border-radius:100px 0 0 100px;border-right:0}.yc-button.yc-button_pin_clear-circle::after{border-radius:0 100px 100px 0;border-left:0}.yc-button__text{display:inline-block;white-space:nowrap}.yc-button__icon{display:inline-block;position:relative;height:100%;pointer-events:none}.yc-button__icon::after{content:\" \";visibility:hidden}.yc-button__icon-inner{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center}.yc-button__icon_side_left,.yc-button__icon_side_right{position:absolute;top:0}.yc-button__icon_side_left{left:0}.yc-button__icon_side_right{right:0}.yc-button_disabled{cursor:default;pointer-events:none}.yc-button_disabled:not(.yc-button_loading){--yc-button-background-color: var(--yc-color-base-generic-accent-disabled);--yc-button-background-color-hover: var(--yc-color-base-generic-accent-disabled);color:var(--yc-color-text-hint)}.yc-button_disabled:not(.yc-button_loading)::before,.yc-button_disabled:not(.yc-button_loading):hover::before{border:none}.yc-button_disabled:active{transform:scale(1)}.yc-button_loading::before{background-image:repeating-linear-gradient(-45deg, var(--yc-button-loading-color-1), var(--yc-button-loading-color-1) 4px, var(--yc-button-loading-color-2) 4px, var(--yc-button-loading-color-2) 8px);background-size:150%;background-clip:padding-box;animation:yc-button-loading .5s linear infinite}.yc-button_width_auto{max-width:100%}.yc-button_width_max{width:100%}.yc-button_width_auto .yc-button__text,.yc-button_width_max .yc-button__text{display:block;overflow:hidden;text-overflow:ellipsis}@keyframes yc-button-loading{from{background-position:-12px 0}to{background-position:0 0}}',\"\"]);const i=o},4329:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".yc-icon{color:inherit;line-height:0;vertical-align:top}\",\"\"]);const i=o},5457:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".yc-modal{display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000;visibility:hidden;margin:-9999px 0 0 -9999px;background-color:var(--yc-color-sfx-veil);overflow:auto;-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:rgba(0,0,0,0)}.yc-modal__table{display:table;width:100%;height:100%}.yc-modal__cell{display:table-cell;text-align:center;vertical-align:middle}.yc-modal__content{display:inline-block;margin:var(--yc-modal-margin);text-align:left;background-color:var(--yc-color-base-modal);border-radius:var(--yc-modal-border-radius)}.yc-modal,.yc-modal__content{animation-timing-function:ease-out;animation-fill-mode:forwards;outline:none}.yc-modal_open,.yc-modal_exit_active{display:block;visibility:visible;margin:0}.yc-modal_enter_active,.yc-modal_appear_active{animation-name:yc-modal-open;animation-duration:150ms}.yc-modal_enter_active .yc-modal__content,.yc-modal_appear_active .yc-modal__content{animation-name:yc-modal-content-open;animation-duration:150ms}.yc-modal_exit_active{animation-name:yc-modal;animation-duration:200ms}@keyframes yc-modal{0%{opacity:1}100%{opacity:0}}@keyframes yc-modal-open{0%{opacity:0}100%{opacity:1}}@keyframes yc-modal-content-open{0%{transform:scale(0.75)}100%{transform:scale(1)}}:root{--yc-modal-border-radius: 5px;--yc-modal-margin: 20px}\",\"\"]);const i=o},6662:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".yc-popup{--yc-popup-background-color: var(--yc-color-base-float);--yc-popup-border-color: var(--yc-color-line-solid);--yc-popup-border-width: 1px;position:relative;animation-duration:.1s;animation-timing-function:ease-out;animation-fill-mode:forwards;border-radius:4px;background-color:var(--yc-popup-background-color);box-shadow:0 0 0 var(--yc-popup-border-width) var(--yc-popup-border-color),0 8px 20px var(--yc-popup-border-width) var(--yc-color-sfx-shadow);outline:none}.yc-popup>:first-child:not(.yc-popup__arrow),.yc-popup>.yc-popup__arrow+*{border-top-left-radius:inherit;border-top-right-radius:inherit}.yc-popup>:last-child{border-bottom-left-radius:inherit;border-bottom-right-radius:inherit}.yc-popup__arrow-content{width:18px;height:18px;position:relative;overflow:hidden;display:flex}.yc-popup__arrow-circle-wrapper{background-color:rgba(0,0,0,0);overflow:hidden;width:9px;height:9px;position:relative}.yc-popup__arrow-circle{box-sizing:border-box;border-radius:50%;box-shadow:inset 0 0 0 calc(5px - var(--yc-popup-border-width)) var(--yc-popup-background-color),inset 0 0 0 5px var(--yc-popup-border-color);width:28px;height:30px;position:absolute}.yc-popup__arrow-circle_left{right:-5px;bottom:-4px}.yc-popup__arrow-circle_right{left:-5px;bottom:-4px}.yc-popup-wrapper{z-index:1000;visibility:hidden}.yc-popup-wrapper_open,.yc-popup-wrapper_exit_active{visibility:visible}.yc-popup-wrapper_exit_active[data-popper-placement*=bottom] .yc-popup{animation-name:yc-popup-bottom}.yc-popup-wrapper_exit_active[data-popper-placement*=top] .yc-popup{animation-name:yc-popup-top}.yc-popup-wrapper_exit_active[data-popper-placement*=left] .yc-popup{animation-name:yc-popup-left}.yc-popup-wrapper_exit_active[data-popper-placement*=right] .yc-popup{animation-name:yc-popup-right}.yc-popup-wrapper_enter_active[data-popper-placement*=bottom] .yc-popup,.yc-popup-wrapper_appear_active[data-popper-placement*=bottom] .yc-popup{animation-name:yc-popup-bottom-open}.yc-popup-wrapper_enter_active[data-popper-placement*=top] .yc-popup,.yc-popup-wrapper_appear_active[data-popper-placement*=top] .yc-popup{animation-name:yc-popup-top-open}.yc-popup-wrapper_enter_active[data-popper-placement*=left] .yc-popup,.yc-popup-wrapper_appear_active[data-popper-placement*=left] .yc-popup{animation-name:yc-popup-left-open}.yc-popup-wrapper_enter_active[data-popper-placement*=right] .yc-popup,.yc-popup-wrapper_appear_active[data-popper-placement*=right] .yc-popup{animation-name:yc-popup-right-open}.yc-popup-wrapper[data-popper-placement*=bottom] .yc-popup__arrow{top:-9px}.yc-popup-wrapper[data-popper-placement*=top] .yc-popup__arrow{bottom:-9px}.yc-popup-wrapper[data-popper-placement*=top] .yc-popup__arrow-content{transform:rotate(180deg)}.yc-popup-wrapper[data-popper-placement*=left] .yc-popup__arrow{right:-9px}.yc-popup-wrapper[data-popper-placement*=left] .yc-popup__arrow-content{transform:rotate(90deg)}.yc-popup-wrapper[data-popper-placement*=right] .yc-popup__arrow{left:-9px}.yc-popup-wrapper[data-popper-placement*=right] .yc-popup__arrow-content{transform:rotate(-90deg)}@keyframes yc-popup-bottom{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(10px)}}@keyframes yc-popup-bottom-open{0%{opacity:0;transform:translateY(10px)}100%{opacity:1;transform:translateY(0)}}@keyframes yc-popup-top{0%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(-10px)}}@keyframes yc-popup-top-open{0%{opacity:0;transform:translateY(-10px)}100%{opacity:1;transform:translateY(0)}}@keyframes yc-popup-left{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(-10px)}}@keyframes yc-popup-left-open{0%{opacity:0;transform:translateX(-10px)}100%{opacity:1;transform:translateX(0)}}@keyframes yc-popup-right{0%{opacity:1;transform:translateX(0)}100%{opacity:0;transform:translateX(10px)}}@keyframes yc-popup-right-open{0%{opacity:0;transform:translateX(10px)}100%{opacity:1;transform:translateX(0)}}\",\"\"]);const i=o},3967:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".yc-spin{display:inline-block;backface-visibility:hidden;animation:yc-spin 1s linear infinite}.yc-spin__inner{box-sizing:border-box;height:100%;width:50%;margin-left:50%;border:2px solid var(--yc-color-base-special);border-left:none;border-top-right-radius:25px;border-bottom-right-radius:25px}.yc-spin_size_xs{width:16px;height:16px}.yc-spin_size_s{width:24px;height:24px}.yc-spin_size_m{width:28px;height:28px}.yc-spin_size_l{width:32px;height:32px}.yc-spin_size_xl{width:36px;height:36px}@keyframes yc-spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}\",\"\"]);const i=o},1556:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'.yc-store-badge{height:40px}.yc-store-badge_platform_ios,.yc-store-badge__image_platform_ios{width:119px}.yc-store-badge_platform_ios.yc-store-badge_lang_ru,.yc-store-badge_platform_ios.yc-store-badge__image_lang_ru,.yc-store-badge__image_platform_ios.yc-store-badge_lang_ru,.yc-store-badge__image_platform_ios.yc-store-badge__image_lang_ru{content:url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE5IiBoZWlnaHQ9IjQwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHg9Ii41IiB5PSIuNSIgd2lkdGg9IjExOCIgaGVpZ2h0PSIzOSIgcng9IjUuNSIgZmlsbD0iIzAwMCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMjMuMTUgOC43MmMuMSAxLjI2LS4zIDIuNTItMS4xMSAzLjVhNC4xIDQuMSAwIDAxLTMuMjQgMS41MiA0LjYzIDQuNjMgMCAwMTEuMTQtMy4zNiA0Ljk2IDQuOTYgMCAwMTMuMjEtMS42NnptMi4yNiA5LjJhNC43OCA0Ljc4IDAgMDAyLjI3IDYuNzhjLS4zMyAxLjEtLjg0IDIuMTUtMS41MSAzLjEtLjkgMS4zMy0xLjgzIDIuNjQtMy4zMiAyLjY2LS43LjAyLTEuMTktLjE5LTEuNjgtLjRhNC40MSA0LjQxIDAgMDAtMy45Mi4wMmMtLjQ3LjItLjkzLjM5LTEuNTcuNDEtMS40Mi4wNi0yLjUtMS40Mi0zLjQzLTIuNzUtMS44NS0yLjctMy4zLTcuNjMtMS4zNi0xMC45N2E1LjMxIDUuMzEgMCAwMTQuNDctMi43M2MuOC0uMDIgMS41OC4zIDIuMjUuNTYuNTIuMjEuOTguNCAxLjM2LjQuMzMgMCAuNzgtLjE4IDEuMy0uMzkuODMtLjMzIDEuODQtLjczIDIuODYtLjYyYTUuMDcgNS4wNyAwIDAxNCAyLjE2IDQuOTUgNC45NSAwIDAwLTEuNzIgMS43N3pNMzcuNTQgMTEuMjVoLS44di44MWguODJjLjgzIDAgMS4zLjM3IDEuMy45NiAwIC41OC0uNSAxLTEuMjcgMXMtMS4zLS4zNy0xLjM1LS45NGgtLjlhMS45OCAxLjk4IDAgMDAyLjI1IDEuNzYgMiAyIDAgMDAyLjIzLTEuNzcgMS4zOSAxLjM5IDAgMDAtMS4zMy0xLjQ0di0uMDdhMS4zOSAxLjM5IDAgMDAxLjA5LTEuMzdjMC0uOTUtLjgzLTEuNi0yLTEuNmExLjg3IDEuODcgMCAwMC0yLjEyIDEuNzRoLjg4YTEuMDYgMS4wNiAwIDAxMS4yLS45M2MuNyAwIDEuMTIuMzUgMS4xMi45YTEgMSAwIDAxLTEuMTIuOTV6bTQuOTYuODNjLTEuMDcuMDctMS42Ny41My0xLjY3IDEuMzRhMS4zNiAxLjM2IDAgMDAxLjUgMS4zNSAxLjUyIDEuNTIgMCAwMDEuMzUtLjdoLjA3di42M2guODZ2LTMuMDhjMC0uOTUtLjY0LTEuNTEtMS43Ny0xLjUxLTEuMDIgMC0xLjc1LjUtMS44NCAxLjI3aC44NmMuMS0uMzIuNDUtLjUuOTQtLjUuNjEgMCAuOTIuMjcuOTIuNzR2LjM5bC0xLjIyLjA3em0xLjIyLjU4di4zOGExLjA2IDEuMDYgMCAwMS0uNzQuOTRjLS4xNC4wNC0uMjguMDYtLjQyLjA0LS40OSAwLS44NC0uMjMtLjg0LS42NCAwLS40LjI4LS42LjktLjY1bDEuMS0uMDd6bTMuMjUtMS43MnYzLjc2aC0uOXYtNC41aDIuOTd2Ljc0aC0yLjA3em01LjYgMy44M2MxLjE0IDAgMS44Ni0uOSAxLjg2LTIuMzMgMC0xLjQzLS43Mi0yLjMyLTEuODctMi4zMmExLjU2IDEuNTYgMCAwMC0xLjQxLjgyaC0uMDd2LS43NWgtLjg2djZoLjl2LTIuMTdoLjA2YTEuNDcgMS40NyAwIDAwMS4zOS43NXptLS4yNi0zLjg1Yy43NiAwIDEuMi41NyAxLjIgMS41MiAwIC45Ni0uNDQgMS41My0xLjIgMS41My0uNzUgMC0xLjIxLS41OC0xLjIxLTEuNTIgMC0uOTQuNDYtMS41MyAxLjIxLTEuNTN6bTMuMyA1LjR2LS43N2wuMy4wMWEuNzcuNzcgMCAwMC44LS42M2wuMDctLjIyLTEuNjMtNC41MmguOTdsMS4xMyAzLjU4aC4wN2wxLjEzLTMuNThoLjk0bC0xLjY4IDQuN2MtLjM4IDEuMDktLjgxIDEuNDQtMS43MyAxLjQ0LS4wNyAwLS4yOCAwLS4zNy0uMDJ6bTUuMzYtMi45aC0uODljLjA4LjkxLjg4IDEuMzYgMS44NyAxLjM2IDEuMSAwIDEuODQtLjU3IDEuODQtMS40MmExLjAxIDEuMDEgMCAwMC0uODgtMS4wMnYtLjA3YS45My45MyAwIDAwLjctLjkyYzAtLjc2LS42LTEuMjQtMS42OC0xLjI0YTEuNTggMS41OCAwIDAwLTEuNzcgMS4zMmguODZjLjA1LS4zNi40Mi0uNTcuOTEtLjU3LjU1IDAgLjgxLjI1LjgxLjU4IDAgLjM4LS4yNy41OS0uOC41OWgtLjY3di42OWguNjhjLjYyIDAgLjk1LjIuOTUuNjQgMCAuNC0uMzYuNjYtLjk1LjY2LS41MyAwLS45LS4yLS45OC0uNnptNC4xIDEuMjh2LTQuNWguODh2My4xaC4wN2wyLjA3LTMuMWguODh2NC41aC0uODh2LTMuMTJoLS4wNmwtMi4wOCAzLjEyaC0uODh6bTcuMzQtMy43NmgxLjQydi0uNzVINzAuMXYuNzVoMS40MnYzLjc2aC44OXYtMy43NnptNi4yIDIuNTRhMS44MyAxLjgzIDAgMDEtMS45NSAxLjMgMi4wNSAyLjA1IDAgMDEtMi4wOC0yLjMyIDIuMDggMi4wOCAwIDAxMi4wOC0yLjM1YzEuMjUgMCAyIC44NSAyIDIuMjd2LjNINzUuNXYuMDZhMS4xOSAxLjE5IDAgMDAxLjIgMS4yOSAxLjA4IDEuMDggMCAwMDEuMDctLjU1aC44NXptLTMuMTItMS40NWgyLjI3YTEuMDggMS4wOCAwIDAwLTEuMS0xLjE3IDEuMTUgMS4xNSAwIDAwLTEuMTcgMS4xN3ptOC45Mi0xLjg0aC0yLjAzdjQuNWgyLjA1Yy45OSAwIDEuNTgtLjUgMS41OC0xLjNhMS4wMyAxLjAzIDAgMDAtLjk2LTEuMDN2LS4wN2EuOTcuOTcgMCAwMC43Ni0uOTVjMC0uNy0uNTItMS4xNS0xLjQtMS4xNXptLTEuMTUgMS44NXYtMS4xNmguOThjLjQ3IDAgLjcuMjIuNy41OCAwIC4zOC0uMjYuNTgtLjguNThoLS44OHptMCAxLjk4VjEyLjdoLjk0Yy42IDAgLjkyLjIuOTIuNjYgMCAuNDItLjI4LjY2LS44LjY2aC0xLjA2ek03NC42OCAyOS4wOGMtMS42NCAwLTIuODMtLjgxLTIuOTctMi4wNGgtMS45Yy4xMiAyLjI0IDEuOTggMy42NiA0LjczIDMuNjYgMi45NCAwIDQuOC0xLjQ1IDQuOC0zLjc4IDAtMS44MS0xLjA2LTIuODQtMy42MS0zLjQ0bC0xLjM3LS4zM2MtMS42LS40LTIuMjUtLjkyLTIuMjUtMS44IDAtMS4xIDEuMDItMS44NSAyLjUyLTEuODVzMi41Mi43NSAyLjYzIDEuOTloMS44OGMtLjA2LTIuMTUtMS44Ni0zLjYyLTQuNDktMy42Mi0yLjY1IDAtNC41MSAxLjQ3LTQuNTEgMy42MiAwIDEuNzMgMS4wNSAyLjggMy4zMyAzLjM0bDEuNjEuNGMxLjYxLjM5IDIuMy45NiAyLjMgMS45MyAwIDEuMS0xLjEzIDEuOTItMi43IDEuOTJ6bS0zNy4xMS0xLjk0aDQuNzNsMS4xNCAzLjM2aDIuMDRsLTQuNDktMTIuNDJoLTIuMDhMMzQuNDMgMzAuNWgybDEuMTQtMy4zNnptNC4yNC0xLjU1aC0zLjc1bDEuODUtNS40NWguMDVsMS44NSA1LjQ1em05LjU3IDVjMi4yNyAwIDMuNzgtMS44IDMuNzgtNC42MiAwLTIuOC0xLjUxLTQuNjItMy44MS00LjYyYTMuMjEgMy4yMSAwIDAwLTIuODkgMS42aC0uMDN2LTEuNWgtMS44djEyLjA0aDEuODZ2LTQuNDhoLjA0YTMuMDcgMy4wNyAwIDAwMi44NSAxLjU4em0tLjUyLTcuNjZjMS40NCAwIDIuMzkgMS4yIDIuMzkgMy4wNCAwIDEuODUtLjk1IDMuMDUtMi40IDMuMDUtMS40MSAwLTIuMzctMS4yMy0yLjM3LTMuMDUgMC0xLjguOTYtMy4wNCAyLjM4LTMuMDR6bTE0LjI2IDMuMDRjMCAyLjgxLTEuNSA0LjYyLTMuNzcgNC42MmEzLjA3IDMuMDcgMCAwMS0yLjg1LTEuNThoLS4wNXY0LjQ4SDU2LjZWMjEuNDRoMS44djEuNWguMDNhMy4yMSAzLjIxIDAgMDEyLjg4LTEuNmMyLjMgMCAzLjgxIDEuODIgMy44MSA0LjYzem0tMS45IDBjMC0xLjgzLS45NS0zLjA0LTIuNC0zLjA0LTEuNDIgMC0yLjM3IDEuMjMtMi4zNyAzLjA0IDAgMS44Mi45NSAzLjA1IDIuMzcgMy4wNSAxLjQ1IDAgMi40LTEuMiAyLjQtMy4wNXptMjAuMTMtNi42N3YyLjE0aDEuNzJ2MS40N2gtMS43MnY1YzAgLjc3LjM0IDEuMTMgMS4xIDEuMTMuMiAwIC40LS4wMi42LS4wNHYxLjQ2Yy0uMzMuMDctLjY4LjEtMS4wMi4wOS0xLjg0IDAtMi41NS0uNy0yLjU1LTIuNDV2LTUuMTloLTEuMzJ2LTEuNDdoMS4zMlYxOS4zaDEuODd6bTcgMi4wM2MtMi42IDAtNC4yOCAxLjgtNC4yOCA0LjY0IDAgMi44NiAxLjY2IDQuNjQgNC4yOSA0LjY0czQuMy0xLjc4IDQuMy00LjY0YzAtMi44NS0xLjY4LTQuNjQtNC4zLTQuNjR6bTAgMS41M2MxLjUyIDAgMi40MSAxLjE2IDIuNDEgMy4xMSAwIDEuOTYtLjkgMy4xLTIuNCAzLjFzLTIuNC0xLjE0LTIuNC0zLjFjMC0xLjk1LjktMy4xIDIuNC0zLjF6bTUuODQtMS40MmgxLjc3djEuNTRIOThhMi4xNiAyLjE2IDAgMDEyLjE4LTEuNjNjLjIxIDAgLjQzLjAyLjY0LjA3djEuNzRhMi42IDIuNiAwIDAwLS44NC0uMTIgMS44NyAxLjg3IDAgMDAtMS45NCAyLjA5djUuMzdIOTYuMnYtOS4wNnptOS4zIDkuMTdjMi4wNCAwIDMuNjUtMS4xMyAzLjktMi43N2gtMS43N2EyLjA1IDIuMDUgMCAwMS0yLjEgMS4yNyAyLjM2IDIuMzYgMCAwMS0yLjQzLTIuNTZ2LS4xMmg2LjR2LS42M2MwLTIuNzUtMS41OC00LjQ3LTQuMDgtNC40Ny0yLjU1IDAtNC4yIDEuODQtNC4yIDQuNjggMCAyLjgzIDEuNjQgNC42IDQuMjggNC42em0yLjE0LTUuNDhoLTQuNTNhMi4zMiAyLjMyIDAgMDEuNjgtMS42MiAyLjMgMi4zIDAgMDExLjYzLS42NyAyLjE4IDIuMTggMCAwMTIuMjIgMi4zeiIgZmlsbD0iI2ZmZiIvPjxyZWN0IHg9Ii41IiB5PSIuNSIgd2lkdGg9IjExOCIgaGVpZ2h0PSIzOSIgcng9IjUuNSIgc3Ryb2tlPSIjNEM0QjUxIi8+PC9zdmc+\")}.yc-store-badge_platform_ios.yc-store-badge_lang_en,.yc-store-badge_platform_ios.yc-store-badge__image_lang_en,.yc-store-badge__image_platform_ios.yc-store-badge_lang_en,.yc-store-badge__image_platform_ios.yc-store-badge__image_lang_en{content:url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTE5IiBoZWlnaHQ9IjQwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0xMTMgLjVINkE1LjUgNS41IDAgMDAuNSA2djI4QTUuNSA1LjUgMCAwMDYgMzkuNWgxMDdhNS41IDUuNSAwIDAwNS41LTUuNVY2QTUuNSA1LjUgMCAwMDExMyAuNXoiIGZpbGw9IiMwMDAiLz48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjE1IDguNzJjLjEgMS4yNi0uMyAyLjUyLTEuMTEgMy41YTQuMSA0LjEgMCAwMS0zLjI0IDEuNTIgNC42MyA0LjYzIDAgMDExLjE0LTMuMzYgNC45NiA0Ljk2IDAgMDEzLjIxLTEuNjZ6bTIuMjYgOS4yYTQuNzggNC43OCAwIDAwMi4yNyA2Ljc4Yy0uMzMgMS4xLS44NCAyLjE1LTEuNTEgMy4xLS45IDEuMzMtMS44MyAyLjY0LTMuMzIgMi42Ni0uNy4wMi0xLjE5LS4xOS0xLjY4LS40LS41Mi0uMjItMS4wNi0uNDUtMS45MS0uNDUtLjkgMC0xLjQ3LjI0LTIuMDEuNDctLjQ3LjItLjkzLjM5LTEuNTcuNDEtMS40Mi4wNi0yLjUtMS40Mi0zLjQzLTIuNzUtMS44NS0yLjctMy4zLTcuNjMtMS4zNi0xMC45N2E1LjMxIDUuMzEgMCAwMTQuNDctMi43M2MuOC0uMDIgMS41OC4zIDIuMjUuNTYuNTIuMjEuOTguNCAxLjM2LjQuMzMgMCAuNzgtLjE4IDEuMy0uMzkuODMtLjMzIDEuODQtLjczIDIuODYtLjYyYTUuMDYgNS4wNiAwIDAxNCAyLjE2IDQuOTUgNC45NSAwIDAwLTEuNzIgMS43N3pNNzQuNjggMjkuMDhjLTEuNjQgMC0yLjgzLS44MS0yLjk3LTIuMDRoLTEuOWMuMTIgMi4yNCAxLjk4IDMuNjYgNC43MyAzLjY2IDIuOTQgMCA0LjgtMS40NSA0LjgtMy43OCAwLTEuODEtMS4wNi0yLjg0LTMuNjEtMy40NGwtMS4zNy0uMzNjLTEuNi0uNC0yLjI1LS45Mi0yLjI1LTEuOCAwLTEuMSAxLjAyLTEuODUgMi41Mi0xLjg1czIuNTIuNzUgMi42MyAxLjk5aDEuODhjLS4wNi0yLjE1LTEuODYtMy42Mi00LjQ5LTMuNjItMi42NSAwLTQuNTEgMS40Ny00LjUxIDMuNjIgMCAxLjczIDEuMDUgMi44IDMuMzMgMy4zNGwxLjYxLjRjMS42MS4zOSAyLjMuOTYgMi4zIDEuOTMgMCAxLjEtMS4xMyAxLjkyLTIuNyAxLjkyem0tMzcuMTEtMS45NGg0LjczbDEuMTQgMy4zNmgyLjA0bC00LjQ5LTEyLjQyaC0yLjA4TDM0LjQzIDMwLjVoMmwxLjE0LTMuMzZ6bTQuMjQtMS41NWgtMy43NWwxLjg1LTUuNDVoLjA1bDEuODUgNS40NXptOS41NyA1YzIuMjcgMCAzLjc4LTEuOCAzLjc4LTQuNjIgMC0yLjgtMS41MS00LjYyLTMuODEtNC42MmEzLjIxIDMuMjEgMCAwMC0yLjg5IDEuNmgtLjAzdi0xLjVoLTEuOHYxMi4wNGgxLjg2di00LjQ4aC4wNGEzLjA3IDMuMDcgMCAwMDIuODUgMS41OHptLS41Mi03LjY2YzEuNDQgMCAyLjM5IDEuMiAyLjM5IDMuMDQgMCAxLjg1LS45NSAzLjA1LTIuNCAzLjA1LTEuNDEgMC0yLjM3LTEuMjMtMi4zNy0zLjA1IDAtMS44Ljk2LTMuMDQgMi4zOC0zLjA0em0xNC4yNiAzLjA0YzAgMi44MS0xLjUgNC42Mi0zLjc3IDQuNjJhMy4wNyAzLjA3IDAgMDEtMi44NS0xLjU4aC0uMDV2NC40OEg1Ni42VjIxLjQ0aDEuOHYxLjVoLjAzYTMuMjEgMy4yMSAwIDAxMi44OC0xLjZjMi4zIDAgMy44MSAxLjgyIDMuODEgNC42M3ptLTEuOSAwYzAtMS44My0uOTUtMy4wNC0yLjQtMy4wNC0xLjQyIDAtMi4zNyAxLjIzLTIuMzcgMy4wNCAwIDEuODIuOTUgMy4wNSAyLjM3IDMuMDUgMS40NSAwIDIuNC0xLjIgMi40LTMuMDV6bTIwLjEzLTYuNjd2Mi4xNGgxLjcydjEuNDdoLTEuNzJ2NWMwIC43Ny4zNCAxLjEzIDEuMSAxLjEzLjIgMCAuNC0uMDIuNi0uMDR2MS40NmMtLjMzLjA3LS42OC4xLTEuMDIuMDktMS44NCAwLTIuNTUtLjctMi41NS0yLjQ1di01LjE5aC0xLjMydi0xLjQ3aDEuMzJWMTkuM2gxLjg3em03IDIuMDNjLTIuNiAwLTQuMjggMS44LTQuMjggNC42NCAwIDIuODYgMS42NiA0LjY0IDQuMjkgNC42NHM0LjMtMS43OCA0LjMtNC42NGMwLTIuODUtMS42OC00LjY0LTQuMy00LjY0em0wIDEuNTNjMS41MiAwIDIuNDEgMS4xNiAyLjQxIDMuMTEgMCAxLjk2LS45IDMuMS0yLjQgMy4xcy0yLjQtMS4xNC0yLjQtMy4xYzAtMS45NS45LTMuMSAyLjQtMy4xem01Ljg0LTEuNDJoMS43N3YxLjU0SDk4YTIuMTYgMi4xNiAwIDAxMi4xOC0xLjYzYy4yMSAwIC40My4wMi42NC4wN3YxLjc0YTIuNiAyLjYgMCAwMC0uODQtLjEyIDEuODcgMS44NyAwIDAwLTEuOTQgMi4wOXY1LjM3SDk2LjJ2LTkuMDZ6bTkuMyA5LjE3YzIuMDQgMCAzLjY1LTEuMTMgMy45LTIuNzdoLTEuNzdhMi4wNSAyLjA1IDAgMDEtMi4xIDEuMjcgMi4zNiAyLjM2IDAgMDEtMi40My0yLjU2di0uMTJoNi40di0uNjNjMC0yLjc1LTEuNTgtNC40Ny00LjA4LTQuNDctMi41NSAwLTQuMiAxLjg0LTQuMiA0LjY4IDAgMi44MyAxLjY0IDQuNiA0LjI4IDQuNnptMi4xNC01LjQ4aC00LjUzYTIuMzIgMi4zMiAwIDAxLjY4LTEuNjIgMi4zIDIuMyAwIDAxMS42My0uNjcgMi4xOCAyLjE4IDAgMDEyLjIyIDIuM3pNNTkuOTggOC40NGgtLjg5djYuMjZoLjlWOC40NHptLTIyLjE1LjNhMi42NCAyLjY0IDAgMDEyLjggMi45NmMwIDEuOS0xLjAzIDMtMi44IDNoLTIuMTZWOC43M2gyLjE2em0tMS4yMyA1LjExaDEuMTJhMS44OCAxLjg4IDAgMDAxLjk3LTIuMTQgMS44OCAxLjg4IDAgMDAtMS45Ny0yLjE0SDM2LjZ2NC4yOHptNS4wOC0xLjRhMi4xMyAyLjEzIDAgMTE0LjI1IDAgMi4xMyAyLjEzIDAgMTEtNC4yNSAwem0zLjMzIDBjMC0uOTgtLjQzLTEuNTUtMS4yLTEuNTUtLjc4IDAtMS4yMS41Ny0xLjIxIDEuNTQgMCAuOTkuNDMgMS41NSAxLjIgMS41NS43OCAwIDEuMjEtLjU3IDEuMjEtMS41NXptNS42NCAyLjI1aC45MmwxLjI0LTQuNWgtLjg5bC0uOCAzLjQzaC0uMDdsLS45My0zLjQ0aC0uODVsLS45MyAzLjQ0aC0uMDZsLS44LTMuNDRoLS45MWwxLjI0IDQuNWguOTFsLjkzLTMuM2guMDdsLjkzIDMuM3ptMy4yLTQuNWguODZ2LjcxaC4wN2ExLjM1IDEuMzUgMCAwMTEuMzQtLjggMS40NyAxLjQ3IDAgMDExLjU2IDEuNjd2Mi45MmgtLjlWMTJjMC0uNzItLjMtMS4wOC0uOTYtMS4wOGExLjAzIDEuMDMgMCAwMC0xLjA4IDEuMTR2Mi42NGgtLjg5di00LjV6bTcuMzcgMi4yNGEyLjEzIDIuMTMgMCAxMTQuMjUgMCAyLjEzIDIuMTMgMCAxMS00LjI1IDB6bTMuMzMgMGMwLS45Ny0uNDQtMS41NC0xLjItMS41NC0uNzggMC0xLjIxLjU3LTEuMjEgMS41NCAwIC45OS40MyAxLjU1IDEuMiAxLjU1czEuMjEtLjU3IDEuMjEtMS41NXptMy41My0uMzZjLTEuMDguMDctMS42OC41My0xLjY4IDEuMzRhMS4zNiAxLjM2IDAgMDAxLjUgMS4zNSAxLjUyIDEuNTIgMCAwMDEuMzUtLjdoLjA3di42M2guODZ2LTMuMDhjMC0uOTUtLjY0LTEuNTEtMS43Ny0xLjUxLTEuMDIgMC0xLjc0LjUtMS44NCAxLjI3aC44N2MuMS0uMzIuNDQtLjUuOTMtLjUuNjEgMCAuOTMuMjcuOTMuNzR2LjM5bC0xLjIyLjA3em0xLjIyLjU4di4zOGExLjA2IDEuMDYgMCAwMS0xLjE3Ljk4Yy0uNDggMC0uODQtLjIzLS44NC0uNjQgMC0uNC4yOS0uNi45LS42NWwxLjEtLjA3em0yLjA1LS4yMmMwLTEuNDIuNzMtMi4zMiAxLjg3LTIuMzJhMS40OCAxLjQ4IDAgMDExLjM4Ljc5aC4wNlY4LjQ0aC45djYuMjZoLS44NnYtLjcxaC0uMDdhMS41NiAxLjU2IDAgMDEtMS40MS43OGMtMS4xNSAwLTEuODctLjktMS44Ny0yLjMzem0uOTIgMGMwIC45Ni40NSAxLjUzIDEuMiAxLjUzczEuMjEtLjU4IDEuMjEtMS41MmMwLS45NC0uNDctMS41My0xLjIxLTEuNTMtLjc1IDAtMS4yLjU4LTEuMiAxLjUyem03LjA2LS44N2MtLjEuMjgtLjEzLjU4LS4xLjg3YTIuMTMgMi4xMyAwIDEwNC4yNSAwIDIuMTMgMi4xMyAwIDAwLTQuMTUtLjg3em0yLjAzLS42N2MuNzYgMCAxLjIuNTcgMS4yIDEuNTQgMCAuOTgtLjQ0IDEuNTUtMS4yIDEuNTUtLjc4IDAtMS4yMS0uNTYtMS4yMS0xLjU1IDAtLjk3LjQzLTEuNTQgMS4yLTEuNTR6bTMuMy0uN2guODZ2LjcxaC4wN2ExLjM1IDEuMzUgMCAwMTEuMzUtLjggMS40NyAxLjQ3IDAgMDExLjU1IDEuNjd2Mi45MmgtLjg4VjEyYzAtLjcyLS4zMi0xLjA4LS45OC0xLjA4YTEuMDMgMS4wMyAwIDAwLTEuMDcgMS4xNHYyLjY0aC0uOXYtNC41em04Ljg2LjAyVjkuMDdoLS45djEuMTVoLS43di43NGguN3YyLjU1YzAgLjg3LjQgMS4yMSAxLjM5IDEuMjEuMTYgMCAuMzItLjAxLjQ4LS4wNHYtLjc0bC0uMzQuMDJjLS40NCAwLS42My0uMi0uNjMtLjY4di0yLjMyaC45N3YtLjc0aC0uOTd6bTIuMTgtMS43OGguODl2Mi40OGguMDdhMS4zOCAxLjM4IDAgMDExLjM3LS44IDEuNDkgMS40OSAwIDAxMS41NSAxLjY3djIuOWgtLjg5di0yLjY4YzAtLjcyLS4zMy0xLjA4LS45Ni0xLjA4YTEuMDUgMS4wNSAwIDAwLTEuMTQgMS4xNHYyLjYzaC0uODlWOC40NHptOC4zMiA2LjA1Yy4zNi0uMjQuNjItLjYuNzQtMWgtLjg1YTEuMDggMS4wOCAwIDAxLTEuMDguNTQgMS4xOSAxLjE5IDAgMDEtMS4yLTEuM3YtLjA0aDMuMTl2LS4zMWMwLTEuNDItLjc2LTIuMjctMi4wMS0yLjI3YTIuMDggMi4wOCAwIDAwLTIuMDggMi4zNSAyLjAzIDIuMDMgMCAwMDEuMjIgMi4xNmMuMjcuMTIuNTYuMTcuODYuMTYuNDMuMDUuODYtLjA1IDEuMjEtLjN6bS0uMTEtMi40NmgtMi4yN2ExLjE1IDEuMTUgMCAwMTEuMTYtMS4xNyAxLjA4IDEuMDggMCAwMTEuMTEgMS4xN3oiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMTEzIC41SDZBNS41IDUuNSAwIDAwLjUgNnYyOEE1LjUgNS41IDAgMDA2IDM5LjVoMTA3YTUuNSA1LjUgMCAwMDUuNS01LjVWNkE1LjUgNS41IDAgMDAxMTMgLjV6IiBzdHJva2U9IiM0QzRCNTEiLz48L3N2Zz4=\")}.yc-store-badge_platform_android,.yc-store-badge__image_platform_android{width:135px}.yc-store-badge_platform_android.yc-store-badge_lang_ru,.yc-store-badge_platform_android.yc-store-badge__image_lang_ru,.yc-store-badge__image_platform_android.yc-store-badge_lang_ru,.yc-store-badge__image_platform_android.yc-store-badge__image_lang_ru{content:url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTM1IiBoZWlnaHQ9IjQwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHg9Ii41IiB5PSIuNSIgd2lkdGg9IjEzNCIgaGVpZ2h0PSIzOSIgcng9IjUuNSIgZmlsbD0iIzAwMCIvPjxwYXRoIGQ9Ik0xMC40NyA3LjRjLS4zLjMyLS40Ni44LS40NiAxLjQydjIyLjM2YzAgLjYzLjE3IDEuMTEuNDYgMS40MWwuMDcuMDggMTIuMzQtMTIuNTJ2LS4zTDEwLjU0IDcuMzNsLS4wNy4wN3oiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcikiLz48cGF0aCBkPSJNMjcgMjQuMzNsLTQuMTItNC4xOHYtLjNsNC4xMS00LjE4LjEuMDUgNC44NiAyLjgxYzEuNC44IDEuNCAyLjEyIDAgMi45MmwtNC44NyAyLjgxLS4wOS4wN3oiIGZpbGw9InVybCgjcGFpbnQxX2xpbmVhcikiLz48cGF0aCBkPSJNMjcuMDggMjQuMjhMMjIuODggMjAgMTAuNDcgMzIuNmMuNDYuNSAxLjIxLjU1IDIuMDcuMDZsMTQuNTQtOC4zOHoiIGZpbGw9InVybCgjcGFpbnQyX2xpbmVhcikiLz48cGF0aCBkPSJNMjcuMDggMTUuNzNMMTIuNTMgNy4zNGMtLjg2LS41LTEuNjEtLjQzLTIuMDcuMDZMMjIuODggMjBsNC4yLTQuMjd6IiBmaWxsPSJ1cmwoI3BhaW50M19saW5lYXIpIi8+PHBhdGggb3BhY2l0eT0iLjIiIGQ9Ik0yNyAyNC4xN2wtMTQuNDcgOC4zNGMtLjguNDctMS41My40NC0yIC4wMWwtLjA2LjA4LjA3LjA3Yy40Ny40MiAxLjE4LjQ1IDEuOTktLjAxbDE0LjU1LTguNC0uMDktLjA5eiIgZmlsbD0iIzAwMCIvPjxwYXRoIG9wYWNpdHk9Ii4xMiIgZD0iTTEwLjQ3IDMyLjQ1Yy0uMy0uMzEtLjQ2LS44LS40Ni0xLjQxdi4xNWMwIC42My4xNyAxLjExLjQ2IDEuNDFsLjA3LS4wNy0uMDctLjA4ek0zMS45NSAyMS4zMWwtNC45NyAyLjg3LjEuMDkgNC44Ni0yLjgxYy43LS40IDEuMDUtLjkzIDEuMDUtMS40Ni0uMDUuNDgtLjQuOTUtMS4wNCAxLjMxeiIgZmlsbD0iIzAwMCIvPjxwYXRoIG9wYWNpdHk9Ii4yNSIgZD0iTTEyLjUzIDcuNDlsMTkuNDIgMTEuMmMuNjMuMzYuOTkuODMgMS4wNSAxLjMxIDAtLjUyLS4zNS0xLjA2LTEuMDUtMS40NUwxMi41MyA3LjM1QzExLjEzIDYuNTQgMTAgNy4yIDEwIDguODJ2LjE1YzAtMS42MyAxLjE1LTIuMyAyLjUzLTEuNXoiIGZpbGw9IiNmZmYiLz48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTU3Ljc3IDYuNzRBMy4xOCAzLjE4IDAgMDA1NC41OSAxMGEzLjE2IDMuMTYgMCAwMDUuNiAyLjEybC4wNi0uMDgtLjY4LS43LS4wOC4xYTIuMiAyLjIgMCAwMS0xLjczLjgzYy0uNjIgMC0xLjE0LS4yLTEuNTYtLjYzYTIuMjIgMi4yMiAwIDAxLS42My0xLjY1YzAtLjY5LjIxLTEuMjQuNjMtMS42NS40Mi0uNDIuOTUtLjYzIDEuNTYtLjYzLjY3IDAgMS4xOC4yMyAxLjU2LjcybC4wNy4xLjctLjY4LS4wNy0uMDhhMi44MyAyLjgzIDAgMDAtMi4yNS0xLjAyem0tNi44Ny4wMmMtLjkgMC0xLjY0LjMxLTIuMjQuOTQtLjYuNjMtLjkgMS40LS45IDIuMyAwIC45LjMgMS42Ni45IDIuMy42LjYzIDEuMzUuOTQgMi4yNC45NC45IDAgMS42NS0uMzEgMi4yNS0uOTUuNi0uNjIuOS0xLjM4LjktMi4zIDAtLjg5LS4zLTEuNjUtLjktMi4yOWEzIDMgMCAwMC0yLjI1LS45NHpNNDguNzUgMTBjMC0uNjguMjEtMS4yMi42My0xLjY2LjQtLjQyLjkyLS42MyAxLjUyLS42My42MSAwIDEuMTIuMjIgMS41My42NC40Mi40My42My45Ny42MyAxLjY1IDAgLjY3LS4yMiAxLjIyLS42MyAxLjY0LS40MS40My0uOTIuNjQtMS41My42NC0uNiAwLTEuMTEtLjItMS41My0uNjRhMi4yNiAyLjI2IDAgMDEtLjYyLTEuNjR6TTQ2LjYgNi45aC00LjE3djMuMDZjLjAxIDEuMDYtLjIyIDEuNzctLjY4IDIuMmgtLjY1djIuMjJoLjk1VjEzLjFoNC4yNnYxLjI3aC45NXYtMi4yM2gtLjY2VjYuOXptLTMuMTggMy4wN1Y3Ljg1aDIuMnY0LjMxaC0yLjY4Yy4zMy0uNTguNDgtMS4zMS40OC0yLjJ6bTIxLjUyLTMuMDhoLTQuMjd2Ljk2aDEuNjV2NS4yNmguODdWMTNoLjFWNy44NWgxLjY1di0uOTZ6bTEuMzcgMGgtMS4xM2wyLjA0IDQuNTUtLjIuNDRhLjguOCAwIDAxLS4yMy4zM2MtLjA3LjA1LS4xOC4wOC0uMzUuMDhhLjcuNyAwIDAxLS4zNC0uMWwtLjEyLS4wNi0uMjYuOTMuMDkuMDRjLjIyLjEuNDQuMTQuNjMuMTQuMzMgMCAuNjItLjEuODctLjMuMjUtLjE5LjQ1LS40Ny42LS44NGwyLjMxLTUuMkg2OS4xbC0xLjM4IDMuMy0xLjQtMy4zem04Ljk5IDBoLTQuNXY2LjIyaC45OFY3Ljg1aDIuNTR2NS4yNmguOThWNi44OXptMi4xIDBoLS45N3Y2LjIyaC45N1YxMC40aDIuNzR2Mi43aC45OFY2LjloLS45OHYyLjU2SDc3LjRWNi45em03LjY0LS4xM2MtLjkgMC0xLjY0LjMxLTIuMjUuOTQtLjYuNjMtLjkgMS40LS45IDIuMyAwIC45LjMgMS42Ni45IDIuMy42LjYzIDEuMzUuOTQgMi4yNS45NC45IDAgMS42NC0uMzEgMi4yNC0uOTUuNi0uNjIuOS0xLjM4LjkxLTIuMjkgMC0uOS0uMy0xLjY2LS45LTIuM2EzIDMgMCAwMC0yLjI1LS45NHpNODMuNSA4LjM0Yy40MS0uNDIuOTMtLjYzIDEuNTMtLjYzczEuMS4yMiAxLjUzLjY1Yy40Mi40Mi42My45Ni42MyAxLjY0IDAgLjY3LS4yMiAxLjIyLS42MyAxLjY0LS40MS40My0uOTMuNjQtMS41My42NHMtMS4xMi0uMi0xLjUzLS42NGEyLjIzIDIuMjMgMCAwMS0uNjMtMS42NGMwLS42OC4xOS0xLjIuNjMtMS42NnptOS44LTEuNDVoLTIuMjR2Ni4yMmgyLjM2Yy41MSAwIC45Ni0uMTcgMS4zNS0uNTQuMzgtLjM0LjU2LS43OC41Ni0xLjNhMS41NSAxLjU1IDAgMDAtLjg5LTEuNCAxLjQ0IDEuNDQgMCAwMC42OS0xLjI0YzAtLjQ5LS4xOC0uOS0uNTUtMS4yNWExLjg2IDEuODYgMCAwMC0xLjI3LS40OXptLTEuMjcgMi41N1Y3Ljg0aDEuM2MuMjUgMCAuNDQuMDkuNTguMjUuMTYuMTcuMjMuMzYuMjMuNTYgMCAuMi0uMDcuMzktLjIyLjU2YS44LjggMCAwMS0uNjEuMjVoLTEuMjh6bTAgMi43VjEwLjRoMS4zOGMuMjggMCAuNS4xLjY2LjI3YS44LjggMCAwMS4yNi42YzAgLjIyLS4wOS40MS0uMjUuNjFhLjc3Ljc3IDAgMDEtLjYzLjI3aC0xLjQzeiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik02OC4xIDIxLjdhNC4yIDQuMiAwIDAwLTQuMyA0LjNjMCAyLjQgMS45IDQuMyA0LjMgNC4zczQuMy0xLjggNC4zLTQuMy0yLTQuMy00LjMtNC4zem0wIDYuOGMtMS4zIDAtMi40LTEuMS0yLjQtMi42czEuMS0yLjYgMi40LTIuNmMxLjMgMCAyLjQgMSAyLjQgMi42cy0xLjEgMi42LTIuNCAyLjZ6bS05LjMtNi44YTQuMiA0LjIgMCAwMC00LjMgNC4zYzAgMi40IDEuOSA0LjMgNC4zIDQuM3M0LjMtMS44IDQuMy00LjNjLS4xLTIuNS0yLTQuMy00LjMtNC4zem0wIDYuOGMtMS4zIDAtMi40LTEuMS0yLjQtMi42czEuMS0yLjYgMi40LTIuNmMxLjMgMCAyLjQgMSAyLjQgMi42cy0xLjEgMi42LTIuNCAyLjZ6TTQ3LjcgMjN2MS44SDUyYy0uMSAxLS41IDEuOC0xIDIuMy0uNi42LTEuNiAxLjMtMy4zIDEuMy0yLjcgMC00LjctMi4yLTQuNy00LjggMC0yLjYgMi4xLTQuOCA0LjctNC44IDEuNCAwIDIuNS42IDMuMyAxLjNsMS4zLTEuM2E2LjQgNi40IDAgMDAtNC41LTEuOGMtMy42IDAtNi43IDMtNi43IDYuNiAwIDMuNiAzLjEgNi42IDYuNyA2LjYgMiAwIDMuNC0uNiA0LjYtMS45IDEuMi0xLjIgMS42LTIuOSAxLjYtNC4yIDAtLjQgMC0uOC0uMS0xLjFoLTYuMnpNOTMgMjQuNGMtLjQtMS0xLjQtMi43LTMuNi0yLjdzLTQgMS43LTQgNC4zYzAgMi40IDEuOCA0LjMgNC4yIDQuMyAxLjkgMCAzLjEtMS4yIDMuNS0xLjlsLTEuNC0xYy0uNS43LTEuMSAxLjItMi4xIDEuMnMtMS42LS40LTIuMS0xLjNsNS43LTIuNC0uMi0uNXptLTUuOCAxLjRjMC0xLjYgMS4zLTIuNSAyLjItMi41LjcgMCAxLjQuNCAxLjYuOWwtMy44IDEuNnptLTQuNiA0LjFoMS45VjE3LjRoLTEuOXYxMi41em0tMy4xLTcuM2MtLjUtLjUtMS4zLTEtMi4zLTFhNC4zIDQuMyAwIDAwLTQuMSA0LjNjMCAyLjQgMS45IDQuMiA0LjEgNC4yIDEgMCAxLjgtLjUgMi4yLTFoLjF2LjZjMCAxLjYtLjkgMi41LTIuMyAyLjUtMS4xIDAtMS45LS44LTIuMS0xLjVsLTEuNi43Yy41IDEuMSAxLjcgMi41IDMuOCAyLjUgMi4yIDAgNC0xLjMgNC00LjR2LTcuNmgtMS44di43em0tMi4xIDUuOWMtMS4zIDAtMi40LTEuMS0yLjQtMi42czEuMS0yLjYgMi40LTIuNmMxLjMgMCAyLjMgMS4xIDIuMyAyLjZzLTEgMi42LTIuMyAyLjZ6bTI0LjQtMTEuMWgtNC41djEyLjVoMS45di00LjdoMi42YzIuMSAwIDQuMS0xLjUgNC4xLTMuOXMtMi4xLTMuOS00LjEtMy45em0wIDYuMWgtMi43di00LjNoMi43YzEuNCAwIDIuMiAxLjIgMi4yIDIuMSAwIDEtLjggMi4yLTIuMiAyLjJ6bTExLjUtMS44Yy0xLjQgMC0yLjguNi0zLjMgMS45bDEuNy43Yy40LS43IDEtLjkgMS43LS45IDEgMCAxLjkuNiAyIDEuNnYuMWMtLjMtLjItMS4xLS41LTEuOS0uNS0xLjggMC0zLjYgMS0zLjYgMi44IDAgMS43IDEuNSAyLjggMy4xIDIuOCAxLjMgMCAxLjktLjYgMi40LTEuMmguMXYxaDEuOHYtNC44Yy0uMi0yLjMtMS44LTMuNS00LTMuNXptLS4yIDYuOGMtLjYgMC0xLjUtLjMtMS41LTEuMSAwLTEgMS4xLTEuMyAyLTEuMy44IDAgMS4yLjIgMS43LjQtLjEgMS4yLTEuMSAyLTIuMiAyem0xMC42LTYuNmwtMi4xIDUuNGgtLjFsLTIuMi01LjRoLTJsMy4zIDcuNi0xLjkgNC4yaDEuOWw1LjEtMTEuOGgtMnptLTE2LjggOGgxLjlWMTcuNGgtMS45djEyLjV6IiBmaWxsPSIjZmZmIi8+PHJlY3QgeD0iLjUiIHk9Ii41IiB3aWR0aD0iMTM0IiBoZWlnaHQ9IjM5IiByeD0iNS41IiBzdHJva2U9IiM0QzRCNTEiLz48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXIiIHgxPSIyMS43OCIgeTE9IjguNTgiIHgyPSI0LjgyIiB5Mj0iMjUuMyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiMwMEEwRkYiLz48c3RvcCBvZmZzZXQ9Ii4wMSIgc3RvcC1jb2xvcj0iIzAwQTFGRiIvPjxzdG9wIG9mZnNldD0iLjI2IiBzdG9wLWNvbG9yPSIjMDBCRUZGIi8+PHN0b3Agb2Zmc2V0PSIuNTEiIHN0b3AtY29sb3I9IiMwMEQyRkYiLz48c3RvcCBvZmZzZXQ9Ii43NiIgc3RvcC1jb2xvcj0iIzAwREZGRiIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwRTNGRiIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJwYWludDFfbGluZWFyIiB4MT0iMzMuNzciIHkxPSIyMCIgeDI9IjkuNjciIHkyPSIyMCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiNGRkUwMDAiLz48c3RvcCBvZmZzZXQ9Ii40MSIgc3RvcC1jb2xvcj0iI0ZGQkQwMCIvPjxzdG9wIG9mZnNldD0iLjc4IiBzdG9wLWNvbG9yPSJvcmFuZ2UiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGRjlDMDAiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQyX2xpbmVhciIgeDE9IjI0LjgiIHkxPSIyMi4zMiIgeDI9IjEuOCIgeTI9IjQ0Ljk5IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGM0E0NCIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0MzMTE2MiIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJwYWludDNfbGluZWFyIiB4MT0iNy4zNCIgeTE9Ii0uMDQiIHgyPSIxNy42MSIgeTI9IjEwLjA4IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iIzMyQTA3MSIvPjxzdG9wIG9mZnNldD0iLjA3IiBzdG9wLWNvbG9yPSIjMkRBNzcxIi8+PHN0b3Agb2Zmc2V0PSIuNDgiIHN0b3AtY29sb3I9IiMxNUNGNzQiLz48c3RvcCBvZmZzZXQ9Ii44IiBzdG9wLWNvbG9yPSIjMDZFNzc1Ii8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDBGMDc2Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PC9zdmc+\")}.yc-store-badge_platform_android.yc-store-badge_lang_en,.yc-store-badge_platform_android.yc-store-badge__image_lang_en,.yc-store-badge__image_platform_android.yc-store-badge_lang_en,.yc-store-badge__image_platform_android.yc-store-badge__image_lang_en{content:url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTM1IiBoZWlnaHQ9IjQwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik0xMjkgLjVINkMzIC41LjUgMyAuNSA2djI4YzAgMyAyLjUgNS41IDUuNSA1LjVoMTIzYzMgMCA1LjUtMi41IDUuNS01LjVWNmMwLTMtMi41LTUuNS01LjUtNS41eiIgZmlsbD0iIzAwMCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNDcuNCA5LjZoLTMuMXYuOWgyLjJjLS4xLjUtLjIuOC0uNSAxLjFhMi41IDIuNSAwIDAxLTMuMiAwYy0uNC0uNC0uNy0xLS43LTEuN3MuMy0xLjIuOC0xLjZjLjQtLjQgMS0uNiAxLjYtLjYuNyAwIDEuMi4yIDEuNi43bC4xLjEuNS0uOGMtLjItLjMtLjYtLjUtMS0uNy0uNC0uMi0uOC0uMy0xLjMtLjMtLjkgMC0xLjYuMy0yLjMuOS0uNi42LS45IDEuNC0uOSAyLjMgMCAuOS4zIDEuNy45IDIuMy42LjYgMS40LjkgMi4zLjkuOSAwIDEuNy0uMyAyLjMtLjkuNS0uNS44LTEuMi44LTJsLS4xLS42em0xIDMuNGgzLjd2LS45aC0yLjd2LTEuN2gyLjR2LS45aC0yLjRWNy44aDIuN3YtMWgtMy43VjEzem02LTUuMmgtMS43di0xSDU3djFoLTEuN1YxM2gtLjlWNy44em02LjQtMWgtMVYxM2gxVjYuOHptMi40IDFoLTEuN3YtMWg0LjR2MWgtMS43VjEzaC0xVjcuOHptOC4yLTEuMWMtLjkgMC0xLjcuMy0yLjMuOS0uNi42LS45IDEuNC0uOSAyLjMgMCAuOS4zIDEuNy45IDIuMy42LjYgMS40LjkgMi4zLjkuOSAwIDEuNy0uMyAyLjMtLjkuNi0uNi45LTEuNC45LTIuMyAwLS45LS4zLTEuNy0uOS0yLjMtLjctLjYtMS40LS45LTIuMy0uOXptMCA1LjVjLS42IDAtMS4xLS4yLTEuNi0uNi0uNC0uNC0uNi0xLS42LTEuN3MuMi0xLjIuNi0xLjdjLjQtLjQuOS0uNiAxLjYtLjYuNiAwIDEuMS4yIDEuNi42LjQuNC42IDEgLjYgMS43cy0uMiAxLjItLjYgMS43Yy0uNS40LTEgLjYtMS42LjZ6bTcuOS0xLjhWNi44aDFWMTNoLTFsLTIuOS00LjZWMTNoLTFWNi44aDEuMWwyLjggNC41di0uOXoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNNjguMSAyMS43YTQuMiA0LjIgMCAwMC00LjMgNC4zYzAgMi40IDEuOSA0LjMgNC4zIDQuM3M0LjMtMS44IDQuMy00LjMtMi00LjMtNC4zLTQuM3ptMCA2LjhjLTEuMyAwLTIuNC0xLjEtMi40LTIuNnMxLjEtMi42IDIuNC0yLjZjMS4zIDAgMi40IDEgMi40IDIuNnMtMS4xIDIuNi0yLjQgMi42em0tOS4zLTYuOGE0LjIgNC4yIDAgMDAtNC4zIDQuM2MwIDIuNCAxLjkgNC4zIDQuMyA0LjNzNC4zLTEuOCA0LjMtNC4zYy0uMS0yLjUtMi00LjMtNC4zLTQuM3ptMCA2LjhjLTEuMyAwLTIuNC0xLjEtMi40LTIuNnMxLjEtMi42IDIuNC0yLjZjMS4zIDAgMi40IDEgMi40IDIuNnMtMS4xIDIuNi0yLjQgMi42ek00Ny43IDIzdjEuOEg1MmMtLjEgMS0uNSAxLjgtMSAyLjMtLjYuNi0xLjYgMS4zLTMuMyAxLjNhNC43IDQuNyAwIDAxLTQuNy00LjhjMC0yLjYgMi4xLTQuOCA0LjctNC44YTUgNSAwIDAxMy4zIDEuM2wxLjMtMS4zYTYuNCA2LjQgMCAwMC00LjUtMS44Yy0zLjYgMC02LjcgMy02LjcgNi42IDAgMy42IDMuMSA2LjYgNi43IDYuNmE2IDYgMCAwMDYuMi02LjFsLS4xLTEuMWgtNi4yek05MyAyNC40Yy0uNC0xLTEuNC0yLjctMy42LTIuN3MtNCAxLjctNCA0LjNjMCAyLjQgMS44IDQuMyA0LjIgNC4zIDEuOSAwIDMuMS0xLjIgMy41LTEuOWwtMS40LTFjLS41LjctMS4xIDEuMi0yLjEgMS4ycy0xLjYtLjQtMi4xLTEuM2w1LjctMi40LS4yLS41em0tNS44IDEuNGMwLTEuNiAxLjMtMi41IDIuMi0yLjUuNyAwIDEuNC40IDEuNi45bC0zLjggMS42em0tNC42IDQuMWgxLjlWMTcuNGgtMS45djEyLjV6bS0zLjEtNy4zYy0uNS0uNS0xLjMtMS0yLjMtMWE0LjMgNC4zIDAgMDAtNC4xIDQuM2MwIDIuNCAxLjkgNC4yIDQuMSA0LjIgMSAwIDEuOC0uNSAyLjItMWguMXYuNmMwIDEuNi0uOSAyLjUtMi4zIDIuNS0xLjEgMC0xLjktLjgtMi4xLTEuNWwtMS42LjdhNC4xIDQuMSAwIDAwMy44IDIuNWMyLjIgMCA0LTEuMyA0LTQuNHYtNy42aC0xLjh2Ljd6bS0yLjEgNS45Yy0xLjMgMC0yLjQtMS4xLTIuNC0yLjZzMS4xLTIuNiAyLjQtMi42YzEuMyAwIDIuMyAxLjEgMi4zIDIuNnMtMSAyLjYtMi4zIDIuNnptMjQuNC0xMS4xaC00LjV2MTIuNWgxLjl2LTQuN2gyLjZjMi4xIDAgNC4xLTEuNSA0LjEtMy45cy0yLjEtMy45LTQuMS0zLjl6bTAgNi4xaC0yLjd2LTQuM2gyLjdjMS40IDAgMi4yIDEuMiAyLjIgMi4xIDAgMS0uOCAyLjItMi4yIDIuMnptMTEuNS0xLjhjLTEuNCAwLTIuOC42LTMuMyAxLjlsMS43LjdjLjQtLjcgMS0uOSAxLjctLjkgMSAwIDEuOS42IDIgMS42di4xYTQgNCAwIDAwLTEuOS0uNWMtMS44IDAtMy42IDEtMy42IDIuOCAwIDEuNyAxLjUgMi44IDMuMSAyLjggMS4zIDAgMS45LS42IDIuNC0xLjJoLjF2MWgxLjh2LTQuOGMtLjItMi4zLTEuOC0zLjUtNC0zLjV6bS0uMiA2LjhjLS42IDAtMS41LS4zLTEuNS0xLjEgMC0xIDEuMS0xLjMgMi0xLjMuOCAwIDEuMi4yIDEuNy40LS4xIDEuMi0xLjEgMi0yLjIgMnptMTAuNi02LjZsLTIuMSA1LjRoLS4xbC0yLjItNS40aC0ybDMuMyA3LjYtMS45IDQuMmgxLjlsNS4xLTExLjhoLTJ6bS0xNi44IDhoMS45VjE3LjRoLTEuOXYxMi41eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xMC41IDcuNGEyIDIgMCAwMC0uNSAxLjR2MjIuNGMwIC42LjIgMSAuNSAxLjRMMjMgMjAuM3YtLjRMMTAuNSA3LjN2LjF6IiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+PHBhdGggZD0iTTI3IDI0LjNsLTQuMS00LjF2LS40bDQtNC4xaC4ybDQuOSAyLjhjMS4zLjggMS4zIDIuMSAwIDNsLTUgMi44eiIgZmlsbD0idXJsKCNwYWludDFfbGluZWFyKSIvPjxwYXRoIGQ9Ik0yNyAyNC4zTDIzIDIwIDEwLjUgMzIuNmMuNC41IDEuMi42IDIgMGwxNC42LTguM3oiIGZpbGw9InVybCgjcGFpbnQyX2xpbmVhcikiLz48cGF0aCBkPSJNMjcgMTUuN0wxMi42IDcuM2MtLjgtLjUtMS42LS40LTIgLjFMMjIuOSAyMGw0LjItNC4zeiIgZmlsbD0idXJsKCNwYWludDNfbGluZWFyKSIvPjxwYXRoIG9wYWNpdHk9Ii4yIiBkPSJNMjcgMjQuMmwtMTQuNSA4LjNjLS44LjUtMS41LjQtMiAwdi4xYy41LjUgMS4yLjUgMiAwbDE0LjYtOC4zLS4xLS4xeiIgZmlsbD0iIzAwMCIvPjxwYXRoIG9wYWNpdHk9Ii4xIiBkPSJNMTAuNSAzMi41QTIgMiAwIDAxMTAgMzF2LjJjMCAuNi4yIDEuMS41IDEuNHYtLjF6TTMyIDIxLjNsLTUgMi45IDUtMi43Yy42LS40IDEtMSAxLTEuNSAwIC41LS40IDEtMSAxLjN6IiBmaWxsPSIjMDAwIi8+PHBhdGggb3BhY2l0eT0iLjMiIGQ9Ik0xMi41IDcuNUwzMiAxOC43Yy42LjQgMSAuOCAxIDEuMyAwLS41LS4zLTEtMS0xLjVMMTIuNSA3LjNjLTEuNC0uOC0yLjUgMC0yLjUgMS41VjljMC0xLjYgMS4xLTIuMyAyLjUtMS41eiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0xMjkgLjVINkMzIC41LjUgMyAuNSA2djI4YzAgMyAyLjUgNS41IDUuNSA1LjVoMTIzYzMgMCA1LjUtMi41IDUuNS01LjVWNmMwLTMtMi41LTUuNS01LjUtNS41eiIgc3Ryb2tlPSIjNEM0QjUxIi8+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJwYWludDBfbGluZWFyIiB4MT0iMjEuOCIgeTE9IjguNiIgeDI9IjQuOCIgeTI9IjI1LjMiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBzdG9wLWNvbG9yPSIjMDBBMEZGIi8+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjMDBBMUZGIi8+PHN0b3Agb2Zmc2V0PSIuMyIgc3RvcC1jb2xvcj0iIzAwQkVGRiIvPjxzdG9wIG9mZnNldD0iLjUiIHN0b3AtY29sb3I9IiMwMEQyRkYiLz48c3RvcCBvZmZzZXQ9Ii44IiBzdG9wLWNvbG9yPSIjMDBERkZGIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjMDBFM0ZGIi8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MV9saW5lYXIiIHgxPSIzMy44IiB5MT0iMjAiIHgyPSI5LjciIHkyPSIyMCIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiNGRkUwMDAiLz48c3RvcCBvZmZzZXQ9Ii40IiBzdG9wLWNvbG9yPSIjRkZCRDAwIi8+PHN0b3Agb2Zmc2V0PSIuOCIgc3RvcC1jb2xvcj0ib3JhbmdlIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRkY5QzAwIi8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9InBhaW50Ml9saW5lYXIiIHgxPSIyNC44IiB5MT0iMjIuMyIgeDI9IjEuOCIgeTI9IjQ1IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iI0ZGM0E0NCIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0MzMTE2MiIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJwYWludDNfbGluZWFyIiB4MT0iNy4zIiB5MT0iMCIgeDI9IjE3LjYiIHkyPSIxMC4xIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iIzMyQTA3MSIvPjxzdG9wIG9mZnNldD0iLjEiIHN0b3AtY29sb3I9IiMyREE3NzEiLz48c3RvcCBvZmZzZXQ9Ii41IiBzdG9wLWNvbG9yPSIjMTVDRjc0Ii8+PHN0b3Agb2Zmc2V0PSIuOCIgc3RvcC1jb2xvcj0iIzA2RTc3NSIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzAwRjA3NiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjwvc3ZnPg==\")}',\"\"]);const i=o},4683:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\"@media(min-width: 769px){.pc-banner-block.pc-AnimateBlock,.pc-AnimateBlock .pc-banner-block{position:relative;top:100px;opacity:0}.pc-banner-block.pc-AnimateBlock.animate,.pc-AnimateBlock .pc-banner-block.animate{top:0;opacity:1;transition:top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);transition-delay:0s}}\",\"\"]);const i=o},1029:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-card-layout-block__item{margin-top:24px}@media(min-width: 769px){.pc-card-layout-block.pc-AnimateBlock .pc-card-layout-block__item,.pc-AnimateBlock .pc-card-layout-block .pc-card-layout-block__item{position:relative;top:100px;opacity:0}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item,.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item{top:0;opacity:1;transition:top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(0),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(0){transition-delay:0s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(1),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(1){transition-delay:.1s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(2),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(2){transition-delay:.2s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(3),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(3){transition-delay:.3s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(4),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(4){transition-delay:.4s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(5),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(5){transition-delay:.5s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(6),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(6){transition-delay:.6s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(7),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(7){transition-delay:.7s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(8),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(8){transition-delay:.8s}.pc-card-layout-block.pc-AnimateBlock.animate .pc-card-layout-block__item:nth-child(9),.pc-AnimateBlock .pc-card-layout-block.animate .pc-card-layout-block__item:nth-child(9){transition-delay:.9s}}\",\"\"]);const i=o},4879:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-companies-block__title{margin:0}.pc-companies-block{text-align:center}.pc-companies-block__title{font-size:var(--yc-text-display-2-font-size);line-height:var(--yc-text-display-2-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight)}@media(max-width: 576px){.pc-companies-block__title{font-size:var(--yc-text-display-1-font-size);line-height:var(--yc-text-display-1-line-height)}}.pc-companies-block__images{margin-top:32px}.pc-companies-block__image{max-width:100%}@media(min-width: 769px){.pc-companies-block.pc-AnimateBlock .pc-companies-block__images,.pc-AnimateBlock .pc-companies-block .pc-companies-block__images{opacity:0}.pc-companies-block.pc-AnimateBlock.animate .pc-companies-block__images,.pc-AnimateBlock .pc-companies-block.animate .pc-companies-block__images{opacity:1;transition:opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);transition-delay:0s}}\",\"\"]);const i=o},8223:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-content-layout-block__files_size_l,.pc-content-layout-block__files_size_s{margin:0}.pc-content-layout-block{position:relative}.pc-content-layout-block__content,.pc-content-layout-block__files{z-index:10;position:relative}.pc-content-layout-block__files{margin-top:24px}.pc-content-layout-block__files_size_s{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-content-layout-block__files_size_l{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height)}.pc-content-layout-block__files_centered{margin-left:auto;margin-right:auto}.pc-content-layout-block__files a{text-decoration:none}.pc-content-layout-block__file{margin-bottom:12px}.pc-content-layout-block__file:last-child{margin-bottom:0}.pc-content-layout-block__background{position:absolute;top:0;left:0;width:100%;height:100%}.pc-content-layout-block__background-item{height:100%;border-radius:var(--pc-border-radius)}.pc-content-layout-block_background{padding:64px}@media(max-width: 577px){.pc-content-layout-block_background{padding:32px}.pc-content-layout-block_background picture{display:none}}\",\"\"]);const i=o},279:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-ExtendedFeaturesBlock__item-title{margin:0}.pc-ExtendedFeaturesBlock__items{margin-top:-32px}.pc-ExtendedFeaturesBlock__header+.pc-ExtendedFeaturesBlock__items{margin-top:0}.pc-ExtendedFeaturesBlock__item{margin-top:32px}.pc-ExtendedFeaturesBlock__item.col{padding-right:32px}.pc-ExtendedFeaturesBlock__item-title{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);display:block;position:relative;margin-bottom:8px}.pc-ExtendedFeaturesBlock__item-title a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .pc-ExtendedFeaturesBlock__item-title a:focus{outline:2px solid #ffdb4d}.pc-ExtendedFeaturesBlock__item-title a:hover,.pc-ExtendedFeaturesBlock__item-title a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.pc-ExtendedFeaturesBlock__item-label{font-size:var(--yc-text-caption-2-font-size);line-height:var(--yc-text-caption-2-line-height);position:relative;top:-3px;height:16px;margin-left:8px;padding:1.5px 5px 2px;color:var(--yc-color-base-background);background-color:var(--yc-my-color-brand-normal);border-radius:4px}.pc-ExtendedFeaturesBlock__item-text,.pc-ExtendedFeaturesBlock__item-link{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-ExtendedFeaturesBlock__item-text a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .pc-ExtendedFeaturesBlock__item-text a:focus{outline:2px solid #ffdb4d}.pc-ExtendedFeaturesBlock__item-text a:hover,.pc-ExtendedFeaturesBlock__item-text a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.pc-ExtendedFeaturesBlock__item-link{margin-top:8px;color:var(--yc-color-text-link)}.pc-ExtendedFeaturesBlock__icon{width:32px;height:32px;background-size:cover;display:block;margin-bottom:12px}@media(max-width: 577px){.pc-ExtendedFeaturesBlock__item{margin-top:32px}.pc-ExtendedFeaturesBlock__item.col{padding-right:8px}}@media(min-width: 769px){.pc-ExtendedFeaturesBlock.pc-AnimateBlock .pc-ExtendedFeaturesBlock__item,.pc-AnimateBlock .pc-ExtendedFeaturesBlock .pc-ExtendedFeaturesBlock__item{position:relative;top:100px;opacity:0}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item,.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item{top:0;opacity:1;transition:top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(0),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(0){transition-delay:0s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(1),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(1){transition-delay:.1s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(2),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(2){transition-delay:.2s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(3),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(3){transition-delay:.3s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(4),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(4){transition-delay:.4s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(5),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(5){transition-delay:.5s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(6),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(6){transition-delay:.6s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(7),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(7){transition-delay:.7s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(8),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(8){transition-delay:.8s}.pc-ExtendedFeaturesBlock.pc-AnimateBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(9),.pc-AnimateBlock .pc-ExtendedFeaturesBlock.animate .pc-ExtendedFeaturesBlock__item:nth-child(9){transition-delay:.9s}}\",\"\"]);const i=o},8897:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-filter-block{--pc-first-block-indent: 0;--pc-first-block-mobile-indent: 0}.pc-filter-block__title{margin-bottom:24px}.pc-filter-block__title_centered{text-align:center}.pc-filter-block__title_centered>*{margin:0 auto}.pc-filter-block__tabs{margin-bottom:0;display:flex;flex-wrap:wrap;justify-content:flex-start}.pc-filter-block__tabs_centered{justify-content:center}@media(max-width: 769px){.pc-filter-block__tabs{flex-wrap:nowrap;justify-content:flex-start;overflow:auto;margin-left:-48px;margin-right:-48px;padding-left:48px;padding-right:40px}}@media(max-width: 577px){.pc-filter-block__tabs{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:16px}}.row .pc-filter-block__block-container.row{margin:0px}\",\"\"]);const i=o},5509:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-header-block__title{margin:0}.pc-header-block{position:relative}.pc-header-block_full-width{--pc-border-radius: 0;padding:16px 0;margin:0 0 16px}.pc-header-block__content-wrapper{margin:0 8px;height:100%}.pc-header-block__content{position:relative;height:100%}.pc-header-block__content_theme_dark .pc-header-block__title,.pc-header-block__content_theme_dark .pc-header-block__description .yfm,.pc-header-block__content_theme_dark .pc-header-block__description .yfm *{color:var(--yc-color-text-light-primary)}.pc-header-block__content_vertical-offset{margin:16px 0}.pc-header-block__content_vertical-offset_s{padding:64px 0}.pc-header-block__content_vertical-offset_m{padding:96px 0}.pc-header-block__content_vertical-offset_l{padding:128px 0}.pc-header-block__content_vertical-offset_xl{padding:160px 0}.pc-header-block__content_offset_large{padding:calc(128px - 16px) 0 16px}.pc-header-block__content-outer,.pc-header-block__content-inner{position:relative;z-index:10}.pc-header-block__title{font-size:var(--yc-text-display-4-font-size);line-height:var(--yc-text-display-4-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);position:relative}@media(max-width: 577px){.pc-header-block__title{font-size:var(--yc-text-display-2-font-size);line-height:var(--yc-text-display-2-line-height)}}.pc-header-block__title a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .pc-header-block__title a:focus{outline:2px solid #ffdb4d}.pc-header-block__title a:hover,.pc-header-block__title a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.pc-header-block__description{margin-top:16px;font-weight:normal;font-size:var(--yc-text-caption-2-font-size);line-height:var(--yc-text-caption-2-line-height);margin-block-end:var(--yc-text-body-1-line-height)}.pc-header-block__description .yfm,.pc-header-block__description .yfm *{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height);color:var(--yc-color-text-primary)}.pc-header-block__buttons{margin-top:16px}.pc-header-block__button.pc-header-block__button{margin-top:16px;margin-right:16px}.pc-header-block__media{position:absolute;display:none;top:16px;right:0;width:50%;height:calc(100% - 2 * 16px);overflow:hidden;-o-object-fit:cover;object-fit:cover;border-radius:var(--pc-border-radius)}.pc-header-block__media_s{width:32%}.pc-header-block__video{height:100%}.pc-header-block__video>video{border-radius:var(--pc-border-radius);width:100%;height:auto}.pc-header-block__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:var(--pc-border-radius)}.pc-header-block__breadcrumbs{position:absolute;top:16px;z-index:11}.pc-header-block__background-media{height:100%}.pc-header-block__background-media>div{height:100%;width:100%}.pc-header-block__background-media>div:not(.pc-header-block__video){position:absolute}.pc-header-block__background,.pc-header-block__background.pc-header-block__background_media{position:absolute;top:0;overflow:hidden;z-index:5;width:1440px;max-width:100%;left:50%;transform:translateX(-50%);height:100%;border-radius:var(--pc-border-radius)}.pc-header-block__background.pc-header-block__background_full-width-media,.pc-header-block__background.pc-header-block__background_media.pc-header-block__background_full-width-media{width:100%}.pc-header-block__background.pc-header-block__background_full-width-media>div,.pc-header-block__background.pc-header-block__background_media.pc-header-block__background_full-width-media>div{max-width:none}.pc-header-block__background.pc-header-block__background_full-width-media video,.pc-header-block__background.pc-header-block__background_media.pc-header-block__background_full-width-media video{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.pc-header-block__background_full-width{left:0;transform:none;max-width:none;width:100%;background-color:var(--yc-color-base-background)}.pc-header-block__overtitle{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height);margin-block-start:var(--yc-text-body-3-line-height);margin-bottom:8px;font-weight:400}.pc-header-block__overtitle a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .pc-header-block__overtitle a:focus{outline:2px solid #ffdb4d}.pc-header-block__overtitle a:hover,.pc-header-block__overtitle a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}@media(max-width: 1440px){.pc-header-block__background,.pc-header-block__background.pc-header-block__background_media{left:0;transform:none}}@media(max-width: 769px){.pc-header-block_has-media .pc-header-block__content{padding-top:48px}.pc-header-block .pc-header-block__content_vertical-offset_s,.pc-header-block .pc-header-block__content_vertical-offset_m,.pc-header-block .pc-header-block__content_vertical-offset_l,.pc-header-block .pc-header-block__content_vertical-offset_xl{padding:calc(96px - 16px) 0}.pc-header-block .pc-header-block__content_offset_large{padding:calc(96px - 16px) 0 16px;margin-bottom:-32px}}@media(min-width: 769px){.pc-header-block__media{display:block}.pc-header-block_has-media .pc-header-block__content-inner{padding-right:48px}}\",\"\"]);const i=o},1650:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-header-slider-block__item{display:block;height:100%;overflow:hidden;transform:translateZ(0)}.pc-header-slider-block__item-content{height:inherit;overflow:hidden}.pc-header-slider-block__item-content.pc-header-slider-block__item-content{margin:0 0 16px}.pc-header-slider-block__item-content .pc-header-block__content{padding:115px 0;display:flex;align-items:center}.pc-header-slider-block__item-content .pc-Grid,.pc-header-slider-block__item-content .container-fluid,.pc-header-slider-block__item-content .container-fluid .row{height:inherit}.pc-header-slider-block__item-content .pc-header-block__media{padding-bottom:48px;padding-top:16px}@media(max-width: 1410px)and (min-width: 577px){.pc-header-slider-block__item-content .pc-header-block__content{padding-left:32px;padding-right:32px}}@media(max-width: 769px){.pc-header-slider-block.pc-SliderBlock{margin-left:-8px;padding-left:0;width:calc(100% + 8px)}}@media(max-width: 577px){.pc-header-slider-block__item-content .pc-header-block__content{padding-left:0;padding-right:0}.pc-header-slider-block .slick-track .slick-slide{max-width:100%}}\",\"\"]);const i=o},4377:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-icons-block{display:flex;flex-wrap:wrap;justify-content:center;font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-icons-block_size_s .pc-icons-block__item{width:96px}.pc-icons-block_size_m .pc-icons-block__item{width:128px}.pc-icons-block_size_l .pc-icons-block__item{width:160px}.pc-icons-block__header{width:100%;padding-bottom:24px;text-align:center}.pc-icons-block__text{margin:8px 0 0;text-align:center}.pc-icons-block__item{color:inherit;text-decoration:none;margin:0 8px 24px}.pc-icons-block__image{max-width:100%;margin:0 auto;display:block}@media(max-width: 576px){.pc-icons-block__item{max-width:calc(50% - 8px * 2)}}\",\"\"]);const i=o},7776:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-info-block__container{background-color:var(--yc-color-base-special);padding:96px 64px;border-radius:var(--pc-border-radius)}.pc-info-block__left,.pc-info-block__right{padding-right:96px;padding-bottom:16px}@media(max-width: 1081px){.pc-info-block__left,.pc-info-block__right{padding-bottom:0}.pc-info-block__container{padding:96px 64px}}@media(max-width: 769px){.pc-info-block__left{margin-bottom:48px}.pc-info-block__left,.pc-info-block__right{padding-right:0}}@media(max-width: 577px){.pc-info-block__container{padding:64px 32px}}\",\"\"]);const i=o},4367:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-PromoFeaturesBlock__card-title{margin:0}.pc-PromoFeaturesBlock__card-title{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight)}.pc-PromoFeaturesBlock__card-container{display:flex}.pc-PromoFeaturesBlock__card-container-column+.pc-PromoFeaturesBlock__card-container-column{margin-left:calc(8px * 2)}.pc-PromoFeaturesBlock__header{margin-bottom:32px}.pc-PromoFeaturesBlock__background{background-color:inherit}.pc-PromoFeaturesBlock__background_grey{background-color:var(--yc-color-base-misc)}.pc-PromoFeaturesBlock_grey{padding:64px 0}.pc-PromoFeaturesBlock__card{color:inherit;text-decoration:none;display:flex;flex-direction:column;justify-content:center;border-radius:var(--pc-border-radius);overflow:hidden}.pc-PromoFeaturesBlock__card-info{padding:32px 32px 0 32px}.pc-PromoFeaturesBlock__card-title{margin-bottom:8px}.pc-PromoFeaturesBlock__card-text{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-PromoFeaturesBlock__card-media{margin-top:16px}.pc-PromoFeaturesBlock__card+.pc-PromoFeaturesBlock__card{margin-top:16px}.pc-PromoFeaturesBlock__card_no-media .pc-PromoFeaturesBlock__card-info{padding:32px}.pc-PromoFeaturesBlock__card_light{background-color:var(--yc-color-base-background)}.pc-PromoFeaturesBlock__card_default{background-color:var(--yc-color-base-misc)}.pc-PromoFeaturesBlock__card_accent{color:var(--yc-color-text-light-primary);background-color:var(--yc-color-base-special)}.pc-PromoFeaturesBlock__card_accent .pc-PromoFeaturesBlock__card-title,.pc-PromoFeaturesBlock__card_accent .pc-PromoFeaturesBlock__card-text>.yfm *{color:var(--yc-color-text-light-primary)}.pc-PromoFeaturesBlock__card_accent-light{background-color:var(--yc-color-base-selection)}.pc-PromoFeaturesBlock__card_primary{background-color:var(--yc-color-promo-base-gold)}@media(min-width: 769px){.pc-PromoFeaturesBlock.pc-AnimateBlock .pc-PromoFeaturesBlock__card-container-column,.pc-AnimateBlock .pc-PromoFeaturesBlock .pc-PromoFeaturesBlock__card-container-column{position:relative;top:100px;opacity:0}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column,.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column{top:0;opacity:1;transition:top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(0),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(0){transition-delay:0s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(1),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(1){transition-delay:.1s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(2),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(2){transition-delay:.2s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(3),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(3){transition-delay:.3s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(4),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(4){transition-delay:.4s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(5),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(5){transition-delay:.5s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(6),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(6){transition-delay:.6s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(7),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(7){transition-delay:.7s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(8),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(8){transition-delay:.8s}.pc-PromoFeaturesBlock.pc-AnimateBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(9),.pc-AnimateBlock .pc-PromoFeaturesBlock.animate .pc-PromoFeaturesBlock__card-container-column:nth-child(9){transition-delay:.9s}}\",\"\"]);const i=o},1086:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-QuestionsBlock__item-title{margin:0}.pc-QuestionsBlock__title{top:calc(var(--header-height) + 32px);position:sticky;margin-bottom:32px;margin-right:64px}.pc-QuestionsBlock__item{padding-bottom:32px;border-bottom:1px solid var(--yc-color-line-generic)}.pc-QuestionsBlock__item+.pc-QuestionsBlock__item{padding-top:32px}.pc-QuestionsBlock__item-title{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);position:relative;padding-right:24px;cursor:pointer}.pc-QuestionsBlock__item-title a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .pc-QuestionsBlock__item-title a:focus{outline:2px solid #ffdb4d}.pc-QuestionsBlock__item-title a:hover,.pc-QuestionsBlock__item-title a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.pc-QuestionsBlock__text{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height);margin-top:12px}.pc-QuestionsBlock__arrow{position:absolute;right:0;top:0;color:var(--yc-color-text-info)}.pc-QuestionsBlock__link{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}@media(max-width: 769px){.pc-QuestionsBlock__title{margin-right:0}}\",\"\"]);const i=o},1212:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-share-block__title{margin:0}.pc-share-block__title{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);text-align:center;font-weight:normal}.pc-share-block__items{display:flex;justify-content:center;margin-top:16px}.pc-share-block__item.pc-share-block__item{display:flex;justify-content:center;width:48px;height:48px;border-radius:100%}.pc-share-block__item.pc-share-block__item_type_vk{background-color:var(--yc-color-vk)}.pc-share-block__item.pc-share-block__item_type_facebook{background-color:var(--yc-color-facebook)}.pc-share-block__item.pc-share-block__item_type_twitter{background-color:var(--yc-color-twitter)}.pc-share-block__item.pc-share-block__item_type_telegram{background-color:var(--yc-color-telegram)}.pc-share-block__item.pc-share-block__item_type_telegram{background-color:var(--yc-color-telegram)}.pc-share-block__item.pc-share-block__item_type_linkedin{background-color:var(--yc-color-linkedin)}.pc-share-block__item.pc-share-block__item.pc-share-block__item.pc-share-block__item:before{border-radius:100%}.pc-share-block__item.pc-share-block__item:hover:before{background-color:var(--yc-color-base-generic) !important;border-radius:100%}.pc-share-block__item.pc-share-block__item+.pc-share-block__item.pc-share-block__item{margin-left:12px}.pc-share-block__item.pc-share-block__item svg{color:var(--yc-color-base-background)}@media(max-width: 577px){.pc-share-block__items{flex-wrap:wrap}}\",\"\"]);const i=o},6533:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-slider-block-arrow__button{box-shadow:0px 4px 24px var(--pc-color-sfx-shadow),0px 2px 8px var(--pc-color-sfx-shadow)}.pc-slider-block-arrow__button:hover{box-shadow:0px 4px 24px var(--yc-color-sfx-shadow),0px 2px 8px var(--yc-color-sfx-shadow);cursor:pointer}.pc-slider-block-arrow__icon-wrapper,.pc-slider-block-arrow__button,.pc-slider-block-arrow{display:flex;align-items:center;justify-content:center}.pc-slider-block-arrow{width:42px;height:42px;cursor:pointer}@media(max-width: 576px){.pc-slider-block-arrow{display:none}}.pc-slider-block-arrow_type_left{margin-right:16px}.pc-slider-block-arrow_type_left .pc-slider-block-arrow__icon-wrapper{transform:rotate(180deg)}.pc-slider-block-arrow__button{display:inline-block;margin:0;padding:0;font:inherit;border:none;outline:none;color:inherit;background:none;cursor:pointer;width:42px;height:42px;color:var(--yc-color-text-secondary);border-radius:100%;background-color:var(--yc-color-base-background);box-shadow:0 4px 24px var(--pc-color-sfx-shadow),0 2px 8px var(--pc-color-sfx-shadow);transition:box-shadow .3s cubic-bezier(0.22, 0.61, 0.36, 1),color .3s cubic-bezier(0.22, 0.61, 0.36, 1)}.pc-slider-block-arrow:hover .pc-slider-block-arrow__button{color:var(--yc-color-text-primary);box-shadow:0 2px 12px var(--pc-color-sfx-shadow),0 4px 24px var(--pc-color-sfx-shadow)}.pc-slider-block-arrow__icon{position:relative}\",\"\"]);const i=o},7859:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'.pc-slick-origin.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.pc-slick-origin.slick-slider .slick-track,.pc-slick-origin.slick-slider .slick-list{transform:translate3d(0, 0, 0)}.pc-slick-origin .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.pc-slick-origin .slick-list:focus{outline:none}.pc-slick-origin .slick-list.dragging{cursor:hand}.pc-slick-origin .slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.pc-slick-origin .slick-track::before,.pc-slick-origin .slick-track::after{content:\"\";display:table}.pc-slick-origin .slick-track:after{clear:both}.slick-loading .pc-slick-origin .slick-track{visibility:hidden}.pc-slick-origin .slick-slide{float:left;height:100%;min-height:1px;display:none}[dir=rtl] .pc-slick-origin .slick-slide{float:right}.pc-slick-origin .slick-slide img{display:block}.pc-slick-origin .slick-slide.slick-loading img{display:none}.pc-slick-origin .slick-slide.dragging img{pointer-events:none}.slick-initialized .pc-slick-origin .slick-slide{display:block}.slick-loading .pc-slick-origin .slick-slide{visibility:hidden}.slick-vertical .pc-slick-origin .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.pc-slick-origin.slick-initialized .slick-slide{display:block}.pc-slick-origin.slick-loading .slick-slide{visibility:hidden}.pc-slick-origin.slick-vertical .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.pc-slick-origin .slick-arrow.slick-hidden{display:none}.pc-SliderBlock .slick-list{padding:24px 0 20px;margin:0 -8px}.pc-SliderBlock .slick-slide{padding:0 8px;box-sizing:border-box;flex-shrink:0}.pc-SliderBlock .slick-track{display:flex;min-width:100%}.pc-SliderBlock .slick-track .slick-slide{height:auto}.pc-SliderBlock .slick-track .slick-slide>div{height:100%}.pc-SliderBlock .slick-arrow{position:absolute;top:-42px;right:0;z-index:2}.pc-SliderBlock .slick-arrow.slick-prev{right:42px}.pc-SliderBlock__header_no-description{position:relative;top:-3px}.pc-SliderBlock__dots{display:flex;justify-content:center;width:100%}.pc-SliderBlock__dots-list{margin:0;padding:0;list-style:none;position:relative;display:inline-flex;justify-content:center}.pc-SliderBlock__dots-list li.pc-SliderBlock__bar,.pc-SliderBlock__dots-list li.pc-SliderBlock__dot{margin:calc(12px / 2) 8px;top:0}.pc-SliderBlock__dot{margin-top:12px;width:8px;height:8px;border-radius:100%;background-color:var(--yc-color-line-generic-accent);cursor:pointer}.pc-SliderBlock__dot:hover{background-color:var(--yc-color-line-generic-accent-hover)}.pc-SliderBlock__dot+.pc-SliderBlock__dot{margin-left:16px}.pc-SliderBlock__dot_active{background-color:var(--yc-color-line-generic-active)}.pc-SliderBlock__bar{position:absolute;top:12px;left:0;width:24px;height:8px;border-radius:var(--pc-border-radius);transition:left .3s;background-color:var(--pc-color-line-generic-active-solid)}.pc-SliderBlock_align-left .slick-track{width:inherit !important}.pc-SliderBlock_only-arrows{padding-top:42px}.pc-SliderBlock__footer{display:flex;position:relative}.pc-SliderBlock__footer .pc-SliderBlock__disclaimer{position:absolute;top:0;left:0;color:var(--yc-color-text-secondary)}.pc-SliderBlock__footer .pc-SliderBlock__disclaimer_size_l{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height)}.pc-SliderBlock__footer .pc-SliderBlock__disclaimer_size_m{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-SliderBlock__footer .pc-SliderBlock__disclaimer_size_s{font-size:var(--yc-text-body-1-font-size);line-height:var(--yc-text-body-1-line-height)}@media(min-width: 769px){.pc-SliderBlock__animate-slides.pc-AnimateBlock .slick-slide,.pc-AnimateBlock .pc-SliderBlock__animate-slides .slick-slide{position:relative;top:100px;opacity:0}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide,.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide{top:0;opacity:1;transition:top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(0),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(0){transition-delay:0s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(1),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(1){transition-delay:.1s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(2),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(2){transition-delay:.2s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(3),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(3){transition-delay:.3s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(4),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(4){transition-delay:.4s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(5),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(5){transition-delay:.5s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(6),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(6){transition-delay:.6s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(7),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(7){transition-delay:.7s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(8),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(8){transition-delay:.8s}.pc-SliderBlock__animate-slides.pc-AnimateBlock.animate .slick-slide:nth-child(9),.pc-AnimateBlock .pc-SliderBlock__animate-slides.animate .slick-slide:nth-child(9){transition-delay:.9s}}.pc-SliderBlock_type_media-card{padding:0}.pc-SliderBlock_type_media-card .slick-slide{width:100%}@media(max-width: 577px){.pc-SliderBlock_type_media-card:not(.pc-SliderBlock_type_media-card_one-slide){margin-left:0;padding-left:0;width:100%;overflow:inherit}.pc-SliderBlock_type_media-card:not(.pc-SliderBlock_type_media-card_one-slide) .slick-list{margin:0}.pc-SliderBlock_type_media-card:not(.pc-SliderBlock_type_media-card_one-slide) .slick-slide:last-child{padding-right:10px}}.pc-SliderBlock_type_media-card .pc-SliderBlock__dots{position:absolute;bottom:24px;left:0;width:100%}.pc-SliderBlock_type_media-card:hover .slick-arrow{display:flex}.pc-SliderBlock_type_media-card .slick-arrow{display:none;width:64px;top:50%;transform:translate(0, -50%)}.pc-SliderBlock_type_media-card .slick-prev{left:0}.pc-SliderBlock_type_media-card .slick-next{right:0}.pc-SliderBlock_type_media-card .slick-list{padding:0}@media(max-width: 769px){.pc-SliderBlock_type_media-card:hover .slick-arrow{display:none}}.pc-SliderBlock_type_header-card{padding-top:0}.pc-SliderBlock_type_header-card .slick-slide{width:100%}@media(max-width: 577px){.pc-SliderBlock_type_header-card:not(.pc-SliderBlock_type_header-card_one-slide){margin-left:0;padding-left:0;width:100%;overflow:inherit}.pc-SliderBlock_type_header-card:not(.pc-SliderBlock_type_header-card_one-slide) .slick-list{margin:0}.pc-SliderBlock_type_header-card:not(.pc-SliderBlock_type_header-card_one-slide) .slick-slide:last-child{padding-right:10px}}.pc-SliderBlock_type_header-card .pc-SliderBlock__wrapper{position:relative}.pc-SliderBlock_type_header-card .pc-SliderBlock__dots{position:absolute;bottom:16px;left:50%;transform:translateX(-50%);z-index:100}.pc-SliderBlock_type_header-card .slick-arrow{top:50%;transform:translateY(-50%);right:16px}.pc-SliderBlock_type_header-card .slick-arrow.slick-prev{left:16px}.pc-SliderBlock_type_header-card .slick-arrow button{background-color:rgba(0,0,0,0);box-shadow:none}.pc-SliderBlock_type_header-card .slick-arrow button:hover{box-shadow:none}.pc-SliderBlock_type_header-card .slick-arrow:hover button{box-shadow:none}.pc-SliderBlock_type_header-card .slick-slide{padding:0}@keyframes safari-fix{from{transform:translateX(0.001px)}to{transform:translateX(0)}}.pc-SliderBlock_type_header-card .slick-slide[aria-hidden=true]{animation:safari-fix 1000ms}.pc-SliderBlock_type_header-card .slick-list{padding:0;margin:0}.pc-SliderBlock_type_header-card .slick-arrow{width:68px;height:68px;right:0}.pc-SliderBlock_type_header-card .slick-arrow.slick-prev{left:0}@media(max-width: 577px){.pc-SliderBlock_type_header-card .slick-arrow{display:none}.pc-SliderBlock_type_header-card.pc-SliderBlock:not(.pc-SliderBlock_type_header-card_one-slide) .slick-list{margin-left:0}.pc-SliderBlock_type_header-card.pc-SliderBlock:not(.pc-SliderBlock_type_header-card_one-slide) .slick-track{padding-left:0}.pc-SliderBlock_type_header-card.pc-SliderBlock:not(.pc-SliderBlock_type_header-card_one-slide) .slick-slide{padding-right:0}.pc-SliderBlock_type_header-card.pc-SliderBlock:not(.pc-SliderBlock_type_header-card_one-slide) .slick-slide:last-child{padding-right:0}}@media(max-width: 769px){.pc-SliderBlock__footer{display:block}.pc-SliderBlock__footer .pc-SliderBlock__disclaimer{position:relative;width:100%;padding-bottom:20px}}@media(max-width: 577px){.pc-SliderBlock:not(.pc-SliderBlock_one-slide){margin-left:-24px;padding-left:24px;width:calc(100% + 48px);overflow-x:auto}.pc-SliderBlock:not(.pc-SliderBlock_one-slide) .slick-list{margin-left:-24px;margin-right:0}.pc-SliderBlock:not(.pc-SliderBlock_one-slide) .slick-track{padding-left:16px}.pc-SliderBlock:not(.pc-SliderBlock_one-slide) .slick-slide{padding:0 8px}.pc-SliderBlock:not(.pc-SliderBlock_one-slide) .slick-slide:last-child{padding:0 24px 0 8px}}',\"\"]);const i=o},6481:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-table-block__title{margin:0}.pc-table-block__title{font-size:var(--yc-text-display-2-font-size);line-height:var(--yc-text-display-2-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);top:calc(var(--header-height) + 32px);position:sticky;margin-right:32px}@media(max-width: 576px){.pc-table-block__title{font-size:var(--yc-text-display-1-font-size);line-height:var(--yc-text-display-1-line-height)}}.pc-table-block__table{margin-top:0}@media(max-width: 1081px){.pc-table-block__title{margin-right:0;padding-bottom:32px}}\",\"\"]);const i=o},9500:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-tabs-block__content-title.pc-tabs-block__content-title>*{margin:0}.pc-tabs-block__block-title{margin-bottom:24px}.pc-tabs-block__block-title_centered{text-align:center}.pc-tabs-block__block-title_centered>*{margin:0 auto}.pc-tabs-block__tabs{margin-bottom:20px;display:flex;flex-wrap:wrap;justify-content:flex-start}.pc-tabs-block__tabs_centered{justify-content:center}@media(max-width: 769px){.pc-tabs-block__tabs{flex-wrap:nowrap;justify-content:flex-start;overflow:auto;margin-left:-48px;margin-right:-48px;padding-left:48px;padding-right:40px}}@media(max-width: 577px){.pc-tabs-block__tabs{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:16px}}.pc-tabs-block__row_reverse{flex-direction:row-reverse}.pc-tabs-block__row_reverse .pc-tabs-block__content-wrapper{margin:24px 32px 0 0}.pc-tabs-block__image{width:100%;height:auto;-o-object-fit:cover;object-fit:cover;display:block}.pc-tabs-block__image,.pc-tabs-block__media{box-shadow:0 2px 8px var(--pc-color-sfx-shadow),0 4px 24px var(--pc-color-sfx-shadow);overflow-x:hidden;border-radius:var(--pc-border-radius)}.pc-tabs-block__caption{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height);margin:12px 0 0;color:var(--yc-color-text-secondary)}.pc-tabs-block__content{display:flex;flex-direction:column}.pc-tabs-block__content_centered{margin:0 auto}.pc-tabs-block__col_centered{margin:0 auto}.pc-tabs-block__content-wrapper_margin{margin:24px 0 0 32px}.pc-tabs-block__content-title{margin:0 auto 12px}.pc-tabs-block__content-title.pc-tabs-block__content-title>*{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight)}@media(max-width: 769px){.pc-tabs-block__content-wrapper_margin{margin:0 0 32px 0}.pc-tabs-block__row_reverse{flex-direction:column-reverse}.pc-tabs-block__row_reverse .pc-tabs-block__content>*{margin-top:32px;padding-bottom:0}}@media(min-width: 769px){.pc-tabs-block.pc-AnimateBlock .pc-tabs-block__media,.pc-AnimateBlock .pc-tabs-block .pc-tabs-block__media{position:relative;top:100px;opacity:0}.pc-tabs-block.pc-AnimateBlock.animate .pc-tabs-block__media,.pc-AnimateBlock .pc-tabs-block.animate .pc-tabs-block__media{top:0;opacity:1;transition:top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);transition-delay:0s}}@media(min-width: 769px){.pc-tabs-block.pc-AnimateBlock .pc-tabs-block__image,.pc-AnimateBlock .pc-tabs-block .pc-tabs-block__image{position:relative;top:100px;opacity:0}.pc-tabs-block.pc-AnimateBlock.animate .pc-tabs-block__image,.pc-AnimateBlock .pc-tabs-block.animate .pc-tabs-block__image{top:0;opacity:1;transition:top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);transition-delay:0s}}\",\"\"]);const i=o},2081:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-Anchor{display:block;position:relative;top:calc(-1 * var(--header-height) - var(--anchor-offset, 0px));visibility:hidden}\",\"\"]);const i=o},5265:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-author{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height);display:flex;flex-direction:column;color:var(--yc-color-text-secondary)}.pc-author__avatar{width:80px;height:80px;display:flex;align-items:center;flex:0 0 auto;border-radius:16px;overflow:hidden}.pc-author__avatar img{width:80px;height:80px;-o-object-fit:cover;object-fit:cover;display:block}.pc-author__name{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height);color:var(--yc-color-text-primary)}.pc-author__description{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height);padding-top:4px}.pc-author__label:not(:first-child){font-weight:400;margin-top:8px}.pc-author_type_column{z-index:1;position:relative}.pc-author_type_line{flex-flow:row nowrap;align-items:center;width:100%}.pc-author_type_line .pc-author__avatar{margin:0}.pc-author_type_line .pc-author__label{margin-top:0}.pc-author_type_line .pc-author__label:not(:first-child){margin-left:16px}\",\"\"]);const i=o},4608:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-storage-background-image{position:relative;overflow:hidden}.pc-storage-background-image__img{left:0;top:0;pointer-events:none;position:absolute;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.pc-storage-background-image__container{position:relative}\",\"\"]);const i=o},5109:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-BackgroundMedia{position:absolute;top:0;left:0;width:100%}.pc-BackgroundMedia__media{margin:0 auto;max-width:1440px;text-align:center;height:100%}.pc-BackgroundMedia__media_full-width-media{max-width:none}.pc-BackgroundMedia__media_full-width-media .pc-BackgroundMedia__video video{height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.pc-BackgroundMedia__image{height:100%;width:100%}.pc-BackgroundMedia__video{position:relative;height:100%}.pc-BackgroundMedia__video video{position:absolute;top:0;left:50%;transform:translateX(-50%)}.pc-BackgroundMedia__video,.pc-BackgroundMedia video{width:auto}@media(max-width: 769px){.pc-BackgroundMedia__image{display:block}.pc-BackgroundMedia__video{display:none}}@media(min-width: 769px){.pc-BackgroundMedia.pc-AnimateBlock__image,.pc-AnimateBlock .pc-BackgroundMedia__image{position:relative;bottom:100px;opacity:0}.pc-BackgroundMedia.pc-AnimateBlock.animate .pc-BackgroundMedia__image,.pc-AnimateBlock .pc-BackgroundMedia.animate .pc-BackgroundMedia__image{bottom:0;opacity:1;transition:bottom 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)}}\",\"\"]);const i=o},9401:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-BalancedMasonry{position:relative}.pc-BalancedMasonry__hidden-container{position:absolute;visibility:hidden;overflow:hidden;height:100%;z-index:-1}\",\"\"]);const i=o},6876:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-block-base{--anchor-offset: 48px}.pc-block-base.pc-block-base{margin-top:48px;padding:0 0 48px}.pc-block-base.pc-block-base:first-child{margin-top:var(--pc-first-block-indent, 96px)}@media only screen and (max-width: 577px){.pc-block-base.pc-block-base{margin-top:32px;padding-bottom:32px}.pc-block-base.pc-block-base:first-child{margin-top:var(--pc-first-block-mobile-indent, 64px)}}.pc-block-base_reset-paddings.pc-block-base.pc-block-base_reset-paddings.pc-block-base{padding:0;margin:0}@media(max-width: 577px){.pc-block-base{--anchor-offset: 32px}}\",\"\"]);const i=o},5185:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-button-block__content{display:flex;align-items:center}.pc-button-block__image{width:18px;height:18px}.pc-button-block__image+.pc-button-block__text,.pc-button-block__text+.pc-button-block__image{margin-left:var(--btn-image-margin)}.pc-button-block_theme_github.pc-button-block_theme_github{--yc-button-background-color: var(--pc-monochrome-button-background-color);--yc-button-background-color-hover: var(--pc-monochrome-button-background-color-hover)}.pc-button-block_theme_github.pc-button-block_theme_github,.pc-button-block_theme_github.pc-button-block_theme_github:link,.pc-button-block_theme_github.pc-button-block_theme_github:visited,.pc-button-block_theme_github.pc-button-block_theme_github:active,.pc-button-block_theme_github.pc-button-block_theme_github:focus{color:var(--pc-monochrome-button-color)}.pc-button-block_theme_github.pc-button-block_theme_github:hover{color:var(--pc-monochrome-button-color)}.pc-button-block_theme_scale::before,.pc-button-block_theme_scale::after{border-radius:300px}.pc-button-block_theme_monochrome{--yc-button-background-color: var(--pc-monochrome-button-background-color);--yc-button-background-color-hover: var(--pc-monochrome-button-background-color-hover)}.pc-button-block_theme_monochrome,.pc-button-block_theme_monochrome:link,.pc-button-block_theme_monochrome:visited,.pc-button-block_theme_monochrome:active,.pc-button-block_theme_monochrome:focus{color:var(--pc-monochrome-button-color)}.pc-button-block_theme_monochrome:hover{color:var(--pc-monochrome-button-color)}.pc-button-block_size_s{--btn-image-margin: 10px}.pc-button-block_size_m{--btn-image-margin: 13px}.pc-button-block_size_l{--btn-image-margin: 18px}.pc-button-block_size_xl{--btn-image-margin: 25px}.pc-button-block_width_max .pc-button-block__text{width:100%}\",\"\"]);const i=o},8437:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-button-tabs__item.pc-button-tabs__item{margin-right:8px;margin-bottom:12px;--yc-button-background-color: var(--pc-tab-item-background-color);--yc-button-background-color-hover: var(--pc-tab-item-background-color-hover)}.pc-button-tabs__item.pc-button-tabs__item,.pc-button-tabs__item.pc-button-tabs__item:link,.pc-button-tabs__item.pc-button-tabs__item:visited,.pc-button-tabs__item.pc-button-tabs__item:active,.pc-button-tabs__item.pc-button-tabs__item:focus{color:var(--pc-tab-item-color)}.pc-button-tabs__item.pc-button-tabs__item:hover{color:var(--pc-tab-item-color)}.pc-button-tabs__item.pc-button-tabs__item_active{pointer-events:none;--yc-button-background-color: var(--pc-selected-tab-item-background-color);--yc-button-background-color-hover: var(--pc-selected-tab-item-background-color-hover)}.pc-button-tabs__item.pc-button-tabs__item_active,.pc-button-tabs__item.pc-button-tabs__item_active:link,.pc-button-tabs__item.pc-button-tabs__item_active:visited,.pc-button-tabs__item.pc-button-tabs__item_active:active,.pc-button-tabs__item.pc-button-tabs__item_active:focus{color:var(--pc-selected-tab-item-color)}.pc-button-tabs__item.pc-button-tabs__item_active:hover{color:var(--pc-selected-tab-item-color)}\",\"\"]);const i=o},3376:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\"a.pc-card-base-block_border_shadow,.pc-card-base-block_border_shadow{box-shadow:0px 4px 24px var(--pc-color-sfx-shadow),0px 2px 8px var(--pc-color-sfx-shadow)}.pc-card-base-block__body,.pc-card-base-block{display:flex;flex-direction:column;justify-content:space-between}.pc-card-base-block{min-height:248px;height:100%;overflow-x:hidden;border-radius:var(--pc-border-radius);background-color:var(--yc-color-base-float);transition:box-shadow .3s cubic-bezier(0.22, 0.61, 0.36, 1);display:flex}.pc-card-base-block_border_line{border:1px solid var(--yc-color-line-generic)}.pc-card-base-block_border_line,.pc-card-base-block_border_none{cursor:default}@media(min-width: 577px){.slick-slide:not(.slick-active) .pc-card-base-block{box-shadow:none}}.pc-card-base-block__header{position:relative;background-repeat:no-repeat;background-size:cover;background-position:center;margin:var(--pc-image-padding);border-radius:calc(var(--pc-border-radius) - var(--pc-image-padding))}.pc-card-base-block__header-content{padding:32px}.pc-card-base-block__body{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height);flex:1;padding:32px}.pc-card-base-block__header+.pc-card-base-block__body{padding:24px 32px 32px}.pc-card-base-block__content{flex:1}.pc-card-base-block__footer{margin-top:14px}@media(max-width: 577px){.pc-card-base-block{min-height:unset}}a.pc-card-base-block{color:inherit;text-decoration:none;min-height:248px;height:100%;overflow-x:hidden;border-radius:var(--pc-border-radius);background-color:var(--yc-color-base-float);transition:box-shadow .3s cubic-bezier(0.22, 0.61, 0.36, 1)}a.pc-card-base-block:hover,a.pc-card-base-block:active{--pc-text-header-color: inherit;color:inherit}a.pc-card-base-block_border_line{border:1px solid var(--yc-color-line-generic)}a.pc-card-base-block_border_line,a.pc-card-base-block_border_none{cursor:default}a.pc-card-base-block_border_shadow{transition:transform .3s ease-out}a.pc-card-base-block_border_shadow:hover{transform:translateY(-8px)}a.pc-card-base-block_border_shadow:hover{background-color:var(--pc-color-base-float-hover)}\",\"\"]);const i=o},5875:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-control{display:flex;justify-content:center;align-items:center;transition:color .2s;display:inline-block;margin:0;padding:0;font:inherit;border:none;outline:none;color:inherit;background:none;cursor:pointer;outline:none}.pc-control .pc-control_theme_primary,.pc-control .pc-control_theme_secondary,.pc-control .pc-control_theme_link{transition:color .2s}.pc-control .pc-control_theme_accent{transition:opacity .2s}.utilityfocus .pc-control:focus{outline:2px solid #ffdb4d}.pc-control_size_xs{width:24px;height:24px}.pc-control_size_s{width:28px;height:28px}.pc-control_size_m{width:32px;height:32px}.pc-control_size_l{width:36px;height:36px}.pc-control_theme_primary{color:var(--yc-color-text-complementary)}.pc-control_theme_primary:hover{color:var(--yc-color-text-primary)}.pc-control_theme_secondary{color:var(--yc-color-text-secondary)}.pc-control_theme_secondary:hover{color:var(--yc-color-text-complementary)}.pc-control_theme_link{color:var(--yc-color-text-complementary)}.pc-control_theme_link:hover{color:var(--yc-color-text-link-hover)}.pc-control_theme_accent{opacity:.7;color:var(--yc-color-text-yandex-red)}.pc-control_theme_accent:hover{opacity:1}.pc-control_disabled{cursor:default;color:var(--yc-color-text-secondary)}.pc-control_disabled:hover{color:var(--yc-color-text-secondary)}@media(max-width: 768px){.pc-control:hover{color:inherit}}\",\"\"]);const i=o},4774:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-ErrorWrapper{font-size:var(--yc-text-body-1-font-size);line-height:var(--yc-text-body-1-line-height);white-space:nowrap;color:var(--yc-color-text-danger)}.pc-ErrorWrapper__text{margin-bottom:5px}\",\"\"]);const i=o},9469:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-file-link{--pc-color-label-background: rgba(0, 0, 0, 0.07);align-items:baseline}.pc-file-link_ext_pdf{--pc-file-label-color: var(--yc-color-promo-highlight-tomato)}.pc-file-link_ext_doc{--pc-file-label-color: var(--yc-color-promo-highlight-sky)}.pc-file-link_ext_xls{--pc-file-label-color: var(--yc-color-promo-highlight-mint)}.pc-file-link_ext_ppt{--pc-file-label-color: var(--yc-color-promo-highlight-copper)}.pc-file-link_ext_fig{--pc-file-label-color: var(--yc-color-promo-highlight-neon)}.pc-file-link_ext_zip{--pc-file-label-color: var(--yc-color-promo-highlight-asphalt)}.pc-file-link_type_horizontal{display:flex}.pc-file-link_type_horizontal .pc-file-link__file-label{margin-right:8px}.pc-file-link__file-label{flex:0 0 auto;width:44px;height:24px;line-height:24px;background-color:var(--pc-file-label-color);color:var(--yc-color-text-light-primary);border-radius:4px;text-transform:uppercase;text-align:center}.pc-file-link__file-label{color:var(--yc-color-text-primary);display:flex;justify-content:center;flex-direction:column}.pc-file-link__link>a{color:var(--yc-color-text-primary)}.pc-file-link__link>a:hover{color:var(--yc-color-text-secondary)}.pc-file-link_size_l .pc-file-link__file-label{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height);width:44px;height:24px;padding:2px 6px}.pc-file-link_size_m .pc-file-link__file-label,.pc-file-link_size_s .pc-file-link__file-label{font-size:var(--yc-text-body-1-font-size);line-height:var(--yc-text-body-1-line-height);width:36px;height:20px;padding:1px 4px}.pc-file-link_theme_dark .pc-file-link__file-label{color:var(--yc-color-text-light-primary);background-color:var(--yc-color-base-light-simple-hover)}.pc-file-link_theme_dark .pc-file-link__link>a{color:var(--yc-color-text-light-primary)}.pc-file-link_theme_dark .pc-file-link__link>a:hover{color:var(--yc-color-text-light-secondary)}.pc-file-link_theme_light .pc-file-link__file-label{color:var(--yc-color-text-dark-primary);background-color:var(--pc-color-label-background)}.pc-file-link_theme_light .pc-file-link__link>a{color:var(--yc-color-text-dark-primary)}.pc-file-link_theme_light .pc-file-link__link>a:hover{color:var(--yc-color-text-dark-secondary)}\",\"\"]);const i=o},9601:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-foldable-block{height:0;overflow-y:hidden;transition:height 300ms,margin-bottom 300ms}.pc-foldable-block__content-container{overflow:auto}\",\"\"]);const i=o},8844:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-FullWidthBackground{position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--yc-color-base-background);z-index:0;pointer-events:none}.pc-FullWidthBackground_rounded{border-radius:var(--pc-border-radius)}\",\"\"]);const i=o},9711:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-fullscreen-image__image{cursor:pointer}.pc-fullscreen-image__image-wrapper{position:relative}.pc-fullscreen-image__modal-content{position:relative}.pc-fullscreen-image__modal-image{display:block;max-width:1232px;max-height:70vh;overflow:hidden}.pc-fullscreen-image__modal .yc-modal__content,.pc-fullscreen-image__modal-image{border-radius:var(--pc-border-radius)}.pc-fullscreen-image__icon-wrapper{display:flex;align-items:center;justify-content:center;position:absolute;right:16px;top:16px;width:36px;height:36px;border-radius:8px;background-color:var(--yc-color-base-simple-hover-solid);cursor:pointer;opacity:0;transition:.3s}.pc-fullscreen-image__icon-wrapper_visible{opacity:1}.pc-fullscreen-image__icon{color:var(--yc-color-text-hint)}.pc-fullscreen-image__icon_hover:hover{color:var(--yc-color-text-secondary)}@media(max-width: 1185px){.pc-fullscreen-image__modal-image{width:100%}}@media(max-width: 1081px){.pc-fullscreen-image__image{pointer-events:none}.pc-fullscreen-image__icon-wrapper{display:none}.pc-fullscreen-image__modal{display:none !important}}\",\"\"]);const i=o},6519:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-full-screen-media__modal-media_type_youtube,.pc-full-screen-media__modal-media_type_video video,.pc-full-screen-media__modal-media_type_image{display:block;position:relative;width:100%;max-width:1232px;max-height:70vh}.pc-full-screen-media__media{cursor:pointer}.pc-full-screen-media__media-wrapper{cursor:pointer;position:relative}.pc-full-screen-media__modal-content{position:relative}.pc-full-screen-media__inline-media{transform:translateZ(0)}.pc-full-screen-media__modal-media{border-radius:var(--pc-border-radius)}.pc-full-screen-media__modal-media_type_youtube{width:min(65vw, 1232px);height:calc(min(65vw, 1232px) * 9 / 16)}.pc-full-screen-media__modal .yc-modal__content,.pc-full-screen-media__modal-image{border-radius:var(--pc-border-radius)}.pc-full-screen-media__icon-wrapper{display:flex;align-items:center;justify-content:center;position:absolute;right:16px;top:16px;width:36px;height:36px;border-radius:8px;background-color:var(--yc-color-base-simple-hover-solid);cursor:pointer;z-index:10}.pc-full-screen-media__modal-content .pc-full-screen-media__icon-wrapper,.pc-full-screen-media__media-wrapper .pc-full-screen-media__icon-wrapper{opacity:0;transition:opacity .3s;pointer-events:none}.pc-full-screen-media__modal-content:hover .pc-full-screen-media__icon-wrapper,.pc-full-screen-media__media-wrapper:hover .pc-full-screen-media__icon-wrapper{opacity:1;pointer-events:inherit}.pc-full-screen-media__icon{color:var(--yc-color-text-hint)}.pc-full-screen-media__icon_hover:hover{color:var(--yc-color-text-secondary)}@media(max-width: 577px){.pc-full-screen-media__icon-wrapper{display:none}.pc-full-screen-media__modal{display:none !important}}\",\"\"]);const i=o},7543:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'.pc-header-breadcrumbs{z-index:11}.pc-header-breadcrumbs__item{display:inline-block}.pc-header-breadcrumbs__text{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height);outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer;color:var(--yc-color-text-secondary)}.utilityfocus .pc-header-breadcrumbs__text:focus{outline:2px solid #ffdb4d}.pc-header-breadcrumbs__text:hover,.pc-header-breadcrumbs__text:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.pc-header-breadcrumbs__text:after{content:\" / \";margin:0 8px 0 6px;color:var(--yc-color-text-secondary)}.pc-header-breadcrumbs__text:hover{color:var(--yc-color-text-primary)}.pc-header-breadcrumbs_theme_dark .pc-header-breadcrumbs__text{color:var(--yc-color-text-light-secondary)}.pc-header-breadcrumbs_theme_dark .pc-header-breadcrumbs__text:after{color:var(--yc-color-text-light-secondary)}.pc-header-breadcrumbs_theme_dark .pc-header-breadcrumbs__text:hover{color:var(--yc-color-text-light-primary)}',\"\"]);const i=o},2995:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-link-block{margin-top:16px}.pc-link-block__link{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer;display:flex;align-items:center}.utilityfocus .pc-link-block__link:focus{outline:2px solid #ffdb4d}.pc-link-block__link:hover,.pc-link-block__link:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.pc-link-block__link_theme_dark{color:var(--yc-color-text-light-primary)}.pc-link-block__link_theme_dark:hover{color:var(--yc-color-text-light-secondary)}.pc-link-block__link_has-arrow{display:inherit;white-space:nowrap}.pc-link-block__link_has-arrow:hover,.pc-link-block__link_has-arrow:active{--pc-text-header-color: inherit;color:var(--yc-color-text-link)}.pc-link-block__link_has-arrow .pc-link-block__content{white-space:normal}.pc-link-block__link:hover .pc-link-block__arrow{transform:translateX(5px) rotate(-90deg)}.pc-link-block__link.pc-link-block__link_has-arrow.pc-link-block__link_theme_dark:hover{color:var(--yc-color-text-light-primary)}.pc-link-block__arrow{position:relative;top:2px;transition:transform .3s cubic-bezier(0.22, 0.61, 0.36, 1);transform:rotate(-90deg)}.pc-link-block_size_l{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height)}.pc-link-block_size_m{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-link-block_size_m .pc-link-block__arrow{top:1px}.pc-link-block_size_s{font-size:var(--yc-text-body-1-font-size);line-height:var(--yc-text-body-1-line-height)}\",\"\"]);const i=o},4374:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-map{width:100%;height:300px;border:0;overflow:hidden;display:flex}.pc-map_hidden{opacity:0}.pc-map__spinner{margin:0 auto;align-self:center;position:absolute}.pc-map__wrapper{min-height:300px;display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}\",\"\"]);const i=o},4381:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-media-component-data-lens__wrap{height:400px;overflow:hidden;margin:24px}.pc-media-component-data-lens__wrap .pc-media-component-data-lens__iframe{border-radius:0}.pc-media-component-data-lens__iframe{width:calc(100% + 4px);height:calc(100% + 4px);margin:-1px -2px 0}@media(max-width: 577px){.pc-media-component-data-lens__wrap{margin:24px 0}}\",\"\"]);const i=o},330:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-media-component-image__item{width:100%;display:flex;align-items:center}.pc-media-component-image__item_withVideo{display:none}\",\"\"]);const i=o},8485:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-Media{overflow:hidden}.pc-Media__youtube{border-radius:var(--pc-border-radius);overflow:hidden;display:flex;align-items:center}\",\"\"]);const i=o},6722:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-media-component-video__wrap{position:relative;overflow:hidden}.pc-media-component-video__item{width:100%;display:flex;align-items:center}.pc-media-component-video__react-player{display:flex;position:relative;justify-content:center;overflow:hidden}\",\"\"]);const i=o},6120:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-media-base__card img{width:100%}.pc-media-base__card img,.pc-media-base__card video,.pc-media-base__card iframe,.pc-media-base__card .pc-map{border-radius:var(--pc-border-radius)}.pc-media-base__card_shadow{box-shadow:0 2px 8px var(--pc-color-sfx-shadow),0 4px 24px var(--pc-color-sfx-shadow);overflow-x:hidden;border-radius:var(--pc-border-radius)}.pc-media-base__row_reverse{flex-direction:row-reverse}.pc-media-base__row_reverse .pc-media-base__content>*{margin-right:0;margin-left:64px}.pc-media-base__header{margin-bottom:24px}@media(max-width: 769px){.pc-media-base__row_reverse{flex-direction:row}.pc-media-base__row_reverse .pc-media-base__content>*{margin-left:0}.pc-media-base__row_mobile-reverse{flex-direction:column-reverse}.pc-media-base__row_mobile-reverse .pc-media-base__content>*{margin-top:32px;padding-bottom:0}}@media(min-width: 769px){.pc-media-base.pc-AnimateBlock .pc-media-base__card,.pc-AnimateBlock .pc-media-base .pc-media-base__card{position:relative;top:100px;opacity:0}.pc-media-base.pc-AnimateBlock.animate .pc-media-base__card,.pc-AnimateBlock .pc-media-base.animate .pc-media-base__card{top:0;opacity:1;transition:top .8s cubic-bezier(0.25, 0.46, 0.45, 0.94),opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);transition-delay:0s}}\",\"\"]);const i=o},3656:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-media-base-content{margin-right:64px;height:100%;align-items:center;display:flex}@media(max-width: 769px){.pc-media-base-content{margin-right:0;padding-bottom:32px}}\",\"\"]);const i=o},9615:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-meta-info{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height);display:flex;align-items:center;font-weight:500;color:var(--pc-media-card-meta-info-color)}.pc-meta-info__item:not(:first-child){margin-left:16px}\",\"\"]);const i=o},6109:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-overflow-scroller{display:flex;align-items:center;position:relative;overflow-x:hidden}.pc-overflow-scroller__container{width:100%;position:relative}.pc-overflow-scroller__container_padding-left{padding-left:24px}.pc-overflow-scroller__container_padding-right{padding-right:24px}.pc-overflow-scroller__wrapper{position:relative;transition:left .6s}.pc-overflow-scroller__arrow{position:absolute;z-index:10;top:0;display:flex;justify-content:flex-end;align-items:center;width:32px;height:calc(100% - 1px);cursor:pointer;color:var(--yc-color-text-secondary)}.pc-overflow-scroller__arrow_type_left{left:0;transform:rotate(180deg)}.pc-overflow-scroller__arrow_type_right{right:0}\",\"\"]);const i=o},5434:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-CircleProgress{position:absolute}\",\"\"]);const i=o},1912:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'.pc-CustomBarControls__wrapper{position:absolute;bottom:0}.pc-CustomBarControls__button{margin:12px;border-radius:50%;display:flex;cursor:pointer;position:relative;width:64px;height:64px;background:var(--yc-color-base-background);transition:background-color 300ms}.pc-CustomBarControls__button:hover{background:#eff2f8}.pc-CustomBarControls__icon{margin:auto}.pc-CustomBarControls__mute-button{width:inherit;height:22px;background-position:center;background-repeat:no-repeat;background-size:contain;margin:auto;background-image:url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjciIGhlaWdodD0iMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8cGF0aCBkPSJNMjAgN2E1LjY1NyA1LjY1NyAwIDAgMSAwIDhtMy0xMWMzLjg2NiAzLjg2NiAzLjg2NiAxMC4xMzQgMCAxNCIgc3Ryb2tlPSIjMjYyNjI2IiBzdHJva2Utd2lkdGg9IjIiLz4KICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJtNyA3IDctN2gydjIyaC0ybC03LTdIMFY3aDd6IiBmaWxsPSIjMjYyNjI2Ii8+Cjwvc3ZnPgo=\")}.pc-CustomBarControls__mute-button_muted{background-image:url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkiIGhlaWdodD0iMjIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0ibTcgNyA3LTdoMnYyMmgtMmwtNy03SDBWN2g3eiIgZmlsbD0iIzI2MjYyNiIvPgogICAgPHBhdGggZD0ibTIwIDcgNCA0bTAgMC00IDRtNC00IDQtNG0tNCA0IDQgNCIgc3Ryb2tlPSIjMjYyNjI2IiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==\")}',\"\"]);const i=o},6388:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-ReactPlayer__wrapper{position:relative;padding-top:56.25%}.pc-ReactPlayer__wrapper .pc-ReactPlayer__player{position:absolute;top:0;left:0}.pc-ReactPlayer__button{display:inline-block;margin:0;padding:0;font:inherit;border:none;outline:none;color:inherit;background:none;cursor:pointer;display:flex;justify-content:center;align-items:center;position:absolute;width:64px;height:64px;border-radius:166px}.pc-ReactPlayer__button_theme_blue{color:var(--yc-color-base-background);background-color:var(--yc-color-base-special)}.pc-ReactPlayer__button_theme_grey{color:var(--pc-text-header-color);background-color:#eff2f8}.pc-ReactPlayer__button_text{padding:16px 32px;font-weight:400;font-size:24px;line-height:32px;width:auto;height:auto}.pc-ReactPlayer__icon{margin-left:6px}.pc-ReactPlayer:hover .pc-ReactPlayer__custom-bar-controls{opacity:1;transition:opacity 300ms ease 0s}.pc-ReactPlayer__custom-bar-controls{opacity:0;transition:opacity 300ms ease 3s}.pc-ReactPlayer__custom-bar-controls_muted{opacity:1;transition:opacity 0s ease 0s}@media only screen and (max-width: 577px){.pc-ReactPlayer__button_text{font-size:20px;line-height:24px}}\",\"\"]);const i=o},9219:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-table{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height);margin-top:32px}.pc-table__table{width:100%;overflow-x:auto}.pc-table__row{display:flex}.pc-table__row:first-child{font-weight:500}.pc-table__row:first-child .pc-table__cell{border-bottom-color:var(--yc-color-line-generic-active);align-items:flex-end;padding-top:0}.pc-table__cell{padding:12px 0;display:flex;flex:1;align-items:center;border-bottom:1px solid var(--yc-color-line-generic)}.pc-table__cell:first-child{flex:2}.pc-table__cell_justify_center{justify-content:center;text-align:center}.pc-table__cell_justify_right{justify-content:flex-end;text-align:right}.pc-table__marker{display:inline-block}.pc-table__marker_type_disk{width:16px;height:16px;border-radius:100%;flex-shrink:0;box-sizing:border-box}.pc-table__marker_type_disk.pc-table__marker_index_0{background-color:var(--yc-color-infographics-neutral-light)}.pc-table__marker_type_disk.pc-table__marker_index_1{background-color:var(--yc-my-color-brand-normal)}.pc-table__marker_type_disk.pc-table__marker_index_2{border:1px solid var(--yc-color-text-hint)}.pc-table__legend{display:flex;margin-top:20px;color:var(--yc-color-text-secondary)}.pc-table__legend-item{display:flex;align-items:center}.pc-table__legend-item+.pc-table__legend-item{margin-left:32px}.pc-table__legent-item-text{margin-left:6px}@media(max-width: 577px){.pc-table__cell{min-width:120px}.pc-table__cell:first-child{min-width:230px}}\",\"\"]);const i=o},1233:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-title__description{margin-top:12px}.pc-title__description .yfm{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height)}.pc-title__description_titleSize_s,.pc-title__description_titleSize_xs{margin-top:8px}.pc-title__description_titleSize_s .yfm,.pc-title__description_titleSize_xs .yfm{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}\",\"\"]);const i=o},6235:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-title-item_size_l,.pc-title-item_size_m,.pc-title-item_size_s,.pc-title-item_size_xs{margin:0}.pc-title-item_justify_center{text-align:center}.pc-title-item_justify_end{text-align:right}.pc-title-item_size_xs{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight)}.pc-title-item_size_s{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);margin-top:32px}.pc-title-item_size_m{font-size:var(--yc-text-display-2-font-size);line-height:var(--yc-text-display-2-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);margin-top:48px}@media(max-width: 576px){.pc-title-item_size_m{font-size:var(--yc-text-display-1-font-size);line-height:var(--yc-text-display-1-line-height)}}.pc-title-item_size_l{font-size:var(--yc-text-display-4-font-size);line-height:var(--yc-text-display-4-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);margin-top:96px}@media(max-width: 577px){.pc-title-item_size_l{font-size:var(--yc-text-display-2-font-size);line-height:var(--yc-text-display-2-line-height)}}.pc-title-item__arrow{margin-top:10px}.pc-title-item__arrow_size_xs{margin-top:7px}.pc-title-item__arrow_size_s{margin-top:5px}.pc-title-item__link{color:inherit;text-decoration:none;padding-right:8px}.pc-title-item__link:hover,.pc-title-item__link:active{--pc-text-header-color: inherit;color:inherit}.pc-title-item__link:hover{cursor:pointer}.pc-title-item__link:hover .pc-title-item__arrow{margin-left:10px}.pc-title-item__link:hover .pc-title-item__arrow_size_xs{margin-left:6px}.pc-title-item__link:hover .pc-title-item__arrow_size_s{margin-left:8px}.pc-title-item__text{white-space:normal}.pc-title-item__text a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .pc-title-item__text a:focus{outline:2px solid #ffdb4d}.pc-title-item__text a:hover,.pc-title-item__text a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.pc-title-item__wrapper{white-space:nowrap}.pc-title-item_reset-margin{margin-top:0}@media(max-width: 577px){.pc-title-item_size_l:not(.pc-title-item_reset-margin){margin-top:48px}.pc-title-item__arrow_size_m,.pc-title-item__arrow_size_l{margin-top:9px}}\",\"\"]);const i=o},8514:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-ToggleArrow{transition:transform .15s;stroke-width:2px}.pc-ToggleArrow_type_horizontal{transition:margin-left .3s cubic-bezier(0.22, 0.61, 0.36, 1);transform:rotate(-90deg)}.pc-ToggleArrow_type_vertical{transform:rotate(0deg)}.pc-ToggleArrow_open.pc-ToggleArrow_type_horizontal{transform:rotate(0deg)}.pc-ToggleArrow_open.pc-ToggleArrow_type_vertical{transform:rotate(180deg)}.pc-ToggleArrow_thin{stroke-width:1px}.pc-ToggleArrow_slow{transition-duration:.3s}\",\"\"]);const i=o},4273:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-VideoBlock{position:relative}.pc-VideoBlock__preview{display:flex;justify-content:center;align-items:center;position:absolute;top:0;left:0;width:100%;height:100%}.pc-VideoBlock__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover;display:block}.pc-VideoBlock__image-wrapper{height:100%;width:100%}.pc-VideoBlock__button{display:inline-block;margin:0;padding:0;font:inherit;border:none;outline:none;color:inherit;background:none;cursor:pointer;display:flex;justify-content:center;align-items:center;position:absolute;width:64px;height:64px;color:var(--yc-color-base-background);background-color:var(--yc-color-base-special);border-radius:50%}.pc-VideoBlock__icon{margin-left:6px}\",\"\"]);const i=o},8166:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-loadable-block__loader{padding:20px;text-align:center}\",\"\"]);const i=o},2723:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>c});var n=r(3645),o=r.n(n),i=r(8173),a=o()((function(e){return e[1]}));a.i(i.Z),a.push([e.id,':root{--header-height: 64px}.yc-root{--yc-text-accent-font-weight: 500;--pc-transparent: rgba(255, 255, 255, 0);--pc-border-radius: 24px;--pc-image-padding: 4px;--pc-color-sfx-shadow: var(--yc-color-base-simple-hover);--pc-color-line-generic-active-solid: #b3b3b3;--pc-color-base-float-hover: var(--yc-color-base-float);--pc-monochrome-button-background-color: #262626;--pc-monochrome-button-background-color-hover: #393939;--pc-monochrome-button-color: var(--yc-color-text-light-primary);--pc-text-header-color: var(--yc-color-text-primary);--pc-media-card-meta-info-color: var(--yc-color-text-secondary);--pc-tab-item-color: var(--yc-color-text-primary);--pc-tab-item-background-color: var(--yc-color-base-generic);--pc-tab-item-background-color-hover: var(--yc-color-base-generic-hover);--pc-selected-tab-item-color: var(--pc-monochrome-button-color);--pc-selected-tab-item-background-color: var(--pc-monochrome-button-background-color);--pc-selected-tab-item-background-color-hover: var( --pc-monochrome-button-background-color-hover )}.yc-root.yc-root_theme_dark{--pc-color-sfx-shadow: var(--yc-color-sfx-shadow);--pc-color-line-generic-active-solid: #6c6c70;--pc-color-base-float-hover: var(--yc-color-base-float-hover);--pc-monochrome-button-background-color: #ffffff;--pc-monochrome-button-background-color-hover: #e9e9e9;--pc-monochrome-button-color: var(--yc-color-text-dark-primary)}.yfm_constructor{font-family:var(--yc-font-family-sans);color:var(--yc-color-text-primary)}.yfm_constructor code,.yfm_constructor kbd,.yfm_constructor pre{font-family:var(--yc-font-family-monospace);color:var(--yc-color-text-primary)}.yfm_constructor.yfm_constructor h1,.yfm_constructor.yfm_constructor h2,.yfm_constructor.yfm_constructor h3,.yfm_constructor.yfm_constructor h4,.yfm_constructor.yfm_constructor h5,.yfm_constructor.yfm_constructor h6,.yfm_constructor.yfm_constructor span,.yfm_constructor.yfm_constructor p,.yfm_constructor.yfm_constructor li{color:var(--yc-color-text-primary)}.yfm_constructor.yfm_constructor_notice li,.yfm_constructor.yfm_constructor_notice p{color:var(--yc-color-text-secondary)}.yfm_constructor.yfm_constructor ul,.yfm_constructor.yfm_constructor ol,.yfm_constructor.yfm_constructor li,.yfm_constructor.yfm_constructor p{margin:0 0 12px}.yfm_constructor.yfm_constructor p strong{font-weight:500}.yfm_constructor.yfm_constructor_size_s ul,.yfm_constructor.yfm_constructor_size_s ol,.yfm_constructor.yfm_constructor_size_s li,.yfm_constructor.yfm_constructor_size_s p{margin-bottom:8px}.yfm_constructor_theme_dark p{color:var(--yc-color-text-light-primary)}.yfm_constructor_list_style ul{padding-left:20px}.yfm_constructor_list_style_dash ul{list-style-type:none;position:relative}.yfm_constructor_list_style_dash ul li:before{content:\"—\";position:absolute;margin-left:-20px}.yfm_constructor a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .yfm_constructor a:focus{outline:2px solid #ffdb4d}.yfm_constructor a:hover,.yfm_constructor a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.yfm_constructor table{color:var(--yc-color-text-primary);border:1px solid var(--yc-color-line-generic);background:var(--yc-color-base-background)}.yfm_constructor thead,.yfm_constructor table tr:nth-child(2n){background-color:var(--yc-color-base-generic)}.yfm_constructor_table table{border:0;table-layout:fixed}.yfm_constructor_table thead,.yfm_constructor_table tr{background-color:rgba(0,0,0,0) !important}.yfm_constructor_table tbody tr{border-top:1px solid var(--yc-color-line-generic)}.yfm_constructor_table td,.yfm_constructor_table th{min-width:120px;width:120px;box-sizing:content-box;white-space:inherit !important}.yfm_constructor_table td:first-child,.yfm_constructor_table th:first-child{min-width:172px;width:172px}.yfm_constructor_table th{text-align:left !important}.pc-page-constructor{font-feature-settings:\"liga\",\"kern\",\"pnum\" on,\"lnum\" on,\"ss03\" on;margin-top:0;background-color:var(--yc-color-base-background);z-index:10}.pc-page-constructor__wrapper{position:relative}.pc-page-constructor__background.pc-page-constructor__background{top:calc(-1*var(--header-height))}',\"\"]);const c=a},9268:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-constructor-row:last-child{margin-bottom:-64px}@media(max-width: 577px){.pc-constructor-row:last-child{margin-bottom:-32px}}\",\"\"]);const i=o},55:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-Grid .container-fluid,.pc-Grid .container{max-width:calc(1232px + 8px * 2 + 40px * 2)}.pc-Grid .row{margin-right:0;margin-left:0}.pc-Grid .pc-Grid .container-fluid,.pc-Grid .pc-Grid .container{padding:0}.pc-Grid .row .row{margin:0 -8px}.pc-Grid_debug .container,.pc-Grid_debug .container-fluid,.pc-Grid_debug [class*=col-]{box-sizing:border-box;border:1px solid var(--yc-color-line-generic)}@media only screen and (max-width: 577px){.pc-Grid .container,.pc-Grid .container-fluid{padding:0 16px}.pc-Grid .col,.pc-Grid .col-sm-auto,.pc-Grid .col-auto{padding:0 8px}.pc-Grid .col-sm-0,.pc-Grid .col-0{padding:0 8px}.pc-Grid .col-sm-1,.pc-Grid .col-1{padding:0 8px}.pc-Grid .col-sm-2,.pc-Grid .col-2{padding:0 8px}.pc-Grid .col-sm-3,.pc-Grid .col-3{padding:0 8px}.pc-Grid .col-sm-4,.pc-Grid .col-4{padding:0 8px}.pc-Grid .col-sm-5,.pc-Grid .col-5{padding:0 8px}.pc-Grid .col-sm-6,.pc-Grid .col-6{padding:0 8px}.pc-Grid .col-sm-7,.pc-Grid .col-7{padding:0 8px}.pc-Grid .col-sm-8,.pc-Grid .col-8{padding:0 8px}.pc-Grid .col-sm-9,.pc-Grid .col-9{padding:0 8px}.pc-Grid .col-sm-10,.pc-Grid .col-10{padding:0 8px}.pc-Grid .col-sm-11,.pc-Grid .col-11{padding:0 8px}.pc-Grid .col-sm-12,.pc-Grid .col-12{padding:0 8px}.pc-Grid .row .row{margin:0 -8px}}\",\"\"]);const i=o},1523:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\"/*!\\n * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)\\n * Copyright 2011-2018 The Bootstrap Authors\\n * Copyright 2011-2018 Twitter, Inc.\\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\\n */html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,*::before,*::after{box-sizing:inherit}.container{width:100%;padding-right:40px;padding-left:40px;margin-right:auto;margin-left:auto}@media(min-width: 577px){.container{max-width:577px}}@media(min-width: 769px){.container{max-width:769px}}@media(min-width: 1081px){.container{max-width:1081px}}@media(min-width: 1185px){.container{max-width:1185px}}.container-fluid{width:100%;padding-right:40px;padding-left:40px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-8px;margin-left:-8px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col,.col-auto,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm,.col-sm-auto,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md,.col-md-auto,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg,.col-lg-auto,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:8px;padding-left:8px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:none}.col-1{flex:0 0 8.333333%;max-width:8.333333%}.col-2{flex:0 0 16.666667%;max-width:16.666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.333333%;max-width:33.333333%}.col-5{flex:0 0 41.666667%;max-width:41.666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.333333%;max-width:58.333333%}.col-8{flex:0 0 66.666667%;max-width:66.666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.333333%;max-width:83.333333%}.col-11{flex:0 0 91.666667%;max-width:91.666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media(min-width: 577px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:none}.col-sm-1{flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media(min-width: 769px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;width:auto;max-width:none}.col-md-1{flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media(min-width: 1081px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:none}.col-lg-1{flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media(min-width: 1185px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:none}.col-xl-1{flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}@media(min-width: 577px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 769px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}}@media(min-width: 1081px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1185px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-fill{flex:1 1 auto !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}@media(min-width: 577px){.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}}@media(min-width: 769px){.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}}@media(min-width: 1081px){.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}}@media(min-width: 1185px){.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}}.col-reset{padding-left:0 !important;padding-right:0 !important;margin:0}\",\"\"]);const i=o},6035:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-desktop-navigation__wrapper{display:flex;justify-content:space-between;align-items:center;height:var(--header-height)}@media(min-width: 769px){.pc-desktop-navigation__mobile-menu-button.pc-desktop-navigation__mobile-menu-button{display:none}}.pc-desktop-navigation__navigation,.pc-desktop-navigation__left,.pc-desktop-navigation__right{display:flex;align-items:center}.pc-desktop-navigation__navigation.pc-desktop-navigation__navigation{position:relative;flex:1 0 0;justify-content:flex-start}@media(max-width: 768px){.pc-desktop-navigation__navigation.pc-desktop-navigation__navigation{display:none}}.pc-desktop-navigation__right{flex:0;justify-content:flex-end;font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-desktop-navigation__navigation-container{display:flex;overflow-x:hidden;flex:1 0 0;justify-content:space-between;align-items:center;margin-right:32px}.pc-desktop-navigation__button{margin-top:0}.pc-desktop-navigation__logo{margin:0 32px 0 0;cursor:pointer}.pc-desktop-navigation__buttons,.pc-desktop-navigation__links{display:flex;align-items:center;margin:0;padding:0;list-style:none}@media(max-width: 768px){.pc-desktop-navigation__buttons{display:none}}.pc-desktop-navigation__buttons>*:not(:last-child){margin-right:16px}.pc-desktop-navigation__links{position:relative;font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-desktop-navigation__item{position:relative}.pc-desktop-navigation__item:not(:last-child){margin-right:20px}@media(max-width: 768px){.pc-desktop-navigation__navigation-container{justify-content:flex-end}.pc-desktop-navigation__left{flex:1 0 0}}@media(max-width: 576px){.pc-desktop-navigation__navigation-container{margin-right:12px}.pc-desktop-navigation__logo{margin-right:0}}\",\"\"]);const i=o},269:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-logo__text{margin:0}.pc-logo{display:flex;align-items:center}.pc-logo__icon{display:flex;margin-right:8px;-o-object-fit:contain;object-fit:contain}.pc-logo__text{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);white-space:nowrap}\",\"\"]);const i=o},7819:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\"@media(min-width: 769px){.pc-mobile-menu-button.pc-mobile-menu-button{display:none}}\",\"\"]);const i=o},7215:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-mobile-navigation{position:fixed;z-index:100;top:var(--header-height);left:0;width:100%;border-bottom-right-radius:var(--pc-border-radius);border-bottom-left-radius:var(--pc-border-radius);background-color:var(--yc-color-base-background);box-shadow:0 3px 10px var(--yc-color-sfx-shadow);max-height:calc(100vh - 2*var(--header-height));overflow-y:scroll;scrollbar-width:none;-ms-overflow-style:none;font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-mobile-navigation::-webkit-scrollbar{display:none}@media(min-width: 769px){.pc-mobile-navigation{display:none}}.pc-mobile-navigation__wrapper{padding:32px 48px}.pc-mobile-navigation__button{margin-top:24px}.pc-mobile-navigation__rows{position:relative;display:flex;flex-direction:column;padding-bottom:24px;margin:0;padding:0;list-style:none;margin-bottom:24px}.pc-mobile-navigation__rows:last-child{margin-bottom:0}.pc-mobile-navigation__dropdown-item:not(:last-child){margin-bottom:16px}.pc-mobile-navigation__popup{z-index:101;display:flex;flex-direction:column;min-width:220px;padding:16px;border:1px solid var(--yc-color-line-generic);border-top-width:0;border-radius:calc(var(--pc-border-radius) / 2);background:var(--yc-color-base-float);box-shadow:0 3px 10px var(--yc-color-sfx-shadow)}@media(min-width: 769px){.pc-mobile-navigation__popup{display:none}}@media(max-width: 576px){.pc-mobile-navigation__wrapper{padding-left:24px;padding-right:24px}}\",\"\"]);const i=o},7520:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-navigation{position:sticky;z-index:98;top:0;display:flex;justify-content:center;align-items:center;height:var(--header-height);background-color:var(--yc-color-base-background)}.pc-navigation_with-border{box-shadow:inset 0 -1px 0 var(--yc-color-line-generic)}\",\"\"]);const i=o},4709:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-navigation-item{cursor:pointer;outline:none;color:inherit;text-decoration:none}.pc-navigation-item:last-child{margin-bottom:0}.utilityfocus .pc-navigation-item:focus{outline:2px solid #ffdb4d}.pc-navigation-item__content:hover,.pc-navigation-item__content:active{color:var(--yc-color-text-link)}.pc-navigation-item_menu-layout_desktop{height:var(--header-height);line-height:var(--header-height);margin-bottom:0}.pc-navigation-item_menu-layout_mobile{margin-bottom:24px}.pc-navigation-item_menu-layout_dropdown{margin-bottom:0}\",\"\"]);const i=o},6928:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-content-wrapper__icon{display:flex;margin-right:6px;-o-object-fit:cover;object-fit:cover}\",\"\"]);const i=o},5828:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-github-button{position:relative;display:flex;align-items:center;white-space:nowrap;display:flex;align-items:center;height:100%}.pc-github-button span{display:flex;flex-direction:column;justify-content:center}\",\"\"]);const i=o},4594:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-navigation-button{display:inline-block}\",\"\"]);const i=o},8720:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-navigation-dropdown{position:relative;display:flex;align-items:center;white-space:nowrap}.pc-navigation-dropdown__arrow{margin-left:7px;color:var(--yc-color-text-secondary)}\",\"\"]);const i=o},4534:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-navigation-link{color:var(--yc-color-text-primary);color:inherit;text-decoration:none;outline:none;position:relative;display:flex;align-items:center;white-space:nowrap}.utilityfocus .pc-navigation-link:focus{outline:2px solid #ffdb4d}.pc-navigation-link:hover,.pc-navigation-link_active{color:var(--yc-color-text-link)}.pc-navigation-link__arrow{position:relative;top:-2px;width:9px;height:9px;margin-left:5px}\",\"\"]);const i=o},3649:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-navigation-popup{margin-left:-16px;margin-top:-16px;z-index:101;display:flex;flex-direction:column;min-width:220px;padding:16px;border:1px solid var(--yc-color-line-generic);border-top-width:0;border-radius:calc(var(--pc-border-radius) / 2);background:var(--yc-color-base-float);box-shadow:0 3px 10px var(--yc-color-sfx-shadow)}.pc-navigation-popup__list{margin:0;padding:0;list-style:none}.pc-navigation-popup__link{height:36px;line-height:20px;padding:8px 12px;border-radius:8px}.pc-navigation-popup__link:hover{color:var(--yc-color-text-primary);background-color:var(--yc-color-base-simple-hover)}\",\"\"]);const i=o},4873:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-social-icon{display:flex;justify-content:center;align-items:center;width:40px;height:40px;margin-right:8px;color:var(--yc-color-base-background);border-radius:50%;background-color:var(--yc-color-base-generic)}.pc-social-icon:hover{background-color:var(--yc-color-base-generic-hover)}.pc-social-icon__icon{width:16px;height:16px}\",\"\"]);const i=o},3465:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".layout{display:flex;flex-direction:column;min-height:100vh}.layout__content{display:flex;flex-grow:1;flex-direction:column}\",\"\"]);const i=o},4620:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-background-card{position:relative}.pc-background-card_theme_light{background-color:var(--yc-color-promo-base-silver)}.pc-background-card_theme_dark{background-color:var(--yc-color-promo-base-asphalt)}.pc-background-card_padding_s{padding-bottom:80px}.pc-background-card_padding_m{padding-bottom:160px}.pc-background-card_padding_l{padding-bottom:240px}.pc-background-card_padding_xl{padding-bottom:320px}.pc-background-card_border_none{box-shadow:none;cursor:default;border:none}.pc-background-card__image{position:absolute;top:0;left:0;width:100%;height:100%}.pc-background-card__image img{-o-object-fit:cover;object-fit:cover;-o-object-position:left;object-position:left}a.pc-background-card_theme_light{background-color:var(--yc-color-promo-base-silver)}a.pc-background-card_theme_dark{background-color:var(--yc-color-promo-base-asphalt)}\",\"\"]);const i=o},9741:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-banner-card__subtitle p,.pc-banner-card__subtitle,.pc-banner-card__title{margin:0}.pc-banner-card_theme_dark.pc-banner-card_theme_dark .pc-banner-card__title,.pc-banner-card_theme_dark.pc-banner-card_theme_dark .pc-banner-card__subtitle{color:var(--yc-color-text-light-primary)}.pc-banner-card_theme_dark.pc-banner-card_theme_dark .pc-banner-card__title p,.pc-banner-card_theme_dark.pc-banner-card_theme_dark .pc-banner-card__subtitle p{color:var(--yc-color-text-light-primary)}.pc-banner-card__title{font-size:var(--yc-text-display-2-font-size);line-height:var(--yc-text-display-2-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight)}@media(max-width: 576px){.pc-banner-card__title{font-size:var(--yc-text-display-1-font-size);line-height:var(--yc-text-display-1-line-height)}}.pc-banner-card__title a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .pc-banner-card__title a:focus{outline:2px solid #ffdb4d}.pc-banner-card__title a:hover,.pc-banner-card__title a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.pc-banner-card__content{width:100%;border-radius:var(--pc-border-radius);display:flex;min-height:320px}.pc-banner-card__info,.pc-banner-card__image{flex:1}.pc-banner-card__info{padding:32px;display:flex;justify-content:space-between;flex-direction:column;align-items:baseline}.pc-banner-card__subtitle{display:inline-block;margin-top:8px;font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);font-weight:normal}.pc-banner-card__subtitle p{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height);color:var(--pc-text-header-color);font-weight:var(--yc-text-accent-font-weight);font-weight:normal}.pc-banner-card__button.pc-banner-card__button{margin-top:28px}.pc-banner-card__image{border-top-right-radius:var(--pc-border-radius);border-bottom-right-radius:var(--pc-border-radius);margin:var(--pc-image-padding);border-radius:calc(var(--pc-border-radius) - var(--pc-image-padding))}.pc-banner-card__image img{-o-object-fit:cover;object-fit:cover;-o-object-position:left;object-position:left}@media(max-width: 576px){.pc-banner-card__image{display:none}}\",\"\"]);const i=o},5693:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-basic-card.pc-basic-card{min-height:auto}.pc-basic-card__icon{max-width:100%;margin-bottom:12px;height:32px;-o-object-fit:contain;object-fit:contain;display:block}\",\"\"]);const i=o},7505:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-content_size_l .pc-content__text .yfm,.pc-content_size_l .pc-content__notice .yfm{margin:0}.pc-content{--pc-monochrome-button-background-color: #262626;--pc-monochrome-button-background-color-hover: #393939;--pc-monochrome-button-color: var(--yc-color-text-light-primary)}.pc-content__notice .yfm ol,.pc-content__notice .yfm ul,.pc-content__text .yfm ol,.pc-content__text .yfm ul{padding-left:1.4em}.pc-content__notice.pc-content__notice .yfm,.pc-content__notice.pc-content__notice .yfm>*{color:var(--yc-color-text-secondary)}.pc-content__notice.pc-content__notice .yfm a{color:var(--yc-color-text-secondary);text-decoration:underline}.pc-content__notice.pc-content__notice .yfm a:hover{color:var(--yc-color-text-primary)}.pc-content__button.pc-content__button{margin-top:0;margin-right:12px}.pc-content__button.pc-content__button:last-child{margin-right:0}.pc-content__links{display:flex;flex-direction:column;align-items:baseline}.pc-content__link{display:block}.pc-content_centered.pc-content_centered{margin:0 auto;text-align:center}.pc-content_centered .pc-content__links{align-items:center}.pc-content_centered .pc-content__link a{justify-content:center}.pc-content_centered .pc-content__notice .yfm ul,.pc-content_centered .pc-content__notice .yfm ol,.pc-content_centered .pc-content__text .yfm ul,.pc-content_centered .pc-content__text .yfm ol{text-align:left}.pc-content_size_s .pc-content__text,.pc-content_size_s .pc-content__notice{margin-top:8px}.pc-content_size_s .pc-content__text_without-title{margin-top:0}.pc-content_size_s .pc-content__links,.pc-content_size_s .pc-content__link,.pc-content_size_s .pc-content__buttons,.pc-content_size_s .pc-content__button{margin-top:8px}.pc-content_size_l .pc-content__text,.pc-content_size_l .pc-content__notice{margin-top:12px}.pc-content_size_l .pc-content__text_without-title{margin-top:0}.pc-content_size_l .pc-content__text .yfm,.pc-content_size_l .pc-content__notice .yfm{font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height)}.pc-content_size_l .pc-content__links,.pc-content_size_l .pc-content__link,.pc-content_size_l .pc-content__buttons,.pc-content_size_l .pc-content__button{margin-top:12px}.pc-content_theme_dark .pc-content__title *,.pc-content_theme_dark .pc-content__text .yfm,.pc-content_theme_dark .pc-content__text .yfm *,.pc-content_theme_dark .pc-content__link a{color:var(--yc-color-text-light-primary)}.pc-content_theme_dark .pc-content__notice .yfm,.pc-content_theme_dark .pc-content__notice .yfm *{color:var(--yc-color-text-light-secondary)}.pc-content_theme_dark .pc-content__notice .yfm a{color:var(--yc-color-text-light-secondary);text-decoration:underline}.pc-content_theme_dark .pc-content__notice .yfm a:hover{color:var(--yc-color-text-light-primary)}.pc-content_theme_dark .pc-content__text .yfm a{color:var(--yc-color-text-light-primary);text-decoration:underline}.pc-content_theme_dark .pc-content__text .yfm a:hover{color:var(--yc-color-text-light-secondary)}.pc-content_theme_dark .pc-content__title a{color:var(--yc-color-text-light-primary);text-decoration:underline;text-decoration:none}.pc-content_theme_dark .pc-content__title a:hover{color:var(--yc-color-text-light-secondary)}.pc-content_theme_light .pc-content__title *,.pc-content_theme_light .pc-content__text .yfm,.pc-content_theme_light .pc-content__text .yfm *,.pc-content_theme_light .pc-content__link a{color:var(--yc-color-text-dark-primary)}.pc-content_theme_light .pc-content__notice .yfm,.pc-content_theme_light .pc-content__notice .yfm *{color:var(--yc-color-text-dark-secondary)}.pc-content_theme_light .pc-content__notice .yfm a{color:var(--yc-color-text-dark-secondary);text-decoration:underline}.pc-content_theme_light .pc-content__notice .yfm a:hover{color:var(--yc-color-text-dark-primary)}.pc-content_theme_light .pc-content__text .yfm a{color:var(--yc-color-text-dark-primary);text-decoration:underline}.pc-content_theme_light .pc-content__text .yfm a:hover{color:var(--yc-color-text-dark-secondary)}.pc-content_theme_light .pc-content__title a{color:var(--yc-color-text-dark-primary);text-decoration:underline;text-decoration:none}.pc-content_theme_light .pc-content__title a:hover{color:var(--yc-color-text-dark-secondary)}\",\"\"]);const i=o},4858:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-divider-block_size_xxs{padding-top:12px}.pc-divider-block_size_xs{padding-top:16px}.pc-divider-block_size_s{padding-top:24px}.pc-divider-block_size_m{padding-top:32px}.pc-divider-block_size_l{padding-top:48px}.pc-divider-block_size_xl{padding-top:64px}.pc-divider-block_size_xxl{padding-top:96px}.pc-divider-block_size_xxxl{padding-top:128px}.pc-divider-block_border{border-top:1px solid var(--yc-color-line-generic)}\",\"\"]);const i=o},9766:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-layout-item__media{width:100%;display:block;border-radius:var(--pc-border-radius)}.pc-layout-item__media_border{border:1px solid var(--yc-color-line-generic)}.pc-layout-item__meta-info{margin:16px 0 -8px 0}.pc-layout-item__content{margin:16px 16px 0 0}\",\"\"]);const i=o},4606:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-MediaCard__body{padding:0}\",\"\"]);const i=o},6425:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-combined-price-detailed-block__row{margin:0 !important}.pc-combined-price-detailed-block__row .col{padding:0;margin:12px}.pc-combined-price-detailed-block__row>*{display:flex;width:100%}.pc-combined-price-detailed-block__row:not(:last-child){border-bottom:1px solid var(--yc-color-line-generic);margin-bottom:12px !important;padding-bottom:12px}@media(min-width: 1081px){.pc-combined-price-detailed-block__description>*{padding-top:12px}.pc-combined-price-detailed-block__description_delimiter>*{border-top:1px solid var(--yc-color-line-generic)}.pc-combined-price-detailed-block__empty-column{border-top:0}}@media(max-width: 1080px){.pc-combined-price-detailed-block__description>*{margin-top:0 !important}}\",\"\"]);const i=o},3408:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-price-description{margin-bottom:12px}.pc-price-description__title_size_l,.pc-price-description__description_size_l,.pc-price-description__detailed-title_size_l,.pc-price-description__label_size_l{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height)}.pc-price-description__title_size_m,.pc-price-description__description_size_m,.pc-price-description__detailed-title_size_m,.pc-price-description__label_size_m{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-price-description__title_size_s,.pc-price-description__description_size_s,.pc-price-description__detailed-title_size_s,.pc-price-description__label_size_s{font-size:var(--yc-text-body-1-font-size);line-height:var(--yc-text-body-1-line-height)}.pc-price-description__main-title{font-weight:500}.pc-price-description__main-title_color_cornflower{color:var(--yc-my-color-brand-normal)}.pc-price-description__main-title_color_black{color:var(--yc-color-text-primary)}.pc-price-description__title{display:flex;padding:16px 0 12px 0;align-items:flex-end}.pc-price-description__description{font-weight:400}.pc-price-description__detailed-title{margin-left:4px}.pc-price-description__label{padding:4px 12px;border-radius:4px;width:-moz-fit-content;width:fit-content}.pc-price-description__label_color_blue{background:var(--yc-color-promo-highlight-sky)}.pc-price-description__label_color_green{background:var(--yc-color-promo-highlight-mint)}.pc-price-description__label_color_yellow{background:var(--yc-color-promo-highlight-gold)}.pc-price-description__label_color_purple{background:var(--yc-color-promo-highlight-neon)}.pc-price-description__label_color_red{background:var(--yc-color-promo-highlight-tomato)}@media(max-width: 577px){.pc-price-description{min-width:160px}}\",\"\"]);const i=o},6932:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'.pc-marked-list__list-item{display:flex}.pc-marked-list__text{margin-left:8px}.pc-marked-list__img{margin-top:5px;height:-moz-fit-content;height:fit-content;content:url(\"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwYXRoIGQ9Ik0xLjUgNCA1IDcuNSAxMS41IDEiIHN0cm9rZT0iIzUyODJGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==\")}',\"\"]);const i=o},2592:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-settings-list__title,.pc-settings-list__description{font-weight:400}.pc-settings-list__title_size_l,.pc-settings-list__description_size_l{font-size:var(--yc-text-header-1-font-size);line-height:var(--yc-text-header-1-line-height)}.pc-settings-list__title_size_m,.pc-settings-list__description_size_m{font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-settings-list__title_size_s,.pc-settings-list__description_size_s{font-size:var(--yc-text-body-1-font-size);line-height:var(--yc-text-body-1-line-height)}.pc-settings-list__title{color:var(--yc-color-text-hint)}\",\"\"]);const i=o},3861:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\"@media(min-width: 1081px){.pc-price-details__non_foldable{display:block}.pc-price-details__foldable{display:none}}@media(max-width: 1080px){.pc-price-details__non_foldable{display:none}.pc-price-details__foldable{display:block}}.pc-price-details__delimiter-line{border-top:1px solid var(--yc-color-line-generic)}.pc-price-details__arrow{margin:auto 10px}.pc-price-details__foldable_title{cursor:pointer;display:flex;font-weight:400;font-size:var(--yc-text-body-2-font-size);line-height:var(--yc-text-body-2-line-height)}.pc-price-details__foldable_title_color_cornflower{color:var(--yc-color-text-link)}.pc-price-details__foldable_title_color_black{color:var(--yc-color-text-primary)}.pc-price-details__foldable_block>*{padding-top:12px}.pc-price-details .pc-settings-list__title{margin-bottom:2px}\",\"\"]);const i=o},1085:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,\".pc-separate-price-detailed-block .pc-price-description{margin-bottom:0}.pc-separate-price-detailed-block .pc-price-details>*{padding-top:12px}.pc-separate-price-detailed-block .pc-price-details{margin-top:24px}\",\"\"]);const i=o},8994:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>i});var n=r(3645),o=r.n(n)()((function(e){return e[1]}));o.push([e.id,'.pc-quote_border_shadow{box-shadow:0px 4px 24px var(--pc-color-sfx-shadow),0px 2px 8px var(--pc-color-sfx-shadow)}.pc-quote{min-height:248px;height:100%;overflow-x:hidden;border-radius:var(--pc-border-radius);background-color:var(--yc-color-base-float);transition:box-shadow .3s cubic-bezier(0.22, 0.61, 0.36, 1);display:flex;min-height:400px;height:100%}.pc-quote_theme_dark{color:var(--yc-color-text-light-primary)}.pc-quote_theme_dark h1,.pc-quote_theme_dark h2,.pc-quote_theme_dark h3,.pc-quote_theme_dark h4,.pc-quote_theme_dark h5,.pc-quote_theme_dark h6,.pc-quote_theme_dark .yfm{color:var(--yc-color-text-light-primary)}.pc-quote_border_line{border:1px solid var(--yc-color-line-generic)}.pc-quote_border_line,.pc-quote_border_none{cursor:default}@media(min-width: 577px){.slick-slide:not(.slick-active) .pc-quote{box-shadow:none}}.pc-quote__logo{height:48px}.pc-quote__content-wrapper{display:flex;flex-direction:column;justify-content:space-between;width:calc(50% + 5px * 2);margin-right:5px;padding:48px 32px 48px 48px}.pc-quote__image-wrapper{flex:1;margin-left:5px;overflow:hidden;margin:var(--pc-image-padding);border-radius:calc(var(--pc-border-radius) - var(--pc-image-padding))}.pc-quote__content{margin-top:24px;position:relative;font-size:var(--yc-text-body-3-font-size);line-height:var(--yc-text-body-3-line-height)}.pc-quote__content::before{position:absolute;top:-1px;left:-10px;content:\"«\"}.pc-quote__text::after{content:\"».\"}.pc-quote__image{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.pc-quote__author-wrapper{display:flex;justify-content:space-between;align-items:flex-end;margin-top:20px}.pc-quote__author_theme_dark,.pc-quote_theme_dark{color:var(--yc-color-text-light-primary)}.pc-quote__author_theme_dark h1,.pc-quote__author_theme_dark h2,.pc-quote__author_theme_dark h3,.pc-quote__author_theme_dark h4,.pc-quote__author_theme_dark h5,.pc-quote__author_theme_dark h6,.pc-quote__author_theme_dark .yfm,.pc-quote_theme_dark h1,.pc-quote_theme_dark h2,.pc-quote_theme_dark h3,.pc-quote_theme_dark h4,.pc-quote_theme_dark h5,.pc-quote_theme_dark h6,.pc-quote_theme_dark .yfm{color:var(--yc-color-text-light-primary)}.pc-quote__author{max-width:calc(60% - 20px);margin-right:20px}.pc-quote__link-button_theme_dark{color:var(--yc-color-base-background) !important}.pc-quote__link-button_theme_dark:before{border-color:var(--yc-color-base-background) !important}@media(max-width: 1081px){.pc-quote__author-wrapper{flex-direction:column}.pc-quote__author{margin-right:0;margin-bottom:32px;max-width:initial}.pc-quote__link-button{align-self:flex-start}}@media(max-width: 769px){.pc-quote__content-wrapper{width:calc(75% + 5px * 2)}}@media(max-width: 577px){.pc-quote__image-wrapper{display:none}.pc-quote__content-wrapper{padding:32px}.pc-quote__content-wrapper{width:100%}}',\"\"]);const i=o},3450:(e,t,r)=>{\"use strict\";r.d(t,{Z:()=>l});var n=r(3645),o=r.n(n),i=r(707),a=r(8173),c=o()((function(e){return e[1]}));c.i(i.Z),c.i(a.Z),c.push([e.id,'.yfm_constructor{font-family:var(--yc-font-family-sans);color:var(--yc-color-text-primary)}.yfm_constructor code,.yfm_constructor kbd,.yfm_constructor pre{font-family:var(--yc-font-family-monospace);color:var(--yc-color-text-primary)}.yfm_constructor.yfm_constructor h1,.yfm_constructor.yfm_constructor h2,.yfm_constructor.yfm_constructor h3,.yfm_constructor.yfm_constructor h4,.yfm_constructor.yfm_constructor h5,.yfm_constructor.yfm_constructor h6,.yfm_constructor.yfm_constructor span,.yfm_constructor.yfm_constructor p,.yfm_constructor.yfm_constructor li{color:var(--yc-color-text-primary)}.yfm_constructor.yfm_constructor_notice li,.yfm_constructor.yfm_constructor_notice p{color:var(--yc-color-text-secondary)}.yfm_constructor.yfm_constructor ul,.yfm_constructor.yfm_constructor ol,.yfm_constructor.yfm_constructor li,.yfm_constructor.yfm_constructor p{margin:0 0 12px}.yfm_constructor.yfm_constructor p strong{font-weight:500}.yfm_constructor.yfm_constructor_size_s ul,.yfm_constructor.yfm_constructor_size_s ol,.yfm_constructor.yfm_constructor_size_s li,.yfm_constructor.yfm_constructor_size_s p{margin-bottom:8px}.yfm_constructor_theme_dark p{color:var(--yc-color-text-light-primary)}.yfm_constructor_list_style ul{padding-left:20px}.yfm_constructor_list_style_dash ul{list-style-type:none;position:relative}.yfm_constructor_list_style_dash ul li:before{content:\"—\";position:absolute;margin-left:-20px}.yfm_constructor a{outline:none;color:var(--yc-color-text-link);text-decoration:none;cursor:pointer}.utilityfocus .yfm_constructor a:focus{outline:2px solid #ffdb4d}.yfm_constructor a:hover,.yfm_constructor a:active{--pc-text-header-color: var(--yc-color-text-link-hover);color:var(--yc-color-text-link-hover)}.yfm_constructor table{color:var(--yc-color-text-primary);border:1px solid var(--yc-color-line-generic);background:var(--yc-color-base-background)}.yfm_constructor thead,.yfm_constructor table tr:nth-child(2n){background-color:var(--yc-color-base-generic)}.yfm_constructor_table table{border:0;table-layout:fixed}.yfm_constructor_table thead,.yfm_constructor_table tr{background-color:rgba(0,0,0,0) !important}.yfm_constructor_table tbody tr{border-top:1px solid var(--yc-color-line-generic)}.yfm_constructor_table td,.yfm_constructor_table th{min-width:120px;width:120px;box-sizing:content-box;white-space:inherit !important}.yfm_constructor_table td:first-child,.yfm_constructor_table th:first-child{min-width:172px;width:172px}.yfm_constructor_table th{text-align:left !important}',\"\"]);const l=c},3645:e=>{\"use strict\";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r=e(t);return t[2]?\"@media \".concat(t[2],\" {\").concat(r,\"}\"):r})).join(\"\")},t.i=function(e,r,n){\"string\"==typeof e&&(e=[[null,e,\"\"]]);var o={};if(n)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var c=0;c<e.length;c++){var l=[].concat(e[c]);n&&o[l[0]]||(r&&(l[2]?l[2]=\"\".concat(r,\" and \").concat(l[2]):l[2]=r),t.push(l))}},t}},9996:e=>{\"use strict\";var t=function(e){return function(e){return!!e&&\"object\"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return\"[object RegExp]\"===t||\"[object Date]\"===t||function(e){return e.$$typeof===r}(e)}(e)};var r=\"function\"==typeof Symbol&&Symbol.for?Symbol.for(\"react.element\"):60103;function n(e,t){return!1!==t.clone&&t.isMergeableObject(e)?l((r=e,Array.isArray(r)?[]:{}),e,t):e;var r}function o(e,t,r){return e.concat(t).map((function(e){return n(e,r)}))}function i(e){return Object.keys(e).concat(function(e){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(e).filter((function(t){return Object.propertyIsEnumerable.call(e,t)})):[]}(e))}function a(e,t){try{return t in e}catch(e){return!1}}function c(e,t,r){var o={};return r.isMergeableObject(e)&&i(e).forEach((function(t){o[t]=n(e[t],r)})),i(t).forEach((function(i){(function(e,t){return a(e,t)&&!(Object.hasOwnProperty.call(e,t)&&Object.propertyIsEnumerable.call(e,t))})(e,i)||(a(e,i)&&r.isMergeableObject(t[i])?o[i]=function(e,t){if(!t.customMerge)return l;var r=t.customMerge(e);return\"function\"==typeof r?r:l}(i,r)(e[i],t[i],r):o[i]=n(t[i],r))})),o}function l(e,r,i){(i=i||{}).arrayMerge=i.arrayMerge||o,i.isMergeableObject=i.isMergeableObject||t,i.cloneUnlessOtherwiseSpecified=n;var a=Array.isArray(r);return a===Array.isArray(e)?a?i.arrayMerge(e,r,i):c(e,r,i):n(r,i)}l.all=function(e,t){if(!Array.isArray(e))throw new Error(\"first argument should be an array\");return e.reduce((function(e,r){return l(e,r,t)}),{})};var s=l;e.exports=s},2988:(e,t,r)=>{var n=r(1755),o=r(6665).each;function i(e,t){this.query=e,this.isUnconditional=t,this.handlers=[],this.mql=window.matchMedia(e);var r=this;this.listener=function(e){r.mql=e.currentTarget||e,r.assess()},this.mql.addListener(this.listener)}i.prototype={constuctor:i,addHandler:function(e){var t=new n(e);this.handlers.push(t),this.matches()&&t.on()},removeHandler:function(e){var t=this.handlers;o(t,(function(r,n){if(r.equals(e))return r.destroy(),!t.splice(n,1)}))},matches:function(){return this.mql.matches||this.isUnconditional},clear:function(){o(this.handlers,(function(e){e.destroy()})),this.mql.removeListener(this.listener),this.handlers.length=0},assess:function(){var e=this.matches()?\"on\":\"off\";o(this.handlers,(function(t){t[e]()}))}},e.exports=i},8177:(e,t,r)=>{var n=r(2988),o=r(6665),i=o.each,a=o.isFunction,c=o.isArray;function l(){if(!window.matchMedia)throw new Error(\"matchMedia not present, legacy browsers require a polyfill\");this.queries={},this.browserIsIncapable=!window.matchMedia(\"only all\").matches}l.prototype={constructor:l,register:function(e,t,r){var o=this.queries,l=r&&this.browserIsIncapable;return o[e]||(o[e]=new n(e,l)),a(t)&&(t={match:t}),c(t)||(t=[t]),i(t,(function(t){a(t)&&(t={match:t}),o[e].addHandler(t)})),this},unregister:function(e,t){var r=this.queries[e];return r&&(t?r.removeHandler(t):(r.clear(),delete this.queries[e])),this}},e.exports=l},1755:e=>{function t(e){this.options=e,!e.deferSetup&&this.setup()}t.prototype={constructor:t,setup:function(){this.options.setup&&this.options.setup(),this.initialised=!0},on:function(){!this.initialised&&this.setup(),this.options.match&&this.options.match()},off:function(){this.options.unmatch&&this.options.unmatch()},destroy:function(){this.options.destroy?this.options.destroy():this.off()},equals:function(e){return this.options===e||this.options.match===e}},e.exports=t},6665:e=>{e.exports={isFunction:function(e){return\"function\"==typeof e},isArray:function(e){return\"[object Array]\"===Object.prototype.toString.apply(e)},each:function(e,t){for(var r=0,n=e.length;r<n&&!1!==t(e[r],r);r++);}}},4974:(e,t,r)=>{var n=r(8177);e.exports=new n},9984:(e,t,r)=>{\"use strict\";r.r(t),r.d(t,{render:()=>L});var n=window.document,o=window.Math,i=window.HTMLElement,a=window.XMLHttpRequest,c=function(e,t){for(var r=0,n=e.length;r<n;r++)t(e[r])},l=function(e){return function(t,r,n){var o=e.createElement(t);if(null!=r)for(var i in r){var a=r[i];null!=a&&(null!=o[i]?o[i]=a:o.setAttribute(i,a))}return null!=n&&c(n,(function(t){o.appendChild(\"string\"==typeof t?e.createTextNode(t):t)})),o}},s=l(n),u=function(e,t){return{}.hasOwnProperty.call(e,t)},p=function(e){return(\"\"+e).toLowerCase()},d=\"github.com\",f=\"https://api.\"+d,m=a&&\"prototype\"in a&&\"withCredentials\"in a.prototype,y=m&&i&&\"attachShadow\"in i.prototype&&!(\"prototype\"in i.prototype.attachShadow),h=function(e,t,r){e.addEventListener?e.addEventListener(t,r,!1):e.attachEvent(\"on\"+t,r)},b=function(e,t,r){e.removeEventListener?e.removeEventListener(t,r,!1):e.detachEvent(\"on\"+t,r)},v={light:\".btn:focus-visible,.social-count:focus-visible{outline:2px solid #0969da;outline-offset:-2px}.btn{color:#24292f;background-color:#ebf0f4;border-color:#ccd1d5;border-color:rgba(27,31,36,.15);background-image:url(\\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23f6f8fa'/%3e%3cstop offset='90%25' stop-color='%23ebf0f4'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\\\");background-image:-moz-linear-gradient(top, #f6f8fa, #ebf0f4 90%);background-image:linear-gradient(180deg, #f6f8fa, #ebf0f4 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FFF6F8FA', endColorstr='#FFEAEFF3')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#e9ebef;background-position:0 -0.5em;border-color:#caccd1;border-color:rgba(27,31,36,.15);background-image:url(\\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23f3f4f6'/%3e%3cstop offset='90%25' stop-color='%23e9ebef'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\\\");background-image:-moz-linear-gradient(top, #f3f4f6, #e9ebef 90%);background-image:linear-gradient(180deg, #f3f4f6, #e9ebef 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FFF3F4F6', endColorstr='#FFE8EAEE')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#e5e9ed;border-color:#c7cbcf;border-color:rgba(27,31,36,.15);background-image:none;filter:none}.social-count{color:#24292f;background-color:#fff;border-color:#ddddde;border-color:rgba(27,31,36,.15)}.social-count:hover,.social-count:focus{color:#0969da}.octicon-heart{color:#bf3989}\",light_high_contrast:\".btn:focus-visible,.social-count:focus-visible{outline:2px solid #0349b4;outline-offset:-2px}.btn{color:#0e1116;background-color:#e7ecf0;border-color:#2f3237;border-color:rgba(1,4,9,.8);background-image:none;filter:none}.btn:hover,.btn:focus{background-color:#c4cdd5;background-position:0 -0.5em;border-color:#282c32;border-color:rgba(1,4,9,.8);background-image:none;filter:none}.btn:active{background-color:#d8dde1;border-color:#2c2f34;border-color:rgba(1,4,9,.8)}.social-count{color:#0e1116;background-color:#fff;border-color:#34363a;border-color:rgba(1,4,9,.8)}.social-count:hover,.social-count:focus{color:#0349b4}.octicon-heart{color:#971368}\",dark:\".btn:focus-visible,.social-count:focus-visible{outline:2px solid #58a6ff;outline-offset:-2px}.btn{color:#c9d1d9;background-color:#1a1e23;border-color:#2f3439;border-color:rgba(240,246,252,.1);background-image:url(\\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%2321262d'/%3e%3cstop offset='90%25' stop-color='%231a1e23'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\\\");background-image:-moz-linear-gradient(top, #21262d, #1a1e23 90%);background-image:linear-gradient(180deg, #21262d, #1a1e23 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF21262D', endColorstr='#FF191D22')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#292e33;background-position:0 -0.5em;border-color:#8b949e;background-image:url(\\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%2330363d'/%3e%3cstop offset='90%25' stop-color='%23292e33'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\\\");background-image:-moz-linear-gradient(top, #30363d, #292e33 90%);background-image:linear-gradient(180deg, #30363d, #292e33 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF30363D', endColorstr='#FF282D32')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#161719;border-color:#8b949e;background-image:none;filter:none}.social-count{color:#c9d1d9;background-color:#0d1117;border-color:#24282e;border-color:rgba(240,246,252,.1)}.social-count:hover,.social-count:focus{color:#58a6ff}.octicon-heart{color:#db61a2}\",dark_dimmed:\".btn:focus-visible,.social-count:focus-visible{outline:2px solid #539bf5;outline-offset:-2px}.btn{color:#adbac7;background-color:#30363d;border-color:#40464e;border-color:rgba(205,217,229,.1);background-image:url(\\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23373e47'/%3e%3cstop offset='90%25' stop-color='%2330363d'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\\\");background-image:-moz-linear-gradient(top, #373e47, #30363d 90%);background-image:linear-gradient(180deg, #373e47, #30363d 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF373E47', endColorstr='#FF2F353C')}:root .btn{filter:none}.btn:hover,.btn:focus{background-color:#3c444d;background-position:0 -0.5em;border-color:#768390;background-image:url(\\\"data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg'%3e%3clinearGradient id='o' x2='0' y2='1'%3e%3cstop stop-color='%23444c56'/%3e%3cstop offset='90%25' stop-color='%233c444d'/%3e%3c/linearGradient%3e%3crect width='100%25' height='100%25' fill='url(%23o)'/%3e%3c/svg%3e\\\");background-image:-moz-linear-gradient(top, #444c56, #3c444d 90%);background-image:linear-gradient(180deg, #444c56, #3c444d 90%);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr='#FF444C56', endColorstr='#FF3B434C')}:root .btn:hover,:root .btn:focus{filter:none}.btn:active{background-color:#2e3031;border-color:#768390;background-image:none;filter:none}.social-count{color:#adbac7;background-color:#22272e;border-color:#333940;border-color:rgba(205,217,229,.1)}.social-count:hover,.social-count:focus{color:#539bf5}.octicon-heart{color:#c96198}\",dark_high_contrast:\".btn:focus-visible,.social-count:focus-visible{outline:2px solid #71b7ff;outline-offset:-2px}.btn{color:#f0f3f6;background-color:#272b33;border-color:#7a828e;background-image:none;filter:none}.btn:hover,.btn:focus{background-color:#4a515b;background-position:0 -0.5em;border-color:#bdc4cc;background-image:none;filter:none}.btn:active{background-color:#1d1d1f;border-color:#bdc4cc}.social-count{color:#f0f3f6;background-color:#0a0c10;border-color:#7a828e}.social-count:hover,.social-count:focus{color:#71b7ff}.octicon-heart{color:#ef6eb1}\"},g=function(e,t){return\"@media(prefers-color-scheme:\"+e+\"){\"+v[u(v,t)?t:e]+\"}\"},_=function(e){if(null==e)return v.light;if(u(v,e))return v[e];var t=function(e,t,r,n){null==t&&(t=\"&\"),null==r&&(r=\"=\"),null==n&&(n=window.decodeURIComponent);var o={};return c(e.split(t),(function(e){if(\"\"!==e){var t=e.split(r);o[n(t[0])]=null!=t[1]?n(t.slice(1).join(r)):void 0}})),o}(e,\";\",\":\",(function(e){return e.replace(/^[ \\t\\n\\f\\r]+|[ \\t\\n\\f\\r]+$/g,\"\")}));return v[u(v,t[\"no-preference\"])?t[\"no-preference\"]:\"light\"]+g(\"light\",t.light)+g(\"dark\",t.dark)},w={\"comment-discussion\":{heights:{16:{width:16,path:'<path d=\"M1.75 1h8.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 10.25 10H7.061l-2.574 2.573A1.458 1.458 0 0 1 2 11.543V10h-.25A1.75 1.75 0 0 1 0 8.25v-5.5C0 1.784.784 1 1.75 1ZM1.5 2.75v5.5c0 .138.112.25.25.25h1a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h3.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-8.5a.25.25 0 0 0-.25.25Zm13 2a.25.25 0 0 0-.25-.25h-.5a.75.75 0 0 1 0-1.5h.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 14.25 12H14v1.543a1.458 1.458 0 0 1-2.487 1.03L9.22 12.28a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l2.22 2.22v-2.19a.75.75 0 0 1 .75-.75h1a.25.25 0 0 0 .25-.25Z\"></path>'}}},download:{heights:{16:{width:16,path:'<path d=\"M7.47 10.78 3.72 7.03a.751.751 0 0 1 .018-1.042.751.751 0 0 1 1.042-.018l2.47 2.47V1.75a.75.75 0 0 1 1.5 0v6.69l2.47-2.47a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042l-3.75 3.75a.75.75 0 0 1-1.06 0ZM3.75 13h8.5a.75.75 0 0 1 0 1.5h-8.5a.75.75 0 0 1 0-1.5Z\"></path>'}}},eye:{heights:{16:{width:16,path:'<path d=\"M8 2c1.981 0 3.671.992 4.933 2.078 1.27 1.091 2.187 2.345 2.637 3.023a1.62 1.62 0 0 1 0 1.798c-.45.678-1.367 1.932-2.637 3.023C11.67 13.008 9.981 14 8 14c-1.981 0-3.671-.992-4.933-2.078C1.797 10.83.88 9.576.43 8.898a1.62 1.62 0 0 1 0-1.798c.45-.677 1.367-1.931 2.637-3.022C4.33 2.992 6.019 2 8 2ZM1.679 7.932a.12.12 0 0 0 0 .136c.411.622 1.241 1.75 2.366 2.717C5.176 11.758 6.527 12.5 8 12.5c1.473 0 2.825-.742 3.955-1.715 1.124-.967 1.954-2.096 2.366-2.717a.12.12 0 0 0 0-.136c-.412-.621-1.242-1.75-2.366-2.717C10.824 4.242 9.473 3.5 8 3.5c-1.473 0-2.825.742-3.955 1.715-1.124.967-1.954 2.096-2.366 2.717ZM8 10a2 2 0 1 1-.001-3.999A2 2 0 0 1 8 10Z\"></path>'}}},heart:{heights:{16:{width:16,path:'<path d=\"m8 14.25.345.666a.75.75 0 0 1-.69 0l-.008-.004-.018-.01a7.152 7.152 0 0 1-.31-.17 22.055 22.055 0 0 1-3.434-2.414C2.045 10.731 0 8.35 0 5.5 0 2.836 2.086 1 4.25 1 5.797 1 7.153 1.802 8 3.02 8.847 1.802 10.203 1 11.75 1 13.914 1 16 2.836 16 5.5c0 2.85-2.045 5.231-3.885 6.818a22.066 22.066 0 0 1-3.744 2.584l-.018.01-.006.003h-.002ZM4.25 2.5c-1.336 0-2.75 1.164-2.75 3 0 2.15 1.58 4.144 3.365 5.682A20.58 20.58 0 0 0 8 13.393a20.58 20.58 0 0 0 3.135-2.211C12.92 9.644 14.5 7.65 14.5 5.5c0-1.836-1.414-3-2.75-3-1.373 0-2.609.986-3.029 2.456a.749.749 0 0 1-1.442 0C6.859 3.486 5.623 2.5 4.25 2.5Z\"></path>'}}},\"issue-opened\":{heights:{16:{width:16,path:'<path d=\"M8 9.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\"></path><path d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Z\"></path>'}}},\"mark-github\":{heights:{16:{width:16,path:'<path d=\"M8 0c4.42 0 8 3.58 8 8a8.013 8.013 0 0 1-5.45 7.59c-.4.08-.55-.17-.55-.38 0-.27.01-1.13.01-2.2 0-.75-.25-1.23-.54-1.48 1.78-.2 3.65-.88 3.65-3.95 0-.88-.31-1.59-.82-2.15.08-.2.36-1.02-.08-2.12 0 0-.67-.22-2.2.82-.64-.18-1.32-.27-2-.27-.68 0-1.36.09-2 .27-1.53-1.03-2.2-.82-2.2-.82-.44 1.1-.16 1.92-.08 2.12-.51.56-.82 1.28-.82 2.15 0 3.06 1.86 3.75 3.64 3.95-.23.2-.44.55-.51 1.07-.46.21-1.61.55-2.33-.66-.15-.24-.6-.83-1.23-.82-.67.01-.27.38.01.53.34.19.73.9.82 1.13.16.45.68 1.31 2.69.94 0 .67.01 1.3.01 1.49 0 .21-.15.45-.55.38A7.995 7.995 0 0 1 0 8c0-4.42 3.58-8 8-8Z\"></path>'}}},package:{heights:{16:{width:16,path:'<path d=\"m8.878.392 5.25 3.045c.54.314.872.89.872 1.514v6.098a1.75 1.75 0 0 1-.872 1.514l-5.25 3.045a1.75 1.75 0 0 1-1.756 0l-5.25-3.045A1.75 1.75 0 0 1 1 11.049V4.951c0-.624.332-1.201.872-1.514L7.122.392a1.75 1.75 0 0 1 1.756 0ZM7.875 1.69l-4.63 2.685L8 7.133l4.755-2.758-4.63-2.685a.248.248 0 0 0-.25 0ZM2.5 5.677v5.372c0 .09.047.171.125.216l4.625 2.683V8.432Zm6.25 8.271 4.625-2.683a.25.25 0 0 0 .125-.216V5.677L8.75 8.432Z\"></path>'}}},play:{heights:{16:{width:16,path:'<path d=\"M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0ZM1.5 8a6.5 6.5 0 1 0 13 0 6.5 6.5 0 0 0-13 0Zm4.879-2.773 4.264 2.559a.25.25 0 0 1 0 .428l-4.264 2.559A.25.25 0 0 1 6 10.559V5.442a.25.25 0 0 1 .379-.215Z\"></path>'}}},\"repo-forked\":{heights:{16:{width:16,path:'<path d=\"M5 5.372v.878c0 .414.336.75.75.75h4.5a.75.75 0 0 0 .75-.75v-.878a2.25 2.25 0 1 1 1.5 0v.878a2.25 2.25 0 0 1-2.25 2.25h-1.5v2.128a2.251 2.251 0 1 1-1.5 0V8.5h-1.5A2.25 2.25 0 0 1 3.5 6.25v-.878a2.25 2.25 0 1 1 1.5 0ZM5 3.25a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Zm6.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm-3 8.75a.75.75 0 1 0-1.5 0 .75.75 0 0 0 1.5 0Z\"></path>'}}},\"repo-template\":{heights:{16:{width:16,path:'<path d=\"M13.25 8a.75.75 0 0 1 .75.75v4.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h1.75v-2h-.75a.75.75 0 0 1 0-1.5h.75v-.25a.75.75 0 0 1 .75-.75ZM5 12.25a.25.25 0 0 1 .25-.25h3.5a.25.25 0 0 1 .25.25v3.25a.25.25 0 0 1-.4.2l-1.45-1.087a.249.249 0 0 0-.3 0L5.4 15.7a.25.25 0 0 1-.4-.2ZM2.75 8a.75.75 0 0 1 .75.75v.268c.083-.012.166-.018.25-.018h.5a.75.75 0 0 1 0 1.5h-.5a.25.25 0 0 0-.25.25v.75c0 .28.114.532.3.714a.75.75 0 1 1-1.05 1.072A2.495 2.495 0 0 1 2 11.5V8.75A.75.75 0 0 1 2.75 8ZM11 .75a.75.75 0 0 1 .75-.75h1.5a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0V1.5h-.75A.75.75 0 0 1 11 .75Zm-5 0A.75.75 0 0 1 6.75 0h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 6 .75Zm0 9A.75.75 0 0 1 6.75 9h2.5a.75.75 0 0 1 0 1.5h-2.5A.75.75 0 0 1 6 9.75ZM4.992.662a.75.75 0 0 1-.636.848c-.436.063-.783.41-.846.846a.751.751 0 0 1-1.485-.212A2.501 2.501 0 0 1 4.144.025a.75.75 0 0 1 .848.637ZM2.75 4a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5A.75.75 0 0 1 2.75 4Zm10.5 0a.75.75 0 0 1 .75.75v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 1 .75-.75Z\"></path>'}}},star:{heights:{16:{width:16,path:'<path d=\"M8 .25a.75.75 0 0 1 .673.418l1.882 3.815 4.21.612a.75.75 0 0 1 .416 1.279l-3.046 2.97.719 4.192a.751.751 0 0 1-1.088.791L8 12.347l-3.766 1.98a.75.75 0 0 1-1.088-.79l.72-4.194L.818 6.374a.75.75 0 0 1 .416-1.28l4.21-.611L7.327.668A.75.75 0 0 1 8 .25Zm0 2.445L6.615 5.5a.75.75 0 0 1-.564.41l-3.097.45 2.24 2.184a.75.75 0 0 1 .216.664l-.528 3.084 2.769-1.456a.75.75 0 0 1 .698 0l2.77 1.456-.53-3.084a.75.75 0 0 1 .216-.664l2.24-2.183-3.096-.45a.75.75 0 0 1-.564-.41L8 2.694Z\"></path>'}}}},x=function(e,t){e=p(e).replace(/^octicon-/,\"\"),u(w,e)||(e=\"mark-github\");var r=t>=24&&24 in w[e].heights?24:16,n=w[e].heights[r];return'<svg viewBox=\"0 0 '+n.width+\" \"+r+'\" width=\"'+t*n.width/r+'\" height=\"'+t+'\" class=\"octicon octicon-'+e+'\" aria-hidden=\"true\">'+n.path+\"</svg>\"},k={},N=function(e,t){var r=k[e]||(k[e]=[]);if(!(r.push(t)>1)){var n=function(e){var t;return function(){t||(t=1,e.apply(this,arguments))}}((function(){for(delete k[e];t=r.shift();)t.apply(null,arguments)}));if(m){var o=new a;h(o,\"abort\",n),h(o,\"error\",n),h(o,\"load\",(function(){var e;try{e=JSON.parse(this.responseText)}catch(e){return void n(e)}n(200!==this.status,e)})),o.open(\"GET\",e),o.send()}else{var i=this||window;i._=function(e){i._=null,n(200!==e.meta.status,e.data)};var c=l(i.document)(\"script\",{async:!0,src:e+(-1!==e.indexOf(\"?\")?\"&\":\"?\")+\"callback=_\"}),s=function(){i._&&i._({meta:{}})};h(c,\"load\",s),h(c,\"error\",s),function(e,t,r){if(null!=e.readyState){var n=\"readystatechange\",o=function(){if(t.test(e.readyState))return b(e,n,o),r.apply(this,arguments)};h(e,n,o)}}(c,/de|m/,s),i.document.getElementsByTagName(\"head\")[0].appendChild(c)}}},M=function(e,t,r){var n=l(e.ownerDocument),o=e.appendChild(n(\"style\",{type:\"text/css\"})),i=\"body{margin:0}a{text-decoration:none;outline:0}.widget{display:inline-block;overflow:hidden;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;font-size:0;line-height:0;white-space:nowrap}.btn,.social-count{position:relative;display:inline-block;display:inline-flex;height:14px;padding:2px 5px;font-size:11px;font-weight:600;line-height:14px;vertical-align:bottom;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-repeat:repeat-x;background-position:-1px -1px;background-size:110% 110%;border:1px solid}.btn{border-radius:.25em}.btn:not(:last-child){border-radius:.25em 0 0 .25em}.social-count{border-left:0;border-radius:0 .25em .25em 0}.widget-lg .btn,.widget-lg .social-count{height:16px;padding:5px 10px;font-size:12px;line-height:16px}.octicon{display:inline-block;vertical-align:text-top;fill:currentColor;overflow:visible}\"+_(t[\"data-color-scheme\"]);o.styleSheet?o.styleSheet.cssText=i:o.appendChild(e.ownerDocument.createTextNode(i));var a=\"large\"===p(t[\"data-size\"]),c=n(\"a\",{className:\"btn\",href:t.href,rel:\"noopener\",target:\"_blank\",title:t.title||void 0,\"aria-label\":t[\"aria-label\"]||void 0,innerHTML:x(t[\"data-icon\"],a?16:14)+\" \"},[n(\"span\",{},[t[\"data-text\"]||\"\"])]),s=e.appendChild(n(\"div\",{className:\"widget\"+(a?\" widget-lg\":\"\")},[c])),u=c.hostname.replace(/\\.$/,\"\");if((\".\"+u).substring(u.length-10)!==\".\"+d)return c.removeAttribute(\"href\"),void r(s);var m=(\" /\"+c.pathname).split(/\\/+/);if(((u===d||u===\"gist.\"+d)&&\"archive\"===m[3]||u===d&&\"releases\"===m[3]&&(\"download\"===m[4]||\"latest\"===m[4]&&\"download\"===m[5])||u===\"codeload.\"+d)&&(c.target=\"_top\"),\"true\"===p(t[\"data-show-count\"])&&u===d&&\"marketplace\"!==m[1]&&\"sponsors\"!==m[1]&&\"orgs\"!==m[1]&&\"users\"!==m[1]&&\"-\"!==m[1]){var y,h;if(!m[2]&&m[1])h=\"followers\",y=\"?tab=followers\";else if(!m[3]&&m[2])h=\"stargazers_count\",y=\"/stargazers\";else if(m[4]||\"subscription\"!==m[3])if(m[4]||\"fork\"!==m[3]){if(\"issues\"!==m[3])return void r(s);h=\"open_issues_count\",y=\"/issues\"}else h=\"forks_count\",y=\"/network/members\";else h=\"subscribers_count\",y=\"/watchers\";var b=m[2]?\"/repos/\"+m[1]+\"/\"+m[2]:\"/users/\"+m[1];N.call(this,f+b,(function(e,t){if(!e){var o=t[h];s.appendChild(n(\"a\",{className:\"social-count\",href:t.html_url+y,rel:\"noopener\",target:\"_blank\",\"aria-label\":o+\" \"+h.replace(/_count$/,\"\").replace(\"_\",\" \").slice(0,o<2?-1:void 0)+\" on GitHub\"},[(\"\"+o).replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\")]))}r(s)}))}else r(s)},j=window.devicePixelRatio||1,S=function(e){return(j>1?o.ceil(o.round(e*j)/j*2)/2:o.ceil(e))||0},E=function(e,t){e.style.width=t[0]+\"px\",e.style.height=t[1]+\"px\"},L=function(e,t){if(null!=e&&null!=t)if(e.getAttribute&&(e=function(e){var t={href:e.href,title:e.title,\"aria-label\":e.getAttribute(\"aria-label\")};return c([\"icon\",\"color-scheme\",\"text\",\"size\",\"show-count\"],(function(r){var n=\"data-\"+r;t[n]=e.getAttribute(n)})),null==t[\"data-text\"]&&(t[\"data-text\"]=e.textContent||e.innerText),t}(e)),y){var r=s(\"span\");M(r.attachShadow({mode:\"closed\"}),e,(function(){t(r)}))}else{var i=s(\"iframe\",{src:\"javascript:0\",title:e.title||void 0,allowtransparency:!0,scrolling:\"no\",frameBorder:0});E(i,[0,0]),i.style.border=\"none\";var a=function(){var r,c=i.contentWindow;try{r=c.document.body}catch(e){return void n.body.appendChild(i.parentNode.removeChild(i))}b(i,\"load\",a),M.call(c,r,e,(function(r){var n=function(e){var t=e.offsetWidth,r=e.offsetHeight;if(e.getBoundingClientRect){var n=e.getBoundingClientRect();t=o.max(t,S(n.width)),r=o.max(r,S(n.height))}return[t,r]}(r);i.parentNode.removeChild(i),function(e,t,r){var n=function(){return b(e,t,n),r.apply(this,arguments)};h(e,t,n)}(i,\"load\",(function(){E(i,n)})),i.src=\"https://unpkg.com/github-buttons@2.23.0/dist/buttons.html#\"+(i.name=function(e,t,r,n){null==t&&(t=\"&\"),null==r&&(r=\"=\"),null==n&&(n=window.encodeURIComponent);var o=[];for(var i in e){var a=e[i];null!=a&&o.push(n(i)+r+n(a))}return o.join(t)}(e)),t(i)}))};h(i,\"load\",a),n.body.appendChild(i)}}},973:(e,t,r)=>{var n=r(1169),o=function(e){var t=\"\",r=Object.keys(e);return r.forEach((function(o,i){var a=e[o];(function(e){return/[height|width]$/.test(e)})(o=n(o))&&\"number\"==typeof a&&(a+=\"px\"),t+=!0===a?o:!1===a?\"not \"+o:\"(\"+o+\": \"+a+\")\",i<r.length-1&&(t+=\" and \")})),t};e.exports=function(e){var t=\"\";return\"string\"==typeof e?e:e instanceof Array?(e.forEach((function(r,n){t+=o(r),n<e.length-1&&(t+=\", \")})),t):o(e)}},9090:e=>{function t(e,t){e.onload=function(){this.onerror=this.onload=null,t(null,e)},e.onerror=function(){this.onerror=this.onload=null,t(new Error(\"Failed to load \"+this.src),e)}}function r(e,t){e.onreadystatechange=function(){\"complete\"!=this.readyState&&\"loaded\"!=this.readyState||(this.onreadystatechange=null,t(null,e))}}e.exports=function(e,n,o){var i=document.head||document.getElementsByTagName(\"head\")[0],a=document.createElement(\"script\");\"function\"==typeof n&&(o=n,n={}),n=n||{},o=o||function(){},a.type=n.type||\"text/javascript\",a.charset=n.charset||\"utf8\",a.async=!(\"async\"in n)||!!n.async,a.src=e,n.attrs&&function(e,t){for(var r in t)e.setAttribute(r,t[r])}(a,n.attrs),n.text&&(a.text=\"\"+n.text),(\"onload\"in a?t:r)(a,o),a.onload||t(a,o),i.appendChild(a)}},1296:(e,t,r)=>{var n=NaN,o=\"[object Symbol]\",i=/^\\s+|\\s+$/g,a=/^[-+]0x[0-9a-f]+$/i,c=/^0b[01]+$/i,l=/^0o[0-7]+$/i,s=parseInt,u=\"object\"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,p=\"object\"==typeof self&&self&&self.Object===Object&&self,d=u||p||Function(\"return this\")(),f=Object.prototype.toString,m=Math.max,y=Math.min,h=function(){return d.Date.now()};function b(e){var t=typeof e;return!!e&&(\"object\"==t||\"function\"==t)}function v(e){if(\"number\"==typeof e)return e;if(function(e){return\"symbol\"==typeof e||function(e){return!!e&&\"object\"==typeof e}(e)&&f.call(e)==o}(e))return n;if(b(e)){var t=\"function\"==typeof e.valueOf?e.valueOf():e;e=b(t)?t+\"\":t}if(\"string\"!=typeof e)return 0===e?e:+e;e=e.replace(i,\"\");var r=c.test(e);return r||l.test(e)?s(e.slice(2),r?2:8):a.test(e)?n:+e}e.exports=function(e,t,r){var n,o,i,a,c,l,s=0,u=!1,p=!1,d=!0;if(\"function\"!=typeof e)throw new TypeError(\"Expected a function\");function f(t){var r=n,i=o;return n=o=void 0,s=t,a=e.apply(i,r)}function g(e){var r=e-l;return void 0===l||r>=t||r<0||p&&e-s>=i}function _(){var e=h();if(g(e))return w(e);c=setTimeout(_,function(e){var r=t-(e-l);return p?y(r,i-(e-s)):r}(e))}function w(e){return c=void 0,d&&n?f(e):(n=o=void 0,a)}function x(){var e=h(),r=g(e);if(n=arguments,o=this,l=e,r){if(void 0===c)return function(e){return s=e,c=setTimeout(_,t),u?f(e):a}(l);if(p)return c=setTimeout(_,t),f(l)}return void 0===c&&(c=setTimeout(_,t)),a}return t=v(t)||0,b(r)&&(u=!!r.leading,i=(p=\"maxWait\"in r)?m(v(r.maxWait)||0,t):i,d=\"trailing\"in r?!!r.trailing:d),x.cancel=function(){void 0!==c&&clearTimeout(c),s=0,n=l=o=c=void 0},x.flush=function(){return void 0===c?a:w(h())},x}},6486:function(e,t,r){var n;e=r.nmd(e),function(){var o,i=\"Expected a function\",a=\"__lodash_hash_undefined__\",c=\"__lodash_placeholder__\",l=16,s=32,u=64,p=128,d=256,f=1/0,m=9007199254740991,y=NaN,h=4294967295,b=[[\"ary\",p],[\"bind\",1],[\"bindKey\",2],[\"curry\",8],[\"curryRight\",l],[\"flip\",512],[\"partial\",s],[\"partialRight\",u],[\"rearg\",d]],v=\"[object Arguments]\",g=\"[object Array]\",_=\"[object Boolean]\",w=\"[object Date]\",x=\"[object Error]\",k=\"[object Function]\",N=\"[object GeneratorFunction]\",M=\"[object Map]\",j=\"[object Number]\",S=\"[object Object]\",E=\"[object Promise]\",L=\"[object RegExp]\",O=\"[object Set]\",I=\"[object String]\",C=\"[object Symbol]\",P=\"[object WeakMap]\",A=\"[object ArrayBuffer]\",D=\"[object DataView]\",T=\"[object Float32Array]\",z=\"[object Float64Array]\",B=\"[object Int8Array]\",R=\"[object Int16Array]\",F=\"[object Int32Array]\",U=\"[object Uint8Array]\",Z=\"[object Uint8ClampedArray]\",Y=\"[object Uint16Array]\",W=\"[object Uint32Array]\",V=/\\b__p \\+= '';/g,Q=/\\b(__p \\+=) '' \\+/g,H=/(__e\\(.*?\\)|\\b__t\\)) \\+\\n'';/g,G=/&(?:amp|lt|gt|quot|#39);/g,q=/[&<>\"']/g,$=RegExp(G.source),X=RegExp(q.source),K=/<%-([\\s\\S]+?)%>/g,J=/<%([\\s\\S]+?)%>/g,ee=/<%=([\\s\\S]+?)%>/g,te=/\\.|\\[(?:[^[\\]]*|([\"'])(?:(?!\\1)[^\\\\]|\\\\.)*?\\1)\\]/,re=/^\\w*$/,ne=/[^.[\\]]+|\\[(?:(-?\\d+(?:\\.\\d+)?)|([\"'])((?:(?!\\2)[^\\\\]|\\\\.)*?)\\2)\\]|(?=(?:\\.|\\[\\])(?:\\.|\\[\\]|$))/g,oe=/[\\\\^$.*+?()[\\]{}|]/g,ie=RegExp(oe.source),ae=/^\\s+/,ce=/\\s/,le=/\\{(?:\\n\\/\\* \\[wrapped with .+\\] \\*\\/)?\\n?/,se=/\\{\\n\\/\\* \\[wrapped with (.+)\\] \\*/,ue=/,? & /,pe=/[^\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\x7f]+/g,de=/[()=,{}\\[\\]\\/\\s]/,fe=/\\\\(\\\\)?/g,me=/\\$\\{([^\\\\}]*(?:\\\\.[^\\\\}]*)*)\\}/g,ye=/\\w*$/,he=/^[-+]0x[0-9a-f]+$/i,be=/^0b[01]+$/i,ve=/^\\[object .+?Constructor\\]$/,ge=/^0o[0-7]+$/i,_e=/^(?:0|[1-9]\\d*)$/,we=/[\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\xff\\u0100-\\u017f]/g,xe=/($^)/,ke=/['\\n\\r\\u2028\\u2029\\\\]/g,Ne=\"\\\\ud800-\\\\udfff\",Me=\"\\\\u0300-\\\\u036f\\\\ufe20-\\\\ufe2f\\\\u20d0-\\\\u20ff\",je=\"\\\\u2700-\\\\u27bf\",Se=\"a-z\\\\xdf-\\\\xf6\\\\xf8-\\\\xff\",Ee=\"A-Z\\\\xc0-\\\\xd6\\\\xd8-\\\\xde\",Le=\"\\\\ufe0e\\\\ufe0f\",Oe=\"\\\\xac\\\\xb1\\\\xd7\\\\xf7\\\\x00-\\\\x2f\\\\x3a-\\\\x40\\\\x5b-\\\\x60\\\\x7b-\\\\xbf\\\\u2000-\\\\u206f \\\\t\\\\x0b\\\\f\\\\xa0\\\\ufeff\\\\n\\\\r\\\\u2028\\\\u2029\\\\u1680\\\\u180e\\\\u2000\\\\u2001\\\\u2002\\\\u2003\\\\u2004\\\\u2005\\\\u2006\\\\u2007\\\\u2008\\\\u2009\\\\u200a\\\\u202f\\\\u205f\\\\u3000\",Ie=\"['’]\",Ce=\"[\"+Ne+\"]\",Pe=\"[\"+Oe+\"]\",Ae=\"[\"+Me+\"]\",De=\"\\\\d+\",Te=\"[\"+je+\"]\",ze=\"[\"+Se+\"]\",Be=\"[^\"+Ne+Oe+De+je+Se+Ee+\"]\",Re=\"\\\\ud83c[\\\\udffb-\\\\udfff]\",Fe=\"[^\"+Ne+\"]\",Ue=\"(?:\\\\ud83c[\\\\udde6-\\\\uddff]){2}\",Ze=\"[\\\\ud800-\\\\udbff][\\\\udc00-\\\\udfff]\",Ye=\"[\"+Ee+\"]\",We=\"\\\\u200d\",Ve=\"(?:\"+ze+\"|\"+Be+\")\",Qe=\"(?:\"+Ye+\"|\"+Be+\")\",He=\"(?:['’](?:d|ll|m|re|s|t|ve))?\",Ge=\"(?:['’](?:D|LL|M|RE|S|T|VE))?\",qe=\"(?:\"+Ae+\"|\"+Re+\")\"+\"?\",$e=\"[\"+Le+\"]?\",Xe=$e+qe+(\"(?:\"+We+\"(?:\"+[Fe,Ue,Ze].join(\"|\")+\")\"+$e+qe+\")*\"),Ke=\"(?:\"+[Te,Ue,Ze].join(\"|\")+\")\"+Xe,Je=\"(?:\"+[Fe+Ae+\"?\",Ae,Ue,Ze,Ce].join(\"|\")+\")\",et=RegExp(Ie,\"g\"),tt=RegExp(Ae,\"g\"),rt=RegExp(Re+\"(?=\"+Re+\")|\"+Je+Xe,\"g\"),nt=RegExp([Ye+\"?\"+ze+\"+\"+He+\"(?=\"+[Pe,Ye,\"$\"].join(\"|\")+\")\",Qe+\"+\"+Ge+\"(?=\"+[Pe,Ye+Ve,\"$\"].join(\"|\")+\")\",Ye+\"?\"+Ve+\"+\"+He,Ye+\"+\"+Ge,\"\\\\d*(?:1ST|2ND|3RD|(?![123])\\\\dTH)(?=\\\\b|[a-z_])\",\"\\\\d*(?:1st|2nd|3rd|(?![123])\\\\dth)(?=\\\\b|[A-Z_])\",De,Ke].join(\"|\"),\"g\"),ot=RegExp(\"[\"+We+Ne+Me+Le+\"]\"),it=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,at=[\"Array\",\"Buffer\",\"DataView\",\"Date\",\"Error\",\"Float32Array\",\"Float64Array\",\"Function\",\"Int8Array\",\"Int16Array\",\"Int32Array\",\"Map\",\"Math\",\"Object\",\"Promise\",\"RegExp\",\"Set\",\"String\",\"Symbol\",\"TypeError\",\"Uint8Array\",\"Uint8ClampedArray\",\"Uint16Array\",\"Uint32Array\",\"WeakMap\",\"_\",\"clearTimeout\",\"isFinite\",\"parseInt\",\"setTimeout\"],ct=-1,lt={};lt[T]=lt[z]=lt[B]=lt[R]=lt[F]=lt[U]=lt[Z]=lt[Y]=lt[W]=!0,lt[v]=lt[g]=lt[A]=lt[_]=lt[D]=lt[w]=lt[x]=lt[k]=lt[M]=lt[j]=lt[S]=lt[L]=lt[O]=lt[I]=lt[P]=!1;var st={};st[v]=st[g]=st[A]=st[D]=st[_]=st[w]=st[T]=st[z]=st[B]=st[R]=st[F]=st[M]=st[j]=st[S]=st[L]=st[O]=st[I]=st[C]=st[U]=st[Z]=st[Y]=st[W]=!0,st[x]=st[k]=st[P]=!1;var ut={\"\\\\\":\"\\\\\",\"'\":\"'\",\"\\n\":\"n\",\"\\r\":\"r\",\"\\u2028\":\"u2028\",\"\\u2029\":\"u2029\"},pt=parseFloat,dt=parseInt,ft=\"object\"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,mt=\"object\"==typeof self&&self&&self.Object===Object&&self,yt=ft||mt||Function(\"return this\")(),ht=t&&!t.nodeType&&t,bt=ht&&e&&!e.nodeType&&e,vt=bt&&bt.exports===ht,gt=vt&&ft.process,_t=function(){try{var e=bt&&bt.require&&bt.require(\"util\").types;return e||gt&>.binding&>.binding(\"util\")}catch(e){}}(),wt=_t&&_t.isArrayBuffer,xt=_t&&_t.isDate,kt=_t&&_t.isMap,Nt=_t&&_t.isRegExp,Mt=_t&&_t.isSet,jt=_t&&_t.isTypedArray;function St(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}function Et(e,t,r,n){for(var o=-1,i=null==e?0:e.length;++o<i;){var a=e[o];t(n,a,r(a),e)}return n}function Lt(e,t){for(var r=-1,n=null==e?0:e.length;++r<n&&!1!==t(e[r],r,e););return e}function Ot(e,t){for(var r=null==e?0:e.length;r--&&!1!==t(e[r],r,e););return e}function It(e,t){for(var r=-1,n=null==e?0:e.length;++r<n;)if(!t(e[r],r,e))return!1;return!0}function Ct(e,t){for(var r=-1,n=null==e?0:e.length,o=0,i=[];++r<n;){var a=e[r];t(a,r,e)&&(i[o++]=a)}return i}function Pt(e,t){return!!(null==e?0:e.length)&&Yt(e,t,0)>-1}function At(e,t,r){for(var n=-1,o=null==e?0:e.length;++n<o;)if(r(t,e[n]))return!0;return!1}function Dt(e,t){for(var r=-1,n=null==e?0:e.length,o=Array(n);++r<n;)o[r]=t(e[r],r,e);return o}function Tt(e,t){for(var r=-1,n=t.length,o=e.length;++r<n;)e[o+r]=t[r];return e}function zt(e,t,r,n){var o=-1,i=null==e?0:e.length;for(n&&i&&(r=e[++o]);++o<i;)r=t(r,e[o],o,e);return r}function Bt(e,t,r,n){var o=null==e?0:e.length;for(n&&o&&(r=e[--o]);o--;)r=t(r,e[o],o,e);return r}function Rt(e,t){for(var r=-1,n=null==e?0:e.length;++r<n;)if(t(e[r],r,e))return!0;return!1}var Ft=Ht(\"length\");function Ut(e,t,r){var n;return r(e,(function(e,r,o){if(t(e,r,o))return n=r,!1})),n}function Zt(e,t,r,n){for(var o=e.length,i=r+(n?1:-1);n?i--:++i<o;)if(t(e[i],i,e))return i;return-1}function Yt(e,t,r){return t==t?function(e,t,r){var n=r-1,o=e.length;for(;++n<o;)if(e[n]===t)return n;return-1}(e,t,r):Zt(e,Vt,r)}function Wt(e,t,r,n){for(var o=r-1,i=e.length;++o<i;)if(n(e[o],t))return o;return-1}function Vt(e){return e!=e}function Qt(e,t){var r=null==e?0:e.length;return r?$t(e,t)/r:y}function Ht(e){return function(t){return null==t?o:t[e]}}function Gt(e){return function(t){return null==e?o:e[t]}}function qt(e,t,r,n,o){return o(e,(function(e,o,i){r=n?(n=!1,e):t(r,e,o,i)})),r}function $t(e,t){for(var r,n=-1,i=e.length;++n<i;){var a=t(e[n]);a!==o&&(r=r===o?a:r+a)}return r}function Xt(e,t){for(var r=-1,n=Array(e);++r<e;)n[r]=t(r);return n}function Kt(e){return e?e.slice(0,yr(e)+1).replace(ae,\"\"):e}function Jt(e){return function(t){return e(t)}}function er(e,t){return Dt(t,(function(t){return e[t]}))}function tr(e,t){return e.has(t)}function rr(e,t){for(var r=-1,n=e.length;++r<n&&Yt(t,e[r],0)>-1;);return r}function nr(e,t){for(var r=e.length;r--&&Yt(t,e[r],0)>-1;);return r}var or=Gt({À:\"A\",Á:\"A\",Â:\"A\",Ã:\"A\",Ä:\"A\",Å:\"A\",à:\"a\",á:\"a\",â:\"a\",ã:\"a\",ä:\"a\",å:\"a\",Ç:\"C\",ç:\"c\",Ð:\"D\",ð:\"d\",È:\"E\",É:\"E\",Ê:\"E\",Ë:\"E\",è:\"e\",é:\"e\",ê:\"e\",ë:\"e\",Ì:\"I\",Í:\"I\",Î:\"I\",Ï:\"I\",ì:\"i\",í:\"i\",î:\"i\",ï:\"i\",Ñ:\"N\",ñ:\"n\",Ò:\"O\",Ó:\"O\",Ô:\"O\",Õ:\"O\",Ö:\"O\",Ø:\"O\",ò:\"o\",ó:\"o\",ô:\"o\",õ:\"o\",ö:\"o\",ø:\"o\",Ù:\"U\",Ú:\"U\",Û:\"U\",Ü:\"U\",ù:\"u\",ú:\"u\",û:\"u\",ü:\"u\",Ý:\"Y\",ý:\"y\",ÿ:\"y\",Æ:\"Ae\",æ:\"ae\",Þ:\"Th\",þ:\"th\",ß:\"ss\",Ā:\"A\",Ă:\"A\",Ą:\"A\",ā:\"a\",ă:\"a\",ą:\"a\",Ć:\"C\",Ĉ:\"C\",Ċ:\"C\",Č:\"C\",ć:\"c\",ĉ:\"c\",ċ:\"c\",č:\"c\",Ď:\"D\",Đ:\"D\",ď:\"d\",đ:\"d\",Ē:\"E\",Ĕ:\"E\",Ė:\"E\",Ę:\"E\",Ě:\"E\",ē:\"e\",ĕ:\"e\",ė:\"e\",ę:\"e\",ě:\"e\",Ĝ:\"G\",Ğ:\"G\",Ġ:\"G\",Ģ:\"G\",ĝ:\"g\",ğ:\"g\",ġ:\"g\",ģ:\"g\",Ĥ:\"H\",Ħ:\"H\",ĥ:\"h\",ħ:\"h\",Ĩ:\"I\",Ī:\"I\",Ĭ:\"I\",Į:\"I\",İ:\"I\",ĩ:\"i\",ī:\"i\",ĭ:\"i\",į:\"i\",ı:\"i\",Ĵ:\"J\",ĵ:\"j\",Ķ:\"K\",ķ:\"k\",ĸ:\"k\",Ĺ:\"L\",Ļ:\"L\",Ľ:\"L\",Ŀ:\"L\",Ł:\"L\",ĺ:\"l\",ļ:\"l\",ľ:\"l\",ŀ:\"l\",ł:\"l\",Ń:\"N\",Ņ:\"N\",Ň:\"N\",Ŋ:\"N\",ń:\"n\",ņ:\"n\",ň:\"n\",ŋ:\"n\",Ō:\"O\",Ŏ:\"O\",Ő:\"O\",ō:\"o\",ŏ:\"o\",ő:\"o\",Ŕ:\"R\",Ŗ:\"R\",Ř:\"R\",ŕ:\"r\",ŗ:\"r\",ř:\"r\",Ś:\"S\",Ŝ:\"S\",Ş:\"S\",Š:\"S\",ś:\"s\",ŝ:\"s\",ş:\"s\",š:\"s\",Ţ:\"T\",Ť:\"T\",Ŧ:\"T\",ţ:\"t\",ť:\"t\",ŧ:\"t\",Ũ:\"U\",Ū:\"U\",Ŭ:\"U\",Ů:\"U\",Ű:\"U\",Ų:\"U\",ũ:\"u\",ū:\"u\",ŭ:\"u\",ů:\"u\",ű:\"u\",ų:\"u\",Ŵ:\"W\",ŵ:\"w\",Ŷ:\"Y\",ŷ:\"y\",Ÿ:\"Y\",Ź:\"Z\",Ż:\"Z\",Ž:\"Z\",ź:\"z\",ż:\"z\",ž:\"z\",IJ:\"IJ\",ij:\"ij\",Œ:\"Oe\",œ:\"oe\",ʼn:\"'n\",ſ:\"s\"}),ir=Gt({\"&\":\"&\",\"<\":\"<\",\">\":\">\",'\"':\""\",\"'\":\"'\"});function ar(e){return\"\\\\\"+ut[e]}function cr(e){return ot.test(e)}function lr(e){var t=-1,r=Array(e.size);return e.forEach((function(e,n){r[++t]=[n,e]})),r}function sr(e,t){return function(r){return e(t(r))}}function ur(e,t){for(var r=-1,n=e.length,o=0,i=[];++r<n;){var a=e[r];a!==t&&a!==c||(e[r]=c,i[o++]=r)}return i}function pr(e){var t=-1,r=Array(e.size);return e.forEach((function(e){r[++t]=e})),r}function dr(e){var t=-1,r=Array(e.size);return e.forEach((function(e){r[++t]=[e,e]})),r}function fr(e){return cr(e)?function(e){var t=rt.lastIndex=0;for(;rt.test(e);)++t;return t}(e):Ft(e)}function mr(e){return cr(e)?function(e){return e.match(rt)||[]}(e):function(e){return e.split(\"\")}(e)}function yr(e){for(var t=e.length;t--&&ce.test(e.charAt(t)););return t}var hr=Gt({\"&\":\"&\",\"<\":\"<\",\">\":\">\",\""\":'\"',\"'\":\"'\"});var br=function e(t){var r,n=(t=null==t?yt:br.defaults(yt.Object(),t,br.pick(yt,at))).Array,ce=t.Date,Ne=t.Error,Me=t.Function,je=t.Math,Se=t.Object,Ee=t.RegExp,Le=t.String,Oe=t.TypeError,Ie=n.prototype,Ce=Me.prototype,Pe=Se.prototype,Ae=t[\"__core-js_shared__\"],De=Ce.toString,Te=Pe.hasOwnProperty,ze=0,Be=(r=/[^.]+$/.exec(Ae&&Ae.keys&&Ae.keys.IE_PROTO||\"\"))?\"Symbol(src)_1.\"+r:\"\",Re=Pe.toString,Fe=De.call(Se),Ue=yt._,Ze=Ee(\"^\"+De.call(Te).replace(oe,\"\\\\$&\").replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g,\"$1.*?\")+\"$\"),Ye=vt?t.Buffer:o,We=t.Symbol,Ve=t.Uint8Array,Qe=Ye?Ye.allocUnsafe:o,He=sr(Se.getPrototypeOf,Se),Ge=Se.create,qe=Pe.propertyIsEnumerable,$e=Ie.splice,Xe=We?We.isConcatSpreadable:o,Ke=We?We.iterator:o,Je=We?We.toStringTag:o,rt=function(){try{var e=fi(Se,\"defineProperty\");return e({},\"\",{}),e}catch(e){}}(),ot=t.clearTimeout!==yt.clearTimeout&&t.clearTimeout,ut=ce&&ce.now!==yt.Date.now&&ce.now,ft=t.setTimeout!==yt.setTimeout&&t.setTimeout,mt=je.ceil,ht=je.floor,bt=Se.getOwnPropertySymbols,gt=Ye?Ye.isBuffer:o,_t=t.isFinite,Ft=Ie.join,Gt=sr(Se.keys,Se),vr=je.max,gr=je.min,_r=ce.now,wr=t.parseInt,xr=je.random,kr=Ie.reverse,Nr=fi(t,\"DataView\"),Mr=fi(t,\"Map\"),jr=fi(t,\"Promise\"),Sr=fi(t,\"Set\"),Er=fi(t,\"WeakMap\"),Lr=fi(Se,\"create\"),Or=Er&&new Er,Ir={},Cr=Ri(Nr),Pr=Ri(Mr),Ar=Ri(jr),Dr=Ri(Sr),Tr=Ri(Er),zr=We?We.prototype:o,Br=zr?zr.valueOf:o,Rr=zr?zr.toString:o;function Fr(e){if(rc(e)&&!Va(e)&&!(e instanceof Wr)){if(e instanceof Yr)return e;if(Te.call(e,\"__wrapped__\"))return Fi(e)}return new Yr(e)}var Ur=function(){function e(){}return function(t){if(!tc(t))return{};if(Ge)return Ge(t);e.prototype=t;var r=new e;return e.prototype=o,r}}();function Zr(){}function Yr(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=o}function Wr(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=h,this.__views__=[]}function Vr(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function Qr(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function Hr(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function Gr(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new Hr;++t<r;)this.add(e[t])}function qr(e){var t=this.__data__=new Qr(e);this.size=t.size}function $r(e,t){var r=Va(e),n=!r&&Wa(e),o=!r&&!n&&qa(e),i=!r&&!n&&!o&&uc(e),a=r||n||o||i,c=a?Xt(e.length,Le):[],l=c.length;for(var s in e)!t&&!Te.call(e,s)||a&&(\"length\"==s||o&&(\"offset\"==s||\"parent\"==s)||i&&(\"buffer\"==s||\"byteLength\"==s||\"byteOffset\"==s)||_i(s,l))||c.push(s);return c}function Xr(e){var t=e.length;return t?e[qn(0,t-1)]:o}function Kr(e,t){return Ti(Io(e),ln(t,0,e.length))}function Jr(e){return Ti(Io(e))}function en(e,t,r){(r!==o&&!Ua(e[t],r)||r===o&&!(t in e))&&an(e,t,r)}function tn(e,t,r){var n=e[t];Te.call(e,t)&&Ua(n,r)&&(r!==o||t in e)||an(e,t,r)}function rn(e,t){for(var r=e.length;r--;)if(Ua(e[r][0],t))return r;return-1}function nn(e,t,r,n){return fn(e,(function(e,o,i){t(n,e,r(e),i)})),n}function on(e,t){return e&&Co(t,Cc(t),e)}function an(e,t,r){\"__proto__\"==t&&rt?rt(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}function cn(e,t){for(var r=-1,i=t.length,a=n(i),c=null==e;++r<i;)a[r]=c?o:Sc(e,t[r]);return a}function ln(e,t,r){return e==e&&(r!==o&&(e=e<=r?e:r),t!==o&&(e=e>=t?e:t)),e}function sn(e,t,r,n,i,a){var c,l=1&t,s=2&t,u=4&t;if(r&&(c=i?r(e,n,i,a):r(e)),c!==o)return c;if(!tc(e))return e;var p=Va(e);if(p){if(c=function(e){var t=e.length,r=new e.constructor(t);t&&\"string\"==typeof e[0]&&Te.call(e,\"index\")&&(r.index=e.index,r.input=e.input);return r}(e),!l)return Io(e,c)}else{var d=hi(e),f=d==k||d==N;if(qa(e))return Mo(e,l);if(d==S||d==v||f&&!i){if(c=s||f?{}:vi(e),!l)return s?function(e,t){return Co(e,yi(e),t)}(e,function(e,t){return e&&Co(t,Pc(t),e)}(c,e)):function(e,t){return Co(e,mi(e),t)}(e,on(c,e))}else{if(!st[d])return i?e:{};c=function(e,t,r){var n=e.constructor;switch(t){case A:return jo(e);case _:case w:return new n(+e);case D:return function(e,t){var r=t?jo(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.byteLength)}(e,r);case T:case z:case B:case R:case F:case U:case Z:case Y:case W:return So(e,r);case M:return new n;case j:case I:return new n(e);case L:return function(e){var t=new e.constructor(e.source,ye.exec(e));return t.lastIndex=e.lastIndex,t}(e);case O:return new n;case C:return o=e,Br?Se(Br.call(o)):{}}var o}(e,d,l)}}a||(a=new qr);var m=a.get(e);if(m)return m;a.set(e,c),cc(e)?e.forEach((function(n){c.add(sn(n,t,r,n,e,a))})):nc(e)&&e.forEach((function(n,o){c.set(o,sn(n,t,r,o,e,a))}));var y=p?o:(u?s?ai:ii:s?Pc:Cc)(e);return Lt(y||e,(function(n,o){y&&(n=e[o=n]),tn(c,o,sn(n,t,r,o,e,a))})),c}function un(e,t,r){var n=r.length;if(null==e)return!n;for(e=Se(e);n--;){var i=r[n],a=t[i],c=e[i];if(c===o&&!(i in e)||!a(c))return!1}return!0}function pn(e,t,r){if(\"function\"!=typeof e)throw new Oe(i);return Ci((function(){e.apply(o,r)}),t)}function dn(e,t,r,n){var o=-1,i=Pt,a=!0,c=e.length,l=[],s=t.length;if(!c)return l;r&&(t=Dt(t,Jt(r))),n?(i=At,a=!1):t.length>=200&&(i=tr,a=!1,t=new Gr(t));e:for(;++o<c;){var u=e[o],p=null==r?u:r(u);if(u=n||0!==u?u:0,a&&p==p){for(var d=s;d--;)if(t[d]===p)continue e;l.push(u)}else i(t,p,n)||l.push(u)}return l}Fr.templateSettings={escape:K,evaluate:J,interpolate:ee,variable:\"\",imports:{_:Fr}},Fr.prototype=Zr.prototype,Fr.prototype.constructor=Fr,Yr.prototype=Ur(Zr.prototype),Yr.prototype.constructor=Yr,Wr.prototype=Ur(Zr.prototype),Wr.prototype.constructor=Wr,Vr.prototype.clear=function(){this.__data__=Lr?Lr(null):{},this.size=0},Vr.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},Vr.prototype.get=function(e){var t=this.__data__;if(Lr){var r=t[e];return r===a?o:r}return Te.call(t,e)?t[e]:o},Vr.prototype.has=function(e){var t=this.__data__;return Lr?t[e]!==o:Te.call(t,e)},Vr.prototype.set=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=Lr&&t===o?a:t,this},Qr.prototype.clear=function(){this.__data__=[],this.size=0},Qr.prototype.delete=function(e){var t=this.__data__,r=rn(t,e);return!(r<0)&&(r==t.length-1?t.pop():$e.call(t,r,1),--this.size,!0)},Qr.prototype.get=function(e){var t=this.__data__,r=rn(t,e);return r<0?o:t[r][1]},Qr.prototype.has=function(e){return rn(this.__data__,e)>-1},Qr.prototype.set=function(e,t){var r=this.__data__,n=rn(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this},Hr.prototype.clear=function(){this.size=0,this.__data__={hash:new Vr,map:new(Mr||Qr),string:new Vr}},Hr.prototype.delete=function(e){var t=pi(this,e).delete(e);return this.size-=t?1:0,t},Hr.prototype.get=function(e){return pi(this,e).get(e)},Hr.prototype.has=function(e){return pi(this,e).has(e)},Hr.prototype.set=function(e,t){var r=pi(this,e),n=r.size;return r.set(e,t),this.size+=r.size==n?0:1,this},Gr.prototype.add=Gr.prototype.push=function(e){return this.__data__.set(e,a),this},Gr.prototype.has=function(e){return this.__data__.has(e)},qr.prototype.clear=function(){this.__data__=new Qr,this.size=0},qr.prototype.delete=function(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r},qr.prototype.get=function(e){return this.__data__.get(e)},qr.prototype.has=function(e){return this.__data__.has(e)},qr.prototype.set=function(e,t){var r=this.__data__;if(r instanceof Qr){var n=r.__data__;if(!Mr||n.length<199)return n.push([e,t]),this.size=++r.size,this;r=this.__data__=new Hr(n)}return r.set(e,t),this.size=r.size,this};var fn=Do(wn),mn=Do(xn,!0);function yn(e,t){var r=!0;return fn(e,(function(e,n,o){return r=!!t(e,n,o)})),r}function hn(e,t,r){for(var n=-1,i=e.length;++n<i;){var a=e[n],c=t(a);if(null!=c&&(l===o?c==c&&!sc(c):r(c,l)))var l=c,s=a}return s}function bn(e,t){var r=[];return fn(e,(function(e,n,o){t(e,n,o)&&r.push(e)})),r}function vn(e,t,r,n,o){var i=-1,a=e.length;for(r||(r=gi),o||(o=[]);++i<a;){var c=e[i];t>0&&r(c)?t>1?vn(c,t-1,r,n,o):Tt(o,c):n||(o[o.length]=c)}return o}var gn=To(),_n=To(!0);function wn(e,t){return e&&gn(e,t,Cc)}function xn(e,t){return e&&_n(e,t,Cc)}function kn(e,t){return Ct(t,(function(t){return Ka(e[t])}))}function Nn(e,t){for(var r=0,n=(t=wo(t,e)).length;null!=e&&r<n;)e=e[Bi(t[r++])];return r&&r==n?e:o}function Mn(e,t,r){var n=t(e);return Va(e)?n:Tt(n,r(e))}function jn(e){return null==e?e===o?\"[object Undefined]\":\"[object Null]\":Je&&Je in Se(e)?function(e){var t=Te.call(e,Je),r=e[Je];try{e[Je]=o;var n=!0}catch(e){}var i=Re.call(e);n&&(t?e[Je]=r:delete e[Je]);return i}(e):function(e){return Re.call(e)}(e)}function Sn(e,t){return e>t}function En(e,t){return null!=e&&Te.call(e,t)}function Ln(e,t){return null!=e&&t in Se(e)}function On(e,t,r){for(var i=r?At:Pt,a=e[0].length,c=e.length,l=c,s=n(c),u=1/0,p=[];l--;){var d=e[l];l&&t&&(d=Dt(d,Jt(t))),u=gr(d.length,u),s[l]=!r&&(t||a>=120&&d.length>=120)?new Gr(l&&d):o}d=e[0];var f=-1,m=s[0];e:for(;++f<a&&p.length<u;){var y=d[f],h=t?t(y):y;if(y=r||0!==y?y:0,!(m?tr(m,h):i(p,h,r))){for(l=c;--l;){var b=s[l];if(!(b?tr(b,h):i(e[l],h,r)))continue e}m&&m.push(h),p.push(y)}}return p}function In(e,t,r){var n=null==(e=Li(e,t=wo(t,e)))?e:e[Bi(Xi(t))];return null==n?o:St(n,e,r)}function Cn(e){return rc(e)&&jn(e)==v}function Pn(e,t,r,n,i){return e===t||(null==e||null==t||!rc(e)&&!rc(t)?e!=e&&t!=t:function(e,t,r,n,i,a){var c=Va(e),l=Va(t),s=c?g:hi(e),u=l?g:hi(t),p=(s=s==v?S:s)==S,d=(u=u==v?S:u)==S,f=s==u;if(f&&qa(e)){if(!qa(t))return!1;c=!0,p=!1}if(f&&!p)return a||(a=new qr),c||uc(e)?ni(e,t,r,n,i,a):function(e,t,r,n,o,i,a){switch(r){case D:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case A:return!(e.byteLength!=t.byteLength||!i(new Ve(e),new Ve(t)));case _:case w:case j:return Ua(+e,+t);case x:return e.name==t.name&&e.message==t.message;case L:case I:return e==t+\"\";case M:var c=lr;case O:var l=1&n;if(c||(c=pr),e.size!=t.size&&!l)return!1;var s=a.get(e);if(s)return s==t;n|=2,a.set(e,t);var u=ni(c(e),c(t),n,o,i,a);return a.delete(e),u;case C:if(Br)return Br.call(e)==Br.call(t)}return!1}(e,t,s,r,n,i,a);if(!(1&r)){var m=p&&Te.call(e,\"__wrapped__\"),y=d&&Te.call(t,\"__wrapped__\");if(m||y){var h=m?e.value():e,b=y?t.value():t;return a||(a=new qr),i(h,b,r,n,a)}}if(!f)return!1;return a||(a=new qr),function(e,t,r,n,i,a){var c=1&r,l=ii(e),s=l.length,u=ii(t),p=u.length;if(s!=p&&!c)return!1;var d=s;for(;d--;){var f=l[d];if(!(c?f in t:Te.call(t,f)))return!1}var m=a.get(e),y=a.get(t);if(m&&y)return m==t&&y==e;var h=!0;a.set(e,t),a.set(t,e);var b=c;for(;++d<s;){var v=e[f=l[d]],g=t[f];if(n)var _=c?n(g,v,f,t,e,a):n(v,g,f,e,t,a);if(!(_===o?v===g||i(v,g,r,n,a):_)){h=!1;break}b||(b=\"constructor\"==f)}if(h&&!b){var w=e.constructor,x=t.constructor;w==x||!(\"constructor\"in e)||!(\"constructor\"in t)||\"function\"==typeof w&&w instanceof w&&\"function\"==typeof x&&x instanceof x||(h=!1)}return a.delete(e),a.delete(t),h}(e,t,r,n,i,a)}(e,t,r,n,Pn,i))}function An(e,t,r,n){var i=r.length,a=i,c=!n;if(null==e)return!a;for(e=Se(e);i--;){var l=r[i];if(c&&l[2]?l[1]!==e[l[0]]:!(l[0]in e))return!1}for(;++i<a;){var s=(l=r[i])[0],u=e[s],p=l[1];if(c&&l[2]){if(u===o&&!(s in e))return!1}else{var d=new qr;if(n)var f=n(u,p,s,e,t,d);if(!(f===o?Pn(p,u,3,n,d):f))return!1}}return!0}function Dn(e){return!(!tc(e)||(t=e,Be&&Be in t))&&(Ka(e)?Ze:ve).test(Ri(e));var t}function Tn(e){return\"function\"==typeof e?e:null==e?ol:\"object\"==typeof e?Va(e)?Zn(e[0],e[1]):Un(e):fl(e)}function zn(e){if(!Mi(e))return Gt(e);var t=[];for(var r in Se(e))Te.call(e,r)&&\"constructor\"!=r&&t.push(r);return t}function Bn(e){if(!tc(e))return function(e){var t=[];if(null!=e)for(var r in Se(e))t.push(r);return t}(e);var t=Mi(e),r=[];for(var n in e)(\"constructor\"!=n||!t&&Te.call(e,n))&&r.push(n);return r}function Rn(e,t){return e<t}function Fn(e,t){var r=-1,o=Ha(e)?n(e.length):[];return fn(e,(function(e,n,i){o[++r]=t(e,n,i)})),o}function Un(e){var t=di(e);return 1==t.length&&t[0][2]?Si(t[0][0],t[0][1]):function(r){return r===e||An(r,e,t)}}function Zn(e,t){return xi(e)&&ji(t)?Si(Bi(e),t):function(r){var n=Sc(r,e);return n===o&&n===t?Ec(r,e):Pn(t,n,3)}}function Yn(e,t,r,n,i){e!==t&&gn(t,(function(a,c){if(i||(i=new qr),tc(a))!function(e,t,r,n,i,a,c){var l=Oi(e,r),s=Oi(t,r),u=c.get(s);if(u)return void en(e,r,u);var p=a?a(l,s,r+\"\",e,t,c):o,d=p===o;if(d){var f=Va(s),m=!f&&qa(s),y=!f&&!m&&uc(s);p=s,f||m||y?Va(l)?p=l:Ga(l)?p=Io(l):m?(d=!1,p=Mo(s,!0)):y?(d=!1,p=So(s,!0)):p=[]:ic(s)||Wa(s)?(p=l,Wa(l)?p=vc(l):tc(l)&&!Ka(l)||(p=vi(s))):d=!1}d&&(c.set(s,p),i(p,s,n,a,c),c.delete(s));en(e,r,p)}(e,t,c,r,Yn,n,i);else{var l=n?n(Oi(e,c),a,c+\"\",e,t,i):o;l===o&&(l=a),en(e,c,l)}}),Pc)}function Wn(e,t){var r=e.length;if(r)return _i(t+=t<0?r:0,r)?e[t]:o}function Vn(e,t,r){t=t.length?Dt(t,(function(e){return Va(e)?function(t){return Nn(t,1===e.length?e[0]:e)}:e})):[ol];var n=-1;t=Dt(t,Jt(ui()));var o=Fn(e,(function(e,r,o){var i=Dt(t,(function(t){return t(e)}));return{criteria:i,index:++n,value:e}}));return function(e,t){var r=e.length;for(e.sort(t);r--;)e[r]=e[r].value;return e}(o,(function(e,t){return function(e,t,r){var n=-1,o=e.criteria,i=t.criteria,a=o.length,c=r.length;for(;++n<a;){var l=Eo(o[n],i[n]);if(l)return n>=c?l:l*(\"desc\"==r[n]?-1:1)}return e.index-t.index}(e,t,r)}))}function Qn(e,t,r){for(var n=-1,o=t.length,i={};++n<o;){var a=t[n],c=Nn(e,a);r(c,a)&&eo(i,wo(a,e),c)}return i}function Hn(e,t,r,n){var o=n?Wt:Yt,i=-1,a=t.length,c=e;for(e===t&&(t=Io(t)),r&&(c=Dt(e,Jt(r)));++i<a;)for(var l=0,s=t[i],u=r?r(s):s;(l=o(c,u,l,n))>-1;)c!==e&&$e.call(c,l,1),$e.call(e,l,1);return e}function Gn(e,t){for(var r=e?t.length:0,n=r-1;r--;){var o=t[r];if(r==n||o!==i){var i=o;_i(o)?$e.call(e,o,1):fo(e,o)}}return e}function qn(e,t){return e+ht(xr()*(t-e+1))}function $n(e,t){var r=\"\";if(!e||t<1||t>m)return r;do{t%2&&(r+=e),(t=ht(t/2))&&(e+=e)}while(t);return r}function Xn(e,t){return Pi(Ei(e,t,ol),e+\"\")}function Kn(e){return Xr(Uc(e))}function Jn(e,t){var r=Uc(e);return Ti(r,ln(t,0,r.length))}function eo(e,t,r,n){if(!tc(e))return e;for(var i=-1,a=(t=wo(t,e)).length,c=a-1,l=e;null!=l&&++i<a;){var s=Bi(t[i]),u=r;if(\"__proto__\"===s||\"constructor\"===s||\"prototype\"===s)return e;if(i!=c){var p=l[s];(u=n?n(p,s,l):o)===o&&(u=tc(p)?p:_i(t[i+1])?[]:{})}tn(l,s,u),l=l[s]}return e}var to=Or?function(e,t){return Or.set(e,t),e}:ol,ro=rt?function(e,t){return rt(e,\"toString\",{configurable:!0,enumerable:!1,value:tl(t),writable:!0})}:ol;function no(e){return Ti(Uc(e))}function oo(e,t,r){var o=-1,i=e.length;t<0&&(t=-t>i?0:i+t),(r=r>i?i:r)<0&&(r+=i),i=t>r?0:r-t>>>0,t>>>=0;for(var a=n(i);++o<i;)a[o]=e[o+t];return a}function io(e,t){var r;return fn(e,(function(e,n,o){return!(r=t(e,n,o))})),!!r}function ao(e,t,r){var n=0,o=null==e?n:e.length;if(\"number\"==typeof t&&t==t&&o<=2147483647){for(;n<o;){var i=n+o>>>1,a=e[i];null!==a&&!sc(a)&&(r?a<=t:a<t)?n=i+1:o=i}return o}return co(e,t,ol,r)}function co(e,t,r,n){var i=0,a=null==e?0:e.length;if(0===a)return 0;for(var c=(t=r(t))!=t,l=null===t,s=sc(t),u=t===o;i<a;){var p=ht((i+a)/2),d=r(e[p]),f=d!==o,m=null===d,y=d==d,h=sc(d);if(c)var b=n||y;else b=u?y&&(n||f):l?y&&f&&(n||!m):s?y&&f&&!m&&(n||!h):!m&&!h&&(n?d<=t:d<t);b?i=p+1:a=p}return gr(a,4294967294)}function lo(e,t){for(var r=-1,n=e.length,o=0,i=[];++r<n;){var a=e[r],c=t?t(a):a;if(!r||!Ua(c,l)){var l=c;i[o++]=0===a?0:a}}return i}function so(e){return\"number\"==typeof e?e:sc(e)?y:+e}function uo(e){if(\"string\"==typeof e)return e;if(Va(e))return Dt(e,uo)+\"\";if(sc(e))return Rr?Rr.call(e):\"\";var t=e+\"\";return\"0\"==t&&1/e==-1/0?\"-0\":t}function po(e,t,r){var n=-1,o=Pt,i=e.length,a=!0,c=[],l=c;if(r)a=!1,o=At;else if(i>=200){var s=t?null:Xo(e);if(s)return pr(s);a=!1,o=tr,l=new Gr}else l=t?[]:c;e:for(;++n<i;){var u=e[n],p=t?t(u):u;if(u=r||0!==u?u:0,a&&p==p){for(var d=l.length;d--;)if(l[d]===p)continue e;t&&l.push(p),c.push(u)}else o(l,p,r)||(l!==c&&l.push(p),c.push(u))}return c}function fo(e,t){return null==(e=Li(e,t=wo(t,e)))||delete e[Bi(Xi(t))]}function mo(e,t,r,n){return eo(e,t,r(Nn(e,t)),n)}function yo(e,t,r,n){for(var o=e.length,i=n?o:-1;(n?i--:++i<o)&&t(e[i],i,e););return r?oo(e,n?0:i,n?i+1:o):oo(e,n?i+1:0,n?o:i)}function ho(e,t){var r=e;return r instanceof Wr&&(r=r.value()),zt(t,(function(e,t){return t.func.apply(t.thisArg,Tt([e],t.args))}),r)}function bo(e,t,r){var o=e.length;if(o<2)return o?po(e[0]):[];for(var i=-1,a=n(o);++i<o;)for(var c=e[i],l=-1;++l<o;)l!=i&&(a[i]=dn(a[i]||c,e[l],t,r));return po(vn(a,1),t,r)}function vo(e,t,r){for(var n=-1,i=e.length,a=t.length,c={};++n<i;){var l=n<a?t[n]:o;r(c,e[n],l)}return c}function go(e){return Ga(e)?e:[]}function _o(e){return\"function\"==typeof e?e:ol}function wo(e,t){return Va(e)?e:xi(e,t)?[e]:zi(gc(e))}var xo=Xn;function ko(e,t,r){var n=e.length;return r=r===o?n:r,!t&&r>=n?e:oo(e,t,r)}var No=ot||function(e){return yt.clearTimeout(e)};function Mo(e,t){if(t)return e.slice();var r=e.length,n=Qe?Qe(r):new e.constructor(r);return e.copy(n),n}function jo(e){var t=new e.constructor(e.byteLength);return new Ve(t).set(new Ve(e)),t}function So(e,t){var r=t?jo(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}function Eo(e,t){if(e!==t){var r=e!==o,n=null===e,i=e==e,a=sc(e),c=t!==o,l=null===t,s=t==t,u=sc(t);if(!l&&!u&&!a&&e>t||a&&c&&s&&!l&&!u||n&&c&&s||!r&&s||!i)return 1;if(!n&&!a&&!u&&e<t||u&&r&&i&&!n&&!a||l&&r&&i||!c&&i||!s)return-1}return 0}function Lo(e,t,r,o){for(var i=-1,a=e.length,c=r.length,l=-1,s=t.length,u=vr(a-c,0),p=n(s+u),d=!o;++l<s;)p[l]=t[l];for(;++i<c;)(d||i<a)&&(p[r[i]]=e[i]);for(;u--;)p[l++]=e[i++];return p}function Oo(e,t,r,o){for(var i=-1,a=e.length,c=-1,l=r.length,s=-1,u=t.length,p=vr(a-l,0),d=n(p+u),f=!o;++i<p;)d[i]=e[i];for(var m=i;++s<u;)d[m+s]=t[s];for(;++c<l;)(f||i<a)&&(d[m+r[c]]=e[i++]);return d}function Io(e,t){var r=-1,o=e.length;for(t||(t=n(o));++r<o;)t[r]=e[r];return t}function Co(e,t,r,n){var i=!r;r||(r={});for(var a=-1,c=t.length;++a<c;){var l=t[a],s=n?n(r[l],e[l],l,r,e):o;s===o&&(s=e[l]),i?an(r,l,s):tn(r,l,s)}return r}function Po(e,t){return function(r,n){var o=Va(r)?Et:nn,i=t?t():{};return o(r,e,ui(n,2),i)}}function Ao(e){return Xn((function(t,r){var n=-1,i=r.length,a=i>1?r[i-1]:o,c=i>2?r[2]:o;for(a=e.length>3&&\"function\"==typeof a?(i--,a):o,c&&wi(r[0],r[1],c)&&(a=i<3?o:a,i=1),t=Se(t);++n<i;){var l=r[n];l&&e(t,l,n,a)}return t}))}function Do(e,t){return function(r,n){if(null==r)return r;if(!Ha(r))return e(r,n);for(var o=r.length,i=t?o:-1,a=Se(r);(t?i--:++i<o)&&!1!==n(a[i],i,a););return r}}function To(e){return function(t,r,n){for(var o=-1,i=Se(t),a=n(t),c=a.length;c--;){var l=a[e?c:++o];if(!1===r(i[l],l,i))break}return t}}function zo(e){return function(t){var r=cr(t=gc(t))?mr(t):o,n=r?r[0]:t.charAt(0),i=r?ko(r,1).join(\"\"):t.slice(1);return n[e]()+i}}function Bo(e){return function(t){return zt(Kc(Wc(t).replace(et,\"\")),e,\"\")}}function Ro(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var r=Ur(e.prototype),n=e.apply(r,t);return tc(n)?n:r}}function Fo(e){return function(t,r,n){var i=Se(t);if(!Ha(t)){var a=ui(r,3);t=Cc(t),r=function(e){return a(i[e],e,i)}}var c=e(t,r,n);return c>-1?i[a?t[c]:c]:o}}function Uo(e){return oi((function(t){var r=t.length,n=r,a=Yr.prototype.thru;for(e&&t.reverse();n--;){var c=t[n];if(\"function\"!=typeof c)throw new Oe(i);if(a&&!l&&\"wrapper\"==li(c))var l=new Yr([],!0)}for(n=l?n:r;++n<r;){var s=li(c=t[n]),u=\"wrapper\"==s?ci(c):o;l=u&&ki(u[0])&&424==u[1]&&!u[4].length&&1==u[9]?l[li(u[0])].apply(l,u[3]):1==c.length&&ki(c)?l[s]():l.thru(c)}return function(){var e=arguments,n=e[0];if(l&&1==e.length&&Va(n))return l.plant(n).value();for(var o=0,i=r?t[o].apply(this,e):n;++o<r;)i=t[o].call(this,i);return i}}))}function Zo(e,t,r,i,a,c,l,s,u,d){var f=t&p,m=1&t,y=2&t,h=24&t,b=512&t,v=y?o:Ro(e);return function p(){for(var g=arguments.length,_=n(g),w=g;w--;)_[w]=arguments[w];if(h)var x=si(p),k=function(e,t){for(var r=e.length,n=0;r--;)e[r]===t&&++n;return n}(_,x);if(i&&(_=Lo(_,i,a,h)),c&&(_=Oo(_,c,l,h)),g-=k,h&&g<d){var N=ur(_,x);return qo(e,t,Zo,p.placeholder,r,_,N,s,u,d-g)}var M=m?r:this,j=y?M[e]:e;return g=_.length,s?_=function(e,t){var r=e.length,n=gr(t.length,r),i=Io(e);for(;n--;){var a=t[n];e[n]=_i(a,r)?i[a]:o}return e}(_,s):b&&g>1&&_.reverse(),f&&u<g&&(_.length=u),this&&this!==yt&&this instanceof p&&(j=v||Ro(j)),j.apply(M,_)}}function Yo(e,t){return function(r,n){return function(e,t,r,n){return wn(e,(function(e,o,i){t(n,r(e),o,i)})),n}(r,e,t(n),{})}}function Wo(e,t){return function(r,n){var i;if(r===o&&n===o)return t;if(r!==o&&(i=r),n!==o){if(i===o)return n;\"string\"==typeof r||\"string\"==typeof n?(r=uo(r),n=uo(n)):(r=so(r),n=so(n)),i=e(r,n)}return i}}function Vo(e){return oi((function(t){return t=Dt(t,Jt(ui())),Xn((function(r){var n=this;return e(t,(function(e){return St(e,n,r)}))}))}))}function Qo(e,t){var r=(t=t===o?\" \":uo(t)).length;if(r<2)return r?$n(t,e):t;var n=$n(t,mt(e/fr(t)));return cr(t)?ko(mr(n),0,e).join(\"\"):n.slice(0,e)}function Ho(e){return function(t,r,i){return i&&\"number\"!=typeof i&&wi(t,r,i)&&(r=i=o),t=mc(t),r===o?(r=t,t=0):r=mc(r),function(e,t,r,o){for(var i=-1,a=vr(mt((t-e)/(r||1)),0),c=n(a);a--;)c[o?a:++i]=e,e+=r;return c}(t,r,i=i===o?t<r?1:-1:mc(i),e)}}function Go(e){return function(t,r){return\"string\"==typeof t&&\"string\"==typeof r||(t=bc(t),r=bc(r)),e(t,r)}}function qo(e,t,r,n,i,a,c,l,p,d){var f=8&t;t|=f?s:u,4&(t&=~(f?u:s))||(t&=-4);var m=[e,t,i,f?a:o,f?c:o,f?o:a,f?o:c,l,p,d],y=r.apply(o,m);return ki(e)&&Ii(y,m),y.placeholder=n,Ai(y,e,t)}function $o(e){var t=je[e];return function(e,r){if(e=bc(e),(r=null==r?0:gr(yc(r),292))&&_t(e)){var n=(gc(e)+\"e\").split(\"e\");return+((n=(gc(t(n[0]+\"e\"+(+n[1]+r)))+\"e\").split(\"e\"))[0]+\"e\"+(+n[1]-r))}return t(e)}}var Xo=Sr&&1/pr(new Sr([,-0]))[1]==f?function(e){return new Sr(e)}:sl;function Ko(e){return function(t){var r=hi(t);return r==M?lr(t):r==O?dr(t):function(e,t){return Dt(t,(function(t){return[t,e[t]]}))}(t,e(t))}}function Jo(e,t,r,a,f,m,y,h){var b=2&t;if(!b&&\"function\"!=typeof e)throw new Oe(i);var v=a?a.length:0;if(v||(t&=-97,a=f=o),y=y===o?y:vr(yc(y),0),h=h===o?h:yc(h),v-=f?f.length:0,t&u){var g=a,_=f;a=f=o}var w=b?o:ci(e),x=[e,t,r,a,f,g,_,m,y,h];if(w&&function(e,t){var r=e[1],n=t[1],o=r|n,i=o<131,a=n==p&&8==r||n==p&&r==d&&e[7].length<=t[8]||384==n&&t[7].length<=t[8]&&8==r;if(!i&&!a)return e;1&n&&(e[2]=t[2],o|=1&r?0:4);var l=t[3];if(l){var s=e[3];e[3]=s?Lo(s,l,t[4]):l,e[4]=s?ur(e[3],c):t[4]}(l=t[5])&&(s=e[5],e[5]=s?Oo(s,l,t[6]):l,e[6]=s?ur(e[5],c):t[6]);(l=t[7])&&(e[7]=l);n&p&&(e[8]=null==e[8]?t[8]:gr(e[8],t[8]));null==e[9]&&(e[9]=t[9]);e[0]=t[0],e[1]=o}(x,w),e=x[0],t=x[1],r=x[2],a=x[3],f=x[4],!(h=x[9]=x[9]===o?b?0:e.length:vr(x[9]-v,0))&&24&t&&(t&=-25),t&&1!=t)k=8==t||t==l?function(e,t,r){var i=Ro(e);return function a(){for(var c=arguments.length,l=n(c),s=c,u=si(a);s--;)l[s]=arguments[s];var p=c<3&&l[0]!==u&&l[c-1]!==u?[]:ur(l,u);return(c-=p.length)<r?qo(e,t,Zo,a.placeholder,o,l,p,o,o,r-c):St(this&&this!==yt&&this instanceof a?i:e,this,l)}}(e,t,h):t!=s&&33!=t||f.length?Zo.apply(o,x):function(e,t,r,o){var i=1&t,a=Ro(e);return function t(){for(var c=-1,l=arguments.length,s=-1,u=o.length,p=n(u+l),d=this&&this!==yt&&this instanceof t?a:e;++s<u;)p[s]=o[s];for(;l--;)p[s++]=arguments[++c];return St(d,i?r:this,p)}}(e,t,r,a);else var k=function(e,t,r){var n=1&t,o=Ro(e);return function t(){return(this&&this!==yt&&this instanceof t?o:e).apply(n?r:this,arguments)}}(e,t,r);return Ai((w?to:Ii)(k,x),e,t)}function ei(e,t,r,n){return e===o||Ua(e,Pe[r])&&!Te.call(n,r)?t:e}function ti(e,t,r,n,i,a){return tc(e)&&tc(t)&&(a.set(t,e),Yn(e,t,o,ti,a),a.delete(t)),e}function ri(e){return ic(e)?o:e}function ni(e,t,r,n,i,a){var c=1&r,l=e.length,s=t.length;if(l!=s&&!(c&&s>l))return!1;var u=a.get(e),p=a.get(t);if(u&&p)return u==t&&p==e;var d=-1,f=!0,m=2&r?new Gr:o;for(a.set(e,t),a.set(t,e);++d<l;){var y=e[d],h=t[d];if(n)var b=c?n(h,y,d,t,e,a):n(y,h,d,e,t,a);if(b!==o){if(b)continue;f=!1;break}if(m){if(!Rt(t,(function(e,t){if(!tr(m,t)&&(y===e||i(y,e,r,n,a)))return m.push(t)}))){f=!1;break}}else if(y!==h&&!i(y,h,r,n,a)){f=!1;break}}return a.delete(e),a.delete(t),f}function oi(e){return Pi(Ei(e,o,Qi),e+\"\")}function ii(e){return Mn(e,Cc,mi)}function ai(e){return Mn(e,Pc,yi)}var ci=Or?function(e){return Or.get(e)}:sl;function li(e){for(var t=e.name+\"\",r=Ir[t],n=Te.call(Ir,t)?r.length:0;n--;){var o=r[n],i=o.func;if(null==i||i==e)return o.name}return t}function si(e){return(Te.call(Fr,\"placeholder\")?Fr:e).placeholder}function ui(){var e=Fr.iteratee||il;return e=e===il?Tn:e,arguments.length?e(arguments[0],arguments[1]):e}function pi(e,t){var r,n,o=e.__data__;return(\"string\"==(n=typeof(r=t))||\"number\"==n||\"symbol\"==n||\"boolean\"==n?\"__proto__\"!==r:null===r)?o[\"string\"==typeof t?\"string\":\"hash\"]:o.map}function di(e){for(var t=Cc(e),r=t.length;r--;){var n=t[r],o=e[n];t[r]=[n,o,ji(o)]}return t}function fi(e,t){var r=function(e,t){return null==e?o:e[t]}(e,t);return Dn(r)?r:o}var mi=bt?function(e){return null==e?[]:(e=Se(e),Ct(bt(e),(function(t){return qe.call(e,t)})))}:hl,yi=bt?function(e){for(var t=[];e;)Tt(t,mi(e)),e=He(e);return t}:hl,hi=jn;function bi(e,t,r){for(var n=-1,o=(t=wo(t,e)).length,i=!1;++n<o;){var a=Bi(t[n]);if(!(i=null!=e&&r(e,a)))break;e=e[a]}return i||++n!=o?i:!!(o=null==e?0:e.length)&&ec(o)&&_i(a,o)&&(Va(e)||Wa(e))}function vi(e){return\"function\"!=typeof e.constructor||Mi(e)?{}:Ur(He(e))}function gi(e){return Va(e)||Wa(e)||!!(Xe&&e&&e[Xe])}function _i(e,t){var r=typeof e;return!!(t=null==t?m:t)&&(\"number\"==r||\"symbol\"!=r&&_e.test(e))&&e>-1&&e%1==0&&e<t}function wi(e,t,r){if(!tc(r))return!1;var n=typeof t;return!!(\"number\"==n?Ha(r)&&_i(t,r.length):\"string\"==n&&t in r)&&Ua(r[t],e)}function xi(e,t){if(Va(e))return!1;var r=typeof e;return!(\"number\"!=r&&\"symbol\"!=r&&\"boolean\"!=r&&null!=e&&!sc(e))||(re.test(e)||!te.test(e)||null!=t&&e in Se(t))}function ki(e){var t=li(e),r=Fr[t];if(\"function\"!=typeof r||!(t in Wr.prototype))return!1;if(e===r)return!0;var n=ci(r);return!!n&&e===n[0]}(Nr&&hi(new Nr(new ArrayBuffer(1)))!=D||Mr&&hi(new Mr)!=M||jr&&hi(jr.resolve())!=E||Sr&&hi(new Sr)!=O||Er&&hi(new Er)!=P)&&(hi=function(e){var t=jn(e),r=t==S?e.constructor:o,n=r?Ri(r):\"\";if(n)switch(n){case Cr:return D;case Pr:return M;case Ar:return E;case Dr:return O;case Tr:return P}return t});var Ni=Ae?Ka:bl;function Mi(e){var t=e&&e.constructor;return e===(\"function\"==typeof t&&t.prototype||Pe)}function ji(e){return e==e&&!tc(e)}function Si(e,t){return function(r){return null!=r&&(r[e]===t&&(t!==o||e in Se(r)))}}function Ei(e,t,r){return t=vr(t===o?e.length-1:t,0),function(){for(var o=arguments,i=-1,a=vr(o.length-t,0),c=n(a);++i<a;)c[i]=o[t+i];i=-1;for(var l=n(t+1);++i<t;)l[i]=o[i];return l[t]=r(c),St(e,this,l)}}function Li(e,t){return t.length<2?e:Nn(e,oo(t,0,-1))}function Oi(e,t){if((\"constructor\"!==t||\"function\"!=typeof e[t])&&\"__proto__\"!=t)return e[t]}var Ii=Di(to),Ci=ft||function(e,t){return yt.setTimeout(e,t)},Pi=Di(ro);function Ai(e,t,r){var n=t+\"\";return Pi(e,function(e,t){var r=t.length;if(!r)return e;var n=r-1;return t[n]=(r>1?\"& \":\"\")+t[n],t=t.join(r>2?\", \":\" \"),e.replace(le,\"{\\n/* [wrapped with \"+t+\"] */\\n\")}(n,function(e,t){return Lt(b,(function(r){var n=\"_.\"+r[0];t&r[1]&&!Pt(e,n)&&e.push(n)})),e.sort()}(function(e){var t=e.match(se);return t?t[1].split(ue):[]}(n),r)))}function Di(e){var t=0,r=0;return function(){var n=_r(),i=16-(n-r);if(r=n,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(o,arguments)}}function Ti(e,t){var r=-1,n=e.length,i=n-1;for(t=t===o?n:t;++r<t;){var a=qn(r,i),c=e[a];e[a]=e[r],e[r]=c}return e.length=t,e}var zi=function(e){var t=Da(e,(function(e){return 500===r.size&&r.clear(),e})),r=t.cache;return t}((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(\"\"),e.replace(ne,(function(e,r,n,o){t.push(n?o.replace(fe,\"$1\"):r||e)})),t}));function Bi(e){if(\"string\"==typeof e||sc(e))return e;var t=e+\"\";return\"0\"==t&&1/e==-1/0?\"-0\":t}function Ri(e){if(null!=e){try{return De.call(e)}catch(e){}try{return e+\"\"}catch(e){}}return\"\"}function Fi(e){if(e instanceof Wr)return e.clone();var t=new Yr(e.__wrapped__,e.__chain__);return t.__actions__=Io(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}var Ui=Xn((function(e,t){return Ga(e)?dn(e,vn(t,1,Ga,!0)):[]})),Zi=Xn((function(e,t){var r=Xi(t);return Ga(r)&&(r=o),Ga(e)?dn(e,vn(t,1,Ga,!0),ui(r,2)):[]})),Yi=Xn((function(e,t){var r=Xi(t);return Ga(r)&&(r=o),Ga(e)?dn(e,vn(t,1,Ga,!0),o,r):[]}));function Wi(e,t,r){var n=null==e?0:e.length;if(!n)return-1;var o=null==r?0:yc(r);return o<0&&(o=vr(n+o,0)),Zt(e,ui(t,3),o)}function Vi(e,t,r){var n=null==e?0:e.length;if(!n)return-1;var i=n-1;return r!==o&&(i=yc(r),i=r<0?vr(n+i,0):gr(i,n-1)),Zt(e,ui(t,3),i,!0)}function Qi(e){return(null==e?0:e.length)?vn(e,1):[]}function Hi(e){return e&&e.length?e[0]:o}var Gi=Xn((function(e){var t=Dt(e,go);return t.length&&t[0]===e[0]?On(t):[]})),qi=Xn((function(e){var t=Xi(e),r=Dt(e,go);return t===Xi(r)?t=o:r.pop(),r.length&&r[0]===e[0]?On(r,ui(t,2)):[]})),$i=Xn((function(e){var t=Xi(e),r=Dt(e,go);return(t=\"function\"==typeof t?t:o)&&r.pop(),r.length&&r[0]===e[0]?On(r,o,t):[]}));function Xi(e){var t=null==e?0:e.length;return t?e[t-1]:o}var Ki=Xn(Ji);function Ji(e,t){return e&&e.length&&t&&t.length?Hn(e,t):e}var ea=oi((function(e,t){var r=null==e?0:e.length,n=cn(e,t);return Gn(e,Dt(t,(function(e){return _i(e,r)?+e:e})).sort(Eo)),n}));function ta(e){return null==e?e:kr.call(e)}var ra=Xn((function(e){return po(vn(e,1,Ga,!0))})),na=Xn((function(e){var t=Xi(e);return Ga(t)&&(t=o),po(vn(e,1,Ga,!0),ui(t,2))})),oa=Xn((function(e){var t=Xi(e);return t=\"function\"==typeof t?t:o,po(vn(e,1,Ga,!0),o,t)}));function ia(e){if(!e||!e.length)return[];var t=0;return e=Ct(e,(function(e){if(Ga(e))return t=vr(e.length,t),!0})),Xt(t,(function(t){return Dt(e,Ht(t))}))}function aa(e,t){if(!e||!e.length)return[];var r=ia(e);return null==t?r:Dt(r,(function(e){return St(t,o,e)}))}var ca=Xn((function(e,t){return Ga(e)?dn(e,t):[]})),la=Xn((function(e){return bo(Ct(e,Ga))})),sa=Xn((function(e){var t=Xi(e);return Ga(t)&&(t=o),bo(Ct(e,Ga),ui(t,2))})),ua=Xn((function(e){var t=Xi(e);return t=\"function\"==typeof t?t:o,bo(Ct(e,Ga),o,t)})),pa=Xn(ia);var da=Xn((function(e){var t=e.length,r=t>1?e[t-1]:o;return r=\"function\"==typeof r?(e.pop(),r):o,aa(e,r)}));function fa(e){var t=Fr(e);return t.__chain__=!0,t}function ma(e,t){return t(e)}var ya=oi((function(e){var t=e.length,r=t?e[0]:0,n=this.__wrapped__,i=function(t){return cn(t,e)};return!(t>1||this.__actions__.length)&&n instanceof Wr&&_i(r)?((n=n.slice(r,+r+(t?1:0))).__actions__.push({func:ma,args:[i],thisArg:o}),new Yr(n,this.__chain__).thru((function(e){return t&&!e.length&&e.push(o),e}))):this.thru(i)}));var ha=Po((function(e,t,r){Te.call(e,r)?++e[r]:an(e,r,1)}));var ba=Fo(Wi),va=Fo(Vi);function ga(e,t){return(Va(e)?Lt:fn)(e,ui(t,3))}function _a(e,t){return(Va(e)?Ot:mn)(e,ui(t,3))}var wa=Po((function(e,t,r){Te.call(e,r)?e[r].push(t):an(e,r,[t])}));var xa=Xn((function(e,t,r){var o=-1,i=\"function\"==typeof t,a=Ha(e)?n(e.length):[];return fn(e,(function(e){a[++o]=i?St(t,e,r):In(e,t,r)})),a})),ka=Po((function(e,t,r){an(e,r,t)}));function Na(e,t){return(Va(e)?Dt:Fn)(e,ui(t,3))}var Ma=Po((function(e,t,r){e[r?0:1].push(t)}),(function(){return[[],[]]}));var ja=Xn((function(e,t){if(null==e)return[];var r=t.length;return r>1&&wi(e,t[0],t[1])?t=[]:r>2&&wi(t[0],t[1],t[2])&&(t=[t[0]]),Vn(e,vn(t,1),[])})),Sa=ut||function(){return yt.Date.now()};function Ea(e,t,r){return t=r?o:t,t=e&&null==t?e.length:t,Jo(e,p,o,o,o,o,t)}function La(e,t){var r;if(\"function\"!=typeof t)throw new Oe(i);return e=yc(e),function(){return--e>0&&(r=t.apply(this,arguments)),e<=1&&(t=o),r}}var Oa=Xn((function(e,t,r){var n=1;if(r.length){var o=ur(r,si(Oa));n|=s}return Jo(e,n,t,r,o)})),Ia=Xn((function(e,t,r){var n=3;if(r.length){var o=ur(r,si(Ia));n|=s}return Jo(t,n,e,r,o)}));function Ca(e,t,r){var n,a,c,l,s,u,p=0,d=!1,f=!1,m=!0;if(\"function\"!=typeof e)throw new Oe(i);function y(t){var r=n,i=a;return n=a=o,p=t,l=e.apply(i,r)}function h(e){var r=e-u;return u===o||r>=t||r<0||f&&e-p>=c}function b(){var e=Sa();if(h(e))return v(e);s=Ci(b,function(e){var r=t-(e-u);return f?gr(r,c-(e-p)):r}(e))}function v(e){return s=o,m&&n?y(e):(n=a=o,l)}function g(){var e=Sa(),r=h(e);if(n=arguments,a=this,u=e,r){if(s===o)return function(e){return p=e,s=Ci(b,t),d?y(e):l}(u);if(f)return No(s),s=Ci(b,t),y(u)}return s===o&&(s=Ci(b,t)),l}return t=bc(t)||0,tc(r)&&(d=!!r.leading,c=(f=\"maxWait\"in r)?vr(bc(r.maxWait)||0,t):c,m=\"trailing\"in r?!!r.trailing:m),g.cancel=function(){s!==o&&No(s),p=0,n=u=a=s=o},g.flush=function(){return s===o?l:v(Sa())},g}var Pa=Xn((function(e,t){return pn(e,1,t)})),Aa=Xn((function(e,t,r){return pn(e,bc(t)||0,r)}));function Da(e,t){if(\"function\"!=typeof e||null!=t&&\"function\"!=typeof t)throw new Oe(i);var r=function(){var n=arguments,o=t?t.apply(this,n):n[0],i=r.cache;if(i.has(o))return i.get(o);var a=e.apply(this,n);return r.cache=i.set(o,a)||i,a};return r.cache=new(Da.Cache||Hr),r}function Ta(e){if(\"function\"!=typeof e)throw new Oe(i);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Da.Cache=Hr;var za=xo((function(e,t){var r=(t=1==t.length&&Va(t[0])?Dt(t[0],Jt(ui())):Dt(vn(t,1),Jt(ui()))).length;return Xn((function(n){for(var o=-1,i=gr(n.length,r);++o<i;)n[o]=t[o].call(this,n[o]);return St(e,this,n)}))})),Ba=Xn((function(e,t){var r=ur(t,si(Ba));return Jo(e,s,o,t,r)})),Ra=Xn((function(e,t){var r=ur(t,si(Ra));return Jo(e,u,o,t,r)})),Fa=oi((function(e,t){return Jo(e,d,o,o,o,t)}));function Ua(e,t){return e===t||e!=e&&t!=t}var Za=Go(Sn),Ya=Go((function(e,t){return e>=t})),Wa=Cn(function(){return arguments}())?Cn:function(e){return rc(e)&&Te.call(e,\"callee\")&&!qe.call(e,\"callee\")},Va=n.isArray,Qa=wt?Jt(wt):function(e){return rc(e)&&jn(e)==A};function Ha(e){return null!=e&&ec(e.length)&&!Ka(e)}function Ga(e){return rc(e)&&Ha(e)}var qa=gt||bl,$a=xt?Jt(xt):function(e){return rc(e)&&jn(e)==w};function Xa(e){if(!rc(e))return!1;var t=jn(e);return t==x||\"[object DOMException]\"==t||\"string\"==typeof e.message&&\"string\"==typeof e.name&&!ic(e)}function Ka(e){if(!tc(e))return!1;var t=jn(e);return t==k||t==N||\"[object AsyncFunction]\"==t||\"[object Proxy]\"==t}function Ja(e){return\"number\"==typeof e&&e==yc(e)}function ec(e){return\"number\"==typeof e&&e>-1&&e%1==0&&e<=m}function tc(e){var t=typeof e;return null!=e&&(\"object\"==t||\"function\"==t)}function rc(e){return null!=e&&\"object\"==typeof e}var nc=kt?Jt(kt):function(e){return rc(e)&&hi(e)==M};function oc(e){return\"number\"==typeof e||rc(e)&&jn(e)==j}function ic(e){if(!rc(e)||jn(e)!=S)return!1;var t=He(e);if(null===t)return!0;var r=Te.call(t,\"constructor\")&&t.constructor;return\"function\"==typeof r&&r instanceof r&&De.call(r)==Fe}var ac=Nt?Jt(Nt):function(e){return rc(e)&&jn(e)==L};var cc=Mt?Jt(Mt):function(e){return rc(e)&&hi(e)==O};function lc(e){return\"string\"==typeof e||!Va(e)&&rc(e)&&jn(e)==I}function sc(e){return\"symbol\"==typeof e||rc(e)&&jn(e)==C}var uc=jt?Jt(jt):function(e){return rc(e)&&ec(e.length)&&!!lt[jn(e)]};var pc=Go(Rn),dc=Go((function(e,t){return e<=t}));function fc(e){if(!e)return[];if(Ha(e))return lc(e)?mr(e):Io(e);if(Ke&&e[Ke])return function(e){for(var t,r=[];!(t=e.next()).done;)r.push(t.value);return r}(e[Ke]());var t=hi(e);return(t==M?lr:t==O?pr:Uc)(e)}function mc(e){return e?(e=bc(e))===f||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function yc(e){var t=mc(e),r=t%1;return t==t?r?t-r:t:0}function hc(e){return e?ln(yc(e),0,h):0}function bc(e){if(\"number\"==typeof e)return e;if(sc(e))return y;if(tc(e)){var t=\"function\"==typeof e.valueOf?e.valueOf():e;e=tc(t)?t+\"\":t}if(\"string\"!=typeof e)return 0===e?e:+e;e=Kt(e);var r=be.test(e);return r||ge.test(e)?dt(e.slice(2),r?2:8):he.test(e)?y:+e}function vc(e){return Co(e,Pc(e))}function gc(e){return null==e?\"\":uo(e)}var _c=Ao((function(e,t){if(Mi(t)||Ha(t))Co(t,Cc(t),e);else for(var r in t)Te.call(t,r)&&tn(e,r,t[r])})),wc=Ao((function(e,t){Co(t,Pc(t),e)})),xc=Ao((function(e,t,r,n){Co(t,Pc(t),e,n)})),kc=Ao((function(e,t,r,n){Co(t,Cc(t),e,n)})),Nc=oi(cn);var Mc=Xn((function(e,t){e=Se(e);var r=-1,n=t.length,i=n>2?t[2]:o;for(i&&wi(t[0],t[1],i)&&(n=1);++r<n;)for(var a=t[r],c=Pc(a),l=-1,s=c.length;++l<s;){var u=c[l],p=e[u];(p===o||Ua(p,Pe[u])&&!Te.call(e,u))&&(e[u]=a[u])}return e})),jc=Xn((function(e){return e.push(o,ti),St(Dc,o,e)}));function Sc(e,t,r){var n=null==e?o:Nn(e,t);return n===o?r:n}function Ec(e,t){return null!=e&&bi(e,t,Ln)}var Lc=Yo((function(e,t,r){null!=t&&\"function\"!=typeof t.toString&&(t=Re.call(t)),e[t]=r}),tl(ol)),Oc=Yo((function(e,t,r){null!=t&&\"function\"!=typeof t.toString&&(t=Re.call(t)),Te.call(e,t)?e[t].push(r):e[t]=[r]}),ui),Ic=Xn(In);function Cc(e){return Ha(e)?$r(e):zn(e)}function Pc(e){return Ha(e)?$r(e,!0):Bn(e)}var Ac=Ao((function(e,t,r){Yn(e,t,r)})),Dc=Ao((function(e,t,r,n){Yn(e,t,r,n)})),Tc=oi((function(e,t){var r={};if(null==e)return r;var n=!1;t=Dt(t,(function(t){return t=wo(t,e),n||(n=t.length>1),t})),Co(e,ai(e),r),n&&(r=sn(r,7,ri));for(var o=t.length;o--;)fo(r,t[o]);return r}));var zc=oi((function(e,t){return null==e?{}:function(e,t){return Qn(e,t,(function(t,r){return Ec(e,r)}))}(e,t)}));function Bc(e,t){if(null==e)return{};var r=Dt(ai(e),(function(e){return[e]}));return t=ui(t),Qn(e,r,(function(e,r){return t(e,r[0])}))}var Rc=Ko(Cc),Fc=Ko(Pc);function Uc(e){return null==e?[]:er(e,Cc(e))}var Zc=Bo((function(e,t,r){return t=t.toLowerCase(),e+(r?Yc(t):t)}));function Yc(e){return Xc(gc(e).toLowerCase())}function Wc(e){return(e=gc(e))&&e.replace(we,or).replace(tt,\"\")}var Vc=Bo((function(e,t,r){return e+(r?\"-\":\"\")+t.toLowerCase()})),Qc=Bo((function(e,t,r){return e+(r?\" \":\"\")+t.toLowerCase()})),Hc=zo(\"toLowerCase\");var Gc=Bo((function(e,t,r){return e+(r?\"_\":\"\")+t.toLowerCase()}));var qc=Bo((function(e,t,r){return e+(r?\" \":\"\")+Xc(t)}));var $c=Bo((function(e,t,r){return e+(r?\" \":\"\")+t.toUpperCase()})),Xc=zo(\"toUpperCase\");function Kc(e,t,r){return e=gc(e),(t=r?o:t)===o?function(e){return it.test(e)}(e)?function(e){return e.match(nt)||[]}(e):function(e){return e.match(pe)||[]}(e):e.match(t)||[]}var Jc=Xn((function(e,t){try{return St(e,o,t)}catch(e){return Xa(e)?e:new Ne(e)}})),el=oi((function(e,t){return Lt(t,(function(t){t=Bi(t),an(e,t,Oa(e[t],e))})),e}));function tl(e){return function(){return e}}var rl=Uo(),nl=Uo(!0);function ol(e){return e}function il(e){return Tn(\"function\"==typeof e?e:sn(e,1))}var al=Xn((function(e,t){return function(r){return In(r,e,t)}})),cl=Xn((function(e,t){return function(r){return In(e,r,t)}}));function ll(e,t,r){var n=Cc(t),o=kn(t,n);null!=r||tc(t)&&(o.length||!n.length)||(r=t,t=e,e=this,o=kn(t,Cc(t)));var i=!(tc(r)&&\"chain\"in r&&!r.chain),a=Ka(e);return Lt(o,(function(r){var n=t[r];e[r]=n,a&&(e.prototype[r]=function(){var t=this.__chain__;if(i||t){var r=e(this.__wrapped__);return(r.__actions__=Io(this.__actions__)).push({func:n,args:arguments,thisArg:e}),r.__chain__=t,r}return n.apply(e,Tt([this.value()],arguments))})})),e}function sl(){}var ul=Vo(Dt),pl=Vo(It),dl=Vo(Rt);function fl(e){return xi(e)?Ht(Bi(e)):function(e){return function(t){return Nn(t,e)}}(e)}var ml=Ho(),yl=Ho(!0);function hl(){return[]}function bl(){return!1}var vl=Wo((function(e,t){return e+t}),0),gl=$o(\"ceil\"),_l=Wo((function(e,t){return e/t}),1),wl=$o(\"floor\");var xl,kl=Wo((function(e,t){return e*t}),1),Nl=$o(\"round\"),Ml=Wo((function(e,t){return e-t}),0);return Fr.after=function(e,t){if(\"function\"!=typeof t)throw new Oe(i);return e=yc(e),function(){if(--e<1)return t.apply(this,arguments)}},Fr.ary=Ea,Fr.assign=_c,Fr.assignIn=wc,Fr.assignInWith=xc,Fr.assignWith=kc,Fr.at=Nc,Fr.before=La,Fr.bind=Oa,Fr.bindAll=el,Fr.bindKey=Ia,Fr.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Va(e)?e:[e]},Fr.chain=fa,Fr.chunk=function(e,t,r){t=(r?wi(e,t,r):t===o)?1:vr(yc(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var a=0,c=0,l=n(mt(i/t));a<i;)l[c++]=oo(e,a,a+=t);return l},Fr.compact=function(e){for(var t=-1,r=null==e?0:e.length,n=0,o=[];++t<r;){var i=e[t];i&&(o[n++]=i)}return o},Fr.concat=function(){var e=arguments.length;if(!e)return[];for(var t=n(e-1),r=arguments[0],o=e;o--;)t[o-1]=arguments[o];return Tt(Va(r)?Io(r):[r],vn(t,1))},Fr.cond=function(e){var t=null==e?0:e.length,r=ui();return e=t?Dt(e,(function(e){if(\"function\"!=typeof e[1])throw new Oe(i);return[r(e[0]),e[1]]})):[],Xn((function(r){for(var n=-1;++n<t;){var o=e[n];if(St(o[0],this,r))return St(o[1],this,r)}}))},Fr.conforms=function(e){return function(e){var t=Cc(e);return function(r){return un(r,e,t)}}(sn(e,1))},Fr.constant=tl,Fr.countBy=ha,Fr.create=function(e,t){var r=Ur(e);return null==t?r:on(r,t)},Fr.curry=function e(t,r,n){var i=Jo(t,8,o,o,o,o,o,r=n?o:r);return i.placeholder=e.placeholder,i},Fr.curryRight=function e(t,r,n){var i=Jo(t,l,o,o,o,o,o,r=n?o:r);return i.placeholder=e.placeholder,i},Fr.debounce=Ca,Fr.defaults=Mc,Fr.defaultsDeep=jc,Fr.defer=Pa,Fr.delay=Aa,Fr.difference=Ui,Fr.differenceBy=Zi,Fr.differenceWith=Yi,Fr.drop=function(e,t,r){var n=null==e?0:e.length;return n?oo(e,(t=r||t===o?1:yc(t))<0?0:t,n):[]},Fr.dropRight=function(e,t,r){var n=null==e?0:e.length;return n?oo(e,0,(t=n-(t=r||t===o?1:yc(t)))<0?0:t):[]},Fr.dropRightWhile=function(e,t){return e&&e.length?yo(e,ui(t,3),!0,!0):[]},Fr.dropWhile=function(e,t){return e&&e.length?yo(e,ui(t,3),!0):[]},Fr.fill=function(e,t,r,n){var i=null==e?0:e.length;return i?(r&&\"number\"!=typeof r&&wi(e,t,r)&&(r=0,n=i),function(e,t,r,n){var i=e.length;for((r=yc(r))<0&&(r=-r>i?0:i+r),(n=n===o||n>i?i:yc(n))<0&&(n+=i),n=r>n?0:hc(n);r<n;)e[r++]=t;return e}(e,t,r,n)):[]},Fr.filter=function(e,t){return(Va(e)?Ct:bn)(e,ui(t,3))},Fr.flatMap=function(e,t){return vn(Na(e,t),1)},Fr.flatMapDeep=function(e,t){return vn(Na(e,t),f)},Fr.flatMapDepth=function(e,t,r){return r=r===o?1:yc(r),vn(Na(e,t),r)},Fr.flatten=Qi,Fr.flattenDeep=function(e){return(null==e?0:e.length)?vn(e,f):[]},Fr.flattenDepth=function(e,t){return(null==e?0:e.length)?vn(e,t=t===o?1:yc(t)):[]},Fr.flip=function(e){return Jo(e,512)},Fr.flow=rl,Fr.flowRight=nl,Fr.fromPairs=function(e){for(var t=-1,r=null==e?0:e.length,n={};++t<r;){var o=e[t];n[o[0]]=o[1]}return n},Fr.functions=function(e){return null==e?[]:kn(e,Cc(e))},Fr.functionsIn=function(e){return null==e?[]:kn(e,Pc(e))},Fr.groupBy=wa,Fr.initial=function(e){return(null==e?0:e.length)?oo(e,0,-1):[]},Fr.intersection=Gi,Fr.intersectionBy=qi,Fr.intersectionWith=$i,Fr.invert=Lc,Fr.invertBy=Oc,Fr.invokeMap=xa,Fr.iteratee=il,Fr.keyBy=ka,Fr.keys=Cc,Fr.keysIn=Pc,Fr.map=Na,Fr.mapKeys=function(e,t){var r={};return t=ui(t,3),wn(e,(function(e,n,o){an(r,t(e,n,o),e)})),r},Fr.mapValues=function(e,t){var r={};return t=ui(t,3),wn(e,(function(e,n,o){an(r,n,t(e,n,o))})),r},Fr.matches=function(e){return Un(sn(e,1))},Fr.matchesProperty=function(e,t){return Zn(e,sn(t,1))},Fr.memoize=Da,Fr.merge=Ac,Fr.mergeWith=Dc,Fr.method=al,Fr.methodOf=cl,Fr.mixin=ll,Fr.negate=Ta,Fr.nthArg=function(e){return e=yc(e),Xn((function(t){return Wn(t,e)}))},Fr.omit=Tc,Fr.omitBy=function(e,t){return Bc(e,Ta(ui(t)))},Fr.once=function(e){return La(2,e)},Fr.orderBy=function(e,t,r,n){return null==e?[]:(Va(t)||(t=null==t?[]:[t]),Va(r=n?o:r)||(r=null==r?[]:[r]),Vn(e,t,r))},Fr.over=ul,Fr.overArgs=za,Fr.overEvery=pl,Fr.overSome=dl,Fr.partial=Ba,Fr.partialRight=Ra,Fr.partition=Ma,Fr.pick=zc,Fr.pickBy=Bc,Fr.property=fl,Fr.propertyOf=function(e){return function(t){return null==e?o:Nn(e,t)}},Fr.pull=Ki,Fr.pullAll=Ji,Fr.pullAllBy=function(e,t,r){return e&&e.length&&t&&t.length?Hn(e,t,ui(r,2)):e},Fr.pullAllWith=function(e,t,r){return e&&e.length&&t&&t.length?Hn(e,t,o,r):e},Fr.pullAt=ea,Fr.range=ml,Fr.rangeRight=yl,Fr.rearg=Fa,Fr.reject=function(e,t){return(Va(e)?Ct:bn)(e,Ta(ui(t,3)))},Fr.remove=function(e,t){var r=[];if(!e||!e.length)return r;var n=-1,o=[],i=e.length;for(t=ui(t,3);++n<i;){var a=e[n];t(a,n,e)&&(r.push(a),o.push(n))}return Gn(e,o),r},Fr.rest=function(e,t){if(\"function\"!=typeof e)throw new Oe(i);return Xn(e,t=t===o?t:yc(t))},Fr.reverse=ta,Fr.sampleSize=function(e,t,r){return t=(r?wi(e,t,r):t===o)?1:yc(t),(Va(e)?Kr:Jn)(e,t)},Fr.set=function(e,t,r){return null==e?e:eo(e,t,r)},Fr.setWith=function(e,t,r,n){return n=\"function\"==typeof n?n:o,null==e?e:eo(e,t,r,n)},Fr.shuffle=function(e){return(Va(e)?Jr:no)(e)},Fr.slice=function(e,t,r){var n=null==e?0:e.length;return n?(r&&\"number\"!=typeof r&&wi(e,t,r)?(t=0,r=n):(t=null==t?0:yc(t),r=r===o?n:yc(r)),oo(e,t,r)):[]},Fr.sortBy=ja,Fr.sortedUniq=function(e){return e&&e.length?lo(e):[]},Fr.sortedUniqBy=function(e,t){return e&&e.length?lo(e,ui(t,2)):[]},Fr.split=function(e,t,r){return r&&\"number\"!=typeof r&&wi(e,t,r)&&(t=r=o),(r=r===o?h:r>>>0)?(e=gc(e))&&(\"string\"==typeof t||null!=t&&!ac(t))&&!(t=uo(t))&&cr(e)?ko(mr(e),0,r):e.split(t,r):[]},Fr.spread=function(e,t){if(\"function\"!=typeof e)throw new Oe(i);return t=null==t?0:vr(yc(t),0),Xn((function(r){var n=r[t],o=ko(r,0,t);return n&&Tt(o,n),St(e,this,o)}))},Fr.tail=function(e){var t=null==e?0:e.length;return t?oo(e,1,t):[]},Fr.take=function(e,t,r){return e&&e.length?oo(e,0,(t=r||t===o?1:yc(t))<0?0:t):[]},Fr.takeRight=function(e,t,r){var n=null==e?0:e.length;return n?oo(e,(t=n-(t=r||t===o?1:yc(t)))<0?0:t,n):[]},Fr.takeRightWhile=function(e,t){return e&&e.length?yo(e,ui(t,3),!1,!0):[]},Fr.takeWhile=function(e,t){return e&&e.length?yo(e,ui(t,3)):[]},Fr.tap=function(e,t){return t(e),e},Fr.throttle=function(e,t,r){var n=!0,o=!0;if(\"function\"!=typeof e)throw new Oe(i);return tc(r)&&(n=\"leading\"in r?!!r.leading:n,o=\"trailing\"in r?!!r.trailing:o),Ca(e,t,{leading:n,maxWait:t,trailing:o})},Fr.thru=ma,Fr.toArray=fc,Fr.toPairs=Rc,Fr.toPairsIn=Fc,Fr.toPath=function(e){return Va(e)?Dt(e,Bi):sc(e)?[e]:Io(zi(gc(e)))},Fr.toPlainObject=vc,Fr.transform=function(e,t,r){var n=Va(e),o=n||qa(e)||uc(e);if(t=ui(t,4),null==r){var i=e&&e.constructor;r=o?n?new i:[]:tc(e)&&Ka(i)?Ur(He(e)):{}}return(o?Lt:wn)(e,(function(e,n,o){return t(r,e,n,o)})),r},Fr.unary=function(e){return Ea(e,1)},Fr.union=ra,Fr.unionBy=na,Fr.unionWith=oa,Fr.uniq=function(e){return e&&e.length?po(e):[]},Fr.uniqBy=function(e,t){return e&&e.length?po(e,ui(t,2)):[]},Fr.uniqWith=function(e,t){return t=\"function\"==typeof t?t:o,e&&e.length?po(e,o,t):[]},Fr.unset=function(e,t){return null==e||fo(e,t)},Fr.unzip=ia,Fr.unzipWith=aa,Fr.update=function(e,t,r){return null==e?e:mo(e,t,_o(r))},Fr.updateWith=function(e,t,r,n){return n=\"function\"==typeof n?n:o,null==e?e:mo(e,t,_o(r),n)},Fr.values=Uc,Fr.valuesIn=function(e){return null==e?[]:er(e,Pc(e))},Fr.without=ca,Fr.words=Kc,Fr.wrap=function(e,t){return Ba(_o(t),e)},Fr.xor=la,Fr.xorBy=sa,Fr.xorWith=ua,Fr.zip=pa,Fr.zipObject=function(e,t){return vo(e||[],t||[],tn)},Fr.zipObjectDeep=function(e,t){return vo(e||[],t||[],eo)},Fr.zipWith=da,Fr.entries=Rc,Fr.entriesIn=Fc,Fr.extend=wc,Fr.extendWith=xc,ll(Fr,Fr),Fr.add=vl,Fr.attempt=Jc,Fr.camelCase=Zc,Fr.capitalize=Yc,Fr.ceil=gl,Fr.clamp=function(e,t,r){return r===o&&(r=t,t=o),r!==o&&(r=(r=bc(r))==r?r:0),t!==o&&(t=(t=bc(t))==t?t:0),ln(bc(e),t,r)},Fr.clone=function(e){return sn(e,4)},Fr.cloneDeep=function(e){return sn(e,5)},Fr.cloneDeepWith=function(e,t){return sn(e,5,t=\"function\"==typeof t?t:o)},Fr.cloneWith=function(e,t){return sn(e,4,t=\"function\"==typeof t?t:o)},Fr.conformsTo=function(e,t){return null==t||un(e,t,Cc(t))},Fr.deburr=Wc,Fr.defaultTo=function(e,t){return null==e||e!=e?t:e},Fr.divide=_l,Fr.endsWith=function(e,t,r){e=gc(e),t=uo(t);var n=e.length,i=r=r===o?n:ln(yc(r),0,n);return(r-=t.length)>=0&&e.slice(r,i)==t},Fr.eq=Ua,Fr.escape=function(e){return(e=gc(e))&&X.test(e)?e.replace(q,ir):e},Fr.escapeRegExp=function(e){return(e=gc(e))&&ie.test(e)?e.replace(oe,\"\\\\$&\"):e},Fr.every=function(e,t,r){var n=Va(e)?It:yn;return r&&wi(e,t,r)&&(t=o),n(e,ui(t,3))},Fr.find=ba,Fr.findIndex=Wi,Fr.findKey=function(e,t){return Ut(e,ui(t,3),wn)},Fr.findLast=va,Fr.findLastIndex=Vi,Fr.findLastKey=function(e,t){return Ut(e,ui(t,3),xn)},Fr.floor=wl,Fr.forEach=ga,Fr.forEachRight=_a,Fr.forIn=function(e,t){return null==e?e:gn(e,ui(t,3),Pc)},Fr.forInRight=function(e,t){return null==e?e:_n(e,ui(t,3),Pc)},Fr.forOwn=function(e,t){return e&&wn(e,ui(t,3))},Fr.forOwnRight=function(e,t){return e&&xn(e,ui(t,3))},Fr.get=Sc,Fr.gt=Za,Fr.gte=Ya,Fr.has=function(e,t){return null!=e&&bi(e,t,En)},Fr.hasIn=Ec,Fr.head=Hi,Fr.identity=ol,Fr.includes=function(e,t,r,n){e=Ha(e)?e:Uc(e),r=r&&!n?yc(r):0;var o=e.length;return r<0&&(r=vr(o+r,0)),lc(e)?r<=o&&e.indexOf(t,r)>-1:!!o&&Yt(e,t,r)>-1},Fr.indexOf=function(e,t,r){var n=null==e?0:e.length;if(!n)return-1;var o=null==r?0:yc(r);return o<0&&(o=vr(n+o,0)),Yt(e,t,o)},Fr.inRange=function(e,t,r){return t=mc(t),r===o?(r=t,t=0):r=mc(r),function(e,t,r){return e>=gr(t,r)&&e<vr(t,r)}(e=bc(e),t,r)},Fr.invoke=Ic,Fr.isArguments=Wa,Fr.isArray=Va,Fr.isArrayBuffer=Qa,Fr.isArrayLike=Ha,Fr.isArrayLikeObject=Ga,Fr.isBoolean=function(e){return!0===e||!1===e||rc(e)&&jn(e)==_},Fr.isBuffer=qa,Fr.isDate=$a,Fr.isElement=function(e){return rc(e)&&1===e.nodeType&&!ic(e)},Fr.isEmpty=function(e){if(null==e)return!0;if(Ha(e)&&(Va(e)||\"string\"==typeof e||\"function\"==typeof e.splice||qa(e)||uc(e)||Wa(e)))return!e.length;var t=hi(e);if(t==M||t==O)return!e.size;if(Mi(e))return!zn(e).length;for(var r in e)if(Te.call(e,r))return!1;return!0},Fr.isEqual=function(e,t){return Pn(e,t)},Fr.isEqualWith=function(e,t,r){var n=(r=\"function\"==typeof r?r:o)?r(e,t):o;return n===o?Pn(e,t,o,r):!!n},Fr.isError=Xa,Fr.isFinite=function(e){return\"number\"==typeof e&&_t(e)},Fr.isFunction=Ka,Fr.isInteger=Ja,Fr.isLength=ec,Fr.isMap=nc,Fr.isMatch=function(e,t){return e===t||An(e,t,di(t))},Fr.isMatchWith=function(e,t,r){return r=\"function\"==typeof r?r:o,An(e,t,di(t),r)},Fr.isNaN=function(e){return oc(e)&&e!=+e},Fr.isNative=function(e){if(Ni(e))throw new Ne(\"Unsupported core-js use. Try https://npms.io/search?q=ponyfill.\");return Dn(e)},Fr.isNil=function(e){return null==e},Fr.isNull=function(e){return null===e},Fr.isNumber=oc,Fr.isObject=tc,Fr.isObjectLike=rc,Fr.isPlainObject=ic,Fr.isRegExp=ac,Fr.isSafeInteger=function(e){return Ja(e)&&e>=-9007199254740991&&e<=m},Fr.isSet=cc,Fr.isString=lc,Fr.isSymbol=sc,Fr.isTypedArray=uc,Fr.isUndefined=function(e){return e===o},Fr.isWeakMap=function(e){return rc(e)&&hi(e)==P},Fr.isWeakSet=function(e){return rc(e)&&\"[object WeakSet]\"==jn(e)},Fr.join=function(e,t){return null==e?\"\":Ft.call(e,t)},Fr.kebabCase=Vc,Fr.last=Xi,Fr.lastIndexOf=function(e,t,r){var n=null==e?0:e.length;if(!n)return-1;var i=n;return r!==o&&(i=(i=yc(r))<0?vr(n+i,0):gr(i,n-1)),t==t?function(e,t,r){for(var n=r+1;n--;)if(e[n]===t)return n;return n}(e,t,i):Zt(e,Vt,i,!0)},Fr.lowerCase=Qc,Fr.lowerFirst=Hc,Fr.lt=pc,Fr.lte=dc,Fr.max=function(e){return e&&e.length?hn(e,ol,Sn):o},Fr.maxBy=function(e,t){return e&&e.length?hn(e,ui(t,2),Sn):o},Fr.mean=function(e){return Qt(e,ol)},Fr.meanBy=function(e,t){return Qt(e,ui(t,2))},Fr.min=function(e){return e&&e.length?hn(e,ol,Rn):o},Fr.minBy=function(e,t){return e&&e.length?hn(e,ui(t,2),Rn):o},Fr.stubArray=hl,Fr.stubFalse=bl,Fr.stubObject=function(){return{}},Fr.stubString=function(){return\"\"},Fr.stubTrue=function(){return!0},Fr.multiply=kl,Fr.nth=function(e,t){return e&&e.length?Wn(e,yc(t)):o},Fr.noConflict=function(){return yt._===this&&(yt._=Ue),this},Fr.noop=sl,Fr.now=Sa,Fr.pad=function(e,t,r){e=gc(e);var n=(t=yc(t))?fr(e):0;if(!t||n>=t)return e;var o=(t-n)/2;return Qo(ht(o),r)+e+Qo(mt(o),r)},Fr.padEnd=function(e,t,r){e=gc(e);var n=(t=yc(t))?fr(e):0;return t&&n<t?e+Qo(t-n,r):e},Fr.padStart=function(e,t,r){e=gc(e);var n=(t=yc(t))?fr(e):0;return t&&n<t?Qo(t-n,r)+e:e},Fr.parseInt=function(e,t,r){return r||null==t?t=0:t&&(t=+t),wr(gc(e).replace(ae,\"\"),t||0)},Fr.random=function(e,t,r){if(r&&\"boolean\"!=typeof r&&wi(e,t,r)&&(t=r=o),r===o&&(\"boolean\"==typeof t?(r=t,t=o):\"boolean\"==typeof e&&(r=e,e=o)),e===o&&t===o?(e=0,t=1):(e=mc(e),t===o?(t=e,e=0):t=mc(t)),e>t){var n=e;e=t,t=n}if(r||e%1||t%1){var i=xr();return gr(e+i*(t-e+pt(\"1e-\"+((i+\"\").length-1))),t)}return qn(e,t)},Fr.reduce=function(e,t,r){var n=Va(e)?zt:qt,o=arguments.length<3;return n(e,ui(t,4),r,o,fn)},Fr.reduceRight=function(e,t,r){var n=Va(e)?Bt:qt,o=arguments.length<3;return n(e,ui(t,4),r,o,mn)},Fr.repeat=function(e,t,r){return t=(r?wi(e,t,r):t===o)?1:yc(t),$n(gc(e),t)},Fr.replace=function(){var e=arguments,t=gc(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Fr.result=function(e,t,r){var n=-1,i=(t=wo(t,e)).length;for(i||(i=1,e=o);++n<i;){var a=null==e?o:e[Bi(t[n])];a===o&&(n=i,a=r),e=Ka(a)?a.call(e):a}return e},Fr.round=Nl,Fr.runInContext=e,Fr.sample=function(e){return(Va(e)?Xr:Kn)(e)},Fr.size=function(e){if(null==e)return 0;if(Ha(e))return lc(e)?fr(e):e.length;var t=hi(e);return t==M||t==O?e.size:zn(e).length},Fr.snakeCase=Gc,Fr.some=function(e,t,r){var n=Va(e)?Rt:io;return r&&wi(e,t,r)&&(t=o),n(e,ui(t,3))},Fr.sortedIndex=function(e,t){return ao(e,t)},Fr.sortedIndexBy=function(e,t,r){return co(e,t,ui(r,2))},Fr.sortedIndexOf=function(e,t){var r=null==e?0:e.length;if(r){var n=ao(e,t);if(n<r&&Ua(e[n],t))return n}return-1},Fr.sortedLastIndex=function(e,t){return ao(e,t,!0)},Fr.sortedLastIndexBy=function(e,t,r){return co(e,t,ui(r,2),!0)},Fr.sortedLastIndexOf=function(e,t){if(null==e?0:e.length){var r=ao(e,t,!0)-1;if(Ua(e[r],t))return r}return-1},Fr.startCase=qc,Fr.startsWith=function(e,t,r){return e=gc(e),r=null==r?0:ln(yc(r),0,e.length),t=uo(t),e.slice(r,r+t.length)==t},Fr.subtract=Ml,Fr.sum=function(e){return e&&e.length?$t(e,ol):0},Fr.sumBy=function(e,t){return e&&e.length?$t(e,ui(t,2)):0},Fr.template=function(e,t,r){var n=Fr.templateSettings;r&&wi(e,t,r)&&(t=o),e=gc(e),t=xc({},t,n,ei);var i,a,c=xc({},t.imports,n.imports,ei),l=Cc(c),s=er(c,l),u=0,p=t.interpolate||xe,d=\"__p += '\",f=Ee((t.escape||xe).source+\"|\"+p.source+\"|\"+(p===ee?me:xe).source+\"|\"+(t.evaluate||xe).source+\"|$\",\"g\"),m=\"//# sourceURL=\"+(Te.call(t,\"sourceURL\")?(t.sourceURL+\"\").replace(/\\s/g,\" \"):\"lodash.templateSources[\"+ ++ct+\"]\")+\"\\n\";e.replace(f,(function(t,r,n,o,c,l){return n||(n=o),d+=e.slice(u,l).replace(ke,ar),r&&(i=!0,d+=\"' +\\n__e(\"+r+\") +\\n'\"),c&&(a=!0,d+=\"';\\n\"+c+\";\\n__p += '\"),n&&(d+=\"' +\\n((__t = (\"+n+\")) == null ? '' : __t) +\\n'\"),u=l+t.length,t})),d+=\"';\\n\";var y=Te.call(t,\"variable\")&&t.variable;if(y){if(de.test(y))throw new Ne(\"Invalid `variable` option passed into `_.template`\")}else d=\"with (obj) {\\n\"+d+\"\\n}\\n\";d=(a?d.replace(V,\"\"):d).replace(Q,\"$1\").replace(H,\"$1;\"),d=\"function(\"+(y||\"obj\")+\") {\\n\"+(y?\"\":\"obj || (obj = {});\\n\")+\"var __t, __p = ''\"+(i?\", __e = _.escape\":\"\")+(a?\", __j = Array.prototype.join;\\nfunction print() { __p += __j.call(arguments, '') }\\n\":\";\\n\")+d+\"return __p\\n}\";var h=Jc((function(){return Me(l,m+\"return \"+d).apply(o,s)}));if(h.source=d,Xa(h))throw h;return h},Fr.times=function(e,t){if((e=yc(e))<1||e>m)return[];var r=h,n=gr(e,h);t=ui(t),e-=h;for(var o=Xt(n,t);++r<e;)t(r);return o},Fr.toFinite=mc,Fr.toInteger=yc,Fr.toLength=hc,Fr.toLower=function(e){return gc(e).toLowerCase()},Fr.toNumber=bc,Fr.toSafeInteger=function(e){return e?ln(yc(e),-9007199254740991,m):0===e?e:0},Fr.toString=gc,Fr.toUpper=function(e){return gc(e).toUpperCase()},Fr.trim=function(e,t,r){if((e=gc(e))&&(r||t===o))return Kt(e);if(!e||!(t=uo(t)))return e;var n=mr(e),i=mr(t);return ko(n,rr(n,i),nr(n,i)+1).join(\"\")},Fr.trimEnd=function(e,t,r){if((e=gc(e))&&(r||t===o))return e.slice(0,yr(e)+1);if(!e||!(t=uo(t)))return e;var n=mr(e);return ko(n,0,nr(n,mr(t))+1).join(\"\")},Fr.trimStart=function(e,t,r){if((e=gc(e))&&(r||t===o))return e.replace(ae,\"\");if(!e||!(t=uo(t)))return e;var n=mr(e);return ko(n,rr(n,mr(t))).join(\"\")},Fr.truncate=function(e,t){var r=30,n=\"...\";if(tc(t)){var i=\"separator\"in t?t.separator:i;r=\"length\"in t?yc(t.length):r,n=\"omission\"in t?uo(t.omission):n}var a=(e=gc(e)).length;if(cr(e)){var c=mr(e);a=c.length}if(r>=a)return e;var l=r-fr(n);if(l<1)return n;var s=c?ko(c,0,l).join(\"\"):e.slice(0,l);if(i===o)return s+n;if(c&&(l+=s.length-l),ac(i)){if(e.slice(l).search(i)){var u,p=s;for(i.global||(i=Ee(i.source,gc(ye.exec(i))+\"g\")),i.lastIndex=0;u=i.exec(p);)var d=u.index;s=s.slice(0,d===o?l:d)}}else if(e.indexOf(uo(i),l)!=l){var f=s.lastIndexOf(i);f>-1&&(s=s.slice(0,f))}return s+n},Fr.unescape=function(e){return(e=gc(e))&&$.test(e)?e.replace(G,hr):e},Fr.uniqueId=function(e){var t=++ze;return gc(e)+t},Fr.upperCase=$c,Fr.upperFirst=Xc,Fr.each=ga,Fr.eachRight=_a,Fr.first=Hi,ll(Fr,(xl={},wn(Fr,(function(e,t){Te.call(Fr.prototype,t)||(xl[t]=e)})),xl),{chain:!1}),Fr.VERSION=\"4.17.21\",Lt([\"bind\",\"bindKey\",\"curry\",\"curryRight\",\"partial\",\"partialRight\"],(function(e){Fr[e].placeholder=Fr})),Lt([\"drop\",\"take\"],(function(e,t){Wr.prototype[e]=function(r){r=r===o?1:vr(yc(r),0);var n=this.__filtered__&&!t?new Wr(this):this.clone();return n.__filtered__?n.__takeCount__=gr(r,n.__takeCount__):n.__views__.push({size:gr(r,h),type:e+(n.__dir__<0?\"Right\":\"\")}),n},Wr.prototype[e+\"Right\"]=function(t){return this.reverse()[e](t).reverse()}})),Lt([\"filter\",\"map\",\"takeWhile\"],(function(e,t){var r=t+1,n=1==r||3==r;Wr.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:ui(e,3),type:r}),t.__filtered__=t.__filtered__||n,t}})),Lt([\"head\",\"last\"],(function(e,t){var r=\"take\"+(t?\"Right\":\"\");Wr.prototype[e]=function(){return this[r](1).value()[0]}})),Lt([\"initial\",\"tail\"],(function(e,t){var r=\"drop\"+(t?\"\":\"Right\");Wr.prototype[e]=function(){return this.__filtered__?new Wr(this):this[r](1)}})),Wr.prototype.compact=function(){return this.filter(ol)},Wr.prototype.find=function(e){return this.filter(e).head()},Wr.prototype.findLast=function(e){return this.reverse().find(e)},Wr.prototype.invokeMap=Xn((function(e,t){return\"function\"==typeof e?new Wr(this):this.map((function(r){return In(r,e,t)}))})),Wr.prototype.reject=function(e){return this.filter(Ta(ui(e)))},Wr.prototype.slice=function(e,t){e=yc(e);var r=this;return r.__filtered__&&(e>0||t<0)?new Wr(r):(e<0?r=r.takeRight(-e):e&&(r=r.drop(e)),t!==o&&(r=(t=yc(t))<0?r.dropRight(-t):r.take(t-e)),r)},Wr.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Wr.prototype.toArray=function(){return this.take(h)},wn(Wr.prototype,(function(e,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),n=/^(?:head|last)$/.test(t),i=Fr[n?\"take\"+(\"last\"==t?\"Right\":\"\"):t],a=n||/^find/.test(t);i&&(Fr.prototype[t]=function(){var t=this.__wrapped__,c=n?[1]:arguments,l=t instanceof Wr,s=c[0],u=l||Va(t),p=function(e){var t=i.apply(Fr,Tt([e],c));return n&&d?t[0]:t};u&&r&&\"function\"==typeof s&&1!=s.length&&(l=u=!1);var d=this.__chain__,f=!!this.__actions__.length,m=a&&!d,y=l&&!f;if(!a&&u){t=y?t:new Wr(this);var h=e.apply(t,c);return h.__actions__.push({func:ma,args:[p],thisArg:o}),new Yr(h,d)}return m&&y?e.apply(this,c):(h=this.thru(p),m?n?h.value()[0]:h.value():h)})})),Lt([\"pop\",\"push\",\"shift\",\"sort\",\"splice\",\"unshift\"],(function(e){var t=Ie[e],r=/^(?:push|sort|unshift)$/.test(e)?\"tap\":\"thru\",n=/^(?:pop|shift)$/.test(e);Fr.prototype[e]=function(){var e=arguments;if(n&&!this.__chain__){var o=this.value();return t.apply(Va(o)?o:[],e)}return this[r]((function(r){return t.apply(Va(r)?r:[],e)}))}})),wn(Wr.prototype,(function(e,t){var r=Fr[t];if(r){var n=r.name+\"\";Te.call(Ir,n)||(Ir[n]=[]),Ir[n].push({name:t,func:r})}})),Ir[Zo(o,2).name]=[{name:\"wrapper\",func:o}],Wr.prototype.clone=function(){var e=new Wr(this.__wrapped__);return e.__actions__=Io(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Io(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Io(this.__views__),e},Wr.prototype.reverse=function(){if(this.__filtered__){var e=new Wr(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Wr.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,r=Va(e),n=t<0,o=r?e.length:0,i=function(e,t,r){var n=-1,o=r.length;for(;++n<o;){var i=r[n],a=i.size;switch(i.type){case\"drop\":e+=a;break;case\"dropRight\":t-=a;break;case\"take\":t=gr(t,e+a);break;case\"takeRight\":e=vr(e,t-a)}}return{start:e,end:t}}(0,o,this.__views__),a=i.start,c=i.end,l=c-a,s=n?c:a-1,u=this.__iteratees__,p=u.length,d=0,f=gr(l,this.__takeCount__);if(!r||!n&&o==l&&f==l)return ho(e,this.__actions__);var m=[];e:for(;l--&&d<f;){for(var y=-1,h=e[s+=t];++y<p;){var b=u[y],v=b.iteratee,g=b.type,_=v(h);if(2==g)h=_;else if(!_){if(1==g)continue e;break e}}m[d++]=h}return m},Fr.prototype.at=ya,Fr.prototype.chain=function(){return fa(this)},Fr.prototype.commit=function(){return new Yr(this.value(),this.__chain__)},Fr.prototype.next=function(){this.__values__===o&&(this.__values__=fc(this.value()));var e=this.__index__>=this.__values__.length;return{done:e,value:e?o:this.__values__[this.__index__++]}},Fr.prototype.plant=function(e){for(var t,r=this;r instanceof Zr;){var n=Fi(r);n.__index__=0,n.__values__=o,t?i.__wrapped__=n:t=n;var i=n;r=r.__wrapped__}return i.__wrapped__=e,t},Fr.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Wr){var t=e;return this.__actions__.length&&(t=new Wr(this)),(t=t.reverse()).__actions__.push({func:ma,args:[ta],thisArg:o}),new Yr(t,this.__chain__)}return this.thru(ta)},Fr.prototype.toJSON=Fr.prototype.valueOf=Fr.prototype.value=function(){return ho(this.__wrapped__,this.__actions__)},Fr.prototype.first=Fr.prototype.head,Ke&&(Fr.prototype[Ke]=function(){return this}),Fr}();yt._=br,(n=function(){return br}.call(t,r,t,e))===o||(e.exports=n)}.call(this)},6900:e=>{\"use strict\";const t=e=>\"object\"==typeof e&&null!==e,r=Symbol(\"skip\"),n=e=>t(e)&&!(e instanceof RegExp)&&!(e instanceof Error)&&!(e instanceof Date),o=(e,t,i,a=new WeakMap)=>{if(i={deep:!1,target:{},...i},a.has(e))return a.get(e);a.set(e,i.target);const{target:c}=i;delete i.target;const l=e=>e.map((e=>n(e)?o(e,t,i,a):e));if(Array.isArray(e))return l(e);for(const[s,u]of Object.entries(e)){const p=t(s,u,e);if(p===r)continue;let[d,f,{shouldRecurse:m=!0}={}]=p;\"__proto__\"!==d&&(i.deep&&m&&n(f)&&(f=Array.isArray(f)?l(f):o(f,t,i,a)),c[d]=f)}return c};e.exports=(e,r,n)=>{if(!t(e))throw new TypeError(`Expected an object, got \\`${e}\\` (${typeof e})`);return o(e,r,n)},e.exports.mapObjectSkip=r},845:(e,t,r)=>{\"use strict\";r.r(t),r.d(t,{default:()=>i});var n=Number.isNaN||function(e){return\"number\"==typeof e&&e!=e};function o(e,t){if(e.length!==t.length)return!1;for(var r=0;r<e.length;r++)if(o=e[r],i=t[r],!(o===i||n(o)&&n(i)))return!1;var o,i;return!0}const i=function(e,t){var r;void 0===t&&(t=o);var n,i=[],a=!1;return function(){for(var o=[],c=0;c<arguments.length;c++)o[c]=arguments[c];return a&&r===this&&t(o,i)||(n=e.apply(this,o),a=!0,r=this,i=o),n}}},2703:(e,t,r)=>{\"use strict\";var n=r(414);function o(){}function i(){}i.resetWarningCache=o,e.exports=function(){function e(e,t,r,o,i,a){if(a!==n){var c=new Error(\"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types\");throw c.name=\"Invariant Violation\",c}}function t(){return e}e.isRequired=e;var r={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:o};return r.PropTypes=r,r}},5697:(e,t,r)=>{e.exports=r(2703)()},414:e=>{\"use strict\";e.exports=\"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\"},2587:e=>{\"use strict\";function t(e,t){return Object.prototype.hasOwnProperty.call(e,t)}e.exports=function(e,r,n,o){r=r||\"&\",n=n||\"=\";var i={};if(\"string\"!=typeof e||0===e.length)return i;var a=/\\+/g;e=e.split(r);var c=1e3;o&&\"number\"==typeof o.maxKeys&&(c=o.maxKeys);var l=e.length;c>0&&l>c&&(l=c);for(var s=0;s<l;++s){var u,p,d,f,m=e[s].replace(a,\"%20\"),y=m.indexOf(n);y>=0?(u=m.substr(0,y),p=m.substr(y+1)):(u=m,p=\"\"),d=decodeURIComponent(u),f=decodeURIComponent(p),t(i,d)?Array.isArray(i[d])?i[d].push(f):i[d]=[i[d],f]:i[d]=f}return i}},2361:e=>{\"use strict\";var t=function(e){switch(typeof e){case\"string\":return e;case\"boolean\":return e?\"true\":\"false\";case\"number\":return isFinite(e)?e:\"\";default:return\"\"}};e.exports=function(e,r,n,o){return r=r||\"&\",n=n||\"=\",null===e&&(e=void 0),\"object\"==typeof e?Object.keys(e).map((function(o){var i=encodeURIComponent(t(o))+n;return Array.isArray(e[o])?e[o].map((function(e){return i+encodeURIComponent(t(e))})).join(r):i+encodeURIComponent(t(e[o]))})).join(r):o?encodeURIComponent(t(o))+n+encodeURIComponent(t(e)):\"\"}},7673:(e,t,r)=>{\"use strict\";t.decode=t.parse=r(2587),t.encode=t.stringify=r(2361)},4448:(e,t,r)=>{\"use strict\";var n=r(7294),o=r(3840);function i(e){for(var t=\"https://reactjs.org/docs/error-decoder.html?invariant=\"+e,r=1;r<arguments.length;r++)t+=\"&args[]=\"+encodeURIComponent(arguments[r]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}var a=new Set,c={};function l(e,t){s(e,t),s(e+\"Capture\",t)}function s(e,t){for(c[e]=t,e=0;e<t.length;e++)a.add(t[e])}var u=!(\"undefined\"==typeof window||void 0===window.document||void 0===window.document.createElement),p=Object.prototype.hasOwnProperty,d=/^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$/,f={},m={};function y(e,t,r,n,o,i,a){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=n,this.attributeNamespace=o,this.mustUseProperty=r,this.propertyName=e,this.type=t,this.sanitizeURL=i,this.removeEmptyString=a}var h={};\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach((function(e){h[e]=new y(e,0,!1,e,null,!1,!1)})),[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach((function(e){var t=e[0];h[t]=new y(t,1,!1,e[1],null,!1,!1)})),[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach((function(e){h[e]=new y(e,2,!1,e.toLowerCase(),null,!1,!1)})),[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach((function(e){h[e]=new y(e,2,!1,e,null,!1,!1)})),\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach((function(e){h[e]=new y(e,3,!1,e.toLowerCase(),null,!1,!1)})),[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach((function(e){h[e]=new y(e,3,!0,e,null,!1,!1)})),[\"capture\",\"download\"].forEach((function(e){h[e]=new y(e,4,!1,e,null,!1,!1)})),[\"cols\",\"rows\",\"size\",\"span\"].forEach((function(e){h[e]=new y(e,6,!1,e,null,!1,!1)})),[\"rowSpan\",\"start\"].forEach((function(e){h[e]=new y(e,5,!1,e.toLowerCase(),null,!1,!1)}));var b=/[\\-:]([a-z])/g;function v(e){return e[1].toUpperCase()}function g(e,t,r,n){var o=h.hasOwnProperty(t)?h[t]:null;(null!==o?0!==o.type:n||!(2<t.length)||\"o\"!==t[0]&&\"O\"!==t[0]||\"n\"!==t[1]&&\"N\"!==t[1])&&(function(e,t,r,n){if(null==t||function(e,t,r,n){if(null!==r&&0===r.type)return!1;switch(typeof t){case\"function\":case\"symbol\":return!0;case\"boolean\":return!n&&(null!==r?!r.acceptsBooleans:\"data-\"!==(e=e.toLowerCase().slice(0,5))&&\"aria-\"!==e);default:return!1}}(e,t,r,n))return!0;if(n)return!1;if(null!==r)switch(r.type){case 3:return!t;case 4:return!1===t;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}(t,r,o,n)&&(r=null),n||null===o?function(e){return!!p.call(m,e)||!p.call(f,e)&&(d.test(e)?m[e]=!0:(f[e]=!0,!1))}(t)&&(null===r?e.removeAttribute(t):e.setAttribute(t,\"\"+r)):o.mustUseProperty?e[o.propertyName]=null===r?3!==o.type&&\"\":r:(t=o.attributeName,n=o.attributeNamespace,null===r?e.removeAttribute(t):(r=3===(o=o.type)||4===o&&!0===r?\"\":\"\"+r,n?e.setAttributeNS(n,t,r):e.setAttribute(t,r))))}\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach((function(e){var t=e.replace(b,v);h[t]=new y(t,1,!1,e,null,!1,!1)})),\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach((function(e){var t=e.replace(b,v);h[t]=new y(t,1,!1,e,\"http://www.w3.org/1999/xlink\",!1,!1)})),[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach((function(e){var t=e.replace(b,v);h[t]=new y(t,1,!1,e,\"http://www.w3.org/XML/1998/namespace\",!1,!1)})),[\"tabIndex\",\"crossOrigin\"].forEach((function(e){h[e]=new y(e,1,!1,e.toLowerCase(),null,!1,!1)})),h.xlinkHref=new y(\"xlinkHref\",1,!1,\"xlink:href\",\"http://www.w3.org/1999/xlink\",!0,!1),[\"src\",\"href\",\"action\",\"formAction\"].forEach((function(e){h[e]=new y(e,1,!1,e.toLowerCase(),null,!0,!0)}));var _=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,w=Symbol.for(\"react.element\"),x=Symbol.for(\"react.portal\"),k=Symbol.for(\"react.fragment\"),N=Symbol.for(\"react.strict_mode\"),M=Symbol.for(\"react.profiler\"),j=Symbol.for(\"react.provider\"),S=Symbol.for(\"react.context\"),E=Symbol.for(\"react.forward_ref\"),L=Symbol.for(\"react.suspense\"),O=Symbol.for(\"react.suspense_list\"),I=Symbol.for(\"react.memo\"),C=Symbol.for(\"react.lazy\");Symbol.for(\"react.scope\"),Symbol.for(\"react.debug_trace_mode\");var P=Symbol.for(\"react.offscreen\");Symbol.for(\"react.legacy_hidden\"),Symbol.for(\"react.cache\"),Symbol.for(\"react.tracing_marker\");var A=Symbol.iterator;function D(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=A&&e[A]||e[\"@@iterator\"])?e:null}var T,z=Object.assign;function B(e){if(void 0===T)try{throw Error()}catch(e){var t=e.stack.trim().match(/\\n( *(at )?)/);T=t&&t[1]||\"\"}return\"\\n\"+T+e}var R=!1;function F(e,t){if(!e||R)return\"\";R=!0;var r=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,\"props\",{set:function(){throw Error()}}),\"object\"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var n=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){n=e}e.call(t.prototype)}else{try{throw Error()}catch(e){n=e}e()}}catch(t){if(t&&n&&\"string\"==typeof t.stack){for(var o=t.stack.split(\"\\n\"),i=n.stack.split(\"\\n\"),a=o.length-1,c=i.length-1;1<=a&&0<=c&&o[a]!==i[c];)c--;for(;1<=a&&0<=c;a--,c--)if(o[a]!==i[c]){if(1!==a||1!==c)do{if(a--,0>--c||o[a]!==i[c]){var l=\"\\n\"+o[a].replace(\" at new \",\" at \");return e.displayName&&l.includes(\"<anonymous>\")&&(l=l.replace(\"<anonymous>\",e.displayName)),l}}while(1<=a&&0<=c);break}}}finally{R=!1,Error.prepareStackTrace=r}return(e=e?e.displayName||e.name:\"\")?B(e):\"\"}function U(e){switch(e.tag){case 5:return B(e.type);case 16:return B(\"Lazy\");case 13:return B(\"Suspense\");case 19:return B(\"SuspenseList\");case 0:case 2:case 15:return e=F(e.type,!1);case 11:return e=F(e.type.render,!1);case 1:return e=F(e.type,!0);default:return\"\"}}function Z(e){if(null==e)return null;if(\"function\"==typeof e)return e.displayName||e.name||null;if(\"string\"==typeof e)return e;switch(e){case k:return\"Fragment\";case x:return\"Portal\";case M:return\"Profiler\";case N:return\"StrictMode\";case L:return\"Suspense\";case O:return\"SuspenseList\"}if(\"object\"==typeof e)switch(e.$$typeof){case S:return(e.displayName||\"Context\")+\".Consumer\";case j:return(e._context.displayName||\"Context\")+\".Provider\";case E:var t=e.render;return(e=e.displayName)||(e=\"\"!==(e=t.displayName||t.name||\"\")?\"ForwardRef(\"+e+\")\":\"ForwardRef\"),e;case I:return null!==(t=e.displayName||null)?t:Z(e.type)||\"Memo\";case C:t=e._payload,e=e._init;try{return Z(e(t))}catch(e){}}return null}function Y(e){var t=e.type;switch(e.tag){case 24:return\"Cache\";case 9:return(t.displayName||\"Context\")+\".Consumer\";case 10:return(t._context.displayName||\"Context\")+\".Provider\";case 18:return\"DehydratedFragment\";case 11:return e=(e=t.render).displayName||e.name||\"\",t.displayName||(\"\"!==e?\"ForwardRef(\"+e+\")\":\"ForwardRef\");case 7:return\"Fragment\";case 5:return t;case 4:return\"Portal\";case 3:return\"Root\";case 6:return\"Text\";case 16:return Z(t);case 8:return t===N?\"StrictMode\":\"Mode\";case 22:return\"Offscreen\";case 12:return\"Profiler\";case 21:return\"Scope\";case 13:return\"Suspense\";case 19:return\"SuspenseList\";case 25:return\"TracingMarker\";case 1:case 0:case 17:case 2:case 14:case 15:if(\"function\"==typeof t)return t.displayName||t.name||null;if(\"string\"==typeof t)return t}return null}function W(e){switch(typeof e){case\"boolean\":case\"number\":case\"string\":case\"undefined\":case\"object\":return e;default:return\"\"}}function V(e){var t=e.type;return(e=e.nodeName)&&\"input\"===e.toLowerCase()&&(\"checkbox\"===t||\"radio\"===t)}function Q(e){e._valueTracker||(e._valueTracker=function(e){var t=V(e)?\"checked\":\"value\",r=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),n=\"\"+e[t];if(!e.hasOwnProperty(t)&&void 0!==r&&\"function\"==typeof r.get&&\"function\"==typeof r.set){var o=r.get,i=r.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(e){n=\"\"+e,i.call(this,e)}}),Object.defineProperty(e,t,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(e){n=\"\"+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function H(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var r=t.getValue(),n=\"\";return e&&(n=V(e)?e.checked?\"true\":\"false\":e.value),(e=n)!==r&&(t.setValue(e),!0)}function G(e){if(void 0===(e=e||(\"undefined\"!=typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function q(e,t){var r=t.checked;return z({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=r?r:e._wrapperState.initialChecked})}function $(e,t){var r=null==t.defaultValue?\"\":t.defaultValue,n=null!=t.checked?t.checked:t.defaultChecked;r=W(null!=t.value?t.value:r),e._wrapperState={initialChecked:n,initialValue:r,controlled:\"checkbox\"===t.type||\"radio\"===t.type?null!=t.checked:null!=t.value}}function X(e,t){null!=(t=t.checked)&&g(e,\"checked\",t,!1)}function K(e,t){X(e,t);var r=W(t.value),n=t.type;if(null!=r)\"number\"===n?(0===r&&\"\"===e.value||e.value!=r)&&(e.value=\"\"+r):e.value!==\"\"+r&&(e.value=\"\"+r);else if(\"submit\"===n||\"reset\"===n)return void e.removeAttribute(\"value\");t.hasOwnProperty(\"value\")?ee(e,t.type,r):t.hasOwnProperty(\"defaultValue\")&&ee(e,t.type,W(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function J(e,t,r){if(t.hasOwnProperty(\"value\")||t.hasOwnProperty(\"defaultValue\")){var n=t.type;if(!(\"submit\"!==n&&\"reset\"!==n||void 0!==t.value&&null!==t.value))return;t=\"\"+e._wrapperState.initialValue,r||t===e.value||(e.value=t),e.defaultValue=t}\"\"!==(r=e.name)&&(e.name=\"\"),e.defaultChecked=!!e._wrapperState.initialChecked,\"\"!==r&&(e.name=r)}function ee(e,t,r){\"number\"===t&&G(e.ownerDocument)===e||(null==r?e.defaultValue=\"\"+e._wrapperState.initialValue:e.defaultValue!==\"\"+r&&(e.defaultValue=\"\"+r))}var te=Array.isArray;function re(e,t,r,n){if(e=e.options,t){t={};for(var o=0;o<r.length;o++)t[\"$\"+r[o]]=!0;for(r=0;r<e.length;r++)o=t.hasOwnProperty(\"$\"+e[r].value),e[r].selected!==o&&(e[r].selected=o),o&&n&&(e[r].defaultSelected=!0)}else{for(r=\"\"+W(r),t=null,o=0;o<e.length;o++){if(e[o].value===r)return e[o].selected=!0,void(n&&(e[o].defaultSelected=!0));null!==t||e[o].disabled||(t=e[o])}null!==t&&(t.selected=!0)}}function ne(e,t){if(null!=t.dangerouslySetInnerHTML)throw Error(i(91));return z({},t,{value:void 0,defaultValue:void 0,children:\"\"+e._wrapperState.initialValue})}function oe(e,t){var r=t.value;if(null==r){if(r=t.children,t=t.defaultValue,null!=r){if(null!=t)throw Error(i(92));if(te(r)){if(1<r.length)throw Error(i(93));r=r[0]}t=r}null==t&&(t=\"\"),r=t}e._wrapperState={initialValue:W(r)}}function ie(e,t){var r=W(t.value),n=W(t.defaultValue);null!=r&&((r=\"\"+r)!==e.value&&(e.value=r),null==t.defaultValue&&e.defaultValue!==r&&(e.defaultValue=r)),null!=n&&(e.defaultValue=\"\"+n)}function ae(e){var t=e.textContent;t===e._wrapperState.initialValue&&\"\"!==t&&null!==t&&(e.value=t)}function ce(e){switch(e){case\"svg\":return\"http://www.w3.org/2000/svg\";case\"math\":return\"http://www.w3.org/1998/Math/MathML\";default:return\"http://www.w3.org/1999/xhtml\"}}function le(e,t){return null==e||\"http://www.w3.org/1999/xhtml\"===e?ce(t):\"http://www.w3.org/2000/svg\"===e&&\"foreignObject\"===t?\"http://www.w3.org/1999/xhtml\":e}var se,ue,pe=(ue=function(e,t){if(\"http://www.w3.org/2000/svg\"!==e.namespaceURI||\"innerHTML\"in e)e.innerHTML=t;else{for((se=se||document.createElement(\"div\")).innerHTML=\"<svg>\"+t.valueOf().toString()+\"</svg>\",t=se.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},\"undefined\"!=typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,r,n){MSApp.execUnsafeLocalFunction((function(){return ue(e,t)}))}:ue);function de(e,t){if(t){var r=e.firstChild;if(r&&r===e.lastChild&&3===r.nodeType)return void(r.nodeValue=t)}e.textContent=t}var fe={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},me=[\"Webkit\",\"ms\",\"Moz\",\"O\"];function ye(e,t,r){return null==t||\"boolean\"==typeof t||\"\"===t?\"\":r||\"number\"!=typeof t||0===t||fe.hasOwnProperty(e)&&fe[e]?(\"\"+t).trim():t+\"px\"}function he(e,t){for(var r in e=e.style,t)if(t.hasOwnProperty(r)){var n=0===r.indexOf(\"--\"),o=ye(r,t[r],n);\"float\"===r&&(r=\"cssFloat\"),n?e.setProperty(r,o):e[r]=o}}Object.keys(fe).forEach((function(e){me.forEach((function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),fe[t]=fe[e]}))}));var be=z({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ve(e,t){if(t){if(be[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(i(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(i(60));if(\"object\"!=typeof t.dangerouslySetInnerHTML||!(\"__html\"in t.dangerouslySetInnerHTML))throw Error(i(61))}if(null!=t.style&&\"object\"!=typeof t.style)throw Error(i(62))}}function ge(e,t){if(-1===e.indexOf(\"-\"))return\"string\"==typeof t.is;switch(e){case\"annotation-xml\":case\"color-profile\":case\"font-face\":case\"font-face-src\":case\"font-face-uri\":case\"font-face-format\":case\"font-face-name\":case\"missing-glyph\":return!1;default:return!0}}var _e=null;function we(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var xe=null,ke=null,Ne=null;function Me(e){if(e=_o(e)){if(\"function\"!=typeof xe)throw Error(i(280));var t=e.stateNode;t&&(t=xo(t),xe(e.stateNode,e.type,t))}}function je(e){ke?Ne?Ne.push(e):Ne=[e]:ke=e}function Se(){if(ke){var e=ke,t=Ne;if(Ne=ke=null,Me(e),t)for(e=0;e<t.length;e++)Me(t[e])}}function Ee(e,t){return e(t)}function Le(){}var Oe=!1;function Ie(e,t,r){if(Oe)return e(t,r);Oe=!0;try{return Ee(e,t,r)}finally{Oe=!1,(null!==ke||null!==Ne)&&(Le(),Se())}}function Ce(e,t){var r=e.stateNode;if(null===r)return null;var n=xo(r);if(null===n)return null;r=n[t];e:switch(t){case\"onClick\":case\"onClickCapture\":case\"onDoubleClick\":case\"onDoubleClickCapture\":case\"onMouseDown\":case\"onMouseDownCapture\":case\"onMouseMove\":case\"onMouseMoveCapture\":case\"onMouseUp\":case\"onMouseUpCapture\":case\"onMouseEnter\":(n=!n.disabled)||(n=!(\"button\"===(e=e.type)||\"input\"===e||\"select\"===e||\"textarea\"===e)),e=!n;break e;default:e=!1}if(e)return null;if(r&&\"function\"!=typeof r)throw Error(i(231,t,typeof r));return r}var Pe=!1;if(u)try{var Ae={};Object.defineProperty(Ae,\"passive\",{get:function(){Pe=!0}}),window.addEventListener(\"test\",Ae,Ae),window.removeEventListener(\"test\",Ae,Ae)}catch(ue){Pe=!1}function De(e,t,r,n,o,i,a,c,l){var s=Array.prototype.slice.call(arguments,3);try{t.apply(r,s)}catch(e){this.onError(e)}}var Te=!1,ze=null,Be=!1,Re=null,Fe={onError:function(e){Te=!0,ze=e}};function Ue(e,t,r,n,o,i,a,c,l){Te=!1,ze=null,De.apply(Fe,arguments)}function Ze(e){var t=e,r=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do{0!=(4098&(t=e).flags)&&(r=t.return),e=t.return}while(e)}return 3===t.tag?r:null}function Ye(e){if(13===e.tag){var t=e.memoizedState;if(null===t&&(null!==(e=e.alternate)&&(t=e.memoizedState)),null!==t)return t.dehydrated}return null}function We(e){if(Ze(e)!==e)throw Error(i(188))}function Ve(e){return null!==(e=function(e){var t=e.alternate;if(!t){if(null===(t=Ze(e)))throw Error(i(188));return t!==e?null:e}for(var r=e,n=t;;){var o=r.return;if(null===o)break;var a=o.alternate;if(null===a){if(null!==(n=o.return)){r=n;continue}break}if(o.child===a.child){for(a=o.child;a;){if(a===r)return We(o),e;if(a===n)return We(o),t;a=a.sibling}throw Error(i(188))}if(r.return!==n.return)r=o,n=a;else{for(var c=!1,l=o.child;l;){if(l===r){c=!0,r=o,n=a;break}if(l===n){c=!0,n=o,r=a;break}l=l.sibling}if(!c){for(l=a.child;l;){if(l===r){c=!0,r=a,n=o;break}if(l===n){c=!0,n=a,r=o;break}l=l.sibling}if(!c)throw Error(i(189))}}if(r.alternate!==n)throw Error(i(190))}if(3!==r.tag)throw Error(i(188));return r.stateNode.current===r?e:t}(e))?Qe(e):null}function Qe(e){if(5===e.tag||6===e.tag)return e;for(e=e.child;null!==e;){var t=Qe(e);if(null!==t)return t;e=e.sibling}return null}var He=o.unstable_scheduleCallback,Ge=o.unstable_cancelCallback,qe=o.unstable_shouldYield,$e=o.unstable_requestPaint,Xe=o.unstable_now,Ke=o.unstable_getCurrentPriorityLevel,Je=o.unstable_ImmediatePriority,et=o.unstable_UserBlockingPriority,tt=o.unstable_NormalPriority,rt=o.unstable_LowPriority,nt=o.unstable_IdlePriority,ot=null,it=null;var at=Math.clz32?Math.clz32:function(e){return e>>>=0,0===e?32:31-(ct(e)/lt|0)|0},ct=Math.log,lt=Math.LN2;var st=64,ut=4194304;function pt(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return 4194240&e;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return 130023424&e;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function dt(e,t){var r=e.pendingLanes;if(0===r)return 0;var n=0,o=e.suspendedLanes,i=e.pingedLanes,a=268435455&r;if(0!==a){var c=a&~o;0!==c?n=pt(c):0!==(i&=a)&&(n=pt(i))}else 0!==(a=r&~o)?n=pt(a):0!==i&&(n=pt(i));if(0===n)return 0;if(0!==t&&t!==n&&0==(t&o)&&((o=n&-n)>=(i=t&-t)||16===o&&0!=(4194240&i)))return t;if(0!=(4&n)&&(n|=16&r),0!==(t=e.entangledLanes))for(e=e.entanglements,t&=n;0<t;)o=1<<(r=31-at(t)),n|=e[r],t&=~o;return n}function ft(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;default:return-1}}function mt(e){return 0!==(e=-1073741825&e.pendingLanes)?e:1073741824&e?1073741824:0}function yt(){var e=st;return 0==(4194240&(st<<=1))&&(st=64),e}function ht(e){for(var t=[],r=0;31>r;r++)t.push(e);return t}function bt(e,t,r){e.pendingLanes|=t,536870912!==t&&(e.suspendedLanes=0,e.pingedLanes=0),(e=e.eventTimes)[t=31-at(t)]=r}function vt(e,t){var r=e.entangledLanes|=t;for(e=e.entanglements;r;){var n=31-at(r),o=1<<n;o&t|e[n]&t&&(e[n]|=t),r&=~o}}var gt=0;function _t(e){return 1<(e&=-e)?4<e?0!=(268435455&e)?16:536870912:4:1}var wt,xt,kt,Nt,Mt,jt=!1,St=[],Et=null,Lt=null,Ot=null,It=new Map,Ct=new Map,Pt=[],At=\"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit\".split(\" \");function Dt(e,t){switch(e){case\"focusin\":case\"focusout\":Et=null;break;case\"dragenter\":case\"dragleave\":Lt=null;break;case\"mouseover\":case\"mouseout\":Ot=null;break;case\"pointerover\":case\"pointerout\":It.delete(t.pointerId);break;case\"gotpointercapture\":case\"lostpointercapture\":Ct.delete(t.pointerId)}}function Tt(e,t,r,n,o,i){return null===e||e.nativeEvent!==i?(e={blockedOn:t,domEventName:r,eventSystemFlags:n,nativeEvent:i,targetContainers:[o]},null!==t&&(null!==(t=_o(t))&&xt(t)),e):(e.eventSystemFlags|=n,t=e.targetContainers,null!==o&&-1===t.indexOf(o)&&t.push(o),e)}function zt(e){var t=go(e.target);if(null!==t){var r=Ze(t);if(null!==r)if(13===(t=r.tag)){if(null!==(t=Ye(r)))return e.blockedOn=t,void Mt(e.priority,(function(){kt(r)}))}else if(3===t&&r.stateNode.current.memoizedState.isDehydrated)return void(e.blockedOn=3===r.tag?r.stateNode.containerInfo:null)}e.blockedOn=null}function Bt(e){if(null!==e.blockedOn)return!1;for(var t=e.targetContainers;0<t.length;){var r=qt(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(null!==r)return null!==(t=_o(r))&&xt(t),e.blockedOn=r,!1;var n=new(r=e.nativeEvent).constructor(r.type,r);_e=n,r.target.dispatchEvent(n),_e=null,t.shift()}return!0}function Rt(e,t,r){Bt(e)&&r.delete(t)}function Ft(){jt=!1,null!==Et&&Bt(Et)&&(Et=null),null!==Lt&&Bt(Lt)&&(Lt=null),null!==Ot&&Bt(Ot)&&(Ot=null),It.forEach(Rt),Ct.forEach(Rt)}function Ut(e,t){e.blockedOn===t&&(e.blockedOn=null,jt||(jt=!0,o.unstable_scheduleCallback(o.unstable_NormalPriority,Ft)))}function Zt(e){function t(t){return Ut(t,e)}if(0<St.length){Ut(St[0],e);for(var r=1;r<St.length;r++){var n=St[r];n.blockedOn===e&&(n.blockedOn=null)}}for(null!==Et&&Ut(Et,e),null!==Lt&&Ut(Lt,e),null!==Ot&&Ut(Ot,e),It.forEach(t),Ct.forEach(t),r=0;r<Pt.length;r++)(n=Pt[r]).blockedOn===e&&(n.blockedOn=null);for(;0<Pt.length&&null===(r=Pt[0]).blockedOn;)zt(r),null===r.blockedOn&&Pt.shift()}var Yt=_.ReactCurrentBatchConfig,Wt=!0;function Vt(e,t,r,n){var o=gt,i=Yt.transition;Yt.transition=null;try{gt=1,Ht(e,t,r,n)}finally{gt=o,Yt.transition=i}}function Qt(e,t,r,n){var o=gt,i=Yt.transition;Yt.transition=null;try{gt=4,Ht(e,t,r,n)}finally{gt=o,Yt.transition=i}}function Ht(e,t,r,n){if(Wt){var o=qt(e,t,r,n);if(null===o)Wn(e,t,n,Gt,r),Dt(e,n);else if(function(e,t,r,n,o){switch(t){case\"focusin\":return Et=Tt(Et,e,t,r,n,o),!0;case\"dragenter\":return Lt=Tt(Lt,e,t,r,n,o),!0;case\"mouseover\":return Ot=Tt(Ot,e,t,r,n,o),!0;case\"pointerover\":var i=o.pointerId;return It.set(i,Tt(It.get(i)||null,e,t,r,n,o)),!0;case\"gotpointercapture\":return i=o.pointerId,Ct.set(i,Tt(Ct.get(i)||null,e,t,r,n,o)),!0}return!1}(o,e,t,r,n))n.stopPropagation();else if(Dt(e,n),4&t&&-1<At.indexOf(e)){for(;null!==o;){var i=_o(o);if(null!==i&&wt(i),null===(i=qt(e,t,r,n))&&Wn(e,t,n,Gt,r),i===o)break;o=i}null!==o&&n.stopPropagation()}else Wn(e,t,n,null,r)}}var Gt=null;function qt(e,t,r,n){if(Gt=null,null!==(e=go(e=we(n))))if(null===(t=Ze(e)))e=null;else if(13===(r=t.tag)){if(null!==(e=Ye(t)))return e;e=null}else if(3===r){if(t.stateNode.current.memoizedState.isDehydrated)return 3===t.tag?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return Gt=e,null}function $t(e){switch(e){case\"cancel\":case\"click\":case\"close\":case\"contextmenu\":case\"copy\":case\"cut\":case\"auxclick\":case\"dblclick\":case\"dragend\":case\"dragstart\":case\"drop\":case\"focusin\":case\"focusout\":case\"input\":case\"invalid\":case\"keydown\":case\"keypress\":case\"keyup\":case\"mousedown\":case\"mouseup\":case\"paste\":case\"pause\":case\"play\":case\"pointercancel\":case\"pointerdown\":case\"pointerup\":case\"ratechange\":case\"reset\":case\"resize\":case\"seeked\":case\"submit\":case\"touchcancel\":case\"touchend\":case\"touchstart\":case\"volumechange\":case\"change\":case\"selectionchange\":case\"textInput\":case\"compositionstart\":case\"compositionend\":case\"compositionupdate\":case\"beforeblur\":case\"afterblur\":case\"beforeinput\":case\"blur\":case\"fullscreenchange\":case\"focus\":case\"hashchange\":case\"popstate\":case\"select\":case\"selectstart\":return 1;case\"drag\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"mousemove\":case\"mouseout\":case\"mouseover\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"scroll\":case\"toggle\":case\"touchmove\":case\"wheel\":case\"mouseenter\":case\"mouseleave\":case\"pointerenter\":case\"pointerleave\":return 4;case\"message\":switch(Ke()){case Je:return 1;case et:return 4;case tt:case rt:return 16;case nt:return 536870912;default:return 16}default:return 16}}var Xt=null,Kt=null,Jt=null;function er(){if(Jt)return Jt;var e,t,r=Kt,n=r.length,o=\"value\"in Xt?Xt.value:Xt.textContent,i=o.length;for(e=0;e<n&&r[e]===o[e];e++);var a=n-e;for(t=1;t<=a&&r[n-t]===o[i-t];t++);return Jt=o.slice(e,1<t?1-t:void 0)}function tr(e){var t=e.keyCode;return\"charCode\"in e?0===(e=e.charCode)&&13===t&&(e=13):e=t,10===e&&(e=13),32<=e||13===e?e:0}function rr(){return!0}function nr(){return!1}function or(e){function t(t,r,n,o,i){for(var a in this._reactName=t,this._targetInst=n,this.type=r,this.nativeEvent=o,this.target=i,this.currentTarget=null,e)e.hasOwnProperty(a)&&(t=e[a],this[a]=t?t(o):o[a]);return this.isDefaultPrevented=(null!=o.defaultPrevented?o.defaultPrevented:!1===o.returnValue)?rr:nr,this.isPropagationStopped=nr,this}return z(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var e=this.nativeEvent;e&&(e.preventDefault?e.preventDefault():\"unknown\"!=typeof e.returnValue&&(e.returnValue=!1),this.isDefaultPrevented=rr)},stopPropagation:function(){var e=this.nativeEvent;e&&(e.stopPropagation?e.stopPropagation():\"unknown\"!=typeof e.cancelBubble&&(e.cancelBubble=!0),this.isPropagationStopped=rr)},persist:function(){},isPersistent:rr}),t}var ir,ar,cr,lr={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},sr=or(lr),ur=z({},lr,{view:0,detail:0}),pr=or(ur),dr=z({},ur,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:Nr,button:0,buttons:0,relatedTarget:function(e){return void 0===e.relatedTarget?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return\"movementX\"in e?e.movementX:(e!==cr&&(cr&&\"mousemove\"===e.type?(ir=e.screenX-cr.screenX,ar=e.screenY-cr.screenY):ar=ir=0,cr=e),ir)},movementY:function(e){return\"movementY\"in e?e.movementY:ar}}),fr=or(dr),mr=or(z({},dr,{dataTransfer:0})),yr=or(z({},ur,{relatedTarget:0})),hr=or(z({},lr,{animationName:0,elapsedTime:0,pseudoElement:0})),br=z({},lr,{clipboardData:function(e){return\"clipboardData\"in e?e.clipboardData:window.clipboardData}}),vr=or(br),gr=or(z({},lr,{data:0})),_r={Esc:\"Escape\",Spacebar:\" \",Left:\"ArrowLeft\",Up:\"ArrowUp\",Right:\"ArrowRight\",Down:\"ArrowDown\",Del:\"Delete\",Win:\"OS\",Menu:\"ContextMenu\",Apps:\"ContextMenu\",Scroll:\"ScrollLock\",MozPrintableKey:\"Unidentified\"},wr={8:\"Backspace\",9:\"Tab\",12:\"Clear\",13:\"Enter\",16:\"Shift\",17:\"Control\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Escape\",32:\" \",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"ArrowLeft\",38:\"ArrowUp\",39:\"ArrowRight\",40:\"ArrowDown\",45:\"Insert\",46:\"Delete\",112:\"F1\",113:\"F2\",114:\"F3\",115:\"F4\",116:\"F5\",117:\"F6\",118:\"F7\",119:\"F8\",120:\"F9\",121:\"F10\",122:\"F11\",123:\"F12\",144:\"NumLock\",145:\"ScrollLock\",224:\"Meta\"},xr={Alt:\"altKey\",Control:\"ctrlKey\",Meta:\"metaKey\",Shift:\"shiftKey\"};function kr(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):!!(e=xr[e])&&!!t[e]}function Nr(){return kr}var Mr=z({},ur,{key:function(e){if(e.key){var t=_r[e.key]||e.key;if(\"Unidentified\"!==t)return t}return\"keypress\"===e.type?13===(e=tr(e))?\"Enter\":String.fromCharCode(e):\"keydown\"===e.type||\"keyup\"===e.type?wr[e.keyCode]||\"Unidentified\":\"\"},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:Nr,charCode:function(e){return\"keypress\"===e.type?tr(e):0},keyCode:function(e){return\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0},which:function(e){return\"keypress\"===e.type?tr(e):\"keydown\"===e.type||\"keyup\"===e.type?e.keyCode:0}}),jr=or(Mr),Sr=or(z({},dr,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0})),Er=or(z({},ur,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:Nr})),Lr=or(z({},lr,{propertyName:0,elapsedTime:0,pseudoElement:0})),Or=z({},dr,{deltaX:function(e){return\"deltaX\"in e?e.deltaX:\"wheelDeltaX\"in e?-e.wheelDeltaX:0},deltaY:function(e){return\"deltaY\"in e?e.deltaY:\"wheelDeltaY\"in e?-e.wheelDeltaY:\"wheelDelta\"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),Ir=or(Or),Cr=[9,13,27,32],Pr=u&&\"CompositionEvent\"in window,Ar=null;u&&\"documentMode\"in document&&(Ar=document.documentMode);var Dr=u&&\"TextEvent\"in window&&!Ar,Tr=u&&(!Pr||Ar&&8<Ar&&11>=Ar),zr=String.fromCharCode(32),Br=!1;function Rr(e,t){switch(e){case\"keyup\":return-1!==Cr.indexOf(t.keyCode);case\"keydown\":return 229!==t.keyCode;case\"keypress\":case\"mousedown\":case\"focusout\":return!0;default:return!1}}function Fr(e){return\"object\"==typeof(e=e.detail)&&\"data\"in e?e.data:null}var Ur=!1;var Zr={color:!0,date:!0,datetime:!0,\"datetime-local\":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function Yr(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return\"input\"===t?!!Zr[e.type]:\"textarea\"===t}function Wr(e,t,r,n){je(n),0<(t=Qn(t,\"onChange\")).length&&(r=new sr(\"onChange\",\"change\",null,r,n),e.push({event:r,listeners:t}))}var Vr=null,Qr=null;function Hr(e){Bn(e,0)}function Gr(e){if(H(wo(e)))return e}function qr(e,t){if(\"change\"===e)return t}var $r=!1;if(u){var Xr;if(u){var Kr=\"oninput\"in document;if(!Kr){var Jr=document.createElement(\"div\");Jr.setAttribute(\"oninput\",\"return;\"),Kr=\"function\"==typeof Jr.oninput}Xr=Kr}else Xr=!1;$r=Xr&&(!document.documentMode||9<document.documentMode)}function en(){Vr&&(Vr.detachEvent(\"onpropertychange\",tn),Qr=Vr=null)}function tn(e){if(\"value\"===e.propertyName&&Gr(Qr)){var t=[];Wr(t,Qr,e,we(e)),Ie(Hr,t)}}function rn(e,t,r){\"focusin\"===e?(en(),Qr=r,(Vr=t).attachEvent(\"onpropertychange\",tn)):\"focusout\"===e&&en()}function nn(e){if(\"selectionchange\"===e||\"keyup\"===e||\"keydown\"===e)return Gr(Qr)}function on(e,t){if(\"click\"===e)return Gr(t)}function an(e,t){if(\"input\"===e||\"change\"===e)return Gr(t)}var cn=\"function\"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t};function ln(e,t){if(cn(e,t))return!0;if(\"object\"!=typeof e||null===e||\"object\"!=typeof t||null===t)return!1;var r=Object.keys(e),n=Object.keys(t);if(r.length!==n.length)return!1;for(n=0;n<r.length;n++){var o=r[n];if(!p.call(t,o)||!cn(e[o],t[o]))return!1}return!0}function sn(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function un(e,t){var r,n=sn(e);for(e=0;n;){if(3===n.nodeType){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=sn(n)}}function pn(e,t){return!(!e||!t)&&(e===t||(!e||3!==e.nodeType)&&(t&&3===t.nodeType?pn(e,t.parentNode):\"contains\"in e?e.contains(t):!!e.compareDocumentPosition&&!!(16&e.compareDocumentPosition(t))))}function dn(){for(var e=window,t=G();t instanceof e.HTMLIFrameElement;){try{var r=\"string\"==typeof t.contentWindow.location.href}catch(e){r=!1}if(!r)break;t=G((e=t.contentWindow).document)}return t}function fn(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(\"input\"===t&&(\"text\"===e.type||\"search\"===e.type||\"tel\"===e.type||\"url\"===e.type||\"password\"===e.type)||\"textarea\"===t||\"true\"===e.contentEditable)}function mn(e){var t=dn(),r=e.focusedElem,n=e.selectionRange;if(t!==r&&r&&r.ownerDocument&&pn(r.ownerDocument.documentElement,r)){if(null!==n&&fn(r))if(t=n.start,void 0===(e=n.end)&&(e=t),\"selectionStart\"in r)r.selectionStart=t,r.selectionEnd=Math.min(e,r.value.length);else if((e=(t=r.ownerDocument||document)&&t.defaultView||window).getSelection){e=e.getSelection();var o=r.textContent.length,i=Math.min(n.start,o);n=void 0===n.end?i:Math.min(n.end,o),!e.extend&&i>n&&(o=n,n=i,i=o),o=un(r,i);var a=un(r,n);o&&a&&(1!==e.rangeCount||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==a.node||e.focusOffset!==a.offset)&&((t=t.createRange()).setStart(o.node,o.offset),e.removeAllRanges(),i>n?(e.addRange(t),e.extend(a.node,a.offset)):(t.setEnd(a.node,a.offset),e.addRange(t)))}for(t=[],e=r;e=e.parentNode;)1===e.nodeType&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(\"function\"==typeof r.focus&&r.focus(),r=0;r<t.length;r++)(e=t[r]).element.scrollLeft=e.left,e.element.scrollTop=e.top}}var yn=u&&\"documentMode\"in document&&11>=document.documentMode,hn=null,bn=null,vn=null,gn=!1;function _n(e,t,r){var n=r.window===r?r.document:9===r.nodeType?r:r.ownerDocument;gn||null==hn||hn!==G(n)||(\"selectionStart\"in(n=hn)&&fn(n)?n={start:n.selectionStart,end:n.selectionEnd}:n={anchorNode:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset},vn&&ln(vn,n)||(vn=n,0<(n=Qn(bn,\"onSelect\")).length&&(t=new sr(\"onSelect\",\"select\",null,t,r),e.push({event:t,listeners:n}),t.target=hn)))}function wn(e,t){var r={};return r[e.toLowerCase()]=t.toLowerCase(),r[\"Webkit\"+e]=\"webkit\"+t,r[\"Moz\"+e]=\"moz\"+t,r}var xn={animationend:wn(\"Animation\",\"AnimationEnd\"),animationiteration:wn(\"Animation\",\"AnimationIteration\"),animationstart:wn(\"Animation\",\"AnimationStart\"),transitionend:wn(\"Transition\",\"TransitionEnd\")},kn={},Nn={};function Mn(e){if(kn[e])return kn[e];if(!xn[e])return e;var t,r=xn[e];for(t in r)if(r.hasOwnProperty(t)&&t in Nn)return kn[e]=r[t];return e}u&&(Nn=document.createElement(\"div\").style,\"AnimationEvent\"in window||(delete xn.animationend.animation,delete xn.animationiteration.animation,delete xn.animationstart.animation),\"TransitionEvent\"in window||delete xn.transitionend.transition);var jn=Mn(\"animationend\"),Sn=Mn(\"animationiteration\"),En=Mn(\"animationstart\"),Ln=Mn(\"transitionend\"),On=new Map,In=\"abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel\".split(\" \");function Cn(e,t){On.set(e,t),l(t,[e])}for(var Pn=0;Pn<In.length;Pn++){var An=In[Pn];Cn(An.toLowerCase(),\"on\"+(An[0].toUpperCase()+An.slice(1)))}Cn(jn,\"onAnimationEnd\"),Cn(Sn,\"onAnimationIteration\"),Cn(En,\"onAnimationStart\"),Cn(\"dblclick\",\"onDoubleClick\"),Cn(\"focusin\",\"onFocus\"),Cn(\"focusout\",\"onBlur\"),Cn(Ln,\"onTransitionEnd\"),s(\"onMouseEnter\",[\"mouseout\",\"mouseover\"]),s(\"onMouseLeave\",[\"mouseout\",\"mouseover\"]),s(\"onPointerEnter\",[\"pointerout\",\"pointerover\"]),s(\"onPointerLeave\",[\"pointerout\",\"pointerover\"]),l(\"onChange\",\"change click focusin focusout input keydown keyup selectionchange\".split(\" \")),l(\"onSelect\",\"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\" \")),l(\"onBeforeInput\",[\"compositionend\",\"keypress\",\"textInput\",\"paste\"]),l(\"onCompositionEnd\",\"compositionend focusout keydown keypress keyup mousedown\".split(\" \")),l(\"onCompositionStart\",\"compositionstart focusout keydown keypress keyup mousedown\".split(\" \")),l(\"onCompositionUpdate\",\"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \"));var Dn=\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting\".split(\" \"),Tn=new Set(\"cancel close invalid load scroll toggle\".split(\" \").concat(Dn));function zn(e,t,r){var n=e.type||\"unknown-event\";e.currentTarget=r,function(e,t,r,n,o,a,c,l,s){if(Ue.apply(this,arguments),Te){if(!Te)throw Error(i(198));var u=ze;Te=!1,ze=null,Be||(Be=!0,Re=u)}}(n,t,void 0,e),e.currentTarget=null}function Bn(e,t){t=0!=(4&t);for(var r=0;r<e.length;r++){var n=e[r],o=n.event;n=n.listeners;e:{var i=void 0;if(t)for(var a=n.length-1;0<=a;a--){var c=n[a],l=c.instance,s=c.currentTarget;if(c=c.listener,l!==i&&o.isPropagationStopped())break e;zn(o,c,s),i=l}else for(a=0;a<n.length;a++){if(l=(c=n[a]).instance,s=c.currentTarget,c=c.listener,l!==i&&o.isPropagationStopped())break e;zn(o,c,s),i=l}}}if(Be)throw e=Re,Be=!1,Re=null,e}function Rn(e,t){var r=t[ho];void 0===r&&(r=t[ho]=new Set);var n=e+\"__bubble\";r.has(n)||(Yn(t,e,2,!1),r.add(n))}function Fn(e,t,r){var n=0;t&&(n|=4),Yn(r,e,n,t)}var Un=\"_reactListening\"+Math.random().toString(36).slice(2);function Zn(e){if(!e[Un]){e[Un]=!0,a.forEach((function(t){\"selectionchange\"!==t&&(Tn.has(t)||Fn(t,!1,e),Fn(t,!0,e))}));var t=9===e.nodeType?e:e.ownerDocument;null===t||t[Un]||(t[Un]=!0,Fn(\"selectionchange\",!1,t))}}function Yn(e,t,r,n){switch($t(t)){case 1:var o=Vt;break;case 4:o=Qt;break;default:o=Ht}r=o.bind(null,t,r,e),o=void 0,!Pe||\"touchstart\"!==t&&\"touchmove\"!==t&&\"wheel\"!==t||(o=!0),n?void 0!==o?e.addEventListener(t,r,{capture:!0,passive:o}):e.addEventListener(t,r,!0):void 0!==o?e.addEventListener(t,r,{passive:o}):e.addEventListener(t,r,!1)}function Wn(e,t,r,n,o){var i=n;if(0==(1&t)&&0==(2&t)&&null!==n)e:for(;;){if(null===n)return;var a=n.tag;if(3===a||4===a){var c=n.stateNode.containerInfo;if(c===o||8===c.nodeType&&c.parentNode===o)break;if(4===a)for(a=n.return;null!==a;){var l=a.tag;if((3===l||4===l)&&((l=a.stateNode.containerInfo)===o||8===l.nodeType&&l.parentNode===o))return;a=a.return}for(;null!==c;){if(null===(a=go(c)))return;if(5===(l=a.tag)||6===l){n=i=a;continue e}c=c.parentNode}}n=n.return}Ie((function(){var n=i,o=we(r),a=[];e:{var c=On.get(e);if(void 0!==c){var l=sr,s=e;switch(e){case\"keypress\":if(0===tr(r))break e;case\"keydown\":case\"keyup\":l=jr;break;case\"focusin\":s=\"focus\",l=yr;break;case\"focusout\":s=\"blur\",l=yr;break;case\"beforeblur\":case\"afterblur\":l=yr;break;case\"click\":if(2===r.button)break e;case\"auxclick\":case\"dblclick\":case\"mousedown\":case\"mousemove\":case\"mouseup\":case\"mouseout\":case\"mouseover\":case\"contextmenu\":l=fr;break;case\"drag\":case\"dragend\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"dragstart\":case\"drop\":l=mr;break;case\"touchcancel\":case\"touchend\":case\"touchmove\":case\"touchstart\":l=Er;break;case jn:case Sn:case En:l=hr;break;case Ln:l=Lr;break;case\"scroll\":l=pr;break;case\"wheel\":l=Ir;break;case\"copy\":case\"cut\":case\"paste\":l=vr;break;case\"gotpointercapture\":case\"lostpointercapture\":case\"pointercancel\":case\"pointerdown\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"pointerup\":l=Sr}var u=0!=(4&t),p=!u&&\"scroll\"===e,d=u?null!==c?c+\"Capture\":null:c;u=[];for(var f,m=n;null!==m;){var y=(f=m).stateNode;if(5===f.tag&&null!==y&&(f=y,null!==d&&(null!=(y=Ce(m,d))&&u.push(Vn(m,y,f)))),p)break;m=m.return}0<u.length&&(c=new l(c,s,null,r,o),a.push({event:c,listeners:u}))}}if(0==(7&t)){if(l=\"mouseout\"===e||\"pointerout\"===e,(!(c=\"mouseover\"===e||\"pointerover\"===e)||r===_e||!(s=r.relatedTarget||r.fromElement)||!go(s)&&!s[yo])&&(l||c)&&(c=o.window===o?o:(c=o.ownerDocument)?c.defaultView||c.parentWindow:window,l?(l=n,null!==(s=(s=r.relatedTarget||r.toElement)?go(s):null)&&(s!==(p=Ze(s))||5!==s.tag&&6!==s.tag)&&(s=null)):(l=null,s=n),l!==s)){if(u=fr,y=\"onMouseLeave\",d=\"onMouseEnter\",m=\"mouse\",\"pointerout\"!==e&&\"pointerover\"!==e||(u=Sr,y=\"onPointerLeave\",d=\"onPointerEnter\",m=\"pointer\"),p=null==l?c:wo(l),f=null==s?c:wo(s),(c=new u(y,m+\"leave\",l,r,o)).target=p,c.relatedTarget=f,y=null,go(o)===n&&((u=new u(d,m+\"enter\",s,r,o)).target=f,u.relatedTarget=p,y=u),p=y,l&&s)e:{for(d=s,m=0,f=u=l;f;f=Hn(f))m++;for(f=0,y=d;y;y=Hn(y))f++;for(;0<m-f;)u=Hn(u),m--;for(;0<f-m;)d=Hn(d),f--;for(;m--;){if(u===d||null!==d&&u===d.alternate)break e;u=Hn(u),d=Hn(d)}u=null}else u=null;null!==l&&Gn(a,c,l,u,!1),null!==s&&null!==p&&Gn(a,p,s,u,!0)}if(\"select\"===(l=(c=n?wo(n):window).nodeName&&c.nodeName.toLowerCase())||\"input\"===l&&\"file\"===c.type)var h=qr;else if(Yr(c))if($r)h=an;else{h=nn;var b=rn}else(l=c.nodeName)&&\"input\"===l.toLowerCase()&&(\"checkbox\"===c.type||\"radio\"===c.type)&&(h=on);switch(h&&(h=h(e,n))?Wr(a,h,r,o):(b&&b(e,c,n),\"focusout\"===e&&(b=c._wrapperState)&&b.controlled&&\"number\"===c.type&&ee(c,\"number\",c.value)),b=n?wo(n):window,e){case\"focusin\":(Yr(b)||\"true\"===b.contentEditable)&&(hn=b,bn=n,vn=null);break;case\"focusout\":vn=bn=hn=null;break;case\"mousedown\":gn=!0;break;case\"contextmenu\":case\"mouseup\":case\"dragend\":gn=!1,_n(a,r,o);break;case\"selectionchange\":if(yn)break;case\"keydown\":case\"keyup\":_n(a,r,o)}var v;if(Pr)e:{switch(e){case\"compositionstart\":var g=\"onCompositionStart\";break e;case\"compositionend\":g=\"onCompositionEnd\";break e;case\"compositionupdate\":g=\"onCompositionUpdate\";break e}g=void 0}else Ur?Rr(e,r)&&(g=\"onCompositionEnd\"):\"keydown\"===e&&229===r.keyCode&&(g=\"onCompositionStart\");g&&(Tr&&\"ko\"!==r.locale&&(Ur||\"onCompositionStart\"!==g?\"onCompositionEnd\"===g&&Ur&&(v=er()):(Kt=\"value\"in(Xt=o)?Xt.value:Xt.textContent,Ur=!0)),0<(b=Qn(n,g)).length&&(g=new gr(g,e,null,r,o),a.push({event:g,listeners:b}),v?g.data=v:null!==(v=Fr(r))&&(g.data=v))),(v=Dr?function(e,t){switch(e){case\"compositionend\":return Fr(t);case\"keypress\":return 32!==t.which?null:(Br=!0,zr);case\"textInput\":return(e=t.data)===zr&&Br?null:e;default:return null}}(e,r):function(e,t){if(Ur)return\"compositionend\"===e||!Pr&&Rr(e,t)?(e=er(),Jt=Kt=Xt=null,Ur=!1,e):null;switch(e){case\"paste\":default:return null;case\"keypress\":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case\"compositionend\":return Tr&&\"ko\"!==t.locale?null:t.data}}(e,r))&&(0<(n=Qn(n,\"onBeforeInput\")).length&&(o=new gr(\"onBeforeInput\",\"beforeinput\",null,r,o),a.push({event:o,listeners:n}),o.data=v))}Bn(a,t)}))}function Vn(e,t,r){return{instance:e,listener:t,currentTarget:r}}function Qn(e,t){for(var r=t+\"Capture\",n=[];null!==e;){var o=e,i=o.stateNode;5===o.tag&&null!==i&&(o=i,null!=(i=Ce(e,r))&&n.unshift(Vn(e,i,o)),null!=(i=Ce(e,t))&&n.push(Vn(e,i,o))),e=e.return}return n}function Hn(e){if(null===e)return null;do{e=e.return}while(e&&5!==e.tag);return e||null}function Gn(e,t,r,n,o){for(var i=t._reactName,a=[];null!==r&&r!==n;){var c=r,l=c.alternate,s=c.stateNode;if(null!==l&&l===n)break;5===c.tag&&null!==s&&(c=s,o?null!=(l=Ce(r,i))&&a.unshift(Vn(r,l,c)):o||null!=(l=Ce(r,i))&&a.push(Vn(r,l,c))),r=r.return}0!==a.length&&e.push({event:t,listeners:a})}var qn=/\\r\\n?/g,$n=/\\u0000|\\uFFFD/g;function Xn(e){return(\"string\"==typeof e?e:\"\"+e).replace(qn,\"\\n\").replace($n,\"\")}function Kn(e,t,r){if(t=Xn(t),Xn(e)!==t&&r)throw Error(i(425))}function Jn(){}var eo=null,to=null;function ro(e,t){return\"textarea\"===e||\"noscript\"===e||\"string\"==typeof t.children||\"number\"==typeof t.children||\"object\"==typeof t.dangerouslySetInnerHTML&&null!==t.dangerouslySetInnerHTML&&null!=t.dangerouslySetInnerHTML.__html}var no=\"function\"==typeof setTimeout?setTimeout:void 0,oo=\"function\"==typeof clearTimeout?clearTimeout:void 0,io=\"function\"==typeof Promise?Promise:void 0,ao=\"function\"==typeof queueMicrotask?queueMicrotask:void 0!==io?function(e){return io.resolve(null).then(e).catch(co)}:no;function co(e){setTimeout((function(){throw e}))}function lo(e,t){var r=t,n=0;do{var o=r.nextSibling;if(e.removeChild(r),o&&8===o.nodeType)if(\"/$\"===(r=o.data)){if(0===n)return e.removeChild(o),void Zt(t);n--}else\"$\"!==r&&\"$?\"!==r&&\"$!\"!==r||n++;r=o}while(r);Zt(t)}function so(e){for(;null!=e;e=e.nextSibling){var t=e.nodeType;if(1===t||3===t)break;if(8===t){if(\"$\"===(t=e.data)||\"$!\"===t||\"$?\"===t)break;if(\"/$\"===t)return null}}return e}function uo(e){e=e.previousSibling;for(var t=0;e;){if(8===e.nodeType){var r=e.data;if(\"$\"===r||\"$!\"===r||\"$?\"===r){if(0===t)return e;t--}else\"/$\"===r&&t++}e=e.previousSibling}return null}var po=Math.random().toString(36).slice(2),fo=\"__reactFiber$\"+po,mo=\"__reactProps$\"+po,yo=\"__reactContainer$\"+po,ho=\"__reactEvents$\"+po,bo=\"__reactListeners$\"+po,vo=\"__reactHandles$\"+po;function go(e){var t=e[fo];if(t)return t;for(var r=e.parentNode;r;){if(t=r[yo]||r[fo]){if(r=t.alternate,null!==t.child||null!==r&&null!==r.child)for(e=uo(e);null!==e;){if(r=e[fo])return r;e=uo(e)}return t}r=(e=r).parentNode}return null}function _o(e){return!(e=e[fo]||e[yo])||5!==e.tag&&6!==e.tag&&13!==e.tag&&3!==e.tag?null:e}function wo(e){if(5===e.tag||6===e.tag)return e.stateNode;throw Error(i(33))}function xo(e){return e[mo]||null}var ko=[],No=-1;function Mo(e){return{current:e}}function jo(e){0>No||(e.current=ko[No],ko[No]=null,No--)}function So(e,t){No++,ko[No]=e.current,e.current=t}var Eo={},Lo=Mo(Eo),Oo=Mo(!1),Io=Eo;function Co(e,t){var r=e.type.contextTypes;if(!r)return Eo;var n=e.stateNode;if(n&&n.__reactInternalMemoizedUnmaskedChildContext===t)return n.__reactInternalMemoizedMaskedChildContext;var o,i={};for(o in r)i[o]=t[o];return n&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=i),i}function Po(e){return null!=(e=e.childContextTypes)}function Ao(){jo(Oo),jo(Lo)}function Do(e,t,r){if(Lo.current!==Eo)throw Error(i(168));So(Lo,t),So(Oo,r)}function To(e,t,r){var n=e.stateNode;if(t=t.childContextTypes,\"function\"!=typeof n.getChildContext)return r;for(var o in n=n.getChildContext())if(!(o in t))throw Error(i(108,Y(e)||\"Unknown\",o));return z({},r,n)}function zo(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Eo,Io=Lo.current,So(Lo,e),So(Oo,Oo.current),!0}function Bo(e,t,r){var n=e.stateNode;if(!n)throw Error(i(169));r?(e=To(e,t,Io),n.__reactInternalMemoizedMergedChildContext=e,jo(Oo),jo(Lo),So(Lo,e)):jo(Oo),So(Oo,r)}var Ro=null,Fo=!1,Uo=!1;function Zo(e){null===Ro?Ro=[e]:Ro.push(e)}function Yo(){if(!Uo&&null!==Ro){Uo=!0;var e=0,t=gt;try{var r=Ro;for(gt=1;e<r.length;e++){var n=r[e];do{n=n(!0)}while(null!==n)}Ro=null,Fo=!1}catch(t){throw null!==Ro&&(Ro=Ro.slice(e+1)),He(Je,Yo),t}finally{gt=t,Uo=!1}}return null}var Wo=[],Vo=0,Qo=null,Ho=0,Go=[],qo=0,$o=null,Xo=1,Ko=\"\";function Jo(e,t){Wo[Vo++]=Ho,Wo[Vo++]=Qo,Qo=e,Ho=t}function ei(e,t,r){Go[qo++]=Xo,Go[qo++]=Ko,Go[qo++]=$o,$o=e;var n=Xo;e=Ko;var o=32-at(n)-1;n&=~(1<<o),r+=1;var i=32-at(t)+o;if(30<i){var a=o-o%5;i=(n&(1<<a)-1).toString(32),n>>=a,o-=a,Xo=1<<32-at(t)+o|r<<o|n,Ko=i+e}else Xo=1<<i|r<<o|n,Ko=e}function ti(e){null!==e.return&&(Jo(e,1),ei(e,1,0))}function ri(e){for(;e===Qo;)Qo=Wo[--Vo],Wo[Vo]=null,Ho=Wo[--Vo],Wo[Vo]=null;for(;e===$o;)$o=Go[--qo],Go[qo]=null,Ko=Go[--qo],Go[qo]=null,Xo=Go[--qo],Go[qo]=null}var ni=null,oi=null,ii=!1,ai=null;function ci(e,t){var r=Cs(5,null,null,0);r.elementType=\"DELETED\",r.stateNode=t,r.return=e,null===(t=e.deletions)?(e.deletions=[r],e.flags|=16):t.push(r)}function li(e,t){switch(e.tag){case 5:var r=e.type;return null!==(t=1!==t.nodeType||r.toLowerCase()!==t.nodeName.toLowerCase()?null:t)&&(e.stateNode=t,ni=e,oi=so(t.firstChild),!0);case 6:return null!==(t=\"\"===e.pendingProps||3!==t.nodeType?null:t)&&(e.stateNode=t,ni=e,oi=null,!0);case 13:return null!==(t=8!==t.nodeType?null:t)&&(r=null!==$o?{id:Xo,overflow:Ko}:null,e.memoizedState={dehydrated:t,treeContext:r,retryLane:1073741824},(r=Cs(18,null,null,0)).stateNode=t,r.return=e,e.child=r,ni=e,oi=null,!0);default:return!1}}function si(e){return 0!=(1&e.mode)&&0==(128&e.flags)}function ui(e){if(ii){var t=oi;if(t){var r=t;if(!li(e,t)){if(si(e))throw Error(i(418));t=so(r.nextSibling);var n=ni;t&&li(e,t)?ci(n,r):(e.flags=-4097&e.flags|2,ii=!1,ni=e)}}else{if(si(e))throw Error(i(418));e.flags=-4097&e.flags|2,ii=!1,ni=e}}}function pi(e){for(e=e.return;null!==e&&5!==e.tag&&3!==e.tag&&13!==e.tag;)e=e.return;ni=e}function di(e){if(e!==ni)return!1;if(!ii)return pi(e),ii=!0,!1;var t;if((t=3!==e.tag)&&!(t=5!==e.tag)&&(t=\"head\"!==(t=e.type)&&\"body\"!==t&&!ro(e.type,e.memoizedProps)),t&&(t=oi)){if(si(e))throw fi(),Error(i(418));for(;t;)ci(e,t),t=so(t.nextSibling)}if(pi(e),13===e.tag){if(!(e=null!==(e=e.memoizedState)?e.dehydrated:null))throw Error(i(317));e:{for(e=e.nextSibling,t=0;e;){if(8===e.nodeType){var r=e.data;if(\"/$\"===r){if(0===t){oi=so(e.nextSibling);break e}t--}else\"$\"!==r&&\"$!\"!==r&&\"$?\"!==r||t++}e=e.nextSibling}oi=null}}else oi=ni?so(e.stateNode.nextSibling):null;return!0}function fi(){for(var e=oi;e;)e=so(e.nextSibling)}function mi(){oi=ni=null,ii=!1}function yi(e){null===ai?ai=[e]:ai.push(e)}var hi=_.ReactCurrentBatchConfig;function bi(e,t){if(e&&e.defaultProps){for(var r in t=z({},t),e=e.defaultProps)void 0===t[r]&&(t[r]=e[r]);return t}return t}var vi=Mo(null),gi=null,_i=null,wi=null;function xi(){wi=_i=gi=null}function ki(e){var t=vi.current;jo(vi),e._currentValue=t}function Ni(e,t,r){for(;null!==e;){var n=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,null!==n&&(n.childLanes|=t)):null!==n&&(n.childLanes&t)!==t&&(n.childLanes|=t),e===r)break;e=e.return}}function Mi(e,t){gi=e,wi=_i=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(_c=!0),e.firstContext=null)}function ji(e){var t=e._currentValue;if(wi!==e)if(e={context:e,memoizedValue:t,next:null},null===_i){if(null===gi)throw Error(i(308));_i=e,gi.dependencies={lanes:0,firstContext:e}}else _i=_i.next=e;return t}var Si=null;function Ei(e){null===Si?Si=[e]:Si.push(e)}function Li(e,t,r,n){var o=t.interleaved;return null===o?(r.next=r,Ei(t)):(r.next=o.next,o.next=r),t.interleaved=r,Oi(e,n)}function Oi(e,t){e.lanes|=t;var r=e.alternate;for(null!==r&&(r.lanes|=t),r=e,e=e.return;null!==e;)e.childLanes|=t,null!==(r=e.alternate)&&(r.childLanes|=t),r=e,e=e.return;return 3===r.tag?r.stateNode:null}var Ii=!1;function Ci(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Pi(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function Ai(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function Di(e,t,r){var n=e.updateQueue;if(null===n)return null;if(n=n.shared,0!=(2&Ll)){var o=n.pending;return null===o?t.next=t:(t.next=o.next,o.next=t),n.pending=t,Oi(e,r)}return null===(o=n.interleaved)?(t.next=t,Ei(n)):(t.next=o.next,o.next=t),n.interleaved=t,Oi(e,r)}function Ti(e,t,r){if(null!==(t=t.updateQueue)&&(t=t.shared,0!=(4194240&r))){var n=t.lanes;r|=n&=e.pendingLanes,t.lanes=r,vt(e,r)}}function zi(e,t){var r=e.updateQueue,n=e.alternate;if(null!==n&&r===(n=n.updateQueue)){var o=null,i=null;if(null!==(r=r.firstBaseUpdate)){do{var a={eventTime:r.eventTime,lane:r.lane,tag:r.tag,payload:r.payload,callback:r.callback,next:null};null===i?o=i=a:i=i.next=a,r=r.next}while(null!==r);null===i?o=i=t:i=i.next=t}else o=i=t;return r={baseState:n.baseState,firstBaseUpdate:o,lastBaseUpdate:i,shared:n.shared,effects:n.effects},void(e.updateQueue=r)}null===(e=r.lastBaseUpdate)?r.firstBaseUpdate=t:e.next=t,r.lastBaseUpdate=t}function Bi(e,t,r,n){var o=e.updateQueue;Ii=!1;var i=o.firstBaseUpdate,a=o.lastBaseUpdate,c=o.shared.pending;if(null!==c){o.shared.pending=null;var l=c,s=l.next;l.next=null,null===a?i=s:a.next=s,a=l;var u=e.alternate;null!==u&&((c=(u=u.updateQueue).lastBaseUpdate)!==a&&(null===c?u.firstBaseUpdate=s:c.next=s,u.lastBaseUpdate=l))}if(null!==i){var p=o.baseState;for(a=0,u=s=l=null,c=i;;){var d=c.lane,f=c.eventTime;if((n&d)===d){null!==u&&(u=u.next={eventTime:f,lane:0,tag:c.tag,payload:c.payload,callback:c.callback,next:null});e:{var m=e,y=c;switch(d=t,f=r,y.tag){case 1:if(\"function\"==typeof(m=y.payload)){p=m.call(f,p,d);break e}p=m;break e;case 3:m.flags=-65537&m.flags|128;case 0:if(null==(d=\"function\"==typeof(m=y.payload)?m.call(f,p,d):m))break e;p=z({},p,d);break e;case 2:Ii=!0}}null!==c.callback&&0!==c.lane&&(e.flags|=64,null===(d=o.effects)?o.effects=[c]:d.push(c))}else f={eventTime:f,lane:d,tag:c.tag,payload:c.payload,callback:c.callback,next:null},null===u?(s=u=f,l=p):u=u.next=f,a|=d;if(null===(c=c.next)){if(null===(c=o.shared.pending))break;c=(d=c).next,d.next=null,o.lastBaseUpdate=d,o.shared.pending=null}}if(null===u&&(l=p),o.baseState=l,o.firstBaseUpdate=s,o.lastBaseUpdate=u,null!==(t=o.shared.interleaved)){o=t;do{a|=o.lane,o=o.next}while(o!==t)}else null===i&&(o.shared.lanes=0);zl|=a,e.lanes=a,e.memoizedState=p}}function Ri(e,t,r){if(e=t.effects,t.effects=null,null!==e)for(t=0;t<e.length;t++){var n=e[t],o=n.callback;if(null!==o){if(n.callback=null,n=r,\"function\"!=typeof o)throw Error(i(191,o));o.call(n)}}}var Fi=(new n.Component).refs;function Ui(e,t,r,n){r=null==(r=r(n,t=e.memoizedState))?t:z({},t,r),e.memoizedState=r,0===e.lanes&&(e.updateQueue.baseState=r)}var Zi={isMounted:function(e){return!!(e=e._reactInternals)&&Ze(e)===e},enqueueSetState:function(e,t,r){e=e._reactInternals;var n=ts(),o=rs(e),i=Ai(n,o);i.payload=t,null!=r&&(i.callback=r),null!==(t=Di(e,i,o))&&(ns(t,e,o,n),Ti(t,e,o))},enqueueReplaceState:function(e,t,r){e=e._reactInternals;var n=ts(),o=rs(e),i=Ai(n,o);i.tag=1,i.payload=t,null!=r&&(i.callback=r),null!==(t=Di(e,i,o))&&(ns(t,e,o,n),Ti(t,e,o))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var r=ts(),n=rs(e),o=Ai(r,n);o.tag=2,null!=t&&(o.callback=t),null!==(t=Di(e,o,n))&&(ns(t,e,n,r),Ti(t,e,n))}};function Yi(e,t,r,n,o,i,a){return\"function\"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(n,i,a):!t.prototype||!t.prototype.isPureReactComponent||(!ln(r,n)||!ln(o,i))}function Wi(e,t,r){var n=!1,o=Eo,i=t.contextType;return\"object\"==typeof i&&null!==i?i=ji(i):(o=Po(t)?Io:Lo.current,i=(n=null!=(n=t.contextTypes))?Co(e,o):Eo),t=new t(r,i),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=Zi,e.stateNode=t,t._reactInternals=e,n&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=i),t}function Vi(e,t,r,n){e=t.state,\"function\"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(r,n),\"function\"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(r,n),t.state!==e&&Zi.enqueueReplaceState(t,t.state,null)}function Qi(e,t,r,n){var o=e.stateNode;o.props=r,o.state=e.memoizedState,o.refs=Fi,Ci(e);var i=t.contextType;\"object\"==typeof i&&null!==i?o.context=ji(i):(i=Po(t)?Io:Lo.current,o.context=Co(e,i)),o.state=e.memoizedState,\"function\"==typeof(i=t.getDerivedStateFromProps)&&(Ui(e,t,i,r),o.state=e.memoizedState),\"function\"==typeof t.getDerivedStateFromProps||\"function\"==typeof o.getSnapshotBeforeUpdate||\"function\"!=typeof o.UNSAFE_componentWillMount&&\"function\"!=typeof o.componentWillMount||(t=o.state,\"function\"==typeof o.componentWillMount&&o.componentWillMount(),\"function\"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&Zi.enqueueReplaceState(o,o.state,null),Bi(e,r,o,n),o.state=e.memoizedState),\"function\"==typeof o.componentDidMount&&(e.flags|=4194308)}function Hi(e,t,r){if(null!==(e=r.ref)&&\"function\"!=typeof e&&\"object\"!=typeof e){if(r._owner){if(r=r._owner){if(1!==r.tag)throw Error(i(309));var n=r.stateNode}if(!n)throw Error(i(147,e));var o=n,a=\"\"+e;return null!==t&&null!==t.ref&&\"function\"==typeof t.ref&&t.ref._stringRef===a?t.ref:(t=function(e){var t=o.refs;t===Fi&&(t=o.refs={}),null===e?delete t[a]:t[a]=e},t._stringRef=a,t)}if(\"string\"!=typeof e)throw Error(i(284));if(!r._owner)throw Error(i(290,e))}return e}function Gi(e,t){throw e=Object.prototype.toString.call(t),Error(i(31,\"[object Object]\"===e?\"object with keys {\"+Object.keys(t).join(\", \")+\"}\":e))}function qi(e){return(0,e._init)(e._payload)}function $i(e){function t(t,r){if(e){var n=t.deletions;null===n?(t.deletions=[r],t.flags|=16):n.push(r)}}function r(r,n){if(!e)return null;for(;null!==n;)t(r,n),n=n.sibling;return null}function n(e,t){for(e=new Map;null!==t;)null!==t.key?e.set(t.key,t):e.set(t.index,t),t=t.sibling;return e}function o(e,t){return(e=As(e,t)).index=0,e.sibling=null,e}function a(t,r,n){return t.index=n,e?null!==(n=t.alternate)?(n=n.index)<r?(t.flags|=2,r):n:(t.flags|=2,r):(t.flags|=1048576,r)}function c(t){return e&&null===t.alternate&&(t.flags|=2),t}function l(e,t,r,n){return null===t||6!==t.tag?((t=Bs(r,e.mode,n)).return=e,t):((t=o(t,r)).return=e,t)}function s(e,t,r,n){var i=r.type;return i===k?p(e,t,r.props.children,n,r.key):null!==t&&(t.elementType===i||\"object\"==typeof i&&null!==i&&i.$$typeof===C&&qi(i)===t.type)?((n=o(t,r.props)).ref=Hi(e,t,r),n.return=e,n):((n=Ds(r.type,r.key,r.props,null,e.mode,n)).ref=Hi(e,t,r),n.return=e,n)}function u(e,t,r,n){return null===t||4!==t.tag||t.stateNode.containerInfo!==r.containerInfo||t.stateNode.implementation!==r.implementation?((t=Rs(r,e.mode,n)).return=e,t):((t=o(t,r.children||[])).return=e,t)}function p(e,t,r,n,i){return null===t||7!==t.tag?((t=Ts(r,e.mode,n,i)).return=e,t):((t=o(t,r)).return=e,t)}function d(e,t,r){if(\"string\"==typeof t&&\"\"!==t||\"number\"==typeof t)return(t=Bs(\"\"+t,e.mode,r)).return=e,t;if(\"object\"==typeof t&&null!==t){switch(t.$$typeof){case w:return(r=Ds(t.type,t.key,t.props,null,e.mode,r)).ref=Hi(e,null,t),r.return=e,r;case x:return(t=Rs(t,e.mode,r)).return=e,t;case C:return d(e,(0,t._init)(t._payload),r)}if(te(t)||D(t))return(t=Ts(t,e.mode,r,null)).return=e,t;Gi(e,t)}return null}function f(e,t,r,n){var o=null!==t?t.key:null;if(\"string\"==typeof r&&\"\"!==r||\"number\"==typeof r)return null!==o?null:l(e,t,\"\"+r,n);if(\"object\"==typeof r&&null!==r){switch(r.$$typeof){case w:return r.key===o?s(e,t,r,n):null;case x:return r.key===o?u(e,t,r,n):null;case C:return f(e,t,(o=r._init)(r._payload),n)}if(te(r)||D(r))return null!==o?null:p(e,t,r,n,null);Gi(e,r)}return null}function m(e,t,r,n,o){if(\"string\"==typeof n&&\"\"!==n||\"number\"==typeof n)return l(t,e=e.get(r)||null,\"\"+n,o);if(\"object\"==typeof n&&null!==n){switch(n.$$typeof){case w:return s(t,e=e.get(null===n.key?r:n.key)||null,n,o);case x:return u(t,e=e.get(null===n.key?r:n.key)||null,n,o);case C:return m(e,t,r,(0,n._init)(n._payload),o)}if(te(n)||D(n))return p(t,e=e.get(r)||null,n,o,null);Gi(t,n)}return null}function y(o,i,c,l){for(var s=null,u=null,p=i,y=i=0,h=null;null!==p&&y<c.length;y++){p.index>y?(h=p,p=null):h=p.sibling;var b=f(o,p,c[y],l);if(null===b){null===p&&(p=h);break}e&&p&&null===b.alternate&&t(o,p),i=a(b,i,y),null===u?s=b:u.sibling=b,u=b,p=h}if(y===c.length)return r(o,p),ii&&Jo(o,y),s;if(null===p){for(;y<c.length;y++)null!==(p=d(o,c[y],l))&&(i=a(p,i,y),null===u?s=p:u.sibling=p,u=p);return ii&&Jo(o,y),s}for(p=n(o,p);y<c.length;y++)null!==(h=m(p,o,y,c[y],l))&&(e&&null!==h.alternate&&p.delete(null===h.key?y:h.key),i=a(h,i,y),null===u?s=h:u.sibling=h,u=h);return e&&p.forEach((function(e){return t(o,e)})),ii&&Jo(o,y),s}function h(o,c,l,s){var u=D(l);if(\"function\"!=typeof u)throw Error(i(150));if(null==(l=u.call(l)))throw Error(i(151));for(var p=u=null,y=c,h=c=0,b=null,v=l.next();null!==y&&!v.done;h++,v=l.next()){y.index>h?(b=y,y=null):b=y.sibling;var g=f(o,y,v.value,s);if(null===g){null===y&&(y=b);break}e&&y&&null===g.alternate&&t(o,y),c=a(g,c,h),null===p?u=g:p.sibling=g,p=g,y=b}if(v.done)return r(o,y),ii&&Jo(o,h),u;if(null===y){for(;!v.done;h++,v=l.next())null!==(v=d(o,v.value,s))&&(c=a(v,c,h),null===p?u=v:p.sibling=v,p=v);return ii&&Jo(o,h),u}for(y=n(o,y);!v.done;h++,v=l.next())null!==(v=m(y,o,h,v.value,s))&&(e&&null!==v.alternate&&y.delete(null===v.key?h:v.key),c=a(v,c,h),null===p?u=v:p.sibling=v,p=v);return e&&y.forEach((function(e){return t(o,e)})),ii&&Jo(o,h),u}return function e(n,i,a,l){if(\"object\"==typeof a&&null!==a&&a.type===k&&null===a.key&&(a=a.props.children),\"object\"==typeof a&&null!==a){switch(a.$$typeof){case w:e:{for(var s=a.key,u=i;null!==u;){if(u.key===s){if((s=a.type)===k){if(7===u.tag){r(n,u.sibling),(i=o(u,a.props.children)).return=n,n=i;break e}}else if(u.elementType===s||\"object\"==typeof s&&null!==s&&s.$$typeof===C&&qi(s)===u.type){r(n,u.sibling),(i=o(u,a.props)).ref=Hi(n,u,a),i.return=n,n=i;break e}r(n,u);break}t(n,u),u=u.sibling}a.type===k?((i=Ts(a.props.children,n.mode,l,a.key)).return=n,n=i):((l=Ds(a.type,a.key,a.props,null,n.mode,l)).ref=Hi(n,i,a),l.return=n,n=l)}return c(n);case x:e:{for(u=a.key;null!==i;){if(i.key===u){if(4===i.tag&&i.stateNode.containerInfo===a.containerInfo&&i.stateNode.implementation===a.implementation){r(n,i.sibling),(i=o(i,a.children||[])).return=n,n=i;break e}r(n,i);break}t(n,i),i=i.sibling}(i=Rs(a,n.mode,l)).return=n,n=i}return c(n);case C:return e(n,i,(u=a._init)(a._payload),l)}if(te(a))return y(n,i,a,l);if(D(a))return h(n,i,a,l);Gi(n,a)}return\"string\"==typeof a&&\"\"!==a||\"number\"==typeof a?(a=\"\"+a,null!==i&&6===i.tag?(r(n,i.sibling),(i=o(i,a)).return=n,n=i):(r(n,i),(i=Bs(a,n.mode,l)).return=n,n=i),c(n)):r(n,i)}}var Xi=$i(!0),Ki=$i(!1),Ji={},ea=Mo(Ji),ta=Mo(Ji),ra=Mo(Ji);function na(e){if(e===Ji)throw Error(i(174));return e}function oa(e,t){switch(So(ra,t),So(ta,e),So(ea,Ji),e=t.nodeType){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:le(null,\"\");break;default:t=le(t=(e=8===e?t.parentNode:t).namespaceURI||null,e=e.tagName)}jo(ea),So(ea,t)}function ia(){jo(ea),jo(ta),jo(ra)}function aa(e){na(ra.current);var t=na(ea.current),r=le(t,e.type);t!==r&&(So(ta,e),So(ea,r))}function ca(e){ta.current===e&&(jo(ea),jo(ta))}var la=Mo(0);function sa(e){for(var t=e;null!==t;){if(13===t.tag){var r=t.memoizedState;if(null!==r&&(null===(r=r.dehydrated)||\"$?\"===r.data||\"$!\"===r.data))return t}else if(19===t.tag&&void 0!==t.memoizedProps.revealOrder){if(0!=(128&t.flags))return t}else if(null!==t.child){t.child.return=t,t=t.child;continue}if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var ua=[];function pa(){for(var e=0;e<ua.length;e++)ua[e]._workInProgressVersionPrimary=null;ua.length=0}var da=_.ReactCurrentDispatcher,fa=_.ReactCurrentBatchConfig,ma=0,ya=null,ha=null,ba=null,va=!1,ga=!1,_a=0,wa=0;function xa(){throw Error(i(321))}function ka(e,t){if(null===t)return!1;for(var r=0;r<t.length&&r<e.length;r++)if(!cn(e[r],t[r]))return!1;return!0}function Na(e,t,r,n,o,a){if(ma=a,ya=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,da.current=null===e||null===e.memoizedState?cc:lc,e=r(n,o),ga){a=0;do{if(ga=!1,_a=0,25<=a)throw Error(i(301));a+=1,ba=ha=null,t.updateQueue=null,da.current=sc,e=r(n,o)}while(ga)}if(da.current=ac,t=null!==ha&&null!==ha.next,ma=0,ba=ha=ya=null,va=!1,t)throw Error(i(300));return e}function Ma(){var e=0!==_a;return _a=0,e}function ja(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return null===ba?ya.memoizedState=ba=e:ba=ba.next=e,ba}function Sa(){if(null===ha){var e=ya.alternate;e=null!==e?e.memoizedState:null}else e=ha.next;var t=null===ba?ya.memoizedState:ba.next;if(null!==t)ba=t,ha=e;else{if(null===e)throw Error(i(310));e={memoizedState:(ha=e).memoizedState,baseState:ha.baseState,baseQueue:ha.baseQueue,queue:ha.queue,next:null},null===ba?ya.memoizedState=ba=e:ba=ba.next=e}return ba}function Ea(e,t){return\"function\"==typeof t?t(e):t}function La(e){var t=Sa(),r=t.queue;if(null===r)throw Error(i(311));r.lastRenderedReducer=e;var n=ha,o=n.baseQueue,a=r.pending;if(null!==a){if(null!==o){var c=o.next;o.next=a.next,a.next=c}n.baseQueue=o=a,r.pending=null}if(null!==o){a=o.next,n=n.baseState;var l=c=null,s=null,u=a;do{var p=u.lane;if((ma&p)===p)null!==s&&(s=s.next={lane:0,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null}),n=u.hasEagerState?u.eagerState:e(n,u.action);else{var d={lane:p,action:u.action,hasEagerState:u.hasEagerState,eagerState:u.eagerState,next:null};null===s?(l=s=d,c=n):s=s.next=d,ya.lanes|=p,zl|=p}u=u.next}while(null!==u&&u!==a);null===s?c=n:s.next=l,cn(n,t.memoizedState)||(_c=!0),t.memoizedState=n,t.baseState=c,t.baseQueue=s,r.lastRenderedState=n}if(null!==(e=r.interleaved)){o=e;do{a=o.lane,ya.lanes|=a,zl|=a,o=o.next}while(o!==e)}else null===o&&(r.lanes=0);return[t.memoizedState,r.dispatch]}function Oa(e){var t=Sa(),r=t.queue;if(null===r)throw Error(i(311));r.lastRenderedReducer=e;var n=r.dispatch,o=r.pending,a=t.memoizedState;if(null!==o){r.pending=null;var c=o=o.next;do{a=e(a,c.action),c=c.next}while(c!==o);cn(a,t.memoizedState)||(_c=!0),t.memoizedState=a,null===t.baseQueue&&(t.baseState=a),r.lastRenderedState=a}return[a,n]}function Ia(){}function Ca(e,t){var r=ya,n=Sa(),o=t(),a=!cn(n.memoizedState,o);if(a&&(n.memoizedState=o,_c=!0),n=n.queue,Wa(Da.bind(null,r,n,e),[e]),n.getSnapshot!==t||a||null!==ba&&1&ba.memoizedState.tag){if(r.flags|=2048,Ra(9,Aa.bind(null,r,n,o,t),void 0,null),null===Ol)throw Error(i(349));0!=(30&ma)||Pa(r,t,o)}return o}function Pa(e,t,r){e.flags|=16384,e={getSnapshot:t,value:r},null===(t=ya.updateQueue)?(t={lastEffect:null,stores:null},ya.updateQueue=t,t.stores=[e]):null===(r=t.stores)?t.stores=[e]:r.push(e)}function Aa(e,t,r,n){t.value=r,t.getSnapshot=n,Ta(t)&&za(e)}function Da(e,t,r){return r((function(){Ta(t)&&za(e)}))}function Ta(e){var t=e.getSnapshot;e=e.value;try{var r=t();return!cn(e,r)}catch(e){return!0}}function za(e){var t=Oi(e,1);null!==t&&ns(t,e,1,-1)}function Ba(e){var t=ja();return\"function\"==typeof e&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:Ea,lastRenderedState:e},t.queue=e,e=e.dispatch=rc.bind(null,ya,e),[t.memoizedState,e]}function Ra(e,t,r,n){return e={tag:e,create:t,destroy:r,deps:n,next:null},null===(t=ya.updateQueue)?(t={lastEffect:null,stores:null},ya.updateQueue=t,t.lastEffect=e.next=e):null===(r=t.lastEffect)?t.lastEffect=e.next=e:(n=r.next,r.next=e,e.next=n,t.lastEffect=e),e}function Fa(){return Sa().memoizedState}function Ua(e,t,r,n){var o=ja();ya.flags|=e,o.memoizedState=Ra(1|t,r,void 0,void 0===n?null:n)}function Za(e,t,r,n){var o=Sa();n=void 0===n?null:n;var i=void 0;if(null!==ha){var a=ha.memoizedState;if(i=a.destroy,null!==n&&ka(n,a.deps))return void(o.memoizedState=Ra(t,r,i,n))}ya.flags|=e,o.memoizedState=Ra(1|t,r,i,n)}function Ya(e,t){return Ua(8390656,8,e,t)}function Wa(e,t){return Za(2048,8,e,t)}function Va(e,t){return Za(4,2,e,t)}function Qa(e,t){return Za(4,4,e,t)}function Ha(e,t){return\"function\"==typeof t?(e=e(),t(e),function(){t(null)}):null!=t?(e=e(),t.current=e,function(){t.current=null}):void 0}function Ga(e,t,r){return r=null!=r?r.concat([e]):null,Za(4,4,Ha.bind(null,t,e),r)}function qa(){}function $a(e,t){var r=Sa();t=void 0===t?null:t;var n=r.memoizedState;return null!==n&&null!==t&&ka(t,n[1])?n[0]:(r.memoizedState=[e,t],e)}function Xa(e,t){var r=Sa();t=void 0===t?null:t;var n=r.memoizedState;return null!==n&&null!==t&&ka(t,n[1])?n[0]:(e=e(),r.memoizedState=[e,t],e)}function Ka(e,t,r){return 0==(21&ma)?(e.baseState&&(e.baseState=!1,_c=!0),e.memoizedState=r):(cn(r,t)||(r=yt(),ya.lanes|=r,zl|=r,e.baseState=!0),t)}function Ja(e,t){var r=gt;gt=0!==r&&4>r?r:4,e(!0);var n=fa.transition;fa.transition={};try{e(!1),t()}finally{gt=r,fa.transition=n}}function ec(){return Sa().memoizedState}function tc(e,t,r){var n=rs(e);if(r={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null},nc(e))oc(t,r);else if(null!==(r=Li(e,t,r,n))){ns(r,e,n,ts()),ic(r,t,n)}}function rc(e,t,r){var n=rs(e),o={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null};if(nc(e))oc(t,o);else{var i=e.alternate;if(0===e.lanes&&(null===i||0===i.lanes)&&null!==(i=t.lastRenderedReducer))try{var a=t.lastRenderedState,c=i(a,r);if(o.hasEagerState=!0,o.eagerState=c,cn(c,a)){var l=t.interleaved;return null===l?(o.next=o,Ei(t)):(o.next=l.next,l.next=o),void(t.interleaved=o)}}catch(e){}null!==(r=Li(e,t,o,n))&&(ns(r,e,n,o=ts()),ic(r,t,n))}}function nc(e){var t=e.alternate;return e===ya||null!==t&&t===ya}function oc(e,t){ga=va=!0;var r=e.pending;null===r?t.next=t:(t.next=r.next,r.next=t),e.pending=t}function ic(e,t,r){if(0!=(4194240&r)){var n=t.lanes;r|=n&=e.pendingLanes,t.lanes=r,vt(e,r)}}var ac={readContext:ji,useCallback:xa,useContext:xa,useEffect:xa,useImperativeHandle:xa,useInsertionEffect:xa,useLayoutEffect:xa,useMemo:xa,useReducer:xa,useRef:xa,useState:xa,useDebugValue:xa,useDeferredValue:xa,useTransition:xa,useMutableSource:xa,useSyncExternalStore:xa,useId:xa,unstable_isNewReconciler:!1},cc={readContext:ji,useCallback:function(e,t){return ja().memoizedState=[e,void 0===t?null:t],e},useContext:ji,useEffect:Ya,useImperativeHandle:function(e,t,r){return r=null!=r?r.concat([e]):null,Ua(4194308,4,Ha.bind(null,t,e),r)},useLayoutEffect:function(e,t){return Ua(4194308,4,e,t)},useInsertionEffect:function(e,t){return Ua(4,2,e,t)},useMemo:function(e,t){var r=ja();return t=void 0===t?null:t,e=e(),r.memoizedState=[e,t],e},useReducer:function(e,t,r){var n=ja();return t=void 0!==r?r(t):t,n.memoizedState=n.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},n.queue=e,e=e.dispatch=tc.bind(null,ya,e),[n.memoizedState,e]},useRef:function(e){return e={current:e},ja().memoizedState=e},useState:Ba,useDebugValue:qa,useDeferredValue:function(e){return ja().memoizedState=e},useTransition:function(){var e=Ba(!1),t=e[0];return e=Ja.bind(null,e[1]),ja().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,r){var n=ya,o=ja();if(ii){if(void 0===r)throw Error(i(407));r=r()}else{if(r=t(),null===Ol)throw Error(i(349));0!=(30&ma)||Pa(n,t,r)}o.memoizedState=r;var a={value:r,getSnapshot:t};return o.queue=a,Ya(Da.bind(null,n,a,e),[e]),n.flags|=2048,Ra(9,Aa.bind(null,n,a,r,t),void 0,null),r},useId:function(){var e=ja(),t=Ol.identifierPrefix;if(ii){var r=Ko;t=\":\"+t+\"R\"+(r=(Xo&~(1<<32-at(Xo)-1)).toString(32)+r),0<(r=_a++)&&(t+=\"H\"+r.toString(32)),t+=\":\"}else t=\":\"+t+\"r\"+(r=wa++).toString(32)+\":\";return e.memoizedState=t},unstable_isNewReconciler:!1},lc={readContext:ji,useCallback:$a,useContext:ji,useEffect:Wa,useImperativeHandle:Ga,useInsertionEffect:Va,useLayoutEffect:Qa,useMemo:Xa,useReducer:La,useRef:Fa,useState:function(){return La(Ea)},useDebugValue:qa,useDeferredValue:function(e){return Ka(Sa(),ha.memoizedState,e)},useTransition:function(){return[La(Ea)[0],Sa().memoizedState]},useMutableSource:Ia,useSyncExternalStore:Ca,useId:ec,unstable_isNewReconciler:!1},sc={readContext:ji,useCallback:$a,useContext:ji,useEffect:Wa,useImperativeHandle:Ga,useInsertionEffect:Va,useLayoutEffect:Qa,useMemo:Xa,useReducer:Oa,useRef:Fa,useState:function(){return Oa(Ea)},useDebugValue:qa,useDeferredValue:function(e){var t=Sa();return null===ha?t.memoizedState=e:Ka(t,ha.memoizedState,e)},useTransition:function(){return[Oa(Ea)[0],Sa().memoizedState]},useMutableSource:Ia,useSyncExternalStore:Ca,useId:ec,unstable_isNewReconciler:!1};function uc(e,t){try{var r=\"\",n=t;do{r+=U(n),n=n.return}while(n);var o=r}catch(e){o=\"\\nError generating stack: \"+e.message+\"\\n\"+e.stack}return{value:e,source:t,stack:o,digest:null}}function pc(e,t,r){return{value:e,source:null,stack:null!=r?r:null,digest:null!=t?t:null}}function dc(e,t){try{console.error(t.value)}catch(e){setTimeout((function(){throw e}))}}var fc=\"function\"==typeof WeakMap?WeakMap:Map;function mc(e,t,r){(r=Ai(-1,r)).tag=3,r.payload={element:null};var n=t.value;return r.callback=function(){Vl||(Vl=!0,Ql=n),dc(0,t)},r}function yc(e,t,r){(r=Ai(-1,r)).tag=3;var n=e.type.getDerivedStateFromError;if(\"function\"==typeof n){var o=t.value;r.payload=function(){return n(o)},r.callback=function(){dc(0,t)}}var i=e.stateNode;return null!==i&&\"function\"==typeof i.componentDidCatch&&(r.callback=function(){dc(0,t),\"function\"!=typeof n&&(null===Hl?Hl=new Set([this]):Hl.add(this));var e=t.stack;this.componentDidCatch(t.value,{componentStack:null!==e?e:\"\"})}),r}function hc(e,t,r){var n=e.pingCache;if(null===n){n=e.pingCache=new fc;var o=new Set;n.set(t,o)}else void 0===(o=n.get(t))&&(o=new Set,n.set(t,o));o.has(r)||(o.add(r),e=js.bind(null,e,t,r),t.then(e,e))}function bc(e){do{var t;if((t=13===e.tag)&&(t=null===(t=e.memoizedState)||null!==t.dehydrated),t)return e;e=e.return}while(null!==e);return null}function vc(e,t,r,n,o){return 0==(1&e.mode)?(e===t?e.flags|=65536:(e.flags|=128,r.flags|=131072,r.flags&=-52805,1===r.tag&&(null===r.alternate?r.tag=17:((t=Ai(-1,1)).tag=2,Di(r,t,1))),r.lanes|=1),e):(e.flags|=65536,e.lanes=o,e)}var gc=_.ReactCurrentOwner,_c=!1;function wc(e,t,r,n){t.child=null===e?Ki(t,null,r,n):Xi(t,e.child,r,n)}function xc(e,t,r,n,o){r=r.render;var i=t.ref;return Mi(t,o),n=Na(e,t,r,n,i,o),r=Ma(),null===e||_c?(ii&&r&&ti(t),t.flags|=1,wc(e,t,n,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,Vc(e,t,o))}function kc(e,t,r,n,o){if(null===e){var i=r.type;return\"function\"!=typeof i||Ps(i)||void 0!==i.defaultProps||null!==r.compare||void 0!==r.defaultProps?((e=Ds(r.type,null,n,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=i,Nc(e,t,i,n,o))}if(i=e.child,0==(e.lanes&o)){var a=i.memoizedProps;if((r=null!==(r=r.compare)?r:ln)(a,n)&&e.ref===t.ref)return Vc(e,t,o)}return t.flags|=1,(e=As(i,n)).ref=t.ref,e.return=t,t.child=e}function Nc(e,t,r,n,o){if(null!==e){var i=e.memoizedProps;if(ln(i,n)&&e.ref===t.ref){if(_c=!1,t.pendingProps=n=i,0==(e.lanes&o))return t.lanes=e.lanes,Vc(e,t,o);0!=(131072&e.flags)&&(_c=!0)}}return Sc(e,t,r,n,o)}function Mc(e,t,r){var n=t.pendingProps,o=n.children,i=null!==e?e.memoizedState:null;if(\"hidden\"===n.mode)if(0==(1&t.mode))t.memoizedState={baseLanes:0,cachePool:null,transitions:null},So(Al,Pl),Pl|=r;else{if(0==(1073741824&r))return e=null!==i?i.baseLanes|r:r,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,So(Al,Pl),Pl|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},n=null!==i?i.baseLanes:r,So(Al,Pl),Pl|=n}else null!==i?(n=i.baseLanes|r,t.memoizedState=null):n=r,So(Al,Pl),Pl|=n;return wc(e,t,o,r),t.child}function jc(e,t){var r=t.ref;(null===e&&null!==r||null!==e&&e.ref!==r)&&(t.flags|=512,t.flags|=2097152)}function Sc(e,t,r,n,o){var i=Po(r)?Io:Lo.current;return i=Co(t,i),Mi(t,o),r=Na(e,t,r,n,i,o),n=Ma(),null===e||_c?(ii&&n&&ti(t),t.flags|=1,wc(e,t,r,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,Vc(e,t,o))}function Ec(e,t,r,n,o){if(Po(r)){var i=!0;zo(t)}else i=!1;if(Mi(t,o),null===t.stateNode)Wc(e,t),Wi(t,r,n),Qi(t,r,n,o),n=!0;else if(null===e){var a=t.stateNode,c=t.memoizedProps;a.props=c;var l=a.context,s=r.contextType;\"object\"==typeof s&&null!==s?s=ji(s):s=Co(t,s=Po(r)?Io:Lo.current);var u=r.getDerivedStateFromProps,p=\"function\"==typeof u||\"function\"==typeof a.getSnapshotBeforeUpdate;p||\"function\"!=typeof a.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof a.componentWillReceiveProps||(c!==n||l!==s)&&Vi(t,a,n,s),Ii=!1;var d=t.memoizedState;a.state=d,Bi(t,n,a,o),l=t.memoizedState,c!==n||d!==l||Oo.current||Ii?(\"function\"==typeof u&&(Ui(t,r,u,n),l=t.memoizedState),(c=Ii||Yi(t,r,c,n,d,l,s))?(p||\"function\"!=typeof a.UNSAFE_componentWillMount&&\"function\"!=typeof a.componentWillMount||(\"function\"==typeof a.componentWillMount&&a.componentWillMount(),\"function\"==typeof a.UNSAFE_componentWillMount&&a.UNSAFE_componentWillMount()),\"function\"==typeof a.componentDidMount&&(t.flags|=4194308)):(\"function\"==typeof a.componentDidMount&&(t.flags|=4194308),t.memoizedProps=n,t.memoizedState=l),a.props=n,a.state=l,a.context=s,n=c):(\"function\"==typeof a.componentDidMount&&(t.flags|=4194308),n=!1)}else{a=t.stateNode,Pi(e,t),c=t.memoizedProps,s=t.type===t.elementType?c:bi(t.type,c),a.props=s,p=t.pendingProps,d=a.context,\"object\"==typeof(l=r.contextType)&&null!==l?l=ji(l):l=Co(t,l=Po(r)?Io:Lo.current);var f=r.getDerivedStateFromProps;(u=\"function\"==typeof f||\"function\"==typeof a.getSnapshotBeforeUpdate)||\"function\"!=typeof a.UNSAFE_componentWillReceiveProps&&\"function\"!=typeof a.componentWillReceiveProps||(c!==p||d!==l)&&Vi(t,a,n,l),Ii=!1,d=t.memoizedState,a.state=d,Bi(t,n,a,o);var m=t.memoizedState;c!==p||d!==m||Oo.current||Ii?(\"function\"==typeof f&&(Ui(t,r,f,n),m=t.memoizedState),(s=Ii||Yi(t,r,s,n,d,m,l)||!1)?(u||\"function\"!=typeof a.UNSAFE_componentWillUpdate&&\"function\"!=typeof a.componentWillUpdate||(\"function\"==typeof a.componentWillUpdate&&a.componentWillUpdate(n,m,l),\"function\"==typeof a.UNSAFE_componentWillUpdate&&a.UNSAFE_componentWillUpdate(n,m,l)),\"function\"==typeof a.componentDidUpdate&&(t.flags|=4),\"function\"==typeof a.getSnapshotBeforeUpdate&&(t.flags|=1024)):(\"function\"!=typeof a.componentDidUpdate||c===e.memoizedProps&&d===e.memoizedState||(t.flags|=4),\"function\"!=typeof a.getSnapshotBeforeUpdate||c===e.memoizedProps&&d===e.memoizedState||(t.flags|=1024),t.memoizedProps=n,t.memoizedState=m),a.props=n,a.state=m,a.context=l,n=s):(\"function\"!=typeof a.componentDidUpdate||c===e.memoizedProps&&d===e.memoizedState||(t.flags|=4),\"function\"!=typeof a.getSnapshotBeforeUpdate||c===e.memoizedProps&&d===e.memoizedState||(t.flags|=1024),n=!1)}return Lc(e,t,r,n,i,o)}function Lc(e,t,r,n,o,i){jc(e,t);var a=0!=(128&t.flags);if(!n&&!a)return o&&Bo(t,r,!1),Vc(e,t,i);n=t.stateNode,gc.current=t;var c=a&&\"function\"!=typeof r.getDerivedStateFromError?null:n.render();return t.flags|=1,null!==e&&a?(t.child=Xi(t,e.child,null,i),t.child=Xi(t,null,c,i)):wc(e,t,c,i),t.memoizedState=n.state,o&&Bo(t,r,!0),t.child}function Oc(e){var t=e.stateNode;t.pendingContext?Do(0,t.pendingContext,t.pendingContext!==t.context):t.context&&Do(0,t.context,!1),oa(e,t.containerInfo)}function Ic(e,t,r,n,o){return mi(),yi(o),t.flags|=256,wc(e,t,r,n),t.child}var Cc,Pc,Ac,Dc,Tc={dehydrated:null,treeContext:null,retryLane:0};function zc(e){return{baseLanes:e,cachePool:null,transitions:null}}function Bc(e,t,r){var n,o=t.pendingProps,a=la.current,c=!1,l=0!=(128&t.flags);if((n=l)||(n=(null===e||null!==e.memoizedState)&&0!=(2&a)),n?(c=!0,t.flags&=-129):null!==e&&null===e.memoizedState||(a|=1),So(la,1&a),null===e)return ui(t),null!==(e=t.memoizedState)&&null!==(e=e.dehydrated)?(0==(1&t.mode)?t.lanes=1:\"$!\"===e.data?t.lanes=8:t.lanes=1073741824,null):(l=o.children,e=o.fallback,c?(o=t.mode,c=t.child,l={mode:\"hidden\",children:l},0==(1&o)&&null!==c?(c.childLanes=0,c.pendingProps=l):c=zs(l,o,0,null),e=Ts(e,o,r,null),c.return=t,e.return=t,c.sibling=e,t.child=c,t.child.memoizedState=zc(r),t.memoizedState=Tc,e):Rc(t,l));if(null!==(a=e.memoizedState)&&null!==(n=a.dehydrated))return function(e,t,r,n,o,a,c){if(r)return 256&t.flags?(t.flags&=-257,Fc(e,t,c,n=pc(Error(i(422))))):null!==t.memoizedState?(t.child=e.child,t.flags|=128,null):(a=n.fallback,o=t.mode,n=zs({mode:\"visible\",children:n.children},o,0,null),(a=Ts(a,o,c,null)).flags|=2,n.return=t,a.return=t,n.sibling=a,t.child=n,0!=(1&t.mode)&&Xi(t,e.child,null,c),t.child.memoizedState=zc(c),t.memoizedState=Tc,a);if(0==(1&t.mode))return Fc(e,t,c,null);if(\"$!\"===o.data){if(n=o.nextSibling&&o.nextSibling.dataset)var l=n.dgst;return n=l,Fc(e,t,c,n=pc(a=Error(i(419)),n,void 0))}if(l=0!=(c&e.childLanes),_c||l){if(null!==(n=Ol)){switch(c&-c){case 4:o=2;break;case 16:o=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:o=32;break;case 536870912:o=268435456;break;default:o=0}0!==(o=0!=(o&(n.suspendedLanes|c))?0:o)&&o!==a.retryLane&&(a.retryLane=o,Oi(e,o),ns(n,e,o,-1))}return hs(),Fc(e,t,c,n=pc(Error(i(421))))}return\"$?\"===o.data?(t.flags|=128,t.child=e.child,t=Es.bind(null,e),o._reactRetry=t,null):(e=a.treeContext,oi=so(o.nextSibling),ni=t,ii=!0,ai=null,null!==e&&(Go[qo++]=Xo,Go[qo++]=Ko,Go[qo++]=$o,Xo=e.id,Ko=e.overflow,$o=t),t=Rc(t,n.children),t.flags|=4096,t)}(e,t,l,o,n,a,r);if(c){c=o.fallback,l=t.mode,n=(a=e.child).sibling;var s={mode:\"hidden\",children:o.children};return 0==(1&l)&&t.child!==a?((o=t.child).childLanes=0,o.pendingProps=s,t.deletions=null):(o=As(a,s)).subtreeFlags=14680064&a.subtreeFlags,null!==n?c=As(n,c):(c=Ts(c,l,r,null)).flags|=2,c.return=t,o.return=t,o.sibling=c,t.child=o,o=c,c=t.child,l=null===(l=e.child.memoizedState)?zc(r):{baseLanes:l.baseLanes|r,cachePool:null,transitions:l.transitions},c.memoizedState=l,c.childLanes=e.childLanes&~r,t.memoizedState=Tc,o}return e=(c=e.child).sibling,o=As(c,{mode:\"visible\",children:o.children}),0==(1&t.mode)&&(o.lanes=r),o.return=t,o.sibling=null,null!==e&&(null===(r=t.deletions)?(t.deletions=[e],t.flags|=16):r.push(e)),t.child=o,t.memoizedState=null,o}function Rc(e,t){return(t=zs({mode:\"visible\",children:t},e.mode,0,null)).return=e,e.child=t}function Fc(e,t,r,n){return null!==n&&yi(n),Xi(t,e.child,null,r),(e=Rc(t,t.pendingProps.children)).flags|=2,t.memoizedState=null,e}function Uc(e,t,r){e.lanes|=t;var n=e.alternate;null!==n&&(n.lanes|=t),Ni(e.return,t,r)}function Zc(e,t,r,n,o){var i=e.memoizedState;null===i?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:n,tail:r,tailMode:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=n,i.tail=r,i.tailMode=o)}function Yc(e,t,r){var n=t.pendingProps,o=n.revealOrder,i=n.tail;if(wc(e,t,n.children,r),0!=(2&(n=la.current)))n=1&n|2,t.flags|=128;else{if(null!==e&&0!=(128&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&Uc(e,r,t);else if(19===e.tag)Uc(e,r,t);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}n&=1}if(So(la,n),0==(1&t.mode))t.memoizedState=null;else switch(o){case\"forwards\":for(r=t.child,o=null;null!==r;)null!==(e=r.alternate)&&null===sa(e)&&(o=r),r=r.sibling;null===(r=o)?(o=t.child,t.child=null):(o=r.sibling,r.sibling=null),Zc(t,!1,o,r,i);break;case\"backwards\":for(r=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===sa(e)){t.child=o;break}e=o.sibling,o.sibling=r,r=o,o=e}Zc(t,!0,r,null,i);break;case\"together\":Zc(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function Wc(e,t){0==(1&t.mode)&&null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2)}function Vc(e,t,r){if(null!==e&&(t.dependencies=e.dependencies),zl|=t.lanes,0==(r&t.childLanes))return null;if(null!==e&&t.child!==e.child)throw Error(i(153));if(null!==t.child){for(r=As(e=t.child,e.pendingProps),t.child=r,r.return=t;null!==e.sibling;)e=e.sibling,(r=r.sibling=As(e,e.pendingProps)).return=t;r.sibling=null}return t.child}function Qc(e,t){if(!ii)switch(e.tailMode){case\"hidden\":t=e.tail;for(var r=null;null!==t;)null!==t.alternate&&(r=t),t=t.sibling;null===r?e.tail=null:r.sibling=null;break;case\"collapsed\":r=e.tail;for(var n=null;null!==r;)null!==r.alternate&&(n=r),r=r.sibling;null===n?t||null===e.tail?e.tail=null:e.tail.sibling=null:n.sibling=null}}function Hc(e){var t=null!==e.alternate&&e.alternate.child===e.child,r=0,n=0;if(t)for(var o=e.child;null!==o;)r|=o.lanes|o.childLanes,n|=14680064&o.subtreeFlags,n|=14680064&o.flags,o.return=e,o=o.sibling;else for(o=e.child;null!==o;)r|=o.lanes|o.childLanes,n|=o.subtreeFlags,n|=o.flags,o.return=e,o=o.sibling;return e.subtreeFlags|=n,e.childLanes=r,t}function Gc(e,t,r){var n=t.pendingProps;switch(ri(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return Hc(t),null;case 1:case 17:return Po(t.type)&&Ao(),Hc(t),null;case 3:return n=t.stateNode,ia(),jo(Oo),jo(Lo),pa(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),null!==e&&null!==e.child||(di(t)?t.flags|=4:null===e||e.memoizedState.isDehydrated&&0==(256&t.flags)||(t.flags|=1024,null!==ai&&(cs(ai),ai=null))),Pc(e,t),Hc(t),null;case 5:ca(t);var o=na(ra.current);if(r=t.type,null!==e&&null!=t.stateNode)Ac(e,t,r,n,o),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!n){if(null===t.stateNode)throw Error(i(166));return Hc(t),null}if(e=na(ea.current),di(t)){n=t.stateNode,r=t.type;var a=t.memoizedProps;switch(n[fo]=t,n[mo]=a,e=0!=(1&t.mode),r){case\"dialog\":Rn(\"cancel\",n),Rn(\"close\",n);break;case\"iframe\":case\"object\":case\"embed\":Rn(\"load\",n);break;case\"video\":case\"audio\":for(o=0;o<Dn.length;o++)Rn(Dn[o],n);break;case\"source\":Rn(\"error\",n);break;case\"img\":case\"image\":case\"link\":Rn(\"error\",n),Rn(\"load\",n);break;case\"details\":Rn(\"toggle\",n);break;case\"input\":$(n,a),Rn(\"invalid\",n);break;case\"select\":n._wrapperState={wasMultiple:!!a.multiple},Rn(\"invalid\",n);break;case\"textarea\":oe(n,a),Rn(\"invalid\",n)}for(var l in ve(r,a),o=null,a)if(a.hasOwnProperty(l)){var s=a[l];\"children\"===l?\"string\"==typeof s?n.textContent!==s&&(!0!==a.suppressHydrationWarning&&Kn(n.textContent,s,e),o=[\"children\",s]):\"number\"==typeof s&&n.textContent!==\"\"+s&&(!0!==a.suppressHydrationWarning&&Kn(n.textContent,s,e),o=[\"children\",\"\"+s]):c.hasOwnProperty(l)&&null!=s&&\"onScroll\"===l&&Rn(\"scroll\",n)}switch(r){case\"input\":Q(n),J(n,a,!0);break;case\"textarea\":Q(n),ae(n);break;case\"select\":case\"option\":break;default:\"function\"==typeof a.onClick&&(n.onclick=Jn)}n=o,t.updateQueue=n,null!==n&&(t.flags|=4)}else{l=9===o.nodeType?o:o.ownerDocument,\"http://www.w3.org/1999/xhtml\"===e&&(e=ce(r)),\"http://www.w3.org/1999/xhtml\"===e?\"script\"===r?((e=l.createElement(\"div\")).innerHTML=\"<script><\\/script>\",e=e.removeChild(e.firstChild)):\"string\"==typeof n.is?e=l.createElement(r,{is:n.is}):(e=l.createElement(r),\"select\"===r&&(l=e,n.multiple?l.multiple=!0:n.size&&(l.size=n.size))):e=l.createElementNS(e,r),e[fo]=t,e[mo]=n,Cc(e,t,!1,!1),t.stateNode=e;e:{switch(l=ge(r,n),r){case\"dialog\":Rn(\"cancel\",e),Rn(\"close\",e),o=n;break;case\"iframe\":case\"object\":case\"embed\":Rn(\"load\",e),o=n;break;case\"video\":case\"audio\":for(o=0;o<Dn.length;o++)Rn(Dn[o],e);o=n;break;case\"source\":Rn(\"error\",e),o=n;break;case\"img\":case\"image\":case\"link\":Rn(\"error\",e),Rn(\"load\",e),o=n;break;case\"details\":Rn(\"toggle\",e),o=n;break;case\"input\":$(e,n),o=q(e,n),Rn(\"invalid\",e);break;case\"option\":default:o=n;break;case\"select\":e._wrapperState={wasMultiple:!!n.multiple},o=z({},n,{value:void 0}),Rn(\"invalid\",e);break;case\"textarea\":oe(e,n),o=ne(e,n),Rn(\"invalid\",e)}for(a in ve(r,o),s=o)if(s.hasOwnProperty(a)){var u=s[a];\"style\"===a?he(e,u):\"dangerouslySetInnerHTML\"===a?null!=(u=u?u.__html:void 0)&&pe(e,u):\"children\"===a?\"string\"==typeof u?(\"textarea\"!==r||\"\"!==u)&&de(e,u):\"number\"==typeof u&&de(e,\"\"+u):\"suppressContentEditableWarning\"!==a&&\"suppressHydrationWarning\"!==a&&\"autoFocus\"!==a&&(c.hasOwnProperty(a)?null!=u&&\"onScroll\"===a&&Rn(\"scroll\",e):null!=u&&g(e,a,u,l))}switch(r){case\"input\":Q(e),J(e,n,!1);break;case\"textarea\":Q(e),ae(e);break;case\"option\":null!=n.value&&e.setAttribute(\"value\",\"\"+W(n.value));break;case\"select\":e.multiple=!!n.multiple,null!=(a=n.value)?re(e,!!n.multiple,a,!1):null!=n.defaultValue&&re(e,!!n.multiple,n.defaultValue,!0);break;default:\"function\"==typeof o.onClick&&(e.onclick=Jn)}switch(r){case\"button\":case\"input\":case\"select\":case\"textarea\":n=!!n.autoFocus;break e;case\"img\":n=!0;break e;default:n=!1}}n&&(t.flags|=4)}null!==t.ref&&(t.flags|=512,t.flags|=2097152)}return Hc(t),null;case 6:if(e&&null!=t.stateNode)Dc(e,t,e.memoizedProps,n);else{if(\"string\"!=typeof n&&null===t.stateNode)throw Error(i(166));if(r=na(ra.current),na(ea.current),di(t)){if(n=t.stateNode,r=t.memoizedProps,n[fo]=t,(a=n.nodeValue!==r)&&null!==(e=ni))switch(e.tag){case 3:Kn(n.nodeValue,r,0!=(1&e.mode));break;case 5:!0!==e.memoizedProps.suppressHydrationWarning&&Kn(n.nodeValue,r,0!=(1&e.mode))}a&&(t.flags|=4)}else(n=(9===r.nodeType?r:r.ownerDocument).createTextNode(n))[fo]=t,t.stateNode=n}return Hc(t),null;case 13:if(jo(la),n=t.memoizedState,null===e||null!==e.memoizedState&&null!==e.memoizedState.dehydrated){if(ii&&null!==oi&&0!=(1&t.mode)&&0==(128&t.flags))fi(),mi(),t.flags|=98560,a=!1;else if(a=di(t),null!==n&&null!==n.dehydrated){if(null===e){if(!a)throw Error(i(318));if(!(a=null!==(a=t.memoizedState)?a.dehydrated:null))throw Error(i(317));a[fo]=t}else mi(),0==(128&t.flags)&&(t.memoizedState=null),t.flags|=4;Hc(t),a=!1}else null!==ai&&(cs(ai),ai=null),a=!0;if(!a)return 65536&t.flags?t:null}return 0!=(128&t.flags)?(t.lanes=r,t):((n=null!==n)!==(null!==e&&null!==e.memoizedState)&&n&&(t.child.flags|=8192,0!=(1&t.mode)&&(null===e||0!=(1&la.current)?0===Dl&&(Dl=3):hs())),null!==t.updateQueue&&(t.flags|=4),Hc(t),null);case 4:return ia(),Pc(e,t),null===e&&Zn(t.stateNode.containerInfo),Hc(t),null;case 10:return ki(t.type._context),Hc(t),null;case 19:if(jo(la),null===(a=t.memoizedState))return Hc(t),null;if(n=0!=(128&t.flags),null===(l=a.rendering))if(n)Qc(a,!1);else{if(0!==Dl||null!==e&&0!=(128&e.flags))for(e=t.child;null!==e;){if(null!==(l=sa(e))){for(t.flags|=128,Qc(a,!1),null!==(n=l.updateQueue)&&(t.updateQueue=n,t.flags|=4),t.subtreeFlags=0,n=r,r=t.child;null!==r;)e=n,(a=r).flags&=14680066,null===(l=a.alternate)?(a.childLanes=0,a.lanes=e,a.child=null,a.subtreeFlags=0,a.memoizedProps=null,a.memoizedState=null,a.updateQueue=null,a.dependencies=null,a.stateNode=null):(a.childLanes=l.childLanes,a.lanes=l.lanes,a.child=l.child,a.subtreeFlags=0,a.deletions=null,a.memoizedProps=l.memoizedProps,a.memoizedState=l.memoizedState,a.updateQueue=l.updateQueue,a.type=l.type,e=l.dependencies,a.dependencies=null===e?null:{lanes:e.lanes,firstContext:e.firstContext}),r=r.sibling;return So(la,1&la.current|2),t.child}e=e.sibling}null!==a.tail&&Xe()>Yl&&(t.flags|=128,n=!0,Qc(a,!1),t.lanes=4194304)}else{if(!n)if(null!==(e=sa(l))){if(t.flags|=128,n=!0,null!==(r=e.updateQueue)&&(t.updateQueue=r,t.flags|=4),Qc(a,!0),null===a.tail&&\"hidden\"===a.tailMode&&!l.alternate&&!ii)return Hc(t),null}else 2*Xe()-a.renderingStartTime>Yl&&1073741824!==r&&(t.flags|=128,n=!0,Qc(a,!1),t.lanes=4194304);a.isBackwards?(l.sibling=t.child,t.child=l):(null!==(r=a.last)?r.sibling=l:t.child=l,a.last=l)}return null!==a.tail?(t=a.tail,a.rendering=t,a.tail=t.sibling,a.renderingStartTime=Xe(),t.sibling=null,r=la.current,So(la,n?1&r|2:1&r),t):(Hc(t),null);case 22:case 23:return ds(),n=null!==t.memoizedState,null!==e&&null!==e.memoizedState!==n&&(t.flags|=8192),n&&0!=(1&t.mode)?0!=(1073741824&Pl)&&(Hc(t),6&t.subtreeFlags&&(t.flags|=8192)):Hc(t),null;case 24:case 25:return null}throw Error(i(156,t.tag))}function qc(e,t){switch(ri(t),t.tag){case 1:return Po(t.type)&&Ao(),65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 3:return ia(),jo(Oo),jo(Lo),pa(),0!=(65536&(e=t.flags))&&0==(128&e)?(t.flags=-65537&e|128,t):null;case 5:return ca(t),null;case 13:if(jo(la),null!==(e=t.memoizedState)&&null!==e.dehydrated){if(null===t.alternate)throw Error(i(340));mi()}return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 19:return jo(la),null;case 4:return ia(),null;case 10:return ki(t.type._context),null;case 22:case 23:return ds(),null;default:return null}}Cc=function(e,t){for(var r=t.child;null!==r;){if(5===r.tag||6===r.tag)e.appendChild(r.stateNode);else if(4!==r.tag&&null!==r.child){r.child.return=r,r=r.child;continue}if(r===t)break;for(;null===r.sibling;){if(null===r.return||r.return===t)return;r=r.return}r.sibling.return=r.return,r=r.sibling}},Pc=function(){},Ac=function(e,t,r,n){var o=e.memoizedProps;if(o!==n){e=t.stateNode,na(ea.current);var i,a=null;switch(r){case\"input\":o=q(e,o),n=q(e,n),a=[];break;case\"select\":o=z({},o,{value:void 0}),n=z({},n,{value:void 0}),a=[];break;case\"textarea\":o=ne(e,o),n=ne(e,n),a=[];break;default:\"function\"!=typeof o.onClick&&\"function\"==typeof n.onClick&&(e.onclick=Jn)}for(u in ve(r,n),r=null,o)if(!n.hasOwnProperty(u)&&o.hasOwnProperty(u)&&null!=o[u])if(\"style\"===u){var l=o[u];for(i in l)l.hasOwnProperty(i)&&(r||(r={}),r[i]=\"\")}else\"dangerouslySetInnerHTML\"!==u&&\"children\"!==u&&\"suppressContentEditableWarning\"!==u&&\"suppressHydrationWarning\"!==u&&\"autoFocus\"!==u&&(c.hasOwnProperty(u)?a||(a=[]):(a=a||[]).push(u,null));for(u in n){var s=n[u];if(l=null!=o?o[u]:void 0,n.hasOwnProperty(u)&&s!==l&&(null!=s||null!=l))if(\"style\"===u)if(l){for(i in l)!l.hasOwnProperty(i)||s&&s.hasOwnProperty(i)||(r||(r={}),r[i]=\"\");for(i in s)s.hasOwnProperty(i)&&l[i]!==s[i]&&(r||(r={}),r[i]=s[i])}else r||(a||(a=[]),a.push(u,r)),r=s;else\"dangerouslySetInnerHTML\"===u?(s=s?s.__html:void 0,l=l?l.__html:void 0,null!=s&&l!==s&&(a=a||[]).push(u,s)):\"children\"===u?\"string\"!=typeof s&&\"number\"!=typeof s||(a=a||[]).push(u,\"\"+s):\"suppressContentEditableWarning\"!==u&&\"suppressHydrationWarning\"!==u&&(c.hasOwnProperty(u)?(null!=s&&\"onScroll\"===u&&Rn(\"scroll\",e),a||l===s||(a=[])):(a=a||[]).push(u,s))}r&&(a=a||[]).push(\"style\",r);var u=a;(t.updateQueue=u)&&(t.flags|=4)}},Dc=function(e,t,r,n){r!==n&&(t.flags|=4)};var $c=!1,Xc=!1,Kc=\"function\"==typeof WeakSet?WeakSet:Set,Jc=null;function el(e,t){var r=e.ref;if(null!==r)if(\"function\"==typeof r)try{r(null)}catch(r){Ms(e,t,r)}else r.current=null}function tl(e,t,r){try{r()}catch(r){Ms(e,t,r)}}var rl=!1;function nl(e,t,r){var n=t.updateQueue;if(null!==(n=null!==n?n.lastEffect:null)){var o=n=n.next;do{if((o.tag&e)===e){var i=o.destroy;o.destroy=void 0,void 0!==i&&tl(t,r,i)}o=o.next}while(o!==n)}}function ol(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect:null)){var r=t=t.next;do{if((r.tag&e)===e){var n=r.create;r.destroy=n()}r=r.next}while(r!==t)}}function il(e){var t=e.ref;if(null!==t){var r=e.stateNode;e.tag,e=r,\"function\"==typeof t?t(e):t.current=e}}function al(e){var t=e.alternate;null!==t&&(e.alternate=null,al(t)),e.child=null,e.deletions=null,e.sibling=null,5===e.tag&&(null!==(t=e.stateNode)&&(delete t[fo],delete t[mo],delete t[ho],delete t[bo],delete t[vo])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function cl(e){return 5===e.tag||3===e.tag||4===e.tag}function ll(e){e:for(;;){for(;null===e.sibling;){if(null===e.return||cl(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;5!==e.tag&&6!==e.tag&&18!==e.tag;){if(2&e.flags)continue e;if(null===e.child||4===e.tag)continue e;e.child.return=e,e=e.child}if(!(2&e.flags))return e.stateNode}}function sl(e,t,r){var n=e.tag;if(5===n||6===n)e=e.stateNode,t?8===r.nodeType?r.parentNode.insertBefore(e,t):r.insertBefore(e,t):(8===r.nodeType?(t=r.parentNode).insertBefore(e,r):(t=r).appendChild(e),null!=(r=r._reactRootContainer)||null!==t.onclick||(t.onclick=Jn));else if(4!==n&&null!==(e=e.child))for(sl(e,t,r),e=e.sibling;null!==e;)sl(e,t,r),e=e.sibling}function ul(e,t,r){var n=e.tag;if(5===n||6===n)e=e.stateNode,t?r.insertBefore(e,t):r.appendChild(e);else if(4!==n&&null!==(e=e.child))for(ul(e,t,r),e=e.sibling;null!==e;)ul(e,t,r),e=e.sibling}var pl=null,dl=!1;function fl(e,t,r){for(r=r.child;null!==r;)ml(e,t,r),r=r.sibling}function ml(e,t,r){if(it&&\"function\"==typeof it.onCommitFiberUnmount)try{it.onCommitFiberUnmount(ot,r)}catch(e){}switch(r.tag){case 5:Xc||el(r,t);case 6:var n=pl,o=dl;pl=null,fl(e,t,r),dl=o,null!==(pl=n)&&(dl?(e=pl,r=r.stateNode,8===e.nodeType?e.parentNode.removeChild(r):e.removeChild(r)):pl.removeChild(r.stateNode));break;case 18:null!==pl&&(dl?(e=pl,r=r.stateNode,8===e.nodeType?lo(e.parentNode,r):1===e.nodeType&&lo(e,r),Zt(e)):lo(pl,r.stateNode));break;case 4:n=pl,o=dl,pl=r.stateNode.containerInfo,dl=!0,fl(e,t,r),pl=n,dl=o;break;case 0:case 11:case 14:case 15:if(!Xc&&(null!==(n=r.updateQueue)&&null!==(n=n.lastEffect))){o=n=n.next;do{var i=o,a=i.destroy;i=i.tag,void 0!==a&&(0!=(2&i)||0!=(4&i))&&tl(r,t,a),o=o.next}while(o!==n)}fl(e,t,r);break;case 1:if(!Xc&&(el(r,t),\"function\"==typeof(n=r.stateNode).componentWillUnmount))try{n.props=r.memoizedProps,n.state=r.memoizedState,n.componentWillUnmount()}catch(e){Ms(r,t,e)}fl(e,t,r);break;case 21:fl(e,t,r);break;case 22:1&r.mode?(Xc=(n=Xc)||null!==r.memoizedState,fl(e,t,r),Xc=n):fl(e,t,r);break;default:fl(e,t,r)}}function yl(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var r=e.stateNode;null===r&&(r=e.stateNode=new Kc),t.forEach((function(t){var n=Ls.bind(null,e,t);r.has(t)||(r.add(t),t.then(n,n))}))}}function hl(e,t){var r=t.deletions;if(null!==r)for(var n=0;n<r.length;n++){var o=r[n];try{var a=e,c=t,l=c;e:for(;null!==l;){switch(l.tag){case 5:pl=l.stateNode,dl=!1;break e;case 3:case 4:pl=l.stateNode.containerInfo,dl=!0;break e}l=l.return}if(null===pl)throw Error(i(160));ml(a,c,o),pl=null,dl=!1;var s=o.alternate;null!==s&&(s.return=null),o.return=null}catch(e){Ms(o,t,e)}}if(12854&t.subtreeFlags)for(t=t.child;null!==t;)bl(t,e),t=t.sibling}function bl(e,t){var r=e.alternate,n=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(hl(t,e),vl(e),4&n){try{nl(3,e,e.return),ol(3,e)}catch(t){Ms(e,e.return,t)}try{nl(5,e,e.return)}catch(t){Ms(e,e.return,t)}}break;case 1:hl(t,e),vl(e),512&n&&null!==r&&el(r,r.return);break;case 5:if(hl(t,e),vl(e),512&n&&null!==r&&el(r,r.return),32&e.flags){var o=e.stateNode;try{de(o,\"\")}catch(t){Ms(e,e.return,t)}}if(4&n&&null!=(o=e.stateNode)){var a=e.memoizedProps,c=null!==r?r.memoizedProps:a,l=e.type,s=e.updateQueue;if(e.updateQueue=null,null!==s)try{\"input\"===l&&\"radio\"===a.type&&null!=a.name&&X(o,a),ge(l,c);var u=ge(l,a);for(c=0;c<s.length;c+=2){var p=s[c],d=s[c+1];\"style\"===p?he(o,d):\"dangerouslySetInnerHTML\"===p?pe(o,d):\"children\"===p?de(o,d):g(o,p,d,u)}switch(l){case\"input\":K(o,a);break;case\"textarea\":ie(o,a);break;case\"select\":var f=o._wrapperState.wasMultiple;o._wrapperState.wasMultiple=!!a.multiple;var m=a.value;null!=m?re(o,!!a.multiple,m,!1):f!==!!a.multiple&&(null!=a.defaultValue?re(o,!!a.multiple,a.defaultValue,!0):re(o,!!a.multiple,a.multiple?[]:\"\",!1))}o[mo]=a}catch(t){Ms(e,e.return,t)}}break;case 6:if(hl(t,e),vl(e),4&n){if(null===e.stateNode)throw Error(i(162));o=e.stateNode,a=e.memoizedProps;try{o.nodeValue=a}catch(t){Ms(e,e.return,t)}}break;case 3:if(hl(t,e),vl(e),4&n&&null!==r&&r.memoizedState.isDehydrated)try{Zt(t.containerInfo)}catch(t){Ms(e,e.return,t)}break;case 4:default:hl(t,e),vl(e);break;case 13:hl(t,e),vl(e),8192&(o=e.child).flags&&(a=null!==o.memoizedState,o.stateNode.isHidden=a,!a||null!==o.alternate&&null!==o.alternate.memoizedState||(Zl=Xe())),4&n&&yl(e);break;case 22:if(p=null!==r&&null!==r.memoizedState,1&e.mode?(Xc=(u=Xc)||p,hl(t,e),Xc=u):hl(t,e),vl(e),8192&n){if(u=null!==e.memoizedState,(e.stateNode.isHidden=u)&&!p&&0!=(1&e.mode))for(Jc=e,p=e.child;null!==p;){for(d=Jc=p;null!==Jc;){switch(m=(f=Jc).child,f.tag){case 0:case 11:case 14:case 15:nl(4,f,f.return);break;case 1:el(f,f.return);var y=f.stateNode;if(\"function\"==typeof y.componentWillUnmount){n=f,r=f.return;try{t=n,y.props=t.memoizedProps,y.state=t.memoizedState,y.componentWillUnmount()}catch(e){Ms(n,r,e)}}break;case 5:el(f,f.return);break;case 22:if(null!==f.memoizedState){xl(d);continue}}null!==m?(m.return=f,Jc=m):xl(d)}p=p.sibling}e:for(p=null,d=e;;){if(5===d.tag){if(null===p){p=d;try{o=d.stateNode,u?\"function\"==typeof(a=o.style).setProperty?a.setProperty(\"display\",\"none\",\"important\"):a.display=\"none\":(l=d.stateNode,c=null!=(s=d.memoizedProps.style)&&s.hasOwnProperty(\"display\")?s.display:null,l.style.display=ye(\"display\",c))}catch(t){Ms(e,e.return,t)}}}else if(6===d.tag){if(null===p)try{d.stateNode.nodeValue=u?\"\":d.memoizedProps}catch(t){Ms(e,e.return,t)}}else if((22!==d.tag&&23!==d.tag||null===d.memoizedState||d===e)&&null!==d.child){d.child.return=d,d=d.child;continue}if(d===e)break e;for(;null===d.sibling;){if(null===d.return||d.return===e)break e;p===d&&(p=null),d=d.return}p===d&&(p=null),d.sibling.return=d.return,d=d.sibling}}break;case 19:hl(t,e),vl(e),4&n&&yl(e);case 21:}}function vl(e){var t=e.flags;if(2&t){try{e:{for(var r=e.return;null!==r;){if(cl(r)){var n=r;break e}r=r.return}throw Error(i(160))}switch(n.tag){case 5:var o=n.stateNode;32&n.flags&&(de(o,\"\"),n.flags&=-33),ul(e,ll(e),o);break;case 3:case 4:var a=n.stateNode.containerInfo;sl(e,ll(e),a);break;default:throw Error(i(161))}}catch(t){Ms(e,e.return,t)}e.flags&=-3}4096&t&&(e.flags&=-4097)}function gl(e,t,r){Jc=e,_l(e,t,r)}function _l(e,t,r){for(var n=0!=(1&e.mode);null!==Jc;){var o=Jc,i=o.child;if(22===o.tag&&n){var a=null!==o.memoizedState||$c;if(!a){var c=o.alternate,l=null!==c&&null!==c.memoizedState||Xc;c=$c;var s=Xc;if($c=a,(Xc=l)&&!s)for(Jc=o;null!==Jc;)l=(a=Jc).child,22===a.tag&&null!==a.memoizedState?kl(o):null!==l?(l.return=a,Jc=l):kl(o);for(;null!==i;)Jc=i,_l(i,t,r),i=i.sibling;Jc=o,$c=c,Xc=s}wl(e)}else 0!=(8772&o.subtreeFlags)&&null!==i?(i.return=o,Jc=i):wl(e)}}function wl(e){for(;null!==Jc;){var t=Jc;if(0!=(8772&t.flags)){var r=t.alternate;try{if(0!=(8772&t.flags))switch(t.tag){case 0:case 11:case 15:Xc||ol(5,t);break;case 1:var n=t.stateNode;if(4&t.flags&&!Xc)if(null===r)n.componentDidMount();else{var o=t.elementType===t.type?r.memoizedProps:bi(t.type,r.memoizedProps);n.componentDidUpdate(o,r.memoizedState,n.__reactInternalSnapshotBeforeUpdate)}var a=t.updateQueue;null!==a&&Ri(t,a,n);break;case 3:var c=t.updateQueue;if(null!==c){if(r=null,null!==t.child)switch(t.child.tag){case 5:case 1:r=t.child.stateNode}Ri(t,c,r)}break;case 5:var l=t.stateNode;if(null===r&&4&t.flags){r=l;var s=t.memoizedProps;switch(t.type){case\"button\":case\"input\":case\"select\":case\"textarea\":s.autoFocus&&r.focus();break;case\"img\":s.src&&(r.src=s.src)}}break;case 6:case 4:case 12:case 19:case 17:case 21:case 22:case 23:case 25:break;case 13:if(null===t.memoizedState){var u=t.alternate;if(null!==u){var p=u.memoizedState;if(null!==p){var d=p.dehydrated;null!==d&&Zt(d)}}}break;default:throw Error(i(163))}Xc||512&t.flags&&il(t)}catch(e){Ms(t,t.return,e)}}if(t===e){Jc=null;break}if(null!==(r=t.sibling)){r.return=t.return,Jc=r;break}Jc=t.return}}function xl(e){for(;null!==Jc;){var t=Jc;if(t===e){Jc=null;break}var r=t.sibling;if(null!==r){r.return=t.return,Jc=r;break}Jc=t.return}}function kl(e){for(;null!==Jc;){var t=Jc;try{switch(t.tag){case 0:case 11:case 15:var r=t.return;try{ol(4,t)}catch(e){Ms(t,r,e)}break;case 1:var n=t.stateNode;if(\"function\"==typeof n.componentDidMount){var o=t.return;try{n.componentDidMount()}catch(e){Ms(t,o,e)}}var i=t.return;try{il(t)}catch(e){Ms(t,i,e)}break;case 5:var a=t.return;try{il(t)}catch(e){Ms(t,a,e)}}}catch(e){Ms(t,t.return,e)}if(t===e){Jc=null;break}var c=t.sibling;if(null!==c){c.return=t.return,Jc=c;break}Jc=t.return}}var Nl,Ml=Math.ceil,jl=_.ReactCurrentDispatcher,Sl=_.ReactCurrentOwner,El=_.ReactCurrentBatchConfig,Ll=0,Ol=null,Il=null,Cl=0,Pl=0,Al=Mo(0),Dl=0,Tl=null,zl=0,Bl=0,Rl=0,Fl=null,Ul=null,Zl=0,Yl=1/0,Wl=null,Vl=!1,Ql=null,Hl=null,Gl=!1,ql=null,$l=0,Xl=0,Kl=null,Jl=-1,es=0;function ts(){return 0!=(6&Ll)?Xe():-1!==Jl?Jl:Jl=Xe()}function rs(e){return 0==(1&e.mode)?1:0!=(2&Ll)&&0!==Cl?Cl&-Cl:null!==hi.transition?(0===es&&(es=yt()),es):0!==(e=gt)?e:e=void 0===(e=window.event)?16:$t(e.type)}function ns(e,t,r,n){if(50<Xl)throw Xl=0,Kl=null,Error(i(185));bt(e,r,n),0!=(2&Ll)&&e===Ol||(e===Ol&&(0==(2&Ll)&&(Bl|=r),4===Dl&&ls(e,Cl)),os(e,n),1===r&&0===Ll&&0==(1&t.mode)&&(Yl=Xe()+500,Fo&&Yo()))}function os(e,t){var r=e.callbackNode;!function(e,t){for(var r=e.suspendedLanes,n=e.pingedLanes,o=e.expirationTimes,i=e.pendingLanes;0<i;){var a=31-at(i),c=1<<a,l=o[a];-1===l?0!=(c&r)&&0==(c&n)||(o[a]=ft(c,t)):l<=t&&(e.expiredLanes|=c),i&=~c}}(e,t);var n=dt(e,e===Ol?Cl:0);if(0===n)null!==r&&Ge(r),e.callbackNode=null,e.callbackPriority=0;else if(t=n&-n,e.callbackPriority!==t){if(null!=r&&Ge(r),1===t)0===e.tag?function(e){Fo=!0,Zo(e)}(ss.bind(null,e)):Zo(ss.bind(null,e)),ao((function(){0==(6&Ll)&&Yo()})),r=null;else{switch(_t(n)){case 1:r=Je;break;case 4:r=et;break;case 16:default:r=tt;break;case 536870912:r=nt}r=Os(r,is.bind(null,e))}e.callbackPriority=t,e.callbackNode=r}}function is(e,t){if(Jl=-1,es=0,0!=(6&Ll))throw Error(i(327));var r=e.callbackNode;if(ks()&&e.callbackNode!==r)return null;var n=dt(e,e===Ol?Cl:0);if(0===n)return null;if(0!=(30&n)||0!=(n&e.expiredLanes)||t)t=bs(e,n);else{t=n;var o=Ll;Ll|=2;var a=ys();for(Ol===e&&Cl===t||(Wl=null,Yl=Xe()+500,fs(e,t));;)try{gs();break}catch(t){ms(e,t)}xi(),jl.current=a,Ll=o,null!==Il?t=0:(Ol=null,Cl=0,t=Dl)}if(0!==t){if(2===t&&(0!==(o=mt(e))&&(n=o,t=as(e,o))),1===t)throw r=Tl,fs(e,0),ls(e,n),os(e,Xe()),r;if(6===t)ls(e,n);else{if(o=e.current.alternate,0==(30&n)&&!function(e){for(var t=e;;){if(16384&t.flags){var r=t.updateQueue;if(null!==r&&null!==(r=r.stores))for(var n=0;n<r.length;n++){var o=r[n],i=o.getSnapshot;o=o.value;try{if(!cn(i(),o))return!1}catch(e){return!1}}}if(r=t.child,16384&t.subtreeFlags&&null!==r)r.return=t,t=r;else{if(t===e)break;for(;null===t.sibling;){if(null===t.return||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}(o)&&(2===(t=bs(e,n))&&(0!==(a=mt(e))&&(n=a,t=as(e,a))),1===t))throw r=Tl,fs(e,0),ls(e,n),os(e,Xe()),r;switch(e.finishedWork=o,e.finishedLanes=n,t){case 0:case 1:throw Error(i(345));case 2:case 5:xs(e,Ul,Wl);break;case 3:if(ls(e,n),(130023424&n)===n&&10<(t=Zl+500-Xe())){if(0!==dt(e,0))break;if(((o=e.suspendedLanes)&n)!==n){ts(),e.pingedLanes|=e.suspendedLanes&o;break}e.timeoutHandle=no(xs.bind(null,e,Ul,Wl),t);break}xs(e,Ul,Wl);break;case 4:if(ls(e,n),(4194240&n)===n)break;for(t=e.eventTimes,o=-1;0<n;){var c=31-at(n);a=1<<c,(c=t[c])>o&&(o=c),n&=~a}if(n=o,10<(n=(120>(n=Xe()-n)?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*Ml(n/1960))-n)){e.timeoutHandle=no(xs.bind(null,e,Ul,Wl),n);break}xs(e,Ul,Wl);break;default:throw Error(i(329))}}}return os(e,Xe()),e.callbackNode===r?is.bind(null,e):null}function as(e,t){var r=Fl;return e.current.memoizedState.isDehydrated&&(fs(e,t).flags|=256),2!==(e=bs(e,t))&&(t=Ul,Ul=r,null!==t&&cs(t)),e}function cs(e){null===Ul?Ul=e:Ul.push.apply(Ul,e)}function ls(e,t){for(t&=~Rl,t&=~Bl,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var r=31-at(t),n=1<<r;e[r]=-1,t&=~n}}function ss(e){if(0!=(6&Ll))throw Error(i(327));ks();var t=dt(e,0);if(0==(1&t))return os(e,Xe()),null;var r=bs(e,t);if(0!==e.tag&&2===r){var n=mt(e);0!==n&&(t=n,r=as(e,n))}if(1===r)throw r=Tl,fs(e,0),ls(e,t),os(e,Xe()),r;if(6===r)throw Error(i(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,xs(e,Ul,Wl),os(e,Xe()),null}function us(e,t){var r=Ll;Ll|=1;try{return e(t)}finally{0===(Ll=r)&&(Yl=Xe()+500,Fo&&Yo())}}function ps(e){null!==ql&&0===ql.tag&&0==(6&Ll)&&ks();var t=Ll;Ll|=1;var r=El.transition,n=gt;try{if(El.transition=null,gt=1,e)return e()}finally{gt=n,El.transition=r,0==(6&(Ll=t))&&Yo()}}function ds(){Pl=Al.current,jo(Al)}function fs(e,t){e.finishedWork=null,e.finishedLanes=0;var r=e.timeoutHandle;if(-1!==r&&(e.timeoutHandle=-1,oo(r)),null!==Il)for(r=Il.return;null!==r;){var n=r;switch(ri(n),n.tag){case 1:null!=(n=n.type.childContextTypes)&&Ao();break;case 3:ia(),jo(Oo),jo(Lo),pa();break;case 5:ca(n);break;case 4:ia();break;case 13:case 19:jo(la);break;case 10:ki(n.type._context);break;case 22:case 23:ds()}r=r.return}if(Ol=e,Il=e=As(e.current,null),Cl=Pl=t,Dl=0,Tl=null,Rl=Bl=zl=0,Ul=Fl=null,null!==Si){for(t=0;t<Si.length;t++)if(null!==(n=(r=Si[t]).interleaved)){r.interleaved=null;var o=n.next,i=r.pending;if(null!==i){var a=i.next;i.next=o,n.next=a}r.pending=n}Si=null}return e}function ms(e,t){for(;;){var r=Il;try{if(xi(),da.current=ac,va){for(var n=ya.memoizedState;null!==n;){var o=n.queue;null!==o&&(o.pending=null),n=n.next}va=!1}if(ma=0,ba=ha=ya=null,ga=!1,_a=0,Sl.current=null,null===r||null===r.return){Dl=1,Tl=t,Il=null;break}e:{var a=e,c=r.return,l=r,s=t;if(t=Cl,l.flags|=32768,null!==s&&\"object\"==typeof s&&\"function\"==typeof s.then){var u=s,p=l,d=p.tag;if(0==(1&p.mode)&&(0===d||11===d||15===d)){var f=p.alternate;f?(p.updateQueue=f.updateQueue,p.memoizedState=f.memoizedState,p.lanes=f.lanes):(p.updateQueue=null,p.memoizedState=null)}var m=bc(c);if(null!==m){m.flags&=-257,vc(m,c,l,0,t),1&m.mode&&hc(a,u,t),s=u;var y=(t=m).updateQueue;if(null===y){var h=new Set;h.add(s),t.updateQueue=h}else y.add(s);break e}if(0==(1&t)){hc(a,u,t),hs();break e}s=Error(i(426))}else if(ii&&1&l.mode){var b=bc(c);if(null!==b){0==(65536&b.flags)&&(b.flags|=256),vc(b,c,l,0,t),yi(uc(s,l));break e}}a=s=uc(s,l),4!==Dl&&(Dl=2),null===Fl?Fl=[a]:Fl.push(a),a=c;do{switch(a.tag){case 3:a.flags|=65536,t&=-t,a.lanes|=t,zi(a,mc(0,s,t));break e;case 1:l=s;var v=a.type,g=a.stateNode;if(0==(128&a.flags)&&(\"function\"==typeof v.getDerivedStateFromError||null!==g&&\"function\"==typeof g.componentDidCatch&&(null===Hl||!Hl.has(g)))){a.flags|=65536,t&=-t,a.lanes|=t,zi(a,yc(a,l,t));break e}}a=a.return}while(null!==a)}ws(r)}catch(e){t=e,Il===r&&null!==r&&(Il=r=r.return);continue}break}}function ys(){var e=jl.current;return jl.current=ac,null===e?ac:e}function hs(){0!==Dl&&3!==Dl&&2!==Dl||(Dl=4),null===Ol||0==(268435455&zl)&&0==(268435455&Bl)||ls(Ol,Cl)}function bs(e,t){var r=Ll;Ll|=2;var n=ys();for(Ol===e&&Cl===t||(Wl=null,fs(e,t));;)try{vs();break}catch(t){ms(e,t)}if(xi(),Ll=r,jl.current=n,null!==Il)throw Error(i(261));return Ol=null,Cl=0,Dl}function vs(){for(;null!==Il;)_s(Il)}function gs(){for(;null!==Il&&!qe();)_s(Il)}function _s(e){var t=Nl(e.alternate,e,Pl);e.memoizedProps=e.pendingProps,null===t?ws(e):Il=t,Sl.current=null}function ws(e){var t=e;do{var r=t.alternate;if(e=t.return,0==(32768&t.flags)){if(null!==(r=Gc(r,t,Pl)))return void(Il=r)}else{if(null!==(r=qc(r,t)))return r.flags&=32767,void(Il=r);if(null===e)return Dl=6,void(Il=null);e.flags|=32768,e.subtreeFlags=0,e.deletions=null}if(null!==(t=t.sibling))return void(Il=t);Il=t=e}while(null!==t);0===Dl&&(Dl=5)}function xs(e,t,r){var n=gt,o=El.transition;try{El.transition=null,gt=1,function(e,t,r,n){do{ks()}while(null!==ql);if(0!=(6&Ll))throw Error(i(327));r=e.finishedWork;var o=e.finishedLanes;if(null===r)return null;if(e.finishedWork=null,e.finishedLanes=0,r===e.current)throw Error(i(177));e.callbackNode=null,e.callbackPriority=0;var a=r.lanes|r.childLanes;if(function(e,t){var r=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var n=e.eventTimes;for(e=e.expirationTimes;0<r;){var o=31-at(r),i=1<<o;t[o]=0,n[o]=-1,e[o]=-1,r&=~i}}(e,a),e===Ol&&(Il=Ol=null,Cl=0),0==(2064&r.subtreeFlags)&&0==(2064&r.flags)||Gl||(Gl=!0,Os(tt,(function(){return ks(),null}))),a=0!=(15990&r.flags),0!=(15990&r.subtreeFlags)||a){a=El.transition,El.transition=null;var c=gt;gt=1;var l=Ll;Ll|=4,Sl.current=null,function(e,t){if(eo=Wt,fn(e=dn())){if(\"selectionStart\"in e)var r={start:e.selectionStart,end:e.selectionEnd};else e:{var n=(r=(r=e.ownerDocument)&&r.defaultView||window).getSelection&&r.getSelection();if(n&&0!==n.rangeCount){r=n.anchorNode;var o=n.anchorOffset,a=n.focusNode;n=n.focusOffset;try{r.nodeType,a.nodeType}catch(e){r=null;break e}var c=0,l=-1,s=-1,u=0,p=0,d=e,f=null;t:for(;;){for(var m;d!==r||0!==o&&3!==d.nodeType||(l=c+o),d!==a||0!==n&&3!==d.nodeType||(s=c+n),3===d.nodeType&&(c+=d.nodeValue.length),null!==(m=d.firstChild);)f=d,d=m;for(;;){if(d===e)break t;if(f===r&&++u===o&&(l=c),f===a&&++p===n&&(s=c),null!==(m=d.nextSibling))break;f=(d=f).parentNode}d=m}r=-1===l||-1===s?null:{start:l,end:s}}else r=null}r=r||{start:0,end:0}}else r=null;for(to={focusedElem:e,selectionRange:r},Wt=!1,Jc=t;null!==Jc;)if(e=(t=Jc).child,0!=(1028&t.subtreeFlags)&&null!==e)e.return=t,Jc=e;else for(;null!==Jc;){t=Jc;try{var y=t.alternate;if(0!=(1024&t.flags))switch(t.tag){case 0:case 11:case 15:case 5:case 6:case 4:case 17:break;case 1:if(null!==y){var h=y.memoizedProps,b=y.memoizedState,v=t.stateNode,g=v.getSnapshotBeforeUpdate(t.elementType===t.type?h:bi(t.type,h),b);v.__reactInternalSnapshotBeforeUpdate=g}break;case 3:var _=t.stateNode.containerInfo;1===_.nodeType?_.textContent=\"\":9===_.nodeType&&_.documentElement&&_.removeChild(_.documentElement);break;default:throw Error(i(163))}}catch(e){Ms(t,t.return,e)}if(null!==(e=t.sibling)){e.return=t.return,Jc=e;break}Jc=t.return}y=rl,rl=!1}(e,r),bl(r,e),mn(to),Wt=!!eo,to=eo=null,e.current=r,gl(r,e,o),$e(),Ll=l,gt=c,El.transition=a}else e.current=r;if(Gl&&(Gl=!1,ql=e,$l=o),a=e.pendingLanes,0===a&&(Hl=null),function(e){if(it&&\"function\"==typeof it.onCommitFiberRoot)try{it.onCommitFiberRoot(ot,e,void 0,128==(128&e.current.flags))}catch(e){}}(r.stateNode),os(e,Xe()),null!==t)for(n=e.onRecoverableError,r=0;r<t.length;r++)o=t[r],n(o.value,{componentStack:o.stack,digest:o.digest});if(Vl)throw Vl=!1,e=Ql,Ql=null,e;0!=(1&$l)&&0!==e.tag&&ks(),a=e.pendingLanes,0!=(1&a)?e===Kl?Xl++:(Xl=0,Kl=e):Xl=0,Yo()}(e,t,r,n)}finally{El.transition=o,gt=n}return null}function ks(){if(null!==ql){var e=_t($l),t=El.transition,r=gt;try{if(El.transition=null,gt=16>e?16:e,null===ql)var n=!1;else{if(e=ql,ql=null,$l=0,0!=(6&Ll))throw Error(i(331));var o=Ll;for(Ll|=4,Jc=e.current;null!==Jc;){var a=Jc,c=a.child;if(0!=(16&Jc.flags)){var l=a.deletions;if(null!==l){for(var s=0;s<l.length;s++){var u=l[s];for(Jc=u;null!==Jc;){var p=Jc;switch(p.tag){case 0:case 11:case 15:nl(8,p,a)}var d=p.child;if(null!==d)d.return=p,Jc=d;else for(;null!==Jc;){var f=(p=Jc).sibling,m=p.return;if(al(p),p===u){Jc=null;break}if(null!==f){f.return=m,Jc=f;break}Jc=m}}}var y=a.alternate;if(null!==y){var h=y.child;if(null!==h){y.child=null;do{var b=h.sibling;h.sibling=null,h=b}while(null!==h)}}Jc=a}}if(0!=(2064&a.subtreeFlags)&&null!==c)c.return=a,Jc=c;else e:for(;null!==Jc;){if(0!=(2048&(a=Jc).flags))switch(a.tag){case 0:case 11:case 15:nl(9,a,a.return)}var v=a.sibling;if(null!==v){v.return=a.return,Jc=v;break e}Jc=a.return}}var g=e.current;for(Jc=g;null!==Jc;){var _=(c=Jc).child;if(0!=(2064&c.subtreeFlags)&&null!==_)_.return=c,Jc=_;else e:for(c=g;null!==Jc;){if(0!=(2048&(l=Jc).flags))try{switch(l.tag){case 0:case 11:case 15:ol(9,l)}}catch(e){Ms(l,l.return,e)}if(l===c){Jc=null;break e}var w=l.sibling;if(null!==w){w.return=l.return,Jc=w;break e}Jc=l.return}}if(Ll=o,Yo(),it&&\"function\"==typeof it.onPostCommitFiberRoot)try{it.onPostCommitFiberRoot(ot,e)}catch(e){}n=!0}return n}finally{gt=r,El.transition=t}}return!1}function Ns(e,t,r){e=Di(e,t=mc(0,t=uc(r,t),1),1),t=ts(),null!==e&&(bt(e,1,t),os(e,t))}function Ms(e,t,r){if(3===e.tag)Ns(e,e,r);else for(;null!==t;){if(3===t.tag){Ns(t,e,r);break}if(1===t.tag){var n=t.stateNode;if(\"function\"==typeof t.type.getDerivedStateFromError||\"function\"==typeof n.componentDidCatch&&(null===Hl||!Hl.has(n))){t=Di(t,e=yc(t,e=uc(r,e),1),1),e=ts(),null!==t&&(bt(t,1,e),os(t,e));break}}t=t.return}}function js(e,t,r){var n=e.pingCache;null!==n&&n.delete(t),t=ts(),e.pingedLanes|=e.suspendedLanes&r,Ol===e&&(Cl&r)===r&&(4===Dl||3===Dl&&(130023424&Cl)===Cl&&500>Xe()-Zl?fs(e,0):Rl|=r),os(e,t)}function Ss(e,t){0===t&&(0==(1&e.mode)?t=1:(t=ut,0==(130023424&(ut<<=1))&&(ut=4194304)));var r=ts();null!==(e=Oi(e,t))&&(bt(e,t,r),os(e,r))}function Es(e){var t=e.memoizedState,r=0;null!==t&&(r=t.retryLane),Ss(e,r)}function Ls(e,t){var r=0;switch(e.tag){case 13:var n=e.stateNode,o=e.memoizedState;null!==o&&(r=o.retryLane);break;case 19:n=e.stateNode;break;default:throw Error(i(314))}null!==n&&n.delete(t),Ss(e,r)}function Os(e,t){return He(e,t)}function Is(e,t,r,n){this.tag=e,this.key=r,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=n,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Cs(e,t,r,n){return new Is(e,t,r,n)}function Ps(e){return!(!(e=e.prototype)||!e.isReactComponent)}function As(e,t){var r=e.alternate;return null===r?((r=Cs(e.tag,t,e.key,e.mode)).elementType=e.elementType,r.type=e.type,r.stateNode=e.stateNode,r.alternate=e,e.alternate=r):(r.pendingProps=t,r.type=e.type,r.flags=0,r.subtreeFlags=0,r.deletions=null),r.flags=14680064&e.flags,r.childLanes=e.childLanes,r.lanes=e.lanes,r.child=e.child,r.memoizedProps=e.memoizedProps,r.memoizedState=e.memoizedState,r.updateQueue=e.updateQueue,t=e.dependencies,r.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},r.sibling=e.sibling,r.index=e.index,r.ref=e.ref,r}function Ds(e,t,r,n,o,a){var c=2;if(n=e,\"function\"==typeof e)Ps(e)&&(c=1);else if(\"string\"==typeof e)c=5;else e:switch(e){case k:return Ts(r.children,o,a,t);case N:c=8,o|=8;break;case M:return(e=Cs(12,r,t,2|o)).elementType=M,e.lanes=a,e;case L:return(e=Cs(13,r,t,o)).elementType=L,e.lanes=a,e;case O:return(e=Cs(19,r,t,o)).elementType=O,e.lanes=a,e;case P:return zs(r,o,a,t);default:if(\"object\"==typeof e&&null!==e)switch(e.$$typeof){case j:c=10;break e;case S:c=9;break e;case E:c=11;break e;case I:c=14;break e;case C:c=16,n=null;break e}throw Error(i(130,null==e?e:typeof e,\"\"))}return(t=Cs(c,r,t,o)).elementType=e,t.type=n,t.lanes=a,t}function Ts(e,t,r,n){return(e=Cs(7,e,n,t)).lanes=r,e}function zs(e,t,r,n){return(e=Cs(22,e,n,t)).elementType=P,e.lanes=r,e.stateNode={isHidden:!1},e}function Bs(e,t,r){return(e=Cs(6,e,null,t)).lanes=r,e}function Rs(e,t,r){return(t=Cs(4,null!==e.children?e.children:[],e.key,t)).lanes=r,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function Fs(e,t,r,n,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=ht(0),this.expirationTimes=ht(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=ht(0),this.identifierPrefix=n,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function Us(e,t,r,n,o,i,a,c,l){return e=new Fs(e,t,r,c,l),1===t?(t=1,!0===i&&(t|=8)):t=0,i=Cs(3,null,null,t),e.current=i,i.stateNode=e,i.memoizedState={element:n,isDehydrated:r,cache:null,transitions:null,pendingSuspenseBoundaries:null},Ci(i),e}function Zs(e){if(!e)return Eo;e:{if(Ze(e=e._reactInternals)!==e||1!==e.tag)throw Error(i(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(Po(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(null!==t);throw Error(i(171))}if(1===e.tag){var r=e.type;if(Po(r))return To(e,r,t)}return t}function Ys(e,t,r,n,o,i,a,c,l){return(e=Us(r,n,!0,e,0,i,0,c,l)).context=Zs(null),r=e.current,(i=Ai(n=ts(),o=rs(r))).callback=null!=t?t:null,Di(r,i,o),e.current.lanes=o,bt(e,o,n),os(e,n),e}function Ws(e,t,r,n){var o=t.current,i=ts(),a=rs(o);return r=Zs(r),null===t.context?t.context=r:t.pendingContext=r,(t=Ai(i,a)).payload={element:e},null!==(n=void 0===n?null:n)&&(t.callback=n),null!==(e=Di(o,t,a))&&(ns(e,o,a,i),Ti(e,o,a)),a}function Vs(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function Qs(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var r=e.retryLane;e.retryLane=0!==r&&r<t?r:t}}function Hs(e,t){Qs(e,t),(e=e.alternate)&&Qs(e,t)}Nl=function(e,t,r){if(null!==e)if(e.memoizedProps!==t.pendingProps||Oo.current)_c=!0;else{if(0==(e.lanes&r)&&0==(128&t.flags))return _c=!1,function(e,t,r){switch(t.tag){case 3:Oc(t),mi();break;case 5:aa(t);break;case 1:Po(t.type)&&zo(t);break;case 4:oa(t,t.stateNode.containerInfo);break;case 10:var n=t.type._context,o=t.memoizedProps.value;So(vi,n._currentValue),n._currentValue=o;break;case 13:if(null!==(n=t.memoizedState))return null!==n.dehydrated?(So(la,1&la.current),t.flags|=128,null):0!=(r&t.child.childLanes)?Bc(e,t,r):(So(la,1&la.current),null!==(e=Vc(e,t,r))?e.sibling:null);So(la,1&la.current);break;case 19:if(n=0!=(r&t.childLanes),0!=(128&e.flags)){if(n)return Yc(e,t,r);t.flags|=128}if(null!==(o=t.memoizedState)&&(o.rendering=null,o.tail=null,o.lastEffect=null),So(la,la.current),n)break;return null;case 22:case 23:return t.lanes=0,Mc(e,t,r)}return Vc(e,t,r)}(e,t,r);_c=0!=(131072&e.flags)}else _c=!1,ii&&0!=(1048576&t.flags)&&ei(t,Ho,t.index);switch(t.lanes=0,t.tag){case 2:var n=t.type;Wc(e,t),e=t.pendingProps;var o=Co(t,Lo.current);Mi(t,r),o=Na(null,t,n,e,o,r);var a=Ma();return t.flags|=1,\"object\"==typeof o&&null!==o&&\"function\"==typeof o.render&&void 0===o.$$typeof?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Po(n)?(a=!0,zo(t)):a=!1,t.memoizedState=null!==o.state&&void 0!==o.state?o.state:null,Ci(t),o.updater=Zi,t.stateNode=o,o._reactInternals=t,Qi(t,n,e,r),t=Lc(null,t,n,!0,a,r)):(t.tag=0,ii&&a&&ti(t),wc(null,t,o,r),t=t.child),t;case 16:n=t.elementType;e:{switch(Wc(e,t),e=t.pendingProps,n=(o=n._init)(n._payload),t.type=n,o=t.tag=function(e){if(\"function\"==typeof e)return Ps(e)?1:0;if(null!=e){if((e=e.$$typeof)===E)return 11;if(e===I)return 14}return 2}(n),e=bi(n,e),o){case 0:t=Sc(null,t,n,e,r);break e;case 1:t=Ec(null,t,n,e,r);break e;case 11:t=xc(null,t,n,e,r);break e;case 14:t=kc(null,t,n,bi(n.type,e),r);break e}throw Error(i(306,n,\"\"))}return t;case 0:return n=t.type,o=t.pendingProps,Sc(e,t,n,o=t.elementType===n?o:bi(n,o),r);case 1:return n=t.type,o=t.pendingProps,Ec(e,t,n,o=t.elementType===n?o:bi(n,o),r);case 3:e:{if(Oc(t),null===e)throw Error(i(387));n=t.pendingProps,o=(a=t.memoizedState).element,Pi(e,t),Bi(t,n,null,r);var c=t.memoizedState;if(n=c.element,a.isDehydrated){if(a={element:n,isDehydrated:!1,cache:c.cache,pendingSuspenseBoundaries:c.pendingSuspenseBoundaries,transitions:c.transitions},t.updateQueue.baseState=a,t.memoizedState=a,256&t.flags){t=Ic(e,t,n,r,o=uc(Error(i(423)),t));break e}if(n!==o){t=Ic(e,t,n,r,o=uc(Error(i(424)),t));break e}for(oi=so(t.stateNode.containerInfo.firstChild),ni=t,ii=!0,ai=null,r=Ki(t,null,n,r),t.child=r;r;)r.flags=-3&r.flags|4096,r=r.sibling}else{if(mi(),n===o){t=Vc(e,t,r);break e}wc(e,t,n,r)}t=t.child}return t;case 5:return aa(t),null===e&&ui(t),n=t.type,o=t.pendingProps,a=null!==e?e.memoizedProps:null,c=o.children,ro(n,o)?c=null:null!==a&&ro(n,a)&&(t.flags|=32),jc(e,t),wc(e,t,c,r),t.child;case 6:return null===e&&ui(t),null;case 13:return Bc(e,t,r);case 4:return oa(t,t.stateNode.containerInfo),n=t.pendingProps,null===e?t.child=Xi(t,null,n,r):wc(e,t,n,r),t.child;case 11:return n=t.type,o=t.pendingProps,xc(e,t,n,o=t.elementType===n?o:bi(n,o),r);case 7:return wc(e,t,t.pendingProps,r),t.child;case 8:case 12:return wc(e,t,t.pendingProps.children,r),t.child;case 10:e:{if(n=t.type._context,o=t.pendingProps,a=t.memoizedProps,c=o.value,So(vi,n._currentValue),n._currentValue=c,null!==a)if(cn(a.value,c)){if(a.children===o.children&&!Oo.current){t=Vc(e,t,r);break e}}else for(null!==(a=t.child)&&(a.return=t);null!==a;){var l=a.dependencies;if(null!==l){c=a.child;for(var s=l.firstContext;null!==s;){if(s.context===n){if(1===a.tag){(s=Ai(-1,r&-r)).tag=2;var u=a.updateQueue;if(null!==u){var p=(u=u.shared).pending;null===p?s.next=s:(s.next=p.next,p.next=s),u.pending=s}}a.lanes|=r,null!==(s=a.alternate)&&(s.lanes|=r),Ni(a.return,r,t),l.lanes|=r;break}s=s.next}}else if(10===a.tag)c=a.type===t.type?null:a.child;else if(18===a.tag){if(null===(c=a.return))throw Error(i(341));c.lanes|=r,null!==(l=c.alternate)&&(l.lanes|=r),Ni(c,r,t),c=a.sibling}else c=a.child;if(null!==c)c.return=a;else for(c=a;null!==c;){if(c===t){c=null;break}if(null!==(a=c.sibling)){a.return=c.return,c=a;break}c=c.return}a=c}wc(e,t,o.children,r),t=t.child}return t;case 9:return o=t.type,n=t.pendingProps.children,Mi(t,r),n=n(o=ji(o)),t.flags|=1,wc(e,t,n,r),t.child;case 14:return o=bi(n=t.type,t.pendingProps),kc(e,t,n,o=bi(n.type,o),r);case 15:return Nc(e,t,t.type,t.pendingProps,r);case 17:return n=t.type,o=t.pendingProps,o=t.elementType===n?o:bi(n,o),Wc(e,t),t.tag=1,Po(n)?(e=!0,zo(t)):e=!1,Mi(t,r),Wi(t,n,o),Qi(t,n,o,r),Lc(null,t,n,!0,e,r);case 19:return Yc(e,t,r);case 22:return Mc(e,t,r)}throw Error(i(156,t.tag))};var Gs=\"function\"==typeof reportError?reportError:function(e){console.error(e)};function qs(e){this._internalRoot=e}function $s(e){this._internalRoot=e}function Xs(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType)}function Ks(e){return!(!e||1!==e.nodeType&&9!==e.nodeType&&11!==e.nodeType&&(8!==e.nodeType||\" react-mount-point-unstable \"!==e.nodeValue))}function Js(){}function eu(e,t,r,n,o){var i=r._reactRootContainer;if(i){var a=i;if(\"function\"==typeof o){var c=o;o=function(){var e=Vs(a);c.call(e)}}Ws(t,a,e,o)}else a=function(e,t,r,n,o){if(o){if(\"function\"==typeof n){var i=n;n=function(){var e=Vs(a);i.call(e)}}var a=Ys(t,n,e,0,null,!1,0,\"\",Js);return e._reactRootContainer=a,e[yo]=a.current,Zn(8===e.nodeType?e.parentNode:e),ps(),a}for(;o=e.lastChild;)e.removeChild(o);if(\"function\"==typeof n){var c=n;n=function(){var e=Vs(l);c.call(e)}}var l=Us(e,0,!1,null,0,!1,0,\"\",Js);return e._reactRootContainer=l,e[yo]=l.current,Zn(8===e.nodeType?e.parentNode:e),ps((function(){Ws(t,l,r,n)})),l}(r,t,e,o,n);return Vs(a)}$s.prototype.render=qs.prototype.render=function(e){var t=this._internalRoot;if(null===t)throw Error(i(409));Ws(e,t,null,null)},$s.prototype.unmount=qs.prototype.unmount=function(){var e=this._internalRoot;if(null!==e){this._internalRoot=null;var t=e.containerInfo;ps((function(){Ws(null,e,null,null)})),t[yo]=null}},$s.prototype.unstable_scheduleHydration=function(e){if(e){var t=Nt();e={blockedOn:null,target:e,priority:t};for(var r=0;r<Pt.length&&0!==t&&t<Pt[r].priority;r++);Pt.splice(r,0,e),0===r&&zt(e)}},wt=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var r=pt(t.pendingLanes);0!==r&&(vt(t,1|r),os(t,Xe()),0==(6&Ll)&&(Yl=Xe()+500,Yo()))}break;case 13:ps((function(){var t=Oi(e,1);if(null!==t){var r=ts();ns(t,e,1,r)}})),Hs(e,1)}},xt=function(e){if(13===e.tag){var t=Oi(e,134217728);if(null!==t)ns(t,e,134217728,ts());Hs(e,134217728)}},kt=function(e){if(13===e.tag){var t=rs(e),r=Oi(e,t);if(null!==r)ns(r,e,t,ts());Hs(e,t)}},Nt=function(){return gt},Mt=function(e,t){var r=gt;try{return gt=e,t()}finally{gt=r}},xe=function(e,t,r){switch(t){case\"input\":if(K(e,r),t=r.name,\"radio\"===r.type&&null!=t){for(r=e;r.parentNode;)r=r.parentNode;for(r=r.querySelectorAll(\"input[name=\"+JSON.stringify(\"\"+t)+'][type=\"radio\"]'),t=0;t<r.length;t++){var n=r[t];if(n!==e&&n.form===e.form){var o=xo(n);if(!o)throw Error(i(90));H(n),K(n,o)}}}break;case\"textarea\":ie(e,r);break;case\"select\":null!=(t=r.value)&&re(e,!!r.multiple,t,!1)}},Ee=us,Le=ps;var tu={usingClientEntryPoint:!1,Events:[_o,wo,xo,je,Se,us]},ru={findFiberByHostInstance:go,bundleType:0,version:\"18.2.0\",rendererPackageName:\"react-dom\"},nu={bundleType:ru.bundleType,version:ru.version,rendererPackageName:ru.rendererPackageName,rendererConfig:ru.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:_.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return null===(e=Ve(e))?null:e.stateNode},findFiberByHostInstance:ru.findFiberByHostInstance||function(){return null},findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:\"18.2.0-next-9e3b772b8-20220608\"};if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var ou=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!ou.isDisabled&&ou.supportsFiber)try{ot=ou.inject(nu),it=ou}catch(ue){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=tu,t.createPortal=function(e,t){var r=2<arguments.length&&void 0!==arguments[2]?arguments[2]:null;if(!Xs(t))throw Error(i(200));return function(e,t,r){var n=3<arguments.length&&void 0!==arguments[3]?arguments[3]:null;return{$$typeof:x,key:null==n?null:\"\"+n,children:e,containerInfo:t,implementation:r}}(e,t,null,r)},t.createRoot=function(e,t){if(!Xs(e))throw Error(i(299));var r=!1,n=\"\",o=Gs;return null!=t&&(!0===t.unstable_strictMode&&(r=!0),void 0!==t.identifierPrefix&&(n=t.identifierPrefix),void 0!==t.onRecoverableError&&(o=t.onRecoverableError)),t=Us(e,1,!1,null,0,r,0,n,o),e[yo]=t.current,Zn(8===e.nodeType?e.parentNode:e),new qs(t)},t.findDOMNode=function(e){if(null==e)return null;if(1===e.nodeType)return e;var t=e._reactInternals;if(void 0===t){if(\"function\"==typeof e.render)throw Error(i(188));throw e=Object.keys(e).join(\",\"),Error(i(268,e))}return e=null===(e=Ve(t))?null:e.stateNode},t.flushSync=function(e){return ps(e)},t.hydrate=function(e,t,r){if(!Ks(t))throw Error(i(200));return eu(null,e,t,!0,r)},t.hydrateRoot=function(e,t,r){if(!Xs(e))throw Error(i(405));var n=null!=r&&r.hydratedSources||null,o=!1,a=\"\",c=Gs;if(null!=r&&(!0===r.unstable_strictMode&&(o=!0),void 0!==r.identifierPrefix&&(a=r.identifierPrefix),void 0!==r.onRecoverableError&&(c=r.onRecoverableError)),t=Ys(t,null,e,1,null!=r?r:null,o,0,a,c),e[yo]=t.current,Zn(e),n)for(e=0;e<n.length;e++)o=(o=(r=n[e])._getVersion)(r._source),null==t.mutableSourceEagerHydrationData?t.mutableSourceEagerHydrationData=[r,o]:t.mutableSourceEagerHydrationData.push(r,o);return new $s(t)},t.render=function(e,t,r){if(!Ks(t))throw Error(i(200));return eu(null,e,t,!1,r)},t.unmountComponentAtNode=function(e){if(!Ks(e))throw Error(i(40));return!!e._reactRootContainer&&(ps((function(){eu(null,null,e,!1,(function(){e._reactRootContainer=null,e[yo]=null}))})),!0)},t.unstable_batchedUpdates=us,t.unstable_renderSubtreeIntoContainer=function(e,t,r,n){if(!Ks(r))throw Error(i(200));if(null==e||void 0===e._reactInternals)throw Error(i(38));return eu(e,t,r,!1,n)},t.version=\"18.2.0-next-9e3b772b8-20220608\"},3935:(e,t,r)=>{\"use strict\";!function e(){if(\"undefined\"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&\"function\"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=r(4448)},9590:e=>{var t=\"undefined\"!=typeof Element,r=\"function\"==typeof Map,n=\"function\"==typeof Set,o=\"function\"==typeof ArrayBuffer&&!!ArrayBuffer.isView;function i(e,a){if(e===a)return!0;if(e&&a&&\"object\"==typeof e&&\"object\"==typeof a){if(e.constructor!==a.constructor)return!1;var c,l,s,u;if(Array.isArray(e)){if((c=e.length)!=a.length)return!1;for(l=c;0!=l--;)if(!i(e[l],a[l]))return!1;return!0}if(r&&e instanceof Map&&a instanceof Map){if(e.size!==a.size)return!1;for(u=e.entries();!(l=u.next()).done;)if(!a.has(l.value[0]))return!1;for(u=e.entries();!(l=u.next()).done;)if(!i(l.value[1],a.get(l.value[0])))return!1;return!0}if(n&&e instanceof Set&&a instanceof Set){if(e.size!==a.size)return!1;for(u=e.entries();!(l=u.next()).done;)if(!a.has(l.value[0]))return!1;return!0}if(o&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(a)){if((c=e.length)!=a.length)return!1;for(l=c;0!=l--;)if(e[l]!==a[l])return!1;return!0}if(e.constructor===RegExp)return e.source===a.source&&e.flags===a.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===a.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===a.toString();if((c=(s=Object.keys(e)).length)!==Object.keys(a).length)return!1;for(l=c;0!=l--;)if(!Object.prototype.hasOwnProperty.call(a,s[l]))return!1;if(t&&e instanceof Element)return!1;for(l=c;0!=l--;)if((\"_owner\"!==s[l]&&\"__v\"!==s[l]&&\"__o\"!==s[l]||!e.$$typeof)&&!i(e[s[l]],a[s[l]]))return!1;return!0}return e!=e&&a!=a}e.exports=function(e,t){try{return i(e,t)}catch(e){if((e.message||\"\").match(/stack|recursion/i))return console.warn(\"react-fast-compare cannot handle circular refs\"),!1;throw e}}},722:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o,i=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=l();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),a=(o=r(9590))&&o.__esModule?o:{default:o},c=r(5741);function l(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return l=function(){return e},e}function s(){return s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},s.apply(this,arguments)}function u(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function p(e,t){return p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},p(e,t)}function d(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=m(e);if(t){var i=m(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return f(e)}(this,r)}}function f(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function m(e){return m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},m(e)}function y(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var h=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&p(e,t)}(c,e);var t,r,n,o=d(c);function c(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,c);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return y(f(e=o.call.apply(o,[this].concat(r))),\"mounted\",!1),y(f(e),\"isReady\",!1),y(f(e),\"isPlaying\",!1),y(f(e),\"isLoading\",!0),y(f(e),\"loadOnReady\",null),y(f(e),\"startOnPlay\",!0),y(f(e),\"seekOnPlay\",null),y(f(e),\"onDurationCalled\",!1),y(f(e),\"handlePlayerMount\",(function(t){e.player=t,e.player.load(e.props.url),e.progress()})),y(f(e),\"getInternalPlayer\",(function(t){return e.player?e.player[t]:null})),y(f(e),\"progress\",(function(){if(e.props.url&&e.player&&e.isReady){var t=e.getCurrentTime()||0,r=e.getSecondsLoaded(),n=e.getDuration();if(n){var o={playedSeconds:t,played:t/n};null!==r&&(o.loadedSeconds=r,o.loaded=r/n),o.playedSeconds===e.prevPlayed&&o.loadedSeconds===e.prevLoaded||e.props.onProgress(o),e.prevPlayed=o.playedSeconds,e.prevLoaded=o.loadedSeconds}}e.progressTimeout=setTimeout(e.progress,e.props.progressFrequency||e.props.progressInterval)})),y(f(e),\"handleReady\",(function(){if(e.mounted){e.isReady=!0,e.isLoading=!1;var t=e.props,r=t.onReady,n=t.playing,o=t.volume,i=t.muted;r(),i||null===o||e.player.setVolume(o),e.loadOnReady?(e.player.load(e.loadOnReady,!0),e.loadOnReady=null):n&&e.player.play(),e.handleDurationCheck()}})),y(f(e),\"handlePlay\",(function(){e.isPlaying=!0,e.isLoading=!1;var t=e.props,r=t.onStart,n=t.onPlay,o=t.playbackRate;e.startOnPlay&&(e.player.setPlaybackRate&&1!==o&&e.player.setPlaybackRate(o),r(),e.startOnPlay=!1),n(),e.seekOnPlay&&(e.seekTo(e.seekOnPlay),e.seekOnPlay=null),e.handleDurationCheck()})),y(f(e),\"handlePause\",(function(t){e.isPlaying=!1,e.isLoading||e.props.onPause(t)})),y(f(e),\"handleEnded\",(function(){var t=e.props,r=t.activePlayer,n=t.loop,o=t.onEnded;r.loopOnEnded&&n&&e.seekTo(0),n||(e.isPlaying=!1,o())})),y(f(e),\"handleError\",(function(){var t;e.isLoading=!1,(t=e.props).onError.apply(t,arguments)})),y(f(e),\"handleDurationCheck\",(function(){clearTimeout(e.durationCheckTimeout);var t=e.getDuration();t?e.onDurationCalled||(e.props.onDuration(t),e.onDurationCalled=!0):e.durationCheckTimeout=setTimeout(e.handleDurationCheck,100)})),y(f(e),\"handleLoaded\",(function(){e.isLoading=!1})),e}return t=c,r=[{key:\"componentDidMount\",value:function(){this.mounted=!0}},{key:\"componentWillUnmount\",value:function(){clearTimeout(this.progressTimeout),clearTimeout(this.durationCheckTimeout),this.isReady&&this.props.stopOnUnmount&&(this.player.stop(),this.player.disablePIP&&this.player.disablePIP()),this.mounted=!1}},{key:\"componentDidUpdate\",value:function(e){var t=this;if(this.player){var r=this.props,n=r.url,o=r.playing,i=r.volume,c=r.muted,l=r.playbackRate,s=r.pip,u=r.loop,p=r.activePlayer;if(!(0,a.default)(e.url,n)){if(this.isLoading&&!p.forceLoad)return console.warn(\"ReactPlayer: the attempt to load \".concat(n,\" is being deferred until the player has loaded\")),void(this.loadOnReady=n);this.isLoading=!0,this.startOnPlay=!0,this.onDurationCalled=!1,this.player.load(n,this.isReady)}e.playing||!o||this.isPlaying||this.player.play(),e.playing&&!o&&this.isPlaying&&this.player.pause(),!e.pip&&s&&this.player.enablePIP&&this.player.enablePIP(),e.pip&&!s&&this.player.disablePIP&&this.player.disablePIP(),e.volume!==i&&null!==i&&this.player.setVolume(i),e.muted!==c&&(c?this.player.mute():(this.player.unmute(),null!==i&&setTimeout((function(){return t.player.setVolume(i)})))),e.playbackRate!==l&&this.player.setPlaybackRate&&this.player.setPlaybackRate(l),e.loop!==u&&this.player.setLoop&&this.player.setLoop(u)}}},{key:\"getDuration\",value:function(){return this.isReady?this.player.getDuration():null}},{key:\"getCurrentTime\",value:function(){return this.isReady?this.player.getCurrentTime():null}},{key:\"getSecondsLoaded\",value:function(){return this.isReady?this.player.getSecondsLoaded():null}},{key:\"seekTo\",value:function(e,t){var r=this;if(!this.isReady&&0!==e)return this.seekOnPlay=e,void setTimeout((function(){r.seekOnPlay=null}),5e3);if(t?\"fraction\"===t:e>0&&e<1){var n=this.player.getDuration();return n?void this.player.seekTo(n*e):void console.warn(\"ReactPlayer: could not seek using fraction – duration not yet available\")}this.player.seekTo(e)}},{key:\"render\",value:function(){var e=this.props.activePlayer;return e?i.default.createElement(e,s({},this.props,{onMount:this.handlePlayerMount,onReady:this.handleReady,onPlay:this.handlePlay,onPause:this.handlePause,onEnded:this.handleEnded,onLoaded:this.handleLoaded,onError:this.handleError})):null}}],r&&u(t.prototype,r),n&&u(t,n),c}(i.Component);t.default=h,y(h,\"displayName\",\"Player\"),y(h,\"propTypes\",c.propTypes),y(h,\"defaultProps\",c.defaultProps)},3855:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=i();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var a in e)if(Object.prototype.hasOwnProperty.call(e,a)){var c=o?Object.getOwnPropertyDescriptor(e,a):null;c&&(c.get||c.set)?Object.defineProperty(r,a,c):r[a]=e[a]}r.default=e,t&&t.set(e,r);return r}(r(7294));function i(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return i=function(){return e},e}function a(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function c(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?a(Object(r),!0).forEach((function(t){f(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):a(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function l(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function s(e,t){return s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},s(e,t)}function u(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=d(e);if(t){var i=d(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return p(e)}(this,r)}}function p(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},d(e)}function f(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var m=\"64px\",y={},h=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}(a,e);var t,r,n,i=u(a);function a(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,a);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return f(p(e=i.call.apply(i,[this].concat(r))),\"mounted\",!1),f(p(e),\"state\",{image:null}),f(p(e),\"handleKeyPress\",(function(t){\"Enter\"!==t.key&&\" \"!==t.key||e.props.onClick()})),e}return t=a,(r=[{key:\"componentDidMount\",value:function(){this.mounted=!0,this.fetchImage(this.props)}},{key:\"componentDidUpdate\",value:function(e){var t=this.props,r=t.url,n=t.light;e.url===r&&e.light===n||this.fetchImage(this.props)}},{key:\"componentWillUnmount\",value:function(){this.mounted=!1}},{key:\"fetchImage\",value:function(e){var t=this,r=e.url,n=e.light;if(\"string\"!=typeof n){if(!y[r])return this.setState({image:null}),window.fetch(\"https://noembed.com/embed?url=\".concat(r)).then((function(e){return e.json()})).then((function(e){if(e.thumbnail_url&&t.mounted){var n=e.thumbnail_url.replace(\"height=100\",\"height=480\");t.setState({image:n}),y[r]=n}}));this.setState({image:y[r]})}else this.setState({image:n})}},{key:\"render\",value:function(){var e=this.props,t=e.onClick,r=e.playIcon,n=e.previewTabIndex,i=this.state.image,a={display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},l={preview:c({width:\"100%\",height:\"100%\",backgroundImage:i?\"url(\".concat(i,\")\"):void 0,backgroundSize:\"cover\",backgroundPosition:\"center\",cursor:\"pointer\"},a),shadow:c({background:\"radial-gradient(rgb(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 60%)\",borderRadius:m,width:m,height:m},a),playIcon:{borderStyle:\"solid\",borderWidth:\"16px 0 16px 26px\",borderColor:\"transparent transparent transparent white\",marginLeft:\"7px\"}},s=o.default.createElement(\"div\",{style:l.shadow,className:\"react-player__shadow\"},o.default.createElement(\"div\",{style:l.playIcon,className:\"react-player__play-icon\"}));return o.default.createElement(\"div\",{style:l.preview,className:\"react-player__preview\",onClick:t,tabIndex:n,onKeyPress:this.handleKeyPress},r||s)}}])&&l(t.prototype,r),n&&l(t,n),a}(o.Component);t.default=h},390:(e,t,r)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.createReactPlayer=void 0;var n=N(r(7294)),o=u(r(9996)),i=u(r(845)),a=u(r(9590)),c=r(5741),l=r(8045),s=u(r(722));function u(e){return e&&e.__esModule?e:{default:e}}function p(e){return p=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},p(e)}function d(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function f(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?d(Object(r),!0).forEach((function(t){x(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):d(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function m(){return m=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},m.apply(this,arguments)}function y(e){return function(e){if(Array.isArray(e))return h(e)}(e)||function(e){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||function(e,t){if(!e)return;if(\"string\"==typeof e)return h(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===r&&e.constructor&&(r=e.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(e);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return h(e,t)}(e)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function h(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function b(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function v(e,t){return v=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},v(e,t)}function g(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=w(e);if(t){var o=w(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return function(e,t){if(t&&(\"object\"===p(t)||\"function\"==typeof t))return t;return _(e)}(this,r)}}function _(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function w(e){return w=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},w(e)}function x(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function k(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return k=function(){return e},e}function N(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==p(e)&&\"function\"!=typeof e)return{default:e};var t=k();if(t&&t.has(e))return t.get(e);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in e)if(Object.prototype.hasOwnProperty.call(e,o)){var i=n?Object.getOwnPropertyDescriptor(e,o):null;i&&(i.get||i.set)?Object.defineProperty(r,o,i):r[o]=e[o]}return r.default=e,t&&t.set(e,r),r}var M=(0,n.lazy)((function(){return Promise.resolve().then((function(){return N(r(3855))}))})),j=\"undefined\"!=typeof window&&window.document,S=void 0!==r.g&&r.g.window&&r.g.window.document,E=Object.keys(c.propTypes),L=j||S?n.Suspense:function(){return null},O=[];t.createReactPlayer=function(e,t){var r,u;return u=r=function(r){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&v(e,t)}(w,r);var u,p,d,h=g(w);function w(){var r;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,w);for(var a=arguments.length,u=new Array(a),p=0;p<a;p++)u[p]=arguments[p];return x(_(r=h.call.apply(h,[this].concat(u))),\"state\",{showPreview:!!r.props.light}),x(_(r),\"references\",{wrapper:function(e){r.wrapper=e},player:function(e){r.player=e}}),x(_(r),\"handleClickPreview\",(function(e){r.setState({showPreview:!1}),r.props.onClickPreview(e)})),x(_(r),\"showPreview\",(function(){r.setState({showPreview:!0})})),x(_(r),\"getDuration\",(function(){return r.player?r.player.getDuration():null})),x(_(r),\"getCurrentTime\",(function(){return r.player?r.player.getCurrentTime():null})),x(_(r),\"getSecondsLoaded\",(function(){return r.player?r.player.getSecondsLoaded():null})),x(_(r),\"getInternalPlayer\",(function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"player\";return r.player?r.player.getInternalPlayer(e):null})),x(_(r),\"seekTo\",(function(e,t){if(!r.player)return null;r.player.seekTo(e,t)})),x(_(r),\"handleReady\",(function(){r.props.onReady(_(r))})),x(_(r),\"getActivePlayer\",(0,i.default)((function(r){for(var n=0,o=[].concat(O,y(e));n<o.length;n++){var i=o[n];if(i.canPlay(r))return i}return t||null}))),x(_(r),\"getConfig\",(0,i.default)((function(e,t){var n=r.props.config;return o.default.all([c.defaultProps.config,c.defaultProps.config[t]||{},n,n[t]||{}])}))),x(_(r),\"getAttributes\",(0,i.default)((function(e){return(0,l.omit)(r.props,E)}))),x(_(r),\"renderActivePlayer\",(function(e){if(!e)return null;var t=r.getActivePlayer(e);if(!t)return null;var o=r.getConfig(e,t.key);return n.default.createElement(s.default,m({},r.props,{key:t.key,ref:r.references.player,config:o,activePlayer:t.lazyPlayer||t,onReady:r.handleReady}))})),r}return u=w,p=[{key:\"shouldComponentUpdate\",value:function(e,t){return!(0,a.default)(this.props,e)||!(0,a.default)(this.state,t)}},{key:\"componentDidUpdate\",value:function(e){var t=this.props.light;!e.light&&t&&this.setState({showPreview:!0}),e.light&&!t&&this.setState({showPreview:!1})}},{key:\"renderPreview\",value:function(e){if(!e)return null;var t=this.props,r=t.light,o=t.playIcon,i=t.previewTabIndex;return n.default.createElement(M,{url:e,light:r,playIcon:o,previewTabIndex:i,onClick:this.handleClickPreview})}},{key:\"render\",value:function(){var e=this.props,t=e.url,r=e.style,o=e.width,i=e.height,a=e.fallback,c=e.wrapper,l=this.state.showPreview,s=this.getAttributes(t);return n.default.createElement(c,m({ref:this.references.wrapper,style:f(f({},r),{},{width:o,height:i})},s),n.default.createElement(L,{fallback:a},l?this.renderPreview(t):this.renderActivePlayer(t)))}}],p&&b(u.prototype,p),d&&b(u,d),w}(n.Component),x(r,\"displayName\",\"ReactPlayer\"),x(r,\"propTypes\",c.propTypes),x(r,\"defaultProps\",c.defaultProps),x(r,\"addCustomPlayer\",(function(e){O.push(e)})),x(r,\"removeCustomPlayers\",(function(){O.length=0})),x(r,\"canPlay\",(function(t){for(var r=0,n=[].concat(O,y(e));r<n.length;r++){if(n[r].canPlay(t))return!0}return!1})),x(r,\"canEnablePIP\",(function(t){for(var r=0,n=[].concat(O,y(e));r<n.length;r++){var o=n[r];if(o.canEnablePIP&&o.canEnablePIP(t))return!0}return!1})),u}},2004:(e,t,r)=>{\"use strict\";t.Z=void 0;var n,o=(n=r(6497))&&n.__esModule?n:{default:n},i=r(390);var a=o.default[o.default.length-1],c=(0,i.createReactPlayer)(o.default,a);t.Z=c},1776:(e,t,r)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.canPlay=t.FLV_EXTENSIONS=t.DASH_EXTENSIONS=t.HLS_EXTENSIONS=t.VIDEO_EXTENSIONS=t.AUDIO_EXTENSIONS=t.MATCH_URL_KALTURA=t.MATCH_URL_VIDYARD=t.MATCH_URL_MIXCLOUD=t.MATCH_URL_DAILYMOTION=t.MATCH_URL_TWITCH_CHANNEL=t.MATCH_URL_TWITCH_VIDEO=t.MATCH_URL_WISTIA=t.MATCH_URL_STREAMABLE=t.MATCH_URL_FACEBOOK_WATCH=t.MATCH_URL_FACEBOOK=t.MATCH_URL_VIMEO=t.MATCH_URL_SOUNDCLOUD=t.MATCH_URL_YOUTUBE=void 0;var n=r(8045);function o(e,t){var r;if(\"undefined\"==typeof Symbol||null==e[Symbol.iterator]){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if(\"string\"==typeof e)return i(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===r&&e.constructor&&(r=e.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(e);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return i(e,t)}(e))||t&&e&&\"number\"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var a,c=!0,l=!1;return{s:function(){r=e[Symbol.iterator]()},n:function(){var e=r.next();return c=e.done,e},e:function(e){l=!0,a=e},f:function(){try{c||null==r.return||r.return()}finally{if(l)throw a}}}}function i(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var a=/(?:youtu\\.be\\/|youtube(?:-nocookie)?\\.com\\/(?:embed\\/|v\\/|watch\\/|watch\\?v=|watch\\?.+&v=))((\\w|-){11})|youtube\\.com\\/playlist\\?list=|youtube\\.com\\/user\\//;t.MATCH_URL_YOUTUBE=a;var c=/(?:soundcloud\\.com|snd\\.sc)\\/[^.]+$/;t.MATCH_URL_SOUNDCLOUD=c;var l=/vimeo\\.com\\/.+/;t.MATCH_URL_VIMEO=l;var s=/^https?:\\/\\/(www\\.)?facebook\\.com.*\\/(video(s)?|watch|story)(\\.php?|\\/).+$/;t.MATCH_URL_FACEBOOK=s;var u=/^https?:\\/\\/fb\\.watch\\/.+$/;t.MATCH_URL_FACEBOOK_WATCH=u;var p=/streamable\\.com\\/([a-z0-9]+)$/;t.MATCH_URL_STREAMABLE=p;var d=/(?:wistia\\.(?:com|net)|wi\\.st)\\/(?:medias|embed)\\/(?:iframe\\/)?(.*)$/;t.MATCH_URL_WISTIA=d;var f=/(?:www\\.|go\\.)?twitch\\.tv\\/videos\\/(\\d+)($|\\?)/;t.MATCH_URL_TWITCH_VIDEO=f;var m=/(?:www\\.|go\\.)?twitch\\.tv\\/([a-zA-Z0-9_]+)($|\\?)/;t.MATCH_URL_TWITCH_CHANNEL=m;var y=/^(?:(?:https?):)?(?:\\/\\/)?(?:www\\.)?(?:(?:dailymotion\\.com(?:\\/embed)?\\/video)|dai\\.ly)\\/([a-zA-Z0-9]+)(?:_[\\w_-]+)?$/;t.MATCH_URL_DAILYMOTION=y;var h=/mixcloud\\.com\\/([^/]+\\/[^/]+)/;t.MATCH_URL_MIXCLOUD=h;var b=/vidyard.com\\/(?:watch\\/)?([a-zA-Z0-9-]+)/;t.MATCH_URL_VIDYARD=b;var v=/^https?:\\/\\/[a-zA-Z]+\\.kaltura.(com|org)\\/p\\/([0-9]+)\\/sp\\/([0-9]+)00\\/embedIframeJs\\/uiconf_id\\/([0-9]+)\\/partner_id\\/([0-9]+)(.*)entry_id.([a-zA-Z0-9-_]+)$/;t.MATCH_URL_KALTURA=v;var g=/\\.(m4a|mp4a|mpga|mp2|mp2a|mp3|m2a|m3a|wav|weba|aac|oga|spx)($|\\?)/i;t.AUDIO_EXTENSIONS=g;var _=/\\.(mp4|og[gv]|webm|mov|m4v)($|\\?)/i;t.VIDEO_EXTENSIONS=_;var w=/\\.(m3u8)($|\\?)/i;t.HLS_EXTENSIONS=w;var x=/\\.(mpd)($|\\?)/i;t.DASH_EXTENSIONS=x;var k=/\\.(flv)($|\\?)/i;t.FLV_EXTENSIONS=k;var N={youtube:function(e){return e instanceof Array?e.every((function(e){return a.test(e)})):a.test(e)},soundcloud:function(e){return c.test(e)&&!g.test(e)},vimeo:function(e){return l.test(e)&&!_.test(e)&&!w.test(e)},facebook:function(e){return s.test(e)||u.test(e)},streamable:function(e){return p.test(e)},wistia:function(e){return d.test(e)},twitch:function(e){return f.test(e)||m.test(e)},dailymotion:function(e){return y.test(e)},mixcloud:function(e){return h.test(e)},vidyard:function(e){return b.test(e)},kaltura:function(e){return v.test(e)},file:function e(t){if(t instanceof Array){var r,i=o(t);try{for(i.s();!(r=i.n()).done;){var a=r.value;if(\"string\"==typeof a&&e(a))return!0;if(e(a.src))return!0}}catch(e){i.e(e)}finally{i.f()}return!1}return!(!(0,n.isMediaStream)(t)&&!(0,n.isBlobUrl)(t))||(g.test(t)||_.test(t)||w.test(t)||x.test(t)||k.test(t))}};t.canPlay=N},6807:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){b(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if(\"undefined\"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var r=[],n=!0,o=!1,i=void 0;try{for(var a,c=e[Symbol.iterator]();!(n=(a=c.next()).done)&&(r.push(a.value),!t||r.length!==t);n=!0);}catch(e){o=!0,i=e}finally{try{n||null==c.return||c.return()}finally{if(o)throw i}}return r}(e,t)||function(e,t){if(!e)return;if(\"string\"==typeof e)return p(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===r&&e.constructor&&(r=e.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(e);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return p(e,t)}(e,t)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function d(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t){return f=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},f(e,t)}function m(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=h(e);if(t){var i=h(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return y(e)}(this,r)}}function y(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},h(e)}function b(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var v=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&f(e,t)}(l,e);var t,r,n,c=m(l);function l(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,l);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return b(y(e=c.call.apply(c,[this].concat(r))),\"callPlayer\",i.callPlayer),b(y(e),\"onDurationChange\",(function(){var t=e.getDuration();e.props.onDuration(t)})),b(y(e),\"mute\",(function(){e.callPlayer(\"setMuted\",!0)})),b(y(e),\"unmute\",(function(){e.callPlayer(\"setMuted\",!1)})),b(y(e),\"ref\",(function(t){e.container=t})),e}return t=l,(r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e){var t=this,r=this.props,n=r.controls,o=r.config,c=r.onError,l=r.playing,p=u(e.match(a.MATCH_URL_DAILYMOTION),2)[1];this.player?this.player.load(p,{start:(0,i.parseStartTime)(e),autoplay:l}):(0,i.getSDK)(\"https://api.dmcdn.net/all.js\",\"DM\",\"dmAsyncInit\",(function(e){return e.player})).then((function(r){if(t.container){var a=r.player;t.player=new a(t.container,{width:\"100%\",height:\"100%\",video:p,params:s({controls:n,autoplay:t.props.playing,mute:t.props.muted,start:(0,i.parseStartTime)(e),origin:window.location.origin},o.params),events:{apiready:t.props.onReady,seeked:function(){return t.props.onSeek(t.player.currentTime)},video_end:t.props.onEnded,durationchange:t.onDurationChange,pause:t.props.onPause,playing:t.props.onPlay,waiting:t.props.onBuffer,error:function(e){return c(e)}}})}}),c)}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){}},{key:\"seekTo\",value:function(e){this.callPlayer(\"seek\",e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",e)}},{key:\"getDuration\",value:function(){return this.player.duration||null}},{key:\"getCurrentTime\",value:function(){return this.player.currentTime}},{key:\"getSecondsLoaded\",value:function(){return this.player.bufferedTime}},{key:\"render\",value:function(){var e={width:\"100%\",height:\"100%\",display:this.props.display};return o.default.createElement(\"div\",{style:e},o.default.createElement(\"div\",{ref:this.ref}))}}])&&d(t.prototype,r),n&&d(t,n),l}(o.Component);t.default=v,b(v,\"displayName\",\"DailyMotion\"),b(v,\"canPlay\",a.canPlay.dailymotion),b(v,\"loopOnEnded\",!0)},1972:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(){return l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},l.apply(this,arguments)}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function u(e,t){return u=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},u(e,t)}function p(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=f(e);if(t){var i=f(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return d(e)}(this,r)}}function d(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},f(e)}function m(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var y=\"https://connect.facebook.net/en_US/sdk.js\",h=\"fbAsyncInit\",b=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&u(e,t)}(c,e);var t,r,n,a=p(c);function c(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,c);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return m(d(e=a.call.apply(a,[this].concat(r))),\"callPlayer\",i.callPlayer),m(d(e),\"playerID\",e.props.config.playerId||\"\".concat(\"facebook-player-\").concat((0,i.randomString)())),m(d(e),\"mute\",(function(){e.callPlayer(\"mute\")})),m(d(e),\"unmute\",(function(){e.callPlayer(\"unmute\")})),e}return t=c,(r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e,t){var r=this;t?(0,i.getSDK)(y,\"FB\",h).then((function(e){return e.XFBML.parse()})):(0,i.getSDK)(y,\"FB\",h).then((function(e){e.init({appId:r.props.config.appId,xfbml:!0,version:r.props.config.version}),e.Event.subscribe(\"xfbml.render\",(function(e){r.props.onLoaded()})),e.Event.subscribe(\"xfbml.ready\",(function(e){\"video\"===e.type&&e.id===r.playerID&&(r.player=e.instance,r.player.subscribe(\"startedPlaying\",r.props.onPlay),r.player.subscribe(\"paused\",r.props.onPause),r.player.subscribe(\"finishedPlaying\",r.props.onEnded),r.player.subscribe(\"startedBuffering\",r.props.onBuffer),r.player.subscribe(\"finishedBuffering\",r.props.onBufferEnd),r.player.subscribe(\"error\",r.props.onError),r.props.muted?r.callPlayer(\"mute\"):r.callPlayer(\"unmute\"),r.props.onReady(),document.getElementById(r.playerID).querySelector(\"iframe\").style.visibility=\"visible\")}))}))}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){}},{key:\"seekTo\",value:function(e){this.callPlayer(\"seek\",e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",e)}},{key:\"getDuration\",value:function(){return this.callPlayer(\"getDuration\")}},{key:\"getCurrentTime\",value:function(){return this.callPlayer(\"getCurrentPosition\")}},{key:\"getSecondsLoaded\",value:function(){return null}},{key:\"render\",value:function(){var e=this.props.config.attributes;return o.default.createElement(\"div\",l({style:{width:\"100%\",height:\"100%\"},id:this.playerID,className:\"fb-video\",\"data-href\":this.props.url,\"data-autoplay\":this.props.playing?\"true\":\"false\",\"data-allowfullscreen\":\"true\",\"data-controls\":this.props.controls?\"true\":\"false\"},e))}}])&&s(t.prototype,r),n&&s(t,n),c}(o.Component);t.default=b,m(b,\"displayName\",\"Facebook\"),m(b,\"canPlay\",a.canPlay.facebook),m(b,\"loopOnEnded\",!0)},4926:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(){return l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},l.apply(this,arguments)}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function u(e,t){return u=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},u(e,t)}function p(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=f(e);if(t){var i=f(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return d(e)}(this,r)}}function d(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},f(e)}function m(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var y=\"undefined\"!=typeof navigator,h=y&&\"MacIntel\"===navigator.platform&&navigator.maxTouchPoints>1,b=y&&(/iPad|iPhone|iPod/.test(navigator.userAgent)||h)&&!window.MSStream,v=/www\\.dropbox\\.com\\/.+/,g=/https:\\/\\/watch\\.cloudflarestream\\.com\\/([a-z0-9]+)/,_=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&u(e,t)}(f,e);var t,r,n,c=p(f);function f(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,f);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return m(d(e=c.call.apply(c,[this].concat(r))),\"onReady\",(function(){var t;return(t=e.props).onReady.apply(t,arguments)})),m(d(e),\"onPlay\",(function(){var t;return(t=e.props).onPlay.apply(t,arguments)})),m(d(e),\"onBuffer\",(function(){var t;return(t=e.props).onBuffer.apply(t,arguments)})),m(d(e),\"onBufferEnd\",(function(){var t;return(t=e.props).onBufferEnd.apply(t,arguments)})),m(d(e),\"onPause\",(function(){var t;return(t=e.props).onPause.apply(t,arguments)})),m(d(e),\"onEnded\",(function(){var t;return(t=e.props).onEnded.apply(t,arguments)})),m(d(e),\"onError\",(function(){var t;return(t=e.props).onError.apply(t,arguments)})),m(d(e),\"onEnablePIP\",(function(){var t;return(t=e.props).onEnablePIP.apply(t,arguments)})),m(d(e),\"onDisablePIP\",(function(t){var r=e.props,n=r.onDisablePIP,o=r.playing;n(t),o&&e.play()})),m(d(e),\"onPresentationModeChange\",(function(t){if(e.player&&(0,i.supportsWebKitPresentationMode)(e.player)){var r=e.player.webkitPresentationMode;\"picture-in-picture\"===r?e.onEnablePIP(t):\"inline\"===r&&e.onDisablePIP(t)}})),m(d(e),\"onSeek\",(function(t){e.props.onSeek(t.target.currentTime)})),m(d(e),\"mute\",(function(){e.player.muted=!0})),m(d(e),\"unmute\",(function(){e.player.muted=!1})),m(d(e),\"renderSourceElement\",(function(e,t){return\"string\"==typeof e?o.default.createElement(\"source\",{key:t,src:e}):o.default.createElement(\"source\",l({key:t},e))})),m(d(e),\"renderTrack\",(function(e,t){return o.default.createElement(\"track\",l({key:t},e))})),m(d(e),\"ref\",(function(t){e.player&&(e.prevPlayer=e.player),e.player=t})),e}return t=f,(r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this),this.addListeners(this.player),b&&this.player.load()}},{key:\"componentDidUpdate\",value:function(e){this.shouldUseAudio(this.props)!==this.shouldUseAudio(e)&&(this.removeListeners(this.prevPlayer,e.url),this.addListeners(this.player)),this.props.url===e.url||(0,i.isMediaStream)(this.props.url)||(this.player.srcObject=null)}},{key:\"componentWillUnmount\",value:function(){this.removeListeners(this.player),this.hls&&this.hls.destroy()}},{key:\"addListeners\",value:function(e){var t=this.props,r=t.url,n=t.playsinline;e.addEventListener(\"play\",this.onPlay),e.addEventListener(\"waiting\",this.onBuffer),e.addEventListener(\"playing\",this.onBufferEnd),e.addEventListener(\"pause\",this.onPause),e.addEventListener(\"seeked\",this.onSeek),e.addEventListener(\"ended\",this.onEnded),e.addEventListener(\"error\",this.onError),e.addEventListener(\"enterpictureinpicture\",this.onEnablePIP),e.addEventListener(\"leavepictureinpicture\",this.onDisablePIP),e.addEventListener(\"webkitpresentationmodechanged\",this.onPresentationModeChange),this.shouldUseHLS(r)||e.addEventListener(\"canplay\",this.onReady),n&&(e.setAttribute(\"playsinline\",\"\"),e.setAttribute(\"webkit-playsinline\",\"\"),e.setAttribute(\"x5-playsinline\",\"\"))}},{key:\"removeListeners\",value:function(e,t){e.removeEventListener(\"canplay\",this.onReady),e.removeEventListener(\"play\",this.onPlay),e.removeEventListener(\"waiting\",this.onBuffer),e.removeEventListener(\"playing\",this.onBufferEnd),e.removeEventListener(\"pause\",this.onPause),e.removeEventListener(\"seeked\",this.onSeek),e.removeEventListener(\"ended\",this.onEnded),e.removeEventListener(\"error\",this.onError),e.removeEventListener(\"enterpictureinpicture\",this.onEnablePIP),e.removeEventListener(\"leavepictureinpicture\",this.onDisablePIP),e.removeEventListener(\"webkitpresentationmodechanged\",this.onPresentationModeChange),this.shouldUseHLS(t)||e.removeEventListener(\"canplay\",this.onReady)}},{key:\"shouldUseAudio\",value:function(e){return!e.config.forceVideo&&!e.config.attributes.poster&&(a.AUDIO_EXTENSIONS.test(e.url)||e.config.forceAudio)}},{key:\"shouldUseHLS\",value:function(e){return!!this.props.config.forceHLS||!b&&(a.HLS_EXTENSIONS.test(e)||g.test(e))}},{key:\"shouldUseDASH\",value:function(e){return a.DASH_EXTENSIONS.test(e)||this.props.config.forceDASH}},{key:\"shouldUseFLV\",value:function(e){return a.FLV_EXTENSIONS.test(e)||this.props.config.forceFLV}},{key:\"load\",value:function(e){var t=this,r=this.props.config,n=r.hlsVersion,o=r.hlsOptions,a=r.dashVersion,c=r.flvVersion;if(this.hls&&this.hls.destroy(),this.dash&&this.dash.reset(),this.shouldUseHLS(e)&&(0,i.getSDK)(\"https://cdn.jsdelivr.net/npm/hls.js@VERSION/dist/hls.min.js\".replace(\"VERSION\",n),\"Hls\").then((function(r){if(t.hls=new r(o),t.hls.on(r.Events.MANIFEST_PARSED,(function(){t.props.onReady()})),t.hls.on(r.Events.ERROR,(function(e,n){t.props.onError(e,n,t.hls,r)})),g.test(e)){var n=e.match(g)[1];t.hls.loadSource(\"https://videodelivery.net/{id}/manifest/video.m3u8\".replace(\"{id}\",n))}else t.hls.loadSource(e);t.hls.attachMedia(t.player),t.props.onLoaded()})),this.shouldUseDASH(e)&&(0,i.getSDK)(\"https://cdnjs.cloudflare.com/ajax/libs/dashjs/VERSION/dash.all.min.js\".replace(\"VERSION\",a),\"dashjs\").then((function(r){t.dash=r.MediaPlayer().create(),t.dash.initialize(t.player,e,t.props.playing),t.dash.on(\"error\",t.props.onError),parseInt(a)<3?t.dash.getDebug().setLogToBrowserConsole(!1):t.dash.updateSettings({debug:{logLevel:r.Debug.LOG_LEVEL_NONE}}),t.props.onLoaded()})),this.shouldUseFLV(e)&&(0,i.getSDK)(\"https://cdn.jsdelivr.net/npm/flv.js@VERSION/dist/flv.min.js\".replace(\"VERSION\",c),\"flvjs\").then((function(r){t.flv=r.createPlayer({type:\"flv\",url:e}),t.flv.attachMediaElement(t.player),t.flv.load(),t.props.onLoaded()})),e instanceof Array)this.player.load();else if((0,i.isMediaStream)(e))try{this.player.srcObject=e}catch(t){this.player.src=window.URL.createObjectURL(e)}}},{key:\"play\",value:function(){var e=this.player.play();e&&e.catch(this.props.onError)}},{key:\"pause\",value:function(){this.player.pause()}},{key:\"stop\",value:function(){this.player.removeAttribute(\"src\"),this.dash&&this.dash.reset()}},{key:\"seekTo\",value:function(e){this.player.currentTime=e}},{key:\"setVolume\",value:function(e){this.player.volume=e}},{key:\"enablePIP\",value:function(){this.player.requestPictureInPicture&&document.pictureInPictureElement!==this.player?this.player.requestPictureInPicture():(0,i.supportsWebKitPresentationMode)(this.player)&&\"picture-in-picture\"!==this.player.webkitPresentationMode&&this.player.webkitSetPresentationMode(\"picture-in-picture\")}},{key:\"disablePIP\",value:function(){document.exitPictureInPicture&&document.pictureInPictureElement===this.player?document.exitPictureInPicture():(0,i.supportsWebKitPresentationMode)(this.player)&&\"inline\"!==this.player.webkitPresentationMode&&this.player.webkitSetPresentationMode(\"inline\")}},{key:\"setPlaybackRate\",value:function(e){this.player.playbackRate=e}},{key:\"getDuration\",value:function(){if(!this.player)return null;var e=this.player,t=e.duration,r=e.seekable;return t===1/0&&r.length>0?r.end(r.length-1):t}},{key:\"getCurrentTime\",value:function(){return this.player?this.player.currentTime:null}},{key:\"getSecondsLoaded\",value:function(){if(!this.player)return null;var e=this.player.buffered;if(0===e.length)return 0;var t=e.end(e.length-1),r=this.getDuration();return t>r?r:t}},{key:\"getSource\",value:function(e){var t=this.shouldUseHLS(e),r=this.shouldUseDASH(e),n=this.shouldUseFLV(e);if(!(e instanceof Array||(0,i.isMediaStream)(e)||t||r||n))return v.test(e)?e.replace(\"www.dropbox.com\",\"dl.dropboxusercontent.com\"):e}},{key:\"render\",value:function(){var e=this.props,t=e.url,r=e.playing,n=e.loop,i=e.controls,a=e.muted,c=e.config,s=e.width,u=e.height,p=this.shouldUseAudio(this.props)?\"audio\":\"video\",d={width:\"auto\"===s?s:\"100%\",height:\"auto\"===u?u:\"100%\"};return o.default.createElement(p,l({ref:this.ref,src:this.getSource(t),style:d,preload:\"auto\",autoPlay:r||void 0,controls:i,muted:a,loop:n},c.attributes),t instanceof Array&&t.map(this.renderSourceElement),c.tracks.map(this.renderTrack))}}])&&s(t.prototype,r),n&&s(t,n),f}(o.Component);t.default=_,m(_,\"displayName\",\"FilePlayer\"),m(_,\"canPlay\",a.canPlay.file)},3911:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function s(e,t){return s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},s(e,t)}function u(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=d(e);if(t){var i=d(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return p(e)}(this,r)}}function p(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},d(e)}function f(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var m=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}(c,e);var t,r,n,a=u(c);function c(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,c);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return f(p(e=a.call.apply(a,[this].concat(r))),\"callPlayer\",i.callPlayer),f(p(e),\"duration\",null),f(p(e),\"currentTime\",null),f(p(e),\"secondsLoaded\",null),f(p(e),\"mute\",(function(){e.callPlayer(\"mute\")})),f(p(e),\"unmute\",(function(){e.callPlayer(\"unmute\")})),f(p(e),\"ref\",(function(t){e.iframe=t})),e}return t=c,(r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e){var t=this;(0,i.getSDK)(\"https://cdn.embed.ly/player-0.1.0.min.js\",\"playerjs\").then((function(e){t.iframe&&(t.player=new e.Player(t.iframe),t.player.on(\"ready\",(function(){t.player.isReady=!0,t.player.on(\"play\",t.props.onPlay),t.player.on(\"pause\",t.props.onPause),t.player.on(\"seeked\",t.props.onSeek),t.player.on(\"ended\",t.props.onEnded),t.player.on(\"error\",t.props.onError),t.player.on(\"timeupdate\",(function(e){var r=e.duration,n=e.seconds;t.duration=r,t.currentTime=n})),t.player.on(\"buffered\",(function(e){var r=e.percent;t.duration&&(t.secondsLoaded=t.duration*r)})),t.player.setLoop(t.props.loop),t.props.muted&&t.player.mute(),setTimeout((function(){t.props.onReady()}))})))}),this.props.onError)}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){}},{key:\"seekTo\",value:function(e){this.callPlayer(\"setCurrentTime\",e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",e)}},{key:\"setLoop\",value:function(e){this.callPlayer(\"setLoop\",e)}},{key:\"getDuration\",value:function(){return this.duration}},{key:\"getCurrentTime\",value:function(){return this.currentTime}},{key:\"getSecondsLoaded\",value:function(){return this.secondsLoaded}},{key:\"render\",value:function(){return o.default.createElement(\"iframe\",{ref:this.ref,src:this.props.url,frameBorder:\"0\",scrolling:\"no\",style:{width:\"100%\",height:\"100%\"},allowFullScreen:!0,allow:\"encrypted-media\",referrerPolicy:\"no-referrer-when-downgrade\"})}}])&&l(t.prototype,r),n&&l(t,n),c}(o.Component);t.default=m,f(m,\"displayName\",\"Kaltura\"),f(m,\"canPlay\",a.canPlay.kaltura)},143:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){y(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function u(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function p(e,t){return p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},p(e,t)}function d(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=m(e);if(t){var i=m(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return f(e)}(this,r)}}function f(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function m(e){return m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},m(e)}function y(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var h=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&p(e,t)}(l,e);var t,r,n,c=d(l);function l(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,l);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return y(f(e=c.call.apply(c,[this].concat(r))),\"callPlayer\",i.callPlayer),y(f(e),\"duration\",null),y(f(e),\"currentTime\",null),y(f(e),\"secondsLoaded\",null),y(f(e),\"mute\",(function(){})),y(f(e),\"unmute\",(function(){})),y(f(e),\"ref\",(function(t){e.iframe=t})),e}return t=l,r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e){var t=this;(0,i.getSDK)(\"https://widget.mixcloud.com/media/js/widgetApi.js\",\"Mixcloud\").then((function(e){t.player=e.PlayerWidget(t.iframe),t.player.ready.then((function(){t.player.events.play.on(t.props.onPlay),t.player.events.pause.on(t.props.onPause),t.player.events.ended.on(t.props.onEnded),t.player.events.error.on(t.props.error),t.player.events.progress.on((function(e,r){t.currentTime=e,t.duration=r})),t.props.onReady()}))}),this.props.onError)}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){}},{key:\"seekTo\",value:function(e){this.callPlayer(\"seek\",e)}},{key:\"setVolume\",value:function(e){}},{key:\"getDuration\",value:function(){return this.duration}},{key:\"getCurrentTime\",value:function(){return this.currentTime}},{key:\"getSecondsLoaded\",value:function(){return null}},{key:\"render\",value:function(){var e=this.props,t=e.url,r=e.config,n=t.match(a.MATCH_URL_MIXCLOUD)[1],c=(0,i.queryString)(s(s({},r.options),{},{feed:\"/\".concat(n,\"/\")}));return o.default.createElement(\"iframe\",{key:n,ref:this.ref,style:{width:\"100%\",height:\"100%\"},src:\"https://www.mixcloud.com/widget/iframe/?\".concat(c),frameBorder:\"0\"})}}],r&&u(t.prototype,r),n&&u(t,n),l}(o.Component);t.default=h,y(h,\"displayName\",\"Mixcloud\"),y(h,\"canPlay\",a.canPlay.mixcloud),y(h,\"loopOnEnded\",!0)},2648:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){y(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function u(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function p(e,t){return p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},p(e,t)}function d(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=m(e);if(t){var i=m(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return f(e)}(this,r)}}function f(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function m(e){return m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},m(e)}function y(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var h=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&p(e,t)}(c,e);var t,r,n,a=d(c);function c(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,c);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return y(f(e=a.call.apply(a,[this].concat(r))),\"callPlayer\",i.callPlayer),y(f(e),\"duration\",null),y(f(e),\"currentTime\",null),y(f(e),\"fractionLoaded\",null),y(f(e),\"mute\",(function(){e.setVolume(0)})),y(f(e),\"unmute\",(function(){null!==e.props.volume&&e.setVolume(e.props.volume)})),y(f(e),\"ref\",(function(t){e.iframe=t})),e}return t=c,(r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e,t){var r=this;(0,i.getSDK)(\"https://w.soundcloud.com/player/api.js\",\"SC\").then((function(n){if(r.iframe){var o=n.Widget.Events,i=o.PLAY,a=o.PLAY_PROGRESS,c=o.PAUSE,l=o.FINISH,u=o.ERROR;t||(r.player=n.Widget(r.iframe),r.player.bind(i,r.props.onPlay),r.player.bind(c,(function(){r.duration-r.currentTime<.05||r.props.onPause()})),r.player.bind(a,(function(e){r.currentTime=e.currentPosition/1e3,r.fractionLoaded=e.loadedProgress})),r.player.bind(l,(function(){return r.props.onEnded()})),r.player.bind(u,(function(e){return r.props.onError(e)}))),r.player.load(e,s(s({},r.props.config.options),{},{callback:function(){r.player.getDuration((function(e){r.duration=e/1e3,r.props.onReady()}))}}))}}))}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){}},{key:\"seekTo\",value:function(e){this.callPlayer(\"seekTo\",1e3*e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",100*e)}},{key:\"getDuration\",value:function(){return this.duration}},{key:\"getCurrentTime\",value:function(){return this.currentTime}},{key:\"getSecondsLoaded\",value:function(){return this.fractionLoaded*this.duration}},{key:\"render\",value:function(){var e={width:\"100%\",height:\"100%\",display:this.props.display};return o.default.createElement(\"iframe\",{ref:this.ref,src:\"https://w.soundcloud.com/player/?url=\".concat(encodeURIComponent(this.props.url)),style:e,frameBorder:0,allow:\"autoplay\"})}}])&&u(t.prototype,r),n&&u(t,n),c}(o.Component);t.default=h,y(h,\"displayName\",\"SoundCloud\"),y(h,\"canPlay\",a.canPlay.soundcloud),y(h,\"loopOnEnded\",!0)},993:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function s(e,t){return s=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},s(e,t)}function u(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=d(e);if(t){var i=d(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return p(e)}(this,r)}}function p(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function d(e){return d=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},d(e)}function f(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var m=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&s(e,t)}(d,e);var t,r,n,c=u(d);function d(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,d);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return f(p(e=c.call.apply(c,[this].concat(r))),\"callPlayer\",i.callPlayer),f(p(e),\"duration\",null),f(p(e),\"currentTime\",null),f(p(e),\"secondsLoaded\",null),f(p(e),\"mute\",(function(){e.callPlayer(\"mute\")})),f(p(e),\"unmute\",(function(){e.callPlayer(\"unmute\")})),f(p(e),\"ref\",(function(t){e.iframe=t})),e}return t=d,(r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e){var t=this;(0,i.getSDK)(\"https://cdn.embed.ly/player-0.1.0.min.js\",\"playerjs\").then((function(e){t.iframe&&(t.player=new e.Player(t.iframe),t.player.setLoop(t.props.loop),t.player.on(\"ready\",t.props.onReady),t.player.on(\"play\",t.props.onPlay),t.player.on(\"pause\",t.props.onPause),t.player.on(\"seeked\",t.props.onSeek),t.player.on(\"ended\",t.props.onEnded),t.player.on(\"error\",t.props.onError),t.player.on(\"timeupdate\",(function(e){var r=e.duration,n=e.seconds;t.duration=r,t.currentTime=n})),t.player.on(\"buffered\",(function(e){var r=e.percent;t.duration&&(t.secondsLoaded=t.duration*r)})),t.props.muted&&t.player.mute())}),this.props.onError)}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){}},{key:\"seekTo\",value:function(e){this.callPlayer(\"setCurrentTime\",e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",100*e)}},{key:\"setLoop\",value:function(e){this.callPlayer(\"setLoop\",e)}},{key:\"getDuration\",value:function(){return this.duration}},{key:\"getCurrentTime\",value:function(){return this.currentTime}},{key:\"getSecondsLoaded\",value:function(){return this.secondsLoaded}},{key:\"render\",value:function(){var e=this.props.url.match(a.MATCH_URL_STREAMABLE)[1];return o.default.createElement(\"iframe\",{ref:this.ref,src:\"https://streamable.com/o/\".concat(e),frameBorder:\"0\",scrolling:\"no\",style:{width:\"100%\",height:\"100%\"},allowFullScreen:!0})}}])&&l(t.prototype,r),n&&l(t,n),d}(o.Component);t.default=m,f(m,\"displayName\",\"Streamable\"),f(m,\"canPlay\",a.canPlay.streamable)},9482:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function u(e,t){return u=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},u(e,t)}function p(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=f(e);if(t){var i=f(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return d(e)}(this,r)}}function d(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},f(e)}function m(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var y=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&u(e,t)}(f,e);var t,r,n,c=p(f);function f(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,f);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return m(d(e=c.call.apply(c,[this].concat(r))),\"callPlayer\",i.callPlayer),m(d(e),\"playerID\",e.props.config.playerId||\"\".concat(\"twitch-player-\").concat((0,i.randomString)())),m(d(e),\"mute\",(function(){e.callPlayer(\"setMuted\",!0)})),m(d(e),\"unmute\",(function(){e.callPlayer(\"setMuted\",!1)})),e}return t=f,r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e,t){var r=this,n=this.props,o=n.playsinline,c=n.onError,s=n.config,u=n.controls,p=a.MATCH_URL_TWITCH_CHANNEL.test(e),d=p?e.match(a.MATCH_URL_TWITCH_CHANNEL)[1]:e.match(a.MATCH_URL_TWITCH_VIDEO)[1];t?p?this.player.setChannel(d):this.player.setVideo(\"v\"+d):(0,i.getSDK)(\"https://player.twitch.tv/js/embed/v1.js\",\"Twitch\").then((function(t){r.player=new t.Player(r.playerID,function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){m(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({video:p?\"\":d,channel:p?d:\"\",height:\"100%\",width:\"100%\",playsinline:o,autoplay:r.props.playing,muted:r.props.muted,controls:!!p||u,time:(0,i.parseStartTime)(e)},s.options));var n=t.Player,a=n.READY,c=n.PLAYING,f=n.PAUSE,y=n.ENDED,h=n.ONLINE,b=n.OFFLINE;r.player.addEventListener(a,r.props.onReady),r.player.addEventListener(c,r.props.onPlay),r.player.addEventListener(f,r.props.onPause),r.player.addEventListener(y,r.props.onEnded),r.player.addEventListener(h,r.props.onLoaded),r.player.addEventListener(b,r.props.onLoaded)}),c)}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){this.callPlayer(\"pause\")}},{key:\"seekTo\",value:function(e){this.callPlayer(\"seek\",e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",e)}},{key:\"getDuration\",value:function(){return this.callPlayer(\"getDuration\")}},{key:\"getCurrentTime\",value:function(){return this.callPlayer(\"getCurrentTime\")}},{key:\"getSecondsLoaded\",value:function(){return null}},{key:\"render\",value:function(){return o.default.createElement(\"div\",{style:{width:\"100%\",height:\"100%\"},id:this.playerID})}}],r&&s(t.prototype,r),n&&s(t,n),f}(o.Component);t.default=y,m(y,\"displayName\",\"Twitch\"),m(y,\"canPlay\",a.canPlay.twitch),m(y,\"loopOnEnded\",!0)},6596:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function u(e,t){return u=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},u(e,t)}function p(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=f(e);if(t){var i=f(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return d(e)}(this,r)}}function d(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},f(e)}function m(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var y=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&u(e,t)}(f,e);var t,r,n,c=p(f);function f(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,f);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return m(d(e=c.call.apply(c,[this].concat(r))),\"callPlayer\",i.callPlayer),m(d(e),\"mute\",(function(){e.setVolume(0)})),m(d(e),\"unmute\",(function(){null!==e.props.volume&&e.setVolume(e.props.volume)})),m(d(e),\"ref\",(function(t){e.container=t})),e}return t=f,r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e){var t=this,r=this.props,n=r.playing,o=r.config,c=r.onError,s=r.onDuration,u=e&&e.match(a.MATCH_URL_VIDYARD)[1];this.player&&this.stop(),(0,i.getSDK)(\"https://play.vidyard.com/embed/v4.js\",\"VidyardV4\",\"onVidyardAPI\").then((function(e){t.container&&(e.api.addReadyListener((function(e,r){t.player=r,t.player.on(\"ready\",t.props.onReady),t.player.on(\"play\",t.props.onPlay),t.player.on(\"pause\",t.props.onPause),t.player.on(\"seek\",t.props.onSeek),t.player.on(\"playerComplete\",t.props.onEnded)}),u),e.api.renderPlayer(function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){m(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({uuid:u,container:t.container,autoplay:n?1:0},o.options)),e.api.getPlayerMetadata(u).then((function(e){t.duration=e.length_in_seconds,s(e.length_in_seconds)})))}),c)}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){window.VidyardV4.api.destroyPlayer(this.player)}},{key:\"seekTo\",value:function(e){this.callPlayer(\"seek\",e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",e)}},{key:\"setPlaybackRate\",value:function(e){this.callPlayer(\"setPlaybackSpeed\",e)}},{key:\"getDuration\",value:function(){return this.duration}},{key:\"getCurrentTime\",value:function(){return this.callPlayer(\"currentTime\")}},{key:\"getSecondsLoaded\",value:function(){return null}},{key:\"render\",value:function(){var e={width:\"100%\",height:\"100%\",display:this.props.display};return o.default.createElement(\"div\",{style:e},o.default.createElement(\"div\",{ref:this.ref}))}}],r&&s(t.prototype,r),n&&s(t,n),f}(o.Component);t.default=y,m(y,\"displayName\",\"Vidyard\"),m(y,\"canPlay\",a.canPlay.vidyard)},868:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function u(e,t){return u=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},u(e,t)}function p(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=f(e);if(t){var i=f(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return d(e)}(this,r)}}function d(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},f(e)}function m(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var y=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&u(e,t)}(c,e);var t,r,n,a=p(c);function c(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,c);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return m(d(e=a.call.apply(a,[this].concat(r))),\"callPlayer\",i.callPlayer),m(d(e),\"duration\",null),m(d(e),\"currentTime\",null),m(d(e),\"secondsLoaded\",null),m(d(e),\"mute\",(function(){e.setVolume(0)})),m(d(e),\"unmute\",(function(){null!==e.props.volume&&e.setVolume(e.props.volume)})),m(d(e),\"ref\",(function(t){e.container=t})),e}return t=c,r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e){var t=this;this.duration=null,(0,i.getSDK)(\"https://player.vimeo.com/api/player.js\",\"Vimeo\").then((function(r){t.container&&(t.player=new r.Player(t.container,function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){m(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({url:e,autoplay:t.props.playing,muted:t.props.muted,loop:t.props.loop,playsinline:t.props.playsinline,controls:t.props.controls},t.props.config.playerOptions)),t.player.ready().then((function(){var e=t.container.querySelector(\"iframe\");e.style.width=\"100%\",e.style.height=\"100%\"})).catch(t.props.onError),t.player.on(\"loaded\",(function(){t.props.onReady(),t.refreshDuration()})),t.player.on(\"play\",(function(){t.props.onPlay(),t.refreshDuration()})),t.player.on(\"pause\",t.props.onPause),t.player.on(\"seeked\",(function(e){return t.props.onSeek(e.seconds)})),t.player.on(\"ended\",t.props.onEnded),t.player.on(\"error\",t.props.onError),t.player.on(\"timeupdate\",(function(e){var r=e.seconds;t.currentTime=r})),t.player.on(\"progress\",(function(e){var r=e.seconds;t.secondsLoaded=r})),t.player.on(\"bufferstart\",t.props.onBuffer),t.player.on(\"bufferend\",t.props.onBufferEnd))}),this.props.onError)}},{key:\"refreshDuration\",value:function(){var e=this;this.player.getDuration().then((function(t){e.duration=t}))}},{key:\"play\",value:function(){var e=this.callPlayer(\"play\");e&&e.catch(this.props.onError)}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){this.callPlayer(\"unload\")}},{key:\"seekTo\",value:function(e){this.callPlayer(\"setCurrentTime\",e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",e)}},{key:\"setLoop\",value:function(e){this.callPlayer(\"setLoop\",e)}},{key:\"setPlaybackRate\",value:function(e){this.callPlayer(\"setPlaybackRate\",e)}},{key:\"getDuration\",value:function(){return this.duration}},{key:\"getCurrentTime\",value:function(){return this.currentTime}},{key:\"getSecondsLoaded\",value:function(){return this.secondsLoaded}},{key:\"render\",value:function(){var e={width:\"100%\",height:\"100%\",overflow:\"hidden\",display:this.props.display};return o.default.createElement(\"div\",{key:this.props.url,ref:this.ref,style:e})}}],r&&s(t.prototype,r),n&&s(t,n),c}(o.Component);t.default=y,m(y,\"displayName\",\"Vimeo\"),m(y,\"canPlay\",a.canPlay.vimeo),m(y,\"forceLoad\",!0)},8018:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){y(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function u(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function p(e,t){return p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},p(e,t)}function d(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=m(e);if(t){var i=m(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return f(e)}(this,r)}}function f(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function m(e){return m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},m(e)}function y(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var h=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&p(e,t)}(l,e);var t,r,n,c=d(l);function l(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,l);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return y(f(e=c.call.apply(c,[this].concat(r))),\"callPlayer\",i.callPlayer),y(f(e),\"playerID\",e.props.config.playerId||\"\".concat(\"wistia-player-\").concat((0,i.randomString)())),y(f(e),\"onPlay\",(function(){var t;return(t=e.props).onPlay.apply(t,arguments)})),y(f(e),\"onPause\",(function(){var t;return(t=e.props).onPause.apply(t,arguments)})),y(f(e),\"onSeek\",(function(){var t;return(t=e.props).onSeek.apply(t,arguments)})),y(f(e),\"onEnded\",(function(){var t;return(t=e.props).onEnded.apply(t,arguments)})),y(f(e),\"mute\",(function(){e.callPlayer(\"mute\")})),y(f(e),\"unmute\",(function(){e.callPlayer(\"unmute\")})),e}return t=l,r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"load\",value:function(e){var t=this,r=this.props,n=r.playing,o=r.muted,a=r.controls,c=r.onReady,l=r.config,u=r.onError;(0,i.getSDK)(\"https://fast.wistia.com/assets/external/E-v1.js\",\"Wistia\").then((function(e){l.customControls&&l.customControls.forEach((function(t){return e.defineControl(t)})),window._wq=window._wq||[],window._wq.push({id:t.playerID,options:s({autoPlay:n,silentAutoPlay:\"allow\",muted:o,controlsVisibleOnLoad:a,fullscreenButton:a,playbar:a,playbackRateControl:a,qualityControl:a,volumeControl:a,settingsControl:a,smallPlayButton:a},l.options),onReady:function(e){t.player=e,t.unbind(),t.player.bind(\"play\",t.onPlay),t.player.bind(\"pause\",t.onPause),t.player.bind(\"seek\",t.onSeek),t.player.bind(\"end\",t.onEnded),c()}})}),u)}},{key:\"unbind\",value:function(){this.player.unbind(\"play\",this.onPlay),this.player.unbind(\"pause\",this.onPause),this.player.unbind(\"seek\",this.onSeek),this.player.unbind(\"end\",this.onEnded)}},{key:\"play\",value:function(){this.callPlayer(\"play\")}},{key:\"pause\",value:function(){this.callPlayer(\"pause\")}},{key:\"stop\",value:function(){this.unbind(),this.callPlayer(\"remove\")}},{key:\"seekTo\",value:function(e){this.callPlayer(\"time\",e)}},{key:\"setVolume\",value:function(e){this.callPlayer(\"volume\",e)}},{key:\"setPlaybackRate\",value:function(e){this.callPlayer(\"playbackRate\",e)}},{key:\"getDuration\",value:function(){return this.callPlayer(\"duration\")}},{key:\"getCurrentTime\",value:function(){return this.callPlayer(\"time\")}},{key:\"getSecondsLoaded\",value:function(){return null}},{key:\"render\",value:function(){var e=this.props.url,t=e&&e.match(a.MATCH_URL_WISTIA)[1],r=\"wistia_embed wistia_async_\".concat(t);return o.default.createElement(\"div\",{id:this.playerID,key:t,className:r,style:{width:\"100%\",height:\"100%\"}})}}],r&&u(t.prototype,r),n&&u(t,n),l}(o.Component);t.default=h,y(h,\"displayName\",\"Wistia\"),y(h,\"canPlay\",a.canPlay.wistia),y(h,\"loopOnEnded\",!0)},356:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=function(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==n(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},o=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var i in e)if(Object.prototype.hasOwnProperty.call(e,i)){var a=o?Object.getOwnPropertyDescriptor(e,i):null;a&&(a.get||a.set)?Object.defineProperty(r,i,a):r[i]=e[i]}r.default=e,t&&t.set(e,r);return r}(r(7294)),i=r(8045),a=r(1776);function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){b(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function u(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if(\"undefined\"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var r=[],n=!0,o=!1,i=void 0;try{for(var a,c=e[Symbol.iterator]();!(n=(a=c.next()).done)&&(r.push(a.value),!t||r.length!==t);n=!0);}catch(e){o=!0,i=e}finally{try{n||null==c.return||c.return()}finally{if(o)throw i}}return r}(e,t)||function(e,t){if(!e)return;if(\"string\"==typeof e)return p(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===r&&e.constructor&&(r=e.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(e);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return p(e,t)}(e,t)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function p(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function d(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function f(e,t){return f=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},f(e,t)}function m(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=h(e);if(t){var i=h(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;return y(e)}(this,r)}}function y(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function h(e){return h=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},h(e)}function b(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var v=/[?&](?:list|channel)=([a-zA-Z0-9_-]+)/,g=/user\\/([a-zA-Z0-9_-]+)\\/?/,_=/youtube-nocookie\\.com/,w=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&f(e,t)}(l,e);var t,r,n,c=m(l);function l(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,l);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return b(y(e=c.call.apply(c,[this].concat(r))),\"callPlayer\",i.callPlayer),b(y(e),\"parsePlaylist\",(function(t){return t instanceof Array?{listType:\"playlist\",playlist:t.map(e.getID).join(\",\")}:v.test(t)?{listType:\"playlist\",list:u(t.match(v),2)[1].replace(/^UC/,\"UU\")}:g.test(t)?{listType:\"user_uploads\",list:u(t.match(g),2)[1]}:{}})),b(y(e),\"onStateChange\",(function(t){var r=t.data,n=e.props,o=n.onPlay,i=n.onPause,a=n.onBuffer,c=n.onBufferEnd,l=n.onEnded,s=n.onReady,u=n.loop,p=n.config,d=p.playerVars,f=p.onUnstarted,m=window.YT.PlayerState,y=m.UNSTARTED,h=m.PLAYING,b=m.PAUSED,v=m.BUFFERING,g=m.ENDED,_=m.CUED;if(r===y&&f(),r===h&&(o(),c()),r===b&&i(),r===v&&a(),r===g){var w=!!e.callPlayer(\"getPlaylist\");u&&!w&&(d.start?e.seekTo(d.start):e.play()),l()}r===_&&s()})),b(y(e),\"mute\",(function(){e.callPlayer(\"mute\")})),b(y(e),\"unmute\",(function(){e.callPlayer(\"unMute\")})),b(y(e),\"ref\",(function(t){e.container=t})),e}return t=l,(r=[{key:\"componentDidMount\",value:function(){this.props.onMount&&this.props.onMount(this)}},{key:\"getID\",value:function(e){return!e||e instanceof Array||v.test(e)?null:e.match(a.MATCH_URL_YOUTUBE)[1]}},{key:\"load\",value:function(e,t){var r=this,n=this.props,o=n.playing,a=n.muted,c=n.playsinline,l=n.controls,u=n.loop,p=n.config,d=n.onError,f=p.playerVars,m=p.embedOptions,y=this.getID(e);if(t)return v.test(e)||g.test(e)||e instanceof Array?void this.player.loadPlaylist(this.parsePlaylist(e)):void this.player.cueVideoById({videoId:y,startSeconds:(0,i.parseStartTime)(e)||f.start,endSeconds:(0,i.parseEndTime)(e)||f.end});(0,i.getSDK)(\"https://www.youtube.com/iframe_api\",\"YT\",\"onYouTubeIframeAPIReady\",(function(e){return e.loaded})).then((function(t){r.container&&(r.player=new t.Player(r.container,s({width:\"100%\",height:\"100%\",videoId:y,playerVars:s(s({autoplay:o?1:0,mute:a?1:0,controls:l?1:0,start:(0,i.parseStartTime)(e),end:(0,i.parseEndTime)(e),origin:window.location.origin,playsinline:c?1:0},r.parsePlaylist(e)),f),events:{onReady:function(){u&&r.player.setLoop(!0),r.props.onReady()},onStateChange:r.onStateChange,onError:function(e){return d(e.data)}},host:_.test(e)?\"https://www.youtube-nocookie.com\":void 0},m)))}),d),m.events&&console.warn(\"Using `embedOptions.events` will likely break things. Use ReactPlayer’s callback props instead, eg onReady, onPlay, onPause\")}},{key:\"play\",value:function(){this.callPlayer(\"playVideo\")}},{key:\"pause\",value:function(){this.callPlayer(\"pauseVideo\")}},{key:\"stop\",value:function(){document.body.contains(this.callPlayer(\"getIframe\"))&&this.callPlayer(\"stopVideo\")}},{key:\"seekTo\",value:function(e){this.callPlayer(\"seekTo\",e),this.props.playing||this.pause()}},{key:\"setVolume\",value:function(e){this.callPlayer(\"setVolume\",100*e)}},{key:\"setPlaybackRate\",value:function(e){this.callPlayer(\"setPlaybackRate\",e)}},{key:\"setLoop\",value:function(e){this.callPlayer(\"setLoop\",e)}},{key:\"getDuration\",value:function(){return this.callPlayer(\"getDuration\")}},{key:\"getCurrentTime\",value:function(){return this.callPlayer(\"getCurrentTime\")}},{key:\"getSecondsLoaded\",value:function(){return this.callPlayer(\"getVideoLoadedFraction\")*this.getDuration()}},{key:\"render\",value:function(){var e={width:\"100%\",height:\"100%\",display:this.props.display};return o.default.createElement(\"div\",{style:e},o.default.createElement(\"div\",{ref:this.ref}))}}])&&d(t.prototype,r),n&&d(t,n),l}(o.Component);t.default=w,b(w,\"displayName\",\"YouTube\"),b(w,\"canPlay\",a.canPlay.youtube)},6497:(e,t,r)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var n=r(7294),o=r(8045),i=r(1776);function a(e){return a=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},a(e)}function c(){if(\"function\"!=typeof WeakMap)return null;var e=new WeakMap;return c=function(){return e},e}function l(e){if(e&&e.__esModule)return e;if(null===e||\"object\"!==a(e)&&\"function\"!=typeof e)return{default:e};var t=c();if(t&&t.has(e))return t.get(e);var r={},n=Object.defineProperty&&Object.getOwnPropertyDescriptor;for(var o in e)if(Object.prototype.hasOwnProperty.call(e,o)){var i=n?Object.getOwnPropertyDescriptor(e,o):null;i&&(i.get||i.set)?Object.defineProperty(r,o,i):r[o]=e[o]}return r.default=e,t&&t.set(e,r),r}var s=[{key:\"youtube\",name:\"YouTube\",canPlay:i.canPlay.youtube,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(356))}))}))},{key:\"soundcloud\",name:\"SoundCloud\",canPlay:i.canPlay.soundcloud,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(2648))}))}))},{key:\"vimeo\",name:\"Vimeo\",canPlay:i.canPlay.vimeo,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(868))}))}))},{key:\"facebook\",name:\"Facebook\",canPlay:i.canPlay.facebook,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(1972))}))}))},{key:\"streamable\",name:\"Streamable\",canPlay:i.canPlay.streamable,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(993))}))}))},{key:\"wistia\",name:\"Wistia\",canPlay:i.canPlay.wistia,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(8018))}))}))},{key:\"twitch\",name:\"Twitch\",canPlay:i.canPlay.twitch,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(9482))}))}))},{key:\"dailymotion\",name:\"DailyMotion\",canPlay:i.canPlay.dailymotion,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(6807))}))}))},{key:\"mixcloud\",name:\"Mixcloud\",canPlay:i.canPlay.mixcloud,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(143))}))}))},{key:\"vidyard\",name:\"Vidyard\",canPlay:i.canPlay.vidyard,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(6596))}))}))},{key:\"kaltura\",name:\"Kaltura\",canPlay:i.canPlay.kaltura,lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(3911))}))}))},{key:\"file\",name:\"FilePlayer\",canPlay:i.canPlay.file,canEnablePIP:function(e){return i.canPlay.file(e)&&(document.pictureInPictureEnabled||(0,o.supportsWebKitPresentationMode)())&&!i.AUDIO_EXTENSIONS.test(e)},lazyPlayer:(0,n.lazy)((function(){return Promise.resolve().then((function(){return l(r(4926))}))}))}];t.default=s},5741:(e,t,r)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.defaultProps=t.propTypes=void 0;var n,o=(n=r(5697))&&n.__esModule?n:{default:n};var i=o.default.string,a=o.default.bool,c=o.default.number,l=o.default.array,s=o.default.oneOfType,u=o.default.shape,p=o.default.object,d=o.default.func,f=o.default.node,m={url:s([i,l,p]),playing:a,loop:a,controls:a,volume:c,muted:a,playbackRate:c,width:s([i,c]),height:s([i,c]),style:p,progressInterval:c,playsinline:a,pip:a,stopOnUnmount:a,light:s([a,i]),playIcon:f,previewTabIndex:c,fallback:f,wrapper:s([i,d,u({render:d.isRequired})]),config:u({soundcloud:u({options:p}),youtube:u({playerVars:p,embedOptions:p,onUnstarted:d}),facebook:u({appId:i,version:i,playerId:i,attributes:p}),dailymotion:u({params:p}),vimeo:u({playerOptions:p}),file:u({attributes:p,tracks:l,forceVideo:a,forceAudio:a,forceHLS:a,forceDASH:a,forceFLV:a,hlsOptions:p,hlsVersion:i,dashVersion:i,flvVersion:i}),wistia:u({options:p,playerId:i,customControls:l}),mixcloud:u({options:p}),twitch:u({options:p,playerId:i}),vidyard:u({options:p})}),onReady:d,onStart:d,onPlay:d,onPause:d,onBuffer:d,onBufferEnd:d,onEnded:d,onError:d,onDuration:d,onSeek:d,onProgress:d,onClickPreview:d,onEnablePIP:d,onDisablePIP:d};t.propTypes=m;var y=function(){},h={playing:!1,loop:!1,controls:!1,volume:null,muted:!1,playbackRate:1,width:\"640px\",height:\"360px\",style:{},progressInterval:1e3,playsinline:!1,pip:!1,stopOnUnmount:!0,light:!1,fallback:null,wrapper:\"div\",previewTabIndex:0,config:{soundcloud:{options:{visual:!0,buying:!1,liking:!1,download:!1,sharing:!1,show_comments:!1,show_playcount:!1}},youtube:{playerVars:{playsinline:1,showinfo:0,rel:0,iv_load_policy:3,modestbranding:1},embedOptions:{},onUnstarted:y},facebook:{appId:\"1309697205772819\",version:\"v3.3\",playerId:null,attributes:{}},dailymotion:{params:{api:1,\"endscreen-enable\":!1}},vimeo:{playerOptions:{autopause:!1,byline:!1,portrait:!1,title:!1}},file:{attributes:{},tracks:[],forceVideo:!1,forceAudio:!1,forceHLS:!1,forceDASH:!1,forceFLV:!1,hlsOptions:{},hlsVersion:\"0.14.16\",dashVersion:\"3.1.3\",flvVersion:\"1.5.0\"},wistia:{options:{},playerId:null,customControls:null},mixcloud:{options:{hide_cover:1}},twitch:{options:{},playerId:null},vidyard:{options:{}}},onReady:y,onStart:y,onPlay:y,onPause:y,onBuffer:y,onBufferEnd:y,onEnded:y,onError:y,onDuration:y,onSeek:y,onProgress:y,onClickPreview:y,onEnablePIP:y,onDisablePIP:y};t.defaultProps=h},8045:(e,t,r)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.parseStartTime=function(e){return d(e,l)},t.parseEndTime=function(e){return d(e,s)},t.randomString=function(){return Math.random().toString(36).substr(2,5)},t.queryString=function(e){return Object.keys(e).map((function(t){return\"\".concat(t,\"=\").concat(e[t])})).join(\"&\")},t.getSDK=function(e,t){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:function(){return!0},i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:n.default,a=f(t);if(a&&o(a))return Promise.resolve(a);return new Promise((function(n,o){if(m[e])m[e].push({resolve:n,reject:o});else{m[e]=[{resolve:n,reject:o}];var a=function(t){m[e].forEach((function(e){return e.resolve(t)}))};if(r){var c=window[r];window[r]=function(){c&&c(),a(f(t))}}i(e,(function(n){n?(m[e].forEach((function(e){return e.reject(n)})),m[e]=null):r||a(f(t))}))}}))},t.getConfig=function(e,t){return(0,o.default)(t.config,e.config)},t.omit=function(e){for(var t,r=arguments.length,n=new Array(r>1?r-1:0),o=1;o<r;o++)n[o-1]=arguments[o];for(var i=(t=[]).concat.apply(t,n),a={},c=Object.keys(e),l=0,s=c;l<s.length;l++){var u=s[l];-1===i.indexOf(u)&&(a[u]=e[u])}return a},t.callPlayer=function(e){var t;if(!this.player||!this.player[e]){var r=\"ReactPlayer: \".concat(this.constructor.displayName,\" player could not call %c\").concat(e,\"%c – \");return this.player?this.player[e]||(r+=\"The method was not available\"):r+=\"The player was not available\",console.warn(r,\"font-weight: bold\",\"\"),null}for(var n=arguments.length,o=new Array(n>1?n-1:0),i=1;i<n;i++)o[i-1]=arguments[i];return(t=this.player)[e].apply(t,o)},t.isMediaStream=function(e){return\"undefined\"!=typeof window&&void 0!==window.MediaStream&&e instanceof window.MediaStream},t.isBlobUrl=function(e){return/^blob:/.test(e)},t.supportsWebKitPresentationMode=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:document.createElement(\"video\"),t=!1===/iPhone|iPod/.test(navigator.userAgent);return e.webkitSupportsPresentationMode&&\"function\"==typeof e.webkitSetPresentationMode&&t};var n=i(r(9090)),o=i(r(9996));function i(e){return e&&e.__esModule?e:{default:e}}function a(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if(\"undefined\"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var r=[],n=!0,o=!1,i=void 0;try{for(var a,c=e[Symbol.iterator]();!(n=(a=c.next()).done)&&(r.push(a.value),!t||r.length!==t);n=!0);}catch(e){o=!0,i=e}finally{try{n||null==c.return||c.return()}finally{if(o)throw i}}return r}(e,t)||function(e,t){if(!e)return;if(\"string\"==typeof e)return c(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===r&&e.constructor&&(r=e.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(e);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return c(e,t)}(e,t)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var l=/[?&#](?:start|t)=([0-9hms]+)/,s=/[?&#]end=([0-9hms]+)/,u=/(\\d+)(h|m|s)/g,p=/^\\d+$/;function d(e,t){if(!(e instanceof Array)){var r=e.match(t);if(r){var n=r[1];if(n.match(u))return function(e){var t=0,r=u.exec(e);for(;null!==r;){var n=a(r,3),o=n[1],i=n[2];\"h\"===i&&(t+=60*parseInt(o,10)*60),\"m\"===i&&(t+=60*parseInt(o,10)),\"s\"===i&&(t+=parseInt(o,10)),r=u.exec(e)}return t}(n);if(p.test(n))return parseInt(n)}}}function f(e){return window[e]?window[e]:window.exports&&window.exports[e]?window.exports[e]:window.module&&window.module.exports&&window.module.exports[e]?window.module.exports[e]:null}var m={}},8205:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.PrevArrow=t.NextArrow=void 0;var o=c(r(7294)),i=c(r(4184)),a=r(5518);function c(e){return e&&e.__esModule?e:{default:e}}function l(){return l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},l.apply(this,arguments)}function s(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function u(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?s(Object(r),!0).forEach((function(t){p(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):s(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function p(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function d(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}function f(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function m(e,t,r){return t&&f(e.prototype,t),r&&f(e,r),Object.defineProperty(e,\"prototype\",{writable:!1}),e}function y(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,\"prototype\",{writable:!1}),t&&h(e,t)}function h(e,t){return h=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},h(e,t)}function b(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=v(e);if(t){var i=v(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;if(void 0!==t)throw new TypeError(\"Derived constructors may only return object or undefined\");return function(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}(e)}(this,r)}}function v(e){return v=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},v(e)}var g=function(e){y(r,e);var t=b(r);function r(){return d(this,r),t.apply(this,arguments)}return m(r,[{key:\"clickHandler\",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:\"render\",value:function(){var e={\"slick-arrow\":!0,\"slick-prev\":!0},t=this.clickHandler.bind(this,{message:\"previous\"});!this.props.infinite&&(0===this.props.currentSlide||this.props.slideCount<=this.props.slidesToShow)&&(e[\"slick-disabled\"]=!0,t=null);var r={key:\"0\",\"data-role\":\"none\",className:(0,i.default)(e),style:{display:\"block\"},onClick:t},n={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.prevArrow?o.default.cloneElement(this.props.prevArrow,u(u({},r),n)):o.default.createElement(\"button\",l({key:\"0\",type:\"button\"},r),\" \",\"Previous\")}}]),r}(o.default.PureComponent);t.PrevArrow=g;var _=function(e){y(r,e);var t=b(r);function r(){return d(this,r),t.apply(this,arguments)}return m(r,[{key:\"clickHandler\",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:\"render\",value:function(){var e={\"slick-arrow\":!0,\"slick-next\":!0},t=this.clickHandler.bind(this,{message:\"next\"});(0,a.canGoNext)(this.props)||(e[\"slick-disabled\"]=!0,t=null);var r={key:\"1\",\"data-role\":\"none\",className:(0,i.default)(e),style:{display:\"block\"},onClick:t},n={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.nextArrow?o.default.cloneElement(this.props.nextArrow,u(u({},r),n)):o.default.createElement(\"button\",l({key:\"1\",type:\"button\"},r),\" \",\"Next\")}}]),r}(o.default.PureComponent);t.NextArrow=_},3492:(e,t,r)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var n,o=(n=r(7294))&&n.__esModule?n:{default:n};var i={accessibility:!0,adaptiveHeight:!1,afterChange:null,appendDots:function(e){return o.default.createElement(\"ul\",{style:{display:\"block\"}},e)},arrows:!0,autoplay:!1,autoplaySpeed:3e3,beforeChange:null,centerMode:!1,centerPadding:\"50px\",className:\"\",cssEase:\"ease\",customPaging:function(e){return o.default.createElement(\"button\",null,e+1)},dots:!1,dotsClass:\"slick-dots\",draggable:!0,easing:\"linear\",edgeFriction:.35,fade:!1,focusOnSelect:!1,infinite:!0,initialSlide:0,lazyLoad:null,nextArrow:null,onEdge:null,onInit:null,onLazyLoadError:null,onReInit:null,pauseOnDotsHover:!1,pauseOnFocus:!1,pauseOnHover:!0,prevArrow:null,responsive:null,rows:1,rtl:!1,slide:\"div\",slidesPerRow:1,slidesToScroll:1,slidesToShow:1,speed:500,swipe:!0,swipeEvent:null,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,waitForAnimate:!0};t.default=i},6329:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.Dots=void 0;var o=c(r(7294)),i=c(r(4184)),a=r(5518);function c(e){return e&&e.__esModule?e:{default:e}}function l(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function s(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function u(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function p(e,t){return p=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},p(e,t)}function d(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=f(e);if(t){var i=f(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;if(void 0!==t)throw new TypeError(\"Derived constructors may only return object or undefined\");return function(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}(e)}(this,r)}}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},f(e)}var m=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,\"prototype\",{writable:!1}),t&&p(e,t)}(f,e);var t,r,n,c=d(f);function f(){return function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,f),c.apply(this,arguments)}return t=f,r=[{key:\"clickHandler\",value:function(e,t){t.preventDefault(),this.props.clickHandler(e)}},{key:\"render\",value:function(){for(var e,t=this.props,r=t.onMouseEnter,n=t.onMouseOver,c=t.onMouseLeave,u=t.infinite,p=t.slidesToScroll,d=t.slidesToShow,f=t.slideCount,m=t.currentSlide,y=(e={slideCount:f,slidesToScroll:p,slidesToShow:d,infinite:u}).infinite?Math.ceil(e.slideCount/e.slidesToScroll):Math.ceil((e.slideCount-e.slidesToShow)/e.slidesToScroll)+1,h={onMouseEnter:r,onMouseOver:n,onMouseLeave:c},b=[],v=0;v<y;v++){var g=(v+1)*p-1,_=u?g:(0,a.clamp)(g,0,f-1),w=_-(p-1),x=u?w:(0,a.clamp)(w,0,f-1),k=(0,i.default)({\"slick-active\":u?m>=x&&m<=_:m===x}),N={message:\"dots\",index:v,slidesToScroll:p,currentSlide:m},M=this.clickHandler.bind(this,N);b=b.concat(o.default.createElement(\"li\",{key:v,className:k},o.default.cloneElement(this.props.customPaging(v),{onClick:M})))}return o.default.cloneElement(this.props.appendDots(b),function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?l(Object(r),!0).forEach((function(t){s(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):l(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({className:this.props.dotsClass},h))}}],r&&u(t.prototype,r),n&&u(t,n),Object.defineProperty(t,\"prototype\",{writable:!1}),f}(o.default.PureComponent);t.Dots=m},6066:(e,t,r)=>{\"use strict\";var n;t.Z=void 0;var o=((n=r(5798))&&n.__esModule?n:{default:n}).default;t.Z=o},6948:(e,t)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var r={animating:!1,autoplaying:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,dragging:!1,edgeDragged:!1,initialized:!1,lazyLoadedList:[],listHeight:null,listWidth:null,scrolling:!1,slideCount:null,slideHeight:null,slideWidth:null,swipeLeft:null,swiped:!1,swiping:!1,touchObject:{startX:0,startY:0,curX:0,curY:0},trackStyle:{},trackWidth:0,targetSlide:0};t.default=r},8517:(e,t,r)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.InnerSlider=void 0;var n=d(r(7294)),o=d(r(6948)),i=d(r(1296)),a=d(r(4184)),c=r(5518),l=r(4740),s=r(6329),u=r(8205),p=d(r(1033));function d(e){return e&&e.__esModule?e:{default:e}}function f(e){return f=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},f(e)}function m(){return m=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},m.apply(this,arguments)}function y(e,t){if(null==e)return{};var r,n,o=function(e,t){if(null==e)return{};var r,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||(o[r]=e[r]);return o}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(o[r]=e[r])}return o}function h(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function b(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?h(Object(r),!0).forEach((function(t){k(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):h(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function v(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function g(e,t){return g=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},g(e,t)}function _(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=x(e);if(t){var o=x(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return function(e,t){if(t&&(\"object\"===f(t)||\"function\"==typeof t))return t;if(void 0!==t)throw new TypeError(\"Derived constructors may only return object or undefined\");return w(e)}(this,r)}}function w(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function x(e){return x=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},x(e)}function k(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var N=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,\"prototype\",{writable:!1}),t&&g(e,t)}(x,e);var t,r,d,h=_(x);function x(e){var t;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,x),k(w(t=h.call(this,e)),\"listRefHandler\",(function(e){return t.list=e})),k(w(t),\"trackRefHandler\",(function(e){return t.track=e})),k(w(t),\"adaptHeight\",(function(){if(t.props.adaptiveHeight&&t.list){var e=t.list.querySelector('[data-index=\"'.concat(t.state.currentSlide,'\"]'));t.list.style.height=(0,c.getHeight)(e)+\"px\"}})),k(w(t),\"componentDidMount\",(function(){if(t.props.onInit&&t.props.onInit(),t.props.lazyLoad){var e=(0,c.getOnDemandLazySlides)(b(b({},t.props),t.state));e.length>0&&(t.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),t.props.onLazyLoad&&t.props.onLazyLoad(e))}var r=b({listRef:t.list,trackRef:t.track},t.props);t.updateState(r,!0,(function(){t.adaptHeight(),t.props.autoplay&&t.autoPlay(\"update\")})),\"progressive\"===t.props.lazyLoad&&(t.lazyLoadTimer=setInterval(t.progressiveLazyLoad,1e3)),t.ro=new p.default((function(){t.state.animating?(t.onWindowResized(!1),t.callbackTimers.push(setTimeout((function(){return t.onWindowResized()}),t.props.speed))):t.onWindowResized()})),t.ro.observe(t.list),document.querySelectorAll&&Array.prototype.forEach.call(document.querySelectorAll(\".slick-slide\"),(function(e){e.onfocus=t.props.pauseOnFocus?t.onSlideFocus:null,e.onblur=t.props.pauseOnFocus?t.onSlideBlur:null})),window.addEventListener?window.addEventListener(\"resize\",t.onWindowResized):window.attachEvent(\"onresize\",t.onWindowResized)})),k(w(t),\"componentWillUnmount\",(function(){t.animationEndCallback&&clearTimeout(t.animationEndCallback),t.lazyLoadTimer&&clearInterval(t.lazyLoadTimer),t.callbackTimers.length&&(t.callbackTimers.forEach((function(e){return clearTimeout(e)})),t.callbackTimers=[]),window.addEventListener?window.removeEventListener(\"resize\",t.onWindowResized):window.detachEvent(\"onresize\",t.onWindowResized),t.autoplayTimer&&clearInterval(t.autoplayTimer),t.ro.disconnect()})),k(w(t),\"componentDidUpdate\",(function(e){if(t.checkImagesLoad(),t.props.onReInit&&t.props.onReInit(),t.props.lazyLoad){var r=(0,c.getOnDemandLazySlides)(b(b({},t.props),t.state));r.length>0&&(t.setState((function(e){return{lazyLoadedList:e.lazyLoadedList.concat(r)}})),t.props.onLazyLoad&&t.props.onLazyLoad(r))}t.adaptHeight();var o=b(b({listRef:t.list,trackRef:t.track},t.props),t.state),i=t.didPropsChange(e);i&&t.updateState(o,i,(function(){t.state.currentSlide>=n.default.Children.count(t.props.children)&&t.changeSlide({message:\"index\",index:n.default.Children.count(t.props.children)-t.props.slidesToShow,currentSlide:t.state.currentSlide}),t.props.autoplay?t.autoPlay(\"update\"):t.pause(\"paused\")}))})),k(w(t),\"onWindowResized\",(function(e){t.debouncedResize&&t.debouncedResize.cancel(),t.debouncedResize=(0,i.default)((function(){return t.resizeWindow(e)}),50),t.debouncedResize()})),k(w(t),\"resizeWindow\",(function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];if(Boolean(t.track&&t.track.node)){var r=b(b({listRef:t.list,trackRef:t.track},t.props),t.state);t.updateState(r,e,(function(){t.props.autoplay?t.autoPlay(\"update\"):t.pause(\"paused\")})),t.setState({animating:!1}),clearTimeout(t.animationEndCallback),delete t.animationEndCallback}})),k(w(t),\"updateState\",(function(e,r,o){var i=(0,c.initializedState)(e);e=b(b(b({},e),i),{},{slideIndex:i.currentSlide});var a=(0,c.getTrackLeft)(e);e=b(b({},e),{},{left:a});var l=(0,c.getTrackCSS)(e);(r||n.default.Children.count(t.props.children)!==n.default.Children.count(e.children))&&(i.trackStyle=l),t.setState(i,o)})),k(w(t),\"ssrInit\",(function(){if(t.props.variableWidth){var e=0,r=0,o=[],i=(0,c.getPreClones)(b(b(b({},t.props),t.state),{},{slideCount:t.props.children.length})),a=(0,c.getPostClones)(b(b(b({},t.props),t.state),{},{slideCount:t.props.children.length}));t.props.children.forEach((function(t){o.push(t.props.style.width),e+=t.props.style.width}));for(var l=0;l<i;l++)r+=o[o.length-1-l],e+=o[o.length-1-l];for(var s=0;s<a;s++)e+=o[s];for(var u=0;u<t.state.currentSlide;u++)r+=o[u];var p={width:e+\"px\",left:-r+\"px\"};if(t.props.centerMode){var d=\"\".concat(o[t.state.currentSlide],\"px\");p.left=\"calc(\".concat(p.left,\" + (100% - \").concat(d,\") / 2 ) \")}return{trackStyle:p}}var f=n.default.Children.count(t.props.children),m=b(b(b({},t.props),t.state),{},{slideCount:f}),y=(0,c.getPreClones)(m)+(0,c.getPostClones)(m)+f,h=100/t.props.slidesToShow*y,v=100/y,g=-v*((0,c.getPreClones)(m)+t.state.currentSlide)*h/100;return t.props.centerMode&&(g+=(100-v*h/100)/2),{slideWidth:v+\"%\",trackStyle:{width:h+\"%\",left:g+\"%\"}}})),k(w(t),\"checkImagesLoad\",(function(){var e=t.list&&t.list.querySelectorAll&&t.list.querySelectorAll(\".slick-slide img\")||[],r=e.length,n=0;Array.prototype.forEach.call(e,(function(e){var o=function(){return++n&&n>=r&&t.onWindowResized()};if(e.onclick){var i=e.onclick;e.onclick=function(){i(),e.parentNode.focus()}}else e.onclick=function(){return e.parentNode.focus()};e.onload||(t.props.lazyLoad?e.onload=function(){t.adaptHeight(),t.callbackTimers.push(setTimeout(t.onWindowResized,t.props.speed))}:(e.onload=o,e.onerror=function(){o(),t.props.onLazyLoadError&&t.props.onLazyLoadError()}))}))})),k(w(t),\"progressiveLazyLoad\",(function(){for(var e=[],r=b(b({},t.props),t.state),n=t.state.currentSlide;n<t.state.slideCount+(0,c.getPostClones)(r);n++)if(t.state.lazyLoadedList.indexOf(n)<0){e.push(n);break}for(var o=t.state.currentSlide-1;o>=-(0,c.getPreClones)(r);o--)if(t.state.lazyLoadedList.indexOf(o)<0){e.push(o);break}e.length>0?(t.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),t.props.onLazyLoad&&t.props.onLazyLoad(e)):t.lazyLoadTimer&&(clearInterval(t.lazyLoadTimer),delete t.lazyLoadTimer)})),k(w(t),\"slideHandler\",(function(e){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.props,o=n.asNavFor,i=n.beforeChange,a=n.onLazyLoad,l=n.speed,s=n.afterChange,u=t.state.currentSlide,p=(0,c.slideHandler)(b(b(b({index:e},t.props),t.state),{},{trackRef:t.track,useCSS:t.props.useCSS&&!r})),d=p.state,f=p.nextState;if(d){i&&i(u,d.currentSlide);var m=d.lazyLoadedList.filter((function(e){return t.state.lazyLoadedList.indexOf(e)<0}));a&&m.length>0&&a(m),!t.props.waitForAnimate&&t.animationEndCallback&&(clearTimeout(t.animationEndCallback),s&&s(u),delete t.animationEndCallback),t.setState(d,(function(){o&&t.asNavForIndex!==e&&(t.asNavForIndex=e,o.innerSlider.slideHandler(e)),f&&(t.animationEndCallback=setTimeout((function(){var e=f.animating,r=y(f,[\"animating\"]);t.setState(r,(function(){t.callbackTimers.push(setTimeout((function(){return t.setState({animating:e})}),10)),s&&s(d.currentSlide),delete t.animationEndCallback}))}),l))}))}})),k(w(t),\"changeSlide\",(function(e){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=b(b({},t.props),t.state),o=(0,c.changeSlide)(n,e);if((0===o||o)&&(!0===r?t.slideHandler(o,r):t.slideHandler(o),t.props.autoplay&&t.autoPlay(\"update\"),t.props.focusOnSelect)){var i=t.list.querySelectorAll(\".slick-current\");i[0]&&i[0].focus()}})),k(w(t),\"clickHandler\",(function(e){!1===t.clickable&&(e.stopPropagation(),e.preventDefault()),t.clickable=!0})),k(w(t),\"keyHandler\",(function(e){var r=(0,c.keyHandler)(e,t.props.accessibility,t.props.rtl);\"\"!==r&&t.changeSlide({message:r})})),k(w(t),\"selectHandler\",(function(e){t.changeSlide(e)})),k(w(t),\"disableBodyScroll\",(function(){window.ontouchmove=function(e){(e=e||window.event).preventDefault&&e.preventDefault(),e.returnValue=!1}})),k(w(t),\"enableBodyScroll\",(function(){window.ontouchmove=null})),k(w(t),\"swipeStart\",(function(e){t.props.verticalSwiping&&t.disableBodyScroll();var r=(0,c.swipeStart)(e,t.props.swipe,t.props.draggable);\"\"!==r&&t.setState(r)})),k(w(t),\"swipeMove\",(function(e){var r=(0,c.swipeMove)(e,b(b(b({},t.props),t.state),{},{trackRef:t.track,listRef:t.list,slideIndex:t.state.currentSlide}));r&&(r.swiping&&(t.clickable=!1),t.setState(r))})),k(w(t),\"swipeEnd\",(function(e){var r=(0,c.swipeEnd)(e,b(b(b({},t.props),t.state),{},{trackRef:t.track,listRef:t.list,slideIndex:t.state.currentSlide}));if(r){var n=r.triggerSlideHandler;delete r.triggerSlideHandler,t.setState(r),void 0!==n&&(t.slideHandler(n),t.props.verticalSwiping&&t.enableBodyScroll())}})),k(w(t),\"touchEnd\",(function(e){t.swipeEnd(e),t.clickable=!0})),k(w(t),\"slickPrev\",(function(){t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:\"previous\"})}),0))})),k(w(t),\"slickNext\",(function(){t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:\"next\"})}),0))})),k(w(t),\"slickGoTo\",(function(e){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e=Number(e),isNaN(e))return\"\";t.callbackTimers.push(setTimeout((function(){return t.changeSlide({message:\"index\",index:e,currentSlide:t.state.currentSlide},r)}),0))})),k(w(t),\"play\",(function(){var e;if(t.props.rtl)e=t.state.currentSlide-t.props.slidesToScroll;else{if(!(0,c.canGoNext)(b(b({},t.props),t.state)))return!1;e=t.state.currentSlide+t.props.slidesToScroll}t.slideHandler(e)})),k(w(t),\"autoPlay\",(function(e){t.autoplayTimer&&clearInterval(t.autoplayTimer);var r=t.state.autoplaying;if(\"update\"===e){if(\"hovered\"===r||\"focused\"===r||\"paused\"===r)return}else if(\"leave\"===e){if(\"paused\"===r||\"focused\"===r)return}else if(\"blur\"===e&&(\"paused\"===r||\"hovered\"===r))return;t.autoplayTimer=setInterval(t.play,t.props.autoplaySpeed+50),t.setState({autoplaying:\"playing\"})})),k(w(t),\"pause\",(function(e){t.autoplayTimer&&(clearInterval(t.autoplayTimer),t.autoplayTimer=null);var r=t.state.autoplaying;\"paused\"===e?t.setState({autoplaying:\"paused\"}):\"focused\"===e?\"hovered\"!==r&&\"playing\"!==r||t.setState({autoplaying:\"focused\"}):\"playing\"===r&&t.setState({autoplaying:\"hovered\"})})),k(w(t),\"onDotsOver\",(function(){return t.props.autoplay&&t.pause(\"hovered\")})),k(w(t),\"onDotsLeave\",(function(){return t.props.autoplay&&\"hovered\"===t.state.autoplaying&&t.autoPlay(\"leave\")})),k(w(t),\"onTrackOver\",(function(){return t.props.autoplay&&t.pause(\"hovered\")})),k(w(t),\"onTrackLeave\",(function(){return t.props.autoplay&&\"hovered\"===t.state.autoplaying&&t.autoPlay(\"leave\")})),k(w(t),\"onSlideFocus\",(function(){return t.props.autoplay&&t.pause(\"focused\")})),k(w(t),\"onSlideBlur\",(function(){return t.props.autoplay&&\"focused\"===t.state.autoplaying&&t.autoPlay(\"blur\")})),k(w(t),\"render\",(function(){var e,r,o,i=(0,a.default)(\"slick-slider\",t.props.className,{\"slick-vertical\":t.props.vertical,\"slick-initialized\":!0}),p=b(b({},t.props),t.state),d=(0,c.extractObject)(p,[\"fade\",\"cssEase\",\"speed\",\"infinite\",\"centerMode\",\"focusOnSelect\",\"currentSlide\",\"lazyLoad\",\"lazyLoadedList\",\"rtl\",\"slideWidth\",\"slideHeight\",\"listHeight\",\"vertical\",\"slidesToShow\",\"slidesToScroll\",\"slideCount\",\"trackStyle\",\"variableWidth\",\"unslick\",\"centerPadding\",\"targetSlide\",\"useCSS\"]),f=t.props.pauseOnHover;if(d=b(b({},d),{},{onMouseEnter:f?t.onTrackOver:null,onMouseLeave:f?t.onTrackLeave:null,onMouseOver:f?t.onTrackOver:null,focusOnSelect:t.props.focusOnSelect&&t.clickable?t.selectHandler:null}),!0===t.props.dots&&t.state.slideCount>=t.props.slidesToShow){var y=(0,c.extractObject)(p,[\"dotsClass\",\"slideCount\",\"slidesToShow\",\"currentSlide\",\"slidesToScroll\",\"clickHandler\",\"children\",\"customPaging\",\"infinite\",\"appendDots\"]),h=t.props.pauseOnDotsHover;y=b(b({},y),{},{clickHandler:t.changeSlide,onMouseEnter:h?t.onDotsLeave:null,onMouseOver:h?t.onDotsOver:null,onMouseLeave:h?t.onDotsLeave:null}),e=n.default.createElement(s.Dots,y)}var v=(0,c.extractObject)(p,[\"infinite\",\"centerMode\",\"currentSlide\",\"slideCount\",\"slidesToShow\",\"prevArrow\",\"nextArrow\"]);v.clickHandler=t.changeSlide,t.props.arrows&&(r=n.default.createElement(u.PrevArrow,v),o=n.default.createElement(u.NextArrow,v));var g=null;t.props.vertical&&(g={height:t.state.listHeight});var _=null;!1===t.props.vertical?!0===t.props.centerMode&&(_={padding:\"0px \"+t.props.centerPadding}):!0===t.props.centerMode&&(_={padding:t.props.centerPadding+\" 0px\"});var w=b(b({},g),_),x=t.props.touchMove,k={className:\"slick-list\",style:w,onClick:t.clickHandler,onMouseDown:x?t.swipeStart:null,onMouseMove:t.state.dragging&&x?t.swipeMove:null,onMouseUp:x?t.swipeEnd:null,onMouseLeave:t.state.dragging&&x?t.swipeEnd:null,onTouchStart:x?t.swipeStart:null,onTouchMove:t.state.dragging&&x?t.swipeMove:null,onTouchEnd:x?t.touchEnd:null,onTouchCancel:t.state.dragging&&x?t.swipeEnd:null,onKeyDown:t.props.accessibility?t.keyHandler:null},N={className:i,dir:\"ltr\",style:t.props.style};return t.props.unslick&&(k={className:\"slick-list\"},N={className:i}),n.default.createElement(\"div\",N,t.props.unslick?\"\":r,n.default.createElement(\"div\",m({ref:t.listRefHandler},k),n.default.createElement(l.Track,m({ref:t.trackRefHandler},d),t.props.children)),t.props.unslick?\"\":o,t.props.unslick?\"\":e)})),t.list=null,t.track=null,t.state=b(b({},o.default),{},{currentSlide:t.props.initialSlide,slideCount:n.default.Children.count(t.props.children)}),t.callbackTimers=[],t.clickable=!0,t.debouncedResize=null;var r=t.ssrInit();return t.state=b(b({},t.state),r),t}return t=x,(r=[{key:\"didPropsChange\",value:function(e){for(var t=!1,r=0,o=Object.keys(this.props);r<o.length;r++){var i=o[r];if(!e.hasOwnProperty(i)){t=!0;break}if(\"object\"!==f(e[i])&&\"function\"!=typeof e[i]&&e[i]!==this.props[i]){t=!0;break}}return t||n.default.Children.count(this.props.children)!==n.default.Children.count(e.children)}}])&&v(t.prototype,r),d&&v(t,d),Object.defineProperty(t,\"prototype\",{writable:!1}),x}(n.default.Component);t.InnerSlider=N},5798:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.default=void 0;var o=s(r(7294)),i=r(8517),a=s(r(973)),c=s(r(3492)),l=r(5518);function s(e){return e&&e.__esModule?e:{default:e}}function u(){return u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},u.apply(this,arguments)}function p(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function d(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?p(Object(r),!0).forEach((function(t){v(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):p(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function f(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function m(e,t){return m=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},m(e,t)}function y(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=b(e);if(t){var i=b(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;if(void 0!==t)throw new TypeError(\"Derived constructors may only return object or undefined\");return h(e)}(this,r)}}function h(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function b(e){return b=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},b(e)}function v(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var g=(0,l.canUseDOM)()&&r(4974),_=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,\"prototype\",{writable:!1}),t&&m(e,t)}(p,e);var t,r,n,s=y(p);function p(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,p),v(h(t=s.call(this,e)),\"innerSliderRefHandler\",(function(e){return t.innerSlider=e})),v(h(t),\"slickPrev\",(function(){return t.innerSlider.slickPrev()})),v(h(t),\"slickNext\",(function(){return t.innerSlider.slickNext()})),v(h(t),\"slickGoTo\",(function(e){var r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t.innerSlider.slickGoTo(e,r)})),v(h(t),\"slickPause\",(function(){return t.innerSlider.pause(\"paused\")})),v(h(t),\"slickPlay\",(function(){return t.innerSlider.autoPlay(\"play\")})),t.state={breakpoint:null},t._responsiveMediaHandlers=[],t}return t=p,(r=[{key:\"media\",value:function(e,t){g.register(e,t),this._responsiveMediaHandlers.push({query:e,handler:t})}},{key:\"componentDidMount\",value:function(){var e=this;if(this.props.responsive){var t=this.props.responsive.map((function(e){return e.breakpoint}));t.sort((function(e,t){return e-t})),t.forEach((function(r,n){var o;o=0===n?(0,a.default)({minWidth:0,maxWidth:r}):(0,a.default)({minWidth:t[n-1]+1,maxWidth:r}),(0,l.canUseDOM)()&&e.media(o,(function(){e.setState({breakpoint:r})}))}));var r=(0,a.default)({minWidth:t.slice(-1)[0]});(0,l.canUseDOM)()&&this.media(r,(function(){e.setState({breakpoint:null})}))}}},{key:\"componentWillUnmount\",value:function(){this._responsiveMediaHandlers.forEach((function(e){g.unregister(e.query,e.handler)}))}},{key:\"render\",value:function(){var e,t,r=this;(e=this.state.breakpoint?\"unslick\"===(t=this.props.responsive.filter((function(e){return e.breakpoint===r.state.breakpoint})))[0].settings?\"unslick\":d(d(d({},c.default),this.props),t[0].settings):d(d({},c.default),this.props)).centerMode&&(e.slidesToScroll,e.slidesToScroll=1),e.fade&&(e.slidesToShow,e.slidesToScroll,e.slidesToShow=1,e.slidesToScroll=1);var n=o.default.Children.toArray(this.props.children);n=n.filter((function(e){return\"string\"==typeof e?!!e.trim():!!e})),e.variableWidth&&(e.rows>1||e.slidesPerRow>1)&&(console.warn(\"variableWidth is not supported in case of rows > 1 or slidesPerRow > 1\"),e.variableWidth=!1);for(var a=[],l=null,s=0;s<n.length;s+=e.rows*e.slidesPerRow){for(var p=[],f=s;f<s+e.rows*e.slidesPerRow;f+=e.slidesPerRow){for(var m=[],y=f;y<f+e.slidesPerRow&&(e.variableWidth&&n[y].props.style&&(l=n[y].props.style.width),!(y>=n.length));y+=1)m.push(o.default.cloneElement(n[y],{key:100*s+10*f+y,tabIndex:-1,style:{width:\"\".concat(100/e.slidesPerRow,\"%\"),display:\"inline-block\"}}));p.push(o.default.createElement(\"div\",{key:10*s+f},m))}e.variableWidth?a.push(o.default.createElement(\"div\",{key:s,style:{width:l}},p)):a.push(o.default.createElement(\"div\",{key:s},p))}if(\"unslick\"===e){var h=\"regular slider \"+(this.props.className||\"\");return o.default.createElement(\"div\",{className:h},n)}return a.length<=e.slidesToShow&&(e.unslick=!0),o.default.createElement(i.InnerSlider,u({style:this.props.style,ref:this.innerSliderRefHandler},e),a)}}])&&f(t.prototype,r),n&&f(t,n),Object.defineProperty(t,\"prototype\",{writable:!1}),p}(o.default.Component);t.default=_},4740:(e,t,r)=>{\"use strict\";function n(e){return n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},n(e)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.Track=void 0;var o=c(r(7294)),i=c(r(4184)),a=r(5518);function c(e){return e&&e.__esModule?e:{default:e}}function l(){return l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},l.apply(this,arguments)}function s(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function u(e,t){return u=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},u(e,t)}function p(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,o=f(e);if(t){var i=f(this).constructor;r=Reflect.construct(o,arguments,i)}else r=o.apply(this,arguments);return function(e,t){if(t&&(\"object\"===n(t)||\"function\"==typeof t))return t;if(void 0!==t)throw new TypeError(\"Derived constructors may only return object or undefined\");return d(e)}(this,r)}}function d(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function f(e){return f=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},f(e)}function m(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function y(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?m(Object(r),!0).forEach((function(t){h(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):m(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function h(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var b=function(e){var t,r,n,o,i;return n=(i=e.rtl?e.slideCount-1-e.index:e.index)<0||i>=e.slideCount,e.centerMode?(o=Math.floor(e.slidesToShow/2),r=(i-e.currentSlide)%e.slideCount==0,i>e.currentSlide-o-1&&i<=e.currentSlide+o&&(t=!0)):t=e.currentSlide<=i&&i<e.currentSlide+e.slidesToShow,{\"slick-slide\":!0,\"slick-active\":t,\"slick-center\":r,\"slick-cloned\":n,\"slick-current\":i===(e.targetSlide<0?e.targetSlide+e.slideCount:e.targetSlide>=e.slideCount?e.targetSlide-e.slideCount:e.targetSlide)}},v=function(e,t){return e.key||t},g=function(e){var t,r=[],n=[],c=[],l=o.default.Children.count(e.children),s=(0,a.lazyStartIndex)(e),u=(0,a.lazyEndIndex)(e);return o.default.Children.forEach(e.children,(function(p,d){var f,m={message:\"children\",index:d,slidesToScroll:e.slidesToScroll,currentSlide:e.currentSlide};f=!e.lazyLoad||e.lazyLoad&&e.lazyLoadedList.indexOf(d)>=0?p:o.default.createElement(\"div\",null);var h=function(e){var t={};return void 0!==e.variableWidth&&!1!==e.variableWidth||(t.width=e.slideWidth),e.fade&&(t.position=\"relative\",e.vertical?t.top=-e.index*parseInt(e.slideHeight):t.left=-e.index*parseInt(e.slideWidth),t.opacity=e.currentSlide===e.index?1:0,e.useCSS&&(t.transition=\"opacity \"+e.speed+\"ms \"+e.cssEase+\", visibility \"+e.speed+\"ms \"+e.cssEase)),t}(y(y({},e),{},{index:d})),g=f.props.className||\"\",_=b(y(y({},e),{},{index:d}));if(r.push(o.default.cloneElement(f,{key:\"original\"+v(f,d),\"data-index\":d,className:(0,i.default)(_,g),tabIndex:\"-1\",\"aria-hidden\":!_[\"slick-active\"],style:y(y({outline:\"none\"},f.props.style||{}),h),onClick:function(t){f.props&&f.props.onClick&&f.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(m)}})),e.infinite&&!1===e.fade){var w=l-d;w<=(0,a.getPreClones)(e)&&l!==e.slidesToShow&&((t=-w)>=s&&(f=p),_=b(y(y({},e),{},{index:t})),n.push(o.default.cloneElement(f,{key:\"precloned\"+v(f,t),\"data-index\":t,tabIndex:\"-1\",className:(0,i.default)(_,g),\"aria-hidden\":!_[\"slick-active\"],style:y(y({},f.props.style||{}),h),onClick:function(t){f.props&&f.props.onClick&&f.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(m)}}))),l!==e.slidesToShow&&((t=l+d)<u&&(f=p),_=b(y(y({},e),{},{index:t})),c.push(o.default.cloneElement(f,{key:\"postcloned\"+v(f,t),\"data-index\":t,tabIndex:\"-1\",className:(0,i.default)(_,g),\"aria-hidden\":!_[\"slick-active\"],style:y(y({},f.props.style||{}),h),onClick:function(t){f.props&&f.props.onClick&&f.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(m)}})))}})),e.rtl?n.concat(r,c).reverse():n.concat(r,c)},_=function(e){!function(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,\"prototype\",{writable:!1}),t&&u(e,t)}(a,e);var t,r,n,i=p(a);function a(){var e;!function(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}(this,a);for(var t=arguments.length,r=new Array(t),n=0;n<t;n++)r[n]=arguments[n];return h(d(e=i.call.apply(i,[this].concat(r))),\"node\",null),h(d(e),\"handleRef\",(function(t){e.node=t})),e}return t=a,(r=[{key:\"render\",value:function(){var e=g(this.props),t=this.props,r={onMouseEnter:t.onMouseEnter,onMouseOver:t.onMouseOver,onMouseLeave:t.onMouseLeave};return o.default.createElement(\"div\",l({ref:this.handleRef,className:\"slick-track\",style:this.props.trackStyle},r),e)}}])&&s(t.prototype,r),n&&s(t,n),Object.defineProperty(t,\"prototype\",{writable:!1}),a}(o.default.PureComponent);t.Track=_},5518:(e,t,r)=>{\"use strict\";Object.defineProperty(t,\"__esModule\",{value:!0}),t.checkSpecKeys=t.checkNavigable=t.changeSlide=t.canUseDOM=t.canGoNext=void 0,t.clamp=l,t.swipeStart=t.swipeMove=t.swipeEnd=t.slidesOnRight=t.slidesOnLeft=t.slideHandler=t.siblingDirection=t.safePreventDefault=t.lazyStartIndex=t.lazySlidesOnRight=t.lazySlidesOnLeft=t.lazyEndIndex=t.keyHandler=t.initializedState=t.getWidth=t.getTrackLeft=t.getTrackCSS=t.getTrackAnimateCSS=t.getTotalSlides=t.getSwipeDirection=t.getSlideCount=t.getRequiredLazySlides=t.getPreClones=t.getPostClones=t.getOnDemandLazySlides=t.getNavigableIndexes=t.getHeight=t.extractObject=void 0;var n,o=(n=r(7294))&&n.__esModule?n:{default:n};function i(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function a(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?i(Object(r),!0).forEach((function(t){c(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):i(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function c(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function l(e,t,r){return Math.max(t,Math.min(e,r))}var s=function(e){[\"onTouchStart\",\"onTouchMove\",\"onWheel\"].includes(e._reactName)||e.preventDefault()};t.safePreventDefault=s;var u=function(e){for(var t=[],r=p(e),n=d(e),o=r;o<n;o++)e.lazyLoadedList.indexOf(o)<0&&t.push(o);return t};t.getOnDemandLazySlides=u;t.getRequiredLazySlides=function(e){for(var t=[],r=p(e),n=d(e),o=r;o<n;o++)t.push(o);return t};var p=function(e){return e.currentSlide-f(e)};t.lazyStartIndex=p;var d=function(e){return e.currentSlide+m(e)};t.lazyEndIndex=d;var f=function(e){return e.centerMode?Math.floor(e.slidesToShow/2)+(parseInt(e.centerPadding)>0?1:0):0};t.lazySlidesOnLeft=f;var m=function(e){return e.centerMode?Math.floor((e.slidesToShow-1)/2)+1+(parseInt(e.centerPadding)>0?1:0):e.slidesToShow};t.lazySlidesOnRight=m;var y=function(e){return e&&e.offsetWidth||0};t.getWidth=y;var h=function(e){return e&&e.offsetHeight||0};t.getHeight=h;var b=function(e){var t,r,n,o,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t=e.startX-e.curX,r=e.startY-e.curY,n=Math.atan2(r,t),(o=Math.round(180*n/Math.PI))<0&&(o=360-Math.abs(o)),o<=45&&o>=0||o<=360&&o>=315?\"left\":o>=135&&o<=225?\"right\":!0===i?o>=35&&o<=135?\"up\":\"down\":\"vertical\"};t.getSwipeDirection=b;var v=function(e){var t=!0;return e.infinite||(e.centerMode&&e.currentSlide>=e.slideCount-1||e.slideCount<=e.slidesToShow||e.currentSlide>=e.slideCount-e.slidesToShow)&&(t=!1),t};t.canGoNext=v;t.extractObject=function(e,t){var r={};return t.forEach((function(t){return r[t]=e[t]})),r};t.initializedState=function(e){var t,r=o.default.Children.count(e.children),n=e.listRef,i=Math.ceil(y(n)),c=e.trackRef&&e.trackRef.node,l=Math.ceil(y(c));if(e.vertical)t=i;else{var s=e.centerMode&&2*parseInt(e.centerPadding);\"string\"==typeof e.centerPadding&&\"%\"===e.centerPadding.slice(-1)&&(s*=i/100),t=Math.ceil((i-s)/e.slidesToShow)}var p=n&&h(n.querySelector('[data-index=\"0\"]')),d=p*e.slidesToShow,f=void 0===e.currentSlide?e.initialSlide:e.currentSlide;e.rtl&&void 0===e.currentSlide&&(f=r-1-e.initialSlide);var m=e.lazyLoadedList||[],b=u(a(a({},e),{},{currentSlide:f,lazyLoadedList:m})),v={slideCount:r,slideWidth:t,listWidth:i,trackWidth:l,currentSlide:f,slideHeight:p,listHeight:d,lazyLoadedList:m=m.concat(b)};return null===e.autoplaying&&e.autoplay&&(v.autoplaying=\"playing\"),v};t.slideHandler=function(e){var t=e.waitForAnimate,r=e.animating,n=e.fade,o=e.infinite,i=e.index,c=e.slideCount,s=e.lazyLoad,p=e.currentSlide,d=e.centerMode,f=e.slidesToScroll,m=e.slidesToShow,y=e.useCSS,h=e.lazyLoadedList;if(t&&r)return{};var b,g,_,w=i,x={},j={},S=o?i:l(i,0,c-1);if(n){if(!o&&(i<0||i>=c))return{};i<0?w=i+c:i>=c&&(w=i-c),s&&h.indexOf(w)<0&&(h=h.concat(w)),x={animating:!0,currentSlide:w,lazyLoadedList:h,targetSlide:w},j={animating:!1,targetSlide:w}}else b=w,w<0?(b=w+c,o?c%f!=0&&(b=c-c%f):b=0):!v(e)&&w>p?w=b=p:d&&w>=c?(w=o?c:c-1,b=o?0:c-1):w>=c&&(b=w-c,o?c%f!=0&&(b=0):b=c-m),!o&&w+m>=c&&(b=c-m),g=M(a(a({},e),{},{slideIndex:w})),_=M(a(a({},e),{},{slideIndex:b})),o||(g===_&&(w=b),g=_),s&&(h=h.concat(u(a(a({},e),{},{currentSlide:w})))),y?(x={animating:!0,currentSlide:b,trackStyle:N(a(a({},e),{},{left:g})),lazyLoadedList:h,targetSlide:S},j={animating:!1,currentSlide:b,trackStyle:k(a(a({},e),{},{left:_})),swipeLeft:null,targetSlide:S}):x={currentSlide:b,trackStyle:k(a(a({},e),{},{left:_})),lazyLoadedList:h,targetSlide:S};return{state:x,nextState:j}};t.changeSlide=function(e,t){var r,n,o,i,c=e.slidesToScroll,l=e.slidesToShow,s=e.slideCount,u=e.currentSlide,p=e.targetSlide,d=e.lazyLoad,f=e.infinite;if(r=s%c!=0?0:(s-u)%c,\"previous\"===t.message)i=u-(o=0===r?c:l-r),d&&!f&&(i=-1===(n=u-o)?s-1:n),f||(i=p-c);else if(\"next\"===t.message)i=u+(o=0===r?c:r),d&&!f&&(i=(u+c)%s+r),f||(i=p+c);else if(\"dots\"===t.message)i=t.index*t.slidesToScroll;else if(\"children\"===t.message){if(i=t.index,f){var m=L(a(a({},e),{},{targetSlide:i}));i>t.currentSlide&&\"left\"===m?i-=s:i<t.currentSlide&&\"right\"===m&&(i+=s)}}else\"index\"===t.message&&(i=Number(t.index));return i};t.keyHandler=function(e,t,r){return e.target.tagName.match(\"TEXTAREA|INPUT|SELECT\")||!t?\"\":37===e.keyCode?r?\"next\":\"previous\":39===e.keyCode?r?\"previous\":\"next\":\"\"};t.swipeStart=function(e,t,r){return\"IMG\"===e.target.tagName&&s(e),!t||!r&&-1!==e.type.indexOf(\"mouse\")?\"\":{dragging:!0,touchObject:{startX:e.touches?e.touches[0].pageX:e.clientX,startY:e.touches?e.touches[0].pageY:e.clientY,curX:e.touches?e.touches[0].pageX:e.clientX,curY:e.touches?e.touches[0].pageY:e.clientY}}};t.swipeMove=function(e,t){var r=t.scrolling,n=t.animating,o=t.vertical,i=t.swipeToSlide,c=t.verticalSwiping,l=t.rtl,u=t.currentSlide,p=t.edgeFriction,d=t.edgeDragged,f=t.onEdge,m=t.swiped,y=t.swiping,h=t.slideCount,g=t.slidesToScroll,_=t.infinite,w=t.touchObject,x=t.swipeEvent,N=t.listHeight,j=t.listWidth;if(!r){if(n)return s(e);o&&i&&c&&s(e);var S,E={},L=M(t);w.curX=e.touches?e.touches[0].pageX:e.clientX,w.curY=e.touches?e.touches[0].pageY:e.clientY,w.swipeLength=Math.round(Math.sqrt(Math.pow(w.curX-w.startX,2)));var O=Math.round(Math.sqrt(Math.pow(w.curY-w.startY,2)));if(!c&&!y&&O>10)return{scrolling:!0};c&&(w.swipeLength=O);var I=(l?-1:1)*(w.curX>w.startX?1:-1);c&&(I=w.curY>w.startY?1:-1);var C=Math.ceil(h/g),P=b(t.touchObject,c),A=w.swipeLength;return _||(0===u&&(\"right\"===P||\"down\"===P)||u+1>=C&&(\"left\"===P||\"up\"===P)||!v(t)&&(\"left\"===P||\"up\"===P))&&(A=w.swipeLength*p,!1===d&&f&&(f(P),E.edgeDragged=!0)),!m&&x&&(x(P),E.swiped=!0),S=o?L+A*(N/j)*I:l?L-A*I:L+A*I,c&&(S=L+A*I),E=a(a({},E),{},{touchObject:w,swipeLeft:S,trackStyle:k(a(a({},t),{},{left:S}))}),Math.abs(w.curX-w.startX)<.8*Math.abs(w.curY-w.startY)?E:(w.swipeLength>10&&(E.swiping=!0,s(e)),E)}};t.swipeEnd=function(e,t){var r=t.dragging,n=t.swipe,o=t.touchObject,i=t.listWidth,c=t.touchThreshold,l=t.verticalSwiping,u=t.listHeight,p=t.swipeToSlide,d=t.scrolling,f=t.onSwipe,m=t.targetSlide,y=t.currentSlide,h=t.infinite;if(!r)return n&&s(e),{};var v=l?u/c:i/c,g=b(o,l),x={dragging:!1,edgeDragged:!1,scrolling:!1,swiping:!1,swiped:!1,swipeLeft:null,touchObject:{}};if(d)return x;if(!o.swipeLength)return x;if(o.swipeLength>v){var k,j;s(e),f&&f(g);var S=h?y:m;switch(g){case\"left\":case\"up\":j=S+w(t),k=p?_(t,j):j,x.currentDirection=0;break;case\"right\":case\"down\":j=S-w(t),k=p?_(t,j):j,x.currentDirection=1;break;default:k=S}x.triggerSlideHandler=k}else{var E=M(t);x.trackStyle=N(a(a({},t),{},{left:E}))}return x};var g=function(e){for(var t=e.infinite?2*e.slideCount:e.slideCount,r=e.infinite?-1*e.slidesToShow:0,n=e.infinite?-1*e.slidesToShow:0,o=[];r<t;)o.push(r),r=n+e.slidesToScroll,n+=Math.min(e.slidesToScroll,e.slidesToShow);return o};t.getNavigableIndexes=g;var _=function(e,t){var r=g(e),n=0;if(t>r[r.length-1])t=r[r.length-1];else for(var o in r){if(t<r[o]){t=n;break}n=r[o]}return t};t.checkNavigable=_;var w=function(e){var t=e.centerMode?e.slideWidth*Math.floor(e.slidesToShow/2):0;if(e.swipeToSlide){var r,n=e.listRef,o=n.querySelectorAll&&n.querySelectorAll(\".slick-slide\")||[];if(Array.from(o).every((function(n){if(e.vertical){if(n.offsetTop+h(n)/2>-1*e.swipeLeft)return r=n,!1}else if(n.offsetLeft-t+y(n)/2>-1*e.swipeLeft)return r=n,!1;return!0})),!r)return 0;var i=!0===e.rtl?e.slideCount-e.currentSlide:e.currentSlide;return Math.abs(r.dataset.index-i)||1}return e.slidesToScroll};t.getSlideCount=w;var x=function(e,t){return t.reduce((function(t,r){return t&&e.hasOwnProperty(r)}),!0)?null:console.error(\"Keys Missing:\",e)};t.checkSpecKeys=x;var k=function(e){var t,r;x(e,[\"left\",\"variableWidth\",\"slideCount\",\"slidesToShow\",\"slideWidth\"]);var n=e.slideCount+2*e.slidesToShow;e.vertical?r=n*e.slideHeight:t=E(e)*e.slideWidth;var o={opacity:1,transition:\"\",WebkitTransition:\"\"};if(e.useTransform){var i=e.vertical?\"translate3d(0px, \"+e.left+\"px, 0px)\":\"translate3d(\"+e.left+\"px, 0px, 0px)\",c=e.vertical?\"translate3d(0px, \"+e.left+\"px, 0px)\":\"translate3d(\"+e.left+\"px, 0px, 0px)\",l=e.vertical?\"translateY(\"+e.left+\"px)\":\"translateX(\"+e.left+\"px)\";o=a(a({},o),{},{WebkitTransform:i,transform:c,msTransform:l})}else e.vertical?o.top=e.left:o.left=e.left;return e.fade&&(o={opacity:1}),t&&(o.width=t),r&&(o.height=r),window&&!window.addEventListener&&window.attachEvent&&(e.vertical?o.marginTop=e.left+\"px\":o.marginLeft=e.left+\"px\"),o};t.getTrackCSS=k;var N=function(e){x(e,[\"left\",\"variableWidth\",\"slideCount\",\"slidesToShow\",\"slideWidth\",\"speed\",\"cssEase\"]);var t=k(e);return e.useTransform?(t.WebkitTransition=\"-webkit-transform \"+e.speed+\"ms \"+e.cssEase,t.transition=\"transform \"+e.speed+\"ms \"+e.cssEase):e.vertical?t.transition=\"top \"+e.speed+\"ms \"+e.cssEase:t.transition=\"left \"+e.speed+\"ms \"+e.cssEase,t};t.getTrackAnimateCSS=N;var M=function(e){if(e.unslick)return 0;x(e,[\"slideIndex\",\"trackRef\",\"infinite\",\"centerMode\",\"slideCount\",\"slidesToShow\",\"slidesToScroll\",\"slideWidth\",\"listWidth\",\"variableWidth\",\"slideHeight\"]);var t,r,n=e.slideIndex,o=e.trackRef,i=e.infinite,a=e.centerMode,c=e.slideCount,l=e.slidesToShow,s=e.slidesToScroll,u=e.slideWidth,p=e.listWidth,d=e.variableWidth,f=e.slideHeight,m=e.fade,y=e.vertical;if(m||1===e.slideCount)return 0;var h=0;if(i?(h=-j(e),c%s!=0&&n+s>c&&(h=-(n>c?l-(n-c):c%s)),a&&(h+=parseInt(l/2))):(c%s!=0&&n+s>c&&(h=l-c%s),a&&(h=parseInt(l/2))),t=y?n*f*-1+h*f:n*u*-1+h*u,!0===d){var b,v=o&&o.node;if(b=n+j(e),t=(r=v&&v.childNodes[b])?-1*r.offsetLeft:0,!0===a){b=i?n+j(e):n,r=v&&v.children[b],t=0;for(var g=0;g<b;g++)t-=v&&v.children[g]&&v.children[g].offsetWidth;t-=parseInt(e.centerPadding),t+=r&&(p-r.offsetWidth)/2}}return t};t.getTrackLeft=M;var j=function(e){return e.unslick||!e.infinite?0:e.variableWidth?e.slideCount:e.slidesToShow+(e.centerMode?1:0)};t.getPreClones=j;var S=function(e){return e.unslick||!e.infinite?0:e.slideCount};t.getPostClones=S;var E=function(e){return 1===e.slideCount?1:j(e)+e.slideCount+S(e)};t.getTotalSlides=E;var L=function(e){return e.targetSlide>e.currentSlide?e.targetSlide>e.currentSlide+O(e)?\"left\":\"right\":e.targetSlide<e.currentSlide-I(e)?\"right\":\"left\"};t.siblingDirection=L;var O=function(e){var t=e.slidesToShow,r=e.centerMode,n=e.rtl,o=e.centerPadding;if(r){var i=(t-1)/2+1;return parseInt(o)>0&&(i+=1),n&&t%2==0&&(i+=1),i}return n?0:t-1};t.slidesOnRight=O;var I=function(e){var t=e.slidesToShow,r=e.centerMode,n=e.rtl,o=e.centerPadding;if(r){var i=(t-1)/2+1;return parseInt(o)>0&&(i+=1),n||t%2!=0||(i+=1),i}return n?t-1:0};t.slidesOnLeft=I;t.canUseDOM=function(){return!(\"undefined\"==typeof window||!window.document||!window.document.createElement)}},5058:(e,t)=>{\"use strict\";var r,n=Symbol.for(\"react.element\"),o=Symbol.for(\"react.portal\"),i=Symbol.for(\"react.fragment\"),a=Symbol.for(\"react.strict_mode\"),c=Symbol.for(\"react.profiler\"),l=Symbol.for(\"react.provider\"),s=Symbol.for(\"react.context\"),u=Symbol.for(\"react.server_context\"),p=Symbol.for(\"react.forward_ref\"),d=Symbol.for(\"react.suspense\"),f=Symbol.for(\"react.suspense_list\"),m=Symbol.for(\"react.memo\"),y=Symbol.for(\"react.lazy\"),h=Symbol.for(\"react.offscreen\");function b(e){if(\"object\"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case i:case c:case a:case d:case f:return e;default:switch(e=e&&e.$$typeof){case u:case s:case p:case y:case m:case l:return e;default:return t}}case o:return t}}}r=Symbol.for(\"react.module.reference\"),t.isForwardRef=function(e){return b(e)===p}},5834:(e,t,r)=>{\"use strict\";e.exports=r(5058)},2408:(e,t)=>{\"use strict\";var r=Symbol.for(\"react.element\"),n=Symbol.for(\"react.portal\"),o=Symbol.for(\"react.fragment\"),i=Symbol.for(\"react.strict_mode\"),a=Symbol.for(\"react.profiler\"),c=Symbol.for(\"react.provider\"),l=Symbol.for(\"react.context\"),s=Symbol.for(\"react.forward_ref\"),u=Symbol.for(\"react.suspense\"),p=Symbol.for(\"react.memo\"),d=Symbol.for(\"react.lazy\"),f=Symbol.iterator;var m={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},y=Object.assign,h={};function b(e,t,r){this.props=e,this.context=t,this.refs=h,this.updater=r||m}function v(){}function g(e,t,r){this.props=e,this.context=t,this.refs=h,this.updater=r||m}b.prototype.isReactComponent={},b.prototype.setState=function(e,t){if(\"object\"!=typeof e&&\"function\"!=typeof e&&null!=e)throw Error(\"setState(...): takes an object of state variables to update or a function which returns an object of state variables.\");this.updater.enqueueSetState(this,e,t,\"setState\")},b.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,\"forceUpdate\")},v.prototype=b.prototype;var _=g.prototype=new v;_.constructor=g,y(_,b.prototype),_.isPureReactComponent=!0;var w=Array.isArray,x=Object.prototype.hasOwnProperty,k={current:null},N={key:!0,ref:!0,__self:!0,__source:!0};function M(e,t,n){var o,i={},a=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(a=\"\"+t.key),t)x.call(t,o)&&!N.hasOwnProperty(o)&&(i[o]=t[o]);var l=arguments.length-2;if(1===l)i.children=n;else if(1<l){for(var s=Array(l),u=0;u<l;u++)s[u]=arguments[u+2];i.children=s}if(e&&e.defaultProps)for(o in l=e.defaultProps)void 0===i[o]&&(i[o]=l[o]);return{$$typeof:r,type:e,key:a,ref:c,props:i,_owner:k.current}}function j(e){return\"object\"==typeof e&&null!==e&&e.$$typeof===r}var S=/\\/+/g;function E(e,t){return\"object\"==typeof e&&null!==e&&null!=e.key?function(e){var t={\"=\":\"=0\",\":\":\"=2\"};return\"$\"+e.replace(/[=:]/g,(function(e){return t[e]}))}(\"\"+e.key):t.toString(36)}function L(e,t,o,i,a){var c=typeof e;\"undefined\"!==c&&\"boolean\"!==c||(e=null);var l=!1;if(null===e)l=!0;else switch(c){case\"string\":case\"number\":l=!0;break;case\"object\":switch(e.$$typeof){case r:case n:l=!0}}if(l)return a=a(l=e),e=\"\"===i?\".\"+E(l,0):i,w(a)?(o=\"\",null!=e&&(o=e.replace(S,\"$&/\")+\"/\"),L(a,t,o,\"\",(function(e){return e}))):null!=a&&(j(a)&&(a=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(a,o+(!a.key||l&&l.key===a.key?\"\":(\"\"+a.key).replace(S,\"$&/\")+\"/\")+e)),t.push(a)),1;if(l=0,i=\"\"===i?\".\":i+\":\",w(e))for(var s=0;s<e.length;s++){var u=i+E(c=e[s],s);l+=L(c,t,o,u,a)}else if(u=function(e){return null===e||\"object\"!=typeof e?null:\"function\"==typeof(e=f&&e[f]||e[\"@@iterator\"])?e:null}(e),\"function\"==typeof u)for(e=u.call(e),s=0;!(c=e.next()).done;)l+=L(c=c.value,t,o,u=i+E(c,s++),a);else if(\"object\"===c)throw t=String(e),Error(\"Objects are not valid as a React child (found: \"+(\"[object Object]\"===t?\"object with keys {\"+Object.keys(e).join(\", \")+\"}\":t)+\"). If you meant to render a collection of children, use an array instead.\");return l}function O(e,t,r){if(null==e)return e;var n=[],o=0;return L(e,n,\"\",\"\",(function(e){return t.call(r,e,o++)})),n}function I(e){if(-1===e._status){var t=e._result;(t=t()).then((function(t){0!==e._status&&-1!==e._status||(e._status=1,e._result=t)}),(function(t){0!==e._status&&-1!==e._status||(e._status=2,e._result=t)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var C={current:null},P={transition:null},A={ReactCurrentDispatcher:C,ReactCurrentBatchConfig:P,ReactCurrentOwner:k};t.Children={map:O,forEach:function(e,t,r){O(e,(function(){t.apply(this,arguments)}),r)},count:function(e){var t=0;return O(e,(function(){t++})),t},toArray:function(e){return O(e,(function(e){return e}))||[]},only:function(e){if(!j(e))throw Error(\"React.Children.only expected to receive a single React element child.\");return e}},t.Component=b,t.Fragment=o,t.Profiler=a,t.PureComponent=g,t.StrictMode=i,t.Suspense=u,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=A,t.cloneElement=function(e,t,n){if(null==e)throw Error(\"React.cloneElement(...): The argument must be a React element, but you passed \"+e+\".\");var o=y({},e.props),i=e.key,a=e.ref,c=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,c=k.current),void 0!==t.key&&(i=\"\"+t.key),e.type&&e.type.defaultProps)var l=e.type.defaultProps;for(s in t)x.call(t,s)&&!N.hasOwnProperty(s)&&(o[s]=void 0===t[s]&&void 0!==l?l[s]:t[s])}var s=arguments.length-2;if(1===s)o.children=n;else if(1<s){l=Array(s);for(var u=0;u<s;u++)l[u]=arguments[u+2];o.children=l}return{$$typeof:r,type:e.type,key:i,ref:a,props:o,_owner:c}},t.createContext=function(e){return(e={$$typeof:l,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:c,_context:e},e.Consumer=e},t.createElement=M,t.createFactory=function(e){var t=M.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:s,render:e}},t.isValidElement=j,t.lazy=function(e){return{$$typeof:d,_payload:{_status:-1,_result:e},_init:I}},t.memo=function(e,t){return{$$typeof:p,type:e,compare:void 0===t?null:t}},t.startTransition=function(e){var t=P.transition;P.transition={};try{e()}finally{P.transition=t}},t.unstable_act=function(){throw Error(\"act(...) is not supported in production builds of React.\")},t.useCallback=function(e,t){return C.current.useCallback(e,t)},t.useContext=function(e){return C.current.useContext(e)},t.useDebugValue=function(){},t.useDeferredValue=function(e){return C.current.useDeferredValue(e)},t.useEffect=function(e,t){return C.current.useEffect(e,t)},t.useId=function(){return C.current.useId()},t.useImperativeHandle=function(e,t,r){return C.current.useImperativeHandle(e,t,r)},t.useInsertionEffect=function(e,t){return C.current.useInsertionEffect(e,t)},t.useLayoutEffect=function(e,t){return C.current.useLayoutEffect(e,t)},t.useMemo=function(e,t){return C.current.useMemo(e,t)},t.useReducer=function(e,t,r){return C.current.useReducer(e,t,r)},t.useRef=function(e){return C.current.useRef(e)},t.useState=function(e){return C.current.useState(e)},t.useSyncExternalStore=function(e,t,r){return C.current.useSyncExternalStore(e,t,r)},t.useTransition=function(){return C.current.useTransition()},t.version=\"18.2.0\"},7294:(e,t,r)=>{\"use strict\";e.exports=r(2408)},1033:(e,t,r)=>{\"use strict\";r.r(t),r.d(t,{default:()=>N});var n=function(){if(\"undefined\"!=typeof Map)return Map;function e(e,t){var r=-1;return e.some((function(e,n){return e[0]===t&&(r=n,!0)})),r}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,\"size\",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var r=e(this.__entries__,t),n=this.__entries__[r];return n&&n[1]},t.prototype.set=function(t,r){var n=e(this.__entries__,t);~n?this.__entries__[n][1]=r:this.__entries__.push([t,r])},t.prototype.delete=function(t){var r=this.__entries__,n=e(r,t);~n&&r.splice(n,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var r=0,n=this.__entries__;r<n.length;r++){var o=n[r];e.call(t,o[1],o[0])}},t}()}(),o=\"undefined\"!=typeof window&&\"undefined\"!=typeof document&&window.document===document,i=void 0!==r.g&&r.g.Math===Math?r.g:\"undefined\"!=typeof self&&self.Math===Math?self:\"undefined\"!=typeof window&&window.Math===Math?window:Function(\"return this\")(),a=\"function\"==typeof requestAnimationFrame?requestAnimationFrame.bind(i):function(e){return setTimeout((function(){return e(Date.now())}),1e3/60)};var c=[\"top\",\"right\",\"bottom\",\"left\",\"width\",\"height\",\"size\",\"weight\"],l=\"undefined\"!=typeof MutationObserver,s=function(){function e(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=function(e,t){var r=!1,n=!1,o=0;function i(){r&&(r=!1,e()),n&&l()}function c(){a(i)}function l(){var e=Date.now();if(r){if(e-o<2)return;n=!0}else r=!0,n=!1,setTimeout(c,t);o=e}return l}(this.refresh.bind(this),20)}return e.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},e.prototype.removeObserver=function(e){var t=this.observers_,r=t.indexOf(e);~r&&t.splice(r,1),!t.length&&this.connected_&&this.disconnect_()},e.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},e.prototype.updateObservers_=function(){var e=this.observers_.filter((function(e){return e.gatherActive(),e.hasActive()}));return e.forEach((function(e){return e.broadcastActive()})),e.length>0},e.prototype.connect_=function(){o&&!this.connected_&&(document.addEventListener(\"transitionend\",this.onTransitionEnd_),window.addEventListener(\"resize\",this.refresh),l?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener(\"DOMSubtreeModified\",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){o&&this.connected_&&(document.removeEventListener(\"transitionend\",this.onTransitionEnd_),window.removeEventListener(\"resize\",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener(\"DOMSubtreeModified\",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,r=void 0===t?\"\":t;c.some((function(e){return!!~r.indexOf(e)}))&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),u=function(e,t){for(var r=0,n=Object.keys(t);r<n.length;r++){var o=n[r];Object.defineProperty(e,o,{value:t[o],enumerable:!1,writable:!1,configurable:!0})}return e},p=function(e){return e&&e.ownerDocument&&e.ownerDocument.defaultView||i},d=v(0,0,0,0);function f(e){return parseFloat(e)||0}function m(e){for(var t=[],r=1;r<arguments.length;r++)t[r-1]=arguments[r];return t.reduce((function(t,r){return t+f(e[\"border-\"+r+\"-width\"])}),0)}function y(e){var t=e.clientWidth,r=e.clientHeight;if(!t&&!r)return d;var n=p(e).getComputedStyle(e),o=function(e){for(var t={},r=0,n=[\"top\",\"right\",\"bottom\",\"left\"];r<n.length;r++){var o=n[r],i=e[\"padding-\"+o];t[o]=f(i)}return t}(n),i=o.left+o.right,a=o.top+o.bottom,c=f(n.width),l=f(n.height);if(\"border-box\"===n.boxSizing&&(Math.round(c+i)!==t&&(c-=m(n,\"left\",\"right\")+i),Math.round(l+a)!==r&&(l-=m(n,\"top\",\"bottom\")+a)),!function(e){return e===p(e).document.documentElement}(e)){var s=Math.round(c+i)-t,u=Math.round(l+a)-r;1!==Math.abs(s)&&(c-=s),1!==Math.abs(u)&&(l-=u)}return v(o.left,o.top,c,l)}var h=\"undefined\"!=typeof SVGGraphicsElement?function(e){return e instanceof p(e).SVGGraphicsElement}:function(e){return e instanceof p(e).SVGElement&&\"function\"==typeof e.getBBox};function b(e){return o?h(e)?function(e){var t=e.getBBox();return v(0,0,t.width,t.height)}(e):y(e):d}function v(e,t,r,n){return{x:e,y:t,width:r,height:n}}var g=function(){function e(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=v(0,0,0,0),this.target=e}return e.prototype.isActive=function(){var e=b(this.target);return this.contentRect_=e,e.width!==this.broadcastWidth||e.height!==this.broadcastHeight},e.prototype.broadcastRect=function(){var e=this.contentRect_;return this.broadcastWidth=e.width,this.broadcastHeight=e.height,e},e}(),_=function(e,t){var r,n,o,i,a,c,l,s=(n=(r=t).x,o=r.y,i=r.width,a=r.height,c=\"undefined\"!=typeof DOMRectReadOnly?DOMRectReadOnly:Object,l=Object.create(c.prototype),u(l,{x:n,y:o,width:i,height:a,top:o,right:n+i,bottom:a+o,left:n}),l);u(this,{target:e,contentRect:s})},w=function(){function e(e,t,r){if(this.activeObservations_=[],this.observations_=new n,\"function\"!=typeof e)throw new TypeError(\"The callback provided as parameter 1 is not a function.\");this.callback_=e,this.controller_=t,this.callbackCtx_=r}return e.prototype.observe=function(e){if(!arguments.length)throw new TypeError(\"1 argument required, but only 0 present.\");if(\"undefined\"!=typeof Element&&Element instanceof Object){if(!(e instanceof p(e).Element))throw new TypeError('parameter 1 is not of type \"Element\".');var t=this.observations_;t.has(e)||(t.set(e,new g(e)),this.controller_.addObserver(this),this.controller_.refresh())}},e.prototype.unobserve=function(e){if(!arguments.length)throw new TypeError(\"1 argument required, but only 0 present.\");if(\"undefined\"!=typeof Element&&Element instanceof Object){if(!(e instanceof p(e).Element))throw new TypeError('parameter 1 is not of type \"Element\".');var t=this.observations_;t.has(e)&&(t.delete(e),t.size||this.controller_.removeObserver(this))}},e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},e.prototype.gatherActive=function(){var e=this;this.clearActive(),this.observations_.forEach((function(t){t.isActive()&&e.activeObservations_.push(t)}))},e.prototype.broadcastActive=function(){if(this.hasActive()){var e=this.callbackCtx_,t=this.activeObservations_.map((function(e){return new _(e.target,e.broadcastRect())}));this.callback_.call(e,t,e),this.clearActive()}},e.prototype.clearActive=function(){this.activeObservations_.splice(0)},e.prototype.hasActive=function(){return this.activeObservations_.length>0},e}(),x=\"undefined\"!=typeof WeakMap?new WeakMap:new n,k=function e(t){if(!(this instanceof e))throw new TypeError(\"Cannot call a class as a function.\");if(!arguments.length)throw new TypeError(\"1 argument required, but only 0 present.\");var r=s.getInstance(),n=new w(t,r,this);x.set(this,n)};[\"observe\",\"unobserve\",\"disconnect\"].forEach((function(e){k.prototype[e]=function(){var t;return(t=x.get(this))[e].apply(t,arguments)}}));const N=void 0!==i.ResizeObserver?i.ResizeObserver:k},53:(e,t)=>{\"use strict\";function r(e,t){var r=e.length;e.push(t);e:for(;0<r;){var n=r-1>>>1,o=e[n];if(!(0<i(o,t)))break e;e[n]=t,e[r]=o,r=n}}function n(e){return 0===e.length?null:e[0]}function o(e){if(0===e.length)return null;var t=e[0],r=e.pop();if(r!==t){e[0]=r;e:for(var n=0,o=e.length,a=o>>>1;n<a;){var c=2*(n+1)-1,l=e[c],s=c+1,u=e[s];if(0>i(l,r))s<o&&0>i(u,l)?(e[n]=u,e[s]=r,n=s):(e[n]=l,e[c]=r,n=c);else{if(!(s<o&&0>i(u,r)))break e;e[n]=u,e[s]=r,n=s}}}return t}function i(e,t){var r=e.sortIndex-t.sortIndex;return 0!==r?r:e.id-t.id}if(\"object\"==typeof performance&&\"function\"==typeof performance.now){var a=performance;t.unstable_now=function(){return a.now()}}else{var c=Date,l=c.now();t.unstable_now=function(){return c.now()-l}}var s=[],u=[],p=1,d=null,f=3,m=!1,y=!1,h=!1,b=\"function\"==typeof setTimeout?setTimeout:null,v=\"function\"==typeof clearTimeout?clearTimeout:null,g=\"undefined\"!=typeof setImmediate?setImmediate:null;function _(e){for(var t=n(u);null!==t;){if(null===t.callback)o(u);else{if(!(t.startTime<=e))break;o(u),t.sortIndex=t.expirationTime,r(s,t)}t=n(u)}}function w(e){if(h=!1,_(e),!y)if(null!==n(s))y=!0,P(x);else{var t=n(u);null!==t&&A(w,t.startTime-e)}}function x(e,r){y=!1,h&&(h=!1,v(j),j=-1),m=!0;var i=f;try{for(_(r),d=n(s);null!==d&&(!(d.expirationTime>r)||e&&!L());){var a=d.callback;if(\"function\"==typeof a){d.callback=null,f=d.priorityLevel;var c=a(d.expirationTime<=r);r=t.unstable_now(),\"function\"==typeof c?d.callback=c:d===n(s)&&o(s),_(r)}else o(s);d=n(s)}if(null!==d)var l=!0;else{var p=n(u);null!==p&&A(w,p.startTime-r),l=!1}return l}finally{d=null,f=i,m=!1}}\"undefined\"!=typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var k,N=!1,M=null,j=-1,S=5,E=-1;function L(){return!(t.unstable_now()-E<S)}function O(){if(null!==M){var e=t.unstable_now();E=e;var r=!0;try{r=M(!0,e)}finally{r?k():(N=!1,M=null)}}else N=!1}if(\"function\"==typeof g)k=function(){g(O)};else if(\"undefined\"!=typeof MessageChannel){var I=new MessageChannel,C=I.port2;I.port1.onmessage=O,k=function(){C.postMessage(null)}}else k=function(){b(O,0)};function P(e){M=e,N||(N=!0,k())}function A(e,r){j=b((function(){e(t.unstable_now())}),r)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){y||m||(y=!0,P(x))},t.unstable_forceFrameRate=function(e){0>e||125<e?console.error(\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"):S=0<e?Math.floor(1e3/e):5},t.unstable_getCurrentPriorityLevel=function(){return f},t.unstable_getFirstCallbackNode=function(){return n(s)},t.unstable_next=function(e){switch(f){case 1:case 2:case 3:var t=3;break;default:t=f}var r=f;f=t;try{return e()}finally{f=r}},t.unstable_pauseExecution=function(){},t.unstable_requestPaint=function(){},t.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var r=f;f=e;try{return t()}finally{f=r}},t.unstable_scheduleCallback=function(e,o,i){var a=t.unstable_now();switch(\"object\"==typeof i&&null!==i?i=\"number\"==typeof(i=i.delay)&&0<i?a+i:a:i=a,e){case 1:var c=-1;break;case 2:c=250;break;case 5:c=1073741823;break;case 4:c=1e4;break;default:c=5e3}return e={id:p++,callback:o,priorityLevel:e,startTime:i,expirationTime:c=i+c,sortIndex:-1},i>a?(e.sortIndex=i,r(u,e),null===n(s)&&e===n(u)&&(h?(v(j),j=-1):h=!0,A(w,i-a))):(e.sortIndex=c,r(s,e),y||m||(y=!0,P(x))),e},t.unstable_shouldYield=L,t.unstable_wrapCallback=function(e){var t=f;return function(){var r=f;f=t;try{return e.apply(this,arguments)}finally{f=r}}}},3840:(e,t,r)=>{\"use strict\";e.exports=r(53)},9490:(e,t,r)=>{\"use strict\";r.r(t),r.d(t,{snakeCase:()=>s});var n=function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var o in t=arguments[r])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},n.apply(this,arguments)};Object.create;Object.create;function o(e){return e.toLowerCase()}var i=[/([a-z0-9])([A-Z])/g,/([A-Z])([A-Z][a-z])/g],a=/[^A-Z0-9]+/gi;function c(e,t,r){return t instanceof RegExp?e.replace(t,r):t.reduce((function(e,t){return e.replace(t,r)}),e)}function l(e,t){return void 0===t&&(t={}),function(e,t){void 0===t&&(t={});for(var r=t.splitRegexp,n=void 0===r?i:r,l=t.stripRegexp,s=void 0===l?a:l,u=t.transform,p=void 0===u?o:u,d=t.delimiter,f=void 0===d?\" \":d,m=c(c(e,n,\"$1\\0$2\"),s,\"\\0\"),y=0,h=m.length;\"\\0\"===m.charAt(y);)y++;for(;\"\\0\"===m.charAt(h-1);)h--;return m.slice(y,h).split(\"\\0\").map(p).join(f)}(e,n({delimiter:\".\"},t))}function s(e,t){return void 0===t&&(t={}),l(e,n({delimiter:\"_\"},t))}},7118:(e,t,r)=>{\"use strict\";const n=r(6900),{snakeCase:o}=r(9490);e.exports=function(e,t){return t=Object.assign({deep:!0,exclude:[],parsingOptions:{}},t),n(e,(function(e,r){return[(n=t.exclude,i=e,n.some((function(e){return\"string\"==typeof e?e===i:e.test(i)}))?e:o(e,t.parsingOptions)),r];var n,i}),t)}},1169:e=>{e.exports=function(e){return e.replace(/[A-Z]/g,(function(e){return\"-\"+e.toLowerCase()})).toLowerCase()}},3379:(e,t,r)=>{\"use strict\";var n,o=function(){return void 0===n&&(n=Boolean(window&&document&&document.all&&!window.atob)),n},i=function(){var e={};return function(t){if(void 0===e[t]){var r=document.querySelector(t);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}e[t]=r}return e[t]}}(),a=[];function c(e){for(var t=-1,r=0;r<a.length;r++)if(a[r].identifier===e){t=r;break}return t}function l(e,t){for(var r={},n=[],o=0;o<e.length;o++){var i=e[o],l=t.base?i[0]+t.base:i[0],s=r[l]||0,u=\"\".concat(l,\" \").concat(s);r[l]=s+1;var p=c(u),d={css:i[1],media:i[2],sourceMap:i[3]};-1!==p?(a[p].references++,a[p].updater(d)):a.push({identifier:u,updater:h(d,t),references:1}),n.push(u)}return n}function s(e){var t=document.createElement(\"style\"),n=e.attributes||{};if(void 0===n.nonce){var o=r.nc;o&&(n.nonce=o)}if(Object.keys(n).forEach((function(e){t.setAttribute(e,n[e])})),\"function\"==typeof e.insert)e.insert(t);else{var a=i(e.insert||\"head\");if(!a)throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");a.appendChild(t)}return t}var u,p=(u=[],function(e,t){return u[e]=t,u.filter(Boolean).join(\"\\n\")});function d(e,t,r,n){var o=r?\"\":n.media?\"@media \".concat(n.media,\" {\").concat(n.css,\"}\"):n.css;if(e.styleSheet)e.styleSheet.cssText=p(t,o);else{var i=document.createTextNode(o),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(i,a[t]):e.appendChild(i)}}function f(e,t,r){var n=r.css,o=r.media,i=r.sourceMap;if(o?e.setAttribute(\"media\",o):e.removeAttribute(\"media\"),i&&\"undefined\"!=typeof btoa&&(n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i)))),\" */\")),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}var m=null,y=0;function h(e,t){var r,n,o;if(t.singleton){var i=y++;r=m||(m=s(t)),n=d.bind(null,r,i,!1),o=d.bind(null,r,i,!0)}else r=s(t),n=f.bind(null,r,t),o=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(r)};return n(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;n(e=t)}else o()}}e.exports=function(e,t){(t=t||{}).singleton||\"boolean\"==typeof t.singleton||(t.singleton=o());var r=l(e=e||[],t);return function(e){if(e=e||[],\"[object Array]\"===Object.prototype.toString.call(e)){for(var n=0;n<r.length;n++){var o=c(r[n]);a[o].references--}for(var i=l(e,t),s=0;s<r.length;s++){var u=c(r[s]);0===a[u].references&&(a[u].updater(),a.splice(u,1))}r=i}}}},2511:function(e,t,r){var n;e=r.nmd(e),function(o){t&&t.nodeType,e&&e.nodeType;var i=\"object\"==typeof r.g&&r.g;i.global!==i&&i.window!==i&&i.self;var a,c=2147483647,l=36,s=1,u=26,p=38,d=700,f=72,m=128,y=\"-\",h=/^xn--/,b=/[^\\x20-\\x7E]/,v=/[\\x2E\\u3002\\uFF0E\\uFF61]/g,g={overflow:\"Overflow: input needs wider integers to process\",\"not-basic\":\"Illegal input >= 0x80 (not a basic code point)\",\"invalid-input\":\"Invalid input\"},_=l-s,w=Math.floor,x=String.fromCharCode;function k(e){throw RangeError(g[e])}function N(e,t){for(var r=e.length,n=[];r--;)n[r]=t(e[r]);return n}function M(e,t){var r=e.split(\"@\"),n=\"\";return r.length>1&&(n=r[0]+\"@\",e=r[1]),n+N((e=e.replace(v,\".\")).split(\".\"),t).join(\".\")}function j(e){for(var t,r,n=[],o=0,i=e.length;o<i;)(t=e.charCodeAt(o++))>=55296&&t<=56319&&o<i?56320==(64512&(r=e.charCodeAt(o++)))?n.push(((1023&t)<<10)+(1023&r)+65536):(n.push(t),o--):n.push(t);return n}function S(e){return N(e,(function(e){var t=\"\";return e>65535&&(t+=x((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=x(e)})).join(\"\")}function E(e,t){return e+22+75*(e<26)-((0!=t)<<5)}function L(e,t,r){var n=0;for(e=r?w(e/d):e>>1,e+=w(e/t);e>_*u>>1;n+=l)e=w(e/_);return w(n+(_+1)*e/(e+p))}function O(e){var t,r,n,o,i,a,p,d,h,b,v,g=[],_=e.length,x=0,N=m,M=f;for((r=e.lastIndexOf(y))<0&&(r=0),n=0;n<r;++n)e.charCodeAt(n)>=128&&k(\"not-basic\"),g.push(e.charCodeAt(n));for(o=r>0?r+1:0;o<_;){for(i=x,a=1,p=l;o>=_&&k(\"invalid-input\"),((d=(v=e.charCodeAt(o++))-48<10?v-22:v-65<26?v-65:v-97<26?v-97:l)>=l||d>w((c-x)/a))&&k(\"overflow\"),x+=d*a,!(d<(h=p<=M?s:p>=M+u?u:p-M));p+=l)a>w(c/(b=l-h))&&k(\"overflow\"),a*=b;M=L(x-i,t=g.length+1,0==i),w(x/t)>c-N&&k(\"overflow\"),N+=w(x/t),x%=t,g.splice(x++,0,N)}return S(g)}function I(e){var t,r,n,o,i,a,p,d,h,b,v,g,_,N,M,S=[];for(g=(e=j(e)).length,t=m,r=0,i=f,a=0;a<g;++a)(v=e[a])<128&&S.push(x(v));for(n=o=S.length,o&&S.push(y);n<g;){for(p=c,a=0;a<g;++a)(v=e[a])>=t&&v<p&&(p=v);for(p-t>w((c-r)/(_=n+1))&&k(\"overflow\"),r+=(p-t)*_,t=p,a=0;a<g;++a)if((v=e[a])<t&&++r>c&&k(\"overflow\"),v==t){for(d=r,h=l;!(d<(b=h<=i?s:h>=i+u?u:h-i));h+=l)M=d-b,N=l-b,S.push(x(E(b+M%N,0))),d=w(M/N);S.push(x(E(d,0))),i=L(r,_,n==o),r=0,++n}++r,++t}return S.join(\"\")}a={version:\"1.3.2\",ucs2:{decode:j,encode:S},decode:O,encode:I,toASCII:function(e){return M(e,(function(e){return b.test(e)?\"xn--\"+I(e):e}))},toUnicode:function(e){return M(e,(function(e){return h.test(e)?O(e.slice(4).toLowerCase()):e}))}},void 0===(n=function(){return a}.call(t,r,t,e))||(e.exports=n)}()},8575:(e,t,r)=>{\"use strict\";var n=r(2511),o=r(2502);function i(){this.protocol=null,this.slashes=null,this.auth=null,this.host=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.query=null,this.pathname=null,this.path=null,this.href=null}t.Qc=g,t.WU=function(e){o.isString(e)&&(e=g(e));return e instanceof i?e.format():i.prototype.format.call(e)};var a=/^([a-z0-9.+-]+:)/i,c=/:[0-9]*$/,l=/^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,s=[\"{\",\"}\",\"|\",\"\\\\\",\"^\",\"`\"].concat([\"<\",\">\",'\"',\"`\",\" \",\"\\r\",\"\\n\",\"\\t\"]),u=[\"'\"].concat(s),p=[\"%\",\"/\",\"?\",\";\",\"#\"].concat(u),d=[\"/\",\"?\",\"#\"],f=/^[+a-z0-9A-Z_-]{0,63}$/,m=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,y={javascript:!0,\"javascript:\":!0},h={javascript:!0,\"javascript:\":!0},b={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,\"http:\":!0,\"https:\":!0,\"ftp:\":!0,\"gopher:\":!0,\"file:\":!0},v=r(7673);function g(e,t,r){if(e&&o.isObject(e)&&e instanceof i)return e;var n=new i;return n.parse(e,t,r),n}i.prototype.parse=function(e,t,r){if(!o.isString(e))throw new TypeError(\"Parameter 'url' must be a string, not \"+typeof e);var i=e.indexOf(\"?\"),c=-1!==i&&i<e.indexOf(\"#\")?\"?\":\"#\",s=e.split(c);s[0]=s[0].replace(/\\\\/g,\"/\");var g=e=s.join(c);if(g=g.trim(),!r&&1===e.split(\"#\").length){var _=l.exec(g);if(_)return this.path=g,this.href=g,this.pathname=_[1],_[2]?(this.search=_[2],this.query=t?v.parse(this.search.substr(1)):this.search.substr(1)):t&&(this.search=\"\",this.query={}),this}var w=a.exec(g);if(w){var x=(w=w[0]).toLowerCase();this.protocol=x,g=g.substr(w.length)}if(r||w||g.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)){var k=\"//\"===g.substr(0,2);!k||w&&h[w]||(g=g.substr(2),this.slashes=!0)}if(!h[w]&&(k||w&&!b[w])){for(var N,M,j=-1,S=0;S<d.length;S++){-1!==(E=g.indexOf(d[S]))&&(-1===j||E<j)&&(j=E)}-1!==(M=-1===j?g.lastIndexOf(\"@\"):g.lastIndexOf(\"@\",j))&&(N=g.slice(0,M),g=g.slice(M+1),this.auth=decodeURIComponent(N)),j=-1;for(S=0;S<p.length;S++){var E;-1!==(E=g.indexOf(p[S]))&&(-1===j||E<j)&&(j=E)}-1===j&&(j=g.length),this.host=g.slice(0,j),g=g.slice(j),this.parseHost(),this.hostname=this.hostname||\"\";var L=\"[\"===this.hostname[0]&&\"]\"===this.hostname[this.hostname.length-1];if(!L)for(var O=this.hostname.split(/\\./),I=(S=0,O.length);S<I;S++){var C=O[S];if(C&&!C.match(f)){for(var P=\"\",A=0,D=C.length;A<D;A++)C.charCodeAt(A)>127?P+=\"x\":P+=C[A];if(!P.match(f)){var T=O.slice(0,S),z=O.slice(S+1),B=C.match(m);B&&(T.push(B[1]),z.unshift(B[2])),z.length&&(g=\"/\"+z.join(\".\")+g),this.hostname=T.join(\".\");break}}}this.hostname.length>255?this.hostname=\"\":this.hostname=this.hostname.toLowerCase(),L||(this.hostname=n.toASCII(this.hostname));var R=this.port?\":\"+this.port:\"\",F=this.hostname||\"\";this.host=F+R,this.href+=this.host,L&&(this.hostname=this.hostname.substr(1,this.hostname.length-2),\"/\"!==g[0]&&(g=\"/\"+g))}if(!y[x])for(S=0,I=u.length;S<I;S++){var U=u[S];if(-1!==g.indexOf(U)){var Z=encodeURIComponent(U);Z===U&&(Z=escape(U)),g=g.split(U).join(Z)}}var Y=g.indexOf(\"#\");-1!==Y&&(this.hash=g.substr(Y),g=g.slice(0,Y));var W=g.indexOf(\"?\");if(-1!==W?(this.search=g.substr(W),this.query=g.substr(W+1),t&&(this.query=v.parse(this.query)),g=g.slice(0,W)):t&&(this.search=\"\",this.query={}),g&&(this.pathname=g),b[x]&&this.hostname&&!this.pathname&&(this.pathname=\"/\"),this.pathname||this.search){R=this.pathname||\"\";var V=this.search||\"\";this.path=R+V}return this.href=this.format(),this},i.prototype.format=function(){var e=this.auth||\"\";e&&(e=(e=encodeURIComponent(e)).replace(/%3A/i,\":\"),e+=\"@\");var t=this.protocol||\"\",r=this.pathname||\"\",n=this.hash||\"\",i=!1,a=\"\";this.host?i=e+this.host:this.hostname&&(i=e+(-1===this.hostname.indexOf(\":\")?this.hostname:\"[\"+this.hostname+\"]\"),this.port&&(i+=\":\"+this.port)),this.query&&o.isObject(this.query)&&Object.keys(this.query).length&&(a=v.stringify(this.query));var c=this.search||a&&\"?\"+a||\"\";return t&&\":\"!==t.substr(-1)&&(t+=\":\"),this.slashes||(!t||b[t])&&!1!==i?(i=\"//\"+(i||\"\"),r&&\"/\"!==r.charAt(0)&&(r=\"/\"+r)):i||(i=\"\"),n&&\"#\"!==n.charAt(0)&&(n=\"#\"+n),c&&\"?\"!==c.charAt(0)&&(c=\"?\"+c),t+i+(r=r.replace(/[?#]/g,(function(e){return encodeURIComponent(e)})))+(c=c.replace(\"#\",\"%23\"))+n},i.prototype.resolve=function(e){return this.resolveObject(g(e,!1,!0)).format()},i.prototype.resolveObject=function(e){if(o.isString(e)){var t=new i;t.parse(e,!1,!0),e=t}for(var r=new i,n=Object.keys(this),a=0;a<n.length;a++){var c=n[a];r[c]=this[c]}if(r.hash=e.hash,\"\"===e.href)return r.href=r.format(),r;if(e.slashes&&!e.protocol){for(var l=Object.keys(e),s=0;s<l.length;s++){var u=l[s];\"protocol\"!==u&&(r[u]=e[u])}return b[r.protocol]&&r.hostname&&!r.pathname&&(r.path=r.pathname=\"/\"),r.href=r.format(),r}if(e.protocol&&e.protocol!==r.protocol){if(!b[e.protocol]){for(var p=Object.keys(e),d=0;d<p.length;d++){var f=p[d];r[f]=e[f]}return r.href=r.format(),r}if(r.protocol=e.protocol,e.host||h[e.protocol])r.pathname=e.pathname;else{for(var m=(e.pathname||\"\").split(\"/\");m.length&&!(e.host=m.shift()););e.host||(e.host=\"\"),e.hostname||(e.hostname=\"\"),\"\"!==m[0]&&m.unshift(\"\"),m.length<2&&m.unshift(\"\"),r.pathname=m.join(\"/\")}if(r.search=e.search,r.query=e.query,r.host=e.host||\"\",r.auth=e.auth,r.hostname=e.hostname||e.host,r.port=e.port,r.pathname||r.search){var y=r.pathname||\"\",v=r.search||\"\";r.path=y+v}return r.slashes=r.slashes||e.slashes,r.href=r.format(),r}var g=r.pathname&&\"/\"===r.pathname.charAt(0),_=e.host||e.pathname&&\"/\"===e.pathname.charAt(0),w=_||g||r.host&&e.pathname,x=w,k=r.pathname&&r.pathname.split(\"/\")||[],N=(m=e.pathname&&e.pathname.split(\"/\")||[],r.protocol&&!b[r.protocol]);if(N&&(r.hostname=\"\",r.port=null,r.host&&(\"\"===k[0]?k[0]=r.host:k.unshift(r.host)),r.host=\"\",e.protocol&&(e.hostname=null,e.port=null,e.host&&(\"\"===m[0]?m[0]=e.host:m.unshift(e.host)),e.host=null),w=w&&(\"\"===m[0]||\"\"===k[0])),_)r.host=e.host||\"\"===e.host?e.host:r.host,r.hostname=e.hostname||\"\"===e.hostname?e.hostname:r.hostname,r.search=e.search,r.query=e.query,k=m;else if(m.length)k||(k=[]),k.pop(),k=k.concat(m),r.search=e.search,r.query=e.query;else if(!o.isNullOrUndefined(e.search)){if(N)r.hostname=r.host=k.shift(),(L=!!(r.host&&r.host.indexOf(\"@\")>0)&&r.host.split(\"@\"))&&(r.auth=L.shift(),r.host=r.hostname=L.shift());return r.search=e.search,r.query=e.query,o.isNull(r.pathname)&&o.isNull(r.search)||(r.path=(r.pathname?r.pathname:\"\")+(r.search?r.search:\"\")),r.href=r.format(),r}if(!k.length)return r.pathname=null,r.search?r.path=\"/\"+r.search:r.path=null,r.href=r.format(),r;for(var M=k.slice(-1)[0],j=(r.host||e.host||k.length>1)&&(\".\"===M||\"..\"===M)||\"\"===M,S=0,E=k.length;E>=0;E--)\".\"===(M=k[E])?k.splice(E,1):\"..\"===M?(k.splice(E,1),S++):S&&(k.splice(E,1),S--);if(!w&&!x)for(;S--;S)k.unshift(\"..\");!w||\"\"===k[0]||k[0]&&\"/\"===k[0].charAt(0)||k.unshift(\"\"),j&&\"/\"!==k.join(\"/\").substr(-1)&&k.push(\"\");var L,O=\"\"===k[0]||k[0]&&\"/\"===k[0].charAt(0);N&&(r.hostname=r.host=O?\"\":k.length?k.shift():\"\",(L=!!(r.host&&r.host.indexOf(\"@\")>0)&&r.host.split(\"@\"))&&(r.auth=L.shift(),r.host=r.hostname=L.shift()));return(w=w||r.host&&k.length)&&!O&&k.unshift(\"\"),k.length?r.pathname=k.join(\"/\"):(r.pathname=null,r.path=null),o.isNull(r.pathname)&&o.isNull(r.search)||(r.path=(r.pathname?r.pathname:\"\")+(r.search?r.search:\"\")),r.auth=e.auth||r.auth,r.slashes=r.slashes||e.slashes,r.href=r.format(),r},i.prototype.parseHost=function(){var e=this.host,t=c.exec(e);t&&(\":\"!==(t=t[0])&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)}},2502:e=>{\"use strict\";e.exports={isString:function(e){return\"string\"==typeof e},isObject:function(e){return\"object\"==typeof e&&null!==e},isNull:function(e){return null===e},isNullOrUndefined:function(e){return null==e}}},7061:(e,t,r)=>{var n=r(8698).default;function o(){\"use strict\";e.exports=o=function(){return t},e.exports.__esModule=!0,e.exports.default=e.exports;var t={},r=Object.prototype,i=r.hasOwnProperty,a=Object.defineProperty||function(e,t,r){e[t]=r.value},c=\"function\"==typeof Symbol?Symbol:{},l=c.iterator||\"@@iterator\",s=c.asyncIterator||\"@@asyncIterator\",u=c.toStringTag||\"@@toStringTag\";function p(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}),e[t]}try{p({},\"\")}catch(e){p=function(e,t,r){return e[t]=r}}function d(e,t,r,n){var o=t&&t.prototype instanceof y?t:y,i=Object.create(o.prototype),c=new E(n||[]);return a(i,\"_invoke\",{value:N(e,r,c)}),i}function f(e,t,r){try{return{type:\"normal\",arg:e.call(t,r)}}catch(e){return{type:\"throw\",arg:e}}}t.wrap=d;var m={};function y(){}function h(){}function b(){}var v={};p(v,l,(function(){return this}));var g=Object.getPrototypeOf,_=g&&g(g(L([])));_&&_!==r&&i.call(_,l)&&(v=_);var w=b.prototype=y.prototype=Object.create(v);function x(e){[\"next\",\"throw\",\"return\"].forEach((function(t){p(e,t,(function(e){return this._invoke(t,e)}))}))}function k(e,t){function r(o,a,c,l){var s=f(e[o],e,a);if(\"throw\"!==s.type){var u=s.arg,p=u.value;return p&&\"object\"==n(p)&&i.call(p,\"__await\")?t.resolve(p.__await).then((function(e){r(\"next\",e,c,l)}),(function(e){r(\"throw\",e,c,l)})):t.resolve(p).then((function(e){u.value=e,c(u)}),(function(e){return r(\"throw\",e,c,l)}))}l(s.arg)}var o;a(this,\"_invoke\",{value:function(e,n){function i(){return new t((function(t,o){r(e,n,t,o)}))}return o=o?o.then(i,i):i()}})}function N(e,t,r){var n=\"suspendedStart\";return function(o,i){if(\"executing\"===n)throw new Error(\"Generator is already running\");if(\"completed\"===n){if(\"throw\"===o)throw i;return O()}for(r.method=o,r.arg=i;;){var a=r.delegate;if(a){var c=M(a,r);if(c){if(c===m)continue;return c}}if(\"next\"===r.method)r.sent=r._sent=r.arg;else if(\"throw\"===r.method){if(\"suspendedStart\"===n)throw n=\"completed\",r.arg;r.dispatchException(r.arg)}else\"return\"===r.method&&r.abrupt(\"return\",r.arg);n=\"executing\";var l=f(e,t,r);if(\"normal\"===l.type){if(n=r.done?\"completed\":\"suspendedYield\",l.arg===m)continue;return{value:l.arg,done:r.done}}\"throw\"===l.type&&(n=\"completed\",r.method=\"throw\",r.arg=l.arg)}}}function M(e,t){var r=t.method,n=e.iterator[r];if(void 0===n)return t.delegate=null,\"throw\"===r&&e.iterator.return&&(t.method=\"return\",t.arg=void 0,M(e,t),\"throw\"===t.method)||\"return\"!==r&&(t.method=\"throw\",t.arg=new TypeError(\"The iterator does not provide a '\"+r+\"' method\")),m;var o=f(n,e.iterator,t.arg);if(\"throw\"===o.type)return t.method=\"throw\",t.arg=o.arg,t.delegate=null,m;var i=o.arg;return i?i.done?(t[e.resultName]=i.value,t.next=e.nextLoc,\"return\"!==t.method&&(t.method=\"next\",t.arg=void 0),t.delegate=null,m):i:(t.method=\"throw\",t.arg=new TypeError(\"iterator result is not an object\"),t.delegate=null,m)}function j(e){var t={tryLoc:e[0]};1 in e&&(t.catchLoc=e[1]),2 in e&&(t.finallyLoc=e[2],t.afterLoc=e[3]),this.tryEntries.push(t)}function S(e){var t=e.completion||{};t.type=\"normal\",delete t.arg,e.completion=t}function E(e){this.tryEntries=[{tryLoc:\"root\"}],e.forEach(j,this),this.reset(!0)}function L(e){if(e){var t=e[l];if(t)return t.call(e);if(\"function\"==typeof e.next)return e;if(!isNaN(e.length)){var r=-1,n=function t(){for(;++r<e.length;)if(i.call(e,r))return t.value=e[r],t.done=!1,t;return t.value=void 0,t.done=!0,t};return n.next=n}}return{next:O}}function O(){return{value:void 0,done:!0}}return h.prototype=b,a(w,\"constructor\",{value:b,configurable:!0}),a(b,\"constructor\",{value:h,configurable:!0}),h.displayName=p(b,u,\"GeneratorFunction\"),t.isGeneratorFunction=function(e){var t=\"function\"==typeof e&&e.constructor;return!!t&&(t===h||\"GeneratorFunction\"===(t.displayName||t.name))},t.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,b):(e.__proto__=b,p(e,u,\"GeneratorFunction\")),e.prototype=Object.create(w),e},t.awrap=function(e){return{__await:e}},x(k.prototype),p(k.prototype,s,(function(){return this})),t.AsyncIterator=k,t.async=function(e,r,n,o,i){void 0===i&&(i=Promise);var a=new k(d(e,r,n,o),i);return t.isGeneratorFunction(r)?a:a.next().then((function(e){return e.done?e.value:a.next()}))},x(w),p(w,u,\"Generator\"),p(w,l,(function(){return this})),p(w,\"toString\",(function(){return\"[object Generator]\"})),t.keys=function(e){var t=Object(e),r=[];for(var n in t)r.push(n);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},t.values=L,E.prototype={constructor:E,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method=\"next\",this.arg=void 0,this.tryEntries.forEach(S),!e)for(var t in this)\"t\"===t.charAt(0)&&i.call(this,t)&&!isNaN(+t.slice(1))&&(this[t]=void 0)},stop:function(){this.done=!0;var e=this.tryEntries[0].completion;if(\"throw\"===e.type)throw e.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var t=this;function r(r,n){return a.type=\"throw\",a.arg=e,t.next=r,n&&(t.method=\"next\",t.arg=void 0),!!n}for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n],a=o.completion;if(\"root\"===o.tryLoc)return r(\"end\");if(o.tryLoc<=this.prev){var c=i.call(o,\"catchLoc\"),l=i.call(o,\"finallyLoc\");if(c&&l){if(this.prev<o.catchLoc)return r(o.catchLoc,!0);if(this.prev<o.finallyLoc)return r(o.finallyLoc)}else if(c){if(this.prev<o.catchLoc)return r(o.catchLoc,!0)}else{if(!l)throw new Error(\"try statement without catch or finally\");if(this.prev<o.finallyLoc)return r(o.finallyLoc)}}}},abrupt:function(e,t){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&i.call(n,\"finallyLoc\")&&this.prev<n.finallyLoc){var o=n;break}}o&&(\"break\"===e||\"continue\"===e)&&o.tryLoc<=t&&t<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=e,a.arg=t,o?(this.method=\"next\",this.next=o.finallyLoc,m):this.complete(a)},complete:function(e,t){if(\"throw\"===e.type)throw e.arg;return\"break\"===e.type||\"continue\"===e.type?this.next=e.arg:\"return\"===e.type?(this.rval=this.arg=e.arg,this.method=\"return\",this.next=\"end\"):\"normal\"===e.type&&t&&(this.next=t),m},finish:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.finallyLoc===e)return this.complete(r.completion,r.afterLoc),S(r),m}},catch:function(e){for(var t=this.tryEntries.length-1;t>=0;--t){var r=this.tryEntries[t];if(r.tryLoc===e){var n=r.completion;if(\"throw\"===n.type){var o=n.arg;S(r)}return o}}throw new Error(\"illegal catch attempt\")},delegateYield:function(e,t,r){return this.delegate={iterator:L(e),resultName:t,nextLoc:r},\"next\"===this.method&&(this.arg=void 0),m}},t}e.exports=o,e.exports.__esModule=!0,e.exports.default=e.exports},8698:e=>{function t(r){return e.exports=t=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},e.exports.__esModule=!0,e.exports.default=e.exports,t(r)}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},4687:(e,t,r)=>{var n=r(7061)();e.exports=n;try{regeneratorRuntime=n}catch(e){\"object\"==typeof globalThis?globalThis.regeneratorRuntime=n:Function(\"r\",\"regeneratorRuntime = r\")(n)}}},t={};function r(n){var o=t[n];if(void 0!==o)return o.exports;var i=t[n]={id:n,loaded:!1,exports:{}};return e[n].call(i.exports,i,i.exports,r),i.loaded=!0,i.exports}r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.g=function(){if(\"object\"==typeof globalThis)return globalThis;try{return this||new Function(\"return this\")()}catch(e){if(\"object\"==typeof window)return window}}(),r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r.r=e=>{\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},r.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),r.nc=void 0,(()=>{\"use strict\";var e=r(7294),t=r(3935),n=r(3379),o=r.n(n),i=r(3450),a={insert:\"head\",singleton:!1};o()(i.Z,a);i.Z.locals;var c=\"light\",l=e.createContext({}),s=e.createContext({}),u=function(e){return e.Ru=\"ru\",e.En=\"en\",e}({}),p=[],d={},f=e.createContext({lang:u.Ru,tld:\".ru\"}),m=e.createContext({}),y=function(e){return e.Yandex=\"yandex\",e.Google=\"google\",e}({}),h={ru:\"ru_RU\",en:\"en_US\"},b={apiKey:\"\",scriptSrc:\"\",type:y.Yandex},v=e.createContext(b),g=e.createContext({}),_=e.createContext(!1),w=e.createContext({}),x=e.createContext({}),k={themeValue:\"light\"},N=e.createContext(k),M=\"/home/runner/work/page-constructor/page-constructor/src/containers/PageConstructor/Provider.tsx\",j=void 0,S=function(t){var r=t.isMobile,n=t.mapsContext,o=void 0===n?b:n,i=t.locale,a=void 0===i?{}:i,u=t.location,p=void 0===u?{}:u,d=t.metrika,y=void 0===d?{}:d,h=t.analytics,k=void 0===h?{}:h,S=t.ssrConfig,E=void 0===S?{}:S,L=t.projectSettings,O=void 0===L?{}:L,I=t.theme,C=void 0===I?c:I,P=t.children,A=t.image,D=void 0===A?{}:A,T=[e.createElement(N.Provider,{value:{themeValue:C},__self:j,__source:{fileName:M,lineNumber:49,columnNumber:9}}),e.createElement(w.Provider,{value:O,__self:j,__source:{fileName:M,lineNumber:50,columnNumber:9}}),e.createElement(f.Provider,{value:a,__self:j,__source:{fileName:M,lineNumber:51,columnNumber:9}}),e.createElement(s.Provider,{value:D,__self:j,__source:{fileName:M,lineNumber:52,columnNumber:9}}),e.createElement(m.Provider,{value:p,__self:j,__source:{fileName:M,lineNumber:53,columnNumber:9}}),e.createElement(_.Provider,{value:Boolean(r),__self:j,__source:{fileName:M,lineNumber:54,columnNumber:9}}),e.createElement(v.Provider,{value:o,__self:j,__source:{fileName:M,lineNumber:55,columnNumber:9}}),e.createElement(g.Provider,{value:y,__self:j,__source:{fileName:M,lineNumber:56,columnNumber:9}}),e.createElement(l.Provider,{value:k,__self:j,__source:{fileName:M,lineNumber:57,columnNumber:9}}),e.createElement(x.Provider,{value:{isServer:null==E?void 0:E.isServer},__self:j,__source:{fileName:M,lineNumber:58,columnNumber:9}})].reduceRight((function(t,r){return e.cloneElement(r,{},t)}),P);return e.createElement(e.Fragment,{__self:j,__source:{fileName:M,lineNumber:62,columnNumber:12}},T)};function E(e,t){if(null==e)return{};var r,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||(o[r]=e[r]);return o}function L(e,t){if(null==e)return{};var r,n,o=E(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(o[r]=e[r])}return o}function O(e){return O=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&\"function\"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?\"symbol\":typeof e},O(e)}function I(e){var t=function(e,t){if(\"object\"!==O(e)||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||\"default\");if(\"object\"!==O(n))return n;throw new TypeError(\"@@toPrimitive must return a primitive value.\")}return(\"string\"===t?String:Number)(e)}(e,\"string\");return\"symbol\"===O(t)?t:String(t)}function C(e,t,r){return(t=I(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function P(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function A(e,t){if(e){if(\"string\"==typeof e)return P(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return\"Object\"===r&&e.constructor&&(r=e.constructor.name),\"Map\"===r||\"Set\"===r?Array.from(e):\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?P(e,t):void 0}}function D(e){return function(e){if(Array.isArray(e))return P(e)}(e)||function(e){if(\"undefined\"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e[\"@@iterator\"])return Array.from(e)}(e)||A(e)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}r(9703);var T=r(2853);function z(e){return(0,T.Z)(\"\".concat(\"pc-\").concat(e))}function B(e,t,r,n,o,i,a){try{var c=e[i](a),l=c.value}catch(e){return void r(e)}c.done?t(l):Promise.resolve(l).then(n,o)}function R(e){return function(){var t=this,r=arguments;return new Promise((function(n,o){var i=e.apply(t,r);function a(e){B(i,n,o,a,c,\"next\",e)}function c(e){B(i,n,o,a,c,\"throw\",e)}a(void 0)}))}}function F(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:\"undefined\"!=typeof Symbol&&e[Symbol.iterator]||e[\"@@iterator\"];if(null!=r){var n,o,i,a,c=[],l=!0,s=!1;try{if(i=(r=r.call(e)).next,0===t){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.call(r)).done)&&(c.push(n.value),c.length!==t);l=!0);}catch(e){s=!0,o=e}finally{try{if(!l&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(s)throw o}}return c}}(e,t)||A(e,t)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}var U=r(4687),Z=r.n(U);function Y(e,t){return Y=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},Y(e,t)}function W(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,Y(e,t)}var V=!(\"undefined\"==typeof window||!window.document||!window.document.createElement);var Q=void 0;function H(){return void 0===Q&&(Q=function(){if(!V)return!1;if(!window.addEventListener||!window.removeEventListener||!Object.defineProperty)return!1;var e=!1;try{var t=Object.defineProperty({},\"passive\",{get:function(){e=!0}}),r=function(){};window.addEventListener(\"testPassiveEventSupport\",r,t),window.removeEventListener(\"testPassiveEventSupport\",r,t)}catch(e){}return e}()),Q}function G(e){e.handlers===e.nextHandlers&&(e.nextHandlers=e.handlers.slice())}function q(e){this.target=e,this.events={}}q.prototype.getEventHandlers=function(e,t){var r,n=String(e)+\" \"+String((r=t)?!0===r?100:(r.capture<<0)+(r.passive<<1)+(r.once<<2):0);return this.events[n]||(this.events[n]={handlers:[],handleEvent:void 0},this.events[n].nextHandlers=this.events[n].handlers),this.events[n]},q.prototype.handleEvent=function(e,t,r){var n=this.getEventHandlers(e,t);n.handlers=n.nextHandlers,n.handlers.forEach((function(e){e&&e(r)}))},q.prototype.add=function(e,t,r){var n=this,o=this.getEventHandlers(e,r);G(o),0===o.nextHandlers.length&&(o.handleEvent=this.handleEvent.bind(this,e,r),this.target.addEventListener(e,o.handleEvent,r)),o.nextHandlers.push(t);var i=!0;return function(){if(i){i=!1,G(o);var a=o.nextHandlers.indexOf(t);o.nextHandlers.splice(a,1),0===o.nextHandlers.length&&(n.target&&n.target.removeEventListener(e,o.handleEvent,r),o.handleEvent=void 0)}}};var $=\"__consolidated_events_handlers__\";function X(e,t,r,n){e[$]||(e[$]=new q(e));var o=function(e){if(e)return H()?e:!!e.capture}(n);return e[$].add(t,r,o)}var K=r(5834);function J(e,t){var r,n=(r=e,!isNaN(parseFloat(r))&&isFinite(r)?parseFloat(r):\"px\"===r.slice(-2)?parseFloat(r.slice(0,-2)):void 0);if(\"number\"==typeof n)return n;var o=function(e){if(\"%\"===e.slice(-1))return parseFloat(e.slice(0,-1))/100}(e);return\"number\"==typeof o?o*t:void 0}var ee=\"above\",te=\"inside\",re=\"below\",ne=\"invisible\";function oe(e){return\"string\"==typeof e.type}var ie;var ae=[];function ce(e){ae.push(e),ie||(ie=setTimeout((function(){var e;for(ie=null;e=ae.shift();)e()}),0));var t=!0;return function(){if(t){t=!1;var r=ae.indexOf(e);-1!==r&&(ae.splice(r,1),!ae.length&&ie&&(clearTimeout(ie),ie=null))}}}var le=\"undefined\"!=typeof window,se={debug:!1,scrollableAncestor:void 0,children:void 0,topOffset:\"0px\",bottomOffset:\"0px\",horizontal:!1,onEnter:function(){},onLeave:function(){},onPositionChange:function(){},fireOnRapidScroll:!0},ue=function(t){function n(e){var r;return(r=t.call(this,e)||this).refElement=function(e){r._ref=e},r}W(n,t);var o=n.prototype;return o.componentDidMount=function(){var e=this;le&&(this.cancelOnNextTick=ce((function(){e.cancelOnNextTick=null;var t=e.props,r=t.children;t.debug;!function(e,t){if(e&&!oe(e)&&!t)throw new Error(\"<Waypoint> needs a DOM element to compute boundaries. The child you passed is neither a DOM element (e.g. <div>) nor does it use the innerRef prop.\\n\\nSee https://goo.gl/LrBNgw for more info.\")}(r,e._ref),e._handleScroll=e._handleScroll.bind(e),e.scrollableAncestor=e._findScrollableAncestor(),e.scrollEventListenerUnsubscribe=X(e.scrollableAncestor,\"scroll\",e._handleScroll,{passive:!0}),e.resizeEventListenerUnsubscribe=X(window,\"resize\",e._handleScroll,{passive:!0}),e._handleScroll(null)})))},o.componentDidUpdate=function(){var e=this;le&&this.scrollableAncestor&&(this.cancelOnNextTick||(this.cancelOnNextTick=ce((function(){e.cancelOnNextTick=null,e._handleScroll(null)}))))},o.componentWillUnmount=function(){le&&(this.scrollEventListenerUnsubscribe&&this.scrollEventListenerUnsubscribe(),this.resizeEventListenerUnsubscribe&&this.resizeEventListenerUnsubscribe(),this.cancelOnNextTick&&this.cancelOnNextTick())},o._findScrollableAncestor=function(){var e=this.props,t=e.horizontal,n=e.scrollableAncestor;if(n)return function(e){return\"window\"===e?r.g.window:e}(n);for(var o=this._ref;o.parentNode;){if((o=o.parentNode)===document.body)return window;var i=window.getComputedStyle(o),a=(t?i.getPropertyValue(\"overflow-x\"):i.getPropertyValue(\"overflow-y\"))||i.getPropertyValue(\"overflow\");if(\"auto\"===a||\"scroll\"===a||\"overlay\"===a)return o}return window},o._handleScroll=function(e){if(this._ref){var t=this._getBounds(),r=function(e){return e.viewportBottom-e.viewportTop==0?ne:e.viewportTop<=e.waypointTop&&e.waypointTop<=e.viewportBottom||e.viewportTop<=e.waypointBottom&&e.waypointBottom<=e.viewportBottom||e.waypointTop<=e.viewportTop&&e.viewportBottom<=e.waypointBottom?te:e.viewportBottom<e.waypointTop?re:e.waypointTop<e.viewportTop?ee:ne}(t),n=this._previousPosition,o=this.props,i=(o.debug,o.onPositionChange),a=o.onEnter,c=o.onLeave,l=o.fireOnRapidScroll;if(this._previousPosition=r,n!==r){var s={currentPosition:r,previousPosition:n,event:e,waypointTop:t.waypointTop,waypointBottom:t.waypointBottom,viewportTop:t.viewportTop,viewportBottom:t.viewportBottom};i.call(this,s),r===te?a.call(this,s):n===te&&c.call(this,s),l&&(n===re&&r===ee||n===ee&&r===re)&&(a.call(this,{currentPosition:te,previousPosition:n,event:e,waypointTop:t.waypointTop,waypointBottom:t.waypointBottom,viewportTop:t.viewportTop,viewportBottom:t.viewportBottom}),c.call(this,{currentPosition:r,previousPosition:te,event:e,waypointTop:t.waypointTop,waypointBottom:t.waypointBottom,viewportTop:t.viewportTop,viewportBottom:t.viewportBottom}))}}},o._getBounds=function(){var e,t,r=this.props,n=r.horizontal,o=(r.debug,this._ref.getBoundingClientRect()),i=o.left,a=o.top,c=o.right,l=o.bottom,s=n?i:a,u=n?c:l;this.scrollableAncestor===window?(e=n?window.innerWidth:window.innerHeight,t=0):(e=n?this.scrollableAncestor.offsetWidth:this.scrollableAncestor.offsetHeight,t=n?this.scrollableAncestor.getBoundingClientRect().left:this.scrollableAncestor.getBoundingClientRect().top);var p=this.props,d=p.bottomOffset;return{waypointTop:s,waypointBottom:u,viewportTop:t+J(p.topOffset,e),viewportBottom:t+e-J(d,e)}},o.render=function(){var t=this,r=this.props.children;if(!r)return e.createElement(\"span\",{ref:this.refElement,style:{fontSize:0}});if(oe(r)||(0,K.isForwardRef)(r)){return e.cloneElement(r,{ref:function(e){t.refElement(e),r.ref&&(\"function\"==typeof r.ref?r.ref(e):r.ref.current=e)}})}return e.cloneElement(r,{innerRef:this.refElement})},n}(e.PureComponent);ue.above=ee,ue.below=re,ue.inside=te,ue.invisible=ne,ue.defaultProps=se,ue.displayName=\"Waypoint\";var pe=e.createContext({animated:!0}),de=\"/home/runner/work/page-constructor/page-constructor/src/components/AnimateBlock/AnimateBlock.tsx\",fe=void 0,me=z(\"AnimateBlock\");const ye=function(t){var r=(0,e.useContext)(pe).animated,n=t.children,o=t.className,i=t.offset,a=void 0===i?100:i,c=t.onScroll,l=t.style,s=t.animate,u=void 0===s?r:s,p=t.qa,d=F((0,e.useState)(!1),2),f=d[0],m=d[1],y=u?me(null,\"\".concat(f&&\"animate\",\" \").concat(o)):o;return e.createElement(\"div\",{className:y,style:l,\"data-qa\":p,__self:fe,__source:{fileName:de,lineNumber:29,columnNumber:9}},e.createElement(ue,{topOffset:\"-100000%\",bottomOffset:a,onEnter:R(Z().mark((function e(){return Z().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:m(!0),c&&c();case 2:case\"end\":return e.stop()}}),e)}))),__self:fe,__source:{fileName:de,lineNumber:30,columnNumber:13}}),n)};var he=r(2406);function be(e){return(0,he.Z)(`yc-${e}`)}function ve(e){return e.split(/\\s(.*)/)[1]}const ge={\"aria-hidden\":!0};function _e(e){return\"object\"==typeof e}function we(e){return\"string\"==typeof e}var xe=r(4329),ke={insert:\"head\",singleton:!1};o()(xe.Z,ke);xe.Z.locals;const Ne=be(\"icon\");function Me({data:t,width:r,height:n,size:o,className:i,fill:a=\"currentColor\",stroke:c=\"none\",qa:l}){let s,u,p;if(o&&(s=o,u=o),r&&(s=r),n&&(u=n),_e(t))({viewBox:p}=t);else if(we(t))p=function(e){const t=e.match(/viewBox=([\"']?)([\\d\\s,-]+)\\1/);return t?t[2]:void 0}(t);else if(function(e){return\"object\"==typeof e&&\"defaultProps\"in e}(t))({viewBox:p}=t.defaultProps);else if(function(e){return!(\"function\"!=typeof e||e.prototype&&e.prototype.render)}(t)){const e=t({});e&&({viewBox:p}=e.props)}if(p&&(!s||!u)){const e=p.split(/\\s+|\\s*,\\s*/);s||(s=e[2]),u||(u=e[3])}const d=Object.assign({xmlns:\"http://www.w3.org/2000/svg\",xmlnsXlink:\"http://www.w3.org/1999/xlink\",width:s,height:u,className:Ne(null,i),fill:a,stroke:c,\"data-qa\":l},ge);if(we(t)){const r=function(e){return e.replace(/(width|height)=([\"']?)\\d+\\2/g,\"\")}(t);return e.createElement(\"svg\",Object.assign({},d,{dangerouslySetInnerHTML:{__html:r}}))}if(_e(t))return e.createElement(\"svg\",Object.assign({},d,{viewBox:p}),e.createElement(\"use\",{xlinkHref:Me.prefix+(t.url||`#${t.id}`)}));const f=t;return f.defaultProps&&(f.defaultProps.width=f.defaultProps.height=void 0),e.createElement(\"svg\",Object.assign({},d),e.createElement(f,{width:void 0,height:void 0}))}Me.displayName=\"Icon\",Me.prefix=\"\";var je=r(6486),Se=r.n(je);const Ee={randomUUID:\"undefined\"!=typeof crypto&&crypto.randomUUID&&crypto.randomUUID.bind(crypto)};let Le;const Oe=new Uint8Array(16);function Ie(){if(!Le&&(Le=\"undefined\"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!Le))throw new Error(\"crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported\");return Le(Oe)}const Ce=[];for(let e=0;e<256;++e)Ce.push((e+256).toString(16).slice(1));function Pe(e,t=0){return(Ce[e[t+0]]+Ce[e[t+1]]+Ce[e[t+2]]+Ce[e[t+3]]+\"-\"+Ce[e[t+4]]+Ce[e[t+5]]+\"-\"+Ce[e[t+6]]+Ce[e[t+7]]+\"-\"+Ce[e[t+8]]+Ce[e[t+9]]+\"-\"+Ce[e[t+10]]+Ce[e[t+11]]+Ce[e[t+12]]+Ce[e[t+13]]+Ce[e[t+14]]+Ce[e[t+15]]).toLowerCase()}const Ae=function(e,t,r){if(Ee.randomUUID&&!t&&!e)return Ee.randomUUID();const n=(e=e||{}).random||(e.rng||Ie)();if(n[6]=15&n[6]|64,n[8]=63&n[8]|128,t){r=r||0;for(let e=0;e<16;++e)t[r+e]=n[e];return t}return Pe(n)};var De=e.createContext(\"\"),Te=function(e){return e.Default=\"default-event\",e.Play=\"play\",e.Stop=\"stop\",e}({}),ze=function(e){return e.ShareButton=\"share-button-click\",e.Button=\"button-click\",e.CardBase=\"card-base-click\",e.Link=\"link-click\",e.ReactPlayerControls=\"react-player-controls-click\",e.YandexFormSubmit=\"yandex-form-submit\",e.HubspotFormSubmit=\"hubspot-form-submit\",e.QuoteButton=\"quote-button-click\",e.BackLink=\"back-link-click\",e.Breadcrumb=\"breadcrumb-click\",e.VideoPreview=\"video-preview-click\",e}({});function Be(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function Re(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Be(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Be(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var Fe=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",r=arguments.length>1?arguments[1]:void 0,n=(0,e.useContext)(l),o=n.sendEvents,i=n.autoEvents,a=(0,e.useContext)(De),c=(0,e.useMemo)((function(){return t?{name:t,context:a,type:Te.Default,target:r}:void 0}),[a,t,r]);if(!o)return(0,je.memoize)((function(){}));var s=c&&i?[c]:[];return(0,je.memoize)((function(e,t){var r=s;if(e&&(r=Array.isArray(e)?[].concat(D(r),D(e)):[].concat(D(r),[e])),r){var n=t?r.map((function(e){return Re(Re({},e),t)})):r;o(n)}}))},Ue={\"aria-hidden\":!0},Ze=\"/home/runner/work/page-constructor/page-constructor/src/icons/PlayVideo.tsx\",Ye=void 0,We=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",width:\"22\",height:\"26\",viewBox:\"0 0 22 26\",fill:\"currentColor\"},Ue,t,{__self:Ye,__source:{fileName:Ze,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M21 11.268c1.333.77 1.333 2.694 0 3.464L3 25.124c-1.333.77-3-.192-3-1.732V2.608C0 1.068 1.667.106 3 .876l18 10.392z\",__self:Ye,__source:{fileName:Ze,lineNumber:15,columnNumber:9}}))},Ve=r(8575);function Qe(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function He(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Qe(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Qe(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var Ge=\"https://example.org\",qe={target:\"_blank\",rel:\"noopener noreferrer\"};function $e(e,t,r){var n={target:r};return function(e,t){return function(e){var t=new URL(e,Ge);return t.origin!==Ge||\"string\"==typeof e&&e.startsWith(Ge)}(e)&&Xe(new URL(e).hostname)!==Xe(null!=t?t:\"\")}(e,t)&&(n=He(He({},n),qe)),n}function Xe(e){return e.replace(/\\.(ru|com)$/,\"\")}function Ke(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"ru\";return\"string\"==typeof e?null==e?void 0:e.replace(/\\${tld}/g,t):e}var Je=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=new URLSearchParams;return Object.entries(e).forEach((function(e){var r=F(e,2),n=r[0],o=r[1];t.set(n,String(o))})),t};var et={xs:0,sm:577,md:769,lg:1081,xl:1185},tt=function(e){return e.PNG=\"png\",e.JPG=\"jpg\",e.JPEG=\"jpeg\",e}({}),rt=\"/home/runner/work/page-constructor/page-constructor/src/components/ImageBase/ImageBase.tsx\",nt=void 0;const ot=function(t){var r=e.useContext(s).Image;return r?e.createElement(r,Object.assign({},t,{__self:nt,__source:{fileName:rt,lineNumber:15,columnNumber:20}})):e.createElement(\"img\",Object.assign({},t,{__self:nt,__source:{fileName:rt,lineNumber:15,columnNumber:43}}))},it=/{{(.*?)}}/g;var at;function ct(e,t){return 0===e?t.None:1===e||-1===e?t.One:t.Many}function lt(e,t){const r=Math.abs(e%10),n=Math.abs(e%100);return 0===e?t.None:1===r&&11!==n?t.One:r>1&&r<5&&(n<10||n>20)?t.Few:t.Many}!function(e){e[e.One=0]=\"One\",e[e.Few=1]=\"Few\",e[e.Many=2]=\"Many\",e[e.None=3]=\"None\"}(at||(at={}));var st,ut=new class{constructor(e){this.data={},this.lang=void 0,this.pluralizers={en:ct,ru:lt},this.logger=null,this.logger=(null==e?void 0:e.logger)||null}setLang(e){this.lang=e}configurePluralization(e){this.pluralizers=Object.assign({},this.pluralizers,e)}registerKeyset(e,t,r={}){if(this.data[e]&&Object.prototype.hasOwnProperty.call(this.data[e],t))throw new Error(`Keyset '${t}' is already registered, aborting!`);this.data[e]=Object.assign({},this.data[e],{[t]:r})}registerKeysets(e,t){Object.keys(t).forEach((r=>{this.registerKeyset(e,r,t[r])}))}has(e,t,r){const n=this.getLanguageData(r);return Boolean(n&&n[e]&&n[e][t])}i18n(e,t,r){const n=this.getLanguageData(this.lang);if(void 0===n)throw new Error(`Language '${this.lang}' is not defined, make sure you call setLang for the same language you called registerKeysets for!`);if(0===Object.keys(n).length)return this.warn(\"Language data is empty.\"),t;const o=n[e];if(!o)return this.warn(\"Keyset not found.\",e),t;if(0===Object.keys(o).length)return this.warn(\"Keyset is empty.\",e),t;const i=o&&o[t];let a;if(void 0===i)return this.warn(\"Missing key.\",e,t),t;if(Array.isArray(i)){if(i.length<3)return this.warn(\"Missing required plurals\",e,t),t;const n=Number(null==r?void 0:r.count);if(Number.isNaN(n))return this.warn(\"Missing params.count for key.\",e,t),t;a=i[this.getLanguagePluralizer(this.lang)(n,at)]||i[at.Many],void 0===i[at.None]&&this.warn(\"Missing key for 0\",e,t)}else a=i;return r&&(a=function(e,t){let r,n=\"\",o=it.lastIndex=0;for(;r=it.exec(e);){o!==r.index&&(n+=e.slice(o,r.index)),o=it.lastIndex;const[i,a]=r;Object.prototype.hasOwnProperty.call(t,a)?n+=t[a]:n+=i}return o<e.length&&(n+=e.slice(o)),n}(a,r)),a}keyset(e){return(t,r)=>this.i18n(e,t,r)}warn(e,t,r){var n;let o=\"\";t?(o+=t,r&&(o+=`.${r}`)):o=\"languageData\",null===(n=this.logger)||void 0===n||n.log(`I18n: ${e}`,{level:\"info\",logger:o,extra:{type:\"i18n\"}})}getLanguageData(e){const t=e||this.lang;return t?this.data[t]:void 0}getLanguagePluralizer(e){const t=e?this.pluralizers[e]:void 0;return t||this.warn(`Pluralization is not configured for language '${e}', falling back to the english ruleset`),t||ct}};function pt(e,t){return Object.entries(e).forEach((function(e){var r=F(e,2),n=r[0],o=r[1];return ut.registerKeyset(n,t,o)})),ut.keyset(t)}ut.setLang(d.lang||u.En),st=function(e){e.lang&&ut.setLang(e.lang)},p.push(st);const dt=pt({en:JSON.parse('{\"img-alt\":\"Image alt\"}'),ru:JSON.parse('{\"img-alt\":\"Альтернатива изображению\"}')},\"Image\");var ft=\"/home/runner/work/page-constructor/page-constructor/src/components/Image/Image.tsx\",mt=void 0,yt=function(e){return e.endsWith(\".webp\")?e:e+\".webp\"};const ht=function(t){var r=(0,e.useContext)(w),n=t.src,o=t.alt,i=void 0===o?dt(\"img-alt\"):o,a=t.disableCompress,c=t.tablet,l=t.desktop,s=t.mobile,u=t.style,p=t.className,d=t.onClick,f=t.containerClassName,m=t.qa,y=F((0,e.useState)(!1),2),h=y[0],b=y[1],v=n||l;if(!v)return null;var g,_=r.disableCompress||a||(g=v,!Object.values(tt).some((function(e){return g.toLowerCase().endsWith(\".\".concat(e))})))||h;return e.createElement(\"picture\",{className:f,\"data-qa\":m,__self:mt,__source:{fileName:ft,lineNumber:53,columnNumber:9}},s&&e.createElement(e.Fragment,{__self:mt,__source:{fileName:ft,lineNumber:55,columnNumber:17}},!_&&e.createElement(\"source\",{srcSet:yt(s),type:\"image/webp\",media:\"(max-width: \".concat(et.sm,\"px)\"),__self:mt,__source:{fileName:ft,lineNumber:57,columnNumber:25}}),e.createElement(\"source\",{srcSet:s,media:\"(max-width: \".concat(et.sm,\"px)\"),__self:mt,__source:{fileName:ft,lineNumber:63,columnNumber:21}})),c&&e.createElement(e.Fragment,{__self:mt,__source:{fileName:ft,lineNumber:67,columnNumber:17}},!_&&e.createElement(\"source\",{srcSet:yt(c),type:\"image/webp\",media:\"(max-width: \".concat(et.md,\"px)\"),__self:mt,__source:{fileName:ft,lineNumber:69,columnNumber:25}}),e.createElement(\"source\",{srcSet:c,media:\"(max-width: \".concat(et.md,\"px)\"),__self:mt,__source:{fileName:ft,lineNumber:75,columnNumber:21}})),v&&!_&&e.createElement(\"source\",{srcSet:yt(v),type:\"image/webp\",__self:mt,__source:{fileName:ft,lineNumber:78,columnNumber:37}}),e.createElement(ot,{className:p,alt:i,src:v,style:u,onClick:d,onError:function(){return b(!0)},__self:mt,__source:{fileName:ft,lineNumber:79,columnNumber:13}}))};const bt=pt({en:JSON.parse('{\"iframe-title\":\"Video frame\"}'),ru:JSON.parse('{\"iframe-title\":\"Фрейм видеоблока\"}')},\"VideoBlock\");var vt=r(4273),gt={insert:\"head\",singleton:!1};o()(vt.Z,gt);vt.Z.locals;var _t=\"/home/runner/work/page-constructor/page-constructor/src/components/VideoBlock/VideoBlock.tsx\",wt=void 0;function xt(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function kt(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?xt(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):xt(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var Nt=/[0-9A-Za-z_-]{11}/,Mt=/[0-9A-Za-z_-]{23,25}/,jt={autoplay:1,mute:1},St=z(\"VideoBlock\");function Et(e){return e/16*9}const Lt=function(t){var r=t.stream,n=t.record,o=t.attributes,i=t.className,a=t.id,c=t.previewImg,l=t.playButton,s=t.height,u=t.fullscreen,p=t.analyticsEvents,d=Fe(ze.VideoPreview),f=function(e,t){if(!e&&!t)return null;var r,n=F(e?[e,\"https://www.youtube.com/embed/live_stream?channel=\",Mt]:[t,\"https://www.youtube.com/embed/\",Nt],3),o=n[0],i=n[1],a=n[2],c=null==o?void 0:o.match(a);return c&&c.length&&(r=i+c[0]),r}(r,n),m=(0,e.useRef)(null),y=(0,e.useRef)(),h=F((0,e.useState)(!1),2),b=h[0],v=h[1],g=!r&&!n||!f,_=F((0,e.useState)(s||void 0),2),w=_[0],x=_[1],k=a||Ae(),N=(0,e.useCallback)((function(){d(p),y.current&&(y.current.src=\"\".concat(f,\"?\").concat(Je(kt(kt({},jt),o||{})))),setTimeout((function(){return v(!0)}),300)}),[d,p,f,o]);return(0,e.useEffect)((function(){var e=Se().debounce((function(){x(m.current?Math.round(Et(m.current.offsetWidth)):void 0)}),100);return e(),window.addEventListener(\"resize\",e,{passive:!0}),function(){window.removeEventListener(\"resize\",e)}}),[s]),(0,e.useEffect)((function(){if(!g){var e=\"\".concat(f,\"?\").concat(Je(o||{}));if(m.current&&!y.current){var t=document.createElement(\"iframe\");t.id=k,t.src=e,t.width=\"100%\",t.height=\"100%\",t.title=bt(\"iframe-title\"),t.frameBorder=\"0\",t.setAttribute(\"allowfullscreen\",\"true\"),t.setAttribute(\"allow\",\"autoplay\"),t.setAttribute(\"loading\",\"lazy\"),m.current.appendChild(t),y.current=t}}}),[r,n,g,f,k,o,y,u]),(0,e.useEffect)((function(){v(!1)}),[f,v]),g?null:e.createElement(\"div\",{className:St(null,i),ref:m,style:{height:w},__self:wt,__source:{fileName:_t,lineNumber:145,columnNumber:9}},c&&!b&&!u&&e.createElement(\"div\",{className:St(\"preview\"),onClick:N,__self:wt,__source:{fileName:_t,lineNumber:147,columnNumber:17}},e.createElement(ht,{src:c,className:St(\"image\"),containerClassName:St(\"image-wrapper\"),__self:wt,__source:{fileName:_t,lineNumber:148,columnNumber:21}}),l||e.createElement(\"button\",{className:St(\"button\"),__self:wt,__source:{fileName:_t,lineNumber:154,columnNumber:25}},e.createElement(Me,{className:St(\"icon\"),data:We,size:24,__self:wt,__source:{fileName:_t,lineNumber:155,columnNumber:29}}))))};const Ot=pt({en:JSON.parse('{\"iframe-title\":\"Datalens frame\"}'),ru:JSON.parse('{\"iframe-title\":\"Фрейм данных\"}')},\"DataLens\");var It=r(4381),Ct={insert:\"head\",singleton:!1};o()(It.Z,Ct);It.Z.locals;var Pt=\"/home/runner/work/page-constructor/page-constructor/src/components/Media/DataLens/DataLens.tsx\",At=void 0,Dt=z(\"media-component-data-lens\");const Tt=function(t){var r=t.dataLens,n=function(e){return\"string\"==typeof e?{id:e,theme:\"light\"}:e}(r);return r?e.createElement(\"div\",{className:Dt(\"wrap\"),__self:At,__source:{fileName:Pt,lineNumber:18,columnNumber:9}},e.createElement(\"iframe\",{src:\"https://datalens.yandex/\".concat(n.id,\"?_embedded=1&_theme=\").concat(n.theme),className:Dt(\"iframe\"),loading:\"lazy\",title:Ot(\"iframe-title\"),frameBorder:0,__self:At,__source:{fileName:Pt,lineNumber:19,columnNumber:13}})):null};function zt(){return zt=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},zt.apply(this,arguments)}function Bt(e,t){return e.replace(new RegExp(\"(^|\\\\s)\"+t+\"(?:\\\\s|$)\",\"g\"),\"$1\").replace(/\\s+/g,\" \").replace(/^\\s*|\\s*$/g,\"\")}const Rt=!1,Ft=e.createContext(null);var Ut=function(e){return e.scrollTop},Zt=\"unmounted\",Yt=\"exited\",Wt=\"entering\",Vt=\"entered\",Qt=\"exiting\",Ht=function(r){function n(e,t){var n;n=r.call(this,e,t)||this;var o,i=t&&!t.isMounting?e.enter:e.appear;return n.appearStatus=null,e.in?i?(o=Yt,n.appearStatus=Wt):o=Vt:o=e.unmountOnExit||e.mountOnEnter?Zt:Yt,n.state={status:o},n.nextCallback=null,n}W(n,r),n.getDerivedStateFromProps=function(e,t){return e.in&&t.status===Zt?{status:Yt}:null};var o=n.prototype;return o.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},o.componentDidUpdate=function(e){var t=null;if(e!==this.props){var r=this.state.status;this.props.in?r!==Wt&&r!==Vt&&(t=Wt):r!==Wt&&r!==Vt||(t=Qt)}this.updateStatus(!1,t)},o.componentWillUnmount=function(){this.cancelNextCallback()},o.getTimeouts=function(){var e,t,r,n=this.props.timeout;return e=t=r=n,null!=n&&\"number\"!=typeof n&&(e=n.exit,t=n.enter,r=void 0!==n.appear?n.appear:t),{exit:e,enter:t,appear:r}},o.updateStatus=function(e,r){if(void 0===e&&(e=!1),null!==r)if(this.cancelNextCallback(),r===Wt){if(this.props.unmountOnExit||this.props.mountOnEnter){var n=this.props.nodeRef?this.props.nodeRef.current:t.findDOMNode(this);n&&Ut(n)}this.performEnter(e)}else this.performExit();else this.props.unmountOnExit&&this.state.status===Yt&&this.setState({status:Zt})},o.performEnter=function(e){var r=this,n=this.props.enter,o=this.context?this.context.isMounting:e,i=this.props.nodeRef?[o]:[t.findDOMNode(this),o],a=i[0],c=i[1],l=this.getTimeouts(),s=o?l.appear:l.enter;!e&&!n||Rt?this.safeSetState({status:Vt},(function(){r.props.onEntered(a)})):(this.props.onEnter(a,c),this.safeSetState({status:Wt},(function(){r.props.onEntering(a,c),r.onTransitionEnd(s,(function(){r.safeSetState({status:Vt},(function(){r.props.onEntered(a,c)}))}))})))},o.performExit=function(){var e=this,r=this.props.exit,n=this.getTimeouts(),o=this.props.nodeRef?void 0:t.findDOMNode(this);r&&!Rt?(this.props.onExit(o),this.safeSetState({status:Qt},(function(){e.props.onExiting(o),e.onTransitionEnd(n.exit,(function(){e.safeSetState({status:Yt},(function(){e.props.onExited(o)}))}))}))):this.safeSetState({status:Yt},(function(){e.props.onExited(o)}))},o.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},o.safeSetState=function(e,t){t=this.setNextCallback(t),this.setState(e,t)},o.setNextCallback=function(e){var t=this,r=!0;return this.nextCallback=function(n){r&&(r=!1,t.nextCallback=null,e(n))},this.nextCallback.cancel=function(){r=!1},this.nextCallback},o.onTransitionEnd=function(e,r){this.setNextCallback(r);var n=this.props.nodeRef?this.props.nodeRef.current:t.findDOMNode(this),o=null==e&&!this.props.addEndListener;if(n&&!o){if(this.props.addEndListener){var i=this.props.nodeRef?[this.nextCallback]:[n,this.nextCallback],a=i[0],c=i[1];this.props.addEndListener(a,c)}null!=e&&setTimeout(this.nextCallback,e)}else setTimeout(this.nextCallback,0)},o.render=function(){var t=this.state.status;if(t===Zt)return null;var r=this.props,n=r.children,o=(r.in,r.mountOnEnter,r.unmountOnExit,r.appear,r.enter,r.exit,r.timeout,r.addEndListener,r.onEnter,r.onEntering,r.onEntered,r.onExit,r.onExiting,r.onExited,r.nodeRef,E(r,[\"children\",\"in\",\"mountOnEnter\",\"unmountOnExit\",\"appear\",\"enter\",\"exit\",\"timeout\",\"addEndListener\",\"onEnter\",\"onEntering\",\"onEntered\",\"onExit\",\"onExiting\",\"onExited\",\"nodeRef\"]));return e.createElement(Ft.Provider,{value:null},\"function\"==typeof n?n(t,o):e.cloneElement(e.Children.only(n),o))},n}(e.Component);function Gt(){}Ht.contextType=Ft,Ht.propTypes={},Ht.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:Gt,onEntering:Gt,onEntered:Gt,onExit:Gt,onExiting:Gt,onExited:Gt},Ht.UNMOUNTED=Zt,Ht.EXITED=Yt,Ht.ENTERING=Wt,Ht.ENTERED=Vt,Ht.EXITING=Qt;const qt=Ht;var $t=function(e,t){return e&&t&&t.split(\" \").forEach((function(t){return n=t,void((r=e).classList?r.classList.remove(n):\"string\"==typeof r.className?r.className=Bt(r.className,n):r.setAttribute(\"class\",Bt(r.className&&r.className.baseVal||\"\",n)));var r,n}))},Xt=function(t){function r(){for(var e,r=arguments.length,n=new Array(r),o=0;o<r;o++)n[o]=arguments[o];return(e=t.call.apply(t,[this].concat(n))||this).appliedClasses={appear:{},enter:{},exit:{}},e.onEnter=function(t,r){var n=e.resolveArguments(t,r),o=n[0],i=n[1];e.removeClasses(o,\"exit\"),e.addClass(o,i?\"appear\":\"enter\",\"base\"),e.props.onEnter&&e.props.onEnter(t,r)},e.onEntering=function(t,r){var n=e.resolveArguments(t,r),o=n[0],i=n[1]?\"appear\":\"enter\";e.addClass(o,i,\"active\"),e.props.onEntering&&e.props.onEntering(t,r)},e.onEntered=function(t,r){var n=e.resolveArguments(t,r),o=n[0],i=n[1]?\"appear\":\"enter\";e.removeClasses(o,i),e.addClass(o,i,\"done\"),e.props.onEntered&&e.props.onEntered(t,r)},e.onExit=function(t){var r=e.resolveArguments(t)[0];e.removeClasses(r,\"appear\"),e.removeClasses(r,\"enter\"),e.addClass(r,\"exit\",\"base\"),e.props.onExit&&e.props.onExit(t)},e.onExiting=function(t){var r=e.resolveArguments(t)[0];e.addClass(r,\"exit\",\"active\"),e.props.onExiting&&e.props.onExiting(t)},e.onExited=function(t){var r=e.resolveArguments(t)[0];e.removeClasses(r,\"exit\"),e.addClass(r,\"exit\",\"done\"),e.props.onExited&&e.props.onExited(t)},e.resolveArguments=function(t,r){return e.props.nodeRef?[e.props.nodeRef.current,t]:[t,r]},e.getClassNames=function(t){var r=e.props.classNames,n=\"string\"==typeof r,o=n?\"\"+(n&&r?r+\"-\":\"\")+t:r[t];return{baseClassName:o,activeClassName:n?o+\"-active\":r[t+\"Active\"],doneClassName:n?o+\"-done\":r[t+\"Done\"]}},e}W(r,t);var n=r.prototype;return n.addClass=function(e,t,r){var n=this.getClassNames(t)[r+\"ClassName\"],o=this.getClassNames(\"enter\").doneClassName;\"appear\"===t&&\"done\"===r&&o&&(n+=\" \"+o),\"active\"===r&&e&&Ut(e),n&&(this.appliedClasses[t][r]=n,function(e,t){e&&t&&t.split(\" \").forEach((function(t){return n=t,void((r=e).classList?r.classList.add(n):function(e,t){return e.classList?!!t&&e.classList.contains(t):-1!==(\" \"+(e.className.baseVal||e.className)+\" \").indexOf(\" \"+t+\" \")}(r,n)||(\"string\"==typeof r.className?r.className=r.className+\" \"+n:r.setAttribute(\"class\",(r.className&&r.className.baseVal||\"\")+\" \"+n)));var r,n}))}(e,n))},n.removeClasses=function(e,t){var r=this.appliedClasses[t],n=r.base,o=r.active,i=r.done;this.appliedClasses[t]={},n&&$t(e,n),o&&$t(e,o),i&&$t(e,i)},n.render=function(){var t=this.props,r=(t.classNames,E(t,[\"classNames\"]));return e.createElement(qt,zt({},r,{onEnter:this.onEnter,onEntered:this.onEntered,onEntering:this.onEntering,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited}))},r}(e.Component);Xt.defaultProps={classNames:\"\"},Xt.propTypes={};const Kt=Xt;function Jt(e){return{appear:ve(e({appear:!0})),appearActive:ve(e({appear:\"active\"})),appearDone:ve(e({appear:\"done\"})),enter:ve(e({enter:!0})),enterActive:ve(e({enter:\"active\"})),enterDone:ve(e({enter:\"done\"})),exit:ve(e({exit:!0})),exitActive:ve(e({exit:\"active\"})),exitDone:ve(e({exit:\"done\"}))}}const er=e.createContext({current:null});er.displayName=\"PortalContext\";function tr({container:r,children:n,disablePortal:o}){const i=function(){var t;const r=(0,e.useContext)(er);let n=null;return\"object\"==typeof window&&(n=window.document.body),null!==(t=r.current)&&void 0!==t?t:n}(),a=null!=r?r:i;return o?e.createElement(e.Fragment,null,n):a?t.createPortal(n,a):null}let rr,nr=0;function or({enabled:t}){e.useLayoutEffect((()=>{if(t)return nr++,1===nr&&function(){const e=window.innerWidth-document.documentElement.clientWidth,t=window.innerHeight-document.documentElement.clientHeight,r=function(){const e=window.getComputedStyle(document.body);return{top:Number.parseFloat(e.paddingTop),right:Number.parseFloat(e.paddingRight),bottom:Number.parseFloat(e.paddingBottom),left:Number.parseFloat(e.paddingLeft)}}();rr=document.body.style.cssText,document.body.style.overflow=\"hidden\",e&&(document.body.style.paddingRight=`${r.right+e}px`);t&&(document.body.style.paddingBottom=`${r.bottom+t}px`)}(),()=>{nr--,0===nr&&(rr?document.body.style.cssText=rr:document.body.removeAttribute(\"style\"))}}),[t])}var ir=[\"input\",\"select\",\"textarea\",\"a[href]\",\"button\",\"[tabindex]:not(slot)\",\"audio[controls]\",\"video[controls]\",'[contenteditable]:not([contenteditable=\"false\"])',\"details>summary:first-of-type\",\"details\"],ar=ir.join(\",\"),cr=\"undefined\"==typeof Element,lr=cr?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,sr=!cr&&Element.prototype.getRootNode?function(e){return e.getRootNode()}:function(e){return e.ownerDocument},ur=function(e,t,r){var n=Array.prototype.slice.apply(e.querySelectorAll(ar));return t&&lr.call(e,ar)&&n.unshift(e),n=n.filter(r)},pr=function e(t,r,n){for(var o=[],i=Array.from(t);i.length;){var a=i.shift();if(\"SLOT\"===a.tagName){var c=a.assignedElements(),l=e(c.length?c:a.children,!0,n);n.flatten?o.push.apply(o,l):o.push({scopeParent:a,candidates:l})}else{lr.call(a,ar)&&n.filter(a)&&(r||!t.includes(a))&&o.push(a);var s=a.shadowRoot||\"function\"==typeof n.getShadowRoot&&n.getShadowRoot(a),u=!n.shadowRootFilter||n.shadowRootFilter(a);if(s&&u){var p=e(!0===s?a.children:s.children,!0,n);n.flatten?o.push.apply(o,p):o.push({scopeParent:a,candidates:p})}else i.unshift.apply(i,a.children)}}return o},dr=function(e,t){return e.tabIndex<0&&(t||/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||e.isContentEditable)&&isNaN(parseInt(e.getAttribute(\"tabindex\"),10))?0:e.tabIndex},fr=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},mr=function(e){return\"INPUT\"===e.tagName},yr=function(e){return function(e){return mr(e)&&\"radio\"===e.type}(e)&&!function(e){if(!e.name)return!0;var t,r=e.form||sr(e),n=function(e){return r.querySelectorAll('input[type=\"radio\"][name=\"'+e+'\"]')};if(\"undefined\"!=typeof window&&void 0!==window.CSS&&\"function\"==typeof window.CSS.escape)t=n(window.CSS.escape(e.name));else try{t=n(e.name)}catch(e){return console.error(\"Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s\",e.message),!1}var o=function(e,t){for(var r=0;r<e.length;r++)if(e[r].checked&&e[r].form===t)return e[r]}(t,e.form);return!o||o===e}(e)},hr=function(e){var t=e.getBoundingClientRect(),r=t.width,n=t.height;return 0===r&&0===n},br=function(e,t){var r=t.displayCheck,n=t.getShadowRoot;if(\"hidden\"===getComputedStyle(e).visibility)return!0;var o=lr.call(e,\"details>summary:first-of-type\")?e.parentElement:e;if(lr.call(o,\"details:not([open]) *\"))return!0;if(r&&\"full\"!==r&&\"legacy-full\"!==r){if(\"non-zero-area\"===r)return hr(e)}else{if(\"function\"==typeof n){for(var i=e;e;){var a=e.parentElement,c=sr(e);if(a&&!a.shadowRoot&&!0===n(a))return hr(e);e=e.assignedSlot?e.assignedSlot:a||c===e.ownerDocument?a:c.host}e=i}if(function(e){for(var t,r=sr(e).host,n=!!(null!==(t=r)&&void 0!==t&&t.ownerDocument.contains(r)||e.ownerDocument.contains(e));!n&&r;){var o;n=!(null===(o=r=sr(r).host)||void 0===o||!o.ownerDocument.contains(r))}return n}(e))return!e.getClientRects().length;if(\"legacy-full\"!==r)return!0}return!1},vr=function(e,t){return!(t.disabled||function(e){return mr(e)&&\"hidden\"===e.type}(t)||br(t,e)||function(e){return\"DETAILS\"===e.tagName&&Array.prototype.slice.apply(e.children).some((function(e){return\"SUMMARY\"===e.tagName}))}(t)||function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if(\"FIELDSET\"===t.tagName&&t.disabled){for(var r=0;r<t.children.length;r++){var n=t.children.item(r);if(\"LEGEND\"===n.tagName)return!!lr.call(t,\"fieldset[disabled] *\")||!n.contains(e)}return!0}t=t.parentElement}return!1}(t))},gr=function(e,t){return!(yr(t)||dr(t)<0||!vr(e,t))},_r=function(e){var t=parseInt(e.getAttribute(\"tabindex\"),10);return!!(isNaN(t)||t>=0)},wr=function e(t){var r=[],n=[];return t.forEach((function(t,o){var i=!!t.scopeParent,a=i?t.scopeParent:t,c=dr(a,i),l=i?e(t.candidates):a;0===c?i?r.push.apply(r,l):r.push(a):n.push({documentOrder:o,tabIndex:c,item:t,isScope:i,content:l})})),n.sort(fr).reduce((function(e,t){return t.isScope?e.push.apply(e,t.content):e.push(t.content),e}),[]).concat(r)},xr=function(e,t){var r;return r=(t=t||{}).getShadowRoot?pr([e],t.includeContainer,{filter:gr.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:_r}):ur(e,t.includeContainer,gr.bind(null,t)),wr(r)},kr=function(e,t){if(t=t||{},!e)throw new Error(\"No node provided\");return!1!==lr.call(e,ar)&&gr(t,e)},Nr=ir.concat(\"iframe\").join(\",\"),Mr=function(e,t){if(t=t||{},!e)throw new Error(\"No node provided\");return!1!==lr.call(e,Nr)&&vr(t,e)};function jr(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function Sr(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?jr(Object(r),!0).forEach((function(t){Er(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):jr(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function Er(e,t,r){return(t=function(e){var t=function(e,t){if(\"object\"!=typeof e||null===e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,t||\"default\");if(\"object\"!=typeof n)return n;throw new TypeError(\"@@toPrimitive must return a primitive value.\")}return(\"string\"===t?String:Number)(e)}(e,\"string\");return\"symbol\"==typeof t?t:String(t)}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var Lr=function(e,t){if(e.length>0){var r=e[e.length-1];r!==t&&r.pause()}var n=e.indexOf(t);-1===n||e.splice(n,1),e.push(t)},Or=function(e,t){var r=e.indexOf(t);-1!==r&&e.splice(r,1),e.length>0&&e[e.length-1].unpause()},Ir=function(e){return\"Tab\"===e.key||9===e.keyCode},Cr=function(e){return Ir(e)&&!e.shiftKey},Pr=function(e){return Ir(e)&&e.shiftKey},Ar=function(e){return setTimeout(e,0)},Dr=function(e,t){var r=-1;return e.every((function(e,n){return!t(e)||(r=n,!1)})),r},Tr=function(e){for(var t=arguments.length,r=new Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return\"function\"==typeof e?e.apply(void 0,r):e},zr=function(e){return e.target.shadowRoot&&\"function\"==typeof e.composedPath?e.composedPath()[0]:e.target},Br=[],Rr=function(e,t){var r,n=(null==t?void 0:t.document)||document,o=(null==t?void 0:t.trapStack)||Br,i=Sr({returnFocusOnDeactivate:!0,escapeDeactivates:!0,delayInitialFocus:!0,isKeyForward:Cr,isKeyBackward:Pr},t),a={containers:[],containerGroups:[],tabbableGroups:[],nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1,delayInitialFocusTimer:void 0},c=function(e,t,r){return e&&void 0!==e[t]?e[t]:i[r||t]},l=function(e){return a.containerGroups.findIndex((function(t){var r=t.container,n=t.tabbableNodes;return r.contains(e)||n.find((function(t){return t===e}))}))},s=function(e){var t=i[e];if(\"function\"==typeof t){for(var r=arguments.length,o=new Array(r>1?r-1:0),a=1;a<r;a++)o[a-1]=arguments[a];t=t.apply(void 0,o)}if(!0===t&&(t=void 0),!t){if(void 0===t||!1===t)return t;throw new Error(\"`\".concat(e,\"` was specified but was not a node, or did not return a node\"))}var c=t;if(\"string\"==typeof t&&!(c=n.querySelector(t)))throw new Error(\"`\".concat(e,\"` as selector refers to no known node\"));return c},u=function(){var e=s(\"initialFocus\");if(!1===e)return!1;if(void 0===e)if(l(n.activeElement)>=0)e=n.activeElement;else{var t=a.tabbableGroups[0];e=t&&t.firstTabbableNode||s(\"fallbackFocus\")}if(!e)throw new Error(\"Your focus-trap needs to have at least one focusable element\");return e},p=function(){if(a.containerGroups=a.containers.map((function(e){var t=xr(e,i.tabbableOptions),r=function(e,t){return(t=t||{}).getShadowRoot?pr([e],t.includeContainer,{filter:vr.bind(null,t),flatten:!0,getShadowRoot:t.getShadowRoot}):ur(e,t.includeContainer,vr.bind(null,t))}(e,i.tabbableOptions);return{container:e,tabbableNodes:t,focusableNodes:r,firstTabbableNode:t.length>0?t[0]:null,lastTabbableNode:t.length>0?t[t.length-1]:null,nextTabbableNode:function(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],n=r.findIndex((function(t){return t===e}));if(!(n<0))return t?r.slice(n+1).find((function(e){return kr(e,i.tabbableOptions)})):r.slice(0,n).reverse().find((function(e){return kr(e,i.tabbableOptions)}))}}})),a.tabbableGroups=a.containerGroups.filter((function(e){return e.tabbableNodes.length>0})),a.tabbableGroups.length<=0&&!s(\"fallbackFocus\"))throw new Error(\"Your focus-trap must have at least one container with at least one tabbable node in it at all times\")},d=function e(t){!1!==t&&t!==n.activeElement&&(t&&t.focus?(t.focus({preventScroll:!!i.preventScroll}),a.mostRecentlyFocusedNode=t,function(e){return e.tagName&&\"input\"===e.tagName.toLowerCase()&&\"function\"==typeof e.select}(t)&&t.select()):e(u()))},f=function(e){var t=s(\"setReturnFocus\",e);return t||!1!==t&&e},m=function(e){var t=zr(e);l(t)>=0||(Tr(i.clickOutsideDeactivates,e)?r.deactivate({returnFocus:i.returnFocusOnDeactivate&&!Mr(t,i.tabbableOptions)}):Tr(i.allowOutsideClick,e)||e.preventDefault())},y=function(e){var t=zr(e),r=l(t)>=0;r||t instanceof Document?r&&(a.mostRecentlyFocusedNode=t):(e.stopImmediatePropagation(),d(a.mostRecentlyFocusedNode||u()))},h=function(e){if(!(t=e,\"Escape\"!==t.key&&\"Esc\"!==t.key&&27!==t.keyCode||!1===Tr(i.escapeDeactivates,e)))return e.preventDefault(),void r.deactivate();var t;(i.isKeyForward(e)||i.isKeyBackward(e))&&function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=zr(e);p();var n=null;if(a.tabbableGroups.length>0){var o=l(r),c=o>=0?a.containerGroups[o]:void 0;if(o<0)n=t?a.tabbableGroups[a.tabbableGroups.length-1].lastTabbableNode:a.tabbableGroups[0].firstTabbableNode;else if(t){var u=Dr(a.tabbableGroups,(function(e){var t=e.firstTabbableNode;return r===t}));if(u<0&&(c.container===r||Mr(r,i.tabbableOptions)&&!kr(r,i.tabbableOptions)&&!c.nextTabbableNode(r,!1))&&(u=o),u>=0){var f=0===u?a.tabbableGroups.length-1:u-1;n=a.tabbableGroups[f].lastTabbableNode}else Ir(e)||(n=c.nextTabbableNode(r,!1))}else{var m=Dr(a.tabbableGroups,(function(e){var t=e.lastTabbableNode;return r===t}));if(m<0&&(c.container===r||Mr(r,i.tabbableOptions)&&!kr(r,i.tabbableOptions)&&!c.nextTabbableNode(r))&&(m=o),m>=0){var y=m===a.tabbableGroups.length-1?0:m+1;n=a.tabbableGroups[y].firstTabbableNode}else Ir(e)||(n=c.nextTabbableNode(r))}}else n=s(\"fallbackFocus\");n&&(Ir(e)&&e.preventDefault(),d(n))}(e,i.isKeyBackward(e))},b=function(e){var t=zr(e);l(t)>=0||Tr(i.clickOutsideDeactivates,e)||Tr(i.allowOutsideClick,e)||(e.preventDefault(),e.stopImmediatePropagation())},v=function(){if(a.active)return Lr(o,r),a.delayInitialFocusTimer=i.delayInitialFocus?Ar((function(){d(u())})):d(u()),n.addEventListener(\"focusin\",y,!0),n.addEventListener(\"mousedown\",m,{capture:!0,passive:!1}),n.addEventListener(\"touchstart\",m,{capture:!0,passive:!1}),n.addEventListener(\"click\",b,{capture:!0,passive:!1}),n.addEventListener(\"keydown\",h,{capture:!0,passive:!1}),r},g=function(){if(a.active)return n.removeEventListener(\"focusin\",y,!0),n.removeEventListener(\"mousedown\",m,!0),n.removeEventListener(\"touchstart\",m,!0),n.removeEventListener(\"click\",b,!0),n.removeEventListener(\"keydown\",h,!0),r};return r={get active(){return a.active},get paused(){return a.paused},activate:function(e){if(a.active)return this;var t=c(e,\"onActivate\"),r=c(e,\"onPostActivate\"),o=c(e,\"checkCanFocusTrap\");o||p(),a.active=!0,a.paused=!1,a.nodeFocusedBeforeActivation=n.activeElement,t&&t();var i=function(){o&&p(),v(),r&&r()};return o?(o(a.containers.concat()).then(i,i),this):(i(),this)},deactivate:function(e){if(!a.active)return this;var t=Sr({onDeactivate:i.onDeactivate,onPostDeactivate:i.onPostDeactivate,checkCanReturnFocus:i.checkCanReturnFocus},e);clearTimeout(a.delayInitialFocusTimer),a.delayInitialFocusTimer=void 0,g(),a.active=!1,a.paused=!1,Or(o,r);var n=c(t,\"onDeactivate\"),l=c(t,\"onPostDeactivate\"),s=c(t,\"checkCanReturnFocus\"),u=c(t,\"returnFocus\",\"returnFocusOnDeactivate\");n&&n();var p=function(){Ar((function(){u&&d(f(a.nodeFocusedBeforeActivation)),l&&l()}))};return u&&s?(s(f(a.nodeFocusedBeforeActivation)).then(p,p),this):(p(),this)},pause:function(){return a.paused||!a.active||(a.paused=!0,g()),this},unpause:function(){return a.paused&&a.active?(a.paused=!1,p(),v(),this):this},updateContainerElements:function(e){var t=[].concat(e).filter(Boolean);return a.containers=t.map((function(e){return\"string\"==typeof e?n.querySelector(e):e})),a.active&&p(),this}},r.updateContainerElements(e),r};function Fr({enabled:t,restoreFocusRef:r,focusTrapped:n}){const o=e.useRef(null),i=e.useRef(null),a=e.useRef(null);return e.useEffect((()=>{if(!t)return;const e=e=>{const t=e.target;!n&&t instanceof HTMLElement&&kr(t)&&(a.current=t)},r=e=>{const t=e.target;t instanceof HTMLElement&&kr(t)?a.current=t:a.current=null};return window.addEventListener(\"focusin\",e),window.addEventListener(\"mousedown\",r),window.addEventListener(\"touchstart\",r),()=>{window.removeEventListener(\"focusin\",e),window.removeEventListener(\"mousedown\",r),window.removeEventListener(\"touchstart\",r)}}),[t,n]),e.useEffect((()=>{var e;o.current=null!==(e=(null==r?void 0:r.current)||i.current)&&void 0!==e?e:null})),e.useEffect((()=>{if(t)return()=>{let e=o.current;const t=a.current;t&&document.contains(t)&&kr(t)&&(e=t),e&&\"function\"==typeof e.focus&&document.contains(e)&&Mr(e)&&(e!==document.activeElement&&setTimeout((()=>{null==e||e.focus()}),0),i.current=null,a.current=null)}}),[t]),{onFocus:e=>{t&&null===i.current&&(i.current=e.relatedTarget,a.current=i.current)}}}function Ur({enabled:t=!0,disableRestoreFocus:r,restoreFocusRef:n,disableAutoFocus:o=!1}={}){const i=Fr({enabled:t&&!r,restoreFocusRef:n,focusTrapped:!0}),a=e.useRef(!o);e.useEffect((()=>{a.current=!o}));const c=e.useRef(),l=e.useCallback((e=>{var r;e&&t?(c.current=Rr(e,{initialFocus:()=>a.current&&function(e){if(!(document.activeElement instanceof HTMLElement&&e.contains(document.activeElement)))return e.hasAttribute(\"tabIndex\")||e.setAttribute(\"tabIndex\",\"-1\"),e;return document.activeElement}(e),fallbackFocus:()=>e,returnFocusOnDeactivate:!1,escapeDeactivates:!1,clickOutsideDeactivates:!1,allowOutsideClick:!0}),c.current.activate()):(null===(r=c.current)||void 0===r||r.deactivate(),c.current=void 0)}),[t]);return[l,i]}function Zr(e,t){\"function\"==typeof e?e(t):e&&(e.current=t)}function Yr(...t){return e.useMemo((()=>t.every((e=>null==e))?null:e=>{for(const r of t)Zr(r,e)}),t)}const Wr=new class{constructor(){this.stack=[],this.handleDocumentKeyDown=e=>{var t,r,n;if(\"Escape\"===e.code){const n=this.getTopLayer();n.disableEscapeKeyDown||(null===(t=n.onEscapeKeyDown)||void 0===t||t.call(n,e),null===(r=n.onClose)||void 0===r||r.call(n,e,\"escapeKeyDown\"))}if(\"Enter\"===e.code){const t=this.getTopLayer();null===(n=t.onEnterKeyDown)||void 0===n||n.call(t,e)}},this.handleDocumentClick=e=>{var t,r;let n,o=null;if(this.mouseDownLayerTarget){if(n=this.mouseDownLayerTarget.layer,o=this.mouseDownLayerTarget.target,this.mouseDownLayerTarget=void 0,!this.stack.includes(n))return}else n=this.getTopLayer();!n.disableOutsideClick&&this.isOutsideClick(n,e,o)&&(null===(t=n.onOutsideClick)||void 0===t||t.call(n,e),null===(r=n.onClose)||void 0===r||r.call(n,e,\"outsideClick\"))},this.handleDocumentMouseDown=e=>{const t=this.getTopLayer();t&&(this.mouseDownLayerTarget={layer:t,target:e.target})}}add(e){this.stack.push(e),1===this.stack.length&&this.addListeners()}remove(e){const t=this.stack.indexOf(e);this.stack.splice(t,1),0===this.stack.length&&this.removeListeners()}addListeners(){document.addEventListener(\"keydown\",this.handleDocumentKeyDown),document.addEventListener(\"click\",this.handleDocumentClick,!0),document.addEventListener(\"mousedown\",this.handleDocumentMouseDown,!0)}removeListeners(){document.removeEventListener(\"keydown\",this.handleDocumentKeyDown),document.removeEventListener(\"click\",this.handleDocumentClick,!0),document.removeEventListener(\"mousedown\",this.handleDocumentMouseDown,!0)}getTopLayer(){return this.stack[this.stack.length-1]}isOutsideClick(e,t,r=null){const n=e.contentRefs||[],{target:o}=t,i=\"function\"==typeof t.composedPath?t.composedPath():[];if(n.length>0){return!n.some((e=>{var t,n,a,c;return(null===(n=null===(t=null==e?void 0:e.current)||void 0===t?void 0:t.contains)||void 0===n?void 0:n.call(t,o))||(null===(c=null===(a=null==e?void 0:e.current)||void 0===a?void 0:a.contains)||void 0===c?void 0:c.call(a,r))||i.includes(null==e?void 0:e.current)}))}return!1}};function Vr({open:t,disableEscapeKeyDown:r,disableOutsideClick:n,onEscapeKeyDown:o,onEnterKeyDown:i,onOutsideClick:a,onClose:c,contentRefs:l,enabled:s=!0}){const u=e.useRef({disableEscapeKeyDown:r,disableOutsideClick:n,onEscapeKeyDown:o,onEnterKeyDown:i,onOutsideClick:a,onClose:c,contentRefs:l});e.useEffect((()=>{Object.assign(u.current,{disableEscapeKeyDown:r,disableOutsideClick:n,onEscapeKeyDown:o,onEnterKeyDown:i,onOutsideClick:a,onClose:c,contentRefs:l,enabled:s})}),[r,n,o,i,a,c,l,s]),e.useEffect((()=>{if(t&&s){const e=u.current;return Wr.add(e),()=>{Wr.remove(e)}}}),[t,s])}var Qr=r(5457),Hr={insert:\"head\",singleton:!1};o()(Qr.Z,Hr);Qr.Z.locals;const Gr=be(\"modal\");function qr({open:t=!1,keepMounted:r=!1,disableBodyScrollLock:n=!1,disableEscapeKeyDown:o,disableOutsideClick:i,disableFocusTrap:a,disableAutoFocus:c,restoreFocusRef:l,onEscapeKeyDown:s,onEnterKeyDown:u,onOutsideClick:p,onClose:d,onTransitionEnter:f,onTransitionEntered:m,onTransitionExit:y,onTransitionExited:h,children:b,style:v,className:g,contentClassName:_,\"aria-labelledby\":w,\"aria-label\":x,container:k,qa:N}){const M=e.useRef(null),j=e.useRef(null),[S,E]=e.useState(!1);or({enabled:!n&&(t||S)});const[L]=Ur({enabled:!a&&t&&!S,disableRestoreFocus:!0,disableAutoFocus:c}),O=Fr({enabled:t||S,restoreFocusRef:l,focusTrapped:!0});Vr({open:t,disableEscapeKeyDown:o,disableOutsideClick:i,onEscapeKeyDown:s,onEnterKeyDown:u,onOutsideClick:p,onClose:d,contentRefs:[j]});const I=Yr(j,L);return e.createElement(tr,{container:k},e.createElement(Kt,{nodeRef:M,in:t,addEndListener:e=>{var t;return null===(t=M.current)||void 0===t?void 0:t.addEventListener(\"animationend\",e)},classNames:Jt(Gr),mountOnEnter:!r,unmountOnExit:!r,appear:!0,onEnter:()=>{E(!0),null==f||f()},onExit:()=>{E(!0),null==y||y()},onEntered:()=>{E(!1),null==m||m()},onExited:()=>{E(!1),null==h||h()}},e.createElement(\"div\",{ref:M,style:v,className:Gr({open:t},g),\"data-qa\":N},e.createElement(\"div\",{className:Gr(\"table\")},e.createElement(\"div\",{className:Gr(\"cell\")},e.createElement(\"div\",Object.assign({ref:I,tabIndex:-1,role:\"dialog\",\"aria-modal\":t,\"aria-label\":x,\"aria-labelledby\":w,className:Gr(\"content\",_)},O),b))))))}var $r=\"/home/runner/work/page-constructor/page-constructor/src/icons/Fullscreen.tsx\",Xr=void 0,Kr=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",width:\"24\",height:\"24\",viewBox:\"0 0 24 24\",fill:\"currentColor\"},Ue,t,{__self:Xr,__source:{fileName:$r,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M18 4.654v.291a10 10 0 0 0-1.763 1.404l-2.944 2.944a1 1 0 0 0 1.414 1.414l2.933-2.932A9.996 9.996 0 0 0 19.05 6h.296l-.09.39A9.993 9.993 0 0 0 19 8.64v.857a1 1 0 0 0 2 0V4.503a1.5 1.5 0 0 0-1.5-1.5L14.5 3a1 1 0 1 0 0 2h.861a10 10 0 0 0 2.249-.256l.39-.09zM4.95 18a10 10 0 0 1 1.41-1.775l2.933-2.932a1 1 0 0 1 1.414 1.414l-2.944 2.944A9.998 9.998 0 0 1 6 19.055v.291l.39-.09A9.993 9.993 0 0 1 8.64 19h.86a1 1 0 0 1 0 2l-5-.003a1.5 1.5 0 0 1-1.5-1.5V14.5a1 1 0 1 1 2 0v.861a10 10 0 0 1-.256 2.249l-.09.39h.296z\",__self:Xr,__source:{fileName:$r,lineNumber:15,columnNumber:9}}))},Jr=\"/home/runner/work/page-constructor/page-constructor/src/icons/PreviewClose.tsx\",en=void 0,tn=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"24\",height:\"24\",fill:\"currentColor\",stroke:\"currentColor\"},Ue,t,{__self:en,__source:{fileName:Jr,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{strokeWidth:\"2\",strokeLinecap:\"round\",d:\"M7.357 7.357l9.286 9.286m0-9.286l-9.286 9.286\",__self:en,__source:{fileName:Jr,lineNumber:16,columnNumber:9}}))},rn=r(6519),nn={insert:\"head\",singleton:!1};o()(rn.Z,nn);rn.Z.locals;var on=\"/home/runner/work/page-constructor/page-constructor/src/components/FullscreenMedia/FullscreenMedia.tsx\",an=void 0,cn=z(\"full-screen-media\"),ln=function(e){return cn(\"modal-media\",{type:e})};const sn=function(t){var r=t.children,n=t.showFullscreenIcon,o=void 0===n||n,i=F((0,e.useState)(!1),2),a=i[0],c=i[1],l=function(e){e.stopPropagation(),c(!0)},s=function(){return c(!1)};return(0,e.useContext)(_)?r():e.createElement(\"div\",{className:cn(),__self:an,__source:{fileName:on,lineNumber:43,columnNumber:9}},e.createElement(\"div\",{className:cn(\"media-wrapper\"),onClickCapture:l,__self:an,__source:{fileName:on,lineNumber:44,columnNumber:13}},r({className:cn(\"inline-media\")}),o&&e.createElement(\"div\",{className:cn(\"icon-wrapper\"),onClickCapture:l,__self:an,__source:{fileName:on,lineNumber:47,columnNumber:21}},e.createElement(Me,{data:Kr,width:18,height:18,className:cn(\"icon\"),__self:an,__source:{fileName:on,lineNumber:48,columnNumber:25}}))),a&&e.createElement(qr,{open:a,onClose:s,className:cn(\"modal\"),__self:an,__source:{fileName:on,lineNumber:58,columnNumber:17}},e.createElement(\"div\",{className:cn(\"modal-content\"),__self:an,__source:{fileName:on,lineNumber:59,columnNumber:21}},e.createElement(\"div\",{className:cn(\"icon-wrapper\",{visible:!0}),onClick:s,__self:an,__source:{fileName:on,lineNumber:60,columnNumber:25}},e.createElement(Me,{data:tn,width:30,height:30,className:cn(\"icon\",{hover:!0}),__self:an,__source:{fileName:on,lineNumber:61,columnNumber:29}})),r({imageClassName:ln(\"image\"),videoClassName:ln(\"video\"),youtubeClassName:ln(\"youtube\"),fullscreen:!0}))))};var un=function(e){return e.Column=\"column\",e.Line=\"line\",e}({}),pn=function(e){return e.MARKED_LIST=\"marked-list\",e.SETTINGS=\"settings\",e}({}),dn=function(e){return e.Default=\"default\",e.Text=\"text\",e}({}),fn=function(e){return e.Blue=\"blue\",e.Grey=\"grey\",e}({}),mn=function(e){return e.Default=\"default\",e.Player=\"player\",e}({}),yn=function(e){return e.Default=\"default\",e.Custom=\"custom\",e}({}),hn=r(2004),bn=e.createContext({setProps:function(){}}),vn=r(5434),gn={insert:\"head\",singleton:!1};o()(vn.Z,gn);vn.Z.locals;var _n=\"/home/runner/work/page-constructor/page-constructor/src/components/ReactPlayer/CircleProgress.tsx\",wn=void 0,xn=z(\"CircleProgress\");const kn=function(t){var r=t.baseColor,n=t.elapsedTime,o=t.circleColor,i=void 0===o?\"#262626\":o,a=t.strokeWidth,c=void 0===a?10:a,l=t.radius,s=void 0===l?50:l,u=t.className,p=(0,e.useMemo)((function(){return 2*Math.PI*s}),[s]),d=(0,e.useMemo)((function(){return r?e.createElement(\"circle\",{cx:\"60\",cy:\"60\",r:s,fill:\"none\",stroke:r,strokeWidth:c,__self:wn,__source:{fileName:_n,lineNumber:36,columnNumber:13}}):null}),[r,s,c]);return e.createElement(\"svg\",{className:xn(null,u),xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 120 120\",__self:wn,__source:{fileName:_n,lineNumber:48,columnNumber:9}},d,e.createElement(\"circle\",{cx:\"60\",cy:\"60\",r:s,transform:\"rotate(-90 60 60)\",fill:\"none\",strokeDashoffset:p-n*p,strokeDasharray:p,stroke:i,strokeWidth:c,__self:wn,__source:{fileName:_n,lineNumber:54,columnNumber:13}}))};var Nn=r(1912),Mn={insert:\"head\",singleton:!1};o()(Nn.Z,Mn);Nn.Z.locals;var jn=\"/home/runner/work/page-constructor/page-constructor/src/components/ReactPlayer/CustomBarControls.tsx\",Sn=void 0,En=z(\"CustomBarControls\");const Ln=function(t){var r=t.mute,n=t.elapsedTimePercent,o=void 0===n?0:n,i=t.className,a=(0,e.useCallback)((function(t,r){if(!r)return null;var n=r.isMuted,o=r.changeMute;return e.createElement(\"div\",{className:En(\"button\"),onClick:o,__self:Sn,__source:{fileName:jn,lineNumber:33,columnNumber:13}},e.createElement(\"div\",{className:En(\"mute-button\",{muted:n}),__self:Sn,__source:{fileName:jn,lineNumber:34,columnNumber:17}}),!n&&e.createElement(kn,{elapsedTime:t,strokeWidth:5,__self:Sn,__source:{fileName:jn,lineNumber:35,columnNumber:30}}))}),[]);return e.createElement(\"div\",{className:En(\"wrapper\",i),__self:Sn,__source:{fileName:jn,lineNumber:40,columnNumber:12}},a(o,r))};var On=/(?:youtu\\.be\\/live\\/|youtube(?:-nocookie)?\\.com\\/(?:live\\/))((\\w|-){11})/,In=function(e){if(On.test(e)){var t,r=null===(t=e.match(On))||void 0===t?void 0:t[1];return r?\"\".concat(\"https://www.youtube.com/watch?v=\").concat(r):e}return e},Cn=r(6388),Pn={insert:\"head\",singleton:!1};o()(Cn.Z,Pn);Cn.Z.locals;var An=\"/home/runner/work/page-constructor/page-constructor/src/components/ReactPlayer/ReactPlayer.tsx\",Dn=void 0,Tn=z(\"ReactPlayer\"),zn=e.forwardRef((function(t,r){var n=(0,e.useContext)(_),o=(0,e.useContext)(g).metrika,i=t.src,a=t.previewImgUrl,c=t.loop,l=void 0!==c&&c,s=t.controls,u=void 0===s?yn.Default:s,p=t.muted,d=void 0!==p&&p,f=t.elapsedTime,m=t.playButton,y=t.className,h=t.customBarControlsClassName,b=t.showPreview,v=t.onClickPreview,w=t.metrika,x=t.analyticsEvents,k=t.height,N=m||{},M=N.type,j=void 0===M?dn.Default:M,S=N.theme,E=void 0===S?fn.Blue:S,L=N.text,O=N.className,I=Boolean(!n&&!a&&t.autoplay),C=d||I,P=(0,e.useContext)(bn),A=P.playingVideoRef,D=P.setProps,T=(0,e.useRef)(null),z=F((0,e.useState)(),2),B=z[0],R=z[1],U=F((0,e.useState)(I),2),Z=U[0],Y=U[1],W=F((0,e.useState)(0),2),V=W[0],Q=W[1],H=F((0,e.useState)(k),2),G=H[0],q=H[1],$=F((0,e.useState)(0),2),X=$[0],K=$[1],J=F((0,e.useState)(C),2),ee=J[0],te=J[1],re=F((0,e.useState)(I),2),ne=re[0],oe=re[1],ie=F((0,e.useState)(!1),2),ae=ie[0],ce=ie[1],le=F((0,e.useState)(!1),2),se=le[0],ue=le[1],pe=(0,e.useMemo)((function(){return function(e){return Array.isArray(e)?e.map((function(e){return In(e)})):In(e)}(i)}),[i]),de=(0,e.useMemo)((function(){return x?Array.isArray(x)?x:[x]:[]}),[x]),fe=Fe(ze.ReactPlayerControls);(0,e.useImperativeHandle)(r,(function(){return{pause:function(){return Y(!1)}}})),(0,e.useEffect)((function(){!T.current||null!=A&&A.contains(T.current)||te(!0)}),[A]),(0,e.useEffect)((function(){b&&(null==B||B.showPreview())}),[b,B]),(0,e.useEffect)((function(){B&&Y(I)}),[I,B]),(0,e.useEffect)((function(){return te(C)}),[C]),(0,e.useEffect)((function(){!ne&&Z&&oe(!0)}),[Z,ne]),(0,e.useEffect)((function(){ne&&!Number.isNaN(Number(f))&&(null==B||B.seekTo(null!=f?f:0,\"seconds\"))}),[f,B,ne]),(0,e.useEffect)((function(){var e=Se().debounce((function(){if(T.current){var e=Bn(T.current),t=getComputedStyle(e),r=t.paddingLeft,n=t.paddingRight,o=e.offsetWidth-parseFloat(r)-parseFloat(n);K(o),q(Math.floor(function(e){return e/16*9}(o)))}}),200);return e(),window.addEventListener(\"resize\",e,{passive:!0}),function(){window.removeEventListener(\"resize\",e)}}),[]);var me=(0,e.useMemo)((function(){return null==de?void 0:de.filter((function(e){return e.type===Te.Play}))}),[de]),ye=(0,e.useMemo)((function(){return null==de?void 0:de.filter((function(e){return e.type===Te.Stop}))}),[de]),he=(0,e.useMemo)((function(){var t;switch(j){case dn.Text:t=L;break;case dn.Default:default:t=e.createElement(Me,{className:Tn(\"icon\"),data:We,size:24,__self:Dn,__source:{fileName:An,lineNumber:194,columnNumber:41}})}return e.createElement(\"button\",{className:Tn(\"button\",{theme:E,text:Boolean(L)},O),__self:Dn,__source:{fileName:An,lineNumber:199,columnNumber:17}},t)}),[j,E,L,O]),be=(0,e.useCallback)((function(e){if(e&&B&&(B.seekTo(0),Q(0)),o&&w){var t=w.play,r=w.stop,n=w.counterName,i=e?t:r;i&&o.reachGoals(i,n)}fe(e?me:ye),e&&D({playingVideoRef:T.current}),setTimeout((function(){return te(!e)}),0)}),[B,o,w,fe,me,ye,D]),ve=(0,e.useCallback)((function(){return be(ee)}),[be,ee]),ge=(0,e.useCallback)((function(){if(Y(!0),null==v||v(),o&&w){var e=w.play,t=w.counterName;e&&o.reachGoals(e,t)}fe(me)}),[v,o,w,fe,me]),_e=(0,e.useCallback)((function(){Y(!1),u===yn.Custom&&(ce(!0),Y(!0))}),[u,Y,ce]),we=(0,e.useCallback)((function(){I||d||te(!1)}),[I,d]),xe=(0,e.useCallback)((function(){Y(!0),u===yn.Custom&&(se?be(!1):ae&&be(ee),ue(!1),ce(!1))}),[be,u,se,ee,ae]),ke=(0,e.useCallback)((function(e){Q(e.played),1===e.played&&te(!0)}),[]),Ne=(0,e.useCallback)((function(){l&&(Q(0),Y(!0),null==B||B.seekTo(0)),ue(!0)}),[l,B]),je=(0,e.useCallback)((function(t,r){return u===yn.Custom&&Z?e.createElement(Ln,{className:Tn(\"custom-bar-controls\",{muted:t},h),mute:{isMuted:t,changeMute:function(e){e.stopPropagation(),be(t)}},elapsedTimePercent:r,__self:Dn,__source:{fileName:An,lineNumber:309,columnNumber:21}}):null}),[u,Z,h,be]);return e.createElement(\"div\",{className:Tn({wrapper:!G},y),ref:T,onClick:ve,__self:Dn,__source:{fileName:An,lineNumber:330,columnNumber:13}},e.createElement(hn.Z,{className:Tn(\"player\"),url:pe,muted:ee,controls:u===yn.Default,height:G||\"100%\",width:X||\"100%\",light:a,playing:Z,playIcon:he,progressInterval:60,onClickPreview:ge,onStart:we,onReady:R,onPlay:xe,onPause:_e,onProgress:ke,onEnded:Ne,__self:Dn,__source:{fileName:An,lineNumber:335,columnNumber:17}}),je(ee,V))}));function Bn(e){var t=e.parentElement;return t?t.offsetWidth?t:Bn(t):e}const Rn=zn;var Fn,Un=function(e){return e.Mp4=\"mp4\",e.Webm=\"webm\",e.Ogg=\"ogg\",e.Ogv=\"ogv\",e}({}),Zn=function(e){return e.Mp4=\"video/mp4\",e.Webm=\"video/webm\",e.Ogg=\"video/ogg\",e}({}),Yn=(C(Fn={},Zn.Webm,1),C(Fn,Zn.Ogg,2),C(Fn,Zn.Mp4,3),Fn);function Wn(e){switch(F(e.split(\"?\"),1)[0].split(\".\").pop()){case Un.Mp4:return Zn.Mp4;case Un.Webm:return Zn.Webm;case Un.Ogg:case Un.Ogv:return Zn.Ogg;default:return}}var Vn=r(6722),Qn={insert:\"head\",singleton:!1};o()(Vn.Z,Qn);Vn.Z.locals;var Hn=\"/home/runner/work/page-constructor/page-constructor/src/components/Media/Video/Video.tsx\",Gn=void 0,qn=z(\"media-component-video\");const $n=function(t){var r=t.video,n=t.height,o=t.metrika,i=t.analyticsEvents,a=t.previewImg,c=t.playButton,l=t.customBarControlsClassName,s=t.videoClassName,u=t.playVideo,p=t.setHasVideoFallback,d=t.hasVideoFallback,f=(0,e.useRef)(null);(0,e.useEffect)((function(){if(f&&f.current){var e=r.loop;if(e&&\"boolean\"!=typeof e){var t=e.start,n=void 0===t?0:t,o=e.end;f.current.addEventListener(\"timeupdate\",(function(){var e=f.current,t=o||e&&e.duration;e&&e.currentTime===t&&(e.currentTime=n,e.play().catch((function(){return p(!0)})))}),{passive:!0})}u&&f.current.play().catch((function(){return p(!0)}))}}),[u,r,p]);var m=(0,e.useMemo)((function(){var t=r.src,p=r.loop,d=r.controls,f=r.muted,m=r.autoplay,y=void 0===m||m,h=r.elapsedTime,b=r.playButton;return e.createElement(Rn,{className:qn(\"react-player\",s),src:t,previewImgUrl:a,loop:Boolean(p),controls:d,muted:f,autoplay:y&&u,elapsedTime:h,playButton:b||c,customBarControlsClassName:l,metrika:o,analyticsEvents:i,height:n,__self:Gn,__source:{fileName:Hn,lineNumber:76,columnNumber:13}})}),[r,n,s,a,u,c,l,o,i]),y=(0,e.useMemo)((function(){return r.src.length&&!d?e.createElement(\"div\",{className:qn(\"wrap\",s),style:{height:n},__self:Gn,__source:{fileName:Hn,lineNumber:106,columnNumber:13}},e.createElement(\"video\",{disablePictureInPicture:!0,playsInline:!0,pip:\"false\",className:qn(\"item\"),ref:f,preload:\"metadata\",muted:!0,__self:Gn,__source:{fileName:Hn,lineNumber:107,columnNumber:17}},(t=r.src,t.map((function(e){return{src:e,type:Wn(e)}})).sort((function(e,t){var r=e.type,n=t.type;return void 0===r?1:void 0===n?-1:Yn[r]-Yn[n]}))).map((function(t,r){var n=t.src,o=t.type;return e.createElement(\"source\",{key:r,src:n,type:o,__self:Gn,__source:{fileName:Hn,lineNumber:118,columnNumber:25}})})))):null;var t}),[r,s,d,n]);switch(r.type){case mn.Player:return m;case mn.Default:default:return y}};var Xn=\"/home/runner/work/page-constructor/page-constructor/src/components/Media/FullscreenVideo/FullscreenVideo.tsx\",Kn=void 0;const Jn=function(t){return e.createElement(sn,{__self:Kn,__source:{fileName:Xn,lineNumber:8,columnNumber:9}},(function(r){return e.createElement($n,Object.assign({},t,r,{__self:Kn,__source:{fileName:Xn,lineNumber:8,columnNumber:43}}))}))};let eo=bo();const to=e=>fo(e,eo);let ro=bo();to.write=e=>fo(e,ro);let no=bo();to.onStart=e=>fo(e,no);let oo=bo();to.onFrame=e=>fo(e,oo);let io=bo();to.onFinish=e=>fo(e,io);let ao=[];to.setTimeout=(e,t)=>{let r=to.now()+t,n=()=>{let e=ao.findIndex((e=>e.cancel==n));~e&&ao.splice(e,1),uo-=~e?1:0},o={time:r,handler:e,cancel:n};return ao.splice(co(r),0,o),uo+=1,mo(),o};let co=e=>~(~ao.findIndex((t=>t.time>e))||~ao.length);to.cancel=e=>{no.delete(e),oo.delete(e),io.delete(e),eo.delete(e),ro.delete(e)},to.sync=e=>{po=!0,to.batchedUpdates(e),po=!1},to.throttle=e=>{let t;function r(){try{e(...t)}finally{t=null}}function n(...e){t=e,to.onStart(r)}return n.handler=e,n.cancel=()=>{no.delete(r),t=null},n};let lo=\"undefined\"!=typeof window?window.requestAnimationFrame:()=>{};to.use=e=>lo=e,to.now=\"undefined\"!=typeof performance?()=>performance.now():Date.now,to.batchedUpdates=e=>e(),to.catch=console.error,to.frameLoop=\"always\",to.advance=()=>{\"demand\"!==to.frameLoop?console.warn(\"Cannot call the manual advancement of rafz whilst frameLoop is not set as demand\"):ho()};let so=-1,uo=0,po=!1;function fo(e,t){po?(t.delete(e),e(0)):(t.add(e),mo())}function mo(){so<0&&(so=0,\"demand\"!==to.frameLoop&&lo(yo))}function yo(){~so&&(lo(yo),to.batchedUpdates(ho))}function ho(){let e=so;so=to.now();let t=co(so);t&&(vo(ao.splice(0,t),(e=>e.handler())),uo-=t),uo?(no.flush(),eo.flush(e?Math.min(64,so-e):16.667),oo.flush(),ro.flush(),io.flush()):so=-1}function bo(){let e=new Set,t=e;return{add(r){uo+=t!=e||e.has(r)?0:1,e.add(r)},delete:r=>(uo-=t==e&&e.has(r)?1:0,e.delete(r)),flush(r){t.size&&(e=new Set,uo-=t.size,vo(t,(t=>t(r)&&e.add(t))),uo+=e.size,t=e)}}}function vo(e,t){e.forEach((e=>{try{t(e)}catch(e){to.catch(e)}}))}function go(){}const _o={arr:Array.isArray,obj:e=>!!e&&\"Object\"===e.constructor.name,fun:e=>\"function\"==typeof e,str:e=>\"string\"==typeof e,num:e=>\"number\"==typeof e,und:e=>void 0===e};function wo(e,t){if(_o.arr(e)){if(!_o.arr(t)||e.length!==t.length)return!1;for(let r=0;r<e.length;r++)if(e[r]!==t[r])return!1;return!0}return e===t}const xo=(e,t)=>e.forEach(t);function ko(e,t,r){if(_o.arr(e))for(let n=0;n<e.length;n++)t.call(r,e[n],`${n}`);else for(const n in e)e.hasOwnProperty(n)&&t.call(r,e[n],n)}const No=e=>_o.und(e)?[]:_o.arr(e)?e:[e];function Mo(e,t){if(e.size){const r=Array.from(e);e.clear(),xo(r,t)}}const jo=(e,...t)=>Mo(e,(e=>e(...t))),So=()=>\"undefined\"==typeof window||!window.navigator||/ServerSideRendering|^Deno\\//.test(window.navigator.userAgent);let Eo,Lo,Oo=null,Io=!1,Co=go;const Po=e=>{e.to&&(Lo=e.to),e.now&&(to.now=e.now),void 0!==e.colors&&(Oo=e.colors),null!=e.skipAnimation&&(Io=e.skipAnimation),e.createStringInterpolator&&(Eo=e.createStringInterpolator),e.requestAnimationFrame&&to.use(e.requestAnimationFrame),e.batchedUpdates&&(to.batchedUpdates=e.batchedUpdates),e.willAdvance&&(Co=e.willAdvance),e.frameLoop&&(to.frameLoop=e.frameLoop)};var Ao=Object.freeze({__proto__:null,get createStringInterpolator(){return Eo},get to(){return Lo},get colors(){return Oo},get skipAnimation(){return Io},get willAdvance(){return Co},assign:Po});const Do=new Set;let To=[],zo=[],Bo=0;const Ro={get idle(){return!Do.size&&!To.length},start(e){Bo>e.priority?(Do.add(e),to.onStart(Fo)):(Uo(e),to(Yo))},advance:Yo,sort(e){if(Bo)to.onFrame((()=>Ro.sort(e)));else{const t=To.indexOf(e);~t&&(To.splice(t,1),Zo(e))}},clear(){To=[],Do.clear()}};function Fo(){Do.forEach(Uo),Do.clear(),to(Yo)}function Uo(e){To.includes(e)||Zo(e)}function Zo(e){To.splice(function(e,t){const r=e.findIndex(t);return r<0?e.length:r}(To,(t=>t.priority>e.priority)),0,e)}function Yo(e){const t=zo;for(let r=0;r<To.length;r++){const n=To[r];Bo=n.priority,n.idle||(Co(n),n.advance(e),n.idle||t.push(n))}return Bo=0,zo=To,zo.length=0,To=t,To.length>0}const Wo=\"[-+]?\\\\d*\\\\.?\\\\d+\",Vo=Wo+\"%\";function Qo(...e){return\"\\\\(\\\\s*(\"+e.join(\")\\\\s*,\\\\s*(\")+\")\\\\s*\\\\)\"}const Ho=new RegExp(\"rgb\"+Qo(Wo,Wo,Wo)),Go=new RegExp(\"rgba\"+Qo(Wo,Wo,Wo,Wo)),qo=new RegExp(\"hsl\"+Qo(Wo,Vo,Vo)),$o=new RegExp(\"hsla\"+Qo(Wo,Vo,Vo,Wo)),Xo=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,Ko=/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,Jo=/^#([0-9a-fA-F]{6})$/,ei=/^#([0-9a-fA-F]{8})$/;function ti(e,t,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?e+6*(t-e)*r:r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}function ri(e,t,r){const n=r<.5?r*(1+t):r+t-r*t,o=2*r-n,i=ti(o,n,e+1/3),a=ti(o,n,e),c=ti(o,n,e-1/3);return Math.round(255*i)<<24|Math.round(255*a)<<16|Math.round(255*c)<<8}function ni(e){const t=parseInt(e,10);return t<0?0:t>255?255:t}function oi(e){return(parseFloat(e)%360+360)%360/360}function ii(e){const t=parseFloat(e);return t<0?0:t>1?255:Math.round(255*t)}function ai(e){const t=parseFloat(e);return t<0?0:t>100?1:t/100}function ci(e){let t=function(e){let t;return\"number\"==typeof e?e>>>0===e&&e>=0&&e<=4294967295?e:null:(t=Jo.exec(e))?parseInt(t[1]+\"ff\",16)>>>0:Oo&&void 0!==Oo[e]?Oo[e]:(t=Ho.exec(e))?(ni(t[1])<<24|ni(t[2])<<16|ni(t[3])<<8|255)>>>0:(t=Go.exec(e))?(ni(t[1])<<24|ni(t[2])<<16|ni(t[3])<<8|ii(t[4]))>>>0:(t=Xo.exec(e))?parseInt(t[1]+t[1]+t[2]+t[2]+t[3]+t[3]+\"ff\",16)>>>0:(t=ei.exec(e))?parseInt(t[1],16)>>>0:(t=Ko.exec(e))?parseInt(t[1]+t[1]+t[2]+t[2]+t[3]+t[3]+t[4]+t[4],16)>>>0:(t=qo.exec(e))?(255|ri(oi(t[1]),ai(t[2]),ai(t[3])))>>>0:(t=$o.exec(e))?(ri(oi(t[1]),ai(t[2]),ai(t[3]))|ii(t[4]))>>>0:null}(e);return null===t?e:(t=t||0,`rgba(${(4278190080&t)>>>24}, ${(16711680&t)>>>16}, ${(65280&t)>>>8}, ${(255&t)/255})`)}const li=(e,t,r)=>{if(_o.fun(e))return e;if(_o.arr(e))return li({range:e,output:t,extrapolate:r});if(_o.str(e.output[0]))return Eo(e);const n=e,o=n.output,i=n.range||[0,1],a=n.extrapolateLeft||n.extrapolate||\"extend\",c=n.extrapolateRight||n.extrapolate||\"extend\",l=n.easing||(e=>e);return e=>{const t=function(e,t){for(var r=1;r<t.length-1&&!(t[r]>=e);++r);return r-1}(e,i);return function(e,t,r,n,o,i,a,c,l){let s=l?l(e):e;if(s<t){if(\"identity\"===a)return s;\"clamp\"===a&&(s=t)}if(s>r){if(\"identity\"===c)return s;\"clamp\"===c&&(s=r)}if(n===o)return n;if(t===r)return e<=t?n:o;t===-1/0?s=-s:r===1/0?s-=t:s=(s-t)/(r-t);s=i(s),n===-1/0?s=-s:o===1/0?s+=n:s=s*(o-n)+n;return s}(e,i[t],i[t+1],o[t],o[t+1],l,a,c,n.map)}};const si=1.70158,ui=1.525*si,pi=si+1,di=2*Math.PI/3,fi=2*Math.PI/4.5,mi=e=>{const t=7.5625,r=2.75;return e<1/r?t*e*e:e<2/r?t*(e-=1.5/r)*e+.75:e<2.5/r?t*(e-=2.25/r)*e+.9375:t*(e-=2.625/r)*e+.984375},yi={linear:e=>e,easeInQuad:e=>e*e,easeOutQuad:e=>1-(1-e)*(1-e),easeInOutQuad:e=>e<.5?2*e*e:1-Math.pow(-2*e+2,2)/2,easeInCubic:e=>e*e*e,easeOutCubic:e=>1-Math.pow(1-e,3),easeInOutCubic:e=>e<.5?4*e*e*e:1-Math.pow(-2*e+2,3)/2,easeInQuart:e=>e*e*e*e,easeOutQuart:e=>1-Math.pow(1-e,4),easeInOutQuart:e=>e<.5?8*e*e*e*e:1-Math.pow(-2*e+2,4)/2,easeInQuint:e=>e*e*e*e*e,easeOutQuint:e=>1-Math.pow(1-e,5),easeInOutQuint:e=>e<.5?16*e*e*e*e*e:1-Math.pow(-2*e+2,5)/2,easeInSine:e=>1-Math.cos(e*Math.PI/2),easeOutSine:e=>Math.sin(e*Math.PI/2),easeInOutSine:e=>-(Math.cos(Math.PI*e)-1)/2,easeInExpo:e=>0===e?0:Math.pow(2,10*e-10),easeOutExpo:e=>1===e?1:1-Math.pow(2,-10*e),easeInOutExpo:e=>0===e?0:1===e?1:e<.5?Math.pow(2,20*e-10)/2:(2-Math.pow(2,-20*e+10))/2,easeInCirc:e=>1-Math.sqrt(1-Math.pow(e,2)),easeOutCirc:e=>Math.sqrt(1-Math.pow(e-1,2)),easeInOutCirc:e=>e<.5?(1-Math.sqrt(1-Math.pow(2*e,2)))/2:(Math.sqrt(1-Math.pow(-2*e+2,2))+1)/2,easeInBack:e=>pi*e*e*e-si*e*e,easeOutBack:e=>1+pi*Math.pow(e-1,3)+si*Math.pow(e-1,2),easeInOutBack:e=>e<.5?Math.pow(2*e,2)*(7.189819*e-ui)/2:(Math.pow(2*e-2,2)*((ui+1)*(2*e-2)+ui)+2)/2,easeInElastic:e=>0===e?0:1===e?1:-Math.pow(2,10*e-10)*Math.sin((10*e-10.75)*di),easeOutElastic:e=>0===e?0:1===e?1:Math.pow(2,-10*e)*Math.sin((10*e-.75)*di)+1,easeInOutElastic:e=>0===e?0:1===e?1:e<.5?-Math.pow(2,20*e-10)*Math.sin((20*e-11.125)*fi)/2:Math.pow(2,-20*e+10)*Math.sin((20*e-11.125)*fi)/2+1,easeInBounce:e=>1-mi(1-e),easeOutBounce:mi,easeInOutBounce:e=>e<.5?(1-mi(1-2*e))/2:(1+mi(2*e-1))/2,steps:(e,t=\"end\")=>r=>{const n=(r=\"end\"===t?Math.min(r,.999):Math.max(r,.001))*e,o=\"end\"===t?Math.floor(n):Math.ceil(n);return i=0,a=1,c=o/e,Math.min(Math.max(c,i),a);var i,a,c}};function hi(){return hi=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},hi.apply(this,arguments)}const bi=Symbol.for(\"FluidValue.get\"),vi=Symbol.for(\"FluidValue.observers\"),gi=e=>Boolean(e&&e[bi]),_i=e=>e&&e[bi]?e[bi]():e,wi=e=>e[vi]||null;function xi(e,t){let r=e[vi];r&&r.forEach((e=>{!function(e,t){e.eventObserved?e.eventObserved(t):e(t)}(e,t)}))}class ki{constructor(e){if(this[bi]=void 0,this[vi]=void 0,!e&&!(e=this.get))throw Error(\"Unknown getter\");Ni(this,e)}}const Ni=(e,t)=>Si(e,bi,t);function Mi(e,t){if(e[bi]){let r=e[vi];r||Si(e,vi,r=new Set),r.has(t)||(r.add(t),e.observerAdded&&e.observerAdded(r.size,t))}return t}function ji(e,t){let r=e[vi];if(r&&r.has(t)){const n=r.size-1;n?r.delete(t):e[vi]=null,e.observerRemoved&&e.observerRemoved(n,t)}}const Si=(e,t,r)=>Object.defineProperty(e,t,{value:r,writable:!0,configurable:!0}),Ei=/[+\\-]?(?:0|[1-9]\\d*)(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g,Li=/(#(?:[0-9a-f]{2}){2,4}|(#[0-9a-f]{3})|(rgb|hsl)a?\\((-?\\d+%?[,\\s]+){2,3}\\s*[\\d\\.]+%?\\))/gi,Oi=new RegExp(`(${Ei.source})(%|[a-z]+)`,\"i\"),Ii=/rgba\\(([0-9\\.-]+), ([0-9\\.-]+), ([0-9\\.-]+), ([0-9\\.-]+)\\)/gi,Ci=/var\\((--[a-zA-Z0-9-_]+),? ?([a-zA-Z0-9 ()%#.,-]+)?\\)/,Pi=e=>{const[t,r]=Ai(e);if(!t||So())return e;const n=window.getComputedStyle(document.documentElement).getPropertyValue(t);if(n)return n.trim();if(r&&r.startsWith(\"--\")){const t=window.getComputedStyle(document.documentElement).getPropertyValue(r);return t||e}return r&&Ci.test(r)?Pi(r):r||e},Ai=e=>{const t=Ci.exec(e);if(!t)return[,];const[,r,n]=t;return[r,n]};let Di;const Ti=(e,t,r,n,o)=>`rgba(${Math.round(t)}, ${Math.round(r)}, ${Math.round(n)}, ${o})`,zi=e=>{Di||(Di=Oo?new RegExp(`(${Object.keys(Oo).join(\"|\")})(?!\\\\w)`,\"g\"):/^\\b$/);const t=e.output.map((e=>_i(e).replace(Ci,Pi).replace(Li,ci).replace(Di,ci))),r=t.map((e=>e.match(Ei).map(Number))),n=r[0].map(((e,t)=>r.map((e=>{if(!(t in e))throw Error('The arity of each \"output\" value must be equal');return e[t]})))).map((t=>li(hi({},e,{output:t}))));return e=>{var r;const o=!Oi.test(t[0])&&(null==(r=t.find((e=>Oi.test(e))))?void 0:r.replace(Ei,\"\"));let i=0;return t[0].replace(Ei,(()=>`${n[i++](e)}${o||\"\"}`)).replace(Ii,Ti)}},Bi=\"react-spring: \",Ri=e=>{const t=e;let r=!1;if(\"function\"!=typeof t)throw new TypeError(`${Bi}once requires a function parameter`);return(...e)=>{r||(t(...e),r=!0)}},Fi=Ri(console.warn);const Ui=Ri(console.warn);function Zi(e){return _o.str(e)&&(\"#\"==e[0]||/\\d/.test(e)||!So()&&Ci.test(e)||e in(Oo||{}))}new WeakMap;new Set;new WeakMap,new WeakMap,new WeakMap;const Yi=So()?e.useEffect:e.useLayoutEffect,Wi=()=>{const t=(0,e.useRef)(!1);return Yi((()=>(t.current=!0,()=>{t.current=!1})),[]),t};function Vi(){const t=(0,e.useState)()[1],r=Wi();return()=>{r.current&&t(Math.random())}}const Qi=t=>(0,e.useEffect)(t,Hi),Hi=[];function Gi(t){const r=(0,e.useRef)();return(0,e.useEffect)((()=>{r.current=t})),r.current}const qi=Symbol.for(\"Animated:node\"),$i=e=>e&&e[qi],Xi=(e,t)=>{return r=e,n=qi,o=t,Object.defineProperty(r,n,{value:o,writable:!0,configurable:!0});var r,n,o},Ki=e=>e&&e[qi]&&e[qi].getPayload();class Ji{constructor(){this.payload=void 0,Xi(this,this)}getPayload(){return this.payload||[]}}class ea extends Ji{constructor(e){super(),this.done=!0,this.elapsedTime=void 0,this.lastPosition=void 0,this.lastVelocity=void 0,this.v0=void 0,this.durationProgress=0,this._value=e,_o.num(this._value)&&(this.lastPosition=this._value)}static create(e){return new ea(e)}getPayload(){return[this]}getValue(){return this._value}setValue(e,t){return _o.num(e)&&(this.lastPosition=e,t&&(e=Math.round(e/t)*t,this.done&&(this.lastPosition=e))),this._value!==e&&(this._value=e,!0)}reset(){const{done:e}=this;this.done=!1,_o.num(this._value)&&(this.elapsedTime=0,this.durationProgress=0,this.lastPosition=this._value,e&&(this.lastVelocity=null),this.v0=null)}}class ta extends ea{constructor(e){super(0),this._string=null,this._toString=void 0,this._toString=li({output:[e,e]})}static create(e){return new ta(e)}getValue(){let e=this._string;return null==e?this._string=this._toString(this._value):e}setValue(e){if(_o.str(e)){if(e==this._string)return!1;this._string=e,this._value=1}else{if(!super.setValue(e))return!1;this._string=null}return!0}reset(e){e&&(this._toString=li({output:[this.getValue(),e]})),this._value=0,super.reset()}}const ra={dependencies:null};class na extends Ji{constructor(e){super(),this.source=e,this.setValue(e)}getValue(e){const t={};return ko(this.source,((r,n)=>{var o;(o=r)&&o[qi]===o?t[n]=r.getValue(e):gi(r)?t[n]=_i(r):e||(t[n]=r)})),t}setValue(e){this.source=e,this.payload=this._makePayload(e)}reset(){this.payload&&xo(this.payload,(e=>e.reset()))}_makePayload(e){if(e){const t=new Set;return ko(e,this._addToPayload,t),Array.from(t)}}_addToPayload(e){ra.dependencies&&gi(e)&&ra.dependencies.add(e);const t=Ki(e);t&&xo(t,(e=>this.add(e)))}}class oa extends na{constructor(e){super(e)}static create(e){return new oa(e)}getValue(){return this.source.map((e=>e.getValue()))}setValue(e){const t=this.getPayload();return e.length==t.length?t.map(((t,r)=>t.setValue(e[r]))).some(Boolean):(super.setValue(e.map(ia)),!0)}}function ia(e){return(Zi(e)?ta:ea).create(e)}function aa(e){const t=$i(e);return t?t.constructor:_o.arr(e)?oa:Zi(e)?ta:ea}function ca(){return ca=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},ca.apply(this,arguments)}const la=(t,r)=>{const n=!_o.fun(t)||t.prototype&&t.prototype.isReactComponent;return(0,e.forwardRef)(((o,i)=>{const a=(0,e.useRef)(null),c=n&&(0,e.useCallback)((e=>{a.current=function(e,t){e&&(_o.fun(e)?e(t):e.current=t);return t}(i,e)}),[i]),[l,s]=function(e,t){const r=new Set;ra.dependencies=r,e.style&&(e=ca({},e,{style:t.createAnimatedStyle(e.style)}));return e=new na(e),ra.dependencies=null,[e,r]}(o,r),u=Vi(),p=()=>{const e=a.current;if(n&&!e)return;!1===(!!e&&r.applyAnimatedValues(e,l.getValue(!0)))&&u()},d=new sa(p,s),f=(0,e.useRef)();Yi((()=>(f.current=d,xo(s,(e=>Mi(e,d))),()=>{f.current&&(xo(f.current.deps,(e=>ji(e,f.current))),to.cancel(f.current.update))}))),(0,e.useEffect)(p,[]),Qi((()=>()=>{const e=f.current;xo(e.deps,(t=>ji(t,e)))}));const m=r.getComponentProps(l.getValue());return e.createElement(t,ca({},m,{ref:c}))}))};class sa{constructor(e,t){this.update=e,this.deps=t}eventObserved(e){\"change\"==e.type&&to.write(this.update)}}const ua=Symbol.for(\"AnimatedComponent\"),pa=e=>_o.str(e)?e:e&&_o.str(e.displayName)?e.displayName:_o.fun(e)&&e.name||null;function da(){return da=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},da.apply(this,arguments)}function fa(e,...t){return _o.fun(e)?e(...t):e}const ma=(e,t)=>!0===e||!!(t&&e&&(_o.fun(e)?e(t):No(e).includes(t))),ya=(e,t)=>_o.obj(e)?t&&e[t]:e,ha=(e,t)=>!0===e.default?e[t]:e.default?e.default[t]:void 0,ba=e=>e,va=(e,t=ba)=>{let r=ga;e.default&&!0!==e.default&&(e=e.default,r=Object.keys(e));const n={};for(const o of r){const r=t(e[o],o);_o.und(r)||(n[o]=r)}return n},ga=[\"config\",\"onProps\",\"onStart\",\"onChange\",\"onPause\",\"onResume\",\"onRest\"],_a={config:1,from:1,to:1,ref:1,loop:1,reset:1,pause:1,cancel:1,reverse:1,immediate:1,default:1,delay:1,onProps:1,onStart:1,onChange:1,onPause:1,onResume:1,onRest:1,onResolve:1,items:1,trail:1,sort:1,expires:1,initial:1,enter:1,update:1,leave:1,children:1,onDestroyed:1,keys:1,callId:1,parentId:1};function wa(e){const t=function(e){const t={};let r=0;if(ko(e,((e,n)=>{_a[n]||(t[n]=e,r++)})),r)return t}(e);if(t){const r={to:t};return ko(e,((e,n)=>n in t||(r[n]=e))),r}return da({},e)}function xa(e){return e=_i(e),_o.arr(e)?e.map(xa):Zi(e)?Ao.createStringInterpolator({range:[0,1],output:[e,e]})(1):e}function ka(e){for(const t in e)return!0;return!1}function Na(e){return _o.fun(e)||_o.arr(e)&&_o.obj(e[0])}function Ma(e,t){var r;null==(r=e.ref)||r.delete(e),null==t||t.delete(e)}function ja(e,t){var r;t&&e.ref!==t&&(null==(r=e.ref)||r.delete(e),t.add(e),e.ref=t)}const Sa={default:{tension:170,friction:26},gentle:{tension:120,friction:14},wobbly:{tension:180,friction:12},stiff:{tension:210,friction:20},slow:{tension:280,friction:60},molasses:{tension:280,friction:120}},Ea=da({},Sa.default,{mass:1,damping:1,easing:yi.linear,clamp:!1});class La{constructor(){this.tension=void 0,this.friction=void 0,this.frequency=void 0,this.damping=void 0,this.mass=void 0,this.velocity=0,this.restVelocity=void 0,this.precision=void 0,this.progress=void 0,this.duration=void 0,this.easing=void 0,this.clamp=void 0,this.bounce=void 0,this.decay=void 0,this.round=void 0,Object.assign(this,Ea)}}function Oa(e,t){if(_o.und(t.decay)){const r=!_o.und(t.tension)||!_o.und(t.friction);!r&&_o.und(t.frequency)&&_o.und(t.damping)&&_o.und(t.mass)||(e.duration=void 0,e.decay=void 0),r&&(e.frequency=void 0)}else e.duration=void 0}const Ia=[];class Ca{constructor(){this.changed=!1,this.values=Ia,this.toValues=null,this.fromValues=Ia,this.to=void 0,this.from=void 0,this.config=new La,this.immediate=!1}}function Pa(e,{key:t,props:r,defaultProps:n,state:o,actions:i}){return new Promise(((a,c)=>{var l;let s,u,p=ma(null!=(l=r.cancel)?l:null==n?void 0:n.cancel,t);if(p)m();else{_o.und(r.pause)||(o.paused=ma(r.pause,t));let e=null==n?void 0:n.pause;!0!==e&&(e=o.paused||ma(e,t)),s=fa(r.delay||0,t),e?(o.resumeQueue.add(f),i.pause()):(i.resume(),f())}function d(){o.resumeQueue.add(f),o.timeouts.delete(u),u.cancel(),s=u.time-to.now()}function f(){s>0&&!Ao.skipAnimation?(o.delayed=!0,u=to.setTimeout(m,s),o.pauseQueue.add(d),o.timeouts.add(u)):m()}function m(){o.delayed&&(o.delayed=!1),o.pauseQueue.delete(d),o.timeouts.delete(u),e<=(o.cancelId||0)&&(p=!0);try{i.start(da({},r,{callId:e,cancel:p}),a)}catch(e){c(e)}}}))}const Aa=(e,t)=>1==t.length?t[0]:t.some((e=>e.cancelled))?za(e.get()):t.every((e=>e.noop))?Da(e.get()):Ta(e.get(),t.every((e=>e.finished))),Da=e=>({value:e,noop:!0,finished:!0,cancelled:!1}),Ta=(e,t,r=!1)=>({value:e,finished:t,cancelled:r}),za=e=>({value:e,cancelled:!0,finished:!1});function Ba(e,t,r,n){const{callId:o,parentId:i,onRest:a}=t,{asyncTo:c,promise:l}=r;return i||e!==c||t.reset?r.promise=(async()=>{r.asyncId=o,r.asyncTo=e;const s=va(t,((e,t)=>\"onRest\"===t?void 0:e));let u,p;const d=new Promise(((e,t)=>(u=e,p=t))),f=e=>{const t=o<=(r.cancelId||0)&&za(n)||o!==r.asyncId&&Ta(n,!1);if(t)throw e.result=t,p(e),e},m=(e,t)=>{const i=new Fa,a=new Ua;return(async()=>{if(Ao.skipAnimation)throw Ra(r),a.result=Ta(n,!1),p(a),a;f(i);const c=_o.obj(e)?da({},e):da({},t,{to:e});c.parentId=o,ko(s,((e,t)=>{_o.und(c[t])&&(c[t]=e)}));const l=await n.start(c);return f(i),r.paused&&await new Promise((e=>{r.resumeQueue.add(e)})),l})()};let y;if(Ao.skipAnimation)return Ra(r),Ta(n,!1);try{let t;t=_o.arr(e)?(async e=>{for(const t of e)await m(t)})(e):Promise.resolve(e(m,n.stop.bind(n))),await Promise.all([t.then(u),d]),y=Ta(n.get(),!0,!1)}catch(e){if(e instanceof Fa)y=e.result;else{if(!(e instanceof Ua))throw e;y=e.result}}finally{o==r.asyncId&&(r.asyncId=i,r.asyncTo=i?c:void 0,r.promise=i?l:void 0)}return _o.fun(a)&&to.batchedUpdates((()=>{a(y,n,n.item)})),y})():l}function Ra(e,t){Mo(e.timeouts,(e=>e.cancel())),e.pauseQueue.clear(),e.resumeQueue.clear(),e.asyncId=e.asyncTo=e.promise=void 0,t&&(e.cancelId=t)}class Fa extends Error{constructor(){super(\"An async animation has been interrupted. You see this error because you forgot to use `await` or `.catch(...)` on its returned promise.\"),this.result=void 0}}class Ua extends Error{constructor(){super(\"SkipAnimationSignal\"),this.result=void 0}}const Za=e=>e instanceof Wa;let Ya=1;class Wa extends ki{constructor(...e){super(...e),this.id=Ya++,this.key=void 0,this._priority=0}get priority(){return this._priority}set priority(e){this._priority!=e&&(this._priority=e,this._onPriorityChange(e))}get(){const e=$i(this);return e&&e.getValue()}to(...e){return Ao.to(this,e)}interpolate(...e){return Fi(`${Bi}The \"interpolate\" function is deprecated in v9 (use \"to\" instead)`),Ao.to(this,e)}toJSON(){return this.get()}observerAdded(e){1==e&&this._attach()}observerRemoved(e){0==e&&this._detach()}_attach(){}_detach(){}_onChange(e,t=!1){xi(this,{type:\"change\",parent:this,value:e,idle:t})}_onPriorityChange(e){this.idle||Ro.sort(this),xi(this,{type:\"priority\",parent:this,priority:e})}}const Va=Symbol.for(\"SpringPhase\"),Qa=e=>(1&e[Va])>0,Ha=e=>(2&e[Va])>0,Ga=e=>(4&e[Va])>0,qa=(e,t)=>t?e[Va]|=3:e[Va]&=-3,$a=(e,t)=>t?e[Va]|=4:e[Va]&=-5;class Xa extends Wa{constructor(e,t){if(super(),this.key=void 0,this.animation=new Ca,this.queue=void 0,this.defaultProps={},this._state={paused:!1,delayed:!1,pauseQueue:new Set,resumeQueue:new Set,timeouts:new Set},this._pendingCalls=new Set,this._lastCallId=0,this._lastToId=0,this._memoizedDuration=0,!_o.und(e)||!_o.und(t)){const r=_o.obj(e)?da({},e):da({},t,{from:e});_o.und(r.default)&&(r.default=!0),this.start(r)}}get idle(){return!(Ha(this)||this._state.asyncTo)||Ga(this)}get goal(){return _i(this.animation.to)}get velocity(){const e=$i(this);return e instanceof ea?e.lastVelocity||0:e.getPayload().map((e=>e.lastVelocity||0))}get hasAnimated(){return Qa(this)}get isAnimating(){return Ha(this)}get isPaused(){return Ga(this)}get isDelayed(){return this._state.delayed}advance(e){let t=!0,r=!1;const n=this.animation;let{config:o,toValues:i}=n;const a=Ki(n.to);!a&&gi(n.to)&&(i=No(_i(n.to))),n.values.forEach(((c,l)=>{if(c.done)return;const s=c.constructor==ta?1:a?a[l].lastPosition:i[l];let u=n.immediate,p=s;if(!u){if(p=c.lastPosition,o.tension<=0)return void(c.done=!0);let t=c.elapsedTime+=e;const r=n.fromValues[l],i=null!=c.v0?c.v0:c.v0=_o.arr(o.velocity)?o.velocity[l]:o.velocity;let a;const d=o.precision||(r==s?.005:Math.min(1,.001*Math.abs(s-r)));if(_o.und(o.duration))if(o.decay){const e=!0===o.decay?.998:o.decay,n=Math.exp(-(1-e)*t);p=r+i/(1-e)*(1-n),u=Math.abs(c.lastPosition-p)<=d,a=i*n}else{a=null==c.lastVelocity?i:c.lastVelocity;const t=o.restVelocity||d/10,n=o.clamp?0:o.bounce,l=!_o.und(n),f=r==s?c.v0>0:r<s;let m,y=!1;const h=1,b=Math.ceil(e/h);for(let e=0;e<b&&(m=Math.abs(a)>t,m||(u=Math.abs(s-p)<=d,!u));++e){l&&(y=p==s||p>s==f,y&&(a=-a*n,p=s));a+=(1e-6*-o.tension*(p-s)+.001*-o.friction*a)/o.mass*h,p+=a*h}}else{let n=1;o.duration>0&&(this._memoizedDuration!==o.duration&&(this._memoizedDuration=o.duration,c.durationProgress>0&&(c.elapsedTime=o.duration*c.durationProgress,t=c.elapsedTime+=e)),n=(o.progress||0)+t/this._memoizedDuration,n=n>1?1:n<0?0:n,c.durationProgress=n),p=r+o.easing(n)*(s-r),a=(p-c.lastPosition)/e,u=1==n}c.lastVelocity=a,Number.isNaN(p)&&(console.warn(\"Got NaN while animating:\",this),u=!0)}a&&!a[l].done&&(u=!1),u?c.done=!0:t=!1,c.setValue(p,o.round)&&(r=!0)}));const c=$i(this),l=c.getValue();if(t){const e=_i(n.to);l===e&&!r||o.decay?r&&o.decay&&this._onChange(l):(c.setValue(e),this._onChange(e)),this._stop()}else r&&this._onChange(l)}set(e){return to.batchedUpdates((()=>{this._stop(),this._focus(e),this._set(e)})),this}pause(){this._update({pause:!0})}resume(){this._update({pause:!1})}finish(){if(Ha(this)){const{to:e,config:t}=this.animation;to.batchedUpdates((()=>{this._onStart(),t.decay||this._set(e,!1),this._stop()}))}return this}update(e){return(this.queue||(this.queue=[])).push(e),this}start(e,t){let r;return _o.und(e)?(r=this.queue||[],this.queue=[]):r=[_o.obj(e)?e:da({},t,{to:e})],Promise.all(r.map((e=>this._update(e)))).then((e=>Aa(this,e)))}stop(e){const{to:t}=this.animation;return this._focus(this.get()),Ra(this._state,e&&this._lastCallId),to.batchedUpdates((()=>this._stop(t,e))),this}reset(){this._update({reset:!0})}eventObserved(e){\"change\"==e.type?this._start():\"priority\"==e.type&&(this.priority=e.priority+1)}_prepareNode(e){const t=this.key||\"\";let{to:r,from:n}=e;r=_o.obj(r)?r[t]:r,(null==r||Na(r))&&(r=void 0),n=_o.obj(n)?n[t]:n,null==n&&(n=void 0);const o={to:r,from:n};return Qa(this)||(e.reverse&&([r,n]=[n,r]),n=_i(n),_o.und(n)?$i(this)||this._set(r):this._set(n)),o}_update(e,t){let r=da({},e);const{key:n,defaultProps:o}=this;r.default&&Object.assign(o,va(r,((e,t)=>/^on/.test(t)?ya(e,n):e))),oc(this,r,\"onProps\"),ic(this,\"onProps\",r,this);const i=this._prepareNode(r);if(Object.isFrozen(this))throw Error(\"Cannot animate a `SpringValue` object that is frozen. Did you forget to pass your component to `animated(...)` before animating its props?\");const a=this._state;return Pa(++this._lastCallId,{key:n,props:r,defaultProps:o,state:a,actions:{pause:()=>{Ga(this)||($a(this,!0),jo(a.pauseQueue),ic(this,\"onPause\",Ta(this,Ka(this,this.animation.to)),this))},resume:()=>{Ga(this)&&($a(this,!1),Ha(this)&&this._resume(),jo(a.resumeQueue),ic(this,\"onResume\",Ta(this,Ka(this,this.animation.to)),this))},start:this._merge.bind(this,i)}}).then((e=>{if(r.loop&&e.finished&&(!t||!e.noop)){const e=Ja(r);if(e)return this._update(e,!0)}return e}))}_merge(e,t,r){if(t.cancel)return this.stop(!0),r(za(this));const n=!_o.und(e.to),o=!_o.und(e.from);if(n||o){if(!(t.callId>this._lastToId))return r(za(this));this._lastToId=t.callId}const{key:i,defaultProps:a,animation:c}=this,{to:l,from:s}=c;let{to:u=l,from:p=s}=e;!o||n||t.default&&!_o.und(u)||(u=p),t.reverse&&([u,p]=[p,u]);const d=!wo(p,s);d&&(c.from=p),p=_i(p);const f=!wo(u,l);f&&this._focus(u);const m=Na(t.to),{config:y}=c,{decay:h,velocity:b}=y;(n||o)&&(y.velocity=0),t.config&&!m&&function(e,t,r){r&&(Oa(r=da({},r),t),t=da({},r,t)),Oa(e,t),Object.assign(e,t);for(const t in Ea)null==e[t]&&(e[t]=Ea[t]);let{mass:n,frequency:o,damping:i}=e;_o.und(o)||(o<.01&&(o=.01),i<0&&(i=0),e.tension=Math.pow(2*Math.PI/o,2)*n,e.friction=4*Math.PI*i*n/o)}(y,fa(t.config,i),t.config!==a.config?fa(a.config,i):void 0);let v=$i(this);if(!v||_o.und(u))return r(Ta(this,!0));const g=_o.und(t.reset)?o&&!t.default:!_o.und(p)&&ma(t.reset,i),_=g?p:this.get(),w=xa(u),x=_o.num(w)||_o.arr(w)||Zi(w),k=!m&&(!x||ma(a.immediate||t.immediate,i));if(f){const e=aa(u);if(e!==v.constructor){if(!k)throw Error(`Cannot animate between ${v.constructor.name} and ${e.name}, as the \"to\" prop suggests`);v=this._set(w)}}const N=v.constructor;let M=gi(u),j=!1;if(!M){const e=g||!Qa(this)&&d;(f||e)&&(j=wo(xa(_),w),M=!j),(wo(c.immediate,k)||k)&&wo(y.decay,h)&&wo(y.velocity,b)||(M=!0)}if(j&&Ha(this)&&(c.changed&&!g?M=!0:M||this._stop(l)),!m&&((M||gi(l))&&(c.values=v.getPayload(),c.toValues=gi(u)?null:N==ta?[1]:No(w)),c.immediate!=k&&(c.immediate=k,k||g||this._set(l)),M)){const{onRest:e}=c;xo(nc,(e=>oc(this,t,e)));const n=Ta(this,Ka(this,l));jo(this._pendingCalls,n),this._pendingCalls.add(r),c.changed&&to.batchedUpdates((()=>{c.changed=!g,null==e||e(n,this),g?fa(a.onRest,n):null==c.onStart||c.onStart(n,this)}))}g&&this._set(_),m?r(Ba(t.to,t,this._state,this)):M?this._start():Ha(this)&&!f?this._pendingCalls.add(r):r(Da(_))}_focus(e){const t=this.animation;e!==t.to&&(wi(this)&&this._detach(),t.to=e,wi(this)&&this._attach())}_attach(){let e=0;const{to:t}=this.animation;gi(t)&&(Mi(t,this),Za(t)&&(e=t.priority+1)),this.priority=e}_detach(){const{to:e}=this.animation;gi(e)&&ji(e,this)}_set(e,t=!0){const r=_i(e);if(!_o.und(r)){const e=$i(this);if(!e||!wo(r,e.getValue())){const n=aa(r);e&&e.constructor==n?e.setValue(r):Xi(this,n.create(r)),e&&to.batchedUpdates((()=>{this._onChange(r,t)}))}}return $i(this)}_onStart(){const e=this.animation;e.changed||(e.changed=!0,ic(this,\"onStart\",Ta(this,Ka(this,e.to)),this))}_onChange(e,t){t||(this._onStart(),fa(this.animation.onChange,e,this)),fa(this.defaultProps.onChange,e,this),super._onChange(e,t)}_start(){const e=this.animation;$i(this).reset(_i(e.to)),e.immediate||(e.fromValues=e.values.map((e=>e.lastPosition))),Ha(this)||(qa(this,!0),Ga(this)||this._resume())}_resume(){Ao.skipAnimation?this.finish():Ro.start(this)}_stop(e,t){if(Ha(this)){qa(this,!1);const r=this.animation;xo(r.values,(e=>{e.done=!0})),r.toValues&&(r.onChange=r.onPause=r.onResume=void 0),xi(this,{type:\"idle\",parent:this});const n=t?za(this.get()):Ta(this.get(),Ka(this,null!=e?e:r.to));jo(this._pendingCalls,n),r.changed&&(r.changed=!1,ic(this,\"onRest\",n,this))}}}function Ka(e,t){const r=xa(t);return wo(xa(e.get()),r)}function Ja(e,t=e.loop,r=e.to){let n=fa(t);if(n){const o=!0!==n&&wa(n),i=(o||e).reverse,a=!o||o.reset;return ec(da({},e,{loop:t,default:!1,pause:void 0,to:!i||Na(r)?r:void 0,from:a?e.from:void 0,reset:a},o))}}function ec(e){const{to:t,from:r}=e=wa(e),n=new Set;return _o.obj(t)&&rc(t,n),_o.obj(r)&&rc(r,n),e.keys=n.size?Array.from(n):null,e}function tc(e){const t=ec(e);return _o.und(t.default)&&(t.default=va(t)),t}function rc(e,t){ko(e,((e,r)=>null!=e&&t.add(r)))}const nc=[\"onStart\",\"onRest\",\"onChange\",\"onPause\",\"onResume\"];function oc(e,t,r){e.animation[r]=t[r]!==ha(t,r)?ya(t[r],e.key):void 0}function ic(e,t,...r){var n,o,i,a;null==(n=(o=e.animation)[t])||n.call(o,...r),null==(i=(a=e.defaultProps)[t])||i.call(a,...r)}const ac=[\"onStart\",\"onChange\",\"onRest\"];let cc=1;class lc{constructor(e,t){this.id=cc++,this.springs={},this.queue=[],this.ref=void 0,this._flush=void 0,this._initialProps=void 0,this._lastAsyncId=0,this._active=new Set,this._changed=new Set,this._started=!1,this._item=void 0,this._state={paused:!1,pauseQueue:new Set,resumeQueue:new Set,timeouts:new Set},this._events={onStart:new Map,onChange:new Map,onRest:new Map},this._onFrame=this._onFrame.bind(this),t&&(this._flush=t),e&&this.start(da({default:!0},e))}get idle(){return!this._state.asyncTo&&Object.values(this.springs).every((e=>e.idle&&!e.isDelayed&&!e.isPaused))}get item(){return this._item}set item(e){this._item=e}get(){const e={};return this.each(((t,r)=>e[r]=t.get())),e}set(e){for(const t in e){const r=e[t];_o.und(r)||this.springs[t].set(r)}}update(e){return e&&this.queue.push(ec(e)),this}start(e){let{queue:t}=this;return e?t=No(e).map(ec):this.queue=[],this._flush?this._flush(this,t):(yc(this,t),sc(this,t))}stop(e,t){if(e!==!!e&&(t=e),t){const r=this.springs;xo(No(t),(t=>r[t].stop(!!e)))}else Ra(this._state,this._lastAsyncId),this.each((t=>t.stop(!!e)));return this}pause(e){if(_o.und(e))this.start({pause:!0});else{const t=this.springs;xo(No(e),(e=>t[e].pause()))}return this}resume(e){if(_o.und(e))this.start({pause:!1});else{const t=this.springs;xo(No(e),(e=>t[e].resume()))}return this}each(e){ko(this.springs,e)}_onFrame(){const{onStart:e,onChange:t,onRest:r}=this._events,n=this._active.size>0,o=this._changed.size>0;(n&&!this._started||o&&!this._started)&&(this._started=!0,Mo(e,(([e,t])=>{t.value=this.get(),e(t,this,this._item)})));const i=!n&&this._started,a=o||i&&r.size?this.get():null;o&&t.size&&Mo(t,(([e,t])=>{t.value=a,e(t,this,this._item)})),i&&(this._started=!1,Mo(r,(([e,t])=>{t.value=a,e(t,this,this._item)})))}eventObserved(e){if(\"change\"==e.type)this._changed.add(e.parent),e.idle||this._active.add(e.parent);else{if(\"idle\"!=e.type)return;this._active.delete(e.parent)}to.onFrame(this._onFrame)}}function sc(e,t){return Promise.all(t.map((t=>uc(e,t)))).then((t=>Aa(e,t)))}async function uc(e,t,r){const{keys:n,to:o,from:i,loop:a,onRest:c,onResolve:l}=t,s=_o.obj(t.default)&&t.default;a&&(t.loop=!1),!1===o&&(t.to=null),!1===i&&(t.from=null);const u=_o.arr(o)||_o.fun(o)?o:void 0;u?(t.to=void 0,t.onRest=void 0,s&&(s.onRest=void 0)):xo(ac,(r=>{const n=t[r];if(_o.fun(n)){const o=e._events[r];t[r]=({finished:e,cancelled:t})=>{const r=o.get(n);r?(e||(r.finished=!1),t&&(r.cancelled=!0)):o.set(n,{value:null,finished:e||!1,cancelled:t||!1})},s&&(s[r]=t[r])}}));const p=e._state;t.pause===!p.paused?(p.paused=t.pause,jo(t.pause?p.pauseQueue:p.resumeQueue)):p.paused&&(t.pause=!0);const d=(n||Object.keys(e.springs)).map((r=>e.springs[r].start(t))),f=!0===t.cancel||!0===ha(t,\"cancel\");(u||f&&p.asyncId)&&d.push(Pa(++e._lastAsyncId,{props:t,state:p,actions:{pause:go,resume:go,start(t,r){f?(Ra(p,e._lastAsyncId),r(za(e))):(t.onRest=c,r(Ba(u,t,p,e)))}}})),p.paused&&await new Promise((e=>{p.resumeQueue.add(e)}));const m=Aa(e,await Promise.all(d));if(a&&m.finished&&(!r||!m.noop)){const r=Ja(t,a,o);if(r)return yc(e,[r]),uc(e,r,!0)}return l&&to.batchedUpdates((()=>l(m,e,e.item))),m}function pc(e,t){const r=da({},e.springs);return t&&xo(No(t),(e=>{_o.und(e.keys)&&(e=ec(e)),_o.obj(e.to)||(e=da({},e,{to:void 0})),mc(r,e,(e=>fc(e)))})),dc(e,r),r}function dc(e,t){ko(t,((t,r)=>{e.springs[r]||(e.springs[r]=t,Mi(t,e))}))}function fc(e,t){const r=new Xa;return r.key=e,t&&Mi(r,t),r}function mc(e,t,r){t.keys&&xo(t.keys,(n=>{(e[n]||(e[n]=r(n)))._prepareNode(t)}))}function yc(e,t){xo(t,(t=>{mc(e.springs,t,(t=>fc(t,e)))}))}function hc(e,t){if(null==e)return{};var r,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||(o[r]=e[r]);return o}const bc=[\"children\"],vc=t=>{let{children:r}=t,n=hc(t,bc);const o=(0,e.useContext)(gc),i=n.pause||!!o.pause,a=n.immediate||!!o.immediate;n=function(t,r){const[n]=(0,e.useState)((()=>({inputs:r,result:t()}))),o=(0,e.useRef)(),i=o.current;let a=i;a?Boolean(r&&a.inputs&&function(e,t){if(e.length!==t.length)return!1;for(let r=0;r<e.length;r++)if(e[r]!==t[r])return!1;return!0}(r,a.inputs))||(a={inputs:r,result:t()}):a=n;return(0,e.useEffect)((()=>{o.current=a,i==n&&(n.inputs=n.result=void 0)}),[a]),a.result}((()=>({pause:i,immediate:a})),[i,a]);const{Provider:c}=gc;return e.createElement(c,{value:n},r)},gc=(_c=vc,wc={},Object.assign(_c,e.createContext(wc)),_c.Provider._context=_c,_c.Consumer._context=_c,_c);var _c,wc;vc.Provider=gc.Provider,vc.Consumer=gc.Consumer;const xc=()=>{const e=[],t=function(t){Ui(`${Bi}Directly calling start instead of using the api object is deprecated in v9 (use \".start\" instead), this will be removed in later 0.X.0 versions`);const n=[];return xo(e,((e,o)=>{if(_o.und(t))n.push(e.start());else{const i=r(t,e,o);i&&n.push(e.start(i))}})),n};t.current=e,t.add=function(t){e.includes(t)||e.push(t)},t.delete=function(t){const r=e.indexOf(t);~r&&e.splice(r,1)},t.pause=function(){return xo(e,(e=>e.pause(...arguments))),this},t.resume=function(){return xo(e,(e=>e.resume(...arguments))),this},t.set=function(t){xo(e,(e=>e.set(t)))},t.start=function(t){const r=[];return xo(e,((e,n)=>{if(_o.und(t))r.push(e.start());else{const o=this._getProps(t,e,n);o&&r.push(e.start(o))}})),r},t.stop=function(){return xo(e,(e=>e.stop(...arguments))),this},t.update=function(t){return xo(e,((e,r)=>e.update(this._getProps(t,e,r)))),this};const r=function(e,t,r){return _o.fun(e)?e(r,t):e};return t._getProps=r,t};function kc(t,r,n){const o=_o.fun(r)&&r;o&&!n&&(n=[]);const i=(0,e.useMemo)((()=>o||3==arguments.length?xc():void 0),[]),a=(0,e.useRef)(0),c=Vi(),l=(0,e.useMemo)((()=>({ctrls:[],queue:[],flush(e,t){const r=pc(e,t);return a.current>0&&!l.queue.length&&!Object.keys(r).some((t=>!e.springs[t]))?sc(e,t):new Promise((n=>{dc(e,r),l.queue.push((()=>{n(sc(e,t))})),c()}))}})),[]),s=(0,e.useRef)([...l.ctrls]),u=[],p=Gi(t)||0;function d(e,t){for(let n=e;n<t;n++){const e=s.current[n]||(s.current[n]=new lc(null,l.flush)),t=o?o(n,e):r[n];t&&(u[n]=tc(t))}}(0,e.useMemo)((()=>{xo(s.current.slice(t,p),(e=>{Ma(e,i),e.stop(!0)})),s.current.length=t,d(p,t)}),[t]),(0,e.useMemo)((()=>{d(0,Math.min(p,t))}),n);const f=s.current.map(((e,t)=>pc(e,u[t]))),m=(0,e.useContext)(vc),y=Gi(m),h=m!==y&&ka(m);Yi((()=>{a.current++,l.ctrls=s.current;const{queue:e}=l;e.length&&(l.queue=[],xo(e,(e=>e()))),xo(s.current,((e,t)=>{null==i||i.add(e),h&&e.start({default:m});const r=u[t];r&&(ja(e,r.ref),e.ref?e.queue.push(r):e.start(r))}))})),Qi((()=>()=>{xo(l.ctrls,(e=>e.stop(!0)))}));const b=f.map((e=>da({},e)));return i?[b,i]:b}function Nc(e,t){const r=_o.fun(e),[[n],o]=kc(1,r?e:[e],r?t||[]:t);return r||2==arguments.length?[n,o]:n}let Mc;!function(e){e.MOUNT=\"mount\",e.ENTER=\"enter\",e.UPDATE=\"update\",e.LEAVE=\"leave\"}(Mc||(Mc={}));class jc extends Wa{constructor(e,t){super(),this.key=void 0,this.idle=!0,this.calc=void 0,this._active=new Set,this.source=e,this.calc=li(...t);const r=this._get(),n=aa(r);Xi(this,n.create(r))}advance(e){const t=this._get();wo(t,this.get())||($i(this).setValue(t),this._onChange(t,this.idle)),!this.idle&&Ec(this._active)&&Lc(this)}_get(){const e=_o.arr(this.source)?this.source.map(_i):No(_i(this.source));return this.calc(...e)}_start(){this.idle&&!Ec(this._active)&&(this.idle=!1,xo(Ki(this),(e=>{e.done=!1})),Ao.skipAnimation?(to.batchedUpdates((()=>this.advance())),Lc(this)):Ro.start(this))}_attach(){let e=1;xo(No(this.source),(t=>{gi(t)&&Mi(t,this),Za(t)&&(t.idle||this._active.add(t),e=Math.max(e,t.priority+1))})),this.priority=e,this._start()}_detach(){xo(No(this.source),(e=>{gi(e)&&ji(e,this)})),this._active.clear(),Lc(this)}eventObserved(e){\"change\"==e.type?e.idle?this.advance():(this._active.add(e.parent),this._start()):\"idle\"==e.type?this._active.delete(e.parent):\"priority\"==e.type&&(this.priority=No(this.source).reduce(((e,t)=>Math.max(e,(Za(t)?t.priority:0)+1)),0))}}function Sc(e){return!1!==e.idle}function Ec(e){return!e.size||Array.from(e).every(Sc)}function Lc(e){e.idle||(e.idle=!0,xo(Ki(e),(e=>{e.done=!0})),xi(e,{type:\"idle\",parent:e}))}Ao.assign({createStringInterpolator:zi,to:(e,t)=>new jc(e,t)});Ro.advance;function Oc(e,t){if(null==e)return{};var r,n,o={},i=Object.keys(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||(o[r]=e[r]);return o}const Ic=[\"style\",\"children\",\"scrollTop\",\"scrollLeft\",\"viewBox\"],Cc=/^--/;function Pc(e,t){return null==t||\"boolean\"==typeof t||\"\"===t?\"\":\"number\"!=typeof t||0===t||Cc.test(e)||Dc.hasOwnProperty(e)&&Dc[e]?(\"\"+t).trim():t+\"px\"}const Ac={};let Dc={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0};const Tc=[\"Webkit\",\"Ms\",\"Moz\",\"O\"];Dc=Object.keys(Dc).reduce(((e,t)=>(Tc.forEach((r=>e[((e,t)=>e+t.charAt(0).toUpperCase()+t.substring(1))(r,t)]=e[t])),e)),Dc);const zc=[\"x\",\"y\",\"z\"],Bc=/^(matrix|translate|scale|rotate|skew)/,Rc=/^(translate)/,Fc=/^(rotate|skew)/,Uc=(e,t)=>_o.num(e)&&0!==e?e+t:e,Zc=(e,t)=>_o.arr(e)?e.every((e=>Zc(e,t))):_o.num(e)?e===t:parseFloat(e)===t;class Yc extends na{constructor(e){let{x:t,y:r,z:n}=e,o=Oc(e,zc);const i=[],a=[];(t||r||n)&&(i.push([t||0,r||0,n||0]),a.push((e=>[`translate3d(${e.map((e=>Uc(e,\"px\"))).join(\",\")})`,Zc(e,0)]))),ko(o,((e,t)=>{if(\"transform\"===t)i.push([e||\"\"]),a.push((e=>[e,\"\"===e]));else if(Bc.test(t)){if(delete o[t],_o.und(e))return;const r=Rc.test(t)?\"px\":Fc.test(t)?\"deg\":\"\";i.push(No(e)),a.push(\"rotate3d\"===t?([e,t,n,o])=>[`rotate3d(${e},${t},${n},${Uc(o,r)})`,Zc(o,0)]:e=>[`${t}(${e.map((e=>Uc(e,r))).join(\",\")})`,Zc(e,t.startsWith(\"scale\")?1:0)])}})),i.length&&(o.transform=new Wc(i,a)),super(o)}}class Wc extends ki{constructor(e,t){super(),this._value=null,this.inputs=e,this.transforms=t}get(){return this._value||(this._value=this._get())}_get(){let e=\"\",t=!0;return xo(this.inputs,((r,n)=>{const o=_i(r[0]),[i,a]=this.transforms[n](_o.arr(o)?o:r.map(_i));e+=\" \"+i,t=t&&a})),t?\"none\":e}observerAdded(e){1==e&&xo(this.inputs,(e=>xo(e,(e=>gi(e)&&Mi(e,this)))))}observerRemoved(e){0==e&&xo(this.inputs,(e=>xo(e,(e=>gi(e)&&ji(e,this)))))}eventObserved(e){\"change\"==e.type&&(this._value=null),xi(this,e)}}const Vc=[\"scrollTop\",\"scrollLeft\"];Ao.assign({batchedUpdates:t.unstable_batchedUpdates,createStringInterpolator:zi,colors:{transparent:0,aliceblue:4042850303,antiquewhite:4209760255,aqua:16777215,aquamarine:2147472639,azure:4043309055,beige:4126530815,bisque:4293182719,black:255,blanchedalmond:4293643775,blue:65535,blueviolet:2318131967,brown:2771004159,burlywood:3736635391,burntsienna:3934150143,cadetblue:1604231423,chartreuse:2147418367,chocolate:3530104575,coral:4286533887,cornflowerblue:1687547391,cornsilk:4294499583,crimson:3692313855,cyan:16777215,darkblue:35839,darkcyan:9145343,darkgoldenrod:3095792639,darkgray:2846468607,darkgreen:6553855,darkgrey:2846468607,darkkhaki:3182914559,darkmagenta:2332068863,darkolivegreen:1433087999,darkorange:4287365375,darkorchid:2570243327,darkred:2332033279,darksalmon:3918953215,darkseagreen:2411499519,darkslateblue:1211993087,darkslategray:793726975,darkslategrey:793726975,darkturquoise:13554175,darkviolet:2483082239,deeppink:4279538687,deepskyblue:12582911,dimgray:1768516095,dimgrey:1768516095,dodgerblue:512819199,firebrick:2988581631,floralwhite:4294635775,forestgreen:579543807,fuchsia:4278255615,gainsboro:3705462015,ghostwhite:4177068031,gold:4292280575,goldenrod:3668254975,gray:2155905279,green:8388863,greenyellow:2919182335,grey:2155905279,honeydew:4043305215,hotpink:4285117695,indianred:3445382399,indigo:1258324735,ivory:4294963455,khaki:4041641215,lavender:3873897215,lavenderblush:4293981695,lawngreen:2096890111,lemonchiffon:4294626815,lightblue:2916673279,lightcoral:4034953471,lightcyan:3774873599,lightgoldenrodyellow:4210742015,lightgray:3553874943,lightgreen:2431553791,lightgrey:3553874943,lightpink:4290167295,lightsalmon:4288707327,lightseagreen:548580095,lightskyblue:2278488831,lightslategray:2005441023,lightslategrey:2005441023,lightsteelblue:2965692159,lightyellow:4294959359,lime:16711935,limegreen:852308735,linen:4210091775,magenta:4278255615,maroon:2147483903,mediumaquamarine:1724754687,mediumblue:52735,mediumorchid:3126187007,mediumpurple:2473647103,mediumseagreen:1018393087,mediumslateblue:2070474495,mediumspringgreen:16423679,mediumturquoise:1221709055,mediumvioletred:3340076543,midnightblue:421097727,mintcream:4127193855,mistyrose:4293190143,moccasin:4293178879,navajowhite:4292783615,navy:33023,oldlace:4260751103,olive:2155872511,olivedrab:1804477439,orange:4289003775,orangered:4282712319,orchid:3664828159,palegoldenrod:4008225535,palegreen:2566625535,paleturquoise:2951671551,palevioletred:3681588223,papayawhip:4293907967,peachpuff:4292524543,peru:3448061951,pink:4290825215,plum:3718307327,powderblue:2967529215,purple:2147516671,rebeccapurple:1714657791,red:4278190335,rosybrown:3163525119,royalblue:1097458175,saddlebrown:2336560127,salmon:4202722047,sandybrown:4104413439,seagreen:780883967,seashell:4294307583,sienna:2689740287,silver:3233857791,skyblue:2278484991,slateblue:1784335871,slategray:1887473919,slategrey:1887473919,snow:4294638335,springgreen:16744447,steelblue:1182971135,tan:3535047935,teal:8421631,thistle:3636451583,tomato:4284696575,turquoise:1088475391,violet:4001558271,wheat:4125012991,white:4294967295,whitesmoke:4126537215,yellow:4294902015,yellowgreen:2597139199}});const Qc=((e,{applyAnimatedValues:t=(()=>!1),createAnimatedStyle:r=(e=>new na(e)),getComponentProps:n=(e=>e)}={})=>{const o={applyAnimatedValues:t,createAnimatedStyle:r,getComponentProps:n},i=e=>{const t=pa(e)||\"Anonymous\";return(e=_o.str(e)?i[e]||(i[e]=la(e,o)):e[ua]||(e[ua]=la(e,o))).displayName=`Animated(${t})`,e};return ko(e,((t,r)=>{_o.arr(e)&&(r=pa(t)),i[r]=i(t)})),{animated:i}})([\"a\",\"abbr\",\"address\",\"area\",\"article\",\"aside\",\"audio\",\"b\",\"base\",\"bdi\",\"bdo\",\"big\",\"blockquote\",\"body\",\"br\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"col\",\"colgroup\",\"data\",\"datalist\",\"dd\",\"del\",\"details\",\"dfn\",\"dialog\",\"div\",\"dl\",\"dt\",\"em\",\"embed\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"head\",\"header\",\"hgroup\",\"hr\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"keygen\",\"label\",\"legend\",\"li\",\"link\",\"main\",\"map\",\"mark\",\"menu\",\"menuitem\",\"meta\",\"meter\",\"nav\",\"noscript\",\"object\",\"ol\",\"optgroup\",\"option\",\"output\",\"p\",\"param\",\"picture\",\"pre\",\"progress\",\"q\",\"rp\",\"rt\",\"ruby\",\"s\",\"samp\",\"script\",\"section\",\"select\",\"small\",\"source\",\"span\",\"strong\",\"style\",\"sub\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"title\",\"tr\",\"track\",\"u\",\"ul\",\"var\",\"video\",\"wbr\",\"circle\",\"clipPath\",\"defs\",\"ellipse\",\"foreignObject\",\"g\",\"image\",\"line\",\"linearGradient\",\"mask\",\"path\",\"pattern\",\"polygon\",\"polyline\",\"radialGradient\",\"rect\",\"stop\",\"svg\",\"text\",\"tspan\"],{applyAnimatedValues:function(e,t){if(!e.nodeType||!e.setAttribute)return!1;const r=\"filter\"===e.nodeName||e.parentNode&&\"filter\"===e.parentNode.nodeName,n=t,{style:o,children:i,scrollTop:a,scrollLeft:c,viewBox:l}=n,s=Oc(n,Ic),u=Object.values(s),p=Object.keys(s).map((t=>r||e.hasAttribute(t)?t:Ac[t]||(Ac[t]=t.replace(/([A-Z])/g,(e=>\"-\"+e.toLowerCase())))));void 0!==i&&(e.textContent=i);for(let t in o)if(o.hasOwnProperty(t)){const r=Pc(t,o[t]);Cc.test(t)?e.style.setProperty(t,r):e.style[t]=r}p.forEach(((t,r)=>{e.setAttribute(t,u[r])})),void 0!==a&&(e.scrollTop=a),void 0!==c&&(e.scrollLeft=c),void 0!==l&&e.setAttribute(\"viewBox\",l)},createAnimatedStyle:e=>new Yc(e),getComponentProps:e=>Oc(e,Vc)}),Hc=Qc.animated;var Gc=r(6066),qc=r(2081),$c={insert:\"head\",singleton:!1};o()(qc.Z,$c);qc.Z.locals;var Xc=z(\"Anchor\");const Kc=function(t){var r=t.id,n=t.className,o=t.qa;return e.createElement(\"div\",{id:r,className:Xc(null,n),\"data-qa\":o||\"qa-anchor\",__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/components/Anchor/Anchor.tsx\",lineNumber:19,columnNumber:5}})};function Jc(e,t){if(!(e instanceof t))throw new TypeError(\"Cannot call a class as a function\")}function el(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,\"value\"in n&&(n.writable=!0),Object.defineProperty(e,I(n.key),n)}}function tl(e,t,r){return t&&el(e.prototype,t),r&&el(e,r),Object.defineProperty(e,\"prototype\",{writable:!1}),e}function rl(e){if(void 0===e)throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");return e}function nl(e,t){if(\"function\"!=typeof t&&null!==t)throw new TypeError(\"Super expression must either be null or a function\");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,\"prototype\",{writable:!1}),t&&Y(e,t)}function ol(e,t){if(t&&(\"object\"===O(t)||\"function\"==typeof t))return t;if(void 0!==t)throw new TypeError(\"Derived constructors may only return object or undefined\");return rl(e)}function il(e){return il=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},il(e)}function al(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=il(e);if(t){var o=il(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return ol(this,r)}}var cl=function(t){nl(n,t);var r=al(n);function n(){var t;Jc(this,n);for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];return C(rl(t=r.call.apply(r,[this].concat(i))),\"ref\",(0,e.createRef)()),C(rl(t),\"handleOutsideClick\",(function(e){e.target&&t.ref&&t.ref.current&&!t.ref.current.contains(e.target)&&t.props.onOutsideClick()})),t}return tl(n,[{key:\"componentDidMount\",value:function(){document.addEventListener(\"click\",this.handleOutsideClick,{passive:!0})}},{key:\"componentWillUnmount\",value:function(){document.removeEventListener(\"click\",this.handleOutsideClick)}},{key:\"render\",value:function(){var t=this.props,r=t.className,n=t.onClick,o=t.children;return e.createElement(\"div\",{className:r,ref:this.ref,onClick:n,__self:this,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/components/OutsideClick/OutsideClick.tsx\",lineNumber:24,columnNumber:13}},o)}}]),n}(e.Component),ll=function(e){return e.Sm=\"sm\",e.Md=\"md\",e.Lg=\"lg\",e.Xl=\"xl\",e.All=\"all\",e}({}),sl=function(e){return e.Col=\"col\",e.Offset=\"offset\",e.Order=\"order\",e}({}),ul=function(e){return e.None=\"none\",e.Block=\"block\",e}({}),pl=function(e){return e.First=\"first\",e.Last=\"last\",e}({});function dl(e,t){return\"d\".concat(t?\"-\".concat(t):\"\",\"-\").concat(e)}function fl(e,t){return Object.keys(e).reduce((function(r,n){var o=n===ll.All?\"\":\"-\".concat(n),i=e[n],a=i||t!==sl.Col?\"-\".concat(i):\"\";return r+\" \".concat(t).concat(o).concat(a)}),\"\")}function ml(e){return fl(e,sl.Offset)}function yl(e){return fl(e,sl.Order)}function hl(e,t){var r=F(t===ul.None?[ul.None,ul.Block]:[ul.Block,ul.None],2),n=r[0],o=r[1];return\"\".concat(dl(o),\" \").concat(dl(n,e))}function bl(e){return\"number\"==typeof e?\"\".concat(sl.Col,\"-\").concat(e.toString()):fl(e,sl.Col)}function vl(e){return\"d-flex \".concat(e)}function gl(e){var t=e.className,r=void 0===t?\"\":t,n=e.sizes,o=e.offsets,i=e.orders,a=e.hidden,c=e.visible,l=e.alignSelf,s=e.justifyContent,u=e.reset;return[sl.Col,l,s&&vl(s),n&&bl(n),o&&ml(o),i&&yl(i),a&&hl(a,ul.None),c&&hl(c,ul.Block),u&&\"col-reset\",r].filter(Boolean).join(\" \")}var _l=[\"children\",\"style\",\"dataQa\"],wl=(0,e.forwardRef)((function(t,r){var n=t.children,o=t.style,i=t.dataQa,a=L(t,_l);return e.createElement(\"div\",{ref:r,className:gl(a),style:o,\"data-qa\":i,__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/grid/Col/Col.tsx\",lineNumber:18,columnNumber:9}},n)}));wl.displayName=\"Col\";var xl=r(7118),kl=r.n(xl),Nl=function(e){return e.PromoFeaturesBlock=\"promo-features-block\",e.ExtendedFeaturesBlock=\"extended-features-block\",e.SliderBlock=\"slider-block\",e.QuestionsBlock=\"questions-block\",e.BannerBlock=\"banner-block\",e.CompaniesBlock=\"companies-block\",e.MediaBlock=\"media-block\",e.InfoBlock=\"info-block\",e.TableBlock=\"table-block\",e.TabsBlock=\"tabs-block\",e.HeaderSliderBlock=\"header-slider-block\",e.HeaderBlock=\"header-block\",e.IconsBlock=\"icons-block\",e.CardLayoutBlock=\"card-layout-block\",e.ContentLayoutBlock=\"content-layout-block\",e.ShareBlock=\"share-block\",e.MapBlock=\"map-block\",e.FilterBlock=\"filter-block\",e}({}),Ml=Object.values(Nl),jl=[Nl.HeaderBlock,Nl.HeaderSliderBlock],Sl=function(e){return e.MediaCard=\"media-card\",e.HeaderCard=\"header-card\",e}({}),El=function(e){return e.Vk=\"vk\",e.Telegram=\"telegram\",e.Twitter=\"twitter\",e.Facebook=\"facebook\",e.LinkedIn=\"linkedin\",e}({});function Ll(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function Ol(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Ll(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Ll(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var Il=\"<(\".concat([\"div\",\"p\",\"h[1-6]\",\"address\",\"article\",\"aside\",\"blockquote\",\"canvas\",\"dd\",\"dl\",\"dt\",\"fieldset\",\"figcaption\",\"footer\",\"header\",\"hr\",\"main\",\"nav\",\"section\",\"video\",\"pre\",\"figure\",\"form\",\"pre\",\"ol\",\"ul\",\"li\",\"table\",\"thead\",\"tbody\",\"tfoot\",\"tr\",\"th\",\"td\"].join(\"|\"),\")[^>]*>\");function Cl(e,t){return\"\".concat(e.type,\"-\").concat(t)}var Pl=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.blocks,r=void 0===t?{}:t,n=e.headers,o=void 0===n?{}:n;return[].concat(D(Object.keys(r)),D(Object.keys(o)))},Al=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.blocks,r=void 0===t?{}:t,n=e.headers,o=void 0===n?{}:n,i=e.subBlocks,a=void 0===i?{}:i;return Ol(Ol(Ol({},r),o),a)},Dl=function(){var e=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).subBlocks,t=void 0===e?{}:e;return Object.keys(t)},Tl=function(){var e=(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{}).headers,t=void 0===e?{}:e;return Object.keys(t)},zl=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=new URL(e);return Object.entries(t).forEach((function(e){var t=F(e,2),n=t[0],o=t[1];o&&r.searchParams.set(n,o)})),r.toString()};const Bl=function(t){var r,n=t.children,o=t.block,i=void 0!==o&&o,a=t.className,c=t.itemProp;return n?e.createElement(i||(r=n,new RegExp(Il,\"g\").test(r))?\"div\":\"span\",{dangerouslySetInnerHTML:{__html:n},className:a,itemProp:c}):null};var Rl=(0,T.Z)(\"yfm\");const Fl=function(t){var r=t.content,n=t.modifiers,o=t.className,i=t.itemProp;return e.createElement(Bl,{className:Rl(n?kl()(n):{},o),itemProp:i,__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/components/YFMWrapper/YFMWrapper.tsx\",lineNumber:26,columnNumber:5}},r)};var Ul=\"/home/runner/work/page-constructor/page-constructor/src/icons/NavigationChevron.tsx\",Zl=void 0,Yl=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",width:\"12\",height:\"12\",viewBox:\"0 0 12 12\",fill:\"currentColor\"},Ue,t,{__self:Zl,__source:{fileName:Ul,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M1 3L6 8L11 3L12 4L5.99997 10L-4.37114e-08 4L1 3Z\",__self:Zl,__source:{fileName:Ul,lineNumber:15,columnNumber:9}}))},Wl=\"/home/runner/work/page-constructor/page-constructor/src/icons/Chevron.tsx\",Vl=void 0,Ql=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 16 16\",width:\"16\",height:\"16\",stroke:\"currentColor\"},Ue,t,{__self:Vl,__source:{fileName:Wl,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{fill:\"none\",d:\"M3 6l5 5 5-5\",__self:Vl,__source:{fileName:Wl,lineNumber:15,columnNumber:9}}))},Hl=r(8514),Gl={insert:\"head\",singleton:!1};o()(Hl.Z,Gl);Hl.Z.locals;var ql=z(\"ToggleArrow\");const $l=function(t){var r=t.type,n=void 0===r?\"horizontal\":r,o=t.iconType,i=void 0===o?\"default\":o,a=t.open,c=void 0!==a&&a,l=t.size,s=void 0===l?16:l,u=t.thin,p=void 0!==u&&u,d=t.slow,f=void 0!==d&&d,m=t.className;return e.createElement(Me,{className:ql({type:n,open:c,thin:p,slow:f},m),data:\"navigation\"===i?Yl:Ql,size:s,__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/components/ToggleArrow/ToggleArrow.tsx\",lineNumber:31,columnNumber:5}})};var Xl=r(6235),Kl={insert:\"head\",singleton:!1};o()(Xl.Z,Kl);Xl.Z.locals;var Jl=\"/home/runner/work/page-constructor/page-constructor/src/components/Title/TitleItem.tsx\",es=void 0,ts=z(\"title-item\");function rs(e,t){switch(e){case\"xs\":return 13;case\"s\":return 16;case\"m\":return t?22:24;case\"l\":return t?26:38;default:return 20}}const ns=function(t){var r,n=(0,e.useContext)(_),o=t.textSize,i=void 0===o?\"m\":o,a=t.text,c=t.anchor,l=t.justify,s=t.url,u=t.onClick,p=t.custom,d=t.className,f=t.dataQa,y=t.resetMargin,h=void 0===y||y,b=(0,e.useContext)(m).hostname,v=e.createElement(e.Fragment,{__self:es,__source:{fileName:Jl,lineNumber:54,columnNumber:9}},e.createElement(Bl,{className:ts(\"text\"),__self:es,__source:{fileName:Jl,lineNumber:55,columnNumber:13}},a),p&&e.createElement(e.Fragment,{__self:es,__source:{fileName:Jl,lineNumber:57,columnNumber:17}},\" \",e.createElement(\"span\",{className:ts(\"custom\"),__self:es,__source:{fileName:Jl,lineNumber:59,columnNumber:21}},p))),g=e.createElement(\"span\",{className:ts(\"wrapper\"),__self:es,__source:{fileName:Jl,lineNumber:67,columnNumber:9}},v,\" \",e.createElement($l,{className:ts(\"arrow\",{size:i}),size:rs(i,n),type:\"horizontal\",iconType:\"navigation\",open:!1,__self:es,__source:{fileName:Jl,lineNumber:70,columnNumber:13}}));return s||u?s?r=e.createElement(\"a\",Object.assign({className:ts(\"link\"),href:s},$e(s,b),{onClick:u,__self:es,__source:{fileName:Jl,lineNumber:84,columnNumber:13}}),g):u&&(r=e.createElement(\"span\",{className:ts(\"link\"),onClick:u,__self:es,__source:{fileName:Jl,lineNumber:90,columnNumber:13}},g)):r=v,e.createElement(e.Fragment,{__self:es,__source:{fileName:Jl,lineNumber:97,columnNumber:9}},c&&e.createElement(Kc,{id:c,className:ts(\"anchor\"),__self:es,__source:{fileName:Jl,lineNumber:98,columnNumber:24}}),e.createElement(function(e){switch(e){case\"l\":return\"h1\";case\"s\":return\"h4\";case\"xs\":return\"h5\";default:return\"h2\"}}(i),{className:ts({size:i,justify:l,\"reset-margin\":h},d),\"data-qa\":\"\".concat(f,\"-header\")},r))};var os=r(1233),is={insert:\"head\",singleton:!1};o()(os.Z,is);os.Z.locals;var as=[\"text\"],cs=\"/home/runner/work/page-constructor/page-constructor/src/components/Title/Title.tsx\",ls=void 0,ss=z(\"title\");const us=function(t){var r=t.title,n=t.subtitle,o=t.className,i=t.colSizes,a=void 0===i?{all:12,sm:8}:i;if(!r&&!n)return null;var c=r&&\"string\"!=typeof r?r:{text:r},l=c.text,s=L(c,as);return e.createElement(\"div\",{className:ss(null,o),__self:ls,__source:{fileName:cs,lineNumber:32,columnNumber:9}},l&&e.createElement(wl,{reset:!0,sizes:a,__self:ls,__source:{fileName:cs,lineNumber:34,columnNumber:17}},e.createElement(ns,Object.assign({text:l},s,{__self:ls,__source:{fileName:cs,lineNumber:35,columnNumber:21}}))),n&&e.createElement(wl,{reset:!0,sizes:a,__self:ls,__source:{fileName:cs,lineNumber:39,columnNumber:17}},e.createElement(\"div\",{className:ss(\"description\",{titleSize:null==s?void 0:s.textSize}),__self:ls,__source:{fileName:cs,lineNumber:40,columnNumber:21}},e.createElement(Fl,{content:n,modifiers:{constructor:!0},__self:ls,__source:{fileName:cs,lineNumber:41,columnNumber:25}}))))};var ps=e.createContext({setStyles:function(){}});var ds=r(6533),fs={insert:\"head\",singleton:!1};o()(ds.Z,fs);ds.Z.locals;var ms=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Slider/Arrow/Arrow.tsx\",ys=void 0,hs=z(\"slider-block-arrow\");const bs=function(t){var r=t.type,n=t.handleClick,o=t.className,i=t.size,a=void 0===i?16:i;return e.createElement(\"div\",{className:hs({type:r},o),__self:ys,__source:{fileName:ms,lineNumber:20,columnNumber:5}},e.createElement(\"button\",{className:hs(\"button\"),onClick:function(){return n&&n(r)},__self:ys,__source:{fileName:ms,lineNumber:21,columnNumber:9}},e.createElement(\"span\",{className:hs(\"icon-wrapper\"),__self:ys,__source:{fileName:ms,lineNumber:22,columnNumber:13}},e.createElement($l,{size:a,type:\"horizontal\",iconType:\"navigation\",className:hs(\"icon\"),__self:ys,__source:{fileName:ms,lineNumber:23,columnNumber:17}}))))};var vs,gs=function(e){return e.Sm=\"sm\",e.Md=\"md\",e.Lg=\"lg\",e.Xl=\"xl\",e}({});function _s(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function ws(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?_s(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):_s(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var xs=(C(vs={},gs.Xl,3),C(vs,gs.Lg,2),C(vs,gs.Md,2),C(vs,gs.Sm,1.15),vs),ks=Object.entries(et).reduce((function(e,t){var r=F(t,2),n=r[0],o=r[1];return ws(ws({},e),{},C({},o,n))}),{});function Ns(e){return Object.entries(e).map((function(e){var t=F(e,2),r=t[0],n=t[1];return{breakpoint:et[r],settings:{slidesToShow:n}}}))}var Ms=r(7859),js={insert:\"head\",singleton:!1};o()(Ms.Z,js);Ms.Z.locals;var Ss=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Slider/Slider.tsx\",Es=void 0;function Ls(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function Os(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Ls(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Ls(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var Is=z(\"SliderBlock\"),Cs=z(\"slick-origin\");const Ps=function(t){var r,n,o,i,a,c,l=t.animated,s=t.title,u=t.description,p=t.type,d=t.anchorId,f=t.arrows,m=void 0===f||f,y=t.adaptive,h=t.autoplay,b=void 0===h?void 0:h,v=t.dots,g=void 0===v||v,w=t.dotsClassName,k=t.disclaimer,N=t.children,M=t.className,j=t.blockClassName,S=t.lazyLoad,E=t.arrowSize,L=t.onAfterChange,O=t.onBeforeChange,I=(0,e.useContext)(x).isServer,P=(0,e.useContext)(_),A=F((0,e.useState)(et.xl),2),T=A[0],z=A[1],B=(0,e.useMemo)((function(){return function(t){if(!t)return[];return e.Children.map(t,(function(t){if(t){var r,n=null===(r=t.props.data)||void 0===r?void 0:r.items;if(n)return n.map((function(r){return e.cloneElement(t,{data:Os(Os({},t.props.data),{},{items:[r]})})}))}return t})).filter(Boolean)}(N)}),[N]),R=B.length,U=F((0,e.useState)((n={contentLength:R,breakpoints:t.slidesToShow,mobileFullscreen:Boolean(t.type&&Object.values(Sl).includes(t.type))},i=n.contentLength,a=n.breakpoints,c=n.mobileFullscreen,o=\"number\"==typeof a?Object.keys(xs).reduce((function(e,t){return ws(ws({},e),{},C({},t,a))}),{}):a||xs,ws(ws(ws({},xs),Se().pickBy(o,(function(e){return!isNaN(e)}))),{},{sm:!c&&i>1?xs.sm:1}))),1)[0],Z=function(e){return Math.floor(Math.max.apply(Math,D(Object.values(e))))}(U),Y=function(e,t){var r=ks[e];return Math.floor(t[r])}(T,U),W=F((0,e.useState)(0),2),V=W[0],Q=W[1],H=F((0,e.useState)({}),2),G=H[0],q=H[1],$=F((0,e.useState)(),2),X=$[0],K=$[1],J=(0,e.useRef)(),ee=function(t){var r=(0,e.useContext)(_),n=F((0,e.useState)(!1),2),o=n[0],i=n[1],a=(0,e.useCallback)((function(){return i(!0)}),[]),c=(0,e.useCallback)((function(){return i(!1)}),[]);return(0,e.useEffect)((function(){return t?(r?t.addEventListener(\"pointerdown\",a,{passive:!0}):(t.addEventListener(\"mouseenter\",a,{passive:!0}),t.addEventListener(\"mouseleave\",c,{passive:!0})),function(){r?t.removeEventListener(\"pointerdown\",a):(t.removeEventListener(\"mouseenter\",a),t.removeEventListener(\"mouseleave\",c))}):Se().noop}),[t,r,a,c]),{hasFocus:o,setFocus:a,unsetFocus:c}}(null==X||null===(r=X.innerSlider)||void 0===r?void 0:r.list),te=ee.hasFocus,re=ee.unsetFocus,ne=(0,e.useCallback)(Se().debounce((function(){if(X){var e=Se().get(X,\"state.breakpoint\")||et.xl;e!==T&&(z(e),Q(0),X.slickGoTo(0))}}),100),[X,T]),oe=(0,e.useCallback)((function(e){b&&R-Z===e&&(J.current=setTimeout((function(){X&&(X.slickGoTo(0,!1),X.slickPause()),setTimeout((function(){X&&X.slickPlay()}),500)}),b))}),[b,R,X,Z]);(0,e.useEffect)((function(){te&&J.current?clearTimeout(J.current):oe(V)}),[V,te,oe]),(0,e.useEffect)((function(){return ne(),window.addEventListener(\"resize\",ne,{passive:!0}),function(){return window.removeEventListener(\"resize\",ne)}}),[ne]);var ie,ae,ce=(0,e.useCallback)((function(e){var t;t=\"right\"===e?V===R-Y?0:V+1:0===V?R-Y:V-1,X&&X.slickGoTo(t)}),[R,V,X,Y]),le=(0,e.useCallback)((function(e,t){O&&O(e,t),Q(Math.ceil(t))}),[O]),se=(0,e.useCallback)((function(e){L&&L(e),J.current&&clearTimeout(J.current),te||oe(e)}),[L,te,oe]),ue=(0,e.useCallback)((function(e){var t=e>V?e+1-Y:e;X&&X.slickGoTo(t)}),[X,V,Y]),pe=function(){return R<=Y||!g||1===R?null:e.createElement(\"div\",{className:Is(\"dots\",w),__self:Es,__source:{fileName:Ss,lineNumber:254,columnNumber:13}},e.createElement(\"ul\",{className:Is(\"dots-list\"),__self:Es,__source:{fileName:Ss,lineNumber:255,columnNumber:17}},(t=24*V,r=8+24*(Y-1),Y>1&&e.createElement(\"li\",{className:Is(\"bar\"),style:{left:t,width:r},__self:Es,__source:{fileName:Ss,lineNumber:227,columnNumber:17}})),Array(R).fill(null).map((function(t,r){return function(t){return e.createElement(\"li\",{key:t,className:Is(\"dot\",{active:t===V}),onClick:function(){return ue(t)},__self:Es,__source:{fileName:Ss,lineNumber:240,columnNumber:13}})}(r)}))));var t,r};return e.createElement(ps.Provider,{value:Os(Os({},G),{},{setStyles:q}),__self:Es,__source:{fileName:Ss,lineNumber:309,columnNumber:9}},e.createElement(\"div\",{className:Is({\"align-left\":R<Y,\"one-slide\":1===R,\"only-arrows\":!(null!=s&&s.text)&&!u&&m,mobile:P,type:p},j),__self:Es,__source:{fileName:Ss,lineNumber:310,columnNumber:13}},d&&e.createElement(Kc,{id:d,__self:Es,__source:{fileName:Ss,lineNumber:322,columnNumber:30}}),e.createElement(us,{title:s,subtitle:u,className:Is(\"header\",{\"no-description\":!u}),__self:Es,__source:{fileName:Ss,lineNumber:323,columnNumber:17}}),e.createElement(ye,{className:Is(\"animate-slides\"),animate:l,__self:Es,__source:{fileName:Ss,lineNumber:328,columnNumber:17}},(ie=I&&P,ae={ref:function(e){return K(e)},className:Cs(null,M),arrows:m,variableWidth:ie,infinite:!1,speed:1e3,adaptiveHeight:y,autoplay:Boolean(b),autoplaySpeed:b,slidesToShow:Z,slidesToScroll:1,responsive:Ns(U),beforeChange:le,afterChange:se,initialSlide:0,nextArrow:e.createElement(bs,{type:\"right\",handleClick:ce,size:E,__self:Es,__source:{fileName:Ss,lineNumber:292,columnNumber:24}}),prevArrow:e.createElement(bs,{type:\"left\",handleClick:ce,size:E,__self:Es,__source:{fileName:Ss,lineNumber:293,columnNumber:24}}),lazyLoad:S},e.createElement(cl,{onOutsideClick:P?re:Se().noop,__self:Es,__source:{fileName:Ss,lineNumber:298,columnNumber:13}},e.createElement(Gc.Z,Object.assign({},ae,{__self:Es,__source:{fileName:Ss,lineNumber:299,columnNumber:17}}),B),e.createElement(\"div\",{className:Is(\"footer\"),__self:Es,__source:{fileName:Ss,lineNumber:300,columnNumber:17}},k?e.createElement(\"div\",{className:Is(\"disclaimer\",{size:k.size||\"m\"}),__self:Es,__source:{fileName:Ss,lineNumber:267,columnNumber:13}},k.text):null,pe()))))))};var As=r(4608),Ds={insert:\"head\",singleton:!1};o()(As.Z,Ds);As.Z.locals;var Ts=\"/home/runner/work/page-constructor/page-constructor/src/components/BackgroundImage/BackgroundImage.tsx\",zs=void 0,Bs=z(\"storage-background-image\");const Rs=function(t){var r=t.children,n=t.src,o=t.desktop,i=t.className,a=t.imageClassName,c=t.style,l=t.hide,s=t.qa;return e.createElement(\"div\",{className:Bs(null,i),style:c,\"data-qa\":s,__self:zs,__source:{fileName:Ts,lineNumber:15,columnNumber:9}},(n||o)&&!l&&e.createElement(ht,Object.assign({},t,{className:Bs(\"img\",a),__self:zs,__source:{fileName:Ts,lineNumber:16,columnNumber:43}})),r&&e.createElement(\"div\",{className:Bs(\"container\"),__self:zs,__source:{fileName:Ts,lineNumber:17,columnNumber:26}},r))};const Fs=pt({en:JSON.parse('{\"img-alt\":\"Full screen image\"}'),ru:JSON.parse('{\"img-alt\":\"Полноэкранное изображение\"}')},\"FullscreenImage\");var Us=r(9711),Zs={insert:\"head\",singleton:!1};o()(Us.Z,Zs);Us.Z.locals;var Ys=\"/home/runner/work/page-constructor/page-constructor/src/components/FullscreenImage/FullscreenImage.tsx\",Ws=void 0,Vs=z(\"fullscreen-image\");const Qs=function(t){var r=t.imageClassName,n=t.modalImageClass,o=t.imageStyle,i=t.alt,a=void 0===i?Fs(\"img-alt\"):i,c=F((0,e.useState)(!1),2),l=c[0],s=c[1],u=F((0,e.useState)(!1),2),p=u[0],d=u[1],f=function(){return s(!0)},m=function(){return s(!1)};return e.createElement(\"div\",{className:Vs(),__self:Ws,__source:{fileName:Ys,lineNumber:34,columnNumber:9}},e.createElement(\"div\",{className:Vs(\"image-wrapper\"),onMouseEnter:function(){return d(!0)},onMouseLeave:function(){return d(!1)},__self:Ws,__source:{fileName:Ys,lineNumber:35,columnNumber:13}},e.createElement(ht,Object.assign({},t,{alt:a,className:Vs(\"image\",r),onClick:f,style:o,__self:Ws,__source:{fileName:Ys,lineNumber:40,columnNumber:17}})),e.createElement(\"div\",{className:Vs(\"icon-wrapper\",{visible:p}),onClick:f,__self:Ws,__source:{fileName:Ys,lineNumber:47,columnNumber:17}},e.createElement(Me,{data:Kr,width:18,height:18,className:Vs(\"icon\"),__self:Ws,__source:{fileName:Ys,lineNumber:48,columnNumber:21}}))),l&&e.createElement(qr,{open:l,onClose:m,className:Vs(\"modal\"),__self:Ws,__source:{fileName:Ys,lineNumber:57,columnNumber:17}},e.createElement(\"div\",{className:Vs(\"modal-content\"),__self:Ws,__source:{fileName:Ys,lineNumber:58,columnNumber:21}},e.createElement(\"div\",{className:Vs(\"icon-wrapper\",{visible:!0}),onClick:m,__self:Ws,__source:{fileName:Ys,lineNumber:59,columnNumber:25}},e.createElement(Me,{data:tn,width:30,height:30,className:Vs(\"icon\",{hover:!0}),__self:Ws,__source:{fileName:Ys,lineNumber:60,columnNumber:29}})),e.createElement(ht,Object.assign({},t,{className:Vs(\"modal-image\",n),__self:Ws,__source:{fileName:Ys,lineNumber:67,columnNumber:25}})))))};function Hs(e){return\"string\"==typeof e?{src:e}:e}var Gs=r(330),qs={insert:\"head\",singleton:!1};o()(Gs.Z,qs);Gs.Z.locals;var $s=\"/home/runner/work/page-constructor/page-constructor/src/components/Media/Image/Image.tsx\",Xs=void 0,Ks=z(\"media-component-image\");const Js=function(t){var r=t.parallax,n=t.image,o=t.height,i=t.imageClassName,a=t.isBackground,c=t.hasVideoFallback,l=t.video,s=t.fullscreen,u=F((0,e.useState)(0),2),p=u[0],d=u[1],f=F(Nc((function(){return{springScrollY:0,config:Sa.molasses}})),2),m=f[0].springScrollY,y=f[1],h=\"\";if((0,e.useEffect)((function(){if(r){var e=Se().debounce((function(){return d(window.scrollY)}),5);return window.addEventListener(\"scroll\",e,{passive:!0}),function(){return window.removeEventListener(\"scroll\",e)}}return function(){}})),r){y({springScrollY:o&&p>o?o:p}),h=m.interpolate((function(e){return\"translateY(-\".concat(Number(e)/2,\"px)\")}))}var b,v,g,_=Ks(\"item\",{withVideo:Boolean(l)&&!c},i),w=function(t){var r=Hs(t);return e.createElement(Qs,Object.assign({key:r.alt},r,{imageClassName:_,imageStyle:{height:o},__self:Xs,__source:{fileName:$s,lineNumber:77,columnNumber:13}}))},x=function(t){var r=Hs(t);return e.createElement(ht,Object.assign({},r,{className:_,style:{height:o},__self:Xs,__source:{fileName:$s,lineNumber:97,columnNumber:16}}))};return Array.isArray(n)?(b=n,v=void 0===s||s,e.createElement(Ps,{slidesToShow:1,type:Sl.MediaCard,__self:Xs,__source:{fileName:$s,lineNumber:104,columnNumber:13}},b.map((function(e){return v?w(e):x(e)})))):s?w(n):a?(g=Hs(n),e.createElement(Hc.div,{style:{transform:h||\"none\"},__self:Xs,__source:{fileName:$s,lineNumber:89,columnNumber:13}},e.createElement(Rs,Object.assign({},g,{className:_,style:{height:o},__self:Xs,__source:{fileName:$s,lineNumber:90,columnNumber:17}})))):x(n)};var eu=r(8485),tu={insert:\"head\",singleton:!1};o()(eu.Z,tu);eu.Z.locals;var ru=\"/home/runner/work/page-constructor/page-constructor/src/components/Media/Media.tsx\",nu=void 0,ou=z(\"Media\");const iu=function(t){var r=t.image,n=t.video,o=t.youtube,i=t.dataLens,a=t.color,c=t.height,l=t.previewImg,s=t.parallax,u=void 0!==s&&s,p=t.metrika,d=t.fullscreen,f=t.analyticsEvents,m=t.className,y=t.imageClassName,h=t.videoClassName,b=t.youtubeClassName,v=t.playVideo,g=void 0===v||v,_=t.isBackground,w=t.playButton,x=t.customBarControlsClassName,k=F((0,e.useState)(!1),2),N=k[0],M=k[1],j=(0,e.useMemo)((function(){var t=[];if(r&&t.push(e.createElement(Js,{key:\"image\",parallax:u,image:r,height:c,imageClassName:y,isBackground:_,video:n,hasVideoFallback:N,fullscreen:d,__self:nu,__source:{fileName:ru,lineNumber:53,columnNumber:17}})),n){var a={key:\"video\",video:n,videoClassName:h,height:c,metrika:p,analyticsEvents:f,playVideo:g,previewImg:l,playButton:w,customBarControlsClassName:x,hasVideoFallback:N,setHasVideoFallback:M};d?t.push(e.createElement(Jn,Object.assign({},a,{__self:nu,__source:{fileName:ru,lineNumber:84,columnNumber:29}}))):t.push(e.createElement($n,Object.assign({},a,{__self:nu,__source:{fileName:ru,lineNumber:86,columnNumber:29}})))}return o&&(t=e.createElement(Lt,{className:ou(\"youtube\",b),record:o,attributes:{color:\"white\",rel:\"0\"},previewImg:l,height:c,fullscreen:d,analyticsEvents:f,__self:nu,__source:{fileName:ru,lineNumber:92,columnNumber:17}})),i&&(t=e.createElement(Tt,{dataLens:i,__self:nu,__source:{fileName:ru,lineNumber:105,columnNumber:22}})),t}),[r,n,o,i,u,c,y,_,N,h,p,f,g,l,w,x,b,d]);return e.createElement(\"div\",{className:ou(null,m),style:{backgroundColor:a},__self:nu,__source:{fileName:ru,lineNumber:131,columnNumber:9}},j)};var au=r(5109),cu={insert:\"head\",singleton:!1};o()(au.Z,cu);au.Z.locals;var lu=[\"className\",\"color\",\"animated\",\"parallax\",\"video\",\"mediaClassName\",\"fullWidthMedia\"],su=\"/home/runner/work/page-constructor/page-constructor/src/components/BackgroundMedia/BackgroundMedia.tsx\",uu=void 0;function pu(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}var du=z(\"BackgroundMedia\");const fu=function(t){var r=t.className,n=t.color,o=t.animated,i=t.parallax,a=void 0===i||i,c=t.video,l=t.mediaClassName,s=t.fullWidthMedia,u=L(t,lu),p=(0,e.useContext)(_);return e.createElement(ye,{className:du(null,r),style:{backgroundColor:n},animate:o,__self:uu,__source:{fileName:su,lineNumber:26,columnNumber:9}},e.createElement(iu,Object.assign({className:du(\"media\",{\"full-width-media\":s},l),imageClassName:du(\"image\"),videoClassName:du(\"video\"),isBackground:!0},function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?pu(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):pu(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({height:720,color:n,parallax:a,video:p?void 0:c},u),{__self:uu,__source:{fileName:su,lineNumber:31,columnNumber:13}})))};var mu,yu=(0,e.forwardRef)((function(t,r){var n=t.className,o=t.justifyContent,i=t.alignItems,a=t.noGutter,c=t.style,l=t.children,s=(0,e.useCallback)((function(){return[\"row\",n,o,i,a&&\"no-gutter\"].filter(Boolean).join(\" \")}),[n,o,i,a]);return e.createElement(\"div\",{ref:r,className:s(),style:c,__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/grid/Row/Row.tsx\",lineNumber:25,columnNumber:9}},l)}));yu.displayName=\"Row\",function(e){e.IOS=\"ios\",e.ANDROID=\"android\",e.BROWSER=\"browser\"}(mu||(mu={}));be(\"root\")({mobile:!0}).split(/\\s+/)[1];var hu=r(1556),bu={insert:\"head\",singleton:!1};o()(hu.Z,bu);hu.Z.locals;var vu;!function(e){e.Ru=\"ru\",e.En=\"en\"}(vu||(vu={}));vu.En;const gu=be(\"store-badge\");function _u({platform:t,lang:r=vu.En,className:n,onClick:o,url:i,alt:a}){return i?e.createElement(\"a\",{className:gu(null,n),onClick:o,href:i,target:\"_blank\",rel:\"noopener noreferrer\"},e.createElement(\"img\",{className:gu(\"image\",{platform:t,lang:r}),alt:a})):e.createElement(\"img\",{className:gu({platform:t,lang:r},n),onClick:o,alt:a})}function wu(t){return function(r){if(!(0,e.isValidElement)(r))return!1;const{type:n}=r;return n===t||n.displayName===t.displayName}}Object.create;Object.create;const xu=new class{constructor(e){this.subscriptions=[],this.componentPrefix=e}subscribe(e){this.subscriptions.push(e)}unsubscribe(e){const t=this.subscriptions.indexOf(e);t>-1&&this.subscriptions.splice(t,1)}publish(e){var{componentId:t}=e,r=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&\"function\"==typeof Object.getOwnPropertySymbols){var o=0;for(n=Object.getOwnPropertySymbols(e);o<n.length;o++)t.indexOf(n[o])<0&&Object.prototype.propertyIsEnumerable.call(e,n[o])&&(r[n[o]]=e[n[o]])}return r}(e,[\"componentId\"]);this.subscriptions.forEach((e=>e(Object.assign(Object.assign({},r),{componentId:this.componentPrefix?`${this.componentPrefix}${t}`:t}))))}withEventPublisher(e,t){return r=>{this.publish(Object.assign(Object.assign({},r),{componentId:e,qa:t}))}}}(\"yc-\"),ku=be(\"button\"),Nu=({side:t,className:r,children:n})=>e.createElement(\"span\",{className:ku(\"icon\",{side:t},r)},e.createElement(\"span\",{className:ku(\"icon-inner\")},n));Nu.displayName=\"Button.Icon\";const Mu=wu(Me);var ju=r(7726),Su={insert:\"head\",singleton:!1};o()(ju.Z,Su);ju.Z.locals;const Eu=be(\"button\"),Lu=e.forwardRef((function({view:t=\"normal\",size:r=\"m\",pin:n=\"round-round\",selected:o=!1,disabled:i=!1,loading:a=!1,width:c,title:l,tabIndex:s,type:u=\"button\",component:p,href:d,target:f,rel:m,extraProps:y,onClick:h,onMouseEnter:b,onMouseLeave:v,onFocus:g,onBlur:_,children:w,id:x,style:k,className:N,qa:M},j){const S={title:l,tabIndex:s,onClick:h,onClickCapture:e.useCallback((e=>{xu.publish({componentId:\"Button\",eventId:\"click\",domEvent:e,meta:{content:e.currentTarget.textContent,view:t}})}),[t]),onMouseEnter:b,onMouseLeave:v,onFocus:g,onBlur:_,id:x,style:k,className:Eu({view:t,size:r,pin:n,selected:o,disabled:i||a,loading:a,width:c},N),\"data-qa\":M};if(\"string\"==typeof d||p){const t={href:d,target:f,rel:\"_blank\"!==f||m?m:\"noopener noreferrer\"};return e.createElement(p||\"a\",Object.assign(Object.assign(Object.assign(Object.assign({},y),S),p?{}:t),{ref:j,\"aria-disabled\":i||a}),Cu(w))}return e.createElement(\"button\",Object.assign({},y,S,{ref:j,type:u,disabled:i||a}),Cu(w))}));Lu.displayName=\"Button\";const Ou=Object.assign(Lu,{Icon:Nu}),Iu=wu(Nu);function Cu(t){const r=e.Children.toArray(t);if(1===r.length){const t=r[0];return Iu(t)?t:Mu(t)?e.createElement(Ou.Icon,{key:\"icon\"},t):e.createElement(\"span\",{key:\"text\",className:Eu(\"text\")},t)}{let t,n,o;const i=[];for(const o of r){const r=Mu(o),a=Iu(o);if(r||a)if(t||0!==i.length){if(!n&&0!==i.length){const t=\"icon-right\",i=\"right\";n=r?e.createElement(Ou.Icon,{key:t,side:i},o):(0,e.cloneElement)(o,{side:i})}}else{const n=\"icon-left\",i=\"left\";t=r?e.createElement(Ou.Icon,{key:n,side:i},o):(0,e.cloneElement)(o,{side:i})}else i.push(o)}return i.length>0&&(o=e.createElement(\"span\",{key:\"text\",className:Eu(\"text\")},i)),[t,n,o]}}var Pu=function(){var t=(0,e.useContext)(g),r=t.metrika,n=t.pixel;return function(e){var t=e.metrikaGoals,o=e.pixelEvents;r&&t&&(!function(e){return Boolean(Array.isArray(e)&&e.length&&\"object\"===O(e[0]))}(t)?r.reachGoals(t):t.forEach((function(e){var t=e.name,n=e.isCrossSite;return r.reachGoal(n?\"cross-site\":\"main\",t)}))),n&&o&&(!function(e){return!!(Array.isArray(e)&&e.length&&\"name\"in e)}(o)?n.track(o):o.forEach((function(e){var t=e.name,r=e.data;return n.trackStandard(t,r)})))}},Au=\"/home/runner/work/page-constructor/page-constructor/src/icons/Github.tsx\",Du=void 0,Tu=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 32 32\",width:\"32\",height:\"32\",fill:\"currentColor\"},Ue,t,{__self:Du,__source:{fileName:Au,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M25.524 10.479a10.952 10.952 0 0 0-4.003-4.004C19.836 5.492 17.996 5 16 5s-3.836.492-5.521 1.475a10.95 10.95 0 0 0-4.004 4.004C5.492 12.164 5 14.004 5 15.998c0 2.397.7 4.553 2.098 6.467 1.4 1.915 3.206 3.24 5.421 3.975.258.048.45.014.573-.1a.56.56 0 0 0 .186-.43l-.007-.773a128.35 128.35 0 0 1-.007-1.275l-.33.057c-.21.039-.474.055-.794.05a6.048 6.048 0 0 1-.996-.1 2.224 2.224 0 0 1-.96-.43 1.817 1.817 0 0 1-.63-.88l-.143-.33a3.58 3.58 0 0 0-.45-.73c-.206-.267-.414-.449-.624-.544l-.1-.072a1.05 1.05 0 0 1-.186-.172.785.785 0 0 1-.13-.2c-.028-.067-.004-.122.072-.166.077-.043.215-.064.416-.064l.286.043c.191.039.427.153.71.344.28.19.512.44.694.744.22.392.484.69.795.896.31.205.623.308.938.308.315 0 .587-.024.816-.072.23-.048.444-.12.645-.215.086-.64.32-1.131.701-1.475a9.8 9.8 0 0 1-1.468-.258 5.846 5.846 0 0 1-1.346-.559 3.855 3.855 0 0 1-1.153-.96c-.306-.381-.556-.883-.752-1.503-.196-.62-.293-1.337-.293-2.148 0-1.156.377-2.14 1.131-2.951-.353-.869-.32-1.843.1-2.922.277-.086.688-.021 1.232.193.544.215.943.4 1.196.552.253.153.456.282.609.387a10.17 10.17 0 0 1 2.75-.373c.945 0 1.862.124 2.75.373l.544-.344c.372-.23.812-.44 1.318-.63.506-.191.893-.244 1.16-.158.43 1.08.468 2.053.115 2.922.754.812 1.131 1.795 1.131 2.95 0 .812-.098 1.53-.293 2.156-.196.626-.449 1.127-.76 1.504-.31.377-.696.695-1.16.952a5.855 5.855 0 0 1-1.346.559 9.84 9.84 0 0 1-1.468.258c.496.43.745 1.108.745 2.034v3.022c0 .171.06.315.179.43.12.114.308.147.566.1 2.215-.736 4.022-2.06 5.42-3.975 1.4-1.915 2.099-4.07 2.099-6.467 0-1.995-.492-3.835-1.476-5.52z\",__self:Du,__source:{fileName:Au,lineNumber:15,columnNumber:9}}))};const zu=pt({en:JSON.parse('{\"image-alt\":\"Button image\"}'),ru:JSON.parse('{\"image-alt\":\"Иконка кнопки\"}')},\"Button\");var Bu={normal:\"normal\",action:\"action\",flat:\"flat\",light:\"flat-secondary\",clear:\"flat-secondary\",raised:\"raised\",pseudo:\"outlined\",link:\"outlined-info\",accent:\"action\",websearch:\"action\",\"flat-special\":\"flat-contrast\",\"normal-special\":\"normal-contrast\",\"normal-dark\":\"outlined-contrast\",\"pseudo-special\":\"outlined-contrast\"},Ru={xs:\"s\",ns:\"s\",s:\"m\",m:\"l\",l:\"l\",n:\"l\",head:\"l\",promo:\"xl\"},Fu=function(e){var t;return null!==(t=Bu[e])&&void 0!==t?t:e},Uu=function(e){var t;return null!==(t=Ru[e])&&void 0!==t?t:e},Zu=r(5185),Yu={insert:\"head\",singleton:!1};o()(Zu.Z,Yu);Zu.Z.locals;var Wu=[\"className\",\"metrikaGoals\",\"pixelEvents\",\"analyticsEvents\",\"size\",\"theme\",\"url\",\"img\",\"onClick\",\"text\",\"width\"],Vu=\"/home/runner/work/page-constructor/page-constructor/src/components/Button/Button.tsx\",Qu=void 0;function Hu(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function Gu(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Hu(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Hu(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var qu=z(\"button-block\");const $u=function(t){var r,n=Pu(),o=(0,e.useContext)(f),i=o.lang,a=o.tld,c=t.className,l=t.metrikaGoals,s=t.pixelEvents,u=t.analyticsEvents,p=t.size,d=void 0===p?\"l\":p,m=t.theme,y=void 0===m?\"normal\":m,h=t.url,b=t.img,v=t.onClick,g=t.text,_=t.width,w=L(t,Wu),x=\"left\",k=Fe(ze.Button,h),N=(0,e.useCallback)((function(e){n({metrikaGoals:l,pixelEvents:s}),k(u),v&&v(e)}),[n,l,s,k,u,v]),M={size:d,theme:y,width:_},j=b instanceof Object?{url:b.url,position:b.position||x,alt:b.alt}:{url:b,position:x},S=qu(Gu(b?{position:j.position}:{},M),c),E=Gu(Gu({},w),{},{onClick:N});if(\"app-store\"===y||\"google-play\"===y){var O=\"app-store\"===y?mu.IOS:mu.ANDROID;return e.createElement(_u,{className:S,platform:O,lang:i,url:h,__self:Qu,__source:{fileName:Vu,lineNumber:76,columnNumber:16}})}var I=b&&e.createElement(\"img\",{className:qu(\"image\"),src:j.url,alt:j.alt||zu(\"image-alt\"),__self:Qu,__source:{fileName:Vu,lineNumber:81,columnNumber:9}});\"github\"===y&&(r=e.createElement(Me,{className:qu(\"icon\"),data:Tu,size:24,qa:\"button-icon\",__self:Qu,__source:{fileName:Vu,lineNumber:85,columnNumber:16}}),I=void 0);var C=\"scale\"===y?\"accent\":y;return e.createElement(Ou,Object.assign({className:S,view:Fu(C),size:Uu(d),href:h?Ke(h,a):void 0,width:_},E,{__self:Qu,__source:{fileName:Vu,lineNumber:92,columnNumber:9}}),r&&\"left\"===j.position?r:null,e.createElement(\"span\",{className:qu(\"content\"),__self:Qu,__source:{fileName:Vu,lineNumber:101,columnNumber:13}},I&&\"left\"===j.position?I:null,e.createElement(\"span\",{className:qu(\"text\"),__self:Qu,__source:{fileName:Vu,lineNumber:103,columnNumber:17}},g),I&&\"right\"===j.position?I:null),r&&\"right\"===j.position?r:null)};var Xu=\"/home/runner/work/page-constructor/page-constructor/src/icons/ArrowSidebar.tsx\",Ku=void 0,Ju=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"24\",height:\"24\",fill:\"currentColor\"},Ue,t,{__self:Ku,__source:{fileName:Xu,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M19.5 11H7.4l3.8-3.8c.4-.4.4-1 0-1.4s-1-.4-1.4 0L3.6 12l6.2 6.2c.2.2.5.3.7.3s.5-.1.7-.3c.4-.4.4-1 0-1.4L7.4 13h12.1c.6 0 1-.4 1-1s-.4-1-1-1z\",fill:\"currentColor\",__self:Ku,__source:{fileName:Xu,lineNumber:15,columnNumber:9}}))},ep=\"/home/runner/work/page-constructor/page-constructor/src/components/BackLink/BackLink.tsx\";function tp(t){var r=(0,e.useContext)(m).history,n=t.url,o=t.title,i=t.theme,a=void 0===i?\"default\":i,c=t.size,l=void 0===c?\"l\":c,s=t.className,u=t.shouldHandleBackAction,p=void 0!==u&&u,d=t.onClick,f=Fe(ze.ShareButton,n),y=(0,e.useCallback)(R(Z().mark((function e(){return Z().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(f(),r){e.next=3;break}return e.abrupt(\"return\");case 3:d&&d(),r.length>1?r.goBack():r.push({pathname:n});case 5:case\"end\":return e.stop()}}),e)}))),[f,r,d,n]);return e.createElement(Ou,{className:s,view:\"special\"===a?\"flat-contrast\":\"flat-secondary\",size:l,href:p?void 0:n,onClick:p?y:void 0,__self:this,__source:{fileName:ep,lineNumber:54,columnNumber:9}},e.createElement(Me,{data:Ju,size:24,__self:this,__source:{fileName:ep,lineNumber:61,columnNumber:13}}),e.createElement(\"span\",{__self:this,__source:{fileName:ep,lineNumber:62,columnNumber:13}},o))}var rp=r(9469),np={insert:\"head\",singleton:!1};o()(rp.Z,np);rp.Z.locals;var op=\"/home/runner/work/page-constructor/page-constructor/src/components/FileLink/FileLink.tsx\",ip=void 0,ap=z(\"file-link\"),cp=function(e){return e.PDF=\"pdf\",e.DOC=\"doc\",e.XLS=\"xls\",e.PPT=\"ppt\",e.FIG=\"fig\",e.ZIP=\"zip\",e}({});const lp=function(t){var r,n=(0,e.useContext)(m).hostname,o=t.href,i=t.text,a=t.type,c=void 0===a?\"vertical\":a,l=t.textSize,s=void 0===l?\"m\":l,u=t.className,p=t.theme,d=void 0===p?\"default\":p,f=t.onClick,y=(r=o).includes(\"https://www.figma.com\")?cp.FIG:r&&r.split(\".\").pop().toLowerCase();return e.createElement(\"div\",{className:ap({ext:y,type:c,size:s,theme:d},u),__self:ip,__source:{fileName:op,lineNumber:44,columnNumber:9}},Object.values(cp).includes(y)&&e.createElement(\"div\",{className:ap(\"file-label\"),__self:ip,__source:{fileName:op,lineNumber:46,columnNumber:17}},y),e.createElement(\"div\",{className:ap(\"link\"),__self:ip,__source:{fileName:op,lineNumber:48,columnNumber:13}},e.createElement(\"a\",Object.assign({href:o},$e(o,n),{onClick:f,__self:ip,__source:{fileName:op,lineNumber:49,columnNumber:17}}),i)))};var sp=r(2995),up={insert:\"head\",singleton:!1};o()(sp.Z,up);sp.Z.locals;var pp=\"/home/runner/work/page-constructor/page-constructor/src/components/Link/Link.tsx\",dp=void 0,fp=z(\"link-block\");function mp(e){switch(e){case\"l\":return 20;case\"m\":return 18;default:return 14}}const yp=function(t){var r=t.text,n=t.url,o=t.arrow,i=t.metrikaGoals,a=t.pixelEvents,c=t.analyticsEvents,l=t.theme,s=void 0===l?\"file-link\":l,u=t.colorTheme,p=void 0===u?\"light\":u,d=t.textSize,y=void 0===d?\"m\":d,h=t.className,b=t.target,v=t.children,g=Pu(),_=Fe(ze.Link,n),w=(0,e.useContext)(m).hostname,x=(0,e.useContext)(f).tld,k=Ke(t.url,x),N=\"back\"===s?\"l\":\"m\",M=function(){g({metrikaGoals:i,pixelEvents:a}),_(c)};return e.createElement(\"div\",{className:fp({size:y||N},h),__self:dp,__source:{fileName:pp,lineNumber:111,columnNumber:9}},function(){switch(s){case\"back\":return e.createElement(tp,{title:v||r,url:k,onClick:M,__self:dp,__source:{fileName:pp,lineNumber:66,columnNumber:24}});case\"file-link\":case\"underline\":return e.createElement(lp,{text:v||r,href:k,type:\"horizontal\",textSize:y,onClick:M,__self:dp,__source:{fileName:pp,lineNumber:70,columnNumber:21}});case\"normal\":var t=$e(n,w,b),i=v||r;return e.createElement(\"a\",Object.assign({className:fp(\"link\",{theme:p,\"has-arrow\":o}),href:k,onClick:M},t,{__self:dp,__source:{fileName:pp,lineNumber:83,columnNumber:21}}),o?e.createElement(e.Fragment,{__self:dp,__source:{fileName:pp,lineNumber:90,columnNumber:29}},e.createElement(\"span\",{className:fp(\"content\"),__self:dp,__source:{fileName:pp,lineNumber:91,columnNumber:33}},i),\"\",e.createElement(Me,{className:fp(\"arrow\"),data:Ql,size:mp(y),__self:dp,__source:{fileName:pp,lineNumber:93,columnNumber:33}})):i);default:return null}}())};var hp=r(7505),bp={insert:\"head\",singleton:!1};o()(hp.Z,bp);hp.Z.locals;var vp=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/Content/Content.tsx\",gp=void 0,_p=z(\"content\");function wp(e){return\"s\"===e?\"s\":\"m\"}function xp(e){return\"s\"===e?\"m\":\"l\"}function kp(e){return\"s\"===e?\"m\":\"xl\"}const Np=function(t){var r=t.title,n=t.text,o=t.additionalInfo,i=t.size,a=void 0===i?\"l\":i,c=t.links,l=t.buttons,s=t.colSizes,u=void 0===s?{all:12,sm:8}:s,p=t.centered,d=t.theme,f=t.className,m=r&&\"string\"!=typeof r?r:{text:r,textSize:wp(a)},y=Boolean(r);return e.createElement(wl,{className:_p({size:a,centered:p,theme:d},f),reset:!0,sizes:u,__self:gp,__source:{fileName:vp,lineNumber:65,columnNumber:9}},r&&e.createElement(us,{className:_p(\"title\"),title:m,colSizes:{all:12},__self:gp,__source:{fileName:vp,lineNumber:66,columnNumber:23}}),n&&e.createElement(\"div\",{className:_p(\"text\",C({},\"without-title\",!y)),__self:gp,__source:{fileName:vp,lineNumber:68,columnNumber:17}},e.createElement(Fl,{content:n,modifiers:C({constructor:!0},\"constructor-size-\".concat(a),!0),__self:gp,__source:{fileName:vp,lineNumber:69,columnNumber:21}})),o&&e.createElement(\"div\",{className:_p(\"notice\"),__self:gp,__source:{fileName:vp,lineNumber:76,columnNumber:17}},e.createElement(Fl,{content:o,modifiers:C({constructor:!0,\"constructor-notice\":!0},\"constructor-size-\".concat(a),!0),__self:gp,__source:{fileName:vp,lineNumber:77,columnNumber:21}})),c&&e.createElement(\"div\",{className:_p(\"links\"),__self:gp,__source:{fileName:vp,lineNumber:88,columnNumber:17}},c.map((function(t){return e.createElement(yp,Object.assign({className:_p(\"link\")},t,{textSize:xp(a),key:t.url,__self:gp,__source:{fileName:vp,lineNumber:90,columnNumber:25}}))}))),l&&e.createElement(\"div\",{className:_p(\"buttons\"),__self:gp,__source:{fileName:vp,lineNumber:100,columnNumber:17}},l.map((function(t){return e.createElement($u,Object.assign({className:_p(\"button\")},t,{key:t.url,size:kp(a),__self:gp,__source:{fileName:vp,lineNumber:102,columnNumber:25}}))}))))};function Mp(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:c;return function(e){return\"object\"===O(e)&&null!==e&&c in e}(e)?e[t]||e[c]:e}var jp=r(279),Sp={insert:\"head\",singleton:!1};o()(jp.Z,Sp);jp.Z.locals;var Ep=\"/home/runner/work/page-constructor/page-constructor/src/blocks/ExtendedFeatures/ExtendedFeatures.tsx\",Lp=void 0,Op=z(\"ExtendedFeaturesBlock\"),Ip={all:12,sm:6,md:4};const Cp=function(t){var r=t.title,n=t.description,o=t.items,i=t.colSizes,a=void 0===i?Ip:i,c=t.animated,l=(0,e.useContext)(N).themeValue;return e.createElement(ye,{className:Op(),animate:c,__self:Lp,__source:{fileName:Ep,lineNumber:32,columnNumber:9}},e.createElement(us,{title:r,subtitle:n,className:Op(\"header\"),__self:Lp,__source:{fileName:Ep,lineNumber:33,columnNumber:13}}),e.createElement(\"div\",{className:Op(\"items\"),__self:Lp,__source:{fileName:Ep,lineNumber:34,columnNumber:13}},e.createElement(yu,{__self:Lp,__source:{fileName:Ep,lineNumber:35,columnNumber:17}},o.map((function(t){var r=t.title,n=t.text,o=t.link,i=t.links,c=t.label,s=t.icon,u=t.buttons,p=t.additionalInfo,d=i||[],f=s&&Mp(s,l),m=f&&Hs(f);return o&&d.push(o),e.createElement(wl,{className:Op(\"item\"),key:n||r,sizes:a,__self:Lp,__source:{fileName:Ep,lineNumber:57,columnNumber:33}},m&&e.createElement(ht,Object.assign({},m,{className:Op(\"icon\"),__self:Lp,__source:{fileName:Ep,lineNumber:58,columnNumber:50}})),e.createElement(\"div\",{className:Op(\"container\"),__self:Lp,__source:{fileName:Ep,lineNumber:59,columnNumber:37}},r&&e.createElement(\"h5\",{className:Op(\"item-title\"),__self:Lp,__source:{fileName:Ep,lineNumber:61,columnNumber:45}},e.createElement(Bl,{__self:Lp,__source:{fileName:Ep,lineNumber:62,columnNumber:49}},r),c&&e.createElement(\"span\",{className:Op(\"item-label\"),__self:Lp,__source:{fileName:Ep,lineNumber:64,columnNumber:53}},c)),e.createElement(Np,{text:n,links:d,size:\"s\",colSizes:{all:12,md:12},buttons:u,additionalInfo:p,__self:Lp,__source:{fileName:Ep,lineNumber:68,columnNumber:41}})))})))))};var Pp=r(9401),Ap={insert:\"head\",singleton:!1};o()(Pp.Z,Ap);Pp.Z.locals;var Dp=\"/home/runner/work/page-constructor/page-constructor/src/components/BalancedMasonry/BalancedMasonry.tsx\",Tp=void 0;function zp(e,t){var r=\"undefined\"!=typeof Symbol&&e[Symbol.iterator]||e[\"@@iterator\"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if(\"string\"==typeof e)return Bp(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===r&&e.constructor&&(r=e.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(e);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return Bp(e,t)}(e))||t&&e&&\"number\"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var i,a=!0,c=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return a=e.done,e},e:function(e){c=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(c)throw i}}}}function Bp(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var Rp=z(\"BalancedMasonry\");const Fp=function(t){var r=t.className,n=t.columnClassName,o=t.children,i=void 0===o?[]:o,a=t.breakpointCols,c=(0,e.useContext)(x).isServer,l=(0,e.useCallback)((function(){var e=Object.entries(a).sort((function(e,t){var r=F(e,1)[0],n=F(t,1)[0];return Number(n)-Number(r)})),t=F(Se().first(e),2)[1];if(c)return t;var r,n=zp(e);try{for(n.s();!(r=n.n()).done;){var o=F(r.value,2),i=o[0],l=o[1],s=Number(i);document.body.clientWidth<=s&&(t=l)}}catch(e){n.e(e)}finally{n.f()}return t}),[a,c]),s=F((0,e.useState)(l()),2),u=s[0],p=s[1],d=F((0,e.useState)([]),2),f=d[0],m=d[1],y=(0,e.useRef)(null),h=(0,e.useCallback)(Se().debounce((function(){if(y.current){for(var e=[],t=[],r=0;r<u;r++)t.push({id:r,height:0}),e.push([]);for(var n=0;n<y.current.children.length;n++){var o=y.current.children.item(n);if(o){var a=Se().minBy(t,\"height\")||{id:0,height:0};e[a.id].push(i[n]),a.height+=o.offsetHeight}}m(e)}}),300),[i,u]);return(0,e.useEffect)((function(){h()}),[h,i,u]),(0,e.useEffect)((function(){var e=function(){return p(l())};return window.addEventListener(\"resize\",e,{passive:!0}),function(){return window.removeEventListener(\"resize\",e)}}),[p,f,l]),(0,e.useEffect)((function(){var e=y.current,t=\"ResizeObserver\"in window;if(!e||!t)return function(){};for(var r=new ResizeObserver(h),n=0;n<e.children.length;n++){var o=e.children.item(n);o&&r.observe(o)}return function(){return r.disconnect()}}),[h,i]),e.createElement(\"div\",{className:Rp(null,r),__self:Tp,__source:{fileName:Dp,lineNumber:124,columnNumber:9}},e.createElement(\"div\",{className:Rp(\"hidden-container\"),style:{width:\"\".concat(100/u,\"%\")},__self:Tp,__source:{fileName:Dp,lineNumber:125,columnNumber:13}},e.createElement(\"div\",{ref:y,className:Rp(\"hidden-list\"),__self:Tp,__source:{fileName:Dp,lineNumber:126,columnNumber:17}},i)),f.map((function(t,r){return e.createElement(\"div\",{key:r,className:n,style:{width:\"\".concat(100/u,\"%\")},__self:Tp,__source:{fileName:Dp,lineNumber:132,columnNumber:17}},t)})))};var Up=r(8844),Zp={insert:\"head\",singleton:!1};o()(Up.Z,Zp);Up.Z.locals;function Yp(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=il(e);if(t){var o=il(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return ol(this,r)}}var Wp=z(\"FullWidthBackground\");var Vp=function(t){nl(n,t);var r=Yp(n);function n(){var t;Jc(this,n);for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];return C(rl(t=r.call.apply(r,[this].concat(i))),\"ref\",(0,e.createRef)()),C(rl(t),\"setBg\",Se().debounce((function(){if(t.ref&&t.ref.current){var e,r,n=t.ref.current,o=document.documentElement.clientWidth||document.body.clientWidth,i=\"rounded\"===t.props.theme?function(e){return e>et.sm?16:8}(o):0,a=(null!==(e=null===(r=n.parentElement)||void 0===r?void 0:r.getBoundingClientRect())&&void 0!==e?e:{left:0}).left;n.style.width=\"\".concat(o-2*i,\"px\"),n.style.left=\"-\".concat(a-i,\"px\")}}),100)),t}return tl(n,[{key:\"componentDidMount\",value:function(){var e;null!=this&&null!==(e=this.ref)&&void 0!==e&&null!==(e=e.current)&&void 0!==e&&e.parentElement&&(this.ref.current.parentElement.style.position=\"relative\",this.setBg(),window.addEventListener(\"resize\",this.setBg,{passive:!0}))}},{key:\"componentWillUnmount\",value:function(){window.removeEventListener(\"resize\",this.setBg)}},{key:\"render\",value:function(){var t=this.props,r=t.children,n=t.className,o=t.style,i=t.theme,a=void 0===i?\"default\":i;return e.createElement(\"div\",{className:Wp(C({},a,!0),n),ref:this.ref,style:o,__self:this,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/components/FullWidthBackground/FullWidthBackground.tsx\",lineNumber:54,columnNumber:13}},r)}}]),n}(e.Component),Qp=r(4367),Hp={insert:\"head\",singleton:!1};o()(Qp.Z,Hp);Qp.Z.locals;var Gp,qp=\"/home/runner/work/page-constructor/page-constructor/src/blocks/PromoFeaturesBlock/PromoFeaturesBlock.tsx\",$p=void 0,Xp=z(\"PromoFeaturesBlock\"),Kp=(C(Gp={},et.lg,3),C(Gp,et.md,2),C(Gp,et.sm,1),Gp);const Jp=function(t){var r=t.items,n=t.title,o=t.description,i=t.theme,a=t.animated,c=void 0===a||a,l=i||\"default\";return e.createElement(ye,{className:Xp(C({},l,!0)),animate:c,__self:$p,__source:{fileName:qp,lineNumber:28,columnNumber:9}},e.createElement(Vp,{className:Xp(\"background\",C({},l,!0)),__self:$p,__source:{fileName:qp,lineNumber:29,columnNumber:13}}),e.createElement(us,{title:n,subtitle:o,className:Xp(\"header\"),__self:$p,__source:{fileName:qp,lineNumber:30,columnNumber:13}}),e.createElement(Fp,{breakpointCols:Kp,className:Xp(\"card-container\"),columnClassName:Xp(\"card-container-column\"),__self:$p,__source:{fileName:qp,lineNumber:31,columnNumber:13}},r.map((function(t,r){var n=t.title,o=t.text,i=t.media,a=t.theme||(\"default\"===l?\"default\":\"light\")||\"\";return e.createElement(\"div\",{key:r,className:Xp(\"card\",C({\"no-media\":!i},a,Boolean(a))),__self:$p,__source:{fileName:qp,lineNumber:41,columnNumber:25}},e.createElement(\"div\",{className:Xp(\"card-info\"),__self:$p,__source:{fileName:qp,lineNumber:48,columnNumber:29}},e.createElement(\"h4\",{className:Xp(\"card-title\"),__self:$p,__source:{fileName:qp,lineNumber:49,columnNumber:33}},n),e.createElement(\"div\",{className:Xp(\"card-text\"),__self:$p,__source:{fileName:qp,lineNumber:50,columnNumber:33}},e.createElement(Fl,{content:o,modifiers:{constructor:!0},__self:$p,__source:{fileName:qp,lineNumber:51,columnNumber:37}}))),i&&e.createElement(iu,Object.assign({className:Xp(\"card-media\")},i,{__self:$p,__source:{fileName:qp,lineNumber:54,columnNumber:39}})))}))))};var ed={recalculateOnResizeDelay:1e3};const td=function(t){var r=(arguments.length>1&&void 0!==arguments[1]?arguments[1]:ed).recalculateOnResizeDelay,n=F((0,e.useState)(void 0),2),o=n[0],i=n[1],a=(0,e.useCallback)((function(){t.current&&t.current.offsetHeight!==o&&i(t.current.offsetHeight)}),[t,o,i]);return(0,e.useEffect)((function(){var e=Se().debounce(a,r);return e(),window.addEventListener(\"resize\",e,{passive:!0}),function(){window.removeEventListener(\"resize\",e)}}),[a,r]),o};var rd=r(9601),nd={insert:\"head\",singleton:!1};o()(rd.Z,nd);rd.Z.locals;var od=\"/home/runner/work/page-constructor/page-constructor/src/components/Foldable/Foldable.tsx\",id=void 0,ad=z(\"foldable-block\");const cd=function(t){var r=t.isOpened,n=t.children,o=t.className,i=(0,e.useRef)(null),a=(0,e.useRef)(null),c=td(a);return(0,e.useEffect)((function(){i&&i.current&&(i.current.style.height=r&&c?\"\".concat(c,\"px\"):\"0\")}),[r,c]),e.createElement(\"div\",{ref:i,className:ad({open:r},o),__self:id,__source:{fileName:od,lineNumber:28,columnNumber:9}},e.createElement(\"div\",{ref:a,className:ad(\"content-container\"),__self:id,__source:{fileName:od,lineNumber:29,columnNumber:13}},n))};var ld=r(1086),sd={insert:\"head\",singleton:!1};o()(ld.Z,sd);ld.Z.locals;var ud=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Questions/Questions.tsx\",pd=void 0,dd=z(\"QuestionsBlock\"),fd=\"https://schema.org/FAQPage\",md=\"https://schema.org/Question\",yd=\"mainEntity\",hd=\"name\",bd=\"text\",vd=\"https://schema.org/Answer\",gd=\"acceptedAnswer\";const _d=function(t){var r=t.title,n=t.text,o=t.additionalInfo,i=t.links,a=t.buttons,c=t.items,l=F((0,e.useState)([0]),2),s=l[0],u=l[1];return e.createElement(\"div\",{className:dd(),itemScope:!0,itemType:fd,__self:pd,__source:{fileName:ud,lineNumber:42,columnNumber:9}},e.createElement(yu,{__self:pd,__source:{fileName:ud,lineNumber:43,columnNumber:13}},e.createElement(wl,{sizes:{all:12,md:4},__self:pd,__source:{fileName:ud,lineNumber:44,columnNumber:17}},e.createElement(\"div\",{className:dd(\"title\"),__self:pd,__source:{fileName:ud,lineNumber:45,columnNumber:21}},e.createElement(Np,{title:r,text:n,additionalInfo:o,links:i,buttons:a,colSizes:{all:12,md:12},__self:pd,__source:{fileName:ud,lineNumber:46,columnNumber:25}}))),e.createElement(wl,{sizes:{all:12,md:8},__self:pd,__source:{fileName:ud,lineNumber:56,columnNumber:17}},c.map((function(t,r){var n=t.title,o=t.text,i=t.link,a=t.listStyle,c=void 0===a?\"dash\":a,l=s.includes(r);return e.createElement(\"div\",{key:n,className:dd(\"item\"),itemScope:!0,itemProp:yd,itemType:md,__self:pd,__source:{fileName:ud,lineNumber:62,columnNumber:33}},e.createElement(\"h4\",{className:dd(\"item-title\"),onClick:function(){return function(e){var t;t=s.includes(e)?s.filter((function(t){return t!==e})):[].concat(D(s),[e]),u(t)}(r)},__self:pd,__source:{fileName:ud,lineNumber:69,columnNumber:37}},e.createElement(Bl,{itemProp:hd,__self:pd,__source:{fileName:ud,lineNumber:73,columnNumber:41}},n),e.createElement($l,{open:l,size:16,type:\"vertical\",iconType:\"navigation\",className:dd(\"arrow\"),__self:pd,__source:{fileName:ud,lineNumber:76,columnNumber:41}})),e.createElement(cd,{isOpened:l,__self:pd,__source:{fileName:ud,lineNumber:84,columnNumber:37}},e.createElement(\"div\",{className:dd(\"text\"),itemScope:!0,itemProp:gd,itemType:vd,__self:pd,__source:{fileName:ud,lineNumber:85,columnNumber:41}},e.createElement(Fl,{content:o,modifiers:{constructor:!0,constructorListStyle:!0,constructorListStyleDash:\"dash\"===c},itemProp:bd,__self:pd,__source:{fileName:ud,lineNumber:91,columnNumber:45}}),i&&e.createElement(yp,Object.assign({},i,{className:dd(\"link\"),__self:pd,__source:{fileName:ud,lineNumber:100,columnNumber:54}})))))})))))};var wd=\"/home/runner/work/page-constructor/page-constructor/src/components/RouterLink/RouterLink.tsx\",xd=void 0;const kd=function(t){var r=t.href,n=t.children,o=(0,e.useContext)(m).Link;return o?e.createElement(o,{href:r,__self:xd,__source:{fileName:wd,lineNumber:14,columnNumber:19}},n):e.createElement(e.Fragment,{__self:xd,__source:{fileName:wd,lineNumber:14,columnNumber:57}},n)};var Nd=r(9741),Md={insert:\"head\",singleton:!1};o()(Nd.Z,Md);Nd.Z.locals;var jd=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/BannerCard/BannerCard.tsx\",Sd=void 0,Ed=z(\"banner-card\");const Ld=function(t){var r=t.title,n=t.subtitle,o=t.button,i=o.url,a=o.text,c=o.target,l=t.color,s=t.theme,u=void 0===s?\"light\":s,p=t.image,d=t.disableCompress,f=(0,e.useContext)(N).themeValue,m={};return l&&(m.backgroundColor=Mp(l,f)),e.createElement(\"div\",{className:Ed({theme:u}),__self:Sd,__source:{fileName:jd,lineNumber:30,columnNumber:9}},e.createElement(\"div\",{className:Ed(\"content\"),style:m,__self:Sd,__source:{fileName:jd,lineNumber:31,columnNumber:13}},e.createElement(\"div\",{className:Ed(\"info\"),__self:Sd,__source:{fileName:jd,lineNumber:32,columnNumber:17}},e.createElement(\"div\",{className:Ed(\"text\"),__self:Sd,__source:{fileName:jd,lineNumber:33,columnNumber:21}},e.createElement(\"h2\",{className:Ed(\"title\"),__self:Sd,__source:{fileName:jd,lineNumber:34,columnNumber:25}},e.createElement(Bl,{__self:Sd,__source:{fileName:jd,lineNumber:35,columnNumber:29}},r)),n&&e.createElement(Fl,{className:Ed(\"subtitle\"),content:n,modifiers:{constructor:!0},__self:Sd,__source:{fileName:jd,lineNumber:38,columnNumber:29}})),e.createElement(kd,{href:i,__self:Sd,__source:{fileName:jd,lineNumber:45,columnNumber:21}},e.createElement($u,{className:Ed(\"button\"),theme:\"raised\",size:\"xl\",text:a,url:i,target:c,__self:Sd,__source:{fileName:jd,lineNumber:46,columnNumber:25}}))),e.createElement(Rs,{className:Ed(\"image\"),src:Mp(p,f),disableCompress:d,__self:Sd,__source:{fileName:jd,lineNumber:56,columnNumber:17}})))};var Od=r(4683),Id={insert:\"head\",singleton:!1};o()(Od.Z,Id);Od.Z.locals;var Cd=[\"animated\"],Pd=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Banner/Banner.tsx\",Ad=void 0,Dd=z(\"banner-block\");const Td=function(t){var r=t.animated,n=L(t,Cd);return e.createElement(ye,{className:Dd(),animate:r,__self:Ad,__source:{fileName:Pd,lineNumber:16,columnNumber:9}},e.createElement(Ld,Object.assign({},n,{__self:Ad,__source:{fileName:Pd,lineNumber:17,columnNumber:13}})))};var zd=r(4879),Bd={insert:\"head\",singleton:!1};o()(zd.Z,Bd);zd.Z.locals;var Rd=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Companies/Companies.tsx\",Fd=void 0,Ud=z(\"companies-block\");const Zd=function(t){var r=t.title,n=t.images,o=t.animated,i=Mp(n,(0,e.useContext)(N).themeValue)||{};return e.createElement(ye,{className:Ud(),offset:150,animate:o,__self:Fd,__source:{fileName:Rd,lineNumber:18,columnNumber:9}},e.createElement(\"div\",{className:Ud(\"content\"),__self:Fd,__source:{fileName:Rd,lineNumber:19,columnNumber:13}},e.createElement(\"h2\",{className:Ud(\"title\"),__self:Fd,__source:{fileName:Rd,lineNumber:20,columnNumber:17}},r),e.createElement(\"div\",{className:Ud(\"images\"),__self:Fd,__source:{fileName:Rd,lineNumber:21,columnNumber:17}},e.createElement(ht,Object.assign({},i,{className:Ud(\"image\"),__self:Fd,__source:{fileName:Rd,lineNumber:22,columnNumber:21}})))))};var Yd=r(1523),Wd={insert:\"head\",singleton:!1};o()(Yd.Z,Wd);Yd.Z.locals;var Vd=r(55),Qd={insert:\"head\",singleton:!1};o()(Vd.Z,Qd);Vd.Z.locals;var Hd=\"/home/runner/work/page-constructor/page-constructor/src/grid/Grid/Grid.tsx\",Gd=void 0,qd=z(\"Grid\"),$d=function(t){var r=t.debug,n=t.children,o=t.className,i=t.style,a=t.containerClass,c=void 0===a?\"\":a;return e.createElement(\"div\",{style:i,className:qd({debug:r},o),__self:Gd,__source:{fileName:Hd,lineNumber:25,columnNumber:5}},e.createElement(\"div\",{className:\"container-fluid \".concat(c),__self:Gd,__source:{fileName:Hd,lineNumber:26,columnNumber:9}},n))},Xd=r(3656),Kd={insert:\"head\",singleton:!1};o()(Xd.Z,Kd);Xd.Z.locals;var Jd=\"/home/runner/work/page-constructor/page-constructor/src/components/MediaBase/MediaBaseContent.tsx\",ef=void 0;function tf(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function rf(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?tf(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):tf(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var nf=z(\"media-base-content\");const of=function(t){var r=t.title,n=t.description,o=t.button,i=t.links,a=t.buttons,c=void 0===a?[]:a,l=t.additionalInfo,s=t.size,u=void 0===s?\"l\":s,p=o?[rf(rf({},o),{},{size:\"xl\"})].concat(D(c)):c;return e.createElement(\"div\",{className:nf(),__self:ef,__source:{fileName:Jd,lineNumber:17,columnNumber:9}},e.createElement(Np,{title:r,text:n,links:i,theme:\"default\",buttons:p,additionalInfo:l,size:u,colSizes:{all:12,md:12},__self:ef,__source:{fileName:Jd,lineNumber:18,columnNumber:13}}))};var af=r(6120),cf={insert:\"head\",singleton:!1};o()(af.Z,cf);af.Z.locals;var lf=[\"children\",\"largeMedia\",\"direction\",\"mobileDirection\",\"animated\",\"mediaOnly\",\"disableShadow\",\"onScroll\"],sf=\"/home/runner/work/page-constructor/page-constructor/src/components/MediaBase/MediaBase.tsx\",uf=void 0,pf=z(\"media-base\"),df=function(){return null},ff=function(t){var r=t.children,n=t.largeMedia,o=t.direction,i=void 0===o?\"content-media\":o,a=t.mobileDirection,c=void 0===a?\"content-media\":a,l=t.animated,s=t.mediaOnly,u=t.disableShadow,p=void 0!==u&&u,d=t.onScroll,f=L(t,lf),m=f.title,y=f.description,h=(0,e.useMemo)((function(){var e;return s?C({},ll.All,12):(C(e={},ll.Md,n?8:6),C(e,ll.All,12),e)}),[s,n]),b=(0,e.useMemo)((function(){var e;return C(e={},ll.Md,n?4:6),C(e,ll.All,12),e}),[n]),v=!s&&e.createElement(of,Object.assign({},f,{__self:uf,__source:{fileName:sf,lineNumber:46,columnNumber:40}})),g=r.type===df?null==r?void 0:r.props.children:null;return e.createElement(ye,{className:pf(),onScroll:d,animate:l,__self:uf,__source:{fileName:sf,lineNumber:50,columnNumber:9}},s&&e.createElement(us,{className:pf(\"header\"),title:m,subtitle:y,colSizes:{all:12},__self:uf,__source:{fileName:sf,lineNumber:52,columnNumber:17}}),e.createElement($d,{__self:uf,__source:{fileName:sf,lineNumber:59,columnNumber:13}},e.createElement(yu,{className:pf(\"row\",{reverse:\"media-content\"===i,\"mobile-reverse\":\"media-content\"===c}),__self:uf,__source:{fileName:sf,lineNumber:60,columnNumber:17}},e.createElement(wl,{className:pf(\"content\"),sizes:b,__self:uf,__source:{fileName:sf,lineNumber:66,columnNumber:21}},v),g?e.createElement(wl,{sizes:h,__self:uf,__source:{fileName:sf,lineNumber:70,columnNumber:25}},e.createElement(\"div\",{className:pf(\"card\",{shadow:!p}),__self:uf,__source:{fileName:sf,lineNumber:71,columnNumber:29}},g)):null)))};ff.Card=df;const mf=ff;var yf=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Media/Media.tsx\",hf=void 0;const bf=function(t){var r=t.media,n=F((0,e.useState)(!1),2),o=n[0],i=n[1],a=Mp(r,(0,e.useContext)(N).themeValue);return e.createElement(mf,Object.assign({},t,{onScroll:function(){return i(!0)},__self:hf,__source:{fileName:yf,lineNumber:17,columnNumber:9}}),e.createElement(mf.Card,{__self:hf,__source:{fileName:yf,lineNumber:18,columnNumber:13}},e.createElement(iu,Object.assign({},a,{playVideo:o,__self:hf,__source:{fileName:yf,lineNumber:19,columnNumber:17}}))))};var vf=r(7776),gf={insert:\"head\",singleton:!1};o()(vf.Z,gf);vf.Z.locals;var _f=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Info/Info.tsx\",wf=void 0;function xf(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function kf(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?xf(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):xf(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var Nf=z(\"info-block\"),Mf={md:6,all:12};const jf=function(t){var r=t.backgroundColor,n=t.theme,o=void 0===n?\"dark\":n,i=t.buttons,a=void 0===i?[]:i,c=t.title,l=t.sectionsTitle,s=t.links,u=void 0===s?[]:s,p=t.rightContent,d=void 0===p?{}:p,f=t.leftContent,m=void 0===f?{}:f,y=(0,e.useContext)(N).themeValue,h=\"dark\"===o?\"dark\":\"default\",b=[].concat(D((null==d?void 0:d.links)||[]),D(u.map((function(e){return kf(kf({},e),{},{arrow:!0,theme:\"normal\"})})))),v=[].concat(D(a),D((null==m?void 0:m.buttons)||[])),g={colSizes:{all:12,md:12},className:Nf(\"content\"),theme:h};return e.createElement(\"div\",{className:Nf(),__self:wf,__source:{fileName:_f,lineNumber:44,columnNumber:9}},e.createElement(\"div\",{className:Nf(\"container\"),style:{backgroundColor:Mp(r,y)},__self:wf,__source:{fileName:_f,lineNumber:45,columnNumber:13}},e.createElement($d,{__self:wf,__source:{fileName:_f,lineNumber:49,columnNumber:17}},e.createElement(yu,{__self:wf,__source:{fileName:_f,lineNumber:50,columnNumber:21}},e.createElement(wl,{sizes:Mf,className:Nf(\"left\"),__self:wf,__source:{fileName:_f,lineNumber:51,columnNumber:25}},e.createElement(Np,Object.assign({title:c||(null==m?void 0:m.title),text:null==m?void 0:m.text,links:null==m?void 0:m.links,buttons:v,additionalInfo:null==m?void 0:m.additionalInfo},g,{__self:wf,__source:{fileName:_f,lineNumber:52,columnNumber:29}}))),e.createElement(wl,{sizes:Mf,className:Nf(\"right\"),__self:wf,__source:{fileName:_f,lineNumber:61,columnNumber:25}},e.createElement(Np,Object.assign({title:l||(null==d?void 0:d.title),text:null==d?void 0:d.text,links:b,buttons:null==d?void 0:d.buttons,additionalInfo:null==d?void 0:d.additionalInfo},g,{__self:wf,__source:{fileName:_f,lineNumber:62,columnNumber:29}})))))))};var Sf=r(9219),Ef={insert:\"head\",singleton:!1};o()(Sf.Z,Ef);Sf.Z.locals;var Lf=\"/home/runner/work/page-constructor/page-constructor/src/components/Table/Table.tsx\";function Of(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=il(e);if(t){var o=il(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return ol(this,r)}}var If=z(\"table\"),Cf=function(t){nl(n,t);var r=Of(n);function n(){return Jc(this,n),r.apply(this,arguments)}return tl(n,[{key:\"render\",value:function(){var t=this.props,r=t.content,n=t.legend,o=t.marker,i=void 0===o?\"disk\":o,a=t.className;return r&&r.length&&r[0].length?e.createElement(\"div\",{className:If(null,a),__self:this,__source:{fileName:Lf,lineNumber:20,columnNumber:13}},this.renderTable(r,i,n),n&&this.renderLegend(n,i)):null}},{key:\"renderTable\",value:function(t,r,n){var o=this,i=this.getDefaultJustify(t,this.props.justify);return e.createElement(\"div\",{className:If(\"table\"),__self:this,__source:{fileName:Lf,lineNumber:31,columnNumber:13}},t.map((function(t,a){return e.createElement(\"div\",{key:a,className:If(\"row\"),__self:o,__source:{fileName:Lf,lineNumber:33,columnNumber:21}},t.map((function(t,c){return e.createElement(\"div\",{key:c,className:If(\"cell\",{justify:i[c]}),__self:o,__source:{fileName:Lf,lineNumber:35,columnNumber:29}},n&&a&&c?o.renderMarker(r,t):e.createElement(Bl,{__self:o,__source:{fileName:Lf,lineNumber:39,columnNumber:37}},t))})))})))}},{key:\"renderMarker\",value:function(t,r){return e.createElement(\"div\",{className:If(\"marker\",{type:t,index:String(r)}),__self:this,__source:{fileName:Lf,lineNumber:50,columnNumber:16}})}},{key:\"renderLegend\",value:function(t,r){var n=this;return e.createElement(\"div\",{className:If(\"legend\"),__self:this,__source:{fileName:Lf,lineNumber:55,columnNumber:13}},t.map((function(t,o){return e.createElement(\"div\",{key:t,className:If(\"legend-item\"),__self:n,__source:{fileName:Lf,lineNumber:57,columnNumber:21}},n.renderMarker(r,String(o)),e.createElement(Fl,{className:If(\"legent-item-text\"),content:t,modifiers:{constructor:!0},__self:n,__source:{fileName:Lf,lineNumber:59,columnNumber:25}}))})))}},{key:\"getDefaultJustify\",value:function(e,t){return t||new Array(e[0].length).fill(\"center\")}}]),n}(e.Component),Pf=r(6481),Af={insert:\"head\",singleton:!1};o()(Pf.Z,Af);Pf.Z.locals;var Df=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Table/Table.tsx\",Tf=void 0,zf=z(\"table-block\");const Bf=function(t){var r,n,o=t.title,i=t.table;return e.createElement(\"div\",{className:zf(),__self:Tf,__source:{fileName:Df,lineNumber:16,columnNumber:9}},e.createElement($d,{className:zf(\"content\"),__self:Tf,__source:{fileName:Df,lineNumber:17,columnNumber:13}},e.createElement(yu,{className:zf(\"row\"),__self:Tf,__source:{fileName:Df,lineNumber:18,columnNumber:17}},e.createElement(wl,{sizes:(r={},C(r,ll.Md,4),C(r,ll.All,12),r),__self:Tf,__source:{fileName:Df,lineNumber:19,columnNumber:21}},e.createElement(\"h2\",{className:zf(\"title\"),__self:Tf,__source:{fileName:Df,lineNumber:20,columnNumber:25}},o)),e.createElement(wl,{sizes:(n={},C(n,ll.Md,8),C(n,ll.All,12),n),__self:Tf,__source:{fileName:Df,lineNumber:22,columnNumber:21}},e.createElement(Cf,Object.assign({className:zf(\"table\")},i,{__self:Tf,__source:{fileName:Df,lineNumber:23,columnNumber:25}}))))))};var Rf=r(8437),Ff={insert:\"head\",singleton:!1};o()(Rf.Z,Ff);Rf.Z.locals;var Uf=\"/home/runner/work/page-constructor/page-constructor/src/components/ButtonTabs/ButtonTabs.tsx\",Zf=void 0,Yf=z(\"button-tabs\");const Wf=function(t){var r=t.className,n=t.items,o=t.activeTab,i=t.onSelectTab,a=t.tabSize,c=void 0===a?\"l\":a,l=t.qa,s=(0,e.useMemo)((function(){return o||n[0].id}),[o,n]),u=(0,e.useCallback)((function(e){return function(t){i&&i(e,t)}}),[i]);return e.createElement(\"div\",{className:Yf(null,r),\"data-qa\":l,__self:Zf,__source:{fileName:Uf,lineNumber:57,columnNumber:9}},n.map((function(t){var r=t.id,n=t.title;return e.createElement($u,{text:n,className:Yf(\"item\",{active:r===s}),key:n,size:c,onClick:u(r),__self:Zf,__source:{fileName:Uf,lineNumber:59,columnNumber:17}})})))};var Vf=r(9500),Qf={insert:\"head\",singleton:!1};o()(Vf.Z,Qf);Vf.Z.locals;var Hf=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Tabs/Tabs.tsx\",Gf=void 0,qf=z(\"tabs-block\");const $f=function(t){var r,n,o=t.items,i=t.title,a=t.description,c=t.animated,l=t.tabsColSizes,s=t.centered,u=t.direction,p=void 0===u?\"media-content\":u,d=t.contentSize,f=void 0===d?\"s\":d,m=F((0,e.useState)(o[0].tabName),2),y=m[0],h=m[1],b=F((0,e.useState)(!1),2),v=b[0],g=b[1],_=(0,e.useContext)(N).themeValue,w=o.map((function(e){var t=e.tabName;return{title:t,id:t}})),x=o.find((function(e){return e.tabName===y})),k=\"content-media\"===p,M=(0,e.useRef)(null),j=null==M||null===(r=M.current)||void 0===r?void 0:r.offsetWidth,S=j&&Et(j);if(x){var E=Mp(x.image,_);n=E&&Hs(E)}var L=Boolean((null==x?void 0:x.media)||n),O=Boolean(null==x?void 0:x.text),I=x&&O&&e.createElement(wl,{sizes:{all:12,md:L?4:8},className:qf(\"content\",{centered:s}),__self:Gf,__source:{fileName:Hf,lineNumber:52,columnNumber:9}},e.createElement(\"div\",{className:qf(\"content-wrapper\",{margin:Boolean(((null==x?void 0:x.media)||n)&&!k)}),__self:Gf,__source:{fileName:Hf,lineNumber:56,columnNumber:13}},e.createElement(Np,{title:x.title,text:x.text,additionalInfo:x.additionalInfo,size:f,links:[].concat(D(x.link?[x.link]:[]),D(x.links||[])),buttons:x.buttons,colSizes:{all:12},__self:Gf,__source:{fileName:Hf,lineNumber:61,columnNumber:17}}))),C=L&&e.createElement(wl,{sizes:{all:12,md:8},orders:{all:pl.Last,md:pl.First},className:qf(\"col\",{centered:s}),__self:Gf,__source:{fileName:Hf,lineNumber:78,columnNumber:9}},e.createElement(\"div\",{ref:M,__self:Gf,__source:{fileName:Hf,lineNumber:86,columnNumber:13}},(null==x?void 0:x.media)&&e.createElement(iu,Object.assign({},Mp(x.media,_),{key:y,className:qf(\"media\"),playVideo:v,height:S,__self:Gf,__source:{fileName:Hf,lineNumber:88,columnNumber:21}}))),n&&e.createElement(e.Fragment,{__self:Gf,__source:{fileName:Hf,lineNumber:98,columnNumber:17}},e.createElement(Qs,Object.assign({},n,{imageClassName:qf(\"image\"),__self:Gf,__source:{fileName:Hf,lineNumber:99,columnNumber:21}}))),(null==x?void 0:x.caption)&&e.createElement(\"p\",{className:qf(\"caption\"),__self:Gf,__source:{fileName:Hf,lineNumber:102,columnNumber:40}},x.caption));return e.createElement(ye,{className:qf(),onScroll:function(){return g(!0)},animate:c,__self:Gf,__source:{fileName:Hf,lineNumber:115,columnNumber:9}},e.createElement(us,{title:i,subtitle:a,className:qf(\"block-title\",{centered:s}),__self:Gf,__source:{fileName:Hf,lineNumber:116,columnNumber:13}}),e.createElement(yu,{__self:Gf,__source:{fileName:Hf,lineNumber:121,columnNumber:13}},e.createElement(wl,{sizes:l,__self:Gf,__source:{fileName:Hf,lineNumber:122,columnNumber:17}},e.createElement(Wf,{items:w,onSelectTab:function(e,t){h(e),t.currentTarget.scrollIntoView({inline:\"center\",behavior:\"smooth\",block:\"nearest\"})},activeTab:y,className:qf(\"tabs\",{centered:s}),__self:Gf,__source:{fileName:Hf,lineNumber:123,columnNumber:21}}))),x&&e.createElement(yu,{className:qf(\"row\",{reverse:k}),__self:Gf,__source:{fileName:Hf,lineNumber:132,columnNumber:17}},C,I))};var Xf=r(7543),Kf={insert:\"head\",singleton:!1};o()(Xf.Z,Kf);Xf.Z.locals;var Jf=\"/home/runner/work/page-constructor/page-constructor/src/components/HeaderBreadcrumbs/HeaderBreadcrumbs.tsx\",em=z(\"header-breadcrumbs\");function tm(t){var r=this,n=t.items,o=t.metrikaGoals,i=t.pixelEvents,a=t.theme,c=void 0===a?\"light\":a,l=t.className,s=Pu(),u=Fe(ze.Breadcrumb),p=(0,e.useCallback)((function(){u(),s({metrikaGoals:o,pixelEvents:i})}),[u,s,o,i]);return e.createElement(\"div\",{className:em({theme:c},l),__self:this,__source:{fileName:Jf,lineNumber:23,columnNumber:9}},null==n?void 0:n.map((function(t){return e.createElement(\"div\",{className:em(\"item\"),key:t.url,__self:r,__source:{fileName:Jf,lineNumber:25,columnNumber:17}},e.createElement(\"a\",{href:t.url,className:em(\"text\"),onClick:p,__self:r,__source:{fileName:Jf,lineNumber:26,columnNumber:21}},t.text))})))}var rm=r(5509),nm={insert:\"head\",singleton:!1};o()(rm.Z,nm);rm.Z.locals;var om=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Header/Header.tsx\",im=void 0,am=z(\"header-block\"),cm=function(t){var r=t.background,n=t.isMobile,o=r.url,i=r.image,a=r.fullWidthMedia,c=r.video,l=r.color,s=o?Hs(o):i,u=!n||\"object\"===O(i)&&\"mobile\"in i;return e.createElement(\"div\",{className:am(\"background\",{media:!0,\"full-width-media\":a}),style:{backgroundColor:l},__self:im,__source:{fileName:om,lineNumber:32,columnNumber:9}},u&&e.createElement(iu,Object.assign({},r,{className:am(\"background-media\"),imageClassName:am(\"image\"),videoClassName:am(\"video\"),isBackground:!0,parallax:!1,video:n?void 0:c,image:s,__self:im,__source:{fileName:om,lineNumber:37,columnNumber:17}})))},lm=function(t){var r=t.background;return e.createElement(\"div\",{className:am(\"background\",C({},\"full-width\",!0)),style:{backgroundColor:null==r?void 0:r.color},__self:im,__source:{fileName:om,lineNumber:57,columnNumber:5}})};const sm=function(t){var r,n=t.title,o=t.overtitle,i=t.description,a=t.buttons,c=t.image,l=t.video,s=t.width,u=void 0===s?\"m\":s,p=t.imageSize,d=t.offset,f=void 0===d?\"default\":d,m=t.background,y=t.theme,h=void 0===y?\"light\":y,b=t.verticalOffset,v=void 0===b?\"m\":b,g=t.className,w=t.breadcrumbs,x=t.status,k=t.children,M=(0,e.useContext)(_),j=(0,e.useContext)(N).themeValue,S=Boolean(c||l),E=p||function(e){return\"m\"===e?\"s\":\"m\"}(u),L=S?function(e){switch(e){case\"s\":return{md:8,all:12};case\"m\":return{md:6,all:12};default:return{all:12}}}(E):function(e){switch(e){case\"s\":return{lg:6,sm:12,md:8,all:12};case\"m\":return{lg:8,md:8,sm:12,all:12};default:return{all:12}}}(u),O=v;S&&!v&&(O=\"m\");var I=m&&Mp(m,j),P=c&&Mp(c,j),A=l&&Mp(l,j),D=(null==I?void 0:I.fullWidth)||(null==I?void 0:I.fullWidthMedia);return e.createElement(\"header\",{className:am((r={},C(r,\"has-media\",S),C(r,\"full-width\",D),r),g),__self:im,__source:{fileName:om,lineNumber:99,columnNumber:9}},I&&D&&e.createElement(lm,{background:I,__self:im,__source:{fileName:om,lineNumber:102,columnNumber:47}}),I&&e.createElement(cm,{background:I,isMobile:M,__self:im,__source:{fileName:om,lineNumber:103,columnNumber:34}}),e.createElement($d,{containerClass:am(\"container-fluid\"),__self:im,__source:{fileName:om,lineNumber:104,columnNumber:13}},w&&e.createElement(yu,{className:am(\"breadcrumbs\"),__self:im,__source:{fileName:om,lineNumber:106,columnNumber:21}},e.createElement(wl,{__self:im,__source:{fileName:om,lineNumber:107,columnNumber:25}},e.createElement(tm,Object.assign({},w,{theme:h,__self:im,__source:{fileName:om,lineNumber:108,columnNumber:29}})))),e.createElement(yu,{__self:im,__source:{fileName:om,lineNumber:112,columnNumber:17}},e.createElement(wl,{reset:!0,className:am(\"content-wrapper\"),__self:im,__source:{fileName:om,lineNumber:113,columnNumber:21}},e.createElement(yu,{__self:im,__source:{fileName:om,lineNumber:114,columnNumber:25}},e.createElement(wl,{className:am(\"content\",{offset:f,theme:h,\"vertical-offset\":O}),__self:im,__source:{fileName:om,lineNumber:115,columnNumber:29}},e.createElement(wl,{sizes:L,className:am(\"content-inner\"),__self:im,__source:{fileName:om,lineNumber:122,columnNumber:33}},o&&e.createElement(\"div\",{className:am(\"overtitle\"),__self:im,__source:{fileName:om,lineNumber:124,columnNumber:41}},e.createElement(Bl,{__self:im,__source:{fileName:om,lineNumber:125,columnNumber:45}},o)),e.createElement(\"h1\",{className:am(\"title\"),__self:im,__source:{fileName:om,lineNumber:128,columnNumber:37}},x,e.createElement(Bl,{__self:im,__source:{fileName:om,lineNumber:130,columnNumber:41}},n)),i&&e.createElement(\"div\",{className:am(\"description\"),__self:im,__source:{fileName:om,lineNumber:133,columnNumber:41}},e.createElement(Fl,{content:i,modifiers:{constructor:!0},__self:im,__source:{fileName:om,lineNumber:134,columnNumber:45}})),a&&e.createElement(\"div\",{className:am(\"buttons\"),\"data-qa\":\"header-buttons\",__self:im,__source:{fileName:om,lineNumber:141,columnNumber:41}},a.map((function(t,r){return e.createElement(kd,{href:t.url,key:r,__self:im,__source:{fileName:om,lineNumber:143,columnNumber:49}},e.createElement($u,Object.assign({key:r,className:am(\"button\"),size:\"xl\"},t,{__self:im,__source:{fileName:om,lineNumber:144,columnNumber:53}})))}))),k))),S&&e.createElement(iu,{className:am(\"media\",C({},E,!0)),videoClassName:am(\"video\"),imageClassName:am(\"image\"),video:A,image:P,__self:im,__source:{fileName:om,lineNumber:159,columnNumber:29}})))))};var um=r(4377),pm={insert:\"head\",singleton:!1};o()(um.Z,pm);um.Z.locals;var dm=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Icons/Icons.tsx\",fm=void 0,mm=z(\"icons-block\");const ym=function(t){var r=t.title,n=t.size,o=void 0===n?\"s\":n,i=t.items,a=(0,e.useContext)(m).hostname;return e.createElement(\"div\",{className:mm({size:o}),__self:fm,__source:{fileName:dm,lineNumber:16,columnNumber:9}},r&&e.createElement(us,{className:mm(\"header\"),title:r,colSizes:{all:12},__self:fm,__source:{fileName:dm,lineNumber:17,columnNumber:23}}),i.map((function(t){return e.createElement(\"a\",Object.assign({className:mm(\"item\"),key:t.url,href:t.url},$e(t.url,a),{__self:fm,__source:{fileName:dm,lineNumber:19,columnNumber:17}}),e.createElement(ht,{className:mm(\"image\"),src:t.src,__self:fm,__source:{fileName:dm,lineNumber:25,columnNumber:21}}),e.createElement(\"p\",{className:mm(\"text\"),__self:fm,__source:{fileName:dm,lineNumber:26,columnNumber:21}},t.text))})))};var hm=r(1650),bm={insert:\"head\",singleton:!1};o()(hm.Z,bm);hm.Z.locals;var vm=[\"items\",\"arrows\"],gm=\"/home/runner/work/page-constructor/page-constructor/src/blocks/HeaderSlider/HeaderSlider.tsx\",_m=void 0,wm=z(\"header-slider-block\");const xm=function(t){var r=t.items,n=t.arrows,o=L(t,vm),i=!(0,e.useContext)(_)&&n;return e.createElement(\"div\",{className:wm(\"wrapper\"),\"data-qa\":\"header-slider\",__self:_m,__source:{fileName:gm,lineNumber:18,columnNumber:9}},e.createElement(Ps,Object.assign({},o,{arrows:i,slidesToShow:1,type:Sl.HeaderCard,animated:!1,blockClassName:wm(),arrowSize:20,__self:_m,__source:{fileName:gm,lineNumber:19,columnNumber:13}}),r.map((function(t,r){return e.createElement(\"div\",{key:r,className:wm(\"item\"),\"data-qa\":\"header-slider-item-\".concat(r+1),__self:_m,__source:{fileName:gm,lineNumber:29,columnNumber:21}},e.createElement(sm,Object.assign({},t,{className:wm(\"item-content\"),__self:_m,__source:{fileName:gm,lineNumber:34,columnNumber:25}})))}))))};var km=r(1029),Nm={insert:\"head\",singleton:!1};o()(km.Z,Nm);km.Z.locals;var Mm=\"/home/runner/work/page-constructor/page-constructor/src/blocks/CardLayout/CardLayout.tsx\",jm=void 0,Sm={all:12,sm:6,md:4},Em=z(\"card-layout-block\");const Lm=function(t){var r=t.title,n=t.description,o=t.animated,i=t.colSizes,a=void 0===i?Sm:i,c=t.children;return e.createElement(ye,{className:Em(),animate:o,__self:jm,__source:{fileName:Mm,lineNumber:26,columnNumber:5}},(r||n)&&e.createElement(us,{title:r,subtitle:n,__self:jm,__source:{fileName:Mm,lineNumber:27,columnNumber:36}}),e.createElement(yu,{__self:jm,__source:{fileName:Mm,lineNumber:28,columnNumber:9}},e.Children.map(c,(function(t,r){return e.createElement(wl,{key:r,sizes:a,className:Em(\"item\"),__self:jm,__source:{fileName:Mm,lineNumber:30,columnNumber:17}},t)}))))};var Om=r(8223),Im={insert:\"head\",singleton:!1};o()(Om.Z,Im);Om.Z.locals;var Cm=\"/home/runner/work/page-constructor/page-constructor/src/blocks/ContentLayout/ContentLayout.tsx\",Pm=void 0,Am=z(\"content-layout-block\");function Dm(e){return\"s\"===e?\"s\":\"l\"}const Tm=function(t){var r=(0,e.useContext)(_),n=t.textContent,o=t.fileContent,i=t.properties||t,a=i.size,c=void 0===a?\"l\":a,l=i.background,s=i.centered,u=i.theme,p=void 0===u?\"default\":u,d=i.textWidth,f=void 0===d?\"m\":d,m=(0,e.useMemo)((function(){return function(e){switch(e){case\"s\":return{all:12,md:6};case\"l\":return{all:12,md:12};default:return{all:12,md:8}}}(f)}),[f]);return e.createElement(\"div\",{className:Am({size:c,background:Boolean(l)}),__self:Pm,__source:{fileName:Cm,lineNumber:45,columnNumber:9}},e.createElement(Np,Object.assign({className:Am(\"content\")},n,{size:c,centered:s,colSizes:m,theme:p,__self:Pm,__source:{fileName:Cm,lineNumber:46,columnNumber:13}})),o&&e.createElement(wl,{className:Am(\"files\",{size:c,centered:s}),reset:!0,sizes:m,__self:Pm,__source:{fileName:Cm,lineNumber:55,columnNumber:17}},o.map((function(t){return e.createElement(lp,Object.assign({className:Am(\"file\")},t,{key:t.href,type:\"horizontal\",textSize:Dm(c),theme:p,__self:Pm,__source:{fileName:Cm,lineNumber:57,columnNumber:25}}))}))),l&&e.createElement(\"div\",{className:Am(\"background\"),__self:Pm,__source:{fileName:Cm,lineNumber:69,columnNumber:17}},e.createElement(Rs,Object.assign({className:Am(\"background-item\")},l,{hide:r,__self:Pm,__source:{fileName:Cm,lineNumber:70,columnNumber:21}}))))};var zm=\"/home/runner/work/page-constructor/page-constructor/src/icons/Facebook.tsx\",Bm=void 0,Rm=\"/home/runner/work/page-constructor/page-constructor/src/icons/Linkedin.tsx\",Fm=void 0,Um=\"/home/runner/work/page-constructor/page-constructor/src/icons/Telegram.tsx\",Zm=void 0,Ym=\"/home/runner/work/page-constructor/page-constructor/src/icons/Twitter.tsx\",Wm=void 0,Vm=\"/home/runner/work/page-constructor/page-constructor/src/icons/Vk.tsx\",Qm=void 0;const Hm=pt({en:JSON.parse('{\"constructor-share\":\"Share\"}'),ru:JSON.parse('{\"constructor-share\":\"Поделиться\"}')},\"Share\");var Gm=r(1212),qm={insert:\"head\",singleton:!1};o()(Gm.Z,qm);Gm.Z.locals;var $m=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Share/Share.tsx\",Xm=void 0,Km={facebook:function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"24\",height:\"24\",fill:\"currentColor\"},Ue,t,{__self:Bm,__source:{fileName:zm,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M13.79 22H9.93v-9.501H8V9.225h1.93V7.26C9.93 4.589 11.017 3 14.113 3h2.577v3.275h-1.61c-1.206 0-1.285.457-1.285 1.311l-.006 1.639h2.918l-.341 3.274H13.79V22z\",__self:Bm,__source:{fileName:zm,lineNumber:15,columnNumber:9}}))},twitter:function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"24\",height:\"24\",fill:\"currentColor\"},Ue,t,{__self:Wm,__source:{fileName:Ym,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M19.644 6.675a4.247 4.247 0 0 0 1.803-2.362c-.793.49-1.67.844-2.606 1.036A4.016 4.016 0 0 0 15.846 4c-2.265 0-4.101 1.913-4.101 4.272 0 .335.034.66.104.973C8.44 9.066 5.417 7.367 3.392 4.78a4.397 4.397 0 0 0-.555 2.149c0 1.481.724 2.789 1.825 3.556a3.994 3.994 0 0 1-1.859-.534v.053c0 2.07 1.413 3.797 3.293 4.188-.345.1-.707.15-1.083.15-.264 0-.522-.025-.77-.075.52 1.696 2.036 2.933 3.832 2.966A8.028 8.028 0 0 1 2 19.004a11.29 11.29 0 0 0 6.29 1.92c7.548 0 11.673-6.51 11.673-12.156 0-.186-.002-.37-.01-.553A8.508 8.508 0 0 0 22 6.003c-.736.34-1.527.57-2.356.672z\",__self:Wm,__source:{fileName:Ym,lineNumber:15,columnNumber:9}}))},linkedin:function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"24\",height:\"24\",fill:\"currentColor\"},Ue,t,{__self:Fm,__source:{fileName:Rm,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M21.3779 19.3506H17.7796V13.7149C17.7796 12.371 17.7556 10.641 15.908 10.641C14.0339 10.641 13.7471 12.1053 13.7471 13.6171V19.3503H10.1487V7.76094H13.6032V9.34475H13.6515C13.9972 8.7536 14.4968 8.2673 15.097 7.93763C15.6972 7.60796 16.3756 7.44726 17.0599 7.47266C20.707 7.47266 21.3794 9.8718 21.3794 12.9929L21.3779 19.3506ZM6.08857 6.17675C5.67556 6.17682 5.2718 6.05442 4.92836 5.82501C4.58492 5.5956 4.31722 5.26949 4.1591 4.88792C4.00097 4.50633 3.95956 4.08644 4.04005 3.68132C4.12055 3.2762 4.31936 2.90406 4.61135 2.61194C4.90333 2.31983 5.27537 2.12085 5.68043 2.0402C6.08549 1.95954 6.50536 2.00084 6.88696 2.15883C7.26854 2.31683 7.59472 2.58444 7.82423 2.92782C8.05375 3.27122 8.1763 3.67496 8.17637 4.088C8.17642 4.36226 8.12246 4.63383 8.01757 4.88721C7.91267 5.14061 7.75889 5.37086 7.56502 5.56482C7.37114 5.75877 7.14098 5.91264 6.88765 6.01764C6.63431 6.12264 6.36278 6.1767 6.08857 6.17675ZM7.88774 19.3506H4.28561V7.76094H7.88774V19.3506Z\",__self:Fm,__source:{fileName:Rm,lineNumber:15,columnNumber:9}}))},vk:function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"24\",height:\"24\",fill:\"currentColor\"},Ue,t,{__self:Qm,__source:{fileName:Vm,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M19.934 13.916c.73.713 1.5 1.383 2.155 2.167.289.349.563.708.772 1.113.297.575.028 1.208-.488 1.242l-3.205-.001c-.826.068-1.486-.265-2.04-.83-.444-.452-.855-.933-1.282-1.4a3.04 3.04 0 0 0-.576-.513c-.438-.284-.818-.197-1.068.26-.254.464-.312.978-.337 1.495-.034.754-.263.953-1.02.987-1.62.077-3.158-.168-4.587-.985-1.26-.721-2.236-1.738-3.086-2.89-1.655-2.242-2.922-4.706-4.06-7.239-.257-.57-.07-.877.56-.888a87.013 87.013 0 0 1 3.138-.001c.425.006.706.25.87.651.566 1.391 1.258 2.715 2.127 3.941.231.327.467.653.803.883.372.255.655.17.83-.244.11-.262.16-.545.184-.826.083-.967.094-1.933-.051-2.897-.09-.602-.428-.991-1.029-1.105-.306-.058-.26-.172-.112-.347.257-.302.5-.49.983-.49h3.622c.57.113.697.37.775.943l.003 4.024c-.006.222.11.881.51 1.028.321.105.532-.152.724-.355.868-.92 1.487-2.008 2.04-3.134.245-.495.456-1.01.66-1.524.152-.381.39-.569.82-.56l3.485.003c.104 0 .208.001.309.018.587.1.748.353.566.927-.285.9-.842 1.65-1.385 2.403-.582.805-1.204 1.582-1.78 2.39-.53.74-.488 1.112.17 1.754z\",__self:Qm,__source:{fileName:Vm,lineNumber:15,columnNumber:9}}))},telegram:function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 24 24\",width:\"24\",height:\"24\",fill:\"currentColor\"},Ue,t,{__self:Zm,__source:{fileName:Um,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M2.336 11.932l4.378 1.634 1.694 5.45a.515.515 0 0 0 .819.246l2.44-1.99a.728.728 0 0 1 .888-.024l4.401 3.196c.303.22.732.054.808-.312l3.225-15.51a.516.516 0 0 0-.691-.587L2.33 10.968a.516.516 0 0 0 .006.965zm5.799.764l8.556-5.27c.154-.094.312.114.18.237L9.81 14.226c-.248.231-.408.54-.454.876l-.24 1.783c-.032.238-.367.261-.432.031l-.925-3.25a.862.862 0 0 1 .376-.97z\",__self:Zm,__source:{fileName:Um,lineNumber:15,columnNumber:9}}))}},Jm=z(\"share-block\");const ey=function(t){var r=t.items,n=t.title,o=(0,e.useContext)(m),i=o.pathname,a=o.hostname,c=Fe(ze.ShareButton),l=(0,e.useCallback)((function(){return c()}),[c]);return e.createElement(\"div\",{className:Jm(),__self:Xm,__source:{fileName:$m,lineNumber:40,columnNumber:9}},e.createElement(\"h5\",{className:Jm(\"title\"),__self:Xm,__source:{fileName:$m,lineNumber:41,columnNumber:13}},n||Hm(\"constructor-share\")),e.createElement(\"div\",{className:Jm(\"items\"),__self:Xm,__source:{fileName:$m,lineNumber:42,columnNumber:13}},r.map((function(t){var r=function(e,t,r){if(!t)return null!=r?r:\"\";var n=(0,Ve.Qc)(r||\"\");return(0,Ve.WU)(He(He({},n),{},{protocol:n.protocol||\"https\",hostname:n.hostname||e,pathname:n.pathname||t}))}(a,i),n=function(e,t,r,n){switch(t){case El.Telegram:return zl(\"https://t.me/share/url\",{url:e,text:r});case El.Facebook:return zl(\"https://facebook.com/sharer.php\",{u:e});case El.Twitter:return zl(\"https://twitter.com/intent/tweet\",{url:e,text:r});case El.Vk:return zl(\"https://vk.com/share.php\",{url:e,title:r,comment:n});case El.LinkedIn:return zl(\"https://www.linkedin.com/sharing/share-offsite/\",{url:e});default:return void console.error(\"Unknown share type: \".concat(t))}}(r,t),o=Km[t];return e.createElement(Ou,{key:t,view:\"flat\",size:\"l\",target:\"_blank\",href:n,className:Jm(\"item\",{type:t.toLowerCase()}),onClick:l,__self:Xm,__source:{fileName:$m,lineNumber:49,columnNumber:25}},o&&e.createElement(Me,{data:o,size:24,className:Jm(\"icon\",{type:t}),__self:Xm,__source:{fileName:$m,lineNumber:58,columnNumber:38}}))}))))};function ty(e,t){return t?e/4*3:e/16*9}var ry=z(\"map\");const ny=function(t){var r=t.address,n=t.zoom,o=(0,e.useContext)(v),i=o.apiKey,a=o.scriptSrc,c=(0,e.useContext)(f).lang,l=void 0===c?u.Ru:c,s=(0,e.useContext)(_),p=F((0,e.useState)(void 0),2),d=p[0],m=p[1],y=(0,e.useRef)(null),h=(0,e.useMemo)((function(){return function(e){var t=e.apiKey,r=e.scriptSrc,n=e.address,o=e.lang,i=e.zoom;return\"\".concat(r,\"?key=\").concat(t,\"&language=\").concat(o).concat(i?\"&zoom=\"+i:\"\",\"&q=\").concat(encodeURI(n))}({apiKey:i,scriptSrc:a,address:r,lang:l,zoom:n})}),[i,a,r,l,n]);return(0,e.useEffect)((function(){var e=Se().debounce((function(){y.current&&m(Math.round(ty(y.current.offsetWidth,s)))}),100);return e(),window.addEventListener(\"resize\",e,{passive:!0}),function(){window.removeEventListener(\"resize\",e)}}),[s]),i&&r?e.createElement(\"iframe\",{className:ry(),ref:y,style:{height:d},title:\"Google Map\",loading:\"lazy\",allowFullScreen:!0,referrerPolicy:\"no-referrer-when-downgrade\",src:h,__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/components/Map/GoogleMap.tsx\",lineNumber:65,columnNumber:9}}):null};var oy=r(3967),iy={insert:\"head\",singleton:!1};o()(oy.Z,iy);oy.Z.locals;const ay=be(\"spin\"),cy=e.forwardRef((function(t,r){const{size:n=\"m\",style:o,className:i,qa:a}=t;return e.createElement(\"div\",{ref:r,style:o,className:ay({size:n},i),\"data-qa\":a},e.createElement(\"div\",{className:ay(\"inner\")}))}));var ly=r(4774),sy={insert:\"head\",singleton:!1};o()(ly.Z,sy);ly.Z.locals;var uy=\"/home/runner/work/page-constructor/page-constructor/src/components/ErrorWrapper/ErrorWrapper.tsx\",py=void 0,dy=z(\"ErrorWrapper\");const fy=function(t){var r=t.text,n=t.buttonText,o=t.className,i=t.handler,a=t.isError,c=t.children;return a?e.createElement(\"div\",{className:dy(null,o),__self:py,__source:{fileName:uy,lineNumber:29,columnNumber:9}},e.createElement(\"div\",{className:dy(\"text\"),__self:py,__source:{fileName:uy,lineNumber:30,columnNumber:13}},r),i&&e.createElement(Ou,{size:\"s\",onClick:i,__self:py,__source:{fileName:uy,lineNumber:32,columnNumber:17}},n)):e.createElement(e.Fragment,{__self:py,__source:{fileName:uy,lineNumber:38,columnNumber:9}},c)};function my(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function yy(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?my(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):my(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function hy(e,t){var r=\"undefined\"!=typeof Symbol&&e[Symbol.iterator]||e[\"@@iterator\"];if(!r){if(Array.isArray(e)||(r=function(e,t){if(!e)return;if(\"string\"==typeof e)return by(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);\"Object\"===r&&e.constructor&&(r=e.constructor.name);if(\"Map\"===r||\"Set\"===r)return Array.from(e);if(\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return by(e,t)}(e))||t&&e&&\"number\"==typeof e.length){r&&(e=r);var n=0,o=function(){};return{s:o,n:function(){return n>=e.length?{done:!0}:{done:!1,value:e[n++]}},e:function(e){throw e},f:o}}throw new TypeError(\"Invalid attempt to iterate non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}var i,a=!0,c=!1;return{s:function(){r=r.call(e)},n:function(){var e=r.next();return a=e.done,e},e:function(e){c=!0,i=e},f:function(){try{a||null==r.return||r.return()}finally{if(c)throw i}}}}function by(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var vy=function(e){return e.Properties=\"properties\",e.Options=\"options\",e}(vy||{}),gy={iconCaption:vy.Properties,iconContent:vy.Properties,iconColor:vy.Options,preset:vy.Options},_y=function(){function e(t,r){Jc(this,e),C(this,\"ymap\",void 0),C(this,\"mapRef\",void 0),C(this,\"coords\",[]),this.ymap=t,this.mapRef=r}var t,r;return tl(e,[{key:\"showPlacemarks\",value:(r=R(Z().mark((function e(t){var r,n,o;return Z().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:this.clearOldPlacemarks(),r=hy(t.markers),e.prev=2,r.s();case 4:if((n=r.n()).done){e.next=14;break}if(!(o=n.value).address){e.next=11;break}return e.next=9,this.findAddress(o);case 9:e.next=12;break;case 11:o.coordinate&&this.findCoordinate(o);case 12:e.next=4;break;case 14:e.next=19;break;case 16:e.prev=16,e.t0=e.catch(2),r.e(e.t0);case 19:return e.prev=19,r.f(),e.finish(19);case 22:this.recalcZoomAndCenter(t);case 23:case\"end\":return e.stop()}}),e,this,[[2,16,19,22]])}))),function(e){return r.apply(this,arguments)})},{key:\"findAddress\",value:(t=R(Z().mark((function e(t){var r,n,o;return Z().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,window.ymaps.geocode(t.address,{results:1});case 3:r=e.sent,n=r.geoObjects.get(0),o=n.geometry.getCoordinates(),this.coords.push(o),this.drawPlaceMarkStyle(n,t),this.ymap.geoObjects.add(n),e.next=13;break;case 11:e.prev=11,e.t0=e.catch(0);case 13:case\"end\":return e.stop()}}),e,this,[[0,11]])}))),function(e){return t.apply(this,arguments)})},{key:\"findCoordinate\",value:function(e){var t=new window.ymaps.Placemark(e.coordinate,{});this.coords.push(e.coordinate),this.drawPlaceMarkStyle(t,e),this.ymap.geoObjects.add(t)}},{key:\"drawPlaceMarkStyle\",value:function(e,t){var r=t.label||{},n=r.iconColor,o=r.preset,i=void 0===o?\"islands#dotIcon\":o,a=n;i.includes(\"Stretchy\")||n||(a=\"#dc534b\"),Object.entries(yy(yy({},t.label),{},{iconColor:a,preset:i})).forEach((function(t){var r=F(t,2),n=r[0],o=r[1],i=gy[n];o&&i&&e[i].set(n,o)}))}},{key:\"recalcZoomAndCenter\",value:function(e){var t=this.coords.length,r=e.zoom,n=void 0===r?0:r;if(t){var o=[1/0,1/0],i=[-1/0,-1/0];this.coords.forEach((function(e){o=[Math.min(o[0],e[0]),Math.min(o[1],e[1])],i=[Math.max(i[0],e[0]),Math.max(i[1],e[1])]}));var a,c,l={zoom:n,center:[]};if(n)l.center=window.ymaps.util.bounds.getCenter([o,i]);else l=window.ymaps.util.bounds.getCenterAndZoom([o,i],[null===(a=this.mapRef)||void 0===a?void 0:a.clientWidth,null===(c=this.mapRef)||void 0===c?void 0:c.clientHeight],void 0,{margin:30});this.ymap.setCenter(l.center),t>1&&!n&&this.ymap.setZoom(l.zoom)}}},{key:\"clearOldPlacemarks\",value:function(){0!==this.coords.length&&(this.ymap.geoObjects.removeAll(),this.coords=[])}}]),e}();function wy(e,t){return xy.apply(this,arguments)}function xy(){return(xy=R(Z().mark((function e(t,r){var n,o,i,a,c;return Z().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=r.id,o=r.defer,i=void 0!==o&&o,a=r.async,c=void 0===a||a,e.abrupt(\"return\",new Promise((function(e,r){var o=document.createElement(\"script\");o.src=t,o.id=n,o.defer=i,o.async=c,o.onload=function(t){e(t)},o.onerror=function(e){var t,o=document.getElementById(n);null==o||null===(t=o.parentNode)||void 0===t||t.removeChild(o),r(e)},document.head.appendChild(o)})));case 2:case\"end\":return e.stop()}}),e)})))).apply(this,arguments)}var ky=function(e){return e.NotStarted=\"not_started\",e.Loading=\"loading\",e.Loaded=\"loaded\",e.Error=\"error\",e}({}),Ny=function(){function e(){Jc(this,e)}var t;return tl(e,null,[{key:\"loadApi\",value:(t=R(Z().mark((function t(r,n,o,i){var a,c;return Z().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:if(e.status!==ky.Loaded){t.next=2;break}return t.abrupt(\"return\",Promise.resolve());case 2:if(e.status!==ky.Loading){t.next=6;break}return t.next=5,e.loader;case 5:return t.abrupt(\"return\",Promise.resolve());case 6:return e.status=ky.Loading,a=i?\"csp[style_nonce]=\".concat(i):\"csp=true\",c=\"\".concat(n,\"?apikey=\").concat(r,\"&lang=\").concat(h[o],\"&\").concat(a),e.loader=wy(c,{id:\"ymaps-script\"}).then((function(){e.status=ky.Loaded})).catch((function(){e.status=ky.Error})),t.abrupt(\"return\",this.loader);case 11:case\"end\":return t.stop()}}),t,this)}))),function(e,r,n,o){return t.apply(this,arguments)})}]),e}();C(Ny,\"status\",ky.NotStarted),C(Ny,\"loader\",void 0);const My=pt({en:JSON.parse('{\"map-load-error\":\"Error occured while loading the map\",\"map-try-again\":\"Try again\"}'),ru:JSON.parse('{\"map-load-error\":\"При загрузке карты произошла ошибка\",\"map-try-again\":\"Повторить\"}')},\"Map\");var jy=\"/home/runner/work/page-constructor/page-constructor/src/components/Map/YMap/YandexMap.tsx\",Sy=void 0,Ey=z(\"map\"),Ly=[0,0];const Oy=function(t){var r=t.markers,n=t.zoom,o=t.id,i=(0,e.useContext)(v),a=i.apiKey,c=i.scriptSrc,l=i.nonce,s=(0,e.useContext)(_),u=(0,e.useContext)(f).lang,p=void 0===u?\"ru\":u,d=\"\".concat(\"ymap\",\"-\").concat(o),m=F((0,e.useState)(null),2),y=m[0],h=m[1],b=F((0,e.useState)(void 0),2),g=b[0],w=b[1],x=(0,e.useRef)(null),k=F((0,e.useState)(!1),2),N=k[0],M=k[1],j=F((0,e.useState)(!1),2),S=j[0],E=j[1],L=F((0,e.useState)(0),2),O=L[0],I=L[1],C=(0,e.useCallback)((function(){I(O+1)}),[O]);return(0,e.useEffect)((function(){R(Z().mark((function e(){var t;return Z().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return M(!0),e.next=3,Ny.loadApi(a,c,p,l);case 3:null===(t=window.ymaps)||void 0===t||t.ready((function(){h(new _y(new window.ymaps.Map(d,{center:Ly,zoom:n||9},{autoFitToViewport:\"always\"}),x.current))})),M(!1);case 5:case\"end\":return e.stop()}}),e)})))()}),[a,p,c,d,n,l,O,M]),(0,e.useEffect)((function(){var e=Se().debounce((function(){x.current&&w(Math.round(ty(x.current.offsetWidth,s)))}),100);return e(),window.addEventListener(\"resize\",e,{passive:!0}),function(){window.removeEventListener(\"resize\",e)}}),[r,y,h,s]),(0,e.useEffect)((function(){if(y){var e=function(){var e=R(Z().mark((function e(){return Z().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,y.showPlacemarks({markers:r,zoom:n});case 2:E(!0);case 3:case\"end\":return e.stop()}}),e)})));return function(){return e.apply(this,arguments)}}();e()}})),r?e.createElement(fy,{isError:Ny.status===ky.Error,text:My(\"map-load-error\"),buttonText:My(\"map-try-again\"),handler:C,className:Ey(\"wrapper\"),__self:Sy,__source:{fileName:jy,lineNumber:102,columnNumber:9}},e.createElement(\"div\",{className:Ey(\"wrapper\"),__self:Sy,__source:{fileName:jy,lineNumber:109,columnNumber:13}},e.createElement(\"div\",{id:d,className:Ey({hidden:!S}),ref:x,style:{height:g},__self:Sy,__source:{fileName:jy,lineNumber:111,columnNumber:17}}),N?e.createElement(cy,{size:\"xl\",className:Ey(\"spinner\"),__self:Sy,__source:{fileName:jy,lineNumber:112,columnNumber:28}}):null)):null};var Iy=r(4374),Cy={insert:\"head\",singleton:!1};o()(Iy.Z,Cy);Iy.Z.locals;var Py=\"/home/runner/work/page-constructor/page-constructor/src/components/Map/Map.tsx\",Ay=void 0;const Dy=function(t){switch((0,e.useContext)(v).type){case y.Yandex:return e.createElement(Oy,Object.assign({},t,{__self:Ay,__source:{fileName:Py,lineNumber:16,columnNumber:20}}));case y.Google:return e.createElement(ny,Object.assign({},t,{__self:Ay,__source:{fileName:Py,lineNumber:18,columnNumber:20}}));default:return null}};var Ty=[\"map\"],zy=\"/home/runner/work/page-constructor/page-constructor/src/blocks/Map/Map.tsx\",By=void 0;const Ry=function(t){var r=t.map,n=L(t,Ty);return e.createElement(mf,Object.assign({},n,{__self:By,__source:{fileName:zy,lineNumber:8,columnNumber:5}}),e.createElement(mf.Card,{__self:By,__source:{fileName:zy,lineNumber:9,columnNumber:9}},e.createElement(Dy,Object.assign({},r,{__self:By,__source:{fileName:zy,lineNumber:10,columnNumber:13}}))))};var Fy=e.createContext({blockTypes:[],subBlockTypes:[],headerBlockTypes:[],itemMap:{}}),Uy=[\"children\"];function Zy(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}var Yy=function(t){var r,n=t.children,o=L(t,Uy),i=null===(r=(0,e.useContext)(Fy).customization)||void 0===r||null===(r=r.decorators)||void 0===r?void 0:r.block,a=i?i.reduce((function(e,t){return t(function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Zy(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Zy(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({children:e},o))}),n):n;return e.createElement(e.Fragment,{__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/customization/BlockDecoration.tsx\",lineNumber:19,columnNumber:12}},a)},Wy=[\"type\"],Vy=\"/home/runner/work/page-constructor/page-constructor/src/containers/PageConstructor/components/ConstructorItem/ConstructorItem.tsx\",Qy=void 0,Hy=function(t){var r=t.data,n=t.blockKey,o=t.children,i=(0,e.useContext)(Fy).itemMap,a=r.type,c=L(r,Wy),l=i[a];return e.createElement(De.Provider,{value:n,__self:Qy,__source:{fileName:Vy,lineNumber:22,columnNumber:9}},e.createElement(l,Object.assign({},c,{__self:Qy,__source:{fileName:Vy,lineNumber:23,columnNumber:13}}),o))},Gy=function(t){var r=t.data,n=t.blockKey;return e.createElement(Yy,{type:r.type,__self:Qy,__source:{fileName:Vy,lineNumber:32,columnNumber:5}},e.createElement(Hy,{data:r,key:r.type,blockKey:n,__self:Qy,__source:{fileName:Vy,lineNumber:33,columnNumber:9}}))};const qy=pt({en:JSON.parse('{\"label-all-tag\":\"All\"}'),ru:JSON.parse('{\"label-all-tag\":\"Все\"}')},\"FilterBlock\");var $y=r(8897),Xy={insert:\"head\",singleton:!1};o()($y.Z,Xy);$y.Z.locals;var Ky=\"/home/runner/work/page-constructor/page-constructor/src/blocks/FilterBlock/FilterBlock.tsx\",Jy=void 0,eh=z(\"filter-block\");const th=function(t){var r=t.title,n=t.description,o=t.tags,i=t.tagButtonSize,a=t.allTag,c=t.items,l=t.colSizes,s=t.centered,u=t.animated,p=(0,e.useMemo)((function(){var e=a?{id:null,title:\"boolean\"==typeof a?qy(\"label-all-tag\"):a}:void 0,t=o&&o.map((function(e){return{id:e.id,title:e.label}}));return[].concat(D(e?[e]:[]),D(t||[]))}),[a,o]),d=F((0,e.useState)(p.length?p[0].id:null),2),f=d[0],m=d[1],y=(0,e.useMemo)((function(){return p.length&&!p.find((function(e){return e.id===f}))?p[0].id:f}),[p,f]),h=(0,e.useMemo)((function(){return(y?c.filter((function(e){return e.tags.includes(y)})):c).map((function(e){return e.card}))}),[y,c]);return e.createElement(ye,{className:eh(),animate:u,__self:Jy,__source:{fileName:Ky,lineNumber:54,columnNumber:9}},r&&e.createElement(us,{className:eh(\"title\",{centered:s}),title:r,subtitle:n,__self:Jy,__source:{fileName:Ky,lineNumber:56,columnNumber:17}}),p.length&&e.createElement(yu,{__self:Jy,__source:{fileName:Ky,lineNumber:63,columnNumber:17}},e.createElement(wl,{__self:Jy,__source:{fileName:Ky,lineNumber:64,columnNumber:21}},e.createElement(Wf,{className:eh(\"tabs\",{centered:s}),items:p,activeTab:f,onSelectTab:m,tabSize:i,__self:Jy,__source:{fileName:Ky,lineNumber:65,columnNumber:25}}))),e.createElement(yu,{className:eh(\"block-container\"),__self:Jy,__source:{fileName:Ky,lineNumber:75,columnNumber:13}},e.createElement(Lm,{title:\"\",colSizes:l,__self:Jy,__source:{fileName:Ky,lineNumber:76,columnNumber:17}},h.map((function(t,r){var n=Cl(t,r);return e.createElement(Hy,{data:t,blockKey:n,key:n,__self:Jy,__source:{fileName:Ky,lineNumber:80,columnNumber:32}})})))))};var rh=function(e){return e.Divider=\"divider\",e.Quote=\"quote\",e.PriceDetailed=\"price-detailed\",e.MediaCard=\"media-card\",e.BannerCard=\"banner-card\",e.LayoutItem=\"layout-item\",e.BackgroundCard=\"background-card\",e.BasicCard=\"basic-card\",e.Content=\"content\",e.HubspotForm=\"hubspot-form\",e.Card=\"card\",e}({}),nh=Object.values(rh),oh=r(4858),ih={insert:\"head\",singleton:!1};o()(oh.Z,ih);oh.Z.locals;var ah=z(\"divider-block\");const ch=function(t){var r=t.size,n=void 0===r?\"m\":r,o=t.border;return e.createElement(\"div\",{className:ah({size:n,border:o}),__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/Divider/Divider.tsx\",lineNumber:10,columnNumber:57}})};var lh=r(3376),sh={insert:\"head\",singleton:!1};o()(lh.Z,sh);lh.Z.locals;var uh=\"/home/runner/work/page-constructor/page-constructor/src/components/CardBase/CardBase.tsx\",ph=void 0,dh=z(\"card-base-block\"),fh=function(){return null},mh=function(){return null},yh=function(){return null},hh=function(t){var r,n,o,i,a,c,l=t.className,s=t.bodyClassName,u=t.metrikaGoals,p=t.pixelEvents,d=t.analyticsEvents,f=t.contentClassName,m=t.children,y=t.url,h=t.target,b=t.border,v=void 0===b?\"shadow\":b,g=Pu(),_=Fe(ze.CardBase,y);function w(e){switch(e.type){case fh:r=e.props.children,i=e.props.image,a=e.props.className;break;case mh:n=e.props.children;break;case yh:o=e.props.children,c=e.props.className}}1===e.Children.count(m)?w(m):e.Children.forEach(m,w);var x=e.createElement(e.Fragment,{__self:ph,__source:{fileName:uh,lineNumber:86,columnNumber:9}},(r||i)&&e.createElement(Rs,Object.assign({className:dh(\"header\",a)},\"string\"==typeof i?{src:i}:i,{__self:ph,__source:{fileName:uh,lineNumber:88,columnNumber:17}}),e.createElement(\"div\",{className:dh(\"header-content\"),__self:ph,__source:{fileName:uh,lineNumber:92,columnNumber:21}},r)),e.createElement(\"div\",{className:dh(\"body\",s),__self:ph,__source:{fileName:uh,lineNumber:95,columnNumber:13}},e.createElement(\"div\",{className:dh(\"content\",f),__self:ph,__source:{fileName:uh,lineNumber:96,columnNumber:17}},n),o&&e.createElement(\"div\",{className:dh(\"footer\",c),__self:ph,__source:{fileName:uh,lineNumber:97,columnNumber:28}},o))),k=dh({border:v},l);return y?e.createElement(kd,{href:y,__self:ph,__source:{fileName:uh,lineNumber:110,columnNumber:9}},e.createElement(\"a\",{href:y,target:h,rel:\"_blank\"===h?\"noopener noreferrer\":void 0,className:k,draggable:!1,onDragStart:function(e){return e.preventDefault()},onClick:function(){g({metrikaGoals:u,pixelEvents:p}),_(d)},__self:ph,__source:{fileName:uh,lineNumber:111,columnNumber:13}},x)):e.createElement(\"div\",{className:k,__self:ph,__source:{fileName:uh,lineNumber:124,columnNumber:9}},x)};hh.Header=fh,hh.Content=mh,hh.Footer=yh;const bh=hh;var vh=r(6425),gh={insert:\"head\",singleton:!1};o()(vh.Z,gh);vh.Z.locals;var _h,wh=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/PriceDetailed/CombinedPriceDetailed/CombinedPriceDetailed.tsx\",xh=void 0,kh=z(\"combined-price-detailed-block\"),Nh=(C(_h={},ll.Sm,1),C(_h,ll.Md,2),C(_h,ll.Lg,3),_h);const Mh=function(t){var r=t.items,n=t.numberGroupItems,o=t.border,i=t.useMixedView,a=t.getDescriptionComponent,c=t.getDetailsComponent,l=F((0,e.useState)(n),2),s=l[0],u=l[1],p=(0,e.useCallback)((function(e){u(e>=et.lg?n:et.lg>e&&e>=et.md?Nh[ll.Lg]:et.md>e&&e>=et.sm?Nh[ll.Md]:Nh[ll.Sm])}),[n]);(0,e.useEffect)((function(){function e(){p(window.innerWidth)}return e(),window.addEventListener(\"resize\",e,{passive:!0}),function(){return window.removeEventListener(\"resize\",e)}}),[p]);var d=Se().chunk(r,s);return e.createElement(bh,{className:kh(),border:o,__self:xh,__source:{fileName:wh,lineNumber:106,columnNumber:9}},e.createElement(bh.Content,{__self:xh,__source:{fileName:wh,lineNumber:107,columnNumber:13}},e.createElement($d,{__self:xh,__source:{fileName:wh,lineNumber:108,columnNumber:17}},d.map((function(t,r){return e.createElement(yu,{key:r,className:kh(\"row\"),__self:xh,__source:{fileName:wh,lineNumber:111,columnNumber:29}},function(t){for(var r=Array(s),n=Array(s),o=0;o<s;o++){var l=t[o];r[o]=e.createElement(wl,{key:\"card_\".concat(o),__self:xh,__source:{fileName:wh,lineNumber:84,columnNumber:17}},l&&a(l)),n[o]=e.createElement(wl,{key:\"details_\".concat(o),className:l?\"\":kh(\"empty-column\"),__self:xh,__source:{fileName:wh,lineNumber:87,columnNumber:17}},l&&c(l.items))}return e.createElement(e.Fragment,{__self:xh,__source:{fileName:wh,lineNumber:94,columnNumber:13}},e.createElement(\"div\",{__self:xh,__source:{fileName:wh,lineNumber:95,columnNumber:17}},r),e.createElement(\"div\",{className:kh(\"description\",{delimiter:i}),__self:xh,__source:{fileName:wh,lineNumber:96,columnNumber:17}},n))}(t))})))))};var jh=r(3408),Sh={insert:\"head\",singleton:!1};o()(jh.Z,Sh);jh.Z.locals;var Eh=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/PriceDetailed/PriceDescription/PriceDescription.tsx\",Lh=void 0,Oh=z(\"price-description\");const Ih=function(t){var r=t.title,n=t.detailedTitle,o=void 0===n?\"\":n,i=t.description,a=t.titleSize,c=void 0===a?\"l\":a,l=t.descriptionSize,s=void 0===l?\"m\":l,u=t.colorTitle,p=void 0===u?\"cornflower\":u,d=t.label,f=t.labelsDefaultText,m=t.className,y=e.useRef(null),h=(0,e.useContext)(ps),b=h.pricesDetailedDescriptionHeight,v=h.setStyles,g=(0,e.useCallback)((function(){var e;if(y&&y.current){var t=null===(e=y.current)||void 0===e?void 0:e.children;if(t){var r=D(t).reduce((function(e,t){return e+t.clientHeight}),0);void 0===b||Number(b)<r?v({pricesDetailedDescriptionHeight:r.toString()}):r<Number(b)&&(y.current.style.height=\"\".concat(b,\"px\"))}}}),[b,v]);(0,e.useEffect)((function(){return g(),window.addEventListener(\"resize\",g,{passive:!0}),function(){return window.removeEventListener(\"resize\",g)}}),[g]);var _=(0,e.useMemo)((function(){if(!d)return null;var t=d.text||f&&f[d.color];return e.createElement(\"div\",{className:Oh(\"label\",{color:d.color,size:d.size||s}),__self:Lh,__source:{fileName:Eh,lineNumber:82,columnNumber:13}},t)}),[s,d,f]),w=(0,e.useMemo)((function(){return e.createElement(\"div\",{className:Oh(\"title\",{size:c}),__self:Lh,__source:{fileName:Eh,lineNumber:90,columnNumber:13}},e.createElement(\"div\",{className:Oh(\"main-title\",{color:p}),__self:Lh,__source:{fileName:Eh,lineNumber:91,columnNumber:17}},r),e.createElement(\"div\",{className:Oh(\"detailed-title\",{size:s}),__self:Lh,__source:{fileName:Eh,lineNumber:92,columnNumber:17}},o))}),[p,s,o,r,c]);return e.createElement(\"div\",{className:Oh(null,m),ref:y,__self:Lh,__source:{fileName:Eh,lineNumber:98,columnNumber:9}},_,w,e.createElement(\"div\",{className:Oh(\"description\",{size:s}),__self:Lh,__source:{fileName:Eh,lineNumber:101,columnNumber:13}},e.createElement(Fl,{content:i,modifiers:{constructor:!0},__self:Lh,__source:{fileName:Eh,lineNumber:102,columnNumber:17}})))};var Ch=r(6932),Ph={insert:\"head\",singleton:!1};o()(Ch.Z,Ph);Ch.Z.locals;var Ah=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/PriceDetailed/PriceDetails/Details/List.tsx\",Dh=void 0,Th=z(\"marked-list\");const zh=function(t){var r=t.items,n=void 0===r?[]:r,o=t.titleSize,i=void 0===o?\"s\":o;return e.createElement(e.Fragment,{__self:Dh,__source:{fileName:Ah,lineNumber:20,columnNumber:9}},n.map((function(t,r){return e.createElement(\"div\",{key:r,className:Th(\"list-item\"),__self:Dh,__source:{fileName:Ah,lineNumber:22,columnNumber:17}},e.createElement(\"img\",{className:Th(\"img\"),__self:Dh,__source:{fileName:Ah,lineNumber:23,columnNumber:21}}),e.createElement(\"div\",{className:Th(\"text\",{size:i}),__self:Dh,__source:{fileName:Ah,lineNumber:24,columnNumber:21}},e.createElement(Fl,{content:t.text,modifiers:{constructor:!0},__self:Dh,__source:{fileName:Ah,lineNumber:25,columnNumber:25}})))})))};var Bh=r(2592),Rh={insert:\"head\",singleton:!1};o()(Bh.Z,Rh);Bh.Z.locals;var Fh=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/PriceDetailed/PriceDetails/Details/Settings.tsx\",Uh=void 0,Zh=z(\"settings-list\");const Yh=function(t){var r=t.items,n=void 0===r?[]:r,o=t.titleSize,i=void 0===o?\"s\":o,a=t.descriptionSize,c=void 0===a?\"m\":a;return e.createElement(e.Fragment,{__self:Uh,__source:{fileName:Fh,lineNumber:21,columnNumber:9}},n.map((function(t,r){return e.createElement(\"div\",{key:r,__self:Uh,__source:{fileName:Fh,lineNumber:23,columnNumber:17}},e.createElement(\"div\",{className:Zh(\"title\",{size:i}),__self:Uh,__source:{fileName:Fh,lineNumber:24,columnNumber:21}},t.title),e.createElement(\"div\",{className:Zh(\"description\",{size:c}),__self:Uh,__source:{fileName:Fh,lineNumber:25,columnNumber:21}},e.createElement(Fl,{content:t.description,modifiers:{constructor:!0},__self:Uh,__source:{fileName:Fh,lineNumber:26,columnNumber:25}})))})))};var Wh=r(3861),Vh={insert:\"head\",singleton:!1};o()(Wh.Z,Vh);Wh.Z.locals;var Qh=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/PriceDetailed/PriceDetails/PriceDetails.tsx\",Hh=void 0,Gh=z(\"price-details\");const qh=function(t){var r=F((0,e.useState)(!1),2),n=r[0],o=r[1],i=(0,e.useCallback)((function(){o(!n)}),[n]),a=t.items,c=void 0===a?[]:a,l=t.type,s=void 0===l?pn.SETTINGS:l,u=t.titleSize,p=void 0===u?\"s\":u,d=t.descriptionSize,f=void 0===d?\"m\":d,m=t.foldable,y=t.useMixedView,h=t.className,b=m||{},v=b.title,g=b.size,_=void 0===g?f:g,w=b.titleColor,x=void 0===w?\"cornflower\":w,k=function(){return e.createElement(\"div\",{className:Gh(\"foldable_block\"),__self:Hh,__source:{fileName:Qh,lineNumber:69,columnNumber:16}},function(){switch(s){case pn.MARKED_LIST:return e.createElement(zh,{items:c,titleSize:p,__self:Hh,__source:{fileName:Qh,lineNumber:55,columnNumber:24}});case pn.SETTINGS:default:return e.createElement(Yh,{items:c,titleSize:p,descriptionSize:f,__self:Hh,__source:{fileName:Qh,lineNumber:59,columnNumber:21}})}}())},N=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return e.createElement(\"div\",{className:t,__self:Hh,__source:{fileName:Qh,lineNumber:87,columnNumber:13}},e.createElement(\"div\",{className:Gh(\"foldable_title\",{color:x,size:_}),onClick:i,__self:Hh,__source:{fileName:Qh,lineNumber:74,columnNumber:13}},v,e.createElement($l,{open:n,size:14,type:\"vertical\",className:Gh(\"arrow\"),__self:Hh,__source:{fileName:Qh,lineNumber:80,columnNumber:17}})),e.createElement(cd,{isOpened:n,__self:Hh,__source:{fileName:Qh,lineNumber:89,columnNumber:17}},k()))},M=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\";return e.createElement(\"div\",{className:t,__self:Hh,__source:{fileName:Qh,lineNumber:95,columnNumber:16}},k())};return e.createElement(\"div\",{className:Gh(null,h),__self:Hh,__source:{fileName:Qh,lineNumber:116,columnNumber:9}},y?m?e.createElement(e.Fragment,{__self:Hh,__source:{fileName:Qh,lineNumber:101,columnNumber:17}},N(Gh(\"foldable\")),M(Gh(\"non_foldable\"))):M(Gh(\"delimiter-line\")):m?N():M(Gh(\"delimiter-line\")))};var $h=r(1085),Xh={insert:\"head\",singleton:!1};o()($h.Z,Xh);$h.Z.locals;var Kh=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/PriceDetailed/SeparatePriceDetailed/SeparatePriceDetailed.tsx\",Jh=void 0,eb=z(\"separate-price-detailed-block\");const tb=function(t){var r=t.items,n=t.border,o=t.getDescriptionComponent,i=t.getDetailsComponent;return e.createElement(e.Fragment,{__self:Jh,__source:{fileName:Kh,lineNumber:30,columnNumber:9}},r.map((function(t,r){return e.createElement(bh,{key:r,className:eb(),border:n,__self:Jh,__source:{fileName:Kh,lineNumber:32,columnNumber:17}},e.createElement(bh.Content,{__self:Jh,__source:{fileName:Kh,lineNumber:33,columnNumber:21}},o(t),i(t.items)))})))};var rb=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/PriceDetailed/PriceDetailed.tsx\",nb=void 0;const ob=function(t){var r=t.priceType,n=void 0===r?pn.SETTINGS:r,o=t.items,i=t.numberGroupItems,a=void 0===i?1:i,c=t.description,l=t.details,s=t.foldable,u=t.labelsDefaultText,p=t.isCombined,d=void 0!==p&&p,f=t.useMixedView,m=void 0!==f&&f,y=t.border,h=c||{},b=h.titleSize,v=void 0===b?\"l\":b,g=h.descriptionSize,_=void 0===g?\"m\":g,w=h.titleColor,x=void 0===w?\"cornflower\":w,k=l||{},N=k.titleSize,M=void 0===N?\"s\":N,j=k.descriptionSize,S=void 0===j?\"m\":j,E=function(t){return e.createElement(Ih,Object.assign({},t,{titleSize:v,descriptionSize:_,colorTitle:x,labelsDefaultText:u,__self:nb,__source:{fileName:rb,lineNumber:41,columnNumber:13}}))},L=function(t){return e.createElement(qh,{items:t,type:n,foldable:s,titleSize:M,descriptionSize:S,useMixedView:m,__self:nb,__source:{fileName:rb,lineNumber:55,columnNumber:13}})};return e.createElement(e.Fragment,{__self:nb,__source:{fileName:rb,lineNumber:67,columnNumber:9}},d?e.createElement(Mh,{items:o,numberGroupItems:a,border:y,useMixedView:m,getDescriptionComponent:E,getDetailsComponent:L,__self:nb,__source:{fileName:rb,lineNumber:69,columnNumber:17}}):e.createElement(tb,{items:o,border:y,getDescriptionComponent:E,getDetailsComponent:L,__self:nb,__source:{fileName:rb,lineNumber:78,columnNumber:17}}))};var ib=r(4606),ab={insert:\"head\",singleton:!1};o()(ib.Z,ab);ib.Z.locals;var cb=[\"border\"],lb=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/MediaCard/MediaCard.tsx\",sb=void 0,ub=z(\"MediaCard\");const pb=function(t){var r=t.border,n=L(t,cb);return e.createElement(bh,{className:ub(),bodyClassName:ub(\"body\"),border:r,__self:sb,__source:{fileName:lb,lineNumber:12,columnNumber:5}},e.createElement(bh.Content,{__self:sb,__source:{fileName:lb,lineNumber:13,columnNumber:9}},e.createElement(iu,Object.assign({},n,{__self:sb,__source:{fileName:lb,lineNumber:14,columnNumber:13}}))))};var db=r(9615),fb={insert:\"head\",singleton:!1};o()(db.Z,fb);db.Z.locals;var mb=\"/home/runner/work/page-constructor/page-constructor/src/components/MetaInfo/MetaInfo.tsx\",yb=void 0,hb=z(\"meta-info\");const bb=function(t){var r=t.items,n=t.className;return e.createElement(\"h4\",{className:hb(null,n),__self:yb,__source:{fileName:mb,lineNumber:16,columnNumber:5}},r.map((function(t){return e.createElement(\"span\",{key:t,className:hb(\"item\"),__self:yb,__source:{fileName:mb,lineNumber:18,columnNumber:13}},t)})))};function vb(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}var gb=function(e){return null==e?void 0:e.map((function(e){return function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?vb(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):vb(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({theme:\"normal\"},e)}))},_b=r(9766),wb={insert:\"head\",singleton:!1};o()(_b.Z,wb);_b.Z.locals;var xb=[\"links\"],kb=[\"className\",\"fullscreen\"],Nb=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/LayoutItem/LayoutItem.tsx\",Mb=void 0,jb=z(\"layout-item\");const Sb=function(t){var r,n=t.content,o=n.links,i=L(n,xb),a=t.metaInfo,c=t.media,l=t.border,s=t.fullscreen,u=t.className;return e.createElement(\"div\",{className:jb(null,u),__self:Mb,__source:{fileName:Nb,lineNumber:22,columnNumber:5}},s&&function(e){var t=e.dataLens,r=e.image;return!(t||Array.isArray(r))}(c)?e.createElement(sn,{showFullscreenIcon:(r=c,!r.youtube),__self:Mb,__source:{fileName:Nb,lineNumber:24,columnNumber:13}},(function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=t.className,n=(t.fullscreen,L(t,kb));return e.createElement(iu,Object.assign({},c,n,{className:jb(\"media\",{border:l},r),__self:Mb,__source:{fileName:Nb,lineNumber:30,columnNumber:21}}))})):e.createElement(iu,Object.assign({},c,{className:jb(\"media\",{border:l}),__self:Mb,__source:{fileName:Nb,lineNumber:38,columnNumber:13}})),a&&e.createElement(bb,{items:a,className:jb(\"meta-info\"),__self:Mb,__source:{fileName:Nb,lineNumber:40,columnNumber:22}}),e.createElement(\"div\",{className:jb(\"content\"),__self:Mb,__source:{fileName:Nb,lineNumber:41,columnNumber:9}},e.createElement(Np,Object.assign({},i,{links:gb(o),size:\"s\",colSizes:{all:12,md:12},__self:Mb,__source:{fileName:Nb,lineNumber:42,columnNumber:13}}))))};var Eb=r(4620),Lb={insert:\"head\",singleton:!1};o()(Eb.Z,Lb);Eb.Z.locals;var Ob=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/BackgroundCard/BackgroundCard.tsx\",Ib=void 0,Cb=z(\"background-card\");const Pb=function(t){var r=t.url,n=t.title,o=t.text,i=t.border,a=t.background,c=t.paddingBottom,l=t.backgroundColor,s=t.additionalInfo,u=t.theme,p=void 0===u?\"default\":u,d=t.links,f=t.buttons,m=(0,e.useContext)(N).themeValue,y=l||\"default\"!==p,h=y||\"line\"===i?void 0:r,b=y?\"none\":i;return e.createElement(bh,{className:Cb({padding:c,theme:p}),url:h,border:b,__self:Ib,__source:{fileName:Ob,lineNumber:34,columnNumber:9}},e.createElement(bh.Content,{__self:Ib,__source:{fileName:Ob,lineNumber:39,columnNumber:13}},e.createElement(Rs,Object.assign({className:Cb(\"image\")},Mp(a,m),{style:{backgroundColor:l},__self:Ib,__source:{fileName:Ob,lineNumber:40,columnNumber:17}})),e.createElement(Np,{title:n,text:o,additionalInfo:s,size:\"s\",theme:p,links:d,buttons:f,colSizes:{all:12,md:12},__self:Ib,__source:{fileName:Ob,lineNumber:45,columnNumber:17}})))};var Ab=r(5693),Db={insert:\"head\",singleton:!1};o()(Ab.Z,Db);Ab.Z.locals;var Tb=[\"title\",\"text\",\"icon\",\"additionalInfo\",\"links\",\"buttons\"],zb=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/BasicCard/BasicCard.tsx\",Bb=void 0,Rb=z(\"basic-card\");const Fb=function(t){var r=t.title,n=t.text,o=t.icon,i=t.additionalInfo,a=t.links,c=t.buttons,l=L(t,Tb),s=o&&Hs(o);return e.createElement(bh,Object.assign({className:Rb()},l,{__self:Bb,__source:{fileName:zb,lineNumber:19,columnNumber:9}}),e.createElement(bh.Content,{__self:Bb,__source:{fileName:zb,lineNumber:20,columnNumber:13}},s&&e.createElement(ht,Object.assign({},s,{className:Rb(\"icon\"),__self:Bb,__source:{fileName:zb,lineNumber:21,columnNumber:31}})),e.createElement(Np,{title:r,text:n,additionalInfo:i,links:a,buttons:c,colSizes:{all:12,md:12},size:\"s\",__self:Bb,__source:{fileName:zb,lineNumber:22,columnNumber:17}})))};var Ub=r(5265),Zb={insert:\"head\",singleton:!1};o()(Ub.Z,Zb);Ub.Z.locals;var Yb=\"/home/runner/work/page-constructor/page-constructor/src/components/Author/Author.tsx\",Wb=void 0,Vb=z(\"author\");const Qb=function(t){var r=t.author,n=t.className,o=t.authorContainerClassName,i=t.type,a=void 0===i?un.Column:i,c=t.dataQa,l=r.firstName,s=r.secondName,u=r.description,p=r.avatar,d=s?\"\".concat(l,\" \").concat(s):l;return e.createElement(\"div\",{className:Vb({type:a},n),\"data-qa\":c,__self:Wb,__source:{fileName:Yb,lineNumber:18,columnNumber:9}},p&&e.createElement(\"div\",{className:Vb(\"avatar\",o),__self:Wb,__source:{fileName:Yb,lineNumber:20,columnNumber:17}},\"string\"==typeof p?e.createElement(ht,{src:p,__self:Wb,__source:{fileName:Yb,lineNumber:21,columnNumber:51}}):p),e.createElement(\"div\",{className:Vb(\"label\"),__self:Wb,__source:{fileName:Yb,lineNumber:24,columnNumber:13}},e.createElement(\"div\",{className:Vb(\"name\"),__self:Wb,__source:{fileName:Yb,lineNumber:25,columnNumber:17}},d),u&&e.createElement(\"div\",{className:Vb(\"description\"),__self:Wb,__source:{fileName:Yb,lineNumber:26,columnNumber:33}},u)))};var Hb=r(8994),Gb={insert:\"head\",singleton:!1};o()(Hb.Z,Gb);Hb.Z.locals;var qb=\"/home/runner/work/page-constructor/page-constructor/src/sub-blocks/Quote/Quote.tsx\",$b=void 0,Xb=z(\"quote\");const Kb=function(t){var r=t.theme,n=void 0===r?\"light\":r,o=t.color,i=t.image,a=t.border,c=void 0===a?\"shadow\":a,l=t.text,s=t.logo,u=t.author,p=t.url,d=t.buttonText,f=Hs(Mp(i,(0,e.useContext)(N).themeValue)),m=Fe(ze.QuoteButton,p),y=(0,e.useCallback)((function(){return m()}),[m]),h=Boolean(u||p)&&e.createElement(\"div\",{className:Xb(\"author-wrapper\"),__self:$b,__source:{fileName:qb,lineNumber:36,columnNumber:9}},u&&e.createElement(Qb,{className:Xb(\"author\",{theme:n}),author:u,type:un.Line,__self:$b,__source:{fileName:qb,lineNumber:38,columnNumber:17}}),p&&d&&e.createElement(Ou,{view:\"outlined\",size:\"xl\",href:p,className:Xb(\"link-button\",{theme:n}),onClick:y,__self:$b,__source:{fileName:qb,lineNumber:45,columnNumber:17}},d));return e.createElement(\"div\",{className:Xb({theme:n,border:c}),style:o?{backgroundColor:o}:{},__self:$b,__source:{fileName:qb,lineNumber:59,columnNumber:9}},e.createElement(\"div\",{key:l,className:Xb(\"content-wrapper\"),__self:$b,__source:{fileName:qb,lineNumber:63,columnNumber:13}},e.createElement(\"div\",{__self:$b,__source:{fileName:qb,lineNumber:64,columnNumber:17}},e.createElement(ht,{className:Xb(\"logo\"),src:s,__self:$b,__source:{fileName:qb,lineNumber:65,columnNumber:21}}),e.createElement(\"div\",{className:Xb(\"content\"),__self:$b,__source:{fileName:qb,lineNumber:66,columnNumber:21}},e.createElement(\"span\",{className:Xb(\"text\"),__self:$b,__source:{fileName:qb,lineNumber:67,columnNumber:25}},e.createElement(Bl,{__self:$b,__source:{fileName:qb,lineNumber:68,columnNumber:29}},l)))),h),e.createElement(\"div\",{className:Xb(\"image-wrapper\"),__self:$b,__source:{fileName:qb,lineNumber:74,columnNumber:13}},e.createElement(ht,Object.assign({},f,{className:Xb(\"image\"),__self:$b,__source:{fileName:qb,lineNumber:75,columnNumber:17}}))))};var Jb,ev,tv=(C(Jb={},Nl.SliderBlock,Ps),C(Jb,Nl.ExtendedFeaturesBlock,Cp),C(Jb,Nl.PromoFeaturesBlock,Jp),C(Jb,Nl.QuestionsBlock,_d),C(Jb,Nl.BannerBlock,Td),C(Jb,Nl.CompaniesBlock,Zd),C(Jb,Nl.MediaBlock,bf),C(Jb,Nl.InfoBlock,jf),C(Jb,Nl.TableBlock,Bf),C(Jb,Nl.TabsBlock,$f),C(Jb,Nl.HeaderBlock,sm),C(Jb,Nl.IconsBlock,ym),C(Jb,Nl.HeaderSliderBlock,xm),C(Jb,Nl.CardLayoutBlock,Lm),C(Jb,Nl.ContentLayoutBlock,Tm),C(Jb,Nl.ShareBlock,ey),C(Jb,Nl.MapBlock,Ry),C(Jb,Nl.FilterBlock,th),Jb),rv=(C(ev={},rh.Divider,ch),C(ev,rh.PriceDetailed,ob),C(ev,rh.MediaCard,pb),C(ev,rh.BannerCard,Ld),C(ev,rh.LayoutItem,Sb),C(ev,rh.BackgroundCard,Pb),C(ev,rh.BasicCard,Fb),C(ev,rh.Content,Np),C(ev,rh.Quote,Kb),ev),nv=function(e){return e.Link=\"link\",e.Dropdown=\"dropdown\",e.Button=\"button\",e.Social=\"social\",e.GithubButton=\"github-button\",e}({}),ov=function(e){return e.heart=\"octicon-heart\",e.eye=\"octicon-eye\",e.star=\"octicon-star\",e.fork=\"octicon-repo-forked\",e.issue=\"octicon-issue-opened\",e.comment=\"octicon-comment-discussion\",e.download=\"octicon-download\",e.package=\"octicon-package\",e.template=\"octicon-repo-template\",e.play=\"octicon-play\",e}({});function iv(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function av(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20;return function t(r){var n=function(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?iv(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):iv(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}({},r);return\"items\"in n&&function(e){return e.type===nv.Dropdown}(n)&&(n.items=n.items.map(t)),\"iconSize\"in n||function(e){return e.type===nv.Button}(n)||(n.iconSize=e),n}}var cv=r(6109),lv={insert:\"head\",singleton:!1};o()(cv.Z,lv);cv.Z.locals;var sv=\"/home/runner/work/page-constructor/page-constructor/src/components/OverflowScroller/OverflowScroller.tsx\";function uv(e){var t=function(){if(\"undefined\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\"function\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=il(e);if(t){var o=il(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return ol(this,r)}}var pv=z(\"overflow-scroller\"),dv=function(t){nl(n,t);var r=uv(n);function n(){var t;Jc(this,n);for(var o=arguments.length,i=new Array(o),a=0;a<o;a++)i[a]=arguments[a];return C(rl(t=r.call.apply(r,[this].concat(i))),\"state\",{arrows:[],scrollValue:0}),C(rl(t),\"containerRef\",(0,e.createRef)()),C(rl(t),\"wrapperRef\",(0,e.createRef)()),C(rl(t),\"checkOverflow\",Se().debounce((function(){if(t.containerRef&&t.containerRef.current&&t.wrapperRef&&t.wrapperRef.current){var e=t.containerRef.current.offsetWidth,r=t.wrapperRef.current.offsetWidth<e?[]:[\"right\"];t.setState({scrollValue:0,arrows:r})}}),100)),C(rl(t),\"handleScrollClick\",(function(e,r){var n=t.state,o=n.scrollValue,i=n.arrows,a=t.props.onScrollStart;if(t.containerRef&&t.containerRef.current&&t.wrapperRef&&t.wrapperRef.current){var c=t.containerRef.current.offsetWidth,l=t.wrapperRef.current.offsetWidth,s=\"right\"===r?l-(c+o):o,u=i.length>1&&s+24>c?24:0,p=c>s?s:c,d=\"right\"===r?o+p+u:o-p-u,f=[\"left\",\"right\"];d+c>=l?f=[\"left\"]:d||(f=[\"right\"]),t.setState({arrows:f,scrollValue:d}),a&&a(),e.stopPropagation()}})),t}return tl(n,[{key:\"componentDidMount\",value:function(){this.checkOverflow(),window.addEventListener(\"resize\",this.checkOverflow,{passive:!0})}},{key:\"componentDidUpdate\",value:function(e,t){var r=t.scrollValue,n=this.props.onScrollEnd;r!==this.state.scrollValue&&n&&setTimeout(n,400)}},{key:\"componentWillUnmount\",value:function(){window.removeEventListener(\"resize\",this.checkOverflow)}},{key:\"render\",value:function(){var t=this,r=this.props,n=r.className,o=r.arrowClassName,i=r.children,a=r.arrowSize,c=void 0===a?18:a,l=this.state,s=l.arrows,u=l.scrollValue,p=s.length?{left:-u}:{left:0},d=s.includes(\"left\"),f=s.includes(\"right\");return e.createElement(\"div\",{className:pv(\"container\",{\"padding-left\":d,\"padding-right\":f}),__self:this,__source:{fileName:sv,lineNumber:69,columnNumber:13}},e.createElement(\"div\",{className:pv(null,n),ref:this.containerRef,__self:this,__source:{fileName:sv,lineNumber:75,columnNumber:17}},e.createElement(\"div\",{className:pv(\"wrapper\"),style:p,ref:this.wrapperRef,__self:this,__source:{fileName:sv,lineNumber:76,columnNumber:21}},i)),s.map((function(r){return e.createElement(\"div\",{key:r,className:pv(\"arrow\",{type:r},o),onClick:function(e){return t.handleScrollClick(e,r)},__self:t,__source:{fileName:sv,lineNumber:81,columnNumber:21}},e.createElement($l,{size:c,type:\"horizontal\",iconType:\"navigation\",__self:t,__source:{fileName:sv,lineNumber:86,columnNumber:25}}))})))}}]),n}(e.Component),fv=function(e){return e.Left=\"left\",e.Right=\"right\",e.Top=\"top\",e.Bottom=\"bottom\",e}({}),mv=function(e){return e.Desktop=\"desktop\",e.Mobile=\"mobile\",e.Dropdown=\"dropdown\",e}({}),yv=r(269),hv={insert:\"head\",singleton:!1};o()(yv.Z,hv);yv.Z.locals;var bv=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/Logo/Logo.tsx\",vv=void 0,gv=z(\"logo\");const _v=function(t){var r=Mp(t,(0,e.useContext)(N).themeValue)||t,n=Hs(r.icon||t.icon),o=r.text||t.text;return e.createElement(kd,{href:r.url||t.url||\"/\",passHref:!0,__self:vv,__source:{fileName:bv,lineNumber:25,columnNumber:9}},e.createElement(\"div\",{className:gv(null,t.className),__self:vv,__source:{fileName:bv,lineNumber:26,columnNumber:13}},n&&e.createElement(ht,Object.assign({className:gv(\"icon\")},n,{__self:vv,__source:{fileName:bv,lineNumber:27,columnNumber:31}})),e.createElement(\"span\",{className:gv(\"text\"),__self:vv,__source:{fileName:bv,lineNumber:28,columnNumber:17}},o)))};const wv=pt({en:JSON.parse('{\"aria-label\":\"Button label\"}'),ru:JSON.parse('{\"aria-label\":\"Лейбл кнопки\"}')},\"Control\");var xv=r(5875),kv={insert:\"head\",singleton:!1};o()(xv.Z,kv);xv.Z.locals;var Nv=\"/home/runner/work/page-constructor/page-constructor/src/components/Control/Control.tsx\",Mv=void 0,jv=z(\"control\");const Sv=function(t){var r=t.icon,n=t.theme,o=void 0===n?\"primary\":n,i=t.size,a=void 0===i?\"s\":i,c=t.iconSize,l=void 0===c?16:c,s=t.disabled,u=void 0!==s&&s,p=t.onClick,d=t.className;return e.createElement(\"button\",{type:\"button\",\"aria-label\":wv(\"aria-label\"),className:jv({size:a,theme:o,disabled:u},d),onClick:u?void 0:p,disabled:u,__self:Mv,__source:{fileName:Nv,lineNumber:36,columnNumber:9}},e.createElement(Me,{data:r,size:l,__self:Mv,__source:{fileName:Nv,lineNumber:43,columnNumber:13}}))};var Ev=\"/home/runner/work/page-constructor/page-constructor/src/icons/NavigationClose.tsx\",Lv=void 0,Ov=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",width:\"36\",height:\"36\",fill:\"none\"},Ue,t,{__self:Lv,__source:{fileName:Ev,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M26 10 10 26m16 0L10 10\",stroke:\"currentColor\",strokeWidth:\"2\",strokeLinecap:\"round\",__self:Lv,__source:{fileName:Ev,lineNumber:14,columnNumber:9}}))},Iv=\"/home/runner/work/page-constructor/page-constructor/src/icons/NavigationOpen.tsx\",Cv=void 0,Pv=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",width:\"36\",height:\"36\",fill:\"none\"},Ue,t,{__self:Cv,__source:{fileName:Iv,lineNumber:6,columnNumber:5}}),e.createElement(\"rect\",{x:\"8\",y:\"10\",width:\"20\",height:\"2\",rx:\"1\",fill:\"currentColor\",__self:Cv,__source:{fileName:Iv,lineNumber:14,columnNumber:9}}),e.createElement(\"rect\",{x:\"8\",y:\"17\",width:\"20\",height:\"2\",rx:\"1\",fill:\"currentColor\",__self:Cv,__source:{fileName:Iv,lineNumber:15,columnNumber:9}}),e.createElement(\"rect\",{x:\"8\",y:\"24\",width:\"20\",height:\"2\",rx:\"1\",fill:\"currentColor\",__self:Cv,__source:{fileName:Iv,lineNumber:16,columnNumber:9}}))},Av=r(7819),Dv={insert:\"head\",singleton:!1};o()(Av.Z,Dv);Av.Z.locals;var Tv=z(\"mobile-menu-button\"),zv=function(t){var r=t.isSidebarOpened,n=t.onSidebarOpenedChange;return e.createElement(Sv,{className:Tv(),onClick:function(e){e.stopPropagation(),n(!r)},size:\"l\",icon:r?Ov:Pv,iconSize:36,__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/MobileMenuButton/MobileMenuButton.tsx\",lineNumber:18,columnNumber:5}})},Bv=r(4873),Rv={insert:\"head\",singleton:!1};o()(Bv.Z,Rv);Bv.Z.locals;var Fv=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/SocialIcon/SocialIcon.tsx\",Uv=void 0,Zv=z(\"social-icon\");const Yv=function(t){var r=t.icon,n=t.url,o=t.className,i=Hs(r);return e.createElement(\"a\",{href:n,target:\"_blank\",rel:\"noopener noreferrer\",className:Zv(null,o),__self:Uv,__source:{fileName:Fv,lineNumber:20,columnNumber:9}},e.createElement(ht,Object.assign({className:Zv(\"icon\")},i,{__self:Uv,__source:{fileName:Fv,lineNumber:21,columnNumber:13}})))};var Wv=r(5828),Vv={insert:\"head\",singleton:!1};o()(Wv.Z,Vv);Wv.Z.locals;var Qv=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationItem/components/GithubButton/GithubButton.tsx\",Hv=void 0,Gv=z(\"github-button\"),qv=r(4594),$v={insert:\"head\",singleton:!1};o()(qv.Z,$v);qv.Z.locals;var Xv=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationItem/components/NavigationButton/NavigationButton.tsx\",Kv=void 0,Jv=z(\"navigation-button\");function eg(e){if(null==e)return window;if(\"[object Window]\"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function tg(e){return e instanceof eg(e).Element||e instanceof Element}function rg(e){return e instanceof eg(e).HTMLElement||e instanceof HTMLElement}function ng(e){return\"undefined\"!=typeof ShadowRoot&&(e instanceof eg(e).ShadowRoot||e instanceof ShadowRoot)}var og=Math.max,ig=Math.min,ag=Math.round;function cg(){var e=navigator.userAgentData;return null!=e&&e.brands?e.brands.map((function(e){return e.brand+\"/\"+e.version})).join(\" \"):navigator.userAgent}function lg(){return!/^((?!chrome|android).)*safari/i.test(cg())}function sg(e,t,r){void 0===t&&(t=!1),void 0===r&&(r=!1);var n=e.getBoundingClientRect(),o=1,i=1;t&&rg(e)&&(o=e.offsetWidth>0&&ag(n.width)/e.offsetWidth||1,i=e.offsetHeight>0&&ag(n.height)/e.offsetHeight||1);var a=(tg(e)?eg(e):window).visualViewport,c=!lg()&&r,l=(n.left+(c&&a?a.offsetLeft:0))/o,s=(n.top+(c&&a?a.offsetTop:0))/i,u=n.width/o,p=n.height/i;return{width:u,height:p,top:s,right:l+u,bottom:s+p,left:l,x:l,y:s}}function ug(e){var t=eg(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function pg(e){return e?(e.nodeName||\"\").toLowerCase():null}function dg(e){return((tg(e)?e.ownerDocument:e.document)||window.document).documentElement}function fg(e){return sg(dg(e)).left+ug(e).scrollLeft}function mg(e){return eg(e).getComputedStyle(e)}function yg(e){var t=mg(e),r=t.overflow,n=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(r+o+n)}function hg(e,t,r){void 0===r&&(r=!1);var n,o,i=rg(t),a=rg(t)&&function(e){var t=e.getBoundingClientRect(),r=ag(t.width)/e.offsetWidth||1,n=ag(t.height)/e.offsetHeight||1;return 1!==r||1!==n}(t),c=dg(t),l=sg(e,a,r),s={scrollLeft:0,scrollTop:0},u={x:0,y:0};return(i||!i&&!r)&&((\"body\"!==pg(t)||yg(c))&&(s=(n=t)!==eg(n)&&rg(n)?{scrollLeft:(o=n).scrollLeft,scrollTop:o.scrollTop}:ug(n)),rg(t)?((u=sg(t,!0)).x+=t.clientLeft,u.y+=t.clientTop):c&&(u.x=fg(c))),{x:l.left+s.scrollLeft-u.x,y:l.top+s.scrollTop-u.y,width:l.width,height:l.height}}function bg(e){var t=sg(e),r=e.offsetWidth,n=e.offsetHeight;return Math.abs(t.width-r)<=1&&(r=t.width),Math.abs(t.height-n)<=1&&(n=t.height),{x:e.offsetLeft,y:e.offsetTop,width:r,height:n}}function vg(e){return\"html\"===pg(e)?e:e.assignedSlot||e.parentNode||(ng(e)?e.host:null)||dg(e)}function gg(e){return[\"html\",\"body\",\"#document\"].indexOf(pg(e))>=0?e.ownerDocument.body:rg(e)&&yg(e)?e:gg(vg(e))}function _g(e,t){var r;void 0===t&&(t=[]);var n=gg(e),o=n===(null==(r=e.ownerDocument)?void 0:r.body),i=eg(n),a=o?[i].concat(i.visualViewport||[],yg(n)?n:[]):n,c=t.concat(a);return o?c:c.concat(_g(vg(a)))}function wg(e){return[\"table\",\"td\",\"th\"].indexOf(pg(e))>=0}function xg(e){return rg(e)&&\"fixed\"!==mg(e).position?e.offsetParent:null}function kg(e){for(var t=eg(e),r=xg(e);r&&wg(r)&&\"static\"===mg(r).position;)r=xg(r);return r&&(\"html\"===pg(r)||\"body\"===pg(r)&&\"static\"===mg(r).position)?t:r||function(e){var t=/firefox/i.test(cg());if(/Trident/i.test(cg())&&rg(e)&&\"fixed\"===mg(e).position)return null;var r=vg(e);for(ng(r)&&(r=r.host);rg(r)&&[\"html\",\"body\"].indexOf(pg(r))<0;){var n=mg(r);if(\"none\"!==n.transform||\"none\"!==n.perspective||\"paint\"===n.contain||-1!==[\"transform\",\"perspective\"].indexOf(n.willChange)||t&&\"filter\"===n.willChange||t&&n.filter&&\"none\"!==n.filter)return r;r=r.parentNode}return null}(e)||t}var Ng=\"top\",Mg=\"bottom\",jg=\"right\",Sg=\"left\",Eg=\"auto\",Lg=[Ng,Mg,jg,Sg],Og=\"start\",Ig=\"end\",Cg=\"clippingParents\",Pg=\"viewport\",Ag=\"popper\",Dg=\"reference\",Tg=Lg.reduce((function(e,t){return e.concat([t+\"-\"+Og,t+\"-\"+Ig])}),[]),zg=[].concat(Lg,[Eg]).reduce((function(e,t){return e.concat([t,t+\"-\"+Og,t+\"-\"+Ig])}),[]),Bg=[\"beforeRead\",\"read\",\"afterRead\",\"beforeMain\",\"main\",\"afterMain\",\"beforeWrite\",\"write\",\"afterWrite\"];function Rg(e){var t=new Map,r=new Set,n=[];function o(e){r.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!r.has(e)){var n=t.get(e);n&&o(n)}})),n.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){r.has(e.name)||o(e)})),n}var Fg={placement:\"bottom\",modifiers:[],strategy:\"absolute\"};function Ug(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return!t.some((function(e){return!(e&&\"function\"==typeof e.getBoundingClientRect)}))}function Zg(e){void 0===e&&(e={});var t=e,r=t.defaultModifiers,n=void 0===r?[]:r,o=t.defaultOptions,i=void 0===o?Fg:o;return function(e,t,r){void 0===r&&(r=i);var o,a,c={placement:\"bottom\",orderedModifiers:[],options:Object.assign({},Fg,i),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},l=[],s=!1,u={state:c,setOptions:function(r){var o=\"function\"==typeof r?r(c.options):r;p(),c.options=Object.assign({},i,c.options,o),c.scrollParents={reference:tg(e)?_g(e):e.contextElement?_g(e.contextElement):[],popper:_g(t)};var a=function(e){var t=Rg(e);return Bg.reduce((function(e,r){return e.concat(t.filter((function(e){return e.phase===r})))}),[])}(function(e){var t=e.reduce((function(e,t){var r=e[t.name];return e[t.name]=r?Object.assign({},r,t,{options:Object.assign({},r.options,t.options),data:Object.assign({},r.data,t.data)}):t,e}),{});return Object.keys(t).map((function(e){return t[e]}))}([].concat(n,c.options.modifiers)));return c.orderedModifiers=a.filter((function(e){return e.enabled})),c.orderedModifiers.forEach((function(e){var t=e.name,r=e.options,n=void 0===r?{}:r,o=e.effect;if(\"function\"==typeof o){var i=o({state:c,name:t,instance:u,options:n}),a=function(){};l.push(i||a)}})),u.update()},forceUpdate:function(){if(!s){var e=c.elements,t=e.reference,r=e.popper;if(Ug(t,r)){c.rects={reference:hg(t,kg(r),\"fixed\"===c.options.strategy),popper:bg(r)},c.reset=!1,c.placement=c.options.placement,c.orderedModifiers.forEach((function(e){return c.modifiersData[e.name]=Object.assign({},e.data)}));for(var n=0;n<c.orderedModifiers.length;n++)if(!0!==c.reset){var o=c.orderedModifiers[n],i=o.fn,a=o.options,l=void 0===a?{}:a,p=o.name;\"function\"==typeof i&&(c=i({state:c,options:l,name:p,instance:u})||c)}else c.reset=!1,n=-1}}},update:(o=function(){return new Promise((function(e){u.forceUpdate(),e(c)}))},function(){return a||(a=new Promise((function(e){Promise.resolve().then((function(){a=void 0,e(o())}))}))),a}),destroy:function(){p(),s=!0}};if(!Ug(e,t))return u;function p(){l.forEach((function(e){return e()})),l=[]}return u.setOptions(r).then((function(e){!s&&r.onFirstUpdate&&r.onFirstUpdate(e)})),u}}var Yg={passive:!0};const Wg={name:\"eventListeners\",enabled:!0,phase:\"write\",fn:function(){},effect:function(e){var t=e.state,r=e.instance,n=e.options,o=n.scroll,i=void 0===o||o,a=n.resize,c=void 0===a||a,l=eg(t.elements.popper),s=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&s.forEach((function(e){e.addEventListener(\"scroll\",r.update,Yg)})),c&&l.addEventListener(\"resize\",r.update,Yg),function(){i&&s.forEach((function(e){e.removeEventListener(\"scroll\",r.update,Yg)})),c&&l.removeEventListener(\"resize\",r.update,Yg)}},data:{}};function Vg(e){return e.split(\"-\")[0]}function Qg(e){return e.split(\"-\")[1]}function Hg(e){return[\"top\",\"bottom\"].indexOf(e)>=0?\"x\":\"y\"}function Gg(e){var t,r=e.reference,n=e.element,o=e.placement,i=o?Vg(o):null,a=o?Qg(o):null,c=r.x+r.width/2-n.width/2,l=r.y+r.height/2-n.height/2;switch(i){case Ng:t={x:c,y:r.y-n.height};break;case Mg:t={x:c,y:r.y+r.height};break;case jg:t={x:r.x+r.width,y:l};break;case Sg:t={x:r.x-n.width,y:l};break;default:t={x:r.x,y:r.y}}var s=i?Hg(i):null;if(null!=s){var u=\"y\"===s?\"height\":\"width\";switch(a){case Og:t[s]=t[s]-(r[u]/2-n[u]/2);break;case Ig:t[s]=t[s]+(r[u]/2-n[u]/2)}}return t}var qg={top:\"auto\",right:\"auto\",bottom:\"auto\",left:\"auto\"};function $g(e){var t,r=e.popper,n=e.popperRect,o=e.placement,i=e.variation,a=e.offsets,c=e.position,l=e.gpuAcceleration,s=e.adaptive,u=e.roundOffsets,p=e.isFixed,d=a.x,f=void 0===d?0:d,m=a.y,y=void 0===m?0:m,h=\"function\"==typeof u?u({x:f,y}):{x:f,y};f=h.x,y=h.y;var b=a.hasOwnProperty(\"x\"),v=a.hasOwnProperty(\"y\"),g=Sg,_=Ng,w=window;if(s){var x=kg(r),k=\"clientHeight\",N=\"clientWidth\";if(x===eg(r)&&\"static\"!==mg(x=dg(r)).position&&\"absolute\"===c&&(k=\"scrollHeight\",N=\"scrollWidth\"),o===Ng||(o===Sg||o===jg)&&i===Ig)_=Mg,y-=(p&&x===w&&w.visualViewport?w.visualViewport.height:x[k])-n.height,y*=l?1:-1;if(o===Sg||(o===Ng||o===Mg)&&i===Ig)g=jg,f-=(p&&x===w&&w.visualViewport?w.visualViewport.width:x[N])-n.width,f*=l?1:-1}var M,j=Object.assign({position:c},s&&qg),S=!0===u?function(e){var t=e.x,r=e.y,n=window.devicePixelRatio||1;return{x:ag(t*n)/n||0,y:ag(r*n)/n||0}}({x:f,y}):{x:f,y};return f=S.x,y=S.y,l?Object.assign({},j,((M={})[_]=v?\"0\":\"\",M[g]=b?\"0\":\"\",M.transform=(w.devicePixelRatio||1)<=1?\"translate(\"+f+\"px, \"+y+\"px)\":\"translate3d(\"+f+\"px, \"+y+\"px, 0)\",M)):Object.assign({},j,((t={})[_]=v?y+\"px\":\"\",t[g]=b?f+\"px\":\"\",t.transform=\"\",t))}const Xg={name:\"computeStyles\",enabled:!0,phase:\"beforeWrite\",fn:function(e){var t=e.state,r=e.options,n=r.gpuAcceleration,o=void 0===n||n,i=r.adaptive,a=void 0===i||i,c=r.roundOffsets,l=void 0===c||c,s={placement:Vg(t.placement),variation:Qg(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:o,isFixed:\"fixed\"===t.options.strategy};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,$g(Object.assign({},s,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:a,roundOffsets:l})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,$g(Object.assign({},s,{offsets:t.modifiersData.arrow,position:\"absolute\",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{\"data-popper-placement\":t.placement})},data:{}};const Kg={name:\"offset\",enabled:!0,phase:\"main\",requires:[\"popperOffsets\"],fn:function(e){var t=e.state,r=e.options,n=e.name,o=r.offset,i=void 0===o?[0,0]:o,a=zg.reduce((function(e,r){return e[r]=function(e,t,r){var n=Vg(e),o=[Sg,Ng].indexOf(n)>=0?-1:1,i=\"function\"==typeof r?r(Object.assign({},t,{placement:e})):r,a=i[0],c=i[1];return a=a||0,c=(c||0)*o,[Sg,jg].indexOf(n)>=0?{x:c,y:a}:{x:a,y:c}}(r,t.rects,i),e}),{}),c=a[t.placement],l=c.x,s=c.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=s),t.modifiersData[n]=a}};var Jg={left:\"right\",right:\"left\",bottom:\"top\",top:\"bottom\"};function e_(e){return e.replace(/left|right|bottom|top/g,(function(e){return Jg[e]}))}var t_={start:\"end\",end:\"start\"};function r_(e){return e.replace(/start|end/g,(function(e){return t_[e]}))}function n_(e,t){var r=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(r&&ng(r)){var n=t;do{if(n&&e.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function o_(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function i_(e,t,r){return t===Pg?o_(function(e,t){var r=eg(e),n=dg(e),o=r.visualViewport,i=n.clientWidth,a=n.clientHeight,c=0,l=0;if(o){i=o.width,a=o.height;var s=lg();(s||!s&&\"fixed\"===t)&&(c=o.offsetLeft,l=o.offsetTop)}return{width:i,height:a,x:c+fg(e),y:l}}(e,r)):tg(t)?function(e,t){var r=sg(e,!1,\"fixed\"===t);return r.top=r.top+e.clientTop,r.left=r.left+e.clientLeft,r.bottom=r.top+e.clientHeight,r.right=r.left+e.clientWidth,r.width=e.clientWidth,r.height=e.clientHeight,r.x=r.left,r.y=r.top,r}(t,r):o_(function(e){var t,r=dg(e),n=ug(e),o=null==(t=e.ownerDocument)?void 0:t.body,i=og(r.scrollWidth,r.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),a=og(r.scrollHeight,r.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),c=-n.scrollLeft+fg(e),l=-n.scrollTop;return\"rtl\"===mg(o||r).direction&&(c+=og(r.clientWidth,o?o.clientWidth:0)-i),{width:i,height:a,x:c,y:l}}(dg(e)))}function a_(e,t,r,n){var o=\"clippingParents\"===t?function(e){var t=_g(vg(e)),r=[\"absolute\",\"fixed\"].indexOf(mg(e).position)>=0&&rg(e)?kg(e):e;return tg(r)?t.filter((function(e){return tg(e)&&n_(e,r)&&\"body\"!==pg(e)})):[]}(e):[].concat(t),i=[].concat(o,[r]),a=i[0],c=i.reduce((function(t,r){var o=i_(e,r,n);return t.top=og(o.top,t.top),t.right=ig(o.right,t.right),t.bottom=ig(o.bottom,t.bottom),t.left=og(o.left,t.left),t}),i_(e,a,n));return c.width=c.right-c.left,c.height=c.bottom-c.top,c.x=c.left,c.y=c.top,c}function c_(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function l_(e,t){return t.reduce((function(t,r){return t[r]=e,t}),{})}function s_(e,t){void 0===t&&(t={});var r=t,n=r.placement,o=void 0===n?e.placement:n,i=r.strategy,a=void 0===i?e.strategy:i,c=r.boundary,l=void 0===c?Cg:c,s=r.rootBoundary,u=void 0===s?Pg:s,p=r.elementContext,d=void 0===p?Ag:p,f=r.altBoundary,m=void 0!==f&&f,y=r.padding,h=void 0===y?0:y,b=c_(\"number\"!=typeof h?h:l_(h,Lg)),v=d===Ag?Dg:Ag,g=e.rects.popper,_=e.elements[m?v:d],w=a_(tg(_)?_:_.contextElement||dg(e.elements.popper),l,u,a),x=sg(e.elements.reference),k=Gg({reference:x,element:g,strategy:\"absolute\",placement:o}),N=o_(Object.assign({},g,k)),M=d===Ag?N:x,j={top:w.top-M.top+b.top,bottom:M.bottom-w.bottom+b.bottom,left:w.left-M.left+b.left,right:M.right-w.right+b.right},S=e.modifiersData.offset;if(d===Ag&&S){var E=S[o];Object.keys(j).forEach((function(e){var t=[jg,Mg].indexOf(e)>=0?1:-1,r=[Ng,Mg].indexOf(e)>=0?\"y\":\"x\";j[e]+=E[r]*t}))}return j}const u_={name:\"flip\",enabled:!0,phase:\"main\",fn:function(e){var t=e.state,r=e.options,n=e.name;if(!t.modifiersData[n]._skip){for(var o=r.mainAxis,i=void 0===o||o,a=r.altAxis,c=void 0===a||a,l=r.fallbackPlacements,s=r.padding,u=r.boundary,p=r.rootBoundary,d=r.altBoundary,f=r.flipVariations,m=void 0===f||f,y=r.allowedAutoPlacements,h=t.options.placement,b=Vg(h),v=l||(b===h||!m?[e_(h)]:function(e){if(Vg(e)===Eg)return[];var t=e_(e);return[r_(e),t,r_(t)]}(h)),g=[h].concat(v).reduce((function(e,r){return e.concat(Vg(r)===Eg?function(e,t){void 0===t&&(t={});var r=t,n=r.placement,o=r.boundary,i=r.rootBoundary,a=r.padding,c=r.flipVariations,l=r.allowedAutoPlacements,s=void 0===l?zg:l,u=Qg(n),p=u?c?Tg:Tg.filter((function(e){return Qg(e)===u})):Lg,d=p.filter((function(e){return s.indexOf(e)>=0}));0===d.length&&(d=p);var f=d.reduce((function(t,r){return t[r]=s_(e,{placement:r,boundary:o,rootBoundary:i,padding:a})[Vg(r)],t}),{});return Object.keys(f).sort((function(e,t){return f[e]-f[t]}))}(t,{placement:r,boundary:u,rootBoundary:p,padding:s,flipVariations:m,allowedAutoPlacements:y}):r)}),[]),_=t.rects.reference,w=t.rects.popper,x=new Map,k=!0,N=g[0],M=0;M<g.length;M++){var j=g[M],S=Vg(j),E=Qg(j)===Og,L=[Ng,Mg].indexOf(S)>=0,O=L?\"width\":\"height\",I=s_(t,{placement:j,boundary:u,rootBoundary:p,altBoundary:d,padding:s}),C=L?E?jg:Sg:E?Mg:Ng;_[O]>w[O]&&(C=e_(C));var P=e_(C),A=[];if(i&&A.push(I[S]<=0),c&&A.push(I[C]<=0,I[P]<=0),A.every((function(e){return e}))){N=j,k=!1;break}x.set(j,A)}if(k)for(var D=function(e){var t=g.find((function(t){var r=x.get(t);if(r)return r.slice(0,e).every((function(e){return e}))}));if(t)return N=t,\"break\"},T=m?3:1;T>0;T--){if(\"break\"===D(T))break}t.placement!==N&&(t.modifiersData[n]._skip=!0,t.placement=N,t.reset=!0)}},requiresIfExists:[\"offset\"],data:{_skip:!1}};function p_(e,t,r){return og(e,ig(t,r))}const d_={name:\"preventOverflow\",enabled:!0,phase:\"main\",fn:function(e){var t=e.state,r=e.options,n=e.name,o=r.mainAxis,i=void 0===o||o,a=r.altAxis,c=void 0!==a&&a,l=r.boundary,s=r.rootBoundary,u=r.altBoundary,p=r.padding,d=r.tether,f=void 0===d||d,m=r.tetherOffset,y=void 0===m?0:m,h=s_(t,{boundary:l,rootBoundary:s,padding:p,altBoundary:u}),b=Vg(t.placement),v=Qg(t.placement),g=!v,_=Hg(b),w=\"x\"===_?\"y\":\"x\",x=t.modifiersData.popperOffsets,k=t.rects.reference,N=t.rects.popper,M=\"function\"==typeof y?y(Object.assign({},t.rects,{placement:t.placement})):y,j=\"number\"==typeof M?{mainAxis:M,altAxis:M}:Object.assign({mainAxis:0,altAxis:0},M),S=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,E={x:0,y:0};if(x){if(i){var L,O=\"y\"===_?Ng:Sg,I=\"y\"===_?Mg:jg,C=\"y\"===_?\"height\":\"width\",P=x[_],A=P+h[O],D=P-h[I],T=f?-N[C]/2:0,z=v===Og?k[C]:N[C],B=v===Og?-N[C]:-k[C],R=t.elements.arrow,F=f&&R?bg(R):{width:0,height:0},U=t.modifiersData[\"arrow#persistent\"]?t.modifiersData[\"arrow#persistent\"].padding:{top:0,right:0,bottom:0,left:0},Z=U[O],Y=U[I],W=p_(0,k[C],F[C]),V=g?k[C]/2-T-W-Z-j.mainAxis:z-W-Z-j.mainAxis,Q=g?-k[C]/2+T+W+Y+j.mainAxis:B+W+Y+j.mainAxis,H=t.elements.arrow&&kg(t.elements.arrow),G=H?\"y\"===_?H.clientTop||0:H.clientLeft||0:0,q=null!=(L=null==S?void 0:S[_])?L:0,$=P+Q-q,X=p_(f?ig(A,P+V-q-G):A,P,f?og(D,$):D);x[_]=X,E[_]=X-P}if(c){var K,J=\"x\"===_?Ng:Sg,ee=\"x\"===_?Mg:jg,te=x[w],re=\"y\"===w?\"height\":\"width\",ne=te+h[J],oe=te-h[ee],ie=-1!==[Ng,Sg].indexOf(b),ae=null!=(K=null==S?void 0:S[w])?K:0,ce=ie?ne:te-k[re]-N[re]-ae+j.altAxis,le=ie?te+k[re]+N[re]-ae-j.altAxis:oe,se=f&&ie?function(e,t,r){var n=p_(e,t,r);return n>r?r:n}(ce,te,le):p_(f?ce:ne,te,f?le:oe);x[w]=se,E[w]=se-te}t.modifiersData[n]=E}},requiresIfExists:[\"offset\"]};const f_={name:\"arrow\",enabled:!0,phase:\"main\",fn:function(e){var t,r=e.state,n=e.name,o=e.options,i=r.elements.arrow,a=r.modifiersData.popperOffsets,c=Vg(r.placement),l=Hg(c),s=[Sg,jg].indexOf(c)>=0?\"height\":\"width\";if(i&&a){var u=function(e,t){return c_(\"number\"!=typeof(e=\"function\"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:l_(e,Lg))}(o.padding,r),p=bg(i),d=\"y\"===l?Ng:Sg,f=\"y\"===l?Mg:jg,m=r.rects.reference[s]+r.rects.reference[l]-a[l]-r.rects.popper[s],y=a[l]-r.rects.reference[l],h=kg(i),b=h?\"y\"===l?h.clientHeight||0:h.clientWidth||0:0,v=m/2-y/2,g=u[d],_=b-p[s]-u[f],w=b/2-p[s]/2+v,x=p_(g,w,_),k=l;r.modifiersData[n]=((t={})[k]=x,t.centerOffset=x-w,t)}},effect:function(e){var t=e.state,r=e.options.element,n=void 0===r?\"[data-popper-arrow]\":r;null!=n&&(\"string\"!=typeof n||(n=t.elements.popper.querySelector(n)))&&n_(t.elements.popper,n)&&(t.elements.arrow=n)},requires:[\"popperOffsets\"],requiresIfExists:[\"preventOverflow\"]};function m_(e,t,r){return void 0===r&&(r={x:0,y:0}),{top:e.top-t.height-r.y,right:e.right-t.width+r.x,bottom:e.bottom-t.height+r.y,left:e.left-t.width-r.x}}function y_(e){return[Ng,jg,Mg,Sg].some((function(t){return e[t]>=0}))}var h_=Zg({defaultModifiers:[Wg,{name:\"popperOffsets\",enabled:!0,phase:\"read\",fn:function(e){var t=e.state,r=e.name;t.modifiersData[r]=Gg({reference:t.rects.reference,element:t.rects.popper,strategy:\"absolute\",placement:t.placement})},data:{}},Xg,{name:\"applyStyles\",enabled:!0,phase:\"write\",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var r=t.styles[e]||{},n=t.attributes[e]||{},o=t.elements[e];rg(o)&&pg(o)&&(Object.assign(o.style,r),Object.keys(n).forEach((function(e){var t=n[e];!1===t?o.removeAttribute(e):o.setAttribute(e,!0===t?\"\":t)})))}))},effect:function(e){var t=e.state,r={popper:{position:t.options.strategy,left:\"0\",top:\"0\",margin:\"0\"},arrow:{position:\"absolute\"},reference:{}};return Object.assign(t.elements.popper.style,r.popper),t.styles=r,t.elements.arrow&&Object.assign(t.elements.arrow.style,r.arrow),function(){Object.keys(t.elements).forEach((function(e){var n=t.elements[e],o=t.attributes[e]||{},i=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:r[e]).reduce((function(e,t){return e[t]=\"\",e}),{});rg(n)&&pg(n)&&(Object.assign(n.style,i),Object.keys(o).forEach((function(e){n.removeAttribute(e)})))}))}},requires:[\"computeStyles\"]},Kg,u_,d_,f_,{name:\"hide\",enabled:!0,phase:\"main\",requiresIfExists:[\"preventOverflow\"],fn:function(e){var t=e.state,r=e.name,n=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,a=s_(t,{elementContext:\"reference\"}),c=s_(t,{altBoundary:!0}),l=m_(a,n),s=m_(c,o,i),u=y_(l),p=y_(s);t.modifiersData[r]={referenceClippingOffsets:l,popperEscapeOffsets:s,isReferenceHidden:u,hasPopperEscaped:p},t.attributes.popper=Object.assign({},t.attributes.popper,{\"data-popper-reference-hidden\":u,\"data-popper-escaped\":p})}}]}),b_=r(9590),v_=r.n(b_),g_=function(e){return e.reduce((function(e,t){var r=t[0],n=t[1];return e[r]=n,e}),{})},__=\"undefined\"!=typeof window&&window.document&&window.document.createElement?e.useLayoutEffect:e.useEffect,w_=[],x_=function(r,n,o){void 0===o&&(o={});var i=e.useRef(null),a={onFirstUpdate:o.onFirstUpdate,placement:o.placement||\"bottom\",strategy:o.strategy||\"absolute\",modifiers:o.modifiers||w_},c=e.useState({styles:{popper:{position:a.strategy,left:\"0\",top:\"0\"},arrow:{position:\"absolute\"}},attributes:{}}),l=c[0],s=c[1],u=e.useMemo((function(){return{name:\"updateState\",enabled:!0,phase:\"write\",fn:function(e){var r=e.state,n=Object.keys(r.elements);t.flushSync((function(){s({styles:g_(n.map((function(e){return[e,r.styles[e]||{}]}))),attributes:g_(n.map((function(e){return[e,r.attributes[e]]})))})}))},requires:[\"computeStyles\"]}}),[]),p=e.useMemo((function(){var e={onFirstUpdate:a.onFirstUpdate,placement:a.placement,strategy:a.strategy,modifiers:[].concat(a.modifiers,[u,{name:\"applyStyles\",enabled:!1}])};return v_()(i.current,e)?i.current||e:(i.current=e,e)}),[a.onFirstUpdate,a.placement,a.strategy,a.modifiers,u]),d=e.useRef();return __((function(){d.current&&d.current.setOptions(p)}),[p]),__((function(){if(null!=r&&null!=n){var e=(o.createPopper||h_)(r,n,p);return d.current=e,function(){e.destroy(),d.current=null}}}),[r,n,o.createPopper]),{state:d.current?d.current.state:null,styles:l.styles,attributes:l.attributes,update:d.current?d.current.update:null,forceUpdate:d.current?d.current.forceUpdate:null}};const k_=[\"bottom-start\",\"bottom\",\"bottom-end\",\"top-start\",\"top\",\"top-end\",\"right-start\",\"right\",\"right-end\",\"left-start\",\"left\",\"left-end\"];var N_=r(6662),M_={insert:\"head\",singleton:!1};o()(N_.Z,M_);N_.Z.locals;const j_=be(\"popup\");function S_({styles:t,attributes:r,setArrowRef:n}){return e.createElement(\"div\",Object.assign({\"data-popper-arrow\":!0,ref:n,className:j_(\"arrow\"),style:t},r),e.createElement(\"div\",{className:j_(\"arrow-content\")},e.createElement(\"div\",{className:j_(\"arrow-circle-wrapper\")},e.createElement(\"div\",{className:j_(\"arrow-circle\",{left:!0})})),e.createElement(\"div\",{className:j_(\"arrow-circle-wrapper\")},e.createElement(\"div\",{className:j_(\"arrow-circle\",{right:!0})}))))}const E_=be(\"popup\"),L_=be(\"popup-wrapper\");function O_({keepMounted:t=!1,hasArrow:r=!1,offset:n=[0,4],open:o,placement:i,anchorRef:a,disableEscapeKeyDown:c,disableOutsideClick:l,disableLayer:s,style:u,className:p,modifiers:d=[],children:f,onEscapeKeyDown:m,onOutsideClick:y,onClose:h,onClick:b,onMouseEnter:v,onMouseLeave:g,disablePortal:_,container:w,strategy:x,qa:k,restoreFocus:N,restoreFocusRef:M}){const j=e.useRef(null);Vr({open:o,disableEscapeKeyDown:c,disableOutsideClick:l,onEscapeKeyDown:m,onOutsideClick:y,onClose:h,contentRefs:[a,j],enabled:!s});const{attributes:S,styles:E,setPopperRef:L,setArrowRef:O}=function({anchorRef:t,placement:r=k_,offset:n,modifiers:o=[],strategy:i,altBoundary:a}){const[c,l]=e.useState(null),[s,u]=e.useState(null),p=Array.isArray(r)?r:[r],{attributes:d,styles:f}=x_(null==t?void 0:t.current,c,{strategy:i,modifiers:[{name:\"arrow\",options:{element:s}},{name:\"offset\",options:{offset:n,altBoundary:a}},...o],placement:p[0]});return{attributes:d,styles:f,setPopperRef:l,setArrowRef:u}}({anchorRef:a,placement:i,offset:r?[n[0],n[1]+8]:n,strategy:x,altBoundary:_,modifiers:[{name:\"arrow\",options:{enabled:r,padding:4}},{name:\"preventOverflow\",options:{padding:1,altBoundary:_}},...d]}),I=Yr(L,j),C=Fr({enabled:Boolean(N&&o),restoreFocusRef:M});return e.createElement(tr,{container:w,disablePortal:_},e.createElement(Kt,{nodeRef:j,in:o,addEndListener:e=>{var t;return null===(t=j.current)||void 0===t?void 0:t.addEventListener(\"animationend\",e)},classNames:Jt(L_),mountOnEnter:!t,unmountOnExit:!t,appear:!0},e.createElement(\"div\",Object.assign({ref:I,style:E.popper},S.popper,C,{className:L_({open:o})}),e.createElement(\"div\",{onClick:b,onMouseEnter:v,onMouseLeave:g,className:E_({open:o},p),style:u,\"data-qa\":k},r&&e.createElement(S_,{styles:E.arrow,attributes:S.arrow,setArrowRef:O}),f))))}var I_=r(3649),C_={insert:\"head\",singleton:!1};o()(I_.Z,C_);I_.Z.locals;var P_=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationPopup/NavigationPopup.tsx\",A_=void 0,D_=z(\"navigation-popup\"),T_=[0,0];const z_=function(t){var r=t.anchorRef,n=t.items,o=t.onClose,i=t.className,a=t.open;return e.createElement(O_,{anchorRef:a?r:void 0,className:D_(null,i),open:a,onClose:o,onOutsideClick:o,keepMounted:!0,disablePortal:!0,strategy:\"fixed\",placement:\"bottom-start\",offset:T_,__self:A_,__source:{fileName:P_,lineNumber:21,columnNumber:5}},e.createElement(\"ul\",{className:D_(\"list\"),__self:A_,__source:{fileName:P_,lineNumber:34,columnNumber:9}},n.map((function(t){return e.createElement(yw,{key:t.text,className:D_(\"link\"),data:t,menuLayout:mv.Dropdown,__self:A_,__source:{fileName:P_,lineNumber:36,columnNumber:17}})}))))};var B_=r(6928),R_={insert:\"head\",singleton:!1};o()(B_.Z,R_);B_.Z.locals;var F_=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationItem/components/ContentWrapper/ContentWrapper.tsx\",U_=void 0,Z_=z(\"content-wrapper\"),Y_=function(t){var r=t.text,n=t.icon,o=t.iconSize,i=(0,e.useMemo)((function(){return o?{height:\"\".concat(o,\"px\"),width:\"\".concat(o,\"px\")}:{}}),[o]);return e.createElement(e.Fragment,{__self:U_,__source:{fileName:F_,lineNumber:24,columnNumber:9}},n&&\"string\"!=typeof n&&e.createElement(ht,Object.assign({className:Z_(\"icon\")},n,{style:i,__self:U_,__source:{fileName:F_,lineNumber:26,columnNumber:17}})),e.createElement(\"span\",{className:Z_(\"text\"),__self:U_,__source:{fileName:F_,lineNumber:28,columnNumber:13}},r))},W_=r(8720),V_={insert:\"head\",singleton:!1};o()(W_.Z,V_);W_.Z.locals;var Q_=[\"text\",\"icon\",\"className\",\"iconSize\",\"hidePopup\",\"items\",\"isActive\"],H_=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationItem/components/NavigationDropdown/NavigationDropdown.tsx\",G_=void 0,q_=z(\"navigation-dropdown\"),$_=\"/home/runner/work/page-constructor/page-constructor/src/icons/NavigationArrow.tsx\",X_=void 0,K_=function(t){return e.createElement(\"svg\",Object.assign({xmlns:\"http://www.w3.org/2000/svg\",width:\"9\",height:\"9\",fill:\"none\",viewBox:\"0 0 9 9\"},Ue,t,{__self:X_,__source:{fileName:$_,lineNumber:6,columnNumber:5}}),e.createElement(\"path\",{d:\"M3 1H8M8 1V6M8 1L1 8\",stroke:\"currentColor\",strokeOpacity:\"0.7\",strokeWidth:\"1.2\",strokeLinecap:\"square\",__self:X_,__source:{fileName:$_,lineNumber:15,columnNumber:9}}))},J_=r(4534),ew={insert:\"head\",singleton:!1};o()(J_.Z,ew);J_.Z.locals;var tw=[\"url\",\"text\",\"icon\",\"arrow\",\"target\",\"className\",\"iconSize\"],rw=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationItem/components/NavigationLink/NavigationLink.tsx\",nw=void 0,ow=z(\"navigation-link\"),iw=r(4709),aw={insert:\"head\",singleton:!1};o()(iw.Z,aw);iw.Z.locals;var cw,lw=[\"data\",\"className\",\"menuLayout\"],sw=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationItem/NavigationItem.tsx\",uw=void 0;function pw(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function dw(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?pw(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):pw(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var fw=z(\"navigation-item\"),mw=(C(cw={},nv.Button,(function(t){var r=t.url,n=t.target,o=t.className,i=Jv(null,o);return e.createElement(De.Provider,{value:\"navigation\",__self:Kv,__source:{fileName:Xv,lineNumber:21,columnNumber:9}},n?e.createElement($u,Object.assign({className:i},t,{url:r,__self:Kv,__source:{fileName:Xv,lineNumber:23,columnNumber:17}})):e.createElement(kd,{href:r,__self:Kv,__source:{fileName:Xv,lineNumber:25,columnNumber:17}},e.createElement($u,Object.assign({},t,{className:i,url:r,__self:Kv,__source:{fileName:Xv,lineNumber:26,columnNumber:21}}))))})),C(cw,nv.Social,Yv),C(cw,nv.Dropdown,(function(t){var r=t.text,n=t.icon,o=t.className,i=t.iconSize,a=t.hidePopup,c=t.items,l=t.isActive,s=L(t,Q_),u=n&&Hs(n),p=(0,e.useRef)(null);return e.createElement(e.Fragment,{__self:G_,__source:{fileName:H_,lineNumber:33,columnNumber:9}},e.createElement(\"span\",Object.assign({ref:p},s,{className:q_(null,o),__self:G_,__source:{fileName:H_,lineNumber:34,columnNumber:13}}),e.createElement(Y_,{text:r,icon:u,iconSize:i,__self:G_,__source:{fileName:H_,lineNumber:35,columnNumber:17}}),e.createElement($l,{className:q_(\"arrow\"),size:12,type:\"vertical\",iconType:\"navigation\",open:l,__self:G_,__source:{fileName:H_,lineNumber:36,columnNumber:17}})),e.createElement(z_,{open:l,onClose:a,items:c,anchorRef:p,__self:G_,__source:{fileName:H_,lineNumber:44,columnNumber:13}}))})),C(cw,nv.Link,(function(t){var r=(0,e.useContext)(m),n=r.hostname,o=r.Link,i=t.url,a=t.text,c=t.icon,l=t.arrow,s=t.target,u=t.className,p=t.iconSize,d=L(t,tw),f=$e(i,n,s),y=c&&Hs(c),h=ow(null,u),b=e.createElement(e.Fragment,{__self:nw,__source:{fileName:rw,lineNumber:26,columnNumber:9}},e.createElement(Y_,{text:a,icon:y,iconSize:p,__self:nw,__source:{fileName:rw,lineNumber:27,columnNumber:13}}),l&&e.createElement(K_,{className:ow(\"arrow\"),__self:nw,__source:{fileName:rw,lineNumber:28,columnNumber:23}}));return null!=f&&f.target||!o?e.createElement(\"a\",Object.assign({href:i,title:a,className:h},d,f,{__self:nw,__source:{fileName:rw,lineNumber:34,columnNumber:13}}),b):e.createElement(kd,{href:i,passHref:!0,__self:nw,__source:{fileName:rw,lineNumber:40,columnNumber:13}},e.createElement(\"a\",Object.assign({},d,{className:h,__self:nw,__source:{fileName:rw,lineNumber:41,columnNumber:17}}),b))})),C(cw,nv.GithubButton,(function(t){var n=t.text,o=t.url,i=t.className,a=t.label,c=t.size,l=t.icon,s=(0,e.useRef)(null),u=(0,e.useRef)(null);return(0,e.useEffect)((function(){return function(){if(s.current){var e=s.current.appendChild(document.createElement(\"span\"));Promise.resolve().then(r.bind(r,9984)).then((function(t){var r=t.render;null!==u.current&&r(e.appendChild(u.current),(function(t){try{e.parentNode&&e.parentNode.replaceChild(t,e)}catch(e){}}))}))}}(),function(){var e;null!=s&&null!==(e=s.current)&&void 0!==e&&e.lastChild&&u.current&&s.current.replaceChild(u.current,s.current.lastChild)}}),[]),e.createElement(\"div\",{className:Gv(null,i),__self:Hv,__source:{fileName:Qv,lineNumber:61,columnNumber:9}},e.createElement(\"span\",{ref:s,__self:Hv,__source:{fileName:Qv,lineNumber:62,columnNumber:13}},e.createElement(\"a\",Object.assign({href:o,ref:u,\"data-show-count\":\"true\",\"aria-label\":a||\"Stars on GitHub\"},l&&{\"data-icon\":ov[l]},c&&{\"data-size\":c},{__self:Hv,__source:{fileName:Qv,lineNumber:63,columnNumber:17}}),n)))})),cw);const yw=function(t){var r=t.data,n=t.className,o=t.menuLayout,i=L(t,lw),a=r.type,c=void 0===a?nv.Link:a,l=mw[c],s=(0,e.useMemo)((function(){var e=dw(dw({},r),i);return c!==nv.Dropdown?(0,je.omit)(e,\"hidePopup\",\"isActive\"):e}),[r,i,c]);return e.createElement(De.Provider,{value:\"navigation\",__self:uw,__source:{fileName:sw,lineNumber:54,columnNumber:9}},e.createElement(\"li\",{className:fw({\"menu-layout\":o},n),__self:uw,__source:{fileName:sw,lineNumber:55,columnNumber:13}},e.createElement(l,Object.assign({},s,{className:fw(\"content\"),__self:uw,__source:{fileName:sw,lineNumber:56,columnNumber:17}}))))};var hw=[\"column\",\"index\",\"activeItemId\",\"onActiveItemChange\"];const bw=function(t){var r=t.column,n=t.index,o=t.activeItemId,i=t.onActiveItemChange,a=L(t,hw),c=\"\".concat(r,\"-\").concat(n)===o,l=function(e){var t=e.column,r=e.index,n=e.onActiveItemChange,o=e.activeItemId;return function(e){var i=\"\".concat(t,\"-\").concat(r);e&&e.stopPropagation(),n(i===o?void 0:\"\".concat(t,\"-\").concat(r))}}({column:r,index:n,activeItemId:o,onActiveItemChange:i});return e.createElement(yw,Object.assign({isActive:c,onClick:l,hidePopup:i},a,{__self:undefined,__source:{fileName:\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationListItem/NavigationListItem.tsx\",lineNumber:24,columnNumber:9}}))};var vw=[\"className\",\"itemClassName\",\"items\"],gw=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/NavigationList/NavigationList.tsx\",_w=void 0,ww=function(t){var r=t.className,n=t.itemClassName,o=t.items,i=L(t,vw);return e.createElement(\"ul\",{className:r,__self:_w,__source:{fileName:gw,lineNumber:14,columnNumber:5}},o.map((function(t,r){return e.createElement(bw,Object.assign({key:r,index:r,data:t,className:n},i,{__self:_w,__source:{fileName:gw,lineNumber:16,columnNumber:13}}))})))},xw=r(6035),kw={insert:\"head\",singleton:!1};o()(xw.Z,kw);xw.Z.locals;var Nw=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/DesktopNavigation/DesktopNavigation.tsx\",Mw=void 0,jw=z(\"desktop-navigation\");const Sw=function(t){var r=t.logo,n=t.leftItemsWithIconSize,o=t.rightItemsWithIconSize,i=t.isSidebarOpened,a=t.onSidebarOpenedChange,c=t.onActiveItemChange,l=t.activeItemId;return e.createElement(\"div\",{className:jw(\"wrapper\"),__self:Mw,__source:{fileName:Nw,lineNumber:25,columnNumber:5}},r&&e.createElement(\"div\",{className:jw(\"left\"),__self:Mw,__source:{fileName:Nw,lineNumber:27,columnNumber:13}},e.createElement(_v,Object.assign({},r,{className:jw(\"logo\"),__self:Mw,__source:{fileName:Nw,lineNumber:28,columnNumber:17}}))),e.createElement(\"div\",{className:jw(\"navigation-container\"),__self:Mw,__source:{fileName:Nw,lineNumber:31,columnNumber:9}},e.createElement(dv,{className:jw(\"navigation\"),onScrollStart:c,__self:Mw,__source:{fileName:Nw,lineNumber:32,columnNumber:13}},e.createElement(ww,{items:n,onActiveItemChange:c,className:jw(\"links\"),itemClassName:jw(\"item\"),column:fv.Left,activeItemId:l,menuLayout:mv.Desktop,__self:Mw,__source:{fileName:Nw,lineNumber:33,columnNumber:17}}))),e.createElement(\"div\",{className:jw(\"right\"),__self:Mw,__source:{fileName:Nw,lineNumber:44,columnNumber:9}},e.createElement(zv,{isSidebarOpened:i,onSidebarOpenedChange:a,__self:Mw,__source:{fileName:Nw,lineNumber:45,columnNumber:13}}),o&&e.createElement(ww,{onActiveItemChange:c,column:fv.Right,items:o,activeItemId:l,className:jw(\"buttons\"),itemClassName:jw(\"item\"),menuLayout:mv.Desktop,__self:Mw,__source:{fileName:Nw,lineNumber:50,columnNumber:17}})))};var Ew=r(7215),Lw={insert:\"head\",singleton:!1};o()(Ew.Z,Lw);Ew.Z.locals;var Ow=[\"isOpened\",\"topItems\",\"bottomItems\"],Iw=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/MobileNavigation/MobileNavigation.tsx\",Cw=void 0,Pw=z(\"mobile-navigation\");const Aw=function(t){var r=t.isOpened,n=t.topItems,o=t.bottomItems,i=L(t,Ow);return\"undefined\"==typeof window?null:e.createElement(tr,{__self:Cw,__source:{fileName:Iw,lineNumber:25,columnNumber:9}},e.createElement(cd,{key:null==n?void 0:n.length,className:Pw(),isOpened:Boolean(r),__self:Cw,__source:{fileName:Iw,lineNumber:26,columnNumber:13}},e.createElement(\"div\",{className:Pw(\"wrapper\"),__self:Cw,__source:{fileName:Iw,lineNumber:27,columnNumber:17}},n&&e.createElement(ww,Object.assign({className:Pw(\"rows\"),items:n,column:fv.Top,menuLayout:mv.Mobile},i,{__self:Cw,__source:{fileName:Iw,lineNumber:29,columnNumber:25}})),o&&e.createElement(ww,Object.assign({className:Pw(\"rows\"),items:o,column:fv.Bottom,menuLayout:mv.Mobile},i,{__self:Cw,__source:{fileName:Iw,lineNumber:38,columnNumber:25}})))))};var Dw=r(7520),Tw={insert:\"head\",singleton:!1};o()(Dw.Z,Tw);Dw.Z.locals;var zw=\"/home/runner/work/page-constructor/page-constructor/src/navigation/components/Navigation/Navigation.tsx\",Bw=void 0,Rw=z(\"navigation\");const Fw=function(t){var r=t.data,n=t.logo,o=r.leftItems,i=r.rightItems,a=r.iconSize,c=void 0===a?20:a,l=r.withBorder,s=void 0!==l&&l,u=F((0,e.useState)(!1),2),p=u[0],d=u[1],f=F((0,e.useState)(void 0),2),m=f[0],y=f[1],h=F((0,e.useState)(s),2),b=h[0],v=h[1],g=av(c),_=(0,e.useMemo)((function(){return o.map(g)}),[g,o]),w=(0,e.useMemo)((function(){return null==i?void 0:i.map(g)}),[g,i]),x=function(e){y(e)},k=function(e){return d(e)};return(0,e.useEffect)((function(){var e=Se().debounce((function(){b||v(window.scrollY>0)}),20);return window.addEventListener(\"scroll\",e,{passive:!0}),function(){return window.removeEventListener(\"scroll\",e)}})),e.createElement($d,{className:Rw({\"with-border\":b}),__self:Bw,__source:{fileName:zw,lineNumber:59,columnNumber:9}},e.createElement(yu,{__self:Bw,__source:{fileName:zw,lineNumber:60,columnNumber:13}},e.createElement(wl,{__self:Bw,__source:{fileName:zw,lineNumber:61,columnNumber:17}},e.createElement(\"nav\",{__self:Bw,__source:{fileName:zw,lineNumber:62,columnNumber:21}},e.createElement(Sw,{logo:n,activeItemId:m,onActiveItemChange:x,leftItemsWithIconSize:_,rightItemsWithIconSize:w,isSidebarOpened:p,onSidebarOpenedChange:k,__self:Bw,__source:{fileName:zw,lineNumber:63,columnNumber:25}}),e.createElement(cl,{onOutsideClick:function(){return k(!1)},__self:Bw,__source:{fileName:zw,lineNumber:72,columnNumber:25}},e.createElement(Aw,{topItems:o,bottomItems:i,isOpened:p,activeItemId:m,onActiveItemChange:x,__self:Bw,__source:{fileName:zw,lineNumber:73,columnNumber:29}}))))))};var Uw=r(3465),Zw={insert:\"head\",singleton:!1};o()(Uw.Z,Zw);Uw.Z.locals;var Yw=\"/home/runner/work/page-constructor/page-constructor/src/navigation/containers/Layout/Layout.tsx\",Ww=void 0,Vw=z(\"layout\");const Qw=function(t){var r=t.children,n=t.navigation;return e.createElement(\"div\",{className:Vw(),__self:Ww,__source:{fileName:Yw,lineNumber:17,columnNumber:5}},n&&e.createElement(Fw,{data:n.header,logo:n.logo,__self:Ww,__source:{fileName:Yw,lineNumber:18,columnNumber:24}}),e.createElement(\"main\",{className:Vw(\"content\"),__self:Ww,__source:{fileName:Yw,lineNumber:19,columnNumber:9}},r))};var Hw=r(6876),Gw={insert:\"head\",singleton:!1};o()(Hw.Z,Gw);Hw.Z.locals;var qw=\"/home/runner/work/page-constructor/page-constructor/src/components/BlockBase/BlockBase.tsx\",$w=void 0,Xw=z(\"block-base\");const Kw=function(t){var r=t.anchor,n=t.visible,o=t.children,i=t.className,a=t.resetPaddings,c=t.qa;return e.createElement(wl,{className:Xw(C({},\"reset-paddings\",a),i),visible:n,reset:!0,dataQa:c,__self:$w,__source:{fileName:qw,lineNumber:18,columnNumber:9}},r&&e.createElement(Kc,{id:r.url,className:Xw(\"anchor\"),__self:$w,__source:{fileName:qw,lineNumber:24,columnNumber:24}}),o)};var Jw=\"/home/runner/work/page-constructor/page-constructor/src/containers/PageConstructor/components/ConstructorBlock/ConstructorBlock.tsx\",ex=void 0,tx=z(\"constructor-block\"),rx=function(t){var r=t.index,n=void 0===r?0:r,o=t.data,i=t.children,a=o.type,c=(0,e.useMemo)((function(){return Se().pick(o,[\"anchor\",\"visible\",\"resetPaddings\"])}),[o]);return e.createElement(Yy,Object.assign({type:a,index:n},c,{__self:ex,__source:{fileName:Jw,lineNumber:28,columnNumber:9}}),e.createElement(Kw,Object.assign({className:tx({type:a})},c,{__self:ex,__source:{fileName:Jw,lineNumber:29,columnNumber:13}}),i))};const nx=pt({en:JSON.parse('{\"loadable-load-error\":\"Error occured\",\"loadable-try-again\":\"Try again\"}'),ru:JSON.parse('{\"loadable-load-error\":\"Произошла ошибка\",\"loadable-try-again\":\"Повторить\"}')},\"Loadable\");var ox=r(8166),ix={insert:\"head\",singleton:!1};o()(ox.Z,ix);ox.Z.locals;var ax=\"/home/runner/work/page-constructor/page-constructor/src/containers/Loadable/Loadable.tsx\",cx=void 0;function lx(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function sx(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?lx(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):lx(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var ux=(0,T.Z)(\"loadable-block\"),px={loading:!1,error:!1};const dx=function(t){var r=t.Component,n=t.ChildComponent,o=t.fetch,i=t.block,a=t.blockKey,c=t.serviceId,l=t.params,s=F((0,e.useState)(px),2),u=s[0],p=s[1],d=F((0,e.useState)(0),2),f=d[0],m=d[1],y=(0,e.useCallback)((function(){m(f+1)}),[f]);(0,e.useEffect)((function(){function e(){return e=R(Z().mark((function e(){var t;return Z().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return p({loading:!0,error:!1}),e.prev=1,e.next=4,o(sx({blockKey:a,serviceId:c},null!=l?l:{}));case 4:t=e.sent,p({data:t,loading:!1,error:!1}),e.next=13;break;case 9:e.prev=9,e.t0=e.catch(1),p({loading:!1,error:!0});case 13:case\"end\":return e.stop()}}),e,null,[[1,9]])}))),e.apply(this,arguments)}!function(){e.apply(this,arguments)}()}),[f,o,a,c,l]);var h=u.error,b=u.loading,v=u.data;return b?e.createElement(\"div\",{className:ux(\"loader\"),__self:cx,__source:{fileName:ax,lineNumber:72,columnNumber:13}},e.createElement(cy,{size:\"xl\",__self:cx,__source:{fileName:ax,lineNumber:73,columnNumber:17}})):e.createElement(fy,{isError:h,text:nx(\"loadable-load-error\"),buttonText:nx(\"loadable-try-again\"),handler:y,__self:cx,__source:{fileName:ax,lineNumber:79,columnNumber:9}},e.createElement(r,Object.assign({},i,{__self:cx,__source:{fileName:ax,lineNumber:85,columnNumber:13}}),v&&(Array.isArray(v)?v.map((function(t,r){return e.createElement(n,Object.assign({key:t.id||r},t,{__self:cx,__source:{fileName:ax,lineNumber:89,columnNumber:29}}))})):e.createElement(n,Object.assign({},v,{__self:cx,__source:{fileName:ax,lineNumber:92,columnNumber:25}})))))};var fx=\"/home/runner/work/page-constructor/page-constructor/src/containers/PageConstructor/components/ConstructorLoadable/ConstructorLoadable.tsx\",mx=void 0,yx=function(t){var r=(0,e.useContext)(Fy).itemMap,n=t.block,o=t.blockKey,i=t.config,a=t.serviceId,c=t.params,l=n.type,s=i.fetch,u=i.component,p=r[l];return e.createElement(De.Provider,{value:o,key:o,__self:mx,__source:{fileName:fx,lineNumber:23,columnNumber:9}},e.createElement(dx,{key:o,block:n,blockKey:o,Component:p,ChildComponent:u,fetch:s,serviceId:a,params:c,__self:mx,__source:{fileName:fx,lineNumber:24,columnNumber:13}}))},hx=\"/home/runner/work/page-constructor/page-constructor/src/containers/PageConstructor/components/ConstructorBlocks/ConstructorBlocks.tsx\",bx=void 0,vx=function(t){var r=t.items,n=(0,e.useContext)(Fy),o=n.blockTypes,i=n.loadables,a=n.itemMap,c=n.shouldRenderBlock;return e.createElement(e.Fragment,{__self:bx,__source:{fileName:hx,lineNumber:82,columnNumber:12}},r.map(function t(){var r,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"\",l=arguments.length>1?arguments[1]:void 0,s=arguments.length>2?arguments[2]:void 0;if(!a[l.type])return n?null:e.createElement(Yy,{type:l.type,index:s,__self:bx,__source:{fileName:hx,lineNumber:27,columnNumber:17}},null);var u=Cl(l,s),p=n?\"\".concat(n,\"_\").concat(u):u;if(c&&!c(l,p))return null;if(\"loadable\"in l&&l.loadable){var d=l.loadable,f=d.source,m=d.serviceId,y=d.params,h=Se().get(i,f);if(!h)return null;r=e.createElement(yx,{block:l,key:p,blockKey:p,config:h,serviceId:m,params:y,__self:bx,__source:{fileName:hx,lineNumber:49,columnNumber:17}})}else{var b;\"children\"in l&&l.children&&(b=l.children.map(t.bind(null,p))),r=e.createElement(Hy,{data:l,key:p,blockKey:p,__self:bx,__source:{fileName:hx,lineNumber:65,columnNumber:17}},b)}return o.includes(l.type)?e.createElement(rx,{data:l,key:p,index:s,__self:bx,__source:{fileName:hx,lineNumber:74,columnNumber:13}},r):r}.bind(null,\"\")))},gx=r(9268),_x={insert:\"head\",singleton:!1};o()(gx.Z,_x);gx.Z.locals;var wx=\"/home/runner/work/page-constructor/page-constructor/src/containers/PageConstructor/components/ConstructorRow/ConstructorRow.tsx\",xx=void 0,kx=z(\"constructor-row\"),Nx=function(t){var r=t.children;return r?e.createElement(yu,{className:kx(),__self:xx,__source:{fileName:wx,lineNumber:13,columnNumber:9}},e.createElement(wl,{__self:xx,__source:{fileName:wx,lineNumber:14,columnNumber:13}},r)):null},Mx=r(2723),jx={insert:\"head\",singleton:!1};o()(Mx.Z,jx);Mx.Z.locals;var Sx=[\"content\"],Ex=\"/home/runner/work/page-constructor/page-constructor/src/containers/PageConstructor/PageConstructor.tsx\",Lx=void 0;function Ox(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function Ix(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Ox(Object(r),!0).forEach((function(t){C(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Ox(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}var Cx,Px=z(\"page-constructor\"),Ax=function(t){var r=t.content,n=void 0===r?{}:r,o=n.blocks,i=void 0===o?[]:o,a=n.background,c=void 0===a?{}:a,l=t.renderMenu,s=t.shouldRenderBlock,u=t.navigation,p=t.custom,d=(0,e.useMemo)((function(){return{context:{blockTypes:[].concat(D(Ml),D(Pl(p))),subBlockTypes:[].concat(D(nh),D(Dl(p))),headerBlockTypes:[].concat(D(jl),D(Tl(p))),itemMap:Ix(Ix(Ix({},tv),rv),Al(p)),loadables:null==p?void 0:p.loadable,shouldRenderBlock:s,customization:{decorators:null==p?void 0:p.decorators}}}}),[p,s]).context,f=(0,e.useContext)(N).themeValue,m=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return e.find((function(e){var r=e.type;return t.includes(r)}))}(i,d.headerBlockTypes),y=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return e.filter((function(e){var r=e.type;return!t.includes(r)}))}(i,d.headerBlockTypes),h=Mp(c,f);return e.createElement(Fy.Provider,{value:d,__self:Lx,__source:{fileName:Ex,lineNumber:89,columnNumber:9}},e.createElement(\"div\",{className:Px(),__self:Lx,__source:{fileName:Ex,lineNumber:90,columnNumber:13}},e.createElement(\"div\",{className:Px(\"wrapper\"),__self:Lx,__source:{fileName:Ex,lineNumber:91,columnNumber:17}},h&&e.createElement(fu,Object.assign({},h,{className:Px(\"background\"),__self:Lx,__source:{fileName:Ex,lineNumber:93,columnNumber:25}})),e.createElement(Qw,{navigation:u,__self:Lx,__source:{fileName:Ex,lineNumber:95,columnNumber:21}},l&&l(),m&&e.createElement(Gy,{data:m,blockKey:Nl.HeaderBlock,__self:Lx,__source:{fileName:Ex,lineNumber:98,columnNumber:29}}),e.createElement($d,{__self:Lx,__source:{fileName:Ex,lineNumber:100,columnNumber:25}},y&&e.createElement(Nx,{__self:Lx,__source:{fileName:Ex,lineNumber:102,columnNumber:33}},e.createElement(vx,{items:y,__self:Lx,__source:{fileName:Ex,lineNumber:103,columnNumber:37}})))))))},Dx=function(t){var r=t.content,n=(void 0===r?{}:r).animated,o=void 0===n||n,i=L(t,Sx);return e.createElement(pe.Provider,{value:{animated:o},__self:Lx,__source:{fileName:Ex,lineNumber:118,columnNumber:9}},e.createElement(Ax,Object.assign({content:t.content},i,{__self:Lx,__source:{fileName:Ex,lineNumber:119,columnNumber:13}})))},Tx=\"PC_EDITOR_DEVICE\",zx={Ready:\"\".concat(Tx,\"_MESSAGE_READY\"),Update:\"\".concat(Tx,\"_MESSAGE_UPDATE\")},Bx=\"/home/runner/work/page-constructor/page-constructor/src/widget/index.tsx\",Rx=document.createElement(\"div\");document.body.appendChild(Rx),window.addEventListener(\"message\",(function(r){var n;if((null===(n=r.data)||void 0===n?void 0:n.type)===zx.Update){var o=r.data.data,i=o.constructorProps,a=o.providerProps;t.render(e.createElement(S,Object.assign({},a,{__self:this,__source:{fileName:Bx,lineNumber:22,columnNumber:13}}),e.createElement(Dx,Object.assign({},i,{__self:this,__source:{fileName:Bx,lineNumber:23,columnNumber:17}}))),Rx)}})),null===(Cx=window.parent)||void 0===Cx||Cx.postMessage({type:zx.Ready},window.parent.origin)})()})();";
|