{"version":3,"file":"aria.min.js","sources":["https:\/\/falms.fa.gov.sa\/theme\/boost\/amd\/src\/aria.js"],"sourcesContent":["\/\/ This file is part of Moodle - http:\/\/moodle.org\/\n\/\/\n\/\/ Moodle is free software: you can redistribute it and\/or modify\n\/\/ it under the terms of the GNU General Public License as published by\n\/\/ the Free Software Foundation, either version 3 of the License, or\n\/\/ (at your option) any later version.\n\/\/\n\/\/ Moodle is distributed in the hope that it will be useful,\n\/\/ but WITHOUT ANY WARRANTY; without even the implied warranty of\n\/\/ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\/\/ GNU General Public License for more details.\n\/\/\n\/\/ You should have received a copy of the GNU General Public License\n\/\/ along with Moodle. If not, see .\n\n\/**\n * Enhancements to Bootstrap components for accessibility.\n *\n * @module theme_boost\/aria\n * @copyright 2018 Damyon Wiese \n * @license http:\/\/www.gnu.org\/copyleft\/gpl.html GNU GPL v3 or later\n *\/\n\nimport $ from 'jquery';\nimport Pending from 'core\/pending';\n\n\/**\n * Drop downs from bootstrap don't support keyboard accessibility by default.\n *\/\nconst dropdownFix = () => {\n let focusEnd = false;\n const setFocusEnd = (end = true) => {\n focusEnd = end;\n };\n const getFocusEnd = () => {\n const result = focusEnd;\n focusEnd = false;\n return result;\n };\n\n \/\/ Special handling for navigation keys when menu is open.\n const shiftFocus = element => {\n const delayedFocus = pendingPromise => {\n element.focus();\n pendingPromise.resolve();\n };\n setTimeout(delayedFocus, 50, new Pending('core\/aria:delayed-focus'));\n };\n\n \/\/ Event handling for the dropdown menu button.\n const handleMenuButton = e => {\n const trigger = e.key;\n let fixFocus = false;\n\n \/\/ Space key or Enter key opens the menu.\n if (trigger === ' ' || trigger === 'Enter') {\n fixFocus = true;\n \/\/ Cancel random scroll.\n e.preventDefault();\n \/\/ Open the menu instead.\n e.target.click();\n }\n\n \/\/ Up and Down keys also open the menu.\n if (trigger === 'ArrowUp' || trigger === 'ArrowDown') {\n fixFocus = true;\n }\n\n if (!fixFocus) {\n \/\/ No need to fix the focus. Return early.\n return;\n }\n\n \/\/ Fix the focus on the menu items when the menu is opened.\n const menu = e.target.parentElement.querySelector('[role=\"menu\"]');\n let menuItems = false;\n let foundMenuItem = false;\n\n if (menu) {\n menuItems = menu.querySelectorAll('[role=\"menuitem\"]');\n }\n if (menuItems && menuItems.length > 0) {\n \/\/ Up key opens the menu at the end.\n if (trigger === 'ArrowUp') {\n setFocusEnd();\n } else {\n setFocusEnd(false);\n }\n\n if (getFocusEnd()) {\n foundMenuItem = menuItems[menuItems.length - 1];\n } else {\n \/\/ The first menu entry, pretty reasonable.\n foundMenuItem = menuItems[0];\n }\n }\n\n if (foundMenuItem) {\n shiftFocus(foundMenuItem);\n }\n };\n\n \/\/ Search for menu items by finding the first item that has\n \/\/ text starting with the typed character (case insensitive).\n document.addEventListener('keypress', e => {\n if (e.target.matches('.dropdown [role=\"menu\"] [role=\"menuitem\"]')) {\n const menu = e.target.closest('[role=\"menu\"]');\n if (!menu) {\n return;\n }\n const menuItems = menu.querySelectorAll('[role=\"menuitem\"]');\n if (!menuItems) {\n return;\n }\n\n const trigger = e.key.toLowerCase();\n\n for (let i = 0; i < menuItems.length; i++) {\n const item = menuItems[i];\n const itemText = item.text.trim().toLowerCase();\n if (itemText.indexOf(trigger) == 0) {\n shiftFocus(item);\n break;\n }\n }\n }\n });\n\n \/\/ Keyboard navigation for arrow keys, home and end keys.\n document.addEventListener('keydown', e => {\n\n \/\/ We only want to set focus when users access the dropdown via keyboard as per\n \/\/ guidelines defined in w3 aria practices 1.1 menu-button.\n if (e.target.matches('[data-toggle=\"dropdown\"]')) {\n handleMenuButton(e);\n }\n\n if (e.target.matches('.dropdown [role=\"menu\"] [role=\"menuitem\"]')) {\n const trigger = e.key;\n let next = false;\n const menu = e.target.closest('[role=\"menu\"]');\n\n if (!menu) {\n return;\n }\n const menuItems = menu.querySelectorAll('[role=\"menuitem\"]');\n if (!menuItems) {\n return;\n }\n \/\/ Down key.\n if (trigger == 'ArrowDown') {\n for (let i = 0; i < menuItems.length - 1; i++) {\n if (menuItems[i] == e.target) {\n next = menuItems[i + 1];\n break;\n }\n }\n if (!next) {\n \/\/ Wrap to first item.\n next = menuItems[0];\n }\n } else if (trigger == 'ArrowUp') {\n \/\/ Up key.\n for (let i = 1; i < menuItems.length; i++) {\n if (menuItems[i] == e.target) {\n next = menuItems[i - 1];\n break;\n }\n }\n if (!next) {\n \/\/ Wrap to last item.\n next = menuItems[menuItems.length - 1];\n }\n } else if (trigger == 'Home') {\n \/\/ Home key.\n next = menuItems[0];\n\n } else if (trigger == 'End') {\n \/\/ End key.\n next = menuItems[menuItems.length - 1];\n }\n\n \/\/ Variable next is set if we do want to act on the keypress.\n if (next) {\n e.preventDefault();\n shiftFocus(next);\n }\n return;\n }\n });\n\n $('.dropdown').on('hidden.bs.dropdown', e => {\n \/\/ We need to focus on the menu trigger.\n const trigger = e.target.querySelector('[data-toggle=\"dropdown\"]');\n const focused = document.activeElement != document.body ? document.activeElement : null;\n if (trigger && focused && e.target.contains(focused)) {\n shiftFocus(trigger);\n }\n });\n};\n\n\/**\n * A lot of Bootstrap's out of the box features don't work if dropdown items are not focusable.\n *\/\nconst comboboxFix = () => {\n $(document).on('show.bs.dropdown', e => {\n if (e.relatedTarget.matches('[role=\"combobox\"]')) {\n const combobox = e.relatedTarget;\n const listbox = combobox.parentElement.querySelector('[role=\"listbox\"]');\n const selectedOption = listbox.querySelector('[role=\"option\"][aria-selected=\"true\"]');\n\n \/\/ To make sure ArrowDown doesn't move the active option afterwards.\n setTimeout(() => {\n if (selectedOption) {\n selectedOption.classList.add('active');\n combobox.setAttribute('aria-activedescendant', selectedOption.id);\n } else {\n const firstOption = listbox.querySelector('[role=\"option\"]');\n firstOption.setAttribute('aria-selected', 'true');\n firstOption.classList.add('active');\n combobox.setAttribute('aria-activedescendant', firstOption.id);\n }\n }, 0);\n }\n });\n\n $(document).on('hidden.bs.dropdown', e => {\n if (e.relatedTarget.matches('[role=\"combobox\"]')) {\n const combobox = e.relatedTarget;\n const listbox = combobox.parentElement.querySelector('[role=\"listbox\"]');\n\n combobox.removeAttribute('aria-activedescendant');\n\n setTimeout(() => {\n \/\/ Undo all previously highlighted options.\n listbox.querySelectorAll('.active[role=\"option\"]').forEach(option => {\n option.classList.remove('active');\n });\n }, 0);\n }\n });\n\n \/\/ Handling keyboard events for both navigating through and selecting options.\n document.addEventListener('keydown', e => {\n if (e.target.matches('.select-menu [role=\"combobox\"]')) {\n const combobox = e.target;\n const trigger = e.key;\n let next = null;\n const options = combobox.parentElement.querySelectorAll('[role=\"listbox\"] [role=\"option\"]');\n const activeOption = combobox.parentElement.querySelector('[role=\"listbox\"] .active[role=\"option\"]');\n\n \/\/ Under the special case that the dropdown menu is being shown as a result of they key press (like when the user\n \/\/ presses ArrowDown or Enter or ... to open the dropdown menu), activeOption is not set yet.\n \/\/ It's because of a race condition with show.bs.dropdown event handler.\n if (options && activeOption) {\n if (trigger == 'ArrowDown') {\n for (let i = 0; i < options.length - 1; i++) {\n if (options[i] == activeOption) {\n next = options[i + 1];\n break;\n }\n }\n } if (trigger == 'ArrowUp') {\n for (let i = 1; i < options.length; i++) {\n if (options[i] == activeOption) {\n next = options[i - 1];\n break;\n }\n }\n } else if (trigger == 'Home') {\n next = options[0];\n } else if (trigger == 'End') {\n next = options[options.length - 1];\n } else if (trigger == ' ' || trigger == 'Enter') {\n selectOption(combobox, activeOption);\n } else {\n \/\/ Search for options by finding the first option that has\n \/\/ text starting with the typed character (case insensitive).\n for (let i = 0; i < options.length; i++) {\n const option = options[i];\n const optionText = option.textContent.trim().toLowerCase();\n const keyPressed = e.key.toLowerCase();\n if (optionText.indexOf(keyPressed) == 0) {\n next = option;\n break;\n }\n }\n }\n\n \/\/ Variable next is set if we do want to act on the keypress.\n if (next) {\n e.preventDefault();\n activeOption.classList.remove('active');\n next.classList.add('active');\n combobox.setAttribute('aria-activedescendant', next.id);\n }\n }\n }\n });\n\n document.addEventListener('click', e => {\n if (e.target.matches('.select-menu [role=\"option\"]')) {\n const option = e.target;\n const combobox = option.closest('.select-menu').querySelector('[role=\"combobox\"]');\n combobox.focus();\n selectOption(combobox, option);\n }\n });\n\n \/\/ In case some code somewhere else changes the value of the combobox.\n document.addEventListener('change', e => {\n if (e.target.matches('.select-menu input[type=\"hidden\"]')) {\n const combobox = e.target.parentElement.querySelector('[role=\"combobox\"]');\n const option = e.target.parentElement.querySelector(`[role=\"option\"][data-value=\"${e.target.value}\"]`);\n\n if (combobox && option) {\n selectOption(combobox, option);\n }\n }\n });\n\n const selectOption = (combobox, option) => {\n const oldSelectedOption = combobox.parentElement.querySelector('[role=\"listbox\"] [role=\"option\"][aria-selected=\"true\"]');\n const inputElement = combobox.parentElement.querySelector('input[type=\"hidden\"]');\n\n if (oldSelectedOption != option) {\n if (oldSelectedOption) {\n oldSelectedOption.removeAttribute('aria-selected');\n }\n option.setAttribute('aria-selected', 'true');\n }\n combobox.textContent = option.textContent;\n if (inputElement.value != option.dataset.value) {\n inputElement.value = option.dataset.value;\n inputElement.dispatchEvent(new Event('change', {bubbles: true}));\n }\n };\n};\n\n\/**\n * After page load, focus on any element with special autofocus attribute.\n *\/\nconst autoFocus = () => {\n window.addEventListener(\"load\", () => {\n const alerts = document.querySelectorAll('[data-aria-autofocus=\"true\"][role=\"alert\"]');\n Array.prototype.forEach.call(alerts, autofocusElement => {\n \/\/ According to the specification an role=\"alert\" region is only read out on change to the content\n \/\/ of that region.\n autofocusElement.innerHTML += ' ';\n autofocusElement.removeAttribute('data-aria-autofocus');\n });\n });\n};\n\n\/**\n * Changes the focus to the correct tab based on the key that is pressed.\n * @param {KeyboardEvent} e\n *\/\nconst updateTabFocus = e => {\n const tabList = e.target.closest('[role=\"tablist\"]');\n const vertical = tabList.getAttribute('aria-orientation') == 'vertical';\n const rtl = window.right_to_left();\n const arrowNext = vertical ? 'ArrowDown' : (rtl ? 'ArrowLeft' : 'ArrowRight');\n const arrowPrevious = vertical ? 'ArrowUp' : (rtl ? 'ArrowRight' : 'ArrowLeft');\n const tabs = Array.prototype.filter.call(\n tabList.querySelectorAll('[role=\"tab\"]'),\n tab => !!tab.offsetHeight); \/\/ We only work with the visible tabs.\n\n for (let i = 0; i < tabs.length; i++) {\n tabs[i].index = i;\n }\n\n switch (e.key) {\n case arrowNext:\n e.preventDefault();\n if (e.target.index !== undefined && tabs[e.target.index + 1]) {\n tabs[e.target.index + 1].focus();\n } else {\n tabs[0].focus();\n }\n break;\n case arrowPrevious:\n e.preventDefault();\n if (e.target.index !== undefined && tabs[e.target.index - 1]) {\n tabs[e.target.index - 1].focus();\n } else {\n tabs[tabs.length - 1].focus();\n }\n break;\n case 'Home':\n e.preventDefault();\n tabs[0].focus();\n break;\n case 'End':\n e.preventDefault();\n tabs[tabs.length - 1].focus();\n }\n};\n\n\/**\n * Fix accessibility issues regarding tab elements focus and their tab order in Bootstrap navs.\n *\/\nconst tabElementFix = () => {\n document.addEventListener('keydown', e => {\n if (['ArrowUp', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'Home', 'End'].includes(e.key)) {\n if (e.target.matches('[role=\"tablist\"] [role=\"tab\"]')) {\n updateTabFocus(e);\n }\n }\n });\n\n document.addEventListener('click', e => {\n if (e.target.matches('[role=\"tablist\"] [data-toggle=\"tab\"], [role=\"tablist\"] [data-toggle=\"pill\"]')) {\n const tabs = e.target.closest('[role=\"tablist\"]').querySelectorAll('[data-toggle=\"tab\"], [data-toggle=\"pill\"]');\n e.preventDefault();\n $(e.target).tab('show');\n tabs.forEach(tab => {\n tab.tabIndex = -1;\n });\n e.target.tabIndex = 0;\n }\n });\n};\n\n\/**\n * Fix keyboard interaction with Bootstrap Collapse elements.\n *\n * @see {@link https:\/\/www.w3.org\/TR\/wai-aria-practices-1.1\/#disclosure|WAI-ARIA Authoring Practices 1.1 - Disclosure (Show\/Hide)}\n *\/\nconst collapseFix = () => {\n document.addEventListener('keydown', e => {\n if (e.target.matches('[data-toggle=\"collapse\"]')) {\n \/\/ Pressing space should toggle expand\/collapse.\n if (e.key === ' ') {\n e.preventDefault();\n e.target.click();\n }\n }\n });\n};\n\nexport const init = () => {\n dropdownFix();\n comboboxFix();\n autoFocus();\n tabElementFix();\n collapseFix();\n};\n"],"names":["_interopRequireDefault","obj","__esModule","default","_jquery","_pending","dropdownFix","focusEnd","setFocusEnd","arguments","length","undefined","shiftFocus","element","setTimeout","pendingPromise","focus","resolve","Pending","handleMenuButton","e","trigger","key","fixFocus","preventDefault","target","click","menu","parentElement","querySelector","menuItems","foundMenuItem","querySelectorAll","getFocusEnd","result","document","addEventListener","matches","closest","toLowerCase","i","item","text","trim","indexOf","next","$","on","focused","activeElement","body","contains","tabElementFix","includes","tabList","vertical","getAttribute","rtl","window","right_to_left","arrowNext","arrowPrevious","tabs","Array","prototype","filter","call","tab","offsetHeight","index","updateTabFocus","forEach","tabIndex","_exports","init","comboboxFix","relatedTarget","combobox","listbox","selectedOption","classList","add","setAttribute","id","firstOption","removeAttribute","option","remove","options","activeOption","selectOption","optionText","textContent","keyPressed","value","oldSelectedOption","inputElement","dataset","dispatchEvent","Event","bubbles","alerts","autofocusElement","innerHTML"],"mappings":"mGAwBmC,SAAAA,uBAAAC,YAAAA,KAAAA,IAAAC,WAAAD,KAAAE,QAAAF;;;;;;;kFADnCG,QAAAJ,uBAAAI,SACAC,SAAAL,uBAAAK,UAKA,MAAMC,YAAcA,KAChB,IAAIC,UAAW,EACf,MAAMC,YAAc,WAChBD,WADoBE,UAAAC,eAAAC,IAAAF,eAAAA,cAUlBG,WAAaC,UAKfC,YAJqBC,iBACjBF,QAAQG,QACRD,eAAeE,SAAS,GAEH,GAAI,IAAIC,iBAAQ,2BAA2B,EAIlEC,iBAAmBC,IACrB,MAAMC,QAAUD,EAAEE,IAClB,IAAIC,UAAW,EAgBf,GAbgB,MAAZF,SAA+B,UAAZA,UACnBE,UAAW,EAEXH,EAAEI,iBAEFJ,EAAEK,OAAOC,SAIG,YAAZL,SAAqC,cAAZA,UACzBE,UAAW,IAGVA,SAED,OAIJ,MAAMI,KAAOP,EAAEK,OAAOG,cAAcC,cAAc,iBAClD,IAAIC,WAAY,EACZC,eAAgB,EAEhBJ,OACAG,UAAYH,KAAKK,iBAAiB,sBAElCF,WAAaA,UAAUpB,OAAS,IAEhB,YAAZW,QACAb,cAEAA,aAAY,GAIZuB,cAxDQE,MAChB,MAAMC,OAAS3B,SAEf,OADAA,UAAW,EACJ2B,MAAM,EAoDLD,GACgBH,UAAUA,UAAUpB,OAAS,GAG7BoB,UAAU,IAI9BC,eACAnB,WAAWmB,gBAMnBI,SAASC,iBAAiB,YAAYhB,IAClC,GAAIA,EAAEK,OAAOY,QAAQ,6CAA8C,CAC\/D,MAAMV,KAAOP,EAAEK,OAAOa,QAAQ,iBAC9B,IAAKX,KACD,OAEJ,MAAMG,UAAYH,KAAKK,iBAAiB,qBACxC,IAAKF,UACD,OAGJ,MAAMT,QAAUD,EAAEE,IAAIiB,cAEtB,IAAK,IAAIC,EAAI,EAAGA,EAAIV,UAAUpB,OAAQ8B,IAAK,CACvC,MAAMC,KAAOX,UAAUU,GAEvB,GAAiC,GADhBC,KAAKC,KAAKC,OAAOJ,cACrBK,QAAQvB,SAAe,CAChCT,WAAW6B,MACX,YAOhBN,SAASC,iBAAiB,WAAWhB,IAQjC,GAJIA,EAAEK,OAAOY,QAAQ,6BACjBlB,iBAAiBC,GAGjBA,EAAEK,OAAOY,QAAQ,6CAArB,CACI,MAAMhB,QAAUD,EAAEE,IAClB,IAAIuB,MAAO,EACX,MAAMlB,KAAOP,EAAEK,OAAOa,QAAQ,iBAE9B,IAAKX,KACD,OAEJ,MAAMG,UAAYH,KAAKK,iBAAiB,qBACxC,IAAKF,UACD,OAGJ,GAAe,aAAXT,QAAwB,CACxB,IAAK,IAAImB,EAAI,EAAGA,EAAIV,UAAUpB,OAAS,EAAG8B,IACtC,GAAIV,UAAUU,IAAMpB,EAAEK,OAAQ,CAC1BoB,KAAOf,UAAUU,EAAI,GACrB,MAGHK,OAEDA,KAAOf,UAAU,SAElB,GAAe,WAAXT,QAAsB,CAE7B,IAAK,IAAImB,EAAI,EAAGA,EAAIV,UAAUpB,OAAQ8B,IAClC,GAAIV,UAAUU,IAAMpB,EAAEK,OAAQ,CAC1BoB,KAAOf,UAAUU,EAAI,GACrB,MAGHK,OAEDA,KAAOf,UAAUA,UAAUpB,OAAS,QAEtB,QAAXW,QAEPwB,KAAOf,UAAU,GAEC,OAAXT,UAEPwB,KAAOf,UAAUA,UAAUpB,OAAS,IAIpCmC,OACAzB,EAAEI,iBACFZ,WAAWiC,iBAMvB,EAAAC,iBAAE,aAAaC,GAAG,sBAAsB3B,IAEpC,MAAMC,QAAUD,EAAEK,OAAOI,cAAc,4BACjCmB,QAAUb,SAASc,eAAiBd,SAASe,KAAOf,SAASc,cAAgB,KAC\/E5B,SAAW2B,SAAW5B,EAAEK,OAAO0B,SAASH,UACxCpC,WAAWS,WAEjB,EA4MA+B,cAAgBA,KAClBjB,SAASC,iBAAiB,WAAWhB,IAC7B,CAAC,UAAW,YAAa,YAAa,aAAc,OAAQ,OAAOiC,SAASjC,EAAEE,MAC1EF,EAAEK,OAAOY,QAAQ,kCA\/CVjB,KACnB,MAAMkC,QAAUlC,EAAEK,OAAOa,QAAQ,oBAC3BiB,SAAuD,YAA5CD,QAAQE,aAAa,oBAChCC,IAAMC,OAAOC,gBACbC,UAAYL,SAAW,YAAeE,IAAM,YAAc,aAC1DI,cAAgBN,SAAW,UAAaE,IAAM,aAAe,YAC7DK,KAAOC,MAAMC,UAAUC,OAAOC,KAChCZ,QAAQtB,iBAAiB,iBACzBmC,OAASA,IAAIC,eAEjB,IAAK,IAAI5B,EAAI,EAAGA,EAAIsB,KAAKpD,OAAQ8B,IAC7BsB,KAAKtB,GAAG6B,MAAQ7B,EAGpB,OAAQpB,EAAEE,KACN,KAAKsC,UACDxC,EAAEI,sBACqBb,IAAnBS,EAAEK,OAAO4C,OAAuBP,KAAK1C,EAAEK,OAAO4C,MAAQ,GACtDP,KAAK1C,EAAEK,OAAO4C,MAAQ,GAAGrD,QAEzB8C,KAAK,GAAG9C,QAEZ,MACJ,KAAK6C,cACDzC,EAAEI,sBACqBb,IAAnBS,EAAEK,OAAO4C,OAAuBP,KAAK1C,EAAEK,OAAO4C,MAAQ,GACtDP,KAAK1C,EAAEK,OAAO4C,MAAQ,GAAGrD,QAEzB8C,KAAKA,KAAKpD,OAAS,GAAGM,QAE1B,MACJ,IAAK,OACDI,EAAEI,iBACFsC,KAAK,GAAG9C,QACR,MACJ,IAAK,MACDI,EAAEI,iBACFsC,KAAKA,KAAKpD,OAAS,GAAGM,UAWlBsD,CAAelD,MAK3Be,SAASC,iBAAiB,SAAShB,IAC\/B,GAAIA,EAAEK,OAAOY,QAAQ,+EAAgF,CACjG,MAAMyB,KAAO1C,EAAEK,OAAOa,QAAQ,oBAAoBN,iBAAiB,6CACnEZ,EAAEI,kBACF,EAAAsB,iBAAE1B,EAAEK,QAAQ0C,IAAI,QAChBL,KAAKS,SAAQJ,MACTA,IAAIK,UAAY,CAAC,IAErBpD,EAAEK,OAAO+C,SAAW,KAE1B,EA0BJC,SAAAC,KANkBA,KAChBpE,cA9OgBqE,OAChB,EAAA7B,iBAAEX,UAAUY,GAAG,oBAAoB3B,IAC\/B,GAAIA,EAAEwD,cAAcvC,QAAQ,qBAAsB,CAC9C,MAAMwC,SAAWzD,EAAEwD,cACbE,QAAUD,SAASjD,cAAcC,cAAc,oBAC\/CkD,eAAiBD,QAAQjD,cAAc,yCAG7Cf,YAAW,KACP,GAAIiE,eACAA,eAAeC,UAAUC,IAAI,UAC7BJ,SAASK,aAAa,wBAAyBH,eAAeI,QAC3D,CACH,MAAMC,YAAcN,QAAQjD,cAAc,mBAC1CuD,YAAYF,aAAa,gBAAiB,QAC1CE,YAAYJ,UAAUC,IAAI,UAC1BJ,SAASK,aAAa,wBAAyBE,YAAYD,OAEhE,QAIX,EAAArC,iBAAEX,UAAUY,GAAG,sBAAsB3B,IACjC,GAAIA,EAAEwD,cAAcvC,QAAQ,qBAAsB,CAC9C,MAAMwC,SAAWzD,EAAEwD,cACbE,QAAUD,SAASjD,cAAcC,cAAc,oBAErDgD,SAASQ,gBAAgB,yBAEzBvE,YAAW,KAEPgE,QAAQ9C,iBAAiB,0BAA0BuC,SAAQe,SACvDA,OAAON,UAAUO,OAAO,SAAS,GACnC,GACH,OAKXpD,SAASC,iBAAiB,WAAWhB,IACjC,GAAIA,EAAEK,OAAOY,QAAQ,kCAAmC,CACpD,MAAMwC,SAAWzD,EAAEK,OACbJ,QAAUD,EAAEE,IAClB,IAAIuB,KAAO,KACX,MAAM2C,QAAUX,SAASjD,cAAcI,iBAAiB,oCAClDyD,aAAeZ,SAASjD,cAAcC,cAAc,2CAK1D,GAAI2D,SAAWC,aAAc,CACzB,GAAe,aAAXpE,QACA,IAAK,IAAImB,EAAI,EAAGA,EAAIgD,QAAQ9E,OAAS,EAAG8B,IACpC,GAAIgD,QAAQhD,IAAMiD,aAAc,CAC5B5C,KAAO2C,QAAQhD,EAAI,GACnB,MAGV,GAAe,WAAXnB,SACF,IAAK,IAAImB,EAAI,EAAGA,EAAIgD,QAAQ9E,OAAQ8B,IAChC,GAAIgD,QAAQhD,IAAMiD,aAAc,CAC5B5C,KAAO2C,QAAQhD,EAAI,GACnB,YAGL,GAAe,QAAXnB,QACPwB,KAAO2C,QAAQ,QACZ,GAAe,OAAXnE,QACPwB,KAAO2C,QAAQA,QAAQ9E,OAAS,QAC7B,GAAe,KAAXW,SAA6B,SAAXA,QACzBqE,aAAab,SAAUY,mBAIvB,IAAK,IAAIjD,EAAI,EAAGA,EAAIgD,QAAQ9E,OAAQ8B,IAAK,CACrC,MAAM8C,OAASE,QAAQhD,GACjBmD,WAAaL,OAAOM,YAAYjD,OAAOJ,cACvCsD,WAAazE,EAAEE,IAAIiB,cACzB,GAAsC,GAAlCoD,WAAW\/C,QAAQiD,YAAkB,CACrChD,KAAOyC,OACP,OAMRzC,OACAzB,EAAEI,iBACFiE,aAAaT,UAAUO,OAAO,UAC9B1C,KAAKmC,UAAUC,IAAI,UACnBJ,SAASK,aAAa,wBAAyBrC,KAAKsC,UAMpEhD,SAASC,iBAAiB,SAAShB,IAC\/B,GAAIA,EAAEK,OAAOY,QAAQ,gCAAiC,CAClD,MAAMiD,OAASlE,EAAEK,OACXoD,SAAWS,OAAOhD,QAAQ,gBAAgBT,cAAc,qBAC9DgD,SAAS7D,QACT0E,aAAab,SAAUS,YAK\/BnD,SAASC,iBAAiB,UAAUhB,IAChC,GAAIA,EAAEK,OAAOY,QAAQ,qCAAsC,CACvD,MAAMwC,SAAWzD,EAAEK,OAAOG,cAAcC,cAAc,qBAChDyD,OAASlE,EAAEK,OAAOG,cAAcC,cAAe,+BAA8BT,EAAEK,OAAOqE,WAExFjB,UAAYS,QACZI,aAAab,SAAUS,YAKnC,MAAMI,aAAeA,CAACb,SAAUS,UAC5B,MAAMS,kBAAoBlB,SAASjD,cAAcC,cAAc,0DACzDmE,aAAenB,SAASjD,cAAcC,cAAc,wBAEtDkE,mBAAqBT,SACjBS,mBACAA,kBAAkBV,gBAAgB,iBAEtCC,OAAOJ,aAAa,gBAAiB,SAEzCL,SAASe,YAAcN,OAAOM,YAC1BI,aAAaF,OAASR,OAAOW,QAAQH,QACrCE,aAAaF,MAAQR,OAAOW,QAAQH,MACpCE,aAAaE,cAAc,IAAIC,MAAM,SAAU,CAACC,SAAS,MAEhE,EA2GDzB,GApGAjB,OAAOtB,iBAAiB,QAAQ,KAC5B,MAAMiE,OAASlE,SAASH,iBAAiB,8CACzC+B,MAAMC,UAAUO,QAAQL,KAAKmC,QAAQC,mBAGjCA,iBAAiBC,WAAa,IAC9BD,iBAAiBjB,gBAAgB,sBAAsB,GACzD,IA+FNjC,gBAfAjB,SAASC,iBAAiB,WAAWhB,IAC7BA,EAAEK,OAAOY,QAAQ,6BAEH,MAAVjB,EAAEE,MACFF,EAAEI,iBACFJ,EAAEK,OAAOC,WAWR,CACf"}