{"version":3,"file":"index.d23513e3.js","sources":["../../../vite/modulepreload-polyfill","../../../plugin-vue:export-helper","../../../src/components/Logo.vue","../../../src/components/BlobLeft.vue","../../../src/components/BlobRight.vue","../../assets/illustration-main.svg","../../../src/components/Jumbotron.vue","../../../src/components/Services.vue","../../../src/components/WhoCanAccess.vue","../../../../../../assets/general-office.png","../../../src/components/SuccessStory.vue","../../../src/components/WhyUse.vue","../../../../../../assets/laptop-screenshot.png","../../../src/components/About.vue","../../../src/components/Profile.vue","../../../../../../assets/screenshot.png","../../../src/components/KeyScope.vue","../../assets/judge-at-redek.svg","../../../src/components/AtRedek.vue","../../../../../../assets/workspace.png","../../../src/components/Footer.vue","../../../src/components/Login.vue","../../../src/components/ScrollToUp.vue","../../../src/App.vue","../../../src/store/vuex/global.js","../../../src/store/vuex/index.js","../../../src/routes.js","../../../src/plugins/toId.js","../../../src/locales/en.js","../../../src/locales/es.js","../../../src/plugins/i18n.js","../../../src/constants/index.ts","../../../src/main.js"],"sourcesContent":["const p = function polyfill() {\n const relList = document.createElement('link').relList;\n if (relList && relList.supports && relList.supports('modulepreload')) {\n return;\n }\n for (const link of document.querySelectorAll('link[rel=\"modulepreload\"]')) {\n processPreload(link);\n }\n new MutationObserver((mutations) => {\n for (const mutation of mutations) {\n if (mutation.type !== 'childList') {\n continue;\n }\n for (const node of mutation.addedNodes) {\n if (node.tagName === 'LINK' && node.rel === 'modulepreload')\n processPreload(node);\n }\n }\n }).observe(document, { childList: true, subtree: true });\n function getFetchOpts(script) {\n const fetchOpts = {};\n if (script.integrity)\n fetchOpts.integrity = script.integrity;\n if (script.referrerpolicy)\n fetchOpts.referrerPolicy = script.referrerpolicy;\n if (script.crossorigin === 'use-credentials')\n fetchOpts.credentials = 'include';\n else if (script.crossorigin === 'anonymous')\n fetchOpts.credentials = 'omit';\n else\n fetchOpts.credentials = 'same-origin';\n return fetchOpts;\n }\n function processPreload(link) {\n if (link.ep)\n // ep marker = processed\n return;\n link.ep = true;\n // prepopulate the load record\n const fetchOpts = getFetchOpts(link);\n fetch(link.href, fetchOpts);\n }\n};__VITE_IS_MODERN__&&p();","\nexport default (sfc, props) => {\n const target = sfc.__vccOpts || sfc;\n for (const [key, val] of props) {\n target[key] = val;\n }\n return target;\n}\n","\r\n\r\n","\r\n\r\n","\r\n\r\n","import { createElementVNode as _createElementVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createStaticVNode as _createStaticVNode } from \"vue\"\n\nconst _hoisted_1 = {\n xmlns: \"http://www.w3.org/2000/svg\",\n viewBox: \"0 0 2000 2000\"\n}\nconst _hoisted_2 = /*#__PURE__*/_createStaticVNode(\"\", 32)\nconst _hoisted_34 = [\n _hoisted_2\n]\n\nexport function render(_ctx, _cache) {\n return (_openBlock(), _createElementBlock(\"svg\", _hoisted_1, _hoisted_34))\n}\nexport default { render: render }","\r\n\r\n","\r\n\r\n","\r\n\r\n","export default \"/assets/general-office.png\"","\r\n\r\n","\r\n\r\n","export default \"/assets/laptop-screenshot.png\"","\r\n\r\n","\r\n\r\n","export default \"/assets/screenshot.png\"","\r\n\r\n","import { createElementVNode as _createElementVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createStaticVNode as _createStaticVNode } from \"vue\"\n\nconst _hoisted_1 = {\n viewBox: \"0 0 595.28 954.93\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"xmlns:xlink\": \"http://www.w3.org/1999/xlink\"\n}\nconst _hoisted_2 = /*#__PURE__*/_createStaticVNode(\"\", 55)\nconst _hoisted_57 = [\n _hoisted_2\n]\n\nexport function render(_ctx, _cache) {\n return (_openBlock(), _createElementBlock(\"svg\", _hoisted_1, _hoisted_57))\n}\nexport default { render: render }","\r\n\r\n","export default \"/assets/workspace.png\"","\r\n\r\n","\r\n\r\n","\r\n\r\n","\r\n\r\n\r\n\r\n\r\n","// initial state\r\nconst state = () => ({\r\n headerMode: 'full',\r\n headerData: {\r\n userFullName: '',\r\n instituteId: '',\r\n instituteName: '',\r\n balance: '0',\r\n points: '0',\r\n isAuthenticated: false,\r\n isTrollyShowed: false,\r\n totalCart: 0,\r\n },\r\n })\r\n \r\n // getters\r\n const getters = {\r\n headerMode(state) {\r\n return state.headerMode\r\n },\r\n headerData(state) {\r\n return state.headerData\r\n },\r\n }\r\n \r\n // actions\r\n const actions = {}\r\n \r\n // mutations\r\n const mutations = {\r\n setHeaderMode(state, val) {\r\n state.headerMode = val\r\n },\r\n setHeaderData(state, val) {\r\n state.headerData = val\r\n },\r\n }\r\n \r\n export default {\r\n namespaced: true,\r\n state,\r\n getters,\r\n actions,\r\n mutations,\r\n }\r\n ","import { createStore } from 'vuex'\r\nimport global from './global'\r\n\r\nexport default createStore({\r\n modules: {\r\n global,\r\n },\r\n})\r\n","import Index from '@/App.vue'\r\nimport NotFound from '@/views/NotFound.vue'\r\n\r\n/** @type {import('vue-router').RouterOptions['routes']} */\r\nexport const routes = [\r\n {\r\n path: '/',\r\n name: 'index',\r\n meta: { title: 'Redek Landing Page', layout: 'default' },\r\n component: Index,\r\n },\r\n { path: '/404', component: NotFound },\r\n { path: '/:path(.*)', component: NotFound },\r\n]","const toId = (id) => {\r\n document.getElementById(id).scrollIntoView({ behavior: \"smooth\" });\r\n }\r\nexport default toId","export default{\r\n halo: \"Hello\",\r\n english: \"English\",\r\n spanish: \"Spanish\",\r\n // Jumbotron\r\n home: \"Home\",\r\n services: \"Services\",\r\n aboutUs: \"About Us\",\r\n blog: \"Blog\",\r\n contactUs: \"Contact Us\",\r\n jumbotronText: \"Solve and manage any type of dispute online\",\r\n jumbotronSubText:\r\n \"We implement all kinds of technological platforms for conciliation, arbitration and dispute resolution\",\r\n signIn: 'Login',\r\n signUp: 'Sign Up',\r\n // Services\r\n ourServicesTitle: \"Our Services\",\r\n titleService1: \"Acquire Specialized Technologies\",\r\n descriptionService1: \"We provide the best ODR technology so that you and your company can adapt them to the needs that you require at that time.\",\r\n titleService2: \"Development consulting\",\r\n descriptionService2: \"We work together with your tech team to create and develop the best electronic dispute resolution mechanisms.\",\r\n titleService3: \"We adapt any platform to your needs\",\r\n descriptionService3: \"We put at your disposal a specialized team of developers to work on the established technologies and adapt them to all your requirements. For more information on our team, please visit their profiles\",\r\n viewService: \"View Service\",\r\n // Who Can Access\r\n whoCanAccessTitle: 'Who can access our services?',\r\n titleWho1: \"Public Entities\",\r\n descriptionWho1:\r\n \"All those public entities wishing to optimize their administrative and judicial procedures through platforms that include dispute resolution.\",\r\n titleWho2: \"Private companies\",\r\n descriptionWho2:\r\n \"Those needing to manage and carry out a direct and comprehensive follow-up of each dispute that may arise with their clients. And those who wanti to implement and optimize their customer service and questions, complaints, and claims systems. Currently, we focus our developments on platforms for clients in the financial and customer service sectors, who regularly handle many daily disputes with considerable risk of being processed to courts.\",\r\n titleWho3: \"Arbitration and Conciliation Center\",\r\n descriptionWho3:\r\n \"Arbitration centers with on established operation wishing to optimize the way in which they carry out their procedures with the use of information technologies.\",\r\n // Our success story\r\n successStoryTitle: \"Get to know our success stories\",\r\n successStorySubTitle: \"Procuraduría General de la Nación\",\r\n successStorySubTitleSub: \"(Inspector General's Office)\",\r\n successStoryDescription1: \"Together with CREK, the global online dispute resolution platform, we implemented the virtual conciliation pilot for the Civil and Commercial Conciliation Center at the Procuraduría de la Nación. Though this pilot, a platform was launched for the parties, their attorneys, and conciliators to carry out conciliation processdings entirely online.\",\r\n successStoryDescription2: \"We are leaders in the regulation of ODR platforms including the one found in Order 18 No. 0000082-DJU-1500 by the Ministry of Justice and Law which was adopted for Model Arbitration Rules in the context of the system of security and warranty transactions. Along with our suppliers, we have implemented electronic negotiation, conciliation, and arbitration proceedings both in public and private institutions.\",\r\n viewAllCases: \"View All Cases\",\r\n // Why Use\r\n whyUseTitle: \"WHY USE AN ODR PLATFORM TO\",\r\n whyUseSubTitle: \"RESOLVE YOUR DISPUTES?\",\r\n whyUseTitle1: \"More Effective\",\r\n whyUseDescription1: \"Online Dispute Resolution platforms have a significantly higher success rate than in-house conventional dispute resolution tools\",\r\n whyUseTitle2: \"Increase Efficiency\",\r\n whyUseDescription2: \"ODR more than halves the time required to resolve disputes, in addition, it can be executed remotely, further reducing costs\",\r\n whyUseTitle3: \"Improved Transparency\",\r\n whyUseDescription3: \"The ODR platforms allows a neutral and specialized third party to regulate the specific desires of the disputants\",\r\n whyUseTitle4: \"Reduced Costs\",\r\n whyUseDescription4: \"An ODR platform streamlines the dispute process and reduces the instances where formal arbitration is required, in addition, external legal fees are removed completely\",\r\n whyUseTitle5: \"Reduce litigation\",\r\n whyUseDescription5: \"Results in lower (half) of legal actions against institutions\",\r\n whyUseTitle6: \"Flexible Capacity\",\r\n whyUseDescription6: \"The platform can respond to an increase in dispute volumes that may occur seasonally\",\r\n whyUseTitle7: \"Scalable\",\r\n whyUseDescription7: \"The platform includes capability for arbitration proceedings, conciliations, mediations, negotiations, and in general any proceeding that has more than two contrending parties.\",\r\n whyUseTitle8: \"Interoperability\",\r\n whyUseDescription8: \"This platform can be easily integrated with a client's existing operating model\",\r\n // About Redek\r\n aboutRedek: \"About Redek\",\r\n aboutParagraph1: \"REDEK is a Columbian startup that offers a wide range of online dispute resolution services.\",\r\n aboutParagraph2: \"At REDEK we understand that, although it is not possible to completely eliminate the emergence of controversies in any sector, it is possible and also feasible to focus on ensuring our clients the best possible experience for their solution.\",\r\n aboutParagraph3: \"Every year, in both the public and private sectors, millions of disputes must be resolved. However, the approach that is frequently made to the resolution of disputes from traditional mechanisms comes from teams with a high level of turnover, with limited knowledge of disputes and using tools not fit for the purpose. The result is an increase in the costs of dispute resolution, an increase in delayed processes in national courts, reputational damage and a lack of satisfication from people resorting to the judicial system.\",\r\n aboutParagraph4: \"In this context, REDEK provides its clients a comprehensive Online Dispute Resolution service that reduces the costs of the dispute resolution process and significantly increases the success rate of dispute resolution without unnecessary formalities.\",\r\n aboutTitle: \"Solution Networks\",\r\n aboutSubTitle: \"We help create and optimize any platform for online dispute resolution\",\r\n // Key Scope\r\n keyScopeTitle: \"Key Scope\",\r\n keyScopeSubTitle: \"Based on your specific business needs, Redek provides you with a customized Online Dispute Resolution platform capable of a wide service variety which includes:\",\r\n keyScopeTitle1: \"Authoring\",\r\n keyScopeDescription1: \"Providing a customized platform for dispute resolution that enables a range of different options, allowing the client to choose which type of dispute resolution service they wish to contract, for how long, and under what means they require the stages of the proceeding to be executed\",\r\n keyScopeTitle2: \"Case Management\",\r\n keyScopeDescription2: \"The client will be able to provide all relevant case information through a submission to the Redek platform. Our platform then assigns a case to an agent to lead the resolution of the dispute in a timely manner\",\r\n keyScopeTitle3: \"Virtual Meetings\",\r\n keyScopeDescription3: \"Virtual Meetings The platform enables the user to access the virtual rooms through which information can be exchanged with the mediator or conflict solver, as well as the other parties\",\r\n keyScopeTitle4: \"Real-time Chat\",\r\n keyScopeDescription4: \"The dispute resolution platform has a text channel, through which users will be able to exchange messages directly from their dashboard and to send attachments such as photos, documents, etc. throughout the proceeding\",\r\n keyScopeTitle5: \"Document Storage\",\r\n keyScopeDescription5: \"The platform contains a management system for the supporting documents used throughout the proceeding\",\r\n keyScopeTitle6: \"Third Party Appointments\",\r\n keyScopeDescription6: \"The platform has a system for summoning third parties; this system issues a notification that will reachmediators or negotiators registered\",\r\n keyScopeTitle7: \"Timeline\",\r\n keyScopeDescription7: \"The platform will resolve disputes within an agreed time period according to the level of service agreed \",\r\n // At Redek\r\n atRedekTitle: \"At REDEK you will find multiple solutions to your disputes\",\r\n atRedekTitle1: \"High range of services\",\r\n atRedekDescription1: \"We help you solve your disputes regardless of their origin and magnitude. We have a wide services catalog, which are directed and executed by the best professionals in the sector for you. Even better, there are specialists in various fields of law\",\r\n atRedekTitle2: \"Experienced professionals\",\r\n atRedekDescription2: \"At Redek, you will find a catalog of professionals with extensive experience in all fields of law, each with an optiomal approach that will help you make the best decision to acquire or modify any type of ODR system\",\r\n atRedekTitle3: \"Customer service and petitions, claims and complaints systems\",\r\n atRedekDescription3: \"At Redek we have developed a special section made to optimally solve all those inconveniences that customers may have with companies. This is meant to answer their questions, receive all kinds of petitions, claims and complaints, store their requests and offer the ease of a follow-up by both participants. All this from the systems we will help you develop and implement\",\r\n // Profile\r\n nicolasDescription: \"Nicolás is the CEO at REDEK and a lawyer from Universidad Externado de Colombia with master's degrees in International and Comparative Law from National University of Singapore (NUS), and in Law and Global Economy from New York University (NYU). Nicolás was delegated by Colombia to Group III of the United Nations Commission for International Trade Law (UNCITRAL) on Online Dispute Resolution.

He has dedicated much of his career to promoting the use of technology in justice, a topic on which he has written articles and given numerous lectures, including a TED Talk.

His knowledge and experience are currently materialized in all the services REDEK provides for its clients, seeking to respond coherently to our client`s needs.\",\r\n carlosDescription: \"Carlos Mario is an industrial engineer with a graduate degree specializing in Senior Management as well as a master's degree in Commercial Management and Marketing from Universidad Complutense de Madrid.

He has more than twenty years of experience in managerial positions in commercial and industrial companies, and in different software and hardware ventures, including Datamind, Grupo Éxito and Terpel.\",\r\n cesarDescription: \"César is a civil engineer from Universidad Industrial de Santander and holds a master's degree in Project Management from Universidad de Viña del Mar in Chile.

He has extensive experience in operative and administrative management and direction of large-scale projects in the field of civil engineering. He has focused mainly on the hydrocarbon sector on both on-shore and off-shore auditing and consulting companies for Ecopetrol S.A. (largest energy sector company in Colombia).

Cesar has also worked at Pacific Rubiales Energy (now Frontera Energy) and Sociedad Portuaria de Puerto Bahía (Cartagena).\",\r\n zakiDescription: \"Zaki is a young entrepreneur, as a CEO in start up digital company in Indonesia, General Manager of International Company in UK and Singapore, and running several companies in Indonesia. With experience of managing start up businesses, mostly in IT projects.\",\r\n jamesDescription: \"He has more than 10 years of consulting experience (including his experience in Accenture and Deloitte) in the financial services, telecommunications and technology industries.

He is a graduate of the Commerce program (Honorable Mention) at University College Dublin and holds professional qualifications in management accounting, program execution and operations.\",\r\n // Footer\r\n footerTitle: \"Learn about the latest trends in ODR technology\",\r\n footerDescription:\r\n \"Visit our blog to be updated on all the information that your company needs.\",\r\n footerFormTitle:\r\n \"Find answers to your questions and get a quote for your ODR system\",\r\n footerFormName: \"Name\",\r\n footerFormEmail: \"E-mail\",\r\n footerFormMessage: \"Message\",\r\n footerFormPrivacyPolicy: \"I have read and I accept the privacy policy\",\r\n footerFormContactUs: \"Contact Us\",\r\n accessBlog: \"Access Blog\",\r\n ourTeam: \"Our Team\",\r\n successfullCases: \"Successful Cases\",\r\n footerContact: \"Contact\",\r\n}","export default{\r\n halo: \"Hola\",\r\n english: \"Inglés\",\r\n spanish: \"Español\",\r\n // Jumbotron\r\n home: \"Inicio\",\r\n services: \"Servicios\",\r\n aboutUs: \"Sobre Nosotros\",\r\n blog: \"Blog\",\r\n contactUs: \"Contáctanos\",\r\n jumbotronText: \"Resuelve y gestiona en línea cualquier tipo de conflicto\",\r\n jumbotronSubText:\r\n \"Implementamos todo tipo de plataformas tecnológicas para conciliación, arbitraje y solución de conflictos\",\r\n signIn: 'Iniciar sesión',\r\n signUp: 'Regístrate',\r\n // Services\r\n ourServicesTitle: \"Nuestros Servicios\",\r\n titleService1: \"Adquiere Tecnologías Especializadas\",\r\n descriptionService1: \"Aportamos la mejor tecnología ODR para que tú y tu empresa puedan adecuarlas a las necesidades que en ese momento estén requiriendo\",\r\n titleService2: \"Consultoría para el desarrollo\",\r\n descriptionService2: \"Trabajamos en conjunto con tu equipo tecnológico para crear y desarrollar las mejores soluciones electrónicas de controversias\",\r\n titleService3: \"Adaptamos cualquier plataforma a tus necesidades \",\r\n descriptionService3: \"Ponemos a tu disposición un equipo especializado de desarrolladores para que trabajen en las tecnologías ya establecidas y las adapten a todos los requerimientos que tenga. Para mayor información sobre nuestro equipo, por favor visite sus perfiles\",\r\n viewService: \"Ver Servicio\",\r\n // Who Can Access\r\n whoCanAccessTitle: '¿Quién puede acceder a nuestros servicios?',\r\n titleWho1: \"Instituciones Públicas\",\r\n descriptionWho1: \"Todas aquellas instituciones del sector público que deseen optimizar, a través de plataformas, sus procedimientos de carácter administrativo y judicial que impliquen la solución de alguna controversia\",\r\n titleWho2: \"Empresas privadas\",\r\n descriptionWho2: \"Aquellas que requieran gestionar y realizar un seguimiento directo y exhaustivo a cada uno de los conflictos que se puedan generar con sus clientes y que quieran implementar y optimizar sus sistemas de servicio al cliente y PQR. Actualmente, centramos nuestros desarrollos en plataformas para clientes en sectores financieros y de servicio al cliente, quienes regularmente gestionan gran cantidad de disputas diarias con gran riesgo de ser tramitadas ante la justicia ordinaria.\",\r\n titleWho3: \"Centro de arbitraje y conciliación\",\r\n descriptionWho3:\"Centros de arbitraje con un funcionamiento ya establecido que deseen optimizar la manera por la cual adelantan sus procedimientos con el uso de las tecnologías de la información.\",\r\n // Our success story\r\n successStoryTitle: \"Conoce los casos de éxito\",\r\n successStorySubTitle: \"Procuraduría General de la Nación\",\r\n successStorySubTitleSub: \"\",\r\n successStoryDescription1: \"Junto con CREK, la plataforma mundial de solución de controversias en línea, se logró implementar el piloto de conciliación virtual para el Centro de Conciliación en materia civil y comercial de la Procuraduría General de la Nación. Por medio de este piloto, se puso en marcha una plataforma para que, las partes, sus apoderados y los conciliadores, lograran llevar a cabo las conciliaciones enteramente en línea.\",\r\n successStoryDescription2: \"Lideramos la implementación de la regulación de plataformas de Resolución de Controversias en Línea incluida la contemplada en la Circular 18 No. 0000082-DJU-1500 del Ministerio de Justicia y del Derecho, la cual adoptó Reglas Modelo para el Arbitraje en Línea en el contexto de transacciones con garantías mobiliarias. Junto con nuestros proveedores, hemos implementado procesos electrónicos de negociación, conciliación y arbitraje tanto en instituciones públicas, como privadas.\",\r\n viewAllCases: \"Ver todos los casos\",\r\n // Why Use\r\n whyUseTitle: \"¿POR QUÉ UTILIZAR UNA PLATAFORMA EN LÍNEA\",\r\n whyUseSubTitle: \"PARA RESOLVER SUS CONTROVERSIAS?\",\r\n whyUseTitle1: \"Más eficaz\",\r\n whyUseDescription1: \"Las plataformas de resolución de controversias en línea tienen una tasa de éxito significativamente mayor que las herramientas internas de resolución de controversias convencionales\",\r\n whyUseTitle2: \"Aumenta la eficiencia\",\r\n whyUseDescription2: \"La resolución de controversias en línea reduce a más de la mitad el tiempo necesario para resolverlas; además, se puede ejecutar de forma remota, lo que reduce aún más los costos\",\r\n whyUseTitle3: \"Transparencia mejorada\",\r\n whyUseDescription3: \"La plataforma de resolución de controversias en línea permite a un tercero neutral y especializado regular los intereses específicos de las partes\",\r\n whyUseTitle4: \"Costos reducidos\",\r\n whyUseDescription4: \"Una plataforma de resolución de controversias en línea agiliza el proceso de resolución y reduce los casos en los que se requiere un arbitraje formal. Además, los honorarios legales externos se eliminan por completo\",\r\n whyUseTitle5: \"Menos litigios\",\r\n whyUseDescription5: \"Resulta en una reducción (a la mitad) de acciones legales contra varias instituciones\",\r\n whyUseTitle6: \"Capacidad flexible\",\r\n whyUseDescription6: \"La plataforma puede responder a un aumento en el volumen de controversias que puede ocurrir estacionalmente\",\r\n whyUseTitle7: \"Escalable\",\r\n whyUseDescription7: \"La plataforma incluye capacidad para procesos de arbitraje, conciliaciones, mediaciones, negociaciones y en general cualquier proceso que tenga más de dos partes contendientes\",\r\n whyUseTitle8: \"Iinteroperabilidad\",\r\n whyUseDescription8: \"Esta plataforma se puede integrar fácilmente con el modelo operativo existente del cliente\",\r\n // About Redek\r\n aboutRedek: \"Sobre REDEK\",\r\n aboutParagraph1: \"REDEK es un emprendimiento colombiano que ofrece un amplio rango de servicios de resolución de controversias completamente en línea.\",\r\n aboutParagraph2: \"En REDEK entendemos que, si bien no es posible eliminar completamente el surgimiento de controversias en cualquier sector, sí es posible y, además, viable enfocarnos en asegurarle a nuestros clientes la mejor experiencia posible para su solución.\",\r\n aboutParagraph3: \"Todos los años, tanto en el sector público, como en el sector privado, deben solucionarse millones de controversias. Sin embargo, la aproximación que frecuentemente se hace a la solución de controversias desde los mecanismos tradicionales proviene de equipos con un alto nivel de rotación y con conocimiento limitado de las controversias y usando herramientas que no sirven para el propósito. El resultado es un incremento en los costos de la resolución de controversias, un incremento en los procesos retrasados en los tribunales nacionales, daño reputacional y una falta de satisfacción por parte de los clientes o usuarios del sistema judicial.\",\r\n aboutParagraph4: \"En este contexto, REDEK le brinda a sus clientes un servicio comprehensivo de Resolución de Controversias en Línea que reduce los costos del trámite de resolución de la controversia e incrementa significativamente la tasa de éxito de su resolución sin formalidades innecesarias.\",\r\n aboutTitle: \"Red De Soluciones\",\r\n aboutSubTitle: \"Ayudamos a crear y optimizar cualquier plataforma para la resolución de disputas online\",\r\n // Key Scope\r\n keyScopeTitle: \"ALCANCE CLAVE\",\r\n keyScopeSubTitle: \"En función de sus necesidades comerciales específicas, REDEK le proporciona una plataforma personalizada de resolución de controversias en línea capaz de ofrecer un amplio servicio que incluye:\",\r\n keyScopeTitle1: \"Autoría\",\r\n keyScopeDescription1: \"Brindar una plataforma personalizada para la resolución de controversias que ponga a su disposición un abanico de diferentes opciones que le permitirán al cliente elegir qué tipo de servicio de resolución de controversias desea contratar, por cuánto tiempo y bajo qué medios requieren las etapas del trámite ejecutado\",\r\n keyScopeTitle2: \"Gestión de casos\",\r\n keyScopeDescription2: \"El cliente podrá proporcionar toda la información relevante del caso mediante un envío a la plataforma REDEK. Luego, nuestra plataforma asigna un agente de caso para que dirija la resolución de la controversia de manera oportuna\",\r\n keyScopeTitle3: \"Reuniones virtuales\",\r\n keyScopeDescription3: \"La plataforma permite al usuario acceder a las salas virtuales a través de las cuales se intercambiará información con el mediador o quien decida sobre las controversias, así como con las demás partes\",\r\n keyScopeTitle4: \"Chat en tiempo real\",\r\n keyScopeDescription4: \"La plataforma de resolución de controversias tiene un canal de texto, a través del cual los usuarios podrán intercambiar mensajes directamente desde su tablero y enviar archivos adjuntos como fotos, documentos, etc., durante todo el proceso\",\r\n keyScopeTitle5: \"Almacenamiento de documentos\",\r\n keyScopeDescription5: \"La plataforma contiene un sistema de gestión para los documentos de respaldo utilizados durante todo el proceso\",\r\n keyScopeTitle6: \"Nombramientos de terceros\",\r\n keyScopeDescription6: \"La plataforma cuenta con un sistema para convocar a terceros; este sistema emite una notificación que llegará a los mediadores o negociadores registrados\",\r\n keyScopeTitle7: \"Cronología\",\r\n keyScopeDescription7: \"La plataforma resolverá las controversias dentro de un plazo acordado según el nivel de servicio \",\r\n // At Redek\r\n atRedekTitle: \"En REDEK podrás encontrar múltiples soluciones a tus conflictos\",\r\n atRedekTitle1: \"Alta gama de servicios\",\r\n atRedekDescription1: \"Te ayudamos a resolver tus problemas sea cual sea su origen y magnitud, tenemos para ti un amplio catálogo de servicios los cuales están dirigidos y ejecutados por los mejores profesionales en el sector, y mejor aún con especialistas en las diversas áreas del derecho\",\r\n atRedekTitle2: \"Profesionales Experimentados\",\r\n atRedekDescription2: \"En Redek podrás encontrar un catálogo de profesionales con una amplia experiencia en todas las áreas del derecho, cada uno de ellos con un enfoque óptimo que te ayudará a tomar la mejor decisión para adquirir o modificar cualquier tipo de sistema ODR\",\r\n atRedekTitle3: \"Servicio al cliente y PQR\",\r\n atRedekDescription3: \"En Redek hemos desarrollado una sección especial hecha para resolver de manera óptima todos aquellos inconvenientes que puedan llegar a presentar los clientes con las empresas, para solucionar sus dudas y recibir toda clase de PQR, guardando sus peticiones y ofreciendo la facilidad de un seguimiento por parte de ambos participantes. Todo esto desde los sistemas los cuales te ayudamos a desarrollar e implementar\",\r\n // Profile\r\n nicolasDescription: \"Nicolás es el CEO de REDEK y abogado de la Universidad Externado de Colombia con maestrías en Derecho Internacional y Comparado de la Universidad Nacional de Singapur (NUS), y en Derecho y la Economía Global de la Universidad de Nueva York (NYU). Nicolás fue delegado por Colombia al Grupo III de la Comisión de las Naciones Unidas para el Derecho Mercantil Internacional (CNUDMI) sobre solución de controversias en línea.

Nicolás ha dedicado parte importante de su carrera a promover el uso de la tecnología en la justicia, tema en torno al cual ha escrito artículos y dictado numerosas conferencias, incluida una TED Talk.

Su conocimiento y experiencia se ven materializados actualmente en todos los servicios que presta REDEK a sus clientes, en donde siempre se busca responder coherentemente a las necesidades de nuestros clientes.\",\r\n carlosDescription: \"Carlos Mario es ingeniero Industrial con Especialización en Alta Gerencia y Maestría en Dirección Comercial y Marketing de la Universidad Complutense de Madrid.

Cuenta con experiencia de más de veinte años, en cargos directivos en empresas de índole comercial e industrial y en diferentes emprendimientos de software y hardware, entre estas se encuentra Datamind, Grupo Éxito y Terpel.\",\r\n cesarDescription: \"Ingeniero Civil de la Universidad Industrial de Santander y Magister en Gestión de Proyectos de la Universidad de Viña del Mar de Chile.

Cuenta con una amplia experiencia en dirección y gestión operativa y administrativa de proyectos a gran escala en el campo de la ingeniería civil, enfocados principalmente en el sector de hidrocarburos tanto “On Shore” como “Off Shore” de empresas de interventoría y consultoría para Ecopetrol S.A. Así mismo en el ejercicio como funcionario en Pacific Rubiales Energy (hoy Frontera Energy) y Sociedad Portuaria de Puerto Bahía (Cartagena).\",\r\n zakiDescription: \"Zaki es un joven emprendedor, como director general de una empresa digital emergente en Indonesia, director general de una empresa internacional en el Reino Unido y Singapur, y dirige varias empresas en Indonesia. Con experiencia en la gestión de empresas de nueva creación, principalmente en proyectos de TI.\",\r\n jamesDescription: \"James lidera la definición de estrategia en niveles directivos y la ejecución y entrega de proyectos.

Tiene más de 10 años de experiencia en consultoría (incluidas Accenture y Deloitte) en industrias de servicios financieros, telecomunicaciones y tecnología.

Es graduado del programa de Comercio (con mención honorífica) de la University College de Dublín y posee amplias calificaciones profesionales en contabilidad administrativa, ejecución de programas y operaciones.\",\r\n // Footer\r\n footerTitle: \"Infórmate sobre las últimas tendencias en tecnología ODR\",\r\n footerDescription:\r\n \"Accede a nuestro blog para estar al tanto en toda la información que necesita tu empresa.\",\r\n footerFormTitle:\r\n \"Resuelve tus dudas y cotiza tu sistema de ODR\",\r\n footerFormName: \"Tu nombre\",\r\n footerFormEmail: \"Tu correo electrónico\",\r\n footerFormMessage: \"Tu mensaje\",\r\n footerFormPrivacyPolicy: \"He leído y acepto la política de privacidad\",\r\n footerFormContactUs: \"Contáctanos\",\r\n accessBlog: \"Accede al blog\",\r\n ourTeam: \"Nuestro Equipo\",\r\n successfullCases: \"Casos de éxito\",\r\n footerContact: \"Contacto\",\r\n}","import { createI18n, NumberFormat } from 'vue-i18n'\r\n\r\nimport en from './../locales/en'\r\nimport es from './../locales/es'\r\n\r\nconst i18n = createI18n({\r\n legacy: false,\r\n locale: 'en',\r\n globalInjection: true,\r\n // allowComposition: true, // you need to specify that!\r\n messages: {\r\n es,\r\n en,\r\n },\r\n numberFormats: {\r\n es: {\r\n currency: {\r\n style: 'currency',\r\n currency: 'COP',\r\n currencyDisplay: 'symbol',\r\n },\r\n currencyNoCents: {\r\n style: 'currency',\r\n currency: 'COP',\r\n minimumFractionDigits: 0, // set fraction digits to 0 to remove cents\r\n maximumFractionDigits: 0,\r\n },\r\n decimal: {\r\n style: 'decimal',\r\n minimumFractionDigits: 2,\r\n maximumFractionDigits: 2,\r\n },\r\n percent: {\r\n style: 'percent',\r\n useGrouping: false,\r\n },\r\n short: {\r\n year: 'numeric',\r\n month: 'short',\r\n day: 'numeric',\r\n },\r\n long: {\r\n year: 'numeric',\r\n month: 'long',\r\n day: 'numeric',\r\n weekday: 'long',\r\n hour: 'numeric',\r\n minute: 'numeric',\r\n },\r\n },\r\n en: {\r\n currency: {\r\n style: 'currency',\r\n currency: 'USD',\r\n currencyDisplay: 'symbol',\r\n },\r\n currencyNoCents: {\r\n style: 'currency',\r\n currency: 'USD',\r\n minimumFractionDigits: 0, // set fraction digits to 0 to remove cents\r\n maximumFractionDigits: 0,\r\n },\r\n decimal: {\r\n style: 'decimal',\r\n minimumFractionDigits: 2,\r\n maximumFractionDigits: 2,\r\n },\r\n percent: {\r\n style: 'percent',\r\n useGrouping: false,\r\n },\r\n short: {\r\n year: 'numeric',\r\n month: 'short',\r\n day: 'numeric',\r\n },\r\n long: {\r\n year: 'numeric',\r\n month: 'long',\r\n day: 'numeric',\r\n weekday: 'long',\r\n hour: 'numeric',\r\n minute: 'numeric',\r\n },\r\n },\r\n },\r\n})\r\n\r\nexport default i18n\r\n","export const LANGUAGES = ['en', 'es']\r\n","import { createApp } from 'vue'\r\nimport App from './App.vue'\r\nimport { createRouter, createWebHistory } from 'vue-router'\r\nimport store from '@/store/vuex'\r\nimport { routes } from './routes.js'\r\nimport toId from './plugins/toId.js'\r\nimport i18n from './plugins/i18n.js'\r\n\r\nimport './main.css'\r\nimport { LANGUAGES } from './constants'\r\n\r\n\r\nconst app = createApp(App)\r\nconst router = createRouter({\r\n history: createWebHistory(),\r\n routes,\r\n })\r\n\r\n router.beforeEach((to, from, next) => {\r\n // use the language from the routing param or default language\r\n let language = to.query.lang\r\n if (!LANGUAGES.includes(language)) {\r\n language = LANGUAGES[0]\r\n }\r\n const { locale } = i18n.global\r\n locale.value = language\r\n \r\n next()\r\n })\r\n\r\napp.use(store)\r\napp.use(i18n)\r\napp.use(router)\r\napp.provide('toId', toId)\r\napp.mount('#app')\r\n"],"names":["p","relList","link","processPreload","mutations","mutation","node","getFetchOpts","script","fetchOpts","_export_sfc","sfc","props","target","key","val","_sfc_main","_ctx","_cache","$props","$setup","$data","$options","_createElementBlock","_hoisted_1","_createElementVNode","_hoisted_2","_normalizeClass","_hoisted_3","_createCommentVNode","_openBlock","_createStaticVNode","_hoisted_34","render","MainIllustration","Logo","BlobLeft","BlobRight","event","_hoisted_4","_hoisted_6","_hoisted_7","_hoisted_9","_hoisted_12","_hoisted_13","_hoisted_14","_hoisted_15","_hoisted_16","_hoisted_17","_hoisted_19","_hoisted_5","args","_createVNode","_Transition","_withCtx","_hoisted_8","_Fragment","_renderList","menu","index","_hoisted_10","$event","_toDisplayString","_hoisted_11","_component_BlobRight","_component_BlobLeft","_hoisted_18","_hoisted_20","service","who","_imports_0$3","_imports_0","why","whyIndex","whyPoint","pointIndex","_imports_0$2","_createTextVNode","_sfc_render","person","_imports_0$1","scope","_hoisted_57","JudgeIllustration","_hoisted_21","_hoisted_22","_hoisted_24","_hoisted_26","_hoisted_27","_hoisted_29","_hoisted_31","_hoisted_32","_hoisted_36","_hoisted_38","_hoisted_40","_hoisted_41","_hoisted_43","_hoisted_44","_hoisted_45","_hoisted_47","_hoisted_48","_hoisted_49","_hoisted_52","_hoisted_53","_hoisted_55","_hoisted_23","_hoisted_25","_hoisted_28","_hoisted_30","_hoisted_33","_hoisted_35","_hoisted_37","_hoisted_39","_hoisted_42","_hoisted_46","_hoisted_50","_hoisted_54","defineComponent","scrollBtn","t","n","useI18n","Jumbotron","Services","WhoCanAccess","SuccessStory","WhyUse","About","Profile","KeyScope","AtRedek","Footer","Login","ScrollToUp","_createBlock","_component_Services","_component_WhoCanAccess","_component_SuccessStory","_component_WhyUse","_component_About","_component_Profile","_component_KeyScope","_component_AtRedek","_component_Footer","_component_ScrollToUp","state","getters","actions","global","store","createStore","routes","Index","NotFound","toId","id","en","es","i18n","createI18n","LANGUAGES","app","createApp","App","router","createRouter","createWebHistory","to","from","next","language","locale"],"mappings":"4LAAA,MAAMA,EAAI,UAAoB,CAC1B,MAAMC,EAAU,SAAS,cAAc,MAAM,EAAE,QAC/C,GAAIA,GAAWA,EAAQ,UAAYA,EAAQ,SAAS,eAAe,EAC/D,OAEJ,UAAWC,KAAQ,SAAS,iBAAiB,2BAA2B,EACpEC,EAAeD,CAAI,EAEvB,IAAI,iBAAkBE,GAAc,CAChC,UAAWC,KAAYD,EACnB,GAAIC,EAAS,OAAS,YAGtB,UAAWC,KAAQD,EAAS,WACpBC,EAAK,UAAY,QAAUA,EAAK,MAAQ,iBACxCH,EAAeG,CAAI,CAGvC,CAAK,EAAE,QAAQ,SAAU,CAAE,UAAW,GAAM,QAAS,EAAI,CAAE,EACvD,SAASC,EAAaC,EAAQ,CAC1B,MAAMC,EAAY,CAAA,EAClB,OAAID,EAAO,YACPC,EAAU,UAAYD,EAAO,WAC7BA,EAAO,iBACPC,EAAU,eAAiBD,EAAO,gBAClCA,EAAO,cAAgB,kBACvBC,EAAU,YAAc,UACnBD,EAAO,cAAgB,YAC5BC,EAAU,YAAc,OAExBA,EAAU,YAAc,cACrBA,CACV,CACD,SAASN,EAAeD,EAAM,CAC1B,GAAIA,EAAK,GAEL,OACJA,EAAK,GAAK,GAEV,MAAMO,EAAYF,EAAaL,CAAI,EACnC,MAAMA,EAAK,KAAMO,CAAS,CAC7B,CACL,EAAsBT,EAAG,ECzCzB,IAAAU,EAAe,CAACC,EAAKC,IAAU,CAC7B,MAAMC,EAASF,EAAI,WAAaA,EAChC,SAAW,CAACG,EAAKC,CAAG,IAAKH,EACvBC,EAAOC,GAAOC,EAEhB,OAAOF,CACT,EC4BA,MAAKG,EAAU,CACb,KAAM,gBACN,KAAM,KAAO,CACX,QAAS,QACT,IAAK,YACP,GACA,MAAO,CACL,MAAO,CACL,KAAM,OACN,QAAS,OACV,EACD,aAAc,CACZ,KAAM,QACN,QAAS,EACV,EACD,YAAa,CACX,KAAM,OACN,SAAU,GACV,QAAS,EACV,EACD,WAAY,CACV,KAAM,OACN,SAAU,GACV,QAAS,EACV,CACF,CACH,iCAhDc,IAAK,+EAZMC,EAAAC,EAAAC,EAAAC,EAAAC,EAAAC,EAAA,4BAC+CC,EAAA,MAAAC,EAAA,CAA9DC,EAAuB,MAAA,CAAG,IAAK,mBAAK,IAAKR,EAAkB,6BAS1D,KAAA,EAAAS,EAAA,EAPLD,SAA+C,CAC5B,MAAAE,6CAAgC,CAAgBR,EAAA,iBAA8BA,EAAA,YAAA,kEAQrG,CAAA,QAEeI,EAAA,MAAAK,GAAA,iCACV,IAAK,EACL,IAAK,6BACN,IAAKX,EAAS,gCAGHY,EAAA,GAAA,EAAA,kCACV,IAAK,EACL,IAAK,8BACN,IAAKZ,EAAS,gCAGHY,EAAA,GAAA,EAAA,iCACV,IAAK,EACL,IAAK,6BACN,IAAKZ,EAAS,uECrBpB,MAAKD,GAAU,CACb,KAAM,WACN,MAAO,CACL,cAAe,CACb,KAAM,OACN,SAAU,GACV,QAAS,EACV,CACF,CACH,2BAZIE,EAAAC,EAAAC,EAAAC,EAAAC,EAAA,CAJC,OAA4BQ,EAAA,EAAAP,EAAA,MAAA,CAC7B,IAAI,wBACJ,IAAK,2KCST,MAAKP,GAAU,CACb,KAAM,YACN,MAAO,CACL,cAAe,CACb,KAAM,OACN,SAAU,GACV,QAAS,EACV,CACF,CACH,2BAZIE,EAAAC,EAAAC,EAAAC,EAAAC,EAAA,CARC,OAA6BQ,EAAA,EAAAP,EAAA,MAAA,CAC9B,IAAI,yBACJ,IAAK,kBACwBI,EAAA,CAAA,qDAAgC,gBAAA,oGCHjE,MAAMH,GAAa,CACjB,MAAO,6BACP,QAAS,eACX,EACME,GAA0BK,EAAmB,2jdAAg0d,EAAE,EAC/2dC,GAAc,CAClBN,EACF,EAEO,SAASO,GAAOhB,EAAMC,EAAQ,CACnC,OAAQY,EAAY,EAAEP,EAAoB,MAAOC,GAAYQ,EAAW,CAC1E,CACA,IAAeE,GAAA,CAAE,OAAQD,EAAM,ECiG/B,MAAKjB,GAAU,CACb,KAAM,qBACN,OAAQ,CAAC,MAAM,EACf,WAAY,CACV,KAAAmB,EACA,SAAAC,EACA,UAAAC,EACA,iBAAAH,EACD,EACD,KAAM,KAAO,CACX,UAAW,GACX,KAAM,GACN,MAAO,CACL,CAAE,IAAK,OAAQ,KAAM,WAAa,EAClC,CAAE,IAAK,WAAY,KAAM,UAAY,EACrC,CAAE,IAAK,UAAW,KAAM,OAAS,EAEjC,CAAE,IAAK,UAAW,KAAM,SAAW,EACnC,CAAE,IAAK,YAAa,KAAM,QAAU,CACrC,CACH,GACA,QAAS,CACP,OAAQ,CACN,KAAK,MAAM,OAAO,CACnB,EACD,eAAeI,EAAO,CACpB,KAAK,QAAQ,KAAK,CAChB,KAAM,QACN,MAAO,CAAE,KAAMA,EAAM,OAAO,KAAO,CACrC,CAAC,CACF,EACD,QAAS,CACP,KAAK,KAAO,CAAC,KAAK,KAClB,KAAK,aAAe,CAAC,KAAK,YAC3B,CACF,CACH,EAjJOd,GAAW,CACd,GAAA,6FAEKE,GAAmB,CAAC,MAAQ,sBAE7B,EAEKE,GAAA,CAAA,MAAM,2EAAkD,EAGxDW,GAAA,CAAA,MAAM,kDAAiB,6BAYlB,EANJC,GAA4Bf,EAAA,MAAA,CAC5B,MAAO,uBACP,QAAkC,8CAElC,EAAA,CACAA,EAAwD,QAAA,KAAH,MAAA,mEACjDgB,GAAA,GAQD,8DAWAC,GAAA,CAAA,SAAM,uEAkCdC,GAAA,CAAA,UAAoC,EAClCC,GAAA,CAAA,MAAM,8BAAyB,EAC7BC,GAAA,CAAA,MAAM,yBAA2C,EAElDC,GAAA,CAAA,MAAM,2CAAsE,EAI3EC,GAAA,CAAA,MAAM,sEAAuD,EAMjEC,GAAA,CAAA,MAAM,uDAAwC,sDAO9CC,GAAA,CAAA,KAAA,0JA7FL,OAAAnB,EAAA,EAqEMP,EAAA,MAAAC,GAAA,CApEJC,EAAA,SAmEM,CAhEJA,EAAA,SAEM,GADiB,MAAAc,GAAV,oBAEb,CAAA,IAaW,MAAAW,GAAA,CAXNzB,YACD,QAA0HP,EAAA,KAAAA,EAAA,GAAA,IAAAiC,IAAA7B,EAAA,QAAAA,EAAA,OAAA,GAAA6B,CAAA,mIAyDjH,EA7CDC,EAAWC,EAAA,CAAC,KAAM,2BA4CtBC,EAAA,IAAA,GA1CE,MAAM,wFAGZ,EAAA,CACE7B,EAAA,MAAA8B,GAAA,UAQOC,EAAA,KAAAC,EAAAxC,EAAA,MAAA,CAAAyC,EAAAC,KANM7B,EAAA,EAAAP,EAAA,OAAA,CACX,IAAKoC,EAEJ,MAAKhC,EAAE,CAAA,0HAAcgC,IAAA,EAAA,OAAA,MAAA,CAAA,aAEjBrC,EAAI,KAAKoC,EAAG,IAAA,qCAGrB,CAAA,IAEmB,MAAAE,GAAA,8BACf,MACA,SACC,MAAK,kIAED1C,EAAA,GAAA2C,GAAAvC,EAAA,MAAA,0BAQEO,EAAA,GAAA,EAAA,EALPJ,EAAQ,SAAA,CACR,SACC,MAAK,6HAEDP,EAAA,GAAA2C,GAAAvC,EAAA,MAAA,IAYEwC,EAAA7C,EAAA,GAAA,QAAA,CAAA,EAAA,CAAA,EATPQ,EAAmF,SAAA,CAClF,MAAM,4HAIE,CAFDA,EAAU,SAAA,CAAE,MAAA,uBACb,MAAA,OAAA,MAIEqC,EAAA7C,EAAA,GAAA,SAAA,CAAA,EAAA,EAAA8C,EAAA,EAFDtC,EAAU,SAAA,CAAE,MAAA,uBACb,MAAA,OAAA,oDAQkB,EACrC2B,EAAYY,EAAA,CAAA,MAAA,iBAAA,CAAA,EACZZ,EAAAa,CAaM,EAZJxC,EAAA,SAWM,CAVJA,EAAA,SASM,GAJC,MAAAqB,GAAA,CACLrB,EAEI,KAAAsB,GAAAe,EADG7C,EAAA,GAAA,eAAA,CAAA,EAAA,CAAA,6CAKb,CAAA,IAKI,MAAAiD,GAAA,CAHCzC,EAAuC,MAAA,CACxC,IAAI,mCACJ,IAAK,0EAGT,CAAA,IAGI,MAAA0C,GAAA,kHCzDR,MAAKnD,GAAU,CACb,KAAM,oBACN,WAAY,CACV,SAAAoB,EACA,UAAAC,CACD,EACD,KAAM,KAAO,CACX,SAAU,CACR,CACE,KAAM,8BACN,SAAU,gBACV,eAAgB,sBAChB,KAAM,GACP,EACD,CACE,KAAM,iCACN,SAAU,gBACV,eAAgB,sBAChB,KAAM,GACP,EACD,CACE,KAAM,4BACN,SAAU,gBACV,eAAgB,sBAChB,KAAM,GACP,CACF,CACH,EACF,EAvEUb,GAAU,CAAC,GAAA,oDAGd,EAGEE,GAAA,CAAA,MAAM,qDAAsC,EAC1CE,GAAA,CAAA,MAAM,sCAAiC,EAGxCW,GAAA,CAAA,MAAM,iCAAkL,EAEnLW,GAAA,CAAA,MAAM,kLAA0C,EAC9CV,GAAA,CAAA,MAAM,0CAAS,uBAGfe,GAAA,CAAA,WAA+C,EAC9Cb,GAAA,CAAA,+CAA0D,EAK7DkB,GAAA,CAAA,MAAM,oDAAkC,EACxCG,GAAA,CAAA,MAAM,kCAAsC,EAI5CpB,GAAA,CAAA,MAAM,sCAAsC,oDAEzCE,GAAS,CACb,0MA7BEf,EAAA,EAAAP,EAAA,MAAAC,GAAA,CACZ4B,EAAaa,CAAA,EACbb,EAEIY,CAAA,EACJvC,EA+BM,OAAAqC,EAAA7C,EAAA,GAAA,kBAAA,CAAA,EAAA,CAAA,EA9BJQ,EAAA,SA6BM,SADEc,GAAA,EA3BNT,EAAA,EAAA,EAAAP,EAAAiC,OA2BMC,EAAAxC,EAAA,SAAAmD,IAvBJtC,EAAA,EASMP,EAAA,MAAA2B,GAAA,CARJzB,EAAA,SAEM,GADyD,MAAAgB,GAAA,GAAtC,MAAA,CAAG,IAAK2B,EAAQ,KAAO,IAAKA,EAAO,8BAE5D,CAAA,EACE3C,EAAA,SAEK,wCAGT,CAAA,EACEA,EAAA,MAAAsC,GAEI,2CAEN,CAAA,IAMW,MAAAnB,GAAA,wFCKrB,MAAK5B,GAAU,CACb,KAAM,wBACN,WAAY,CACV,KAAAmB,CACD,EACD,KAAM,KAAO,CACX,KAAM,CACJ,CACE,KAAM,yBACN,SAAU,YACV,eAAgB,kBAChB,KAAM,GACP,EACD,CACE,KAAM,0BACN,SAAU,YACV,eAAgB,kBAChB,MAAO,SACR,EACD,CACE,KAAM,8BACN,SAAU,YACV,eAAgB,kBAChB,MAAO,SACR,CACF,CACH,EACF,EAhESX,GAAA,CAAA,MAAM,8CAAuC,EAIhDE,GAAA,CAAA,MAAM,uCAAqF,EAIxFE,GAAA,CAAA,MAAM,qFAA8B,EAClCW,GAAA,CAAA,MAAM,8BAAsD,EAG7DW,GAAA,CAAA,MAAM,sDAA+J,EAEhKV,GAAA,CAAA,MAAM,+JAAuC,EAC3CC,GAAA,CAAA,MAAM,uCAAS,uBAGfC,GAAA,CAAA,MAAK,KAAyC,EAC7CkB,GAAA,CAAA,MAAM,wCAAsB,EAK/BG,GAAA,CAAA,MAAM,sBAAyB,EAC/BpB,GAAA,CAAA,MAAM,yBAAmD,4GAzBpE,OAAAb,EAAA,EAEMP,EAAA,MAAAC,GAAA,GAD4B,MAAAE,GAArB,gCAMT,EACJD,EAuBM,OAAAqC,EAAA7C,EAAA,GAAA,mBAAA,CAAA,EAAA,CAAA,EAtBJQ,EAAA,SAqBM,SADEyB,GAAA,EAnBNpB,EAAA,EAAA,EAAAP,EAAAiC,OAmBMC,EAAAxC,EAAA,KAAAoD,IAfJvC,EAAA,EASMP,EAAA,MAAAiB,GAAA,CARJf,EAAA,SAEM,GADyD,MAAA8B,GAAA,GAA1C,MAAA,CAAG,IAAKc,EAAI,KAAO,IAAKA,EAAe,sCAE5D,CAAA,EACE5C,EAAA,SAEK,wCAGT,CAAA,EACEA,EAAA,MAAAkB,GAEI,2FC7BD2B,GAAA,6BC0Df,MAAKtD,GAAU,CACb,KAAM,wBACN,WAAY,CACV,SAAAoB,EACA,UAAAC,CACD,CACH,EA/DUb,GAAe,CAAC,GAAA,uCAIpB,EAIGE,GAAA,CAAA,MAAM,oEAA8B,EAErCE,GAAA,CAAA,MAAM,8BAAoL,EAErLW,GAAA,CAAA,MAAM,oLAA0C,EAC9CW,GAAA,CAAA,MAAM,0CAAqB,mCAO3BT,GAAA,CAAA,KAAA,EACCc,GAAA,CAAA,MAAM,4CAAW,EACjBb,GAAA,CAAA,iBAAiB,EAGpBkB,GAAA,CAAA,MAAM,WAA2C,yDAOjDjB,GAAA,CAAA,KAAA,EACEC,GAAA,CAAA,MAAM,iBAAoB,EAC1BC,GAAA,CAAA,MAAM,oBAAgD,EAGtDC,GAAA,CAAA,MAAM,gDAAqD,EAGzDC,GAAA,CAAA,MAAM,qDAAM,oBAETmB,GAAS,CACb,kNA1CApC,EAAA,EAAAP,EAAA,MAAAC,GAAA,CACZ4B,EAAaa,CAAA,EACbb,EAIIY,CAAA,EACJvC,EA2CM,OAAAqC,EAAA7C,EAAA,GAAA,mBAAA,CAAA,EAAA,CAAA,EA1CJQ,EAAA,SAyCM,CAtCJA,EAAA,SAYM,CAXJA,EAAA,SAMM,GADF,MAAAe,GAAA,CAHAf,EAAgC,MAAA,CAC/B,IAAK8C,GACN,IAAKtD,EAAuB,GAAA,mBAAA,0CAGhC,CAAA,IAC6D,MAAAsC,GAAA,CAC3D9B,EAA8D,KAA9DiB,GAA8DoB,EAAA7C,EAAnC,GAAA,sBAAA,CAAA,EAAA,CAAA,mDAG/B,CAAA,IAKI,MAAA8C,GAAA,CAHCtC,EAA+B,MAAA,CAChC,IAAI,2BACJ,IAAK,8CAGT,CAAA,EACEA,EAAA,SAeM,GAZA,MAFJoB,GAEI,CACJpB,EAEI,IAFJqB,GAEIgB,EADC7C,EAAE,GAAA,0BAAA,CAAA,EAAA,CAAA,EAEPQ,EAOM,OAAAqC,EAAA7C,EAAA,GAAA,0BAAA,CAAA,EAAA,CAAA,IADK,MAAA+B,GAAA,mFCAvB,MAAKhC,GAAU,CACb,KAAM,oBACN,WAAY,CACV,SAAAoB,EACA,UAAAC,CACD,EACD,KAAM,KAAO,CACX,KAAM,CACJ,CACE,CACE,SAAU,eACV,eAAgB,oBACjB,EACD,CACE,SAAU,eACV,eAAgB,oBACjB,EACD,CACE,SAAU,eACV,eAAgB,oBACjB,EACD,CACE,SAAU,eACV,eAAgB,oBACjB,CACF,EACD,CACE,CACE,SAAU,eACV,eAAgB,oBACjB,EACD,CACE,SAAU,eACV,eAAgB,oBACjB,EACD,CACE,SAAU,eACV,eAAgB,oBACjB,EACD,CACE,SAAU,eACV,eAAgB,oBACjB,CACF,CACF,CACH,EACF,EAzFSb,GAAA,CAAA,MAAM,4BAA6C,EACnDE,GAAA,CAAA,MAAM,6CAAgB,EAOtBE,GAAA,CAAA,MAAM,gBAA8B,EAClCW,GAAA,CAAA,MAAM,8BAA0C,EAGjDW,GAAA,CAAA,MAAM,0CAAqI,EAUpIV,GAAA,CAAA,MAAM,qIAAoB,EACxBC,GAAA,CAAA,MAAM,oBAAQ,EACbc,GAAA,CAAA,MAAM,QAAiD,EAK1Db,GAAA,CAAA,uDAAmB,EACnBkB,GAAA,CAAA,MAAM,aAAoC,yHAhCnB9B,EAAA,EAAAP,EAArB,MAAkBC,GAAA,CACjC4B,EAAqCa,EAAA,CAAA,MAArB,iBAAkB,CAAA,EAClCb,EAAAY,EAOM,CAAA,MAAA,iBAAA,CAAA,IAJA,MAFJtC,GAEI,CACJD,EAEI,SADGR,EAAA,GAAA,aAAA,CAAA,EAAA,CAAA,yCAGT,CAAA,EACEQ,EAAA,SA2BM,CA1BJA,EAAA,MAAAyB,GAAA,EAAApB,EAAA,EAAA,EAAAP,EAAAiC,OAyBMC,EAAAxC,EAAA,KAAA,CAAAuD,EAAAC,KArBJ3C,EAAA,EAAAP,EACmC,MAAAiB,GAAA,UAmB7BgB,EAAA,KAAAC,EAAAe,EAAA,CAAAE,EAAAC,WAlBiB,MAAA,0BACyC,2BAA2CA,EAAA,IAAA,iBAKzG,EAAA,CACElD,EAAA,SAIM,CAHJA,EAAA,SAEK,wCAGT,CAAA,EACEA,EAAA,MAAAmC,GAEI,uGCpCHgB,GAAA,gCC6Df,MAAK5D,GAAU,CACb,KAAM,iBACN,WAAY,CACV,SAAAoB,EACA,UAAAC,EACA,KAAAF,CACD,EACD,KAAM,KAAO,CACX,MAAO,QACP,YAAa,GACb,UAAW,CACT,aAAc,CACZ,kBACA,kBACA,kBACA,iBACD,CACF,CACH,EACF,EA/EUX,GAAO,CAAC,GAAA,oEAEuBC,EAAA,MAAA,CACnC,IAAI8C,GACJ,IAAK,yEAEF,EAAA,KAAA,EAAA,sFACyB,oDAG1B,IAAK,oHAU2C9C,EAAL,IAAA,KAAA,6CAGtC,EAAA,EAAA,EAGDgB,GAAA,CAAA,MAAM,YAAwB,0CAMxB,IAAK,+DACX,EACDmB,GAAA,CAAA,MAAM,yBAAkB,8BAY0B,KAAJnC,EAAL,IAAA,KAAA,8CAGzC,EAAA,EAAA,wHA5CLK,EAAA,EAAAP,EAAA,MAAAC,GAAA,CACFE,KACqC,MAAAE,GAAA,IACnCX,EAAA,iBAcMM,EAAA,MAAA2B,GAAA,CATFzB,EAAiE,IAAA,CAChE,MAAK,wGAM4C,CAAAe,iCAGpD,CAAA,EACEf,EAAA,MAAAgB,GAAA,EAAAX,EAAA,EAAA,EAAAP,EAAAiC,EAAA,KAAAC,EAIKxC,EAAA,UAAA,aAASH,6CAIlB,CAAA,QACiES,EAAA,MAAAmB,GAAA,CAC/DjB,EAEI,KAAAmC,GAAAE,EADG7C,EAAA,GAAA,YAAA,CAAA,EAAA,CAAA,EAEPQ,EAUI,IAAAsC,GAAAD,EAAA7C,EAAA,GAAA,eAAA,CAAA,EAAA,CAAA,EATFQ,EAAiE,IAAA,CAChE,MAAK,sGAMH,EAAA,CACHoD,EAAmDf,EAAA7C,EAAA,GAAA,YAAA,CAAA,EAAA,IAAA,CAAA,MAGvD,CAAA,KACiD,MAAA2B,GAAA,CAAzCQ,IAAyB,CAAC,WAAY,iECiBpD,MAAKpC,GAAU,CACb,KAAM,mBACN,KAAM,KAAO,CACX,MAAO,WACP,QAAS,CACP,CACE,KAAM,6BACN,KAAM,2BACN,eAAgB,qBAChB,MAAO,cACP,kBAAmB,EACpB,EACD,CACE,KAAM,+BACN,KAAM,iCACN,eAAgB,oBAChB,MAAO,aACP,kBAAmB,EACpB,EACD,CACE,KAAM,2BACN,KAAM,qCACN,eAAgB,mBAChB,MAAO,YACP,kBAAmB,EACpB,EACD,CACE,KAAM,cACN,KAAM,iCACN,eAAgB,kBAChB,MAAO,WACP,kBAAmB,EACpB,EACD,CACE,KAAM,aACN,KAAM,iCACN,eAAgB,mBAChB,MAAO,YACP,kBAAmB,EACpB,CACF,CACH,EACF,EA5GOQ,GAAS,CACZ,GAAA,4EAEK,EACAE,GAAA,CAAA,MAAM,6CAAgB,EAItBE,GAAA,CAAA,MAAM,gBAA8B,EAClCW,GAAA,CAAA,MAAM,8BAAqC,oGAkCrCgB,GAAA,CAAA,WAAY,EACZb,GAAA,CAAA,YAA0B,EAC1BkB,GAAA,CAAA,MAAM,oBAAc,6CAWjBhB,GAAWnB,EAAA,KAAA,CAAC,MAAM,mDAzDpC,SAAAqD,GAAA7D,EAAAC,EAAAC,EAAAC,EAAAC,EAgEMC,EAAA,CA5DJ,OAAAQ,EAAA,EAIMP,EAAA,MAAAC,GAAA,GADA,MAFJE,GAEI,uBAEN,CAAA,EACED,EAAA,SAoDM,CAnDJA,EAAA,MAAAyB,GAAA,UAkDMM,EAAA,KAAAC,EAAAxC,EAAA,QAAA,CAAA8D,EAAApB,KAhDO7B,EAAA,EAAAP,EAAA,MAAA,CACX,IAAKoC,EACkB,MAAKhC,EAAA,CAAA,kEAAA,CAA6CgC,EAAK,EAAA,WAAA,iCAI7E,yDAyCK,GAlCE,MAAO,CAEZ,MAAShC,EAAA,CAAAgC,EAAA,EAAA,oBAAA,OAAA,aAAA,CAAA,oFAeR,GAHI,MAA0B,CAC7B,IAAK,kBAAYoB,EAAA,QAClB,IAAKA,EAAQ,mBAEf,EAAA,KAAA,EAAAxB,IACE9B,EAAA,MAAAiB,GAAiC,CACjCjB,EAA6C,IAA7CmC,GAA2BE,EAAAiB,EAAO,IAAI,EAAA,CAAA,EAE9BtD,EAAwB,IAAAsC,GAAAD,EAAAiB,EAAA,IAAA,EAAA,CAAA,oCAC9B,IAAK,EACuB,MAAwBpD,EAAA,CAAA,wJAMC,CAA/CF,EAAU,OAAI,wCACiC,KAAA,EAAAkB,EAAA,gFC1DtDqC,GAAA,yBC6Ef,MAAKhE,GAAU,CACb,KAAM,oBACN,WAAY,CACV,SAAAoB,EACA,UAAAC,EACA,KAAAF,CACD,EACD,KAAM,KAAO,CACX,UAAW,CACT,CACE,SAAU,iBACV,eAAgB,uBAChB,SAAU,0BACV,kBAAmB,EACpB,EACD,CACE,SAAU,iBACV,eAAgB,uBAChB,SAAU,0BACV,kBAAmB,EACpB,EACD,CACE,SAAU,iBACV,eAAgB,uBAChB,SAAU,6BACV,kBAAmB,EACpB,EACD,CACE,SAAU,iBACV,eAAgB,uBAChB,SAAU,2BACV,kBAAmB,EACpB,EACD,CACE,SAAU,iBACV,eAAgB,uBAChB,SAAU,2BACV,kBAAmB,EACpB,EACD,CACE,SAAU,iBACV,eAAgB,uBAChB,SAAU,8BACV,kBAAmB,EACpB,EACD,CACE,SAAU,iBACV,eAAgB,uBAChB,SAAU,6CACV,kBAAmB,EACpB,CACF,CACH,EACF,mFAvGST,GAAA,CAAA,UAA0B,cAAA,cAAA,EACxBE,GAAA,CAAA,MAAM,oBAAsB,oCAc9BsB,GAAA,CAAA,WAAwC,EACxCV,GAAA,CAAA,MAAM,kCAAwB,EAI9BC,GAAA,CAAA,MAAM,wBAAoC,EAC1Cc,GAAA,CAAA,MAAM,oCAAe,2BAMpB,KADsD9B,EAAA,MAAA,CAAA,MAAA,qBAAA,EAAA,CAAzBA,EAAA,MAAA,CAAC,IAAK8C,0BAQpC,EAAA,EAAA,EAGER,GAAA,CAAA,MAAM,oCAAU,EACdpB,GAAA,CAAA,MAAM,UAAyB,+HA7DJb,EAAA,EAAAP,EAArB,MAAkBC,GAAA,CACjC4B,EAA+Ca,EAAA,CAAA,MAAvB,iBAAoB,CAAA,EAC5Cb,EAAAY,EAAA,CAAA,cAE2B,mBAAA,CAAA,WAiCrBR,EAAA,KAAAC,EAAAxC,EAAA,UAAA,CAAAgE,EAAAtB,KAlCE7B,EAAA,EAAAP,EAAA,MAAA,CAGL,MAAUI,EAAA,CAAA,sCAAAsD,EAAA,QAAA,CAAA,EACV,IAAKtB,sHAgBN,EAAA,CACAlC,EAYM,OAAAqC,EAAA7C,EAAA,GAAA,GAAAgE,EAAA,UAAA,CAAA,EAAA,CAAA,EAVIxD,EAAuB,MAAAc,GAAA,mCAC7B,IAAK,EACiB,MAAuBZ,EAAA,CAAA,4FAMO,CAA9CF,EAAU,OAAI,2EAI1B,EAAA,GAAA,KAGM,MAFJe,GAEI,qCAEN,CAAA,IAGM,MAFJe,GAEI,yCAIA,EACNK,YAcMJ,EAAA,KAAAC,EAAAxC,EAAA,UAAA,CAAAgE,EAAAtB,KAbE7B,EAAA,EAAAP,EAAA,MAAA,CAGL,MAAUI,EAAA,CAAA,iCAAA,CAAA,QAAAgC,IAAA,EAAA,aAAAA,EAAA,IAAA,CAAA,CAAA,CAAA,OAEX,EAAA,CAGAlC,EAIM,OAAAqC,EAAA7C,EAAA,GAAA,GAAAgE,EAAA,UAAA,CAAA,EAAA,CAAA,EAHJxD,EAAA,SAEM,GADgD,MAAAmB,GAAA,CAA9CnB,EAAU,OAAI,kGChE9B,MAAMD,GAAa,CACjB,QAAS,oBACT,MAAO,6BACP,cAAe,8BACjB,EACME,GAA0BK,EAAmB,o9hVAAq+iV,EAAE,EACphjVmD,GAAc,CAClBxD,EACF,EAEO,SAASO,GAAOhB,EAAMC,EAAQ,CACnC,OAAQY,EAAY,EAAEP,EAAoB,MAAOC,GAAY0D,EAAW,CAC1E,CACA,IAAeC,GAAA,CAAE,OAAQlD,EAAM,ECkC/B,MAAKjB,GAAU,CACb,KAAM,mBACN,WAAY,CACV,SAAAoB,EACA,UAAAC,EACA,KAAAF,EACA,kBAAAgD,EACD,EACD,KAAM,KAAO,CACX,UAAW,CACT,CACE,SAAU,gBACV,eAAgB,qBACjB,EACD,CACE,SAAU,gBACV,eAAgB,qBACjB,EACD,CACE,SAAU,gBACV,eAAgB,qBACjB,CACF,CACH,EACF,EAvEO3D,GAAU,CACb,GAAA,4EAEK,EACEE,GAAA,CAAA,MAAM,yCAA6D,EACjEE,GAAA,CAAA,MAAM,6DAAoD,EAC1DW,GAAA,CAAA,MAAM,oDAAgB,EAItBW,GAAA,CAAA,MAAM,gBAAa,EAIrBV,GAAA,CAAA,MAAM,aAAgD,EAOlDC,GAAA,CAAA,MAAM,gDAA6C,yDAChC,KACkBhB,EAAL,IAAA,CAAA,MAAA,aAAA,EAAA,wCAGjC,EAAA,EAAA,EAKAmC,GAAA,CAAA,MAAM,uFAAqE,2IA5BrF,OAAA9B,EAAA,EAmCMP,EAAA,MAAAC,GAAA,CAlCJC,EAAA,SASM,CARJA,EAAA,SAIM,GADA,MAFJc,GAEI,oCAEN,CAAA,IACuB,MAAAC,GAAA,OAGzB,CAAA,EACEf,EAAA,MAAAgB,GAAA,UAqBMe,EAAA,KAAAC,EAAAxC,EAAA,UAAA,CAAAgE,EAAAtB,KAnBO7B,EAAA,EAAAP,EAAA,MAAA,CACX,IAAKoC,6EAGL,EAAA,GAGM,MAAAJ,GAAA,CACJb,GAKAjB,EAII,IAJJmC,GAIIE,EADC7C,KAAM,GAAAgE,EAAM,UAAc,CAAA,EAAA,CAAA,8FCnC5BV,GAAA,wBCmLf,MAAKvD,GAAU,CACb,KAAM,kBACN,OAAQ,CAAC,MAAM,EACf,WAAY,CACV,KAAAmB,CACD,EACD,KAAM,KAAO,CACX,MAAO,CACL,CAAE,IAAK,UAAW,KAAM,SAAW,EACnC,CAAE,IAAK,WAAY,KAAM,UAAY,EACrC,CAAE,IAAK,OAAQ,KAAM,GAAK,EAC1B,CAAE,IAAK,mBAAoB,KAAM,eAAiB,CACnD,EACD,QAAS,CACP,MAAO,gBACP,MAAO,kBACR,CACH,EACF,EApMUX,GAAQ,CAAC,GAAA,2CACV,EACEE,GAAA,CAAA,MAAM,2CAAkC,EAEzCE,GAAA,CAAA,MAAM,kCAAiG,EAElGW,GAAA,CAAA,MAAM,iGAAQ,EACZW,GAAA,CAAA,MAAM,QAA0B,sCAO7B,KADFzB,EAAA,MAAA,CAAA,MAAA,SAAA,EAAA,CAH2BA,EAAA,MAAA,CAC3B,IAAI8C,GACJ,IAAK,0CAGJ,EAAA,EAAA,EACChB,GAAA,CAAA,MAAM,kBAAmC,EAK5Cb,GAAA,CAAA,yCAA8B,EAC9BkB,GAAA,CAAA,MAAM,wBAAoC,EAGxCG,GAAA,CAAA,MAAM,oCAAM,oBAETnB,GAAI,CACR,sIAURC,GAA6FpB,EAAA,MAAA,CAAA,MAAA,mBAAA,KAAA,EAAA,EAExFqB,GAAA,CAAA,MAAM,uFAAuD,EAC3DC,GAAA,CAAA,MAAM,uDAA0B,EAC9BC,GAAA,CAAA,MAAM,0BAAsC,EAC3CkB,GAAA,CAAA,MAAM,sCAAoB,EAK7BjB,GAAA,CAAA,MAAM,oBAA4B,EAC/BkB,GAAA,CAAA,MAAM,4BAAiB,EACtBiB,GAAA,CAAA,MAAM,iBAA8B,EAClCC,GAAA,CAAA,MAAM,8BAAiB,+BAExBC,GAA8D,CAC9D,MAAsB,+EAKrB,+BASFC,GAAA,CAAA,aAAoC,EAClCC,GAAA,CAAA,MAAM,8BAAU,wBAEjBC,GAA8D,CAC9D,MAAkB,2EAKjB,wBASFC,GAAA,CAAA,aAAoC,EAClCC,GAAA,CAAA,MAAM,8BAAU,wBAEjB3D,GAA8D,CAC9D,MAAoB,6EAKnB,wBAUF4D,GAAA,CAAA,aAA+B,qCACN,EACrBC,GAAgCpE,EAAA,MAAA,CAAA,MAAA,YAAA,KAAA,EAAA,sCACe,EAA7CqE,GAA0BrE,EAAA,QAAA,CAAC,MAAe,oCAC3C,EAAA,KAAA,EAAA,EAKLsE,GAAA,CAAA,MAAM,SAAkB,gCAErBC,GAAI,CACR,oIAWX,EACEC,GAAA,CAAA,MAAM,kDAAyC,EAC9CC,GAAA,CAAA,MAAM,yCAAS,uBAWhBC,GAAA,CAAA,SAA8C,EAC9CC,GAAA,CAAA,MAAM,wCAAyB,EAC9BC,GAAA,CAAA,MAAM,yBAAS,mCAmBhBC,GAAA,CAAA,MAAK,EACHC,GAAA,CAAA,MAAM,iBAAgD,4DAItB,EACrCC,GAAA/E,EAAS,SAAA,CAAA,MAAA,yBAET,EAAA,wJAzKJ,OAAAK,EAAA,EA8HMP,EAAA,MAAAC,GAAA,CA7HJC,EAAA,SA4HM,CA3HJA,EAAA,SAgCM,CA7BJA,EAAA,SA4BM,CA3BJA,EAAA,SAaM,GANE,MAAAe,GAAA,CACNC,KAGO,MAAAc,GAAA,sCAGT,CAAA,IAGM,MAFJK,GAEI,CACJnC,EAOM,OAAAqC,EAAA7C,EAAA,GAAA,mBAAA,CAAA,EAAA,CAAA,IADK,MAAA0B,GAAA,8CAKkB,EACnCE,GAGEpB,EAAA,SAoFM,CAnFJA,EAAA,SAMM,CALJA,EAAA,SAIM,GADC,MAAAyC,GAAA,0CAGT,CAAA,EACEzC,EAAA,SAyEO,CAxELA,EAAA,UAiBM,CAhBJA,EAAA,SAOM,GADI,MAAAgF,GAAA,0CAEV,CAAA,IAMI,MAAAC,GAAA,CAJAjF,EAAsK,QAAA,CACtK,MAAgB,iKAChB,GAAI,cACH,KAAA,uDAIP,CAAA,EACEA,EAAA,SAOM,GADI,MAAAkF,GAAA,2CAEV,CAAA,IAMI,MAAAC,GAAA,CAJAnF,EAAsK,QAAA,CACtK,MAAiB,iKACjB,GAAI,eACH,KAAA,yDAIP,CAAA,EACEA,EAAA,SAOM,GADI,MAAAoF,GAAA,6CAEV,CAAA,IAOI,MAAAC,GAAA,CALArF,EAAkL,WAAA,CAClL,MAAQ,6KACR,KAAmB,IACnB,GAAI,iBACH,KAAA,2DAIP,CAAA,IAC8B,MAAAsF,GAAA,CAC5BlB,KACsD,QAAAmB,GAAA,CACpDlB,sDAKJ,CAAA,IAMW,MAAAmB,GAAA,4DAQvB,CAAA,EACExF,EAAA,SAWM,CAVJA,EAAA,SASK,QADEyF,GAAA,UAAA1D,EAAA,KAAAC,EAAAxC,EAAA,MAAAyC,IADI5B,EAAA,EAAAP,EAAA,KAAA,KAAA,CAJJE,EAAO,OAAA,CACR,QAAoDoC,GAAAvC,EAAA,KAAAoC,EAAA,IAAA,6FAO5D,CAAA,IACkE,MAAhE0C,GAAgE,CAChE3E,EAiBK,OAAAqC,EAAA7C,EAAA,GAAA,eAAA,CAAA,EAAA,CAAA,IATE,KAAAkG,GAAA,GADC,KAAA,KAAA,GAJsB,IAAA,CACxB,eAAoDlG,EAAA,QAAA,QAEjD,MAAA,yEAUF,IADC,KAAA,KAAA,GAJmB,IAAA,CACrB,YAAoDA,EAAA,QAAA,QAEzC,MAAA,sFAKnB,CAAA,EACEQ,EAAA,SAEM,GADkE,MAAA2F,GAAA,CAAhEhE,IAAuB,CAAC,WAAa,aAAC,MAAM,oCAO7C,sCClBf,MAAKpC,GAAU,CACb,KAAM,YACN,QAAS,CACP,OAAQ,CACN,KAAK,MAAM,OAAO,CACnB,CACF,CACH,EA/JSQ,GAAA,CAAA,MAAM,UAA2B,EAElCE,GAAA,CAAA,MAAM,2BAA4F,wGAGN,KAMxFD,EAAA,MAAA,CAAA,MAAA,oFAAA,EAAA,CAHuFA,EAAA,MAAA,CACvF,IAAK,oFACL,MAAkB,6BAGjB,EAAA,EAAA,oEA6GIe,GAAgCT,EAAA,0wIAAA,CAAA,sCAM1B,EAJHY,GAASlB,EAAA,SAAA,CACb,oBAGF,4QAUEA,EAAA,IAAA,CAAA,MAAA,sCAAA,EAAA,CAAAoD,EAIC,0BAAA,EAHUpD,EAAA,IAAA,CACT,gBACS,2GA9IzB,SAAAqD,GAAA7D,EAAAC,EAAAC,EAAAC,IAsJUE,EAAA,CArJR,OAAAQ,EAAA,EAoJMP,EAAA,UAAAC,GAAA,CAnJJC,EAAA,SAkJM,GAvIE,MAAAG,GAAA,CACNW,KAoIS,MAAAW,GAAA,GAnEC,OAAA,KAAA,CA4CNV,KAMW,MAAAuB,GAAA,CACTpB,GACElB,EAAa,SAAA,CACb,cACC,MAAK,2QAGRP,EAAA,KAAAA,EAAA,GAAA2C,GAAAvC,EAAA,MAAA,EAQI,EAAA,UAAA,8CC/HlB,MAAKN,GAAaqG,EAAa,CAC7B,SAAU,CACR,OAAO,iBAAiB,SAAU,KAAK,YAAY,CACpD,EAED,eAAgB,CACd,OAAO,oBAAoB,SAAU,KAAK,YAAY,CACvD,EAED,QAAS,CACP,cAAe,CACb,MAAMC,EAAY,KAAK,MAAM,gBAEzB,OAAO,QAAU,EACnBA,EAAU,UAAU,OAAO,WAAW,EAEtCA,EAAU,UAAU,IAAI,WAAW,CAEtC,EACD,aAAc,CACZ,OAAO,SAAS,CAAE,IAAK,EAAG,SAAU,QAAO,CAAG,CAC/C,CACF,CACH,CAAC,KAvCwB,CACrB,IAAK,6FAMS5F,GAASD,EAAA,SAAA,CAAC,KAAA,0GAEbG,GAAA,KAVb,SAAAkD,GAAA7D,EAAAC,EAAAC,EAAAC,EAAAC,EAYMC,EAAA,QADEQ,EAAA,EAAAP,EAAA,MAAAC,GAAA,CANJC,EAAoH,MAAA,CACnH,MAAK,uNC+CZ,MAAKT,GAAU,CACb,KAAM,mBACN,KAAM,KAAO,CACX,UAAW,GACX,WAAY,2BACd,GACA,QAAS,CACP,YAAa,UAAY,CACvB,KAAK,UAAY,CAAC,KAAK,SACxB,EACD,gBAAiB,CACf,OAAO,SAAS,KAAO,KAAK,WAAa,UAC1C,EACD,aAAc,CACZ,OAAO,SAAS,KAAO,KAAK,WAAa,OAC1C,CACF,EACD,OAAQ,CACN,KAAM,CAAE,EAAAuG,EAAG,EAAAC,CAAE,EAAIC,EAAO,EACxB,MAAO,CACL,EAAAF,EACA,EAAAC,EAEH,EACD,WAAY,CACV,UAAAE,GACA,SAAAC,GACA,aAAAC,GACA,aAAAC,GACA,OAAAC,GACA,MAAAC,GACA,QAAAC,GACA,SAAAC,GACA,QAAAC,GACA,OAAAC,GACA,MAAAC,GACA,WAAAC,EACD,CACH,uEA3EQ,IAAK,qIAEA,EAGDzG,GAAA,CAAA,MAAM,wCAAsG,wHAQhH,IAAK,gRA7BC,OAAKE,EAAM,EAAAwG,EAAAjF,EAAA,CAAC,KAAM,mBAC5B,QAAAC,EAAA,OACyC,MAAA9B,GAAA,CAA3B4B,gDACA,EACZA,EAAgBmF,CAAA,EAChBnF,EAAgBoF,CAAA,EAChBpF,EAAUqF,CAAA,EACVrF,EAASsF,CAAA,EACTtF,EAAWuF,CAAA,EACXvF,EAAYwF,CAAA,EACZxF,EAAWyF,CAAA,EACXzF,EAAU0F,CAAA,EACV1F,EAAc2F,CAAA,IAGGC,CAAA,EADjB/H,EAAA,WAIEa,IAAAP,EAOM,MAAAG,GAAA,CALJD,EAAA,SAIM,GAD4B,MAAAc,GAAA,CAAxBa,sDAKGvB,EAAA,GAAA,EAAA,EADjBZ,EAAA,2EC3BN,MAAMgI,GAAQ,KAAO,CACjB,WAAY,OACZ,WAAY,CACV,aAAc,GACd,YAAa,GACb,cAAe,GACf,QAAS,IACT,OAAQ,IACR,gBAAiB,GACjB,eAAgB,GAChB,UAAW,CACZ,CACL,GAGQC,GAAU,CACd,WAAWD,EAAO,CAChB,OAAOA,EAAM,UACd,EACD,WAAWA,EAAO,CAChB,OAAOA,EAAM,UACd,CACF,EAGKE,GAAU,CAAE,EAGZ/I,GAAY,CAChB,cAAc6I,EAAOlI,EAAK,CACxBkI,EAAM,WAAalI,CACpB,EACD,cAAckI,EAAOlI,EAAK,CACxBkI,EAAM,WAAalI,CACpB,CACF,EAED,IAAeqI,GAAA,CACb,WAAY,GACZ,MAAAH,GACA,QAAAC,GACA,QAAAC,GACA,UAAA/I,EACJ,ECzCAiJ,GAAeC,EAAY,CACzB,QAAS,CACP,OAAAF,EACD,CACH,CAAC,0sBCHM,MAAMG,GAAS,CAClB,CACE,KAAM,IACN,KAAM,QACN,KAAM,CAAE,MAAO,qBAAsB,OAAQ,SAAW,EACxD,UAAWC,CACZ,EACD,CAAE,KAAM,OAAQ,UAAWC,CAAU,EACrC,CAAE,KAAM,aAAc,UAAWA,CAAU,CAC/C,ECbMC,GAAQC,GAAO,CACjB,SAAS,eAAeA,CAAE,EAAE,eAAe,CAAE,SAAU,QAAQ,CAAE,CACrE,ECFA,IAAcC,GAAA,CACV,KAAM,QACN,QAAS,UACT,QAAS,UAET,KAAM,OACN,SAAU,WACV,QAAS,WACT,KAAM,OACN,UAAW,aACX,cAAe,8CACf,iBACE,yGACF,OAAQ,QACR,OAAQ,UAER,iBAAkB,eAClB,cAAe,mCACf,oBAAqB,6HACrB,cAAe,yBACf,oBAAqB,gHACrB,cAAe,sCACf,oBAAqB,0MACrB,YAAa,eAEb,kBAAmB,+BACnB,UAAW,kBACX,gBACE,gJACF,UAAW,oBACX,gBACE,+bACF,UAAW,sCACX,gBACE,mKAEF,kBAAmB,kCACnB,qBAAsB,0CACtB,wBAAyB,+BACzB,yBAA0B,kWAC1B,yBAA0B,2ZAC1B,aAAc,iBAEd,YAAa,6BACb,eAAgB,yBAChB,aAAc,iBACd,mBAAoB,mIACpB,aAAc,sBACd,mBAAoB,+HACpB,aAAc,wBACd,mBAAoB,oHACpB,aAAc,gBACd,mBAAoB,0KACpB,aAAc,oBACd,mBAAoB,gEACpB,aAAc,oBACd,mBAAoB,uFACpB,aAAc,WACd,mBAAoB,mLACpB,aAAc,mBACd,mBAAoB,kFAEpB,WAAY,cACZ,gBAAiB,+FACjB,gBAAiB,oPACjB,gBAAiB,khBACjB,gBAAiB,6PACjB,WAAY,oBACZ,cAAe,yEAEf,cAAe,YACf,iBAAkB,mKAClB,eAAgB,YAChB,qBAAsB,8RACtB,eAAgB,kBAChB,qBAAsB,qNACtB,eAAgB,mBAChB,qBAAsB,2LACtB,eAAgB,iBAChB,qBAAsB,4NACtB,eAAgB,mBAChB,qBAAsB,wGACtB,eAAgB,2BAChB,qBAAsB,8IACtB,eAAgB,WAChB,qBAAsB,6GAEtB,aAAc,6DACd,cAAe,yBACf,oBAAqB,0PACrB,cAAe,4BACf,oBAAqB,0NACrB,cAAe,gEACf,oBAAqB,sXAErB,mBAAoB,ivBACpB,kBAAmB,iaACnB,iBAAkB,qnBAClB,gBAAiB,qQACjB,iBAAkB,sXAElB,YAAa,kDACb,kBACE,+EACF,gBACE,qEACF,eAAgB,OAChB,gBAAiB,SACjB,kBAAmB,UACnB,wBAAyB,8CACzB,oBAAqB,aACrB,WAAY,cACZ,QAAS,WACT,iBAAkB,mBAClB,cAAe,SACnB,ECnHcC,GAAA,CACV,KAAM,OACN,QAAS,YACT,QAAS,aAET,KAAM,SACN,SAAU,YACV,QAAS,iBACT,KAAM,OACN,UAAW,iBACX,cAAe,8DACf,iBACE,qHACF,OAAQ,oBACR,OAAQ,gBAER,iBAAkB,qBAClB,cAAe,yCACf,oBAAqB,+IACrB,cAAe,oCACf,oBAAqB,uIACrB,cAAe,oDACf,oBAAqB,mQACrB,YAAa,eAEb,kBAAmB,mDACnB,UAAW,4BACX,gBAAiB,uNACjB,UAAW,oBACX,gBAAiB,ieACjB,UAAW,wCACX,gBAAgB,2LAEhB,kBAAmB,+BACnB,qBAAsB,0CACtB,wBAAyB,GACzB,yBAA0B,wbAC1B,yBAA0B,qgBAC1B,aAAc,sBAEd,YAAa,qDACb,eAAgB,mCAChB,aAAc,gBACd,mBAAoB,oMACpB,aAAc,wBACd,mBAAoB,uMACpB,aAAc,yBACd,mBAAoB,8JACpB,aAAc,mBACd,mBAAoB,sOACpB,aAAc,iBACd,mBAAoB,2FACpB,aAAc,qBACd,mBAAoB,8GACpB,aAAc,YACd,mBAAoB,qLACpB,aAAc,qBACd,mBAAoB,gGAEpB,WAAY,cACZ,gBAAiB,6IACjB,gBAAiB,kQACjB,gBAAiB,qqBACjB,gBAAiB,2SACjB,WAAY,oBACZ,cAAe,6FAEf,cAAe,gBACf,iBAAkB,gNAClB,eAAgB,aAChB,qBAAsB,wVACtB,eAAgB,sBAChB,qBAAsB,mPACtB,eAAgB,sBAChB,qBAAsB,0NACtB,eAAgB,sBAChB,qBAAsB,4PACtB,eAAgB,+BAChB,qBAAsB,qHACtB,eAAgB,4BAChB,qBAAsB,kKACtB,eAAgB,gBAChB,qBAAsB,0GAEtB,aAAc,wEACd,cAAe,yBACf,oBAAqB,0RACrB,cAAe,+BACf,oBAAqB,+QACrB,cAAe,4BACf,oBAAqB,uaAErB,mBAAoB,k3BACpB,kBAAmB,gaACnB,iBAAkB,0nBAClB,gBAAiB,8TACjB,iBAAkB,qgBAElB,YAAa,oEACb,kBACE,+FACF,gBACE,gDACF,eAAgB,YAChB,gBAAiB,2BACjB,kBAAmB,aACnB,wBAAyB,oDACzB,oBAAqB,iBACrB,WAAY,iBACZ,QAAS,iBACT,iBAAkB,oBAClB,cAAe,UACnB,EC3GA,MAAMC,EAAOC,EAAW,CACtB,OAAQ,GACR,OAAQ,KACR,gBAAiB,GAEjB,SAAU,CACR,GAAAF,GACA,GAAAD,EACD,EACD,cAAe,CACb,GAAI,CACF,SAAU,CACR,MAAO,WACP,SAAU,MACV,gBAAiB,QAClB,EACD,gBAAiB,CACf,MAAO,WACP,SAAU,MACV,sBAAuB,EACvB,sBAAuB,CACxB,EACD,QAAS,CACP,MAAO,UACP,sBAAuB,EACvB,sBAAuB,CACxB,EACD,QAAS,CACP,MAAO,UACP,YAAa,EACd,EACD,MAAO,CACL,KAAM,UACN,MAAO,QACP,IAAK,SACN,EACD,KAAM,CACJ,KAAM,UACN,MAAO,OACP,IAAK,UACL,QAAS,OACT,KAAM,UACN,OAAQ,SACT,CACF,EACD,GAAI,CACF,SAAU,CACR,MAAO,WACP,SAAU,MACV,gBAAiB,QAClB,EACD,gBAAiB,CACf,MAAO,WACP,SAAU,MACV,sBAAuB,EACvB,sBAAuB,CACxB,EACD,QAAS,CACP,MAAO,UACP,sBAAuB,EACvB,sBAAuB,CACxB,EACD,QAAS,CACP,MAAO,UACP,YAAa,EACd,EACD,MAAO,CACL,KAAM,UACN,MAAO,QACP,IAAK,SACN,EACD,KAAM,CACJ,KAAM,UACN,MAAO,OACP,IAAK,UACL,QAAS,OACT,KAAM,UACN,OAAQ,SACT,CACF,CACF,CACH,CAAC,ECtFY,MAAAI,EAAY,CAAC,KAAM,IAAI,ECY9BC,EAAMC,EAAUC,CAAG,EACnBC,EAASC,EAAa,CACxB,QAASC,EAAkB,EAC3B,OAAAf,EACJ,CAAG,EAEDa,EAAO,WAAW,CAACG,EAAIC,EAAMC,IAAS,CAEpC,IAAIC,EAAWH,EAAG,MAAM,KACnBP,EAAU,SAASU,CAAQ,IAC9BA,EAAWV,EAAU,IAEvB,KAAM,CAAE,OAAAW,GAAWb,EAAK,OACxBa,EAAO,MAAQD,EAEfD,EAAM,CACV,CAAG,EAEHR,EAAI,IAAIZ,EAAK,EACbY,EAAI,IAAIH,CAAI,EACZG,EAAI,IAAIG,CAAM,EACdH,EAAI,QAAQ,OAAQP,EAAI,EACxBO,EAAI,MAAM,MAAM"}