ketcher-react 3.0.0-rc.1 → 3.0.0-rc.2
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 +4 -0
- package/dist/Editor.d.ts +6 -28
- package/dist/MicromoleculesEditor.d.ts +28 -0
- package/dist/cjs/Editor.d.ts +6 -0
- package/dist/cjs/MicromoleculesEditor.d.ts +28 -0
- package/dist/cjs/components/Accordion/Accordion.d.ts +2 -0
- package/dist/cjs/components/Accordion/index.d.ts +16 -0
- package/dist/cjs/components/Accordion/styles.d.ts +29 -0
- package/dist/cjs/components/Accordion/types.d.ts +27 -0
- package/dist/cjs/components/Buttons/Button/Button.d.ts +1 -0
- package/dist/cjs/components/Buttons/Button/index.d.ts +16 -0
- package/dist/cjs/components/Buttons/Button/styles.d.ts +5 -0
- package/dist/cjs/components/Buttons/IconButton/IconButton.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/IconButtonBase.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/IconButtonCustomIcon.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/index.d.ts +17 -0
- package/dist/cjs/components/Buttons/IconButton/styles.d.ts +28 -0
- package/dist/cjs/components/Buttons/IconButton/types.d.ts +40 -0
- package/dist/cjs/components/Buttons/index.d.ts +17 -0
- package/dist/cjs/components/Dialog/Dialog.d.ts +45 -0
- package/dist/cjs/components/Dialog/index.d.ts +16 -0
- package/dist/cjs/components/Icon/Icon.d.ts +18 -0
- package/dist/cjs/components/Icon/index.d.ts +19 -0
- package/dist/cjs/components/Icon/types.d.ts +26 -0
- package/dist/cjs/components/Icon/utils/getIconByName.d.ts +17 -0
- package/dist/cjs/components/Icon/utils/getIconName.d.ts +17 -0
- package/dist/cjs/components/Icon/utils/iconNameToIcon.d.ts +237 -0
- package/dist/cjs/components/InfoModal/InfoModal.d.ts +22 -0
- package/dist/cjs/components/InfoModal/constants.d.ts +4 -0
- package/dist/cjs/components/InfoModal/index.d.ts +17 -0
- package/dist/cjs/components/Input/Input.d.ts +1 -0
- package/dist/cjs/components/Input/index.d.ts +16 -0
- package/dist/cjs/components/Input/styles.d.ts +20 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/AmbiguousMonomerPreview.d.ts +9 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/AmbiguousMonomerPreview.styles.d.ts +29 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/index.d.ts +3 -0
- package/dist/cjs/components/MonomerPreview/AmbiguousMonomerPreview/types.d.ts +46 -0
- package/dist/cjs/components/MonomerPreview/calculatePreviewPosition.d.ts +28 -0
- package/dist/cjs/components/MonomerPreview/constants.d.ts +9 -0
- package/dist/cjs/components/MonomerPreview/index.d.ts +3 -0
- package/dist/cjs/components/StructRender/StructRender.d.ts +18 -0
- package/dist/cjs/components/StructRender/index.d.ts +16 -0
- package/dist/cjs/components/StructRender/styles.d.ts +22 -0
- package/dist/cjs/components/StructRender/types.d.ts +29 -0
- package/dist/cjs/components/ToggleButtonGroup/ToggleButtonGroup.d.ts +8 -0
- package/dist/cjs/components/ToggleButtonGroup/ToggleButtonGroup.test.d.ts +16 -0
- package/dist/cjs/components/index.d.ts +23 -0
- package/dist/cjs/components/styles/consts.d.ts +59 -0
- package/dist/cjs/components/styles/index.d.ts +16 -0
- package/dist/cjs/constants.d.ts +49 -0
- package/dist/cjs/contexts/appContext.d.ts +23 -0
- package/dist/cjs/contexts/errorsContext.d.ts +21 -0
- package/dist/cjs/contexts/formContext.d.ts +18 -0
- package/dist/cjs/contexts/index.d.ts +21 -0
- package/dist/cjs/contexts/settingsContext.d.ts +21 -0
- package/dist/cjs/hooks/index.d.ts +21 -0
- package/dist/cjs/hooks/useAppContext.d.ts +16 -0
- package/dist/cjs/hooks/useClickOutside.d.ts +2 -0
- package/dist/cjs/hooks/useFormContext.d.ts +16 -0
- package/dist/cjs/hooks/useInterval.d.ts +16 -0
- package/dist/cjs/hooks/useResizeObserver.d.ts +26 -0
- package/dist/cjs/hooks/useSettingsContext.d.ts +16 -0
- package/dist/cjs/hooks/useSubscribtionOnEvents.d.ts +16 -0
- package/dist/cjs/index.css +2 -0
- package/dist/cjs/index.css.map +1 -0
- package/dist/cjs/index.d.ts +20 -0
- package/dist/{index.modern.js → cjs/index.js} +4299 -4055
- package/dist/cjs/index.js.map +1 -0
- package/dist/cjs/index.modern-285b5e16.js +15323 -0
- package/dist/cjs/index.modern-285b5e16.js.map +1 -0
- package/dist/cjs/script/api.d.ts +19 -0
- package/dist/cjs/script/builders/index.d.ts +16 -0
- package/dist/cjs/script/builders/ketcher/ButtonConfig.d.ts +18 -0
- package/dist/cjs/script/builders/ketcher/ButtonName.d.ts +17 -0
- package/dist/cjs/script/builders/ketcher/ButtonsConfig.d.ts +20 -0
- package/dist/cjs/script/builders/ketcher/CustomButtons.d.ts +5 -0
- package/dist/cjs/script/builders/ketcher/KetcherBuilder.d.ts +39 -0
- package/dist/cjs/script/builders/ketcher/index.d.ts +17 -0
- package/dist/cjs/script/editor/Editor.d.ts +119 -0
- package/dist/cjs/script/editor/HoverIcon.d.ts +31 -0
- package/dist/cjs/script/editor/highlighter.d.ts +33 -0
- package/dist/cjs/script/editor/index.d.ts +19 -0
- package/dist/cjs/script/editor/shared/closest.d.ts +43 -0
- package/dist/cjs/script/editor/shared/closest.types.d.ts +9 -0
- package/dist/cjs/script/editor/tool/Tool.d.ts +21 -0
- package/dist/cjs/script/editor/tool/apoint.d.ts +23 -0
- package/dist/cjs/script/editor/tool/apoint.utils.d.ts +2 -0
- package/dist/cjs/script/editor/tool/arrow/arrow.types.d.ts +19 -0
- package/dist/cjs/script/editor/tool/arrow/arrowTool.d.ts +9 -0
- package/dist/cjs/script/editor/tool/arrow/commonArrow.d.ts +17 -0
- package/dist/cjs/script/editor/tool/arrow/multitailArrowAdd.d.ts +14 -0
- package/dist/cjs/script/editor/tool/arrow/multitailArrowMoveTool.d.ts +12 -0
- package/dist/cjs/script/editor/tool/arrow/reactionArrowAdd.d.ts +20 -0
- package/dist/cjs/script/editor/tool/arrow/reactionArrowMoveTool.d.ts +12 -0
- package/dist/cjs/script/editor/tool/atom.d.ts +29 -0
- package/dist/cjs/script/editor/tool/attach.d.ts +24 -0
- package/dist/cjs/script/editor/tool/bond.d.ts +31 -0
- package/dist/cjs/script/editor/tool/chain.d.ts +27 -0
- package/dist/cjs/script/editor/tool/charge.d.ts +24 -0
- package/dist/cjs/script/editor/tool/enhanced-stereo.d.ts +25 -0
- package/dist/cjs/script/editor/tool/eraser.d.ts +30 -0
- package/dist/cjs/script/editor/tool/hand.d.ts +29 -0
- package/dist/cjs/script/editor/tool/helper/deleteFunctionalGroups.d.ts +2 -0
- package/dist/cjs/script/editor/tool/helper/dropAndMerge.d.ts +3 -0
- package/dist/cjs/script/editor/tool/helper/filterNotInCollapsedSGroup.d.ts +20 -0
- package/dist/cjs/script/editor/tool/helper/getGroupIdsFromItems.d.ts +12 -0
- package/dist/cjs/script/editor/tool/helper/isAtomOutSideCanvas.d.ts +2 -0
- package/dist/cjs/script/editor/tool/helper/isMacroMolecule.d.ts +5 -0
- package/dist/cjs/script/editor/tool/helper/lasso.d.ts +68 -0
- package/dist/cjs/script/editor/tool/helper/locate.d.ts +47 -0
- package/dist/cjs/script/editor/tool/image.d.ts +18 -0
- package/dist/cjs/script/editor/tool/index.d.ts +2 -0
- package/dist/cjs/script/editor/tool/paste.d.ts +34 -0
- package/dist/cjs/script/editor/tool/reactionmap.d.ts +27 -0
- package/dist/cjs/script/editor/tool/reactionplus.d.ts +26 -0
- package/dist/cjs/script/editor/tool/reactionunmap.d.ts +23 -0
- package/dist/cjs/script/editor/tool/rgroupatom.d.ts +23 -0
- package/dist/cjs/script/editor/tool/rgroupfragment.d.ts +24 -0
- package/dist/cjs/script/editor/tool/rotate-controller.d.ts +56 -0
- package/dist/cjs/script/editor/tool/rotate-controller.test.d.ts +1 -0
- package/dist/cjs/script/editor/tool/rotate-controller.utils.d.ts +3 -0
- package/dist/cjs/script/editor/tool/rotate.d.ts +51 -0
- package/dist/cjs/script/editor/tool/select/index.d.ts +7 -0
- package/dist/cjs/script/editor/tool/select/select.d.ts +42 -0
- package/dist/cjs/script/editor/tool/select/select.helpers.d.ts +17 -0
- package/dist/cjs/script/editor/tool/select/select.types.d.ts +1 -0
- package/dist/cjs/script/editor/tool/select/selectViewOnly.d.ts +14 -0
- package/dist/cjs/script/editor/tool/sgroup.d.ts +31 -0
- package/dist/cjs/script/editor/tool/simpleobject.d.ts +28 -0
- package/dist/cjs/script/editor/tool/template.d.ts +48 -0
- package/dist/cjs/script/editor/tool/templatePreview.d.ts +41 -0
- package/dist/cjs/script/editor/tool/text.d.ts +27 -0
- package/dist/cjs/script/editor/utils/customOnChangeHandler.d.ts +16 -0
- package/dist/cjs/script/editor/utils/elementOffset.d.ts +17 -0
- package/dist/cjs/script/editor/utils/functionalGroupsTooltip.d.ts +7 -0
- package/dist/cjs/script/editor/utils/getItemCursor.d.ts +3 -0
- package/dist/cjs/script/editor/utils/handleMovingPosibilityCursor.d.ts +1 -0
- package/dist/cjs/script/editor/utils/handleMovingPosibilityCursor.test.d.ts +1 -0
- package/dist/cjs/script/editor/utils/index.d.ts +19 -0
- package/dist/cjs/script/editor/utils/normalizeAngle.d.ts +11 -0
- package/dist/cjs/script/editor/utils/structLayout.d.ts +3 -0
- package/dist/cjs/script/index.d.ts +40 -0
- package/dist/cjs/script/providers/index.d.ts +1 -0
- package/dist/cjs/script/providers/indigoProvider.d.ts +5 -0
- package/dist/cjs/script/ui/App/App.container.d.ts +22 -0
- package/dist/cjs/script/ui/App/App.d.ts +24 -0
- package/dist/cjs/script/ui/App/AppHidden/AppHidden.container.d.ts +18 -0
- package/dist/cjs/script/ui/App/AppHidden/AppHidden.d.ts +22 -0
- package/dist/cjs/script/ui/App/AppHidden/index.d.ts +16 -0
- package/dist/cjs/script/ui/App/index.d.ts +16 -0
- package/dist/cjs/script/ui/App/initApp.d.ts +25 -0
- package/dist/cjs/script/ui/Portal/Portal.d.ts +38 -0
- package/dist/cjs/script/ui/Portal/index.d.ts +16 -0
- package/dist/cjs/script/ui/action/action.types.d.ts +45 -0
- package/dist/cjs/script/ui/action/atoms.d.ts +40 -0
- package/dist/cjs/script/ui/action/copyAs.d.ts +1 -0
- package/dist/cjs/script/ui/action/copyImageToClipboard.d.ts +2 -0
- package/dist/cjs/script/ui/action/createCopyOfSelected.d.ts +14 -0
- package/dist/cjs/script/ui/action/debug.d.ts +13 -0
- package/dist/cjs/script/ui/action/flips.d.ts +1 -0
- package/dist/cjs/script/ui/action/fullscreen.d.ts +24 -0
- package/dist/cjs/script/ui/action/functionalGroups.d.ts +31 -0
- package/dist/cjs/script/ui/action/help.d.ts +9 -0
- package/dist/cjs/script/ui/action/highlightColors/HighlightColors.d.ts +6 -0
- package/dist/cjs/script/ui/action/highlightColors/style.d.ts +25 -0
- package/dist/cjs/script/ui/action/index.d.ts +19 -0
- package/dist/cjs/script/ui/action/isHidden.d.ts +16 -0
- package/dist/cjs/script/ui/action/server.d.ts +92 -0
- package/dist/cjs/script/ui/action/templates.d.ts +16 -0
- package/dist/cjs/script/ui/action/tools.d.ts +372 -0
- package/dist/cjs/script/ui/action/zoom.d.ts +31 -0
- package/dist/cjs/script/ui/component/actionmenu.d.ts +9 -0
- package/dist/cjs/script/ui/component/cliparea/cliparea.d.ts +22 -0
- package/dist/cjs/script/ui/component/form/Input/Input.d.ts +43 -0
- package/dist/cjs/script/ui/component/form/Input/Input.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/MeasureInput/measure-input.d.ts +12 -0
- package/dist/cjs/script/ui/component/form/Select/Select.d.ts +32 -0
- package/dist/cjs/script/ui/component/form/Select/Select.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/Select/index.d.ts +17 -0
- package/dist/cjs/script/ui/component/form/buttonlist.d.ts +9 -0
- package/dist/cjs/script/ui/component/form/colorPicker/ColorPicker.d.ts +27 -0
- package/dist/cjs/script/ui/component/form/colorPicker/ColorPicker.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/form/combobox/combobox.d.ts +12 -0
- package/dist/cjs/script/ui/component/form/form/errorPopover.d.ts +5 -0
- package/dist/cjs/script/ui/component/form/form/form.d.ts +29 -0
- package/dist/cjs/script/ui/component/form/select-checkbox.d.ts +5 -0
- package/dist/cjs/script/ui/component/form/select-list.d.ts +26 -0
- package/dist/cjs/script/ui/component/form/systemfonts.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/Atom/Atom.d.ts +7 -0
- package/dist/cjs/script/ui/component/view/Atom/index.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/SaveButton.test.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/Tabs/Tabs.d.ts +9 -0
- package/dist/cjs/script/ui/component/view/Tabs/index.d.ts +16 -0
- package/dist/cjs/script/ui/component/view/ToolActions.test.d.ts +1 -0
- package/dist/cjs/script/ui/component/view/openbutton.d.ts +9 -0
- package/dist/cjs/script/ui/component/view/saveButton.types.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/saveButton.utils.d.ts +2 -0
- package/dist/cjs/script/ui/component/view/savebutton.d.ts +33 -0
- package/dist/cjs/script/ui/data/convert/structConverter.d.ts +17 -0
- package/dist/cjs/script/ui/data/convert/structconv.d.ts +52 -0
- package/dist/cjs/script/ui/data/schema/options-schema.d.ts +36 -0
- package/dist/cjs/script/ui/data/schema/schema-helper.d.ts +2 -0
- package/dist/cjs/script/ui/data/schema/sdata-schema.d.ts +60 -0
- package/dist/cjs/script/ui/data/schema/struct-schema.d.ts +436 -0
- package/dist/cjs/script/ui/data/templates.d.ts +2 -0
- package/dist/cjs/script/ui/data/utils.d.ts +11 -0
- package/dist/cjs/script/ui/data/utils.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.constants.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.container.d.ts +16 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.container.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.d.ts +21 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.test.utils.d.ts +7 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.types.d.ts +37 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.utils.d.ts +22 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.utils.test.d.ts +16 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/hooks/useOptions.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/hooks/useOptions.test.d.ts +1 -0
- package/dist/cjs/script/ui/dialog/AbbreviationLookup/index.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/index.d.ts +17 -0
- package/dist/cjs/script/ui/dialog/template/EmptySearchResult.d.ts +19 -0
- package/dist/cjs/script/ui/dialog/template/TemplateDialog.d.ts +42 -0
- package/dist/cjs/script/ui/dialog/template/TemplateTable.d.ts +39 -0
- package/dist/cjs/script/ui/dialog/template/template-attach.d.ts +33 -0
- package/dist/cjs/script/ui/dialog/template/useSaltsAndSolvets.d.ts +2 -0
- package/dist/cjs/script/ui/dialog/toolbox/SDataFieldset.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/toolbox/SGroupFieldset.d.ts +4 -0
- package/dist/cjs/script/ui/dialog/toolbox/enhancedStereo/enhancedStereo.d.ts +42 -0
- package/dist/cjs/script/ui/dialog/toolbox/labeledit.d.ts +3 -0
- package/dist/cjs/script/ui/dialog/toolbox/rgroup/rgroup.d.ts +15 -0
- package/dist/cjs/script/ui/dialog/toolbox/sgroup.d.ts +9 -0
- package/dist/cjs/script/ui/dialog/toolbox/sgroup.test.d.ts +1 -0
- package/dist/cjs/script/ui/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/abbreviationLookup.types.d.ts +19 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/index.d.ts +30 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/index.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/abbreviationLookup/selectors/selectors.d.ts +17 -0
- package/dist/cjs/script/ui/state/action/index.d.ts +7 -0
- package/dist/cjs/script/ui/state/common/common.types.d.ts +21 -0
- package/dist/cjs/script/ui/state/common/index.d.ts +26 -0
- package/dist/cjs/script/ui/state/common/index.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/common/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/common/selectors/selectors.d.ts +19 -0
- package/dist/cjs/script/ui/state/constants.d.ts +23 -0
- package/dist/cjs/script/ui/state/editor/index.d.ts +28 -0
- package/dist/cjs/script/ui/state/editor/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/editor/utils/generateCommonProperties.d.ts +6 -0
- package/dist/cjs/script/ui/state/editor/utils/index.d.ts +1 -0
- package/dist/cjs/script/ui/state/floatingTools/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/floatingTools/selectors/index.d.ts +5 -0
- package/dist/cjs/script/ui/state/functionalGroups/index.d.ts +32 -0
- package/dist/cjs/script/ui/state/functionalGroups/selectors/index.d.ts +18 -0
- package/dist/cjs/script/ui/state/handleHotkeysOverItem.d.ts +15 -0
- package/dist/cjs/script/ui/state/hotkeys.d.ts +27 -0
- package/dist/cjs/script/ui/state/hotkeys.test.d.ts +1 -0
- package/dist/cjs/script/ui/state/index.d.ts +11 -0
- package/dist/cjs/script/ui/state/modal/atoms.d.ts +7 -0
- package/dist/cjs/script/ui/state/modal/bonds.d.ts +6 -0
- package/dist/cjs/script/ui/state/modal/form.d.ts +162 -0
- package/dist/cjs/script/ui/state/modal/index.d.ts +3 -0
- package/dist/cjs/script/ui/state/modal/sdata.d.ts +16 -0
- package/dist/cjs/script/ui/state/modal/utils/index.d.ts +1 -0
- package/dist/cjs/script/ui/state/modal/utils/updateOnlyChangedProperties.d.ts +1 -0
- package/dist/cjs/script/ui/state/mouse.d.ts +17 -0
- package/dist/cjs/script/ui/state/moveSelectedItems.d.ts +5 -0
- package/dist/cjs/script/ui/state/options/index.d.ts +106 -0
- package/dist/cjs/script/ui/state/request/index.d.ts +22 -0
- package/dist/cjs/script/ui/state/request/reducer.test.d.ts +16 -0
- package/dist/cjs/script/ui/state/request/request.types.d.ts +27 -0
- package/dist/cjs/script/ui/state/saltsAndSolvents/index.d.ts +30 -0
- package/dist/cjs/script/ui/state/saltsAndSolvents/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/server/index.d.ts +7 -0
- package/dist/cjs/script/ui/state/server/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/shared.d.ts +43 -0
- package/dist/cjs/script/ui/state/templates/index.d.ts +92 -0
- package/dist/cjs/script/ui/state/templates/init-lib.d.ts +28 -0
- package/dist/cjs/script/ui/state/templates/selectors/index.d.ts +16 -0
- package/dist/cjs/script/ui/state/toolbar/index.d.ts +33 -0
- package/dist/cjs/script/ui/storage-ext.d.ts +9 -0
- package/dist/cjs/script/ui/utils/fileOpener.d.ts +1 -0
- package/dist/cjs/script/ui/utils/index.d.ts +14 -0
- package/dist/cjs/script/ui/views/AppClipArea.d.ts +18 -0
- package/dist/cjs/script/ui/views/Editor.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenu.d.ts +19 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenuTrigger.d.ts +18 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/ContextMenuTrigger.utils.d.ts +7 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/contextMenu.types.d.ts +74 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAddAttachmentPoint.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAtomEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useAtomStereo.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondSGroupAttach.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondSGroupEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useBondTypeChange.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useChangeBondDirection.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useDelete.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useFunctionalGroupEoc.d.ts +7 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useFunctionalGroupRemove.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useMonomerExpansionHandlers.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useMultitailArrowTails.d.ts +11 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRGroupAttachmentPointEdit.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRGroupAttachmentPointRemove.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/hooks/useRemoveAttachmentPoint.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/AtomMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/BondMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/FunctionalGroupMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/MacromoleculeMenuItems.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/MultitailArrowMenuItems.d.ts +2 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/RGroupAttachmentPointMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/menuItems/SelectionMenuItems.d.ts +4 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/utils.d.ts +25 -0
- package/dist/cjs/script/ui/views/components/ContextMenu/utils.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/components/Spinner/LoadingCircles.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/Spinner/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/StructEditor/InfoPanel.d.ts +27 -0
- package/dist/cjs/script/ui/views/components/StructEditor/InfoTooltip.d.ts +23 -0
- package/dist/cjs/script/ui/views/components/StructEditor/SGroupDataRender.d.ts +13 -0
- package/dist/cjs/script/ui/views/components/StructEditor/StructEditor.d.ts +33 -0
- package/dist/cjs/script/ui/views/components/StructEditor/helpers.d.ts +3 -0
- package/dist/cjs/script/ui/views/components/StructEditor/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/components/index.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/Modal.container.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/Modal.d.ts +27 -0
- package/dist/cjs/script/ui/views/modal/components/Confirm/Confirm.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/Confirm/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/ExtendedTable.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/BoxWithLines.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenGroup.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenSet.d.ts +26 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenericGroups.d.ts +22 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/components/ButtonGenSet/ButtonGenSet.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/components/ButtonGenSet/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/index.d.ts +27 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/helpers.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/ExtendedTable/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/InfoModal.test.utils.d.ts +63 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/PasteErrorModalBody/PasteErrorModalBody.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/PasteErrorModalBody/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/constants.d.ts +9 -0
- package/dist/cjs/script/ui/views/modal/components/InfoModal/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/PeriodTable.d.ts +37 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/AtomInfo/AtomInfo.d.ts +5 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/AtomInfo/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/ElementsTable.d.ts +9 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/Header.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/MainRow.d.ts +11 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/OutinerRow.d.ts +10 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/components/index.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/ElementsTable/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/TypeChoice/TypeChoice.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/TypeChoice/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/components/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/components/PeriodTable/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/FontControl/FontControl.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/Text/FontControl/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/SpecialSymbols/SpecialSymbolsButton.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/Text/SpecialSymbolsList/SpecialSymbolsList.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/Text/Text.d.ts +25 -0
- package/dist/cjs/script/ui/views/modal/components/Text/TextButton/TextButton.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/Text/TextButton/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/Text/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/Open.container.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/Open.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/AnalyzingFile.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/CDXStructuresViewer/CDXStructuresViewer.d.ts +23 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/CDXStructuresViewer/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/DialogActionButton.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/FileDrop.d.ts +26 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/OpenOptions.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/TextEditor.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/components/ViewSwitcher.d.ts +33 -0
- package/dist/cjs/script/ui/views/modal/components/document/Open/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.d.ts +46 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.test.d.ts +1 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/Save.test.utils.d.ts +2 -0
- package/dist/cjs/script/ui/views/modal/components/document/Save/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/document/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/meta/About/About.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/meta/About/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Accordion/Accordion.d.ts +22 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Accordion/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/Settings.d.ts +38 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/fieldGroups.d.ts +42 -0
- package/dist/cjs/script/ui/views/modal/components/meta/Settings/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/meta/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/Analyse.d.ts +10 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FormulaInput/FormulaInput.d.ts +5 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FormulaInput/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FrozenInput/FrozenInput.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/FrozenInput/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/components/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/process/Analyse/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/Check.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/components/ErrorsCheck.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/components/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Check/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Miew/Miew.d.ts +30 -0
- package/dist/cjs/script/ui/views/modal/components/process/Miew/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/Recognize/Recognize.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/process/Recognize/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/process/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/Atom.container.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/Atom.d.ts +40 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/AtomElement/AtomElement.d.ts +3 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/ElementNumber/ElementNumber.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/ElementNumber/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/helper.d.ts +6 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Atom/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/Attach.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/Attach.d.ts +24 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Attach/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/Automap.container.d.ts +18 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/Automap.d.ts +32 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Automap/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/Bond.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/Bond.d.ts +28 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/Bond/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/FG/RemoveFG.d.ts +23 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.d.ts +29 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/IfThenSelect.d.ts +19 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/components/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/RgroupLogic/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/components/toolbox/index.d.ts +21 -0
- package/dist/cjs/script/ui/views/modal/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/modal/mediaSizes.d.ts +20 -0
- package/dist/cjs/script/ui/views/modal/modal.types.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/ArrowScroll/ArrowScroll.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/ArrowScroll/index.d.ts +2 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/BottomToolbar.container.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/BottomToolbar.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/TemplatesList/TemplatesList.d.ts +34 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/TemplatesList/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/BottomToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/FloatingTools.container.d.ts +4 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/FloatingTools.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/FloatingTools/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/Bond.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Bond/options.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/LeftToolbar.container.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/LeftToolbar.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/RGroup/RGroup.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/RGroup/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Shape/Shape.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/Shape/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/LeftToolbar/leftToolbarOptions.d.ts +8 -0
- package/dist/cjs/script/ui/views/toolbars/ModeControl/ModeControl.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/ModeControl/index.d.ts +1 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/AtomsList/AtomsList.d.ts +33 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/AtomsList/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/RightToolbar.container.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/RightToolbar.d.ts +29 -0
- package/dist/cjs/script/ui/views/toolbars/RightToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/ActionButton.d.ts +37 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarGroupItem.d.ts +34 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/ToolbarMultiToolItem.d.ts +41 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/usePortalOpening.d.ts +19 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/usePortalStyle.d.ts +19 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/DefaultMultiTool.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/index.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/GroupedMultiTool.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/chooseMultiTool.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/variants.types.d.ts +35 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/utils/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/ToolbarGroupItem/utils/makeItems.d.ts +18 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ClipboardControls.d.ts +30 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/CustomButtons.d.ts +8 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/Divider.d.ts +17 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ElementWithDropdown.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ExternalFuncControls.d.ts +35 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/FileControls.d.ts +10 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ScaleTransformer.d.ts +24 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/SystemControls.d.ts +27 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbar.container.d.ts +17 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbar.d.ts +59 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/TopToolbarIconButton.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/UndoRedo.d.ts +26 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomControls.d.ts +28 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomInput.d.ts +26 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomList.d.ts +22 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/ZoomSlider.d.ts +21 -0
- package/dist/cjs/script/ui/views/toolbars/TopToolbar/index.d.ts +16 -0
- package/dist/cjs/script/ui/views/toolbars/index.d.ts +20 -0
- package/dist/cjs/script/ui/views/toolbars/mediaSizes.d.ts +23 -0
- package/dist/cjs/script/ui/views/toolbars/toolbar.types.d.ts +34 -0
- package/dist/cjs/setupTests.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.js +4201 -4157
- package/dist/index.js.map +1 -1
- package/dist/index.modern-b02f5e53.js +15301 -0
- package/dist/index.modern-b02f5e53.js.map +1 -0
- package/dist/script/ui/views/toolbars/ModeControl/ModeControl.d.ts +21 -0
- package/dist/script/ui/views/toolbars/ModeControl/index.d.ts +1 -0
- package/package.json +12 -4
- package/dist/index.modern.js.map +0 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
.button-common-styles{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.scrollbar{scrollbar-width:thin}.scrollbar ::-webkit-scrollbar-track{background-color:transparent}.scrollbar::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.scrollbar::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.scrollbar::-webkit-scrollbar-thumb:active,.scrollbar::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.cliparea-module_cliparea__GdPrN{background:transparent!important;border:none!important;bottom:0;color:transparent!important;display:block;font-size:1px;height:0!important;left:0;outline:none;overflow:hidden;padding:0!important;position:absolute;resize:none;-webkit-user-select:text;-moz-user-select:text;user-select:text;width:0!important;z-index:-1}.ActionButton-module_button-common-styles__y-hng{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ActionButton-module_scrollbar__lD3MH{scrollbar-width:thin}.ActionButton-module_scrollbar__lD3MH ::-webkit-scrollbar-track{background-color:transparent}.ActionButton-module_scrollbar__lD3MH::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ActionButton-module_scrollbar__lD3MH::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ActionButton-module_scrollbar__lD3MH::-webkit-scrollbar-thumb:active,.ActionButton-module_scrollbar__lD3MH::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ActionButton-module_button__nfoWQ{background-color:#fff;background-image:none;background:inherit;border:0;border-radius:4px;color:#333;cursor:pointer;display:inline-block;display:block;height:32px;margin:4px;padding:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:32px}.ActionButton-module_button__nfoWQ:active{background-image:none;outline:0}.ActionButton-module_button__nfoWQ[disabled],fieldset[disabled] .ActionButton-module_button__nfoWQ{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.ActionButton-module_button__nfoWQ>input[type=file]{left:-9999px;position:absolute}.ActionButton-module_button__nfoWQ+button,.ActionButton-module_button__nfoWQ+input[type=reset],.ActionButton-module_button__nfoWQ+input[type=submit]{margin-left:.3em}.ActionButton-module_button__nfoWQ:after,.ActionButton-module_button__nfoWQ:before{display:inline-block;vertical-align:middle}.ActionButton-module_button__nfoWQ:after{left:0;position:absolute}.ActionButton-module_button__nfoWQ:hover{background-image:none;color:#188794}.ActionButton-module_button__nfoWQ:active,.ActionButton-module_button__nfoWQ[disabled]{box-shadow:none;transform:scale(none);transform:scale(1);transition:transform,.2s,ease-out}.ActionButton-module_button__nfoWQ>svg{font-size:22px;height:22px;left:.1em;position:absolute;top:.1em;width:22px}.ActionButton-module_button__nfoWQ.ActionButton-module_selected__kPCxA,.ActionButton-module_button__nfoWQ:active{background:#167782;color:#fff}.ActionButton-module_button__nfoWQ.ActionButton-module_selected__kPCxA:hover,.ActionButton-module_button__nfoWQ:active:hover{background-color:#188794}.InfoModal-module_infoModalOverlay__Ve2pm{align-items:center;background:hsla(0,0%,47%,.2);bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:40}.InfoModal-module_infoModalOverlay__Ve2pm .InfoModal-module_infoModalWindow__Qd-UI{background-clip:padding-box;background-color:#fff;border-radius:8px;display:flex;flex-direction:column;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;max-height:300px;opacity:1;outline:0;position:relative;text-align:left;transform:scale(1);transition:transform .3s,opacity .3s;vertical-align:middle;width:360px}.InfoModal-module_infoModalWindow__Qd-UI header{align-items:center;border-radius:6px 6px 0 0;color:#333;display:flex;font-size:14px;font-weight:500;line-height:14px;padding:12px}.InfoModal-module_infoModalBody__BYoCY{font-size:12px;height:100%;line-height:14px;overflow:auto;padding:12px}.InfoModal-module_infoModalBody__BYoCY::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.InfoModal-module_infoModalBody__BYoCY::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.InfoModal-module_infoModalBody__BYoCY::-webkit-scrollbar-track{background-color:transparent;scrollbar-width:thin}.InfoModal-module_infoModalBody__BYoCY::-webkit-scrollbar-thumb:active,::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.InfoModal-module_infoModalWindow__Qd-UI footer{display:flex;gap:8px;justify-content:flex-end;padding:16px 12px 12px}.InfoModal-module_modalHidden__6HnzH{display:none}.InfoModal-module_ok__BETvY{background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;font-size:12px;height:24px;min-width:70px}.InfoModal-module_ok__BETvY:active,.InfoModal-module_ok__BETvY:hover{background-color:#4fb3bf}.InfoModal-module_ok__BETvY:disabled{background-color:#e1e5ea;color:#333}.Dialog-module_button-common-styles__Xehyp{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Dialog-module_scrollbar__L8hUr{scrollbar-width:thin}.Dialog-module_scrollbar__L8hUr ::-webkit-scrollbar-track{background-color:transparent}.Dialog-module_scrollbar__L8hUr::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Dialog-module_scrollbar__L8hUr::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Dialog-module_scrollbar__L8hUr::-webkit-scrollbar-thumb:active,.Dialog-module_scrollbar__L8hUr::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Dialog-module_dialog__hiRBI{background-clip:padding-box;background-color:#fff;border-radius:8px;color:#585858;display:flex;flex-direction:column;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;opacity:1;outline:0;position:relative;text-align:left;transform:scale(1);transition:transform .3s,opacity .3s;vertical-align:middle}.Dialog-module_dialog__hiRBI.Dialog-module_hide__bbkvB{opacity:.2;transform:scale(.5)}.Dialog-module_header__8QGek{align-items:center;border-radius:6px 6px 0 0;box-sizing:content-box;color:#333;display:flex;font-size:14px;font-weight:500;line-height:12px;padding:12px}.Dialog-module_header__8QGek .Dialog-module_btnContainer__ulrFM{align-items:flex-end;display:flex;flex-direction:row;flex-grow:1}.Dialog-module_header__8QGek .Dialog-module_buttonTop__91ha8{align-self:center;background-color:transparent;border:none;height:16px;margin-left:auto;padding:0;width:16px}.Dialog-module_header__8QGek .Dialog-module_buttonTop__91ha8 .Dialog-module_closeButton__XyaAE{height:100%;width:100%}.Dialog-module_footer__PliV0{display:flex;gap:8px;justify-content:flex-end;padding:16px 12px 12px}.Dialog-module_footer__PliV0 .Dialog-module_ok__BUQ6q{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Dialog-module_footer__PliV0 .Dialog-module_ok__BUQ6q:active,.Dialog-module_footer__PliV0 .Dialog-module_ok__BUQ6q:hover{background-color:#4fb3bf}.Dialog-module_footer__PliV0 .Dialog-module_ok__BUQ6q:disabled{background-color:#e1e5ea;color:#333}.Dialog-module_footer__PliV0 .Dialog-module_cancel__8d83c{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Dialog-module_footer__PliV0 .Dialog-module_cancel__8d83c:active,.Dialog-module_footer__PliV0 .Dialog-module_cancel__8d83c:hover{border:1px solid #333;color:#333}.Dialog-module_footer__PliV0 .Dialog-module_cancel__8d83c:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Dialog-module_withDivider__YBKiQ{border-bottom:1px solid #e1e5ea;height:36px;margin:0;padding:0 12px}.Dialog-module_body__EWh4H{font-size:12px;height:100%;line-height:14px;overflow:auto;scrollbar-width:thin}.Dialog-module_body__EWh4H ::-webkit-scrollbar-track{background-color:transparent}.Dialog-module_body__EWh4H::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Dialog-module_body__EWh4H::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Dialog-module_body__EWh4H::-webkit-scrollbar-thumb:active,.Dialog-module_body__EWh4H::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Dialog-module_withMargin__-zVS4{margin:0 12px}.DefaultMultiTool-module_default__zNTMe button{display:initial}.GroupedMultiTool-module_group__BJQAU{display:flex;flex-direction:column}.GroupedMultiTool-module_group__BJQAU:not(:first-of-type){border-top:1px solid #cad3dd;margin-top:4px;padding-top:5px}.ToolbarMultiToolItem-module_button-common-styles__Fuxbo{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ToolbarMultiToolItem-module_scrollbar__XTmfz{scrollbar-width:thin}.ToolbarMultiToolItem-module_scrollbar__XTmfz ::-webkit-scrollbar-track{background-color:transparent}.ToolbarMultiToolItem-module_scrollbar__XTmfz::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ToolbarMultiToolItem-module_scrollbar__XTmfz::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ToolbarMultiToolItem-module_scrollbar__XTmfz::-webkit-scrollbar-thumb:active,.ToolbarMultiToolItem-module_scrollbar__XTmfz::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ToolbarMultiToolItem-module_icon__-HQal{fill:#333;bottom:0;display:block;height:7px;position:absolute;right:0;width:7px}.ToolbarMultiToolItem-module_iconSelected__hlO0J,.ToolbarMultiToolItem-module_root__uTaId:active .ToolbarMultiToolItem-module_icon__-HQal{fill:#fff}.ToolbarMultiToolItem-module_portal__2XJgz{background:#fff;border:1px solid #cad3dd;border-radius:5px;box-shadow:3px 4px 4px rgba(103,104,132,.25);position:absolute;white-space:nowrap;word-break:keep-all;z-index:20}.ToolbarMultiToolItem-module_portal__2XJgz>button{height:28px;width:28px}.ToolbarMultiToolItem-module_portal__2XJgz>button>svg{left:3px;top:3px}.ToolbarMultiToolItem-module_portal__2XJgz kbd{color:#cad3dd;display:none;font:.8em monospace}.ToolbarMultiToolItem-module_portal-vertical__A0DVe{display:flex;flex-direction:column}.BottomToolbar-module_button-common-styles__PbtE9{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.BottomToolbar-module_scrollbar__i1f8P{scrollbar-width:thin}.BottomToolbar-module_scrollbar__i1f8P ::-webkit-scrollbar-track{background-color:transparent}.BottomToolbar-module_scrollbar__i1f8P::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.BottomToolbar-module_scrollbar__i1f8P::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.BottomToolbar-module_scrollbar__i1f8P::-webkit-scrollbar-thumb:active,.BottomToolbar-module_scrollbar__i1f8P::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.BottomToolbar-module_group__b-pGt{align-items:center;display:flex}.BottomToolbar-module_root__kjkSm{display:flex;flex-direction:row;flex-wrap:wrap;height:36px;overflow:visible;padding:0 6px 6px}.BottomToolbar-module_root__kjkSm div{position:relative;text-align:center}.BottomToolbar-module_root__kjkSm>div>div{margin-bottom:6px}.BottomToolbar-module_root__kjkSm kbd{color:#cad3dd;display:none;font:.8em monospace}.BottomToolbar-module_root__kjkSm .BottomToolbar-module_group__b-pGt{background-color:#fff;border-radius:4px;box-shadow:0 2px 5px rgba(103,104,132,.15);flex-direction:row}.BottomToolbar-module_root__kjkSm button{height:28px;margin:4px;width:28px}.BottomToolbar-module_root__kjkSm button>svg{left:3px;top:3px}.ArrowScroll-module_scroll__h9kCx{background:#fff;display:flex;flex-direction:column;min-height:32px;width:36px}.ArrowScroll-module_button__ygMgL{background:transparent;border:none;font-size:15px!important;height:50%;width:100%}.ArrowScroll-module_down__yDzZX{bottom:0;position:absolute}.ArrowScroll-module_up__Q1ubd{position:absolute;top:0}.LeftToolbar-module_button-common-styles__WgnON{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.LeftToolbar-module_scrollbar__OBwid{scrollbar-width:thin}.LeftToolbar-module_scrollbar__OBwid ::-webkit-scrollbar-track{background-color:transparent}.LeftToolbar-module_scrollbar__OBwid::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.LeftToolbar-module_scrollbar__OBwid::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.LeftToolbar-module_scrollbar__OBwid::-webkit-scrollbar-thumb:active,.LeftToolbar-module_scrollbar__OBwid::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.LeftToolbar-module_group__0s41t{align-items:center;display:flex}.LeftToolbar-module_root__yhhZm{-ms-overflow-style:none;align-items:center;align-items:flex-start;display:flex;flex-direction:column;margin-left:6px;margin-top:12px;overflow:hidden;padding-right:5px;scrollbar-width:thin;width:41px}.LeftToolbar-module_root__yhhZm div{position:relative;text-align:center}.LeftToolbar-module_root__yhhZm>div>div{margin-bottom:6px}.LeftToolbar-module_root__yhhZm kbd{color:#cad3dd;display:none;font:.8em monospace}.LeftToolbar-module_root__yhhZm .LeftToolbar-module_group__0s41t{flex-direction:column}.LeftToolbar-module_root__yhhZm .LeftToolbar-module_group__0s41t:not(:last-of-type){border-bottom:1px solid #eff2f5;margin-bottom:6px}.LeftToolbar-module_root__yhhZm ::-webkit-scrollbar-track{background-color:transparent}.LeftToolbar-module_root__yhhZm::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.LeftToolbar-module_root__yhhZm::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.LeftToolbar-module_root__yhhZm::-webkit-scrollbar-thumb:active,.LeftToolbar-module_root__yhhZm::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.LeftToolbar-module_root__yhhZm .LeftToolbar-module_group__0s41t:not(:last-of-type){border-bottom:none}.LeftToolbar-module_buttons__lnIjn{overflow:hidden;padding-right:5px;scroll-behavior:smooth}.LeftToolbar-module_borderOff__om425{border-bottom:none!important}.LeftToolbar-module_groupItem__OqQu0{background-color:#fff;border-radius:4px;box-shadow:0 2px 5px rgba(103,104,132,.15);padding:2px}.LeftToolbar-module_groupItem__OqQu0 svg{bottom:3px;right:3px}.LeftToolbar-module_groupItem__OqQu0 button{height:28px;margin:2px;width:28px}.LeftToolbar-module_groupItem__OqQu0 button>svg{left:3px;top:3px}.Atom-module_button-common-styles__j3EUJ{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Atom-module_scrollbar__iO-Ni{scrollbar-width:thin}.Atom-module_scrollbar__iO-Ni ::-webkit-scrollbar-track{background-color:transparent}.Atom-module_scrollbar__iO-Ni::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Atom-module_scrollbar__iO-Ni::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Atom-module_scrollbar__iO-Ni::-webkit-scrollbar-thumb:active,.Atom-module_scrollbar__iO-Ni::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Atom-module_atom__g2RUu{background-color:#fff;background-color:transparent;background-image:none;border-color:#cad3dd;border-radius:4px;border-radius:0;color:#333;cursor:pointer;display:inline-block;height:32px;margin:2px 4px;padding:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:32px}.Atom-module_atom__g2RUu:active{background-image:none;outline:0}.Atom-module_atom__g2RUu[disabled],fieldset[disabled] .Atom-module_atom__g2RUu{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.Atom-module_atom__g2RUu>input[type=file]{left:-9999px;position:absolute}.Atom-module_atom__g2RUu+button,.Atom-module_atom__g2RUu+input[type=reset],.Atom-module_atom__g2RUu+input[type=submit]{margin-left:.3em}.Atom-module_atom__g2RUu[disabled]{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.5}.RightToolbar-module_button-common-styles__fNlqY{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.RightToolbar-module_scrollbar__2Q0UU{scrollbar-width:thin}.RightToolbar-module_scrollbar__2Q0UU ::-webkit-scrollbar-track{background-color:transparent}.RightToolbar-module_scrollbar__2Q0UU::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.RightToolbar-module_scrollbar__2Q0UU::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.RightToolbar-module_scrollbar__2Q0UU::-webkit-scrollbar-thumb:active,.RightToolbar-module_scrollbar__2Q0UU::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.RightToolbar-module_group__3mhUx{align-items:center;display:flex}.RightToolbar-module_root__1D5hp{-ms-overflow-style:none;align-items:center;display:flex;flex-direction:column;margin-right:6px;margin-top:10px;overflow:hidden;padding-left:5px;scrollbar-width:thin;width:41px}.RightToolbar-module_root__1D5hp div{position:relative;text-align:center}.RightToolbar-module_root__1D5hp>div>div{margin-bottom:6px}.RightToolbar-module_root__1D5hp kbd{color:#cad3dd;display:none;font:.8em monospace}.RightToolbar-module_root__1D5hp .RightToolbar-module_group__3mhUx{flex-direction:column}.RightToolbar-module_root__1D5hp .RightToolbar-module_group__3mhUx:not(:last-of-type){border-bottom:1px solid #eff2f5;margin-bottom:6px}.RightToolbar-module_root__1D5hp ::-webkit-scrollbar-track{background-color:transparent}.RightToolbar-module_root__1D5hp::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.RightToolbar-module_root__1D5hp::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.RightToolbar-module_root__1D5hp::-webkit-scrollbar-thumb:active,.RightToolbar-module_root__1D5hp::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.RightToolbar-module_root__1D5hp .RightToolbar-module_group__3mhUx:not(:last-of-type){border-bottom:none;margin-bottom:0;padding-bottom:2px}.RightToolbar-module_root__1D5hp .RightToolbar-module_group__3mhUx:not(:last-of-type).RightToolbar-module_atomsList__ar08-{margin-bottom:8px;margin-top:2px}.RightToolbar-module_groupItem__KHL-v{padding:2px 0}.RightToolbar-module_buttons__YxRHI{background-color:#fff;border-radius:4px;box-shadow:0 2px 5px rgba(103,104,132,.15);overflow:hidden;scroll-behavior:smooth;width:100%}.RightToolbar-module_buttons__YxRHI .RightToolbar-module_button__KwZD8{border-radius:4px;margin-bottom:2px;margin-top:4px}.RightToolbar-module_buttons__YxRHI button{border-radius:4px;font-size:14px;font-weight:600;height:28px;margin:2px;width:28px}.RightToolbar-module_buttons__YxRHI button svg{bottom:1px;left:1px;margin:auto;right:1px;top:1px}.FloatingTools-module_button-common-styles__5y-1V{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.FloatingTools-module_scrollbar__yoYi0{scrollbar-width:thin}.FloatingTools-module_scrollbar__yoYi0 ::-webkit-scrollbar-track{background-color:transparent}.FloatingTools-module_scrollbar__yoYi0::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.FloatingTools-module_scrollbar__yoYi0::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.FloatingTools-module_scrollbar__yoYi0::-webkit-scrollbar-thumb:active,.FloatingTools-module_scrollbar__yoYi0::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.FloatingTools-module_group__pQ-sJ{align-items:center;display:flex}.FloatingTools-module_wrapper__OFeE9{display:flex;position:absolute;translate:-50% calc(-50% - 40px)}.FloatingTools-module_wrapper__OFeE9 div{position:relative;text-align:center}.FloatingTools-module_wrapper__OFeE9>div>div{margin-bottom:6px}.FloatingTools-module_wrapper__OFeE9 kbd{color:#cad3dd;display:none;font:.8em monospace}.FloatingTools-module_wrapper__OFeE9 .FloatingTools-module_item__UcfDN{background-color:#fff;border-radius:4px;box-shadow:0 6px 10px rgba(103,104,132,.15);height:28px;width:28px}.FloatingTools-module_wrapper__OFeE9 .FloatingTools-module_item__UcfDN>svg{height:20px;left:50%;top:50%;transform:translate(-50%,-50%);width:20px}.Modal-module_button-common-styles__ko9E5{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Modal-module_scrollbar__yPIJc{scrollbar-width:thin}.Modal-module_scrollbar__yPIJc ::-webkit-scrollbar-track{background-color:transparent}.Modal-module_scrollbar__yPIJc::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Modal-module_scrollbar__yPIJc::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Modal-module_scrollbar__yPIJc::-webkit-scrollbar-thumb:active,.Modal-module_scrollbar__yPIJc::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Modal-module_modalOverlay__AzVeg{align-items:center;background-color:rgba(94,94,94,.2);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath d='M0 10 10 0zm12-2-4 4zM-2 2l4-4z' stroke='%23555' stroke-width='2' stroke-opacity='.02'/%3E%3C/svg%3E");background:none\9;bottom:0;display:flex;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#335e5e5e",endColorstr="#335e5e5e");justify-content:center;left:0;position:absolute;right:0;top:0;z-index:40}.Modal-module_modalOverlay__AzVeg:not([ie9]){filter:progid:dximagetransform.microsoft.gradient(enabled="false")}.Modal-module_modalOverlay__AzVeg.Modal-module_animate__pnPNj{transition:background-color .3s}.Modal-module_modalOverlay__AzVeg.Modal-module_hide__0CTey{background-color:rgba(94,94,94,.01)}.Modal-module_modalOverlay__AzVeg:after{content:"";display:inline-block;height:100%;vertical-align:middle}.Modal-module_modalOverlay__AzVeg .Modal-module_smallScreen__nzt2L{max-height:90%;max-width:90%}.Select-module_button-common-styles__cgaVz{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Select-module_scrollbar__cA89D{scrollbar-width:thin}.Select-module_scrollbar__cA89D ::-webkit-scrollbar-track{background-color:transparent}.Select-module_scrollbar__cA89D::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Select-module_scrollbar__cA89D::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Select-module_scrollbar__cA89D::-webkit-scrollbar-thumb:active,.Select-module_scrollbar__cA89D::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Select-module_dropdownList__rdcrH .MuiPaper-root{border-radius:0 0 4px 4px;box-shadow:0 6px 10px rgba(103,104,132,.15);color:#333}.Select-module_dropdownList__rdcrH .MuiMenuItem-root{color:#333;cursor:default;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:14px;min-height:28px;padding:0 8px}.Select-module_dropdownList__rdcrH .MuiMenuItem-root:hover{background-color:rgba(243,245,247,.6);border-left:2px solid #167782;padding-left:6px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list{background-color:#fff;box-shadow:none;display:inline-block;max-height:200px;overflow:auto;padding:0;scrollbar-width:thin;width:100%}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list ::-webkit-scrollbar-track{background-color:transparent}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar-thumb:active,.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar{background-color:#fff;width:4px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list::-webkit-scrollbar-thumb{border-radius:2px;-webkit-border-radius:2px}.Select-module_dropdownList__rdcrH .MuiList-root.MuiMenu-list .Mui-selected{background-color:#fff}.Select-module_dropdownList__rdcrH .Select-module_listDivider__4vJyh{border:.5px solid #e1e5ea;margin:4px 8px}.Select-module_selectContainer__yXT-t{width:100%}.Select-module_selectContainer__yXT-t .MuiOutlinedInput-root .MuiSelect-select{background-color:#fff;border:1px solid #cad3dd;border-radius:4px;box-shadow:none;box-sizing:border-box;color:#333;cursor:default;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:14px;height:24px;line-height:22px;min-height:24px;padding:0 8px;padding-right:24px!important;width:100%}.Select-module_selectContainer__yXT-t .MuiOutlinedInput-root .MuiSelect-select .MuiSelect-nativeInput{border:none;padding:0}.Select-module_selectContainer__yXT-t .MuiOutlinedInput-root .MuiSelect-select:hover{border:1px solid #43b5c0}.Select-module_selectContainer__yXT-t .Mui-focused .MuiSelect-select{border-color:#167782}.Select-module_selectContainer__yXT-t .MuiOutlinedInput-notchedOutline{border:none}.Select-module_selectContainer__yXT-t .MuiSelect-icon{height:16px;width:16px}.LoadingCircles-module_container__MPCs0{align-items:flex-start;display:flex;flex-direction:row;height:12px;justify-content:space-between;margin-top:10px;width:40px}.LoadingCircles-module_container__MPCs0 span{border:2px solid #005662;border-radius:100%;box-sizing:border-box;display:inline-block;height:8px;width:8px}.LoadingCircles-module_container__MPCs0 span:first-child{animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out infinite}.LoadingCircles-module_container__MPCs0 span:nth-child(2){animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out .33s infinite}.LoadingCircles-module_container__MPCs0 span:nth-child(3){animation:LoadingCircles-module_bounce__gCepS 1s ease-in-out .66s infinite}@keyframes LoadingCircles-module_bounce__gCepS{0%,75%,to{transform:translateY(0)}25%{transform:translateY(-100%)}}.StructEditor-module_button-common-styles__3P7PO{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.StructEditor-module_scrollbar__SUs-o{scrollbar-width:thin}.StructEditor-module_scrollbar__SUs-o ::-webkit-scrollbar-track{background-color:transparent}.StructEditor-module_scrollbar__SUs-o::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.StructEditor-module_scrollbar__SUs-o::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.StructEditor-module_scrollbar__SUs-o::-webkit-scrollbar-thumb:active,.StructEditor-module_scrollbar__SUs-o::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.StructEditor-module_spinnerOverlay__5H1IM{align-items:center;display:flex;height:100%;justify-content:center;position:absolute;top:0;width:100%}.StructEditor-module_canvas__LLnzh{overflow:hidden;position:relative;scrollbar-width:thin;-webkit-user-select:none;-moz-user-select:none;user-select:none}.StructEditor-module_canvas__LLnzh .StructEditor-module_measureLog__B2wuy{background-color:#fff;border:1px solid #cad3dd;border-radius:0 5px;height:1.2em;min-width:8em;opacity:0;padding:.3em;position:absolute;right:0;text-align:center;top:0;transition:opacity .5s}.StructEditor-module_canvas__LLnzh .StructEditor-module_measureLog__B2wuy.StructEditor-module_visible__3eFNB{opacity:1}.StructEditor-module_canvas__LLnzh ::-webkit-scrollbar-track{background-color:transparent}.StructEditor-module_canvas__LLnzh::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.StructEditor-module_canvas__LLnzh::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.StructEditor-module_canvas__LLnzh::-webkit-scrollbar-thumb:active,.StructEditor-module_canvas__LLnzh::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.StructEditor-module_intermediateCanvas__fR3ws{height:100%;position:relative;scrollbar-width:thin}.StructEditor-module_intermediateCanvas__fR3ws.StructEditor-module_enableCursor__Qla0A{cursor:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTIwLjQzNCA3LjY3M2MtLjEtLjYtLjcxMy0xLjczMS0yLjMyLTEuNzMxYTIuOTcgMi45NyAwIDAgMC0uMzc3LjAyM3YtLjc5YTEuMDEgMS4wMSAwIDAgMC0uMDQ1LS4zYy0uMTc3LS41NjQtLjg3Ni0xLjYzMS0yLjI2Mi0xLjYzMWEyLjU5OSAyLjU5OSAwIDAgMC0uNjc2LjA4NiAyLjM5NCAyLjM5NCAwIDAgMC0uMTQ2LS4yM2MtLjQ1My0uNjQ1LTEuMTg2LTEtMi4wNjMtMS0uODc3IDAtMS41ODQuMzYtMi4wMjUgMS4wMTdhMi40NjEgMi40NjEgMCAwIDAtLjM2MS44NSAyLjY2MyAyLjY2MyAwIDAgMC0uNDA4LS4wM2MtMS40NzQgMC0yLjEyNCAxLjE1LTIuMjYyIDEuNzU3YTEuMDM0IDEuMDM0IDAgMCAwLS4wMjQuMjIyVjExLjFsLS4xMy0uMWMtLjU4OC0uNS0yLjAzNC0xLjEyMS0zLjM5MS4wMjktMS4zNTcgMS4xNS0xLjAxNSAyLjY2NC0uNDMxIDMuNDUyLjQ1My43NzMgNC41MTIgNy40MjUgMTAuMjIzIDcuNDI1IDMuMjUgMCA0LjkxLTEuNTEyIDUuNzI5LTIuNzgxYTYuMjkxIDYuMjkxIDAgMCAwIC45OC0yLjhWNy44MzhhMS4wMSAxLjAxIDAgMCAwLS4wMTEtLjE2NVoiLz48cGF0aCBmaWxsPSIjZmZmIiBzdHJva2U9IiNmZmYiIGQ9Ik0xOC40NDggMTYuMjE1YTQuNDc0IDQuNDc0IDAgMCAxLS43IDEuODg3Yy0uODA1IDEuMi0yLjE1MyAxLjgtNC4wMDggMS44LTQuNzY4IDAtOC40ODQtNi40MTItOC41Mi02LjQ3NmEuNjY5LjY2OSAwIDAgMC0uMDktLjEyNmMtLjI5NC0uNDA4IDAtLjY1NS4xMDctLjc0OC4yNjctLjIyNy41NC0uMjM3LjgxLS4wMzFsMS43NyAxLjQ1MmExIDEgMCAwIDAgMS42NDQtLjc2M1Y2LjA4YS4yODcuMjg3IDAgMCAxIC4yOS0uMTQ4LjQ0LjQ0IDAgMCAxIC4zNzIuMTZ2NC43YTEgMSAwIDEgMCAyIDB2LTYuNDVjLjA2OC0uMjQ4LjMtLjI0OC40MjItLjI0OC4yIDAgLjQxNC4wMzIuNDgyLjI1NXY2LjQ0YTEgMSAwIDEgMCAyIDB2LTUuMmEuNzUuNzUgMCAwIDEgLjA3NC0uMTljLjA0OS0uMDgxLjEwOC0uMTUuMzI1LS4xNWEuMzUuMzUgMCAwIDEgLjMwNy4xNXY1LjM5YTEgMSAwIDEgMCAyIDBWOC4wNDdhLjU4My41ODMgMCAwIDEgLjM3Ny0uMWMuMDY1IDAgLjI1OC4wMDYuMzM0LjA3OGwuMDA0IDguMTlaIi8+PC9zdmc+"),auto}.StructEditor-module_intermediateCanvas__fR3ws.StructEditor-module_enableCursor__Qla0A:active{cursor:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDMwIDMwIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTAuNzQ0IDNjLTEuODU0IDAtMy4zNiAxLjUyNS0zLjM2IDMuNHYuMjJoLS4wMTJjLTEuOTk3IDAtMy42MjIgMS42MDItMy42MjIgMy41NjhsLjAwMSA3LjAyYzAgMS43NyAxLjUxMiAzLjUxNSAzLjExMiA1LjM2MS43Mi44MyAxLjkxOSAyLjIxNiAyLjAzNCAyLjczMXYxLjUyMmgxMy40NDJ2LTEuNTU0YzAtLjU5LjYxOC0xLjc3IDEuMTYzLTIuODEuOTM4LTEuNzg5IDEuOTk4LTMuODE1IDEuOTk4LTUuOTkxIDAtMy4yNTgtLjAxLTYuMjQ4LS4wMS02LjI0OCAwLTEuNjk2LTEuMzktMy4wOC0zLjEtMy4wOC0uMjAzIDAtLjQuMDItLjU5Mi4wNTdhMy42NSAzLjY1IDAgMCAwLTMuMDMzLTEuNjA3Yy0uMzY3IDAtLjcyLjA1My0xLjA1NS4xNTNhMy42MzYgMy42MzYgMCAwIDAtMy4wOS0xLjcwNWMtLjQ0NCAwLS44Ny4wOC0xLjI2NC4yMjVBMy4zNDUgMy4zNDUgMCAwIDAgMTAuNzQ0IDNaIi8+PHBhdGggZmlsbD0iIzAwMCIgZD0iTTEwLjc0NCA0LjU1NGMxIDAgMS44MDguODI2IDEuODA4IDEuODQ1djEuMTk3YzAtMS4xMDkuOTI3LTIuMDA4IDIuMDY4LTIuMDA4IDEuMTQzIDAgMi4wNjguOSAyLjA2OCAyLjAwOHYxLjU1MmMwLTEuMTEuOTMtMi4wMDggMi4wNzctMi4wMDggMS4xNDcgMCAyLjA3Ni44OTkgMi4wNzYgMi4wMDh2MS4wNjhBMS41NCAxLjU0IDAgMCAxIDIyLjM5IDguNjljLjg1NiAwIDEuNTQ4LjY4NCAxLjU0OCAxLjUzIDAgMCAuMDEgMi45ODguMDEgNi4yNDQgMCAzLjI1Ny0zLjE2MSA2LjYzNi0zLjE2MSA4LjgwMkgxMC40NWMwLTEuOTQtNS4xNDYtNS43NzMtNS4xNDYtOC4wNjF2LTcuMDJjMC0xLjExMi45MjYtMi4wMTQgMi4wNy0yLjAxNXY0LjA1MWMwIC4zNDIuMzUuNjIuNzgxLjYyLjQzMiAwIC43ODItLjI3OC43ODItLjYyVjYuNGMwLTEuMDIuODA5LTEuODQ1IDEuODA3LTEuODQ1Wm0wLTEuNTU0Yy0xLjg1NCAwLTMuMzYgMS41MjUtMy4zNiAzLjR2LjIyaC0uMDEyYy0xLjk5NyAwLTMuNjIyIDEuNjAyLTMuNjIyIDMuNTY4bC4wMDEgNy4wMmMwIDEuNzcgMS41MTIgMy41MTUgMy4xMTIgNS4zNjEuNzIuODMgMS45MTkgMi4yMTYgMi4wMzQgMi43MzF2MS41MjJoMTMuNDQydi0xLjU1NGMwLS41OS42MTgtMS43NyAxLjE2My0yLjgxLjkzOC0xLjc4OSAxLjk5OC0zLjgxNSAxLjk5OC01Ljk5MSAwLTMuMjU4LS4wMS02LjI0OC0uMDEtNi4yNDggMC0xLjY5Ni0xLjM5LTMuMDgtMy4xLTMuMDgtLjIwMyAwLS40LjAyLS41OTIuMDU3YTMuNjUgMy42NSAwIDAgMC0zLjAzMy0xLjYwN2MtLjM2NyAwLS43Mi4wNTMtMS4wNTUuMTUzYTMuNjM2IDMuNjM2IDAgMCAwLTMuMDktMS43MDVjLS40NDQgMC0uODcuMDgtMS4yNjQuMjI1QTMuMzQ1IDMuMzQ1IDAgMCAwIDEwLjc0NCAzWiIvPjwvc3ZnPg=="),auto}.StructEditor-module_intermediateCanvas__fR3ws ::-webkit-scrollbar-track{background-color:transparent}.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar-thumb:active,.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.StructEditor-module_intermediateCanvas__fR3ws::-webkit-scrollbar{background-color:#fff}.smallEditor .StructEditor-module_canvas__LLnzh .StructEditor-module_measureLog__B2wuy{right:0;top:0}.ContextMenu-module_button-common-styles__pshYr{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ContextMenu-module_scrollbar__fCla5{scrollbar-width:thin}.ContextMenu-module_scrollbar__fCla5 ::-webkit-scrollbar-track{background-color:transparent}.ContextMenu-module_scrollbar__fCla5::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ContextMenu-module_scrollbar__fCla5::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ContextMenu-module_scrollbar__fCla5::-webkit-scrollbar-thumb:active,.ContextMenu-module_scrollbar__fCla5::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ContextMenu-module_contextMenu__oqyL-{--contexify-menu-bgColor:#fff;--contexify-item-color:#585858;--contexify-activeItem-color:#585858;--contexify-activeItem-bgColor:#ddd;--contexify-rightSlot-color:#585858;--contexify-activeRightSlot-color:#585858;--contexify-arrow-color:#b4b9d6;--contexify-activeArrow-color:#b4b9d6;--contexify-menu-shadow:0 2px 5px 0 rgba(51,51,51,.54);--contexify-zIndex:1;--contexify-menu-minWidth:160px;--contexify-menu-padding:4px;--contexify-menu-radius:4px;--contexify-menu-negatePadding:var(--contexify-menu-padding);--contexify-itemContent-padding:3px 20px;--contexify-activeItem-radius:0;box-sizing:border-box;line-height:1.5;min-width:var(--contexify-menu-minWidth);padding:var(--contexify-menu-padding);position:fixed;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:var(--contexify-zIndex)}.ContextMenu-module_contextMenu__oqyL- .ContextMenu-module_icon__KhXEk{height:20px;margin:0 10px 0 -10px;width:20px}.ContextMenu-module_contextMenu__oqyL- .contexify_submenu{max-height:400px;overflow:auto;scrollbar-width:thin}.ContextMenu-module_contextMenu__oqyL- .contexify_submenu ::-webkit-scrollbar-track{background-color:transparent}.ContextMenu-module_contextMenu__oqyL- .contexify_submenu::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ContextMenu-module_contextMenu__oqyL- .contexify_submenu::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ContextMenu-module_contextMenu__oqyL- .contexify_submenu::-webkit-scrollbar-thumb:active,.ContextMenu-module_contextMenu__oqyL- .contexify_submenu::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ContextMenu-module_contextMenu__oqyL- .contexify_item-disabled{opacity:inherit}.ContextMenu-module_contextMenu__oqyL- .contexify_item-disabled>div{opacity:.5}.ContextMenu-module_contextMenu__oqyL- .ContextMenu-module_devider__-K9Bc,.ContextMenu-module_contextMenu__oqyL- .contexify_item:not(.ContextMenu-module_sameGroup__0DPIX,:last-child):after{border-top:1px solid #cad3dd;content:"";display:block;margin:3px 0}.ContextMenu-module_contextMenu__oqyL- .ContextMenu-module_subMenu__87kBE .contexify_rightSlot{margin-right:-15px}.ToggleButtonGroup-module_button-common-styles__wU4We{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ToggleButtonGroup-module_scrollbar__lvyIF{scrollbar-width:thin}.ToggleButtonGroup-module_scrollbar__lvyIF ::-webkit-scrollbar-track{background-color:transparent}.ToggleButtonGroup-module_scrollbar__lvyIF::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ToggleButtonGroup-module_scrollbar__lvyIF::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ToggleButtonGroup-module_scrollbar__lvyIF::-webkit-scrollbar-thumb:active,.ToggleButtonGroup-module_scrollbar__lvyIF::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ToggleButtonGroup-module_button__5nfNK{background-color:#fff;background-image:none;border-color:#cad3dd;border-color:#585858!important;border-radius:4px;color:#333;color:#585858!important;cursor:pointer;display:inline-block;font-size:12px;height:24px;margin:0;text-align:center;text-transform:none!important;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;white-space:nowrap}.ToggleButtonGroup-module_button__5nfNK:active{background-image:none;outline:0}.ToggleButtonGroup-module_button__5nfNK[disabled],fieldset[disabled] .ToggleButtonGroup-module_button__5nfNK{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.ToggleButtonGroup-module_button__5nfNK>input[type=file]{left:-9999px;position:absolute}.ToggleButtonGroup-module_button__5nfNK+button,.ToggleButtonGroup-module_button__5nfNK+input[type=reset],.ToggleButtonGroup-module_button__5nfNK+input[type=submit]{margin-left:.3em}.ToggleButtonGroup-module_button__5nfNK:hover{color:#188794!important}.ToggleButtonGroup-module_button__5nfNK.ToggleButtonGroup-module_selected__SAbod,.ToggleButtonGroup-module_button__5nfNK:active{background:#167782!important;color:#fff!important}.ToggleButtonGroup-module_button__5nfNK.ToggleButtonGroup-module_selected__SAbod:hover,.ToggleButtonGroup-module_button__5nfNK:active:hover{background-color:#188794!important}.InfoPanel-module_infoPanel__irvZL{border:1px solid #b4b9d6;border-radius:3px;padding:10px}.InfoPanel-module_infoPanel__irvZL,.InfoPanel-module_infoTooltip__D7Mnj{background:#fff;border-radius:3px;pointer-events:none;position:absolute}.InfoPanel-module_infoPanel__irvZL svg,.InfoPanel-module_infoTooltip__D7Mnj svg{overflow:visible!important}.InfoPanel-module_infoTooltip__D7Mnj{box-shadow:0 2px 5px 0 #67688426;display:flex;flex-direction:column;gap:8px;max-width:120px;min-width:50px;overflow-wrap:break-word;padding:8px}.InfoPanel-module_infoTooltip__D7Mnj p{margin:0}.About-module_button-common-styles__XmSbT{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.About-module_scrollbar__4-AeI{scrollbar-width:thin}.About-module_scrollbar__4-AeI ::-webkit-scrollbar-track{background-color:transparent}.About-module_scrollbar__4-AeI::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.About-module_scrollbar__4-AeI::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.About-module_scrollbar__4-AeI::-webkit-scrollbar-thumb:active,.About-module_scrollbar__4-AeI::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.About-module_dialog_body__ebQu-{background-color:#fff}.About-module_about__ZVesh{color:#333;font-weight:500;width:430px}.About-module_about__ZVesh>footer{border-top:1px solid #e1e5ea;margin:0;padding:15px}.About-module_about__ZVesh>div[class^=Dialog-module_dialog_body]{display:flex;flex-direction:column}.About-module_about__ZVesh a{color:#167782}.About-module_about__ZVesh .About-module_body__8VOc3{border-radius:6px;height:174px;margin-right:3px;overflow-x:hidden;overflow-y:auto;padding:2px 72px;scrollbar-width:thin}.About-module_about__ZVesh .About-module_body__8VOc3 ::-webkit-scrollbar-track{background-color:transparent}.About-module_about__ZVesh .About-module_body__8VOc3::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.About-module_about__ZVesh .About-module_body__8VOc3::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.About-module_about__ZVesh .About-module_body__8VOc3::-webkit-scrollbar-thumb:active,.About-module_about__ZVesh .About-module_body__8VOc3::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_versionName__1gqJr{font-weight:600;margin-bottom:2px}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_firstline__h5XMW{display:inline-block}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_links__sMpyx{text-align:right}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_infoLinks__4-Tot{margin-top:5px}.About-module_about__ZVesh .About-module_body__8VOc3 .About-module_indigoVersion__WKFlu{display:flex;gap:2px;margin-top:20px}.About-module_about__ZVesh .About-module_headerContent__YclOx{display:flex;justify-content:space-between;padding:0 40px}.About-module_about__ZVesh .About-module_headerContent__YclOx a{align-items:center;color:#333;display:flex;gap:10px;text-decoration:none}.About-module_about__ZVesh .About-module_headerContent__YclOx .About-module_title__k-6Zg{font-size:20px;line-height:22px}.About-module_about__ZVesh .About-module_indigoFirstLine__-86rb{display:inline-block}.About-module_about__ZVesh dd{margin:0 0 .2em}.About-module_about__ZVesh dt{margin-top:3px}.About-module_about__ZVesh .About-module_okButton__FMcEk{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.About-module_about__ZVesh .About-module_okButton__FMcEk:active,.About-module_about__ZVesh .About-module_okButton__FMcEk:hover{border:1px solid #333;color:#333}.About-module_about__ZVesh .About-module_okButton__FMcEk:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Input-module_fieldSetLabel__pPlSl{position:relative}.Input-module_input__tcHBd[type=checkbox],.Input-module_input__tcHBd[type=radio]{opacity:0;position:absolute}.Input-module_input__tcHBd[type=checkbox]+.Input-module_checkbox__dth7G{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='15' height='15' rx='3.5' fill='%23fff' stroke='%23B4B9D6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:100%;display:inline-block;height:16px;margin-right:6px;vertical-align:middle;width:16px}.Input-module_input__tcHBd[type=checkbox]:hover+.Input-module_checkbox__dth7G{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.75' y='.75' width='14.5' height='14.5' rx='3.25' fill='%23fff' stroke='%2343B5C0' stroke-width='1.5'/%3E%3C/svg%3E")}.Input-module_input__tcHBd[type=checkbox]:checked+.Input-module_checkbox__dth7G{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='16' height='16' rx='4' fill='%23167782'/%3E%3Cpath d='M6.337 11.808 2.426 7.63l.973-.911L6.37 9.89l6.248-6.248.943.942-7.223 7.223Z' fill='%23fff'/%3E%3C/svg%3E")}.Input-module_input__tcHBd[type=radio]+.Input-module_radioButton__WNnzl{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23b4b9d6' stroke-width='2'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:100%;display:inline-block;height:16px;margin-right:8px;vertical-align:middle;width:16px}.Input-module_input__tcHBd[type=radio]:hover+.Input-module_radioButton__WNnzl{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%234fb3bf' stroke-width='2'/%3E%3C/svg%3E")}.Input-module_input__tcHBd[type=radio]:checked+.Input-module_radioButton__WNnzl{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23167782' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23167782' stroke-width='2'/%3E%3Ccircle cx='8' cy='8' r='4'/%3E%3C/svg%3E")}.Input-module_input__tcHBd[type=radio]:disabled+.Input-module_radioButton__WNnzl{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23b4b9d6' stroke-width='2'/%3E%3C/svg%3E")}.Input-module_input__tcHBd[type=radio]:checked:disabled+.Input-module_radioButton__WNnzl{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='%23b4b9d6' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23b4b9d6' stroke-width='2'/%3E%3Ccircle cx='8' cy='8' r='4'/%3E%3C/svg%3E")}.Input-module_slider__ws6m0.Input-module_slider__ws6m0{display:inline-block;height:20px;position:relative;width:38px}.Input-module_slider__ws6m0.Input-module_slider__ws6m0 input{height:0;opacity:0;width:0}.Input-module_slider__ws6m0.Input-module_slider__ws6m0 span{background-color:hsla(0,0%,100%,.3);border:1px solid #cad3dd;border-radius:12px;bottom:0;left:0;position:absolute;right:0;top:0;transition:background .4s}.Input-module_slider__ws6m0.Input-module_slider__ws6m0 span:before{background-color:#c4c4c4;border-radius:50%;bottom:1px;content:"";height:16px;left:1px;position:absolute;transition:transform .4s ease-in 0s;width:16px}.Input-module_slider__ws6m0.Input-module_slider__ws6m0 input:checked+span{background-color:#167782}.Input-module_slider__ws6m0.Input-module_slider__ws6m0 input:checked+span:before{background-color:#fff;transform:translateX(18px)}.Input-module_genericInput__yT-J9,.Input-module_select__z9CHU{color:#333}.Input-module_select__z9CHU{min-width:40px}.form-module_button-common-styles__BvKSn{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.form-module_scrollbar__MgLtc{scrollbar-width:thin}.form-module_scrollbar__MgLtc ::-webkit-scrollbar-track{background-color:transparent}.form-module_scrollbar__MgLtc::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.form-module_scrollbar__MgLtc::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.form-module_scrollbar__MgLtc::-webkit-scrollbar-thumb:active,.form-module_scrollbar__MgLtc::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.form-module_inputWithExtraLabel__Y--OH{width:54px!important}.form-module_extraLabel__2IE13{margin-left:6px;margin-top:12px}.form-module_dataError__IXK1h .form-module_inputWrapper__sIDHH{display:inline-block;position:relative}.form-module_dataError__IXK1h .form-module_inputWrapper__sIDHH:after{content:url("data:image/svg+xml;charset=utf-8,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.001 14a1.333 1.333 0 1 0 0-2.667 1.333 1.333 0 0 0 0 2.667ZM6.668 2h2.667v8H6.668V2Z' fill='%23F40724'/%3E%3C/svg%3E");position:absolute;right:-10px;top:7px}.form-module_dataError__IXK1h input[type=number],.form-module_dataError__IXK1h input[type=search],.form-module_dataError__IXK1h input[type=text],.form-module_dataError__IXK1h select,.form-module_dataError__IXK1h textarea{border:1px solid #f40724!important}.form-module_dataError__IXK1h input[type=number]:focus,.form-module_dataError__IXK1h input[type=number]:hover,.form-module_dataError__IXK1h input[type=search]:focus,.form-module_dataError__IXK1h input[type=search]:hover,.form-module_dataError__IXK1h input[type=text]:focus,.form-module_dataError__IXK1h input[type=text]:hover,.form-module_dataError__IXK1h select:focus,.form-module_dataError__IXK1h select:hover,.form-module_dataError__IXK1h textarea:focus,.form-module_dataError__IXK1h textarea:hover{box-shadow:inset 0 0 1px 1px rgba(244,7,36,.12)}.form-module_inputWithEditButtonWrapper__hM70e{align-items:center;display:flex;gap:3px}.form-module_inputWithEditButtonWrapper__hM70e>input{width:114px!important}.form-module_inputWithEditButtonWrapper__hM70e>.form-module_editButton__zLQI5{height:20px!important;min-height:16px;min-width:16px;width:20px!important}.form-module_divWithTooltipAndAboutIcon__rnNIB{align-items:center;display:flex;justify-content:space-between;width:100%}.ColorPicker-module_colorPickerInput__voi2r{align-items:center;background-color:#fff;border:1px solid #cad3dd;border-radius:4px;box-shadow:none;box-sizing:border-box;color:#333;cursor:default;display:flex;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:14px;height:24px;min-height:24px;padding-left:3px;padding-right:7px;width:48px}.ColorPicker-module_colorPickerInput__voi2r:hover{border-color:#43b5c0}.ColorPicker-module_selectedInput__Ykcjd{border-color:#167782}.ColorPicker-module_colorPickerWrap__IAQVo{background-color:#fff;border-radius:4px;box-shadow:0 6px 10px rgba(103,104,132,.15);height:35px;left:0;padding:8px;position:absolute;top:24px;width:70px;z-index:1}.ColorPicker-module_withPalette__gTwNu{height:140px}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM{height:80%;right:0;top:0}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM input{border:1px solid transparent!important;color:#333;float:right;font-size:10px;height:12px!important;margin-top:2px;outline:transparent;padding:1px 2px!important;position:relative;text-align:right;text-transform:uppercase;width:60%}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM input:focus{border:1px solid #ddd!important}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM div{border-radius:0}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM .react-colorful{height:80%;width:100%}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM .react-colorful__hue{height:15px}.ColorPicker-module_colorPicker__Uz3PM.ColorPicker-module_colorPicker__Uz3PM .react-colorful__pointer{border-radius:50%;border-width:1px;height:10px;width:10px}.ColorPicker-module_colorPickerBtn__nr6ph{align-items:center;box-sizing:border-box;display:flex;justify-content:space-between}.ColorPicker-module_colorPickerPreview__-Rf-i{border:none;border-radius:2px;height:16px;width:16px}.ColorPicker-module_colorPickerOverlay__WzC-w{bottom:0;left:0;position:fixed;right:0;top:0;z-index:-10}.ColorPicker-module_colorContainer__ib5up{align-items:baseline;display:flex;justify-content:space-between;margin-top:2px}.ColorPicker-module_colorContainer__ib5up .ColorPicker-module_hex__mE9my{color:#333;font-size:10px}.ColorPicker-module_presetColors__J-ysq{display:flex;flex-wrap:wrap;width:78px}.ColorPicker-module_presetColors__J-ysq button{border:none;border-radius:2px;height:16px;margin-bottom:2px;margin-right:2px;width:16px}.ColorPicker-module_presetColors__J-ysq button:last-of-type,.ColorPicker-module_presetColors__J-ysq button:nth-of-type(4){margin-right:0}.ColorPicker-module_presetColors__J-ysq .ColorPicker-module_chooseColor__fdzt8{background-color:#fff;background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3QgeD0iLjUiIHk9Ii41IiB3aWR0aD0iMTUiIGhlaWdodD0iMTUiIHJ4PSIxLjUiIHN0cm9rZT0iIzAwNTY2MiIvPjxwYXRoIGZpbGw9IiMwMDU2NjIiIGQ9Ik03LjM0NiAzLjQyOGgxLjMwNnY5LjE0M0g3LjM0NnoiLz48cGF0aCBmaWxsPSIjMDA1NjYyIiBkPSJNMy40MjggOC42NTNWNy4zNDdoOS4xNDN2MS4zMDZ6Ii8+PC9zdmc+");background-position:50%;background-repeat:no-repeat;border:1px solid #00838f}.ColorPicker-module_presetColors__J-ysq .ColorPicker-module_clicked__8BNoN{background-color:#00838f;background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTTQuMzQ2LjQyOWgxLjMwNnY5LjE0M0g0LjM0NnoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNLjQyOCA1LjY1M1Y0LjM0N0g5LjU3djEuMzA2eiIvPjwvc3ZnPg==")}.ColorPicker-module_expandIcon__oH4ka{margin-left:auto;transform:rotate(180deg);transition:transform .3s ease-in-out;width:16px}.ColorPicker-module_turnedIcon__-zaq-{transform:rotate(0deg)}.ColorPicker-module_colorPickerWrapper__GJm87{position:relative}.measure-input-module_measureInput__uZQ-j{align-items:center;color:#333;display:inline-flex;font-size:12px;justify-content:space-between;line-height:20px;margin-bottom:16px;width:100%}.measure-input-module_measureInput__uZQ-j .measure-input-module_select__1ZFmv,.measure-input-module_measureInput__uZQ-j input{height:24px;margin-left:4px;width:58px}.buttons-module_button-common-styles__qWDOz{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.buttons-module_scrollbar__SpaVV{scrollbar-width:thin}.buttons-module_scrollbar__SpaVV ::-webkit-scrollbar-track{background-color:transparent}.buttons-module_scrollbar__SpaVV::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.buttons-module_scrollbar__SpaVV::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.buttons-module_scrollbar__SpaVV::-webkit-scrollbar-thumb:active,.buttons-module_scrollbar__SpaVV::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.buttons-module_openButton__wErm9{float:left}.Accordion-module_button-common-styles__enTfZ{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Accordion-module_scrollbar__lJTa6{scrollbar-width:thin}.Accordion-module_scrollbar__lJTa6 ::-webkit-scrollbar-track{background-color:transparent}.Accordion-module_scrollbar__lJTa6::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Accordion-module_scrollbar__lJTa6::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Accordion-module_scrollbar__lJTa6::-webkit-scrollbar-thumb:active,.Accordion-module_scrollbar__lJTa6::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Accordion-module_accordionWrapper__RKk00{background-color:#eff2f5;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin}.Accordion-module_accordionWrapper__RKk00 ::-webkit-scrollbar-track{background-color:transparent}.Accordion-module_accordionWrapper__RKk00::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Accordion-module_accordionWrapper__RKk00::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Accordion-module_accordionWrapper__RKk00::-webkit-scrollbar-thumb:active,.Accordion-module_accordionWrapper__RKk00::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Accordion-module_expandIcon__ncUKv{margin-right:12px;transform:rotate(180deg);transition:transform .3s ease-in-out;width:16px}.Accordion-module_turnedIcon__v1sCA{transform:rotate(0deg)}.Accordion-module_accordionSummaryWrapper__roIRd{background-color:#fff;border-bottom:1px solid #e1e5ea;margin:0;padding-left:12px}.Accordion-module_accordionSummary__1Gq0d{align-items:center;color:#333;display:flex;flex-direction:row;font-size:14px;font-weight:400;height:42px;justify-content:flex-start;line-height:14px;overflow:hidden;width:300px}.Accordion-module_accordionDetailsWrapper__fnSnc{max-height:1000px;overflow:hidden;padding:0 12px;transition:max-height .3s ease-in-out;width:300px}.Accordion-module_hiddenAccordion__WZFcJ{max-height:0}.Accordion-module_accordionDetails__g2RM0{color:#333;margin-top:12px;padding-bottom:4px}.Accordion-module_groupIcon__1g1lx{height:15px;width:15px}.Accordion-module_groupLabel__23y4U{align-items:center;display:flex;height:15px}.Accordion-module_groupLabel__23y4U>span{height:12px;margin-left:6px}.Accordion-module_changeMarker__UPtGx{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5' cy='5' r='5' fill='%23167782'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:100%;display:inline-block;height:10px;margin-left:auto;margin-right:1px;vertical-align:middle;width:10px}.Settings-module_button-common-styles__tlD-u{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Settings-module_scrollbar__il1S2{scrollbar-width:thin}.Settings-module_scrollbar__il1S2 ::-webkit-scrollbar-track{background-color:transparent}.Settings-module_scrollbar__il1S2::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Settings-module_scrollbar__il1S2::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Settings-module_scrollbar__il1S2::-webkit-scrollbar-thumb:active,.Settings-module_scrollbar__il1S2::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Settings-module_headerContent__wBYFf{display:flex;gap:8px}.Settings-module_headerContent__wBYFf .Settings-module_title__a6mod{padding-right:4px}.Settings-module_headerContent__wBYFf .Settings-module_button__VZ2w7{background-color:transparent;border:none;color:#525252;font-size:0;padding:0}.Settings-module_headerContent__wBYFf .Settings-module_button__VZ2w7 input[type=file]{display:none}.Settings-module_headerContent__wBYFf .Settings-module_button__VZ2w7:hover{color:#005662}.Settings-module_headerContent__wBYFf .Settings-module_button__VZ2w7:disabled{color:rgba(82,82,82,.4)}.Settings-module_accordion__1uSYy fieldset{border:none;display:flex;flex-direction:column;padding:0}.Settings-module_accordion__1uSYy ul>li{padding:10px 16px}.Settings-module_accordion__1uSYy label{align-items:center;color:#333;display:flex;font-size:12px;height:24px;justify-content:flex-start;line-height:14px;margin-bottom:12px}.Settings-module_accordion__1uSYy label input[type=checkbox]{top:0}.Settings-module_accordion__1uSYy label input,.Settings-module_accordion__1uSYy label select,.Settings-module_accordion__1uSYy label span>div{margin-right:auto;width:120px}.Settings-module_accordion__1uSYy label>:first-child{margin-right:12px;width:168px}.Settings-module_settings__Z5btc{height:70vh;overflow:hidden;width:324px}.Settings-module_settings__Z5btc fieldset[disabled] label>span{opacity:.3}.Settings-module_settings__Z5btc fieldset[disabled] label>div{opacity:.6}.Settings-module_settings__Z5btc>header{box-shadow:0 2px 4px 0 rgba(1,1,50,.1);flex-shrink:0;z-index:10}.Settings-module_settings__Z5btc>footer{box-shadow:0 -2px 4px 0 rgba(1,1,50,.1);z-index:10}.Settings-module_acsStyleButton__TUqy0{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;margin-right:auto;min-width:70px;outline:none}.Settings-module_acsStyleButton__TUqy0:active,.Settings-module_acsStyleButton__TUqy0:hover{background-color:#4fb3bf}.Settings-module_acsStyleButton__TUqy0:disabled{background-color:#e1e5ea;color:#333}.Check-module_button-common-styles__WPocW{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Check-module_scrollbar__3jzOc{scrollbar-width:thin}.Check-module_scrollbar__3jzOc ::-webkit-scrollbar-track{background-color:transparent}.Check-module_scrollbar__3jzOc::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Check-module_scrollbar__3jzOc::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Check-module_scrollbar__3jzOc::-webkit-scrollbar-thumb:active,.Check-module_scrollbar__3jzOc::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Check-module_dialog_body__wHZMM{width:444px}.Check-module_dialog_body__wHZMM>*{background-color:#fff}.Check-module_dialog_body__wHZMM>div{margin:0;overflow:auto}.Check-module_dialog_body__wHZMM>footer{border-radius:inherit}.Check-module_dialog_body__wHZMM form{padding-top:10px}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO{display:flex;justify-content:space-between;width:100%}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonSecondary__2482r{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonSecondary__2482r:active,.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonSecondary__2482r:hover{border:1px solid #333;color:#333}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonSecondary__2482r:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonPrimary__1h5p1{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonPrimary__1h5p1:active,.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonPrimary__1h5p1:hover{background-color:#4fb3bf}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO .Check-module_buttonPrimary__1h5p1:disabled{background-color:#e1e5ea;color:#333}.Check-module_dialog_body__wHZMM .Check-module_buttons__cjuqO>.Check-module_buttonsRight__L1v9A{display:flex;gap:8px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp{-moz-column-gap:15px;column-gap:15px;display:flex;flex-direction:row}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_checkInfo__Iqq6t{flex-grow:1}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF{margin-left:12px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd{color:#333;min-width:130px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset{border:none;display:flex;flex-direction:column;font-size:12px;line-height:14px;padding:0}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset li,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset li,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset li{margin:9px 0 0}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset li label,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset li label,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset li label{align-items:center;display:flex}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset div,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset div,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset div{margin:7px 3px 17px 12px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset div dt,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset div dt,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset div dt{font-weight:700;margin-bottom:4px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8 fieldset div dd,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_settings__knuQF fieldset div dd,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd fieldset div dd{margin-inline-start:0;word-break:break-word}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warnings__b4ozd{background-color:#e1e5ea;width:100%}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK{height:287px;overflow-y:auto;scrollbar-width:thin}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK ::-webkit-scrollbar-track{background-color:transparent}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK::-webkit-scrollbar-thumb:active,.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_warningsContainer__vSbyK::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Check-module_dialog_body__wHZMM .Check-module_wrapper__27SOp .Check-module_centeredContainer__t61r8{align-items:center;background-color:#e1e5ea;display:flex;height:287px;justify-content:center;width:100%}.Check-module_dialog_body__wHZMM .Check-module_checkBoxesDisabled__EAdRo{opacity:.5}.FormulaInput-module_button-common-styles__xQ8ZA{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.FormulaInput-module_scrollbar__8TUkb{scrollbar-width:thin}.FormulaInput-module_scrollbar__8TUkb ::-webkit-scrollbar-track{background-color:transparent}.FormulaInput-module_scrollbar__8TUkb::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.FormulaInput-module_scrollbar__8TUkb::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.FormulaInput-module_scrollbar__8TUkb::-webkit-scrollbar-thumb:active,.FormulaInput-module_scrollbar__8TUkb::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.FormulaInput-module_chem_input__oprB3{background:#fff;border:none;border-radius:4px;box-sizing:border-box;display:inline-block;height:2.4em;height:32px;line-height:1.42857143;margin:2px;overflow:hidden;padding:.35em .15em .35em .3em;vertical-align:middle;white-space:nowrap;width:270px}.FormulaInput-module_chem_input__oprB3:focus,.FormulaInput-module_chem_input__oprB3:hover{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12)}.FormulaInput-module_chem_input__oprB3[disabled],.FormulaInput-module_chem_input__oprB3[readonly],fieldset[disabled] .FormulaInput-module_chem_input__oprB3{background:#f3f3f3;cursor:not-allowed;opacity:.6}.FormulaInput-module_chem_input__oprB3:active,.FormulaInput-module_chem_input__oprB3:focus{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);outline:0}.Analyse-module_button-common-styles__8No07{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Analyse-module_scrollbar__UAaIN{scrollbar-width:thin}.Analyse-module_scrollbar__UAaIN ::-webkit-scrollbar-track{background-color:transparent}.Analyse-module_scrollbar__UAaIN::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Analyse-module_scrollbar__UAaIN::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Analyse-module_scrollbar__UAaIN::-webkit-scrollbar-thumb:active,.Analyse-module_scrollbar__UAaIN::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Analyse-module_analyse__MR-Tu{width:260px}.Analyse-module_analyse__MR-Tu li:first-child>.Analyse-module_inputWrapper__uR995>div{background-color:#e1e5ea;border:1px solid #cad3dd;border-radius:4px;box-shadow:none;cursor:text;font-size:14px;height:24px;line-height:10px;margin:0;padding-left:8px;width:236px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi{display:flex;flex-direction:row;margin-top:12px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi label{margin-bottom:4px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995{display:flex;flex-direction:column}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 input,.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 textarea{background-color:#e1e5ea;border:1px solid #cad3dd;border-radius:4px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 input[readonly],.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 textarea[readonly]{cursor:text}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 input{width:131px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 input:hover{border:1px solid #cad3dd}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_inputWrapper__uR995 textarea{height:87px;letter-spacing:-1px;resize:none;width:236px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_selectWrapper__xEkKL{display:flex;flex-direction:column;margin-left:8px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_selectWrapper__xEkKL .Analyse-module_select__c6hFt{height:24px;margin-top:4px;width:97px}.Analyse-module_analyse__MR-Tu .Analyse-module_contentWrapper__B4WCi .Analyse-module_selectWrapper__xEkKL .Analyse-module_select__c6hFt fieldset{border:1px solid #cad3dd;border-radius:4px}.Recognize-module_button-common-styles__B04E6{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Recognize-module_scrollbar__rohcP{scrollbar-width:thin}.Recognize-module_scrollbar__rohcP ::-webkit-scrollbar-track{background-color:transparent}.Recognize-module_scrollbar__rohcP::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Recognize-module_scrollbar__rohcP::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Recognize-module_scrollbar__rohcP::-webkit-scrollbar-thumb:active,.Recognize-module_scrollbar__rohcP::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Recognize-module_recognize__66jG2 .Recognize-module_footerContent__0MAC7{display:flex;justify-content:space-between;width:100%}.Recognize-module_recognize__66jG2 .Recognize-module_footerContent__0MAC7 div{display:flex;gap:8px}.Recognize-module_recognize__66jG2 .Recognize-module_imagoVersion__nBIj6{display:flex;flex-direction:column;grid-column-end:3;grid-column-start:2}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;display:flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I:active,.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I:hover{border:1px solid #333;color:#333}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I>input{display:none}.Recognize-module_recognize__66jG2 .Recognize-module_openButton__H-j5I>svg{height:16px;width:16px}.Recognize-module_recognize__66jG2 .Recognize-module_imagesContainer__rXWWk{background-color:#eff2f5;display:flex;gap:12px;padding:12px}.Recognize-module_recognize__66jG2 .Recognize-module_topBody__ZCCjN{grid-column-gap:12px;grid-row-gap:24px;display:grid;font-size:10px;grid-template-columns:1fr 1fr;line-height:12px;margin:8px 0 4px;padding:0 12px}.Recognize-module_recognize__66jG2 .Recognize-module_topBody__ZCCjN>label>select{font-size:inherit}.Recognize-module_recognize__66jG2 .Recognize-module_output__WgRnP,.Recognize-module_recognize__66jG2 .Recognize-module_picture__x2Y7S{background-color:#fff;border:1px solid #d9dcea;border-radius:6px;box-sizing:border-box;height:192px;overflow:hidden;text-align:center;width:232px}.Recognize-module_recognize__66jG2 .Recognize-module_picture__x2Y7S{align-items:center;color:#717171;display:flex;justify-content:center;position:relative}.Recognize-module_recognize__66jG2 .Recognize-module_filename__-1HIU{left:8px;position:absolute;top:8px}.Recognize-module_recognize__66jG2 .Recognize-module_messageContainer__tMvyb{align-items:center;background-color:#eff2f5;display:flex;height:100%;justify-content:center;width:100%}.Recognize-module_recognize__66jG2 .Recognize-module_messageContainer__tMvyb>p{margin:12px}.Recognize-module_recognize__66jG2 .Recognize-module_primaryButton__rzm03{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Recognize-module_recognize__66jG2 .Recognize-module_primaryButton__rzm03:active,.Recognize-module_recognize__66jG2 .Recognize-module_primaryButton__rzm03:hover{background-color:#4fb3bf}.Recognize-module_recognize__66jG2 .Recognize-module_primaryButton__rzm03:disabled{background-color:#e1e5ea;color:#333}.Recognize-module_recognize__66jG2 .Recognize-module_secondaryButton__H1Q28{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Recognize-module_recognize__66jG2 .Recognize-module_secondaryButton__H1Q28:active,.Recognize-module_recognize__66jG2 .Recognize-module_secondaryButton__H1Q28:hover{border:1px solid #333;color:#333}.Recognize-module_recognize__66jG2 .Recognize-module_secondaryButton__H1Q28:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Recognize-module_recognize__66jG2 .Recognize-module_struct__W55TL,.Recognize-module_recognize__66jG2 img{max-height:100%;max-width:100%;position:relative}.Miew-module_button-common-styles__8FE-p{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Miew-module_scrollbar__ZMWH-{scrollbar-width:thin}.Miew-module_scrollbar__ZMWH- ::-webkit-scrollbar-track{background-color:transparent}.Miew-module_scrollbar__ZMWH-::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Miew-module_scrollbar__ZMWH-::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Miew-module_scrollbar__ZMWH-::-webkit-scrollbar-thumb:active,.Miew-module_scrollbar__ZMWH-::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Miew-module_warning__IDl5F{line-height:2em;width:100%}.Miew-module_applyButton__ZDE-i{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Miew-module_applyButton__ZDE-i:active,.Miew-module_applyButton__ZDE-i:hover{background-color:#4fb3bf}.Miew-module_applyButton__ZDE-i:disabled{background-color:#e1e5ea;color:#333}.Miew-module_miewDialog__gHvYc{max-width:60vw}.Miew-module_miewContainer__2SNw3{height:60vh;overflow:hidden;position:relative;width:60vw}.Miew-module_miewContainer__2SNw3 .mode-message{align-items:flex-start;background-color:rgba(64,64,64,.75);border-radius:4px;color:silver;display:flex;justify-content:left;opacity:0;position:absolute;right:10px;top:10px}.Miew-module_miewContainer__2SNw3 .atom-info{color:#333;margin:12px;position:absolute;top:0}.Miew-module_miewContainer__2SNw3 .overlay{pointer-events:none}.Miew-module_loadingContainer__cVF-M{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.Miew-module_miewDarkTheme__kMFzc .atom-info{color:#cad3dd}.Atom-module_button-common-styles__ipWaI{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Atom-module_scrollbar__z5cVx{scrollbar-width:thin}.Atom-module_scrollbar__z5cVx ::-webkit-scrollbar-track{background-color:transparent}.Atom-module_scrollbar__z5cVx::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Atom-module_scrollbar__z5cVx::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Atom-module_scrollbar__z5cVx::-webkit-scrollbar-thumb:active,.Atom-module_scrollbar__z5cVx::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Atom-module_atomProps__pqBjY{display:flex;height:386px;justify-content:space-between;overflow:hidden;width:260px}.Atom-module_atomProps__pqBjY .MuiOutlinedInput-root,.Atom-module_atomProps__pqBjY input[type=text]{margin-top:4px}.Atom-module_atomProps__pqBjY>header{box-shadow:0 2px 4px 0 rgba(1,1,50,.1);flex-shrink:0;z-index:10}.Atom-module_atomProps__pqBjY>div{background-color:#eff2f5;flex-grow:1;margin:0}.Atom-module_atomProps__pqBjY>footer{box-shadow:0 -2px 4px 0 rgba(1,1,50,.1);z-index:10}.Atom-module_accordionWrapper__MSuU7{overflow-x:hidden;overflow-y:auto;scrollbar-width:thin}.Atom-module_accordionWrapper__MSuU7 ::-webkit-scrollbar-track{background-color:transparent}.Atom-module_accordionWrapper__MSuU7::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Atom-module_accordionWrapper__MSuU7::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Atom-module_accordionWrapper__MSuU7::-webkit-scrollbar-thumb:active,.Atom-module_accordionWrapper__MSuU7::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Atom-module_expandIcon__mPszC{transform:rotate(180deg);transition:transform .3s ease-in-out;width:20px}.Atom-module_turnedIcon__0Kzwy{transform:rotate(0deg)}.Atom-module_accordionSummaryWrapper__MGqsq{background-color:#fff;border-bottom:1px solid #e1e5ea;margin:0;padding-left:11.5px}.Atom-module_accordionSummaryWrapper__MGqsq[aria-disabled=true]{box-shadow:none;cursor:not-allowed;opacity:.6}.Atom-module_accordionSummary__HMKzl{align-items:center;color:#333;display:flex;flex-direction:row;font-size:12px;font-weight:400;height:26px;justify-content:space-between;line-height:14px;overflow:hidden;width:237px}.Atom-module_accordionDetailsWrapper__p6EI7,.Atom-module_customQueryWrapper__hYuxI{max-height:1000px;overflow:hidden;padding:0 12px;transition:max-height .3s ease-in-out;width:236px}.Atom-module_accordionDetailsWrapper__p6EI7{border-bottom:1px solid #e1e5ea}.Atom-module_hiddenAccordion__pDNdM{max-height:0}.Atom-module_accordionDetails__-B3jK,.Atom-module_customQueryWrapper__hYuxI{color:#333;margin-top:12px;padding-bottom:8px;position:relative}.Atom-module_accordionDetails__-B3jK label,.Atom-module_customQueryWrapper__hYuxI label{align-items:center;color:#585858;display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;margin-bottom:4px}.Atom-module_accordionDetails__-B3jK label>:last-child>*,.Atom-module_accordionDetails__-B3jK label>input,.Atom-module_customQueryWrapper__hYuxI label>:last-child>*,.Atom-module_customQueryWrapper__hYuxI label>input{margin:0!important;width:137px}.Atom-module_accordionDetails__-B3jK label.Atom-module_checkbox__Vup40,.Atom-module_customQueryWrapper__hYuxI label.Atom-module_checkbox__Vup40{align-items:center;flex-direction:row;height:16px;justify-content:space-between;margin-top:8px}.Atom-module_customQueryWrapper__hYuxI label{justify-content:flex-start!important}.Atom-module_customQueryWrapper__hYuxI textarea[name=customQuery]{height:55px;resize:none;width:100%}.Atom-module_querySpecific__7XxMr label>:last-child>*,.Atom-module_reactionFlags__gdNb1 label>:last-child>*{width:137px}.Atom-module_reactionFlags__gdNb1{padding-bottom:20px}.Attach-module_attachPoints__5QEAv{width:260px}.Attach-module_attachPoints__5QEAv>div{margin-top:12px}.Attach-module_attachPoints__5QEAv form{align-items:flex-start;display:flex;flex-direction:column;width:17em}.Attach-module_attachPoints__5QEAv form label{align-items:center;color:#585858;display:flex;flex-direction:row-reverse;justify-content:flex-start;margin-bottom:12px}.Automap-module_automap__531ko{width:260px}.Automap-module_automap__531ko label{display:flex;flex-direction:column;font-size:12px;gap:4px;line-height:14px;margin:12px 0}.Automap-module_automap__531ko label>div{flex-grow:1}.Bond-module_bond__EDfLY{width:260px}.Bond-module_bond__EDfLY>div{margin-top:12px}.Bond-module_bond__EDfLY label{color:#585858;display:flex;flex-direction:column;font-size:12px;line-height:14px;margin-bottom:12px}.Bond-module_bond__EDfLY label>span{margin-bottom:4px}.Bond-module_bond__EDfLY [aria-haspopup=listbox][aria-disabled=true]{background-color:#e1e5ea!important;border:1px solid #cad3dd!important;cursor:not-allowed!important}.Bond-module_customQueryWrapper__mKGLY label{align-items:center;flex-direction:row}.Bond-module_customQueryWrapper__mKGLY label>span{margin-bottom:0}.Bond-module_customQueryWrapper__mKGLY textarea[name=customQuery]{height:55px;resize:none;width:100%}.dropdown-bond-properties_center:not([data-value]),.dropdown-bond-properties_center[data-value=""],.dropdown-bond-properties_topology:not([data-value]),.dropdown-bond-properties_topology[data-value=""],.dropdown-bond-properties_type:not([data-value]),.dropdown-bond-properties_type[data-value=""]{display:none!important}.IfThenSelect-module_field__9YaPA{display:block;gap:4px}.RgroupLogic-module_button-common-styles__P-ABP{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.RgroupLogic-module_scrollbar__gDniy{scrollbar-width:thin}.RgroupLogic-module_scrollbar__gDniy ::-webkit-scrollbar-track{background-color:transparent}.RgroupLogic-module_scrollbar__gDniy::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.RgroupLogic-module_scrollbar__gDniy::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.RgroupLogic-module_scrollbar__gDniy::-webkit-scrollbar-thumb:active,.RgroupLogic-module_scrollbar__gDniy::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.RgroupLogic-module_rgroupLogic__q4RTy{width:260px}.RgroupLogic-module_rgroupLogic__q4RTy>div{margin-top:12px}.RgroupLogic-module_rgroupLogic__q4RTy label{color:#585858;display:flex;flex-direction:column;font-size:12px;line-height:14px;margin-bottom:12px}.RgroupLogic-module_rgroupLogic__q4RTy label input,.RgroupLogic-module_rgroupLogic__q4RTy label select{margin:4px 0 0}.RgroupLogic-module_rgroupLogic__q4RTy label.RgroupLogic-module_resth__RL2qE{align-items:center;flex-direction:row;margin-bottom:24px;width:-moz-min-content;width:min-content}.Open-module_button-common-styles__NBSQP{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Open-module_scrollbar__sRvYM{scrollbar-width:thin}.Open-module_scrollbar__sRvYM ::-webkit-scrollbar-track{background-color:transparent}.Open-module_scrollbar__sRvYM::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Open-module_scrollbar__sRvYM::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Open-module_scrollbar__sRvYM::-webkit-scrollbar-thumb:active,.Open-module_scrollbar__sRvYM::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Open-module_open__m8V9g{background-color:#fff;box-shadow:0 5px 20px rgba(103,104,132,.25)}.Open-module_open__m8V9g>div{margin:0}.Open-module_open__m8V9g label{display:block;width:22.5em}.Open-module_open__m8V9g label input{margin-bottom:.1em}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj{border:none;border-bottom:1px solid #e1e5ea;border-radius:0;min-height:23em;min-width:32em;overflow:auto;padding:12px;resize:both;scrollbar-width:thin;white-space:pre;width:560px}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj ::-webkit-scrollbar-track{background-color:transparent}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj::-webkit-scrollbar-thumb:active,.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Open-module_open__m8V9g .Open-module_textareaEditor__ZbEVj:hover{border:none;border-bottom:1px solid #e1e5ea;border-radius:0}.Open-module_footerContent__Q0hTw{display:flex;justify-content:space-between;width:100%}.Open-module_buttonsContainer__L1HqU{display:flex;gap:8px}.Open-module_cancelButton__0TQzA,.Open-module_openButton__cj3oU{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Open-module_cancelButton__0TQzA:active,.Open-module_cancelButton__0TQzA:hover,.Open-module_openButton__cj3oU:active,.Open-module_openButton__cj3oU:hover{border:1px solid #333;color:#333}.Open-module_cancelButton__0TQzA:disabled,.Open-module_openButton__cj3oU:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Open-module_copyButton__KlXKd{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Open-module_copyButton__KlXKd:active,.Open-module_copyButton__KlXKd:hover{background-color:#4fb3bf}.Open-module_copyButton__KlXKd:disabled{background-color:#e1e5ea;color:#333}.Open-module_loadingContainer__Y354t>div{margin:auto;padding:1em}.AnalyzingFile-module_analyzingFileWrapper__j0Ltf{align-items:center;display:flex;flex:1;flex-direction:column;justify-content:center;min-height:23em;width:410px}.AnalyzingFile-module_analyzingFileWrapper__j0Ltf .AnalyzingFile-module_fileBox__ywFIh{align-items:center;display:flex;flex-direction:row}.AnalyzingFile-module_analyzingFileWrapper__j0Ltf .AnalyzingFile-module_fileBox__ywFIh svg{margin-right:13px}.AnalyzingFile-module_analyzingFileWrapper__j0Ltf .AnalyzingFile-module_fileBox__ywFIh p{color:#585858;font-size:16px;line-height:19px}.OpenOptions-module_optionsContainer__-WqT8{align-items:flex-start;box-sizing:border-box;display:flex;flex-direction:row;justify-content:space-between;margin-bottom:6px;padding:12px;width:430px}.OpenOptions-module_dropContainer__PL6Tg{align-items:center;border-radius:12px;box-shadow:0 4px 12px rgba(103,104,132,.18);box-sizing:border-box;cursor:pointer;display:flex;flex-direction:column;height:134px;justify-content:space-between;padding:16px;position:relative;width:128px}.OpenOptions-module_dropContainer__PL6Tg div{margin:0;padding:0}.OpenOptions-module_dropContainer__PL6Tg p{font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:10px;line-height:12.1px;margin:0;text-align:center}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_buttonLabelWrapper__h2YsI{display:flex;flex-direction:column;height:24px;justify-content:center}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_buttonLabel__LiY--{color:#585858;font-weight:500;text-transform:uppercase}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_textLabelWrapper__Vx8NF{height:12px}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_textLabel__TlOfz{color:#333;font-weight:400;opacity:50%}.OpenOptions-module_dropContainer__PL6Tg .OpenOptions-module_dropIconWrapper__ibBQx{height:40px}.FileDrop-module_isHovered__c-CDn{background-color:#f8feff}.FileDrop-module_isDisabled__Ejuyq{cursor:auto}.FileDrop-module_isDisabled__Ejuyq svg{filter:grayscale(1);opacity:.6}.CDXStructuresViewer-module_wrapper__7nZbQ{border-bottom:1px solid #e1e5ea;display:flex;flex-direction:column;gap:1em;max-height:30em;max-width:60em;min-height:200px;min-width:400px;padding:1em}.CDXStructuresViewer-module_structuresWrapper__kZN0N{display:flex;flex-direction:row;gap:1em;height:225px;justify-content:space-between}.CDXStructuresViewer-module_menuListWrapper__za1za{background:#f5f6f7;border-radius:8px;display:flex;flex:1;flex-direction:column;font-size:12px;padding:12px 8px;width:150px}.CDXStructuresViewer-module_menuListWrapper__za1za>ul{background:#fff;height:inherit;overflow:auto}.CDXStructuresViewer-module_menuListWrapper__za1za>ul>li{font-size:12px!important;padding:.5em}.CDXStructuresViewer-module_menuListWrapper__za1za>ul>li:hover{background:#188794!important;color:#fff}.CDXStructuresViewer-module_menuListWrapper__za1za>ul .Mui-selected{background:#4fb3bf!important;color:#fff}.CDXStructuresViewer-module_menuListWrapper__za1za>ul .MuiMenuItem-root{min-height:auto}.CDXStructuresViewer-module_menuListWrapper__za1za>.CDXStructuresViewer-module_header__107Fj{color:#585858;margin-bottom:1em}.CDXStructuresViewer-module_fileName__BkvUb{font-weight:600}.CDXStructuresViewer-module_menuItem__21Wb1{margin:.5em 1em}.CDXStructuresViewer-module_centerWrapper__T26wg{align-items:center;display:flex;flex:1;height:100%;justify-content:center;width:100%}.CDXStructuresViewer-module_imageWrapper__m54Wi{align-items:center;display:flex;font-weight:600;height:225px;justify-content:center;width:300px}.CDXStructuresViewer-module_image__7Q-Ah{align-items:center;border:1px solid #cad3dd;border-radius:8px;box-sizing:border-box;display:flex;height:100%;justify-content:center;padding:.5em;width:100%}@media only screen{@container (min-width: 900px){.CDXStructuresViewer-module_wrapper__7nZbQ{padding:1.5em}.CDXStructuresViewer-module_imageWrapper__m54Wi{height:325px;width:450px}.CDXStructuresViewer-module_menuListWrapper__za1za{width:250px}.CDXStructuresViewer-module_structuresWrapper__kZN0N{gap:1.5em;height:325px}}}.Tabs-module_tabs__PuztJ{width:100%}.Tabs-module_tabs__PuztJ a{background-color:#ddd;color:#333;cursor:pointer;display:inline-block;line-height:14px;padding:5px 12px;text-align:center}.Tabs-module_tabs__PuztJ a:hover{background-color:#00838f;color:#fff}.Tabs-module_tabs__PuztJ .Tabs-module_active__eeyNd{background-color:#005662;color:#fff}.Tabs-module_tabs__PuztJ :first-child{border-radius:4px 0 0 0}.Tabs-module_tabs__PuztJ :last-child{border-radius:0 4px 0 0}.Tabs-module_tabs__PuztJ :only-child{border-radius:4px 4px 0 0}.Save-module_button-common-styles__mpLS8{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Save-module_scrollbar__XMf7I{scrollbar-width:thin}.Save-module_scrollbar__XMf7I ::-webkit-scrollbar-track{background-color:transparent}.Save-module_scrollbar__XMf7I::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Save-module_scrollbar__XMf7I::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Save-module_scrollbar__XMf7I::-webkit-scrollbar-thumb:active,.Save-module_scrollbar__XMf7I::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq{display:flex;flex-direction:column;height:310px;overflow:hidden;width:430px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form{align-content:center;display:flex;flex-direction:row;font-size:12px;justify-content:space-between;margin:12px 12px 10px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form>label{display:flex;flex-direction:column;text-align:left;width:calc(50% - 6px)}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form>label input{border:1px solid #cad3dd!important}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form>label input:hover{border:1px solid #43b5c0!important}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq form>label>span{margin-right:8px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_tabs__TOB-R{outline:none;padding-left:12px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_tabs__TOB-R[tabindex="0"] a:nth-child(2){color:#ff4a4a}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT{background-color:#eff2f5;box-sizing:border-box;flex-shrink:0;max-height:50px;min-height:224px;overflow-x:auto;padding:12px;scrollbar-width:thin}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT ::-webkit-scrollbar-track{background-color:transparent}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT::-webkit-scrollbar-thumb:active,.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT .Save-module_warningsContainer__-3yVy{display:flex;padding-bottom:12px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_warnings__1PxJT .Save-module_warningsContainer__-3yVy .Save-module_warningsArr__bKUFY{color:#333;font-size:12px;line-height:14px;white-space:pre-line;word-break:break-word}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewBackground__AbaUf{background-color:#eff2f5;position:relative}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewBackground__AbaUf button{border-radius:4px;height:28px;opacity:0;padding:2px;position:absolute;right:12px;top:12px;width:28px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewBackground__AbaUf button:not(:active){background-color:#fff;color:#333}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewBackground__AbaUf:hover button{opacity:1}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewBackground__AbaUf:focus-within button{opacity:0}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewBackground__AbaUf:focus-within button:hover{opacity:1}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb{background-color:#eff2f5;border:none;border-radius:0;box-shadow:none;color:#333;cursor:text;display:block;font-size:12px;height:100%;min-height:224px;min-width:428px;outline:none;overflow-x:auto;padding:12px;resize:none;scrollbar-width:thin;white-space:pre;width:100%}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb ::-webkit-scrollbar-track{background-color:transparent}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb::-webkit-scrollbar-thumb:active,.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb:active,.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb:focus,.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewArea__-0SLb:hover{border:none;box-shadow:none;outline:none}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_loadingCirclesContainer__COUKN{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;margin-top:20%;width:100%}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_imageContainer__gFELk{align-items:center;border-bottom:1px solid #e1e5ea;border-top:1px solid #e1e5ea;display:flex;flex-direction:column;height:220px;justify-content:center}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_imageContainer__gFELk img{background-color:#fff;max-height:220px;max-width:428px}.Save-module_dialog__of-0M .Save-module_formContainer__v1pIq .Save-module_previewMessage__CZfZB{margin:auto;text-align:center}.Save-module_dialog__of-0M .Save-module_ok__SgeCM{align-items:center;background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Save-module_dialog__of-0M .Save-module_ok__SgeCM:active,.Save-module_dialog__of-0M .Save-module_ok__SgeCM:hover{background-color:#4fb3bf}.Save-module_dialog__of-0M .Save-module_ok__SgeCM:disabled{background-color:#e1e5ea;color:#333}.Save-module_dialog__of-0M .Save-module_cancel__SMkEV,.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Save-module_dialog__of-0M .Save-module_cancel__SMkEV:active,.Save-module_dialog__of-0M .Save-module_cancel__SMkEV:hover,.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T:active,.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T:hover{border:1px solid #333;color:#333}.Save-module_dialog__of-0M .Save-module_cancel__SMkEV:disabled,.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.Save-module_dialog__of-0M .Save-module_saveTmpl__O-d0T{word-wrap:normal;margin-right:auto;padding:2px 8px}.enhancedStereo-module_enhancedStereo__8FLSY{width:260px}.enhancedStereo-module_enhancedStereo__8FLSY fieldset{border:none;display:flex;flex-direction:column}.enhancedStereo-module_enhancedStereo__8FLSY fieldset label{margin-top:12px}.enhancedStereo-module_enhancedStereo__8FLSY .enhancedStereo-module_stereoLabelItem__lEf-0 label{align-items:center;display:flex;margin:2px;min-height:2.4em}.enhancedStereo-module_enhancedStereo__8FLSY .enhancedStereo-module_labelGroupSelect__K7TYC{margin-left:5px;margin-right:5px}.labelEdit-module_button-common-styles__S5XMA{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.labelEdit-module_scrollbar__GFcQm{scrollbar-width:thin}.labelEdit-module_scrollbar__GFcQm ::-webkit-scrollbar-track{background-color:transparent}.labelEdit-module_scrollbar__GFcQm::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.labelEdit-module_scrollbar__GFcQm::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.labelEdit-module_scrollbar__GFcQm::-webkit-scrollbar-thumb:active,.labelEdit-module_scrollbar__GFcQm::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.labelEdit-module_labelEdit__9LnIH{display:flex;white-space:nowrap}.labelEdit-module_labelEdit__9LnIH>div{overflow:hidden;padding:0 12px}.labelEdit-module_labelEdit__9LnIH div>form{align-items:center;display:flex;flex-direction:row;justify-content:space-around;padding-top:12px}.labelEdit-module_labelEdit__9LnIH .labelEdit-module_labelEditInputField__tb-J4 label{text-align:center}.labelEdit-module_labelEdit__9LnIH .labelEdit-module_labelEditInputField__tb-J4 input{margin-left:8px;min-width:140px}.AtomInfo-module_button-common-styles__x3ucv{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.AtomInfo-module_scrollbar__8GiyC{scrollbar-width:thin}.AtomInfo-module_scrollbar__8GiyC ::-webkit-scrollbar-track{background-color:transparent}.AtomInfo-module_scrollbar__8GiyC::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.AtomInfo-module_scrollbar__8GiyC::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.AtomInfo-module_scrollbar__8GiyC::-webkit-scrollbar-thumb:active,.AtomInfo-module_scrollbar__8GiyC::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.AtomInfo-module_ket_atom_info__GOuZ6{box-shadow:inset 0 0 1px 1px rgba(0,0,0,.12);font-size:10px;left:18em;opacity:1;padding:.75em;position:absolute;top:2em;transition:opacity 1s,visibility 0s;width:60px}.AtomInfo-module_none__PRuzx{opacity:0;transition:opacity 2s,visibility 2s}.ElementsTable-module_button-common-styles__-6eHN{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ElementsTable-module_scrollbar__0R-HA{scrollbar-width:thin}.ElementsTable-module_scrollbar__0R-HA ::-webkit-scrollbar-track{background-color:transparent}.ElementsTable-module_scrollbar__0R-HA::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ElementsTable-module_scrollbar__0R-HA::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ElementsTable-module_scrollbar__0R-HA::-webkit-scrollbar-thumb:active,.ElementsTable-module_scrollbar__0R-HA::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ElementsTable-module_table__iNPVY{border-spacing:3px;position:relative}.ElementsTable-module_table__iNPVY td,.ElementsTable-module_table__iNPVY th{margin:0;padding:0;text-align:center;vertical-align:middle}.ElementsTable-module_table__iNPVY .ElementsTable-module_main_row__csN5a,.ElementsTable-module_table__iNPVY th{font-size:8px;font-weight:400;opacity:.6;padding:.3em .8em}.ElementsTable-module_table__iNPVY .ElementsTable-module_outiner_row__fzfGL{text-align:right;vertical-align:top}.ElementsTable-module_table__iNPVY tr:nth-of-type(8){border-bottom:1em solid transparent}.ElementsTable-module_table__iNPVY .ElementsTable-module_noble__65B92{background:#c2ffff;border:2px solid #c2ffff}.ElementsTable-module_table__iNPVY .ElementsTable-module_alkali__sM9z9{background:#ffa2a5;border:2px solid #ffa2a5}.ElementsTable-module_table__iNPVY .ElementsTable-module_alkaline-earth__t2h2s{background:#ffe0b5;border:2px solid #ffe0b5}.ElementsTable-module_table__iNPVY .ElementsTable-module_metalloid__Ui4Y8{background:#e2e2be;border:2px solid #e2e2be}.ElementsTable-module_table__iNPVY .ElementsTable-module_other-nonmetal__mbkMN{background:#e8ff94;border:2px solid #e8ff94}.ElementsTable-module_table__iNPVY .ElementsTable-module_post-transition__k4C-G{background:#c5c5c5;border:2px solid #c5c5c5}.ElementsTable-module_table__iNPVY .ElementsTable-module_transition__GCnID{background:#ffd2d4;border:2px solid #ffd2d4}.ElementsTable-module_table__iNPVY .ElementsTable-module_lanthanide__wVoLa{background:#f4c8f4;border:2px solid #f4c8f4}.ElementsTable-module_table__iNPVY .ElementsTable-module_actinide__bVCBg{background:#fd98cb;border:2px solid #fd98cb}.ElementsTable-module_table__iNPVY .ElementsTable-module_halogen__W6EjM{background:#fffea6;border:2px solid #fffea6}.ElementsTable-module_table__iNPVY .ElementsTable-module_unknown-props__d9rq4{background:#e8e8e8}.ElementsTable-module_table__iNPVY .ElementsTable-module_unknown-state__lRBCp:after{color:#222}.ElementsTable-module_button__xCaL4{background-color:#fff;background-image:none;border:0;border-radius:4px;color:#333;color:#585858;display:inline-block;display:block;font-size:12px;font-weight:500;height:24px;line-height:2;margin:0;padding:.15em;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:24px}.ElementsTable-module_button__xCaL4:active{background-image:none;outline:0}.ElementsTable-module_button__xCaL4[disabled],fieldset[disabled] .ElementsTable-module_button__xCaL4{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.ElementsTable-module_button__xCaL4>input[type=file]{left:-9999px;position:absolute}.ElementsTable-module_button__xCaL4+button,.ElementsTable-module_button__xCaL4+input[type=reset],.ElementsTable-module_button__xCaL4+input[type=submit]{margin-left:.3em}.ElementsTable-module_button__xCaL4:after{color:#585858;content:attr(value);font-size:.5em;line-height:1;opacity:.6;position:absolute;right:.3em;top:.3em;vertical-align:top}.ElementsTable-module_button__xCaL4:hover{background:#fff;z-index:60}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf{background:#5e5e5e;border:none;color:#fff}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf>span{color:#fff}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf>svg{fill:#fff;stroke:#fff}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf path{stroke:#fff}.ElementsTable-module_button__xCaL4.ElementsTable-module_selected__B9LGf:after{color:#fff;opacity:1}.BoxWithLines-module_horizintalNodeLines__QO-Su{display:flex;flex:0 0 20px;flex-direction:column;margin-top:2px;padding-left:14px;width:calc(50% + 6px)}.BoxWithLines-module_horizintalNodeLines__QO-Su .BoxWithLines-module_upperLines__8pL-R{border-bottom:1px solid #cad3dd;border-left:1px solid #cad3dd;height:5px}.BoxWithLines-module_horizintalNodeLines__QO-Su .BoxWithLines-module_lowerLine__tBZJd{border-left:1px solid #cad3dd;border-right:1px solid #cad3dd;height:4px;margin-bottom:-10px;padding-bottom:2px}.BoxWithLines-module_verticalNodeLines__wBgwS{display:flex;flex:0 0 20px;flex-direction:column;margin-right:1px;margin-top:4px;width:5px}.BoxWithLines-module_verticalNodeLines__wBgwS .BoxWithLines-module_upperLines__8pL-R{border-bottom:1px solid #cad3dd;border-left:1px solid #cad3dd;height:14px}.BoxWithLines-module_verticalNodeLines__wBgwS .BoxWithLines-module_lowerLine__tBZJd{border-bottom:1px solid #cad3dd;border-left:1px solid #cad3dd;height:96px;margin-bottom:-16px;padding-bottom:4px}.GenSet-module_button-common-styles__0Ro-U{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.GenSet-module_scrollbar__Ev8Uz{scrollbar-width:thin}.GenSet-module_scrollbar__Ev8Uz ::-webkit-scrollbar-track{background-color:transparent}.GenSet-module_scrollbar__Ev8Uz::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.GenSet-module_scrollbar__Ev8Uz::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.GenSet-module_scrollbar__Ev8Uz::-webkit-scrollbar-thumb:active,.GenSet-module_scrollbar__Ev8Uz::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.GenSet-module_genGroupLegendBox__CSTQr{position:absolute;top:-14px;width:100%}.GenSet-module_genGroupLegendBox__CSTQr>legend{font-size:10px!important;margin:0 auto;width:-moz-fit-content;width:fit-content}.GenSet-module_legendBox__0zIAk{line-height:unset;position:relative}.GenSet-module_legendBox__0zIAk>legend{font-size:10px!important;margin:0 auto;width:-moz-fit-content;width:fit-content}.GenSet-module_SpecialNodes__oFKp3{-moz-column-gap:4px;column-gap:4px;display:grid;grid-template-columns:repeat(4,26px) 36px;grid-template-rows:24px}.GenSet-module_AtomGenerics__MoQCf,.GenSet-module_GroupGenerics__pFPtX{-moz-column-gap:4px;column-gap:4px;display:grid;grid-template-columns:26px 36px;grid-template-rows:24px}.GenSet-module_AcyclicCarbo__nowGn,.GenSet-module_AcyclicHetero__hnr4G,.GenSet-module_Acyclic__R97MM,.GenSet-module_CyclicCarbo__Aanb0,.GenSet-module_CyclicHetero__bbOnT,.GenSet-module_Cyclic__VJRtt{-moz-column-gap:4px;column-gap:4px;display:grid;grid-template-columns:repeat(2,36px);grid-template-rows:24px}.ButtonGenSet-module_button-common-styles__3bEj7{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.ButtonGenSet-module_scrollbar__CKIcM{scrollbar-width:thin}.ButtonGenSet-module_scrollbar__CKIcM ::-webkit-scrollbar-track{background-color:transparent}.ButtonGenSet-module_scrollbar__CKIcM::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.ButtonGenSet-module_scrollbar__CKIcM::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.ButtonGenSet-module_scrollbar__CKIcM::-webkit-scrollbar-thumb:active,.ButtonGenSet-module_scrollbar__CKIcM::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.ButtonGenSet-module_button__hBoCQ{background:#fff;border:1px solid #585858;border-radius:4px;color:#585858;font-size:14px;height:100%;line-height:12px;padding:0;vertical-align:middle;width:100%}.ButtonGenSet-module_button__hBoCQ:hover{border:1px solid #167782;color:#585858}.ButtonGenSet-module_button__hBoCQ.ButtonGenSet-module_selected__XAfYj,.ButtonGenSet-module_button__hBoCQ:focus{background-color:#167782;border:1px solid #167782;color:#fff}.ButtonGenSet-module_button__hBoCQ:disabled{border:1px solid #b4b9d6;color:#b4b9d6}.GenGroup-module_fieldFlexWrapper__mBHRt{display:flex;margin-top:12px}.GenGroup-module_buttonContainer__7qTti{display:grid;gap:8px 12px;grid-template-columns:1fr 1fr}.GenGroup-module_genButtonContainer__6Bwe1{display:grid;gap:22px 12px;grid-template-columns:1fr 1fr}.GenGroup-module_subGroup__afiEU{border:none;padding:0;position:relative}.GenGroup-module_legendMain__h-Wl3{color:#333!important;font-weight:700!important}.GenGroup-module_legend__JWafm{color:rgba(51,51,51,.8)!important;font-weight:700!important}.GenGroup-module_fieldset__JehYt{border:none;padding:4px 0 0}.GenericGroups-module_button-common-styles__nYUJe{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.GenericGroups-module_scrollbar__5iavS{scrollbar-width:thin}.GenericGroups-module_scrollbar__5iavS ::-webkit-scrollbar-track{background-color:transparent}.GenericGroups-module_scrollbar__5iavS::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.GenericGroups-module_scrollbar__5iavS::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.GenericGroups-module_scrollbar__5iavS::-webkit-scrollbar-thumb:active,.GenericGroups-module_scrollbar__5iavS::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.GenericGroups-module_genericGroups__z4EaG{margin-top:9px;overflow-y:auto;padding:0 12px 12px;scrollbar-width:thin}.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar{background-color:transparent}.GenericGroups-module_genericGroups__z4EaG:first-child{margin-top:0}.GenericGroups-module_genericGroups__z4EaG>fieldset{border:none;margin:1em;padding:0}.GenericGroups-module_genericGroups__z4EaG ::-webkit-scrollbar-track{background-color:transparent}.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar-thumb:active,.GenericGroups-module_genericGroups__z4EaG::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.GenericGroups-module_genericGroups__z4EaG .GenericGroups-module_groupGenerics__6UpH6,.GenericGroups-module_genericGroups__z4EaG .GenericGroups-module_topGroupsContainer__bMeoG{grid-column-gap:20px;display:grid;grid-template-columns:1fr 1fr}.GenericGroups-module_genericGroups__z4EaG .GenericGroups-module_subgroupContainer__xULxX{display:grid;grid-template-columns:6px 1fr}.TypeChoice-module_fieldset__yJqT7{border:none;display:flex;gap:12px;padding:0;width:100%}.TypeChoice-module_fieldset__yJqT7>label{align-items:center;display:flex;font-size:12px}.PeriodTable-module_button-common-styles__8JrOW{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.PeriodTable-module_scrollbar__iG-vx{scrollbar-width:thin}.PeriodTable-module_scrollbar__iG-vx ::-webkit-scrollbar-track{background-color:transparent}.PeriodTable-module_scrollbar__iG-vx::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.PeriodTable-module_scrollbar__iG-vx::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.PeriodTable-module_scrollbar__iG-vx::-webkit-scrollbar-thumb:active,.PeriodTable-module_scrollbar__iG-vx::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.PeriodTable-module_elementsTable__Vcz12{background-color:#fff;height:368px;width:520px}.PeriodTable-module_elementsTable__Vcz12>div{margin:0;overflow:hidden;padding-left:8px;padding-top:12px}.PeriodTable-module_elementsTable__Vcz12>header{border-bottom:1px solid #e1e5ea}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_dialogHeader__-Wgw4{align-items:center;display:flex;font-style:normal;font-weight:500;gap:4px;padding-left:2px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_dialogHeader__-Wgw4>span{line-height:16px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_dialogHeader__-Wgw4>svg{height:16px;width:16px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_tabs__q-2GL{border-bottom:1px solid #e1e5ea;outline:none;padding-left:15px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_tabsContent__5rij5{height:31em}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_contentGeneral__-XKPp{padding-left:15px}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_periodTable__l-Uqx{position:fixed}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_periodTable__l-Uqx>*{line-height:normal}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_addAtom__ehSSN{background:#005662;border:none;border-radius:2px;border-radius:6px;color:#fff;float:right;position:relative;z-index:10}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_addAtom__ehSSN:hover{background:#00838f;color:#fff}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_addAtom__ehSSN:disabled{background:rgba(0,131,143,.4);color:#fff}.PeriodTable-module_elementsTable__Vcz12 .PeriodTable-module_addAtom__ehSSN:focus{background:#4fb3bf}.ExtendedTable-module_extendedTable__2-hjV{width:390px}.RemoveFG-module_window__6PHH4{background:#f3f3f3;border-radius:10px;display:flex;flex-direction:column;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;width:260px}.RemoveFG-module_window__6PHH4>*{margin:10px 15px}.RemoveFG-module_question__J8Qzx{color:#585858;text-align:left}.RemoveFG-module_header__1hBAs{align-items:center;display:flex;margin-top:15px;text-transform:uppercase}.RemoveFG-module_footer__8wImu{display:flex;justify-content:flex-end;margin-bottom:15px}.RemoveFG-module_buttonCancel__xCaJt,.RemoveFG-module_buttonOk__zR5x4{border:none;border-radius:2px;height:1.8em;width:content-box}.RemoveFG-module_buttonOk__zR5x4{background:#005662;color:#fff}.RemoveFG-module_buttonOk__zR5x4:hover{background:#00838f}.RemoveFG-module_buttonCancel__xCaJt{background:transparent;border:1px solid #717171;color:#717171;margin-right:15px}.RemoveFG-module_buttonCancel__xCaJt:hover{border-color:#333;color:#333}.rgroup-module_button-common-styles__O66iR{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.rgroup-module_scrollbar__GmU8o{scrollbar-width:thin}.rgroup-module_scrollbar__GmU8o ::-webkit-scrollbar-track{background-color:transparent}.rgroup-module_scrollbar__GmU8o::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.rgroup-module_scrollbar__GmU8o::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.rgroup-module_scrollbar__GmU8o::-webkit-scrollbar-thumb:active,.rgroup-module_scrollbar__GmU8o::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.rgroup-module_rgroup__Pm-uA{width:260px}.rgroup-module_rgroup__Pm-uA>div{background-color:#eff2f5;margin:0;padding:12px 11px}.rgroup-module_rgroup__Pm-uA ul{grid-column-gap:8px;grid-row-gap:8px;display:grid;grid-template-columns:repeat(5,41px);grid-template-rows:repeat(3,29px 33px) 29px;overflow:hidden}.rgroup-module_rgroup__Pm-uA form button{background-color:#fff;background-image:none;background:#fff;border:none;border-radius:4px;color:#333;color:#585858;display:inline-block;font-size:14px;font-weight:700;height:29px;margin:0;padding:6px 4px;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:100%}.rgroup-module_rgroup__Pm-uA form button:active{background-image:none;outline:0}.rgroup-module_rgroup__Pm-uA form button[disabled],fieldset[disabled] .rgroup-module_rgroup__Pm-uA form button{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.rgroup-module_rgroup__Pm-uA form button>input[type=file]{left:-9999px;position:absolute}.rgroup-module_rgroup__Pm-uA form button+button,.rgroup-module_rgroup__Pm-uA form button+input[type=reset],.rgroup-module_rgroup__Pm-uA form button+input[type=submit]{margin-left:.3em}.rgroup-module_rgroup__Pm-uA form button:first-letter{font-weight:400}.rgroup-module_rgroup__Pm-uA form button:hover{color:#005662}.rgroup-module_rgroup__Pm-uA form button.rgroup-module_selected__hP5cM,.rgroup-module_rgroup__Pm-uA form button:active{background:#167782;color:#fff}.sgroup-module_button-common-styles__MAeEP{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.sgroup-module_scrollbar__T3fpf{scrollbar-width:thin}.sgroup-module_scrollbar__T3fpf ::-webkit-scrollbar-track{background-color:transparent}.sgroup-module_scrollbar__T3fpf::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.sgroup-module_scrollbar__T3fpf::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.sgroup-module_scrollbar__T3fpf::-webkit-scrollbar-thumb:active,.sgroup-module_scrollbar__T3fpf::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.sgroup-module_sgroup__Kh2Xj{background-color:#fff;border-radius:6px;width:260px}.sgroup-module_sgroup__Kh2Xj label{display:flex;flex-direction:column;margin-bottom:12px}.sgroup-module_sgroup__Kh2Xj label ul{width:inherit}.sgroup-module_sgroup__Kh2Xj label .MuiOutlinedInput-root,.sgroup-module_sgroup__Kh2Xj label input[type=text]{margin-top:4px;max-width:236px}.sgroup-module_sgroup__Kh2Xj fieldset{border:0;padding:0}.sgroup-module_sgroup__Kh2Xj fieldset[class=sdata] fieldset{display:flex;justify-content:space-between;margin-top:24px;width:100%}.sgroup-module_sgroup__Kh2Xj fieldset[class=sdata] fieldset label{display:flex;flex-direction:row;line-height:16px}.sgroup-module_sgroup__Kh2Xj fieldset[class=sdata] fieldset label>span{margin-right:3px!important}.sgroup-module_sgroup__Kh2Xj form{margin:12px 12px 4px}.sgroup-module_sgroup__Kh2Xj form label{font-size:12px;text-align:left}.sgroup-module_sgroup__Kh2Xj form label>span>div{width:100%}.sgroup-module_sgroup__Kh2Xj form label fieldset label{align-items:center;display:flex;flex-direction:row;margin-left:4px!important}.sgroup-module_sgroup__Kh2Xj form label fieldset span{margin-right:4px!important}.sgroup-module_sgroup__Kh2Xj form select[name=fieldValue],.sgroup-module_sgroup__Kh2Xj form textarea{display:block;overflow:auto}.sgroup-module_sgroup__Kh2Xj form input[type=text],.sgroup-module_sgroup__Kh2Xj form select[name=fieldName]{color:#333;display:block;margin-bottom:0;width:100%}.sgroup-module_sgroup__Kh2Xj form textarea{margin-top:4px;max-height:240px;min-height:56px;resize:vertical;scrollbar-width:thin;width:100%}.sgroup-module_sgroup__Kh2Xj form textarea ::-webkit-scrollbar-track{background-color:transparent}.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar-thumb:active,.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.sgroup-module_sgroup__Kh2Xj form textarea::-webkit-scrollbar{background-color:#fff;border-radius:2px;-webkit-border-radius:2px;width:4px}.template-lib-module_button-common-styles__9adxB{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.template-lib-module_scrollbar__ZFwCC{scrollbar-width:thin}.template-lib-module_scrollbar__ZFwCC ::-webkit-scrollbar-track{background-color:transparent}.template-lib-module_scrollbar__ZFwCC::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.template-lib-module_scrollbar__ZFwCC::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.template-lib-module_scrollbar__ZFwCC::-webkit-scrollbar-thumb:active,.template-lib-module_scrollbar__ZFwCC::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.template-lib-module_warning__UqgEG{color:#ff4a4a}.template-lib-module_warning__UqgEG:before{content:"⚠ "}.template-lib-module_dialogHeader__-AmwE{align-items:center;display:flex;gap:4px;padding-left:2px}.template-lib-module_dialogHeader__-AmwE>span{line-height:16px}.template-lib-module_dialogHeader__-AmwE>svg{height:18px;width:18px}.template-lib-module_button__LKf1c{min-width:70px!important}.template-lib-module_dialog_body__QtL0J{background-color:#fff;color:#333;width:452px}.template-lib-module_dialog_body__QtL0J>div{display:flex;flex-direction:column;overflow:hidden}.template-lib-module_dialog_body__QtL0J>footer{box-shadow:0 -6px 6px 0 rgba(1,1,50,.1);min-height:24px;z-index:10}.template-lib-module_dialog_body__QtL0J>footer>input{min-width:110px!important}.template-lib-module_dialog_body__QtL0J>footer>span{line-height:24px}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA{position:relative}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA input[type=search]{background-color:#eff2f5;height:28px;margin:0 14px 16px;padding-left:35px;width:424px}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA input[type=search]::-moz-placeholder{font-weight:400;opacity:90%}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA input[type=search]::placeholder{font-weight:400;opacity:90%}.template-lib-module_dialog_body__QtL0J .template-lib-module_inputContainer__dxoHA .template-lib-module_searchIcon__o7cAy{color:#167782;height:28px;left:14px;position:absolute;top:0;width:28px}.template-lib-module_dialog_body__QtL0J .template-lib-module_accordionSummary__2hIop{flex-direction:row-reverse;font-size:14px}.template-lib-module_dialog_body__QtL0J .template-lib-module_groupIcon__LBIRH{margin-left:15px;margin-right:8px}.template-lib-module_dialog_body__QtL0J .template-lib-module_expandIcon__Fb1EU{width:20px}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN{background-color:#eff2f5;height:50vh;overflow-x:hidden;overflow-y:auto;scrollbar-width:thin}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN ::-webkit-scrollbar-track{background-color:transparent}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN::-webkit-scrollbar-thumb:active,.template-lib-module_dialog_body__QtL0J .template-lib-module_tabsContent__1QMnN::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.template-lib-module_dialog_body__QtL0J .template-lib-module_resultsContainer__KnPBZ{background-color:#eff2f5;padding:12px 14px 4px}.template-lib-module_dialog_body__QtL0J .template-lib-module_saveButton__8PE6t{align-items:center;background-color:#fff;border:1px solid #585858;border-radius:4px;color:#585858;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.template-lib-module_dialog_body__QtL0J .template-lib-module_saveButton__8PE6t:active,.template-lib-module_dialog_body__QtL0J .template-lib-module_saveButton__8PE6t:hover{border:1px solid #333;color:#333}.template-lib-module_dialog_body__QtL0J .template-lib-module_saveButton__8PE6t:disabled{border:1px solid rgba(88,88,88,.7);color:rgba(88,88,88,.7)}.template-lib-module_dialog_body__QtL0J .MuiTabs-indicator{background-color:#167782}.template-lib-module_dialog_body__QtL0J .MuiTabs-flexContainer{background-color:#eff2f5;padding-left:14px}.template-lib-module_dialog_body__QtL0J .MuiAccordionSummary-content{align-items:end}.template-lib-module_dialog_body__QtL0J .MuiAccordionDetails-root{background-color:#eff2f5;box-shadow:inset 0 -2px 8px 0 rgba(1,1,50,.1);padding:12px 14px 4px;width:424px}.template-lib-module_dialog_body__QtL0J .MuiPaper-root.MuiAccordion-root{box-shadow:none}.template-lib-module_dialog_body__QtL0J .MuiPaper-root.MuiAccordion-root.Mui-expanded:before,.template-lib-module_dialog_body__QtL0J .MuiPaper-root.MuiAccordion-root:before{opacity:0}.template-lib-module_dialog_body__QtL0J .MuiPaper-root:not(:last-child):after{background-color:#b4b9d6;bottom:0;content:"";height:1px;left:0;margin:0 auto;opacity:1;position:absolute;right:0;width:424px}.template-lib-module_dialog_body__QtL0J .MuiPaper-root.Mui-expanded:after{opacity:0}.template-lib-module_dialog_body__QtL0J .MuiButtonBase-root.MuiTab-root,.template-lib-module_dialog_body__QtL0J .MuiTabs-root{height:32px;min-height:32px}.template-lib-module_dialog_body__QtL0J .template-lib-module_tabs__YkpEG{box-shadow:0 6px 6px 0 rgba(1,1,50,.1);z-index:10}.template-lib-module_dialog_body__QtL0J .MuiButtonBase-root.MuiTab-root{color:rgba(0,0,0,.7);line-height:12px;padding:12px 10px 8px;text-transform:none}.template-lib-module_dialog_body__QtL0J .MuiTab-root.Mui-selected{color:#000;font-weight:600}.template-lib-module_dialog_body__QtL0J .MuiPaper-root.MuiAccordion-root.Mui-expanded{margin:0}.template-lib-module_dialog_body__QtL0J .MuiButtonBase-root.MuiAccordionSummary-root.Mui-expanded,.template-lib-module_dialog_body__QtL0J .MuiButtonBase-root.MuiAccordionSummary-root.MuiAccordionSummary-gutters{height:40px;min-height:40px;padding-left:12px}.TemplateTable-module_button-common-styles__ZYUa5{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.TemplateTable-module_scrollbar__aSGhu{scrollbar-width:thin}.TemplateTable-module_scrollbar__aSGhu ::-webkit-scrollbar-track{background-color:transparent}.TemplateTable-module_scrollbar__aSGhu::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.TemplateTable-module_scrollbar__aSGhu::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.TemplateTable-module_scrollbar__aSGhu::-webkit-scrollbar-thumb:active,.TemplateTable-module_scrollbar__aSGhu::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.TemplateTable-module_tableContent__dnVKg{grid-gap:0 8px;display:grid;grid-template-columns:repeat(4,100px)}.TemplateTable-module_structTitle__2XUWI{border:1px solid transparent;border-radius:6px;margin:6px 0 12px;max-height:30px;max-width:100px;overflow:hidden;padding:0 7px;text-align:center;text-overflow:ellipsis;white-space:nowrap}.TemplateTable-module_twoRowsTitleTable__ZYwHq{grid-auto-rows:147px}.TemplateTable-module_oneRowTitleTable__N8Ibd{grid-auto-rows:134px}.TemplateTable-module_oneRowTitleTable__N8Ibd .TemplateTable-module_structTitle__2XUWI{max-height:16px}.TemplateTable-module_struct__lOLBI{background-color:#fff;border:1px solid #b4b9d6;border-radius:5px;box-sizing:border-box;height:100px;width:100px}.TemplateTable-module_struct__lOLBI:hover{background:#f9fafb}.TemplateTable-module_struct__lOLBI svg{height:100px;left:-2px;top:-1px;width:100px}.TemplateTable-module_selectedTitle__J-cte{background-color:hsla(0,0%,100%,.7)}.TemplateTable-module_td__6LIhx{cursor:default;position:relative}.TemplateTable-module_td__6LIhx.TemplateTable-module_selected__qZEF9 .TemplateTable-module_struct__lOLBI{background-color:rgba(22,119,130,.05);border:2px solid #167782}.TemplateTable-module_button__dpOF0{background-color:#fff;background-color:transparent;background-image:none;border:none;border-radius:4px;border-radius:0;color:#333;color:#636363;cursor:pointer;display:inline-block;height:18px;margin:0;padding:0;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:18px}.TemplateTable-module_button__dpOF0:active{background-image:none;outline:0}.TemplateTable-module_button__dpOF0[disabled],fieldset[disabled] .TemplateTable-module_button__dpOF0{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.TemplateTable-module_button__dpOF0>input[type=file]{left:-9999px;position:absolute}.TemplateTable-module_button__dpOF0+button,.TemplateTable-module_button__dpOF0+input[type=reset],.TemplateTable-module_button__dpOF0+input[type=submit]{margin-left:.3em}.TemplateTable-module_button__dpOF0>svg{height:inherit;width:inherit}.TemplateTable-module_button__dpOF0:active path,.TemplateTable-module_button__dpOF0:hover path{fill:#00838f}.TemplateTable-module_deleteButton__KfBpW{position:absolute;right:5px;top:5px}.TemplateTable-module_editButton__A0BoE{position:absolute;right:5px;top:78px}div.TemplateTable-module_structure__rI84W{background-color:#fff;padding:0}.emptySearchResult-module_emptySearch__aUSew{align-items:center;color:#333;display:flex;flex-direction:column;font-size:12px;justify-content:center;min-height:240px}.emptySearchResult-module_emptySearch__aUSew>svg{height:84px;width:84px}.FontControl-module_button-common-styles__CMSGk{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.FontControl-module_scrollbar__Vq3kt{scrollbar-width:thin}.FontControl-module_scrollbar__Vq3kt ::-webkit-scrollbar-track{background-color:transparent}.FontControl-module_scrollbar__Vq3kt::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.FontControl-module_scrollbar__Vq3kt::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.FontControl-module_scrollbar__Vq3kt::-webkit-scrollbar-thumb:active,.FontControl-module_scrollbar__Vq3kt::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.FontControl-module_fontSizeMenu__4RvmP{background:#fff;border:1px solid #cad3dd;border-radius:4px;display:inline-block;font-size:16px;max-height:155px;overflow-y:scroll;padding:4px;position:absolute;right:12px;scrollbar-width:thin;top:74px;width:58px;z-index:10}.FontControl-module_fontSizeMenu__4RvmP ::-webkit-scrollbar-track{background-color:transparent}.FontControl-module_fontSizeMenu__4RvmP::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.FontControl-module_fontSizeMenu__4RvmP::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.FontControl-module_fontSizeMenu__4RvmP::-webkit-scrollbar-thumb:active,.FontControl-module_fontSizeMenu__4RvmP::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.FontControl-module_fontSizeOption__eGz-q{font-size:14px;line-height:16px;padding:4px}.FontControl-module_fontSizeOption__eGz-q:hover{background:#f3f3f3;border-radius:4px;cursor:pointer}.FontControl-module_fontBtn__zGgG3{background-color:#fff;border:1px solid #cad3dd;border-radius:4px;font-size:14px;height:24px;line-height:20px;text-align:left;width:68px}.FontControl-module_fontBtn__zGgG3:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.94 5.727 8 8.78l3.06-3.053.94.94-4 4-4-4 .94-.94Z' fill='%235B6077'/%3E%3C/svg%3E");background-size:contain;bottom:20px;content:" ";display:block;height:22px;left:18px;margin:auto;position:relative;width:22px;z-index:10}.SpecialSymbolsList-module_window__4tD1N{background-color:#fff;border-radius:0 6px 6px 6px;box-shadow:2px 2px 6px 0 #cad3dd;display:flex;flex-direction:row;flex-wrap:wrap;overflow:visible;padding:8px;position:absolute;right:27px;width:160px;z-index:10}.SpecialSymbolsList-module_button__uCp6O{background-color:transparent;border:none;height:16px;margin:2px;padding:initial;width:16px}.SpecialSymbolsList-module_button__uCp6O>svg{fill:#000}.SpecialSymbolsList-module_button__uCp6O:hover>svg{fill:#167782}.SpecialSymbolsButton-module_button-common-styles__OZY5u{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.SpecialSymbolsButton-module_scrollbar__BGjVm{scrollbar-width:thin}.SpecialSymbolsButton-module_scrollbar__BGjVm ::-webkit-scrollbar-track{background-color:transparent}.SpecialSymbolsButton-module_scrollbar__BGjVm::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.SpecialSymbolsButton-module_scrollbar__BGjVm::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.SpecialSymbolsButton-module_scrollbar__BGjVm::-webkit-scrollbar-thumb:active,.SpecialSymbolsButton-module_scrollbar__BGjVm::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.SpecialSymbolsButton-module_activeTextButton__jbgHY,.SpecialSymbolsButton-module_textButton__1gh-c{background-color:#fff;background-image:none;border:0;border-radius:4px;color:#333;cursor:pointer;display:inline-block;height:28px;margin:0!important;margin:4px;padding:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:28px}.SpecialSymbolsButton-module_activeTextButton__jbgHY:active,.SpecialSymbolsButton-module_textButton__1gh-c:active{background-image:none;outline:0}.SpecialSymbolsButton-module_activeTextButton__jbgHY[disabled],.SpecialSymbolsButton-module_textButton__1gh-c[disabled],fieldset[disabled] .SpecialSymbolsButton-module_activeTextButton__jbgHY,fieldset[disabled] .SpecialSymbolsButton-module_textButton__1gh-c{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.SpecialSymbolsButton-module_activeTextButton__jbgHY>input[type=file],.SpecialSymbolsButton-module_textButton__1gh-c>input[type=file]{left:-9999px;position:absolute}.SpecialSymbolsButton-module_activeTextButton__jbgHY+button,.SpecialSymbolsButton-module_activeTextButton__jbgHY+input[type=reset],.SpecialSymbolsButton-module_activeTextButton__jbgHY+input[type=submit],.SpecialSymbolsButton-module_textButton__1gh-c+button,.SpecialSymbolsButton-module_textButton__1gh-c+input[type=reset],.SpecialSymbolsButton-module_textButton__1gh-c+input[type=submit]{margin-left:.3em}.SpecialSymbolsButton-module_activeTextButton__jbgHY>svg,.SpecialSymbolsButton-module_textButton__1gh-c>svg{font-size:22px;height:22px;left:3px;position:absolute;top:3px;width:22px}.SpecialSymbolsButton-module_activeTextButton__jbgHY{background-color:#167782;border-radius:2px}.SpecialSymbolsButton-module_activeTextButton__jbgHY>svg{fill:#fff;transition:.2s}.SpecialSymbolsButton-module_activeTextButton__jbgHY:hover{background-color:#188794}.SpecialSymbolsButton-module_textButton__1gh-c>svg{fill:#333;transition:.2s}.SpecialSymbolsButton-module_textButton__1gh-c:hover{background-image:none}.SpecialSymbolsButton-module_textButton__1gh-c:hover>svg{fill:#00838f}.SpecialSymbolsButton-module_activeTextButton__jbgHY:after{border-bottom:2px solid transparent;border-right:2px solid transparent;border-color:transparent #fff #fff transparent;border-style:solid;border-width:2px;content:"";left:21px;position:absolute;top:21px}.smallEditor .SpecialSymbolsButton-module_textButton__1gh-c{height:28px;margin:4px;width:28px}.smallEditor .SpecialSymbolsButton-module_textButton__1gh-c>svg{font-size:20px;height:20px;left:3px;position:absolute;top:3px;width:20px}.TextButton-module_button-common-styles__7F1Uf{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.TextButton-module_scrollbar__u11Yl{scrollbar-width:thin}.TextButton-module_scrollbar__u11Yl ::-webkit-scrollbar-track{background-color:transparent}.TextButton-module_scrollbar__u11Yl::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.TextButton-module_scrollbar__u11Yl::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.TextButton-module_scrollbar__u11Yl::-webkit-scrollbar-thumb:active,.TextButton-module_scrollbar__u11Yl::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.TextButton-module_textButton__Ocny2{background-color:#fff;background-image:none;border:0;border-radius:4px;color:#333;cursor:pointer;display:inline-block;height:28px;margin:0!important;margin:4px;padding:0;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;vertical-align:middle;width:28px}.TextButton-module_textButton__Ocny2:active{background-image:none;outline:0}.TextButton-module_textButton__Ocny2[disabled],fieldset[disabled] .TextButton-module_textButton__Ocny2{background-image:none;box-shadow:none;cursor:not-allowed;opacity:.4}.TextButton-module_textButton__Ocny2>input[type=file]{left:-9999px;position:absolute}.TextButton-module_textButton__Ocny2+button,.TextButton-module_textButton__Ocny2+input[type=reset],.TextButton-module_textButton__Ocny2+input[type=submit]{margin-left:.3em}.TextButton-module_textButton__Ocny2>svg{fill:#333;font-size:22px;height:22px;left:3px;position:absolute;top:3px;transition:.2s;width:22px}.TextButton-module_textButton__Ocny2:hover{background-image:none}.TextButton-module_textButton__Ocny2:hover>svg{fill:#00838f}.TextButton-module_textButton__Ocny2.TextButton-module_isActive__DQ-xh{background-color:#167782;border-radius:2px}.TextButton-module_textButton__Ocny2.TextButton-module_isActive__DQ-xh>svg{fill:#fff;transition:.2s}.TextButton-module_textButton__Ocny2.TextButton-module_isActive__DQ-xh:hover{background-color:#188794}.TextButton-module_textButton__Ocny2.TextButton-module_isActive__DQ-xh:hover>svg{fill:#fff;transition:.2s}.smallEditor .TextButton-module_textButton__Ocny2{height:28px;margin:4px;width:28px}.smallEditor .TextButton-module_textButton__Ocny2>svg{font-size:20px;height:20px;left:3px;position:absolute;top:3px;width:20px}.Text-module_button-common-styles__dhz9O{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Text-module_scrollbar__0OhTV{scrollbar-width:thin}.Text-module_scrollbar__0OhTV ::-webkit-scrollbar-track{background-color:transparent}.Text-module_scrollbar__0OhTV::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Text-module_scrollbar__0OhTV::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Text-module_scrollbar__0OhTV::-webkit-scrollbar-thumb:active,.Text-module_scrollbar__0OhTV::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Text-module_textEditor__EFR54{display:flex;flex-direction:column;width:340px}.Text-module_textEditor__EFR54 .Text-module_controlPanel__agLDc{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;height:28px;justify-content:space-between;margin:12px 0}.Text-module_textEditor__EFR54 .Text-module_controlPanel__agLDc>span{margin-left:34px;margin-right:4px;white-space:nowrap}.Text-module_textEditor__EFR54 .DraftEditor-root{word-wrap:break-word;border:1px solid #cad3dd;border-radius:4px;height:182px;line-height:normal;margin-top:4px;overflow:auto;padding:12px;scrollbar-width:thin}.Text-module_textEditor__EFR54 .DraftEditor-root ::-webkit-scrollbar-track{background-color:transparent}.Text-module_textEditor__EFR54 .DraftEditor-root::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Text-module_textEditor__EFR54 .DraftEditor-root::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Text-module_textEditor__EFR54 .DraftEditor-root::-webkit-scrollbar-thumb:active,.Text-module_textEditor__EFR54 .DraftEditor-root::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.PasteErrorModalBody-module_pasteErrorModalBody__ExG0r{display:flex;flex-direction:column}.PasteErrorModalBody-module_shortcutsBlock__e-wyA{display:flex;justify-content:space-between}.PasteErrorModalBody-module_shortcuts__x0xBs{display:flex;flex-direction:column;margin-top:12px}.PasteErrorModalBody-module_shortcut__sED-E{color:#167782;font-size:14px}.InfoModal-module_infoModal__0Vza1{width:324px}.InfoModal-module_ok__BZ1ar{background-color:#167782;border:1px solid transparent;border-radius:4px;color:#fff;font-size:12px;height:24px;min-width:70px}.InfoModal-module_ok__BZ1ar:active,.InfoModal-module_ok__BZ1ar:hover{background-color:#4fb3bf}.InfoModal-module_ok__BZ1ar:disabled{background-color:#e1e5ea;color:#333}.App-module_app__8cgyF{container-type:size;display:grid;grid-template-areas:"toolbar-top toolbar-top toolbar-top" "toolbar-left canvas toolbar-right" "toolbar-bottom toolbar-bottom toolbar-bottom";grid-template-columns:minmax(36px,max-content) 1fr minmax(36px,max-content);grid-template-rows:auto 1fr auto;height:100%;position:relative;width:100%}.App-module_canvas__taJxn{grid-area:canvas;-ms-grid-column:2;-ms-grid-row:2}.App-module_top__SBeSV{-ms-grid-column-span:3;grid-area:toolbar-top;-ms-grid-column:1;-ms-grid-row:1}.App-module_left__2iz-i{grid-area:toolbar-left;-ms-grid-column:1;-ms-grid-row:2}.App-module_right__U7A5Q{grid-area:toolbar-right;-ms-grid-column:3;-ms-grid-row:2}.App-module_bottom__tQA2B{-ms-grid-column-span:3;grid-area:toolbar-bottom;-ms-grid-column:1;-ms-grid-row:3}.smallEditor .App-module_app__8cgyF{grid-template-columns:minmax(35px,max-content) 1fr minmax(35px,max-content)}.AbbreviationLookup-module_lookupContainer__-JRMj{position:absolute;width:200px}.AbbreviationLookup-module_inputContainer__6tJpn{position:relative}.AbbreviationLookup-module_input__vCxY9{width:100%}.AbbreviationLookup-module_input__vCxY9.AbbreviationLookup-module_input__vCxY9[type=text]{border:1.5px solid #167782;font-size:12px;line-height:14px;padding:5px 8px 5px 24px}.AbbreviationLookup-module_input__vCxY9.AbbreviationLookup-module_input__vCxY9[type=text]:hover{border:1.5px solid #167782}.AbbreviationLookup-module_searchIcon__DiK0c{color:#167782;height:17px;left:6px;position:absolute;top:50%;transform:translateY(-50%);width:17px}.AbbreviationLookup-module_optionItemContent__L1JlW{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}li.AbbreviationLookup-module_optionItem__dAhO-.MuiAutocomplete-option{border-left:2px solid transparent;font-size:12px;font-weight:400;line-height:14px;padding:7px 8px 7px 6px}.AbbreviationLookup-module_optionItem__dAhO- mark{background-color:transparent;font-weight:700}.AbbreviationLookup-module_noOptions__yKxml{font-size:12px;line-height:14px}.AbbreviationLookup-module_noOptions__yKxml.MuiAutocomplete-noOptions{padding:8px}ul.AbbreviationLookup-module_listBox__Y50AT{padding-bottom:4px;padding-top:4px}.AbbreviationLookup-module_listBox__Y50AT li.MuiAutocomplete-option.Mui-focusVisible,.AbbreviationLookup-module_listBox__Y50AT li.MuiAutocomplete-option.Mui-focused{background-color:#f3f5f7;border-left:2px solid #167782}.Editor-module_button-common-styles__h4pal{align-items:center;border-radius:4px;display:inline-flex;font-size:12px;height:24px;justify-content:center;line-height:14px;min-width:70px;outline:none}.Editor-module_scrollbar__yVsY8{scrollbar-width:thin}.Editor-module_scrollbar__yVsY8 ::-webkit-scrollbar-track{background-color:transparent}.Editor-module_scrollbar__yVsY8::-webkit-scrollbar{background-color:#eff2f5;height:6px;width:6px}.Editor-module_scrollbar__yVsY8::-webkit-scrollbar-thumb{background-color:rgba(165,175,185,.85);border-radius:10px;-webkit-border-radius:10px}.Editor-module_scrollbar__yVsY8::-webkit-scrollbar-thumb:active,.Editor-module_scrollbar__yVsY8::-webkit-scrollbar-thumb:hover{background-color:#a5afb9}.Editor-module_small__8cgEX body,.Editor-module_small__8cgEX div[role=dialog],.Editor-module_small__8cgEX form,.Editor-module_small__8cgEX select{font-size:12px}.Editor-module_editor__o0Gjz{background-color:#fcfcfc;color:#333;font:14px FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;height:100%;position:relative;width:100%}.Editor-module_editor__o0Gjz select{-webkit-appearance:none!important;-moz-appearance:none!important;appearance:none!important;background:transparent!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5.001 6.077-4.74-4.74.943-.942 3.797 3.797L8.797.395l.943.943-4.739 4.739Z' fill='%23231F20'/%3E%3C/svg%3E")!important;background-position:calc(100% - 11px)!important;background-repeat:no-repeat!important;padding:0 8px!important}.Editor-module_editor__o0Gjz li,.Editor-module_editor__o0Gjz menu,.Editor-module_editor__o0Gjz ul{list-style:none;margin:0;padding:0}.Editor-module_editor__o0Gjz input[type=search]{background:#fff;border:1px solid transparent;border-radius:4px;box-sizing:border-box;color:inherit;display:inline-block;font-size:14px;height:2.4em;line-height:16px;padding:6px 6px 6px 35px;vertical-align:middle}.Editor-module_editor__o0Gjz input[type=search]:active,.Editor-module_editor__o0Gjz input[type=search]:focus{outline:0}.Editor-module_editor__o0Gjz input[type=search]:hover{border:1px solid #43b5c0}.Editor-module_editor__o0Gjz input[type=search][disabled],.Editor-module_editor__o0Gjz input[type=search][readonly],fieldset[disabled] .Editor-module_editor__o0Gjz input[type=search]{background:#f3f3f3;cursor:not-allowed;opacity:.6}.Editor-module_editor__o0Gjz input[type=number],.Editor-module_editor__o0Gjz input[type=text],.Editor-module_editor__o0Gjz select,.Editor-module_editor__o0Gjz textarea{background:#fff;border:1px solid #cad3dd;border-radius:4px;box-sizing:border-box;color:#333;display:inline-block;font-family:Inter,FreeSans,Arimo,Droid Sans,Helvetica,Helvetica Neue,Arial,sans-serif;font-size:14px;height:24px;line-height:16px;padding:3px 7px;vertical-align:middle}.Editor-module_editor__o0Gjz input[type=number]:active,.Editor-module_editor__o0Gjz input[type=number]:focus,.Editor-module_editor__o0Gjz input[type=text]:active,.Editor-module_editor__o0Gjz input[type=text]:focus,.Editor-module_editor__o0Gjz select:active,.Editor-module_editor__o0Gjz select:focus,.Editor-module_editor__o0Gjz textarea:active,.Editor-module_editor__o0Gjz textarea:focus{caret-color:#167782;outline:0}.Editor-module_editor__o0Gjz input[type=number]:hover,.Editor-module_editor__o0Gjz input[type=text]:hover,.Editor-module_editor__o0Gjz select:hover,.Editor-module_editor__o0Gjz textarea:hover{border:1px solid #43b5c0}.Editor-module_editor__o0Gjz input[type=number][disabled],.Editor-module_editor__o0Gjz input[type=number][readonly],.Editor-module_editor__o0Gjz input[type=text][disabled],.Editor-module_editor__o0Gjz input[type=text][readonly],.Editor-module_editor__o0Gjz select[disabled],.Editor-module_editor__o0Gjz select[readonly],.Editor-module_editor__o0Gjz textarea[disabled],.Editor-module_editor__o0Gjz textarea[readonly],fieldset[disabled] .Editor-module_editor__o0Gjz input[type=number],fieldset[disabled] .Editor-module_editor__o0Gjz input[type=text],fieldset[disabled] .Editor-module_editor__o0Gjz select,fieldset[disabled] .Editor-module_editor__o0Gjz textarea{background-color:#e1e5ea;border:1px solid #cad3dd;color:#585858;cursor:not-allowed}.Editor-module_editor__o0Gjz fieldset{border-radius:4px;margin:0}.Editor-module_editor__o0Gjz fieldset>li{display:inline-block}.Editor-module_editor__o0Gjz fieldset.Editor-module_-hidden__aKodt{border-color:transparent;margin-top:1.5em}.Editor-module_editor__o0Gjz legend{color:#aeaeae;font-size:12px;padding:0;text-align:left}.Editor-module_editor__o0Gjz input[type=radio]{line-height:normal;margin:0 .3em;vertical-align:middle}.Editor-module_editor__o0Gjz input[type=checkbox]{line-height:normal;margin-right:.3em;vertical-align:middle}.Editor-module_switchingLoader__OlmM6{align-items:center;display:flex;height:100%;justify-content:center;width:100%}.blinking{animation:Editor-module_blink__J7UCV 1s infinite}@keyframes Editor-module_blink__J7UCV{0%{opacity:1}30%{opacity:0}to{opacity:1}}
|
|
2
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["src/style/mixins.less","index.less","src/script/ui/component/cliparea/cliparea.module.less","cliparea.module.less","ActionButton.module.less","src/script/ui/views/toolbars/ToolbarGroupItem/ActionButton/ActionButton.module.less","src/components/InfoModal/InfoModal.module.less","InfoModal.module.less","Dialog.module.less","src/components/Dialog/Dialog.module.less","src/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/DefaultMultiTool/DefaultMultiTool.module.less","DefaultMultiTool.module.less","src/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/variants/GroupedMultiTool/GroupedMultiTool.module.less","GroupedMultiTool.module.less","ToolbarMultiToolItem.module.less","src/script/ui/views/toolbars/ToolbarGroupItem/ToolbarMultiToolItem/ToolbarMultiToolItem.module.less","BottomToolbar.module.less","src/script/ui/views/toolbars/toolbar.less","src/script/ui/views/toolbars/BottomToolbar/BottomToolbar.module.less","src/script/ui/views/toolbars/ArrowScroll/ArrowScroll.module.less","ArrowScroll.module.less","LeftToolbar.module.less","src/script/ui/views/toolbars/LeftToolbar/LeftToolbar.module.less","Atom.module.less","src/script/ui/component/view/Atom/Atom.module.less","RightToolbar.module.less","src/script/ui/views/toolbars/RightToolbar/RightToolbar.module.less","FloatingTools.module.less","src/script/ui/views/toolbars/FloatingTools/FloatingTools.module.less","Modal.module.less","src/script/ui/views/modal/Modal.module.less","Select.module.less","src/script/ui/component/form/Select/Select.module.less","src/script/ui/views/components/Spinner/LoadingCircles.module.less","LoadingCircles.module.less","StructEditor.module.less","src/script/ui/views/components/StructEditor/StructEditor.module.less","ContextMenu.module.less","src/script/ui/views/components/ContextMenu/ContextMenu.module.less","ToggleButtonGroup.module.less","src/components/ToggleButtonGroup/ToggleButtonGroup.module.less","src/script/ui/views/components/StructEditor/InfoPanel.module.less","InfoPanel.module.less","About.module.less","src/script/ui/views/modal/components/meta/About/About.module.less","src/script/ui/component/form/Input/Input.module.less","Input.module.less","form.module.less","src/script/ui/component/form/form/form.module.less","src/script/ui/component/form/colorPicker/ColorPicker.module.less","ColorPicker.module.less","src/script/ui/component/form/MeasureInput/measure-input.module.less","measure-input.module.less","buttons.module.less","src/script/ui/component/view/buttons.module.less","Accordion.module.less","src/script/ui/views/modal/components/meta/Settings/Accordion/Accordion.module.less","Settings.module.less","src/script/ui/views/modal/components/meta/Settings/Settings.module.less","Check.module.less","src/script/ui/views/modal/components/process/Check/Check.module.less","FormulaInput.module.less","src/script/ui/views/modal/components/process/Analyse/components/FormulaInput/FormulaInput.module.less","Analyse.module.less","src/script/ui/views/modal/components/process/Analyse/Analyse.module.less","Recognize.module.less","src/script/ui/views/modal/components/process/Recognize/Recognize.module.less","Miew.module.less","src/script/ui/views/modal/components/process/Miew/Miew.module.less","src/script/ui/views/modal/components/toolbox/Atom/Atom.module.less","src/script/ui/views/modal/components/toolbox/Attach/Attach.module.less","Attach.module.less","src/script/ui/views/modal/components/toolbox/Automap/Automap.module.less","Automap.module.less","src/script/ui/views/modal/components/toolbox/Bond/Bond.module.less","Bond.module.less","src/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/IfThenSelect.module.less","IfThenSelect.module.less","RgroupLogic.module.less","src/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.module.less","Open.module.less","src/script/ui/views/modal/components/document/Open/Open.module.less","src/script/ui/views/modal/components/document/Open/components/AnalyzingFile.module.less","AnalyzingFile.module.less","src/script/ui/views/modal/components/document/Open/components/OpenOptions.module.less","OpenOptions.module.less","src/script/ui/views/modal/components/document/Open/components/FileDrop.module.less","FileDrop.module.less","src/script/ui/views/modal/components/document/Open/components/CDXStructuresViewer/CDXStructuresViewer.module.less","CDXStructuresViewer.module.less","src/script/ui/component/view/Tabs/Tabs.module.less","Tabs.module.less","Save.module.less","src/script/ui/views/modal/components/document/Save/Save.module.less","src/script/ui/dialog/toolbox/enhancedStereo/enhancedStereo.module.less","enhancedStereo.module.less","labelEdit.module.less","src/script/ui/dialog/toolbox/labelEdit.module.less","AtomInfo.module.less","src/script/ui/views/modal/components/PeriodTable/components/AtomInfo/AtomInfo.module.less","ElementsTable.module.less","src/script/ui/views/modal/components/PeriodTable/components/ElementsTable/ElementsTable.module.less","src/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/BoxWithLines.module.less","BoxWithLines.module.less","GenSet.module.less","src/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenSet.module.less","ButtonGenSet.module.less","src/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/components/ButtonGenSet/ButtonGenSet.module.less","src/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenGroup.module.less","GenGroup.module.less","GenericGroups.module.less","src/script/ui/views/modal/components/ExtendedTable/components/GenericGroups/GenericGroups.module.less","src/script/ui/views/modal/components/PeriodTable/components/TypeChoice/TypeChoice.module.less","TypeChoice.module.less","PeriodTable.module.less","src/script/ui/views/modal/components/PeriodTable/PeriodTable.module.less","src/script/ui/views/modal/components/ExtendedTable/ExtendedTable.module.less","ExtendedTable.module.less","src/script/ui/views/modal/components/toolbox/FG/RemoveFG.module.less","RemoveFG.module.less","rgroup.module.less","src/script/ui/dialog/toolbox/rgroup/rgroup.module.less","sgroup.module.less","src/script/ui/dialog/toolbox/sgroup.module.less","template-lib.module.less","src/script/ui/dialog/template/template-lib.module.less","TemplateTable.module.less","src/script/ui/dialog/template/TemplateTable.module.less","src/script/ui/dialog/template/emptySearchResult.module.less","emptySearchResult.module.less","FontControl.module.less","src/script/ui/views/modal/components/Text/FontControl/FontControl.module.less","src/script/ui/views/modal/components/Text/SpecialSymbolsList/SpecialSymbolsList.module.less","SpecialSymbolsList.module.less","SpecialSymbolsButton.module.less","src/script/ui/views/modal/components/Text/SpecialSymbols/SpecialSymbolsButton.module.less","TextButton.module.less","src/script/ui/views/modal/components/Text/TextButton/TextButton.module.less","Text.module.less","src/script/ui/views/modal/components/Text/Text.module.less","src/script/ui/views/modal/components/InfoModal/PasteErrorModalBody/PasteErrorModalBody.module.less","PasteErrorModalBody.module.less","src/script/ui/views/modal/components/InfoModal/InfoModal.module.less","src/script/ui/App/App.module.less","App.module.less","<no source>","src/script/ui/dialog/AbbreviationLookup/AbbreviationLookup.module.less","AbbreviationLookup.module.less","Editor.module.less","src/Editor.module.less"],"names":[],"mappings":"AAsXA,sBAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YCnUF,CD2XA,WAsBE,oBC9YF,CDwXA,qCAEI,4BCvXJ,CD0XE,8BACE,wBAAA,CAEA,UAAA,CADA,SCvXJ,CD2XE,oCACE,sCAAA,CACA,kBAAA,CACA,0BCzXJ,CD4XE,qFAEE,wBC1XJ,CC3DA,iCAYE,gCAAA,CAEA,qBAAA,CAVA,QAAA,CAOA,2BAAA,CAHA,aAAA,CACA,aAAA,CAFA,kBAAA,CAFA,MAAA,CAYA,YAAA,CAJA,eAAA,CAEA,mBAAA,CAZA,iBAAA,CAaA,WAAA,CAEA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAZA,iBAAA,CAIA,UCMF,CHsVA,iDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YInUF,CJ2XA,sCAsBE,oBI9YF,CJwXA,gEAEI,4BIvXJ,CJ0XE,yDACE,wBAAA,CAEA,UAAA,CADA,SIvXJ,CJ2XE,+DACE,sCAAA,CACA,kBAAA,CACA,0BIzXJ,CJ4XE,2IAEE,wBI1XJ,CCxDA,mCLiTE,qBAAA,CAHA,qBAAA,CKvSA,kBAAA,CAHA,QAAA,CL+SA,iBAAA,CAHA,UAAA,CKxSA,cAAA,CLkSA,oBAAA,CKvSA,aAAA,CA8CA,WAAA,CACA,UAAA,CA7CA,SAAA,CACA,iBAAA,CLsSA,iBAAA,CAQA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAPA,qBAAA,CK7PA,UD6BF,CJyOE,0CAEE,qBAAA,CADA,SItOJ,CJ0OE,mGAEE,qBAAA,CAGA,eAAA,CAFA,kBAAA,CACA,UIvOJ,CJ2OE,oDAEE,YAAA,CACA,iBI1OJ,CJ6OE,qJAGE,gBI3OJ,CCvFE,mFAEE,oBAAA,CACA,qBDyFJ,CCtFE,yCAEE,MAAA,CADA,iBDyFJ,CCrFE,yCAEE,qBAAA,CADA,aDwFJ,CCpFE,uFLuDA,eAAA,CAhBA,qBAAA,CAIA,kBAAA,CALA,iCIqDF,CCjEE,uCAIE,cAAA,CAEA,WAAA,CAHA,SAAA,CAFA,iBAAA,CACA,QAAA,CAGA,UDoEJ,CC1FA,iHAEE,kBAAA,CACA,UD4FF,CC1FE,6HACE,wBD6FJ,CEzIA,0CAEI,kBAAA,CAQA,4BAAA,CAHA,QAAA,CANA,YAAA,CAEA,sBAAA,CAEA,MAAA,CADA,iBAAA,CAIA,OAAA,CAFA,KAAA,CAGA,UCCJ,CDGE,mFAWE,2BAAA,CAFA,qBAAA,CACA,iBAAA,CANA,YAAA,CACA,qBAAA,CAUA,qFAAA,CARA,gBAAA,CAKA,SAAA,CAXA,SAAA,CACA,iBAAA,CAMA,eAAA,CAKA,kBAAA,CACA,oCAAA,CAXA,qBAAA,CAGA,WCQJ,CDKE,gDAEE,kBAAA,CAGA,yBAAA,CACA,UAAA,CALA,YAAA,CAEA,cAAA,CAIA,eAAA,CAHA,gBAAA,CAIA,YCHJ,CDME,uCACE,cAAA,CAGA,WAAA,CAFA,gBAAA,CACA,aAAA,CAEA,YCJJ,CDOE,0DACE,wBAAA,CAEA,UAAA,CADA,SCJJ,CDQE,gEACE,sCAAA,CACA,kBAAA,CACA,0BCNJ,CDSE,gEACE,4BAAA,CACA,oBCPJ,CDUE,uGAEE,wBCRJ,CDWE,gDACE,YAAA,CAGA,OAAA,CAFA,wBAAA,CACA,sBCRJ,CDYE,qCACE,YCVJ,CDaE,4BAME,wBAAA,CACA,4BAAA,CAJA,iBAAA,CAEA,UAAA,CADA,cAAA,CAFA,WAAA,CADA,cCLJ,CDcE,qEACE,wBCXJ,CDcE,qCAEE,wBAAA,CADA,UCXJ,CP8QA,2CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YQnUF,CR2XA,gCAsBE,oBQ9YF,CRwXA,0DAEI,4BQvXJ,CR0XE,mDACE,wBAAA,CAEA,UAAA,CADA,SQvXJ,CR2XE,yDACE,sCAAA,CACA,kBAAA,CACA,0BQzXJ,CR4XE,+HAEE,wBQ1XJ,CCzDA,6BASE,2BAAA,CAFA,qBAAA,CACA,iBAAA,CAGA,aAAA,CAPA,YAAA,CACA,qBAAA,CAKA,qFAAA,CTgIA,SAAA,CSzIA,SAAA,CACA,iBAAA,CAIA,eAAA,CTqIA,kBAAA,CACA,oCAAA,CSzIA,qBDsEF,CRqEE,uDACE,UAAA,CACA,mBQnEJ,CC9DA,6BAGE,kBAAA,CAGA,yBAAA,CALA,sBAAA,CAMA,UAAA,CALA,YAAA,CAEA,cAAA,CAIA,eAAA,CAHA,gBAAA,CAIA,YDgEF,CCzEA,gEAeI,oBAAA,CADA,YAAA,CADA,kBAAA,CADA,WDmEJ,CC/EA,6DAuBI,iBAAA,CAJA,4BAAA,CACA,WAAA,CAIA,WAAA,CAHA,gBAAA,CACA,SAAA,CAGA,UD+DJ,CCxFA,+FA4BM,WAAA,CACA,UD+DN,CC1DA,6BACE,YAAA,CAGA,OAAA,CAFA,wBAAA,CACA,sBD6DF,CChEA,sDTsTE,kBAAA,CAYA,wBAAA,CACA,4BAAA,CARA,iBAAA,CAMA,UAAA,CAbA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YQzOF,CRuPE,yHAEE,wBQrPJ,CRwPE,+DAEE,wBAAA,CADA,UQrPJ,CCtFA,0DTsTE,kBAAA,CA8BA,qBAAA,CADA,wBAAA,CAxBA,iBAAA,CAuBA,aAAA,CA9BA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YQnNF,CRkPE,iIAGE,qBAAA,CADA,UQ/OJ,CRmPE,mEAEE,kCAAA,CADA,uBQhPJ,CC9FA,kCACE,+BAAA,CAGA,WAAA,CAFA,QAAA,CACA,cDiGF,CC7FA,2BACE,cAAA,CAGA,WAAA,CAFA,gBAAA,CACA,aAAA,CT4WA,oBQ3QF,CCpGA,qDT2VI,4BQpPJ,CRuPE,8CACE,wBAAA,CAEA,UAAA,CADA,SQpPJ,CRwPE,oDACE,sCAAA,CACA,kBAAA,CACA,0BQtPJ,CRyPE,qHAEE,wBQvPJ,CC7GA,iCACE,aD+GF,CEjMA,+CAEI,eCDJ,CCCA,sCACE,YAAA,CACA,qBCaF,CDVA,0DAEE,4BAAA,CADA,cAAA,CAEA,eCYF,CbgVA,yDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YcnUF,Cd2XA,8CAsBE,oBc9YF,CdwXA,wEAEI,4BcvXJ,Cd0XE,iEACE,wBAAA,CAEA,UAAA,CADA,ScvXJ,Cd2XE,uEACE,sCAAA,CACA,kBAAA,CACA,0BczXJ,Cd4XE,2JAEE,wBc1XJ,CCtDA,yCAOE,SAAA,CADA,QAAA,CALA,aAAA,CAEA,UAAA,CACA,iBAAA,CACA,OAAA,CAHA,SD6DF,CC7CA,0IACE,SDkDF,CC/CA,2CAKE,eAAA,CACA,wBAAA,CACA,iBAAA,CACA,4CAAA,CAPA,iBAAA,CAEA,kBAAA,CACA,mBAAA,CAFA,UDuDF,CC9CE,kDAEE,WAAA,CADA,UDiDJ,CC9CI,sDAEE,QAAA,CADA,ODiDN,CCjEA,+CfoYE,aAAA,CAFA,YAAA,CACA,mBc7TF,CC5CA,oDACE,YAAA,CACA,qBD8CF,CdiQA,kDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YgBpTF,ChB4WA,uCAsBE,oBgB/XF,ChByWA,iEAEI,4BgBxWJ,ChB2WE,0DACE,wBAAA,CAEA,UAAA,CADA,SgBxWJ,ChB4WE,gEACE,sCAAA,CACA,kBAAA,CACA,0BgB1WJ,ChB6WE,6IAEE,wBgB3WJ,CCtDA,mCAEE,kBAAA,CADA,YDyDF,CE5EA,kCDEE,YAAA,CAuBA,kBAAA,CADA,cAAA,CCpBA,WAAA,CAEA,gBAAA,CADA,iBF+EF,CEpFA,sCDKI,iBAAA,CACA,iBDkFJ,CC/EE,0CACE,iBDiFJ,CE3FA,sClB6ZE,aAAA,CAFA,YAAA,CACA,mBgB5TF,CEhGA,qED6BI,qBAAA,CACA,iBAAA,CACA,0CAAA,CAHA,kBD0EJ,CEtGA,yCAYI,WAAA,CAFA,UAAA,CACA,UFgGJ,CE7FI,6CAEE,QAAA,CADA,OFgGN,CGhHA,kCAKE,eAAA,CAFA,YAAA,CACA,qBAAA,CAHA,eAAA,CACA,UCiBF,CDXA,kCAIE,sBAAA,CADA,WAAA,CAEA,wBAAA,CAJA,UAAA,CACA,UCgBF,CDVA,gCAEE,QAAA,CADA,iBCaF,CDTA,8BACE,iBAAA,CACA,KCWF,CpBmUA,gDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YqBpTF,CrB4WA,qCAsBE,oBqB/XF,CrByWA,+DAEI,4BqBxWJ,CrB2WE,wDACE,wBAAA,CAEA,UAAA,CADA,SqBxWJ,CrB4WE,8DACE,sCAAA,CACA,kBAAA,CACA,0BqB1WJ,CrB6WE,yIAEE,wBqB3WJ,CJtDA,iCAEE,kBAAA,CADA,YIyDF,CC5EA,gCLuCE,uBAAA,CADA,kBAAA,CK9BA,sBAAA,CLNA,YAAA,CAmCA,qBAAA,CK/BA,eAAA,CADA,eAAA,CL+BA,eAAA,CK7BA,iBAAA,CtB+aA,oBAAA,CsBlbA,UDqFF,CCzFA,oCLKI,iBAAA,CACA,iBIuFJ,CJpFE,wCACE,iBIsFJ,CChGA,oCtB6ZE,aAAA,CAFA,YAAA,CACA,mBqBvTF,CCrGA,iEL0CI,qBI8DJ,CCxGA,oFLqDI,+BAAA,CADA,iBIwDJ,CC5GA,0DtBkaI,4BqBnTJ,CrBsTE,mDACE,wBAAA,CAEA,UAAA,CADA,SqBnTJ,CrBuTE,yDACE,sCAAA,CACA,kBAAA,CACA,0BqBrTJ,CrBwTE,+HAEE,wBqBtTJ,CC7HA,oFAYI,kBDoHJ,CChHA,mCACE,eAAA,CACA,iBAAA,CACA,sBDkHF,CC/GA,qCACE,4BDiHF,CC9GA,qCAEE,qBAAA,CACA,iBAAA,CACA,0CAAA,CAHA,WDmHF,CCpHA,yCASI,UAAA,CADA,SDgHJ,CCxHA,4CAeI,WAAA,CAFA,UAAA,CACA,UD+GJ,CC5GI,gDAEE,QAAA,CADA,OD+GN,CrByMA,yCAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YuBnUF,CvB2XA,8BAsBE,oBuB9YF,CvBwXA,wDAEI,4BuBvXJ,CvB0XE,iDACE,wBAAA,CAEA,UAAA,CADA,SuBvXJ,CvB2XE,uDACE,sCAAA,CACA,kBAAA,CACA,0BuBzXJ,CvB4XE,2HAEE,wBuB1XJ,CCvDC,yBxBgTC,qBAAA,CwBvSA,4BAAA,CxBoSA,qBAAA,CAIA,oBAAA,CACA,iBAAA,CwB1SA,eAAA,CxBuSA,UAAA,CwBrSA,cAAA,CxB+RA,oBAAA,CwBpSA,WAAA,CACA,cAAA,CACA,SAAA,CAJA,iBAAA,CxBwSA,iBAAA,CAQA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAPA,qBAAA,CwBxSA,UDuEF,CvB0OE,gCAEE,qBAAA,CADA,SuBvOJ,CvB2OE,+EAEE,qBAAA,CAGA,eAAA,CAFA,kBAAA,CACA,UuBxOJ,CvB4OE,0CAEE,YAAA,CACA,iBuB3OJ,CvB8OE,uHAGE,gBuB5OJ,CCnFG,mCACC,qBAAA,CACA,eAAA,CACA,kBAAA,CACA,UDqFJ,CvB6PA,iDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YyBpTF,CzB4WA,sCAsBE,oByB/XF,CzByWA,gEAEI,4ByBxWJ,CzB2WE,yDACE,wBAAA,CAEA,UAAA,CADA,SyBxWJ,CzB4WE,+DACE,sCAAA,CACA,kBAAA,CACA,0ByB1WJ,CzB6WE,2IAEE,wByB3WJ,CRtDA,kCAEE,kBAAA,CADA,YQyDF,CC5EA,iCTuCE,uBAAA,CADA,kBAAA,CApCA,YAAA,CAmCA,qBAAA,CSjCA,gBAAA,CACA,eAAA,CT+BA,eAAA,CS9BA,gBAAA,C1BgbA,oBAAA,C0B/aA,UDiFF,CCxFA,qCTKI,iBAAA,CACA,iBQsFJ,CRnFE,yCACE,iBQqFJ,CC/FA,qC1B6ZE,aAAA,CAFA,YAAA,CACA,mByBxTF,CCpGA,mET0CI,qBQ6DJ,CCvGA,sFTqDI,+BAAA,CADA,iBQuDJ,CC3GA,2D1BkaI,4ByBpTJ,CzBuTE,oDACE,wBAAA,CAEA,UAAA,CADA,SyBpTJ,CzBwTE,0DACE,sCAAA,CACA,kBAAA,CACA,0ByBtTJ,CzByTE,iIAEE,wByBvTJ,CC5HA,sFAYI,kBAAA,CADA,eAAA,CAEA,kBDoHJ,CClHI,2HAEE,iBAAA,CADA,cDqHN,CC/GA,sCACE,aDiHF,CC9GA,oCAIE,qBAAA,CACA,iBAAA,CACA,0CAAA,CAJA,eAAA,CACA,sBAAA,CAFA,UDqHF,CCtHA,uEAWI,iBAAA,CADA,iBAAA,CADA,cDkHJ,CC3HA,2CAoBI,iBAAA,CALA,cAAA,CACA,eAAA,CAEA,WAAA,CACA,UAAA,CAFA,UDkHJ,CCnIA,+CAwBM,UAAA,CACA,QAAA,CAEA,WAAA,CADA,SAAA,CAHA,ODmHN,CzBgMA,kDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y2BnUF,C3B2XA,uCAsBE,oB2B9YF,C3BwXA,iEAEI,4B2BvXJ,C3B0XE,0DACE,wBAAA,CAEA,UAAA,CADA,S2BvXJ,C3B2XE,gEACE,sCAAA,CACA,kBAAA,CACA,0B2BzXJ,C3B4XE,6IAEE,wB2B1XJ,CVvCA,mCAEE,kBAAA,CADA,YU0CF,CC7EA,qCXkBE,YAAA,CWfA,iBAAA,CACA,gCD8EF,CClFA,yCXqBI,iBAAA,CACA,iBUgEJ,CV7DE,6CACE,iBU+DJ,CCzFA,yC5B6aE,aAAA,CAFA,YAAA,CACA,mB2B9UF,CC9FA,uEAWI,qBAAA,CAHA,iBAAA,CADA,2CAAA,CAGA,WAAA,CADA,UD4FJ,CCrGA,2EAeM,WAAA,CAEA,QAAA,CADA,OAAA,CAEA,8BAAA,CAJA,UD8FN,C3BwQA,0CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y6BnUF,C7B2XA,+BAsBE,oB6B9YF,C7BwXA,yDAEI,4B6BvXJ,C7B0XE,kDACE,wBAAA,CAEA,UAAA,CADA,S6BvXJ,C7B2XE,wDACE,sCAAA,CACA,kBAAA,CACA,0B6BzXJ,C7B4XE,6HAEE,wB6B1XJ,CCzDA,kCAEE,kBAAA,C9BuNA,kCAAA,C8B/MA,2OAAA,C9BiNA,iBAAA,C8BpNA,QAAA,CANA,YAAA,C9B2NA,oGAAA,C8BzNA,sBAAA,CAEA,MAAA,CADA,iBAAA,CAIA,OAAA,CAFA,KAAA,CAGA,UD+DF,C7B4JE,6CAEE,kE6B3JJ,CC9DE,8DACE,+BDgEJ,CC7DE,2DACE,mCD+DJ,CC5DE,wCACE,UAAA,CACA,oBAAA,CACA,WAAA,CACA,qBD8DJ,CCvFA,mEA8BI,cAAA,CADA,aD8DJ,C7ByQA,2CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y+BnUF,C/B2XA,gCAsBE,oB+B9YF,C/BwXA,0DAEI,4B+BvXJ,C/B0XE,mDACE,wBAAA,CAEA,UAAA,CADA,S+BvXJ,C/B2XE,yDACE,sCAAA,CACA,kBAAA,CACA,0B+BzXJ,C/B4XE,+HAEE,wB+B1XJ,CCtDA,kDAEI,yBAAA,CACA,2CAAA,CACA,UDuDJ,CC3DA,qDAQI,UAAA,CAKA,cAAA,CAJA,qFAAA,CACA,cAAA,CAEA,eAAA,CADA,aDwDJ,CCpDI,2DAGE,qCAAA,CADA,6BAAA,CADA,gBDwDN,CCxEA,8DAyBI,qBAAA,CAEA,eAAA,CAJA,oBAAA,CAMA,gBAAA,CADA,aAAA,CAFA,SAAA,ChCyZF,oBAAA,CgC3ZE,UD0DJ,CClFA,wFhC+ZI,4B+B1UJ,C/B6UE,iFACE,wBAAA,CAEA,UAAA,CADA,S+B1UJ,C/B8UE,uFACE,sCAAA,CACA,kBAAA,CACA,0B+B5UJ,C/B+UE,2LAEE,wB+B7UJ,CCnEI,iFACE,qBAAA,CACA,SDqEN,CClEI,uFACE,iBAAA,CACA,yBDoEN,CC3GA,4EA2CM,qBDmEN,CC9GA,qEAgDI,yBAAA,CACA,cDiEJ,CC7DA,sCACE,UD+DF,CChEA,+EAUI,qBAAA,CADA,wBAAA,CAFA,iBAAA,CADA,eAAA,CAWA,qBAAA,CANA,UAAA,CAKA,cAAA,CAJA,qFAAA,CACA,cAAA,CARA,WAAA,CAaA,gBAAA,CAVA,eAAA,CAMA,aAAA,CACA,4BAAA,CAXA,UD6EJ,CCjFA,sGAqBM,WAAA,CACA,SD+DN,CC5DI,qFACE,wBD8DN,CCxFA,qEA+BI,oBD4DJ,CC3FA,uEAmCI,WD2DJ,CC9FA,sDAwCI,WAAA,CADA,UD2DJ,CE3JA,wCAIE,sBAAA,CAHA,YAAA,CACA,kBAAA,CAIA,WAAA,CAHA,6BAAA,CAIA,eAAA,CAFA,UCgBF,CDZE,6CAIE,wBAAA,CACA,kBAAA,CACA,qBAAA,CALA,oBAAA,CAEA,UAAA,CADA,SCkBJ,CDZI,yDACE,qECcN,CDXI,0DACE,0ECaN,CDVI,0DACE,0ECYN,CDRE,+CACE,UAME,uBCUJ,CDPE,IAIE,2BCSJ,CACF,ClC+SA,iDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YmCnUF,CnC2XA,sCAsBE,oBmC9YF,CnCwXA,gEAEI,4BmCvXJ,CnC0XE,yDACE,wBAAA,CAEA,UAAA,CADA,SmCvXJ,CnC2XE,+DACE,sCAAA,CACA,kBAAA,CACA,0BmCzXJ,CnC4XE,2IAEE,wBmC1XJ,CCxDA,2CAME,kBAAA,CADA,YAAA,CADA,WAAA,CAGA,sBAAA,CANA,iBAAA,CACA,KAAA,CACA,UD8DF,CC9CA,mCACE,eAAA,CACA,iBAAA,CpCgaA,oBAAA,CoC5ZA,wBAAA,CAAA,qBAAA,CAAA,gBD8CF,CCpDA,0EAUI,qBAAA,CACA,wBAAA,CACA,mBAAA,CAEA,YAAA,CADA,aAAA,CAIA,SAAA,CAFA,YAAA,CANA,iBAAA,CAbA,OAAA,CAoBA,iBAAA,CArBA,KAAA,CAuBA,sBDsCJ,CCpCI,6GACE,SDkDN,CCvEA,6DpC8YI,4BmCpUJ,CnCuUE,sDACE,wBAAA,CAEA,UAAA,CADA,SmCpUJ,CnCwUE,4DACE,sCAAA,CACA,kBAAA,CACA,0BmCtUJ,CnCyUE,qIAEE,wBmCvUJ,CC5DA,+CACE,WAAA,CACA,iBAAA,CpCoYA,oBmCrUF,CC7DE,uFACE,6mDD+DJ,CC3DE,8FACE,i+DD6DJ,CCvEA,yEpCkXI,4BmCxSJ,CnC2SE,kEACE,wBAAA,CAEA,UAAA,CADA,SmCxSJ,CnC4SE,wEACE,sCAAA,CACA,kBAAA,CACA,0BmC1SJ,CnC6SE,6JAEE,wBmC3SJ,CCxEE,kEACE,qBD0EJ,CCtEA,uFArDI,OAAA,CADA,KDgIJ,CnCqNA,gDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YqClUF,CrC0XA,qCAsBE,oBqC7YF,CrCuXA,+DAEI,4BqCtXJ,CrCyXE,wDACE,wBAAA,CAEA,UAAA,CADA,SqCtXJ,CrC0XE,8DACE,sCAAA,CACA,kBAAA,CACA,0BqCxXJ,CrC2XE,yIAEE,wBqCzXJ,CCxDA,uCAEE,6BAAA,CACA,8BAAA,CACA,oCAAA,CACA,mCAAA,CACA,mCAAA,CACA,yCAAA,CACA,+BAAA,CACA,qCAAA,CACA,sDAAA,CACA,oBAAA,CACA,+BAAA,CACA,4BAAA,CACA,2BAAA,CACA,4DAAA,CACA,wCAAA,CACA,+BAAA,CAIA,qBAAA,CAIA,eAAA,CAFA,wCAAA,CADA,qCAAA,CAHA,cAAA,CACA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAIA,+BDyDF,CCjFA,uEA6BI,WAAA,CACA,qBAAA,CAFA,UD0DJ,CCtFA,0DAkCI,gBAAA,CACA,aAAA,CtCiZF,oBqCzVF,CC3FA,oFtCgaI,4BqClUJ,CrCqUE,6EACE,wBAAA,CAEA,UAAA,CADA,SqClUJ,CrCsUE,mFACE,sCAAA,CACA,kBAAA,CACA,0BqCpUJ,CrCuUE,mLAEE,wBqCrUJ,CC5GA,gEAwCI,eDuEJ,CCrEI,oEACE,UDuEN,CClHA,6LA2DM,4BAAA,CAFF,UAAA,CACE,aAAA,CAEA,YDkEN,CC9HA,+FAiEM,kBDgEN,CrCiOA,sDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YuClVF,CvC0YA,2CAsBE,oBuC7ZF,CvCuYA,qEAEI,4BuCtYJ,CvCyYE,8DACE,wBAAA,CAEA,UAAA,CADA,SuCtYJ,CvC0YE,oEACE,sCAAA,CACA,kBAAA,CACA,0BuCxYJ,CvC2YE,qJAEE,wBuCzYJ,CCzCA,wCxCiTE,qBAAA,CAHA,qBAAA,CAIA,oBAAA,CwC1SA,8BAAA,CxC2SA,iBAAA,CAHA,UAAA,CwCzSA,uBAAA,CAJA,cAAA,CxCuSA,oBAAA,CwCpSA,cAAA,CAFA,WAAA,CxCuSA,QAAA,CACA,iBAAA,CwCnSA,6BAAA,CxC2SA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAPA,qBAAA,CwCxSA,kBDsEF,CvC2OE,+CAEE,qBAAA,CADA,SuCxOJ,CvC4OE,6GAEE,qBAAA,CAGA,eAAA,CAFA,kBAAA,CACA,UuCzOJ,CvC6OE,yDAEE,YAAA,CACA,iBuC5OJ,CvC+OE,oKAGE,gBuC7OJ,CCpFE,8CACE,uBDsFJ,CClFA,gIAEE,4BAAA,CACA,oBDoFF,CClFE,4IACE,kCDqFJ,CE5HA,mCAEE,wBAAA,CACA,iBAAA,CAFA,YCgBF,CDXA,wEAGE,eAAA,CACA,iBAAA,CAFA,mBAAA,CADA,iBCiBF,CDlBA,gFAOI,0BCeJ,CDXA,qCAKE,gCAAA,CACA,YAAA,CACA,qBAAA,CACA,OAAA,CANA,eAAA,CACA,cAAA,CAFA,wBAAA,CAGA,WCiBF,CDrBA,uCAWI,QCaJ,C1C2UA,0CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y2CnUF,C3C2XA,+BAsBE,oB2C9YF,C3CwXA,yDAEI,4B2CvXJ,C3C0XE,kDACE,wBAAA,CAEA,UAAA,CADA,S2CvXJ,C3C2XE,wDACE,sCAAA,CACA,kBAAA,CACA,0B2CzXJ,C3C4XE,6HAEE,wB2C1XJ,CCxDA,iCACE,qBD0DF,CCvDA,2BAEE,UAAA,CACA,eAAA,CAFA,WD2DF,CCvDE,kCACE,4BAAA,CACA,QAAA,CACA,YDyDJ,CCtDE,iEACE,YAAA,CACA,qBDwDJ,CCrEA,6BAkBI,aDsDJ,CCxEA,qDAuBI,iBAAA,CADA,YAAA,CAKA,gBAAA,CADA,iBAAA,CADA,eAAA,CADA,gBAAA,C5CyZF,oB2ChWF,CCjFA,+E5C6ZI,4B2CzUJ,C3C4UE,wEACE,wBAAA,CAEA,UAAA,CADA,S2CzUJ,C3C6UE,8EACE,sCAAA,CACA,kBAAA,CACA,0B2C3UJ,C3C8UE,yKAEE,wB2C5UJ,CClGA,sFA+BM,eAAA,CACA,iBDsEN,CCtGA,oFAoCM,oBDqEN,CCzGA,gFAwCM,gBDoEN,CC5GA,oFA4CM,cDmEN,CC/GA,wFAiDM,YAAA,CACA,OAAA,CAFA,eDoEN,CCpHA,8DAuDI,YAAA,CACA,6BAAA,CACA,cDgEJ,CCzHA,gEA6DM,kBAAA,CAGA,UAAA,CAJA,YAAA,CAEA,QAAA,CACA,oBDiEN,CChIA,yFAoEM,cAAA,CACA,gBD+DN,CCpIA,gEA0EI,oBD6DJ,CCvIA,8BA+EI,eD4DJ,CC3IA,8BAmFI,cD2DJ,CC9IA,yD5CkWE,kBAAA,CA8BA,qBAAA,CADA,wBAAA,CAxBA,iBAAA,CAuBA,aAAA,CA9BA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y2CvMF,C3CsOE,+HAGE,qBAAA,CADA,U2CnOJ,C3CuOE,kEAEE,kCAAA,CADA,uB2CpOJ,CE1LA,mCACE,iBCcF,CDXA,iFAGE,SAAA,CADA,iBCcF,CDVA,wEAME,4OAAA,CACA,2BAAA,CACA,oBAAA,CAPA,oBAAA,CAEA,WAAA,CAEA,gBAAA,CADA,qBAAA,CAFA,UCkBF,CDTA,8EACE,sQCWF,CDRA,gFACE,uTCUF,CDPA,wEAME,uNAAA,CACA,2BAAA,CACA,oBAAA,CAPA,oBAAA,CAEA,WAAA,CAEA,gBAAA,CADA,qBAAA,CAFA,UCeF,CDNA,8EACE,uNCQF,CDLA,gFACE,6PCOF,CDJA,iFACE,uNCMF,CDHA,yFACE,6PCKF,CDFA,uDAEE,oBAAA,CAEA,WAAA,CAHA,iBAAA,CAEA,UCKF,CDRA,6DASI,QAAA,CAFA,SAAA,CACA,OCKJ,CDbA,4DAkBI,mCAAA,CAIA,wBAAA,CADA,kBAAA,CAJA,QAAA,CAFA,MAAA,CAFA,iBAAA,CAGA,OAAA,CAFA,KAAA,CAMA,yBCKJ,CDzBA,mEAiCI,wBAAA,CAHA,iBAAA,CAEA,UAAA,CALA,UAAA,CACA,WAAA,CAGA,QAAA,CALA,iBAAA,CASA,mCAAA,CANA,UCQJ,CDrCA,0EAuCI,wBCCJ,CDxCA,iFA2CI,qBAAA,CAGA,0BCAJ,CDIA,8DAEE,UCFF,CDKA,4BACE,cCHF,C9CuQA,yCAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y+CnUF,C/C2XA,8BAsBE,oB+C9YF,C/CwXA,wDAEI,4B+CvXJ,C/C0XE,iDACE,wBAAA,CAEA,UAAA,CADA,S+CvXJ,C/C2XE,uDACE,sCAAA,CACA,kBAAA,CACA,0B+CzXJ,C/C4XE,2HAEE,wB+C1XJ,CCxDA,wCACE,oBD0DF,CCvDA,+BACE,eAAA,CACA,eDyDF,CCtDA,+DAGI,oBAAA,CADA,iBDwDJ,CCrDI,qEAIE,qRAAA,CAHA,iBAAA,CACA,WAAA,CACA,ODwDN,CChEA,6NAkBI,kCDqDJ,CCnDI,sfhDgDF,+C+CeF,CCxDA,+CAEE,kBAAA,CADA,YAAA,CAEA,OD0DF,CCxDE,qDACE,qBD0DJ,CCvDE,8EAEE,qBAAA,CAEA,eAAA,CADA,cAAA,CAFA,oBD4DJ,CCrDA,+CAGE,kBAAA,CAFA,YAAA,CACA,6BAAA,CAEA,UDuDF,CEjHA,4CAgBE,kBAAA,CATA,qBAAA,CADA,wBAAA,CAFA,iBAAA,CADA,eAAA,CAWA,qBAAA,CANA,UAAA,CAKA,cAAA,CAEA,YAAA,CANA,qFAAA,CACA,cAAA,CARA,WAAA,CAGA,eAAA,CAOA,gBAAA,CADA,iBAAA,CAVA,UC4BF,CDXE,kDACE,oBCaJ,CDTA,yCACE,oBCWF,CDRA,2CAKE,qBAAA,CAEA,iBAAA,CACA,2CAAA,CAEA,WAAA,CARA,MAAA,CAIA,WAAA,CALA,iBAAA,CAEA,QAAA,CAMA,UAAA,CALA,SCgBF,CDPA,uCACE,YCSF,CDNA,6EAGE,UAAA,CAFA,OAAA,CACA,KCSF,CDXA,mFAUI,sCAAA,CAGA,UAAA,CADA,WAAA,CAEA,cAAA,CANA,qBAAA,CAFA,cAAA,CAWA,mBAAA,CADA,yBAAA,CATA,iBAAA,CAIA,gBAAA,CAIA,wBAAA,CANA,SCgBJ,CDNI,yFACE,+BCQN,CD5BA,iFAyBI,eCMJ,CD/BA,6FA8BI,UAAA,CADA,UCMJ,CDnCA,kGAkCI,WCIJ,CDtCA,sGAsCI,iBAAA,CACA,gBAAA,CAEA,WAAA,CADA,UCIJ,CDCA,0CAGE,kBAAA,CACA,qBAAA,CAHA,YAAA,CACA,6BCGF,CDEA,8CAIE,WAAA,CADA,iBAAA,CADA,WAAA,CADA,UCGF,CDGA,8CAGE,QAAA,CAEA,MAAA,CAJA,cAAA,CAGA,OAAA,CAFA,KAAA,CAIA,WCDF,CDIA,0CAIE,oBAAA,CAHA,YAAA,CACA,6BAAA,CACA,cCDF,CDFA,yEAOI,UAAA,CACA,cCFJ,CDMA,wCACE,YAAA,CACA,cAAA,CACA,UCJF,CDCA,+CAQI,WAAA,CACA,iBAAA,CAFA,WAAA,CAIA,iBAAA,CADA,gBAAA,CAJA,UCCJ,CDUI,0HACE,cCLN,CDbA,+EAwBI,qBAAA,CACA,sZAAA,CAEA,uBAAA,CADA,2BAAA,CAHA,wBCHJ,CDpBA,2EAgCI,wBAAA,CADA,8SCPJ,CDYA,sCAEE,gBAAA,CACA,wBAAA,CACA,oCAAA,CAHA,UCPF,CDaA,sCACE,sBCXF,CDcA,8CACE,iBCZF,CCjKA,0CAIE,kBAAA,CAGA,UAAA,CANA,mBAAA,CAEA,cAAA,CADA,6BAAA,CAGA,gBAAA,CACA,kBAAA,CAEA,UCcF,CDtBA,8HAcI,WAAA,CADA,eAAA,CADA,UCgBJ,CpDyUA,4CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YqDnUF,CrD2XA,iCAsBE,oBqD9YF,CrDwXA,2DAEI,4BqDvXJ,CrD0XE,oDACE,wBAAA,CAEA,UAAA,CADA,SqDvXJ,CrD2XE,0DACE,sCAAA,CACA,kBAAA,CACA,0BqDzXJ,CrD4XE,iIAEE,wBqD1XJ,CCzDA,kCACE,UD2DF,CrDwSA,8CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YuDnUF,CvD2XA,mCAsBE,oBuD9YF,CvDwXA,6DAEI,4BuDvXJ,CvD0XE,sDACE,wBAAA,CAEA,UAAA,CADA,SuDvXJ,CvD2XE,4DACE,sCAAA,CACA,kBAAA,CACA,0BuDzXJ,CvD4XE,qIAEE,wBuD1XJ,CCxDA,0CAGE,wBAAA,CADA,iBAAA,CADA,eAAA,CxDobA,oBuDvXF,CC9DA,oExDiaI,4BuDhWJ,CvDmWE,6DACE,wBAAA,CAEA,UAAA,CADA,SuDhWJ,CvDoWE,mEACE,sCAAA,CACA,kBAAA,CACA,0BuDlWJ,CvDqWE,mJAEE,wBuDnWJ,CCxEA,oCAEE,iBAAA,CACA,wBAAA,CACA,oCAAA,CAHA,UD6EF,CCvEA,oCACE,sBDyEF,CCtEA,iDAIE,qBAAA,CADA,+BAAA,CAFA,QAAA,CACA,iBD0EF,CCrEA,0CAOE,kBAAA,CAGA,UAAA,CANA,YAAA,CACA,kBAAA,CAGA,cAAA,CAGA,eAAA,CATA,WAAA,CAIA,0BAAA,CAGA,gBAAA,CANA,eAAA,CAFA,WDiFF,CCnEA,iDACE,iBAAA,CAEA,eAAA,CAEA,cAAA,CAHA,qCAAA,CAEA,WDsEF,CClEA,yCACE,YDoEF,CCjEA,0CAEE,UAAA,CADA,eAAA,CAEA,kBDmEF,CChEA,mCACE,WAAA,CACA,UDkEF,CC/DA,oCAGE,kBAAA,CADA,YAAA,CADA,WDmEF,CCpEA,yCAOI,WAAA,CADA,eDkEJ,CC7DA,sCACE,oMAAA,CAOA,2BAAA,CACA,oBAAA,CAPA,oBAAA,CAEA,WAAA,CAGA,gBAAA,CADA,gBAAA,CADA,qBAAA,CAFA,UDqEF,CvDiNA,6CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YyDnUF,CzD2XA,kCAsBE,oByD9YF,CzDwXA,4DAEI,4ByDvXJ,CzD0XE,qDACE,wBAAA,CAEA,UAAA,CADA,SyDvXJ,CzD2XE,2DACE,sCAAA,CACA,kBAAA,CACA,0ByDzXJ,CzD4XE,mIAEE,wByD1XJ,CCxDA,sCACE,YAAA,CACA,OD0DF,CC5DA,oEAKI,iBD0DJ,CC/DA,qEASI,4BAAA,CACA,WAAA,CACA,aAAA,CAEA,WAAA,CADA,SD0DJ,CCtEA,sFAgBM,YDyDN,CCtDI,2EACE,aDwDN,CCrDI,8EACE,uBDuDN,CClDA,2CAEI,WAAA,CACA,YAAA,CACA,qBAAA,CACA,SDmDJ,CCxDA,wCAUM,iBDiDN,CC3DA,wCAkBI,kBAAA,CAGA,UAAA,CANA,YAAA,CAEA,cAAA,CAKA,WAAA,CANA,0BAAA,CAGA,gBAAA,CACA,kBDiDJ,CCrEA,6DAyBM,KD+CN,CCxEA,8IAgCM,iBAAA,CADA,WD+CN,CC9EA,qDAqCM,iBAAA,CADA,WD8CN,CCxCA,iCAEE,WAAA,CACA,eAAA,CAFA,WD4CF,CC7CA,+DAOM,UDyCN,CChDA,8DAWM,UDwCN,CCnDA,wCAiBI,sCAAA,CADA,aAAA,CAEA,UDsCJ,CCxDA,wCAsBI,uCAAA,CACA,UDqCJ,CCjCA,uC1DoQE,kBAAA,CAYA,wBAAA,CACA,4BAAA,CARA,iBAAA,CAMA,UAAA,CAbA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,C0DtQA,iBAAA,C1DqQA,cAAA,CADA,YyDrNF,CzDmOE,2FAEE,wByDjOJ,CzDoOE,gDAEE,wBAAA,CADA,UyDjOJ,CzDyMA,0CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y2DnUF,C3D2XA,+BAsBE,oB2D9YF,C3DwXA,yDAEI,4B2DvXJ,C3D0XE,kDACE,wBAAA,CAEA,UAAA,CADA,S2DvXJ,C3D2XE,wDACE,sCAAA,CACA,kBAAA,CACA,0B2DzXJ,C3D4XE,6HAEE,wB2D1XJ,CCzDA,iCACE,WD2DF,CCzDE,mCACE,qBD2DJ,CCxDE,qCACE,QAAA,CACA,aD0DJ,CCvDE,wCACE,qBDyDJ,CCtEA,sCAiBI,gBDwDJ,CCzEA,8DAqBI,YAAA,CACA,6BAAA,CACA,UDuDJ,CC9EA,mG5DuWE,kBAAA,CA8BA,qBAAA,CADA,wBAAA,CAxBA,iBAAA,CAuBA,aAAA,CA9BA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y2D5QF,C3D2SE,mNAGE,qBAAA,CADA,U2DxSJ,C3D4SE,4GAEE,kCAAA,CADA,uB2DzSJ,CCrGA,iG5DuWE,kBAAA,CAYA,wBAAA,CACA,4BAAA,CARA,iBAAA,CAMA,UAAA,CAbA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y2DrPF,C3DmQE,+MAEE,wB2DjQJ,C3DoQE,0GAEE,wBAAA,CADA,U2DjQJ,CC1FI,gGACE,YAAA,CACA,OD4FN,CC/HA,8DA0CI,oBAAA,CAAA,eAAA,CAFA,YAAA,CACA,kBD2FJ,CCpIA,6FA6CM,WD0FN,CCvIA,4FAiDM,gBDyFN,CC1IA,6RAwDM,UAAA,CADA,eDyFN,CChJA,wTA+DQ,WAAA,CAJA,YAAA,CACA,qBAAA,CACA,cAAA,CACA,gBAAA,CAEA,SD0FR,CC1JA,iUAmEU,cD4FV,CC/JA,mVAuEY,kBAAA,CADA,YD+FZ,CCrKA,oUA4EU,wBD8FV,CC1KA,6UA+EY,eAAA,CACA,iBDgGZ,CChLA,6UAqFY,qBAAA,CADA,qBDkGZ,CCtLA,4FA4FM,wBAAA,CACA,UD6FN,CC1LA,qGAoGM,YAAA,CAHA,eAAA,C5DqVJ,oB2DvPF,CC/LA,+H5DkaI,4B2DhOJ,C3DmOE,wHACE,wBAAA,CAEA,UAAA,CADA,S2DhOJ,C3DoOE,8HACE,sCAAA,CACA,kBAAA,CACA,0B2DlOJ,C3DqOE,yQAEE,wB2DnOJ,CChNA,qGA2GM,kBAAA,CAHA,wBAAA,CACA,YAAA,CAGA,YAAA,CAFA,sBAAA,CAGA,UD2GN,CCxNA,yEAkHI,UDyGJ,C3DyIA,iDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y6DnUF,C7D2XA,sCAsBE,oB6D9YF,C7DwXA,gEAEI,4B6DvXJ,C7D0XE,yDACE,wBAAA,CAEA,UAAA,CADA,S6DvXJ,C7D2XE,+DACE,sCAAA,CACA,kBAAA,CACA,0B6DzXJ,C7D4XE,2IAEE,wB6D1XJ,CCzDA,uCAeE,eAAA,CAKA,WAAA,CARA,iBAAA,CASA,qBAAA,CARA,oBAAA,C9DqQA,YAAA,C8DjQA,WAAA,CADA,sBAAA,CAGA,UAAA,CATA,eAAA,CAQA,8BAAA,CAJA,qBAAA,CAHA,kBAAA,CAFA,WDkEF,C7DgNE,0FA7MA,4C6DKF,C7D6ME,4JAKE,kBAAA,CAFA,kBAAA,CAGA,U6D5MJ,CCvFE,2F9D2EA,4CAAA,C8DzEE,SD0FJ,C7DqQA,4CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y+DnUF,C/D2XA,iCAsBE,oB+D9YF,C/DwXA,2DAEI,4B+DvXJ,C/D0XE,oDACE,wBAAA,CAEA,UAAA,CADA,S+DvXJ,C/D2XE,0DACE,sCAAA,CACA,kBAAA,CACA,0B+DzXJ,C/D4XE,iIAEE,wB+D1XJ,CCzDA,+BACE,WD2DF,CCzDE,sFAGE,wBAAA,CACA,wBAAA,CACA,iBAAA,CAKA,eAAA,CACA,WAAA,CAHA,cAAA,CANA,WAAA,CAOA,gBAAA,CAHA,QAAA,CACA,gBAAA,CANA,WDqEJ,CCzEA,qEAkBI,YAAA,CACA,kBAAA,CACA,eD0DJ,CCxDI,2EACE,iBD0DN,CCjFA,yGA2BM,YAAA,CACA,qBDyDN,CCvDM,iOAEE,wBAAA,CACA,wBAAA,CACA,iBDyDR,CCvDQ,qPACE,WD0DV,CCtDM,+GACE,WDwDR,CCrDM,qHACE,wBDuDR,CCpDM,kHAEE,WAAA,CAEA,mBAAA,CADA,WAAA,CAFA,WDyDR,CC3GA,0GA0DM,YAAA,CACA,qBAAA,CACA,eDoDN,CChHA,wIAiEQ,WAAA,CAFA,cAAA,CACA,UDqDR,CClDQ,iJACE,wBAAA,CACA,iBDoDV,C/D2OA,8CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YiElVF,CjE0YA,mCAsBE,oBiE7ZF,CjEuYA,6DAEI,4BiEtYJ,CjEyYE,sDACE,wBAAA,CAEA,UAAA,CADA,SiEtYJ,CjE0YE,4DACE,sCAAA,CACA,kBAAA,CACA,0BiExYJ,CjE2YE,qIAEE,wBiEzYJ,CCzCA,0EAGI,YAAA,CACA,6BAAA,CAFA,UD2DJ,CC7DA,8EAOM,YAAA,CACA,ODyDN,CCjEA,yEAaI,YAAA,CACA,qBAAA,CAEA,iBAAA,CADA,mBDwDJ,CCvEA,uEAuBI,kBAAA,ClE6WF,qBAAA,CADA,wBAAA,CAxBA,iBAAA,CAuBA,aAAA,CA9BA,mBAAA,CkE9UE,YAAA,ClEsVF,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YiEjRF,CjEgTE,2JAGE,qBAAA,CADA,UiE7SJ,CjEiTE,gFAEE,kCAAA,CADA,uBiE9SJ,CCtEI,6EACE,YDwEN,CCrEI,2EAEE,WAAA,CADA,UDwEN,CCtGA,4EAoCI,wBAAA,CACA,YAAA,CACA,QAAA,CACA,YDqEJ,CC5GA,oEA6CI,oBAAA,CACA,iBAAA,CAHA,YAAA,CAMA,cAAA,CALA,6BAAA,CAMA,gBAAA,CAFA,gBAAA,CADA,cDuEJ,CCjEM,iFACE,iBDmER,CCzHA,uIA8DI,qBAAA,CACA,wBAAA,CACA,iBAAA,CAIA,qBAAA,CAFA,YAAA,CACA,eAAA,CANA,iBAAA,CAIA,WDmEJ,CCpIA,oEA4EI,kBAAA,CAHA,aAAA,CACA,YAAA,CACA,sBAAA,CAHA,iBDmEJ,CC3IA,qEAiFI,QAAA,CACA,iBAAA,CAFA,ODgEJ,CChJA,6EAuFI,kBAAA,CAIA,wBAAA,CALA,YAAA,CAGA,WAAA,CADA,sBAAA,CAEA,UD8DJ,CC3DI,+EACE,WD6DN,CC3JA,0ElEsWE,kBAAA,CAYA,wBAAA,CACA,4BAAA,CARA,iBAAA,CAMA,UAAA,CAbA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YiE9LF,CjE4ME,iKAEE,wBiE1MJ,CjE6ME,mFAEE,wBAAA,CADA,UiE1MJ,CCjLA,4ElEsWE,kBAAA,CA8BA,qBAAA,CADA,wBAAA,CAxBA,iBAAA,CAuBA,aAAA,CA9BA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YiExKF,CjEuME,qKAGE,qBAAA,CADA,UiEpMJ,CjEwME,qFAEE,kCAAA,CADA,uBiErMJ,CCxMA,0GA6GI,eAAA,CACA,cAAA,CAFA,iBDkGJ,CjEqJA,yCAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YmEnUF,CnE2XA,8BAsBE,oBmE9YF,CnEwXA,wDAEI,4BmEvXJ,CnE0XE,iDACE,wBAAA,CAEA,UAAA,CADA,SmEvXJ,CnE2XE,uDACE,sCAAA,CACA,kBAAA,CACA,0BmEzXJ,CnE4XE,2HAEE,wBmE1XJ,CCzDA,4BAEE,eAAA,CADA,UD4DF,CCxDA,gCpEkWE,kBAAA,CAYA,wBAAA,CACA,4BAAA,CARA,iBAAA,CAMA,UAAA,CAbA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YmE7RF,CnE2SE,6EAEE,wBmEzSJ,CnE4SE,yCAEE,wBAAA,CADA,UmEzSJ,CC1EA,+BACE,cD4EF,CCzEA,kCAEE,WAAA,CACA,eAAA,CACA,iBAAA,CAHA,UD8EF,CC/EA,gDAcI,sBAAA,CAFA,mCAAA,CAFA,iBAAA,CACA,YAAA,CAEA,YAAA,CAEA,oBAAA,CACA,SAAA,CATA,iBAAA,CAEA,UAAA,CADA,QDmFJ,CC3FA,6CAuBI,UAAA,CAHA,WAAA,CACA,iBAAA,CACA,KD2EJ,CCjGA,2CA2BI,mBDyEJ,CCrEA,qCAIE,kBAAA,CADA,YAAA,CADA,WAAA,CAGA,sBAAA,CAJA,UD2EF,CCpEA,6CAEI,aDqEJ,CnEyOA,yCAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YuBnUF,CvB2XA,8BAsBE,oBuB9YF,CvBwXA,wDAEI,4BuBvXJ,CvB0XE,iDACE,wBAAA,CAEA,UAAA,CADA,SuBvXJ,CvB2XE,uDACE,sCAAA,CACA,kBAAA,CACA,0BuBzXJ,CvB4XE,2HAEE,wBuB1XJ,C8CpDA,8BAGE,YAAA,CADA,YAAA,CAEA,6BAAA,CACA,eAAA,CAJA,W9C0DF,C8C3DA,oGASI,c9CsDJ,C8C/DA,qCAcI,sCAAA,CADA,aAAA,CAEA,U9CqDJ,C8CpEA,kCAoBI,wBAAA,CACA,WAAA,CAFA,Q9CsDJ,C8CzEA,qCAyBI,uCAAA,CACA,U9CmDJ,C8C/CA,qCAEE,iBAAA,CADA,eAAA,CrEkZA,oBuB/VF,C8CpDA,+DrE+XI,4BuBxUJ,CvB2UE,wDACE,wBAAA,CAEA,UAAA,CADA,SuBxUJ,CvB4UE,8DACE,sCAAA,CACA,kBAAA,CACA,0BuB1UJ,CvB6UE,yIAEE,wBuB3UJ,C8C/DA,+BAEE,wBAAA,CACA,oCAAA,CAFA,U9CmEF,C8C9DA,+BACE,sB9CgEF,C8C7DA,4CAIE,qBAAA,CADA,+BAAA,CAFA,QAAA,CACA,mB9CiEF,C8C7DE,gEAEE,eAAA,CADA,kBAAA,CAEA,U9C+DJ,C8C3DA,qCAOE,kBAAA,CAGA,UAAA,CANA,YAAA,CACA,kBAAA,CAGA,cAAA,CAGA,eAAA,CATA,WAAA,CAIA,6BAAA,CAGA,gBAAA,CANA,eAAA,CAFA,W9CuEF,C8C1DA,mFAEE,iBAAA,CAEA,eAAA,CAEA,cAAA,CAHA,qCAAA,CAEA,W9C6DF,C8CzDA,4CACE,+B9C2DF,C8CxDA,oCACE,Y9C0DF,C8CvDA,4EAIE,UAAA,CADA,eAAA,CAEA,kBAAA,CAHA,iB9C4DF,C8C9DA,wFAYI,kBAAA,CAEA,aAAA,CANA,YAAA,CAEA,kBAAA,CADA,gBAAA,CAEA,6BAAA,CAEA,iB9C2DJ,C8CxEA,wNAmBM,kBAAA,CADA,W9C6DN,C8CzDI,gJAKE,kBAAA,CAFA,kBAAA,CADA,WAAA,CAEA,6BAAA,CAHA,c9CgEN,C8CvDA,6CAEI,oC9CwDJ,C8C1DA,kEAOI,WAAA,CACA,WAAA,CAFA,U9CyDJ,C8CnDA,4GAGI,W9CoDJ,C8ChDA,kCACE,mB9CkDF,C+CrMA,mCACE,WCaF,CDdA,uCAII,eCaJ,CDjBA,wCAWI,sBAAA,CAFA,YAAA,CACA,qBAAA,CAFA,UCeJ,CDvBA,8CAkBM,kBAAA,CAHA,aAAA,CACA,YAAA,CACA,0BAAA,CAEA,0BAAA,CALA,kBCiBN,CC/BA,+BACE,WCaF,CDdA,qCAMI,YAAA,CACA,qBAAA,CAFA,cAAA,CAIA,OAAA,CALA,gBAAA,CAIA,aCcJ,CDXI,yCACE,WCaN,CCzBA,yBACE,WCaF,CDdA,6BAII,eCaJ,CDjBA,+BAaI,aAAA,CALA,YAAA,CACA,qBAAA,CAGA,cAAA,CAFA,gBAAA,CACA,kBCcJ,CDVI,oCACE,iBCYN,CD5BA,qEAuBI,kCAAA,CADA,kCAAA,CADA,4BCYJ,CDNA,6CAEI,kBAAA,CACA,kBCOJ,CDLI,kDACE,eCON,CDbA,kEAYI,WAAA,CACA,WAAA,CAFA,UCOJ,CDII,ySAEE,sBCGN,CCxDA,kCACE,aAAA,CACA,OCAF,C7EoWA,gDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y8EnUF,C9E2XA,qCAsBE,oB8E9YF,C9EwXA,+DAEI,4B8EvXJ,C9E0XE,wDACE,wBAAA,CAEA,UAAA,CADA,S8EvXJ,C9E2XE,8DACE,sCAAA,CACA,kBAAA,CACA,0B8EzXJ,C9E4XE,yIAEE,wB8E1XJ,CCxDA,uCACE,WD0DF,CC3DA,2CAII,eD0DJ,CC9DA,6CAaI,aAAA,CALA,YAAA,CACA,qBAAA,CAGA,cAAA,CAFA,gBAAA,CACA,kBD2DJ,CCtEA,uGAiBM,cDyDN,CCtDI,6EAGE,kBAAA,CADA,kBAAA,CADA,kBAAA,CAGA,sBAAA,CAAA,iBDwDN,C9EmRA,yCAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YgFnUF,ChF2XA,8BAsBE,oBgF9YF,ChFwXA,wDAEI,4BgFvXJ,ChF0XE,iDACE,wBAAA,CAEA,UAAA,CADA,SgFvXJ,ChF2XE,uDACE,sCAAA,CACA,kBAAA,CACA,0BgFzXJ,ChF4XE,2HAEE,wBgF1XJ,CCxDA,yBAEE,qBAAA,CADA,2CD2DF,CC5DA,6BAKI,QD0DJ,CC/DA,+BASI,aAAA,CACA,YDyDJ,CCnEA,qCAaM,kBDyDN,CCtEA,4DAyBI,WAAA,CAAA,+BAAA,CACA,eAAA,CALA,eAAA,CADA,cAAA,CAEA,aAAA,CAJA,YAAA,CASA,WAAA,CjF0ZF,oBAAA,CiF9ZE,eAAA,CAJA,WDgEJ,CCnFA,sFjFiaI,4BgF3UJ,ChF8UE,+EACE,wBAAA,CAEA,UAAA,CADA,SgF3UJ,ChF+UE,qFACE,sCAAA,CACA,kBAAA,CACA,0BgF7UJ,ChFgVE,uLAEE,wBgF9UJ,CCtEI,kEAEE,WAAA,CAAA,+BAAA,CACA,eDwEN,CCnEA,kCACE,YAAA,CACA,6BAAA,CACA,UDqEF,CClEA,qCACE,YAAA,CACA,ODoEF,CCjEA,gEjFqTE,kBAAA,CA8BA,qBAAA,CADA,wBAAA,CAxBA,iBAAA,CAuBA,aAAA,CA9BA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YgFtOF,ChFqQE,0JAGE,qBAAA,CADA,UgFhQJ,ChFoQE,kFAEE,kCAAA,CADA,uBgFhQJ,CCvFA,+BjFgTE,kBAAA,CAYA,wBAAA,CACA,4BAAA,CARA,iBAAA,CAMA,UAAA,CAbA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YgF5MF,ChF0NE,2EAEE,wBgFxNJ,ChF2NE,wCAEE,wBAAA,CADA,UgFxNJ,CCzGA,yCACE,WAAA,CACA,WD2GF,CE1KA,kDAME,kBAAA,CAFA,YAAA,CADA,MAAA,CAEA,qBAAA,CAEA,sBAAA,CALA,eAAA,CADA,WCMF,CDPA,uFAYI,kBAAA,CAFA,YAAA,CACA,kBCCJ,CDZA,2FAeM,iBCAN,CDfA,yFAmBM,aAAA,CACA,cAAA,CACA,gBCDN,CClBA,4CAIE,sBAAA,CAIA,qBAAA,CAPA,YAAA,CACA,kBAAA,CACA,6BAAA,CAEA,iBAAA,CAEA,YAAA,CADA,WCeF,CDVA,yCAQE,kBAAA,CALA,kBAAA,CASA,2CAAA,CAFA,qBAAA,CALA,cAAA,CACA,YAAA,CACA,qBAAA,CALA,YAAA,CAOA,6BAAA,CALA,YAAA,CAOA,iBAAA,CAVA,WCuBF,CDxBA,6CAeI,QAAA,CACA,SCYJ,CD5BA,2CAsBI,qFAAA,CAEA,cAAA,CADA,kBAAA,CAHA,QAAA,CACA,iBCcJ,CDnCA,uFA6BI,YAAA,CACA,qBAAA,CAFA,WAAA,CAGA,sBCUJ,CDzCA,gFAmCI,aAAA,CACA,eAAA,CACA,wBCSJ,CD9CA,qFAyCI,WCQJ,CDjDA,8EA6CI,UAAA,CAEA,eAAA,CADA,WCQJ,CDtDA,oFAmDI,WCMJ,CCpEA,kCACE,wBCaF,CDVA,mCACE,WCYF,CDbA,uCAII,mBAAA,CACA,UCYJ,CCtBA,2CASE,+BAAA,CARA,YAAA,CACA,qBAAA,CAEA,OAAA,CAEA,eAAA,CADA,cAAA,CAGA,gBAAA,CADA,eAAA,CAJA,WCoBF,CDXA,qDACE,YAAA,CACA,kBAAA,CACA,OAAA,CACA,YAAA,CACA,6BCaF,CDVA,mDAEE,kBAAA,CAEA,iBAAA,CAGA,YAAA,CAFA,MAAA,CAGA,qBAAA,CAFA,cAAA,CAHA,gBAAA,CAFA,WCmBF,CDpBA,sDAYI,eAAA,CACA,cAAA,CAFA,aCcJ,CDzBA,yDAiBM,wBAAA,CADA,YCaN,CDVM,+DACE,4BAAA,CACA,UCYR,CDjCA,oEA0BM,4BAAA,CACA,UCUN,CDrCA,wEA+BM,eCSN,CDxCA,6FAoCI,aAAA,CACA,iBCOJ,CDHA,4CACE,eCKF,CDFA,4CACE,eCIF,CDDA,iDAKE,kBAAA,CAFA,YAAA,CAGA,MAAA,CAJA,WAAA,CAEA,sBAAA,CAHA,UCQF,CDAA,gDAKE,kBAAA,CAFA,YAAA,CAGA,eAAA,CAJA,YAAA,CAEA,sBAAA,CAHA,WCOF,CDCA,yCAGE,kBAAA,CACA,wBAAA,CACA,iBAAA,CAIA,qBAAA,CARA,YAAA,CAOA,WAAA,CANA,sBAAA,CAIA,YAAA,CACA,UCGF,CDEA,mBACE,8BACE,2CACE,aCAF,CDGA,gDAEE,YAAA,CADA,WCAF,CDIA,mDACE,WCFF,CDKA,qDAEE,SAAA,CADA,YCFF,CACF,CACF,CCnHA,yBACE,UCcF,CDfA,2BASI,qBAAA,CACA,UAAA,CAHA,cAAA,CADA,oBAAA,CADA,gBAAA,CADA,gBAAA,CAIA,iBCgBJ,CDZI,iCACE,wBAAA,CACA,UCcN,CD5BA,oDAoBI,wBAAA,CADA,UCaJ,CDhCA,sCAwBI,uBCWJ,CDnCA,qCA4BI,uBCUJ,CDtCA,qCAgCI,yBCSJ,C3F4TA,yCAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y4FnUF,C5F2XA,8BAsBE,oB4F9YF,C5FwXA,wDAEI,4B4FvXJ,C5F0XE,iDACE,wBAAA,CAEA,UAAA,CADA,S4FvXJ,C5F2XE,uDACE,sCAAA,CACA,kBAAA,CACA,0B4FzXJ,C5F4XE,2HAEE,wB4F1XJ,CCrDA,6DAEI,YAAA,CACA,qBAAA,CAEA,YAAA,CACA,eAAA,CAFA,WDwDJ,CC5DA,kEAYM,oBAAA,CAHA,YAAA,CACA,kBAAA,CAGA,cAAA,CAFA,6BAAA,CAGA,qBDsDN,CCpDM,wEACE,YAAA,CACA,qBAAA,CAEA,eAAA,CADA,qBDuDR,CC1DM,8EAQI,kCDqDV,CCnDU,oFACE,kCDqDZ,CChEM,6EAgBI,gBDmDV,CCnFA,sFAsCM,YAAA,CACA,iBDgDN,CC9CM,mHAEI,aD+CV,CC1FA,0FAuDM,wBAAA,CADA,qBAAA,CAJA,aAAA,CADA,eAAA,CAEA,gBAAA,CAEA,eAAA,CADA,YAAA,C7F8XJ,oB4F9UF,CCpGA,oH7F8ZI,4B4FvTJ,C5F0TE,6GACE,wBAAA,CAEA,UAAA,CADA,S4FvTJ,C5F2TE,mHACE,sCAAA,CACA,kBAAA,CACA,0B4FzTJ,C5F4TE,mPAEE,wB4F1TJ,CCrHA,gIA4DQ,YAAA,CACA,mBD4DR,CCzHA,gKAgEU,UAAA,CAGA,cAAA,CACA,gBAAA,CAHA,oBAAA,CACA,qBD8DV,CChIA,mGA0EM,wBAAA,CACA,iBDyDN,CCpIA,0GAkFQ,iBAAA,CAGA,WAAA,CAPA,SAAA,CAKA,WAAA,CAJA,iBAAA,CACA,UAAA,CACA,QAAA,CAGA,UD0DR,CCvDQ,uHACE,qBAAA,CACA,UDyDV,CCrDM,gHACE,SDuDR,CCpDM,uHACE,SDsDR,CCnDM,6HACE,SDqDR,CC3JA,6FAsHM,wBAAA,CAIA,WAAA,CACA,eAAA,CAFA,eAAA,CAJA,UAAA,CAFA,WAAA,CAPA,aAAA,CAWA,cAAA,CAPA,WAAA,CAHA,gBAAA,CACA,eAAA,CAUA,YAAA,CAPA,eAAA,CANA,YAAA,CASA,WAAA,C7F8TJ,oBAAA,C6FhUI,eAAA,CAHA,UDgEN,CC/KA,uH7F8ZI,4B4F5OJ,C5F+OE,gHACE,wBAAA,CAEA,UAAA,CADA,S4F5OJ,C5FgPE,sHACE,sCAAA,CACA,kBAAA,CACA,0B4F9OJ,C5FiPE,yPAEE,wB4F/OJ,CCjEM,0SAKE,WAAA,CADA,eAAA,CADA,YDqER,CCvMA,yGA2IM,kBAAA,CAFA,YAAA,CACA,qBAAA,CAGA,WAAA,CADA,sBAAA,CAGA,cAAA,CADA,UDkEN,CChNA,gGAqJM,kBAAA,CAIA,+BAAA,CADA,4BAAA,CALA,YAAA,CACA,qBAAA,CAGA,YAAA,CADA,sBDmEN,CCzNA,oGA4JQ,qBAAA,CACA,gBAAA,CACA,eDgER,CC9NA,gGAoKM,WAAA,CADA,iBD+DN,CClOA,kD7FmWE,kBAAA,CAYA,wBAAA,CACA,4BAAA,CARA,iBAAA,CAMA,UAAA,CAbA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y4FpHF,C5FkIE,iHAEE,wB4FhIJ,C5FmIE,2DAEE,wBAAA,CADA,U4FhIJ,CCxPA,8G7FmWE,kBAAA,CA8BA,qBAAA,CADA,wBAAA,CAxBA,iBAAA,CAuBA,aAAA,CA9BA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y4F7FF,C5F4HE,sPAGE,qBAAA,CADA,U4FvHJ,C5F2HE,gIAEE,kCAAA,CADA,uB4FvHJ,CCnRA,wDAkLI,gBAAA,CACA,iBAAA,CACA,eDoGJ,CE5RA,6CACE,WCaF,CDdA,sDAKI,WAAA,CACA,YAAA,CACA,qBCYJ,CDnBA,4DAUM,eCYN,CDtBA,iGAgBI,kBAAA,CADA,YAAA,CAGA,UAAA,CADA,gBCWJ,CD5BA,4FAuBI,eAAA,CADA,gBCUJ,C/FoUA,8CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YgGlVF,ChG0YA,mCAsBE,oBgG7ZF,ChGuYA,6DAEI,4BgGtYJ,ChGyYE,sDACE,wBAAA,CAEA,UAAA,CADA,SgGtYJ,ChG0YE,4DACE,sCAAA,CACA,kBAAA,CACA,0BgGxYJ,ChG2YE,qIAEE,wBgGzYJ,CCzCA,mCACE,YAAA,CACA,kBD0DF,CCxDE,uCACE,eAAA,CACA,cD0DJ,CCvDE,4CAIE,kBAAA,CAHA,YAAA,CACA,kBAAA,CACA,4BAAA,CAEA,gBDyDJ,CCvEA,sFAmBM,iBDuDN,CC1EA,sFAuBM,eAAA,CACA,eDsDN,ChGqRA,6CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YkGnUF,ClG2XA,kCAsBE,oBkG9YF,ClGwXA,4DAEI,4BkGvXJ,ClG0XE,qDACE,wBAAA,CAEA,UAAA,CADA,SkGvXJ,ClG2XE,2DACE,sCAAA,CACA,kBAAA,CACA,0BkGzXJ,ClG4XE,mIAEE,wBkG1XJ,CCzDA,sCnG8EE,4CAAA,CmGxEA,cAAA,CAHA,SAAA,CAMA,SAAA,CAPA,aAAA,CADA,iBAAA,CAGA,OAAA,CAMA,mCAAA,CALA,UD+DF,CCvDA,6BACE,SAAA,CACA,mCDyDF,ClG4RA,kDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YoGnUF,CpG2XA,uCAsBE,oBoG9YF,CpGwXA,iEAEI,4BoGvXJ,CpG0XE,0DACE,wBAAA,CAEA,UAAA,CADA,SoGvXJ,CpG2XE,gEACE,sCAAA,CACA,kBAAA,CACA,0BoGzXJ,CpG4XE,6IAEE,wBoG1XJ,CCzDA,mCAEE,kBAAA,CADA,iBD4DF,CC7DA,4EAOI,QAAA,CADA,SAAA,CAEA,iBAAA,CACA,qBD2DJ,CCpEA,+GAgBI,aAAA,CADA,eAAA,CADA,UAAA,CAGA,iBD0DJ,CC3EA,4EAsBI,gBAAA,CADA,kBD0DJ,CC/EA,qDA0BI,mCDwDJ,CClFA,sEA8BI,kBAAA,CACA,wBDuDJ,CCtFA,uEAmCI,kBAAA,CACA,wBDsDJ,CC1FA,+EAwCI,kBAAA,CACA,wBDqDJ,CC9FA,0EA6CI,kBAAA,CACA,wBDoDJ,CClGA,+EAkDI,kBAAA,CACA,wBDmDJ,CCtGA,gFAuDI,kBAAA,CACA,wBDkDJ,CC1GA,2EA4DI,kBAAA,CACA,wBDiDJ,CC9GA,2EAiEI,kBAAA,CACA,wBDgDJ,CClHA,yEAsEI,kBAAA,CACA,wBD+CJ,CCtHA,wEA2EI,kBAAA,CACA,wBD8CJ,CC1HA,8EAgFI,kBD6CJ,CCzCI,oFACE,UD2CN,CCtCA,oCrGwNE,qBAAA,CAHA,qBAAA,CqG3MA,QAAA,CrGgNA,iBAAA,CAHA,UAAA,CqG1MA,aAAA,CrGoMA,oBAAA,CqGtMA,aAAA,CARA,cAAA,CACA,eAAA,CAEA,WAAA,CACA,aAAA,CrG2MA,QAAA,CqGzMA,aAAA,CAGA,iBAAA,CrGuMA,iBAAA,CAQA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CqGnNA,qBAAA,CAHA,UDuDF,CpGiKE,2CAEE,qBAAA,CADA,SoG9JJ,CpGkKE,qGAEE,qBAAA,CAGA,eAAA,CAFA,kBAAA,CACA,UoG/JJ,CpGmKE,qDAEE,YAAA,CACA,iBoGlKJ,CpGqKE,wJAGE,gBoGnKJ,CCjEE,0CACE,aAAA,CAQA,mBAAA,CAHA,cAAA,CACA,aAAA,CAJA,UAAA,CADA,iBAAA,CAGA,UAAA,CADA,QAAA,CAIA,kBDoEJ,CChEE,0CAEE,eAAA,CADA,UDmEJ,CC/DE,yErGrBA,kBAAA,CqGwBE,WAAA,CrGvBF,UoGwFF,CpGvFE,8EACE,UoGyFJ,CpGvFE,6EACE,SAAA,CACA,WoGyFJ,CpGtFE,8EACE,WoGwFJ,CpGtFE,+EACE,UAAA,CACA,SoGwFJ,CE5MA,gDAEE,YAAA,CAEA,aAAA,CADA,qBAAA,CAEA,cAAA,CAJA,iBAAA,CAKA,qBCaF,CDnBA,uFAWI,+BAAA,CADA,6BAAA,CADA,UCeJ,CDxBA,sFAgBI,6BAAA,CACA,8BAAA,CAFA,UAAA,CAGA,mBAAA,CACA,kBCYJ,CDRA,8CACE,YAAA,CAEA,aAAA,CADA,qBAAA,CAGA,gBAAA,CADA,cAAA,CAEA,SCUF,CDhBA,qFAWI,+BAAA,CADA,6BAAA,CADA,WCYJ,CDrBA,oFAmBI,+BAAA,CAHA,6BAAA,CADA,WAAA,CAEA,mBAAA,CACA,kBCUJ,CvGiTA,2CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YwGnUF,CxG2XA,gCAsBE,oBwG9YF,CxGwXA,0DAEI,4BwGvXJ,CxG0XE,mDACE,wBAAA,CAEA,UAAA,CADA,SwGvXJ,CxG2XE,yDACE,sCAAA,CACA,kBAAA,CACA,0BwGzXJ,CxG4XE,+HAEE,wBwG1XJ,CCnDA,wCACE,iBAAA,CACA,SAAA,CACA,UDqDF,CCnDE,+CARA,wBAAA,CADA,aAAA,CADA,sBAAA,CAAA,iBDkEF,CCnDA,gCAEE,iBAAA,CADA,iBDsDF,CCnDE,uCAjBA,wBAAA,CADA,aAAA,CADA,sBAAA,CAAA,iBD2EF,CCnDA,mCAIE,mBAAA,CAAA,cAAA,CAHA,YAAA,CACA,yCAAA,CACA,uBDsDF,CClDA,uEAKE,mBAAA,CAAA,cAAA,CAHA,YAAA,CACA,+BAAA,CACA,uBDqDF,CCjDA,uMASE,mBAAA,CAAA,cAAA,CAHA,YAAA,CACA,oCAAA,CACA,uBDoDF,CxGgQA,iDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y0GnUF,C1G2XA,sCAsBE,oB0G9YF,C1GwXA,gEAEI,4B0GvXJ,C1G0XE,yDACE,wBAAA,CAEA,UAAA,CADA,S0GvXJ,C1G2XE,+DACE,sCAAA,CACA,kBAAA,CACA,0B0GzXJ,C1G4XE,2IAEE,wB0G1XJ,CCzDA,mCAOE,eAAA,CACA,wBAAA,CACA,iBAAA,CACA,aAAA,CAPA,cAAA,CADA,WAAA,CAEA,gBAAA,CAEA,SAAA,CADA,qBAAA,CAJA,UDoEF,CCzDE,yCAEE,wBAAA,CADA,aD4DJ,CCxDE,gHAEE,wBAAA,CAEA,wBAAA,CADA,UD2DJ,CCvDE,4CAEE,wBAAA,CADA,aD0DJ,CEnFA,yCACE,YAAA,CACA,eCaF,CDVA,wCACE,YAAA,CAEA,YAAA,CADA,6BCaF,CDTA,2CACE,YAAA,CAEA,aAAA,CADA,6BCYF,CDRA,iCAGE,WAAA,CAFA,SAAA,CACA,iBCWF,CDPA,mCACE,oBAAA,CACA,yBCSF,CDNA,+BACE,iCAAA,CACA,yBCQF,CDLA,iCACE,WAAA,CACA,eCOF,C7G0TA,kDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y8GnUF,C9G2XA,uCAsBE,oB8G9YF,C9GwXA,iEAEI,4B8GvXJ,C9G0XE,0DACE,wBAAA,CAEA,UAAA,CADA,S8GvXJ,C9G2XE,gEACE,sCAAA,CACA,kBAAA,CACA,0B8GzXJ,C9G4XE,6IAEE,wB8G1XJ,CCzDA,2CAQE,cAAA,CAPA,eAAA,CAQA,mBAAA,C/G6aA,oB8GvXF,CC3DE,8DACE,4BD8EJ,CCxEE,uDACE,YD0EJ,CCvEE,oDAEE,WAAA,CADA,UAAA,CAEA,SDyEJ,CC3FA,qE/GkaI,4B8GpUJ,C9GuUE,8DACE,wBAAA,CAEA,UAAA,CADA,S8GpUJ,C9GwUE,oEACE,sCAAA,CACA,kBAAA,CACA,0B8GtUJ,C9GyUE,qJAEE,wB8GvUJ,CC5GA,iLA2BI,oBAAA,CAFA,YAAA,CACA,6BDwFJ,CClHA,0FA+BI,YAAA,CACA,6BDsFJ,CEvHA,mCAKE,WAAA,CAHA,YAAA,CADA,QAAA,CAGA,SAAA,CADA,UCgBF,CDZE,yCAEE,kBAAA,CADA,YAAA,CAEA,cCcJ,CjH6UA,gDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YkHlVF,ClH0YA,qCAsBE,oBkH7ZF,ClHuYA,+DAEI,4BkHtYJ,ClHyYE,wDACE,wBAAA,CAEA,UAAA,CADA,SkHtYJ,ClH0YE,8DACE,sCAAA,CACA,kBAAA,CACA,0BkHxYJ,ClH2YE,yIAEE,wBkHzYJ,CCzCA,yCACE,qBAAA,CAEA,YAAA,CADA,WD2DF,CC7DA,6CAOI,QAAA,CADA,eAAA,CAGA,gBAAA,CADA,gBD2DJ,CCnEA,gDAaI,+BDyDJ,CCtEA,iFAkBI,kBAAA,CADA,YAAA,CAIA,iBAAA,CACA,eAAA,CAHA,OAAA,CACA,gBD0DJ,CCtDI,sFACE,gBDwDN,CCrDI,qFAEE,WAAA,CADA,UDwDN,CCrFA,yEAoCI,+BAAA,CADA,YAAA,CAEA,iBDqDJ,CC1FA,gFAyCI,WDoDJ,CC7FA,mFA6CI,iBDmDJ,CChGA,gFAiDI,cDkDJ,CChDI,kFACE,kBDkDN,CCtGA,4EnHiVE,kBAAA,CAGA,WAAA,CADA,iBAAA,CmHxRE,iBAAA,CnHuRF,UAAA,CmHtRE,WAAA,CACA,iBAAA,CACA,UDkDJ,ClHsOE,kFACE,kBAAA,CACA,UkHpOJ,ClHsOE,qFACE,6BAAA,CACA,UkHpOJ,ClHsOE,kFACE,kBkHpOJ,CE9HA,2CACI,WCAJ,CCfA,+BAIE,kBAAA,CACA,kBAAA,CAJA,YAAA,CAEA,qBAAA,CAGA,qFAAA,CAJA,WCkBF,CDZE,iCACE,gBCcJ,CDVA,iCAEE,aAAA,CADA,eCaF,CDTA,+BAEE,kBAAA,CADA,YAAA,CAEA,eAAA,CACA,wBCWF,CDRA,+BACE,YAAA,CACA,wBAAA,CACA,kBCUF,CDPA,sEAGE,WAAA,CADA,iBAAA,CAEA,YAAA,CACA,iBCSF,CDNA,iCACE,kBAAA,CACA,UCQF,CDNE,uCACE,kBCQJ,CDJA,qCAEE,sBAAA,CACA,wBAAA,CACA,aAAA,CAHA,iBCSF,CDJE,2CACE,iBAAA,CACA,UCMJ,CvHsTA,2CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YwHnUF,CxH2XA,gCAsBE,oBwH9YF,CxHwXA,0DAEI,4BwHvXJ,CxH0XE,mDACE,wBAAA,CAEA,UAAA,CADA,SwHvXJ,CxH2XE,yDACE,sCAAA,CACA,kBAAA,CACA,0BwHzXJ,CxH4XE,+HAEE,wBwH1XJ,CCxDA,6BACE,WD0DF,CC3DA,iCAMI,wBAAA,CAFA,QAAA,CACA,iBD2DJ,CChEA,gCAaI,mBAAA,CACA,gBAAA,CAJA,YAAA,CACA,oCAAA,CACA,2CAAA,CAGA,eDyDJ,CCxEA,yCzHiTE,qBAAA,CAHA,qBAAA,CyHpRE,eAAA,CALA,WAAA,CzH8RF,iBAAA,CAHA,UAAA,CyHrRE,aAAA,CzH+QF,oBAAA,CyHpRE,cAAA,CAMA,eAAA,CAJA,WAAA,CzHmRF,QAAA,CyHlRE,eAAA,CzHmRF,iBAAA,CAQA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAPA,qBAAA,CyHtRE,UDqEJ,CxH0NE,gDAEE,qBAAA,CADA,SwHvNJ,CxH2NE,+GAEE,qBAAA,CAGA,eAAA,CAFA,kBAAA,CACA,UwHxNJ,CxH4NE,0DAEE,YAAA,CACA,iBwH3NJ,CxH8NE,uKAGE,gBwH5NJ,CClFI,sDACE,eDoFN,CCjFI,+CACE,aDmFN,CChFI,uHAGE,kBAAA,CADA,UDmFN,CxHwOA,2CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y0HnUF,C1H2XA,gCAsBE,oB0H9YF,C1HwXA,0DAEI,4B0HvXJ,C1H0XE,mDACE,wBAAA,CAEA,UAAA,CADA,S0HvXJ,C1H2XE,yDACE,sCAAA,CACA,kBAAA,CACA,0B0HzXJ,C1H4XE,+HAEE,wB0H1XJ,CCvDA,6BAGE,qBAAA,CADA,iBAAA,CADA,WD2DF,CC5DA,mCAMI,YAAA,CACA,qBAAA,CACA,kBDyDJ,CCjEA,sCAWM,aDyDN,CCpEA,8GAiBM,cAAA,CADA,eDyDN,CCzEA,sCAsBI,QAAA,CACA,SDsDJ,CC7EA,4DA4BM,YAAA,CACA,6BAAA,CACA,eAAA,CACA,UDoDN,CClDM,kEACE,YAAA,CACA,kBAAA,CACA,gBDoDR,CClDQ,uEACE,0BDoDV,CC3FA,kCA8CI,oBDgDJ,CC9FA,wCAkDM,cAAA,CADA,eDiDN,CC9CM,iDACE,UDgDR,CCrGA,uDA4DU,kBAAA,CAFA,YAAA,CACA,kBAAA,CAEA,yBD8CV,CC3GA,sDAiEU,0BD6CV,CC9GA,qGAwEM,aAAA,CACA,aD0CN,CCnHA,4GA8EM,UAAA,CAEA,aAAA,CACA,eAAA,CAFA,UD2CN,CC1HA,2CAsFM,cAAA,CAEA,gBAAA,CACA,eAAA,CAFA,eAAA,C3H6VJ,oBAAA,C2H/VI,UD6CN,CClIA,qE3HgaI,4B0H3RJ,C1H8RE,8DACE,wBAAA,CAEA,UAAA,CADA,S0H3RJ,C1H+RE,oEACE,sCAAA,CACA,kBAAA,CACA,0B0H7RJ,C1HgSE,qJAEE,wB0H9RJ,CCtDM,8DACE,qBAAA,CAEA,iBAAA,CACA,yBAAA,CAFA,SD0DR,C1HyMA,iDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y4HlVF,C5H0YA,sCAsBE,oB4H7ZF,C5HuYA,gEAEI,4B4HtYJ,C5HyYE,yDACE,wBAAA,CAEA,UAAA,CADA,S4HtYJ,C5H0YE,+DACE,sCAAA,CACA,kBAAA,CACA,0B4HxYJ,C5H2YE,2IAEE,wB4HzYJ,CCzCA,oCACE,aD0DF,CCxDE,2CACE,YD0DJ,CCtDA,yCAEE,kBAAA,CADA,YAAA,CAEA,OAAA,CACA,gBDwDF,CCtDE,8CACE,gBDwDJ,CCrDE,6CAEE,WAAA,CADA,UDwDJ,CCnDA,mCACE,wBDqDF,CClDA,wCACE,qBAAA,CACA,UAAA,CACA,WDqDF,CCnDE,4CACE,YAAA,CACA,qBAAA,CACA,eDqDJ,CClDE,+CAEE,uCAAA,CADA,eAAA,CAEA,UDoDJ,CClDI,qDACE,yBDoDN,CCjDI,oDACE,gBDmDN,CCxEA,mFA0BI,iBDiDJ,CC3EA,sGA+BM,wBAAA,CAEA,WAAA,CADA,kBAAA,CAFA,iBAAA,CADA,WDqDN,CC/CM,wHACE,eAAA,CACA,WDiDR,CCnDM,mHACE,eAAA,CACA,WDiDR,CCtFA,0HA+CM,aAAA,CAJA,WAAA,CAGA,SAAA,CAFA,iBAAA,CACA,KAAA,CAHA,UDoDN,CC9FA,qFAoDI,0BAAA,CACA,cD6CJ,CClGA,8EAyDI,gBAAA,CACA,gBD4CJ,CCtGA,+EA8DI,UD2CJ,CCzGA,gFAmEI,wBAAA,CADA,WAAA,CAGA,iBAAA,CADA,eAAA,C7HqVF,oB4HzSF,CChHA,0G7HqYI,4B4HlRJ,C5HqRE,mGACE,wBAAA,CAEA,UAAA,CADA,S4HlRJ,C5HsRE,yGACE,sCAAA,CACA,kBAAA,CACA,0B4HpRJ,C5HuRE,+NAEE,wB4HrRJ,CCjIA,qFA4EI,wBAAA,CADA,qBD0DJ,CCrIA,+E7H0UE,kBAAA,CA8BA,qBAAA,CADA,wBAAA,CAxBA,iBAAA,CAuBA,aAAA,CA9BA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y4HxLF,C5HuNE,2KAGE,qBAAA,CADA,U4HpNJ,C5HwNE,wFAEE,kCAAA,CADA,uB4HrNJ,CC5JA,2DAqFI,wBD0EJ,CC/JA,+DAyFI,wBAAA,CACA,iBDyEJ,CCnKA,qEA8FI,eDwEJ,CCtKA,kEAkGI,wBAAA,CACA,6CAAA,CAEA,qBAAA,CADA,WDwEJ,CC5KA,yEAyGI,eDsEJ,CC/KA,6KA8GI,SDqEJ,CCjEI,8EASE,wBAAA,CALA,QAAA,CAHA,UAAA,CAKA,UAAA,CAHA,MAAA,CAKA,aAAA,CAEA,SAAA,CARA,iBAAA,CAGA,OAAA,CAEA,WDsEN,CC9DI,0EACE,SDgEN,CClMA,8HAyII,WAAA,CADA,eD+DJ,CCvMA,yEA6II,sCAAA,CACA,UD6DJ,CC3MA,wEAmJI,oBAAA,CAEA,gBAAA,CADA,qBAAA,CAFA,mBD+DJ,CCjNA,kEA0JI,UAAA,CADA,eD4DJ,CCrNA,sFA8JI,QD0DJ,CCxNA,mNAoKI,WAAA,CADA,eAAA,CAEA,iBDyDJ,C5HyGA,kDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y8HlVF,C9H0YA,uCAsBE,oB8H7ZF,C9HuYA,iEAEI,4B8HtYJ,C9HyYE,0DACE,wBAAA,CAEA,UAAA,CADA,S8HtYJ,C9H0YE,gEACE,sCAAA,CACA,kBAAA,CACA,0B8HxYJ,C9H2YE,6IAEE,wB8HzYJ,CCzCA,0CAEE,cAAA,CADA,YAAA,CAEA,qCD0DF,CCvDA,yCAIE,4BAAA,CACA,iBAAA,CAFA,iBAAA,CAOA,eAAA,CADA,eAAA,CAHA,eAAA,CALA,aAAA,CACA,iBAAA,CAMA,sBAAA,CADA,kBD4DF,CCtDA,+CACE,oBDwDF,CCrDA,8CACE,oBDuDF,CCxDA,uFAII,eDuDJ,CCnDA,oCAME,qBAAA,CAFA,wBAAA,CACA,iBAAA,CAJA,qBAAA,CAEA,YAAA,CADA,WDyDF,CCnDE,0CACE,kBDqDJ,CClDE,wCAEE,YAAA,CACA,SAAA,CACA,QAAA,CAHA,WDuDJ,CChDA,2CACE,mCDkDF,CC/CA,gCAEE,cAAA,CADA,iBDkDF,CC/CE,yGACE,qCAAA,CACA,wBDiDJ,CC7CE,oC/HgPA,qBAAA,C+HvOE,4BAAA,C/HoOF,qBAAA,C+HtOE,WAAA,C/H2OF,iBAAA,C+H9OE,eAAA,C/H2OF,UAAA,C+HvOE,aAAA,CAEA,cAAA,C/H+NF,oBAAA,C+HnOE,WAAA,CAHA,QAAA,CAQA,SAAA,C/HgOF,iBAAA,CAQA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAPA,qBAAA,C+HvOE,UD4DJ,C9HoLE,2CAEE,qBAAA,CADA,S8HjLJ,C9HqLE,qGAEE,qBAAA,CAGA,eAAA,CAFA,kBAAA,CACA,U8HlLJ,C9HsLE,qDAEE,YAAA,CACA,iB8HrLJ,C9HwLE,wJAGE,gB8HtLJ,CCxEI,wCAEE,cAAA,CADA,aD2EN,CCtEM,+FACE,YDyER,CCpEE,0CACE,iBAAA,CAEA,SAAA,CADA,ODuEJ,CCnEE,wCACE,iBAAA,CAEA,SAAA,CADA,QDsEJ,CClEA,0CAEE,qBAAA,CADA,SDqEF,CE7KA,6CAIE,kBAAA,CAGA,UAAA,CANA,YAAA,CACA,qBAAA,CAIA,cAAA,CAHA,sBAAA,CAEA,gBCeF,CDpBA,iDAWI,WAAA,CADA,UCcJ,CjI4UA,gDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YkInUF,ClI2XA,qCAsBE,oBkI9YF,ClIwXA,+DAEI,4BkIvXJ,ClI0XE,wDACE,wBAAA,CAEA,UAAA,CADA,SkIvXJ,ClI2XE,8DACE,sCAAA,CACA,kBAAA,CACA,0BkIzXJ,ClI4XE,yIAEE,wBkI1XJ,CCzDA,wCAKE,eAAA,CAQA,wBAAA,CAFA,iBAAA,CAVA,oBAAA,CASA,cAAA,CAJA,gBAAA,CACA,iBAAA,CAEA,WAAA,CAPA,iBAAA,CAEA,UAAA,CnIkbA,oBAAA,CmInbA,QAAA,CASA,UAAA,CAJA,UDiEF,CCzEA,kEnIkaI,4BkItVJ,ClIyVE,2DACE,wBAAA,CAEA,UAAA,CADA,SkItVJ,ClI0VE,iEACE,sCAAA,CACA,kBAAA,CACA,0BkIxVJ,ClI2VE,+IAEE,wBkIzVJ,CCxEA,0CAEE,cAAA,CACA,gBAAA,CAFA,WD4EF,CCvEA,gDACE,kBAAA,CACA,iBAAA,CACA,cDyEF,CCtEA,mCAGE,qBAAA,CACA,wBAAA,CACA,iBAAA,CACA,cAAA,CAJA,WAAA,CAKA,gBAAA,CACA,eAAA,CAPA,UD+EF,CCrEA,yCAWE,uOAAA,CAPA,uBAAA,CAGA,WAAA,CANA,WAAA,CAEA,aAAA,CAGA,WAAA,CAEA,SAAA,CACA,WAAA,CAPA,iBAAA,CAGA,UAAA,CAKA,UDwEF,CE3IA,yCAOE,qBAAA,CAGA,2BAAA,CAEA,gCAAA,CAVA,YAAA,CACA,kBAAA,CACA,cAAA,CAKA,gBAAA,CAEA,WAAA,CAVA,iBAAA,CAIA,UAAA,CACA,WAAA,CAEA,UCkBF,CDXA,yCAME,4BAAA,CAHA,WAAA,CADA,WAAA,CAEA,UAAA,CACA,eAAA,CAJA,UCkBF,CDXE,6CACE,SCaJ,CDTI,mDACE,YCWN,CrI4UA,yDAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YsInUF,CtI2XA,8CAsBE,oBsI9YF,CtIwXA,wEAEI,4BsIvXJ,CtI0XE,iEACE,wBAAA,CAEA,UAAA,CADA,SsIvXJ,CtI2XE,uEACE,sCAAA,CACA,kBAAA,CACA,0BsIzXJ,CtI4XE,2JAEE,wBsI1XJ,CCxDA,oGvIiTE,qBAAA,CAHA,qBAAA,CuI1SA,QAAA,CvI+SA,iBAAA,CAHA,UAAA,CuIxSA,cAAA,CvIkSA,oBAAA,CuInPA,WAAA,CAjDA,kBAAA,CAkDA,UAAA,CAnDA,SAAA,CAEA,iBAAA,CvIqSA,iBAAA,CAQA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAPA,qBAAA,CuIvPA,UDuBF,CtIyOE,kHAEE,qBAAA,CADA,SsIrOJ,CtIyOE,kQAEE,qBAAA,CAGA,eAAA,CAFA,kBAAA,CACA,UsIpOJ,CtIwOE,sIAEE,YAAA,CACA,iBsItOJ,CtIyOE,oYAGE,gBsIpOJ,CC9CE,4GAIE,cAAA,CAEA,WAAA,CAHA,QAAA,CAFA,iBAAA,CACA,OAAA,CAGA,UDkDJ,CCrGA,qDACE,wBAAA,CACA,iBDuGF,CCrGE,yDACE,SAAA,CACA,cDuGJ,CCpGE,2DACE,wBDsGJ,CCjGE,mDACE,SAAA,CACA,cDmGJ,CChGE,qDACE,qBDkGJ,CChGI,yDACE,YDkGN,CC7FA,2DAGE,mCAAA,CAAA,kCAAA,CAEA,8CAAA,CAAA,kBAAA,CAAA,gBAAA,CAJA,UAAA,CAMA,SAAA,CALA,iBAAA,CAIA,QDgGF,CC3EA,4DAbE,WAAA,CACA,UAAA,CAFA,UD8FF,CC1FE,gEAIE,cAAA,CAEA,WAAA,CAHA,QAAA,CAFA,iBAAA,CACA,OAAA,CAGA,UD6FJ,CtIuMA,+CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YwInUF,CxI2XA,oCAsBE,oBwI9YF,CxIwXA,8DAEI,4BwIvXJ,CxI0XE,uDACE,wBAAA,CAEA,UAAA,CADA,SwIvXJ,CxI2XE,6DACE,sCAAA,CACA,kBAAA,CACA,0BwIzXJ,CxI4XE,uIAEE,wBwI1XJ,CCxDA,qCzIiTE,qBAAA,CAHA,qBAAA,CyI3SA,QAAA,CzIgTA,iBAAA,CAHA,UAAA,CyIzSA,cAAA,CzImSA,oBAAA,CyI3PA,WAAA,CA1CA,kBAAA,CA2CA,UAAA,CA5CA,SAAA,CAEA,iBAAA,CzIsSA,iBAAA,CAQA,wBAAA,CAAA,qBAAA,CAAA,gBAAA,CAPA,qBAAA,CyI/PA,UD8BF,CxI0OE,4CAEE,qBAAA,CADA,SwIvOJ,CxI2OE,uGAEE,qBAAA,CAGA,eAAA,CAFA,kBAAA,CACA,UwIxOJ,CxI4OE,sDAEE,YAAA,CACA,iBwI3OJ,CxI8OE,2JAGE,gBwI5OJ,CC9CE,yCAvCE,SAAA,CA2CA,cAAA,CAEA,WAAA,CAHA,QAAA,CAFA,iBAAA,CACA,OAAA,CAxCA,cAAA,CA2CA,UDiDJ,CCzFE,2CACE,qBD+FJ,CC7FI,+CACE,YD+FN,CC3FE,uEACE,wBAAA,CACA,iBD6FJ,CC3FI,2EACE,SAAA,CACA,cD6FN,CC1FI,6EACE,wBD4FN,CC1FM,iFACE,SAAA,CACA,cD4FR,CCrEA,kDAbE,WAAA,CACA,UAAA,CAFA,UDwFF,CCpFE,sDAIE,cAAA,CAEA,WAAA,CAHA,QAAA,CAFA,iBAAA,CACA,OAAA,CAGA,UDuFJ,CxIqNA,yCAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,Y0InUF,C1I2XA,8BAsBE,oB0I9YF,C1IwXA,wDAEI,4B0IvXJ,C1I0XE,iDACE,wBAAA,CAEA,UAAA,CADA,S0IvXJ,C1I2XE,uDACE,sCAAA,CACA,kBAAA,CACA,0B0IzXJ,C1I4XE,2HAEE,wB0I1XJ,CCzDA,+BACE,YAAA,CACA,qBAAA,CACA,WD2DF,CC9DA,gEASI,kBAAA,CAHA,YAAA,CACA,kBAAA,CACA,gBAAA,CAIA,WAAA,CAFA,6BAAA,CACA,aD4DJ,CCvEA,qEAgBM,gBAAA,CADA,gBAAA,CAEA,kBD2DN,CC5EA,iDAwBI,oBAAA,CAEA,wBAAA,CACA,iBAAA,CALA,YAAA,CAGA,kBAAA,CAGA,cAAA,CACA,aAAA,CANA,YAAA,C3I+ZF,oB0I/VF,CCvFA,2E3IkaI,4B0IxUJ,C1I2UE,oEACE,wBAAA,CAEA,UAAA,CADA,S0IxUJ,C1I4UE,0EACE,sCAAA,CACA,kBAAA,CACA,0B0I1UJ,C1I6UE,iKAEE,wB0I3UJ,CE1HA,uDACI,YAAA,CACA,qBCCJ,CDEA,kDACI,YAAA,CACA,6BCAJ,CDGA,6CACI,YAAA,CACA,qBAAA,CACA,eCDJ,CDIA,4CAEI,aAAA,CADA,cCDJ,CCGC,mCACC,WvIYF,CuITE,4BAME,wBAAA,CACA,4BAAA,CAJA,iBAAA,CAEA,UAAA,CADA,cAAA,CAFA,WAAA,CADA,cvIiBJ,CuIRE,qEACE,wBvIWJ,CuIRE,qCAEE,wBAAA,CADA,UvIWJ,CwIjCA,uBAYE,mBAAA,CARA,YAAA,CACA,4IAAA,CAIA,2EAAA,CACA,gCAAA,CATA,WAAA,CAEA,iBAAA,CADA,UCOF,CDMA,0BACE,gBAAA,CEhCF,iBAAA,CAAA,cD4BA,CDOA,uBEnCA,sBAAA,CFoCE,qBAAA,CEpCF,iBAAA,CAAA,cD+BA,CDQA,wBACE,sBAAA,CExCF,iBAAA,CAAA,cDkCA,CDSA,yBACE,uBAAA,CE5CF,iBAAA,CAAA,cDqCA,CDUA,0BE/CA,sBAAA,CFgDE,wBAAA,CEhDF,iBAAA,CAAA,cDwCA,CDWA,oCACE,2ECTF,CExBA,kDACE,iBAAA,CACA,WCYF,CDTA,iDACE,iBCWF,CDRA,wCACE,UCUF,CDRE,0FACE,0BAAA,CAEA,cAAA,CACA,gBAAA,CAFA,wBCYJ,CDRI,gGACE,0BCUN,CDLA,6CAGE,aAAA,CADA,WAAA,CAIA,QAAA,CAFA,iBAAA,CACA,OAAA,CAEA,0BAAA,CANA,UCaF,CDJA,oDAGE,eAAA,CADA,sBAAA,CADA,kBCQF,CDFE,sEAEE,iCAAA,CACA,cAAA,CAEA,eAAA,CADA,gBAAA,CAHA,uBCQJ,CDVA,kDAUI,4BAAA,CACA,eCGJ,CDCA,4CACE,cAAA,CACA,gBCCF,CDCE,sEACE,WCCJ,CDIE,4CAEE,kBAAA,CADA,eCDJ,CDDA,qKAQI,wBAAA,CADA,6BCDJ,CnJ6RA,2CAGE,kBAAA,CAKA,iBAAA,CAPA,mBAAA,CAQA,cAAA,CAFA,WAAA,CALA,sBAAA,CAIA,gBAAA,CADA,cAAA,CADA,YoJnUF,CpJ2XA,gCAsBE,oBoJ9YF,CpJwXA,0DAEI,4BoJvXJ,CpJ0XE,mDACE,wBAAA,CAEA,UAAA,CADA,SoJvXJ,CpJ2XE,yDACE,sCAAA,CACA,kBAAA,CACA,0BoJzXJ,CpJ4XE,+HAEE,wBoJ1XJ,CCtDA,kJAOI,cDqDJ,CCjDA,6BAME,wBAAA,CACA,UAAA,CAHA,6EAAA,CAHA,WAAA,CAEA,iBAAA,CADA,UDuDF,CCzDA,oCAeI,iCAAA,CAAA,8BAAA,CAAA,yBAAA,CAJA,gCAAA,CAEA,uQAAA,CACA,+CAAA,CAFA,qCAAA,CAFA,uBDuDJ,CCjEA,kGAsBI,eAAA,CACA,QAAA,CACA,SDgDJ,CCxEA,gDA+BI,eAAA,CAKA,4BAAA,CARA,iBAAA,CASA,qBAAA,CACA,aAAA,CATA,oBAAA,CAIA,cAAA,CACA,YAAA,CAFA,gBAAA,CAGA,wBAAA,CALA,qBDuDJ,CC7CI,6GAEE,SD+CN,CC5CI,sDACE,wBD8CN,CC3CI,uLAIE,kBAAA,CADA,kBAAA,CAEA,UD6CN,CCnGA,wKAiEI,eAAA,CAMA,wBAAA,CATA,iBAAA,CAUA,qBAAA,CACA,UAAA,CAVA,oBAAA,CAGA,qFAAA,CACA,cAAA,CAEA,WAAA,CADA,gBAAA,CAEA,eAAA,CANA,qBDoDJ,CCzCI,oYAGE,mBAAA,CADA,SDkDN,CC9CI,gMACE,wBDmDN,CChDI,opBAKE,wBAAA,CADA,wBAAA,CAEA,aAAA,CAHA,kBD8DN,CCtJA,sCAiGI,iBAAA,CADA,QD0DJ,CCvDI,yCACE,oBDyDN,CCtDI,mEACE,wBAAA,CACA,gBDwDN,CCjKA,oCA8GI,aAAA,CAEA,cAAA,CADA,SAAA,CAEA,eDsDJ,CCvKA,+CAuHI,kBAAA,CADA,aAAA,CADA,qBDuDJ,CC5KA,kDA6HI,kBAAA,CACA,iBAAA,CAFA,qBDqDJ,CC9CA,sCAKE,kBAAA,CAFA,YAAA,CAFA,WAAA,CAGA,sBAAA,CAFA,UDmDF,CC1CI,UACE,gDD+CN,CC1CA,sCACE,GACE,SD4CF,CCzCA,IACE,SD2CF,CCxCA,GACE,SD0CF,CACF","file":"index.css"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/****************************************************************************
|
|
2
|
+
* Copyright 2021 EPAM Systems
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
***************************************************************************/
|
|
16
|
+
export * from './Editor';
|
|
17
|
+
export * from './script';
|
|
18
|
+
export * from './constants';
|
|
19
|
+
export * from './components';
|
|
20
|
+
export { AppContext } from './contexts';
|